blob: fd61a1a3a9fa17188cbea0866d3735827ad1dfe2 [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();
Douglas Gregor9d6290b2008-10-23 18:13:27 +0000625
Douglas Gregor29a92472008-10-22 17:49:05 +0000626 if (KnownBaseTypes[NewBaseType]) {
627 // C++ [class.mi]p3:
628 // A class shall not be specified as a direct base class of a
629 // derived class more than once.
Douglas Gregor463421d2009-03-03 04:44:36 +0000630 Diag(Bases[idx]->getSourceRange().getBegin(),
Chris Lattner3b054132008-11-19 05:08:23 +0000631 diag::err_duplicate_base_class)
Chris Lattner1e5665e2008-11-24 06:25:27 +0000632 << KnownBaseTypes[NewBaseType]->getType()
Douglas Gregor463421d2009-03-03 04:44:36 +0000633 << Bases[idx]->getSourceRange();
Douglas Gregor9d6290b2008-10-23 18:13:27 +0000634
635 // Delete the duplicate base class specifier; we're going to
636 // overwrite its pointer later.
Douglas Gregorb77af8f2009-07-22 20:55:49 +0000637 Context.Deallocate(Bases[idx]);
Douglas Gregor463421d2009-03-03 04:44:36 +0000638
639 Invalid = true;
Douglas Gregor29a92472008-10-22 17:49:05 +0000640 } else {
641 // Okay, add this new base class.
Douglas Gregor463421d2009-03-03 04:44:36 +0000642 KnownBaseTypes[NewBaseType] = Bases[idx];
643 Bases[NumGoodBases++] = Bases[idx];
Douglas Gregor29a92472008-10-22 17:49:05 +0000644 }
645 }
646
647 // Attach the remaining base class specifiers to the derived class.
Douglas Gregor4a62bdf2010-02-11 01:30:34 +0000648 Class->setBases(Bases, NumGoodBases);
Douglas Gregor9d6290b2008-10-23 18:13:27 +0000649
650 // Delete the remaining (good) base class specifiers, since their
651 // data has been copied into the CXXRecordDecl.
652 for (unsigned idx = 0; idx < NumGoodBases; ++idx)
Douglas Gregorb77af8f2009-07-22 20:55:49 +0000653 Context.Deallocate(Bases[idx]);
Douglas Gregor463421d2009-03-03 04:44:36 +0000654
655 return Invalid;
656}
657
658/// ActOnBaseSpecifiers - Attach the given base specifiers to the
659/// class, after checking whether there are any duplicate base
660/// classes.
Mike Stump11289f42009-09-09 15:08:12 +0000661void Sema::ActOnBaseSpecifiers(DeclPtrTy ClassDecl, BaseTy **Bases,
Douglas Gregor463421d2009-03-03 04:44:36 +0000662 unsigned NumBases) {
663 if (!ClassDecl || !Bases || !NumBases)
664 return;
665
666 AdjustDeclIfTemplate(ClassDecl);
Chris Lattner83f095c2009-03-28 19:18:32 +0000667 AttachBaseSpecifiers(cast<CXXRecordDecl>(ClassDecl.getAs<Decl>()),
Douglas Gregor463421d2009-03-03 04:44:36 +0000668 (CXXBaseSpecifier**)(Bases), NumBases);
Douglas Gregor556877c2008-04-13 21:30:24 +0000669}
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +0000670
John McCalle78aac42010-03-10 03:28:59 +0000671static CXXRecordDecl *GetClassForType(QualType T) {
672 if (const RecordType *RT = T->getAs<RecordType>())
673 return cast<CXXRecordDecl>(RT->getDecl());
674 else if (const InjectedClassNameType *ICT = T->getAs<InjectedClassNameType>())
675 return ICT->getDecl();
676 else
677 return 0;
678}
679
Douglas Gregor36d1b142009-10-06 17:59:45 +0000680/// \brief Determine whether the type \p Derived is a C++ class that is
681/// derived from the type \p Base.
682bool Sema::IsDerivedFrom(QualType Derived, QualType Base) {
683 if (!getLangOptions().CPlusPlus)
684 return false;
John McCalle78aac42010-03-10 03:28:59 +0000685
686 CXXRecordDecl *DerivedRD = GetClassForType(Derived);
687 if (!DerivedRD)
Douglas Gregor36d1b142009-10-06 17:59:45 +0000688 return false;
689
John McCalle78aac42010-03-10 03:28:59 +0000690 CXXRecordDecl *BaseRD = GetClassForType(Base);
691 if (!BaseRD)
Douglas Gregor36d1b142009-10-06 17:59:45 +0000692 return false;
693
John McCall67da35c2010-02-04 22:26:26 +0000694 // FIXME: instantiate DerivedRD if necessary. We need a PoI for this.
695 return DerivedRD->hasDefinition() && DerivedRD->isDerivedFrom(BaseRD);
Douglas Gregor36d1b142009-10-06 17:59:45 +0000696}
697
698/// \brief Determine whether the type \p Derived is a C++ class that is
699/// derived from the type \p Base.
700bool Sema::IsDerivedFrom(QualType Derived, QualType Base, CXXBasePaths &Paths) {
701 if (!getLangOptions().CPlusPlus)
702 return false;
703
John McCalle78aac42010-03-10 03:28:59 +0000704 CXXRecordDecl *DerivedRD = GetClassForType(Derived);
705 if (!DerivedRD)
Douglas Gregor36d1b142009-10-06 17:59:45 +0000706 return false;
707
John McCalle78aac42010-03-10 03:28:59 +0000708 CXXRecordDecl *BaseRD = GetClassForType(Base);
709 if (!BaseRD)
Douglas Gregor36d1b142009-10-06 17:59:45 +0000710 return false;
711
Douglas Gregor36d1b142009-10-06 17:59:45 +0000712 return DerivedRD->isDerivedFrom(BaseRD, Paths);
713}
714
Anders Carlssona70cff62010-04-24 19:06:50 +0000715void Sema::BuildBasePathArray(const CXXBasePaths &Paths,
716 CXXBaseSpecifierArray &BasePathArray) {
717 assert(BasePathArray.empty() && "Base path array must be empty!");
718 assert(Paths.isRecordingPaths() && "Must record paths!");
719
720 const CXXBasePath &Path = Paths.front();
721
722 // We first go backward and check if we have a virtual base.
723 // FIXME: It would be better if CXXBasePath had the base specifier for
724 // the nearest virtual base.
725 unsigned Start = 0;
726 for (unsigned I = Path.size(); I != 0; --I) {
727 if (Path[I - 1].Base->isVirtual()) {
728 Start = I - 1;
729 break;
730 }
731 }
732
733 // Now add all bases.
734 for (unsigned I = Start, E = Path.size(); I != E; ++I)
735 BasePathArray.push_back(Path[I].Base);
736}
737
Douglas Gregor88d292c2010-05-13 16:44:06 +0000738/// \brief Determine whether the given base path includes a virtual
739/// base class.
740bool Sema::BasePathInvolvesVirtualBase(const CXXBaseSpecifierArray &BasePath) {
741 for (CXXBaseSpecifierArray::iterator B = BasePath.begin(),
742 BEnd = BasePath.end();
743 B != BEnd; ++B)
744 if ((*B)->isVirtual())
745 return true;
746
747 return false;
748}
749
Douglas Gregor36d1b142009-10-06 17:59:45 +0000750/// CheckDerivedToBaseConversion - Check whether the Derived-to-Base
751/// conversion (where Derived and Base are class types) is
752/// well-formed, meaning that the conversion is unambiguous (and
753/// that all of the base classes are accessible). Returns true
754/// and emits a diagnostic if the code is ill-formed, returns false
755/// otherwise. Loc is the location where this routine should point to
756/// if there is an error, and Range is the source range to highlight
757/// if there is an error.
758bool
759Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
John McCall1064d7e2010-03-16 05:22:47 +0000760 unsigned InaccessibleBaseID,
Douglas Gregor36d1b142009-10-06 17:59:45 +0000761 unsigned AmbigiousBaseConvID,
762 SourceLocation Loc, SourceRange Range,
Anders Carlsson7afe4242010-04-24 17:11:09 +0000763 DeclarationName Name,
764 CXXBaseSpecifierArray *BasePath) {
Douglas Gregor36d1b142009-10-06 17:59:45 +0000765 // First, determine whether the path from Derived to Base is
766 // ambiguous. This is slightly more expensive than checking whether
767 // the Derived to Base conversion exists, because here we need to
768 // explore multiple paths to determine if there is an ambiguity.
769 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
770 /*DetectVirtual=*/false);
771 bool DerivationOkay = IsDerivedFrom(Derived, Base, Paths);
772 assert(DerivationOkay &&
773 "Can only be used with a derived-to-base conversion");
774 (void)DerivationOkay;
775
776 if (!Paths.isAmbiguous(Context.getCanonicalType(Base).getUnqualifiedType())) {
Anders Carlssona70cff62010-04-24 19:06:50 +0000777 if (InaccessibleBaseID) {
778 // Check that the base class can be accessed.
779 switch (CheckBaseClassAccess(Loc, Base, Derived, Paths.front(),
780 InaccessibleBaseID)) {
781 case AR_inaccessible:
782 return true;
783 case AR_accessible:
784 case AR_dependent:
785 case AR_delayed:
786 break;
Anders Carlsson7afe4242010-04-24 17:11:09 +0000787 }
John McCall5b0829a2010-02-10 09:31:12 +0000788 }
Anders Carlssona70cff62010-04-24 19:06:50 +0000789
790 // Build a base path if necessary.
791 if (BasePath)
792 BuildBasePathArray(Paths, *BasePath);
793 return false;
Douglas Gregor36d1b142009-10-06 17:59:45 +0000794 }
795
796 // We know that the derived-to-base conversion is ambiguous, and
797 // we're going to produce a diagnostic. Perform the derived-to-base
798 // search just one more time to compute all of the possible paths so
799 // that we can print them out. This is more expensive than any of
800 // the previous derived-to-base checks we've done, but at this point
801 // performance isn't as much of an issue.
802 Paths.clear();
803 Paths.setRecordingPaths(true);
804 bool StillOkay = IsDerivedFrom(Derived, Base, Paths);
805 assert(StillOkay && "Can only be used with a derived-to-base conversion");
806 (void)StillOkay;
807
808 // Build up a textual representation of the ambiguous paths, e.g.,
809 // D -> B -> A, that will be used to illustrate the ambiguous
810 // conversions in the diagnostic. We only print one of the paths
811 // to each base class subobject.
812 std::string PathDisplayStr = getAmbiguousPathsDisplayString(Paths);
813
814 Diag(Loc, AmbigiousBaseConvID)
815 << Derived << Base << PathDisplayStr << Range << Name;
816 return true;
817}
818
819bool
820Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
Sebastian Redl7c353682009-11-14 21:15:49 +0000821 SourceLocation Loc, SourceRange Range,
Anders Carlsson7afe4242010-04-24 17:11:09 +0000822 CXXBaseSpecifierArray *BasePath,
Sebastian Redl7c353682009-11-14 21:15:49 +0000823 bool IgnoreAccess) {
Douglas Gregor36d1b142009-10-06 17:59:45 +0000824 return CheckDerivedToBaseConversion(Derived, Base,
John McCall1064d7e2010-03-16 05:22:47 +0000825 IgnoreAccess ? 0
826 : diag::err_upcast_to_inaccessible_base,
Douglas Gregor36d1b142009-10-06 17:59:45 +0000827 diag::err_ambiguous_derived_to_base_conv,
Anders Carlsson7afe4242010-04-24 17:11:09 +0000828 Loc, Range, DeclarationName(),
829 BasePath);
Douglas Gregor36d1b142009-10-06 17:59:45 +0000830}
831
832
833/// @brief Builds a string representing ambiguous paths from a
834/// specific derived class to different subobjects of the same base
835/// class.
836///
837/// This function builds a string that can be used in error messages
838/// to show the different paths that one can take through the
839/// inheritance hierarchy to go from the derived class to different
840/// subobjects of a base class. The result looks something like this:
841/// @code
842/// struct D -> struct B -> struct A
843/// struct D -> struct C -> struct A
844/// @endcode
845std::string Sema::getAmbiguousPathsDisplayString(CXXBasePaths &Paths) {
846 std::string PathDisplayStr;
847 std::set<unsigned> DisplayedPaths;
848 for (CXXBasePaths::paths_iterator Path = Paths.begin();
849 Path != Paths.end(); ++Path) {
850 if (DisplayedPaths.insert(Path->back().SubobjectNumber).second) {
851 // We haven't displayed a path to this particular base
852 // class subobject yet.
853 PathDisplayStr += "\n ";
854 PathDisplayStr += Context.getTypeDeclType(Paths.getOrigin()).getAsString();
855 for (CXXBasePath::const_iterator Element = Path->begin();
856 Element != Path->end(); ++Element)
857 PathDisplayStr += " -> " + Element->Base->getType().getAsString();
858 }
859 }
860
861 return PathDisplayStr;
862}
863
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000864//===----------------------------------------------------------------------===//
865// C++ class member Handling
866//===----------------------------------------------------------------------===//
867
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000868/// ActOnCXXMemberDeclarator - This is invoked when a C++ class member
869/// declarator is parsed. 'AS' is the access specifier, 'BW' specifies the
870/// bitfield width if there is one and 'InitExpr' specifies the initializer if
Chris Lattnereb4373d2009-04-12 22:37:57 +0000871/// any.
Chris Lattner83f095c2009-03-28 19:18:32 +0000872Sema::DeclPtrTy
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000873Sema::ActOnCXXMemberDeclarator(Scope *S, AccessSpecifier AS, Declarator &D,
Douglas Gregor3447e762009-08-20 22:52:58 +0000874 MultiTemplateParamsArg TemplateParameterLists,
Sebastian Redld6f78502009-11-24 23:38:44 +0000875 ExprTy *BW, ExprTy *InitExpr, bool IsDefinition,
876 bool Deleted) {
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000877 const DeclSpec &DS = D.getDeclSpec();
Douglas Gregor92751d42008-11-17 22:58:34 +0000878 DeclarationName Name = GetNameForDeclarator(D);
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000879 Expr *BitWidth = static_cast<Expr*>(BW);
880 Expr *Init = static_cast<Expr*>(InitExpr);
881 SourceLocation Loc = D.getIdentifierLoc();
882
Sebastian Redlccdfaba2008-11-14 23:42:31 +0000883 bool isFunc = D.isFunctionDeclarator();
884
John McCall07e91c02009-08-06 02:15:43 +0000885 assert(!DS.isFriendSpecified());
886
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000887 // C++ 9.2p6: A member shall not be declared to have automatic storage
888 // duration (auto, register) or with the extern storage-class-specifier.
Sebastian Redlccdfaba2008-11-14 23:42:31 +0000889 // C++ 7.1.1p8: The mutable specifier can be applied only to names of class
890 // data members and cannot be applied to names declared const or static,
891 // and cannot be applied to reference members.
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000892 switch (DS.getStorageClassSpec()) {
893 case DeclSpec::SCS_unspecified:
894 case DeclSpec::SCS_typedef:
895 case DeclSpec::SCS_static:
896 // FALL THROUGH.
897 break;
Sebastian Redlccdfaba2008-11-14 23:42:31 +0000898 case DeclSpec::SCS_mutable:
899 if (isFunc) {
900 if (DS.getStorageClassSpecLoc().isValid())
Chris Lattner3b054132008-11-19 05:08:23 +0000901 Diag(DS.getStorageClassSpecLoc(), diag::err_mutable_function);
Sebastian Redlccdfaba2008-11-14 23:42:31 +0000902 else
Chris Lattner3b054132008-11-19 05:08:23 +0000903 Diag(DS.getThreadSpecLoc(), diag::err_mutable_function);
Mike Stump11289f42009-09-09 15:08:12 +0000904
Sebastian Redl8071edb2008-11-17 23:24:37 +0000905 // FIXME: It would be nicer if the keyword was ignored only for this
906 // declarator. Otherwise we could get follow-up errors.
Sebastian Redlccdfaba2008-11-14 23:42:31 +0000907 D.getMutableDeclSpec().ClearStorageClassSpecs();
908 } else {
909 QualType T = GetTypeForDeclarator(D, S);
910 diag::kind err = static_cast<diag::kind>(0);
911 if (T->isReferenceType())
912 err = diag::err_mutable_reference;
913 else if (T.isConstQualified())
914 err = diag::err_mutable_const;
915 if (err != 0) {
916 if (DS.getStorageClassSpecLoc().isValid())
917 Diag(DS.getStorageClassSpecLoc(), err);
918 else
919 Diag(DS.getThreadSpecLoc(), err);
Sebastian Redl8071edb2008-11-17 23:24:37 +0000920 // FIXME: It would be nicer if the keyword was ignored only for this
921 // declarator. Otherwise we could get follow-up errors.
Sebastian Redlccdfaba2008-11-14 23:42:31 +0000922 D.getMutableDeclSpec().ClearStorageClassSpecs();
923 }
924 }
925 break;
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000926 default:
927 if (DS.getStorageClassSpecLoc().isValid())
928 Diag(DS.getStorageClassSpecLoc(),
929 diag::err_storageclass_invalid_for_member);
930 else
931 Diag(DS.getThreadSpecLoc(), diag::err_storageclass_invalid_for_member);
932 D.getMutableDeclSpec().ClearStorageClassSpecs();
933 }
934
Argyrios Kyrtzidis2e3e7562008-10-15 20:23:22 +0000935 if (!isFunc &&
Douglas Gregor9817f4a2009-02-09 15:09:02 +0000936 D.getDeclSpec().getTypeSpecType() == DeclSpec::TST_typename &&
Argyrios Kyrtzidis2e3e7562008-10-15 20:23:22 +0000937 D.getNumTypeObjects() == 0) {
Argyrios Kyrtzidis1207d312008-10-08 22:20:31 +0000938 // Check also for this case:
939 //
940 // typedef int f();
941 // f a;
942 //
Argyrios Kyrtzidisc7148c92009-08-19 01:28:28 +0000943 QualType TDType = GetTypeFromParser(DS.getTypeRep());
Douglas Gregor9817f4a2009-02-09 15:09:02 +0000944 isFunc = TDType->isFunctionType();
Argyrios Kyrtzidis1207d312008-10-08 22:20:31 +0000945 }
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000946
Sebastian Redlccdfaba2008-11-14 23:42:31 +0000947 bool isInstField = ((DS.getStorageClassSpec() == DeclSpec::SCS_unspecified ||
948 DS.getStorageClassSpec() == DeclSpec::SCS_mutable) &&
Argyrios Kyrtzidis1207d312008-10-08 22:20:31 +0000949 !isFunc);
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000950
951 Decl *Member;
Chris Lattner73bf7b42009-03-05 22:45:59 +0000952 if (isInstField) {
Douglas Gregor3447e762009-08-20 22:52:58 +0000953 // FIXME: Check for template parameters!
Douglas Gregor4261e4c2009-03-11 20:50:30 +0000954 Member = HandleField(S, cast<CXXRecordDecl>(CurContext), Loc, D, BitWidth,
955 AS);
Chris Lattner97e277e2009-03-05 23:03:49 +0000956 assert(Member && "HandleField never returns null");
Chris Lattner73bf7b42009-03-05 22:45:59 +0000957 } else {
Sebastian Redld6f78502009-11-24 23:38:44 +0000958 Member = HandleDeclarator(S, D, move(TemplateParameterLists), IsDefinition)
Douglas Gregor3447e762009-08-20 22:52:58 +0000959 .getAs<Decl>();
Chris Lattner97e277e2009-03-05 23:03:49 +0000960 if (!Member) {
961 if (BitWidth) DeleteExpr(BitWidth);
Chris Lattner5bbb3c82009-03-29 16:50:03 +0000962 return DeclPtrTy();
Chris Lattner97e277e2009-03-05 23:03:49 +0000963 }
Chris Lattnerd26760a2009-03-05 23:01:03 +0000964
965 // Non-instance-fields can't have a bitfield.
966 if (BitWidth) {
967 if (Member->isInvalidDecl()) {
968 // don't emit another diagnostic.
Douglas Gregor212cab32009-03-11 20:22:50 +0000969 } else if (isa<VarDecl>(Member)) {
Chris Lattnerd26760a2009-03-05 23:01:03 +0000970 // C++ 9.6p3: A bit-field shall not be a static member.
971 // "static member 'A' cannot be a bit-field"
972 Diag(Loc, diag::err_static_not_bitfield)
973 << Name << BitWidth->getSourceRange();
974 } else if (isa<TypedefDecl>(Member)) {
975 // "typedef member 'x' cannot be a bit-field"
976 Diag(Loc, diag::err_typedef_not_bitfield)
977 << Name << BitWidth->getSourceRange();
978 } else {
979 // A function typedef ("typedef int f(); f a;").
980 // C++ 9.6p3: A bit-field shall have integral or enumeration type.
981 Diag(Loc, diag::err_not_integral_type_bitfield)
Mike Stump11289f42009-09-09 15:08:12 +0000982 << Name << cast<ValueDecl>(Member)->getType()
Douglas Gregor1efa4372009-03-11 18:59:21 +0000983 << BitWidth->getSourceRange();
Chris Lattnerd26760a2009-03-05 23:01:03 +0000984 }
Mike Stump11289f42009-09-09 15:08:12 +0000985
Chris Lattnerd26760a2009-03-05 23:01:03 +0000986 DeleteExpr(BitWidth);
987 BitWidth = 0;
988 Member->setInvalidDecl();
989 }
Douglas Gregor4261e4c2009-03-11 20:50:30 +0000990
991 Member->setAccess(AS);
Mike Stump11289f42009-09-09 15:08:12 +0000992
Douglas Gregor3447e762009-08-20 22:52:58 +0000993 // If we have declared a member function template, set the access of the
994 // templated declaration as well.
995 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Member))
996 FunTmpl->getTemplatedDecl()->setAccess(AS);
Chris Lattner73bf7b42009-03-05 22:45:59 +0000997 }
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000998
Douglas Gregor92751d42008-11-17 22:58:34 +0000999 assert((Name || isInstField) && "No identifier for non-field ?");
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001000
Douglas Gregor0c880302009-03-11 23:00:04 +00001001 if (Init)
Chris Lattner83f095c2009-03-28 19:18:32 +00001002 AddInitializerToDecl(DeclPtrTy::make(Member), ExprArg(*this, Init), false);
Sebastian Redl42e92c42009-04-12 17:16:29 +00001003 if (Deleted) // FIXME: Source location is not very good.
1004 SetDeclDeleted(DeclPtrTy::make(Member), D.getSourceRange().getBegin());
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001005
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001006 if (isInstField) {
Douglas Gregor91f84212008-12-11 16:49:14 +00001007 FieldCollector->Add(cast<FieldDecl>(Member));
Chris Lattner5bbb3c82009-03-29 16:50:03 +00001008 return DeclPtrTy();
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001009 }
Chris Lattner83f095c2009-03-28 19:18:32 +00001010 return DeclPtrTy::make(Member);
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001011}
1012
Douglas Gregor15e77a22009-12-31 09:10:24 +00001013/// \brief Find the direct and/or virtual base specifiers that
1014/// correspond to the given base type, for use in base initialization
1015/// within a constructor.
1016static bool FindBaseInitializer(Sema &SemaRef,
1017 CXXRecordDecl *ClassDecl,
1018 QualType BaseType,
1019 const CXXBaseSpecifier *&DirectBaseSpec,
1020 const CXXBaseSpecifier *&VirtualBaseSpec) {
1021 // First, check for a direct base class.
1022 DirectBaseSpec = 0;
1023 for (CXXRecordDecl::base_class_const_iterator Base
1024 = ClassDecl->bases_begin();
1025 Base != ClassDecl->bases_end(); ++Base) {
1026 if (SemaRef.Context.hasSameUnqualifiedType(BaseType, Base->getType())) {
1027 // We found a direct base of this type. That's what we're
1028 // initializing.
1029 DirectBaseSpec = &*Base;
1030 break;
1031 }
1032 }
1033
1034 // Check for a virtual base class.
1035 // FIXME: We might be able to short-circuit this if we know in advance that
1036 // there are no virtual bases.
1037 VirtualBaseSpec = 0;
1038 if (!DirectBaseSpec || !DirectBaseSpec->isVirtual()) {
1039 // We haven't found a base yet; search the class hierarchy for a
1040 // virtual base class.
1041 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
1042 /*DetectVirtual=*/false);
1043 if (SemaRef.IsDerivedFrom(SemaRef.Context.getTypeDeclType(ClassDecl),
1044 BaseType, Paths)) {
1045 for (CXXBasePaths::paths_iterator Path = Paths.begin();
1046 Path != Paths.end(); ++Path) {
1047 if (Path->back().Base->isVirtual()) {
1048 VirtualBaseSpec = Path->back().Base;
1049 break;
1050 }
1051 }
1052 }
1053 }
1054
1055 return DirectBaseSpec || VirtualBaseSpec;
1056}
1057
Douglas Gregore8381c02008-11-05 04:29:56 +00001058/// ActOnMemInitializer - Handle a C++ member initializer.
Mike Stump11289f42009-09-09 15:08:12 +00001059Sema::MemInitResult
Chris Lattner83f095c2009-03-28 19:18:32 +00001060Sema::ActOnMemInitializer(DeclPtrTy ConstructorD,
Douglas Gregore8381c02008-11-05 04:29:56 +00001061 Scope *S,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00001062 CXXScopeSpec &SS,
Douglas Gregore8381c02008-11-05 04:29:56 +00001063 IdentifierInfo *MemberOrBase,
Fariborz Jahanianc1fc3ec2009-07-01 19:21:19 +00001064 TypeTy *TemplateTypeTy,
Douglas Gregore8381c02008-11-05 04:29:56 +00001065 SourceLocation IdLoc,
1066 SourceLocation LParenLoc,
1067 ExprTy **Args, unsigned NumArgs,
1068 SourceLocation *CommaLocs,
1069 SourceLocation RParenLoc) {
Douglas Gregor71a57182009-06-22 23:20:33 +00001070 if (!ConstructorD)
1071 return true;
Mike Stump11289f42009-09-09 15:08:12 +00001072
Douglas Gregorc8c277a2009-08-24 11:57:43 +00001073 AdjustDeclIfTemplate(ConstructorD);
Mike Stump11289f42009-09-09 15:08:12 +00001074
1075 CXXConstructorDecl *Constructor
Chris Lattner83f095c2009-03-28 19:18:32 +00001076 = dyn_cast<CXXConstructorDecl>(ConstructorD.getAs<Decl>());
Douglas Gregore8381c02008-11-05 04:29:56 +00001077 if (!Constructor) {
1078 // The user wrote a constructor initializer on a function that is
1079 // not a C++ constructor. Ignore the error for now, because we may
1080 // have more member initializers coming; we'll diagnose it just
1081 // once in ActOnMemInitializers.
1082 return true;
1083 }
1084
1085 CXXRecordDecl *ClassDecl = Constructor->getParent();
1086
1087 // C++ [class.base.init]p2:
1088 // Names in a mem-initializer-id are looked up in the scope of the
1089 // constructor’s class and, if not found in that scope, are looked
1090 // up in the scope containing the constructor’s
1091 // definition. [Note: if the constructor’s class contains a member
1092 // with the same name as a direct or virtual base class of the
1093 // class, a mem-initializer-id naming the member or base class and
1094 // composed of a single identifier refers to the class member. A
1095 // mem-initializer-id for the hidden base class may be specified
1096 // using a qualified name. ]
Fariborz Jahanianc1fc3ec2009-07-01 19:21:19 +00001097 if (!SS.getScopeRep() && !TemplateTypeTy) {
Fariborz Jahanian302bb662009-06-30 23:26:25 +00001098 // Look for a member, first.
1099 FieldDecl *Member = 0;
Mike Stump11289f42009-09-09 15:08:12 +00001100 DeclContext::lookup_result Result
Fariborz Jahanian302bb662009-06-30 23:26:25 +00001101 = ClassDecl->lookup(MemberOrBase);
1102 if (Result.first != Result.second)
1103 Member = dyn_cast<FieldDecl>(*Result.first);
Douglas Gregore8381c02008-11-05 04:29:56 +00001104
Fariborz Jahanian302bb662009-06-30 23:26:25 +00001105 // FIXME: Handle members of an anonymous union.
Douglas Gregore8381c02008-11-05 04:29:56 +00001106
Eli Friedman8e1433b2009-07-29 19:44:27 +00001107 if (Member)
1108 return BuildMemberInitializer(Member, (Expr**)Args, NumArgs, IdLoc,
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00001109 LParenLoc, RParenLoc);
Douglas Gregore8381c02008-11-05 04:29:56 +00001110 }
Douglas Gregore8381c02008-11-05 04:29:56 +00001111 // It didn't name a member, so see if it names a class.
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00001112 QualType BaseType;
John McCallbcd03502009-12-07 02:54:59 +00001113 TypeSourceInfo *TInfo = 0;
John McCallb5a0d312009-12-21 10:41:20 +00001114
1115 if (TemplateTypeTy) {
John McCallbcd03502009-12-07 02:54:59 +00001116 BaseType = GetTypeFromParser(TemplateTypeTy, &TInfo);
John McCallb5a0d312009-12-21 10:41:20 +00001117 } else {
1118 LookupResult R(*this, MemberOrBase, IdLoc, LookupOrdinaryName);
1119 LookupParsedName(R, S, &SS);
1120
1121 TypeDecl *TyD = R.getAsSingle<TypeDecl>();
1122 if (!TyD) {
1123 if (R.isAmbiguous()) return true;
1124
John McCallda6841b2010-04-09 19:01:14 +00001125 // We don't want access-control diagnostics here.
1126 R.suppressDiagnostics();
1127
Douglas Gregora3b624a2010-01-19 06:46:48 +00001128 if (SS.isSet() && isDependentScopeSpecifier(SS)) {
1129 bool NotUnknownSpecialization = false;
1130 DeclContext *DC = computeDeclContext(SS, false);
1131 if (CXXRecordDecl *Record = dyn_cast_or_null<CXXRecordDecl>(DC))
1132 NotUnknownSpecialization = !Record->hasAnyDependentBases();
1133
1134 if (!NotUnknownSpecialization) {
1135 // When the scope specifier can refer to a member of an unknown
1136 // specialization, we take it as a type name.
Douglas Gregorbbdf20a2010-04-24 15:35:55 +00001137 BaseType = CheckTypenameType(ETK_None,
1138 (NestedNameSpecifier *)SS.getScopeRep(),
Douglas Gregora3b624a2010-01-19 06:46:48 +00001139 *MemberOrBase, SS.getRange());
Douglas Gregor281c4862010-03-07 23:26:22 +00001140 if (BaseType.isNull())
1141 return true;
1142
Douglas Gregora3b624a2010-01-19 06:46:48 +00001143 R.clear();
1144 }
1145 }
1146
Douglas Gregor15e77a22009-12-31 09:10:24 +00001147 // If no results were found, try to correct typos.
Douglas Gregora3b624a2010-01-19 06:46:48 +00001148 if (R.empty() && BaseType.isNull() &&
Douglas Gregor280e1ee2010-04-14 20:04:41 +00001149 CorrectTypo(R, S, &SS, ClassDecl, 0, CTC_NoKeywords) &&
1150 R.isSingleResult()) {
Douglas Gregor15e77a22009-12-31 09:10:24 +00001151 if (FieldDecl *Member = R.getAsSingle<FieldDecl>()) {
1152 if (Member->getDeclContext()->getLookupContext()->Equals(ClassDecl)) {
1153 // We have found a non-static data member with a similar
1154 // name to what was typed; complain and initialize that
1155 // member.
1156 Diag(R.getNameLoc(), diag::err_mem_init_not_member_or_class_suggest)
1157 << MemberOrBase << true << R.getLookupName()
Douglas Gregora771f462010-03-31 17:46:05 +00001158 << FixItHint::CreateReplacement(R.getNameLoc(),
1159 R.getLookupName().getAsString());
Douglas Gregor6da83622010-01-07 00:17:44 +00001160 Diag(Member->getLocation(), diag::note_previous_decl)
1161 << Member->getDeclName();
Douglas Gregor15e77a22009-12-31 09:10:24 +00001162
1163 return BuildMemberInitializer(Member, (Expr**)Args, NumArgs, IdLoc,
1164 LParenLoc, RParenLoc);
1165 }
1166 } else if (TypeDecl *Type = R.getAsSingle<TypeDecl>()) {
1167 const CXXBaseSpecifier *DirectBaseSpec;
1168 const CXXBaseSpecifier *VirtualBaseSpec;
1169 if (FindBaseInitializer(*this, ClassDecl,
1170 Context.getTypeDeclType(Type),
1171 DirectBaseSpec, VirtualBaseSpec)) {
1172 // We have found a direct or virtual base class with a
1173 // similar name to what was typed; complain and initialize
1174 // that base class.
1175 Diag(R.getNameLoc(), diag::err_mem_init_not_member_or_class_suggest)
1176 << MemberOrBase << false << R.getLookupName()
Douglas Gregora771f462010-03-31 17:46:05 +00001177 << FixItHint::CreateReplacement(R.getNameLoc(),
1178 R.getLookupName().getAsString());
Douglas Gregor43a08572010-01-07 00:26:25 +00001179
1180 const CXXBaseSpecifier *BaseSpec = DirectBaseSpec? DirectBaseSpec
1181 : VirtualBaseSpec;
1182 Diag(BaseSpec->getSourceRange().getBegin(),
1183 diag::note_base_class_specified_here)
1184 << BaseSpec->getType()
1185 << BaseSpec->getSourceRange();
1186
Douglas Gregor15e77a22009-12-31 09:10:24 +00001187 TyD = Type;
1188 }
1189 }
1190 }
1191
Douglas Gregora3b624a2010-01-19 06:46:48 +00001192 if (!TyD && BaseType.isNull()) {
Douglas Gregor15e77a22009-12-31 09:10:24 +00001193 Diag(IdLoc, diag::err_mem_init_not_member_or_class)
1194 << MemberOrBase << SourceRange(IdLoc, RParenLoc);
1195 return true;
1196 }
John McCallb5a0d312009-12-21 10:41:20 +00001197 }
1198
Douglas Gregora3b624a2010-01-19 06:46:48 +00001199 if (BaseType.isNull()) {
1200 BaseType = Context.getTypeDeclType(TyD);
1201 if (SS.isSet()) {
1202 NestedNameSpecifier *Qualifier =
1203 static_cast<NestedNameSpecifier*>(SS.getScopeRep());
John McCallb5a0d312009-12-21 10:41:20 +00001204
Douglas Gregora3b624a2010-01-19 06:46:48 +00001205 // FIXME: preserve source range information
Abramo Bagnara6150c882010-05-11 21:36:43 +00001206 BaseType = Context.getElaboratedType(ETK_None, Qualifier, BaseType);
Douglas Gregora3b624a2010-01-19 06:46:48 +00001207 }
John McCallb5a0d312009-12-21 10:41:20 +00001208 }
1209 }
Mike Stump11289f42009-09-09 15:08:12 +00001210
John McCallbcd03502009-12-07 02:54:59 +00001211 if (!TInfo)
1212 TInfo = Context.getTrivialTypeSourceInfo(BaseType, IdLoc);
Douglas Gregore8381c02008-11-05 04:29:56 +00001213
John McCallbcd03502009-12-07 02:54:59 +00001214 return BuildBaseInitializer(BaseType, TInfo, (Expr **)Args, NumArgs,
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00001215 LParenLoc, RParenLoc, ClassDecl);
Eli Friedman8e1433b2009-07-29 19:44:27 +00001216}
1217
John McCalle22a04a2009-11-04 23:02:40 +00001218/// Checks an initializer expression for use of uninitialized fields, such as
1219/// containing the field that is being initialized. Returns true if there is an
1220/// uninitialized field was used an updates the SourceLocation parameter; false
1221/// otherwise.
1222static bool InitExprContainsUninitializedFields(const Stmt* S,
1223 const FieldDecl* LhsField,
1224 SourceLocation* L) {
1225 const MemberExpr* ME = dyn_cast<MemberExpr>(S);
1226 if (ME) {
1227 const NamedDecl* RhsField = ME->getMemberDecl();
1228 if (RhsField == LhsField) {
1229 // Initializing a field with itself. Throw a warning.
1230 // But wait; there are exceptions!
1231 // Exception #1: The field may not belong to this record.
1232 // e.g. Foo(const Foo& rhs) : A(rhs.A) {}
1233 const Expr* base = ME->getBase();
1234 if (base != NULL && !isa<CXXThisExpr>(base->IgnoreParenCasts())) {
1235 // Even though the field matches, it does not belong to this record.
1236 return false;
1237 }
1238 // None of the exceptions triggered; return true to indicate an
1239 // uninitialized field was used.
1240 *L = ME->getMemberLoc();
1241 return true;
1242 }
1243 }
1244 bool found = false;
1245 for (Stmt::const_child_iterator it = S->child_begin();
1246 it != S->child_end() && found == false;
1247 ++it) {
1248 if (isa<CallExpr>(S)) {
1249 // Do not descend into function calls or constructors, as the use
1250 // of an uninitialized field may be valid. One would have to inspect
1251 // the contents of the function/ctor to determine if it is safe or not.
1252 // i.e. Pass-by-value is never safe, but pass-by-reference and pointers
1253 // may be safe, depending on what the function/ctor does.
1254 continue;
1255 }
1256 found = InitExprContainsUninitializedFields(*it, LhsField, L);
1257 }
1258 return found;
1259}
1260
Eli Friedman8e1433b2009-07-29 19:44:27 +00001261Sema::MemInitResult
1262Sema::BuildMemberInitializer(FieldDecl *Member, Expr **Args,
1263 unsigned NumArgs, SourceLocation IdLoc,
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00001264 SourceLocation LParenLoc,
Eli Friedman8e1433b2009-07-29 19:44:27 +00001265 SourceLocation RParenLoc) {
John McCalle22a04a2009-11-04 23:02:40 +00001266 // Diagnose value-uses of fields to initialize themselves, e.g.
1267 // foo(foo)
1268 // where foo is not also a parameter to the constructor.
John McCallc90f6d72009-11-04 23:13:52 +00001269 // TODO: implement -Wuninitialized and fold this into that framework.
John McCalle22a04a2009-11-04 23:02:40 +00001270 for (unsigned i = 0; i < NumArgs; ++i) {
1271 SourceLocation L;
1272 if (InitExprContainsUninitializedFields(Args[i], Member, &L)) {
1273 // FIXME: Return true in the case when other fields are used before being
1274 // uninitialized. For example, let this field be the i'th field. When
1275 // initializing the i'th field, throw a warning if any of the >= i'th
1276 // fields are used, as they are not yet initialized.
1277 // Right now we are only handling the case where the i'th field uses
1278 // itself in its initializer.
1279 Diag(L, diag::warn_field_is_uninit);
1280 }
1281 }
1282
Eli Friedman8e1433b2009-07-29 19:44:27 +00001283 bool HasDependentArg = false;
1284 for (unsigned i = 0; i < NumArgs; i++)
1285 HasDependentArg |= Args[i]->isTypeDependent();
1286
Eli Friedman8e1433b2009-07-29 19:44:27 +00001287 QualType FieldType = Member->getType();
1288 if (const ArrayType *Array = Context.getAsArrayType(FieldType))
1289 FieldType = Array->getElementType();
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001290 if (FieldType->isDependentType() || HasDependentArg) {
1291 // Can't check initialization for a member of dependent type or when
1292 // any of the arguments are type-dependent expressions.
1293 OwningExprResult Init
1294 = Owned(new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1295 RParenLoc));
1296
1297 // Erase any temporaries within this evaluation context; we're not
1298 // going to track them in the AST, since we'll be rebuilding the
1299 // ASTs during template instantiation.
1300 ExprTemporaries.erase(
1301 ExprTemporaries.begin() + ExprEvalContexts.back().NumTemporaries,
1302 ExprTemporaries.end());
1303
1304 return new (Context) CXXBaseOrMemberInitializer(Context, Member, IdLoc,
1305 LParenLoc,
1306 Init.takeAs<Expr>(),
1307 RParenLoc);
1308
Douglas Gregore8381c02008-11-05 04:29:56 +00001309 }
Anders Carlsson1fe64cb2009-11-13 19:21:49 +00001310
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001311 if (Member->isInvalidDecl())
1312 return true;
Anders Carlsson1fe64cb2009-11-13 19:21:49 +00001313
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001314 // Initialize the member.
1315 InitializedEntity MemberEntity =
1316 InitializedEntity::InitializeMember(Member, 0);
1317 InitializationKind Kind =
1318 InitializationKind::CreateDirect(IdLoc, LParenLoc, RParenLoc);
1319
1320 InitializationSequence InitSeq(*this, MemberEntity, Kind, Args, NumArgs);
1321
1322 OwningExprResult MemberInit =
1323 InitSeq.Perform(*this, MemberEntity, Kind,
1324 MultiExprArg(*this, (void**)Args, NumArgs), 0);
1325 if (MemberInit.isInvalid())
1326 return true;
1327
1328 // C++0x [class.base.init]p7:
1329 // The initialization of each base and member constitutes a
1330 // full-expression.
1331 MemberInit = MaybeCreateCXXExprWithTemporaries(move(MemberInit));
1332 if (MemberInit.isInvalid())
1333 return true;
1334
1335 // If we are in a dependent context, template instantiation will
1336 // perform this type-checking again. Just save the arguments that we
1337 // received in a ParenListExpr.
1338 // FIXME: This isn't quite ideal, since our ASTs don't capture all
1339 // of the information that we have about the member
1340 // initializer. However, deconstructing the ASTs is a dicey process,
1341 // and this approach is far more likely to get the corner cases right.
1342 if (CurContext->isDependentContext()) {
1343 // Bump the reference count of all of the arguments.
1344 for (unsigned I = 0; I != NumArgs; ++I)
1345 Args[I]->Retain();
1346
1347 OwningExprResult Init
1348 = Owned(new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1349 RParenLoc));
1350 return new (Context) CXXBaseOrMemberInitializer(Context, Member, IdLoc,
1351 LParenLoc,
1352 Init.takeAs<Expr>(),
1353 RParenLoc);
1354 }
1355
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00001356 return new (Context) CXXBaseOrMemberInitializer(Context, Member, IdLoc,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001357 LParenLoc,
1358 MemberInit.takeAs<Expr>(),
1359 RParenLoc);
Eli Friedman8e1433b2009-07-29 19:44:27 +00001360}
1361
1362Sema::MemInitResult
John McCallbcd03502009-12-07 02:54:59 +00001363Sema::BuildBaseInitializer(QualType BaseType, TypeSourceInfo *BaseTInfo,
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00001364 Expr **Args, unsigned NumArgs,
1365 SourceLocation LParenLoc, SourceLocation RParenLoc,
1366 CXXRecordDecl *ClassDecl) {
Eli Friedman8e1433b2009-07-29 19:44:27 +00001367 bool HasDependentArg = false;
1368 for (unsigned i = 0; i < NumArgs; i++)
1369 HasDependentArg |= Args[i]->isTypeDependent();
1370
John McCallbcd03502009-12-07 02:54:59 +00001371 SourceLocation BaseLoc = BaseTInfo->getTypeLoc().getSourceRange().getBegin();
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001372 if (BaseType->isDependentType() || HasDependentArg) {
1373 // Can't check initialization for a base of dependent type or when
1374 // any of the arguments are type-dependent expressions.
1375 OwningExprResult BaseInit
1376 = Owned(new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1377 RParenLoc));
Eli Friedman8e1433b2009-07-29 19:44:27 +00001378
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001379 // Erase any temporaries within this evaluation context; we're not
1380 // going to track them in the AST, since we'll be rebuilding the
1381 // ASTs during template instantiation.
1382 ExprTemporaries.erase(
1383 ExprTemporaries.begin() + ExprEvalContexts.back().NumTemporaries,
1384 ExprTemporaries.end());
Mike Stump11289f42009-09-09 15:08:12 +00001385
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001386 return new (Context) CXXBaseOrMemberInitializer(Context, BaseTInfo,
Anders Carlsson1c0f8bb2010-04-12 00:51:03 +00001387 /*IsVirtual=*/false,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001388 LParenLoc,
1389 BaseInit.takeAs<Expr>(),
1390 RParenLoc);
Douglas Gregore8381c02008-11-05 04:29:56 +00001391 }
Anders Carlsson1fe64cb2009-11-13 19:21:49 +00001392
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001393 if (!BaseType->isRecordType())
1394 return Diag(BaseLoc, diag::err_base_init_does_not_name_class)
1395 << BaseType << BaseTInfo->getTypeLoc().getSourceRange();
1396
1397 // C++ [class.base.init]p2:
1398 // [...] Unless the mem-initializer-id names a nonstatic data
1399 // member of the constructor’s class or a direct or virtual base
1400 // of that class, the mem-initializer is ill-formed. A
1401 // mem-initializer-list can initialize a base class using any
1402 // name that denotes that base class type.
1403
1404 // Check for direct and virtual base classes.
1405 const CXXBaseSpecifier *DirectBaseSpec = 0;
1406 const CXXBaseSpecifier *VirtualBaseSpec = 0;
1407 FindBaseInitializer(*this, ClassDecl, BaseType, DirectBaseSpec,
1408 VirtualBaseSpec);
1409
1410 // C++ [base.class.init]p2:
1411 // If a mem-initializer-id is ambiguous because it designates both
1412 // a direct non-virtual base class and an inherited virtual base
1413 // class, the mem-initializer is ill-formed.
1414 if (DirectBaseSpec && VirtualBaseSpec)
1415 return Diag(BaseLoc, diag::err_base_init_direct_and_virtual)
1416 << BaseType << BaseTInfo->getTypeLoc().getSourceRange();
1417 // C++ [base.class.init]p2:
1418 // Unless the mem-initializer-id names a nonstatic data membeer of the
1419 // constructor's class ot a direst or virtual base of that class, the
1420 // mem-initializer is ill-formed.
1421 if (!DirectBaseSpec && !VirtualBaseSpec)
1422 return Diag(BaseLoc, diag::err_not_direct_base_or_virtual)
John McCall1e67dd62010-04-27 01:43:38 +00001423 << BaseType << Context.getTypeDeclType(ClassDecl)
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001424 << BaseTInfo->getTypeLoc().getSourceRange();
1425
1426 CXXBaseSpecifier *BaseSpec
1427 = const_cast<CXXBaseSpecifier *>(DirectBaseSpec);
1428 if (!BaseSpec)
1429 BaseSpec = const_cast<CXXBaseSpecifier *>(VirtualBaseSpec);
1430
1431 // Initialize the base.
1432 InitializedEntity BaseEntity =
Anders Carlsson43c64af2010-04-21 19:52:01 +00001433 InitializedEntity::InitializeBase(Context, BaseSpec, VirtualBaseSpec);
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001434 InitializationKind Kind =
1435 InitializationKind::CreateDirect(BaseLoc, LParenLoc, RParenLoc);
1436
1437 InitializationSequence InitSeq(*this, BaseEntity, Kind, Args, NumArgs);
1438
1439 OwningExprResult BaseInit =
1440 InitSeq.Perform(*this, BaseEntity, Kind,
1441 MultiExprArg(*this, (void**)Args, NumArgs), 0);
1442 if (BaseInit.isInvalid())
1443 return true;
1444
1445 // C++0x [class.base.init]p7:
1446 // The initialization of each base and member constitutes a
1447 // full-expression.
1448 BaseInit = MaybeCreateCXXExprWithTemporaries(move(BaseInit));
1449 if (BaseInit.isInvalid())
1450 return true;
1451
1452 // If we are in a dependent context, template instantiation will
1453 // perform this type-checking again. Just save the arguments that we
1454 // received in a ParenListExpr.
1455 // FIXME: This isn't quite ideal, since our ASTs don't capture all
1456 // of the information that we have about the base
1457 // initializer. However, deconstructing the ASTs is a dicey process,
1458 // and this approach is far more likely to get the corner cases right.
1459 if (CurContext->isDependentContext()) {
1460 // Bump the reference count of all of the arguments.
1461 for (unsigned I = 0; I != NumArgs; ++I)
1462 Args[I]->Retain();
1463
1464 OwningExprResult Init
1465 = Owned(new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1466 RParenLoc));
1467 return new (Context) CXXBaseOrMemberInitializer(Context, BaseTInfo,
Anders Carlsson1c0f8bb2010-04-12 00:51:03 +00001468 BaseSpec->isVirtual(),
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001469 LParenLoc,
1470 Init.takeAs<Expr>(),
1471 RParenLoc);
1472 }
1473
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 BaseInit.takeAs<Expr>(),
1478 RParenLoc);
Douglas Gregore8381c02008-11-05 04:29:56 +00001479}
1480
Anders Carlsson1b00e242010-04-23 03:10:23 +00001481/// ImplicitInitializerKind - How an implicit base or member initializer should
1482/// initialize its base or member.
1483enum ImplicitInitializerKind {
1484 IIK_Default,
1485 IIK_Copy,
1486 IIK_Move
1487};
1488
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001489static bool
Anders Carlsson3c1db572010-04-23 02:15:47 +00001490BuildImplicitBaseInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlsson1b00e242010-04-23 03:10:23 +00001491 ImplicitInitializerKind ImplicitInitKind,
Anders Carlsson43c64af2010-04-21 19:52:01 +00001492 CXXBaseSpecifier *BaseSpec,
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001493 bool IsInheritedVirtualBase,
1494 CXXBaseOrMemberInitializer *&CXXBaseInit) {
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001495 InitializedEntity InitEntity
Anders Carlsson43c64af2010-04-21 19:52:01 +00001496 = InitializedEntity::InitializeBase(SemaRef.Context, BaseSpec,
1497 IsInheritedVirtualBase);
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001498
Anders Carlsson1b00e242010-04-23 03:10:23 +00001499 Sema::OwningExprResult BaseInit(SemaRef);
1500
1501 switch (ImplicitInitKind) {
1502 case IIK_Default: {
1503 InitializationKind InitKind
1504 = InitializationKind::CreateDefault(Constructor->getLocation());
1505 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, 0, 0);
1506 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind,
1507 Sema::MultiExprArg(SemaRef, 0, 0));
1508 break;
1509 }
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001510
Anders Carlsson1b00e242010-04-23 03:10:23 +00001511 case IIK_Copy: {
1512 ParmVarDecl *Param = Constructor->getParamDecl(0);
1513 QualType ParamType = Param->getType().getNonReferenceType();
1514
1515 Expr *CopyCtorArg =
1516 DeclRefExpr::Create(SemaRef.Context, 0, SourceRange(), Param,
Douglas Gregored088b72010-05-03 15:43:53 +00001517 Constructor->getLocation(), ParamType, 0);
Anders Carlsson1b00e242010-04-23 03:10:23 +00001518
Anders Carlssonaf13c7b2010-04-24 22:02:54 +00001519 // Cast to the base class to avoid ambiguities.
Anders Carlsson79111502010-05-01 16:39:01 +00001520 QualType ArgTy =
1521 SemaRef.Context.getQualifiedType(BaseSpec->getType().getUnqualifiedType(),
1522 ParamType.getQualifiers());
1523 SemaRef.ImpCastExprToType(CopyCtorArg, ArgTy,
Anders Carlssonaf13c7b2010-04-24 22:02:54 +00001524 CastExpr::CK_UncheckedDerivedToBase,
Anders Carlsson36db0d92010-04-24 22:54:32 +00001525 /*isLvalue=*/true,
1526 CXXBaseSpecifierArray(BaseSpec));
Anders Carlssonaf13c7b2010-04-24 22:02:54 +00001527
Anders Carlsson1b00e242010-04-23 03:10:23 +00001528 InitializationKind InitKind
1529 = InitializationKind::CreateDirect(Constructor->getLocation(),
1530 SourceLocation(), SourceLocation());
1531 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind,
1532 &CopyCtorArg, 1);
1533 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind,
1534 Sema::MultiExprArg(SemaRef,
1535 (void**)&CopyCtorArg, 1));
1536 break;
1537 }
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001538
Anders Carlsson1b00e242010-04-23 03:10:23 +00001539 case IIK_Move:
1540 assert(false && "Unhandled initializer kind!");
1541 }
1542
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001543 BaseInit = SemaRef.MaybeCreateCXXExprWithTemporaries(move(BaseInit));
1544 if (BaseInit.isInvalid())
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001545 return true;
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001546
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001547 CXXBaseInit =
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001548 new (SemaRef.Context) CXXBaseOrMemberInitializer(SemaRef.Context,
1549 SemaRef.Context.getTrivialTypeSourceInfo(BaseSpec->getType(),
1550 SourceLocation()),
1551 BaseSpec->isVirtual(),
1552 SourceLocation(),
1553 BaseInit.takeAs<Expr>(),
1554 SourceLocation());
1555
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001556 return false;
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001557}
1558
Anders Carlsson3c1db572010-04-23 02:15:47 +00001559static bool
1560BuildImplicitMemberInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlsson1b00e242010-04-23 03:10:23 +00001561 ImplicitInitializerKind ImplicitInitKind,
Anders Carlsson3c1db572010-04-23 02:15:47 +00001562 FieldDecl *Field,
1563 CXXBaseOrMemberInitializer *&CXXMemberInit) {
Anders Carlsson423f5d82010-04-23 16:04:08 +00001564 if (ImplicitInitKind == IIK_Copy) {
Douglas Gregor94f9a482010-05-05 05:51:00 +00001565 SourceLocation Loc = Constructor->getLocation();
Anders Carlsson423f5d82010-04-23 16:04:08 +00001566 ParmVarDecl *Param = Constructor->getParamDecl(0);
1567 QualType ParamType = Param->getType().getNonReferenceType();
1568
1569 Expr *MemberExprBase =
1570 DeclRefExpr::Create(SemaRef.Context, 0, SourceRange(), Param,
Douglas Gregor94f9a482010-05-05 05:51:00 +00001571 Loc, ParamType, 0);
1572
1573 // Build a reference to this field within the parameter.
1574 CXXScopeSpec SS;
1575 LookupResult MemberLookup(SemaRef, Field->getDeclName(), Loc,
1576 Sema::LookupMemberName);
1577 MemberLookup.addDecl(Field, AS_public);
1578 MemberLookup.resolveKind();
1579 Sema::OwningExprResult CopyCtorArg
1580 = SemaRef.BuildMemberReferenceExpr(SemaRef.Owned(MemberExprBase),
1581 ParamType, Loc,
1582 /*IsArrow=*/false,
1583 SS,
1584 /*FirstQualifierInScope=*/0,
1585 MemberLookup,
1586 /*TemplateArgs=*/0);
1587 if (CopyCtorArg.isInvalid())
Anders Carlsson423f5d82010-04-23 16:04:08 +00001588 return true;
1589
Douglas Gregor94f9a482010-05-05 05:51:00 +00001590 // When the field we are copying is an array, create index variables for
1591 // each dimension of the array. We use these index variables to subscript
1592 // the source array, and other clients (e.g., CodeGen) will perform the
1593 // necessary iteration with these index variables.
1594 llvm::SmallVector<VarDecl *, 4> IndexVariables;
1595 QualType BaseType = Field->getType();
1596 QualType SizeType = SemaRef.Context.getSizeType();
1597 while (const ConstantArrayType *Array
1598 = SemaRef.Context.getAsConstantArrayType(BaseType)) {
1599 // Create the iteration variable for this array index.
1600 IdentifierInfo *IterationVarName = 0;
1601 {
1602 llvm::SmallString<8> Str;
1603 llvm::raw_svector_ostream OS(Str);
1604 OS << "__i" << IndexVariables.size();
1605 IterationVarName = &SemaRef.Context.Idents.get(OS.str());
1606 }
1607 VarDecl *IterationVar
1608 = VarDecl::Create(SemaRef.Context, SemaRef.CurContext, Loc,
1609 IterationVarName, SizeType,
1610 SemaRef.Context.getTrivialTypeSourceInfo(SizeType, Loc),
1611 VarDecl::None, VarDecl::None);
1612 IndexVariables.push_back(IterationVar);
1613
1614 // Create a reference to the iteration variable.
1615 Sema::OwningExprResult IterationVarRef
1616 = SemaRef.BuildDeclRefExpr(IterationVar, SizeType, Loc);
1617 assert(!IterationVarRef.isInvalid() &&
1618 "Reference to invented variable cannot fail!");
1619
1620 // Subscript the array with this iteration variable.
1621 CopyCtorArg = SemaRef.CreateBuiltinArraySubscriptExpr(move(CopyCtorArg),
1622 Loc,
1623 move(IterationVarRef),
1624 Loc);
1625 if (CopyCtorArg.isInvalid())
1626 return true;
1627
1628 BaseType = Array->getElementType();
1629 }
1630
1631 // Construct the entity that we will be initializing. For an array, this
1632 // will be first element in the array, which may require several levels
1633 // of array-subscript entities.
1634 llvm::SmallVector<InitializedEntity, 4> Entities;
1635 Entities.reserve(1 + IndexVariables.size());
1636 Entities.push_back(InitializedEntity::InitializeMember(Field));
1637 for (unsigned I = 0, N = IndexVariables.size(); I != N; ++I)
1638 Entities.push_back(InitializedEntity::InitializeElement(SemaRef.Context,
1639 0,
1640 Entities.back()));
1641
1642 // Direct-initialize to use the copy constructor.
1643 InitializationKind InitKind =
1644 InitializationKind::CreateDirect(Loc, SourceLocation(), SourceLocation());
1645
1646 Expr *CopyCtorArgE = CopyCtorArg.takeAs<Expr>();
1647 InitializationSequence InitSeq(SemaRef, Entities.back(), InitKind,
1648 &CopyCtorArgE, 1);
1649
1650 Sema::OwningExprResult MemberInit
1651 = InitSeq.Perform(SemaRef, Entities.back(), InitKind,
1652 Sema::MultiExprArg(SemaRef, (void**)&CopyCtorArgE, 1));
1653 MemberInit = SemaRef.MaybeCreateCXXExprWithTemporaries(move(MemberInit));
1654 if (MemberInit.isInvalid())
1655 return true;
1656
1657 CXXMemberInit
1658 = CXXBaseOrMemberInitializer::Create(SemaRef.Context, Field, Loc, Loc,
1659 MemberInit.takeAs<Expr>(), Loc,
1660 IndexVariables.data(),
1661 IndexVariables.size());
Anders Carlsson1b00e242010-04-23 03:10:23 +00001662 return false;
1663 }
1664
Anders Carlsson423f5d82010-04-23 16:04:08 +00001665 assert(ImplicitInitKind == IIK_Default && "Unhandled implicit init kind!");
1666
Anders Carlsson3c1db572010-04-23 02:15:47 +00001667 QualType FieldBaseElementType =
1668 SemaRef.Context.getBaseElementType(Field->getType());
1669
Anders Carlsson3c1db572010-04-23 02:15:47 +00001670 if (FieldBaseElementType->isRecordType()) {
1671 InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field);
Anders Carlsson423f5d82010-04-23 16:04:08 +00001672 InitializationKind InitKind =
1673 InitializationKind::CreateDefault(Constructor->getLocation());
Anders Carlsson3c1db572010-04-23 02:15:47 +00001674
1675 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, 0, 0);
1676 Sema::OwningExprResult MemberInit =
1677 InitSeq.Perform(SemaRef, InitEntity, InitKind,
1678 Sema::MultiExprArg(SemaRef, 0, 0));
1679 MemberInit = SemaRef.MaybeCreateCXXExprWithTemporaries(move(MemberInit));
1680 if (MemberInit.isInvalid())
1681 return true;
1682
1683 CXXMemberInit =
1684 new (SemaRef.Context) CXXBaseOrMemberInitializer(SemaRef.Context,
1685 Field, SourceLocation(),
1686 SourceLocation(),
1687 MemberInit.takeAs<Expr>(),
1688 SourceLocation());
1689 return false;
1690 }
Anders Carlssondca6be02010-04-23 03:07:47 +00001691
1692 if (FieldBaseElementType->isReferenceType()) {
1693 SemaRef.Diag(Constructor->getLocation(),
1694 diag::err_uninitialized_member_in_ctor)
1695 << (int)Constructor->isImplicit()
1696 << SemaRef.Context.getTagDeclType(Constructor->getParent())
1697 << 0 << Field->getDeclName();
1698 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
1699 return true;
1700 }
1701
1702 if (FieldBaseElementType.isConstQualified()) {
1703 SemaRef.Diag(Constructor->getLocation(),
1704 diag::err_uninitialized_member_in_ctor)
1705 << (int)Constructor->isImplicit()
1706 << SemaRef.Context.getTagDeclType(Constructor->getParent())
1707 << 1 << Field->getDeclName();
1708 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
1709 return true;
1710 }
Anders Carlsson3c1db572010-04-23 02:15:47 +00001711
1712 // Nothing to initialize.
1713 CXXMemberInit = 0;
1714 return false;
1715}
1716
Eli Friedman9cf6b592009-11-09 19:20:36 +00001717bool
Anders Carlsson561f7932009-10-29 15:46:07 +00001718Sema::SetBaseOrMemberInitializers(CXXConstructorDecl *Constructor,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001719 CXXBaseOrMemberInitializer **Initializers,
1720 unsigned NumInitializers,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001721 bool AnyErrors) {
John McCallbb7b6582010-04-10 07:37:23 +00001722 if (Constructor->getDeclContext()->isDependentContext()) {
Anders Carlssondb0a9652010-04-02 06:26:44 +00001723 // Just store the initializers as written, they will be checked during
1724 // instantiation.
1725 if (NumInitializers > 0) {
1726 Constructor->setNumBaseOrMemberInitializers(NumInitializers);
1727 CXXBaseOrMemberInitializer **baseOrMemberInitializers =
1728 new (Context) CXXBaseOrMemberInitializer*[NumInitializers];
1729 memcpy(baseOrMemberInitializers, Initializers,
1730 NumInitializers * sizeof(CXXBaseOrMemberInitializer*));
1731 Constructor->setBaseOrMemberInitializers(baseOrMemberInitializers);
1732 }
1733
1734 return false;
1735 }
1736
Anders Carlsson1b00e242010-04-23 03:10:23 +00001737 ImplicitInitializerKind ImplicitInitKind = IIK_Default;
1738
1739 // FIXME: Handle implicit move constructors.
1740 if (Constructor->isImplicit() && Constructor->isCopyConstructor())
1741 ImplicitInitKind = IIK_Copy;
1742
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001743 // We need to build the initializer AST according to order of construction
1744 // and not what user specified in the Initializers list.
Anders Carlsson7b3f2782010-04-02 05:42:15 +00001745 CXXRecordDecl *ClassDecl = Constructor->getParent()->getDefinition();
Douglas Gregorc14922f2010-03-26 22:43:07 +00001746 if (!ClassDecl)
1747 return true;
1748
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001749 llvm::SmallVector<CXXBaseOrMemberInitializer*, 32> AllToInit;
1750 llvm::DenseMap<const void *, CXXBaseOrMemberInitializer*> AllBaseFields;
Eli Friedman9cf6b592009-11-09 19:20:36 +00001751 bool HadError = false;
Mike Stump11289f42009-09-09 15:08:12 +00001752
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001753 for (unsigned i = 0; i < NumInitializers; i++) {
1754 CXXBaseOrMemberInitializer *Member = Initializers[i];
Anders Carlssondb0a9652010-04-02 06:26:44 +00001755
1756 if (Member->isBaseInitializer())
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001757 AllBaseFields[Member->getBaseClass()->getAs<RecordType>()] = Member;
Anders Carlssondb0a9652010-04-02 06:26:44 +00001758 else
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001759 AllBaseFields[Member->getMember()] = Member;
Anders Carlssondb0a9652010-04-02 06:26:44 +00001760 }
1761
Anders Carlsson43c64af2010-04-21 19:52:01 +00001762 // Keep track of the direct virtual bases.
1763 llvm::SmallPtrSet<CXXBaseSpecifier *, 16> DirectVBases;
1764 for (CXXRecordDecl::base_class_iterator I = ClassDecl->bases_begin(),
1765 E = ClassDecl->bases_end(); I != E; ++I) {
1766 if (I->isVirtual())
1767 DirectVBases.insert(I);
1768 }
1769
Anders Carlssondb0a9652010-04-02 06:26:44 +00001770 // Push virtual bases before others.
1771 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
1772 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
1773
1774 if (CXXBaseOrMemberInitializer *Value
1775 = AllBaseFields.lookup(VBase->getType()->getAs<RecordType>())) {
1776 AllToInit.push_back(Value);
1777 } else if (!AnyErrors) {
Anders Carlsson43c64af2010-04-21 19:52:01 +00001778 bool IsInheritedVirtualBase = !DirectVBases.count(VBase);
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001779 CXXBaseOrMemberInitializer *CXXBaseInit;
Anders Carlsson1b00e242010-04-23 03:10:23 +00001780 if (BuildImplicitBaseInitializer(*this, Constructor, ImplicitInitKind,
1781 VBase, IsInheritedVirtualBase,
1782 CXXBaseInit)) {
Anders Carlssondb0a9652010-04-02 06:26:44 +00001783 HadError = true;
1784 continue;
1785 }
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001786
Anders Carlssondb0a9652010-04-02 06:26:44 +00001787 AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001788 }
1789 }
Mike Stump11289f42009-09-09 15:08:12 +00001790
Anders Carlssondb0a9652010-04-02 06:26:44 +00001791 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
1792 E = ClassDecl->bases_end(); Base != E; ++Base) {
1793 // Virtuals are in the virtual base list and already constructed.
1794 if (Base->isVirtual())
1795 continue;
Mike Stump11289f42009-09-09 15:08:12 +00001796
Anders Carlssondb0a9652010-04-02 06:26:44 +00001797 if (CXXBaseOrMemberInitializer *Value
1798 = AllBaseFields.lookup(Base->getType()->getAs<RecordType>())) {
1799 AllToInit.push_back(Value);
1800 } else if (!AnyErrors) {
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001801 CXXBaseOrMemberInitializer *CXXBaseInit;
Anders Carlsson1b00e242010-04-23 03:10:23 +00001802 if (BuildImplicitBaseInitializer(*this, Constructor, ImplicitInitKind,
1803 Base, /*IsInheritedVirtualBase=*/false,
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001804 CXXBaseInit)) {
Anders Carlssondb0a9652010-04-02 06:26:44 +00001805 HadError = true;
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001806 continue;
Anders Carlssondb0a9652010-04-02 06:26:44 +00001807 }
Fariborz Jahanian59a1cd42009-09-03 21:32:41 +00001808
Anders Carlssondb0a9652010-04-02 06:26:44 +00001809 AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001810 }
1811 }
Mike Stump11289f42009-09-09 15:08:12 +00001812
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001813 // non-static data members.
1814 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
1815 E = ClassDecl->field_end(); Field != E; ++Field) {
1816 if ((*Field)->isAnonymousStructOrUnion()) {
Mike Stump11289f42009-09-09 15:08:12 +00001817 if (const RecordType *FieldClassType =
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001818 Field->getType()->getAs<RecordType>()) {
1819 CXXRecordDecl *FieldClassDecl
Douglas Gregor07eae022009-11-13 18:34:26 +00001820 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Mike Stump11289f42009-09-09 15:08:12 +00001821 for (RecordDecl::field_iterator FA = FieldClassDecl->field_begin(),
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001822 EA = FieldClassDecl->field_end(); FA != EA; FA++) {
1823 if (CXXBaseOrMemberInitializer *Value = AllBaseFields.lookup(*FA)) {
1824 // 'Member' is the anonymous union field and 'AnonUnionMember' is
1825 // set to the anonymous union data member used in the initializer
1826 // list.
1827 Value->setMember(*Field);
1828 Value->setAnonUnionMember(*FA);
1829 AllToInit.push_back(Value);
1830 break;
1831 }
1832 }
1833 }
Douglas Gregor94f9a482010-05-05 05:51:00 +00001834
1835 if (ImplicitInitKind == IIK_Default)
1836 continue;
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001837 }
1838 if (CXXBaseOrMemberInitializer *Value = AllBaseFields.lookup(*Field)) {
1839 AllToInit.push_back(Value);
1840 continue;
1841 }
Mike Stump11289f42009-09-09 15:08:12 +00001842
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001843 if (AnyErrors)
Douglas Gregor2de8f412009-11-04 17:16:11 +00001844 continue;
Douglas Gregor2de8f412009-11-04 17:16:11 +00001845
Anders Carlsson3c1db572010-04-23 02:15:47 +00001846 CXXBaseOrMemberInitializer *Member;
Anders Carlsson1b00e242010-04-23 03:10:23 +00001847 if (BuildImplicitMemberInitializer(*this, Constructor, ImplicitInitKind,
1848 *Field, Member)) {
Anders Carlsson3c1db572010-04-23 02:15:47 +00001849 HadError = true;
1850 continue;
1851 }
1852
1853 // If the member doesn't need to be initialized, it will be null.
1854 if (Member)
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001855 AllToInit.push_back(Member);
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001856 }
Mike Stump11289f42009-09-09 15:08:12 +00001857
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001858 NumInitializers = AllToInit.size();
1859 if (NumInitializers > 0) {
1860 Constructor->setNumBaseOrMemberInitializers(NumInitializers);
1861 CXXBaseOrMemberInitializer **baseOrMemberInitializers =
1862 new (Context) CXXBaseOrMemberInitializer*[NumInitializers];
John McCalla6309952010-03-16 21:39:52 +00001863 memcpy(baseOrMemberInitializers, AllToInit.data(),
1864 NumInitializers * sizeof(CXXBaseOrMemberInitializer*));
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001865 Constructor->setBaseOrMemberInitializers(baseOrMemberInitializers);
Rafael Espindola13327bb2010-03-13 18:12:56 +00001866
John McCalla6309952010-03-16 21:39:52 +00001867 // Constructors implicitly reference the base and member
1868 // destructors.
1869 MarkBaseAndMemberDestructorsReferenced(Constructor->getLocation(),
1870 Constructor->getParent());
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001871 }
Eli Friedman9cf6b592009-11-09 19:20:36 +00001872
1873 return HadError;
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001874}
1875
Eli Friedman952c15d2009-07-21 19:28:10 +00001876static void *GetKeyForTopLevelField(FieldDecl *Field) {
1877 // For anonymous unions, use the class declaration as the key.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001878 if (const RecordType *RT = Field->getType()->getAs<RecordType>()) {
Eli Friedman952c15d2009-07-21 19:28:10 +00001879 if (RT->getDecl()->isAnonymousStructOrUnion())
1880 return static_cast<void *>(RT->getDecl());
1881 }
1882 return static_cast<void *>(Field);
1883}
1884
Anders Carlsson7b3f2782010-04-02 05:42:15 +00001885static void *GetKeyForBase(ASTContext &Context, QualType BaseType) {
1886 return Context.getCanonicalType(BaseType).getTypePtr();
Anders Carlssonbcec05c2009-09-01 06:22:14 +00001887}
1888
Anders Carlsson7b3f2782010-04-02 05:42:15 +00001889static void *GetKeyForMember(ASTContext &Context,
1890 CXXBaseOrMemberInitializer *Member,
Anders Carlssonbcec05c2009-09-01 06:22:14 +00001891 bool MemberMaybeAnon = false) {
Anders Carlssona942dcd2010-03-30 15:39:27 +00001892 if (!Member->isMemberInitializer())
Anders Carlsson7b3f2782010-04-02 05:42:15 +00001893 return GetKeyForBase(Context, QualType(Member->getBaseClass(), 0));
Anders Carlssona942dcd2010-03-30 15:39:27 +00001894
Eli Friedman952c15d2009-07-21 19:28:10 +00001895 // For fields injected into the class via declaration of an anonymous union,
1896 // use its anonymous union class declaration as the unique key.
Anders Carlssona942dcd2010-03-30 15:39:27 +00001897 FieldDecl *Field = Member->getMember();
Mike Stump11289f42009-09-09 15:08:12 +00001898
Anders Carlssona942dcd2010-03-30 15:39:27 +00001899 // After SetBaseOrMemberInitializers call, Field is the anonymous union
1900 // data member of the class. Data member used in the initializer list is
1901 // in AnonUnionMember field.
1902 if (MemberMaybeAnon && Field->isAnonymousStructOrUnion())
1903 Field = Member->getAnonUnionMember();
Anders Carlsson83ac3122010-03-30 16:19:37 +00001904
John McCall23eebd92010-04-10 09:28:51 +00001905 // If the field is a member of an anonymous struct or union, our key
1906 // is the anonymous record decl that's a direct child of the class.
Anders Carlsson83ac3122010-03-30 16:19:37 +00001907 RecordDecl *RD = Field->getParent();
John McCall23eebd92010-04-10 09:28:51 +00001908 if (RD->isAnonymousStructOrUnion()) {
1909 while (true) {
1910 RecordDecl *Parent = cast<RecordDecl>(RD->getDeclContext());
1911 if (Parent->isAnonymousStructOrUnion())
1912 RD = Parent;
1913 else
1914 break;
1915 }
1916
Anders Carlsson83ac3122010-03-30 16:19:37 +00001917 return static_cast<void *>(RD);
John McCall23eebd92010-04-10 09:28:51 +00001918 }
Mike Stump11289f42009-09-09 15:08:12 +00001919
Anders Carlssona942dcd2010-03-30 15:39:27 +00001920 return static_cast<void *>(Field);
Eli Friedman952c15d2009-07-21 19:28:10 +00001921}
1922
Anders Carlssone857b292010-04-02 03:37:03 +00001923static void
1924DiagnoseBaseOrMemInitializerOrder(Sema &SemaRef,
Anders Carlsson96b8fc62010-04-02 03:38:04 +00001925 const CXXConstructorDecl *Constructor,
John McCallbb7b6582010-04-10 07:37:23 +00001926 CXXBaseOrMemberInitializer **Inits,
1927 unsigned NumInits) {
1928 if (Constructor->getDeclContext()->isDependentContext())
Anders Carlsson35d6e3e2009-08-27 05:57:30 +00001929 return;
Mike Stump11289f42009-09-09 15:08:12 +00001930
John McCallbb7b6582010-04-10 07:37:23 +00001931 if (SemaRef.Diags.getDiagnosticLevel(diag::warn_initializer_out_of_order)
1932 == Diagnostic::Ignored)
Anders Carlssone0eebb32009-08-27 05:45:01 +00001933 return;
Anders Carlssone857b292010-04-02 03:37:03 +00001934
John McCallbb7b6582010-04-10 07:37:23 +00001935 // Build the list of bases and members in the order that they'll
1936 // actually be initialized. The explicit initializers should be in
1937 // this same order but may be missing things.
1938 llvm::SmallVector<const void*, 32> IdealInitKeys;
Mike Stump11289f42009-09-09 15:08:12 +00001939
Anders Carlsson96b8fc62010-04-02 03:38:04 +00001940 const CXXRecordDecl *ClassDecl = Constructor->getParent();
1941
John McCallbb7b6582010-04-10 07:37:23 +00001942 // 1. Virtual bases.
Anders Carlsson96b8fc62010-04-02 03:38:04 +00001943 for (CXXRecordDecl::base_class_const_iterator VBase =
Anders Carlssone0eebb32009-08-27 05:45:01 +00001944 ClassDecl->vbases_begin(),
1945 E = ClassDecl->vbases_end(); VBase != E; ++VBase)
John McCallbb7b6582010-04-10 07:37:23 +00001946 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, VBase->getType()));
Mike Stump11289f42009-09-09 15:08:12 +00001947
John McCallbb7b6582010-04-10 07:37:23 +00001948 // 2. Non-virtual bases.
Anders Carlsson96b8fc62010-04-02 03:38:04 +00001949 for (CXXRecordDecl::base_class_const_iterator Base = ClassDecl->bases_begin(),
Anders Carlssone0eebb32009-08-27 05:45:01 +00001950 E = ClassDecl->bases_end(); Base != E; ++Base) {
Anders Carlssone0eebb32009-08-27 05:45:01 +00001951 if (Base->isVirtual())
1952 continue;
John McCallbb7b6582010-04-10 07:37:23 +00001953 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, Base->getType()));
Anders Carlssone0eebb32009-08-27 05:45:01 +00001954 }
Mike Stump11289f42009-09-09 15:08:12 +00001955
John McCallbb7b6582010-04-10 07:37:23 +00001956 // 3. Direct fields.
Anders Carlssone0eebb32009-08-27 05:45:01 +00001957 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
1958 E = ClassDecl->field_end(); Field != E; ++Field)
John McCallbb7b6582010-04-10 07:37:23 +00001959 IdealInitKeys.push_back(GetKeyForTopLevelField(*Field));
Mike Stump11289f42009-09-09 15:08:12 +00001960
John McCallbb7b6582010-04-10 07:37:23 +00001961 unsigned NumIdealInits = IdealInitKeys.size();
1962 unsigned IdealIndex = 0;
Eli Friedman952c15d2009-07-21 19:28:10 +00001963
John McCallbb7b6582010-04-10 07:37:23 +00001964 CXXBaseOrMemberInitializer *PrevInit = 0;
1965 for (unsigned InitIndex = 0; InitIndex != NumInits; ++InitIndex) {
1966 CXXBaseOrMemberInitializer *Init = Inits[InitIndex];
1967 void *InitKey = GetKeyForMember(SemaRef.Context, Init, true);
1968
1969 // Scan forward to try to find this initializer in the idealized
1970 // initializers list.
1971 for (; IdealIndex != NumIdealInits; ++IdealIndex)
1972 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlssone0eebb32009-08-27 05:45:01 +00001973 break;
John McCallbb7b6582010-04-10 07:37:23 +00001974
1975 // If we didn't find this initializer, it must be because we
1976 // scanned past it on a previous iteration. That can only
1977 // happen if we're out of order; emit a warning.
1978 if (IdealIndex == NumIdealInits) {
1979 assert(PrevInit && "initializer not found in initializer list");
1980
1981 Sema::SemaDiagnosticBuilder D =
1982 SemaRef.Diag(PrevInit->getSourceLocation(),
1983 diag::warn_initializer_out_of_order);
1984
1985 if (PrevInit->isMemberInitializer())
1986 D << 0 << PrevInit->getMember()->getDeclName();
1987 else
1988 D << 1 << PrevInit->getBaseClassInfo()->getType();
1989
1990 if (Init->isMemberInitializer())
1991 D << 0 << Init->getMember()->getDeclName();
1992 else
1993 D << 1 << Init->getBaseClassInfo()->getType();
1994
1995 // Move back to the initializer's location in the ideal list.
1996 for (IdealIndex = 0; IdealIndex != NumIdealInits; ++IdealIndex)
1997 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlssone0eebb32009-08-27 05:45:01 +00001998 break;
John McCallbb7b6582010-04-10 07:37:23 +00001999
2000 assert(IdealIndex != NumIdealInits &&
2001 "initializer not found in initializer list");
Fariborz Jahanian341583c2009-07-09 19:59:47 +00002002 }
John McCallbb7b6582010-04-10 07:37:23 +00002003
2004 PrevInit = Init;
Fariborz Jahanian341583c2009-07-09 19:59:47 +00002005 }
Anders Carlsson75fdaa42009-03-25 02:58:17 +00002006}
2007
John McCall23eebd92010-04-10 09:28:51 +00002008namespace {
2009bool CheckRedundantInit(Sema &S,
2010 CXXBaseOrMemberInitializer *Init,
2011 CXXBaseOrMemberInitializer *&PrevInit) {
2012 if (!PrevInit) {
2013 PrevInit = Init;
2014 return false;
2015 }
2016
2017 if (FieldDecl *Field = Init->getMember())
2018 S.Diag(Init->getSourceLocation(),
2019 diag::err_multiple_mem_initialization)
2020 << Field->getDeclName()
2021 << Init->getSourceRange();
2022 else {
2023 Type *BaseClass = Init->getBaseClass();
2024 assert(BaseClass && "neither field nor base");
2025 S.Diag(Init->getSourceLocation(),
2026 diag::err_multiple_base_initialization)
2027 << QualType(BaseClass, 0)
2028 << Init->getSourceRange();
2029 }
2030 S.Diag(PrevInit->getSourceLocation(), diag::note_previous_initializer)
2031 << 0 << PrevInit->getSourceRange();
2032
2033 return true;
2034}
2035
2036typedef std::pair<NamedDecl *, CXXBaseOrMemberInitializer *> UnionEntry;
2037typedef llvm::DenseMap<RecordDecl*, UnionEntry> RedundantUnionMap;
2038
2039bool CheckRedundantUnionInit(Sema &S,
2040 CXXBaseOrMemberInitializer *Init,
2041 RedundantUnionMap &Unions) {
2042 FieldDecl *Field = Init->getMember();
2043 RecordDecl *Parent = Field->getParent();
2044 if (!Parent->isAnonymousStructOrUnion())
2045 return false;
2046
2047 NamedDecl *Child = Field;
2048 do {
2049 if (Parent->isUnion()) {
2050 UnionEntry &En = Unions[Parent];
2051 if (En.first && En.first != Child) {
2052 S.Diag(Init->getSourceLocation(),
2053 diag::err_multiple_mem_union_initialization)
2054 << Field->getDeclName()
2055 << Init->getSourceRange();
2056 S.Diag(En.second->getSourceLocation(), diag::note_previous_initializer)
2057 << 0 << En.second->getSourceRange();
2058 return true;
2059 } else if (!En.first) {
2060 En.first = Child;
2061 En.second = Init;
2062 }
2063 }
2064
2065 Child = Parent;
2066 Parent = cast<RecordDecl>(Parent->getDeclContext());
2067 } while (Parent->isAnonymousStructOrUnion());
2068
2069 return false;
2070}
2071}
2072
Anders Carlssone857b292010-04-02 03:37:03 +00002073/// ActOnMemInitializers - Handle the member initializers for a constructor.
2074void Sema::ActOnMemInitializers(DeclPtrTy ConstructorDecl,
2075 SourceLocation ColonLoc,
2076 MemInitTy **meminits, unsigned NumMemInits,
2077 bool AnyErrors) {
2078 if (!ConstructorDecl)
2079 return;
2080
2081 AdjustDeclIfTemplate(ConstructorDecl);
2082
2083 CXXConstructorDecl *Constructor
2084 = dyn_cast<CXXConstructorDecl>(ConstructorDecl.getAs<Decl>());
2085
2086 if (!Constructor) {
2087 Diag(ColonLoc, diag::err_only_constructors_take_base_inits);
2088 return;
2089 }
2090
2091 CXXBaseOrMemberInitializer **MemInits =
2092 reinterpret_cast<CXXBaseOrMemberInitializer **>(meminits);
John McCall23eebd92010-04-10 09:28:51 +00002093
2094 // Mapping for the duplicate initializers check.
2095 // For member initializers, this is keyed with a FieldDecl*.
2096 // For base initializers, this is keyed with a Type*.
Anders Carlsson7b3f2782010-04-02 05:42:15 +00002097 llvm::DenseMap<void*, CXXBaseOrMemberInitializer *> Members;
John McCall23eebd92010-04-10 09:28:51 +00002098
2099 // Mapping for the inconsistent anonymous-union initializers check.
2100 RedundantUnionMap MemberUnions;
2101
Anders Carlsson7b3f2782010-04-02 05:42:15 +00002102 bool HadError = false;
2103 for (unsigned i = 0; i < NumMemInits; i++) {
John McCall23eebd92010-04-10 09:28:51 +00002104 CXXBaseOrMemberInitializer *Init = MemInits[i];
Anders Carlssone857b292010-04-02 03:37:03 +00002105
John McCall23eebd92010-04-10 09:28:51 +00002106 if (Init->isMemberInitializer()) {
2107 FieldDecl *Field = Init->getMember();
2108 if (CheckRedundantInit(*this, Init, Members[Field]) ||
2109 CheckRedundantUnionInit(*this, Init, MemberUnions))
2110 HadError = true;
2111 } else {
2112 void *Key = GetKeyForBase(Context, QualType(Init->getBaseClass(), 0));
2113 if (CheckRedundantInit(*this, Init, Members[Key]))
2114 HadError = true;
Anders Carlssone857b292010-04-02 03:37:03 +00002115 }
Anders Carlssone857b292010-04-02 03:37:03 +00002116 }
2117
Anders Carlsson7b3f2782010-04-02 05:42:15 +00002118 if (HadError)
2119 return;
2120
Anders Carlssone857b292010-04-02 03:37:03 +00002121 DiagnoseBaseOrMemInitializerOrder(*this, Constructor, MemInits, NumMemInits);
Anders Carlsson4c8cb012010-04-02 03:43:34 +00002122
2123 SetBaseOrMemberInitializers(Constructor, MemInits, NumMemInits, AnyErrors);
Anders Carlssone857b292010-04-02 03:37:03 +00002124}
2125
Fariborz Jahanian37d06562009-09-03 23:18:17 +00002126void
John McCalla6309952010-03-16 21:39:52 +00002127Sema::MarkBaseAndMemberDestructorsReferenced(SourceLocation Location,
2128 CXXRecordDecl *ClassDecl) {
2129 // Ignore dependent contexts.
2130 if (ClassDecl->isDependentContext())
Anders Carlssondee9a302009-11-17 04:44:12 +00002131 return;
John McCall1064d7e2010-03-16 05:22:47 +00002132
2133 // FIXME: all the access-control diagnostics are positioned on the
2134 // field/base declaration. That's probably good; that said, the
2135 // user might reasonably want to know why the destructor is being
2136 // emitted, and we currently don't say.
Anders Carlssondee9a302009-11-17 04:44:12 +00002137
Anders Carlssondee9a302009-11-17 04:44:12 +00002138 // Non-static data members.
2139 for (CXXRecordDecl::field_iterator I = ClassDecl->field_begin(),
2140 E = ClassDecl->field_end(); I != E; ++I) {
2141 FieldDecl *Field = *I;
2142
2143 QualType FieldType = Context.getBaseElementType(Field->getType());
2144
2145 const RecordType* RT = FieldType->getAs<RecordType>();
2146 if (!RT)
2147 continue;
2148
2149 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl());
2150 if (FieldClassDecl->hasTrivialDestructor())
2151 continue;
2152
John McCall1064d7e2010-03-16 05:22:47 +00002153 CXXDestructorDecl *Dtor = FieldClassDecl->getDestructor(Context);
2154 CheckDestructorAccess(Field->getLocation(), Dtor,
Douglas Gregor89336232010-03-29 23:34:08 +00002155 PDiag(diag::err_access_dtor_field)
John McCall1064d7e2010-03-16 05:22:47 +00002156 << Field->getDeclName()
2157 << FieldType);
2158
John McCalla6309952010-03-16 21:39:52 +00002159 MarkDeclarationReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Anders Carlssondee9a302009-11-17 04:44:12 +00002160 }
2161
John McCall1064d7e2010-03-16 05:22:47 +00002162 llvm::SmallPtrSet<const RecordType *, 8> DirectVirtualBases;
2163
Anders Carlssondee9a302009-11-17 04:44:12 +00002164 // Bases.
2165 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
2166 E = ClassDecl->bases_end(); Base != E; ++Base) {
John McCall1064d7e2010-03-16 05:22:47 +00002167 // Bases are always records in a well-formed non-dependent class.
2168 const RecordType *RT = Base->getType()->getAs<RecordType>();
2169
2170 // Remember direct virtual bases.
Anders Carlssondee9a302009-11-17 04:44:12 +00002171 if (Base->isVirtual())
John McCall1064d7e2010-03-16 05:22:47 +00002172 DirectVirtualBases.insert(RT);
Anders Carlssondee9a302009-11-17 04:44:12 +00002173
2174 // Ignore trivial destructors.
John McCall1064d7e2010-03-16 05:22:47 +00002175 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Anders Carlssondee9a302009-11-17 04:44:12 +00002176 if (BaseClassDecl->hasTrivialDestructor())
2177 continue;
John McCall1064d7e2010-03-16 05:22:47 +00002178
2179 CXXDestructorDecl *Dtor = BaseClassDecl->getDestructor(Context);
2180
2181 // FIXME: caret should be on the start of the class name
2182 CheckDestructorAccess(Base->getSourceRange().getBegin(), Dtor,
Douglas Gregor89336232010-03-29 23:34:08 +00002183 PDiag(diag::err_access_dtor_base)
John McCall1064d7e2010-03-16 05:22:47 +00002184 << Base->getType()
2185 << Base->getSourceRange());
Anders Carlssondee9a302009-11-17 04:44:12 +00002186
John McCalla6309952010-03-16 21:39:52 +00002187 MarkDeclarationReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Anders Carlssondee9a302009-11-17 04:44:12 +00002188 }
2189
2190 // Virtual bases.
Fariborz Jahanian37d06562009-09-03 23:18:17 +00002191 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
2192 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
John McCall1064d7e2010-03-16 05:22:47 +00002193
2194 // Bases are always records in a well-formed non-dependent class.
2195 const RecordType *RT = VBase->getType()->getAs<RecordType>();
2196
2197 // Ignore direct virtual bases.
2198 if (DirectVirtualBases.count(RT))
2199 continue;
2200
Anders Carlssondee9a302009-11-17 04:44:12 +00002201 // Ignore trivial destructors.
John McCall1064d7e2010-03-16 05:22:47 +00002202 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Fariborz Jahanian37d06562009-09-03 23:18:17 +00002203 if (BaseClassDecl->hasTrivialDestructor())
2204 continue;
John McCall1064d7e2010-03-16 05:22:47 +00002205
2206 CXXDestructorDecl *Dtor = BaseClassDecl->getDestructor(Context);
2207 CheckDestructorAccess(ClassDecl->getLocation(), Dtor,
Douglas Gregor89336232010-03-29 23:34:08 +00002208 PDiag(diag::err_access_dtor_vbase)
John McCall1064d7e2010-03-16 05:22:47 +00002209 << VBase->getType());
2210
John McCalla6309952010-03-16 21:39:52 +00002211 MarkDeclarationReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Fariborz Jahanian37d06562009-09-03 23:18:17 +00002212 }
2213}
2214
Fariborz Jahanianaee31ac2009-07-21 22:36:06 +00002215void Sema::ActOnDefaultCtorInitializers(DeclPtrTy CDtorDecl) {
Fariborz Jahanian16094c22009-07-15 22:34:08 +00002216 if (!CDtorDecl)
Fariborz Jahanian49c81792009-07-14 18:24:21 +00002217 return;
Mike Stump11289f42009-09-09 15:08:12 +00002218
Mike Stump11289f42009-09-09 15:08:12 +00002219 if (CXXConstructorDecl *Constructor
Fariborz Jahanian16094c22009-07-15 22:34:08 +00002220 = dyn_cast<CXXConstructorDecl>(CDtorDecl.getAs<Decl>()))
Anders Carlsson4c8cb012010-04-02 03:43:34 +00002221 SetBaseOrMemberInitializers(Constructor, 0, 0, /*AnyErrors=*/false);
Fariborz Jahanian49c81792009-07-14 18:24:21 +00002222}
2223
Mike Stump11289f42009-09-09 15:08:12 +00002224bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
Anders Carlssonb57738b2009-03-24 17:23:42 +00002225 unsigned DiagID, AbstractDiagSelID SelID,
2226 const CXXRecordDecl *CurrentRD) {
Anders Carlssoneabf7702009-08-27 00:13:57 +00002227 if (SelID == -1)
2228 return RequireNonAbstractType(Loc, T,
2229 PDiag(DiagID), CurrentRD);
2230 else
2231 return RequireNonAbstractType(Loc, T,
2232 PDiag(DiagID) << SelID, CurrentRD);
Mike Stump11289f42009-09-09 15:08:12 +00002233}
2234
Anders Carlssoneabf7702009-08-27 00:13:57 +00002235bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
2236 const PartialDiagnostic &PD,
2237 const CXXRecordDecl *CurrentRD) {
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002238 if (!getLangOptions().CPlusPlus)
2239 return false;
Mike Stump11289f42009-09-09 15:08:12 +00002240
Anders Carlssoneb0c5322009-03-23 19:10:31 +00002241 if (const ArrayType *AT = Context.getAsArrayType(T))
Anders Carlssoneabf7702009-08-27 00:13:57 +00002242 return RequireNonAbstractType(Loc, AT->getElementType(), PD,
Anders Carlssonb57738b2009-03-24 17:23:42 +00002243 CurrentRD);
Mike Stump11289f42009-09-09 15:08:12 +00002244
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002245 if (const PointerType *PT = T->getAs<PointerType>()) {
Anders Carlsson8f0d2182009-03-24 01:46:45 +00002246 // Find the innermost pointer type.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002247 while (const PointerType *T = PT->getPointeeType()->getAs<PointerType>())
Anders Carlsson8f0d2182009-03-24 01:46:45 +00002248 PT = T;
Mike Stump11289f42009-09-09 15:08:12 +00002249
Anders Carlsson8f0d2182009-03-24 01:46:45 +00002250 if (const ArrayType *AT = Context.getAsArrayType(PT->getPointeeType()))
Anders Carlssoneabf7702009-08-27 00:13:57 +00002251 return RequireNonAbstractType(Loc, AT->getElementType(), PD, CurrentRD);
Anders Carlsson8f0d2182009-03-24 01:46:45 +00002252 }
Mike Stump11289f42009-09-09 15:08:12 +00002253
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002254 const RecordType *RT = T->getAs<RecordType>();
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002255 if (!RT)
2256 return false;
Mike Stump11289f42009-09-09 15:08:12 +00002257
John McCall67da35c2010-02-04 22:26:26 +00002258 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002259
Anders Carlssonb57738b2009-03-24 17:23:42 +00002260 if (CurrentRD && CurrentRD != RD)
2261 return false;
Mike Stump11289f42009-09-09 15:08:12 +00002262
John McCall67da35c2010-02-04 22:26:26 +00002263 // FIXME: is this reasonable? It matches current behavior, but....
Douglas Gregor0a5a2212010-02-11 01:04:33 +00002264 if (!RD->getDefinition())
John McCall67da35c2010-02-04 22:26:26 +00002265 return false;
2266
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002267 if (!RD->isAbstract())
2268 return false;
Mike Stump11289f42009-09-09 15:08:12 +00002269
Anders Carlssoneabf7702009-08-27 00:13:57 +00002270 Diag(Loc, PD) << RD->getDeclName();
Mike Stump11289f42009-09-09 15:08:12 +00002271
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002272 // Check if we've already emitted the list of pure virtual functions for this
2273 // class.
2274 if (PureVirtualClassDiagSet && PureVirtualClassDiagSet->count(RD))
2275 return true;
Mike Stump11289f42009-09-09 15:08:12 +00002276
Douglas Gregor4165bd62010-03-23 23:47:56 +00002277 CXXFinalOverriderMap FinalOverriders;
2278 RD->getFinalOverriders(FinalOverriders);
Mike Stump11289f42009-09-09 15:08:12 +00002279
Douglas Gregor4165bd62010-03-23 23:47:56 +00002280 for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(),
2281 MEnd = FinalOverriders.end();
2282 M != MEnd;
2283 ++M) {
2284 for (OverridingMethods::iterator SO = M->second.begin(),
2285 SOEnd = M->second.end();
2286 SO != SOEnd; ++SO) {
2287 // C++ [class.abstract]p4:
2288 // A class is abstract if it contains or inherits at least one
2289 // pure virtual function for which the final overrider is pure
2290 // virtual.
Mike Stump11289f42009-09-09 15:08:12 +00002291
Douglas Gregor4165bd62010-03-23 23:47:56 +00002292 //
2293 if (SO->second.size() != 1)
2294 continue;
2295
2296 if (!SO->second.front().Method->isPure())
2297 continue;
2298
2299 Diag(SO->second.front().Method->getLocation(),
2300 diag::note_pure_virtual_function)
2301 << SO->second.front().Method->getDeclName();
2302 }
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002303 }
2304
2305 if (!PureVirtualClassDiagSet)
2306 PureVirtualClassDiagSet.reset(new RecordDeclSetTy);
2307 PureVirtualClassDiagSet->insert(RD);
Mike Stump11289f42009-09-09 15:08:12 +00002308
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002309 return true;
2310}
2311
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002312namespace {
Benjamin Kramer337e3a52009-11-28 19:45:26 +00002313 class AbstractClassUsageDiagnoser
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002314 : public DeclVisitor<AbstractClassUsageDiagnoser, bool> {
2315 Sema &SemaRef;
2316 CXXRecordDecl *AbstractClass;
Mike Stump11289f42009-09-09 15:08:12 +00002317
Anders Carlssonb57738b2009-03-24 17:23:42 +00002318 bool VisitDeclContext(const DeclContext *DC) {
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002319 bool Invalid = false;
2320
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00002321 for (CXXRecordDecl::decl_iterator I = DC->decls_begin(),
2322 E = DC->decls_end(); I != E; ++I)
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002323 Invalid |= Visit(*I);
Anders Carlssonb57738b2009-03-24 17:23:42 +00002324
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002325 return Invalid;
2326 }
Mike Stump11289f42009-09-09 15:08:12 +00002327
Anders Carlssonb57738b2009-03-24 17:23:42 +00002328 public:
2329 AbstractClassUsageDiagnoser(Sema& SemaRef, CXXRecordDecl *ac)
2330 : SemaRef(SemaRef), AbstractClass(ac) {
2331 Visit(SemaRef.Context.getTranslationUnitDecl());
2332 }
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002333
Anders Carlssonb57738b2009-03-24 17:23:42 +00002334 bool VisitFunctionDecl(const FunctionDecl *FD) {
2335 if (FD->isThisDeclarationADefinition()) {
2336 // No need to do the check if we're in a definition, because it requires
2337 // that the return/param types are complete.
Mike Stump11289f42009-09-09 15:08:12 +00002338 // because that requires
Anders Carlssonb57738b2009-03-24 17:23:42 +00002339 return VisitDeclContext(FD);
2340 }
Mike Stump11289f42009-09-09 15:08:12 +00002341
Anders Carlssonb57738b2009-03-24 17:23:42 +00002342 // Check the return type.
John McCall9dd450b2009-09-21 23:43:11 +00002343 QualType RTy = FD->getType()->getAs<FunctionType>()->getResultType();
Mike Stump11289f42009-09-09 15:08:12 +00002344 bool Invalid =
Anders Carlssonb57738b2009-03-24 17:23:42 +00002345 SemaRef.RequireNonAbstractType(FD->getLocation(), RTy,
2346 diag::err_abstract_type_in_decl,
2347 Sema::AbstractReturnType,
2348 AbstractClass);
2349
Mike Stump11289f42009-09-09 15:08:12 +00002350 for (FunctionDecl::param_const_iterator I = FD->param_begin(),
Anders Carlssonb57738b2009-03-24 17:23:42 +00002351 E = FD->param_end(); I != E; ++I) {
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002352 const ParmVarDecl *VD = *I;
Mike Stump11289f42009-09-09 15:08:12 +00002353 Invalid |=
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002354 SemaRef.RequireNonAbstractType(VD->getLocation(),
Mike Stump11289f42009-09-09 15:08:12 +00002355 VD->getOriginalType(),
2356 diag::err_abstract_type_in_decl,
Anders Carlssonb57738b2009-03-24 17:23:42 +00002357 Sema::AbstractParamType,
2358 AbstractClass);
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002359 }
2360
2361 return Invalid;
2362 }
Mike Stump11289f42009-09-09 15:08:12 +00002363
Anders Carlssonb57738b2009-03-24 17:23:42 +00002364 bool VisitDecl(const Decl* D) {
2365 if (const DeclContext *DC = dyn_cast<DeclContext>(D))
2366 return VisitDeclContext(DC);
Mike Stump11289f42009-09-09 15:08:12 +00002367
Anders Carlssonb57738b2009-03-24 17:23:42 +00002368 return false;
2369 }
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002370 };
2371}
2372
Douglas Gregorc99f1552009-12-03 18:33:45 +00002373/// \brief Perform semantic checks on a class definition that has been
2374/// completing, introducing implicitly-declared members, checking for
2375/// abstract types, etc.
Douglas Gregorb93b6062010-04-12 17:09:20 +00002376void Sema::CheckCompletedCXXClass(Scope *S, CXXRecordDecl *Record) {
Douglas Gregorc99f1552009-12-03 18:33:45 +00002377 if (!Record || Record->isInvalidDecl())
2378 return;
2379
Eli Friedman5dd02a0f2009-12-16 20:00:27 +00002380 if (!Record->isDependentType())
Douglas Gregorb93b6062010-04-12 17:09:20 +00002381 AddImplicitlyDeclaredMembersToClass(S, Record);
Douglas Gregor0a0f04d2010-01-06 04:44:19 +00002382
Eli Friedman5dd02a0f2009-12-16 20:00:27 +00002383 if (Record->isInvalidDecl())
2384 return;
2385
John McCall2cb94162010-01-28 07:38:46 +00002386 // Set access bits correctly on the directly-declared conversions.
2387 UnresolvedSetImpl *Convs = Record->getConversionFunctions();
2388 for (UnresolvedSetIterator I = Convs->begin(), E = Convs->end(); I != E; ++I)
2389 Convs->setAccess(I, (*I)->getAccess());
2390
Douglas Gregor4165bd62010-03-23 23:47:56 +00002391 // Determine whether we need to check for final overriders. We do
2392 // this either when there are virtual base classes (in which case we
2393 // may end up finding multiple final overriders for a given virtual
2394 // function) or any of the base classes is abstract (in which case
2395 // we might detect that this class is abstract).
2396 bool CheckFinalOverriders = false;
2397 if (Record->isPolymorphic() && !Record->isInvalidDecl() &&
2398 !Record->isDependentType()) {
2399 if (Record->getNumVBases())
2400 CheckFinalOverriders = true;
2401 else if (!Record->isAbstract()) {
2402 for (CXXRecordDecl::base_class_const_iterator B = Record->bases_begin(),
2403 BEnd = Record->bases_end();
2404 B != BEnd; ++B) {
2405 CXXRecordDecl *BaseDecl
2406 = cast<CXXRecordDecl>(B->getType()->getAs<RecordType>()->getDecl());
2407 if (BaseDecl->isAbstract()) {
2408 CheckFinalOverriders = true;
2409 break;
2410 }
2411 }
2412 }
Douglas Gregorc99f1552009-12-03 18:33:45 +00002413 }
2414
Douglas Gregor4165bd62010-03-23 23:47:56 +00002415 if (CheckFinalOverriders) {
2416 CXXFinalOverriderMap FinalOverriders;
2417 Record->getFinalOverriders(FinalOverriders);
2418
2419 for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(),
2420 MEnd = FinalOverriders.end();
2421 M != MEnd; ++M) {
2422 for (OverridingMethods::iterator SO = M->second.begin(),
2423 SOEnd = M->second.end();
2424 SO != SOEnd; ++SO) {
2425 assert(SO->second.size() > 0 &&
2426 "All virtual functions have overridding virtual functions");
2427 if (SO->second.size() == 1) {
2428 // C++ [class.abstract]p4:
2429 // A class is abstract if it contains or inherits at least one
2430 // pure virtual function for which the final overrider is pure
2431 // virtual.
2432 if (SO->second.front().Method->isPure())
2433 Record->setAbstract(true);
2434 continue;
2435 }
2436
2437 // C++ [class.virtual]p2:
2438 // In a derived class, if a virtual member function of a base
2439 // class subobject has more than one final overrider the
2440 // program is ill-formed.
2441 Diag(Record->getLocation(), diag::err_multiple_final_overriders)
2442 << (NamedDecl *)M->first << Record;
2443 Diag(M->first->getLocation(), diag::note_overridden_virtual_function);
2444 for (OverridingMethods::overriding_iterator OM = SO->second.begin(),
2445 OMEnd = SO->second.end();
2446 OM != OMEnd; ++OM)
2447 Diag(OM->Method->getLocation(), diag::note_final_overrider)
2448 << (NamedDecl *)M->first << OM->Method->getParent();
2449
2450 Record->setInvalidDecl();
2451 }
2452 }
2453 }
2454
2455 if (Record->isAbstract() && !Record->isInvalidDecl())
Douglas Gregorc99f1552009-12-03 18:33:45 +00002456 (void)AbstractClassUsageDiagnoser(*this, Record);
Douglas Gregor454a5b62010-04-15 00:00:53 +00002457
2458 // If this is not an aggregate type and has no user-declared constructor,
2459 // complain about any non-static data members of reference or const scalar
2460 // type, since they will never get initializers.
2461 if (!Record->isInvalidDecl() && !Record->isDependentType() &&
2462 !Record->isAggregate() && !Record->hasUserDeclaredConstructor()) {
2463 bool Complained = false;
2464 for (RecordDecl::field_iterator F = Record->field_begin(),
2465 FEnd = Record->field_end();
2466 F != FEnd; ++F) {
2467 if (F->getType()->isReferenceType() ||
Benjamin Kramer659d7fc2010-04-16 17:43:15 +00002468 (F->getType().isConstQualified() && F->getType()->isScalarType())) {
Douglas Gregor454a5b62010-04-15 00:00:53 +00002469 if (!Complained) {
2470 Diag(Record->getLocation(), diag::warn_no_constructor_for_refconst)
2471 << Record->getTagKind() << Record;
2472 Complained = true;
2473 }
2474
2475 Diag(F->getLocation(), diag::note_refconst_member_not_initialized)
2476 << F->getType()->isReferenceType()
2477 << F->getDeclName();
2478 }
2479 }
2480 }
Douglas Gregor88d292c2010-05-13 16:44:06 +00002481
2482 if (Record->isDynamicClass())
2483 DynamicClasses.push_back(Record);
Douglas Gregorc99f1552009-12-03 18:33:45 +00002484}
2485
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00002486void Sema::ActOnFinishCXXMemberSpecification(Scope* S, SourceLocation RLoc,
Chris Lattner83f095c2009-03-28 19:18:32 +00002487 DeclPtrTy TagDecl,
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00002488 SourceLocation LBrac,
Douglas Gregorc48a10d2010-03-29 14:42:08 +00002489 SourceLocation RBrac,
2490 AttributeList *AttrList) {
Douglas Gregor71a57182009-06-22 23:20:33 +00002491 if (!TagDecl)
2492 return;
Mike Stump11289f42009-09-09 15:08:12 +00002493
Douglas Gregorc9f9b862009-05-11 19:58:34 +00002494 AdjustDeclIfTemplate(TagDecl);
Douglas Gregorc99f1552009-12-03 18:33:45 +00002495
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00002496 ActOnFields(S, RLoc, TagDecl,
Chris Lattner83f095c2009-03-28 19:18:32 +00002497 (DeclPtrTy*)FieldCollector->getCurFields(),
Douglas Gregorc48a10d2010-03-29 14:42:08 +00002498 FieldCollector->getCurNumFields(), LBrac, RBrac, AttrList);
Douglas Gregor463421d2009-03-03 04:44:36 +00002499
Douglas Gregorb93b6062010-04-12 17:09:20 +00002500 CheckCompletedCXXClass(S,
Douglas Gregorc99f1552009-12-03 18:33:45 +00002501 dyn_cast_or_null<CXXRecordDecl>(TagDecl.getAs<Decl>()));
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00002502}
2503
Douglas Gregor05379422008-11-03 17:51:48 +00002504/// AddImplicitlyDeclaredMembersToClass - Adds any implicitly-declared
2505/// special functions, such as the default constructor, copy
2506/// constructor, or destructor, to the given C++ class (C++
2507/// [special]p1). This routine can only be executed just before the
2508/// definition of the class is complete.
Douglas Gregorb93b6062010-04-12 17:09:20 +00002509///
2510/// The scope, if provided, is the class scope.
2511void Sema::AddImplicitlyDeclaredMembersToClass(Scope *S,
2512 CXXRecordDecl *ClassDecl) {
Mike Stump11289f42009-09-09 15:08:12 +00002513 CanQualType ClassType
Douglas Gregor2211d342009-08-05 05:36:45 +00002514 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Douglas Gregor77324f32008-11-17 14:58:09 +00002515
Sebastian Redl5068f77ac2009-05-27 22:11:52 +00002516 // FIXME: Implicit declarations have exception specifications, which are
2517 // the union of the specifications of the implicitly called functions.
2518
Douglas Gregor05379422008-11-03 17:51:48 +00002519 if (!ClassDecl->hasUserDeclaredConstructor()) {
2520 // C++ [class.ctor]p5:
2521 // A default constructor for a class X is a constructor of class X
2522 // that can be called without an argument. If there is no
2523 // user-declared constructor for class X, a default constructor is
2524 // implicitly declared. An implicitly-declared default constructor
2525 // is an inline public member of its class.
Mike Stump11289f42009-09-09 15:08:12 +00002526 DeclarationName Name
Douglas Gregor77324f32008-11-17 14:58:09 +00002527 = Context.DeclarationNames.getCXXConstructorName(ClassType);
Mike Stump11289f42009-09-09 15:08:12 +00002528 CXXConstructorDecl *DefaultCon =
Douglas Gregor05379422008-11-03 17:51:48 +00002529 CXXConstructorDecl::Create(Context, ClassDecl,
Douglas Gregor77324f32008-11-17 14:58:09 +00002530 ClassDecl->getLocation(), Name,
Douglas Gregor05379422008-11-03 17:51:48 +00002531 Context.getFunctionType(Context.VoidTy,
Douglas Gregor36c569f2010-02-21 22:15:06 +00002532 0, 0, false, 0,
2533 /*FIXME*/false, false,
Rafael Espindolac50c27c2010-03-30 20:24:48 +00002534 0, 0,
2535 FunctionType::ExtInfo()),
John McCallbcd03502009-12-07 02:54:59 +00002536 /*TInfo=*/0,
Douglas Gregor05379422008-11-03 17:51:48 +00002537 /*isExplicit=*/false,
2538 /*isInline=*/true,
2539 /*isImplicitlyDeclared=*/true);
2540 DefaultCon->setAccess(AS_public);
Douglas Gregorf4d33272009-01-07 19:46:03 +00002541 DefaultCon->setImplicit();
Douglas Gregor8a273912009-07-22 18:25:24 +00002542 DefaultCon->setTrivial(ClassDecl->hasTrivialConstructor());
Douglas Gregorb93b6062010-04-12 17:09:20 +00002543 if (S)
2544 PushOnScopeChains(DefaultCon, S, true);
2545 else
2546 ClassDecl->addDecl(DefaultCon);
Douglas Gregor05379422008-11-03 17:51:48 +00002547 }
2548
2549 if (!ClassDecl->hasUserDeclaredCopyConstructor()) {
2550 // C++ [class.copy]p4:
2551 // If the class definition does not explicitly declare a copy
2552 // constructor, one is declared implicitly.
2553
2554 // C++ [class.copy]p5:
2555 // The implicitly-declared copy constructor for a class X will
2556 // have the form
2557 //
2558 // X::X(const X&)
2559 //
2560 // if
2561 bool HasConstCopyConstructor = true;
2562
2563 // -- each direct or virtual base class B of X has a copy
2564 // constructor whose first parameter is of type const B& or
2565 // const volatile B&, and
2566 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin();
2567 HasConstCopyConstructor && Base != ClassDecl->bases_end(); ++Base) {
2568 const CXXRecordDecl *BaseClassDecl
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002569 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Mike Stump11289f42009-09-09 15:08:12 +00002570 HasConstCopyConstructor
Douglas Gregor05379422008-11-03 17:51:48 +00002571 = BaseClassDecl->hasConstCopyConstructor(Context);
2572 }
2573
2574 // -- for all the nonstatic data members of X that are of a
2575 // class type M (or array thereof), each such class type
2576 // has a copy constructor whose first parameter is of type
2577 // const M& or const volatile M&.
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00002578 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin();
2579 HasConstCopyConstructor && Field != ClassDecl->field_end();
Douglas Gregorbcced4e2009-04-09 21:40:53 +00002580 ++Field) {
Douglas Gregor05379422008-11-03 17:51:48 +00002581 QualType FieldType = (*Field)->getType();
2582 if (const ArrayType *Array = Context.getAsArrayType(FieldType))
2583 FieldType = Array->getElementType();
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002584 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Mike Stump11289f42009-09-09 15:08:12 +00002585 const CXXRecordDecl *FieldClassDecl
Douglas Gregor05379422008-11-03 17:51:48 +00002586 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Mike Stump11289f42009-09-09 15:08:12 +00002587 HasConstCopyConstructor
Douglas Gregor05379422008-11-03 17:51:48 +00002588 = FieldClassDecl->hasConstCopyConstructor(Context);
2589 }
2590 }
2591
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002592 // Otherwise, the implicitly declared copy constructor will have
2593 // the form
Douglas Gregor05379422008-11-03 17:51:48 +00002594 //
2595 // X::X(X&)
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002596 QualType ArgType = ClassType;
Douglas Gregor05379422008-11-03 17:51:48 +00002597 if (HasConstCopyConstructor)
2598 ArgType = ArgType.withConst();
Sebastian Redl0f8b23f2009-03-16 23:22:08 +00002599 ArgType = Context.getLValueReferenceType(ArgType);
Douglas Gregor05379422008-11-03 17:51:48 +00002600
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002601 // An implicitly-declared copy constructor is an inline public
2602 // member of its class.
Mike Stump11289f42009-09-09 15:08:12 +00002603 DeclarationName Name
Douglas Gregor77324f32008-11-17 14:58:09 +00002604 = Context.DeclarationNames.getCXXConstructorName(ClassType);
Douglas Gregor05379422008-11-03 17:51:48 +00002605 CXXConstructorDecl *CopyConstructor
2606 = CXXConstructorDecl::Create(Context, ClassDecl,
Douglas Gregor77324f32008-11-17 14:58:09 +00002607 ClassDecl->getLocation(), Name,
Douglas Gregor05379422008-11-03 17:51:48 +00002608 Context.getFunctionType(Context.VoidTy,
2609 &ArgType, 1,
Douglas Gregor36c569f2010-02-21 22:15:06 +00002610 false, 0,
Chris Lattner5c02c2a2010-05-12 23:26:21 +00002611 /*FIXME: hasExceptionSpec*/false,
Rafael Espindolac50c27c2010-03-30 20:24:48 +00002612 false, 0, 0,
2613 FunctionType::ExtInfo()),
John McCallbcd03502009-12-07 02:54:59 +00002614 /*TInfo=*/0,
Douglas Gregor05379422008-11-03 17:51:48 +00002615 /*isExplicit=*/false,
2616 /*isInline=*/true,
2617 /*isImplicitlyDeclared=*/true);
2618 CopyConstructor->setAccess(AS_public);
Douglas Gregorf4d33272009-01-07 19:46:03 +00002619 CopyConstructor->setImplicit();
Douglas Gregor8a273912009-07-22 18:25:24 +00002620 CopyConstructor->setTrivial(ClassDecl->hasTrivialCopyConstructor());
Douglas Gregor05379422008-11-03 17:51:48 +00002621
2622 // Add the parameter to the constructor.
2623 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyConstructor,
2624 ClassDecl->getLocation(),
2625 /*IdentifierInfo=*/0,
John McCallbcd03502009-12-07 02:54:59 +00002626 ArgType, /*TInfo=*/0,
Douglas Gregorc4df4072010-04-19 22:54:31 +00002627 VarDecl::None,
Argyrios Kyrtzidis60ed5602009-08-19 01:27:57 +00002628 VarDecl::None, 0);
Douglas Gregord5058122010-02-11 01:19:42 +00002629 CopyConstructor->setParams(&FromParam, 1);
Douglas Gregorb93b6062010-04-12 17:09:20 +00002630 if (S)
2631 PushOnScopeChains(CopyConstructor, S, true);
2632 else
2633 ClassDecl->addDecl(CopyConstructor);
Douglas Gregor05379422008-11-03 17:51:48 +00002634 }
2635
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002636 if (!ClassDecl->hasUserDeclaredCopyAssignment()) {
2637 // Note: The following rules are largely analoguous to the copy
2638 // constructor rules. Note that virtual bases are not taken into account
2639 // for determining the argument type of the operator. Note also that
2640 // operators taking an object instead of a reference are allowed.
2641 //
2642 // C++ [class.copy]p10:
2643 // If the class definition does not explicitly declare a copy
2644 // assignment operator, one is declared implicitly.
2645 // The implicitly-defined copy assignment operator for a class X
2646 // will have the form
2647 //
2648 // X& X::operator=(const X&)
2649 //
2650 // if
2651 bool HasConstCopyAssignment = true;
2652
2653 // -- each direct base class B of X has a copy assignment operator
2654 // whose parameter is of type const B&, const volatile B& or B,
2655 // and
2656 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin();
2657 HasConstCopyAssignment && Base != ClassDecl->bases_end(); ++Base) {
Sebastian Redl1054fae2009-10-25 17:03:50 +00002658 assert(!Base->getType()->isDependentType() &&
2659 "Cannot generate implicit members for class with dependent bases.");
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002660 const CXXRecordDecl *BaseClassDecl
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002661 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Fariborz Jahanianbbd5e8c2009-08-12 23:34:46 +00002662 const CXXMethodDecl *MD = 0;
Mike Stump11289f42009-09-09 15:08:12 +00002663 HasConstCopyAssignment = BaseClassDecl->hasConstCopyAssignment(Context,
Fariborz Jahanianbbd5e8c2009-08-12 23:34:46 +00002664 MD);
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002665 }
2666
2667 // -- for all the nonstatic data members of X that are of a class
2668 // type M (or array thereof), each such class type has a copy
2669 // assignment operator whose parameter is of type const M&,
2670 // const volatile M& or M.
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00002671 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin();
2672 HasConstCopyAssignment && Field != ClassDecl->field_end();
Douglas Gregorbcced4e2009-04-09 21:40:53 +00002673 ++Field) {
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002674 QualType FieldType = (*Field)->getType();
2675 if (const ArrayType *Array = Context.getAsArrayType(FieldType))
2676 FieldType = Array->getElementType();
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002677 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002678 const CXXRecordDecl *FieldClassDecl
2679 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Fariborz Jahanianbbd5e8c2009-08-12 23:34:46 +00002680 const CXXMethodDecl *MD = 0;
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002681 HasConstCopyAssignment
Fariborz Jahanianbbd5e8c2009-08-12 23:34:46 +00002682 = FieldClassDecl->hasConstCopyAssignment(Context, MD);
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002683 }
2684 }
2685
2686 // Otherwise, the implicitly declared copy assignment operator will
2687 // have the form
2688 //
2689 // X& X::operator=(X&)
2690 QualType ArgType = ClassType;
Sebastian Redl0f8b23f2009-03-16 23:22:08 +00002691 QualType RetType = Context.getLValueReferenceType(ArgType);
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002692 if (HasConstCopyAssignment)
2693 ArgType = ArgType.withConst();
Sebastian Redl0f8b23f2009-03-16 23:22:08 +00002694 ArgType = Context.getLValueReferenceType(ArgType);
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002695
2696 // An implicitly-declared copy assignment operator is an inline public
2697 // member of its class.
2698 DeclarationName Name =
2699 Context.DeclarationNames.getCXXOperatorName(OO_Equal);
2700 CXXMethodDecl *CopyAssignment =
2701 CXXMethodDecl::Create(Context, ClassDecl, ClassDecl->getLocation(), Name,
2702 Context.getFunctionType(RetType, &ArgType, 1,
Douglas Gregor36c569f2010-02-21 22:15:06 +00002703 false, 0,
Chris Lattner5c02c2a2010-05-12 23:26:21 +00002704 /*FIXME: hasExceptionSpec*/false,
Rafael Espindolac50c27c2010-03-30 20:24:48 +00002705 false, 0, 0,
2706 FunctionType::ExtInfo()),
Douglas Gregorc4df4072010-04-19 22:54:31 +00002707 /*TInfo=*/0, /*isStatic=*/false,
2708 /*StorageClassAsWritten=*/FunctionDecl::None,
2709 /*isInline=*/true);
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002710 CopyAssignment->setAccess(AS_public);
Douglas Gregorf4d33272009-01-07 19:46:03 +00002711 CopyAssignment->setImplicit();
Douglas Gregor8a273912009-07-22 18:25:24 +00002712 CopyAssignment->setTrivial(ClassDecl->hasTrivialCopyAssignment());
Fariborz Jahaniande7d4c22009-08-12 21:14:35 +00002713 CopyAssignment->setCopyAssignment(true);
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002714
2715 // Add the parameter to the operator.
2716 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyAssignment,
2717 ClassDecl->getLocation(),
Douglas Gregorb139cd52010-05-01 20:49:11 +00002718 /*Id=*/0,
John McCallbcd03502009-12-07 02:54:59 +00002719 ArgType, /*TInfo=*/0,
Douglas Gregorc4df4072010-04-19 22:54:31 +00002720 VarDecl::None,
Argyrios Kyrtzidis60ed5602009-08-19 01:27:57 +00002721 VarDecl::None, 0);
Douglas Gregord5058122010-02-11 01:19:42 +00002722 CopyAssignment->setParams(&FromParam, 1);
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002723
2724 // Don't call addedAssignmentOperator. There is no way to distinguish an
2725 // implicit from an explicit assignment operator.
Douglas Gregorb93b6062010-04-12 17:09:20 +00002726 if (S)
2727 PushOnScopeChains(CopyAssignment, S, true);
2728 else
2729 ClassDecl->addDecl(CopyAssignment);
Eli Friedman81bce6b2009-12-02 06:59:20 +00002730 AddOverriddenMethods(ClassDecl, CopyAssignment);
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002731 }
2732
Douglas Gregor1349b452008-12-15 21:24:18 +00002733 if (!ClassDecl->hasUserDeclaredDestructor()) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00002734 // C++ [class.dtor]p2:
2735 // If a class has no user-declared destructor, a destructor is
2736 // declared implicitly. An implicitly-declared destructor is an
2737 // inline public member of its class.
John McCall58f10c32010-03-11 09:03:00 +00002738 QualType Ty = Context.getFunctionType(Context.VoidTy,
2739 0, 0, false, 0,
Chris Lattner5c02c2a2010-05-12 23:26:21 +00002740 /*FIXME: hasExceptionSpec*/false,
Rafael Espindolac50c27c2010-03-30 20:24:48 +00002741 false, 0, 0, FunctionType::ExtInfo());
John McCall58f10c32010-03-11 09:03:00 +00002742
Mike Stump11289f42009-09-09 15:08:12 +00002743 DeclarationName Name
Douglas Gregor77324f32008-11-17 14:58:09 +00002744 = Context.DeclarationNames.getCXXDestructorName(ClassType);
Mike Stump11289f42009-09-09 15:08:12 +00002745 CXXDestructorDecl *Destructor
Douglas Gregor831c93f2008-11-05 20:51:48 +00002746 = CXXDestructorDecl::Create(Context, ClassDecl,
John McCall58f10c32010-03-11 09:03:00 +00002747 ClassDecl->getLocation(), Name, Ty,
Douglas Gregor831c93f2008-11-05 20:51:48 +00002748 /*isInline=*/true,
2749 /*isImplicitlyDeclared=*/true);
2750 Destructor->setAccess(AS_public);
Douglas Gregorf4d33272009-01-07 19:46:03 +00002751 Destructor->setImplicit();
Douglas Gregor8a273912009-07-22 18:25:24 +00002752 Destructor->setTrivial(ClassDecl->hasTrivialDestructor());
Douglas Gregorb93b6062010-04-12 17:09:20 +00002753 if (S)
2754 PushOnScopeChains(Destructor, S, true);
2755 else
2756 ClassDecl->addDecl(Destructor);
John McCall58f10c32010-03-11 09:03:00 +00002757
2758 // This could be uniqued if it ever proves significant.
2759 Destructor->setTypeSourceInfo(Context.getTrivialTypeSourceInfo(Ty));
Anders Carlsson859d7bf2009-11-26 21:25:09 +00002760
2761 AddOverriddenMethods(ClassDecl, Destructor);
Douglas Gregor831c93f2008-11-05 20:51:48 +00002762 }
Douglas Gregor05379422008-11-03 17:51:48 +00002763}
2764
Douglas Gregore44a2ad2009-05-27 23:11:45 +00002765void Sema::ActOnReenterTemplateScope(Scope *S, DeclPtrTy TemplateD) {
Douglas Gregore61ef622009-09-10 00:12:48 +00002766 Decl *D = TemplateD.getAs<Decl>();
2767 if (!D)
2768 return;
2769
2770 TemplateParameterList *Params = 0;
2771 if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D))
2772 Params = Template->getTemplateParameters();
2773 else if (ClassTemplatePartialSpecializationDecl *PartialSpec
2774 = dyn_cast<ClassTemplatePartialSpecializationDecl>(D))
2775 Params = PartialSpec->getTemplateParameters();
2776 else
Douglas Gregore44a2ad2009-05-27 23:11:45 +00002777 return;
2778
Douglas Gregore44a2ad2009-05-27 23:11:45 +00002779 for (TemplateParameterList::iterator Param = Params->begin(),
2780 ParamEnd = Params->end();
2781 Param != ParamEnd; ++Param) {
2782 NamedDecl *Named = cast<NamedDecl>(*Param);
2783 if (Named->getDeclName()) {
2784 S->AddDecl(DeclPtrTy::make(Named));
2785 IdResolver.AddDecl(Named);
2786 }
2787 }
2788}
2789
John McCall6df5fef2009-12-19 10:49:29 +00002790void Sema::ActOnStartDelayedMemberDeclarations(Scope *S, DeclPtrTy RecordD) {
2791 if (!RecordD) return;
2792 AdjustDeclIfTemplate(RecordD);
2793 CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordD.getAs<Decl>());
2794 PushDeclContext(S, Record);
2795}
2796
2797void Sema::ActOnFinishDelayedMemberDeclarations(Scope *S, DeclPtrTy RecordD) {
2798 if (!RecordD) return;
2799 PopDeclContext();
2800}
2801
Douglas Gregor4d87df52008-12-16 21:30:33 +00002802/// ActOnStartDelayedCXXMethodDeclaration - We have completed
2803/// parsing a top-level (non-nested) C++ class, and we are now
2804/// parsing those parts of the given Method declaration that could
2805/// not be parsed earlier (C++ [class.mem]p2), such as default
2806/// arguments. This action should enter the scope of the given
2807/// Method declaration as if we had just parsed the qualified method
2808/// name. However, it should not bring the parameters into scope;
2809/// that will be performed by ActOnDelayedCXXMethodParameter.
Chris Lattner83f095c2009-03-28 19:18:32 +00002810void Sema::ActOnStartDelayedCXXMethodDeclaration(Scope *S, DeclPtrTy MethodD) {
Douglas Gregor4d87df52008-12-16 21:30:33 +00002811}
2812
2813/// ActOnDelayedCXXMethodParameter - We've already started a delayed
2814/// C++ method declaration. We're (re-)introducing the given
2815/// function parameter into scope for use in parsing later parts of
2816/// the method declaration. For example, we could see an
2817/// ActOnParamDefaultArgument event for this parameter.
Chris Lattner83f095c2009-03-28 19:18:32 +00002818void Sema::ActOnDelayedCXXMethodParameter(Scope *S, DeclPtrTy ParamD) {
Douglas Gregor71a57182009-06-22 23:20:33 +00002819 if (!ParamD)
2820 return;
Mike Stump11289f42009-09-09 15:08:12 +00002821
Chris Lattner83f095c2009-03-28 19:18:32 +00002822 ParmVarDecl *Param = cast<ParmVarDecl>(ParamD.getAs<Decl>());
Douglas Gregor58354032008-12-24 00:01:03 +00002823
2824 // If this parameter has an unparsed default argument, clear it out
2825 // to make way for the parsed default argument.
2826 if (Param->hasUnparsedDefaultArg())
2827 Param->setDefaultArg(0);
2828
Chris Lattner83f095c2009-03-28 19:18:32 +00002829 S->AddDecl(DeclPtrTy::make(Param));
Douglas Gregor4d87df52008-12-16 21:30:33 +00002830 if (Param->getDeclName())
2831 IdResolver.AddDecl(Param);
2832}
2833
2834/// ActOnFinishDelayedCXXMethodDeclaration - We have finished
2835/// processing the delayed method declaration for Method. The method
2836/// declaration is now considered finished. There may be a separate
2837/// ActOnStartOfFunctionDef action later (not necessarily
2838/// immediately!) for this method, if it was also defined inside the
2839/// class body.
Chris Lattner83f095c2009-03-28 19:18:32 +00002840void Sema::ActOnFinishDelayedCXXMethodDeclaration(Scope *S, DeclPtrTy MethodD) {
Douglas Gregor71a57182009-06-22 23:20:33 +00002841 if (!MethodD)
2842 return;
Mike Stump11289f42009-09-09 15:08:12 +00002843
Douglas Gregorc8c277a2009-08-24 11:57:43 +00002844 AdjustDeclIfTemplate(MethodD);
Mike Stump11289f42009-09-09 15:08:12 +00002845
Chris Lattner83f095c2009-03-28 19:18:32 +00002846 FunctionDecl *Method = cast<FunctionDecl>(MethodD.getAs<Decl>());
Douglas Gregor4d87df52008-12-16 21:30:33 +00002847
2848 // Now that we have our default arguments, check the constructor
2849 // again. It could produce additional diagnostics or affect whether
2850 // the class has implicitly-declared destructors, among other
2851 // things.
Chris Lattnerb41df4f2009-04-25 08:35:12 +00002852 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Method))
2853 CheckConstructor(Constructor);
Douglas Gregor4d87df52008-12-16 21:30:33 +00002854
2855 // Check the default arguments, which we may have added.
2856 if (!Method->isInvalidDecl())
2857 CheckCXXDefaultArguments(Method);
2858}
2859
Douglas Gregor831c93f2008-11-05 20:51:48 +00002860/// CheckConstructorDeclarator - Called by ActOnDeclarator to check
Douglas Gregor4d87df52008-12-16 21:30:33 +00002861/// the well-formedness of the constructor declarator @p D with type @p
Douglas Gregor831c93f2008-11-05 20:51:48 +00002862/// R. If there are any errors in the declarator, this routine will
Chris Lattner38378bf2009-04-25 08:28:21 +00002863/// emit diagnostics and set the invalid bit to true. In any case, the type
2864/// will be updated to reflect a well-formed type for the constructor and
2865/// returned.
2866QualType Sema::CheckConstructorDeclarator(Declarator &D, QualType R,
2867 FunctionDecl::StorageClass &SC) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00002868 bool isVirtual = D.getDeclSpec().isVirtualSpecified();
Douglas Gregor831c93f2008-11-05 20:51:48 +00002869
2870 // C++ [class.ctor]p3:
2871 // A constructor shall not be virtual (10.3) or static (9.4). A
2872 // constructor can be invoked for a const, volatile or const
2873 // volatile object. A constructor shall not be declared const,
2874 // volatile, or const volatile (9.3.2).
2875 if (isVirtual) {
Chris Lattner38378bf2009-04-25 08:28:21 +00002876 if (!D.isInvalidType())
2877 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
2878 << "virtual" << SourceRange(D.getDeclSpec().getVirtualSpecLoc())
2879 << SourceRange(D.getIdentifierLoc());
2880 D.setInvalidType();
Douglas Gregor831c93f2008-11-05 20:51:48 +00002881 }
2882 if (SC == FunctionDecl::Static) {
Chris Lattner38378bf2009-04-25 08:28:21 +00002883 if (!D.isInvalidType())
2884 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
2885 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
2886 << SourceRange(D.getIdentifierLoc());
2887 D.setInvalidType();
Douglas Gregor831c93f2008-11-05 20:51:48 +00002888 SC = FunctionDecl::None;
2889 }
Mike Stump11289f42009-09-09 15:08:12 +00002890
Chris Lattner38378bf2009-04-25 08:28:21 +00002891 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
2892 if (FTI.TypeQuals != 0) {
John McCall8ccfcb52009-09-24 19:53:00 +00002893 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattner3b054132008-11-19 05:08:23 +00002894 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
2895 << "const" << SourceRange(D.getIdentifierLoc());
John McCall8ccfcb52009-09-24 19:53:00 +00002896 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattner3b054132008-11-19 05:08:23 +00002897 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
2898 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall8ccfcb52009-09-24 19:53:00 +00002899 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattner3b054132008-11-19 05:08:23 +00002900 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
2901 << "restrict" << SourceRange(D.getIdentifierLoc());
Douglas Gregor831c93f2008-11-05 20:51:48 +00002902 }
Mike Stump11289f42009-09-09 15:08:12 +00002903
Douglas Gregor831c93f2008-11-05 20:51:48 +00002904 // Rebuild the function type "R" without any type qualifiers (in
2905 // case any of the errors above fired) and with "void" as the
2906 // return type, since constructors don't have return types. We
2907 // *always* have to do this, because GetTypeForDeclarator will
2908 // put in a result type of "int" when none was specified.
John McCall9dd450b2009-09-21 23:43:11 +00002909 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
Chris Lattner38378bf2009-04-25 08:28:21 +00002910 return Context.getFunctionType(Context.VoidTy, Proto->arg_type_begin(),
2911 Proto->getNumArgs(),
Douglas Gregor36c569f2010-02-21 22:15:06 +00002912 Proto->isVariadic(), 0,
2913 Proto->hasExceptionSpec(),
2914 Proto->hasAnyExceptionSpec(),
2915 Proto->getNumExceptions(),
2916 Proto->exception_begin(),
Rafael Espindolac50c27c2010-03-30 20:24:48 +00002917 Proto->getExtInfo());
Douglas Gregor831c93f2008-11-05 20:51:48 +00002918}
2919
Douglas Gregor4d87df52008-12-16 21:30:33 +00002920/// CheckConstructor - Checks a fully-formed constructor for
2921/// well-formedness, issuing any diagnostics required. Returns true if
2922/// the constructor declarator is invalid.
Chris Lattnerb41df4f2009-04-25 08:35:12 +00002923void Sema::CheckConstructor(CXXConstructorDecl *Constructor) {
Mike Stump11289f42009-09-09 15:08:12 +00002924 CXXRecordDecl *ClassDecl
Douglas Gregorf4d17c42009-03-27 04:38:56 +00002925 = dyn_cast<CXXRecordDecl>(Constructor->getDeclContext());
2926 if (!ClassDecl)
Chris Lattnerb41df4f2009-04-25 08:35:12 +00002927 return Constructor->setInvalidDecl();
Douglas Gregor4d87df52008-12-16 21:30:33 +00002928
2929 // C++ [class.copy]p3:
2930 // A declaration of a constructor for a class X is ill-formed if
2931 // its first parameter is of type (optionally cv-qualified) X and
2932 // either there are no other parameters or else all other
2933 // parameters have default arguments.
Douglas Gregorf4d17c42009-03-27 04:38:56 +00002934 if (!Constructor->isInvalidDecl() &&
Mike Stump11289f42009-09-09 15:08:12 +00002935 ((Constructor->getNumParams() == 1) ||
2936 (Constructor->getNumParams() > 1 &&
Douglas Gregorffe14e32009-11-14 01:20:54 +00002937 Constructor->getParamDecl(1)->hasDefaultArg())) &&
2938 Constructor->getTemplateSpecializationKind()
2939 != TSK_ImplicitInstantiation) {
Douglas Gregor4d87df52008-12-16 21:30:33 +00002940 QualType ParamType = Constructor->getParamDecl(0)->getType();
2941 QualType ClassTy = Context.getTagDeclType(ClassDecl);
2942 if (Context.getCanonicalType(ParamType).getUnqualifiedType() == ClassTy) {
Douglas Gregor170512f2009-04-01 23:51:29 +00002943 SourceLocation ParamLoc = Constructor->getParamDecl(0)->getLocation();
2944 Diag(ParamLoc, diag::err_constructor_byvalue_arg)
Douglas Gregora771f462010-03-31 17:46:05 +00002945 << FixItHint::CreateInsertion(ParamLoc, " const &");
Douglas Gregorffe14e32009-11-14 01:20:54 +00002946
2947 // FIXME: Rather that making the constructor invalid, we should endeavor
2948 // to fix the type.
Chris Lattnerb41df4f2009-04-25 08:35:12 +00002949 Constructor->setInvalidDecl();
Douglas Gregor4d87df52008-12-16 21:30:33 +00002950 }
2951 }
Mike Stump11289f42009-09-09 15:08:12 +00002952
John McCall43314ab2010-04-13 07:45:41 +00002953 // Notify the class that we've added a constructor. In principle we
2954 // don't need to do this for out-of-line declarations; in practice
2955 // we only instantiate the most recent declaration of a method, so
2956 // we have to call this for everything but friends.
2957 if (!Constructor->getFriendObjectKind())
2958 ClassDecl->addedConstructor(Context, Constructor);
Douglas Gregor4d87df52008-12-16 21:30:33 +00002959}
2960
Anders Carlsson26a807d2009-11-30 21:24:50 +00002961/// CheckDestructor - Checks a fully-formed destructor for well-formedness,
2962/// issuing any diagnostics required. Returns true on error.
Anders Carlssonf98849e2009-12-02 17:15:43 +00002963bool Sema::CheckDestructor(CXXDestructorDecl *Destructor) {
Anders Carlsson2a50e952009-11-15 22:49:34 +00002964 CXXRecordDecl *RD = Destructor->getParent();
2965
2966 if (Destructor->isVirtual()) {
2967 SourceLocation Loc;
2968
2969 if (!Destructor->isImplicit())
2970 Loc = Destructor->getLocation();
2971 else
2972 Loc = RD->getLocation();
2973
2974 // If we have a virtual destructor, look up the deallocation function
2975 FunctionDecl *OperatorDelete = 0;
2976 DeclarationName Name =
2977 Context.DeclarationNames.getCXXOperatorName(OO_Delete);
Anders Carlssonf98849e2009-12-02 17:15:43 +00002978 if (FindDeallocationFunction(Loc, RD, Name, OperatorDelete))
Anders Carlsson26a807d2009-11-30 21:24:50 +00002979 return true;
2980
2981 Destructor->setOperatorDelete(OperatorDelete);
Anders Carlsson2a50e952009-11-15 22:49:34 +00002982 }
Anders Carlsson26a807d2009-11-30 21:24:50 +00002983
2984 return false;
Anders Carlsson2a50e952009-11-15 22:49:34 +00002985}
2986
Mike Stump11289f42009-09-09 15:08:12 +00002987static inline bool
Anders Carlsson5e965472009-04-30 23:18:11 +00002988FTIHasSingleVoidArgument(DeclaratorChunk::FunctionTypeInfo &FTI) {
2989 return (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
2990 FTI.ArgInfo[0].Param &&
2991 FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType()->isVoidType());
2992}
2993
Douglas Gregor831c93f2008-11-05 20:51:48 +00002994/// CheckDestructorDeclarator - Called by ActOnDeclarator to check
2995/// the well-formednes of the destructor declarator @p D with type @p
2996/// R. If there are any errors in the declarator, this routine will
Chris Lattner38378bf2009-04-25 08:28:21 +00002997/// emit diagnostics and set the declarator to invalid. Even if this happens,
2998/// will be updated to reflect a well-formed type for the destructor and
2999/// returned.
3000QualType Sema::CheckDestructorDeclarator(Declarator &D,
3001 FunctionDecl::StorageClass& SC) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00003002 // C++ [class.dtor]p1:
3003 // [...] A typedef-name that names a class is a class-name
3004 // (7.1.3); however, a typedef-name that names a class shall not
3005 // be used as the identifier in the declarator for a destructor
3006 // declaration.
Douglas Gregor7861a802009-11-03 01:35:08 +00003007 QualType DeclaratorType = GetTypeFromParser(D.getName().DestructorName);
Chris Lattner38378bf2009-04-25 08:28:21 +00003008 if (isa<TypedefType>(DeclaratorType)) {
3009 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
Douglas Gregor9817f4a2009-02-09 15:09:02 +00003010 << DeclaratorType;
Chris Lattner38378bf2009-04-25 08:28:21 +00003011 D.setInvalidType();
Douglas Gregor831c93f2008-11-05 20:51:48 +00003012 }
3013
3014 // C++ [class.dtor]p2:
3015 // A destructor is used to destroy objects of its class type. A
3016 // destructor takes no parameters, and no return type can be
3017 // specified for it (not even void). The address of a destructor
3018 // shall not be taken. A destructor shall not be static. A
3019 // destructor can be invoked for a const, volatile or const
3020 // volatile object. A destructor shall not be declared const,
3021 // volatile or const volatile (9.3.2).
3022 if (SC == FunctionDecl::Static) {
Chris Lattner38378bf2009-04-25 08:28:21 +00003023 if (!D.isInvalidType())
3024 Diag(D.getIdentifierLoc(), diag::err_destructor_cannot_be)
3025 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
3026 << SourceRange(D.getIdentifierLoc());
Douglas Gregor831c93f2008-11-05 20:51:48 +00003027 SC = FunctionDecl::None;
Chris Lattner38378bf2009-04-25 08:28:21 +00003028 D.setInvalidType();
Douglas Gregor831c93f2008-11-05 20:51:48 +00003029 }
Chris Lattner38378bf2009-04-25 08:28:21 +00003030 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00003031 // Destructors don't have return types, but the parser will
3032 // happily parse something like:
3033 //
3034 // class X {
3035 // float ~X();
3036 // };
3037 //
3038 // The return type will be eliminated later.
Chris Lattner3b054132008-11-19 05:08:23 +00003039 Diag(D.getIdentifierLoc(), diag::err_destructor_return_type)
3040 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
3041 << SourceRange(D.getIdentifierLoc());
Douglas Gregor831c93f2008-11-05 20:51:48 +00003042 }
Mike Stump11289f42009-09-09 15:08:12 +00003043
Chris Lattner38378bf2009-04-25 08:28:21 +00003044 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
3045 if (FTI.TypeQuals != 0 && !D.isInvalidType()) {
John McCall8ccfcb52009-09-24 19:53:00 +00003046 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattner3b054132008-11-19 05:08:23 +00003047 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
3048 << "const" << SourceRange(D.getIdentifierLoc());
John McCall8ccfcb52009-09-24 19:53:00 +00003049 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattner3b054132008-11-19 05:08:23 +00003050 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
3051 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall8ccfcb52009-09-24 19:53:00 +00003052 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattner3b054132008-11-19 05:08:23 +00003053 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
3054 << "restrict" << SourceRange(D.getIdentifierLoc());
Chris Lattner38378bf2009-04-25 08:28:21 +00003055 D.setInvalidType();
Douglas Gregor831c93f2008-11-05 20:51:48 +00003056 }
3057
3058 // Make sure we don't have any parameters.
Anders Carlsson5e965472009-04-30 23:18:11 +00003059 if (FTI.NumArgs > 0 && !FTIHasSingleVoidArgument(FTI)) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00003060 Diag(D.getIdentifierLoc(), diag::err_destructor_with_params);
3061
3062 // Delete the parameters.
Chris Lattner38378bf2009-04-25 08:28:21 +00003063 FTI.freeArgs();
3064 D.setInvalidType();
Douglas Gregor831c93f2008-11-05 20:51:48 +00003065 }
3066
Mike Stump11289f42009-09-09 15:08:12 +00003067 // Make sure the destructor isn't variadic.
Chris Lattner38378bf2009-04-25 08:28:21 +00003068 if (FTI.isVariadic) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00003069 Diag(D.getIdentifierLoc(), diag::err_destructor_variadic);
Chris Lattner38378bf2009-04-25 08:28:21 +00003070 D.setInvalidType();
3071 }
Douglas Gregor831c93f2008-11-05 20:51:48 +00003072
3073 // Rebuild the function type "R" without any type qualifiers or
3074 // parameters (in case any of the errors above fired) and with
3075 // "void" as the return type, since destructors don't have return
3076 // types. We *always* have to do this, because GetTypeForDeclarator
3077 // will put in a result type of "int" when none was specified.
Douglas Gregor36c569f2010-02-21 22:15:06 +00003078 // FIXME: Exceptions!
3079 return Context.getFunctionType(Context.VoidTy, 0, 0, false, 0,
Rafael Espindolac50c27c2010-03-30 20:24:48 +00003080 false, false, 0, 0, FunctionType::ExtInfo());
Douglas Gregor831c93f2008-11-05 20:51:48 +00003081}
3082
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003083/// CheckConversionDeclarator - Called by ActOnDeclarator to check the
3084/// well-formednes of the conversion function declarator @p D with
3085/// type @p R. If there are any errors in the declarator, this routine
3086/// will emit diagnostics and return true. Otherwise, it will return
3087/// false. Either way, the type @p R will be updated to reflect a
3088/// well-formed type for the conversion operator.
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003089void Sema::CheckConversionDeclarator(Declarator &D, QualType &R,
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003090 FunctionDecl::StorageClass& SC) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003091 // C++ [class.conv.fct]p1:
3092 // Neither parameter types nor return type can be specified. The
Eli Friedman44b83ee2009-08-05 19:21:58 +00003093 // type of a conversion function (8.3.5) is "function taking no
Mike Stump11289f42009-09-09 15:08:12 +00003094 // parameter returning conversion-type-id."
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003095 if (SC == FunctionDecl::Static) {
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003096 if (!D.isInvalidType())
3097 Diag(D.getIdentifierLoc(), diag::err_conv_function_not_member)
3098 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
3099 << SourceRange(D.getIdentifierLoc());
3100 D.setInvalidType();
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003101 SC = FunctionDecl::None;
3102 }
John McCall212fa2e2010-04-13 00:04:31 +00003103
3104 QualType ConvType = GetTypeFromParser(D.getName().ConversionFunctionId);
3105
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003106 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003107 // Conversion functions don't have return types, but the parser will
3108 // happily parse something like:
3109 //
3110 // class X {
3111 // float operator bool();
3112 // };
3113 //
3114 // The return type will be changed later anyway.
Chris Lattner3b054132008-11-19 05:08:23 +00003115 Diag(D.getIdentifierLoc(), diag::err_conv_function_return_type)
3116 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
3117 << SourceRange(D.getIdentifierLoc());
John McCall212fa2e2010-04-13 00:04:31 +00003118 D.setInvalidType();
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003119 }
3120
John McCall212fa2e2010-04-13 00:04:31 +00003121 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
3122
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003123 // Make sure we don't have any parameters.
John McCall212fa2e2010-04-13 00:04:31 +00003124 if (Proto->getNumArgs() > 0) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003125 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_params);
3126
3127 // Delete the parameters.
Chris Lattner5742c1e2009-01-20 21:06:38 +00003128 D.getTypeObject(0).Fun.freeArgs();
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003129 D.setInvalidType();
John McCall212fa2e2010-04-13 00:04:31 +00003130 } else if (Proto->isVariadic()) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003131 Diag(D.getIdentifierLoc(), diag::err_conv_function_variadic);
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003132 D.setInvalidType();
3133 }
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003134
John McCall212fa2e2010-04-13 00:04:31 +00003135 // Diagnose "&operator bool()" and other such nonsense. This
3136 // is actually a gcc extension which we don't support.
3137 if (Proto->getResultType() != ConvType) {
3138 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_complex_decl)
3139 << Proto->getResultType();
3140 D.setInvalidType();
3141 ConvType = Proto->getResultType();
3142 }
3143
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003144 // C++ [class.conv.fct]p4:
3145 // The conversion-type-id shall not represent a function type nor
3146 // an array type.
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003147 if (ConvType->isArrayType()) {
3148 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_array);
3149 ConvType = Context.getPointerType(ConvType);
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003150 D.setInvalidType();
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003151 } else if (ConvType->isFunctionType()) {
3152 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_function);
3153 ConvType = Context.getPointerType(ConvType);
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003154 D.setInvalidType();
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003155 }
3156
3157 // Rebuild the function type "R" without any parameters (in case any
3158 // of the errors above fired) and with the conversion type as the
Mike Stump11289f42009-09-09 15:08:12 +00003159 // return type.
John McCall212fa2e2010-04-13 00:04:31 +00003160 if (D.isInvalidType()) {
3161 R = Context.getFunctionType(ConvType, 0, 0, false,
3162 Proto->getTypeQuals(),
3163 Proto->hasExceptionSpec(),
3164 Proto->hasAnyExceptionSpec(),
3165 Proto->getNumExceptions(),
3166 Proto->exception_begin(),
3167 Proto->getExtInfo());
3168 }
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003169
Douglas Gregor5fb53972009-01-14 15:45:31 +00003170 // C++0x explicit conversion operators.
3171 if (D.getDeclSpec().isExplicitSpecified() && !getLangOptions().CPlusPlus0x)
Mike Stump11289f42009-09-09 15:08:12 +00003172 Diag(D.getDeclSpec().getExplicitSpecLoc(),
Douglas Gregor5fb53972009-01-14 15:45:31 +00003173 diag::warn_explicit_conversion_functions)
3174 << SourceRange(D.getDeclSpec().getExplicitSpecLoc());
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003175}
3176
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003177/// ActOnConversionDeclarator - Called by ActOnDeclarator to complete
3178/// the declaration of the given C++ conversion function. This routine
3179/// is responsible for recording the conversion function in the C++
3180/// class, if possible.
Chris Lattner83f095c2009-03-28 19:18:32 +00003181Sema::DeclPtrTy Sema::ActOnConversionDeclarator(CXXConversionDecl *Conversion) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003182 assert(Conversion && "Expected to receive a conversion function declaration");
3183
Douglas Gregor4287b372008-12-12 08:25:50 +00003184 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Conversion->getDeclContext());
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003185
3186 // Make sure we aren't redeclaring the conversion function.
3187 QualType ConvType = Context.getCanonicalType(Conversion->getConversionType());
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003188
3189 // C++ [class.conv.fct]p1:
3190 // [...] A conversion function is never used to convert a
3191 // (possibly cv-qualified) object to the (possibly cv-qualified)
3192 // same object type (or a reference to it), to a (possibly
3193 // cv-qualified) base class of that type (or a reference to it),
3194 // or to (possibly cv-qualified) void.
Mike Stump87c57ac2009-05-16 07:39:55 +00003195 // FIXME: Suppress this warning if the conversion function ends up being a
3196 // virtual function that overrides a virtual function in a base class.
Mike Stump11289f42009-09-09 15:08:12 +00003197 QualType ClassType
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003198 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003199 if (const ReferenceType *ConvTypeRef = ConvType->getAs<ReferenceType>())
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003200 ConvType = ConvTypeRef->getPointeeType();
3201 if (ConvType->isRecordType()) {
3202 ConvType = Context.getCanonicalType(ConvType).getUnqualifiedType();
3203 if (ConvType == ClassType)
Chris Lattnerf7e3f6d2008-11-20 06:13:02 +00003204 Diag(Conversion->getLocation(), diag::warn_conv_to_self_not_used)
Chris Lattner1e5665e2008-11-24 06:25:27 +00003205 << ClassType;
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003206 else if (IsDerivedFrom(ClassType, ConvType))
Chris Lattnerf7e3f6d2008-11-20 06:13:02 +00003207 Diag(Conversion->getLocation(), diag::warn_conv_to_base_not_used)
Chris Lattner1e5665e2008-11-24 06:25:27 +00003208 << ClassType << ConvType;
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003209 } else if (ConvType->isVoidType()) {
Chris Lattnerf7e3f6d2008-11-20 06:13:02 +00003210 Diag(Conversion->getLocation(), diag::warn_conv_to_void_not_used)
Chris Lattner1e5665e2008-11-24 06:25:27 +00003211 << ClassType << ConvType;
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003212 }
3213
Douglas Gregorea0a0a92010-01-11 18:40:55 +00003214 if (Conversion->getPrimaryTemplate()) {
3215 // ignore specializations
3216 } else if (Conversion->getPreviousDeclaration()) {
Mike Stump11289f42009-09-09 15:08:12 +00003217 if (FunctionTemplateDecl *ConversionTemplate
Douglas Gregor133bc742010-01-11 18:53:25 +00003218 = Conversion->getDescribedFunctionTemplate()) {
3219 if (ClassDecl->replaceConversion(
3220 ConversionTemplate->getPreviousDeclaration(),
3221 ConversionTemplate))
3222 return DeclPtrTy::make(ConversionTemplate);
3223 } else if (ClassDecl->replaceConversion(Conversion->getPreviousDeclaration(),
3224 Conversion))
John McCalld14a8642009-11-21 08:51:07 +00003225 return DeclPtrTy::make(Conversion);
Douglas Gregor1dc98262008-12-26 15:00:45 +00003226 assert(Conversion->isInvalidDecl() && "Conversion should not get here.");
Mike Stump11289f42009-09-09 15:08:12 +00003227 } else if (FunctionTemplateDecl *ConversionTemplate
Douglas Gregor05155d82009-08-21 23:19:43 +00003228 = Conversion->getDescribedFunctionTemplate())
Fariborz Jahanianedca0bc2009-09-12 19:02:34 +00003229 ClassDecl->addConversionFunction(ConversionTemplate);
Douglas Gregorea0a0a92010-01-11 18:40:55 +00003230 else
Fariborz Jahanianedca0bc2009-09-12 19:02:34 +00003231 ClassDecl->addConversionFunction(Conversion);
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003232
Chris Lattner83f095c2009-03-28 19:18:32 +00003233 return DeclPtrTy::make(Conversion);
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003234}
3235
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003236//===----------------------------------------------------------------------===//
3237// Namespace Handling
3238//===----------------------------------------------------------------------===//
3239
3240/// ActOnStartNamespaceDef - This is called at the start of a namespace
3241/// definition.
Chris Lattner83f095c2009-03-28 19:18:32 +00003242Sema::DeclPtrTy Sema::ActOnStartNamespaceDef(Scope *NamespcScope,
3243 SourceLocation IdentLoc,
3244 IdentifierInfo *II,
Anders Carlssona7bcade2010-02-07 01:09:23 +00003245 SourceLocation LBrace,
3246 AttributeList *AttrList) {
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003247 NamespaceDecl *Namespc =
3248 NamespaceDecl::Create(Context, CurContext, IdentLoc, II);
3249 Namespc->setLBracLoc(LBrace);
3250
3251 Scope *DeclRegionScope = NamespcScope->getParent();
3252
Anders Carlssona7bcade2010-02-07 01:09:23 +00003253 ProcessDeclAttributeList(DeclRegionScope, Namespc, AttrList);
3254
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003255 if (II) {
3256 // C++ [namespace.def]p2:
3257 // The identifier in an original-namespace-definition shall not have been
3258 // previously defined in the declarative region in which the
3259 // original-namespace-definition appears. The identifier in an
3260 // original-namespace-definition is the name of the namespace. Subsequently
3261 // in that declarative region, it is treated as an original-namespace-name.
3262
John McCall9f3059a2009-10-09 21:13:30 +00003263 NamedDecl *PrevDecl
Douglas Gregorb2ccf012010-04-15 22:33:43 +00003264 = LookupSingleName(DeclRegionScope, II, IdentLoc, LookupOrdinaryName,
John McCall5cebab12009-11-18 07:57:50 +00003265 ForRedeclaration);
Mike Stump11289f42009-09-09 15:08:12 +00003266
Douglas Gregor91f84212008-12-11 16:49:14 +00003267 if (NamespaceDecl *OrigNS = dyn_cast_or_null<NamespaceDecl>(PrevDecl)) {
3268 // This is an extended namespace definition.
3269 // Attach this namespace decl to the chain of extended namespace
3270 // definitions.
3271 OrigNS->setNextNamespace(Namespc);
3272 Namespc->setOriginalNamespace(OrigNS->getOriginalNamespace());
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003273
Mike Stump11289f42009-09-09 15:08:12 +00003274 // Remove the previous declaration from the scope.
Chris Lattner83f095c2009-03-28 19:18:32 +00003275 if (DeclRegionScope->isDeclScope(DeclPtrTy::make(OrigNS))) {
Douglas Gregor7a4fad12008-12-11 20:41:00 +00003276 IdResolver.RemoveDecl(OrigNS);
Chris Lattner83f095c2009-03-28 19:18:32 +00003277 DeclRegionScope->RemoveDecl(DeclPtrTy::make(OrigNS));
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003278 }
Douglas Gregor91f84212008-12-11 16:49:14 +00003279 } else if (PrevDecl) {
3280 // This is an invalid name redefinition.
3281 Diag(Namespc->getLocation(), diag::err_redefinition_different_kind)
3282 << Namespc->getDeclName();
3283 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
3284 Namespc->setInvalidDecl();
3285 // Continue on to push Namespc as current DeclContext and return it.
Douglas Gregor87f54062009-09-15 22:30:29 +00003286 } else if (II->isStr("std") &&
3287 CurContext->getLookupContext()->isTranslationUnit()) {
3288 // This is the first "real" definition of the namespace "std", so update
3289 // our cache of the "std" namespace to point at this definition.
3290 if (StdNamespace) {
3291 // We had already defined a dummy namespace "std". Link this new
3292 // namespace definition to the dummy namespace "std".
3293 StdNamespace->setNextNamespace(Namespc);
3294 StdNamespace->setLocation(IdentLoc);
3295 Namespc->setOriginalNamespace(StdNamespace->getOriginalNamespace());
3296 }
3297
3298 // Make our StdNamespace cache point at the first real definition of the
3299 // "std" namespace.
3300 StdNamespace = Namespc;
Mike Stump11289f42009-09-09 15:08:12 +00003301 }
Douglas Gregor91f84212008-12-11 16:49:14 +00003302
3303 PushOnScopeChains(Namespc, DeclRegionScope);
3304 } else {
John McCall4fa53422009-10-01 00:25:31 +00003305 // Anonymous namespaces.
John McCall0db42252009-12-16 02:06:49 +00003306 assert(Namespc->isAnonymousNamespace());
John McCall0db42252009-12-16 02:06:49 +00003307
3308 // Link the anonymous namespace into its parent.
3309 NamespaceDecl *PrevDecl;
3310 DeclContext *Parent = CurContext->getLookupContext();
3311 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
3312 PrevDecl = TU->getAnonymousNamespace();
3313 TU->setAnonymousNamespace(Namespc);
3314 } else {
3315 NamespaceDecl *ND = cast<NamespaceDecl>(Parent);
3316 PrevDecl = ND->getAnonymousNamespace();
3317 ND->setAnonymousNamespace(Namespc);
3318 }
3319
3320 // Link the anonymous namespace with its previous declaration.
3321 if (PrevDecl) {
3322 assert(PrevDecl->isAnonymousNamespace());
3323 assert(!PrevDecl->getNextNamespace());
3324 Namespc->setOriginalNamespace(PrevDecl->getOriginalNamespace());
3325 PrevDecl->setNextNamespace(Namespc);
3326 }
John McCall4fa53422009-10-01 00:25:31 +00003327
Douglas Gregorf9f54ea2010-03-24 00:46:35 +00003328 CurContext->addDecl(Namespc);
3329
John McCall4fa53422009-10-01 00:25:31 +00003330 // C++ [namespace.unnamed]p1. An unnamed-namespace-definition
3331 // behaves as if it were replaced by
3332 // namespace unique { /* empty body */ }
3333 // using namespace unique;
3334 // namespace unique { namespace-body }
3335 // where all occurrences of 'unique' in a translation unit are
3336 // replaced by the same identifier and this identifier differs
3337 // from all other identifiers in the entire program.
3338
3339 // We just create the namespace with an empty name and then add an
3340 // implicit using declaration, just like the standard suggests.
3341 //
3342 // CodeGen enforces the "universally unique" aspect by giving all
3343 // declarations semantically contained within an anonymous
3344 // namespace internal linkage.
3345
John McCall0db42252009-12-16 02:06:49 +00003346 if (!PrevDecl) {
3347 UsingDirectiveDecl* UD
3348 = UsingDirectiveDecl::Create(Context, CurContext,
3349 /* 'using' */ LBrace,
3350 /* 'namespace' */ SourceLocation(),
3351 /* qualifier */ SourceRange(),
3352 /* NNS */ NULL,
3353 /* identifier */ SourceLocation(),
3354 Namespc,
3355 /* Ancestor */ CurContext);
3356 UD->setImplicit();
3357 CurContext->addDecl(UD);
3358 }
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003359 }
3360
3361 // Although we could have an invalid decl (i.e. the namespace name is a
3362 // redefinition), push it as current DeclContext and try to continue parsing.
Mike Stump87c57ac2009-05-16 07:39:55 +00003363 // FIXME: We should be able to push Namespc here, so that the each DeclContext
3364 // for the namespace has the declarations that showed up in that particular
3365 // namespace definition.
Douglas Gregor91f84212008-12-11 16:49:14 +00003366 PushDeclContext(NamespcScope, Namespc);
Chris Lattner83f095c2009-03-28 19:18:32 +00003367 return DeclPtrTy::make(Namespc);
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003368}
3369
Sebastian Redla6602e92009-11-23 15:34:23 +00003370/// getNamespaceDecl - Returns the namespace a decl represents. If the decl
3371/// is a namespace alias, returns the namespace it points to.
3372static inline NamespaceDecl *getNamespaceDecl(NamedDecl *D) {
3373 if (NamespaceAliasDecl *AD = dyn_cast_or_null<NamespaceAliasDecl>(D))
3374 return AD->getNamespace();
3375 return dyn_cast_or_null<NamespaceDecl>(D);
3376}
3377
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003378/// ActOnFinishNamespaceDef - This callback is called after a namespace is
3379/// exited. Decl is the DeclTy returned by ActOnStartNamespaceDef.
Chris Lattner83f095c2009-03-28 19:18:32 +00003380void Sema::ActOnFinishNamespaceDef(DeclPtrTy D, SourceLocation RBrace) {
3381 Decl *Dcl = D.getAs<Decl>();
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003382 NamespaceDecl *Namespc = dyn_cast_or_null<NamespaceDecl>(Dcl);
3383 assert(Namespc && "Invalid parameter, expected NamespaceDecl");
3384 Namespc->setRBracLoc(RBrace);
3385 PopDeclContext();
3386}
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00003387
Chris Lattner83f095c2009-03-28 19:18:32 +00003388Sema::DeclPtrTy Sema::ActOnUsingDirective(Scope *S,
3389 SourceLocation UsingLoc,
3390 SourceLocation NamespcLoc,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00003391 CXXScopeSpec &SS,
Chris Lattner83f095c2009-03-28 19:18:32 +00003392 SourceLocation IdentLoc,
3393 IdentifierInfo *NamespcName,
3394 AttributeList *AttrList) {
Douglas Gregord7c4d982008-12-30 03:27:21 +00003395 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
3396 assert(NamespcName && "Invalid NamespcName.");
3397 assert(IdentLoc.isValid() && "Invalid NamespceName location.");
Douglas Gregor889ceb72009-02-03 19:21:40 +00003398 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Douglas Gregord7c4d982008-12-30 03:27:21 +00003399
Douglas Gregor889ceb72009-02-03 19:21:40 +00003400 UsingDirectiveDecl *UDir = 0;
Douglas Gregord7c4d982008-12-30 03:27:21 +00003401
Douglas Gregor34074322009-01-14 22:20:51 +00003402 // Lookup namespace name.
John McCall27b18f82009-11-17 02:14:36 +00003403 LookupResult R(*this, NamespcName, IdentLoc, LookupNamespaceName);
3404 LookupParsedName(R, S, &SS);
3405 if (R.isAmbiguous())
Chris Lattner83f095c2009-03-28 19:18:32 +00003406 return DeclPtrTy();
John McCall27b18f82009-11-17 02:14:36 +00003407
John McCall9f3059a2009-10-09 21:13:30 +00003408 if (!R.empty()) {
Sebastian Redla6602e92009-11-23 15:34:23 +00003409 NamedDecl *Named = R.getFoundDecl();
3410 assert((isa<NamespaceDecl>(Named) || isa<NamespaceAliasDecl>(Named))
3411 && "expected namespace decl");
Douglas Gregor889ceb72009-02-03 19:21:40 +00003412 // C++ [namespace.udir]p1:
3413 // A using-directive specifies that the names in the nominated
3414 // namespace can be used in the scope in which the
3415 // using-directive appears after the using-directive. During
3416 // unqualified name lookup (3.4.1), the names appear as if they
3417 // were declared in the nearest enclosing namespace which
3418 // contains both the using-directive and the nominated
Eli Friedman44b83ee2009-08-05 19:21:58 +00003419 // namespace. [Note: in this context, "contains" means "contains
3420 // directly or indirectly". ]
Douglas Gregor889ceb72009-02-03 19:21:40 +00003421
3422 // Find enclosing context containing both using-directive and
3423 // nominated namespace.
Sebastian Redla6602e92009-11-23 15:34:23 +00003424 NamespaceDecl *NS = getNamespaceDecl(Named);
Douglas Gregor889ceb72009-02-03 19:21:40 +00003425 DeclContext *CommonAncestor = cast<DeclContext>(NS);
3426 while (CommonAncestor && !CommonAncestor->Encloses(CurContext))
3427 CommonAncestor = CommonAncestor->getParent();
3428
Sebastian Redla6602e92009-11-23 15:34:23 +00003429 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc,
Douglas Gregor3bc6e4c2009-05-30 06:31:56 +00003430 SS.getRange(),
3431 (NestedNameSpecifier *)SS.getScopeRep(),
Sebastian Redla6602e92009-11-23 15:34:23 +00003432 IdentLoc, Named, CommonAncestor);
Douglas Gregor889ceb72009-02-03 19:21:40 +00003433 PushUsingDirective(S, UDir);
Douglas Gregord7c4d982008-12-30 03:27:21 +00003434 } else {
Chris Lattner8dca2e92009-01-06 07:24:29 +00003435 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
Douglas Gregord7c4d982008-12-30 03:27:21 +00003436 }
3437
Douglas Gregor889ceb72009-02-03 19:21:40 +00003438 // FIXME: We ignore attributes for now.
Douglas Gregord7c4d982008-12-30 03:27:21 +00003439 delete AttrList;
Chris Lattner83f095c2009-03-28 19:18:32 +00003440 return DeclPtrTy::make(UDir);
Douglas Gregor889ceb72009-02-03 19:21:40 +00003441}
3442
3443void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) {
3444 // If scope has associated entity, then using directive is at namespace
3445 // or translation unit scope. We add UsingDirectiveDecls, into
3446 // it's lookup structure.
3447 if (DeclContext *Ctx = static_cast<DeclContext*>(S->getEntity()))
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00003448 Ctx->addDecl(UDir);
Douglas Gregor889ceb72009-02-03 19:21:40 +00003449 else
3450 // Otherwise it is block-sope. using-directives will affect lookup
3451 // only to the end of scope.
Chris Lattner83f095c2009-03-28 19:18:32 +00003452 S->PushUsingDirective(DeclPtrTy::make(UDir));
Douglas Gregord7c4d982008-12-30 03:27:21 +00003453}
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00003454
Douglas Gregorfec52632009-06-20 00:51:54 +00003455
3456Sema::DeclPtrTy Sema::ActOnUsingDeclaration(Scope *S,
Anders Carlsson7b194b72009-08-29 19:54:19 +00003457 AccessSpecifier AS,
John McCalla0097262009-12-11 02:10:03 +00003458 bool HasUsingKeyword,
Anders Carlsson59140b32009-08-28 03:16:11 +00003459 SourceLocation UsingLoc,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00003460 CXXScopeSpec &SS,
Douglas Gregor220f4272009-11-04 16:30:06 +00003461 UnqualifiedId &Name,
Anders Carlsson59140b32009-08-28 03:16:11 +00003462 AttributeList *AttrList,
John McCalle61f2ba2009-11-18 02:36:19 +00003463 bool IsTypeName,
3464 SourceLocation TypenameLoc) {
Douglas Gregorfec52632009-06-20 00:51:54 +00003465 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Mike Stump11289f42009-09-09 15:08:12 +00003466
Douglas Gregor220f4272009-11-04 16:30:06 +00003467 switch (Name.getKind()) {
3468 case UnqualifiedId::IK_Identifier:
3469 case UnqualifiedId::IK_OperatorFunctionId:
Alexis Hunt34458502009-11-28 04:44:28 +00003470 case UnqualifiedId::IK_LiteralOperatorId:
Douglas Gregor220f4272009-11-04 16:30:06 +00003471 case UnqualifiedId::IK_ConversionFunctionId:
3472 break;
3473
3474 case UnqualifiedId::IK_ConstructorName:
Douglas Gregor9de54ea2010-01-13 17:31:36 +00003475 case UnqualifiedId::IK_ConstructorTemplateId:
John McCall3969e302009-12-08 07:46:18 +00003476 // C++0x inherited constructors.
3477 if (getLangOptions().CPlusPlus0x) break;
3478
Douglas Gregor220f4272009-11-04 16:30:06 +00003479 Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_constructor)
3480 << SS.getRange();
3481 return DeclPtrTy();
3482
3483 case UnqualifiedId::IK_DestructorName:
3484 Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_destructor)
3485 << SS.getRange();
3486 return DeclPtrTy();
3487
3488 case UnqualifiedId::IK_TemplateId:
3489 Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_template_id)
3490 << SourceRange(Name.TemplateId->LAngleLoc, Name.TemplateId->RAngleLoc);
3491 return DeclPtrTy();
3492 }
3493
3494 DeclarationName TargetName = GetNameFromUnqualifiedId(Name);
John McCall3969e302009-12-08 07:46:18 +00003495 if (!TargetName)
3496 return DeclPtrTy();
3497
John McCalla0097262009-12-11 02:10:03 +00003498 // Warn about using declarations.
3499 // TODO: store that the declaration was written without 'using' and
3500 // talk about access decls instead of using decls in the
3501 // diagnostics.
3502 if (!HasUsingKeyword) {
3503 UsingLoc = Name.getSourceRange().getBegin();
3504
3505 Diag(UsingLoc, diag::warn_access_decl_deprecated)
Douglas Gregora771f462010-03-31 17:46:05 +00003506 << FixItHint::CreateInsertion(SS.getRange().getBegin(), "using ");
John McCalla0097262009-12-11 02:10:03 +00003507 }
3508
John McCall3f746822009-11-17 05:59:44 +00003509 NamedDecl *UD = BuildUsingDeclaration(S, AS, UsingLoc, SS,
Douglas Gregor220f4272009-11-04 16:30:06 +00003510 Name.getSourceRange().getBegin(),
John McCalle61f2ba2009-11-18 02:36:19 +00003511 TargetName, AttrList,
3512 /* IsInstantiation */ false,
3513 IsTypeName, TypenameLoc);
John McCallb96ec562009-12-04 22:46:56 +00003514 if (UD)
3515 PushOnScopeChains(UD, S, /*AddToContext*/ false);
Mike Stump11289f42009-09-09 15:08:12 +00003516
Anders Carlsson696a3f12009-08-28 05:40:36 +00003517 return DeclPtrTy::make(UD);
3518}
3519
John McCall84d87672009-12-10 09:41:52 +00003520/// Determines whether to create a using shadow decl for a particular
3521/// decl, given the set of decls existing prior to this using lookup.
3522bool Sema::CheckUsingShadowDecl(UsingDecl *Using, NamedDecl *Orig,
3523 const LookupResult &Previous) {
3524 // Diagnose finding a decl which is not from a base class of the
3525 // current class. We do this now because there are cases where this
3526 // function will silently decide not to build a shadow decl, which
3527 // will pre-empt further diagnostics.
3528 //
3529 // We don't need to do this in C++0x because we do the check once on
3530 // the qualifier.
3531 //
3532 // FIXME: diagnose the following if we care enough:
3533 // struct A { int foo; };
3534 // struct B : A { using A::foo; };
3535 // template <class T> struct C : A {};
3536 // template <class T> struct D : C<T> { using B::foo; } // <---
3537 // This is invalid (during instantiation) in C++03 because B::foo
3538 // resolves to the using decl in B, which is not a base class of D<T>.
3539 // We can't diagnose it immediately because C<T> is an unknown
3540 // specialization. The UsingShadowDecl in D<T> then points directly
3541 // to A::foo, which will look well-formed when we instantiate.
3542 // The right solution is to not collapse the shadow-decl chain.
3543 if (!getLangOptions().CPlusPlus0x && CurContext->isRecord()) {
3544 DeclContext *OrigDC = Orig->getDeclContext();
3545
3546 // Handle enums and anonymous structs.
3547 if (isa<EnumDecl>(OrigDC)) OrigDC = OrigDC->getParent();
3548 CXXRecordDecl *OrigRec = cast<CXXRecordDecl>(OrigDC);
3549 while (OrigRec->isAnonymousStructOrUnion())
3550 OrigRec = cast<CXXRecordDecl>(OrigRec->getDeclContext());
3551
3552 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(OrigRec)) {
3553 if (OrigDC == CurContext) {
3554 Diag(Using->getLocation(),
3555 diag::err_using_decl_nested_name_specifier_is_current_class)
3556 << Using->getNestedNameRange();
3557 Diag(Orig->getLocation(), diag::note_using_decl_target);
3558 return true;
3559 }
3560
3561 Diag(Using->getNestedNameRange().getBegin(),
3562 diag::err_using_decl_nested_name_specifier_is_not_base_class)
3563 << Using->getTargetNestedNameDecl()
3564 << cast<CXXRecordDecl>(CurContext)
3565 << Using->getNestedNameRange();
3566 Diag(Orig->getLocation(), diag::note_using_decl_target);
3567 return true;
3568 }
3569 }
3570
3571 if (Previous.empty()) return false;
3572
3573 NamedDecl *Target = Orig;
3574 if (isa<UsingShadowDecl>(Target))
3575 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
3576
John McCalla17e83e2009-12-11 02:33:26 +00003577 // If the target happens to be one of the previous declarations, we
3578 // don't have a conflict.
3579 //
3580 // FIXME: but we might be increasing its access, in which case we
3581 // should redeclare it.
3582 NamedDecl *NonTag = 0, *Tag = 0;
3583 for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
3584 I != E; ++I) {
3585 NamedDecl *D = (*I)->getUnderlyingDecl();
3586 if (D->getCanonicalDecl() == Target->getCanonicalDecl())
3587 return false;
3588
3589 (isa<TagDecl>(D) ? Tag : NonTag) = D;
3590 }
3591
John McCall84d87672009-12-10 09:41:52 +00003592 if (Target->isFunctionOrFunctionTemplate()) {
3593 FunctionDecl *FD;
3594 if (isa<FunctionTemplateDecl>(Target))
3595 FD = cast<FunctionTemplateDecl>(Target)->getTemplatedDecl();
3596 else
3597 FD = cast<FunctionDecl>(Target);
3598
3599 NamedDecl *OldDecl = 0;
3600 switch (CheckOverload(FD, Previous, OldDecl)) {
3601 case Ovl_Overload:
3602 return false;
3603
3604 case Ovl_NonFunction:
John McCalle29c5cd2009-12-10 19:51:03 +00003605 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall84d87672009-12-10 09:41:52 +00003606 break;
3607
3608 // We found a decl with the exact signature.
3609 case Ovl_Match:
3610 if (isa<UsingShadowDecl>(OldDecl)) {
3611 // Silently ignore the possible conflict.
3612 return false;
3613 }
3614
3615 // If we're in a record, we want to hide the target, so we
3616 // return true (without a diagnostic) to tell the caller not to
3617 // build a shadow decl.
3618 if (CurContext->isRecord())
3619 return true;
3620
3621 // If we're not in a record, this is an error.
John McCalle29c5cd2009-12-10 19:51:03 +00003622 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall84d87672009-12-10 09:41:52 +00003623 break;
3624 }
3625
3626 Diag(Target->getLocation(), diag::note_using_decl_target);
3627 Diag(OldDecl->getLocation(), diag::note_using_decl_conflict);
3628 return true;
3629 }
3630
3631 // Target is not a function.
3632
John McCall84d87672009-12-10 09:41:52 +00003633 if (isa<TagDecl>(Target)) {
3634 // No conflict between a tag and a non-tag.
3635 if (!Tag) return false;
3636
John McCalle29c5cd2009-12-10 19:51:03 +00003637 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall84d87672009-12-10 09:41:52 +00003638 Diag(Target->getLocation(), diag::note_using_decl_target);
3639 Diag(Tag->getLocation(), diag::note_using_decl_conflict);
3640 return true;
3641 }
3642
3643 // No conflict between a tag and a non-tag.
3644 if (!NonTag) return false;
3645
John McCalle29c5cd2009-12-10 19:51:03 +00003646 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall84d87672009-12-10 09:41:52 +00003647 Diag(Target->getLocation(), diag::note_using_decl_target);
3648 Diag(NonTag->getLocation(), diag::note_using_decl_conflict);
3649 return true;
3650}
3651
John McCall3f746822009-11-17 05:59:44 +00003652/// Builds a shadow declaration corresponding to a 'using' declaration.
John McCall3969e302009-12-08 07:46:18 +00003653UsingShadowDecl *Sema::BuildUsingShadowDecl(Scope *S,
John McCall3969e302009-12-08 07:46:18 +00003654 UsingDecl *UD,
3655 NamedDecl *Orig) {
John McCall3f746822009-11-17 05:59:44 +00003656
3657 // If we resolved to another shadow declaration, just coalesce them.
John McCall3969e302009-12-08 07:46:18 +00003658 NamedDecl *Target = Orig;
3659 if (isa<UsingShadowDecl>(Target)) {
3660 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
3661 assert(!isa<UsingShadowDecl>(Target) && "nested shadow declaration");
John McCall3f746822009-11-17 05:59:44 +00003662 }
3663
3664 UsingShadowDecl *Shadow
John McCall3969e302009-12-08 07:46:18 +00003665 = UsingShadowDecl::Create(Context, CurContext,
3666 UD->getLocation(), UD, Target);
John McCall3f746822009-11-17 05:59:44 +00003667 UD->addShadowDecl(Shadow);
3668
3669 if (S)
John McCall3969e302009-12-08 07:46:18 +00003670 PushOnScopeChains(Shadow, S);
John McCall3f746822009-11-17 05:59:44 +00003671 else
John McCall3969e302009-12-08 07:46:18 +00003672 CurContext->addDecl(Shadow);
John McCall84d87672009-12-10 09:41:52 +00003673 Shadow->setAccess(UD->getAccess());
John McCall3f746822009-11-17 05:59:44 +00003674
John McCallda4458e2010-03-31 01:36:47 +00003675 // Register it as a conversion if appropriate.
3676 if (Shadow->getDeclName().getNameKind()
3677 == DeclarationName::CXXConversionFunctionName)
3678 cast<CXXRecordDecl>(CurContext)->addConversionFunction(Shadow);
3679
John McCall3969e302009-12-08 07:46:18 +00003680 if (Orig->isInvalidDecl() || UD->isInvalidDecl())
3681 Shadow->setInvalidDecl();
3682
John McCall84d87672009-12-10 09:41:52 +00003683 return Shadow;
3684}
John McCall3969e302009-12-08 07:46:18 +00003685
John McCall84d87672009-12-10 09:41:52 +00003686/// Hides a using shadow declaration. This is required by the current
3687/// using-decl implementation when a resolvable using declaration in a
3688/// class is followed by a declaration which would hide or override
3689/// one or more of the using decl's targets; for example:
3690///
3691/// struct Base { void foo(int); };
3692/// struct Derived : Base {
3693/// using Base::foo;
3694/// void foo(int);
3695/// };
3696///
3697/// The governing language is C++03 [namespace.udecl]p12:
3698///
3699/// When a using-declaration brings names from a base class into a
3700/// derived class scope, member functions in the derived class
3701/// override and/or hide member functions with the same name and
3702/// parameter types in a base class (rather than conflicting).
3703///
3704/// There are two ways to implement this:
3705/// (1) optimistically create shadow decls when they're not hidden
3706/// by existing declarations, or
3707/// (2) don't create any shadow decls (or at least don't make them
3708/// visible) until we've fully parsed/instantiated the class.
3709/// The problem with (1) is that we might have to retroactively remove
3710/// a shadow decl, which requires several O(n) operations because the
3711/// decl structures are (very reasonably) not designed for removal.
3712/// (2) avoids this but is very fiddly and phase-dependent.
3713void Sema::HideUsingShadowDecl(Scope *S, UsingShadowDecl *Shadow) {
John McCallda4458e2010-03-31 01:36:47 +00003714 if (Shadow->getDeclName().getNameKind() ==
3715 DeclarationName::CXXConversionFunctionName)
3716 cast<CXXRecordDecl>(Shadow->getDeclContext())->removeConversion(Shadow);
3717
John McCall84d87672009-12-10 09:41:52 +00003718 // Remove it from the DeclContext...
3719 Shadow->getDeclContext()->removeDecl(Shadow);
John McCall3969e302009-12-08 07:46:18 +00003720
John McCall84d87672009-12-10 09:41:52 +00003721 // ...and the scope, if applicable...
3722 if (S) {
3723 S->RemoveDecl(DeclPtrTy::make(static_cast<Decl*>(Shadow)));
3724 IdResolver.RemoveDecl(Shadow);
John McCall3969e302009-12-08 07:46:18 +00003725 }
3726
John McCall84d87672009-12-10 09:41:52 +00003727 // ...and the using decl.
3728 Shadow->getUsingDecl()->removeShadowDecl(Shadow);
3729
3730 // TODO: complain somehow if Shadow was used. It shouldn't
John McCallda4458e2010-03-31 01:36:47 +00003731 // be possible for this to happen, because...?
John McCall3f746822009-11-17 05:59:44 +00003732}
3733
John McCalle61f2ba2009-11-18 02:36:19 +00003734/// Builds a using declaration.
3735///
3736/// \param IsInstantiation - Whether this call arises from an
3737/// instantiation of an unresolved using declaration. We treat
3738/// the lookup differently for these declarations.
John McCall3f746822009-11-17 05:59:44 +00003739NamedDecl *Sema::BuildUsingDeclaration(Scope *S, AccessSpecifier AS,
3740 SourceLocation UsingLoc,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00003741 CXXScopeSpec &SS,
Anders Carlsson696a3f12009-08-28 05:40:36 +00003742 SourceLocation IdentLoc,
3743 DeclarationName Name,
3744 AttributeList *AttrList,
John McCalle61f2ba2009-11-18 02:36:19 +00003745 bool IsInstantiation,
3746 bool IsTypeName,
3747 SourceLocation TypenameLoc) {
Anders Carlsson696a3f12009-08-28 05:40:36 +00003748 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
3749 assert(IdentLoc.isValid() && "Invalid TargetName location.");
Eli Friedman561154d2009-08-27 05:09:36 +00003750
Anders Carlssonf038fc22009-08-28 05:49:21 +00003751 // FIXME: We ignore attributes for now.
3752 delete AttrList;
Mike Stump11289f42009-09-09 15:08:12 +00003753
Anders Carlsson59140b32009-08-28 03:16:11 +00003754 if (SS.isEmpty()) {
3755 Diag(IdentLoc, diag::err_using_requires_qualname);
Anders Carlsson696a3f12009-08-28 05:40:36 +00003756 return 0;
Anders Carlsson59140b32009-08-28 03:16:11 +00003757 }
Mike Stump11289f42009-09-09 15:08:12 +00003758
John McCall84d87672009-12-10 09:41:52 +00003759 // Do the redeclaration lookup in the current scope.
3760 LookupResult Previous(*this, Name, IdentLoc, LookupUsingDeclName,
3761 ForRedeclaration);
3762 Previous.setHideTags(false);
3763 if (S) {
3764 LookupName(Previous, S);
3765
3766 // It is really dumb that we have to do this.
3767 LookupResult::Filter F = Previous.makeFilter();
3768 while (F.hasNext()) {
3769 NamedDecl *D = F.next();
3770 if (!isDeclInScope(D, CurContext, S))
3771 F.erase();
3772 }
3773 F.done();
3774 } else {
3775 assert(IsInstantiation && "no scope in non-instantiation");
3776 assert(CurContext->isRecord() && "scope not record in instantiation");
3777 LookupQualifiedName(Previous, CurContext);
3778 }
3779
Mike Stump11289f42009-09-09 15:08:12 +00003780 NestedNameSpecifier *NNS =
Anders Carlsson59140b32009-08-28 03:16:11 +00003781 static_cast<NestedNameSpecifier *>(SS.getScopeRep());
3782
John McCall84d87672009-12-10 09:41:52 +00003783 // Check for invalid redeclarations.
3784 if (CheckUsingDeclRedeclaration(UsingLoc, IsTypeName, SS, IdentLoc, Previous))
3785 return 0;
3786
3787 // Check for bad qualifiers.
John McCallb96ec562009-12-04 22:46:56 +00003788 if (CheckUsingDeclQualifier(UsingLoc, SS, IdentLoc))
3789 return 0;
3790
John McCall84c16cf2009-11-12 03:15:40 +00003791 DeclContext *LookupContext = computeDeclContext(SS);
John McCallb96ec562009-12-04 22:46:56 +00003792 NamedDecl *D;
John McCall84c16cf2009-11-12 03:15:40 +00003793 if (!LookupContext) {
John McCalle61f2ba2009-11-18 02:36:19 +00003794 if (IsTypeName) {
John McCallb96ec562009-12-04 22:46:56 +00003795 // FIXME: not all declaration name kinds are legal here
3796 D = UnresolvedUsingTypenameDecl::Create(Context, CurContext,
3797 UsingLoc, TypenameLoc,
3798 SS.getRange(), NNS,
John McCalle61f2ba2009-11-18 02:36:19 +00003799 IdentLoc, Name);
John McCallb96ec562009-12-04 22:46:56 +00003800 } else {
3801 D = UnresolvedUsingValueDecl::Create(Context, CurContext,
3802 UsingLoc, SS.getRange(), NNS,
3803 IdentLoc, Name);
John McCalle61f2ba2009-11-18 02:36:19 +00003804 }
John McCallb96ec562009-12-04 22:46:56 +00003805 } else {
3806 D = UsingDecl::Create(Context, CurContext, IdentLoc,
3807 SS.getRange(), UsingLoc, NNS, Name,
3808 IsTypeName);
Anders Carlssonf038fc22009-08-28 05:49:21 +00003809 }
John McCallb96ec562009-12-04 22:46:56 +00003810 D->setAccess(AS);
3811 CurContext->addDecl(D);
3812
3813 if (!LookupContext) return D;
3814 UsingDecl *UD = cast<UsingDecl>(D);
Mike Stump11289f42009-09-09 15:08:12 +00003815
John McCall0b66eb32010-05-01 00:40:08 +00003816 if (RequireCompleteDeclContext(SS, LookupContext)) {
John McCall3969e302009-12-08 07:46:18 +00003817 UD->setInvalidDecl();
3818 return UD;
Anders Carlsson59140b32009-08-28 03:16:11 +00003819 }
3820
John McCall3969e302009-12-08 07:46:18 +00003821 // Look up the target name.
3822
John McCall27b18f82009-11-17 02:14:36 +00003823 LookupResult R(*this, Name, IdentLoc, LookupOrdinaryName);
John McCalle61f2ba2009-11-18 02:36:19 +00003824
John McCall3969e302009-12-08 07:46:18 +00003825 // Unlike most lookups, we don't always want to hide tag
3826 // declarations: tag names are visible through the using declaration
3827 // even if hidden by ordinary names, *except* in a dependent context
3828 // where it's important for the sanity of two-phase lookup.
John McCalle61f2ba2009-11-18 02:36:19 +00003829 if (!IsInstantiation)
3830 R.setHideTags(false);
John McCall3f746822009-11-17 05:59:44 +00003831
John McCall27b18f82009-11-17 02:14:36 +00003832 LookupQualifiedName(R, LookupContext);
Mike Stump11289f42009-09-09 15:08:12 +00003833
John McCall9f3059a2009-10-09 21:13:30 +00003834 if (R.empty()) {
Douglas Gregore40876a2009-10-13 21:16:44 +00003835 Diag(IdentLoc, diag::err_no_member)
3836 << Name << LookupContext << SS.getRange();
John McCallb96ec562009-12-04 22:46:56 +00003837 UD->setInvalidDecl();
3838 return UD;
Douglas Gregorfec52632009-06-20 00:51:54 +00003839 }
3840
John McCallb96ec562009-12-04 22:46:56 +00003841 if (R.isAmbiguous()) {
3842 UD->setInvalidDecl();
3843 return UD;
3844 }
Mike Stump11289f42009-09-09 15:08:12 +00003845
John McCalle61f2ba2009-11-18 02:36:19 +00003846 if (IsTypeName) {
3847 // If we asked for a typename and got a non-type decl, error out.
John McCallb96ec562009-12-04 22:46:56 +00003848 if (!R.getAsSingle<TypeDecl>()) {
John McCalle61f2ba2009-11-18 02:36:19 +00003849 Diag(IdentLoc, diag::err_using_typename_non_type);
3850 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I)
3851 Diag((*I)->getUnderlyingDecl()->getLocation(),
3852 diag::note_using_decl_target);
John McCallb96ec562009-12-04 22:46:56 +00003853 UD->setInvalidDecl();
3854 return UD;
John McCalle61f2ba2009-11-18 02:36:19 +00003855 }
3856 } else {
3857 // If we asked for a non-typename and we got a type, error out,
3858 // but only if this is an instantiation of an unresolved using
3859 // decl. Otherwise just silently find the type name.
John McCallb96ec562009-12-04 22:46:56 +00003860 if (IsInstantiation && R.getAsSingle<TypeDecl>()) {
John McCalle61f2ba2009-11-18 02:36:19 +00003861 Diag(IdentLoc, diag::err_using_dependent_value_is_type);
3862 Diag(R.getFoundDecl()->getLocation(), diag::note_using_decl_target);
John McCallb96ec562009-12-04 22:46:56 +00003863 UD->setInvalidDecl();
3864 return UD;
John McCalle61f2ba2009-11-18 02:36:19 +00003865 }
Anders Carlsson59140b32009-08-28 03:16:11 +00003866 }
3867
Anders Carlsson5a9c5ac2009-08-28 03:35:18 +00003868 // C++0x N2914 [namespace.udecl]p6:
3869 // A using-declaration shall not name a namespace.
John McCallb96ec562009-12-04 22:46:56 +00003870 if (R.getAsSingle<NamespaceDecl>()) {
Anders Carlsson5a9c5ac2009-08-28 03:35:18 +00003871 Diag(IdentLoc, diag::err_using_decl_can_not_refer_to_namespace)
3872 << SS.getRange();
John McCallb96ec562009-12-04 22:46:56 +00003873 UD->setInvalidDecl();
3874 return UD;
Anders Carlsson5a9c5ac2009-08-28 03:35:18 +00003875 }
Mike Stump11289f42009-09-09 15:08:12 +00003876
John McCall84d87672009-12-10 09:41:52 +00003877 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) {
3878 if (!CheckUsingShadowDecl(UD, *I, Previous))
3879 BuildUsingShadowDecl(S, UD, *I);
3880 }
John McCall3f746822009-11-17 05:59:44 +00003881
3882 return UD;
Douglas Gregorfec52632009-06-20 00:51:54 +00003883}
3884
John McCall84d87672009-12-10 09:41:52 +00003885/// Checks that the given using declaration is not an invalid
3886/// redeclaration. Note that this is checking only for the using decl
3887/// itself, not for any ill-formedness among the UsingShadowDecls.
3888bool Sema::CheckUsingDeclRedeclaration(SourceLocation UsingLoc,
3889 bool isTypeName,
3890 const CXXScopeSpec &SS,
3891 SourceLocation NameLoc,
3892 const LookupResult &Prev) {
3893 // C++03 [namespace.udecl]p8:
3894 // C++0x [namespace.udecl]p10:
3895 // A using-declaration is a declaration and can therefore be used
3896 // repeatedly where (and only where) multiple declarations are
3897 // allowed.
Douglas Gregor4b718ee2010-05-06 23:31:27 +00003898 //
3899 // That's in non-member contexts.
3900 if (!CurContext->getLookupContext()->isRecord())
John McCall84d87672009-12-10 09:41:52 +00003901 return false;
3902
3903 NestedNameSpecifier *Qual
3904 = static_cast<NestedNameSpecifier*>(SS.getScopeRep());
3905
3906 for (LookupResult::iterator I = Prev.begin(), E = Prev.end(); I != E; ++I) {
3907 NamedDecl *D = *I;
3908
3909 bool DTypename;
3910 NestedNameSpecifier *DQual;
3911 if (UsingDecl *UD = dyn_cast<UsingDecl>(D)) {
3912 DTypename = UD->isTypeName();
3913 DQual = UD->getTargetNestedNameDecl();
3914 } else if (UnresolvedUsingValueDecl *UD
3915 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
3916 DTypename = false;
3917 DQual = UD->getTargetNestedNameSpecifier();
3918 } else if (UnresolvedUsingTypenameDecl *UD
3919 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
3920 DTypename = true;
3921 DQual = UD->getTargetNestedNameSpecifier();
3922 } else continue;
3923
3924 // using decls differ if one says 'typename' and the other doesn't.
3925 // FIXME: non-dependent using decls?
3926 if (isTypeName != DTypename) continue;
3927
3928 // using decls differ if they name different scopes (but note that
3929 // template instantiation can cause this check to trigger when it
3930 // didn't before instantiation).
3931 if (Context.getCanonicalNestedNameSpecifier(Qual) !=
3932 Context.getCanonicalNestedNameSpecifier(DQual))
3933 continue;
3934
3935 Diag(NameLoc, diag::err_using_decl_redeclaration) << SS.getRange();
John McCalle29c5cd2009-12-10 19:51:03 +00003936 Diag(D->getLocation(), diag::note_using_decl) << 1;
John McCall84d87672009-12-10 09:41:52 +00003937 return true;
3938 }
3939
3940 return false;
3941}
3942
John McCall3969e302009-12-08 07:46:18 +00003943
John McCallb96ec562009-12-04 22:46:56 +00003944/// Checks that the given nested-name qualifier used in a using decl
3945/// in the current context is appropriately related to the current
3946/// scope. If an error is found, diagnoses it and returns true.
3947bool Sema::CheckUsingDeclQualifier(SourceLocation UsingLoc,
3948 const CXXScopeSpec &SS,
3949 SourceLocation NameLoc) {
John McCall3969e302009-12-08 07:46:18 +00003950 DeclContext *NamedContext = computeDeclContext(SS);
John McCallb96ec562009-12-04 22:46:56 +00003951
John McCall3969e302009-12-08 07:46:18 +00003952 if (!CurContext->isRecord()) {
3953 // C++03 [namespace.udecl]p3:
3954 // C++0x [namespace.udecl]p8:
3955 // A using-declaration for a class member shall be a member-declaration.
3956
3957 // If we weren't able to compute a valid scope, it must be a
3958 // dependent class scope.
3959 if (!NamedContext || NamedContext->isRecord()) {
3960 Diag(NameLoc, diag::err_using_decl_can_not_refer_to_class_member)
3961 << SS.getRange();
3962 return true;
3963 }
3964
3965 // Otherwise, everything is known to be fine.
3966 return false;
3967 }
3968
3969 // The current scope is a record.
3970
3971 // If the named context is dependent, we can't decide much.
3972 if (!NamedContext) {
3973 // FIXME: in C++0x, we can diagnose if we can prove that the
3974 // nested-name-specifier does not refer to a base class, which is
3975 // still possible in some cases.
3976
3977 // Otherwise we have to conservatively report that things might be
3978 // okay.
3979 return false;
3980 }
3981
3982 if (!NamedContext->isRecord()) {
3983 // Ideally this would point at the last name in the specifier,
3984 // but we don't have that level of source info.
3985 Diag(SS.getRange().getBegin(),
3986 diag::err_using_decl_nested_name_specifier_is_not_class)
3987 << (NestedNameSpecifier*) SS.getScopeRep() << SS.getRange();
3988 return true;
3989 }
3990
3991 if (getLangOptions().CPlusPlus0x) {
3992 // C++0x [namespace.udecl]p3:
3993 // In a using-declaration used as a member-declaration, the
3994 // nested-name-specifier shall name a base class of the class
3995 // being defined.
3996
3997 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(
3998 cast<CXXRecordDecl>(NamedContext))) {
3999 if (CurContext == NamedContext) {
4000 Diag(NameLoc,
4001 diag::err_using_decl_nested_name_specifier_is_current_class)
4002 << SS.getRange();
4003 return true;
4004 }
4005
4006 Diag(SS.getRange().getBegin(),
4007 diag::err_using_decl_nested_name_specifier_is_not_base_class)
4008 << (NestedNameSpecifier*) SS.getScopeRep()
4009 << cast<CXXRecordDecl>(CurContext)
4010 << SS.getRange();
4011 return true;
4012 }
4013
4014 return false;
4015 }
4016
4017 // C++03 [namespace.udecl]p4:
4018 // A using-declaration used as a member-declaration shall refer
4019 // to a member of a base class of the class being defined [etc.].
4020
4021 // Salient point: SS doesn't have to name a base class as long as
4022 // lookup only finds members from base classes. Therefore we can
4023 // diagnose here only if we can prove that that can't happen,
4024 // i.e. if the class hierarchies provably don't intersect.
4025
4026 // TODO: it would be nice if "definitely valid" results were cached
4027 // in the UsingDecl and UsingShadowDecl so that these checks didn't
4028 // need to be repeated.
4029
4030 struct UserData {
4031 llvm::DenseSet<const CXXRecordDecl*> Bases;
4032
4033 static bool collect(const CXXRecordDecl *Base, void *OpaqueData) {
4034 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
4035 Data->Bases.insert(Base);
4036 return true;
4037 }
4038
4039 bool hasDependentBases(const CXXRecordDecl *Class) {
4040 return !Class->forallBases(collect, this);
4041 }
4042
4043 /// Returns true if the base is dependent or is one of the
4044 /// accumulated base classes.
4045 static bool doesNotContain(const CXXRecordDecl *Base, void *OpaqueData) {
4046 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
4047 return !Data->Bases.count(Base);
4048 }
4049
4050 bool mightShareBases(const CXXRecordDecl *Class) {
4051 return Bases.count(Class) || !Class->forallBases(doesNotContain, this);
4052 }
4053 };
4054
4055 UserData Data;
4056
4057 // Returns false if we find a dependent base.
4058 if (Data.hasDependentBases(cast<CXXRecordDecl>(CurContext)))
4059 return false;
4060
4061 // Returns false if the class has a dependent base or if it or one
4062 // of its bases is present in the base set of the current context.
4063 if (Data.mightShareBases(cast<CXXRecordDecl>(NamedContext)))
4064 return false;
4065
4066 Diag(SS.getRange().getBegin(),
4067 diag::err_using_decl_nested_name_specifier_is_not_base_class)
4068 << (NestedNameSpecifier*) SS.getScopeRep()
4069 << cast<CXXRecordDecl>(CurContext)
4070 << SS.getRange();
4071
4072 return true;
John McCallb96ec562009-12-04 22:46:56 +00004073}
4074
Mike Stump11289f42009-09-09 15:08:12 +00004075Sema::DeclPtrTy Sema::ActOnNamespaceAliasDef(Scope *S,
Anders Carlsson47952ae2009-03-28 22:53:22 +00004076 SourceLocation NamespaceLoc,
Chris Lattner83f095c2009-03-28 19:18:32 +00004077 SourceLocation AliasLoc,
4078 IdentifierInfo *Alias,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00004079 CXXScopeSpec &SS,
Anders Carlsson47952ae2009-03-28 22:53:22 +00004080 SourceLocation IdentLoc,
4081 IdentifierInfo *Ident) {
Mike Stump11289f42009-09-09 15:08:12 +00004082
Anders Carlssonbb1e4722009-03-28 23:53:49 +00004083 // Lookup the namespace name.
John McCall27b18f82009-11-17 02:14:36 +00004084 LookupResult R(*this, Ident, IdentLoc, LookupNamespaceName);
4085 LookupParsedName(R, S, &SS);
Anders Carlssonbb1e4722009-03-28 23:53:49 +00004086
Anders Carlssondca83c42009-03-28 06:23:46 +00004087 // Check if we have a previous declaration with the same name.
Douglas Gregor5cf8d672010-05-03 15:37:31 +00004088 NamedDecl *PrevDecl
4089 = LookupSingleName(S, Alias, AliasLoc, LookupOrdinaryName,
4090 ForRedeclaration);
4091 if (PrevDecl && !isDeclInScope(PrevDecl, CurContext, S))
4092 PrevDecl = 0;
4093
4094 if (PrevDecl) {
Anders Carlssonbb1e4722009-03-28 23:53:49 +00004095 if (NamespaceAliasDecl *AD = dyn_cast<NamespaceAliasDecl>(PrevDecl)) {
Mike Stump11289f42009-09-09 15:08:12 +00004096 // We already have an alias with the same name that points to the same
Anders Carlssonbb1e4722009-03-28 23:53:49 +00004097 // namespace, so don't create a new one.
Douglas Gregor4667eff2010-03-26 22:59:39 +00004098 // FIXME: At some point, we'll want to create the (redundant)
4099 // declaration to maintain better source information.
John McCall9f3059a2009-10-09 21:13:30 +00004100 if (!R.isAmbiguous() && !R.empty() &&
Douglas Gregor4667eff2010-03-26 22:59:39 +00004101 AD->getNamespace()->Equals(getNamespaceDecl(R.getFoundDecl())))
Anders Carlssonbb1e4722009-03-28 23:53:49 +00004102 return DeclPtrTy();
4103 }
Mike Stump11289f42009-09-09 15:08:12 +00004104
Anders Carlssondca83c42009-03-28 06:23:46 +00004105 unsigned DiagID = isa<NamespaceDecl>(PrevDecl) ? diag::err_redefinition :
4106 diag::err_redefinition_different_kind;
4107 Diag(AliasLoc, DiagID) << Alias;
4108 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Chris Lattner83f095c2009-03-28 19:18:32 +00004109 return DeclPtrTy();
Anders Carlssondca83c42009-03-28 06:23:46 +00004110 }
4111
John McCall27b18f82009-11-17 02:14:36 +00004112 if (R.isAmbiguous())
Chris Lattner83f095c2009-03-28 19:18:32 +00004113 return DeclPtrTy();
Mike Stump11289f42009-09-09 15:08:12 +00004114
John McCall9f3059a2009-10-09 21:13:30 +00004115 if (R.empty()) {
Anders Carlssonac2c9652009-03-28 06:42:02 +00004116 Diag(NamespaceLoc, diag::err_expected_namespace_name) << SS.getRange();
Chris Lattner83f095c2009-03-28 19:18:32 +00004117 return DeclPtrTy();
Anders Carlssonac2c9652009-03-28 06:42:02 +00004118 }
Mike Stump11289f42009-09-09 15:08:12 +00004119
Fariborz Jahanian423a81f2009-06-19 19:55:27 +00004120 NamespaceAliasDecl *AliasDecl =
Mike Stump11289f42009-09-09 15:08:12 +00004121 NamespaceAliasDecl::Create(Context, CurContext, NamespaceLoc, AliasLoc,
4122 Alias, SS.getRange(),
Douglas Gregor18231932009-05-30 06:48:27 +00004123 (NestedNameSpecifier *)SS.getScopeRep(),
John McCall9f3059a2009-10-09 21:13:30 +00004124 IdentLoc, R.getFoundDecl());
Mike Stump11289f42009-09-09 15:08:12 +00004125
John McCalld8d0d432010-02-16 06:53:13 +00004126 PushOnScopeChains(AliasDecl, S);
Anders Carlssonff25fdf2009-03-28 22:58:02 +00004127 return DeclPtrTy::make(AliasDecl);
Anders Carlsson9205d552009-03-28 05:27:17 +00004128}
4129
Douglas Gregora57478e2010-05-01 15:04:51 +00004130namespace {
4131 /// \brief Scoped object used to handle the state changes required in Sema
4132 /// to implicitly define the body of a C++ member function;
4133 class ImplicitlyDefinedFunctionScope {
4134 Sema &S;
4135 DeclContext *PreviousContext;
4136
4137 public:
4138 ImplicitlyDefinedFunctionScope(Sema &S, CXXMethodDecl *Method)
4139 : S(S), PreviousContext(S.CurContext)
4140 {
4141 S.CurContext = Method;
4142 S.PushFunctionScope();
4143 S.PushExpressionEvaluationContext(Sema::PotentiallyEvaluated);
4144 }
4145
4146 ~ImplicitlyDefinedFunctionScope() {
4147 S.PopExpressionEvaluationContext();
4148 S.PopFunctionOrBlockScope();
4149 S.CurContext = PreviousContext;
4150 }
4151 };
4152}
4153
Fariborz Jahanian423a81f2009-06-19 19:55:27 +00004154void Sema::DefineImplicitDefaultConstructor(SourceLocation CurrentLocation,
4155 CXXConstructorDecl *Constructor) {
Fariborz Jahanian18eb69a2009-06-22 20:37:23 +00004156 assert((Constructor->isImplicit() && Constructor->isDefaultConstructor() &&
4157 !Constructor->isUsed()) &&
4158 "DefineImplicitDefaultConstructor - call it for implicit default ctor");
Mike Stump11289f42009-09-09 15:08:12 +00004159
Anders Carlsson423f5d82010-04-23 16:04:08 +00004160 CXXRecordDecl *ClassDecl = Constructor->getParent();
Eli Friedman9cf6b592009-11-09 19:20:36 +00004161 assert(ClassDecl && "DefineImplicitDefaultConstructor - invalid constructor");
Eli Friedmand7686ef2009-11-09 01:05:47 +00004162
Douglas Gregora57478e2010-05-01 15:04:51 +00004163 ImplicitlyDefinedFunctionScope Scope(*this, Constructor);
Douglas Gregor54818f02010-05-12 16:39:35 +00004164 ErrorTrap Trap(*this);
4165 if (SetBaseOrMemberInitializers(Constructor, 0, 0, /*AnyErrors=*/false) ||
4166 Trap.hasErrorOccurred()) {
Anders Carlsson26a807d2009-11-30 21:24:50 +00004167 Diag(CurrentLocation, diag::note_member_synthesized_at)
Anders Carlsson05bf0092010-04-22 05:40:53 +00004168 << CXXConstructor << Context.getTagDeclType(ClassDecl);
Eli Friedman9cf6b592009-11-09 19:20:36 +00004169 Constructor->setInvalidDecl();
4170 } else {
4171 Constructor->setUsed();
Douglas Gregor88d292c2010-05-13 16:44:06 +00004172 MarkVTableUsed(CurrentLocation, ClassDecl);
Eli Friedman9cf6b592009-11-09 19:20:36 +00004173 }
Fariborz Jahanian423a81f2009-06-19 19:55:27 +00004174}
4175
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00004176void Sema::DefineImplicitDestructor(SourceLocation CurrentLocation,
Douglas Gregord94105a2009-09-04 19:04:08 +00004177 CXXDestructorDecl *Destructor) {
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00004178 assert((Destructor->isImplicit() && !Destructor->isUsed()) &&
4179 "DefineImplicitDestructor - call it for implicit default dtor");
Anders Carlsson2a50e952009-11-15 22:49:34 +00004180 CXXRecordDecl *ClassDecl = Destructor->getParent();
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00004181 assert(ClassDecl && "DefineImplicitDestructor - invalid destructor");
Douglas Gregor7ae2d772010-01-31 09:12:51 +00004182
Douglas Gregor54818f02010-05-12 16:39:35 +00004183 if (Destructor->isInvalidDecl())
4184 return;
4185
Douglas Gregora57478e2010-05-01 15:04:51 +00004186 ImplicitlyDefinedFunctionScope Scope(*this, Destructor);
Douglas Gregor7ae2d772010-01-31 09:12:51 +00004187
Douglas Gregor54818f02010-05-12 16:39:35 +00004188 ErrorTrap Trap(*this);
John McCalla6309952010-03-16 21:39:52 +00004189 MarkBaseAndMemberDestructorsReferenced(Destructor->getLocation(),
4190 Destructor->getParent());
Mike Stump11289f42009-09-09 15:08:12 +00004191
Douglas Gregor54818f02010-05-12 16:39:35 +00004192 if (CheckDestructor(Destructor) || Trap.hasErrorOccurred()) {
Anders Carlsson26a807d2009-11-30 21:24:50 +00004193 Diag(CurrentLocation, diag::note_member_synthesized_at)
4194 << CXXDestructor << Context.getTagDeclType(ClassDecl);
4195
4196 Destructor->setInvalidDecl();
4197 return;
4198 }
4199
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00004200 Destructor->setUsed();
Douglas Gregor88d292c2010-05-13 16:44:06 +00004201 MarkVTableUsed(CurrentLocation, ClassDecl);
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00004202}
4203
Douglas Gregorb139cd52010-05-01 20:49:11 +00004204/// \brief Builds a statement that copies the given entity from \p From to
4205/// \c To.
4206///
4207/// This routine is used to copy the members of a class with an
4208/// implicitly-declared copy assignment operator. When the entities being
4209/// copied are arrays, this routine builds for loops to copy them.
4210///
4211/// \param S The Sema object used for type-checking.
4212///
4213/// \param Loc The location where the implicit copy is being generated.
4214///
4215/// \param T The type of the expressions being copied. Both expressions must
4216/// have this type.
4217///
4218/// \param To The expression we are copying to.
4219///
4220/// \param From The expression we are copying from.
4221///
Douglas Gregor40c92bb2010-05-04 15:20:55 +00004222/// \param CopyingBaseSubobject Whether we're copying a base subobject.
4223/// Otherwise, it's a non-static member subobject.
4224///
Douglas Gregorb139cd52010-05-01 20:49:11 +00004225/// \param Depth Internal parameter recording the depth of the recursion.
4226///
4227/// \returns A statement or a loop that copies the expressions.
4228static Sema::OwningStmtResult
4229BuildSingleCopyAssign(Sema &S, SourceLocation Loc, QualType T,
4230 Sema::OwningExprResult To, Sema::OwningExprResult From,
Douglas Gregor40c92bb2010-05-04 15:20:55 +00004231 bool CopyingBaseSubobject, unsigned Depth = 0) {
Douglas Gregorb139cd52010-05-01 20:49:11 +00004232 typedef Sema::OwningStmtResult OwningStmtResult;
4233 typedef Sema::OwningExprResult OwningExprResult;
4234
4235 // C++0x [class.copy]p30:
4236 // Each subobject is assigned in the manner appropriate to its type:
4237 //
4238 // - if the subobject is of class type, the copy assignment operator
4239 // for the class is used (as if by explicit qualification; that is,
4240 // ignoring any possible virtual overriding functions in more derived
4241 // classes);
4242 if (const RecordType *RecordTy = T->getAs<RecordType>()) {
4243 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
4244
4245 // Look for operator=.
4246 DeclarationName Name
4247 = S.Context.DeclarationNames.getCXXOperatorName(OO_Equal);
4248 LookupResult OpLookup(S, Name, Loc, Sema::LookupOrdinaryName);
4249 S.LookupQualifiedName(OpLookup, ClassDecl, false);
4250
4251 // Filter out any result that isn't a copy-assignment operator.
4252 LookupResult::Filter F = OpLookup.makeFilter();
4253 while (F.hasNext()) {
4254 NamedDecl *D = F.next();
4255 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
4256 if (Method->isCopyAssignmentOperator())
4257 continue;
4258
4259 F.erase();
John McCallab8c2732010-03-16 06:11:48 +00004260 }
Douglas Gregorb139cd52010-05-01 20:49:11 +00004261 F.done();
4262
Douglas Gregor40c92bb2010-05-04 15:20:55 +00004263 // Suppress the protected check (C++ [class.protected]) for each of the
4264 // assignment operators we found. This strange dance is required when
4265 // we're assigning via a base classes's copy-assignment operator. To
4266 // ensure that we're getting the right base class subobject (without
4267 // ambiguities), we need to cast "this" to that subobject type; to
4268 // ensure that we don't go through the virtual call mechanism, we need
4269 // to qualify the operator= name with the base class (see below). However,
4270 // this means that if the base class has a protected copy assignment
4271 // operator, the protected member access check will fail. So, we
4272 // rewrite "protected" access to "public" access in this case, since we
4273 // know by construction that we're calling from a derived class.
4274 if (CopyingBaseSubobject) {
4275 for (LookupResult::iterator L = OpLookup.begin(), LEnd = OpLookup.end();
4276 L != LEnd; ++L) {
4277 if (L.getAccess() == AS_protected)
4278 L.setAccess(AS_public);
4279 }
4280 }
4281
Douglas Gregorb139cd52010-05-01 20:49:11 +00004282 // Create the nested-name-specifier that will be used to qualify the
4283 // reference to operator=; this is required to suppress the virtual
4284 // call mechanism.
4285 CXXScopeSpec SS;
4286 SS.setRange(Loc);
4287 SS.setScopeRep(NestedNameSpecifier::Create(S.Context, 0, false,
4288 T.getTypePtr()));
4289
4290 // Create the reference to operator=.
4291 OwningExprResult OpEqualRef
4292 = S.BuildMemberReferenceExpr(move(To), T, Loc, /*isArrow=*/false, SS,
4293 /*FirstQualifierInScope=*/0, OpLookup,
4294 /*TemplateArgs=*/0,
4295 /*SuppressQualifierCheck=*/true);
4296 if (OpEqualRef.isInvalid())
4297 return S.StmtError();
4298
4299 // Build the call to the assignment operator.
4300 Expr *FromE = From.takeAs<Expr>();
4301 OwningExprResult Call = S.BuildCallToMemberFunction(/*Scope=*/0,
4302 OpEqualRef.takeAs<Expr>(),
4303 Loc, &FromE, 1, 0, Loc);
4304 if (Call.isInvalid())
4305 return S.StmtError();
4306
4307 return S.Owned(Call.takeAs<Stmt>());
Fariborz Jahanian41f79272009-06-25 21:45:19 +00004308 }
John McCallab8c2732010-03-16 06:11:48 +00004309
Douglas Gregorb139cd52010-05-01 20:49:11 +00004310 // - if the subobject is of scalar type, the built-in assignment
4311 // operator is used.
4312 const ConstantArrayType *ArrayTy = S.Context.getAsConstantArrayType(T);
4313 if (!ArrayTy) {
4314 OwningExprResult Assignment = S.CreateBuiltinBinOp(Loc,
4315 BinaryOperator::Assign,
4316 To.takeAs<Expr>(),
4317 From.takeAs<Expr>());
4318 if (Assignment.isInvalid())
4319 return S.StmtError();
4320
4321 return S.Owned(Assignment.takeAs<Stmt>());
Fariborz Jahanian41f79272009-06-25 21:45:19 +00004322 }
Douglas Gregorb139cd52010-05-01 20:49:11 +00004323
4324 // - if the subobject is an array, each element is assigned, in the
4325 // manner appropriate to the element type;
4326
4327 // Construct a loop over the array bounds, e.g.,
4328 //
4329 // for (__SIZE_TYPE__ i0 = 0; i0 != array-size; ++i0)
4330 //
4331 // that will copy each of the array elements.
4332 QualType SizeType = S.Context.getSizeType();
4333
4334 // Create the iteration variable.
4335 IdentifierInfo *IterationVarName = 0;
4336 {
4337 llvm::SmallString<8> Str;
4338 llvm::raw_svector_ostream OS(Str);
4339 OS << "__i" << Depth;
4340 IterationVarName = &S.Context.Idents.get(OS.str());
4341 }
4342 VarDecl *IterationVar = VarDecl::Create(S.Context, S.CurContext, Loc,
4343 IterationVarName, SizeType,
4344 S.Context.getTrivialTypeSourceInfo(SizeType, Loc),
4345 VarDecl::None, VarDecl::None);
4346
4347 // Initialize the iteration variable to zero.
4348 llvm::APInt Zero(S.Context.getTypeSize(SizeType), 0);
4349 IterationVar->setInit(new (S.Context) IntegerLiteral(Zero, SizeType, Loc));
4350
4351 // Create a reference to the iteration variable; we'll use this several
4352 // times throughout.
4353 Expr *IterationVarRef
4354 = S.BuildDeclRefExpr(IterationVar, SizeType, Loc).takeAs<Expr>();
4355 assert(IterationVarRef && "Reference to invented variable cannot fail!");
4356
4357 // Create the DeclStmt that holds the iteration variable.
4358 Stmt *InitStmt = new (S.Context) DeclStmt(DeclGroupRef(IterationVar),Loc,Loc);
4359
4360 // Create the comparison against the array bound.
4361 llvm::APInt Upper = ArrayTy->getSize();
4362 Upper.zextOrTrunc(S.Context.getTypeSize(SizeType));
4363 OwningExprResult Comparison
4364 = S.Owned(new (S.Context) BinaryOperator(IterationVarRef->Retain(),
4365 new (S.Context) IntegerLiteral(Upper, SizeType, Loc),
4366 BinaryOperator::NE, S.Context.BoolTy, Loc));
4367
4368 // Create the pre-increment of the iteration variable.
4369 OwningExprResult Increment
4370 = S.Owned(new (S.Context) UnaryOperator(IterationVarRef->Retain(),
4371 UnaryOperator::PreInc,
4372 SizeType, Loc));
4373
4374 // Subscript the "from" and "to" expressions with the iteration variable.
4375 From = S.CreateBuiltinArraySubscriptExpr(move(From), Loc,
4376 S.Owned(IterationVarRef->Retain()),
4377 Loc);
4378 To = S.CreateBuiltinArraySubscriptExpr(move(To), Loc,
4379 S.Owned(IterationVarRef->Retain()),
4380 Loc);
4381 assert(!From.isInvalid() && "Builtin subscripting can't fail!");
4382 assert(!To.isInvalid() && "Builtin subscripting can't fail!");
4383
4384 // Build the copy for an individual element of the array.
4385 OwningStmtResult Copy = BuildSingleCopyAssign(S, Loc,
4386 ArrayTy->getElementType(),
Douglas Gregor40c92bb2010-05-04 15:20:55 +00004387 move(To), move(From),
4388 CopyingBaseSubobject, Depth+1);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004389 if (Copy.isInvalid()) {
4390 InitStmt->Destroy(S.Context);
4391 return S.StmtError();
4392 }
4393
4394 // Construct the loop that copies all elements of this array.
4395 return S.ActOnForStmt(Loc, Loc, S.Owned(InitStmt),
4396 S.MakeFullExpr(Comparison),
4397 Sema::DeclPtrTy(),
4398 S.MakeFullExpr(Increment),
4399 Loc, move(Copy));
Fariborz Jahanian41f79272009-06-25 21:45:19 +00004400}
4401
Douglas Gregorb139cd52010-05-01 20:49:11 +00004402void Sema::DefineImplicitCopyAssignment(SourceLocation CurrentLocation,
4403 CXXMethodDecl *CopyAssignOperator) {
4404 assert((CopyAssignOperator->isImplicit() &&
4405 CopyAssignOperator->isOverloadedOperator() &&
4406 CopyAssignOperator->getOverloadedOperator() == OO_Equal &&
4407 !CopyAssignOperator->isUsed()) &&
4408 "DefineImplicitCopyAssignment called for wrong function");
4409
4410 CXXRecordDecl *ClassDecl = CopyAssignOperator->getParent();
4411
4412 if (ClassDecl->isInvalidDecl() || CopyAssignOperator->isInvalidDecl()) {
4413 CopyAssignOperator->setInvalidDecl();
4414 return;
4415 }
4416
4417 CopyAssignOperator->setUsed();
4418
4419 ImplicitlyDefinedFunctionScope Scope(*this, CopyAssignOperator);
Douglas Gregor54818f02010-05-12 16:39:35 +00004420 ErrorTrap Trap(*this);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004421
4422 // C++0x [class.copy]p30:
4423 // The implicitly-defined or explicitly-defaulted copy assignment operator
4424 // for a non-union class X performs memberwise copy assignment of its
4425 // subobjects. The direct base classes of X are assigned first, in the
4426 // order of their declaration in the base-specifier-list, and then the
4427 // immediate non-static data members of X are assigned, in the order in
4428 // which they were declared in the class definition.
4429
4430 // The statements that form the synthesized function body.
4431 ASTOwningVector<&ActionBase::DeleteStmt> Statements(*this);
4432
4433 // The parameter for the "other" object, which we are copying from.
4434 ParmVarDecl *Other = CopyAssignOperator->getParamDecl(0);
4435 Qualifiers OtherQuals = Other->getType().getQualifiers();
4436 QualType OtherRefType = Other->getType();
4437 if (const LValueReferenceType *OtherRef
4438 = OtherRefType->getAs<LValueReferenceType>()) {
4439 OtherRefType = OtherRef->getPointeeType();
4440 OtherQuals = OtherRefType.getQualifiers();
4441 }
4442
4443 // Our location for everything implicitly-generated.
4444 SourceLocation Loc = CopyAssignOperator->getLocation();
4445
4446 // Construct a reference to the "other" object. We'll be using this
4447 // throughout the generated ASTs.
4448 Expr *OtherRef = BuildDeclRefExpr(Other, OtherRefType, Loc).takeAs<Expr>();
4449 assert(OtherRef && "Reference to parameter cannot fail!");
4450
4451 // Construct the "this" pointer. We'll be using this throughout the generated
4452 // ASTs.
4453 Expr *This = ActOnCXXThis(Loc).takeAs<Expr>();
4454 assert(This && "Reference to this cannot fail!");
4455
4456 // Assign base classes.
4457 bool Invalid = false;
4458 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
4459 E = ClassDecl->bases_end(); Base != E; ++Base) {
4460 // Form the assignment:
4461 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&>(other));
4462 QualType BaseType = Base->getType().getUnqualifiedType();
4463 CXXRecordDecl *BaseClassDecl = 0;
4464 if (const RecordType *BaseRecordT = BaseType->getAs<RecordType>())
4465 BaseClassDecl = cast<CXXRecordDecl>(BaseRecordT->getDecl());
4466 else {
4467 Invalid = true;
4468 continue;
4469 }
4470
4471 // Construct the "from" expression, which is an implicit cast to the
4472 // appropriately-qualified base type.
4473 Expr *From = OtherRef->Retain();
4474 ImpCastExprToType(From, Context.getQualifiedType(BaseType, OtherQuals),
4475 CastExpr::CK_UncheckedDerivedToBase, /*isLvalue=*/true,
4476 CXXBaseSpecifierArray(Base));
4477
4478 // Dereference "this".
4479 OwningExprResult To = CreateBuiltinUnaryOp(Loc, UnaryOperator::Deref,
4480 Owned(This->Retain()));
4481
4482 // Implicitly cast "this" to the appropriately-qualified base type.
4483 Expr *ToE = To.takeAs<Expr>();
4484 ImpCastExprToType(ToE,
4485 Context.getCVRQualifiedType(BaseType,
4486 CopyAssignOperator->getTypeQualifiers()),
4487 CastExpr::CK_UncheckedDerivedToBase,
4488 /*isLvalue=*/true, CXXBaseSpecifierArray(Base));
4489 To = Owned(ToE);
4490
4491 // Build the copy.
4492 OwningStmtResult Copy = BuildSingleCopyAssign(*this, Loc, BaseType,
Douglas Gregor40c92bb2010-05-04 15:20:55 +00004493 move(To), Owned(From),
4494 /*CopyingBaseSubobject=*/true);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004495 if (Copy.isInvalid()) {
Douglas Gregorbf1fb442010-05-05 22:38:15 +00004496 Diag(CurrentLocation, diag::note_member_synthesized_at)
4497 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
4498 CopyAssignOperator->setInvalidDecl();
4499 return;
Douglas Gregorb139cd52010-05-01 20:49:11 +00004500 }
4501
4502 // Success! Record the copy.
4503 Statements.push_back(Copy.takeAs<Expr>());
4504 }
4505
4506 // \brief Reference to the __builtin_memcpy function.
4507 Expr *BuiltinMemCpyRef = 0;
4508
4509 // Assign non-static members.
4510 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
4511 FieldEnd = ClassDecl->field_end();
4512 Field != FieldEnd; ++Field) {
4513 // Check for members of reference type; we can't copy those.
4514 if (Field->getType()->isReferenceType()) {
4515 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
4516 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
4517 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregorbf1fb442010-05-05 22:38:15 +00004518 Diag(CurrentLocation, diag::note_member_synthesized_at)
4519 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004520 Invalid = true;
4521 continue;
4522 }
4523
4524 // Check for members of const-qualified, non-class type.
4525 QualType BaseType = Context.getBaseElementType(Field->getType());
4526 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) {
4527 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
4528 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
4529 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregorbf1fb442010-05-05 22:38:15 +00004530 Diag(CurrentLocation, diag::note_member_synthesized_at)
4531 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004532 Invalid = true;
4533 continue;
4534 }
4535
4536 QualType FieldType = Field->getType().getNonReferenceType();
4537
4538 // Build references to the field in the object we're copying from and to.
4539 CXXScopeSpec SS; // Intentionally empty
4540 LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
4541 LookupMemberName);
4542 MemberLookup.addDecl(*Field);
4543 MemberLookup.resolveKind();
4544 OwningExprResult From = BuildMemberReferenceExpr(Owned(OtherRef->Retain()),
4545 OtherRefType,
4546 Loc, /*IsArrow=*/false,
4547 SS, 0, MemberLookup, 0);
4548 OwningExprResult To = BuildMemberReferenceExpr(Owned(This->Retain()),
4549 This->getType(),
4550 Loc, /*IsArrow=*/true,
4551 SS, 0, MemberLookup, 0);
4552 assert(!From.isInvalid() && "Implicit field reference cannot fail");
4553 assert(!To.isInvalid() && "Implicit field reference cannot fail");
4554
4555 // If the field should be copied with __builtin_memcpy rather than via
4556 // explicit assignments, do so. This optimization only applies for arrays
4557 // of scalars and arrays of class type with trivial copy-assignment
4558 // operators.
4559 if (FieldType->isArrayType() &&
4560 (!BaseType->isRecordType() ||
4561 cast<CXXRecordDecl>(BaseType->getAs<RecordType>()->getDecl())
4562 ->hasTrivialCopyAssignment())) {
4563 // Compute the size of the memory buffer to be copied.
4564 QualType SizeType = Context.getSizeType();
4565 llvm::APInt Size(Context.getTypeSize(SizeType),
4566 Context.getTypeSizeInChars(BaseType).getQuantity());
4567 for (const ConstantArrayType *Array
4568 = Context.getAsConstantArrayType(FieldType);
4569 Array;
4570 Array = Context.getAsConstantArrayType(Array->getElementType())) {
4571 llvm::APInt ArraySize = Array->getSize();
4572 ArraySize.zextOrTrunc(Size.getBitWidth());
4573 Size *= ArraySize;
4574 }
4575
4576 // Take the address of the field references for "from" and "to".
4577 From = CreateBuiltinUnaryOp(Loc, UnaryOperator::AddrOf, move(From));
4578 To = CreateBuiltinUnaryOp(Loc, UnaryOperator::AddrOf, move(To));
4579
4580 // Create a reference to the __builtin_memcpy builtin function.
4581 if (!BuiltinMemCpyRef) {
4582 LookupResult R(*this, &Context.Idents.get("__builtin_memcpy"), Loc,
4583 LookupOrdinaryName);
4584 LookupName(R, TUScope, true);
4585
4586 FunctionDecl *BuiltinMemCpy = R.getAsSingle<FunctionDecl>();
4587 if (!BuiltinMemCpy) {
4588 // Something went horribly wrong earlier, and we will have complained
4589 // about it.
4590 Invalid = true;
4591 continue;
4592 }
4593
4594 BuiltinMemCpyRef = BuildDeclRefExpr(BuiltinMemCpy,
4595 BuiltinMemCpy->getType(),
4596 Loc, 0).takeAs<Expr>();
4597 assert(BuiltinMemCpyRef && "Builtin reference cannot fail");
4598 }
4599
4600 ASTOwningVector<&ActionBase::DeleteExpr> CallArgs(*this);
4601 CallArgs.push_back(To.takeAs<Expr>());
4602 CallArgs.push_back(From.takeAs<Expr>());
4603 CallArgs.push_back(new (Context) IntegerLiteral(Size, SizeType, Loc));
4604 llvm::SmallVector<SourceLocation, 4> Commas; // FIXME: Silly
4605 Commas.push_back(Loc);
4606 Commas.push_back(Loc);
4607 OwningExprResult Call = ActOnCallExpr(/*Scope=*/0,
4608 Owned(BuiltinMemCpyRef->Retain()),
4609 Loc, move_arg(CallArgs),
4610 Commas.data(), Loc);
4611 assert(!Call.isInvalid() && "Call to __builtin_memcpy cannot fail!");
4612 Statements.push_back(Call.takeAs<Expr>());
4613 continue;
4614 }
4615
4616 // Build the copy of this field.
4617 OwningStmtResult Copy = BuildSingleCopyAssign(*this, Loc, FieldType,
Douglas Gregor40c92bb2010-05-04 15:20:55 +00004618 move(To), move(From),
4619 /*CopyingBaseSubobject=*/false);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004620 if (Copy.isInvalid()) {
Douglas Gregorbf1fb442010-05-05 22:38:15 +00004621 Diag(CurrentLocation, diag::note_member_synthesized_at)
4622 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
4623 CopyAssignOperator->setInvalidDecl();
4624 return;
Douglas Gregorb139cd52010-05-01 20:49:11 +00004625 }
4626
4627 // Success! Record the copy.
4628 Statements.push_back(Copy.takeAs<Stmt>());
4629 }
4630
4631 if (!Invalid) {
4632 // Add a "return *this;"
4633 OwningExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UnaryOperator::Deref,
4634 Owned(This->Retain()));
4635
4636 OwningStmtResult Return = ActOnReturnStmt(Loc, move(ThisObj));
4637 if (Return.isInvalid())
4638 Invalid = true;
4639 else {
4640 Statements.push_back(Return.takeAs<Stmt>());
Douglas Gregor54818f02010-05-12 16:39:35 +00004641
4642 if (Trap.hasErrorOccurred()) {
4643 Diag(CurrentLocation, diag::note_member_synthesized_at)
4644 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
4645 Invalid = true;
4646 }
Douglas Gregorb139cd52010-05-01 20:49:11 +00004647 }
4648 }
4649
4650 if (Invalid) {
4651 CopyAssignOperator->setInvalidDecl();
4652 return;
4653 }
4654
4655 OwningStmtResult Body = ActOnCompoundStmt(Loc, Loc, move_arg(Statements),
4656 /*isStmtExpr=*/false);
4657 assert(!Body.isInvalid() && "Compound statement creation cannot fail");
4658 CopyAssignOperator->setBody(Body.takeAs<Stmt>());
Fariborz Jahanian41f79272009-06-25 21:45:19 +00004659}
4660
Fariborz Jahanian477d2422009-06-22 23:34:40 +00004661void Sema::DefineImplicitCopyConstructor(SourceLocation CurrentLocation,
4662 CXXConstructorDecl *CopyConstructor,
4663 unsigned TypeQuals) {
Mike Stump11289f42009-09-09 15:08:12 +00004664 assert((CopyConstructor->isImplicit() &&
Douglas Gregor507eb872009-12-22 00:34:07 +00004665 CopyConstructor->isCopyConstructor(TypeQuals) &&
Fariborz Jahanian477d2422009-06-22 23:34:40 +00004666 !CopyConstructor->isUsed()) &&
4667 "DefineImplicitCopyConstructor - call it for implicit copy ctor");
Mike Stump11289f42009-09-09 15:08:12 +00004668
Anders Carlsson7a0ffdb2010-04-23 16:24:12 +00004669 CXXRecordDecl *ClassDecl = CopyConstructor->getParent();
Fariborz Jahanian477d2422009-06-22 23:34:40 +00004670 assert(ClassDecl && "DefineImplicitCopyConstructor - invalid constructor");
Douglas Gregor7ae2d772010-01-31 09:12:51 +00004671
Douglas Gregora57478e2010-05-01 15:04:51 +00004672 ImplicitlyDefinedFunctionScope Scope(*this, CopyConstructor);
Douglas Gregor54818f02010-05-12 16:39:35 +00004673 ErrorTrap Trap(*this);
Douglas Gregor7ae2d772010-01-31 09:12:51 +00004674
Douglas Gregor54818f02010-05-12 16:39:35 +00004675 if (SetBaseOrMemberInitializers(CopyConstructor, 0, 0, /*AnyErrors=*/false) ||
4676 Trap.hasErrorOccurred()) {
Anders Carlsson79111502010-05-01 16:39:01 +00004677 Diag(CurrentLocation, diag::note_member_synthesized_at)
Douglas Gregor94f9a482010-05-05 05:51:00 +00004678 << CXXCopyConstructor << Context.getTagDeclType(ClassDecl);
Anders Carlsson79111502010-05-01 16:39:01 +00004679 CopyConstructor->setInvalidDecl();
Douglas Gregor94f9a482010-05-05 05:51:00 +00004680 } else {
4681 CopyConstructor->setBody(ActOnCompoundStmt(CopyConstructor->getLocation(),
4682 CopyConstructor->getLocation(),
4683 MultiStmtArg(*this, 0, 0),
4684 /*isStmtExpr=*/false)
4685 .takeAs<Stmt>());
Anders Carlsson53e1ba92010-04-25 00:52:09 +00004686 }
Douglas Gregor94f9a482010-05-05 05:51:00 +00004687
4688 CopyConstructor->setUsed();
Fariborz Jahanian477d2422009-06-22 23:34:40 +00004689}
4690
Anders Carlsson6eb55572009-08-25 05:12:04 +00004691Sema::OwningExprResult
Anders Carlsson1b4ebfa2009-09-05 07:40:38 +00004692Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
Mike Stump11289f42009-09-09 15:08:12 +00004693 CXXConstructorDecl *Constructor,
Douglas Gregor4f4b1862009-12-16 18:50:27 +00004694 MultiExprArg ExprArgs,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00004695 bool RequiresZeroInit,
Anders Carlssonbcc066b2010-05-02 22:54:08 +00004696 CXXConstructExpr::ConstructionKind ConstructKind) {
Anders Carlsson250aada2009-08-16 05:13:48 +00004697 bool Elidable = false;
Mike Stump11289f42009-09-09 15:08:12 +00004698
Douglas Gregor45cf7e32010-04-02 18:24:57 +00004699 // C++0x [class.copy]p34:
4700 // When certain criteria are met, an implementation is allowed to
4701 // omit the copy/move construction of a class object, even if the
4702 // copy/move constructor and/or destructor for the object have
4703 // side effects. [...]
4704 // - when a temporary class object that has not been bound to a
4705 // reference (12.2) would be copied/moved to a class object
4706 // with the same cv-unqualified type, the copy/move operation
4707 // can be omitted by constructing the temporary object
4708 // directly into the target of the omitted copy/move
4709 if (Constructor->isCopyConstructor() && ExprArgs.size() >= 1) {
4710 Expr *SubExpr = ((Expr **)ExprArgs.get())[0];
4711 Elidable = SubExpr->isTemporaryObject() &&
4712 Context.hasSameUnqualifiedType(SubExpr->getType(),
4713 Context.getTypeDeclType(Constructor->getParent()));
Anders Carlsson250aada2009-08-16 05:13:48 +00004714 }
Mike Stump11289f42009-09-09 15:08:12 +00004715
4716 return BuildCXXConstructExpr(ConstructLoc, DeclInitType, Constructor,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00004717 Elidable, move(ExprArgs), RequiresZeroInit,
Anders Carlssonbcc066b2010-05-02 22:54:08 +00004718 ConstructKind);
Anders Carlsson250aada2009-08-16 05:13:48 +00004719}
4720
Fariborz Jahanianaa890bf2009-08-05 17:03:54 +00004721/// BuildCXXConstructExpr - Creates a complete call to a constructor,
4722/// including handling of its default argument expressions.
Anders Carlsson6eb55572009-08-25 05:12:04 +00004723Sema::OwningExprResult
Anders Carlsson1b4ebfa2009-09-05 07:40:38 +00004724Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
4725 CXXConstructorDecl *Constructor, bool Elidable,
Douglas Gregor4f4b1862009-12-16 18:50:27 +00004726 MultiExprArg ExprArgs,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00004727 bool RequiresZeroInit,
Anders Carlssonbcc066b2010-05-02 22:54:08 +00004728 CXXConstructExpr::ConstructionKind ConstructKind) {
Anders Carlsson5995a3e2009-09-07 22:23:31 +00004729 unsigned NumExprs = ExprArgs.size();
4730 Expr **Exprs = (Expr **)ExprArgs.release();
Mike Stump11289f42009-09-09 15:08:12 +00004731
Douglas Gregor27381f32009-11-23 12:27:39 +00004732 MarkDeclarationReferenced(ConstructLoc, Constructor);
Douglas Gregor85dabae2009-12-16 01:38:02 +00004733 return Owned(CXXConstructExpr::Create(Context, DeclInitType, ConstructLoc,
Douglas Gregor4f4b1862009-12-16 18:50:27 +00004734 Constructor, Elidable, Exprs, NumExprs,
Anders Carlssonbcc066b2010-05-02 22:54:08 +00004735 RequiresZeroInit, ConstructKind));
Fariborz Jahanianaa890bf2009-08-05 17:03:54 +00004736}
4737
Mike Stump11289f42009-09-09 15:08:12 +00004738bool Sema::InitializeVarWithConstructor(VarDecl *VD,
Fariborz Jahanianaa890bf2009-08-05 17:03:54 +00004739 CXXConstructorDecl *Constructor,
Anders Carlsson5995a3e2009-09-07 22:23:31 +00004740 MultiExprArg Exprs) {
Mike Stump11289f42009-09-09 15:08:12 +00004741 OwningExprResult TempResult =
Fariborz Jahanian57277c52009-10-28 18:41:06 +00004742 BuildCXXConstructExpr(VD->getLocation(), VD->getType(), Constructor,
Anders Carlsson5995a3e2009-09-07 22:23:31 +00004743 move(Exprs));
Anders Carlssonc1eb79b2009-08-25 05:18:00 +00004744 if (TempResult.isInvalid())
4745 return true;
Mike Stump11289f42009-09-09 15:08:12 +00004746
Anders Carlsson6eb55572009-08-25 05:12:04 +00004747 Expr *Temp = TempResult.takeAs<Expr>();
Douglas Gregor77b50e12009-06-22 23:06:13 +00004748 MarkDeclarationReferenced(VD->getLocation(), Constructor);
Anders Carlsson6e997b22009-12-15 20:51:39 +00004749 Temp = MaybeCreateCXXExprWithTemporaries(Temp);
Douglas Gregord5058122010-02-11 01:19:42 +00004750 VD->setInit(Temp);
Mike Stump11289f42009-09-09 15:08:12 +00004751
Anders Carlssonc1eb79b2009-08-25 05:18:00 +00004752 return false;
Anders Carlssone6840d82009-04-16 23:50:50 +00004753}
4754
John McCall03c48482010-02-02 09:10:11 +00004755void Sema::FinalizeVarWithDestructor(VarDecl *VD, const RecordType *Record) {
4756 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Record->getDecl());
Douglas Gregor422f1552010-02-25 18:11:54 +00004757 if (!ClassDecl->isInvalidDecl() && !VD->isInvalidDecl() &&
4758 !ClassDecl->hasTrivialDestructor()) {
John McCall6781b052010-02-02 08:45:54 +00004759 CXXDestructorDecl *Destructor = ClassDecl->getDestructor(Context);
4760 MarkDeclarationReferenced(VD->getLocation(), Destructor);
John McCall1064d7e2010-03-16 05:22:47 +00004761 CheckDestructorAccess(VD->getLocation(), Destructor,
Douglas Gregor89336232010-03-29 23:34:08 +00004762 PDiag(diag::err_access_dtor_var)
John McCall1064d7e2010-03-16 05:22:47 +00004763 << VD->getDeclName()
4764 << VD->getType());
John McCall6781b052010-02-02 08:45:54 +00004765 }
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00004766}
4767
Mike Stump11289f42009-09-09 15:08:12 +00004768/// AddCXXDirectInitializerToDecl - This action is called immediately after
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00004769/// ActOnDeclarator, when a C++ direct initializer is present.
4770/// e.g: "int x(1);"
Chris Lattner83f095c2009-03-28 19:18:32 +00004771void Sema::AddCXXDirectInitializerToDecl(DeclPtrTy Dcl,
4772 SourceLocation LParenLoc,
Sebastian Redl6d4256c2009-03-15 17:47:39 +00004773 MultiExprArg Exprs,
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00004774 SourceLocation *CommaLocs,
4775 SourceLocation RParenLoc) {
Daniel Dunbar2db411f2009-12-24 19:19:26 +00004776 assert(Exprs.size() != 0 && Exprs.get() && "missing expressions");
Chris Lattner83f095c2009-03-28 19:18:32 +00004777 Decl *RealDecl = Dcl.getAs<Decl>();
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00004778
4779 // If there is no declaration, there was an error parsing it. Just ignore
4780 // the initializer.
Chris Lattner83f095c2009-03-28 19:18:32 +00004781 if (RealDecl == 0)
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00004782 return;
Mike Stump11289f42009-09-09 15:08:12 +00004783
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00004784 VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl);
4785 if (!VDecl) {
4786 Diag(RealDecl->getLocation(), diag::err_illegal_initializer);
4787 RealDecl->setInvalidDecl();
4788 return;
4789 }
4790
Douglas Gregor402250f2009-08-26 21:14:46 +00004791 // We will represent direct-initialization similarly to copy-initialization:
Argyrios Kyrtzidis997d00d2008-10-06 23:08:37 +00004792 // int x(1); -as-> int x = 1;
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00004793 // ClassType x(a,b,c); -as-> ClassType x = ClassType(a,b,c);
4794 //
4795 // Clients that want to distinguish between the two forms, can check for
4796 // direct initializer using VarDecl::hasCXXDirectInitializer().
4797 // A major benefit is that clients that don't particularly care about which
4798 // exactly form was it (like the CodeGen) can handle both cases without
4799 // special case code.
Argyrios Kyrtzidis153d9672008-10-06 18:37:09 +00004800
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00004801 // C++ 8.5p11:
4802 // The form of initialization (using parentheses or '=') is generally
4803 // insignificant, but does matter when the entity being initialized has a
Argyrios Kyrtzidis153d9672008-10-06 18:37:09 +00004804 // class type.
Douglas Gregorc28b57d2008-11-03 20:45:27 +00004805 QualType DeclInitType = VDecl->getType();
4806 if (const ArrayType *Array = Context.getAsArrayType(DeclInitType))
Fariborz Jahaniand264ee02009-10-28 19:04:36 +00004807 DeclInitType = Context.getBaseElementType(Array);
Argyrios Kyrtzidis153d9672008-10-06 18:37:09 +00004808
Douglas Gregor50dc2192010-02-11 22:55:30 +00004809 if (!VDecl->getType()->isDependentType() &&
4810 RequireCompleteType(VDecl->getLocation(), VDecl->getType(),
Douglas Gregor4044d992009-03-24 16:43:20 +00004811 diag::err_typecheck_decl_incomplete_type)) {
4812 VDecl->setInvalidDecl();
4813 return;
4814 }
4815
Douglas Gregorb6ea6082009-12-22 22:17:25 +00004816 // The variable can not have an abstract class type.
4817 if (RequireNonAbstractType(VDecl->getLocation(), VDecl->getType(),
4818 diag::err_abstract_type_in_decl,
4819 AbstractVariableType))
4820 VDecl->setInvalidDecl();
4821
Sebastian Redl5ca79842010-02-01 20:16:42 +00004822 const VarDecl *Def;
4823 if ((Def = VDecl->getDefinition()) && Def != VDecl) {
Douglas Gregorb6ea6082009-12-22 22:17:25 +00004824 Diag(VDecl->getLocation(), diag::err_redefinition)
4825 << VDecl->getDeclName();
4826 Diag(Def->getLocation(), diag::note_previous_definition);
4827 VDecl->setInvalidDecl();
Argyrios Kyrtzidis153d9672008-10-06 18:37:09 +00004828 return;
4829 }
Douglas Gregor50dc2192010-02-11 22:55:30 +00004830
4831 // If either the declaration has a dependent type or if any of the
4832 // expressions is type-dependent, we represent the initialization
4833 // via a ParenListExpr for later use during template instantiation.
4834 if (VDecl->getType()->isDependentType() ||
4835 Expr::hasAnyTypeDependentArguments((Expr **)Exprs.get(), Exprs.size())) {
4836 // Let clients know that initialization was done with a direct initializer.
4837 VDecl->setCXXDirectInitializer(true);
4838
4839 // Store the initialization expressions as a ParenListExpr.
4840 unsigned NumExprs = Exprs.size();
4841 VDecl->setInit(new (Context) ParenListExpr(Context, LParenLoc,
4842 (Expr **)Exprs.release(),
4843 NumExprs, RParenLoc));
4844 return;
4845 }
Douglas Gregorb6ea6082009-12-22 22:17:25 +00004846
4847 // Capture the variable that is being initialized and the style of
4848 // initialization.
4849 InitializedEntity Entity = InitializedEntity::InitializeVariable(VDecl);
4850
4851 // FIXME: Poor source location information.
4852 InitializationKind Kind
4853 = InitializationKind::CreateDirect(VDecl->getLocation(),
4854 LParenLoc, RParenLoc);
4855
4856 InitializationSequence InitSeq(*this, Entity, Kind,
4857 (Expr**)Exprs.get(), Exprs.size());
4858 OwningExprResult Result = InitSeq.Perform(*this, Entity, Kind, move(Exprs));
4859 if (Result.isInvalid()) {
4860 VDecl->setInvalidDecl();
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00004861 return;
4862 }
Douglas Gregorb6ea6082009-12-22 22:17:25 +00004863
4864 Result = MaybeCreateCXXExprWithTemporaries(move(Result));
Douglas Gregord5058122010-02-11 01:19:42 +00004865 VDecl->setInit(Result.takeAs<Expr>());
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00004866 VDecl->setCXXDirectInitializer(true);
Argyrios Kyrtzidis997d00d2008-10-06 23:08:37 +00004867
John McCall03c48482010-02-02 09:10:11 +00004868 if (const RecordType *Record = VDecl->getType()->getAs<RecordType>())
4869 FinalizeVarWithDestructor(VDecl, Record);
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00004870}
Douglas Gregor8e1cf602008-10-29 00:13:59 +00004871
Douglas Gregor5d3507d2009-09-09 23:08:42 +00004872/// \brief Given a constructor and the set of arguments provided for the
4873/// constructor, convert the arguments and add any required default arguments
4874/// to form a proper call to this constructor.
4875///
4876/// \returns true if an error occurred, false otherwise.
4877bool
4878Sema::CompleteConstructorCall(CXXConstructorDecl *Constructor,
4879 MultiExprArg ArgsPtr,
4880 SourceLocation Loc,
4881 ASTOwningVector<&ActionBase::DeleteExpr> &ConvertedArgs) {
4882 // FIXME: This duplicates a lot of code from Sema::ConvertArgumentsForCall.
4883 unsigned NumArgs = ArgsPtr.size();
4884 Expr **Args = (Expr **)ArgsPtr.get();
4885
4886 const FunctionProtoType *Proto
4887 = Constructor->getType()->getAs<FunctionProtoType>();
4888 assert(Proto && "Constructor without a prototype?");
4889 unsigned NumArgsInProto = Proto->getNumArgs();
Douglas Gregor5d3507d2009-09-09 23:08:42 +00004890
4891 // If too few arguments are available, we'll fill in the rest with defaults.
Fariborz Jahanian4fa66ce2009-11-24 21:37:28 +00004892 if (NumArgs < NumArgsInProto)
Douglas Gregor5d3507d2009-09-09 23:08:42 +00004893 ConvertedArgs.reserve(NumArgsInProto);
Fariborz Jahanian4fa66ce2009-11-24 21:37:28 +00004894 else
Douglas Gregor5d3507d2009-09-09 23:08:42 +00004895 ConvertedArgs.reserve(NumArgs);
Fariborz Jahanian4fa66ce2009-11-24 21:37:28 +00004896
4897 VariadicCallType CallType =
4898 Proto->isVariadic() ? VariadicConstructor : VariadicDoesNotApply;
4899 llvm::SmallVector<Expr *, 8> AllArgs;
4900 bool Invalid = GatherArgumentsForCall(Loc, Constructor,
4901 Proto, 0, Args, NumArgs, AllArgs,
4902 CallType);
4903 for (unsigned i =0, size = AllArgs.size(); i < size; i++)
4904 ConvertedArgs.push_back(AllArgs[i]);
4905 return Invalid;
Douglas Gregorc28b57d2008-11-03 20:45:27 +00004906}
4907
Anders Carlssone363c8e2009-12-12 00:32:00 +00004908static inline bool
4909CheckOperatorNewDeleteDeclarationScope(Sema &SemaRef,
4910 const FunctionDecl *FnDecl) {
4911 const DeclContext *DC = FnDecl->getDeclContext()->getLookupContext();
4912 if (isa<NamespaceDecl>(DC)) {
4913 return SemaRef.Diag(FnDecl->getLocation(),
4914 diag::err_operator_new_delete_declared_in_namespace)
4915 << FnDecl->getDeclName();
4916 }
4917
4918 if (isa<TranslationUnitDecl>(DC) &&
4919 FnDecl->getStorageClass() == FunctionDecl::Static) {
4920 return SemaRef.Diag(FnDecl->getLocation(),
4921 diag::err_operator_new_delete_declared_static)
4922 << FnDecl->getDeclName();
4923 }
4924
Anders Carlsson60659a82009-12-12 02:43:16 +00004925 return false;
Anders Carlssone363c8e2009-12-12 00:32:00 +00004926}
4927
Anders Carlsson7e0b2072009-12-13 17:53:43 +00004928static inline bool
4929CheckOperatorNewDeleteTypes(Sema &SemaRef, const FunctionDecl *FnDecl,
4930 CanQualType ExpectedResultType,
4931 CanQualType ExpectedFirstParamType,
4932 unsigned DependentParamTypeDiag,
4933 unsigned InvalidParamTypeDiag) {
4934 QualType ResultType =
4935 FnDecl->getType()->getAs<FunctionType>()->getResultType();
4936
4937 // Check that the result type is not dependent.
4938 if (ResultType->isDependentType())
4939 return SemaRef.Diag(FnDecl->getLocation(),
4940 diag::err_operator_new_delete_dependent_result_type)
4941 << FnDecl->getDeclName() << ExpectedResultType;
4942
4943 // Check that the result type is what we expect.
4944 if (SemaRef.Context.getCanonicalType(ResultType) != ExpectedResultType)
4945 return SemaRef.Diag(FnDecl->getLocation(),
4946 diag::err_operator_new_delete_invalid_result_type)
4947 << FnDecl->getDeclName() << ExpectedResultType;
4948
4949 // A function template must have at least 2 parameters.
4950 if (FnDecl->getDescribedFunctionTemplate() && FnDecl->getNumParams() < 2)
4951 return SemaRef.Diag(FnDecl->getLocation(),
4952 diag::err_operator_new_delete_template_too_few_parameters)
4953 << FnDecl->getDeclName();
4954
4955 // The function decl must have at least 1 parameter.
4956 if (FnDecl->getNumParams() == 0)
4957 return SemaRef.Diag(FnDecl->getLocation(),
4958 diag::err_operator_new_delete_too_few_parameters)
4959 << FnDecl->getDeclName();
4960
4961 // Check the the first parameter type is not dependent.
4962 QualType FirstParamType = FnDecl->getParamDecl(0)->getType();
4963 if (FirstParamType->isDependentType())
4964 return SemaRef.Diag(FnDecl->getLocation(), DependentParamTypeDiag)
4965 << FnDecl->getDeclName() << ExpectedFirstParamType;
4966
4967 // Check that the first parameter type is what we expect.
Douglas Gregor684d7bd2009-12-22 23:42:49 +00004968 if (SemaRef.Context.getCanonicalType(FirstParamType).getUnqualifiedType() !=
Anders Carlsson7e0b2072009-12-13 17:53:43 +00004969 ExpectedFirstParamType)
4970 return SemaRef.Diag(FnDecl->getLocation(), InvalidParamTypeDiag)
4971 << FnDecl->getDeclName() << ExpectedFirstParamType;
4972
4973 return false;
4974}
4975
Anders Carlsson12308f42009-12-11 23:23:22 +00004976static bool
Anders Carlsson7e0b2072009-12-13 17:53:43 +00004977CheckOperatorNewDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
Anders Carlssone363c8e2009-12-12 00:32:00 +00004978 // C++ [basic.stc.dynamic.allocation]p1:
4979 // A program is ill-formed if an allocation function is declared in a
4980 // namespace scope other than global scope or declared static in global
4981 // scope.
4982 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
4983 return true;
Anders Carlsson7e0b2072009-12-13 17:53:43 +00004984
4985 CanQualType SizeTy =
4986 SemaRef.Context.getCanonicalType(SemaRef.Context.getSizeType());
4987
4988 // C++ [basic.stc.dynamic.allocation]p1:
4989 // The return type shall be void*. The first parameter shall have type
4990 // std::size_t.
4991 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidPtrTy,
4992 SizeTy,
4993 diag::err_operator_new_dependent_param_type,
4994 diag::err_operator_new_param_type))
4995 return true;
4996
4997 // C++ [basic.stc.dynamic.allocation]p1:
4998 // The first parameter shall not have an associated default argument.
4999 if (FnDecl->getParamDecl(0)->hasDefaultArg())
Anders Carlsson22f443f2009-12-12 00:26:23 +00005000 return SemaRef.Diag(FnDecl->getLocation(),
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005001 diag::err_operator_new_default_arg)
5002 << FnDecl->getDeclName() << FnDecl->getParamDecl(0)->getDefaultArgRange();
5003
5004 return false;
Anders Carlsson22f443f2009-12-12 00:26:23 +00005005}
5006
5007static bool
Anders Carlsson12308f42009-12-11 23:23:22 +00005008CheckOperatorDeleteDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
5009 // C++ [basic.stc.dynamic.deallocation]p1:
5010 // A program is ill-formed if deallocation functions are declared in a
5011 // namespace scope other than global scope or declared static in global
5012 // scope.
Anders Carlssone363c8e2009-12-12 00:32:00 +00005013 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
5014 return true;
Anders Carlsson12308f42009-12-11 23:23:22 +00005015
5016 // C++ [basic.stc.dynamic.deallocation]p2:
5017 // Each deallocation function shall return void and its first parameter
5018 // shall be void*.
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005019 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidTy,
5020 SemaRef.Context.VoidPtrTy,
5021 diag::err_operator_delete_dependent_param_type,
5022 diag::err_operator_delete_param_type))
5023 return true;
Anders Carlsson12308f42009-12-11 23:23:22 +00005024
Anders Carlssonc0b2ce12009-12-12 00:16:02 +00005025 QualType FirstParamType = FnDecl->getParamDecl(0)->getType();
5026 if (FirstParamType->isDependentType())
5027 return SemaRef.Diag(FnDecl->getLocation(),
5028 diag::err_operator_delete_dependent_param_type)
5029 << FnDecl->getDeclName() << SemaRef.Context.VoidPtrTy;
5030
5031 if (SemaRef.Context.getCanonicalType(FirstParamType) !=
5032 SemaRef.Context.VoidPtrTy)
Anders Carlsson12308f42009-12-11 23:23:22 +00005033 return SemaRef.Diag(FnDecl->getLocation(),
5034 diag::err_operator_delete_param_type)
5035 << FnDecl->getDeclName() << SemaRef.Context.VoidPtrTy;
Anders Carlsson12308f42009-12-11 23:23:22 +00005036
5037 return false;
5038}
5039
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005040/// CheckOverloadedOperatorDeclaration - Check whether the declaration
5041/// of this overloaded operator is well-formed. If so, returns false;
5042/// otherwise, emits appropriate diagnostics and returns true.
5043bool Sema::CheckOverloadedOperatorDeclaration(FunctionDecl *FnDecl) {
Douglas Gregord69246b2008-11-17 16:14:12 +00005044 assert(FnDecl && FnDecl->isOverloadedOperator() &&
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005045 "Expected an overloaded operator declaration");
5046
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005047 OverloadedOperatorKind Op = FnDecl->getOverloadedOperator();
5048
Mike Stump11289f42009-09-09 15:08:12 +00005049 // C++ [over.oper]p5:
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005050 // The allocation and deallocation functions, operator new,
5051 // operator new[], operator delete and operator delete[], are
5052 // described completely in 3.7.3. The attributes and restrictions
5053 // found in the rest of this subclause do not apply to them unless
5054 // explicitly stated in 3.7.3.
Anders Carlssonf1f46952009-12-11 23:31:21 +00005055 if (Op == OO_Delete || Op == OO_Array_Delete)
Anders Carlsson12308f42009-12-11 23:23:22 +00005056 return CheckOperatorDeleteDeclaration(*this, FnDecl);
Fariborz Jahanian4e088942009-11-10 23:47:18 +00005057
Anders Carlsson22f443f2009-12-12 00:26:23 +00005058 if (Op == OO_New || Op == OO_Array_New)
5059 return CheckOperatorNewDeclaration(*this, FnDecl);
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005060
5061 // C++ [over.oper]p6:
5062 // An operator function shall either be a non-static member
5063 // function or be a non-member function and have at least one
5064 // parameter whose type is a class, a reference to a class, an
5065 // enumeration, or a reference to an enumeration.
Douglas Gregord69246b2008-11-17 16:14:12 +00005066 if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(FnDecl)) {
5067 if (MethodDecl->isStatic())
5068 return Diag(FnDecl->getLocation(),
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00005069 diag::err_operator_overload_static) << FnDecl->getDeclName();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005070 } else {
5071 bool ClassOrEnumParam = false;
Douglas Gregord69246b2008-11-17 16:14:12 +00005072 for (FunctionDecl::param_iterator Param = FnDecl->param_begin(),
5073 ParamEnd = FnDecl->param_end();
5074 Param != ParamEnd; ++Param) {
5075 QualType ParamType = (*Param)->getType().getNonReferenceType();
Eli Friedman173e0b7a2009-06-27 05:59:59 +00005076 if (ParamType->isDependentType() || ParamType->isRecordType() ||
5077 ParamType->isEnumeralType()) {
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005078 ClassOrEnumParam = true;
5079 break;
5080 }
5081 }
5082
Douglas Gregord69246b2008-11-17 16:14:12 +00005083 if (!ClassOrEnumParam)
5084 return Diag(FnDecl->getLocation(),
Chris Lattner651d42d2008-11-20 06:38:18 +00005085 diag::err_operator_overload_needs_class_or_enum)
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00005086 << FnDecl->getDeclName();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005087 }
5088
5089 // C++ [over.oper]p8:
5090 // An operator function cannot have default arguments (8.3.6),
5091 // except where explicitly stated below.
5092 //
Mike Stump11289f42009-09-09 15:08:12 +00005093 // Only the function-call operator allows default arguments
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005094 // (C++ [over.call]p1).
5095 if (Op != OO_Call) {
5096 for (FunctionDecl::param_iterator Param = FnDecl->param_begin();
5097 Param != FnDecl->param_end(); ++Param) {
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005098 if ((*Param)->hasDefaultArg())
Mike Stump11289f42009-09-09 15:08:12 +00005099 return Diag((*Param)->getLocation(),
Douglas Gregor58354032008-12-24 00:01:03 +00005100 diag::err_operator_overload_default_arg)
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005101 << FnDecl->getDeclName() << (*Param)->getDefaultArgRange();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005102 }
5103 }
5104
Douglas Gregor6cf08062008-11-10 13:38:07 +00005105 static const bool OperatorUses[NUM_OVERLOADED_OPERATORS][3] = {
5106 { false, false, false }
5107#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
5108 , { Unary, Binary, MemberOnly }
5109#include "clang/Basic/OperatorKinds.def"
5110 };
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005111
Douglas Gregor6cf08062008-11-10 13:38:07 +00005112 bool CanBeUnaryOperator = OperatorUses[Op][0];
5113 bool CanBeBinaryOperator = OperatorUses[Op][1];
5114 bool MustBeMemberOperator = OperatorUses[Op][2];
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005115
5116 // C++ [over.oper]p8:
5117 // [...] Operator functions cannot have more or fewer parameters
5118 // than the number required for the corresponding operator, as
5119 // described in the rest of this subclause.
Mike Stump11289f42009-09-09 15:08:12 +00005120 unsigned NumParams = FnDecl->getNumParams()
Douglas Gregord69246b2008-11-17 16:14:12 +00005121 + (isa<CXXMethodDecl>(FnDecl)? 1 : 0);
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005122 if (Op != OO_Call &&
5123 ((NumParams == 1 && !CanBeUnaryOperator) ||
5124 (NumParams == 2 && !CanBeBinaryOperator) ||
5125 (NumParams < 1) || (NumParams > 2))) {
5126 // We have the wrong number of parameters.
Chris Lattnerc5bab9f2008-11-21 07:57:12 +00005127 unsigned ErrorKind;
Douglas Gregor6cf08062008-11-10 13:38:07 +00005128 if (CanBeUnaryOperator && CanBeBinaryOperator) {
Chris Lattnerc5bab9f2008-11-21 07:57:12 +00005129 ErrorKind = 2; // 2 -> unary or binary.
Douglas Gregor6cf08062008-11-10 13:38:07 +00005130 } else if (CanBeUnaryOperator) {
Chris Lattnerc5bab9f2008-11-21 07:57:12 +00005131 ErrorKind = 0; // 0 -> unary
Douglas Gregor6cf08062008-11-10 13:38:07 +00005132 } else {
Chris Lattner2b786902008-11-21 07:50:02 +00005133 assert(CanBeBinaryOperator &&
5134 "All non-call overloaded operators are unary or binary!");
Chris Lattnerc5bab9f2008-11-21 07:57:12 +00005135 ErrorKind = 1; // 1 -> binary
Douglas Gregor6cf08062008-11-10 13:38:07 +00005136 }
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005137
Chris Lattnerc5bab9f2008-11-21 07:57:12 +00005138 return Diag(FnDecl->getLocation(), diag::err_operator_overload_must_be)
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00005139 << FnDecl->getDeclName() << NumParams << ErrorKind;
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005140 }
Sebastian Redlbaad4e72009-01-05 20:52:13 +00005141
Douglas Gregord69246b2008-11-17 16:14:12 +00005142 // Overloaded operators other than operator() cannot be variadic.
5143 if (Op != OO_Call &&
John McCall9dd450b2009-09-21 23:43:11 +00005144 FnDecl->getType()->getAs<FunctionProtoType>()->isVariadic()) {
Chris Lattner651d42d2008-11-20 06:38:18 +00005145 return Diag(FnDecl->getLocation(), diag::err_operator_overload_variadic)
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00005146 << FnDecl->getDeclName();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005147 }
5148
5149 // Some operators must be non-static member functions.
Douglas Gregord69246b2008-11-17 16:14:12 +00005150 if (MustBeMemberOperator && !isa<CXXMethodDecl>(FnDecl)) {
5151 return Diag(FnDecl->getLocation(),
Chris Lattner651d42d2008-11-20 06:38:18 +00005152 diag::err_operator_overload_must_be_member)
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00005153 << FnDecl->getDeclName();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005154 }
5155
5156 // C++ [over.inc]p1:
5157 // The user-defined function called operator++ implements the
5158 // prefix and postfix ++ operator. If this function is a member
5159 // function with no parameters, or a non-member function with one
5160 // parameter of class or enumeration type, it defines the prefix
5161 // increment operator ++ for objects of that type. If the function
5162 // is a member function with one parameter (which shall be of type
5163 // int) or a non-member function with two parameters (the second
5164 // of which shall be of type int), it defines the postfix
5165 // increment operator ++ for objects of that type.
5166 if ((Op == OO_PlusPlus || Op == OO_MinusMinus) && NumParams == 2) {
5167 ParmVarDecl *LastParam = FnDecl->getParamDecl(FnDecl->getNumParams() - 1);
5168 bool ParamIsInt = false;
John McCall9dd450b2009-09-21 23:43:11 +00005169 if (const BuiltinType *BT = LastParam->getType()->getAs<BuiltinType>())
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005170 ParamIsInt = BT->getKind() == BuiltinType::Int;
5171
Chris Lattner2b786902008-11-21 07:50:02 +00005172 if (!ParamIsInt)
5173 return Diag(LastParam->getLocation(),
Mike Stump11289f42009-09-09 15:08:12 +00005174 diag::err_operator_overload_post_incdec_must_be_int)
Chris Lattner1e5665e2008-11-24 06:25:27 +00005175 << LastParam->getType() << (Op == OO_MinusMinus);
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005176 }
5177
Sebastian Redlbaad4e72009-01-05 20:52:13 +00005178 // Notify the class if it got an assignment operator.
5179 if (Op == OO_Equal) {
5180 // Would have returned earlier otherwise.
5181 assert(isa<CXXMethodDecl>(FnDecl) &&
5182 "Overloaded = not member, but not filtered.");
5183 CXXMethodDecl *Method = cast<CXXMethodDecl>(FnDecl);
5184 Method->getParent()->addedAssignmentOperator(Context, Method);
5185 }
5186
Douglas Gregord69246b2008-11-17 16:14:12 +00005187 return false;
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005188}
Chris Lattner3b024a32008-12-17 07:09:26 +00005189
Alexis Huntc88db062010-01-13 09:01:02 +00005190/// CheckLiteralOperatorDeclaration - Check whether the declaration
5191/// of this literal operator function is well-formed. If so, returns
5192/// false; otherwise, emits appropriate diagnostics and returns true.
5193bool Sema::CheckLiteralOperatorDeclaration(FunctionDecl *FnDecl) {
5194 DeclContext *DC = FnDecl->getDeclContext();
5195 Decl::Kind Kind = DC->getDeclKind();
5196 if (Kind != Decl::TranslationUnit && Kind != Decl::Namespace &&
5197 Kind != Decl::LinkageSpec) {
5198 Diag(FnDecl->getLocation(), diag::err_literal_operator_outside_namespace)
5199 << FnDecl->getDeclName();
5200 return true;
5201 }
5202
5203 bool Valid = false;
5204
Alexis Hunt7dd26172010-04-07 23:11:06 +00005205 // template <char...> type operator "" name() is the only valid template
5206 // signature, and the only valid signature with no parameters.
5207 if (FnDecl->param_size() == 0) {
5208 if (FunctionTemplateDecl *TpDecl = FnDecl->getDescribedFunctionTemplate()) {
5209 // Must have only one template parameter
5210 TemplateParameterList *Params = TpDecl->getTemplateParameters();
5211 if (Params->size() == 1) {
5212 NonTypeTemplateParmDecl *PmDecl =
5213 cast<NonTypeTemplateParmDecl>(Params->getParam(0));
Alexis Huntc88db062010-01-13 09:01:02 +00005214
Alexis Hunt7dd26172010-04-07 23:11:06 +00005215 // The template parameter must be a char parameter pack.
5216 // FIXME: This test will always fail because non-type parameter packs
5217 // have not been implemented.
5218 if (PmDecl && PmDecl->isTemplateParameterPack() &&
5219 Context.hasSameType(PmDecl->getType(), Context.CharTy))
5220 Valid = true;
5221 }
5222 }
5223 } else {
Alexis Huntc88db062010-01-13 09:01:02 +00005224 // Check the first parameter
Alexis Hunt7dd26172010-04-07 23:11:06 +00005225 FunctionDecl::param_iterator Param = FnDecl->param_begin();
5226
Alexis Huntc88db062010-01-13 09:01:02 +00005227 QualType T = (*Param)->getType();
5228
Alexis Hunt079a6f72010-04-07 22:57:35 +00005229 // unsigned long long int, long double, and any character type are allowed
5230 // as the only parameters.
Alexis Huntc88db062010-01-13 09:01:02 +00005231 if (Context.hasSameType(T, Context.UnsignedLongLongTy) ||
5232 Context.hasSameType(T, Context.LongDoubleTy) ||
5233 Context.hasSameType(T, Context.CharTy) ||
5234 Context.hasSameType(T, Context.WCharTy) ||
5235 Context.hasSameType(T, Context.Char16Ty) ||
5236 Context.hasSameType(T, Context.Char32Ty)) {
5237 if (++Param == FnDecl->param_end())
5238 Valid = true;
5239 goto FinishedParams;
5240 }
5241
Alexis Hunt079a6f72010-04-07 22:57:35 +00005242 // Otherwise it must be a pointer to const; let's strip those qualifiers.
Alexis Huntc88db062010-01-13 09:01:02 +00005243 const PointerType *PT = T->getAs<PointerType>();
5244 if (!PT)
5245 goto FinishedParams;
5246 T = PT->getPointeeType();
5247 if (!T.isConstQualified())
5248 goto FinishedParams;
5249 T = T.getUnqualifiedType();
5250
5251 // Move on to the second parameter;
5252 ++Param;
5253
5254 // If there is no second parameter, the first must be a const char *
5255 if (Param == FnDecl->param_end()) {
5256 if (Context.hasSameType(T, Context.CharTy))
5257 Valid = true;
5258 goto FinishedParams;
5259 }
5260
5261 // const char *, const wchar_t*, const char16_t*, and const char32_t*
5262 // are allowed as the first parameter to a two-parameter function
5263 if (!(Context.hasSameType(T, Context.CharTy) ||
5264 Context.hasSameType(T, Context.WCharTy) ||
5265 Context.hasSameType(T, Context.Char16Ty) ||
5266 Context.hasSameType(T, Context.Char32Ty)))
5267 goto FinishedParams;
5268
5269 // The second and final parameter must be an std::size_t
5270 T = (*Param)->getType().getUnqualifiedType();
5271 if (Context.hasSameType(T, Context.getSizeType()) &&
5272 ++Param == FnDecl->param_end())
5273 Valid = true;
5274 }
5275
5276 // FIXME: This diagnostic is absolutely terrible.
5277FinishedParams:
5278 if (!Valid) {
5279 Diag(FnDecl->getLocation(), diag::err_literal_operator_params)
5280 << FnDecl->getDeclName();
5281 return true;
5282 }
5283
5284 return false;
5285}
5286
Douglas Gregor07665a62009-01-05 19:45:36 +00005287/// ActOnStartLinkageSpecification - Parsed the beginning of a C++
5288/// linkage specification, including the language and (if present)
5289/// the '{'. ExternLoc is the location of the 'extern', LangLoc is
5290/// the location of the language string literal, which is provided
5291/// by Lang/StrSize. LBraceLoc, if valid, provides the location of
5292/// the '{' brace. Otherwise, this linkage specification does not
5293/// have any braces.
Chris Lattner83f095c2009-03-28 19:18:32 +00005294Sema::DeclPtrTy Sema::ActOnStartLinkageSpecification(Scope *S,
5295 SourceLocation ExternLoc,
5296 SourceLocation LangLoc,
Benjamin Kramerbebee842010-05-03 13:08:54 +00005297 llvm::StringRef Lang,
Chris Lattner83f095c2009-03-28 19:18:32 +00005298 SourceLocation LBraceLoc) {
Chris Lattner438e5012008-12-17 07:13:27 +00005299 LinkageSpecDecl::LanguageIDs Language;
Benjamin Kramerbebee842010-05-03 13:08:54 +00005300 if (Lang == "\"C\"")
Chris Lattner438e5012008-12-17 07:13:27 +00005301 Language = LinkageSpecDecl::lang_c;
Benjamin Kramerbebee842010-05-03 13:08:54 +00005302 else if (Lang == "\"C++\"")
Chris Lattner438e5012008-12-17 07:13:27 +00005303 Language = LinkageSpecDecl::lang_cxx;
5304 else {
Douglas Gregor07665a62009-01-05 19:45:36 +00005305 Diag(LangLoc, diag::err_bad_language);
Chris Lattner83f095c2009-03-28 19:18:32 +00005306 return DeclPtrTy();
Chris Lattner438e5012008-12-17 07:13:27 +00005307 }
Mike Stump11289f42009-09-09 15:08:12 +00005308
Chris Lattner438e5012008-12-17 07:13:27 +00005309 // FIXME: Add all the various semantics of linkage specifications
Mike Stump11289f42009-09-09 15:08:12 +00005310
Douglas Gregor07665a62009-01-05 19:45:36 +00005311 LinkageSpecDecl *D = LinkageSpecDecl::Create(Context, CurContext,
Mike Stump11289f42009-09-09 15:08:12 +00005312 LangLoc, Language,
Douglas Gregor07665a62009-01-05 19:45:36 +00005313 LBraceLoc.isValid());
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00005314 CurContext->addDecl(D);
Douglas Gregor07665a62009-01-05 19:45:36 +00005315 PushDeclContext(S, D);
Chris Lattner83f095c2009-03-28 19:18:32 +00005316 return DeclPtrTy::make(D);
Chris Lattner438e5012008-12-17 07:13:27 +00005317}
5318
Douglas Gregor07665a62009-01-05 19:45:36 +00005319/// ActOnFinishLinkageSpecification - Completely the definition of
5320/// the C++ linkage specification LinkageSpec. If RBraceLoc is
5321/// valid, it's the position of the closing '}' brace in a linkage
5322/// specification that uses braces.
Chris Lattner83f095c2009-03-28 19:18:32 +00005323Sema::DeclPtrTy Sema::ActOnFinishLinkageSpecification(Scope *S,
5324 DeclPtrTy LinkageSpec,
5325 SourceLocation RBraceLoc) {
Douglas Gregor07665a62009-01-05 19:45:36 +00005326 if (LinkageSpec)
5327 PopDeclContext();
5328 return LinkageSpec;
Chris Lattner3b024a32008-12-17 07:09:26 +00005329}
5330
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00005331/// \brief Perform semantic analysis for the variable declaration that
5332/// occurs within a C++ catch clause, returning the newly-created
5333/// variable.
5334VarDecl *Sema::BuildExceptionDeclaration(Scope *S, QualType ExDeclType,
John McCallbcd03502009-12-07 02:54:59 +00005335 TypeSourceInfo *TInfo,
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00005336 IdentifierInfo *Name,
5337 SourceLocation Loc,
5338 SourceRange Range) {
5339 bool Invalid = false;
Sebastian Redl54c04d42008-12-22 19:15:10 +00005340
5341 // Arrays and functions decay.
5342 if (ExDeclType->isArrayType())
5343 ExDeclType = Context.getArrayDecayedType(ExDeclType);
5344 else if (ExDeclType->isFunctionType())
5345 ExDeclType = Context.getPointerType(ExDeclType);
5346
5347 // C++ 15.3p1: The exception-declaration shall not denote an incomplete type.
5348 // The exception-declaration shall not denote a pointer or reference to an
5349 // incomplete type, other than [cv] void*.
Sebastian Redlb28b4072009-03-22 23:49:27 +00005350 // N2844 forbids rvalue references.
Mike Stump11289f42009-09-09 15:08:12 +00005351 if (!ExDeclType->isDependentType() && ExDeclType->isRValueReferenceType()) {
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00005352 Diag(Loc, diag::err_catch_rvalue_ref) << Range;
Sebastian Redlb28b4072009-03-22 23:49:27 +00005353 Invalid = true;
5354 }
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00005355
Douglas Gregor104ee002010-03-08 01:47:36 +00005356 // GCC allows catching pointers and references to incomplete types
5357 // as an extension; so do we, but we warn by default.
5358
Sebastian Redl54c04d42008-12-22 19:15:10 +00005359 QualType BaseType = ExDeclType;
5360 int Mode = 0; // 0 for direct type, 1 for pointer, 2 for reference
Douglas Gregordd430f72009-01-19 19:26:10 +00005361 unsigned DK = diag::err_catch_incomplete;
Douglas Gregor104ee002010-03-08 01:47:36 +00005362 bool IncompleteCatchIsInvalid = true;
Ted Kremenekc23c7e62009-07-29 21:53:49 +00005363 if (const PointerType *Ptr = BaseType->getAs<PointerType>()) {
Sebastian Redl54c04d42008-12-22 19:15:10 +00005364 BaseType = Ptr->getPointeeType();
5365 Mode = 1;
Douglas Gregor104ee002010-03-08 01:47:36 +00005366 DK = diag::ext_catch_incomplete_ptr;
5367 IncompleteCatchIsInvalid = false;
Mike Stump11289f42009-09-09 15:08:12 +00005368 } else if (const ReferenceType *Ref = BaseType->getAs<ReferenceType>()) {
Sebastian Redlb28b4072009-03-22 23:49:27 +00005369 // For the purpose of error recovery, we treat rvalue refs like lvalue refs.
Sebastian Redl54c04d42008-12-22 19:15:10 +00005370 BaseType = Ref->getPointeeType();
5371 Mode = 2;
Douglas Gregor104ee002010-03-08 01:47:36 +00005372 DK = diag::ext_catch_incomplete_ref;
5373 IncompleteCatchIsInvalid = false;
Sebastian Redl54c04d42008-12-22 19:15:10 +00005374 }
Sebastian Redlb28b4072009-03-22 23:49:27 +00005375 if (!Invalid && (Mode == 0 || !BaseType->isVoidType()) &&
Douglas Gregor104ee002010-03-08 01:47:36 +00005376 !BaseType->isDependentType() && RequireCompleteType(Loc, BaseType, DK) &&
5377 IncompleteCatchIsInvalid)
Sebastian Redl54c04d42008-12-22 19:15:10 +00005378 Invalid = true;
Sebastian Redl54c04d42008-12-22 19:15:10 +00005379
Mike Stump11289f42009-09-09 15:08:12 +00005380 if (!Invalid && !ExDeclType->isDependentType() &&
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00005381 RequireNonAbstractType(Loc, ExDeclType,
5382 diag::err_abstract_type_in_decl,
5383 AbstractVariableType))
Sebastian Redl2f38ba52009-04-27 21:03:30 +00005384 Invalid = true;
5385
Mike Stump11289f42009-09-09 15:08:12 +00005386 VarDecl *ExDecl = VarDecl::Create(Context, CurContext, Loc,
Douglas Gregorc4df4072010-04-19 22:54:31 +00005387 Name, ExDeclType, TInfo, VarDecl::None,
5388 VarDecl::None);
Douglas Gregor3f324d562010-05-03 18:51:14 +00005389 ExDecl->setExceptionVariable(true);
5390
Douglas Gregor6de584c2010-03-05 23:38:39 +00005391 if (!Invalid) {
5392 if (const RecordType *RecordTy = ExDeclType->getAs<RecordType>()) {
5393 // C++ [except.handle]p16:
5394 // The object declared in an exception-declaration or, if the
5395 // exception-declaration does not specify a name, a temporary (12.2) is
5396 // copy-initialized (8.5) from the exception object. [...]
5397 // The object is destroyed when the handler exits, after the destruction
5398 // of any automatic objects initialized within the handler.
5399 //
5400 // We just pretend to initialize the object with itself, then make sure
5401 // it can be destroyed later.
5402 InitializedEntity Entity = InitializedEntity::InitializeVariable(ExDecl);
5403 Expr *ExDeclRef = DeclRefExpr::Create(Context, 0, SourceRange(), ExDecl,
5404 Loc, ExDeclType, 0);
5405 InitializationKind Kind = InitializationKind::CreateCopy(Loc,
5406 SourceLocation());
5407 InitializationSequence InitSeq(*this, Entity, Kind, &ExDeclRef, 1);
5408 OwningExprResult Result = InitSeq.Perform(*this, Entity, Kind,
5409 MultiExprArg(*this, (void**)&ExDeclRef, 1));
5410 if (Result.isInvalid())
5411 Invalid = true;
5412 else
5413 FinalizeVarWithDestructor(ExDecl, RecordTy);
5414 }
5415 }
5416
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00005417 if (Invalid)
5418 ExDecl->setInvalidDecl();
5419
5420 return ExDecl;
5421}
5422
5423/// ActOnExceptionDeclarator - Parsed the exception-declarator in a C++ catch
5424/// handler.
5425Sema::DeclPtrTy Sema::ActOnExceptionDeclarator(Scope *S, Declarator &D) {
John McCallbcd03502009-12-07 02:54:59 +00005426 TypeSourceInfo *TInfo = 0;
5427 QualType ExDeclType = GetTypeForDeclarator(D, S, &TInfo);
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00005428
5429 bool Invalid = D.isInvalidType();
Sebastian Redl54c04d42008-12-22 19:15:10 +00005430 IdentifierInfo *II = D.getIdentifier();
Douglas Gregorb2ccf012010-04-15 22:33:43 +00005431 if (NamedDecl *PrevDecl = LookupSingleName(S, II, D.getIdentifierLoc(),
Douglas Gregorb8eaf292010-04-15 23:40:53 +00005432 LookupOrdinaryName,
5433 ForRedeclaration)) {
Sebastian Redl54c04d42008-12-22 19:15:10 +00005434 // The scope should be freshly made just for us. There is just no way
5435 // it contains any previous declaration.
Chris Lattner83f095c2009-03-28 19:18:32 +00005436 assert(!S->isDeclScope(DeclPtrTy::make(PrevDecl)));
Sebastian Redl54c04d42008-12-22 19:15:10 +00005437 if (PrevDecl->isTemplateParameter()) {
5438 // Maybe we will complain about the shadowed template parameter.
5439 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
Sebastian Redl54c04d42008-12-22 19:15:10 +00005440 }
5441 }
5442
Chris Lattnerf6d1c9c2009-04-25 08:06:05 +00005443 if (D.getCXXScopeSpec().isSet() && !Invalid) {
Sebastian Redl54c04d42008-12-22 19:15:10 +00005444 Diag(D.getIdentifierLoc(), diag::err_qualified_catch_declarator)
5445 << D.getCXXScopeSpec().getRange();
Chris Lattnerf6d1c9c2009-04-25 08:06:05 +00005446 Invalid = true;
Sebastian Redl54c04d42008-12-22 19:15:10 +00005447 }
5448
John McCallbcd03502009-12-07 02:54:59 +00005449 VarDecl *ExDecl = BuildExceptionDeclaration(S, ExDeclType, TInfo,
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00005450 D.getIdentifier(),
5451 D.getIdentifierLoc(),
5452 D.getDeclSpec().getSourceRange());
5453
Chris Lattnerf6d1c9c2009-04-25 08:06:05 +00005454 if (Invalid)
5455 ExDecl->setInvalidDecl();
Mike Stump11289f42009-09-09 15:08:12 +00005456
Sebastian Redl54c04d42008-12-22 19:15:10 +00005457 // Add the exception declaration into this scope.
Sebastian Redl54c04d42008-12-22 19:15:10 +00005458 if (II)
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00005459 PushOnScopeChains(ExDecl, S);
5460 else
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00005461 CurContext->addDecl(ExDecl);
Sebastian Redl54c04d42008-12-22 19:15:10 +00005462
Douglas Gregor758a8692009-06-17 21:51:59 +00005463 ProcessDeclAttributes(S, ExDecl, D);
Chris Lattner83f095c2009-03-28 19:18:32 +00005464 return DeclPtrTy::make(ExDecl);
Sebastian Redl54c04d42008-12-22 19:15:10 +00005465}
Anders Carlsson5bbe1d72009-03-14 00:25:26 +00005466
Mike Stump11289f42009-09-09 15:08:12 +00005467Sema::DeclPtrTy Sema::ActOnStaticAssertDeclaration(SourceLocation AssertLoc,
Chris Lattner83f095c2009-03-28 19:18:32 +00005468 ExprArg assertexpr,
5469 ExprArg assertmessageexpr) {
Anders Carlsson5bbe1d72009-03-14 00:25:26 +00005470 Expr *AssertExpr = (Expr *)assertexpr.get();
Mike Stump11289f42009-09-09 15:08:12 +00005471 StringLiteral *AssertMessage =
Anders Carlsson5bbe1d72009-03-14 00:25:26 +00005472 cast<StringLiteral>((Expr *)assertmessageexpr.get());
5473
Anders Carlsson54b26982009-03-14 00:33:21 +00005474 if (!AssertExpr->isTypeDependent() && !AssertExpr->isValueDependent()) {
5475 llvm::APSInt Value(32);
5476 if (!AssertExpr->isIntegerConstantExpr(Value, Context)) {
5477 Diag(AssertLoc, diag::err_static_assert_expression_is_not_constant) <<
5478 AssertExpr->getSourceRange();
Chris Lattner83f095c2009-03-28 19:18:32 +00005479 return DeclPtrTy();
Anders Carlsson54b26982009-03-14 00:33:21 +00005480 }
Anders Carlsson5bbe1d72009-03-14 00:25:26 +00005481
Anders Carlsson54b26982009-03-14 00:33:21 +00005482 if (Value == 0) {
Mike Stump11289f42009-09-09 15:08:12 +00005483 Diag(AssertLoc, diag::err_static_assert_failed)
Benjamin Kramerb11118b2009-12-11 13:33:18 +00005484 << AssertMessage->getString() << AssertExpr->getSourceRange();
Anders Carlsson54b26982009-03-14 00:33:21 +00005485 }
5486 }
Mike Stump11289f42009-09-09 15:08:12 +00005487
Anders Carlsson78e2bc02009-03-15 17:35:16 +00005488 assertexpr.release();
5489 assertmessageexpr.release();
Mike Stump11289f42009-09-09 15:08:12 +00005490 Decl *Decl = StaticAssertDecl::Create(Context, CurContext, AssertLoc,
Anders Carlsson5bbe1d72009-03-14 00:25:26 +00005491 AssertExpr, AssertMessage);
Mike Stump11289f42009-09-09 15:08:12 +00005492
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00005493 CurContext->addDecl(Decl);
Chris Lattner83f095c2009-03-28 19:18:32 +00005494 return DeclPtrTy::make(Decl);
Anders Carlsson5bbe1d72009-03-14 00:25:26 +00005495}
Sebastian Redlf769df52009-03-24 22:27:57 +00005496
Douglas Gregorafb9bc12010-04-07 16:53:43 +00005497/// \brief Perform semantic analysis of the given friend type declaration.
5498///
5499/// \returns A friend declaration that.
5500FriendDecl *Sema::CheckFriendTypeDecl(SourceLocation FriendLoc,
5501 TypeSourceInfo *TSInfo) {
5502 assert(TSInfo && "NULL TypeSourceInfo for friend type declaration");
5503
5504 QualType T = TSInfo->getType();
5505 SourceRange TypeRange = TSInfo->getTypeLoc().getSourceRange();
5506
Douglas Gregor3b4abb62010-04-07 17:57:12 +00005507 if (!getLangOptions().CPlusPlus0x) {
5508 // C++03 [class.friend]p2:
5509 // An elaborated-type-specifier shall be used in a friend declaration
5510 // for a class.*
5511 //
5512 // * The class-key of the elaborated-type-specifier is required.
5513 if (!ActiveTemplateInstantiations.empty()) {
5514 // Do not complain about the form of friend template types during
5515 // template instantiation; we will already have complained when the
5516 // template was declared.
5517 } else if (!T->isElaboratedTypeSpecifier()) {
5518 // If we evaluated the type to a record type, suggest putting
5519 // a tag in front.
5520 if (const RecordType *RT = T->getAs<RecordType>()) {
5521 RecordDecl *RD = RT->getDecl();
5522
5523 std::string InsertionText = std::string(" ") + RD->getKindName();
5524
5525 Diag(TypeRange.getBegin(), diag::ext_unelaborated_friend_type)
5526 << (unsigned) RD->getTagKind()
5527 << T
5528 << FixItHint::CreateInsertion(PP.getLocForEndOfToken(FriendLoc),
5529 InsertionText);
5530 } else {
5531 Diag(FriendLoc, diag::ext_nonclass_type_friend)
5532 << T
5533 << SourceRange(FriendLoc, TypeRange.getEnd());
5534 }
5535 } else if (T->getAs<EnumType>()) {
5536 Diag(FriendLoc, diag::ext_enum_friend)
Douglas Gregorafb9bc12010-04-07 16:53:43 +00005537 << T
Douglas Gregorafb9bc12010-04-07 16:53:43 +00005538 << SourceRange(FriendLoc, TypeRange.getEnd());
Douglas Gregorafb9bc12010-04-07 16:53:43 +00005539 }
5540 }
5541
Douglas Gregor3b4abb62010-04-07 17:57:12 +00005542 // C++0x [class.friend]p3:
5543 // If the type specifier in a friend declaration designates a (possibly
5544 // cv-qualified) class type, that class is declared as a friend; otherwise,
5545 // the friend declaration is ignored.
5546
5547 // FIXME: C++0x has some syntactic restrictions on friend type declarations
5548 // in [class.friend]p3 that we do not implement.
Douglas Gregorafb9bc12010-04-07 16:53:43 +00005549
5550 return FriendDecl::Create(Context, CurContext, FriendLoc, TSInfo, FriendLoc);
5551}
5552
John McCall11083da2009-09-16 22:47:08 +00005553/// Handle a friend type declaration. This works in tandem with
5554/// ActOnTag.
5555///
5556/// Notes on friend class templates:
5557///
5558/// We generally treat friend class declarations as if they were
5559/// declaring a class. So, for example, the elaborated type specifier
5560/// in a friend declaration is required to obey the restrictions of a
5561/// class-head (i.e. no typedefs in the scope chain), template
5562/// parameters are required to match up with simple template-ids, &c.
5563/// However, unlike when declaring a template specialization, it's
5564/// okay to refer to a template specialization without an empty
5565/// template parameter declaration, e.g.
5566/// friend class A<T>::B<unsigned>;
5567/// We permit this as a special case; if there are any template
5568/// parameters present at all, require proper matching, i.e.
5569/// template <> template <class T> friend class A<int>::B;
Chris Lattner1fb66f42009-10-25 17:47:27 +00005570Sema::DeclPtrTy Sema::ActOnFriendTypeDecl(Scope *S, const DeclSpec &DS,
John McCall11083da2009-09-16 22:47:08 +00005571 MultiTemplateParamsArg TempParams) {
John McCallaa74a0c2009-08-28 07:59:38 +00005572 SourceLocation Loc = DS.getSourceRange().getBegin();
John McCall07e91c02009-08-06 02:15:43 +00005573
5574 assert(DS.isFriendSpecified());
5575 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
5576
John McCall11083da2009-09-16 22:47:08 +00005577 // Try to convert the decl specifier to a type. This works for
5578 // friend templates because ActOnTag never produces a ClassTemplateDecl
5579 // for a TUK_Friend.
Chris Lattner1fb66f42009-10-25 17:47:27 +00005580 Declarator TheDeclarator(DS, Declarator::MemberContext);
John McCall15ad0962010-03-25 18:04:51 +00005581 TypeSourceInfo *TSI;
5582 QualType T = GetTypeForDeclarator(TheDeclarator, S, &TSI);
Chris Lattner1fb66f42009-10-25 17:47:27 +00005583 if (TheDeclarator.isInvalidType())
5584 return DeclPtrTy();
John McCall07e91c02009-08-06 02:15:43 +00005585
Douglas Gregorafb9bc12010-04-07 16:53:43 +00005586 if (!TSI)
5587 TSI = Context.getTrivialTypeSourceInfo(T, DS.getSourceRange().getBegin());
5588
John McCall11083da2009-09-16 22:47:08 +00005589 // This is definitely an error in C++98. It's probably meant to
5590 // be forbidden in C++0x, too, but the specification is just
5591 // poorly written.
5592 //
5593 // The problem is with declarations like the following:
5594 // template <T> friend A<T>::foo;
5595 // where deciding whether a class C is a friend or not now hinges
5596 // on whether there exists an instantiation of A that causes
5597 // 'foo' to equal C. There are restrictions on class-heads
5598 // (which we declare (by fiat) elaborated friend declarations to
5599 // be) that makes this tractable.
5600 //
5601 // FIXME: handle "template <> friend class A<T>;", which
5602 // is possibly well-formed? Who even knows?
Douglas Gregore677daf2010-03-31 22:19:08 +00005603 if (TempParams.size() && !T->isElaboratedTypeSpecifier()) {
John McCall11083da2009-09-16 22:47:08 +00005604 Diag(Loc, diag::err_tagless_friend_type_template)
5605 << DS.getSourceRange();
5606 return DeclPtrTy();
5607 }
Douglas Gregorafb9bc12010-04-07 16:53:43 +00005608
John McCallaa74a0c2009-08-28 07:59:38 +00005609 // C++98 [class.friend]p1: A friend of a class is a function
5610 // or class that is not a member of the class . . .
John McCall463e10c2009-12-22 00:59:39 +00005611 // This is fixed in DR77, which just barely didn't make the C++03
5612 // deadline. It's also a very silly restriction that seriously
5613 // affects inner classes and which nobody else seems to implement;
5614 // thus we never diagnose it, not even in -pedantic.
John McCall15ad0962010-03-25 18:04:51 +00005615 //
5616 // But note that we could warn about it: it's always useless to
5617 // friend one of your own members (it's not, however, worthless to
5618 // friend a member of an arbitrary specialization of your template).
John McCallaa74a0c2009-08-28 07:59:38 +00005619
John McCall11083da2009-09-16 22:47:08 +00005620 Decl *D;
Douglas Gregorafb9bc12010-04-07 16:53:43 +00005621 if (unsigned NumTempParamLists = TempParams.size())
John McCall11083da2009-09-16 22:47:08 +00005622 D = FriendTemplateDecl::Create(Context, CurContext, Loc,
Douglas Gregorafb9bc12010-04-07 16:53:43 +00005623 NumTempParamLists,
John McCall11083da2009-09-16 22:47:08 +00005624 (TemplateParameterList**) TempParams.release(),
John McCall15ad0962010-03-25 18:04:51 +00005625 TSI,
John McCall11083da2009-09-16 22:47:08 +00005626 DS.getFriendSpecLoc());
5627 else
Douglas Gregorafb9bc12010-04-07 16:53:43 +00005628 D = CheckFriendTypeDecl(DS.getFriendSpecLoc(), TSI);
5629
5630 if (!D)
5631 return DeclPtrTy();
5632
John McCall11083da2009-09-16 22:47:08 +00005633 D->setAccess(AS_public);
5634 CurContext->addDecl(D);
John McCallaa74a0c2009-08-28 07:59:38 +00005635
John McCall11083da2009-09-16 22:47:08 +00005636 return DeclPtrTy::make(D);
John McCallaa74a0c2009-08-28 07:59:38 +00005637}
5638
John McCall2f212b32009-09-11 21:02:39 +00005639Sema::DeclPtrTy
5640Sema::ActOnFriendFunctionDecl(Scope *S,
5641 Declarator &D,
5642 bool IsDefinition,
5643 MultiTemplateParamsArg TemplateParams) {
John McCallaa74a0c2009-08-28 07:59:38 +00005644 const DeclSpec &DS = D.getDeclSpec();
5645
5646 assert(DS.isFriendSpecified());
5647 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
5648
5649 SourceLocation Loc = D.getIdentifierLoc();
John McCallbcd03502009-12-07 02:54:59 +00005650 TypeSourceInfo *TInfo = 0;
5651 QualType T = GetTypeForDeclarator(D, S, &TInfo);
John McCall07e91c02009-08-06 02:15:43 +00005652
5653 // C++ [class.friend]p1
5654 // A friend of a class is a function or class....
5655 // Note that this sees through typedefs, which is intended.
John McCallaa74a0c2009-08-28 07:59:38 +00005656 // It *doesn't* see through dependent types, which is correct
5657 // according to [temp.arg.type]p3:
5658 // If a declaration acquires a function type through a
5659 // type dependent on a template-parameter and this causes
5660 // a declaration that does not use the syntactic form of a
5661 // function declarator to have a function type, the program
5662 // is ill-formed.
John McCall07e91c02009-08-06 02:15:43 +00005663 if (!T->isFunctionType()) {
5664 Diag(Loc, diag::err_unexpected_friend);
5665
5666 // It might be worthwhile to try to recover by creating an
5667 // appropriate declaration.
5668 return DeclPtrTy();
5669 }
5670
5671 // C++ [namespace.memdef]p3
5672 // - If a friend declaration in a non-local class first declares a
5673 // class or function, the friend class or function is a member
5674 // of the innermost enclosing namespace.
5675 // - The name of the friend is not found by simple name lookup
5676 // until a matching declaration is provided in that namespace
5677 // scope (either before or after the class declaration granting
5678 // friendship).
5679 // - If a friend function is called, its name may be found by the
5680 // name lookup that considers functions from namespaces and
5681 // classes associated with the types of the function arguments.
5682 // - When looking for a prior declaration of a class or a function
5683 // declared as a friend, scopes outside the innermost enclosing
5684 // namespace scope are not considered.
5685
John McCallaa74a0c2009-08-28 07:59:38 +00005686 CXXScopeSpec &ScopeQual = D.getCXXScopeSpec();
5687 DeclarationName Name = GetNameForDeclarator(D);
John McCall07e91c02009-08-06 02:15:43 +00005688 assert(Name);
5689
John McCall07e91c02009-08-06 02:15:43 +00005690 // The context we found the declaration in, or in which we should
5691 // create the declaration.
5692 DeclContext *DC;
5693
5694 // FIXME: handle local classes
5695
5696 // Recover from invalid scope qualifiers as if they just weren't there.
John McCall1f82f242009-11-18 22:49:29 +00005697 LookupResult Previous(*this, Name, D.getIdentifierLoc(), LookupOrdinaryName,
5698 ForRedeclaration);
John McCall07e91c02009-08-06 02:15:43 +00005699 if (!ScopeQual.isInvalid() && ScopeQual.isSet()) {
5700 DC = computeDeclContext(ScopeQual);
5701
5702 // FIXME: handle dependent contexts
5703 if (!DC) return DeclPtrTy();
John McCall0b66eb32010-05-01 00:40:08 +00005704 if (RequireCompleteDeclContext(ScopeQual, DC)) return DeclPtrTy();
John McCall07e91c02009-08-06 02:15:43 +00005705
John McCall1f82f242009-11-18 22:49:29 +00005706 LookupQualifiedName(Previous, DC);
John McCall07e91c02009-08-06 02:15:43 +00005707
5708 // If searching in that context implicitly found a declaration in
5709 // a different context, treat it like it wasn't found at all.
5710 // TODO: better diagnostics for this case. Suggesting the right
5711 // qualified scope would be nice...
John McCall1f82f242009-11-18 22:49:29 +00005712 // FIXME: getRepresentativeDecl() is not right here at all
5713 if (Previous.empty() ||
5714 !Previous.getRepresentativeDecl()->getDeclContext()->Equals(DC)) {
John McCallaa74a0c2009-08-28 07:59:38 +00005715 D.setInvalidType();
John McCall07e91c02009-08-06 02:15:43 +00005716 Diag(Loc, diag::err_qualified_friend_not_found) << Name << T;
5717 return DeclPtrTy();
5718 }
5719
5720 // C++ [class.friend]p1: A friend of a class is a function or
5721 // class that is not a member of the class . . .
Douglas Gregora29a3ff2009-09-28 00:08:27 +00005722 if (DC->Equals(CurContext))
John McCall07e91c02009-08-06 02:15:43 +00005723 Diag(DS.getFriendSpecLoc(), diag::err_friend_is_member);
5724
John McCall07e91c02009-08-06 02:15:43 +00005725 // Otherwise walk out to the nearest namespace scope looking for matches.
5726 } else {
5727 // TODO: handle local class contexts.
5728
5729 DC = CurContext;
5730 while (true) {
5731 // Skip class contexts. If someone can cite chapter and verse
5732 // for this behavior, that would be nice --- it's what GCC and
5733 // EDG do, and it seems like a reasonable intent, but the spec
5734 // really only says that checks for unqualified existing
5735 // declarations should stop at the nearest enclosing namespace,
5736 // not that they should only consider the nearest enclosing
5737 // namespace.
Douglas Gregora29a3ff2009-09-28 00:08:27 +00005738 while (DC->isRecord())
5739 DC = DC->getParent();
John McCall07e91c02009-08-06 02:15:43 +00005740
John McCall1f82f242009-11-18 22:49:29 +00005741 LookupQualifiedName(Previous, DC);
John McCall07e91c02009-08-06 02:15:43 +00005742
5743 // TODO: decide what we think about using declarations.
John McCall1f82f242009-11-18 22:49:29 +00005744 if (!Previous.empty())
John McCall07e91c02009-08-06 02:15:43 +00005745 break;
Douglas Gregora29a3ff2009-09-28 00:08:27 +00005746
John McCall07e91c02009-08-06 02:15:43 +00005747 if (DC->isFileContext()) break;
5748 DC = DC->getParent();
5749 }
5750
5751 // C++ [class.friend]p1: A friend of a class is a function or
5752 // class that is not a member of the class . . .
John McCall93343b92009-08-06 20:49:32 +00005753 // C++0x changes this for both friend types and functions.
5754 // Most C++ 98 compilers do seem to give an error here, so
5755 // we do, too.
John McCall1f82f242009-11-18 22:49:29 +00005756 if (!Previous.empty() && DC->Equals(CurContext)
5757 && !getLangOptions().CPlusPlus0x)
John McCall07e91c02009-08-06 02:15:43 +00005758 Diag(DS.getFriendSpecLoc(), diag::err_friend_is_member);
5759 }
5760
Douglas Gregora29a3ff2009-09-28 00:08:27 +00005761 if (DC->isFileContext()) {
John McCall07e91c02009-08-06 02:15:43 +00005762 // This implies that it has to be an operator or function.
Douglas Gregor7861a802009-11-03 01:35:08 +00005763 if (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ||
5764 D.getName().getKind() == UnqualifiedId::IK_DestructorName ||
5765 D.getName().getKind() == UnqualifiedId::IK_ConversionFunctionId) {
John McCall07e91c02009-08-06 02:15:43 +00005766 Diag(Loc, diag::err_introducing_special_friend) <<
Douglas Gregor7861a802009-11-03 01:35:08 +00005767 (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ? 0 :
5768 D.getName().getKind() == UnqualifiedId::IK_DestructorName ? 1 : 2);
John McCall07e91c02009-08-06 02:15:43 +00005769 return DeclPtrTy();
5770 }
John McCall07e91c02009-08-06 02:15:43 +00005771 }
5772
Douglas Gregora29a3ff2009-09-28 00:08:27 +00005773 bool Redeclaration = false;
John McCallbcd03502009-12-07 02:54:59 +00005774 NamedDecl *ND = ActOnFunctionDeclarator(S, D, DC, T, TInfo, Previous,
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00005775 move(TemplateParams),
John McCalld1e9d832009-08-11 06:59:38 +00005776 IsDefinition,
5777 Redeclaration);
John McCallaa74a0c2009-08-28 07:59:38 +00005778 if (!ND) return DeclPtrTy();
John McCall759e32b2009-08-31 22:39:49 +00005779
Douglas Gregora29a3ff2009-09-28 00:08:27 +00005780 assert(ND->getDeclContext() == DC);
5781 assert(ND->getLexicalDeclContext() == CurContext);
John McCall5ed6e8f2009-08-18 00:00:49 +00005782
John McCall759e32b2009-08-31 22:39:49 +00005783 // Add the function declaration to the appropriate lookup tables,
5784 // adjusting the redeclarations list as necessary. We don't
5785 // want to do this yet if the friending class is dependent.
Mike Stump11289f42009-09-09 15:08:12 +00005786 //
John McCall759e32b2009-08-31 22:39:49 +00005787 // Also update the scope-based lookup if the target context's
5788 // lookup context is in lexical scope.
5789 if (!CurContext->isDependentContext()) {
5790 DC = DC->getLookupContext();
Douglas Gregora29a3ff2009-09-28 00:08:27 +00005791 DC->makeDeclVisibleInContext(ND, /* Recoverable=*/ false);
John McCall759e32b2009-08-31 22:39:49 +00005792 if (Scope *EnclosingScope = getScopeForDeclContext(S, DC))
Douglas Gregora29a3ff2009-09-28 00:08:27 +00005793 PushOnScopeChains(ND, EnclosingScope, /*AddToContext=*/ false);
John McCall759e32b2009-08-31 22:39:49 +00005794 }
John McCallaa74a0c2009-08-28 07:59:38 +00005795
5796 FriendDecl *FrD = FriendDecl::Create(Context, CurContext,
Douglas Gregora29a3ff2009-09-28 00:08:27 +00005797 D.getIdentifierLoc(), ND,
John McCallaa74a0c2009-08-28 07:59:38 +00005798 DS.getFriendSpecLoc());
John McCall75c03bb2009-08-29 03:50:18 +00005799 FrD->setAccess(AS_public);
John McCallaa74a0c2009-08-28 07:59:38 +00005800 CurContext->addDecl(FrD);
John McCall07e91c02009-08-06 02:15:43 +00005801
Douglas Gregora29a3ff2009-09-28 00:08:27 +00005802 return DeclPtrTy::make(ND);
Anders Carlsson38811702009-05-11 22:55:49 +00005803}
5804
Chris Lattner83f095c2009-03-28 19:18:32 +00005805void Sema::SetDeclDeleted(DeclPtrTy dcl, SourceLocation DelLoc) {
Douglas Gregorc8c277a2009-08-24 11:57:43 +00005806 AdjustDeclIfTemplate(dcl);
Mike Stump11289f42009-09-09 15:08:12 +00005807
Chris Lattner83f095c2009-03-28 19:18:32 +00005808 Decl *Dcl = dcl.getAs<Decl>();
Sebastian Redlf769df52009-03-24 22:27:57 +00005809 FunctionDecl *Fn = dyn_cast<FunctionDecl>(Dcl);
5810 if (!Fn) {
5811 Diag(DelLoc, diag::err_deleted_non_function);
5812 return;
5813 }
5814 if (const FunctionDecl *Prev = Fn->getPreviousDeclaration()) {
5815 Diag(DelLoc, diag::err_deleted_decl_not_first);
5816 Diag(Prev->getLocation(), diag::note_previous_declaration);
5817 // If the declaration wasn't the first, we delete the function anyway for
5818 // recovery.
5819 }
5820 Fn->setDeleted();
5821}
Sebastian Redl4c018662009-04-27 21:33:24 +00005822
5823static void SearchForReturnInStmt(Sema &Self, Stmt *S) {
5824 for (Stmt::child_iterator CI = S->child_begin(), E = S->child_end(); CI != E;
5825 ++CI) {
5826 Stmt *SubStmt = *CI;
5827 if (!SubStmt)
5828 continue;
5829 if (isa<ReturnStmt>(SubStmt))
5830 Self.Diag(SubStmt->getSourceRange().getBegin(),
5831 diag::err_return_in_constructor_handler);
5832 if (!isa<Expr>(SubStmt))
5833 SearchForReturnInStmt(Self, SubStmt);
5834 }
5835}
5836
5837void Sema::DiagnoseReturnInConstructorExceptionHandler(CXXTryStmt *TryBlock) {
5838 for (unsigned I = 0, E = TryBlock->getNumHandlers(); I != E; ++I) {
5839 CXXCatchStmt *Handler = TryBlock->getHandler(I);
5840 SearchForReturnInStmt(*this, Handler);
5841 }
5842}
Anders Carlssonf2a2e332009-05-14 01:09:04 +00005843
Mike Stump11289f42009-09-09 15:08:12 +00005844bool Sema::CheckOverridingFunctionReturnType(const CXXMethodDecl *New,
Anders Carlssonf2a2e332009-05-14 01:09:04 +00005845 const CXXMethodDecl *Old) {
John McCall9dd450b2009-09-21 23:43:11 +00005846 QualType NewTy = New->getType()->getAs<FunctionType>()->getResultType();
5847 QualType OldTy = Old->getType()->getAs<FunctionType>()->getResultType();
Anders Carlssonf2a2e332009-05-14 01:09:04 +00005848
Chandler Carruth284bb2e2010-02-15 11:53:20 +00005849 if (Context.hasSameType(NewTy, OldTy) ||
5850 NewTy->isDependentType() || OldTy->isDependentType())
Anders Carlssonf2a2e332009-05-14 01:09:04 +00005851 return false;
Mike Stump11289f42009-09-09 15:08:12 +00005852
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00005853 // Check if the return types are covariant
5854 QualType NewClassTy, OldClassTy;
Mike Stump11289f42009-09-09 15:08:12 +00005855
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00005856 /// Both types must be pointers or references to classes.
Anders Carlsson7caa4cb2010-01-22 17:37:20 +00005857 if (const PointerType *NewPT = NewTy->getAs<PointerType>()) {
5858 if (const PointerType *OldPT = OldTy->getAs<PointerType>()) {
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00005859 NewClassTy = NewPT->getPointeeType();
5860 OldClassTy = OldPT->getPointeeType();
5861 }
Anders Carlsson7caa4cb2010-01-22 17:37:20 +00005862 } else if (const ReferenceType *NewRT = NewTy->getAs<ReferenceType>()) {
5863 if (const ReferenceType *OldRT = OldTy->getAs<ReferenceType>()) {
5864 if (NewRT->getTypeClass() == OldRT->getTypeClass()) {
5865 NewClassTy = NewRT->getPointeeType();
5866 OldClassTy = OldRT->getPointeeType();
5867 }
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00005868 }
5869 }
Mike Stump11289f42009-09-09 15:08:12 +00005870
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00005871 // The return types aren't either both pointers or references to a class type.
5872 if (NewClassTy.isNull()) {
Mike Stump11289f42009-09-09 15:08:12 +00005873 Diag(New->getLocation(),
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00005874 diag::err_different_return_type_for_overriding_virtual_function)
5875 << New->getDeclName() << NewTy << OldTy;
5876 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
Mike Stump11289f42009-09-09 15:08:12 +00005877
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00005878 return true;
5879 }
Anders Carlssonf2a2e332009-05-14 01:09:04 +00005880
Anders Carlssone60365b2009-12-31 18:34:24 +00005881 // C++ [class.virtual]p6:
5882 // If the return type of D::f differs from the return type of B::f, the
5883 // class type in the return type of D::f shall be complete at the point of
5884 // declaration of D::f or shall be the class type D.
Anders Carlsson0c9dd842009-12-31 18:54:35 +00005885 if (const RecordType *RT = NewClassTy->getAs<RecordType>()) {
5886 if (!RT->isBeingDefined() &&
5887 RequireCompleteType(New->getLocation(), NewClassTy,
5888 PDiag(diag::err_covariant_return_incomplete)
5889 << New->getDeclName()))
Anders Carlssone60365b2009-12-31 18:34:24 +00005890 return true;
Anders Carlsson0c9dd842009-12-31 18:54:35 +00005891 }
Anders Carlssone60365b2009-12-31 18:34:24 +00005892
Douglas Gregor1b8fe5b72009-11-16 21:35:15 +00005893 if (!Context.hasSameUnqualifiedType(NewClassTy, OldClassTy)) {
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00005894 // Check if the new class derives from the old class.
5895 if (!IsDerivedFrom(NewClassTy, OldClassTy)) {
5896 Diag(New->getLocation(),
5897 diag::err_covariant_return_not_derived)
5898 << New->getDeclName() << NewTy << OldTy;
5899 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
5900 return true;
5901 }
Mike Stump11289f42009-09-09 15:08:12 +00005902
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00005903 // Check if we the conversion from derived to base is valid.
John McCall1064d7e2010-03-16 05:22:47 +00005904 if (CheckDerivedToBaseConversion(NewClassTy, OldClassTy,
Anders Carlsson7afe4242010-04-24 17:11:09 +00005905 diag::err_covariant_return_inaccessible_base,
5906 diag::err_covariant_return_ambiguous_derived_to_base_conv,
5907 // FIXME: Should this point to the return type?
5908 New->getLocation(), SourceRange(), New->getDeclName(), 0)) {
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00005909 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
5910 return true;
5911 }
5912 }
Mike Stump11289f42009-09-09 15:08:12 +00005913
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00005914 // The qualifiers of the return types must be the same.
Anders Carlsson7caa4cb2010-01-22 17:37:20 +00005915 if (NewTy.getLocalCVRQualifiers() != OldTy.getLocalCVRQualifiers()) {
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00005916 Diag(New->getLocation(),
5917 diag::err_covariant_return_type_different_qualifications)
Anders Carlssonf2a2e332009-05-14 01:09:04 +00005918 << New->getDeclName() << NewTy << OldTy;
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00005919 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
5920 return true;
5921 };
Mike Stump11289f42009-09-09 15:08:12 +00005922
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00005923
5924 // The new class type must have the same or less qualifiers as the old type.
5925 if (NewClassTy.isMoreQualifiedThan(OldClassTy)) {
5926 Diag(New->getLocation(),
5927 diag::err_covariant_return_type_class_type_more_qualified)
5928 << New->getDeclName() << NewTy << OldTy;
5929 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
5930 return true;
5931 };
Mike Stump11289f42009-09-09 15:08:12 +00005932
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00005933 return false;
Anders Carlssonf2a2e332009-05-14 01:09:04 +00005934}
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00005935
Alexis Hunt96d5c762009-11-21 08:43:09 +00005936bool Sema::CheckOverridingFunctionAttributes(const CXXMethodDecl *New,
5937 const CXXMethodDecl *Old)
5938{
5939 if (Old->hasAttr<FinalAttr>()) {
5940 Diag(New->getLocation(), diag::err_final_function_overridden)
5941 << New->getDeclName();
5942 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
5943 return true;
5944 }
5945
5946 return false;
5947}
5948
Douglas Gregor21920e372009-12-01 17:24:26 +00005949/// \brief Mark the given method pure.
5950///
5951/// \param Method the method to be marked pure.
5952///
5953/// \param InitRange the source range that covers the "0" initializer.
5954bool Sema::CheckPureMethod(CXXMethodDecl *Method, SourceRange InitRange) {
5955 if (Method->isVirtual() || Method->getParent()->isDependentContext()) {
5956 Method->setPure();
5957
5958 // A class is abstract if at least one function is pure virtual.
5959 Method->getParent()->setAbstract(true);
5960 return false;
5961 }
5962
5963 if (!Method->isInvalidDecl())
5964 Diag(Method->getLocation(), diag::err_non_virtual_pure)
5965 << Method->getDeclName() << InitRange;
5966 return true;
5967}
5968
John McCall1f4ee7b2009-12-19 09:28:58 +00005969/// ActOnCXXEnterDeclInitializer - Invoked when we are about to parse
5970/// an initializer for the out-of-line declaration 'Dcl'. The scope
5971/// is a fresh scope pushed for just this purpose.
5972///
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00005973/// After this method is called, according to [C++ 3.4.1p13], if 'Dcl' is a
5974/// static data member of class X, names should be looked up in the scope of
5975/// class X.
5976void Sema::ActOnCXXEnterDeclInitializer(Scope *S, DeclPtrTy Dcl) {
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00005977 // If there is no declaration, there was an error parsing it.
John McCall1f4ee7b2009-12-19 09:28:58 +00005978 Decl *D = Dcl.getAs<Decl>();
5979 if (D == 0) return;
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00005980
John McCall1f4ee7b2009-12-19 09:28:58 +00005981 // We should only get called for declarations with scope specifiers, like:
5982 // int foo::bar;
5983 assert(D->isOutOfLine());
John McCall6df5fef2009-12-19 10:49:29 +00005984 EnterDeclaratorContext(S, D->getDeclContext());
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00005985}
5986
5987/// ActOnCXXExitDeclInitializer - Invoked after we are finished parsing an
John McCall1f4ee7b2009-12-19 09:28:58 +00005988/// initializer for the out-of-line declaration 'Dcl'.
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00005989void Sema::ActOnCXXExitDeclInitializer(Scope *S, DeclPtrTy Dcl) {
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00005990 // If there is no declaration, there was an error parsing it.
John McCall1f4ee7b2009-12-19 09:28:58 +00005991 Decl *D = Dcl.getAs<Decl>();
5992 if (D == 0) return;
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00005993
John McCall1f4ee7b2009-12-19 09:28:58 +00005994 assert(D->isOutOfLine());
John McCall6df5fef2009-12-19 10:49:29 +00005995 ExitDeclaratorContext(S);
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00005996}
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00005997
5998/// ActOnCXXConditionDeclarationExpr - Parsed a condition declaration of a
5999/// C++ if/switch/while/for statement.
6000/// e.g: "if (int x = f()) {...}"
6001Action::DeclResult
6002Sema::ActOnCXXConditionDeclaration(Scope *S, Declarator &D) {
6003 // C++ 6.4p2:
6004 // The declarator shall not specify a function or an array.
6005 // The type-specifier-seq shall not contain typedef and shall not declare a
6006 // new class or enumeration.
6007 assert(D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef &&
6008 "Parser allowed 'typedef' as storage class of condition decl.");
6009
John McCallbcd03502009-12-07 02:54:59 +00006010 TypeSourceInfo *TInfo = 0;
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00006011 TagDecl *OwnedTag = 0;
John McCallbcd03502009-12-07 02:54:59 +00006012 QualType Ty = GetTypeForDeclarator(D, S, &TInfo, &OwnedTag);
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00006013
6014 if (Ty->isFunctionType()) { // The declarator shall not specify a function...
6015 // We exit without creating a CXXConditionDeclExpr because a FunctionDecl
6016 // would be created and CXXConditionDeclExpr wants a VarDecl.
6017 Diag(D.getIdentifierLoc(), diag::err_invalid_use_of_function_type)
6018 << D.getSourceRange();
6019 return DeclResult();
6020 } else if (OwnedTag && OwnedTag->isDefinition()) {
6021 // The type-specifier-seq shall not declare a new class or enumeration.
6022 Diag(OwnedTag->getLocation(), diag::err_type_defined_in_condition);
6023 }
6024
6025 DeclPtrTy Dcl = ActOnDeclarator(S, D);
6026 if (!Dcl)
6027 return DeclResult();
6028
6029 VarDecl *VD = cast<VarDecl>(Dcl.getAs<Decl>());
6030 VD->setDeclaredInCondition(true);
6031 return Dcl;
6032}
Anders Carlssonf98849e2009-12-02 17:15:43 +00006033
Douglas Gregor88d292c2010-05-13 16:44:06 +00006034void Sema::MarkVTableUsed(SourceLocation Loc, CXXRecordDecl *Class,
6035 bool DefinitionRequired) {
6036 // Ignore any vtable uses in unevaluated operands or for classes that do
6037 // not have a vtable.
6038 if (!Class->isDynamicClass() || Class->isDependentContext() ||
6039 CurContext->isDependentContext() ||
6040 ExprEvalContexts.back().Context == Unevaluated)
Rafael Espindolae7113ca2010-03-10 02:19:29 +00006041 return;
6042
Douglas Gregor88d292c2010-05-13 16:44:06 +00006043 // Try to insert this class into the map.
6044 Class = cast<CXXRecordDecl>(Class->getCanonicalDecl());
6045 std::pair<llvm::DenseMap<CXXRecordDecl *, bool>::iterator, bool>
6046 Pos = VTablesUsed.insert(std::make_pair(Class, DefinitionRequired));
6047 if (!Pos.second) {
6048 Pos.first->second = Pos.first->second || DefinitionRequired;
6049 return;
6050 }
6051
6052 // Local classes need to have their virtual members marked
6053 // immediately. For all other classes, we mark their virtual members
6054 // at the end of the translation unit.
6055 if (Class->isLocalClass())
6056 MarkVirtualMembersReferenced(Loc, Class);
Daniel Dunbar0547ad32010-05-11 21:32:35 +00006057 else
Douglas Gregor88d292c2010-05-13 16:44:06 +00006058 VTableUses.push_back(std::make_pair(Class, Loc));
Douglas Gregor0c4aad12010-05-11 20:24:17 +00006059}
6060
Douglas Gregor88d292c2010-05-13 16:44:06 +00006061bool Sema::DefineUsedVTables() {
6062 // If any dynamic classes have their key function defined within
6063 // this translation unit, then those vtables are considered "used" and must
6064 // be emitted.
6065 for (unsigned I = 0, N = DynamicClasses.size(); I != N; ++I) {
6066 if (const CXXMethodDecl *KeyFunction
6067 = Context.getKeyFunction(DynamicClasses[I])) {
6068 const FunctionDecl *Definition = 0;
Douglas Gregor83de20f2010-05-14 04:08:48 +00006069 if (KeyFunction->getBody(Definition))
Douglas Gregor88d292c2010-05-13 16:44:06 +00006070 MarkVTableUsed(Definition->getLocation(), DynamicClasses[I], true);
6071 }
6072 }
6073
6074 if (VTableUses.empty())
Anders Carlsson82fccd02009-12-07 08:24:59 +00006075 return false;
6076
Douglas Gregor88d292c2010-05-13 16:44:06 +00006077 // Note: The VTableUses vector could grow as a result of marking
6078 // the members of a class as "used", so we check the size each
6079 // time through the loop and prefer indices (with are stable) to
6080 // iterators (which are not).
6081 for (unsigned I = 0; I != VTableUses.size(); ++I) {
6082 CXXRecordDecl *Class
6083 = cast_or_null<CXXRecordDecl>(VTableUses[I].first)->getDefinition();
6084 if (!Class)
6085 continue;
6086
6087 SourceLocation Loc = VTableUses[I].second;
6088
6089 // If this class has a key function, but that key function is
6090 // defined in another translation unit, we don't need to emit the
6091 // vtable even though we're using it.
6092 const CXXMethodDecl *KeyFunction = Context.getKeyFunction(Class);
6093 if (KeyFunction && !KeyFunction->getBody()) {
6094 switch (KeyFunction->getTemplateSpecializationKind()) {
6095 case TSK_Undeclared:
6096 case TSK_ExplicitSpecialization:
6097 case TSK_ExplicitInstantiationDeclaration:
6098 // The key function is in another translation unit.
6099 continue;
6100
6101 case TSK_ExplicitInstantiationDefinition:
6102 case TSK_ImplicitInstantiation:
6103 // We will be instantiating the key function.
6104 break;
6105 }
6106 } else if (!KeyFunction) {
6107 // If we have a class with no key function that is the subject
6108 // of an explicit instantiation declaration, suppress the
6109 // vtable; it will live with the explicit instantiation
6110 // definition.
6111 bool IsExplicitInstantiationDeclaration
6112 = Class->getTemplateSpecializationKind()
6113 == TSK_ExplicitInstantiationDeclaration;
6114 for (TagDecl::redecl_iterator R = Class->redecls_begin(),
6115 REnd = Class->redecls_end();
6116 R != REnd; ++R) {
6117 TemplateSpecializationKind TSK
6118 = cast<CXXRecordDecl>(*R)->getTemplateSpecializationKind();
6119 if (TSK == TSK_ExplicitInstantiationDeclaration)
6120 IsExplicitInstantiationDeclaration = true;
6121 else if (TSK == TSK_ExplicitInstantiationDefinition) {
6122 IsExplicitInstantiationDeclaration = false;
6123 break;
6124 }
6125 }
6126
6127 if (IsExplicitInstantiationDeclaration)
6128 continue;
6129 }
6130
6131 // Mark all of the virtual members of this class as referenced, so
6132 // that we can build a vtable. Then, tell the AST consumer that a
6133 // vtable for this class is required.
6134 MarkVirtualMembersReferenced(Loc, Class);
6135 CXXRecordDecl *Canonical = cast<CXXRecordDecl>(Class->getCanonicalDecl());
6136 Consumer.HandleVTable(Class, VTablesUsed[Canonical]);
6137
6138 // Optionally warn if we're emitting a weak vtable.
6139 if (Class->getLinkage() == ExternalLinkage &&
6140 Class->getTemplateSpecializationKind() != TSK_ImplicitInstantiation) {
6141 if (!KeyFunction || (KeyFunction->getBody() && KeyFunction->isInlined()))
6142 Diag(Class->getLocation(), diag::warn_weak_vtable) << Class;
6143 }
Anders Carlssonf98849e2009-12-02 17:15:43 +00006144 }
Douglas Gregor88d292c2010-05-13 16:44:06 +00006145 VTableUses.clear();
6146
Anders Carlsson82fccd02009-12-07 08:24:59 +00006147 return true;
Anders Carlssonf98849e2009-12-02 17:15:43 +00006148}
Anders Carlsson82fccd02009-12-07 08:24:59 +00006149
Rafael Espindola5b334082010-03-26 00:36:59 +00006150void Sema::MarkVirtualMembersReferenced(SourceLocation Loc,
6151 const CXXRecordDecl *RD) {
Anders Carlsson82fccd02009-12-07 08:24:59 +00006152 for (CXXRecordDecl::method_iterator i = RD->method_begin(),
6153 e = RD->method_end(); i != e; ++i) {
6154 CXXMethodDecl *MD = *i;
6155
6156 // C++ [basic.def.odr]p2:
6157 // [...] A virtual member function is used if it is not pure. [...]
6158 if (MD->isVirtual() && !MD->isPure())
6159 MarkDeclarationReferenced(Loc, MD);
6160 }
Rafael Espindola5b334082010-03-26 00:36:59 +00006161
6162 // Only classes that have virtual bases need a VTT.
6163 if (RD->getNumVBases() == 0)
6164 return;
6165
6166 for (CXXRecordDecl::base_class_const_iterator i = RD->bases_begin(),
6167 e = RD->bases_end(); i != e; ++i) {
6168 const CXXRecordDecl *Base =
6169 cast<CXXRecordDecl>(i->getType()->getAs<RecordType>()->getDecl());
6170 if (i->isVirtual())
6171 continue;
6172 if (Base->getNumVBases() == 0)
6173 continue;
6174 MarkVirtualMembersReferenced(Loc, Base);
6175 }
Anders Carlsson82fccd02009-12-07 08:24:59 +00006176}
Fariborz Jahanianc83726e2010-04-28 16:11:27 +00006177
6178/// SetIvarInitializers - This routine builds initialization ASTs for the
6179/// Objective-C implementation whose ivars need be initialized.
6180void Sema::SetIvarInitializers(ObjCImplementationDecl *ObjCImplementation) {
6181 if (!getLangOptions().CPlusPlus)
6182 return;
6183 if (const ObjCInterfaceDecl *OID = ObjCImplementation->getClassInterface()) {
6184 llvm::SmallVector<ObjCIvarDecl*, 8> ivars;
6185 CollectIvarsToConstructOrDestruct(OID, ivars);
6186 if (ivars.empty())
6187 return;
6188 llvm::SmallVector<CXXBaseOrMemberInitializer*, 32> AllToInit;
6189 for (unsigned i = 0; i < ivars.size(); i++) {
6190 FieldDecl *Field = ivars[i];
6191 CXXBaseOrMemberInitializer *Member;
6192 InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field);
6193 InitializationKind InitKind =
6194 InitializationKind::CreateDefault(ObjCImplementation->getLocation());
6195
6196 InitializationSequence InitSeq(*this, InitEntity, InitKind, 0, 0);
6197 Sema::OwningExprResult MemberInit =
6198 InitSeq.Perform(*this, InitEntity, InitKind,
6199 Sema::MultiExprArg(*this, 0, 0));
6200 MemberInit = MaybeCreateCXXExprWithTemporaries(move(MemberInit));
6201 // Note, MemberInit could actually come back empty if no initialization
6202 // is required (e.g., because it would call a trivial default constructor)
6203 if (!MemberInit.get() || MemberInit.isInvalid())
6204 continue;
6205
6206 Member =
6207 new (Context) CXXBaseOrMemberInitializer(Context,
6208 Field, SourceLocation(),
6209 SourceLocation(),
6210 MemberInit.takeAs<Expr>(),
6211 SourceLocation());
6212 AllToInit.push_back(Member);
6213 }
6214 ObjCImplementation->setIvarInitializers(Context,
6215 AllToInit.data(), AllToInit.size());
6216 }
6217}