blob: a0bc5840cdb4052936ca5d3f0361d3bcd6028f09 [file] [log] [blame]
Chris Lattner3d1cee32008-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 Gregor20093b42009-12-09 23:02:17 +000015#include "SemaInit.h"
John McCall7d384dd2009-11-18 07:57:50 +000016#include "Lookup.h"
Argyrios Kyrtzidisa4755c62008-08-09 00:58:37 +000017#include "clang/AST/ASTConsumer.h"
Douglas Gregore37ac4f2008-04-13 21:30:24 +000018#include "clang/AST/ASTContext.h"
Douglas Gregor06a9f362010-05-01 20:49:11 +000019#include "clang/AST/CharUnits.h"
Douglas Gregora8f32e02009-10-06 17:59:45 +000020#include "clang/AST/CXXInheritance.h"
Anders Carlsson8211eff2009-03-24 01:19:16 +000021#include "clang/AST/DeclVisitor.h"
Douglas Gregor06a9f362010-05-01 20:49:11 +000022#include "clang/AST/RecordLayout.h"
23#include "clang/AST/StmtVisitor.h"
Douglas Gregor802ab452009-12-02 22:36:29 +000024#include "clang/AST/TypeLoc.h"
Douglas Gregor02189362008-10-22 21:13:31 +000025#include "clang/AST/TypeOrdering.h"
Douglas Gregor314b97f2009-11-10 19:49:08 +000026#include "clang/Parse/DeclSpec.h"
27#include "clang/Parse/Template.h"
Anders Carlssonb7906612009-08-26 23:45:07 +000028#include "clang/Basic/PartialDiagnostic.h"
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +000029#include "clang/Lex/Preprocessor.h"
Douglas Gregor3fc749d2008-12-23 00:26:44 +000030#include "llvm/ADT/STLExtras.h"
Douglas Gregorf8268ae2008-10-22 17:49:05 +000031#include <map>
Douglas Gregora8f32e02009-10-06 17:59:45 +000032#include <set>
Chris Lattner3d1cee32008-04-08 05:04:30 +000033
34using namespace clang;
35
Chris Lattner8123a952008-04-10 02:22:51 +000036//===----------------------------------------------------------------------===//
37// CheckDefaultArgumentVisitor
38//===----------------------------------------------------------------------===//
39
Chris Lattner9e979552008-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 Kramer85b45212009-11-28 19:45:26 +000046 class CheckDefaultArgumentVisitor
Chris Lattnerb77792e2008-07-26 22:17:49 +000047 : public StmtVisitor<CheckDefaultArgumentVisitor, bool> {
Chris Lattner9e979552008-04-12 23:52:44 +000048 Expr *DefaultArg;
49 Sema *S;
Chris Lattner8123a952008-04-10 02:22:51 +000050
Chris Lattner9e979552008-04-12 23:52:44 +000051 public:
Mike Stump1eb44332009-09-09 15:08:12 +000052 CheckDefaultArgumentVisitor(Expr *defarg, Sema *s)
Chris Lattner9e979552008-04-12 23:52:44 +000053 : DefaultArg(defarg), S(s) {}
Chris Lattner8123a952008-04-10 02:22:51 +000054
Chris Lattner9e979552008-04-12 23:52:44 +000055 bool VisitExpr(Expr *Node);
56 bool VisitDeclRefExpr(DeclRefExpr *DRE);
Douglas Gregor796da182008-11-04 14:32:21 +000057 bool VisitCXXThisExpr(CXXThisExpr *ThisE);
Chris Lattner9e979552008-04-12 23:52:44 +000058 };
Chris Lattner8123a952008-04-10 02:22:51 +000059
Chris Lattner9e979552008-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 Stump1eb44332009-09-09 15:08:12 +000063 for (Stmt::child_iterator I = Node->child_begin(),
Chris Lattnerb77792e2008-07-26 22:17:49 +000064 E = Node->child_end(); I != E; ++I)
65 IsInvalid |= Visit(*I);
Chris Lattner9e979552008-04-12 23:52:44 +000066 return IsInvalid;
Chris Lattner8123a952008-04-10 02:22:51 +000067 }
68
Chris Lattner9e979552008-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 Gregor8e9bebd2008-10-21 16:13:35 +000073 NamedDecl *Decl = DRE->getDecl();
Chris Lattner9e979552008-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 Stump1eb44332009-09-09 15:08:12 +000083 return S->Diag(DRE->getSourceRange().getBegin(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +000084 diag::err_param_default_argument_references_param)
Chris Lattner08631c52008-11-23 21:45:46 +000085 << Param->getDeclName() << DefaultArg->getSourceRange();
Steve Naroff248a7532008-04-15 22:42:06 +000086 } else if (VarDecl *VDecl = dyn_cast<VarDecl>(Decl)) {
Chris Lattner9e979552008-04-12 23:52:44 +000087 // C++ [dcl.fct.default]p7
88 // Local variables shall not be used in default argument
89 // expressions.
Steve Naroff248a7532008-04-15 22:42:06 +000090 if (VDecl->isBlockVarDecl())
Mike Stump1eb44332009-09-09 15:08:12 +000091 return S->Diag(DRE->getSourceRange().getBegin(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +000092 diag::err_param_default_argument_references_local)
Chris Lattner08631c52008-11-23 21:45:46 +000093 << VDecl->getDeclName() << DefaultArg->getSourceRange();
Chris Lattner9e979552008-04-12 23:52:44 +000094 }
Chris Lattner8123a952008-04-10 02:22:51 +000095
Douglas Gregor3996f232008-11-04 13:41:56 +000096 return false;
97 }
Chris Lattner9e979552008-04-12 23:52:44 +000098
Douglas Gregor796da182008-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 Lattnerfa25bbb2008-11-19 05:08:23 +0000105 diag::err_param_default_argument_references_this)
106 << ThisE->getSourceRange();
Chris Lattner9e979552008-04-12 23:52:44 +0000107 }
Chris Lattner8123a952008-04-10 02:22:51 +0000108}
109
Anders Carlssoned961f92009-08-25 02:29:20 +0000110bool
111Sema::SetParamDefaultArgument(ParmVarDecl *Param, ExprArg DefaultArg,
Mike Stump1eb44332009-09-09 15:08:12 +0000112 SourceLocation EqualLoc) {
Anders Carlsson5653ca52009-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 Carlssoned961f92009-08-25 02:29:20 +0000119 Expr *Arg = (Expr *)DefaultArg.get();
Mike Stump1eb44332009-09-09 15:08:12 +0000120
Anders Carlssoned961f92009-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 Gregor99a2e602009-12-16 01:38:02 +0000127 InitializedEntity Entity = InitializedEntity::InitializeParameter(Param);
128 InitializationKind Kind = InitializationKind::CreateCopy(Param->getLocation(),
129 EqualLoc);
Eli Friedman4a2c19b2009-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 Carlsson9351c172009-08-25 03:18:48 +0000134 return true;
Eli Friedman4a2c19b2009-12-22 02:46:13 +0000135 Arg = Result.takeAs<Expr>();
Anders Carlssoned961f92009-08-25 02:29:20 +0000136
Anders Carlsson0ece4912009-12-15 20:51:39 +0000137 Arg = MaybeCreateCXXExprWithTemporaries(Arg);
Mike Stump1eb44332009-09-09 15:08:12 +0000138
Anders Carlssoned961f92009-08-25 02:29:20 +0000139 // Okay: add the default argument to the parameter
140 Param->setDefaultArg(Arg);
Mike Stump1eb44332009-09-09 15:08:12 +0000141
Anders Carlssoned961f92009-08-25 02:29:20 +0000142 DefaultArg.release();
Mike Stump1eb44332009-09-09 15:08:12 +0000143
Anders Carlsson9351c172009-08-25 03:18:48 +0000144 return false;
Anders Carlssoned961f92009-08-25 02:29:20 +0000145}
146
Chris Lattner8123a952008-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 Lattner3d1cee32008-04-08 05:04:30 +0000150void
Mike Stump1eb44332009-09-09 15:08:12 +0000151Sema::ActOnParamDefaultArgument(DeclPtrTy param, SourceLocation EqualLoc,
Sebastian Redlf53597f2009-03-15 17:47:39 +0000152 ExprArg defarg) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000153 if (!param || !defarg.get())
154 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000155
Chris Lattnerb28317a2009-03-28 19:18:32 +0000156 ParmVarDecl *Param = cast<ParmVarDecl>(param.getAs<Decl>());
Anders Carlsson5e300d12009-06-12 16:51:40 +0000157 UnparsedDefaultArgLocs.erase(Param);
158
Anders Carlssonf1b1d592009-05-01 19:30:39 +0000159 ExprOwningPtr<Expr> DefaultArg(this, defarg.takeAs<Expr>());
Chris Lattner3d1cee32008-04-08 05:04:30 +0000160
161 // Default arguments are only permitted in C++
162 if (!getLangOptions().CPlusPlus) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000163 Diag(EqualLoc, diag::err_param_default_argument)
164 << DefaultArg->getSourceRange();
Douglas Gregor72b505b2008-12-16 21:30:33 +0000165 Param->setInvalidDecl();
Chris Lattner3d1cee32008-04-08 05:04:30 +0000166 return;
167 }
168
Anders Carlsson66e30672009-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 Stump1eb44332009-09-09 15:08:12 +0000175
Anders Carlssoned961f92009-08-25 02:29:20 +0000176 SetParamDefaultArgument(Param, move(DefaultArg), EqualLoc);
Chris Lattner3d1cee32008-04-08 05:04:30 +0000177}
178
Douglas Gregor61366e92008-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 Stump1eb44332009-09-09 15:08:12 +0000183void Sema::ActOnParamUnparsedDefaultArgument(DeclPtrTy param,
Anders Carlsson5e300d12009-06-12 16:51:40 +0000184 SourceLocation EqualLoc,
185 SourceLocation ArgLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000186 if (!param)
187 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000188
Chris Lattnerb28317a2009-03-28 19:18:32 +0000189 ParmVarDecl *Param = cast<ParmVarDecl>(param.getAs<Decl>());
Douglas Gregor61366e92008-12-24 00:01:03 +0000190 if (Param)
191 Param->setUnparsedDefaultArg();
Mike Stump1eb44332009-09-09 15:08:12 +0000192
Anders Carlsson5e300d12009-06-12 16:51:40 +0000193 UnparsedDefaultArgLocs[Param] = ArgLoc;
Douglas Gregor61366e92008-12-24 00:01:03 +0000194}
195
Douglas Gregor72b505b2008-12-16 21:30:33 +0000196/// ActOnParamDefaultArgumentError - Parsing or semantic analysis of
197/// the default argument for the parameter param failed.
Chris Lattnerb28317a2009-03-28 19:18:32 +0000198void Sema::ActOnParamDefaultArgumentError(DeclPtrTy param) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000199 if (!param)
200 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000201
Anders Carlsson5e300d12009-06-12 16:51:40 +0000202 ParmVarDecl *Param = cast<ParmVarDecl>(param.getAs<Decl>());
Mike Stump1eb44332009-09-09 15:08:12 +0000203
Anders Carlsson5e300d12009-06-12 16:51:40 +0000204 Param->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000205
Anders Carlsson5e300d12009-06-12 16:51:40 +0000206 UnparsedDefaultArgLocs.erase(Param);
Douglas Gregor72b505b2008-12-16 21:30:33 +0000207}
208
Douglas Gregor6d6eb572008-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 Lattnerb28317a2009-03-28 19:18:32 +0000222 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i) {
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000223 DeclaratorChunk &chunk = D.getTypeObject(i);
224 if (chunk.Kind == DeclaratorChunk::Function) {
Chris Lattnerb28317a2009-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 Gregor61366e92008-12-24 00:01:03 +0000228 if (Param->hasUnparsedDefaultArg()) {
229 CachedTokens *Toks = chunk.Fun.ArgInfo[argIdx].DefaultArgTokens;
Douglas Gregor72b505b2008-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 Gregor61366e92008-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 Gregor6d6eb572008-05-07 04:49:29 +0000238 }
239 }
240 }
241 }
242}
243
Chris Lattner3d1cee32008-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 Gregorcda9c672009-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 Lattner3d1cee32008-04-08 05:04:30 +0000251 // C++ [dcl.fct.default]p4:
Chris Lattner3d1cee32008-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 Gregor6cc15182009-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 Lattner3d1cee32008-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 Gregor6cc15182009-09-11 18:44:32 +0000273 if (OldParam->hasDefaultArg() && NewParam->hasDefaultArg()) {
Douglas Gregor4f123ff2010-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 Stump1eb44332009-09-09 15:08:12 +0000283 Diag(NewParam->getLocation(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000284 diag::err_param_default_argument_redefinition)
Douglas Gregor4f123ff2010-01-13 00:12:48 +0000285 << NewParam->getDefaultArgRange();
Douglas Gregor6cc15182009-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 Gregorcda9c672009-02-16 17:45:42 +0000299 Invalid = true;
Douglas Gregord85cef52009-09-17 19:51:30 +0000300 } else if (OldParam->hasDefaultArg()) {
John McCall3d6c1782010-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 McCallbf73b352010-03-12 18:31:32 +0000304 NewParam->setHasInheritedDefaultArg();
Douglas Gregord85cef52009-09-17 19:51:30 +0000305 if (OldParam->hasUninstantiatedDefaultArg())
306 NewParam->setUninstantiatedDefaultArg(
307 OldParam->getUninstantiatedDefaultArg());
308 else
John McCall3d6c1782010-05-04 01:53:42 +0000309 NewParam->setDefaultArg(OldParam->getInit());
Douglas Gregor6cc15182009-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 Gregor096ebfd2009-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 Gregor8c638ab2009-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 Gregor096ebfd2009-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 Gregor6cc15182009-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 Lattner3d1cee32008-04-08 05:04:30 +0000360 }
361 }
362
Douglas Gregore13ad832010-02-12 07:32:17 +0000363 if (CheckEquivalentExceptionSpec(Old, New))
Sebastian Redl4994d2d2009-07-04 11:39:00 +0000364 Invalid = true;
Sebastian Redl4994d2d2009-07-04 11:39:00 +0000365
Douglas Gregorcda9c672009-02-16 17:45:42 +0000366 return Invalid;
Chris Lattner3d1cee32008-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 Carlsson5f49a0c2009-08-25 01:23:32 +0000379 if (Param->hasDefaultArg())
Chris Lattner3d1cee32008-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 Stump1eb44332009-09-09 15:08:12 +0000390 for (; p < NumParams; ++p) {
Chris Lattner3d1cee32008-04-08 05:04:30 +0000391 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson5f49a0c2009-08-25 01:23:32 +0000392 if (!Param->hasDefaultArg()) {
Douglas Gregor72b505b2008-12-16 21:30:33 +0000393 if (Param->isInvalidDecl())
394 /* We already complained about this parameter. */;
395 else if (Param->getIdentifier())
Mike Stump1eb44332009-09-09 15:08:12 +0000396 Diag(Param->getLocation(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000397 diag::err_param_default_argument_missing_name)
Chris Lattner43b628c2008-11-19 07:32:16 +0000398 << Param->getIdentifier();
Chris Lattner3d1cee32008-04-08 05:04:30 +0000399 else
Mike Stump1eb44332009-09-09 15:08:12 +0000400 Diag(Param->getLocation(),
Chris Lattner3d1cee32008-04-08 05:04:30 +0000401 diag::err_param_default_argument_missing);
Mike Stump1eb44332009-09-09 15:08:12 +0000402
Chris Lattner3d1cee32008-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 Carlsson5e300d12009-06-12 16:51:40 +0000414 if (Param->hasDefaultArg()) {
Chris Lattner3d1cee32008-04-08 05:04:30 +0000415 Param->setDefaultArg(0);
416 }
417 }
418 }
419}
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000420
Douglas Gregorb48fe382008-10-31 09:07:45 +0000421/// isCurrentClassName - Determine whether the identifier II is the
422/// name of the class type currently being defined. In the case of
423/// nested classes, this will only return true if II is the name of
424/// the innermost class.
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000425bool Sema::isCurrentClassName(const IdentifierInfo &II, Scope *,
426 const CXXScopeSpec *SS) {
Douglas Gregorb862b8f2010-01-11 23:29:10 +0000427 assert(getLangOptions().CPlusPlus && "No class names in C!");
428
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +0000429 CXXRecordDecl *CurDecl;
Douglas Gregore4e5b052009-03-19 00:18:19 +0000430 if (SS && SS->isSet() && !SS->isInvalid()) {
Douglas Gregorac373c42009-08-21 22:16:40 +0000431 DeclContext *DC = computeDeclContext(*SS, true);
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +0000432 CurDecl = dyn_cast_or_null<CXXRecordDecl>(DC);
433 } else
434 CurDecl = dyn_cast_or_null<CXXRecordDecl>(CurContext);
435
Douglas Gregor6f7a17b2010-02-05 06:12:42 +0000436 if (CurDecl && CurDecl->getIdentifier())
Douglas Gregorb48fe382008-10-31 09:07:45 +0000437 return &II == CurDecl->getIdentifier();
438 else
439 return false;
440}
441
Mike Stump1eb44332009-09-09 15:08:12 +0000442/// \brief Check the validity of a C++ base class specifier.
Douglas Gregor2943aed2009-03-03 04:44:36 +0000443///
444/// \returns a new CXXBaseSpecifier if well-formed, emits diagnostics
445/// and returns NULL otherwise.
446CXXBaseSpecifier *
447Sema::CheckBaseSpecifier(CXXRecordDecl *Class,
448 SourceRange SpecifierRange,
449 bool Virtual, AccessSpecifier Access,
Nick Lewycky56062202010-07-26 16:56:01 +0000450 TypeSourceInfo *TInfo) {
451 QualType BaseType = TInfo->getType();
452
Douglas Gregor2943aed2009-03-03 04:44:36 +0000453 // C++ [class.union]p1:
454 // A union shall not have base classes.
455 if (Class->isUnion()) {
456 Diag(Class->getLocation(), diag::err_base_clause_on_union)
457 << SpecifierRange;
458 return 0;
459 }
460
461 if (BaseType->isDependentType())
Mike Stump1eb44332009-09-09 15:08:12 +0000462 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
Nick Lewycky56062202010-07-26 16:56:01 +0000463 Class->getTagKind() == TTK_Class,
464 Access, TInfo);
465
466 SourceLocation BaseLoc = TInfo->getTypeLoc().getBeginLoc();
Douglas Gregor2943aed2009-03-03 04:44:36 +0000467
468 // Base specifiers must be record types.
469 if (!BaseType->isRecordType()) {
470 Diag(BaseLoc, diag::err_base_must_be_class) << SpecifierRange;
471 return 0;
472 }
473
474 // C++ [class.union]p1:
475 // A union shall not be used as a base class.
476 if (BaseType->isUnionType()) {
477 Diag(BaseLoc, diag::err_union_as_base_class) << SpecifierRange;
478 return 0;
479 }
480
481 // C++ [class.derived]p2:
482 // The class-name in a base-specifier shall not be an incompletely
483 // defined class.
Mike Stump1eb44332009-09-09 15:08:12 +0000484 if (RequireCompleteType(BaseLoc, BaseType,
Anders Carlssonb7906612009-08-26 23:45:07 +0000485 PDiag(diag::err_incomplete_base_class)
486 << SpecifierRange))
Douglas Gregor2943aed2009-03-03 04:44:36 +0000487 return 0;
488
Eli Friedman1d954f62009-08-15 21:55:26 +0000489 // If the base class is polymorphic or isn't empty, the new one is/isn't, too.
Ted Kremenek6217b802009-07-29 21:53:49 +0000490 RecordDecl *BaseDecl = BaseType->getAs<RecordType>()->getDecl();
Douglas Gregor2943aed2009-03-03 04:44:36 +0000491 assert(BaseDecl && "Record type has no declaration");
Douglas Gregor952b0172010-02-11 01:04:33 +0000492 BaseDecl = BaseDecl->getDefinition();
Douglas Gregor2943aed2009-03-03 04:44:36 +0000493 assert(BaseDecl && "Base type is not incomplete, but has no definition");
Eli Friedman1d954f62009-08-15 21:55:26 +0000494 CXXRecordDecl * CXXBaseDecl = cast<CXXRecordDecl>(BaseDecl);
495 assert(CXXBaseDecl && "Base type is not a C++ type");
Eli Friedmand0137332009-12-05 23:03:49 +0000496
Sean Huntbbd37c62009-11-21 08:43:09 +0000497 // C++0x CWG Issue #817 indicates that [[final]] classes shouldn't be bases.
498 if (CXXBaseDecl->hasAttr<FinalAttr>()) {
499 Diag(BaseLoc, diag::err_final_base) << BaseType.getAsString();
Douglas Gregor9af2f522009-12-01 16:58:18 +0000500 Diag(CXXBaseDecl->getLocation(), diag::note_previous_decl)
501 << BaseType;
Sean Huntbbd37c62009-11-21 08:43:09 +0000502 return 0;
503 }
Douglas Gregor2943aed2009-03-03 04:44:36 +0000504
Eli Friedmand0137332009-12-05 23:03:49 +0000505 SetClassDeclAttributesFromBase(Class, CXXBaseDecl, Virtual);
Anders Carlsson51f94042009-12-03 17:49:57 +0000506
507 // Create the base specifier.
Anders Carlsson51f94042009-12-03 17:49:57 +0000508 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
Nick Lewycky56062202010-07-26 16:56:01 +0000509 Class->getTagKind() == TTK_Class,
510 Access, TInfo);
Anders Carlsson51f94042009-12-03 17:49:57 +0000511}
512
513void Sema::SetClassDeclAttributesFromBase(CXXRecordDecl *Class,
514 const CXXRecordDecl *BaseClass,
515 bool BaseIsVirtual) {
Eli Friedmand0137332009-12-05 23:03:49 +0000516 // A class with a non-empty base class is not empty.
517 // FIXME: Standard ref?
518 if (!BaseClass->isEmpty())
519 Class->setEmpty(false);
520
521 // C++ [class.virtual]p1:
522 // A class that [...] inherits a virtual function is called a polymorphic
523 // class.
524 if (BaseClass->isPolymorphic())
525 Class->setPolymorphic(true);
Anders Carlsson51f94042009-12-03 17:49:57 +0000526
Douglas Gregor2943aed2009-03-03 04:44:36 +0000527 // C++ [dcl.init.aggr]p1:
528 // An aggregate is [...] a class with [...] no base classes [...].
529 Class->setAggregate(false);
Eli Friedmand0137332009-12-05 23:03:49 +0000530
531 // C++ [class]p4:
532 // A POD-struct is an aggregate class...
Douglas Gregor2943aed2009-03-03 04:44:36 +0000533 Class->setPOD(false);
534
Anders Carlsson51f94042009-12-03 17:49:57 +0000535 if (BaseIsVirtual) {
Anders Carlsson347ba892009-04-16 00:08:20 +0000536 // C++ [class.ctor]p5:
537 // A constructor is trivial if its class has no virtual base classes.
538 Class->setHasTrivialConstructor(false);
Douglas Gregor1f2023a2009-07-22 18:25:24 +0000539
540 // C++ [class.copy]p6:
541 // A copy constructor is trivial if its class has no virtual base classes.
542 Class->setHasTrivialCopyConstructor(false);
543
544 // C++ [class.copy]p11:
545 // A copy assignment operator is trivial if its class has no virtual
546 // base classes.
547 Class->setHasTrivialCopyAssignment(false);
Eli Friedman1d954f62009-08-15 21:55:26 +0000548
549 // C++0x [meta.unary.prop] is_empty:
550 // T is a class type, but not a union type, with ... no virtual base
551 // classes
552 Class->setEmpty(false);
Anders Carlsson347ba892009-04-16 00:08:20 +0000553 } else {
554 // C++ [class.ctor]p5:
Mike Stump1eb44332009-09-09 15:08:12 +0000555 // A constructor is trivial if all the direct base classes of its
Anders Carlsson347ba892009-04-16 00:08:20 +0000556 // class have trivial constructors.
Anders Carlsson51f94042009-12-03 17:49:57 +0000557 if (!BaseClass->hasTrivialConstructor())
Douglas Gregor1f2023a2009-07-22 18:25:24 +0000558 Class->setHasTrivialConstructor(false);
559
560 // C++ [class.copy]p6:
561 // A copy constructor is trivial if all the direct base classes of its
562 // class have trivial copy constructors.
Anders Carlsson51f94042009-12-03 17:49:57 +0000563 if (!BaseClass->hasTrivialCopyConstructor())
Douglas Gregor1f2023a2009-07-22 18:25:24 +0000564 Class->setHasTrivialCopyConstructor(false);
565
566 // C++ [class.copy]p11:
567 // A copy assignment operator is trivial if all the direct base classes
568 // of its class have trivial copy assignment operators.
Anders Carlsson51f94042009-12-03 17:49:57 +0000569 if (!BaseClass->hasTrivialCopyAssignment())
Douglas Gregor1f2023a2009-07-22 18:25:24 +0000570 Class->setHasTrivialCopyAssignment(false);
Anders Carlsson347ba892009-04-16 00:08:20 +0000571 }
Anders Carlsson072abef2009-04-17 02:34:54 +0000572
573 // C++ [class.ctor]p3:
574 // A destructor is trivial if all the direct base classes of its class
575 // have trivial destructors.
Anders Carlsson51f94042009-12-03 17:49:57 +0000576 if (!BaseClass->hasTrivialDestructor())
Douglas Gregor1f2023a2009-07-22 18:25:24 +0000577 Class->setHasTrivialDestructor(false);
Douglas Gregor2943aed2009-03-03 04:44:36 +0000578}
579
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000580/// ActOnBaseSpecifier - Parsed a base specifier. A base specifier is
581/// one entry in the base class list of a class specifier, for
Mike Stump1eb44332009-09-09 15:08:12 +0000582/// example:
583/// class foo : public bar, virtual private baz {
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000584/// 'public bar' and 'virtual private baz' are each base-specifiers.
Mike Stump1eb44332009-09-09 15:08:12 +0000585Sema::BaseResult
Chris Lattnerb28317a2009-03-28 19:18:32 +0000586Sema::ActOnBaseSpecifier(DeclPtrTy classdecl, SourceRange SpecifierRange,
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000587 bool Virtual, AccessSpecifier Access,
588 TypeTy *basetype, SourceLocation BaseLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000589 if (!classdecl)
590 return true;
591
Douglas Gregor40808ce2009-03-09 23:48:35 +0000592 AdjustDeclIfTemplate(classdecl);
Douglas Gregor5fe8c042010-02-27 00:25:28 +0000593 CXXRecordDecl *Class = dyn_cast<CXXRecordDecl>(classdecl.getAs<Decl>());
594 if (!Class)
595 return true;
596
Nick Lewycky56062202010-07-26 16:56:01 +0000597 TypeSourceInfo *TInfo = 0;
598 GetTypeFromParser(basetype, &TInfo);
Douglas Gregor2943aed2009-03-03 04:44:36 +0000599 if (CXXBaseSpecifier *BaseSpec = CheckBaseSpecifier(Class, SpecifierRange,
Nick Lewycky56062202010-07-26 16:56:01 +0000600 Virtual, Access, TInfo))
Douglas Gregor2943aed2009-03-03 04:44:36 +0000601 return BaseSpec;
Mike Stump1eb44332009-09-09 15:08:12 +0000602
Douglas Gregor2943aed2009-03-03 04:44:36 +0000603 return true;
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000604}
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000605
Douglas Gregor2943aed2009-03-03 04:44:36 +0000606/// \brief Performs the actual work of attaching the given base class
607/// specifiers to a C++ class.
608bool Sema::AttachBaseSpecifiers(CXXRecordDecl *Class, CXXBaseSpecifier **Bases,
609 unsigned NumBases) {
610 if (NumBases == 0)
611 return false;
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000612
613 // Used to keep track of which base types we have already seen, so
614 // that we can properly diagnose redundant direct base types. Note
Douglas Gregor57c856b2008-10-23 18:13:27 +0000615 // that the key is always the unqualified canonical type of the base
616 // class.
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000617 std::map<QualType, CXXBaseSpecifier*, QualTypeOrdering> KnownBaseTypes;
618
619 // Copy non-redundant base specifiers into permanent storage.
Douglas Gregor57c856b2008-10-23 18:13:27 +0000620 unsigned NumGoodBases = 0;
Douglas Gregor2943aed2009-03-03 04:44:36 +0000621 bool Invalid = false;
Douglas Gregor57c856b2008-10-23 18:13:27 +0000622 for (unsigned idx = 0; idx < NumBases; ++idx) {
Mike Stump1eb44332009-09-09 15:08:12 +0000623 QualType NewBaseType
Douglas Gregor2943aed2009-03-03 04:44:36 +0000624 = Context.getCanonicalType(Bases[idx]->getType());
Douglas Gregora4923eb2009-11-16 21:35:15 +0000625 NewBaseType = NewBaseType.getLocalUnqualifiedType();
Fariborz Jahanian0ed5c5d2010-05-20 23:34:56 +0000626 if (!Class->hasObjectMember()) {
627 if (const RecordType *FDTTy =
628 NewBaseType.getTypePtr()->getAs<RecordType>())
629 if (FDTTy->getDecl()->hasObjectMember())
630 Class->setHasObjectMember(true);
631 }
632
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000633 if (KnownBaseTypes[NewBaseType]) {
634 // C++ [class.mi]p3:
635 // A class shall not be specified as a direct base class of a
636 // derived class more than once.
Douglas Gregor2943aed2009-03-03 04:44:36 +0000637 Diag(Bases[idx]->getSourceRange().getBegin(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000638 diag::err_duplicate_base_class)
Chris Lattnerd1625842008-11-24 06:25:27 +0000639 << KnownBaseTypes[NewBaseType]->getType()
Douglas Gregor2943aed2009-03-03 04:44:36 +0000640 << Bases[idx]->getSourceRange();
Douglas Gregor57c856b2008-10-23 18:13:27 +0000641
642 // Delete the duplicate base class specifier; we're going to
643 // overwrite its pointer later.
Douglas Gregor2aef06d2009-07-22 20:55:49 +0000644 Context.Deallocate(Bases[idx]);
Douglas Gregor2943aed2009-03-03 04:44:36 +0000645
646 Invalid = true;
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000647 } else {
648 // Okay, add this new base class.
Douglas Gregor2943aed2009-03-03 04:44:36 +0000649 KnownBaseTypes[NewBaseType] = Bases[idx];
650 Bases[NumGoodBases++] = Bases[idx];
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000651 }
652 }
653
654 // Attach the remaining base class specifiers to the derived class.
Douglas Gregor2d5b7032010-02-11 01:30:34 +0000655 Class->setBases(Bases, NumGoodBases);
Douglas Gregor57c856b2008-10-23 18:13:27 +0000656
657 // Delete the remaining (good) base class specifiers, since their
658 // data has been copied into the CXXRecordDecl.
659 for (unsigned idx = 0; idx < NumGoodBases; ++idx)
Douglas Gregor2aef06d2009-07-22 20:55:49 +0000660 Context.Deallocate(Bases[idx]);
Douglas Gregor2943aed2009-03-03 04:44:36 +0000661
662 return Invalid;
663}
664
665/// ActOnBaseSpecifiers - Attach the given base specifiers to the
666/// class, after checking whether there are any duplicate base
667/// classes.
Mike Stump1eb44332009-09-09 15:08:12 +0000668void Sema::ActOnBaseSpecifiers(DeclPtrTy ClassDecl, BaseTy **Bases,
Douglas Gregor2943aed2009-03-03 04:44:36 +0000669 unsigned NumBases) {
670 if (!ClassDecl || !Bases || !NumBases)
671 return;
672
673 AdjustDeclIfTemplate(ClassDecl);
Chris Lattnerb28317a2009-03-28 19:18:32 +0000674 AttachBaseSpecifiers(cast<CXXRecordDecl>(ClassDecl.getAs<Decl>()),
Douglas Gregor2943aed2009-03-03 04:44:36 +0000675 (CXXBaseSpecifier**)(Bases), NumBases);
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000676}
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +0000677
John McCall3cb0ebd2010-03-10 03:28:59 +0000678static CXXRecordDecl *GetClassForType(QualType T) {
679 if (const RecordType *RT = T->getAs<RecordType>())
680 return cast<CXXRecordDecl>(RT->getDecl());
681 else if (const InjectedClassNameType *ICT = T->getAs<InjectedClassNameType>())
682 return ICT->getDecl();
683 else
684 return 0;
685}
686
Douglas Gregora8f32e02009-10-06 17:59:45 +0000687/// \brief Determine whether the type \p Derived is a C++ class that is
688/// derived from the type \p Base.
689bool Sema::IsDerivedFrom(QualType Derived, QualType Base) {
690 if (!getLangOptions().CPlusPlus)
691 return false;
John McCall3cb0ebd2010-03-10 03:28:59 +0000692
693 CXXRecordDecl *DerivedRD = GetClassForType(Derived);
694 if (!DerivedRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +0000695 return false;
696
John McCall3cb0ebd2010-03-10 03:28:59 +0000697 CXXRecordDecl *BaseRD = GetClassForType(Base);
698 if (!BaseRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +0000699 return false;
700
John McCall86ff3082010-02-04 22:26:26 +0000701 // FIXME: instantiate DerivedRD if necessary. We need a PoI for this.
702 return DerivedRD->hasDefinition() && DerivedRD->isDerivedFrom(BaseRD);
Douglas Gregora8f32e02009-10-06 17:59:45 +0000703}
704
705/// \brief Determine whether the type \p Derived is a C++ class that is
706/// derived from the type \p Base.
707bool Sema::IsDerivedFrom(QualType Derived, QualType Base, CXXBasePaths &Paths) {
708 if (!getLangOptions().CPlusPlus)
709 return false;
710
John McCall3cb0ebd2010-03-10 03:28:59 +0000711 CXXRecordDecl *DerivedRD = GetClassForType(Derived);
712 if (!DerivedRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +0000713 return false;
714
John McCall3cb0ebd2010-03-10 03:28:59 +0000715 CXXRecordDecl *BaseRD = GetClassForType(Base);
716 if (!BaseRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +0000717 return false;
718
Douglas Gregora8f32e02009-10-06 17:59:45 +0000719 return DerivedRD->isDerivedFrom(BaseRD, Paths);
720}
721
Anders Carlsson5cf86ba2010-04-24 19:06:50 +0000722void Sema::BuildBasePathArray(const CXXBasePaths &Paths,
723 CXXBaseSpecifierArray &BasePathArray) {
724 assert(BasePathArray.empty() && "Base path array must be empty!");
725 assert(Paths.isRecordingPaths() && "Must record paths!");
726
727 const CXXBasePath &Path = Paths.front();
728
729 // We first go backward and check if we have a virtual base.
730 // FIXME: It would be better if CXXBasePath had the base specifier for
731 // the nearest virtual base.
732 unsigned Start = 0;
733 for (unsigned I = Path.size(); I != 0; --I) {
734 if (Path[I - 1].Base->isVirtual()) {
735 Start = I - 1;
736 break;
737 }
738 }
739
740 // Now add all bases.
741 for (unsigned I = Start, E = Path.size(); I != E; ++I)
742 BasePathArray.push_back(Path[I].Base);
743}
744
Douglas Gregor6fb745b2010-05-13 16:44:06 +0000745/// \brief Determine whether the given base path includes a virtual
746/// base class.
747bool Sema::BasePathInvolvesVirtualBase(const CXXBaseSpecifierArray &BasePath) {
748 for (CXXBaseSpecifierArray::iterator B = BasePath.begin(),
749 BEnd = BasePath.end();
750 B != BEnd; ++B)
751 if ((*B)->isVirtual())
752 return true;
753
754 return false;
755}
756
Douglas Gregora8f32e02009-10-06 17:59:45 +0000757/// CheckDerivedToBaseConversion - Check whether the Derived-to-Base
758/// conversion (where Derived and Base are class types) is
759/// well-formed, meaning that the conversion is unambiguous (and
760/// that all of the base classes are accessible). Returns true
761/// and emits a diagnostic if the code is ill-formed, returns false
762/// otherwise. Loc is the location where this routine should point to
763/// if there is an error, and Range is the source range to highlight
764/// if there is an error.
765bool
766Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
John McCall58e6f342010-03-16 05:22:47 +0000767 unsigned InaccessibleBaseID,
Douglas Gregora8f32e02009-10-06 17:59:45 +0000768 unsigned AmbigiousBaseConvID,
769 SourceLocation Loc, SourceRange Range,
Anders Carlssone25a96c2010-04-24 17:11:09 +0000770 DeclarationName Name,
771 CXXBaseSpecifierArray *BasePath) {
Douglas Gregora8f32e02009-10-06 17:59:45 +0000772 // First, determine whether the path from Derived to Base is
773 // ambiguous. This is slightly more expensive than checking whether
774 // the Derived to Base conversion exists, because here we need to
775 // explore multiple paths to determine if there is an ambiguity.
776 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
777 /*DetectVirtual=*/false);
778 bool DerivationOkay = IsDerivedFrom(Derived, Base, Paths);
779 assert(DerivationOkay &&
780 "Can only be used with a derived-to-base conversion");
781 (void)DerivationOkay;
782
783 if (!Paths.isAmbiguous(Context.getCanonicalType(Base).getUnqualifiedType())) {
Anders Carlsson5cf86ba2010-04-24 19:06:50 +0000784 if (InaccessibleBaseID) {
785 // Check that the base class can be accessed.
786 switch (CheckBaseClassAccess(Loc, Base, Derived, Paths.front(),
787 InaccessibleBaseID)) {
788 case AR_inaccessible:
789 return true;
790 case AR_accessible:
791 case AR_dependent:
792 case AR_delayed:
793 break;
Anders Carlssone25a96c2010-04-24 17:11:09 +0000794 }
John McCall6b2accb2010-02-10 09:31:12 +0000795 }
Anders Carlsson5cf86ba2010-04-24 19:06:50 +0000796
797 // Build a base path if necessary.
798 if (BasePath)
799 BuildBasePathArray(Paths, *BasePath);
800 return false;
Douglas Gregora8f32e02009-10-06 17:59:45 +0000801 }
802
803 // We know that the derived-to-base conversion is ambiguous, and
804 // we're going to produce a diagnostic. Perform the derived-to-base
805 // search just one more time to compute all of the possible paths so
806 // that we can print them out. This is more expensive than any of
807 // the previous derived-to-base checks we've done, but at this point
808 // performance isn't as much of an issue.
809 Paths.clear();
810 Paths.setRecordingPaths(true);
811 bool StillOkay = IsDerivedFrom(Derived, Base, Paths);
812 assert(StillOkay && "Can only be used with a derived-to-base conversion");
813 (void)StillOkay;
814
815 // Build up a textual representation of the ambiguous paths, e.g.,
816 // D -> B -> A, that will be used to illustrate the ambiguous
817 // conversions in the diagnostic. We only print one of the paths
818 // to each base class subobject.
819 std::string PathDisplayStr = getAmbiguousPathsDisplayString(Paths);
820
821 Diag(Loc, AmbigiousBaseConvID)
822 << Derived << Base << PathDisplayStr << Range << Name;
823 return true;
824}
825
826bool
827Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
Sebastian Redla82e4ae2009-11-14 21:15:49 +0000828 SourceLocation Loc, SourceRange Range,
Anders Carlssone25a96c2010-04-24 17:11:09 +0000829 CXXBaseSpecifierArray *BasePath,
Sebastian Redla82e4ae2009-11-14 21:15:49 +0000830 bool IgnoreAccess) {
Douglas Gregora8f32e02009-10-06 17:59:45 +0000831 return CheckDerivedToBaseConversion(Derived, Base,
John McCall58e6f342010-03-16 05:22:47 +0000832 IgnoreAccess ? 0
833 : diag::err_upcast_to_inaccessible_base,
Douglas Gregora8f32e02009-10-06 17:59:45 +0000834 diag::err_ambiguous_derived_to_base_conv,
Anders Carlssone25a96c2010-04-24 17:11:09 +0000835 Loc, Range, DeclarationName(),
836 BasePath);
Douglas Gregora8f32e02009-10-06 17:59:45 +0000837}
838
839
840/// @brief Builds a string representing ambiguous paths from a
841/// specific derived class to different subobjects of the same base
842/// class.
843///
844/// This function builds a string that can be used in error messages
845/// to show the different paths that one can take through the
846/// inheritance hierarchy to go from the derived class to different
847/// subobjects of a base class. The result looks something like this:
848/// @code
849/// struct D -> struct B -> struct A
850/// struct D -> struct C -> struct A
851/// @endcode
852std::string Sema::getAmbiguousPathsDisplayString(CXXBasePaths &Paths) {
853 std::string PathDisplayStr;
854 std::set<unsigned> DisplayedPaths;
855 for (CXXBasePaths::paths_iterator Path = Paths.begin();
856 Path != Paths.end(); ++Path) {
857 if (DisplayedPaths.insert(Path->back().SubobjectNumber).second) {
858 // We haven't displayed a path to this particular base
859 // class subobject yet.
860 PathDisplayStr += "\n ";
861 PathDisplayStr += Context.getTypeDeclType(Paths.getOrigin()).getAsString();
862 for (CXXBasePath::const_iterator Element = Path->begin();
863 Element != Path->end(); ++Element)
864 PathDisplayStr += " -> " + Element->Base->getType().getAsString();
865 }
866 }
867
868 return PathDisplayStr;
869}
870
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000871//===----------------------------------------------------------------------===//
872// C++ class member Handling
873//===----------------------------------------------------------------------===//
874
Abramo Bagnara6206d532010-06-05 05:09:32 +0000875/// ActOnAccessSpecifier - Parsed an access specifier followed by a colon.
876Sema::DeclPtrTy
877Sema::ActOnAccessSpecifier(AccessSpecifier Access,
878 SourceLocation ASLoc, SourceLocation ColonLoc) {
879 assert(Access != AS_none && "Invalid kind for syntactic access specifier!");
880 AccessSpecDecl* ASDecl = AccessSpecDecl::Create(Context, Access, CurContext,
881 ASLoc, ColonLoc);
882 CurContext->addHiddenDecl(ASDecl);
883 return DeclPtrTy::make(ASDecl);
884}
885
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000886/// ActOnCXXMemberDeclarator - This is invoked when a C++ class member
887/// declarator is parsed. 'AS' is the access specifier, 'BW' specifies the
888/// bitfield width if there is one and 'InitExpr' specifies the initializer if
Chris Lattnerb6688e02009-04-12 22:37:57 +0000889/// any.
Chris Lattnerb28317a2009-03-28 19:18:32 +0000890Sema::DeclPtrTy
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000891Sema::ActOnCXXMemberDeclarator(Scope *S, AccessSpecifier AS, Declarator &D,
Douglas Gregor37b372b2009-08-20 22:52:58 +0000892 MultiTemplateParamsArg TemplateParameterLists,
Sebastian Redld1a78462009-11-24 23:38:44 +0000893 ExprTy *BW, ExprTy *InitExpr, bool IsDefinition,
894 bool Deleted) {
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000895 const DeclSpec &DS = D.getDeclSpec();
Douglas Gregor10bd3682008-11-17 22:58:34 +0000896 DeclarationName Name = GetNameForDeclarator(D);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000897 Expr *BitWidth = static_cast<Expr*>(BW);
898 Expr *Init = static_cast<Expr*>(InitExpr);
899 SourceLocation Loc = D.getIdentifierLoc();
900
John McCall4bde1e12010-06-04 08:34:12 +0000901 assert(isa<CXXRecordDecl>(CurContext));
John McCall67d1a672009-08-06 02:15:43 +0000902 assert(!DS.isFriendSpecified());
903
John McCall4bde1e12010-06-04 08:34:12 +0000904 bool isFunc = false;
905 if (D.isFunctionDeclarator())
906 isFunc = true;
907 else if (D.getNumTypeObjects() == 0 &&
908 D.getDeclSpec().getTypeSpecType() == DeclSpec::TST_typename) {
909 QualType TDType = GetTypeFromParser(DS.getTypeRep());
910 isFunc = TDType->isFunctionType();
911 }
912
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000913 // C++ 9.2p6: A member shall not be declared to have automatic storage
914 // duration (auto, register) or with the extern storage-class-specifier.
Sebastian Redl669d5d72008-11-14 23:42:31 +0000915 // C++ 7.1.1p8: The mutable specifier can be applied only to names of class
916 // data members and cannot be applied to names declared const or static,
917 // and cannot be applied to reference members.
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000918 switch (DS.getStorageClassSpec()) {
919 case DeclSpec::SCS_unspecified:
920 case DeclSpec::SCS_typedef:
921 case DeclSpec::SCS_static:
922 // FALL THROUGH.
923 break;
Sebastian Redl669d5d72008-11-14 23:42:31 +0000924 case DeclSpec::SCS_mutable:
925 if (isFunc) {
926 if (DS.getStorageClassSpecLoc().isValid())
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000927 Diag(DS.getStorageClassSpecLoc(), diag::err_mutable_function);
Sebastian Redl669d5d72008-11-14 23:42:31 +0000928 else
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000929 Diag(DS.getThreadSpecLoc(), diag::err_mutable_function);
Mike Stump1eb44332009-09-09 15:08:12 +0000930
Sebastian Redla11f42f2008-11-17 23:24:37 +0000931 // FIXME: It would be nicer if the keyword was ignored only for this
932 // declarator. Otherwise we could get follow-up errors.
Sebastian Redl669d5d72008-11-14 23:42:31 +0000933 D.getMutableDeclSpec().ClearStorageClassSpecs();
Sebastian Redl669d5d72008-11-14 23:42:31 +0000934 }
935 break;
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000936 default:
937 if (DS.getStorageClassSpecLoc().isValid())
938 Diag(DS.getStorageClassSpecLoc(),
939 diag::err_storageclass_invalid_for_member);
940 else
941 Diag(DS.getThreadSpecLoc(), diag::err_storageclass_invalid_for_member);
942 D.getMutableDeclSpec().ClearStorageClassSpecs();
943 }
944
Sebastian Redl669d5d72008-11-14 23:42:31 +0000945 bool isInstField = ((DS.getStorageClassSpec() == DeclSpec::SCS_unspecified ||
946 DS.getStorageClassSpec() == DeclSpec::SCS_mutable) &&
Argyrios Kyrtzidisde933f02008-10-08 22:20:31 +0000947 !isFunc);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000948
949 Decl *Member;
Chris Lattner24793662009-03-05 22:45:59 +0000950 if (isInstField) {
Douglas Gregor37b372b2009-08-20 22:52:58 +0000951 // FIXME: Check for template parameters!
Douglas Gregor4dd55f52009-03-11 20:50:30 +0000952 Member = HandleField(S, cast<CXXRecordDecl>(CurContext), Loc, D, BitWidth,
953 AS);
Chris Lattner6f8ce142009-03-05 23:03:49 +0000954 assert(Member && "HandleField never returns null");
Chris Lattner24793662009-03-05 22:45:59 +0000955 } else {
Sebastian Redld1a78462009-11-24 23:38:44 +0000956 Member = HandleDeclarator(S, D, move(TemplateParameterLists), IsDefinition)
Douglas Gregor37b372b2009-08-20 22:52:58 +0000957 .getAs<Decl>();
Chris Lattner6f8ce142009-03-05 23:03:49 +0000958 if (!Member) {
959 if (BitWidth) DeleteExpr(BitWidth);
Chris Lattner682bf922009-03-29 16:50:03 +0000960 return DeclPtrTy();
Chris Lattner6f8ce142009-03-05 23:03:49 +0000961 }
Chris Lattner8b963ef2009-03-05 23:01:03 +0000962
963 // Non-instance-fields can't have a bitfield.
964 if (BitWidth) {
965 if (Member->isInvalidDecl()) {
966 // don't emit another diagnostic.
Douglas Gregor2d2e9cf2009-03-11 20:22:50 +0000967 } else if (isa<VarDecl>(Member)) {
Chris Lattner8b963ef2009-03-05 23:01:03 +0000968 // C++ 9.6p3: A bit-field shall not be a static member.
969 // "static member 'A' cannot be a bit-field"
970 Diag(Loc, diag::err_static_not_bitfield)
971 << Name << BitWidth->getSourceRange();
972 } else if (isa<TypedefDecl>(Member)) {
973 // "typedef member 'x' cannot be a bit-field"
974 Diag(Loc, diag::err_typedef_not_bitfield)
975 << Name << BitWidth->getSourceRange();
976 } else {
977 // A function typedef ("typedef int f(); f a;").
978 // C++ 9.6p3: A bit-field shall have integral or enumeration type.
979 Diag(Loc, diag::err_not_integral_type_bitfield)
Mike Stump1eb44332009-09-09 15:08:12 +0000980 << Name << cast<ValueDecl>(Member)->getType()
Douglas Gregor3cf538d2009-03-11 18:59:21 +0000981 << BitWidth->getSourceRange();
Chris Lattner8b963ef2009-03-05 23:01:03 +0000982 }
Mike Stump1eb44332009-09-09 15:08:12 +0000983
Chris Lattner8b963ef2009-03-05 23:01:03 +0000984 DeleteExpr(BitWidth);
985 BitWidth = 0;
986 Member->setInvalidDecl();
987 }
Douglas Gregor4dd55f52009-03-11 20:50:30 +0000988
989 Member->setAccess(AS);
Mike Stump1eb44332009-09-09 15:08:12 +0000990
Douglas Gregor37b372b2009-08-20 22:52:58 +0000991 // If we have declared a member function template, set the access of the
992 // templated declaration as well.
993 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Member))
994 FunTmpl->getTemplatedDecl()->setAccess(AS);
Chris Lattner24793662009-03-05 22:45:59 +0000995 }
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000996
Douglas Gregor10bd3682008-11-17 22:58:34 +0000997 assert((Name || isInstField) && "No identifier for non-field ?");
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000998
Douglas Gregor021c3b32009-03-11 23:00:04 +0000999 if (Init)
Chris Lattnerb28317a2009-03-28 19:18:32 +00001000 AddInitializerToDecl(DeclPtrTy::make(Member), ExprArg(*this, Init), false);
Sebastian Redle2b68332009-04-12 17:16:29 +00001001 if (Deleted) // FIXME: Source location is not very good.
1002 SetDeclDeleted(DeclPtrTy::make(Member), D.getSourceRange().getBegin());
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001003
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001004 if (isInstField) {
Douglas Gregor44b43212008-12-11 16:49:14 +00001005 FieldCollector->Add(cast<FieldDecl>(Member));
Chris Lattner682bf922009-03-29 16:50:03 +00001006 return DeclPtrTy();
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001007 }
Chris Lattnerb28317a2009-03-28 19:18:32 +00001008 return DeclPtrTy::make(Member);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001009}
1010
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001011/// \brief Find the direct and/or virtual base specifiers that
1012/// correspond to the given base type, for use in base initialization
1013/// within a constructor.
1014static bool FindBaseInitializer(Sema &SemaRef,
1015 CXXRecordDecl *ClassDecl,
1016 QualType BaseType,
1017 const CXXBaseSpecifier *&DirectBaseSpec,
1018 const CXXBaseSpecifier *&VirtualBaseSpec) {
1019 // First, check for a direct base class.
1020 DirectBaseSpec = 0;
1021 for (CXXRecordDecl::base_class_const_iterator Base
1022 = ClassDecl->bases_begin();
1023 Base != ClassDecl->bases_end(); ++Base) {
1024 if (SemaRef.Context.hasSameUnqualifiedType(BaseType, Base->getType())) {
1025 // We found a direct base of this type. That's what we're
1026 // initializing.
1027 DirectBaseSpec = &*Base;
1028 break;
1029 }
1030 }
1031
1032 // Check for a virtual base class.
1033 // FIXME: We might be able to short-circuit this if we know in advance that
1034 // there are no virtual bases.
1035 VirtualBaseSpec = 0;
1036 if (!DirectBaseSpec || !DirectBaseSpec->isVirtual()) {
1037 // We haven't found a base yet; search the class hierarchy for a
1038 // virtual base class.
1039 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
1040 /*DetectVirtual=*/false);
1041 if (SemaRef.IsDerivedFrom(SemaRef.Context.getTypeDeclType(ClassDecl),
1042 BaseType, Paths)) {
1043 for (CXXBasePaths::paths_iterator Path = Paths.begin();
1044 Path != Paths.end(); ++Path) {
1045 if (Path->back().Base->isVirtual()) {
1046 VirtualBaseSpec = Path->back().Base;
1047 break;
1048 }
1049 }
1050 }
1051 }
1052
1053 return DirectBaseSpec || VirtualBaseSpec;
1054}
1055
Douglas Gregor7ad83902008-11-05 04:29:56 +00001056/// ActOnMemInitializer - Handle a C++ member initializer.
Mike Stump1eb44332009-09-09 15:08:12 +00001057Sema::MemInitResult
Chris Lattnerb28317a2009-03-28 19:18:32 +00001058Sema::ActOnMemInitializer(DeclPtrTy ConstructorD,
Douglas Gregor7ad83902008-11-05 04:29:56 +00001059 Scope *S,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00001060 CXXScopeSpec &SS,
Douglas Gregor7ad83902008-11-05 04:29:56 +00001061 IdentifierInfo *MemberOrBase,
Fariborz Jahanian96174332009-07-01 19:21:19 +00001062 TypeTy *TemplateTypeTy,
Douglas Gregor7ad83902008-11-05 04:29:56 +00001063 SourceLocation IdLoc,
1064 SourceLocation LParenLoc,
1065 ExprTy **Args, unsigned NumArgs,
1066 SourceLocation *CommaLocs,
1067 SourceLocation RParenLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00001068 if (!ConstructorD)
1069 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001070
Douglas Gregorefd5bda2009-08-24 11:57:43 +00001071 AdjustDeclIfTemplate(ConstructorD);
Mike Stump1eb44332009-09-09 15:08:12 +00001072
1073 CXXConstructorDecl *Constructor
Chris Lattnerb28317a2009-03-28 19:18:32 +00001074 = dyn_cast<CXXConstructorDecl>(ConstructorD.getAs<Decl>());
Douglas Gregor7ad83902008-11-05 04:29:56 +00001075 if (!Constructor) {
1076 // The user wrote a constructor initializer on a function that is
1077 // not a C++ constructor. Ignore the error for now, because we may
1078 // have more member initializers coming; we'll diagnose it just
1079 // once in ActOnMemInitializers.
1080 return true;
1081 }
1082
1083 CXXRecordDecl *ClassDecl = Constructor->getParent();
1084
1085 // C++ [class.base.init]p2:
1086 // Names in a mem-initializer-id are looked up in the scope of the
1087 // constructor’s class and, if not found in that scope, are looked
1088 // up in the scope containing the constructor’s
1089 // definition. [Note: if the constructor’s class contains a member
1090 // with the same name as a direct or virtual base class of the
1091 // class, a mem-initializer-id naming the member or base class and
1092 // composed of a single identifier refers to the class member. A
1093 // mem-initializer-id for the hidden base class may be specified
1094 // using a qualified name. ]
Fariborz Jahanian96174332009-07-01 19:21:19 +00001095 if (!SS.getScopeRep() && !TemplateTypeTy) {
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00001096 // Look for a member, first.
1097 FieldDecl *Member = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001098 DeclContext::lookup_result Result
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00001099 = ClassDecl->lookup(MemberOrBase);
1100 if (Result.first != Result.second)
1101 Member = dyn_cast<FieldDecl>(*Result.first);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001102
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00001103 // FIXME: Handle members of an anonymous union.
Douglas Gregor7ad83902008-11-05 04:29:56 +00001104
Eli Friedman59c04372009-07-29 19:44:27 +00001105 if (Member)
1106 return BuildMemberInitializer(Member, (Expr**)Args, NumArgs, IdLoc,
Douglas Gregor802ab452009-12-02 22:36:29 +00001107 LParenLoc, RParenLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001108 }
Douglas Gregor7ad83902008-11-05 04:29:56 +00001109 // It didn't name a member, so see if it names a class.
Douglas Gregor802ab452009-12-02 22:36:29 +00001110 QualType BaseType;
John McCalla93c9342009-12-07 02:54:59 +00001111 TypeSourceInfo *TInfo = 0;
John McCall2b194412009-12-21 10:41:20 +00001112
1113 if (TemplateTypeTy) {
John McCalla93c9342009-12-07 02:54:59 +00001114 BaseType = GetTypeFromParser(TemplateTypeTy, &TInfo);
John McCall2b194412009-12-21 10:41:20 +00001115 } else {
1116 LookupResult R(*this, MemberOrBase, IdLoc, LookupOrdinaryName);
1117 LookupParsedName(R, S, &SS);
1118
1119 TypeDecl *TyD = R.getAsSingle<TypeDecl>();
1120 if (!TyD) {
1121 if (R.isAmbiguous()) return true;
1122
John McCallfd225442010-04-09 19:01:14 +00001123 // We don't want access-control diagnostics here.
1124 R.suppressDiagnostics();
1125
Douglas Gregor7a886e12010-01-19 06:46:48 +00001126 if (SS.isSet() && isDependentScopeSpecifier(SS)) {
1127 bool NotUnknownSpecialization = false;
1128 DeclContext *DC = computeDeclContext(SS, false);
1129 if (CXXRecordDecl *Record = dyn_cast_or_null<CXXRecordDecl>(DC))
1130 NotUnknownSpecialization = !Record->hasAnyDependentBases();
1131
1132 if (!NotUnknownSpecialization) {
1133 // When the scope specifier can refer to a member of an unknown
1134 // specialization, we take it as a type name.
Douglas Gregor107de902010-04-24 15:35:55 +00001135 BaseType = CheckTypenameType(ETK_None,
1136 (NestedNameSpecifier *)SS.getScopeRep(),
Abramo Bagnarae4da7a02010-05-19 21:37:53 +00001137 *MemberOrBase, SourceLocation(),
1138 SS.getRange(), IdLoc);
Douglas Gregora50ce322010-03-07 23:26:22 +00001139 if (BaseType.isNull())
1140 return true;
1141
Douglas Gregor7a886e12010-01-19 06:46:48 +00001142 R.clear();
Douglas Gregor12eb5d62010-06-29 19:27:42 +00001143 R.setLookupName(MemberOrBase);
Douglas Gregor7a886e12010-01-19 06:46:48 +00001144 }
1145 }
1146
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001147 // If no results were found, try to correct typos.
Douglas Gregor7a886e12010-01-19 06:46:48 +00001148 if (R.empty() && BaseType.isNull() &&
Douglas Gregoraaf87162010-04-14 20:04:41 +00001149 CorrectTypo(R, S, &SS, ClassDecl, 0, CTC_NoKeywords) &&
1150 R.isSingleResult()) {
Douglas Gregorfe0241e2009-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 Gregor849b2432010-03-31 17:46:05 +00001158 << FixItHint::CreateReplacement(R.getNameLoc(),
1159 R.getLookupName().getAsString());
Douglas Gregor67dd1d42010-01-07 00:17:44 +00001160 Diag(Member->getLocation(), diag::note_previous_decl)
1161 << Member->getDeclName();
Douglas Gregorfe0241e2009-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 Gregor849b2432010-03-31 17:46:05 +00001177 << FixItHint::CreateReplacement(R.getNameLoc(),
1178 R.getLookupName().getAsString());
Douglas Gregor0d535c82010-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 Gregorfe0241e2009-12-31 09:10:24 +00001187 TyD = Type;
1188 }
1189 }
1190 }
1191
Douglas Gregor7a886e12010-01-19 06:46:48 +00001192 if (!TyD && BaseType.isNull()) {
Douglas Gregorfe0241e2009-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 McCall2b194412009-12-21 10:41:20 +00001197 }
1198
Douglas Gregor7a886e12010-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 McCall2b194412009-12-21 10:41:20 +00001204
Douglas Gregor7a886e12010-01-19 06:46:48 +00001205 // FIXME: preserve source range information
Abramo Bagnara465d41b2010-05-11 21:36:43 +00001206 BaseType = Context.getElaboratedType(ETK_None, Qualifier, BaseType);
Douglas Gregor7a886e12010-01-19 06:46:48 +00001207 }
John McCall2b194412009-12-21 10:41:20 +00001208 }
1209 }
Mike Stump1eb44332009-09-09 15:08:12 +00001210
John McCalla93c9342009-12-07 02:54:59 +00001211 if (!TInfo)
1212 TInfo = Context.getTrivialTypeSourceInfo(BaseType, IdLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001213
John McCalla93c9342009-12-07 02:54:59 +00001214 return BuildBaseInitializer(BaseType, TInfo, (Expr **)Args, NumArgs,
Douglas Gregor802ab452009-12-02 22:36:29 +00001215 LParenLoc, RParenLoc, ClassDecl);
Eli Friedman59c04372009-07-29 19:44:27 +00001216}
1217
John McCallb4190042009-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.
Nick Lewycky43ad1822010-06-15 07:32:55 +00001222static bool InitExprContainsUninitializedFields(const Stmt *S,
1223 const FieldDecl *LhsField,
1224 SourceLocation *L) {
1225 if (isa<CallExpr>(S)) {
1226 // Do not descend into function calls or constructors, as the use
1227 // of an uninitialized field may be valid. One would have to inspect
1228 // the contents of the function/ctor to determine if it is safe or not.
1229 // i.e. Pass-by-value is never safe, but pass-by-reference and pointers
1230 // may be safe, depending on what the function/ctor does.
1231 return false;
1232 }
1233 if (const MemberExpr *ME = dyn_cast<MemberExpr>(S)) {
1234 const NamedDecl *RhsField = ME->getMemberDecl();
John McCallb4190042009-11-04 23:02:40 +00001235 if (RhsField == LhsField) {
1236 // Initializing a field with itself. Throw a warning.
1237 // But wait; there are exceptions!
1238 // Exception #1: The field may not belong to this record.
1239 // e.g. Foo(const Foo& rhs) : A(rhs.A) {}
Nick Lewycky43ad1822010-06-15 07:32:55 +00001240 const Expr *base = ME->getBase();
John McCallb4190042009-11-04 23:02:40 +00001241 if (base != NULL && !isa<CXXThisExpr>(base->IgnoreParenCasts())) {
1242 // Even though the field matches, it does not belong to this record.
1243 return false;
1244 }
1245 // None of the exceptions triggered; return true to indicate an
1246 // uninitialized field was used.
1247 *L = ME->getMemberLoc();
1248 return true;
1249 }
1250 }
Nick Lewycky43ad1822010-06-15 07:32:55 +00001251 for (Stmt::const_child_iterator it = S->child_begin(), e = S->child_end();
1252 it != e; ++it) {
1253 if (!*it) {
1254 // An expression such as 'member(arg ?: "")' may trigger this.
John McCallb4190042009-11-04 23:02:40 +00001255 continue;
1256 }
Nick Lewycky43ad1822010-06-15 07:32:55 +00001257 if (InitExprContainsUninitializedFields(*it, LhsField, L))
1258 return true;
John McCallb4190042009-11-04 23:02:40 +00001259 }
Nick Lewycky43ad1822010-06-15 07:32:55 +00001260 return false;
John McCallb4190042009-11-04 23:02:40 +00001261}
1262
Eli Friedman59c04372009-07-29 19:44:27 +00001263Sema::MemInitResult
1264Sema::BuildMemberInitializer(FieldDecl *Member, Expr **Args,
1265 unsigned NumArgs, SourceLocation IdLoc,
Douglas Gregor802ab452009-12-02 22:36:29 +00001266 SourceLocation LParenLoc,
Eli Friedman59c04372009-07-29 19:44:27 +00001267 SourceLocation RParenLoc) {
John McCallb4190042009-11-04 23:02:40 +00001268 // Diagnose value-uses of fields to initialize themselves, e.g.
1269 // foo(foo)
1270 // where foo is not also a parameter to the constructor.
John McCall6aee6212009-11-04 23:13:52 +00001271 // TODO: implement -Wuninitialized and fold this into that framework.
John McCallb4190042009-11-04 23:02:40 +00001272 for (unsigned i = 0; i < NumArgs; ++i) {
1273 SourceLocation L;
1274 if (InitExprContainsUninitializedFields(Args[i], Member, &L)) {
1275 // FIXME: Return true in the case when other fields are used before being
1276 // uninitialized. For example, let this field be the i'th field. When
1277 // initializing the i'th field, throw a warning if any of the >= i'th
1278 // fields are used, as they are not yet initialized.
1279 // Right now we are only handling the case where the i'th field uses
1280 // itself in its initializer.
1281 Diag(L, diag::warn_field_is_uninit);
1282 }
1283 }
1284
Eli Friedman59c04372009-07-29 19:44:27 +00001285 bool HasDependentArg = false;
1286 for (unsigned i = 0; i < NumArgs; i++)
1287 HasDependentArg |= Args[i]->isTypeDependent();
1288
Eli Friedman0f2b97d2010-07-24 21:19:15 +00001289 if (Member->getType()->isDependentType() || HasDependentArg) {
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001290 // Can't check initialization for a member of dependent type or when
1291 // any of the arguments are type-dependent expressions.
1292 OwningExprResult Init
1293 = Owned(new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1294 RParenLoc));
1295
1296 // Erase any temporaries within this evaluation context; we're not
1297 // going to track them in the AST, since we'll be rebuilding the
1298 // ASTs during template instantiation.
1299 ExprTemporaries.erase(
1300 ExprTemporaries.begin() + ExprEvalContexts.back().NumTemporaries,
1301 ExprTemporaries.end());
1302
1303 return new (Context) CXXBaseOrMemberInitializer(Context, Member, IdLoc,
1304 LParenLoc,
1305 Init.takeAs<Expr>(),
1306 RParenLoc);
1307
Douglas Gregor7ad83902008-11-05 04:29:56 +00001308 }
Anders Carlssonf8a9a792009-11-13 19:21:49 +00001309
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001310 if (Member->isInvalidDecl())
1311 return true;
Anders Carlssonf8a9a792009-11-13 19:21:49 +00001312
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001313 // Initialize the member.
1314 InitializedEntity MemberEntity =
1315 InitializedEntity::InitializeMember(Member, 0);
1316 InitializationKind Kind =
1317 InitializationKind::CreateDirect(IdLoc, LParenLoc, RParenLoc);
1318
1319 InitializationSequence InitSeq(*this, MemberEntity, Kind, Args, NumArgs);
1320
1321 OwningExprResult MemberInit =
1322 InitSeq.Perform(*this, MemberEntity, Kind,
1323 MultiExprArg(*this, (void**)Args, NumArgs), 0);
1324 if (MemberInit.isInvalid())
1325 return true;
1326
1327 // C++0x [class.base.init]p7:
1328 // The initialization of each base and member constitutes a
1329 // full-expression.
1330 MemberInit = MaybeCreateCXXExprWithTemporaries(move(MemberInit));
1331 if (MemberInit.isInvalid())
1332 return true;
1333
1334 // If we are in a dependent context, template instantiation will
1335 // perform this type-checking again. Just save the arguments that we
1336 // received in a ParenListExpr.
1337 // FIXME: This isn't quite ideal, since our ASTs don't capture all
1338 // of the information that we have about the member
1339 // initializer. However, deconstructing the ASTs is a dicey process,
1340 // and this approach is far more likely to get the corner cases right.
1341 if (CurContext->isDependentContext()) {
1342 // Bump the reference count of all of the arguments.
1343 for (unsigned I = 0; I != NumArgs; ++I)
1344 Args[I]->Retain();
1345
1346 OwningExprResult Init
1347 = Owned(new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1348 RParenLoc));
1349 return new (Context) CXXBaseOrMemberInitializer(Context, Member, IdLoc,
1350 LParenLoc,
1351 Init.takeAs<Expr>(),
1352 RParenLoc);
1353 }
1354
Douglas Gregor802ab452009-12-02 22:36:29 +00001355 return new (Context) CXXBaseOrMemberInitializer(Context, Member, IdLoc,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001356 LParenLoc,
1357 MemberInit.takeAs<Expr>(),
1358 RParenLoc);
Eli Friedman59c04372009-07-29 19:44:27 +00001359}
1360
1361Sema::MemInitResult
John McCalla93c9342009-12-07 02:54:59 +00001362Sema::BuildBaseInitializer(QualType BaseType, TypeSourceInfo *BaseTInfo,
Douglas Gregor802ab452009-12-02 22:36:29 +00001363 Expr **Args, unsigned NumArgs,
1364 SourceLocation LParenLoc, SourceLocation RParenLoc,
1365 CXXRecordDecl *ClassDecl) {
Eli Friedman59c04372009-07-29 19:44:27 +00001366 bool HasDependentArg = false;
1367 for (unsigned i = 0; i < NumArgs; i++)
1368 HasDependentArg |= Args[i]->isTypeDependent();
1369
Douglas Gregor3956b1a2010-06-16 16:03:14 +00001370 SourceLocation BaseLoc
1371 = BaseTInfo->getTypeLoc().getLocalSourceRange().getBegin();
1372
1373 if (!BaseType->isDependentType() && !BaseType->isRecordType())
1374 return Diag(BaseLoc, diag::err_base_init_does_not_name_class)
1375 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
1376
1377 // C++ [class.base.init]p2:
1378 // [...] Unless the mem-initializer-id names a nonstatic data
1379 // member of the constructor’s class or a direct or virtual base
1380 // of that class, the mem-initializer is ill-formed. A
1381 // mem-initializer-list can initialize a base class using any
1382 // name that denotes that base class type.
1383 bool Dependent = BaseType->isDependentType() || HasDependentArg;
1384
1385 // Check for direct and virtual base classes.
1386 const CXXBaseSpecifier *DirectBaseSpec = 0;
1387 const CXXBaseSpecifier *VirtualBaseSpec = 0;
1388 if (!Dependent) {
1389 FindBaseInitializer(*this, ClassDecl, BaseType, DirectBaseSpec,
1390 VirtualBaseSpec);
1391
1392 // C++ [base.class.init]p2:
1393 // Unless the mem-initializer-id names a nonstatic data member of the
1394 // constructor's class or a direct or virtual base of that class, the
1395 // mem-initializer is ill-formed.
1396 if (!DirectBaseSpec && !VirtualBaseSpec) {
1397 // If the class has any dependent bases, then it's possible that
1398 // one of those types will resolve to the same type as
1399 // BaseType. Therefore, just treat this as a dependent base
1400 // class initialization. FIXME: Should we try to check the
1401 // initialization anyway? It seems odd.
1402 if (ClassDecl->hasAnyDependentBases())
1403 Dependent = true;
1404 else
1405 return Diag(BaseLoc, diag::err_not_direct_base_or_virtual)
1406 << BaseType << Context.getTypeDeclType(ClassDecl)
1407 << BaseTInfo->getTypeLoc().getLocalSourceRange();
1408 }
1409 }
1410
1411 if (Dependent) {
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001412 // Can't check initialization for a base of dependent type or when
1413 // any of the arguments are type-dependent expressions.
1414 OwningExprResult BaseInit
1415 = Owned(new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1416 RParenLoc));
Eli Friedman59c04372009-07-29 19:44:27 +00001417
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001418 // Erase any temporaries within this evaluation context; we're not
1419 // going to track them in the AST, since we'll be rebuilding the
1420 // ASTs during template instantiation.
1421 ExprTemporaries.erase(
1422 ExprTemporaries.begin() + ExprEvalContexts.back().NumTemporaries,
1423 ExprTemporaries.end());
Mike Stump1eb44332009-09-09 15:08:12 +00001424
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001425 return new (Context) CXXBaseOrMemberInitializer(Context, BaseTInfo,
Anders Carlsson80638c52010-04-12 00:51:03 +00001426 /*IsVirtual=*/false,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001427 LParenLoc,
1428 BaseInit.takeAs<Expr>(),
1429 RParenLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001430 }
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001431
1432 // C++ [base.class.init]p2:
1433 // If a mem-initializer-id is ambiguous because it designates both
1434 // a direct non-virtual base class and an inherited virtual base
1435 // class, the mem-initializer is ill-formed.
1436 if (DirectBaseSpec && VirtualBaseSpec)
1437 return Diag(BaseLoc, diag::err_base_init_direct_and_virtual)
Abramo Bagnarabd054db2010-05-20 10:00:11 +00001438 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001439
1440 CXXBaseSpecifier *BaseSpec
1441 = const_cast<CXXBaseSpecifier *>(DirectBaseSpec);
1442 if (!BaseSpec)
1443 BaseSpec = const_cast<CXXBaseSpecifier *>(VirtualBaseSpec);
1444
1445 // Initialize the base.
1446 InitializedEntity BaseEntity =
Anders Carlsson711f34a2010-04-21 19:52:01 +00001447 InitializedEntity::InitializeBase(Context, BaseSpec, VirtualBaseSpec);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001448 InitializationKind Kind =
1449 InitializationKind::CreateDirect(BaseLoc, LParenLoc, RParenLoc);
1450
1451 InitializationSequence InitSeq(*this, BaseEntity, Kind, Args, NumArgs);
1452
1453 OwningExprResult BaseInit =
1454 InitSeq.Perform(*this, BaseEntity, Kind,
1455 MultiExprArg(*this, (void**)Args, NumArgs), 0);
1456 if (BaseInit.isInvalid())
1457 return true;
1458
1459 // C++0x [class.base.init]p7:
1460 // The initialization of each base and member constitutes a
1461 // full-expression.
1462 BaseInit = MaybeCreateCXXExprWithTemporaries(move(BaseInit));
1463 if (BaseInit.isInvalid())
1464 return true;
1465
1466 // If we are in a dependent context, template instantiation will
1467 // perform this type-checking again. Just save the arguments that we
1468 // received in a ParenListExpr.
1469 // FIXME: This isn't quite ideal, since our ASTs don't capture all
1470 // of the information that we have about the base
1471 // initializer. However, deconstructing the ASTs is a dicey process,
1472 // and this approach is far more likely to get the corner cases right.
1473 if (CurContext->isDependentContext()) {
1474 // Bump the reference count of all of the arguments.
1475 for (unsigned I = 0; I != NumArgs; ++I)
1476 Args[I]->Retain();
1477
1478 OwningExprResult Init
1479 = Owned(new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1480 RParenLoc));
1481 return new (Context) CXXBaseOrMemberInitializer(Context, BaseTInfo,
Anders Carlsson80638c52010-04-12 00:51:03 +00001482 BaseSpec->isVirtual(),
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001483 LParenLoc,
1484 Init.takeAs<Expr>(),
1485 RParenLoc);
1486 }
1487
1488 return new (Context) CXXBaseOrMemberInitializer(Context, BaseTInfo,
Anders Carlsson80638c52010-04-12 00:51:03 +00001489 BaseSpec->isVirtual(),
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001490 LParenLoc,
1491 BaseInit.takeAs<Expr>(),
1492 RParenLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001493}
1494
Anders Carlssone5ef7402010-04-23 03:10:23 +00001495/// ImplicitInitializerKind - How an implicit base or member initializer should
1496/// initialize its base or member.
1497enum ImplicitInitializerKind {
1498 IIK_Default,
1499 IIK_Copy,
1500 IIK_Move
1501};
1502
Anders Carlssondefefd22010-04-23 02:00:02 +00001503static bool
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001504BuildImplicitBaseInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlssone5ef7402010-04-23 03:10:23 +00001505 ImplicitInitializerKind ImplicitInitKind,
Anders Carlsson711f34a2010-04-21 19:52:01 +00001506 CXXBaseSpecifier *BaseSpec,
Anders Carlssondefefd22010-04-23 02:00:02 +00001507 bool IsInheritedVirtualBase,
1508 CXXBaseOrMemberInitializer *&CXXBaseInit) {
Anders Carlsson84688f22010-04-20 23:11:20 +00001509 InitializedEntity InitEntity
Anders Carlsson711f34a2010-04-21 19:52:01 +00001510 = InitializedEntity::InitializeBase(SemaRef.Context, BaseSpec,
1511 IsInheritedVirtualBase);
Anders Carlsson84688f22010-04-20 23:11:20 +00001512
Anders Carlssone5ef7402010-04-23 03:10:23 +00001513 Sema::OwningExprResult BaseInit(SemaRef);
1514
1515 switch (ImplicitInitKind) {
1516 case IIK_Default: {
1517 InitializationKind InitKind
1518 = InitializationKind::CreateDefault(Constructor->getLocation());
1519 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, 0, 0);
1520 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind,
1521 Sema::MultiExprArg(SemaRef, 0, 0));
1522 break;
1523 }
Anders Carlsson84688f22010-04-20 23:11:20 +00001524
Anders Carlssone5ef7402010-04-23 03:10:23 +00001525 case IIK_Copy: {
1526 ParmVarDecl *Param = Constructor->getParamDecl(0);
1527 QualType ParamType = Param->getType().getNonReferenceType();
1528
1529 Expr *CopyCtorArg =
1530 DeclRefExpr::Create(SemaRef.Context, 0, SourceRange(), Param,
Douglas Gregor62b71f42010-05-03 15:43:53 +00001531 Constructor->getLocation(), ParamType, 0);
Anders Carlssone5ef7402010-04-23 03:10:23 +00001532
Anders Carlssonc7957502010-04-24 22:02:54 +00001533 // Cast to the base class to avoid ambiguities.
Anders Carlsson59b7f152010-05-01 16:39:01 +00001534 QualType ArgTy =
1535 SemaRef.Context.getQualifiedType(BaseSpec->getType().getUnqualifiedType(),
1536 ParamType.getQualifiers());
Sebastian Redl906082e2010-07-20 04:20:21 +00001537 SemaRef.ImpCastExprToType(CopyCtorArg, ArgTy,
Anders Carlssonc7957502010-04-24 22:02:54 +00001538 CastExpr::CK_UncheckedDerivedToBase,
Sebastian Redl906082e2010-07-20 04:20:21 +00001539 ImplicitCastExpr::LValue,
Anders Carlsson8f2abbc2010-04-24 22:54:32 +00001540 CXXBaseSpecifierArray(BaseSpec));
Anders Carlssonc7957502010-04-24 22:02:54 +00001541
Anders Carlssone5ef7402010-04-23 03:10:23 +00001542 InitializationKind InitKind
1543 = InitializationKind::CreateDirect(Constructor->getLocation(),
1544 SourceLocation(), SourceLocation());
1545 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind,
1546 &CopyCtorArg, 1);
1547 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind,
1548 Sema::MultiExprArg(SemaRef,
1549 (void**)&CopyCtorArg, 1));
1550 break;
1551 }
Anders Carlsson84688f22010-04-20 23:11:20 +00001552
Anders Carlssone5ef7402010-04-23 03:10:23 +00001553 case IIK_Move:
1554 assert(false && "Unhandled initializer kind!");
1555 }
1556
Anders Carlsson84688f22010-04-20 23:11:20 +00001557 BaseInit = SemaRef.MaybeCreateCXXExprWithTemporaries(move(BaseInit));
1558 if (BaseInit.isInvalid())
Anders Carlssondefefd22010-04-23 02:00:02 +00001559 return true;
Anders Carlsson84688f22010-04-20 23:11:20 +00001560
Anders Carlssondefefd22010-04-23 02:00:02 +00001561 CXXBaseInit =
Anders Carlsson84688f22010-04-20 23:11:20 +00001562 new (SemaRef.Context) CXXBaseOrMemberInitializer(SemaRef.Context,
1563 SemaRef.Context.getTrivialTypeSourceInfo(BaseSpec->getType(),
1564 SourceLocation()),
1565 BaseSpec->isVirtual(),
1566 SourceLocation(),
1567 BaseInit.takeAs<Expr>(),
1568 SourceLocation());
1569
Anders Carlssondefefd22010-04-23 02:00:02 +00001570 return false;
Anders Carlsson84688f22010-04-20 23:11:20 +00001571}
1572
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001573static bool
1574BuildImplicitMemberInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlssone5ef7402010-04-23 03:10:23 +00001575 ImplicitInitializerKind ImplicitInitKind,
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001576 FieldDecl *Field,
1577 CXXBaseOrMemberInitializer *&CXXMemberInit) {
Douglas Gregor72a43bb2010-05-20 22:12:02 +00001578 if (Field->isInvalidDecl())
1579 return true;
1580
Chandler Carruthf186b542010-06-29 23:50:44 +00001581 SourceLocation Loc = Constructor->getLocation();
1582
Anders Carlssonf6513ed2010-04-23 16:04:08 +00001583 if (ImplicitInitKind == IIK_Copy) {
1584 ParmVarDecl *Param = Constructor->getParamDecl(0);
1585 QualType ParamType = Param->getType().getNonReferenceType();
1586
1587 Expr *MemberExprBase =
1588 DeclRefExpr::Create(SemaRef.Context, 0, SourceRange(), Param,
Douglas Gregorfb8cc252010-05-05 05:51:00 +00001589 Loc, ParamType, 0);
1590
1591 // Build a reference to this field within the parameter.
1592 CXXScopeSpec SS;
1593 LookupResult MemberLookup(SemaRef, Field->getDeclName(), Loc,
1594 Sema::LookupMemberName);
1595 MemberLookup.addDecl(Field, AS_public);
1596 MemberLookup.resolveKind();
1597 Sema::OwningExprResult CopyCtorArg
1598 = SemaRef.BuildMemberReferenceExpr(SemaRef.Owned(MemberExprBase),
1599 ParamType, Loc,
1600 /*IsArrow=*/false,
1601 SS,
1602 /*FirstQualifierInScope=*/0,
1603 MemberLookup,
1604 /*TemplateArgs=*/0);
1605 if (CopyCtorArg.isInvalid())
Anders Carlssonf6513ed2010-04-23 16:04:08 +00001606 return true;
1607
Douglas Gregorfb8cc252010-05-05 05:51:00 +00001608 // When the field we are copying is an array, create index variables for
1609 // each dimension of the array. We use these index variables to subscript
1610 // the source array, and other clients (e.g., CodeGen) will perform the
1611 // necessary iteration with these index variables.
1612 llvm::SmallVector<VarDecl *, 4> IndexVariables;
1613 QualType BaseType = Field->getType();
1614 QualType SizeType = SemaRef.Context.getSizeType();
1615 while (const ConstantArrayType *Array
1616 = SemaRef.Context.getAsConstantArrayType(BaseType)) {
1617 // Create the iteration variable for this array index.
1618 IdentifierInfo *IterationVarName = 0;
1619 {
1620 llvm::SmallString<8> Str;
1621 llvm::raw_svector_ostream OS(Str);
1622 OS << "__i" << IndexVariables.size();
1623 IterationVarName = &SemaRef.Context.Idents.get(OS.str());
1624 }
1625 VarDecl *IterationVar
1626 = VarDecl::Create(SemaRef.Context, SemaRef.CurContext, Loc,
1627 IterationVarName, SizeType,
1628 SemaRef.Context.getTrivialTypeSourceInfo(SizeType, Loc),
1629 VarDecl::None, VarDecl::None);
1630 IndexVariables.push_back(IterationVar);
1631
1632 // Create a reference to the iteration variable.
1633 Sema::OwningExprResult IterationVarRef
1634 = SemaRef.BuildDeclRefExpr(IterationVar, SizeType, Loc);
1635 assert(!IterationVarRef.isInvalid() &&
1636 "Reference to invented variable cannot fail!");
1637
1638 // Subscript the array with this iteration variable.
1639 CopyCtorArg = SemaRef.CreateBuiltinArraySubscriptExpr(move(CopyCtorArg),
1640 Loc,
1641 move(IterationVarRef),
1642 Loc);
1643 if (CopyCtorArg.isInvalid())
1644 return true;
1645
1646 BaseType = Array->getElementType();
1647 }
1648
1649 // Construct the entity that we will be initializing. For an array, this
1650 // will be first element in the array, which may require several levels
1651 // of array-subscript entities.
1652 llvm::SmallVector<InitializedEntity, 4> Entities;
1653 Entities.reserve(1 + IndexVariables.size());
1654 Entities.push_back(InitializedEntity::InitializeMember(Field));
1655 for (unsigned I = 0, N = IndexVariables.size(); I != N; ++I)
1656 Entities.push_back(InitializedEntity::InitializeElement(SemaRef.Context,
1657 0,
1658 Entities.back()));
1659
1660 // Direct-initialize to use the copy constructor.
1661 InitializationKind InitKind =
1662 InitializationKind::CreateDirect(Loc, SourceLocation(), SourceLocation());
1663
1664 Expr *CopyCtorArgE = CopyCtorArg.takeAs<Expr>();
1665 InitializationSequence InitSeq(SemaRef, Entities.back(), InitKind,
1666 &CopyCtorArgE, 1);
1667
1668 Sema::OwningExprResult MemberInit
1669 = InitSeq.Perform(SemaRef, Entities.back(), InitKind,
1670 Sema::MultiExprArg(SemaRef, (void**)&CopyCtorArgE, 1));
1671 MemberInit = SemaRef.MaybeCreateCXXExprWithTemporaries(move(MemberInit));
1672 if (MemberInit.isInvalid())
1673 return true;
1674
1675 CXXMemberInit
1676 = CXXBaseOrMemberInitializer::Create(SemaRef.Context, Field, Loc, Loc,
1677 MemberInit.takeAs<Expr>(), Loc,
1678 IndexVariables.data(),
1679 IndexVariables.size());
Anders Carlssone5ef7402010-04-23 03:10:23 +00001680 return false;
1681 }
1682
Anders Carlssonf6513ed2010-04-23 16:04:08 +00001683 assert(ImplicitInitKind == IIK_Default && "Unhandled implicit init kind!");
1684
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001685 QualType FieldBaseElementType =
1686 SemaRef.Context.getBaseElementType(Field->getType());
1687
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001688 if (FieldBaseElementType->isRecordType()) {
1689 InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field);
Anders Carlssonf6513ed2010-04-23 16:04:08 +00001690 InitializationKind InitKind =
Chandler Carruthf186b542010-06-29 23:50:44 +00001691 InitializationKind::CreateDefault(Loc);
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001692
1693 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, 0, 0);
1694 Sema::OwningExprResult MemberInit =
1695 InitSeq.Perform(SemaRef, InitEntity, InitKind,
1696 Sema::MultiExprArg(SemaRef, 0, 0));
1697 MemberInit = SemaRef.MaybeCreateCXXExprWithTemporaries(move(MemberInit));
1698 if (MemberInit.isInvalid())
1699 return true;
1700
1701 CXXMemberInit =
1702 new (SemaRef.Context) CXXBaseOrMemberInitializer(SemaRef.Context,
Chandler Carruthf186b542010-06-29 23:50:44 +00001703 Field, Loc, Loc,
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001704 MemberInit.takeAs<Expr>(),
Chandler Carruthf186b542010-06-29 23:50:44 +00001705 Loc);
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001706 return false;
1707 }
Anders Carlsson114a2972010-04-23 03:07:47 +00001708
1709 if (FieldBaseElementType->isReferenceType()) {
1710 SemaRef.Diag(Constructor->getLocation(),
1711 diag::err_uninitialized_member_in_ctor)
1712 << (int)Constructor->isImplicit()
1713 << SemaRef.Context.getTagDeclType(Constructor->getParent())
1714 << 0 << Field->getDeclName();
1715 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
1716 return true;
1717 }
1718
1719 if (FieldBaseElementType.isConstQualified()) {
1720 SemaRef.Diag(Constructor->getLocation(),
1721 diag::err_uninitialized_member_in_ctor)
1722 << (int)Constructor->isImplicit()
1723 << SemaRef.Context.getTagDeclType(Constructor->getParent())
1724 << 1 << Field->getDeclName();
1725 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
1726 return true;
1727 }
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001728
1729 // Nothing to initialize.
1730 CXXMemberInit = 0;
1731 return false;
1732}
John McCallf1860e52010-05-20 23:23:51 +00001733
1734namespace {
1735struct BaseAndFieldInfo {
1736 Sema &S;
1737 CXXConstructorDecl *Ctor;
1738 bool AnyErrorsInInits;
1739 ImplicitInitializerKind IIK;
1740 llvm::DenseMap<const void *, CXXBaseOrMemberInitializer*> AllBaseFields;
1741 llvm::SmallVector<CXXBaseOrMemberInitializer*, 8> AllToInit;
1742
1743 BaseAndFieldInfo(Sema &S, CXXConstructorDecl *Ctor, bool ErrorsInInits)
1744 : S(S), Ctor(Ctor), AnyErrorsInInits(ErrorsInInits) {
1745 // FIXME: Handle implicit move constructors.
1746 if (Ctor->isImplicit() && Ctor->isCopyConstructor())
1747 IIK = IIK_Copy;
1748 else
1749 IIK = IIK_Default;
1750 }
1751};
1752}
1753
Chandler Carruthe861c602010-06-30 02:59:29 +00001754static void RecordFieldInitializer(BaseAndFieldInfo &Info,
1755 FieldDecl *Top, FieldDecl *Field,
1756 CXXBaseOrMemberInitializer *Init) {
1757 // If the member doesn't need to be initialized, Init will still be null.
1758 if (!Init)
1759 return;
1760
1761 Info.AllToInit.push_back(Init);
1762 if (Field != Top) {
1763 Init->setMember(Top);
1764 Init->setAnonUnionMember(Field);
1765 }
1766}
1767
John McCallf1860e52010-05-20 23:23:51 +00001768static bool CollectFieldInitializer(BaseAndFieldInfo &Info,
1769 FieldDecl *Top, FieldDecl *Field) {
1770
Chandler Carruthe861c602010-06-30 02:59:29 +00001771 // Overwhelmingly common case: we have a direct initializer for this field.
John McCallf1860e52010-05-20 23:23:51 +00001772 if (CXXBaseOrMemberInitializer *Init = Info.AllBaseFields.lookup(Field)) {
Chandler Carruthe861c602010-06-30 02:59:29 +00001773 RecordFieldInitializer(Info, Top, Field, Init);
John McCallf1860e52010-05-20 23:23:51 +00001774 return false;
1775 }
1776
1777 if (Info.IIK == IIK_Default && Field->isAnonymousStructOrUnion()) {
1778 const RecordType *FieldClassType = Field->getType()->getAs<RecordType>();
1779 assert(FieldClassType && "anonymous struct/union without record type");
John McCallf1860e52010-05-20 23:23:51 +00001780 CXXRecordDecl *FieldClassDecl
1781 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Chandler Carruthe861c602010-06-30 02:59:29 +00001782
1783 // Even though union members never have non-trivial default
1784 // constructions in C++03, we still build member initializers for aggregate
1785 // record types which can be union members, and C++0x allows non-trivial
1786 // default constructors for union members, so we ensure that only one
1787 // member is initialized for these.
1788 if (FieldClassDecl->isUnion()) {
1789 // First check for an explicit initializer for one field.
1790 for (RecordDecl::field_iterator FA = FieldClassDecl->field_begin(),
1791 EA = FieldClassDecl->field_end(); FA != EA; FA++) {
1792 if (CXXBaseOrMemberInitializer *Init = Info.AllBaseFields.lookup(*FA)) {
1793 RecordFieldInitializer(Info, Top, *FA, Init);
1794
1795 // Once we've initialized a field of an anonymous union, the union
1796 // field in the class is also initialized, so exit immediately.
1797 return false;
1798 }
1799 }
1800
1801 // Fallthrough and construct a default initializer for the union as
1802 // a whole, which can call its default constructor if such a thing exists
1803 // (C++0x perhaps). FIXME: It's not clear that this is the correct
1804 // behavior going forward with C++0x, when anonymous unions there are
1805 // finalized, we should revisit this.
1806 } else {
1807 // For structs, we simply descend through to initialize all members where
1808 // necessary.
1809 for (RecordDecl::field_iterator FA = FieldClassDecl->field_begin(),
1810 EA = FieldClassDecl->field_end(); FA != EA; FA++) {
1811 if (CollectFieldInitializer(Info, Top, *FA))
1812 return true;
1813 }
1814 }
John McCallf1860e52010-05-20 23:23:51 +00001815 }
1816
1817 // Don't try to build an implicit initializer if there were semantic
1818 // errors in any of the initializers (and therefore we might be
1819 // missing some that the user actually wrote).
1820 if (Info.AnyErrorsInInits)
1821 return false;
1822
1823 CXXBaseOrMemberInitializer *Init = 0;
1824 if (BuildImplicitMemberInitializer(Info.S, Info.Ctor, Info.IIK, Field, Init))
1825 return true;
John McCallf1860e52010-05-20 23:23:51 +00001826
Chandler Carruthe861c602010-06-30 02:59:29 +00001827 RecordFieldInitializer(Info, Top, Field, Init);
John McCallf1860e52010-05-20 23:23:51 +00001828 return false;
1829}
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001830
Eli Friedman80c30da2009-11-09 19:20:36 +00001831bool
Anders Carlsson0ebb6d32009-10-29 15:46:07 +00001832Sema::SetBaseOrMemberInitializers(CXXConstructorDecl *Constructor,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001833 CXXBaseOrMemberInitializer **Initializers,
1834 unsigned NumInitializers,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001835 bool AnyErrors) {
John McCalld6ca8da2010-04-10 07:37:23 +00001836 if (Constructor->getDeclContext()->isDependentContext()) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00001837 // Just store the initializers as written, they will be checked during
1838 // instantiation.
1839 if (NumInitializers > 0) {
1840 Constructor->setNumBaseOrMemberInitializers(NumInitializers);
1841 CXXBaseOrMemberInitializer **baseOrMemberInitializers =
1842 new (Context) CXXBaseOrMemberInitializer*[NumInitializers];
1843 memcpy(baseOrMemberInitializers, Initializers,
1844 NumInitializers * sizeof(CXXBaseOrMemberInitializer*));
1845 Constructor->setBaseOrMemberInitializers(baseOrMemberInitializers);
1846 }
1847
1848 return false;
1849 }
1850
John McCallf1860e52010-05-20 23:23:51 +00001851 BaseAndFieldInfo Info(*this, Constructor, AnyErrors);
Anders Carlssone5ef7402010-04-23 03:10:23 +00001852
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001853 // We need to build the initializer AST according to order of construction
1854 // and not what user specified in the Initializers list.
Anders Carlssonea356fb2010-04-02 05:42:15 +00001855 CXXRecordDecl *ClassDecl = Constructor->getParent()->getDefinition();
Douglas Gregord6068482010-03-26 22:43:07 +00001856 if (!ClassDecl)
1857 return true;
1858
Eli Friedman80c30da2009-11-09 19:20:36 +00001859 bool HadError = false;
Mike Stump1eb44332009-09-09 15:08:12 +00001860
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001861 for (unsigned i = 0; i < NumInitializers; i++) {
1862 CXXBaseOrMemberInitializer *Member = Initializers[i];
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00001863
1864 if (Member->isBaseInitializer())
John McCallf1860e52010-05-20 23:23:51 +00001865 Info.AllBaseFields[Member->getBaseClass()->getAs<RecordType>()] = Member;
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00001866 else
John McCallf1860e52010-05-20 23:23:51 +00001867 Info.AllBaseFields[Member->getMember()] = Member;
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00001868 }
1869
Anders Carlsson711f34a2010-04-21 19:52:01 +00001870 // Keep track of the direct virtual bases.
1871 llvm::SmallPtrSet<CXXBaseSpecifier *, 16> DirectVBases;
1872 for (CXXRecordDecl::base_class_iterator I = ClassDecl->bases_begin(),
1873 E = ClassDecl->bases_end(); I != E; ++I) {
1874 if (I->isVirtual())
1875 DirectVBases.insert(I);
1876 }
1877
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00001878 // Push virtual bases before others.
1879 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
1880 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
1881
1882 if (CXXBaseOrMemberInitializer *Value
John McCallf1860e52010-05-20 23:23:51 +00001883 = Info.AllBaseFields.lookup(VBase->getType()->getAs<RecordType>())) {
1884 Info.AllToInit.push_back(Value);
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00001885 } else if (!AnyErrors) {
Anders Carlsson711f34a2010-04-21 19:52:01 +00001886 bool IsInheritedVirtualBase = !DirectVBases.count(VBase);
Anders Carlssondefefd22010-04-23 02:00:02 +00001887 CXXBaseOrMemberInitializer *CXXBaseInit;
John McCallf1860e52010-05-20 23:23:51 +00001888 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Anders Carlssone5ef7402010-04-23 03:10:23 +00001889 VBase, IsInheritedVirtualBase,
1890 CXXBaseInit)) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00001891 HadError = true;
1892 continue;
1893 }
Anders Carlsson84688f22010-04-20 23:11:20 +00001894
John McCallf1860e52010-05-20 23:23:51 +00001895 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001896 }
1897 }
Mike Stump1eb44332009-09-09 15:08:12 +00001898
John McCallf1860e52010-05-20 23:23:51 +00001899 // Non-virtual bases.
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00001900 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
1901 E = ClassDecl->bases_end(); Base != E; ++Base) {
1902 // Virtuals are in the virtual base list and already constructed.
1903 if (Base->isVirtual())
1904 continue;
Mike Stump1eb44332009-09-09 15:08:12 +00001905
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00001906 if (CXXBaseOrMemberInitializer *Value
John McCallf1860e52010-05-20 23:23:51 +00001907 = Info.AllBaseFields.lookup(Base->getType()->getAs<RecordType>())) {
1908 Info.AllToInit.push_back(Value);
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00001909 } else if (!AnyErrors) {
Anders Carlssondefefd22010-04-23 02:00:02 +00001910 CXXBaseOrMemberInitializer *CXXBaseInit;
John McCallf1860e52010-05-20 23:23:51 +00001911 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Anders Carlssone5ef7402010-04-23 03:10:23 +00001912 Base, /*IsInheritedVirtualBase=*/false,
Anders Carlssondefefd22010-04-23 02:00:02 +00001913 CXXBaseInit)) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00001914 HadError = true;
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001915 continue;
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00001916 }
Fariborz Jahanian9d436202009-09-03 21:32:41 +00001917
John McCallf1860e52010-05-20 23:23:51 +00001918 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001919 }
1920 }
Mike Stump1eb44332009-09-09 15:08:12 +00001921
John McCallf1860e52010-05-20 23:23:51 +00001922 // Fields.
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001923 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00001924 E = ClassDecl->field_end(); Field != E; ++Field) {
1925 if ((*Field)->getType()->isIncompleteArrayType()) {
1926 assert(ClassDecl->hasFlexibleArrayMember() &&
1927 "Incomplete array type is not valid");
1928 continue;
1929 }
John McCallf1860e52010-05-20 23:23:51 +00001930 if (CollectFieldInitializer(Info, *Field, *Field))
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001931 HadError = true;
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00001932 }
Mike Stump1eb44332009-09-09 15:08:12 +00001933
John McCallf1860e52010-05-20 23:23:51 +00001934 NumInitializers = Info.AllToInit.size();
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001935 if (NumInitializers > 0) {
1936 Constructor->setNumBaseOrMemberInitializers(NumInitializers);
1937 CXXBaseOrMemberInitializer **baseOrMemberInitializers =
1938 new (Context) CXXBaseOrMemberInitializer*[NumInitializers];
John McCallf1860e52010-05-20 23:23:51 +00001939 memcpy(baseOrMemberInitializers, Info.AllToInit.data(),
John McCallef027fe2010-03-16 21:39:52 +00001940 NumInitializers * sizeof(CXXBaseOrMemberInitializer*));
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001941 Constructor->setBaseOrMemberInitializers(baseOrMemberInitializers);
Rafael Espindola961b1672010-03-13 18:12:56 +00001942
John McCallef027fe2010-03-16 21:39:52 +00001943 // Constructors implicitly reference the base and member
1944 // destructors.
1945 MarkBaseAndMemberDestructorsReferenced(Constructor->getLocation(),
1946 Constructor->getParent());
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001947 }
Eli Friedman80c30da2009-11-09 19:20:36 +00001948
1949 return HadError;
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001950}
1951
Eli Friedman6347f422009-07-21 19:28:10 +00001952static void *GetKeyForTopLevelField(FieldDecl *Field) {
1953 // For anonymous unions, use the class declaration as the key.
Ted Kremenek6217b802009-07-29 21:53:49 +00001954 if (const RecordType *RT = Field->getType()->getAs<RecordType>()) {
Eli Friedman6347f422009-07-21 19:28:10 +00001955 if (RT->getDecl()->isAnonymousStructOrUnion())
1956 return static_cast<void *>(RT->getDecl());
1957 }
1958 return static_cast<void *>(Field);
1959}
1960
Anders Carlssonea356fb2010-04-02 05:42:15 +00001961static void *GetKeyForBase(ASTContext &Context, QualType BaseType) {
1962 return Context.getCanonicalType(BaseType).getTypePtr();
Anders Carlssoncdc83c72009-09-01 06:22:14 +00001963}
1964
Anders Carlssonea356fb2010-04-02 05:42:15 +00001965static void *GetKeyForMember(ASTContext &Context,
1966 CXXBaseOrMemberInitializer *Member,
Anders Carlssoncdc83c72009-09-01 06:22:14 +00001967 bool MemberMaybeAnon = false) {
Anders Carlsson8f1a2402010-03-30 15:39:27 +00001968 if (!Member->isMemberInitializer())
Anders Carlssonea356fb2010-04-02 05:42:15 +00001969 return GetKeyForBase(Context, QualType(Member->getBaseClass(), 0));
Anders Carlsson8f1a2402010-03-30 15:39:27 +00001970
Eli Friedman6347f422009-07-21 19:28:10 +00001971 // For fields injected into the class via declaration of an anonymous union,
1972 // use its anonymous union class declaration as the unique key.
Anders Carlsson8f1a2402010-03-30 15:39:27 +00001973 FieldDecl *Field = Member->getMember();
Mike Stump1eb44332009-09-09 15:08:12 +00001974
Anders Carlsson8f1a2402010-03-30 15:39:27 +00001975 // After SetBaseOrMemberInitializers call, Field is the anonymous union
1976 // data member of the class. Data member used in the initializer list is
1977 // in AnonUnionMember field.
1978 if (MemberMaybeAnon && Field->isAnonymousStructOrUnion())
1979 Field = Member->getAnonUnionMember();
Anders Carlssonee11b2d2010-03-30 16:19:37 +00001980
John McCall3c3ccdb2010-04-10 09:28:51 +00001981 // If the field is a member of an anonymous struct or union, our key
1982 // is the anonymous record decl that's a direct child of the class.
Anders Carlssonee11b2d2010-03-30 16:19:37 +00001983 RecordDecl *RD = Field->getParent();
John McCall3c3ccdb2010-04-10 09:28:51 +00001984 if (RD->isAnonymousStructOrUnion()) {
1985 while (true) {
1986 RecordDecl *Parent = cast<RecordDecl>(RD->getDeclContext());
1987 if (Parent->isAnonymousStructOrUnion())
1988 RD = Parent;
1989 else
1990 break;
1991 }
1992
Anders Carlssonee11b2d2010-03-30 16:19:37 +00001993 return static_cast<void *>(RD);
John McCall3c3ccdb2010-04-10 09:28:51 +00001994 }
Mike Stump1eb44332009-09-09 15:08:12 +00001995
Anders Carlsson8f1a2402010-03-30 15:39:27 +00001996 return static_cast<void *>(Field);
Eli Friedman6347f422009-07-21 19:28:10 +00001997}
1998
Anders Carlsson58cfbde2010-04-02 03:37:03 +00001999static void
2000DiagnoseBaseOrMemInitializerOrder(Sema &SemaRef,
Anders Carlsson071d6102010-04-02 03:38:04 +00002001 const CXXConstructorDecl *Constructor,
John McCalld6ca8da2010-04-10 07:37:23 +00002002 CXXBaseOrMemberInitializer **Inits,
2003 unsigned NumInits) {
2004 if (Constructor->getDeclContext()->isDependentContext())
Anders Carlsson8d4c5ea2009-08-27 05:57:30 +00002005 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002006
John McCalld6ca8da2010-04-10 07:37:23 +00002007 if (SemaRef.Diags.getDiagnosticLevel(diag::warn_initializer_out_of_order)
2008 == Diagnostic::Ignored)
Anders Carlsson5c36fb22009-08-27 05:45:01 +00002009 return;
Anders Carlsson58cfbde2010-04-02 03:37:03 +00002010
John McCalld6ca8da2010-04-10 07:37:23 +00002011 // Build the list of bases and members in the order that they'll
2012 // actually be initialized. The explicit initializers should be in
2013 // this same order but may be missing things.
2014 llvm::SmallVector<const void*, 32> IdealInitKeys;
Mike Stump1eb44332009-09-09 15:08:12 +00002015
Anders Carlsson071d6102010-04-02 03:38:04 +00002016 const CXXRecordDecl *ClassDecl = Constructor->getParent();
2017
John McCalld6ca8da2010-04-10 07:37:23 +00002018 // 1. Virtual bases.
Anders Carlsson071d6102010-04-02 03:38:04 +00002019 for (CXXRecordDecl::base_class_const_iterator VBase =
Anders Carlsson5c36fb22009-08-27 05:45:01 +00002020 ClassDecl->vbases_begin(),
2021 E = ClassDecl->vbases_end(); VBase != E; ++VBase)
John McCalld6ca8da2010-04-10 07:37:23 +00002022 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, VBase->getType()));
Mike Stump1eb44332009-09-09 15:08:12 +00002023
John McCalld6ca8da2010-04-10 07:37:23 +00002024 // 2. Non-virtual bases.
Anders Carlsson071d6102010-04-02 03:38:04 +00002025 for (CXXRecordDecl::base_class_const_iterator Base = ClassDecl->bases_begin(),
Anders Carlsson5c36fb22009-08-27 05:45:01 +00002026 E = ClassDecl->bases_end(); Base != E; ++Base) {
Anders Carlsson5c36fb22009-08-27 05:45:01 +00002027 if (Base->isVirtual())
2028 continue;
John McCalld6ca8da2010-04-10 07:37:23 +00002029 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, Base->getType()));
Anders Carlsson5c36fb22009-08-27 05:45:01 +00002030 }
Mike Stump1eb44332009-09-09 15:08:12 +00002031
John McCalld6ca8da2010-04-10 07:37:23 +00002032 // 3. Direct fields.
Anders Carlsson5c36fb22009-08-27 05:45:01 +00002033 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
2034 E = ClassDecl->field_end(); Field != E; ++Field)
John McCalld6ca8da2010-04-10 07:37:23 +00002035 IdealInitKeys.push_back(GetKeyForTopLevelField(*Field));
Mike Stump1eb44332009-09-09 15:08:12 +00002036
John McCalld6ca8da2010-04-10 07:37:23 +00002037 unsigned NumIdealInits = IdealInitKeys.size();
2038 unsigned IdealIndex = 0;
Eli Friedman6347f422009-07-21 19:28:10 +00002039
John McCalld6ca8da2010-04-10 07:37:23 +00002040 CXXBaseOrMemberInitializer *PrevInit = 0;
2041 for (unsigned InitIndex = 0; InitIndex != NumInits; ++InitIndex) {
2042 CXXBaseOrMemberInitializer *Init = Inits[InitIndex];
2043 void *InitKey = GetKeyForMember(SemaRef.Context, Init, true);
2044
2045 // Scan forward to try to find this initializer in the idealized
2046 // initializers list.
2047 for (; IdealIndex != NumIdealInits; ++IdealIndex)
2048 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlsson5c36fb22009-08-27 05:45:01 +00002049 break;
John McCalld6ca8da2010-04-10 07:37:23 +00002050
2051 // If we didn't find this initializer, it must be because we
2052 // scanned past it on a previous iteration. That can only
2053 // happen if we're out of order; emit a warning.
Douglas Gregorfe2d3792010-05-20 23:49:34 +00002054 if (IdealIndex == NumIdealInits && PrevInit) {
John McCalld6ca8da2010-04-10 07:37:23 +00002055 Sema::SemaDiagnosticBuilder D =
2056 SemaRef.Diag(PrevInit->getSourceLocation(),
2057 diag::warn_initializer_out_of_order);
2058
2059 if (PrevInit->isMemberInitializer())
2060 D << 0 << PrevInit->getMember()->getDeclName();
2061 else
2062 D << 1 << PrevInit->getBaseClassInfo()->getType();
2063
2064 if (Init->isMemberInitializer())
2065 D << 0 << Init->getMember()->getDeclName();
2066 else
2067 D << 1 << Init->getBaseClassInfo()->getType();
2068
2069 // Move back to the initializer's location in the ideal list.
2070 for (IdealIndex = 0; IdealIndex != NumIdealInits; ++IdealIndex)
2071 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlsson5c36fb22009-08-27 05:45:01 +00002072 break;
John McCalld6ca8da2010-04-10 07:37:23 +00002073
2074 assert(IdealIndex != NumIdealInits &&
2075 "initializer not found in initializer list");
Fariborz Jahanianeb96e122009-07-09 19:59:47 +00002076 }
John McCalld6ca8da2010-04-10 07:37:23 +00002077
2078 PrevInit = Init;
Fariborz Jahanianeb96e122009-07-09 19:59:47 +00002079 }
Anders Carlssona7b35212009-03-25 02:58:17 +00002080}
2081
John McCall3c3ccdb2010-04-10 09:28:51 +00002082namespace {
2083bool CheckRedundantInit(Sema &S,
2084 CXXBaseOrMemberInitializer *Init,
2085 CXXBaseOrMemberInitializer *&PrevInit) {
2086 if (!PrevInit) {
2087 PrevInit = Init;
2088 return false;
2089 }
2090
2091 if (FieldDecl *Field = Init->getMember())
2092 S.Diag(Init->getSourceLocation(),
2093 diag::err_multiple_mem_initialization)
2094 << Field->getDeclName()
2095 << Init->getSourceRange();
2096 else {
2097 Type *BaseClass = Init->getBaseClass();
2098 assert(BaseClass && "neither field nor base");
2099 S.Diag(Init->getSourceLocation(),
2100 diag::err_multiple_base_initialization)
2101 << QualType(BaseClass, 0)
2102 << Init->getSourceRange();
2103 }
2104 S.Diag(PrevInit->getSourceLocation(), diag::note_previous_initializer)
2105 << 0 << PrevInit->getSourceRange();
2106
2107 return true;
2108}
2109
2110typedef std::pair<NamedDecl *, CXXBaseOrMemberInitializer *> UnionEntry;
2111typedef llvm::DenseMap<RecordDecl*, UnionEntry> RedundantUnionMap;
2112
2113bool CheckRedundantUnionInit(Sema &S,
2114 CXXBaseOrMemberInitializer *Init,
2115 RedundantUnionMap &Unions) {
2116 FieldDecl *Field = Init->getMember();
2117 RecordDecl *Parent = Field->getParent();
2118 if (!Parent->isAnonymousStructOrUnion())
2119 return false;
2120
2121 NamedDecl *Child = Field;
2122 do {
2123 if (Parent->isUnion()) {
2124 UnionEntry &En = Unions[Parent];
2125 if (En.first && En.first != Child) {
2126 S.Diag(Init->getSourceLocation(),
2127 diag::err_multiple_mem_union_initialization)
2128 << Field->getDeclName()
2129 << Init->getSourceRange();
2130 S.Diag(En.second->getSourceLocation(), diag::note_previous_initializer)
2131 << 0 << En.second->getSourceRange();
2132 return true;
2133 } else if (!En.first) {
2134 En.first = Child;
2135 En.second = Init;
2136 }
2137 }
2138
2139 Child = Parent;
2140 Parent = cast<RecordDecl>(Parent->getDeclContext());
2141 } while (Parent->isAnonymousStructOrUnion());
2142
2143 return false;
2144}
2145}
2146
Anders Carlsson58cfbde2010-04-02 03:37:03 +00002147/// ActOnMemInitializers - Handle the member initializers for a constructor.
2148void Sema::ActOnMemInitializers(DeclPtrTy ConstructorDecl,
2149 SourceLocation ColonLoc,
2150 MemInitTy **meminits, unsigned NumMemInits,
2151 bool AnyErrors) {
2152 if (!ConstructorDecl)
2153 return;
2154
2155 AdjustDeclIfTemplate(ConstructorDecl);
2156
2157 CXXConstructorDecl *Constructor
2158 = dyn_cast<CXXConstructorDecl>(ConstructorDecl.getAs<Decl>());
2159
2160 if (!Constructor) {
2161 Diag(ColonLoc, diag::err_only_constructors_take_base_inits);
2162 return;
2163 }
2164
2165 CXXBaseOrMemberInitializer **MemInits =
2166 reinterpret_cast<CXXBaseOrMemberInitializer **>(meminits);
John McCall3c3ccdb2010-04-10 09:28:51 +00002167
2168 // Mapping for the duplicate initializers check.
2169 // For member initializers, this is keyed with a FieldDecl*.
2170 // For base initializers, this is keyed with a Type*.
Anders Carlssonea356fb2010-04-02 05:42:15 +00002171 llvm::DenseMap<void*, CXXBaseOrMemberInitializer *> Members;
John McCall3c3ccdb2010-04-10 09:28:51 +00002172
2173 // Mapping for the inconsistent anonymous-union initializers check.
2174 RedundantUnionMap MemberUnions;
2175
Anders Carlssonea356fb2010-04-02 05:42:15 +00002176 bool HadError = false;
2177 for (unsigned i = 0; i < NumMemInits; i++) {
John McCall3c3ccdb2010-04-10 09:28:51 +00002178 CXXBaseOrMemberInitializer *Init = MemInits[i];
Anders Carlsson58cfbde2010-04-02 03:37:03 +00002179
Abramo Bagnaraa0af3b42010-05-26 18:09:23 +00002180 // Set the source order index.
2181 Init->setSourceOrder(i);
2182
John McCall3c3ccdb2010-04-10 09:28:51 +00002183 if (Init->isMemberInitializer()) {
2184 FieldDecl *Field = Init->getMember();
2185 if (CheckRedundantInit(*this, Init, Members[Field]) ||
2186 CheckRedundantUnionInit(*this, Init, MemberUnions))
2187 HadError = true;
2188 } else {
2189 void *Key = GetKeyForBase(Context, QualType(Init->getBaseClass(), 0));
2190 if (CheckRedundantInit(*this, Init, Members[Key]))
2191 HadError = true;
Anders Carlsson58cfbde2010-04-02 03:37:03 +00002192 }
Anders Carlsson58cfbde2010-04-02 03:37:03 +00002193 }
2194
Anders Carlssonea356fb2010-04-02 05:42:15 +00002195 if (HadError)
2196 return;
2197
Anders Carlsson58cfbde2010-04-02 03:37:03 +00002198 DiagnoseBaseOrMemInitializerOrder(*this, Constructor, MemInits, NumMemInits);
Anders Carlssonec3332b2010-04-02 03:43:34 +00002199
2200 SetBaseOrMemberInitializers(Constructor, MemInits, NumMemInits, AnyErrors);
Anders Carlsson58cfbde2010-04-02 03:37:03 +00002201}
2202
Fariborz Jahanian34374e62009-09-03 23:18:17 +00002203void
John McCallef027fe2010-03-16 21:39:52 +00002204Sema::MarkBaseAndMemberDestructorsReferenced(SourceLocation Location,
2205 CXXRecordDecl *ClassDecl) {
2206 // Ignore dependent contexts.
2207 if (ClassDecl->isDependentContext())
Anders Carlsson9f853df2009-11-17 04:44:12 +00002208 return;
John McCall58e6f342010-03-16 05:22:47 +00002209
2210 // FIXME: all the access-control diagnostics are positioned on the
2211 // field/base declaration. That's probably good; that said, the
2212 // user might reasonably want to know why the destructor is being
2213 // emitted, and we currently don't say.
Anders Carlsson9f853df2009-11-17 04:44:12 +00002214
Anders Carlsson9f853df2009-11-17 04:44:12 +00002215 // Non-static data members.
2216 for (CXXRecordDecl::field_iterator I = ClassDecl->field_begin(),
2217 E = ClassDecl->field_end(); I != E; ++I) {
2218 FieldDecl *Field = *I;
Fariborz Jahanian9614dc02010-05-17 18:15:18 +00002219 if (Field->isInvalidDecl())
2220 continue;
Anders Carlsson9f853df2009-11-17 04:44:12 +00002221 QualType FieldType = Context.getBaseElementType(Field->getType());
2222
2223 const RecordType* RT = FieldType->getAs<RecordType>();
2224 if (!RT)
2225 continue;
2226
2227 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl());
2228 if (FieldClassDecl->hasTrivialDestructor())
2229 continue;
2230
Douglas Gregordb89f282010-07-01 22:47:18 +00002231 CXXDestructorDecl *Dtor = LookupDestructor(FieldClassDecl);
John McCall58e6f342010-03-16 05:22:47 +00002232 CheckDestructorAccess(Field->getLocation(), Dtor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00002233 PDiag(diag::err_access_dtor_field)
John McCall58e6f342010-03-16 05:22:47 +00002234 << Field->getDeclName()
2235 << FieldType);
2236
John McCallef027fe2010-03-16 21:39:52 +00002237 MarkDeclarationReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Anders Carlsson9f853df2009-11-17 04:44:12 +00002238 }
2239
John McCall58e6f342010-03-16 05:22:47 +00002240 llvm::SmallPtrSet<const RecordType *, 8> DirectVirtualBases;
2241
Anders Carlsson9f853df2009-11-17 04:44:12 +00002242 // Bases.
2243 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
2244 E = ClassDecl->bases_end(); Base != E; ++Base) {
John McCall58e6f342010-03-16 05:22:47 +00002245 // Bases are always records in a well-formed non-dependent class.
2246 const RecordType *RT = Base->getType()->getAs<RecordType>();
2247
2248 // Remember direct virtual bases.
Anders Carlsson9f853df2009-11-17 04:44:12 +00002249 if (Base->isVirtual())
John McCall58e6f342010-03-16 05:22:47 +00002250 DirectVirtualBases.insert(RT);
Anders Carlsson9f853df2009-11-17 04:44:12 +00002251
2252 // Ignore trivial destructors.
John McCall58e6f342010-03-16 05:22:47 +00002253 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Anders Carlsson9f853df2009-11-17 04:44:12 +00002254 if (BaseClassDecl->hasTrivialDestructor())
2255 continue;
John McCall58e6f342010-03-16 05:22:47 +00002256
Douglas Gregordb89f282010-07-01 22:47:18 +00002257 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
John McCall58e6f342010-03-16 05:22:47 +00002258
2259 // FIXME: caret should be on the start of the class name
2260 CheckDestructorAccess(Base->getSourceRange().getBegin(), Dtor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00002261 PDiag(diag::err_access_dtor_base)
John McCall58e6f342010-03-16 05:22:47 +00002262 << Base->getType()
2263 << Base->getSourceRange());
Anders Carlsson9f853df2009-11-17 04:44:12 +00002264
John McCallef027fe2010-03-16 21:39:52 +00002265 MarkDeclarationReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Anders Carlsson9f853df2009-11-17 04:44:12 +00002266 }
2267
2268 // Virtual bases.
Fariborz Jahanian34374e62009-09-03 23:18:17 +00002269 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
2270 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
John McCall58e6f342010-03-16 05:22:47 +00002271
2272 // Bases are always records in a well-formed non-dependent class.
2273 const RecordType *RT = VBase->getType()->getAs<RecordType>();
2274
2275 // Ignore direct virtual bases.
2276 if (DirectVirtualBases.count(RT))
2277 continue;
2278
Anders Carlsson9f853df2009-11-17 04:44:12 +00002279 // Ignore trivial destructors.
John McCall58e6f342010-03-16 05:22:47 +00002280 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Fariborz Jahanian34374e62009-09-03 23:18:17 +00002281 if (BaseClassDecl->hasTrivialDestructor())
2282 continue;
John McCall58e6f342010-03-16 05:22:47 +00002283
Douglas Gregordb89f282010-07-01 22:47:18 +00002284 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
John McCall58e6f342010-03-16 05:22:47 +00002285 CheckDestructorAccess(ClassDecl->getLocation(), Dtor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00002286 PDiag(diag::err_access_dtor_vbase)
John McCall58e6f342010-03-16 05:22:47 +00002287 << VBase->getType());
2288
John McCallef027fe2010-03-16 21:39:52 +00002289 MarkDeclarationReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Fariborz Jahanian34374e62009-09-03 23:18:17 +00002290 }
2291}
2292
Fariborz Jahanian393612e2009-07-21 22:36:06 +00002293void Sema::ActOnDefaultCtorInitializers(DeclPtrTy CDtorDecl) {
Fariborz Jahanian560de452009-07-15 22:34:08 +00002294 if (!CDtorDecl)
Fariborz Jahaniand01c9152009-07-14 18:24:21 +00002295 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002296
Mike Stump1eb44332009-09-09 15:08:12 +00002297 if (CXXConstructorDecl *Constructor
Fariborz Jahanian560de452009-07-15 22:34:08 +00002298 = dyn_cast<CXXConstructorDecl>(CDtorDecl.getAs<Decl>()))
Anders Carlssonec3332b2010-04-02 03:43:34 +00002299 SetBaseOrMemberInitializers(Constructor, 0, 0, /*AnyErrors=*/false);
Fariborz Jahaniand01c9152009-07-14 18:24:21 +00002300}
2301
Mike Stump1eb44332009-09-09 15:08:12 +00002302bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
Anders Carlssone65a3c82009-03-24 17:23:42 +00002303 unsigned DiagID, AbstractDiagSelID SelID,
2304 const CXXRecordDecl *CurrentRD) {
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00002305 if (SelID == -1)
2306 return RequireNonAbstractType(Loc, T,
2307 PDiag(DiagID), CurrentRD);
2308 else
2309 return RequireNonAbstractType(Loc, T,
2310 PDiag(DiagID) << SelID, CurrentRD);
Mike Stump1eb44332009-09-09 15:08:12 +00002311}
2312
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00002313bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
2314 const PartialDiagnostic &PD,
2315 const CXXRecordDecl *CurrentRD) {
Anders Carlsson4681ebd2009-03-22 20:18:17 +00002316 if (!getLangOptions().CPlusPlus)
2317 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00002318
Anders Carlsson11f21a02009-03-23 19:10:31 +00002319 if (const ArrayType *AT = Context.getAsArrayType(T))
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00002320 return RequireNonAbstractType(Loc, AT->getElementType(), PD,
Anders Carlssone65a3c82009-03-24 17:23:42 +00002321 CurrentRD);
Mike Stump1eb44332009-09-09 15:08:12 +00002322
Ted Kremenek6217b802009-07-29 21:53:49 +00002323 if (const PointerType *PT = T->getAs<PointerType>()) {
Anders Carlsson5eff73c2009-03-24 01:46:45 +00002324 // Find the innermost pointer type.
Ted Kremenek6217b802009-07-29 21:53:49 +00002325 while (const PointerType *T = PT->getPointeeType()->getAs<PointerType>())
Anders Carlsson5eff73c2009-03-24 01:46:45 +00002326 PT = T;
Mike Stump1eb44332009-09-09 15:08:12 +00002327
Anders Carlsson5eff73c2009-03-24 01:46:45 +00002328 if (const ArrayType *AT = Context.getAsArrayType(PT->getPointeeType()))
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00002329 return RequireNonAbstractType(Loc, AT->getElementType(), PD, CurrentRD);
Anders Carlsson5eff73c2009-03-24 01:46:45 +00002330 }
Mike Stump1eb44332009-09-09 15:08:12 +00002331
Ted Kremenek6217b802009-07-29 21:53:49 +00002332 const RecordType *RT = T->getAs<RecordType>();
Anders Carlsson4681ebd2009-03-22 20:18:17 +00002333 if (!RT)
2334 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00002335
John McCall86ff3082010-02-04 22:26:26 +00002336 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
Anders Carlsson4681ebd2009-03-22 20:18:17 +00002337
Anders Carlssone65a3c82009-03-24 17:23:42 +00002338 if (CurrentRD && CurrentRD != RD)
2339 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00002340
John McCall86ff3082010-02-04 22:26:26 +00002341 // FIXME: is this reasonable? It matches current behavior, but....
Douglas Gregor952b0172010-02-11 01:04:33 +00002342 if (!RD->getDefinition())
John McCall86ff3082010-02-04 22:26:26 +00002343 return false;
2344
Anders Carlsson4681ebd2009-03-22 20:18:17 +00002345 if (!RD->isAbstract())
2346 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00002347
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00002348 Diag(Loc, PD) << RD->getDeclName();
Mike Stump1eb44332009-09-09 15:08:12 +00002349
Anders Carlsson4681ebd2009-03-22 20:18:17 +00002350 // Check if we've already emitted the list of pure virtual functions for this
2351 // class.
2352 if (PureVirtualClassDiagSet && PureVirtualClassDiagSet->count(RD))
2353 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00002354
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00002355 CXXFinalOverriderMap FinalOverriders;
2356 RD->getFinalOverriders(FinalOverriders);
Mike Stump1eb44332009-09-09 15:08:12 +00002357
Anders Carlssonffdb2d22010-06-03 01:00:02 +00002358 // Keep a set of seen pure methods so we won't diagnose the same method
2359 // more than once.
2360 llvm::SmallPtrSet<const CXXMethodDecl *, 8> SeenPureMethods;
2361
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00002362 for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(),
2363 MEnd = FinalOverriders.end();
2364 M != MEnd;
2365 ++M) {
2366 for (OverridingMethods::iterator SO = M->second.begin(),
2367 SOEnd = M->second.end();
2368 SO != SOEnd; ++SO) {
2369 // C++ [class.abstract]p4:
2370 // A class is abstract if it contains or inherits at least one
2371 // pure virtual function for which the final overrider is pure
2372 // virtual.
Mike Stump1eb44332009-09-09 15:08:12 +00002373
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00002374 //
2375 if (SO->second.size() != 1)
2376 continue;
2377
2378 if (!SO->second.front().Method->isPure())
2379 continue;
2380
Anders Carlssonffdb2d22010-06-03 01:00:02 +00002381 if (!SeenPureMethods.insert(SO->second.front().Method))
2382 continue;
2383
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00002384 Diag(SO->second.front().Method->getLocation(),
2385 diag::note_pure_virtual_function)
2386 << SO->second.front().Method->getDeclName();
2387 }
Anders Carlsson4681ebd2009-03-22 20:18:17 +00002388 }
2389
2390 if (!PureVirtualClassDiagSet)
2391 PureVirtualClassDiagSet.reset(new RecordDeclSetTy);
2392 PureVirtualClassDiagSet->insert(RD);
Mike Stump1eb44332009-09-09 15:08:12 +00002393
Anders Carlsson4681ebd2009-03-22 20:18:17 +00002394 return true;
2395}
2396
Anders Carlsson8211eff2009-03-24 01:19:16 +00002397namespace {
Benjamin Kramer85b45212009-11-28 19:45:26 +00002398 class AbstractClassUsageDiagnoser
Anders Carlsson8211eff2009-03-24 01:19:16 +00002399 : public DeclVisitor<AbstractClassUsageDiagnoser, bool> {
2400 Sema &SemaRef;
2401 CXXRecordDecl *AbstractClass;
Mike Stump1eb44332009-09-09 15:08:12 +00002402
Anders Carlssone65a3c82009-03-24 17:23:42 +00002403 bool VisitDeclContext(const DeclContext *DC) {
Anders Carlsson8211eff2009-03-24 01:19:16 +00002404 bool Invalid = false;
2405
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002406 for (CXXRecordDecl::decl_iterator I = DC->decls_begin(),
2407 E = DC->decls_end(); I != E; ++I)
Anders Carlsson8211eff2009-03-24 01:19:16 +00002408 Invalid |= Visit(*I);
Anders Carlssone65a3c82009-03-24 17:23:42 +00002409
Anders Carlsson8211eff2009-03-24 01:19:16 +00002410 return Invalid;
2411 }
Mike Stump1eb44332009-09-09 15:08:12 +00002412
Anders Carlssone65a3c82009-03-24 17:23:42 +00002413 public:
2414 AbstractClassUsageDiagnoser(Sema& SemaRef, CXXRecordDecl *ac)
2415 : SemaRef(SemaRef), AbstractClass(ac) {
2416 Visit(SemaRef.Context.getTranslationUnitDecl());
2417 }
Anders Carlsson8211eff2009-03-24 01:19:16 +00002418
Anders Carlssone65a3c82009-03-24 17:23:42 +00002419 bool VisitFunctionDecl(const FunctionDecl *FD) {
2420 if (FD->isThisDeclarationADefinition()) {
2421 // No need to do the check if we're in a definition, because it requires
2422 // that the return/param types are complete.
Mike Stump1eb44332009-09-09 15:08:12 +00002423 // because that requires
Anders Carlssone65a3c82009-03-24 17:23:42 +00002424 return VisitDeclContext(FD);
2425 }
Mike Stump1eb44332009-09-09 15:08:12 +00002426
Anders Carlssone65a3c82009-03-24 17:23:42 +00002427 // Check the return type.
John McCall183700f2009-09-21 23:43:11 +00002428 QualType RTy = FD->getType()->getAs<FunctionType>()->getResultType();
Mike Stump1eb44332009-09-09 15:08:12 +00002429 bool Invalid =
Anders Carlssone65a3c82009-03-24 17:23:42 +00002430 SemaRef.RequireNonAbstractType(FD->getLocation(), RTy,
2431 diag::err_abstract_type_in_decl,
2432 Sema::AbstractReturnType,
2433 AbstractClass);
2434
Mike Stump1eb44332009-09-09 15:08:12 +00002435 for (FunctionDecl::param_const_iterator I = FD->param_begin(),
Anders Carlssone65a3c82009-03-24 17:23:42 +00002436 E = FD->param_end(); I != E; ++I) {
Anders Carlsson8211eff2009-03-24 01:19:16 +00002437 const ParmVarDecl *VD = *I;
Mike Stump1eb44332009-09-09 15:08:12 +00002438 Invalid |=
Anders Carlsson8211eff2009-03-24 01:19:16 +00002439 SemaRef.RequireNonAbstractType(VD->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00002440 VD->getOriginalType(),
2441 diag::err_abstract_type_in_decl,
Anders Carlssone65a3c82009-03-24 17:23:42 +00002442 Sema::AbstractParamType,
2443 AbstractClass);
Anders Carlsson8211eff2009-03-24 01:19:16 +00002444 }
2445
2446 return Invalid;
2447 }
Mike Stump1eb44332009-09-09 15:08:12 +00002448
Anders Carlssone65a3c82009-03-24 17:23:42 +00002449 bool VisitDecl(const Decl* D) {
2450 if (const DeclContext *DC = dyn_cast<DeclContext>(D))
2451 return VisitDeclContext(DC);
Mike Stump1eb44332009-09-09 15:08:12 +00002452
Anders Carlssone65a3c82009-03-24 17:23:42 +00002453 return false;
2454 }
Anders Carlsson8211eff2009-03-24 01:19:16 +00002455 };
2456}
2457
Douglas Gregor1ab537b2009-12-03 18:33:45 +00002458/// \brief Perform semantic checks on a class definition that has been
2459/// completing, introducing implicitly-declared members, checking for
2460/// abstract types, etc.
Douglas Gregor23c94db2010-07-02 17:43:08 +00002461void Sema::CheckCompletedCXXClass(CXXRecordDecl *Record) {
Douglas Gregor1ab537b2009-12-03 18:33:45 +00002462 if (!Record || Record->isInvalidDecl())
2463 return;
2464
Eli Friedmanff2d8782009-12-16 20:00:27 +00002465 if (!Record->isDependentType())
Douglas Gregor23c94db2010-07-02 17:43:08 +00002466 AddImplicitlyDeclaredMembersToClass(Record);
Douglas Gregor159ef1e2010-01-06 04:44:19 +00002467
Eli Friedmanff2d8782009-12-16 20:00:27 +00002468 if (Record->isInvalidDecl())
2469 return;
2470
John McCall233a6412010-01-28 07:38:46 +00002471 // Set access bits correctly on the directly-declared conversions.
2472 UnresolvedSetImpl *Convs = Record->getConversionFunctions();
2473 for (UnresolvedSetIterator I = Convs->begin(), E = Convs->end(); I != E; ++I)
2474 Convs->setAccess(I, (*I)->getAccess());
2475
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00002476 // Determine whether we need to check for final overriders. We do
2477 // this either when there are virtual base classes (in which case we
2478 // may end up finding multiple final overriders for a given virtual
2479 // function) or any of the base classes is abstract (in which case
2480 // we might detect that this class is abstract).
2481 bool CheckFinalOverriders = false;
2482 if (Record->isPolymorphic() && !Record->isInvalidDecl() &&
2483 !Record->isDependentType()) {
2484 if (Record->getNumVBases())
2485 CheckFinalOverriders = true;
2486 else if (!Record->isAbstract()) {
2487 for (CXXRecordDecl::base_class_const_iterator B = Record->bases_begin(),
2488 BEnd = Record->bases_end();
2489 B != BEnd; ++B) {
2490 CXXRecordDecl *BaseDecl
2491 = cast<CXXRecordDecl>(B->getType()->getAs<RecordType>()->getDecl());
2492 if (BaseDecl->isAbstract()) {
2493 CheckFinalOverriders = true;
2494 break;
2495 }
2496 }
2497 }
Douglas Gregor1ab537b2009-12-03 18:33:45 +00002498 }
2499
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00002500 if (CheckFinalOverriders) {
2501 CXXFinalOverriderMap FinalOverriders;
2502 Record->getFinalOverriders(FinalOverriders);
2503
2504 for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(),
2505 MEnd = FinalOverriders.end();
2506 M != MEnd; ++M) {
2507 for (OverridingMethods::iterator SO = M->second.begin(),
2508 SOEnd = M->second.end();
2509 SO != SOEnd; ++SO) {
2510 assert(SO->second.size() > 0 &&
2511 "All virtual functions have overridding virtual functions");
2512 if (SO->second.size() == 1) {
2513 // C++ [class.abstract]p4:
2514 // A class is abstract if it contains or inherits at least one
2515 // pure virtual function for which the final overrider is pure
2516 // virtual.
2517 if (SO->second.front().Method->isPure())
2518 Record->setAbstract(true);
2519 continue;
2520 }
2521
2522 // C++ [class.virtual]p2:
2523 // In a derived class, if a virtual member function of a base
2524 // class subobject has more than one final overrider the
2525 // program is ill-formed.
2526 Diag(Record->getLocation(), diag::err_multiple_final_overriders)
2527 << (NamedDecl *)M->first << Record;
2528 Diag(M->first->getLocation(), diag::note_overridden_virtual_function);
2529 for (OverridingMethods::overriding_iterator OM = SO->second.begin(),
2530 OMEnd = SO->second.end();
2531 OM != OMEnd; ++OM)
2532 Diag(OM->Method->getLocation(), diag::note_final_overrider)
2533 << (NamedDecl *)M->first << OM->Method->getParent();
2534
2535 Record->setInvalidDecl();
2536 }
2537 }
2538 }
2539
2540 if (Record->isAbstract() && !Record->isInvalidDecl())
Douglas Gregor1ab537b2009-12-03 18:33:45 +00002541 (void)AbstractClassUsageDiagnoser(*this, Record);
Douglas Gregor325e5932010-04-15 00:00:53 +00002542
2543 // If this is not an aggregate type and has no user-declared constructor,
2544 // complain about any non-static data members of reference or const scalar
2545 // type, since they will never get initializers.
2546 if (!Record->isInvalidDecl() && !Record->isDependentType() &&
2547 !Record->isAggregate() && !Record->hasUserDeclaredConstructor()) {
2548 bool Complained = false;
2549 for (RecordDecl::field_iterator F = Record->field_begin(),
2550 FEnd = Record->field_end();
2551 F != FEnd; ++F) {
2552 if (F->getType()->isReferenceType() ||
Benjamin Kramer1deea662010-04-16 17:43:15 +00002553 (F->getType().isConstQualified() && F->getType()->isScalarType())) {
Douglas Gregor325e5932010-04-15 00:00:53 +00002554 if (!Complained) {
2555 Diag(Record->getLocation(), diag::warn_no_constructor_for_refconst)
2556 << Record->getTagKind() << Record;
2557 Complained = true;
2558 }
2559
2560 Diag(F->getLocation(), diag::note_refconst_member_not_initialized)
2561 << F->getType()->isReferenceType()
2562 << F->getDeclName();
2563 }
2564 }
2565 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +00002566
2567 if (Record->isDynamicClass())
2568 DynamicClasses.push_back(Record);
Douglas Gregor1ab537b2009-12-03 18:33:45 +00002569}
2570
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00002571void Sema::ActOnFinishCXXMemberSpecification(Scope* S, SourceLocation RLoc,
Chris Lattnerb28317a2009-03-28 19:18:32 +00002572 DeclPtrTy TagDecl,
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00002573 SourceLocation LBrac,
Douglas Gregor0b4c9b52010-03-29 14:42:08 +00002574 SourceLocation RBrac,
2575 AttributeList *AttrList) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00002576 if (!TagDecl)
2577 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002578
Douglas Gregor42af25f2009-05-11 19:58:34 +00002579 AdjustDeclIfTemplate(TagDecl);
Douglas Gregor1ab537b2009-12-03 18:33:45 +00002580
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00002581 ActOnFields(S, RLoc, TagDecl,
Chris Lattnerb28317a2009-03-28 19:18:32 +00002582 (DeclPtrTy*)FieldCollector->getCurFields(),
Douglas Gregor0b4c9b52010-03-29 14:42:08 +00002583 FieldCollector->getCurNumFields(), LBrac, RBrac, AttrList);
Douglas Gregor2943aed2009-03-03 04:44:36 +00002584
Douglas Gregor23c94db2010-07-02 17:43:08 +00002585 CheckCompletedCXXClass(
2586 dyn_cast_or_null<CXXRecordDecl>(TagDecl.getAs<Decl>()));
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00002587}
2588
Douglas Gregord92ec472010-07-01 05:10:53 +00002589namespace {
2590 /// \brief Helper class that collects exception specifications for
2591 /// implicitly-declared special member functions.
2592 class ImplicitExceptionSpecification {
2593 ASTContext &Context;
2594 bool AllowsAllExceptions;
2595 llvm::SmallPtrSet<CanQualType, 4> ExceptionsSeen;
2596 llvm::SmallVector<QualType, 4> Exceptions;
2597
2598 public:
2599 explicit ImplicitExceptionSpecification(ASTContext &Context)
2600 : Context(Context), AllowsAllExceptions(false) { }
2601
2602 /// \brief Whether the special member function should have any
2603 /// exception specification at all.
2604 bool hasExceptionSpecification() const {
2605 return !AllowsAllExceptions;
2606 }
2607
2608 /// \brief Whether the special member function should have a
2609 /// throw(...) exception specification (a Microsoft extension).
2610 bool hasAnyExceptionSpecification() const {
2611 return false;
2612 }
2613
2614 /// \brief The number of exceptions in the exception specification.
2615 unsigned size() const { return Exceptions.size(); }
2616
2617 /// \brief The set of exceptions in the exception specification.
2618 const QualType *data() const { return Exceptions.data(); }
2619
2620 /// \brief Note that
2621 void CalledDecl(CXXMethodDecl *Method) {
2622 // If we already know that we allow all exceptions, do nothing.
Douglas Gregor4681ca82010-07-01 15:29:53 +00002623 if (AllowsAllExceptions || !Method)
Douglas Gregord92ec472010-07-01 05:10:53 +00002624 return;
2625
2626 const FunctionProtoType *Proto
2627 = Method->getType()->getAs<FunctionProtoType>();
2628
2629 // If this function can throw any exceptions, make a note of that.
2630 if (!Proto->hasExceptionSpec() || Proto->hasAnyExceptionSpec()) {
2631 AllowsAllExceptions = true;
2632 ExceptionsSeen.clear();
2633 Exceptions.clear();
2634 return;
2635 }
2636
2637 // Record the exceptions in this function's exception specification.
2638 for (FunctionProtoType::exception_iterator E = Proto->exception_begin(),
2639 EEnd = Proto->exception_end();
2640 E != EEnd; ++E)
2641 if (ExceptionsSeen.insert(Context.getCanonicalType(*E)))
2642 Exceptions.push_back(*E);
2643 }
2644 };
2645}
2646
2647
Douglas Gregor396b7cd2008-11-03 17:51:48 +00002648/// AddImplicitlyDeclaredMembersToClass - Adds any implicitly-declared
2649/// special functions, such as the default constructor, copy
2650/// constructor, or destructor, to the given C++ class (C++
2651/// [special]p1). This routine can only be executed just before the
2652/// definition of the class is complete.
Douglas Gregor23c94db2010-07-02 17:43:08 +00002653void Sema::AddImplicitlyDeclaredMembersToClass(CXXRecordDecl *ClassDecl) {
Douglas Gregor32df23e2010-07-01 22:02:46 +00002654 if (!ClassDecl->hasUserDeclaredConstructor())
Douglas Gregor18274032010-07-03 00:47:00 +00002655 ++ASTContext::NumImplicitDefaultConstructors;
Douglas Gregor396b7cd2008-11-03 17:51:48 +00002656
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00002657 if (!ClassDecl->hasUserDeclaredCopyConstructor())
Douglas Gregor22584312010-07-02 23:41:54 +00002658 ++ASTContext::NumImplicitCopyConstructors;
Douglas Gregor396b7cd2008-11-03 17:51:48 +00002659
Douglas Gregora376d102010-07-02 21:50:04 +00002660 if (!ClassDecl->hasUserDeclaredCopyAssignment()) {
2661 ++ASTContext::NumImplicitCopyAssignmentOperators;
2662
2663 // If we have a dynamic class, then the copy assignment operator may be
2664 // virtual, so we have to declare it immediately. This ensures that, e.g.,
2665 // it shows up in the right place in the vtable and that we diagnose
2666 // problems with the implicit exception specification.
2667 if (ClassDecl->isDynamicClass())
2668 DeclareImplicitCopyAssignment(ClassDecl);
2669 }
Sebastian Redl64b45f72009-01-05 20:52:13 +00002670
Douglas Gregor4923aa22010-07-02 20:37:36 +00002671 if (!ClassDecl->hasUserDeclaredDestructor()) {
2672 ++ASTContext::NumImplicitDestructors;
2673
2674 // If we have a dynamic class, then the destructor may be virtual, so we
2675 // have to declare the destructor immediately. This ensures that, e.g., it
2676 // shows up in the right place in the vtable and that we diagnose problems
2677 // with the implicit exception specification.
2678 if (ClassDecl->isDynamicClass())
2679 DeclareImplicitDestructor(ClassDecl);
2680 }
Douglas Gregor396b7cd2008-11-03 17:51:48 +00002681}
2682
Douglas Gregor6569d682009-05-27 23:11:45 +00002683void Sema::ActOnReenterTemplateScope(Scope *S, DeclPtrTy TemplateD) {
Douglas Gregor1cdcc572009-09-10 00:12:48 +00002684 Decl *D = TemplateD.getAs<Decl>();
2685 if (!D)
2686 return;
2687
2688 TemplateParameterList *Params = 0;
2689 if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D))
2690 Params = Template->getTemplateParameters();
2691 else if (ClassTemplatePartialSpecializationDecl *PartialSpec
2692 = dyn_cast<ClassTemplatePartialSpecializationDecl>(D))
2693 Params = PartialSpec->getTemplateParameters();
2694 else
Douglas Gregor6569d682009-05-27 23:11:45 +00002695 return;
2696
Douglas Gregor6569d682009-05-27 23:11:45 +00002697 for (TemplateParameterList::iterator Param = Params->begin(),
2698 ParamEnd = Params->end();
2699 Param != ParamEnd; ++Param) {
2700 NamedDecl *Named = cast<NamedDecl>(*Param);
2701 if (Named->getDeclName()) {
2702 S->AddDecl(DeclPtrTy::make(Named));
2703 IdResolver.AddDecl(Named);
2704 }
2705 }
2706}
2707
John McCall7a1dc562009-12-19 10:49:29 +00002708void Sema::ActOnStartDelayedMemberDeclarations(Scope *S, DeclPtrTy RecordD) {
2709 if (!RecordD) return;
2710 AdjustDeclIfTemplate(RecordD);
2711 CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordD.getAs<Decl>());
2712 PushDeclContext(S, Record);
2713}
2714
2715void Sema::ActOnFinishDelayedMemberDeclarations(Scope *S, DeclPtrTy RecordD) {
2716 if (!RecordD) return;
2717 PopDeclContext();
2718}
2719
Douglas Gregor72b505b2008-12-16 21:30:33 +00002720/// ActOnStartDelayedCXXMethodDeclaration - We have completed
2721/// parsing a top-level (non-nested) C++ class, and we are now
2722/// parsing those parts of the given Method declaration that could
2723/// not be parsed earlier (C++ [class.mem]p2), such as default
2724/// arguments. This action should enter the scope of the given
2725/// Method declaration as if we had just parsed the qualified method
2726/// name. However, it should not bring the parameters into scope;
2727/// that will be performed by ActOnDelayedCXXMethodParameter.
Chris Lattnerb28317a2009-03-28 19:18:32 +00002728void Sema::ActOnStartDelayedCXXMethodDeclaration(Scope *S, DeclPtrTy MethodD) {
Douglas Gregor72b505b2008-12-16 21:30:33 +00002729}
2730
2731/// ActOnDelayedCXXMethodParameter - We've already started a delayed
2732/// C++ method declaration. We're (re-)introducing the given
2733/// function parameter into scope for use in parsing later parts of
2734/// the method declaration. For example, we could see an
2735/// ActOnParamDefaultArgument event for this parameter.
Chris Lattnerb28317a2009-03-28 19:18:32 +00002736void Sema::ActOnDelayedCXXMethodParameter(Scope *S, DeclPtrTy ParamD) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00002737 if (!ParamD)
2738 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002739
Chris Lattnerb28317a2009-03-28 19:18:32 +00002740 ParmVarDecl *Param = cast<ParmVarDecl>(ParamD.getAs<Decl>());
Douglas Gregor61366e92008-12-24 00:01:03 +00002741
2742 // If this parameter has an unparsed default argument, clear it out
2743 // to make way for the parsed default argument.
2744 if (Param->hasUnparsedDefaultArg())
2745 Param->setDefaultArg(0);
2746
Chris Lattnerb28317a2009-03-28 19:18:32 +00002747 S->AddDecl(DeclPtrTy::make(Param));
Douglas Gregor72b505b2008-12-16 21:30:33 +00002748 if (Param->getDeclName())
2749 IdResolver.AddDecl(Param);
2750}
2751
2752/// ActOnFinishDelayedCXXMethodDeclaration - We have finished
2753/// processing the delayed method declaration for Method. The method
2754/// declaration is now considered finished. There may be a separate
2755/// ActOnStartOfFunctionDef action later (not necessarily
2756/// immediately!) for this method, if it was also defined inside the
2757/// class body.
Chris Lattnerb28317a2009-03-28 19:18:32 +00002758void Sema::ActOnFinishDelayedCXXMethodDeclaration(Scope *S, DeclPtrTy MethodD) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00002759 if (!MethodD)
2760 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002761
Douglas Gregorefd5bda2009-08-24 11:57:43 +00002762 AdjustDeclIfTemplate(MethodD);
Mike Stump1eb44332009-09-09 15:08:12 +00002763
Chris Lattnerb28317a2009-03-28 19:18:32 +00002764 FunctionDecl *Method = cast<FunctionDecl>(MethodD.getAs<Decl>());
Douglas Gregor72b505b2008-12-16 21:30:33 +00002765
2766 // Now that we have our default arguments, check the constructor
2767 // again. It could produce additional diagnostics or affect whether
2768 // the class has implicitly-declared destructors, among other
2769 // things.
Chris Lattner6e475012009-04-25 08:35:12 +00002770 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Method))
2771 CheckConstructor(Constructor);
Douglas Gregor72b505b2008-12-16 21:30:33 +00002772
2773 // Check the default arguments, which we may have added.
2774 if (!Method->isInvalidDecl())
2775 CheckCXXDefaultArguments(Method);
2776}
2777
Douglas Gregor42a552f2008-11-05 20:51:48 +00002778/// CheckConstructorDeclarator - Called by ActOnDeclarator to check
Douglas Gregor72b505b2008-12-16 21:30:33 +00002779/// the well-formedness of the constructor declarator @p D with type @p
Douglas Gregor42a552f2008-11-05 20:51:48 +00002780/// R. If there are any errors in the declarator, this routine will
Chris Lattner65401802009-04-25 08:28:21 +00002781/// emit diagnostics and set the invalid bit to true. In any case, the type
2782/// will be updated to reflect a well-formed type for the constructor and
2783/// returned.
2784QualType Sema::CheckConstructorDeclarator(Declarator &D, QualType R,
2785 FunctionDecl::StorageClass &SC) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00002786 bool isVirtual = D.getDeclSpec().isVirtualSpecified();
Douglas Gregor42a552f2008-11-05 20:51:48 +00002787
2788 // C++ [class.ctor]p3:
2789 // A constructor shall not be virtual (10.3) or static (9.4). A
2790 // constructor can be invoked for a const, volatile or const
2791 // volatile object. A constructor shall not be declared const,
2792 // volatile, or const volatile (9.3.2).
2793 if (isVirtual) {
Chris Lattner65401802009-04-25 08:28:21 +00002794 if (!D.isInvalidType())
2795 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
2796 << "virtual" << SourceRange(D.getDeclSpec().getVirtualSpecLoc())
2797 << SourceRange(D.getIdentifierLoc());
2798 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00002799 }
2800 if (SC == FunctionDecl::Static) {
Chris Lattner65401802009-04-25 08:28:21 +00002801 if (!D.isInvalidType())
2802 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
2803 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
2804 << SourceRange(D.getIdentifierLoc());
2805 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00002806 SC = FunctionDecl::None;
2807 }
Mike Stump1eb44332009-09-09 15:08:12 +00002808
Chris Lattner65401802009-04-25 08:28:21 +00002809 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
2810 if (FTI.TypeQuals != 0) {
John McCall0953e762009-09-24 19:53:00 +00002811 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002812 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
2813 << "const" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00002814 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002815 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
2816 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00002817 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002818 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
2819 << "restrict" << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +00002820 }
Mike Stump1eb44332009-09-09 15:08:12 +00002821
Douglas Gregor42a552f2008-11-05 20:51:48 +00002822 // Rebuild the function type "R" without any type qualifiers (in
2823 // case any of the errors above fired) and with "void" as the
Douglas Gregord92ec472010-07-01 05:10:53 +00002824 // return type, since constructors don't have return types.
John McCall183700f2009-09-21 23:43:11 +00002825 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
Chris Lattner65401802009-04-25 08:28:21 +00002826 return Context.getFunctionType(Context.VoidTy, Proto->arg_type_begin(),
2827 Proto->getNumArgs(),
Douglas Gregorce056bc2010-02-21 22:15:06 +00002828 Proto->isVariadic(), 0,
2829 Proto->hasExceptionSpec(),
2830 Proto->hasAnyExceptionSpec(),
2831 Proto->getNumExceptions(),
2832 Proto->exception_begin(),
Rafael Espindola264ba482010-03-30 20:24:48 +00002833 Proto->getExtInfo());
Douglas Gregor42a552f2008-11-05 20:51:48 +00002834}
2835
Douglas Gregor72b505b2008-12-16 21:30:33 +00002836/// CheckConstructor - Checks a fully-formed constructor for
2837/// well-formedness, issuing any diagnostics required. Returns true if
2838/// the constructor declarator is invalid.
Chris Lattner6e475012009-04-25 08:35:12 +00002839void Sema::CheckConstructor(CXXConstructorDecl *Constructor) {
Mike Stump1eb44332009-09-09 15:08:12 +00002840 CXXRecordDecl *ClassDecl
Douglas Gregor33297562009-03-27 04:38:56 +00002841 = dyn_cast<CXXRecordDecl>(Constructor->getDeclContext());
2842 if (!ClassDecl)
Chris Lattner6e475012009-04-25 08:35:12 +00002843 return Constructor->setInvalidDecl();
Douglas Gregor72b505b2008-12-16 21:30:33 +00002844
2845 // C++ [class.copy]p3:
2846 // A declaration of a constructor for a class X is ill-formed if
2847 // its first parameter is of type (optionally cv-qualified) X and
2848 // either there are no other parameters or else all other
2849 // parameters have default arguments.
Douglas Gregor33297562009-03-27 04:38:56 +00002850 if (!Constructor->isInvalidDecl() &&
Mike Stump1eb44332009-09-09 15:08:12 +00002851 ((Constructor->getNumParams() == 1) ||
2852 (Constructor->getNumParams() > 1 &&
Douglas Gregor66724ea2009-11-14 01:20:54 +00002853 Constructor->getParamDecl(1)->hasDefaultArg())) &&
2854 Constructor->getTemplateSpecializationKind()
2855 != TSK_ImplicitInstantiation) {
Douglas Gregor72b505b2008-12-16 21:30:33 +00002856 QualType ParamType = Constructor->getParamDecl(0)->getType();
2857 QualType ClassTy = Context.getTagDeclType(ClassDecl);
2858 if (Context.getCanonicalType(ParamType).getUnqualifiedType() == ClassTy) {
Douglas Gregora3a83512009-04-01 23:51:29 +00002859 SourceLocation ParamLoc = Constructor->getParamDecl(0)->getLocation();
Douglas Gregoraeb4a282010-05-27 21:28:21 +00002860 const char *ConstRef
2861 = Constructor->getParamDecl(0)->getIdentifier() ? "const &"
2862 : " const &";
Douglas Gregora3a83512009-04-01 23:51:29 +00002863 Diag(ParamLoc, diag::err_constructor_byvalue_arg)
Douglas Gregoraeb4a282010-05-27 21:28:21 +00002864 << FixItHint::CreateInsertion(ParamLoc, ConstRef);
Douglas Gregor66724ea2009-11-14 01:20:54 +00002865
2866 // FIXME: Rather that making the constructor invalid, we should endeavor
2867 // to fix the type.
Chris Lattner6e475012009-04-25 08:35:12 +00002868 Constructor->setInvalidDecl();
Douglas Gregor72b505b2008-12-16 21:30:33 +00002869 }
2870 }
Mike Stump1eb44332009-09-09 15:08:12 +00002871
John McCall3d043362010-04-13 07:45:41 +00002872 // Notify the class that we've added a constructor. In principle we
2873 // don't need to do this for out-of-line declarations; in practice
2874 // we only instantiate the most recent declaration of a method, so
2875 // we have to call this for everything but friends.
2876 if (!Constructor->getFriendObjectKind())
2877 ClassDecl->addedConstructor(Context, Constructor);
Douglas Gregor72b505b2008-12-16 21:30:33 +00002878}
2879
Anders Carlsson37909802009-11-30 21:24:50 +00002880/// CheckDestructor - Checks a fully-formed destructor for well-formedness,
2881/// issuing any diagnostics required. Returns true on error.
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00002882bool Sema::CheckDestructor(CXXDestructorDecl *Destructor) {
Anders Carlsson6d701392009-11-15 22:49:34 +00002883 CXXRecordDecl *RD = Destructor->getParent();
2884
2885 if (Destructor->isVirtual()) {
2886 SourceLocation Loc;
2887
2888 if (!Destructor->isImplicit())
2889 Loc = Destructor->getLocation();
2890 else
2891 Loc = RD->getLocation();
2892
2893 // If we have a virtual destructor, look up the deallocation function
2894 FunctionDecl *OperatorDelete = 0;
2895 DeclarationName Name =
2896 Context.DeclarationNames.getCXXOperatorName(OO_Delete);
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00002897 if (FindDeallocationFunction(Loc, RD, Name, OperatorDelete))
Anders Carlsson37909802009-11-30 21:24:50 +00002898 return true;
John McCall5efd91a2010-07-03 18:33:00 +00002899
2900 MarkDeclarationReferenced(Loc, OperatorDelete);
Anders Carlsson37909802009-11-30 21:24:50 +00002901
2902 Destructor->setOperatorDelete(OperatorDelete);
Anders Carlsson6d701392009-11-15 22:49:34 +00002903 }
Anders Carlsson37909802009-11-30 21:24:50 +00002904
2905 return false;
Anders Carlsson6d701392009-11-15 22:49:34 +00002906}
2907
Mike Stump1eb44332009-09-09 15:08:12 +00002908static inline bool
Anders Carlsson7786d1c2009-04-30 23:18:11 +00002909FTIHasSingleVoidArgument(DeclaratorChunk::FunctionTypeInfo &FTI) {
2910 return (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
2911 FTI.ArgInfo[0].Param &&
2912 FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType()->isVoidType());
2913}
2914
Douglas Gregor42a552f2008-11-05 20:51:48 +00002915/// CheckDestructorDeclarator - Called by ActOnDeclarator to check
2916/// the well-formednes of the destructor declarator @p D with type @p
2917/// R. If there are any errors in the declarator, this routine will
Chris Lattner65401802009-04-25 08:28:21 +00002918/// emit diagnostics and set the declarator to invalid. Even if this happens,
2919/// will be updated to reflect a well-formed type for the destructor and
2920/// returned.
Douglas Gregord92ec472010-07-01 05:10:53 +00002921QualType Sema::CheckDestructorDeclarator(Declarator &D, QualType R,
Chris Lattner65401802009-04-25 08:28:21 +00002922 FunctionDecl::StorageClass& SC) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00002923 // C++ [class.dtor]p1:
2924 // [...] A typedef-name that names a class is a class-name
2925 // (7.1.3); however, a typedef-name that names a class shall not
2926 // be used as the identifier in the declarator for a destructor
2927 // declaration.
Douglas Gregor3f9a0562009-11-03 01:35:08 +00002928 QualType DeclaratorType = GetTypeFromParser(D.getName().DestructorName);
Douglas Gregord92ec472010-07-01 05:10:53 +00002929 if (isa<TypedefType>(DeclaratorType))
Chris Lattner65401802009-04-25 08:28:21 +00002930 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
Douglas Gregor1a51b4a2009-02-09 15:09:02 +00002931 << DeclaratorType;
Douglas Gregor42a552f2008-11-05 20:51:48 +00002932
2933 // C++ [class.dtor]p2:
2934 // A destructor is used to destroy objects of its class type. A
2935 // destructor takes no parameters, and no return type can be
2936 // specified for it (not even void). The address of a destructor
2937 // shall not be taken. A destructor shall not be static. A
2938 // destructor can be invoked for a const, volatile or const
2939 // volatile object. A destructor shall not be declared const,
2940 // volatile or const volatile (9.3.2).
2941 if (SC == FunctionDecl::Static) {
Chris Lattner65401802009-04-25 08:28:21 +00002942 if (!D.isInvalidType())
2943 Diag(D.getIdentifierLoc(), diag::err_destructor_cannot_be)
2944 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
Douglas Gregord92ec472010-07-01 05:10:53 +00002945 << SourceRange(D.getIdentifierLoc())
2946 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
2947
Douglas Gregor42a552f2008-11-05 20:51:48 +00002948 SC = FunctionDecl::None;
2949 }
Chris Lattner65401802009-04-25 08:28:21 +00002950 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00002951 // Destructors don't have return types, but the parser will
2952 // happily parse something like:
2953 //
2954 // class X {
2955 // float ~X();
2956 // };
2957 //
2958 // The return type will be eliminated later.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002959 Diag(D.getIdentifierLoc(), diag::err_destructor_return_type)
2960 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
2961 << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +00002962 }
Mike Stump1eb44332009-09-09 15:08:12 +00002963
Chris Lattner65401802009-04-25 08:28:21 +00002964 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
2965 if (FTI.TypeQuals != 0 && !D.isInvalidType()) {
John McCall0953e762009-09-24 19:53:00 +00002966 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002967 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
2968 << "const" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00002969 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002970 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
2971 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00002972 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002973 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
2974 << "restrict" << SourceRange(D.getIdentifierLoc());
Chris Lattner65401802009-04-25 08:28:21 +00002975 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00002976 }
2977
2978 // Make sure we don't have any parameters.
Anders Carlsson7786d1c2009-04-30 23:18:11 +00002979 if (FTI.NumArgs > 0 && !FTIHasSingleVoidArgument(FTI)) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00002980 Diag(D.getIdentifierLoc(), diag::err_destructor_with_params);
2981
2982 // Delete the parameters.
Chris Lattner65401802009-04-25 08:28:21 +00002983 FTI.freeArgs();
2984 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00002985 }
2986
Mike Stump1eb44332009-09-09 15:08:12 +00002987 // Make sure the destructor isn't variadic.
Chris Lattner65401802009-04-25 08:28:21 +00002988 if (FTI.isVariadic) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00002989 Diag(D.getIdentifierLoc(), diag::err_destructor_variadic);
Chris Lattner65401802009-04-25 08:28:21 +00002990 D.setInvalidType();
2991 }
Douglas Gregor42a552f2008-11-05 20:51:48 +00002992
2993 // Rebuild the function type "R" without any type qualifiers or
2994 // parameters (in case any of the errors above fired) and with
2995 // "void" as the return type, since destructors don't have return
Douglas Gregord92ec472010-07-01 05:10:53 +00002996 // types.
2997 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
2998 if (!Proto)
2999 return QualType();
3000
Douglas Gregorce056bc2010-02-21 22:15:06 +00003001 return Context.getFunctionType(Context.VoidTy, 0, 0, false, 0,
Douglas Gregord92ec472010-07-01 05:10:53 +00003002 Proto->hasExceptionSpec(),
3003 Proto->hasAnyExceptionSpec(),
3004 Proto->getNumExceptions(),
3005 Proto->exception_begin(),
3006 Proto->getExtInfo());
Douglas Gregor42a552f2008-11-05 20:51:48 +00003007}
3008
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003009/// CheckConversionDeclarator - Called by ActOnDeclarator to check the
3010/// well-formednes of the conversion function declarator @p D with
3011/// type @p R. If there are any errors in the declarator, this routine
3012/// will emit diagnostics and return true. Otherwise, it will return
3013/// false. Either way, the type @p R will be updated to reflect a
3014/// well-formed type for the conversion operator.
Chris Lattner6e475012009-04-25 08:35:12 +00003015void Sema::CheckConversionDeclarator(Declarator &D, QualType &R,
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003016 FunctionDecl::StorageClass& SC) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003017 // C++ [class.conv.fct]p1:
3018 // Neither parameter types nor return type can be specified. The
Eli Friedman33a31382009-08-05 19:21:58 +00003019 // type of a conversion function (8.3.5) is "function taking no
Mike Stump1eb44332009-09-09 15:08:12 +00003020 // parameter returning conversion-type-id."
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003021 if (SC == FunctionDecl::Static) {
Chris Lattner6e475012009-04-25 08:35:12 +00003022 if (!D.isInvalidType())
3023 Diag(D.getIdentifierLoc(), diag::err_conv_function_not_member)
3024 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
3025 << SourceRange(D.getIdentifierLoc());
3026 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003027 SC = FunctionDecl::None;
3028 }
John McCalla3f81372010-04-13 00:04:31 +00003029
3030 QualType ConvType = GetTypeFromParser(D.getName().ConversionFunctionId);
3031
Chris Lattner6e475012009-04-25 08:35:12 +00003032 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003033 // Conversion functions don't have return types, but the parser will
3034 // happily parse something like:
3035 //
3036 // class X {
3037 // float operator bool();
3038 // };
3039 //
3040 // The return type will be changed later anyway.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003041 Diag(D.getIdentifierLoc(), diag::err_conv_function_return_type)
3042 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
3043 << SourceRange(D.getIdentifierLoc());
John McCalla3f81372010-04-13 00:04:31 +00003044 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003045 }
3046
John McCalla3f81372010-04-13 00:04:31 +00003047 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
3048
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003049 // Make sure we don't have any parameters.
John McCalla3f81372010-04-13 00:04:31 +00003050 if (Proto->getNumArgs() > 0) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003051 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_params);
3052
3053 // Delete the parameters.
Chris Lattner1833a832009-01-20 21:06:38 +00003054 D.getTypeObject(0).Fun.freeArgs();
Chris Lattner6e475012009-04-25 08:35:12 +00003055 D.setInvalidType();
John McCalla3f81372010-04-13 00:04:31 +00003056 } else if (Proto->isVariadic()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003057 Diag(D.getIdentifierLoc(), diag::err_conv_function_variadic);
Chris Lattner6e475012009-04-25 08:35:12 +00003058 D.setInvalidType();
3059 }
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003060
John McCalla3f81372010-04-13 00:04:31 +00003061 // Diagnose "&operator bool()" and other such nonsense. This
3062 // is actually a gcc extension which we don't support.
3063 if (Proto->getResultType() != ConvType) {
3064 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_complex_decl)
3065 << Proto->getResultType();
3066 D.setInvalidType();
3067 ConvType = Proto->getResultType();
3068 }
3069
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003070 // C++ [class.conv.fct]p4:
3071 // The conversion-type-id shall not represent a function type nor
3072 // an array type.
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003073 if (ConvType->isArrayType()) {
3074 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_array);
3075 ConvType = Context.getPointerType(ConvType);
Chris Lattner6e475012009-04-25 08:35:12 +00003076 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003077 } else if (ConvType->isFunctionType()) {
3078 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_function);
3079 ConvType = Context.getPointerType(ConvType);
Chris Lattner6e475012009-04-25 08:35:12 +00003080 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003081 }
3082
3083 // Rebuild the function type "R" without any parameters (in case any
3084 // of the errors above fired) and with the conversion type as the
Mike Stump1eb44332009-09-09 15:08:12 +00003085 // return type.
John McCalla3f81372010-04-13 00:04:31 +00003086 if (D.isInvalidType()) {
3087 R = Context.getFunctionType(ConvType, 0, 0, false,
3088 Proto->getTypeQuals(),
3089 Proto->hasExceptionSpec(),
3090 Proto->hasAnyExceptionSpec(),
3091 Proto->getNumExceptions(),
3092 Proto->exception_begin(),
3093 Proto->getExtInfo());
3094 }
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003095
Douglas Gregor09f41cf2009-01-14 15:45:31 +00003096 // C++0x explicit conversion operators.
3097 if (D.getDeclSpec().isExplicitSpecified() && !getLangOptions().CPlusPlus0x)
Mike Stump1eb44332009-09-09 15:08:12 +00003098 Diag(D.getDeclSpec().getExplicitSpecLoc(),
Douglas Gregor09f41cf2009-01-14 15:45:31 +00003099 diag::warn_explicit_conversion_functions)
3100 << SourceRange(D.getDeclSpec().getExplicitSpecLoc());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003101}
3102
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003103/// ActOnConversionDeclarator - Called by ActOnDeclarator to complete
3104/// the declaration of the given C++ conversion function. This routine
3105/// is responsible for recording the conversion function in the C++
3106/// class, if possible.
Chris Lattnerb28317a2009-03-28 19:18:32 +00003107Sema::DeclPtrTy Sema::ActOnConversionDeclarator(CXXConversionDecl *Conversion) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003108 assert(Conversion && "Expected to receive a conversion function declaration");
3109
Douglas Gregor9d350972008-12-12 08:25:50 +00003110 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Conversion->getDeclContext());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003111
3112 // Make sure we aren't redeclaring the conversion function.
3113 QualType ConvType = Context.getCanonicalType(Conversion->getConversionType());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003114
3115 // C++ [class.conv.fct]p1:
3116 // [...] A conversion function is never used to convert a
3117 // (possibly cv-qualified) object to the (possibly cv-qualified)
3118 // same object type (or a reference to it), to a (possibly
3119 // cv-qualified) base class of that type (or a reference to it),
3120 // or to (possibly cv-qualified) void.
Mike Stump390b4cc2009-05-16 07:39:55 +00003121 // FIXME: Suppress this warning if the conversion function ends up being a
3122 // virtual function that overrides a virtual function in a base class.
Mike Stump1eb44332009-09-09 15:08:12 +00003123 QualType ClassType
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003124 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Ted Kremenek6217b802009-07-29 21:53:49 +00003125 if (const ReferenceType *ConvTypeRef = ConvType->getAs<ReferenceType>())
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003126 ConvType = ConvTypeRef->getPointeeType();
3127 if (ConvType->isRecordType()) {
3128 ConvType = Context.getCanonicalType(ConvType).getUnqualifiedType();
3129 if (ConvType == ClassType)
Chris Lattner5dc266a2008-11-20 06:13:02 +00003130 Diag(Conversion->getLocation(), diag::warn_conv_to_self_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00003131 << ClassType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003132 else if (IsDerivedFrom(ClassType, ConvType))
Chris Lattner5dc266a2008-11-20 06:13:02 +00003133 Diag(Conversion->getLocation(), diag::warn_conv_to_base_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00003134 << ClassType << ConvType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003135 } else if (ConvType->isVoidType()) {
Chris Lattner5dc266a2008-11-20 06:13:02 +00003136 Diag(Conversion->getLocation(), diag::warn_conv_to_void_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00003137 << ClassType << ConvType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003138 }
3139
Douglas Gregor48026d22010-01-11 18:40:55 +00003140 if (Conversion->getPrimaryTemplate()) {
3141 // ignore specializations
3142 } else if (Conversion->getPreviousDeclaration()) {
Mike Stump1eb44332009-09-09 15:08:12 +00003143 if (FunctionTemplateDecl *ConversionTemplate
Douglas Gregor0c551062010-01-11 18:53:25 +00003144 = Conversion->getDescribedFunctionTemplate()) {
3145 if (ClassDecl->replaceConversion(
3146 ConversionTemplate->getPreviousDeclaration(),
3147 ConversionTemplate))
3148 return DeclPtrTy::make(ConversionTemplate);
3149 } else if (ClassDecl->replaceConversion(Conversion->getPreviousDeclaration(),
3150 Conversion))
John McCallba135432009-11-21 08:51:07 +00003151 return DeclPtrTy::make(Conversion);
Douglas Gregor70316a02008-12-26 15:00:45 +00003152 assert(Conversion->isInvalidDecl() && "Conversion should not get here.");
Mike Stump1eb44332009-09-09 15:08:12 +00003153 } else if (FunctionTemplateDecl *ConversionTemplate
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00003154 = Conversion->getDescribedFunctionTemplate())
Fariborz Jahaniandebc6292009-09-12 19:02:34 +00003155 ClassDecl->addConversionFunction(ConversionTemplate);
Douglas Gregor48026d22010-01-11 18:40:55 +00003156 else
Fariborz Jahaniandebc6292009-09-12 19:02:34 +00003157 ClassDecl->addConversionFunction(Conversion);
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003158
Chris Lattnerb28317a2009-03-28 19:18:32 +00003159 return DeclPtrTy::make(Conversion);
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003160}
3161
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003162//===----------------------------------------------------------------------===//
3163// Namespace Handling
3164//===----------------------------------------------------------------------===//
3165
3166/// ActOnStartNamespaceDef - This is called at the start of a namespace
3167/// definition.
Chris Lattnerb28317a2009-03-28 19:18:32 +00003168Sema::DeclPtrTy Sema::ActOnStartNamespaceDef(Scope *NamespcScope,
3169 SourceLocation IdentLoc,
3170 IdentifierInfo *II,
Anders Carlsson2a3503d2010-02-07 01:09:23 +00003171 SourceLocation LBrace,
3172 AttributeList *AttrList) {
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003173 NamespaceDecl *Namespc =
3174 NamespaceDecl::Create(Context, CurContext, IdentLoc, II);
3175 Namespc->setLBracLoc(LBrace);
3176
3177 Scope *DeclRegionScope = NamespcScope->getParent();
3178
Anders Carlsson2a3503d2010-02-07 01:09:23 +00003179 ProcessDeclAttributeList(DeclRegionScope, Namespc, AttrList);
3180
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003181 if (II) {
3182 // C++ [namespace.def]p2:
3183 // The identifier in an original-namespace-definition shall not have been
3184 // previously defined in the declarative region in which the
3185 // original-namespace-definition appears. The identifier in an
3186 // original-namespace-definition is the name of the namespace. Subsequently
3187 // in that declarative region, it is treated as an original-namespace-name.
3188
John McCallf36e02d2009-10-09 21:13:30 +00003189 NamedDecl *PrevDecl
Douglas Gregorc83c6872010-04-15 22:33:43 +00003190 = LookupSingleName(DeclRegionScope, II, IdentLoc, LookupOrdinaryName,
John McCall7d384dd2009-11-18 07:57:50 +00003191 ForRedeclaration);
Mike Stump1eb44332009-09-09 15:08:12 +00003192
Douglas Gregor44b43212008-12-11 16:49:14 +00003193 if (NamespaceDecl *OrigNS = dyn_cast_or_null<NamespaceDecl>(PrevDecl)) {
3194 // This is an extended namespace definition.
3195 // Attach this namespace decl to the chain of extended namespace
3196 // definitions.
3197 OrigNS->setNextNamespace(Namespc);
3198 Namespc->setOriginalNamespace(OrigNS->getOriginalNamespace());
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003199
Mike Stump1eb44332009-09-09 15:08:12 +00003200 // Remove the previous declaration from the scope.
Chris Lattnerb28317a2009-03-28 19:18:32 +00003201 if (DeclRegionScope->isDeclScope(DeclPtrTy::make(OrigNS))) {
Douglas Gregore267ff32008-12-11 20:41:00 +00003202 IdResolver.RemoveDecl(OrigNS);
Chris Lattnerb28317a2009-03-28 19:18:32 +00003203 DeclRegionScope->RemoveDecl(DeclPtrTy::make(OrigNS));
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003204 }
Douglas Gregor44b43212008-12-11 16:49:14 +00003205 } else if (PrevDecl) {
3206 // This is an invalid name redefinition.
3207 Diag(Namespc->getLocation(), diag::err_redefinition_different_kind)
3208 << Namespc->getDeclName();
3209 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
3210 Namespc->setInvalidDecl();
3211 // Continue on to push Namespc as current DeclContext and return it.
Douglas Gregor7adb10f2009-09-15 22:30:29 +00003212 } else if (II->isStr("std") &&
3213 CurContext->getLookupContext()->isTranslationUnit()) {
3214 // This is the first "real" definition of the namespace "std", so update
3215 // our cache of the "std" namespace to point at this definition.
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00003216 if (NamespaceDecl *StdNS = getStdNamespace()) {
Douglas Gregor7adb10f2009-09-15 22:30:29 +00003217 // We had already defined a dummy namespace "std". Link this new
3218 // namespace definition to the dummy namespace "std".
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00003219 StdNS->setNextNamespace(Namespc);
3220 StdNS->setLocation(IdentLoc);
3221 Namespc->setOriginalNamespace(StdNS->getOriginalNamespace());
Douglas Gregor7adb10f2009-09-15 22:30:29 +00003222 }
3223
3224 // Make our StdNamespace cache point at the first real definition of the
3225 // "std" namespace.
3226 StdNamespace = Namespc;
Mike Stump1eb44332009-09-09 15:08:12 +00003227 }
Douglas Gregor44b43212008-12-11 16:49:14 +00003228
3229 PushOnScopeChains(Namespc, DeclRegionScope);
3230 } else {
John McCall9aeed322009-10-01 00:25:31 +00003231 // Anonymous namespaces.
John McCall5fdd7642009-12-16 02:06:49 +00003232 assert(Namespc->isAnonymousNamespace());
John McCall5fdd7642009-12-16 02:06:49 +00003233
3234 // Link the anonymous namespace into its parent.
3235 NamespaceDecl *PrevDecl;
3236 DeclContext *Parent = CurContext->getLookupContext();
3237 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
3238 PrevDecl = TU->getAnonymousNamespace();
3239 TU->setAnonymousNamespace(Namespc);
3240 } else {
3241 NamespaceDecl *ND = cast<NamespaceDecl>(Parent);
3242 PrevDecl = ND->getAnonymousNamespace();
3243 ND->setAnonymousNamespace(Namespc);
3244 }
3245
3246 // Link the anonymous namespace with its previous declaration.
3247 if (PrevDecl) {
3248 assert(PrevDecl->isAnonymousNamespace());
3249 assert(!PrevDecl->getNextNamespace());
3250 Namespc->setOriginalNamespace(PrevDecl->getOriginalNamespace());
3251 PrevDecl->setNextNamespace(Namespc);
3252 }
John McCall9aeed322009-10-01 00:25:31 +00003253
Douglas Gregora4181472010-03-24 00:46:35 +00003254 CurContext->addDecl(Namespc);
3255
John McCall9aeed322009-10-01 00:25:31 +00003256 // C++ [namespace.unnamed]p1. An unnamed-namespace-definition
3257 // behaves as if it were replaced by
3258 // namespace unique { /* empty body */ }
3259 // using namespace unique;
3260 // namespace unique { namespace-body }
3261 // where all occurrences of 'unique' in a translation unit are
3262 // replaced by the same identifier and this identifier differs
3263 // from all other identifiers in the entire program.
3264
3265 // We just create the namespace with an empty name and then add an
3266 // implicit using declaration, just like the standard suggests.
3267 //
3268 // CodeGen enforces the "universally unique" aspect by giving all
3269 // declarations semantically contained within an anonymous
3270 // namespace internal linkage.
3271
John McCall5fdd7642009-12-16 02:06:49 +00003272 if (!PrevDecl) {
3273 UsingDirectiveDecl* UD
3274 = UsingDirectiveDecl::Create(Context, CurContext,
3275 /* 'using' */ LBrace,
3276 /* 'namespace' */ SourceLocation(),
3277 /* qualifier */ SourceRange(),
3278 /* NNS */ NULL,
3279 /* identifier */ SourceLocation(),
3280 Namespc,
3281 /* Ancestor */ CurContext);
3282 UD->setImplicit();
3283 CurContext->addDecl(UD);
3284 }
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003285 }
3286
3287 // Although we could have an invalid decl (i.e. the namespace name is a
3288 // redefinition), push it as current DeclContext and try to continue parsing.
Mike Stump390b4cc2009-05-16 07:39:55 +00003289 // FIXME: We should be able to push Namespc here, so that the each DeclContext
3290 // for the namespace has the declarations that showed up in that particular
3291 // namespace definition.
Douglas Gregor44b43212008-12-11 16:49:14 +00003292 PushDeclContext(NamespcScope, Namespc);
Chris Lattnerb28317a2009-03-28 19:18:32 +00003293 return DeclPtrTy::make(Namespc);
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003294}
3295
Sebastian Redleb0d8c92009-11-23 15:34:23 +00003296/// getNamespaceDecl - Returns the namespace a decl represents. If the decl
3297/// is a namespace alias, returns the namespace it points to.
3298static inline NamespaceDecl *getNamespaceDecl(NamedDecl *D) {
3299 if (NamespaceAliasDecl *AD = dyn_cast_or_null<NamespaceAliasDecl>(D))
3300 return AD->getNamespace();
3301 return dyn_cast_or_null<NamespaceDecl>(D);
3302}
3303
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003304/// ActOnFinishNamespaceDef - This callback is called after a namespace is
3305/// exited. Decl is the DeclTy returned by ActOnStartNamespaceDef.
Chris Lattnerb28317a2009-03-28 19:18:32 +00003306void Sema::ActOnFinishNamespaceDef(DeclPtrTy D, SourceLocation RBrace) {
3307 Decl *Dcl = D.getAs<Decl>();
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003308 NamespaceDecl *Namespc = dyn_cast_or_null<NamespaceDecl>(Dcl);
3309 assert(Namespc && "Invalid parameter, expected NamespaceDecl");
3310 Namespc->setRBracLoc(RBrace);
3311 PopDeclContext();
3312}
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00003313
Douglas Gregor66992202010-06-29 17:53:46 +00003314/// \brief Retrieve the special "std" namespace, which may require us to
3315/// implicitly define the namespace.
Argyrios Kyrtzidis26faaac2010-08-02 07:14:39 +00003316NamespaceDecl *Sema::getOrCreateStdNamespace() {
Douglas Gregor66992202010-06-29 17:53:46 +00003317 if (!StdNamespace) {
3318 // The "std" namespace has not yet been defined, so build one implicitly.
3319 StdNamespace = NamespaceDecl::Create(Context,
3320 Context.getTranslationUnitDecl(),
3321 SourceLocation(),
3322 &PP.getIdentifierTable().get("std"));
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00003323 getStdNamespace()->setImplicit(true);
Douglas Gregor66992202010-06-29 17:53:46 +00003324 }
3325
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00003326 return getStdNamespace();
Douglas Gregor66992202010-06-29 17:53:46 +00003327}
3328
Chris Lattnerb28317a2009-03-28 19:18:32 +00003329Sema::DeclPtrTy Sema::ActOnUsingDirective(Scope *S,
3330 SourceLocation UsingLoc,
3331 SourceLocation NamespcLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00003332 CXXScopeSpec &SS,
Chris Lattnerb28317a2009-03-28 19:18:32 +00003333 SourceLocation IdentLoc,
3334 IdentifierInfo *NamespcName,
3335 AttributeList *AttrList) {
Douglas Gregorf780abc2008-12-30 03:27:21 +00003336 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
3337 assert(NamespcName && "Invalid NamespcName.");
3338 assert(IdentLoc.isValid() && "Invalid NamespceName location.");
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003339 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Douglas Gregorf780abc2008-12-30 03:27:21 +00003340
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003341 UsingDirectiveDecl *UDir = 0;
Douglas Gregor66992202010-06-29 17:53:46 +00003342 NestedNameSpecifier *Qualifier = 0;
3343 if (SS.isSet())
3344 Qualifier = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
3345
Douglas Gregoreb11cd02009-01-14 22:20:51 +00003346 // Lookup namespace name.
John McCalla24dc2e2009-11-17 02:14:36 +00003347 LookupResult R(*this, NamespcName, IdentLoc, LookupNamespaceName);
3348 LookupParsedName(R, S, &SS);
3349 if (R.isAmbiguous())
Chris Lattnerb28317a2009-03-28 19:18:32 +00003350 return DeclPtrTy();
John McCalla24dc2e2009-11-17 02:14:36 +00003351
Douglas Gregor66992202010-06-29 17:53:46 +00003352 if (R.empty()) {
3353 // Allow "using namespace std;" or "using namespace ::std;" even if
3354 // "std" hasn't been defined yet, for GCC compatibility.
3355 if ((!Qualifier || Qualifier->getKind() == NestedNameSpecifier::Global) &&
3356 NamespcName->isStr("std")) {
3357 Diag(IdentLoc, diag::ext_using_undefined_std);
Argyrios Kyrtzidis26faaac2010-08-02 07:14:39 +00003358 R.addDecl(getOrCreateStdNamespace());
Douglas Gregor66992202010-06-29 17:53:46 +00003359 R.resolveKind();
3360 }
3361 // Otherwise, attempt typo correction.
3362 else if (DeclarationName Corrected = CorrectTypo(R, S, &SS, 0, false,
3363 CTC_NoKeywords, 0)) {
3364 if (R.getAsSingle<NamespaceDecl>() ||
3365 R.getAsSingle<NamespaceAliasDecl>()) {
3366 if (DeclContext *DC = computeDeclContext(SS, false))
3367 Diag(IdentLoc, diag::err_using_directive_member_suggest)
3368 << NamespcName << DC << Corrected << SS.getRange()
3369 << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
3370 else
3371 Diag(IdentLoc, diag::err_using_directive_suggest)
3372 << NamespcName << Corrected
3373 << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
3374 Diag(R.getFoundDecl()->getLocation(), diag::note_namespace_defined_here)
3375 << Corrected;
3376
3377 NamespcName = Corrected.getAsIdentifierInfo();
Douglas Gregor12eb5d62010-06-29 19:27:42 +00003378 } else {
3379 R.clear();
3380 R.setLookupName(NamespcName);
Douglas Gregor66992202010-06-29 17:53:46 +00003381 }
3382 }
3383 }
3384
John McCallf36e02d2009-10-09 21:13:30 +00003385 if (!R.empty()) {
Sebastian Redleb0d8c92009-11-23 15:34:23 +00003386 NamedDecl *Named = R.getFoundDecl();
3387 assert((isa<NamespaceDecl>(Named) || isa<NamespaceAliasDecl>(Named))
3388 && "expected namespace decl");
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003389 // C++ [namespace.udir]p1:
3390 // A using-directive specifies that the names in the nominated
3391 // namespace can be used in the scope in which the
3392 // using-directive appears after the using-directive. During
3393 // unqualified name lookup (3.4.1), the names appear as if they
3394 // were declared in the nearest enclosing namespace which
3395 // contains both the using-directive and the nominated
Eli Friedman33a31382009-08-05 19:21:58 +00003396 // namespace. [Note: in this context, "contains" means "contains
3397 // directly or indirectly". ]
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003398
3399 // Find enclosing context containing both using-directive and
3400 // nominated namespace.
Sebastian Redleb0d8c92009-11-23 15:34:23 +00003401 NamespaceDecl *NS = getNamespaceDecl(Named);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003402 DeclContext *CommonAncestor = cast<DeclContext>(NS);
3403 while (CommonAncestor && !CommonAncestor->Encloses(CurContext))
3404 CommonAncestor = CommonAncestor->getParent();
3405
Sebastian Redleb0d8c92009-11-23 15:34:23 +00003406 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc,
Douglas Gregor8419fa32009-05-30 06:31:56 +00003407 SS.getRange(),
3408 (NestedNameSpecifier *)SS.getScopeRep(),
Sebastian Redleb0d8c92009-11-23 15:34:23 +00003409 IdentLoc, Named, CommonAncestor);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003410 PushUsingDirective(S, UDir);
Douglas Gregorf780abc2008-12-30 03:27:21 +00003411 } else {
Chris Lattneread013e2009-01-06 07:24:29 +00003412 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
Douglas Gregorf780abc2008-12-30 03:27:21 +00003413 }
3414
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003415 // FIXME: We ignore attributes for now.
Douglas Gregorf780abc2008-12-30 03:27:21 +00003416 delete AttrList;
Chris Lattnerb28317a2009-03-28 19:18:32 +00003417 return DeclPtrTy::make(UDir);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003418}
3419
3420void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) {
3421 // If scope has associated entity, then using directive is at namespace
3422 // or translation unit scope. We add UsingDirectiveDecls, into
3423 // it's lookup structure.
3424 if (DeclContext *Ctx = static_cast<DeclContext*>(S->getEntity()))
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003425 Ctx->addDecl(UDir);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003426 else
3427 // Otherwise it is block-sope. using-directives will affect lookup
3428 // only to the end of scope.
Chris Lattnerb28317a2009-03-28 19:18:32 +00003429 S->PushUsingDirective(DeclPtrTy::make(UDir));
Douglas Gregorf780abc2008-12-30 03:27:21 +00003430}
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00003431
Douglas Gregor9cfbe482009-06-20 00:51:54 +00003432
3433Sema::DeclPtrTy Sema::ActOnUsingDeclaration(Scope *S,
Anders Carlsson595adc12009-08-29 19:54:19 +00003434 AccessSpecifier AS,
John McCall60fa3cf2009-12-11 02:10:03 +00003435 bool HasUsingKeyword,
Anders Carlssoncf9f9212009-08-28 03:16:11 +00003436 SourceLocation UsingLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00003437 CXXScopeSpec &SS,
Douglas Gregor12c118a2009-11-04 16:30:06 +00003438 UnqualifiedId &Name,
Anders Carlssoncf9f9212009-08-28 03:16:11 +00003439 AttributeList *AttrList,
John McCall7ba107a2009-11-18 02:36:19 +00003440 bool IsTypeName,
3441 SourceLocation TypenameLoc) {
Douglas Gregor9cfbe482009-06-20 00:51:54 +00003442 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Mike Stump1eb44332009-09-09 15:08:12 +00003443
Douglas Gregor12c118a2009-11-04 16:30:06 +00003444 switch (Name.getKind()) {
3445 case UnqualifiedId::IK_Identifier:
3446 case UnqualifiedId::IK_OperatorFunctionId:
Sean Hunt0486d742009-11-28 04:44:28 +00003447 case UnqualifiedId::IK_LiteralOperatorId:
Douglas Gregor12c118a2009-11-04 16:30:06 +00003448 case UnqualifiedId::IK_ConversionFunctionId:
3449 break;
3450
3451 case UnqualifiedId::IK_ConstructorName:
Douglas Gregor0efc2c12010-01-13 17:31:36 +00003452 case UnqualifiedId::IK_ConstructorTemplateId:
John McCall604e7f12009-12-08 07:46:18 +00003453 // C++0x inherited constructors.
3454 if (getLangOptions().CPlusPlus0x) break;
3455
Douglas Gregor12c118a2009-11-04 16:30:06 +00003456 Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_constructor)
3457 << SS.getRange();
3458 return DeclPtrTy();
3459
3460 case UnqualifiedId::IK_DestructorName:
3461 Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_destructor)
3462 << SS.getRange();
3463 return DeclPtrTy();
3464
3465 case UnqualifiedId::IK_TemplateId:
3466 Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_template_id)
3467 << SourceRange(Name.TemplateId->LAngleLoc, Name.TemplateId->RAngleLoc);
3468 return DeclPtrTy();
3469 }
3470
3471 DeclarationName TargetName = GetNameFromUnqualifiedId(Name);
John McCall604e7f12009-12-08 07:46:18 +00003472 if (!TargetName)
3473 return DeclPtrTy();
3474
John McCall60fa3cf2009-12-11 02:10:03 +00003475 // Warn about using declarations.
3476 // TODO: store that the declaration was written without 'using' and
3477 // talk about access decls instead of using decls in the
3478 // diagnostics.
3479 if (!HasUsingKeyword) {
3480 UsingLoc = Name.getSourceRange().getBegin();
3481
3482 Diag(UsingLoc, diag::warn_access_decl_deprecated)
Douglas Gregor849b2432010-03-31 17:46:05 +00003483 << FixItHint::CreateInsertion(SS.getRange().getBegin(), "using ");
John McCall60fa3cf2009-12-11 02:10:03 +00003484 }
3485
John McCall9488ea12009-11-17 05:59:44 +00003486 NamedDecl *UD = BuildUsingDeclaration(S, AS, UsingLoc, SS,
Douglas Gregor12c118a2009-11-04 16:30:06 +00003487 Name.getSourceRange().getBegin(),
John McCall7ba107a2009-11-18 02:36:19 +00003488 TargetName, AttrList,
3489 /* IsInstantiation */ false,
3490 IsTypeName, TypenameLoc);
John McCalled976492009-12-04 22:46:56 +00003491 if (UD)
3492 PushOnScopeChains(UD, S, /*AddToContext*/ false);
Mike Stump1eb44332009-09-09 15:08:12 +00003493
Anders Carlssonc72160b2009-08-28 05:40:36 +00003494 return DeclPtrTy::make(UD);
3495}
3496
Douglas Gregor09acc982010-07-07 23:08:52 +00003497/// \brief Determine whether a using declaration considers the given
3498/// declarations as "equivalent", e.g., if they are redeclarations of
3499/// the same entity or are both typedefs of the same type.
3500static bool
3501IsEquivalentForUsingDecl(ASTContext &Context, NamedDecl *D1, NamedDecl *D2,
3502 bool &SuppressRedeclaration) {
3503 if (D1->getCanonicalDecl() == D2->getCanonicalDecl()) {
3504 SuppressRedeclaration = false;
3505 return true;
3506 }
3507
3508 if (TypedefDecl *TD1 = dyn_cast<TypedefDecl>(D1))
3509 if (TypedefDecl *TD2 = dyn_cast<TypedefDecl>(D2)) {
3510 SuppressRedeclaration = true;
3511 return Context.hasSameType(TD1->getUnderlyingType(),
3512 TD2->getUnderlyingType());
3513 }
3514
3515 return false;
3516}
3517
3518
John McCall9f54ad42009-12-10 09:41:52 +00003519/// Determines whether to create a using shadow decl for a particular
3520/// decl, given the set of decls existing prior to this using lookup.
3521bool Sema::CheckUsingShadowDecl(UsingDecl *Using, NamedDecl *Orig,
3522 const LookupResult &Previous) {
3523 // Diagnose finding a decl which is not from a base class of the
3524 // current class. We do this now because there are cases where this
3525 // function will silently decide not to build a shadow decl, which
3526 // will pre-empt further diagnostics.
3527 //
3528 // We don't need to do this in C++0x because we do the check once on
3529 // the qualifier.
3530 //
3531 // FIXME: diagnose the following if we care enough:
3532 // struct A { int foo; };
3533 // struct B : A { using A::foo; };
3534 // template <class T> struct C : A {};
3535 // template <class T> struct D : C<T> { using B::foo; } // <---
3536 // This is invalid (during instantiation) in C++03 because B::foo
3537 // resolves to the using decl in B, which is not a base class of D<T>.
3538 // We can't diagnose it immediately because C<T> is an unknown
3539 // specialization. The UsingShadowDecl in D<T> then points directly
3540 // to A::foo, which will look well-formed when we instantiate.
3541 // The right solution is to not collapse the shadow-decl chain.
3542 if (!getLangOptions().CPlusPlus0x && CurContext->isRecord()) {
3543 DeclContext *OrigDC = Orig->getDeclContext();
3544
3545 // Handle enums and anonymous structs.
3546 if (isa<EnumDecl>(OrigDC)) OrigDC = OrigDC->getParent();
3547 CXXRecordDecl *OrigRec = cast<CXXRecordDecl>(OrigDC);
3548 while (OrigRec->isAnonymousStructOrUnion())
3549 OrigRec = cast<CXXRecordDecl>(OrigRec->getDeclContext());
3550
3551 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(OrigRec)) {
3552 if (OrigDC == CurContext) {
3553 Diag(Using->getLocation(),
3554 diag::err_using_decl_nested_name_specifier_is_current_class)
3555 << Using->getNestedNameRange();
3556 Diag(Orig->getLocation(), diag::note_using_decl_target);
3557 return true;
3558 }
3559
3560 Diag(Using->getNestedNameRange().getBegin(),
3561 diag::err_using_decl_nested_name_specifier_is_not_base_class)
3562 << Using->getTargetNestedNameDecl()
3563 << cast<CXXRecordDecl>(CurContext)
3564 << Using->getNestedNameRange();
3565 Diag(Orig->getLocation(), diag::note_using_decl_target);
3566 return true;
3567 }
3568 }
3569
3570 if (Previous.empty()) return false;
3571
3572 NamedDecl *Target = Orig;
3573 if (isa<UsingShadowDecl>(Target))
3574 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
3575
John McCalld7533ec2009-12-11 02:33:26 +00003576 // If the target happens to be one of the previous declarations, we
3577 // don't have a conflict.
3578 //
3579 // FIXME: but we might be increasing its access, in which case we
3580 // should redeclare it.
3581 NamedDecl *NonTag = 0, *Tag = 0;
3582 for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
3583 I != E; ++I) {
3584 NamedDecl *D = (*I)->getUnderlyingDecl();
Douglas Gregor09acc982010-07-07 23:08:52 +00003585 bool Result;
3586 if (IsEquivalentForUsingDecl(Context, D, Target, Result))
3587 return Result;
John McCalld7533ec2009-12-11 02:33:26 +00003588
3589 (isa<TagDecl>(D) ? Tag : NonTag) = D;
3590 }
3591
John McCall9f54ad42009-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;
John McCallad00b772010-06-16 08:42:20 +00003600 switch (CheckOverload(0, FD, Previous, OldDecl, /*IsForUsingDecl*/ true)) {
John McCall9f54ad42009-12-10 09:41:52 +00003601 case Ovl_Overload:
3602 return false;
3603
3604 case Ovl_NonFunction:
John McCall41ce66f2009-12-10 19:51:03 +00003605 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00003606 break;
3607
3608 // We found a decl with the exact signature.
3609 case Ovl_Match:
John McCall9f54ad42009-12-10 09:41:52 +00003610 // If we're in a record, we want to hide the target, so we
3611 // return true (without a diagnostic) to tell the caller not to
3612 // build a shadow decl.
3613 if (CurContext->isRecord())
3614 return true;
3615
3616 // If we're not in a record, this is an error.
John McCall41ce66f2009-12-10 19:51:03 +00003617 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00003618 break;
3619 }
3620
3621 Diag(Target->getLocation(), diag::note_using_decl_target);
3622 Diag(OldDecl->getLocation(), diag::note_using_decl_conflict);
3623 return true;
3624 }
3625
3626 // Target is not a function.
3627
John McCall9f54ad42009-12-10 09:41:52 +00003628 if (isa<TagDecl>(Target)) {
3629 // No conflict between a tag and a non-tag.
3630 if (!Tag) return false;
3631
John McCall41ce66f2009-12-10 19:51:03 +00003632 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00003633 Diag(Target->getLocation(), diag::note_using_decl_target);
3634 Diag(Tag->getLocation(), diag::note_using_decl_conflict);
3635 return true;
3636 }
3637
3638 // No conflict between a tag and a non-tag.
3639 if (!NonTag) return false;
3640
John McCall41ce66f2009-12-10 19:51:03 +00003641 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00003642 Diag(Target->getLocation(), diag::note_using_decl_target);
3643 Diag(NonTag->getLocation(), diag::note_using_decl_conflict);
3644 return true;
3645}
3646
John McCall9488ea12009-11-17 05:59:44 +00003647/// Builds a shadow declaration corresponding to a 'using' declaration.
John McCall604e7f12009-12-08 07:46:18 +00003648UsingShadowDecl *Sema::BuildUsingShadowDecl(Scope *S,
John McCall604e7f12009-12-08 07:46:18 +00003649 UsingDecl *UD,
3650 NamedDecl *Orig) {
John McCall9488ea12009-11-17 05:59:44 +00003651
3652 // If we resolved to another shadow declaration, just coalesce them.
John McCall604e7f12009-12-08 07:46:18 +00003653 NamedDecl *Target = Orig;
3654 if (isa<UsingShadowDecl>(Target)) {
3655 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
3656 assert(!isa<UsingShadowDecl>(Target) && "nested shadow declaration");
John McCall9488ea12009-11-17 05:59:44 +00003657 }
3658
3659 UsingShadowDecl *Shadow
John McCall604e7f12009-12-08 07:46:18 +00003660 = UsingShadowDecl::Create(Context, CurContext,
3661 UD->getLocation(), UD, Target);
John McCall9488ea12009-11-17 05:59:44 +00003662 UD->addShadowDecl(Shadow);
3663
3664 if (S)
John McCall604e7f12009-12-08 07:46:18 +00003665 PushOnScopeChains(Shadow, S);
John McCall9488ea12009-11-17 05:59:44 +00003666 else
John McCall604e7f12009-12-08 07:46:18 +00003667 CurContext->addDecl(Shadow);
John McCall9f54ad42009-12-10 09:41:52 +00003668 Shadow->setAccess(UD->getAccess());
John McCall9488ea12009-11-17 05:59:44 +00003669
John McCall32daa422010-03-31 01:36:47 +00003670 // Register it as a conversion if appropriate.
3671 if (Shadow->getDeclName().getNameKind()
3672 == DeclarationName::CXXConversionFunctionName)
3673 cast<CXXRecordDecl>(CurContext)->addConversionFunction(Shadow);
3674
John McCall604e7f12009-12-08 07:46:18 +00003675 if (Orig->isInvalidDecl() || UD->isInvalidDecl())
3676 Shadow->setInvalidDecl();
3677
John McCall9f54ad42009-12-10 09:41:52 +00003678 return Shadow;
3679}
John McCall604e7f12009-12-08 07:46:18 +00003680
John McCall9f54ad42009-12-10 09:41:52 +00003681/// Hides a using shadow declaration. This is required by the current
3682/// using-decl implementation when a resolvable using declaration in a
3683/// class is followed by a declaration which would hide or override
3684/// one or more of the using decl's targets; for example:
3685///
3686/// struct Base { void foo(int); };
3687/// struct Derived : Base {
3688/// using Base::foo;
3689/// void foo(int);
3690/// };
3691///
3692/// The governing language is C++03 [namespace.udecl]p12:
3693///
3694/// When a using-declaration brings names from a base class into a
3695/// derived class scope, member functions in the derived class
3696/// override and/or hide member functions with the same name and
3697/// parameter types in a base class (rather than conflicting).
3698///
3699/// There are two ways to implement this:
3700/// (1) optimistically create shadow decls when they're not hidden
3701/// by existing declarations, or
3702/// (2) don't create any shadow decls (or at least don't make them
3703/// visible) until we've fully parsed/instantiated the class.
3704/// The problem with (1) is that we might have to retroactively remove
3705/// a shadow decl, which requires several O(n) operations because the
3706/// decl structures are (very reasonably) not designed for removal.
3707/// (2) avoids this but is very fiddly and phase-dependent.
3708void Sema::HideUsingShadowDecl(Scope *S, UsingShadowDecl *Shadow) {
John McCall32daa422010-03-31 01:36:47 +00003709 if (Shadow->getDeclName().getNameKind() ==
3710 DeclarationName::CXXConversionFunctionName)
3711 cast<CXXRecordDecl>(Shadow->getDeclContext())->removeConversion(Shadow);
3712
John McCall9f54ad42009-12-10 09:41:52 +00003713 // Remove it from the DeclContext...
3714 Shadow->getDeclContext()->removeDecl(Shadow);
John McCall604e7f12009-12-08 07:46:18 +00003715
John McCall9f54ad42009-12-10 09:41:52 +00003716 // ...and the scope, if applicable...
3717 if (S) {
3718 S->RemoveDecl(DeclPtrTy::make(static_cast<Decl*>(Shadow)));
3719 IdResolver.RemoveDecl(Shadow);
John McCall604e7f12009-12-08 07:46:18 +00003720 }
3721
John McCall9f54ad42009-12-10 09:41:52 +00003722 // ...and the using decl.
3723 Shadow->getUsingDecl()->removeShadowDecl(Shadow);
3724
3725 // TODO: complain somehow if Shadow was used. It shouldn't
John McCall32daa422010-03-31 01:36:47 +00003726 // be possible for this to happen, because...?
John McCall9488ea12009-11-17 05:59:44 +00003727}
3728
John McCall7ba107a2009-11-18 02:36:19 +00003729/// Builds a using declaration.
3730///
3731/// \param IsInstantiation - Whether this call arises from an
3732/// instantiation of an unresolved using declaration. We treat
3733/// the lookup differently for these declarations.
John McCall9488ea12009-11-17 05:59:44 +00003734NamedDecl *Sema::BuildUsingDeclaration(Scope *S, AccessSpecifier AS,
3735 SourceLocation UsingLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00003736 CXXScopeSpec &SS,
Anders Carlssonc72160b2009-08-28 05:40:36 +00003737 SourceLocation IdentLoc,
3738 DeclarationName Name,
3739 AttributeList *AttrList,
John McCall7ba107a2009-11-18 02:36:19 +00003740 bool IsInstantiation,
3741 bool IsTypeName,
3742 SourceLocation TypenameLoc) {
Anders Carlssonc72160b2009-08-28 05:40:36 +00003743 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
3744 assert(IdentLoc.isValid() && "Invalid TargetName location.");
Eli Friedman2a16a132009-08-27 05:09:36 +00003745
Anders Carlsson550b14b2009-08-28 05:49:21 +00003746 // FIXME: We ignore attributes for now.
3747 delete AttrList;
Mike Stump1eb44332009-09-09 15:08:12 +00003748
Anders Carlssoncf9f9212009-08-28 03:16:11 +00003749 if (SS.isEmpty()) {
3750 Diag(IdentLoc, diag::err_using_requires_qualname);
Anders Carlssonc72160b2009-08-28 05:40:36 +00003751 return 0;
Anders Carlssoncf9f9212009-08-28 03:16:11 +00003752 }
Mike Stump1eb44332009-09-09 15:08:12 +00003753
John McCall9f54ad42009-12-10 09:41:52 +00003754 // Do the redeclaration lookup in the current scope.
3755 LookupResult Previous(*this, Name, IdentLoc, LookupUsingDeclName,
3756 ForRedeclaration);
3757 Previous.setHideTags(false);
3758 if (S) {
3759 LookupName(Previous, S);
3760
3761 // It is really dumb that we have to do this.
3762 LookupResult::Filter F = Previous.makeFilter();
3763 while (F.hasNext()) {
3764 NamedDecl *D = F.next();
3765 if (!isDeclInScope(D, CurContext, S))
3766 F.erase();
3767 }
3768 F.done();
3769 } else {
3770 assert(IsInstantiation && "no scope in non-instantiation");
3771 assert(CurContext->isRecord() && "scope not record in instantiation");
3772 LookupQualifiedName(Previous, CurContext);
3773 }
3774
Mike Stump1eb44332009-09-09 15:08:12 +00003775 NestedNameSpecifier *NNS =
Anders Carlssoncf9f9212009-08-28 03:16:11 +00003776 static_cast<NestedNameSpecifier *>(SS.getScopeRep());
3777
John McCall9f54ad42009-12-10 09:41:52 +00003778 // Check for invalid redeclarations.
3779 if (CheckUsingDeclRedeclaration(UsingLoc, IsTypeName, SS, IdentLoc, Previous))
3780 return 0;
3781
3782 // Check for bad qualifiers.
John McCalled976492009-12-04 22:46:56 +00003783 if (CheckUsingDeclQualifier(UsingLoc, SS, IdentLoc))
3784 return 0;
3785
John McCallaf8e6ed2009-11-12 03:15:40 +00003786 DeclContext *LookupContext = computeDeclContext(SS);
John McCalled976492009-12-04 22:46:56 +00003787 NamedDecl *D;
John McCallaf8e6ed2009-11-12 03:15:40 +00003788 if (!LookupContext) {
John McCall7ba107a2009-11-18 02:36:19 +00003789 if (IsTypeName) {
John McCalled976492009-12-04 22:46:56 +00003790 // FIXME: not all declaration name kinds are legal here
3791 D = UnresolvedUsingTypenameDecl::Create(Context, CurContext,
3792 UsingLoc, TypenameLoc,
3793 SS.getRange(), NNS,
John McCall7ba107a2009-11-18 02:36:19 +00003794 IdentLoc, Name);
John McCalled976492009-12-04 22:46:56 +00003795 } else {
3796 D = UnresolvedUsingValueDecl::Create(Context, CurContext,
3797 UsingLoc, SS.getRange(), NNS,
3798 IdentLoc, Name);
John McCall7ba107a2009-11-18 02:36:19 +00003799 }
John McCalled976492009-12-04 22:46:56 +00003800 } else {
3801 D = UsingDecl::Create(Context, CurContext, IdentLoc,
3802 SS.getRange(), UsingLoc, NNS, Name,
3803 IsTypeName);
Anders Carlsson550b14b2009-08-28 05:49:21 +00003804 }
John McCalled976492009-12-04 22:46:56 +00003805 D->setAccess(AS);
3806 CurContext->addDecl(D);
3807
3808 if (!LookupContext) return D;
3809 UsingDecl *UD = cast<UsingDecl>(D);
Mike Stump1eb44332009-09-09 15:08:12 +00003810
John McCall77bb1aa2010-05-01 00:40:08 +00003811 if (RequireCompleteDeclContext(SS, LookupContext)) {
John McCall604e7f12009-12-08 07:46:18 +00003812 UD->setInvalidDecl();
3813 return UD;
Anders Carlssoncf9f9212009-08-28 03:16:11 +00003814 }
3815
John McCall604e7f12009-12-08 07:46:18 +00003816 // Look up the target name.
3817
John McCalla24dc2e2009-11-17 02:14:36 +00003818 LookupResult R(*this, Name, IdentLoc, LookupOrdinaryName);
John McCall7ba107a2009-11-18 02:36:19 +00003819
John McCall604e7f12009-12-08 07:46:18 +00003820 // Unlike most lookups, we don't always want to hide tag
3821 // declarations: tag names are visible through the using declaration
3822 // even if hidden by ordinary names, *except* in a dependent context
3823 // where it's important for the sanity of two-phase lookup.
John McCall7ba107a2009-11-18 02:36:19 +00003824 if (!IsInstantiation)
3825 R.setHideTags(false);
John McCall9488ea12009-11-17 05:59:44 +00003826
John McCalla24dc2e2009-11-17 02:14:36 +00003827 LookupQualifiedName(R, LookupContext);
Mike Stump1eb44332009-09-09 15:08:12 +00003828
John McCallf36e02d2009-10-09 21:13:30 +00003829 if (R.empty()) {
Douglas Gregor3f093272009-10-13 21:16:44 +00003830 Diag(IdentLoc, diag::err_no_member)
3831 << Name << LookupContext << SS.getRange();
John McCalled976492009-12-04 22:46:56 +00003832 UD->setInvalidDecl();
3833 return UD;
Douglas Gregor9cfbe482009-06-20 00:51:54 +00003834 }
3835
John McCalled976492009-12-04 22:46:56 +00003836 if (R.isAmbiguous()) {
3837 UD->setInvalidDecl();
3838 return UD;
3839 }
Mike Stump1eb44332009-09-09 15:08:12 +00003840
John McCall7ba107a2009-11-18 02:36:19 +00003841 if (IsTypeName) {
3842 // If we asked for a typename and got a non-type decl, error out.
John McCalled976492009-12-04 22:46:56 +00003843 if (!R.getAsSingle<TypeDecl>()) {
John McCall7ba107a2009-11-18 02:36:19 +00003844 Diag(IdentLoc, diag::err_using_typename_non_type);
3845 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I)
3846 Diag((*I)->getUnderlyingDecl()->getLocation(),
3847 diag::note_using_decl_target);
John McCalled976492009-12-04 22:46:56 +00003848 UD->setInvalidDecl();
3849 return UD;
John McCall7ba107a2009-11-18 02:36:19 +00003850 }
3851 } else {
3852 // If we asked for a non-typename and we got a type, error out,
3853 // but only if this is an instantiation of an unresolved using
3854 // decl. Otherwise just silently find the type name.
John McCalled976492009-12-04 22:46:56 +00003855 if (IsInstantiation && R.getAsSingle<TypeDecl>()) {
John McCall7ba107a2009-11-18 02:36:19 +00003856 Diag(IdentLoc, diag::err_using_dependent_value_is_type);
3857 Diag(R.getFoundDecl()->getLocation(), diag::note_using_decl_target);
John McCalled976492009-12-04 22:46:56 +00003858 UD->setInvalidDecl();
3859 return UD;
John McCall7ba107a2009-11-18 02:36:19 +00003860 }
Anders Carlssoncf9f9212009-08-28 03:16:11 +00003861 }
3862
Anders Carlsson73b39cf2009-08-28 03:35:18 +00003863 // C++0x N2914 [namespace.udecl]p6:
3864 // A using-declaration shall not name a namespace.
John McCalled976492009-12-04 22:46:56 +00003865 if (R.getAsSingle<NamespaceDecl>()) {
Anders Carlsson73b39cf2009-08-28 03:35:18 +00003866 Diag(IdentLoc, diag::err_using_decl_can_not_refer_to_namespace)
3867 << SS.getRange();
John McCalled976492009-12-04 22:46:56 +00003868 UD->setInvalidDecl();
3869 return UD;
Anders Carlsson73b39cf2009-08-28 03:35:18 +00003870 }
Mike Stump1eb44332009-09-09 15:08:12 +00003871
John McCall9f54ad42009-12-10 09:41:52 +00003872 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) {
3873 if (!CheckUsingShadowDecl(UD, *I, Previous))
3874 BuildUsingShadowDecl(S, UD, *I);
3875 }
John McCall9488ea12009-11-17 05:59:44 +00003876
3877 return UD;
Douglas Gregor9cfbe482009-06-20 00:51:54 +00003878}
3879
John McCall9f54ad42009-12-10 09:41:52 +00003880/// Checks that the given using declaration is not an invalid
3881/// redeclaration. Note that this is checking only for the using decl
3882/// itself, not for any ill-formedness among the UsingShadowDecls.
3883bool Sema::CheckUsingDeclRedeclaration(SourceLocation UsingLoc,
3884 bool isTypeName,
3885 const CXXScopeSpec &SS,
3886 SourceLocation NameLoc,
3887 const LookupResult &Prev) {
3888 // C++03 [namespace.udecl]p8:
3889 // C++0x [namespace.udecl]p10:
3890 // A using-declaration is a declaration and can therefore be used
3891 // repeatedly where (and only where) multiple declarations are
3892 // allowed.
Douglas Gregora97badf2010-05-06 23:31:27 +00003893 //
3894 // That's in non-member contexts.
3895 if (!CurContext->getLookupContext()->isRecord())
John McCall9f54ad42009-12-10 09:41:52 +00003896 return false;
3897
3898 NestedNameSpecifier *Qual
3899 = static_cast<NestedNameSpecifier*>(SS.getScopeRep());
3900
3901 for (LookupResult::iterator I = Prev.begin(), E = Prev.end(); I != E; ++I) {
3902 NamedDecl *D = *I;
3903
3904 bool DTypename;
3905 NestedNameSpecifier *DQual;
3906 if (UsingDecl *UD = dyn_cast<UsingDecl>(D)) {
3907 DTypename = UD->isTypeName();
3908 DQual = UD->getTargetNestedNameDecl();
3909 } else if (UnresolvedUsingValueDecl *UD
3910 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
3911 DTypename = false;
3912 DQual = UD->getTargetNestedNameSpecifier();
3913 } else if (UnresolvedUsingTypenameDecl *UD
3914 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
3915 DTypename = true;
3916 DQual = UD->getTargetNestedNameSpecifier();
3917 } else continue;
3918
3919 // using decls differ if one says 'typename' and the other doesn't.
3920 // FIXME: non-dependent using decls?
3921 if (isTypeName != DTypename) continue;
3922
3923 // using decls differ if they name different scopes (but note that
3924 // template instantiation can cause this check to trigger when it
3925 // didn't before instantiation).
3926 if (Context.getCanonicalNestedNameSpecifier(Qual) !=
3927 Context.getCanonicalNestedNameSpecifier(DQual))
3928 continue;
3929
3930 Diag(NameLoc, diag::err_using_decl_redeclaration) << SS.getRange();
John McCall41ce66f2009-12-10 19:51:03 +00003931 Diag(D->getLocation(), diag::note_using_decl) << 1;
John McCall9f54ad42009-12-10 09:41:52 +00003932 return true;
3933 }
3934
3935 return false;
3936}
3937
John McCall604e7f12009-12-08 07:46:18 +00003938
John McCalled976492009-12-04 22:46:56 +00003939/// Checks that the given nested-name qualifier used in a using decl
3940/// in the current context is appropriately related to the current
3941/// scope. If an error is found, diagnoses it and returns true.
3942bool Sema::CheckUsingDeclQualifier(SourceLocation UsingLoc,
3943 const CXXScopeSpec &SS,
3944 SourceLocation NameLoc) {
John McCall604e7f12009-12-08 07:46:18 +00003945 DeclContext *NamedContext = computeDeclContext(SS);
John McCalled976492009-12-04 22:46:56 +00003946
John McCall604e7f12009-12-08 07:46:18 +00003947 if (!CurContext->isRecord()) {
3948 // C++03 [namespace.udecl]p3:
3949 // C++0x [namespace.udecl]p8:
3950 // A using-declaration for a class member shall be a member-declaration.
3951
3952 // If we weren't able to compute a valid scope, it must be a
3953 // dependent class scope.
3954 if (!NamedContext || NamedContext->isRecord()) {
3955 Diag(NameLoc, diag::err_using_decl_can_not_refer_to_class_member)
3956 << SS.getRange();
3957 return true;
3958 }
3959
3960 // Otherwise, everything is known to be fine.
3961 return false;
3962 }
3963
3964 // The current scope is a record.
3965
3966 // If the named context is dependent, we can't decide much.
3967 if (!NamedContext) {
3968 // FIXME: in C++0x, we can diagnose if we can prove that the
3969 // nested-name-specifier does not refer to a base class, which is
3970 // still possible in some cases.
3971
3972 // Otherwise we have to conservatively report that things might be
3973 // okay.
3974 return false;
3975 }
3976
3977 if (!NamedContext->isRecord()) {
3978 // Ideally this would point at the last name in the specifier,
3979 // but we don't have that level of source info.
3980 Diag(SS.getRange().getBegin(),
3981 diag::err_using_decl_nested_name_specifier_is_not_class)
3982 << (NestedNameSpecifier*) SS.getScopeRep() << SS.getRange();
3983 return true;
3984 }
3985
3986 if (getLangOptions().CPlusPlus0x) {
3987 // C++0x [namespace.udecl]p3:
3988 // In a using-declaration used as a member-declaration, the
3989 // nested-name-specifier shall name a base class of the class
3990 // being defined.
3991
3992 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(
3993 cast<CXXRecordDecl>(NamedContext))) {
3994 if (CurContext == NamedContext) {
3995 Diag(NameLoc,
3996 diag::err_using_decl_nested_name_specifier_is_current_class)
3997 << SS.getRange();
3998 return true;
3999 }
4000
4001 Diag(SS.getRange().getBegin(),
4002 diag::err_using_decl_nested_name_specifier_is_not_base_class)
4003 << (NestedNameSpecifier*) SS.getScopeRep()
4004 << cast<CXXRecordDecl>(CurContext)
4005 << SS.getRange();
4006 return true;
4007 }
4008
4009 return false;
4010 }
4011
4012 // C++03 [namespace.udecl]p4:
4013 // A using-declaration used as a member-declaration shall refer
4014 // to a member of a base class of the class being defined [etc.].
4015
4016 // Salient point: SS doesn't have to name a base class as long as
4017 // lookup only finds members from base classes. Therefore we can
4018 // diagnose here only if we can prove that that can't happen,
4019 // i.e. if the class hierarchies provably don't intersect.
4020
4021 // TODO: it would be nice if "definitely valid" results were cached
4022 // in the UsingDecl and UsingShadowDecl so that these checks didn't
4023 // need to be repeated.
4024
4025 struct UserData {
4026 llvm::DenseSet<const CXXRecordDecl*> Bases;
4027
4028 static bool collect(const CXXRecordDecl *Base, void *OpaqueData) {
4029 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
4030 Data->Bases.insert(Base);
4031 return true;
4032 }
4033
4034 bool hasDependentBases(const CXXRecordDecl *Class) {
4035 return !Class->forallBases(collect, this);
4036 }
4037
4038 /// Returns true if the base is dependent or is one of the
4039 /// accumulated base classes.
4040 static bool doesNotContain(const CXXRecordDecl *Base, void *OpaqueData) {
4041 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
4042 return !Data->Bases.count(Base);
4043 }
4044
4045 bool mightShareBases(const CXXRecordDecl *Class) {
4046 return Bases.count(Class) || !Class->forallBases(doesNotContain, this);
4047 }
4048 };
4049
4050 UserData Data;
4051
4052 // Returns false if we find a dependent base.
4053 if (Data.hasDependentBases(cast<CXXRecordDecl>(CurContext)))
4054 return false;
4055
4056 // Returns false if the class has a dependent base or if it or one
4057 // of its bases is present in the base set of the current context.
4058 if (Data.mightShareBases(cast<CXXRecordDecl>(NamedContext)))
4059 return false;
4060
4061 Diag(SS.getRange().getBegin(),
4062 diag::err_using_decl_nested_name_specifier_is_not_base_class)
4063 << (NestedNameSpecifier*) SS.getScopeRep()
4064 << cast<CXXRecordDecl>(CurContext)
4065 << SS.getRange();
4066
4067 return true;
John McCalled976492009-12-04 22:46:56 +00004068}
4069
Mike Stump1eb44332009-09-09 15:08:12 +00004070Sema::DeclPtrTy Sema::ActOnNamespaceAliasDef(Scope *S,
Anders Carlsson03bd5a12009-03-28 22:53:22 +00004071 SourceLocation NamespaceLoc,
Chris Lattnerb28317a2009-03-28 19:18:32 +00004072 SourceLocation AliasLoc,
4073 IdentifierInfo *Alias,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00004074 CXXScopeSpec &SS,
Anders Carlsson03bd5a12009-03-28 22:53:22 +00004075 SourceLocation IdentLoc,
4076 IdentifierInfo *Ident) {
Mike Stump1eb44332009-09-09 15:08:12 +00004077
Anders Carlsson81c85c42009-03-28 23:53:49 +00004078 // Lookup the namespace name.
John McCalla24dc2e2009-11-17 02:14:36 +00004079 LookupResult R(*this, Ident, IdentLoc, LookupNamespaceName);
4080 LookupParsedName(R, S, &SS);
Anders Carlsson81c85c42009-03-28 23:53:49 +00004081
Anders Carlsson8d7ba402009-03-28 06:23:46 +00004082 // Check if we have a previous declaration with the same name.
Douglas Gregorae374752010-05-03 15:37:31 +00004083 NamedDecl *PrevDecl
4084 = LookupSingleName(S, Alias, AliasLoc, LookupOrdinaryName,
4085 ForRedeclaration);
4086 if (PrevDecl && !isDeclInScope(PrevDecl, CurContext, S))
4087 PrevDecl = 0;
4088
4089 if (PrevDecl) {
Anders Carlsson81c85c42009-03-28 23:53:49 +00004090 if (NamespaceAliasDecl *AD = dyn_cast<NamespaceAliasDecl>(PrevDecl)) {
Mike Stump1eb44332009-09-09 15:08:12 +00004091 // We already have an alias with the same name that points to the same
Anders Carlsson81c85c42009-03-28 23:53:49 +00004092 // namespace, so don't create a new one.
Douglas Gregorc67b0322010-03-26 22:59:39 +00004093 // FIXME: At some point, we'll want to create the (redundant)
4094 // declaration to maintain better source information.
John McCallf36e02d2009-10-09 21:13:30 +00004095 if (!R.isAmbiguous() && !R.empty() &&
Douglas Gregorc67b0322010-03-26 22:59:39 +00004096 AD->getNamespace()->Equals(getNamespaceDecl(R.getFoundDecl())))
Anders Carlsson81c85c42009-03-28 23:53:49 +00004097 return DeclPtrTy();
4098 }
Mike Stump1eb44332009-09-09 15:08:12 +00004099
Anders Carlsson8d7ba402009-03-28 06:23:46 +00004100 unsigned DiagID = isa<NamespaceDecl>(PrevDecl) ? diag::err_redefinition :
4101 diag::err_redefinition_different_kind;
4102 Diag(AliasLoc, DiagID) << Alias;
4103 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Chris Lattnerb28317a2009-03-28 19:18:32 +00004104 return DeclPtrTy();
Anders Carlsson8d7ba402009-03-28 06:23:46 +00004105 }
4106
John McCalla24dc2e2009-11-17 02:14:36 +00004107 if (R.isAmbiguous())
Chris Lattnerb28317a2009-03-28 19:18:32 +00004108 return DeclPtrTy();
Mike Stump1eb44332009-09-09 15:08:12 +00004109
John McCallf36e02d2009-10-09 21:13:30 +00004110 if (R.empty()) {
Douglas Gregor0e8c4b92010-06-29 18:55:19 +00004111 if (DeclarationName Corrected = CorrectTypo(R, S, &SS, 0, false,
4112 CTC_NoKeywords, 0)) {
4113 if (R.getAsSingle<NamespaceDecl>() ||
4114 R.getAsSingle<NamespaceAliasDecl>()) {
4115 if (DeclContext *DC = computeDeclContext(SS, false))
4116 Diag(IdentLoc, diag::err_using_directive_member_suggest)
4117 << Ident << DC << Corrected << SS.getRange()
4118 << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
4119 else
4120 Diag(IdentLoc, diag::err_using_directive_suggest)
4121 << Ident << Corrected
4122 << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
4123
4124 Diag(R.getFoundDecl()->getLocation(), diag::note_namespace_defined_here)
4125 << Corrected;
4126
4127 Ident = Corrected.getAsIdentifierInfo();
Douglas Gregor12eb5d62010-06-29 19:27:42 +00004128 } else {
4129 R.clear();
4130 R.setLookupName(Ident);
Douglas Gregor0e8c4b92010-06-29 18:55:19 +00004131 }
4132 }
4133
4134 if (R.empty()) {
4135 Diag(NamespaceLoc, diag::err_expected_namespace_name) << SS.getRange();
4136 return DeclPtrTy();
4137 }
Anders Carlsson5721c682009-03-28 06:42:02 +00004138 }
Mike Stump1eb44332009-09-09 15:08:12 +00004139
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00004140 NamespaceAliasDecl *AliasDecl =
Mike Stump1eb44332009-09-09 15:08:12 +00004141 NamespaceAliasDecl::Create(Context, CurContext, NamespaceLoc, AliasLoc,
4142 Alias, SS.getRange(),
Douglas Gregor6c9c9402009-05-30 06:48:27 +00004143 (NestedNameSpecifier *)SS.getScopeRep(),
John McCallf36e02d2009-10-09 21:13:30 +00004144 IdentLoc, R.getFoundDecl());
Mike Stump1eb44332009-09-09 15:08:12 +00004145
John McCall3dbd3d52010-02-16 06:53:13 +00004146 PushOnScopeChains(AliasDecl, S);
Anders Carlsson68771c72009-03-28 22:58:02 +00004147 return DeclPtrTy::make(AliasDecl);
Anders Carlssondbb00942009-03-28 05:27:17 +00004148}
4149
Douglas Gregor39957dc2010-05-01 15:04:51 +00004150namespace {
4151 /// \brief Scoped object used to handle the state changes required in Sema
4152 /// to implicitly define the body of a C++ member function;
4153 class ImplicitlyDefinedFunctionScope {
4154 Sema &S;
4155 DeclContext *PreviousContext;
4156
4157 public:
4158 ImplicitlyDefinedFunctionScope(Sema &S, CXXMethodDecl *Method)
4159 : S(S), PreviousContext(S.CurContext)
4160 {
4161 S.CurContext = Method;
4162 S.PushFunctionScope();
4163 S.PushExpressionEvaluationContext(Sema::PotentiallyEvaluated);
4164 }
4165
4166 ~ImplicitlyDefinedFunctionScope() {
4167 S.PopExpressionEvaluationContext();
4168 S.PopFunctionOrBlockScope();
4169 S.CurContext = PreviousContext;
4170 }
4171 };
4172}
4173
Douglas Gregor23c94db2010-07-02 17:43:08 +00004174CXXConstructorDecl *Sema::DeclareImplicitDefaultConstructor(
4175 CXXRecordDecl *ClassDecl) {
Douglas Gregor32df23e2010-07-01 22:02:46 +00004176 // C++ [class.ctor]p5:
4177 // A default constructor for a class X is a constructor of class X
4178 // that can be called without an argument. If there is no
4179 // user-declared constructor for class X, a default constructor is
4180 // implicitly declared. An implicitly-declared default constructor
4181 // is an inline public member of its class.
Douglas Gregor18274032010-07-03 00:47:00 +00004182 assert(!ClassDecl->hasUserDeclaredConstructor() &&
4183 "Should not build implicit default constructor!");
4184
Douglas Gregoreb8c6702010-07-01 22:31:05 +00004185 // C++ [except.spec]p14:
4186 // An implicitly declared special member function (Clause 12) shall have an
4187 // exception-specification. [...]
4188 ImplicitExceptionSpecification ExceptSpec(Context);
4189
4190 // Direct base-class destructors.
4191 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
4192 BEnd = ClassDecl->bases_end();
4193 B != BEnd; ++B) {
4194 if (B->isVirtual()) // Handled below.
4195 continue;
4196
Douglas Gregor18274032010-07-03 00:47:00 +00004197 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
4198 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
4199 if (!BaseClassDecl->hasDeclaredDefaultConstructor())
4200 ExceptSpec.CalledDecl(DeclareImplicitDefaultConstructor(BaseClassDecl));
4201 else if (CXXConstructorDecl *Constructor
4202 = BaseClassDecl->getDefaultConstructor())
Douglas Gregoreb8c6702010-07-01 22:31:05 +00004203 ExceptSpec.CalledDecl(Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00004204 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00004205 }
4206
4207 // Virtual base-class destructors.
4208 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
4209 BEnd = ClassDecl->vbases_end();
4210 B != BEnd; ++B) {
Douglas Gregor18274032010-07-03 00:47:00 +00004211 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
4212 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
4213 if (!BaseClassDecl->hasDeclaredDefaultConstructor())
4214 ExceptSpec.CalledDecl(DeclareImplicitDefaultConstructor(BaseClassDecl));
4215 else if (CXXConstructorDecl *Constructor
4216 = BaseClassDecl->getDefaultConstructor())
Douglas Gregoreb8c6702010-07-01 22:31:05 +00004217 ExceptSpec.CalledDecl(Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00004218 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00004219 }
4220
4221 // Field destructors.
4222 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
4223 FEnd = ClassDecl->field_end();
4224 F != FEnd; ++F) {
4225 if (const RecordType *RecordTy
Douglas Gregor18274032010-07-03 00:47:00 +00004226 = Context.getBaseElementType(F->getType())->getAs<RecordType>()) {
4227 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
4228 if (!FieldClassDecl->hasDeclaredDefaultConstructor())
4229 ExceptSpec.CalledDecl(
4230 DeclareImplicitDefaultConstructor(FieldClassDecl));
4231 else if (CXXConstructorDecl *Constructor
4232 = FieldClassDecl->getDefaultConstructor())
Douglas Gregoreb8c6702010-07-01 22:31:05 +00004233 ExceptSpec.CalledDecl(Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00004234 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00004235 }
4236
4237
4238 // Create the actual constructor declaration.
Douglas Gregor32df23e2010-07-01 22:02:46 +00004239 CanQualType ClassType
4240 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
4241 DeclarationName Name
4242 = Context.DeclarationNames.getCXXConstructorName(ClassType);
4243 CXXConstructorDecl *DefaultCon
4244 = CXXConstructorDecl::Create(Context, ClassDecl,
4245 ClassDecl->getLocation(), Name,
4246 Context.getFunctionType(Context.VoidTy,
4247 0, 0, false, 0,
Douglas Gregoreb8c6702010-07-01 22:31:05 +00004248 ExceptSpec.hasExceptionSpecification(),
4249 ExceptSpec.hasAnyExceptionSpecification(),
4250 ExceptSpec.size(),
4251 ExceptSpec.data(),
Douglas Gregor32df23e2010-07-01 22:02:46 +00004252 FunctionType::ExtInfo()),
4253 /*TInfo=*/0,
4254 /*isExplicit=*/false,
4255 /*isInline=*/true,
4256 /*isImplicitlyDeclared=*/true);
4257 DefaultCon->setAccess(AS_public);
4258 DefaultCon->setImplicit();
4259 DefaultCon->setTrivial(ClassDecl->hasTrivialConstructor());
Douglas Gregor18274032010-07-03 00:47:00 +00004260
4261 // Note that we have declared this constructor.
4262 ClassDecl->setDeclaredDefaultConstructor(true);
4263 ++ASTContext::NumImplicitDefaultConstructorsDeclared;
4264
Douglas Gregor23c94db2010-07-02 17:43:08 +00004265 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor18274032010-07-03 00:47:00 +00004266 PushOnScopeChains(DefaultCon, S, false);
4267 ClassDecl->addDecl(DefaultCon);
4268
Douglas Gregor32df23e2010-07-01 22:02:46 +00004269 return DefaultCon;
4270}
4271
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00004272void Sema::DefineImplicitDefaultConstructor(SourceLocation CurrentLocation,
4273 CXXConstructorDecl *Constructor) {
Fariborz Jahanian05a5c452009-06-22 20:37:23 +00004274 assert((Constructor->isImplicit() && Constructor->isDefaultConstructor() &&
Douglas Gregorc070cc62010-06-17 23:14:26 +00004275 !Constructor->isUsed(false)) &&
Fariborz Jahanian05a5c452009-06-22 20:37:23 +00004276 "DefineImplicitDefaultConstructor - call it for implicit default ctor");
Mike Stump1eb44332009-09-09 15:08:12 +00004277
Anders Carlssonf6513ed2010-04-23 16:04:08 +00004278 CXXRecordDecl *ClassDecl = Constructor->getParent();
Eli Friedman80c30da2009-11-09 19:20:36 +00004279 assert(ClassDecl && "DefineImplicitDefaultConstructor - invalid constructor");
Eli Friedman49c16da2009-11-09 01:05:47 +00004280
Douglas Gregor39957dc2010-05-01 15:04:51 +00004281 ImplicitlyDefinedFunctionScope Scope(*this, Constructor);
Douglas Gregorc63d2c82010-05-12 16:39:35 +00004282 ErrorTrap Trap(*this);
4283 if (SetBaseOrMemberInitializers(Constructor, 0, 0, /*AnyErrors=*/false) ||
4284 Trap.hasErrorOccurred()) {
Anders Carlsson37909802009-11-30 21:24:50 +00004285 Diag(CurrentLocation, diag::note_member_synthesized_at)
Anders Carlsson3b8c53b2010-04-22 05:40:53 +00004286 << CXXConstructor << Context.getTagDeclType(ClassDecl);
Eli Friedman80c30da2009-11-09 19:20:36 +00004287 Constructor->setInvalidDecl();
4288 } else {
4289 Constructor->setUsed();
Douglas Gregor6fb745b2010-05-13 16:44:06 +00004290 MarkVTableUsed(CurrentLocation, ClassDecl);
Eli Friedman80c30da2009-11-09 19:20:36 +00004291 }
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00004292}
4293
Douglas Gregor23c94db2010-07-02 17:43:08 +00004294CXXDestructorDecl *Sema::DeclareImplicitDestructor(CXXRecordDecl *ClassDecl) {
Douglas Gregorfabd43a2010-07-01 19:09:28 +00004295 // C++ [class.dtor]p2:
4296 // If a class has no user-declared destructor, a destructor is
4297 // declared implicitly. An implicitly-declared destructor is an
4298 // inline public member of its class.
4299
4300 // C++ [except.spec]p14:
4301 // An implicitly declared special member function (Clause 12) shall have
4302 // an exception-specification.
4303 ImplicitExceptionSpecification ExceptSpec(Context);
4304
4305 // Direct base-class destructors.
4306 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
4307 BEnd = ClassDecl->bases_end();
4308 B != BEnd; ++B) {
4309 if (B->isVirtual()) // Handled below.
4310 continue;
4311
4312 if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
4313 ExceptSpec.CalledDecl(
Douglas Gregordb89f282010-07-01 22:47:18 +00004314 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00004315 }
4316
4317 // Virtual base-class destructors.
4318 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
4319 BEnd = ClassDecl->vbases_end();
4320 B != BEnd; ++B) {
4321 if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
4322 ExceptSpec.CalledDecl(
Douglas Gregordb89f282010-07-01 22:47:18 +00004323 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00004324 }
4325
4326 // Field destructors.
4327 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
4328 FEnd = ClassDecl->field_end();
4329 F != FEnd; ++F) {
4330 if (const RecordType *RecordTy
4331 = Context.getBaseElementType(F->getType())->getAs<RecordType>())
4332 ExceptSpec.CalledDecl(
Douglas Gregordb89f282010-07-01 22:47:18 +00004333 LookupDestructor(cast<CXXRecordDecl>(RecordTy->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00004334 }
4335
Douglas Gregor4923aa22010-07-02 20:37:36 +00004336 // Create the actual destructor declaration.
Douglas Gregorfabd43a2010-07-01 19:09:28 +00004337 QualType Ty = Context.getFunctionType(Context.VoidTy,
4338 0, 0, false, 0,
4339 ExceptSpec.hasExceptionSpecification(),
4340 ExceptSpec.hasAnyExceptionSpecification(),
4341 ExceptSpec.size(),
4342 ExceptSpec.data(),
4343 FunctionType::ExtInfo());
4344
4345 CanQualType ClassType
4346 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
4347 DeclarationName Name
4348 = Context.DeclarationNames.getCXXDestructorName(ClassType);
4349 CXXDestructorDecl *Destructor
4350 = CXXDestructorDecl::Create(Context, ClassDecl,
4351 ClassDecl->getLocation(), Name, Ty,
4352 /*isInline=*/true,
4353 /*isImplicitlyDeclared=*/true);
4354 Destructor->setAccess(AS_public);
4355 Destructor->setImplicit();
4356 Destructor->setTrivial(ClassDecl->hasTrivialDestructor());
Douglas Gregor4923aa22010-07-02 20:37:36 +00004357
4358 // Note that we have declared this destructor.
4359 ClassDecl->setDeclaredDestructor(true);
4360 ++ASTContext::NumImplicitDestructorsDeclared;
4361
4362 // Introduce this destructor into its scope.
Douglas Gregor23c94db2010-07-02 17:43:08 +00004363 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor4923aa22010-07-02 20:37:36 +00004364 PushOnScopeChains(Destructor, S, false);
4365 ClassDecl->addDecl(Destructor);
Douglas Gregorfabd43a2010-07-01 19:09:28 +00004366
4367 // This could be uniqued if it ever proves significant.
4368 Destructor->setTypeSourceInfo(Context.getTrivialTypeSourceInfo(Ty));
4369
4370 AddOverriddenMethods(ClassDecl, Destructor);
Douglas Gregor4923aa22010-07-02 20:37:36 +00004371
Douglas Gregorfabd43a2010-07-01 19:09:28 +00004372 return Destructor;
4373}
4374
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00004375void Sema::DefineImplicitDestructor(SourceLocation CurrentLocation,
Douglas Gregor4fe95f92009-09-04 19:04:08 +00004376 CXXDestructorDecl *Destructor) {
Douglas Gregorc070cc62010-06-17 23:14:26 +00004377 assert((Destructor->isImplicit() && !Destructor->isUsed(false)) &&
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00004378 "DefineImplicitDestructor - call it for implicit default dtor");
Anders Carlsson6d701392009-11-15 22:49:34 +00004379 CXXRecordDecl *ClassDecl = Destructor->getParent();
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00004380 assert(ClassDecl && "DefineImplicitDestructor - invalid destructor");
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00004381
Douglas Gregorc63d2c82010-05-12 16:39:35 +00004382 if (Destructor->isInvalidDecl())
4383 return;
4384
Douglas Gregor39957dc2010-05-01 15:04:51 +00004385 ImplicitlyDefinedFunctionScope Scope(*this, Destructor);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00004386
Douglas Gregorc63d2c82010-05-12 16:39:35 +00004387 ErrorTrap Trap(*this);
John McCallef027fe2010-03-16 21:39:52 +00004388 MarkBaseAndMemberDestructorsReferenced(Destructor->getLocation(),
4389 Destructor->getParent());
Mike Stump1eb44332009-09-09 15:08:12 +00004390
Douglas Gregorc63d2c82010-05-12 16:39:35 +00004391 if (CheckDestructor(Destructor) || Trap.hasErrorOccurred()) {
Anders Carlsson37909802009-11-30 21:24:50 +00004392 Diag(CurrentLocation, diag::note_member_synthesized_at)
4393 << CXXDestructor << Context.getTagDeclType(ClassDecl);
4394
4395 Destructor->setInvalidDecl();
4396 return;
4397 }
4398
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00004399 Destructor->setUsed();
Douglas Gregor6fb745b2010-05-13 16:44:06 +00004400 MarkVTableUsed(CurrentLocation, ClassDecl);
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00004401}
4402
Douglas Gregor06a9f362010-05-01 20:49:11 +00004403/// \brief Builds a statement that copies the given entity from \p From to
4404/// \c To.
4405///
4406/// This routine is used to copy the members of a class with an
4407/// implicitly-declared copy assignment operator. When the entities being
4408/// copied are arrays, this routine builds for loops to copy them.
4409///
4410/// \param S The Sema object used for type-checking.
4411///
4412/// \param Loc The location where the implicit copy is being generated.
4413///
4414/// \param T The type of the expressions being copied. Both expressions must
4415/// have this type.
4416///
4417/// \param To The expression we are copying to.
4418///
4419/// \param From The expression we are copying from.
4420///
Douglas Gregor6cdc1612010-05-04 15:20:55 +00004421/// \param CopyingBaseSubobject Whether we're copying a base subobject.
4422/// Otherwise, it's a non-static member subobject.
4423///
Douglas Gregor06a9f362010-05-01 20:49:11 +00004424/// \param Depth Internal parameter recording the depth of the recursion.
4425///
4426/// \returns A statement or a loop that copies the expressions.
4427static Sema::OwningStmtResult
4428BuildSingleCopyAssign(Sema &S, SourceLocation Loc, QualType T,
4429 Sema::OwningExprResult To, Sema::OwningExprResult From,
Douglas Gregor6cdc1612010-05-04 15:20:55 +00004430 bool CopyingBaseSubobject, unsigned Depth = 0) {
Douglas Gregor06a9f362010-05-01 20:49:11 +00004431 typedef Sema::OwningStmtResult OwningStmtResult;
4432 typedef Sema::OwningExprResult OwningExprResult;
4433
4434 // C++0x [class.copy]p30:
4435 // Each subobject is assigned in the manner appropriate to its type:
4436 //
4437 // - if the subobject is of class type, the copy assignment operator
4438 // for the class is used (as if by explicit qualification; that is,
4439 // ignoring any possible virtual overriding functions in more derived
4440 // classes);
4441 if (const RecordType *RecordTy = T->getAs<RecordType>()) {
4442 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
4443
4444 // Look for operator=.
4445 DeclarationName Name
4446 = S.Context.DeclarationNames.getCXXOperatorName(OO_Equal);
4447 LookupResult OpLookup(S, Name, Loc, Sema::LookupOrdinaryName);
4448 S.LookupQualifiedName(OpLookup, ClassDecl, false);
4449
4450 // Filter out any result that isn't a copy-assignment operator.
4451 LookupResult::Filter F = OpLookup.makeFilter();
4452 while (F.hasNext()) {
4453 NamedDecl *D = F.next();
4454 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
4455 if (Method->isCopyAssignmentOperator())
4456 continue;
4457
4458 F.erase();
John McCallb0207482010-03-16 06:11:48 +00004459 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00004460 F.done();
4461
Douglas Gregor6cdc1612010-05-04 15:20:55 +00004462 // Suppress the protected check (C++ [class.protected]) for each of the
4463 // assignment operators we found. This strange dance is required when
4464 // we're assigning via a base classes's copy-assignment operator. To
4465 // ensure that we're getting the right base class subobject (without
4466 // ambiguities), we need to cast "this" to that subobject type; to
4467 // ensure that we don't go through the virtual call mechanism, we need
4468 // to qualify the operator= name with the base class (see below). However,
4469 // this means that if the base class has a protected copy assignment
4470 // operator, the protected member access check will fail. So, we
4471 // rewrite "protected" access to "public" access in this case, since we
4472 // know by construction that we're calling from a derived class.
4473 if (CopyingBaseSubobject) {
4474 for (LookupResult::iterator L = OpLookup.begin(), LEnd = OpLookup.end();
4475 L != LEnd; ++L) {
4476 if (L.getAccess() == AS_protected)
4477 L.setAccess(AS_public);
4478 }
4479 }
4480
Douglas Gregor06a9f362010-05-01 20:49:11 +00004481 // Create the nested-name-specifier that will be used to qualify the
4482 // reference to operator=; this is required to suppress the virtual
4483 // call mechanism.
4484 CXXScopeSpec SS;
4485 SS.setRange(Loc);
4486 SS.setScopeRep(NestedNameSpecifier::Create(S.Context, 0, false,
4487 T.getTypePtr()));
4488
4489 // Create the reference to operator=.
4490 OwningExprResult OpEqualRef
4491 = S.BuildMemberReferenceExpr(move(To), T, Loc, /*isArrow=*/false, SS,
4492 /*FirstQualifierInScope=*/0, OpLookup,
4493 /*TemplateArgs=*/0,
4494 /*SuppressQualifierCheck=*/true);
4495 if (OpEqualRef.isInvalid())
4496 return S.StmtError();
4497
4498 // Build the call to the assignment operator.
4499 Expr *FromE = From.takeAs<Expr>();
4500 OwningExprResult Call = S.BuildCallToMemberFunction(/*Scope=*/0,
4501 OpEqualRef.takeAs<Expr>(),
4502 Loc, &FromE, 1, 0, Loc);
4503 if (Call.isInvalid())
4504 return S.StmtError();
4505
4506 return S.Owned(Call.takeAs<Stmt>());
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00004507 }
John McCallb0207482010-03-16 06:11:48 +00004508
Douglas Gregor06a9f362010-05-01 20:49:11 +00004509 // - if the subobject is of scalar type, the built-in assignment
4510 // operator is used.
4511 const ConstantArrayType *ArrayTy = S.Context.getAsConstantArrayType(T);
4512 if (!ArrayTy) {
4513 OwningExprResult Assignment = S.CreateBuiltinBinOp(Loc,
4514 BinaryOperator::Assign,
4515 To.takeAs<Expr>(),
4516 From.takeAs<Expr>());
4517 if (Assignment.isInvalid())
4518 return S.StmtError();
4519
4520 return S.Owned(Assignment.takeAs<Stmt>());
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00004521 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00004522
4523 // - if the subobject is an array, each element is assigned, in the
4524 // manner appropriate to the element type;
4525
4526 // Construct a loop over the array bounds, e.g.,
4527 //
4528 // for (__SIZE_TYPE__ i0 = 0; i0 != array-size; ++i0)
4529 //
4530 // that will copy each of the array elements.
4531 QualType SizeType = S.Context.getSizeType();
4532
4533 // Create the iteration variable.
4534 IdentifierInfo *IterationVarName = 0;
4535 {
4536 llvm::SmallString<8> Str;
4537 llvm::raw_svector_ostream OS(Str);
4538 OS << "__i" << Depth;
4539 IterationVarName = &S.Context.Idents.get(OS.str());
4540 }
4541 VarDecl *IterationVar = VarDecl::Create(S.Context, S.CurContext, Loc,
4542 IterationVarName, SizeType,
4543 S.Context.getTrivialTypeSourceInfo(SizeType, Loc),
4544 VarDecl::None, VarDecl::None);
4545
4546 // Initialize the iteration variable to zero.
4547 llvm::APInt Zero(S.Context.getTypeSize(SizeType), 0);
4548 IterationVar->setInit(new (S.Context) IntegerLiteral(Zero, SizeType, Loc));
4549
4550 // Create a reference to the iteration variable; we'll use this several
4551 // times throughout.
4552 Expr *IterationVarRef
4553 = S.BuildDeclRefExpr(IterationVar, SizeType, Loc).takeAs<Expr>();
4554 assert(IterationVarRef && "Reference to invented variable cannot fail!");
4555
4556 // Create the DeclStmt that holds the iteration variable.
4557 Stmt *InitStmt = new (S.Context) DeclStmt(DeclGroupRef(IterationVar),Loc,Loc);
4558
4559 // Create the comparison against the array bound.
4560 llvm::APInt Upper = ArrayTy->getSize();
4561 Upper.zextOrTrunc(S.Context.getTypeSize(SizeType));
4562 OwningExprResult Comparison
4563 = S.Owned(new (S.Context) BinaryOperator(IterationVarRef->Retain(),
4564 new (S.Context) IntegerLiteral(Upper, SizeType, Loc),
4565 BinaryOperator::NE, S.Context.BoolTy, Loc));
4566
4567 // Create the pre-increment of the iteration variable.
4568 OwningExprResult Increment
4569 = S.Owned(new (S.Context) UnaryOperator(IterationVarRef->Retain(),
4570 UnaryOperator::PreInc,
4571 SizeType, Loc));
4572
4573 // Subscript the "from" and "to" expressions with the iteration variable.
4574 From = S.CreateBuiltinArraySubscriptExpr(move(From), Loc,
4575 S.Owned(IterationVarRef->Retain()),
4576 Loc);
4577 To = S.CreateBuiltinArraySubscriptExpr(move(To), Loc,
4578 S.Owned(IterationVarRef->Retain()),
4579 Loc);
4580 assert(!From.isInvalid() && "Builtin subscripting can't fail!");
4581 assert(!To.isInvalid() && "Builtin subscripting can't fail!");
4582
4583 // Build the copy for an individual element of the array.
4584 OwningStmtResult Copy = BuildSingleCopyAssign(S, Loc,
4585 ArrayTy->getElementType(),
Douglas Gregor6cdc1612010-05-04 15:20:55 +00004586 move(To), move(From),
4587 CopyingBaseSubobject, Depth+1);
Douglas Gregorff331c12010-07-25 18:17:45 +00004588 if (Copy.isInvalid())
Douglas Gregor06a9f362010-05-01 20:49:11 +00004589 return S.StmtError();
Douglas Gregor06a9f362010-05-01 20:49:11 +00004590
4591 // Construct the loop that copies all elements of this array.
4592 return S.ActOnForStmt(Loc, Loc, S.Owned(InitStmt),
4593 S.MakeFullExpr(Comparison),
4594 Sema::DeclPtrTy(),
4595 S.MakeFullExpr(Increment),
4596 Loc, move(Copy));
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00004597}
4598
Douglas Gregora376d102010-07-02 21:50:04 +00004599/// \brief Determine whether the given class has a copy assignment operator
4600/// that accepts a const-qualified argument.
4601static bool hasConstCopyAssignment(Sema &S, const CXXRecordDecl *CClass) {
4602 CXXRecordDecl *Class = const_cast<CXXRecordDecl *>(CClass);
4603
4604 if (!Class->hasDeclaredCopyAssignment())
4605 S.DeclareImplicitCopyAssignment(Class);
4606
4607 QualType ClassType = S.Context.getCanonicalType(S.Context.getTypeDeclType(Class));
4608 DeclarationName OpName
4609 = S.Context.DeclarationNames.getCXXOperatorName(OO_Equal);
4610
4611 DeclContext::lookup_const_iterator Op, OpEnd;
4612 for (llvm::tie(Op, OpEnd) = Class->lookup(OpName); Op != OpEnd; ++Op) {
4613 // C++ [class.copy]p9:
4614 // A user-declared copy assignment operator is a non-static non-template
4615 // member function of class X with exactly one parameter of type X, X&,
4616 // const X&, volatile X& or const volatile X&.
4617 const CXXMethodDecl* Method = dyn_cast<CXXMethodDecl>(*Op);
4618 if (!Method)
4619 continue;
4620
4621 if (Method->isStatic())
4622 continue;
4623 if (Method->getPrimaryTemplate())
4624 continue;
4625 const FunctionProtoType *FnType =
4626 Method->getType()->getAs<FunctionProtoType>();
4627 assert(FnType && "Overloaded operator has no prototype.");
4628 // Don't assert on this; an invalid decl might have been left in the AST.
4629 if (FnType->getNumArgs() != 1 || FnType->isVariadic())
4630 continue;
4631 bool AcceptsConst = true;
4632 QualType ArgType = FnType->getArgType(0);
4633 if (const LValueReferenceType *Ref = ArgType->getAs<LValueReferenceType>()){
4634 ArgType = Ref->getPointeeType();
4635 // Is it a non-const lvalue reference?
4636 if (!ArgType.isConstQualified())
4637 AcceptsConst = false;
4638 }
4639 if (!S.Context.hasSameUnqualifiedType(ArgType, ClassType))
4640 continue;
4641
4642 // We have a single argument of type cv X or cv X&, i.e. we've found the
4643 // copy assignment operator. Return whether it accepts const arguments.
4644 return AcceptsConst;
4645 }
4646 assert(Class->isInvalidDecl() &&
4647 "No copy assignment operator declared in valid code.");
4648 return false;
4649}
4650
Douglas Gregor23c94db2010-07-02 17:43:08 +00004651CXXMethodDecl *Sema::DeclareImplicitCopyAssignment(CXXRecordDecl *ClassDecl) {
Douglas Gregord3c35902010-07-01 16:36:15 +00004652 // Note: The following rules are largely analoguous to the copy
4653 // constructor rules. Note that virtual bases are not taken into account
4654 // for determining the argument type of the operator. Note also that
4655 // operators taking an object instead of a reference are allowed.
Douglas Gregor18274032010-07-03 00:47:00 +00004656
4657
Douglas Gregord3c35902010-07-01 16:36:15 +00004658 // C++ [class.copy]p10:
4659 // If the class definition does not explicitly declare a copy
4660 // assignment operator, one is declared implicitly.
4661 // The implicitly-defined copy assignment operator for a class X
4662 // will have the form
4663 //
4664 // X& X::operator=(const X&)
4665 //
4666 // if
4667 bool HasConstCopyAssignment = true;
4668
4669 // -- each direct base class B of X has a copy assignment operator
4670 // whose parameter is of type const B&, const volatile B& or B,
4671 // and
4672 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
4673 BaseEnd = ClassDecl->bases_end();
4674 HasConstCopyAssignment && Base != BaseEnd; ++Base) {
4675 assert(!Base->getType()->isDependentType() &&
4676 "Cannot generate implicit members for class with dependent bases.");
4677 const CXXRecordDecl *BaseClassDecl
4678 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregora376d102010-07-02 21:50:04 +00004679 HasConstCopyAssignment = hasConstCopyAssignment(*this, BaseClassDecl);
Douglas Gregord3c35902010-07-01 16:36:15 +00004680 }
4681
4682 // -- for all the nonstatic data members of X that are of a class
4683 // type M (or array thereof), each such class type has a copy
4684 // assignment operator whose parameter is of type const M&,
4685 // const volatile M& or M.
4686 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
4687 FieldEnd = ClassDecl->field_end();
4688 HasConstCopyAssignment && Field != FieldEnd;
4689 ++Field) {
4690 QualType FieldType = Context.getBaseElementType((*Field)->getType());
4691 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
4692 const CXXRecordDecl *FieldClassDecl
4693 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Douglas Gregora376d102010-07-02 21:50:04 +00004694 HasConstCopyAssignment = hasConstCopyAssignment(*this, FieldClassDecl);
Douglas Gregord3c35902010-07-01 16:36:15 +00004695 }
4696 }
4697
4698 // Otherwise, the implicitly declared copy assignment operator will
4699 // have the form
4700 //
4701 // X& X::operator=(X&)
4702 QualType ArgType = Context.getTypeDeclType(ClassDecl);
4703 QualType RetType = Context.getLValueReferenceType(ArgType);
4704 if (HasConstCopyAssignment)
4705 ArgType = ArgType.withConst();
4706 ArgType = Context.getLValueReferenceType(ArgType);
4707
Douglas Gregorb87786f2010-07-01 17:48:08 +00004708 // C++ [except.spec]p14:
4709 // An implicitly declared special member function (Clause 12) shall have an
4710 // exception-specification. [...]
4711 ImplicitExceptionSpecification ExceptSpec(Context);
4712 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
4713 BaseEnd = ClassDecl->bases_end();
4714 Base != BaseEnd; ++Base) {
Douglas Gregora376d102010-07-02 21:50:04 +00004715 CXXRecordDecl *BaseClassDecl
Douglas Gregorb87786f2010-07-01 17:48:08 +00004716 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregora376d102010-07-02 21:50:04 +00004717
4718 if (!BaseClassDecl->hasDeclaredCopyAssignment())
4719 DeclareImplicitCopyAssignment(BaseClassDecl);
4720
Douglas Gregorb87786f2010-07-01 17:48:08 +00004721 if (CXXMethodDecl *CopyAssign
4722 = BaseClassDecl->getCopyAssignmentOperator(HasConstCopyAssignment))
4723 ExceptSpec.CalledDecl(CopyAssign);
4724 }
4725 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
4726 FieldEnd = ClassDecl->field_end();
4727 Field != FieldEnd;
4728 ++Field) {
4729 QualType FieldType = Context.getBaseElementType((*Field)->getType());
4730 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Douglas Gregora376d102010-07-02 21:50:04 +00004731 CXXRecordDecl *FieldClassDecl
Douglas Gregorb87786f2010-07-01 17:48:08 +00004732 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Douglas Gregora376d102010-07-02 21:50:04 +00004733
4734 if (!FieldClassDecl->hasDeclaredCopyAssignment())
4735 DeclareImplicitCopyAssignment(FieldClassDecl);
4736
Douglas Gregorb87786f2010-07-01 17:48:08 +00004737 if (CXXMethodDecl *CopyAssign
4738 = FieldClassDecl->getCopyAssignmentOperator(HasConstCopyAssignment))
4739 ExceptSpec.CalledDecl(CopyAssign);
4740 }
4741 }
4742
Douglas Gregord3c35902010-07-01 16:36:15 +00004743 // An implicitly-declared copy assignment operator is an inline public
4744 // member of its class.
4745 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
4746 CXXMethodDecl *CopyAssignment
4747 = CXXMethodDecl::Create(Context, ClassDecl, ClassDecl->getLocation(), Name,
4748 Context.getFunctionType(RetType, &ArgType, 1,
4749 false, 0,
Douglas Gregorb87786f2010-07-01 17:48:08 +00004750 ExceptSpec.hasExceptionSpecification(),
4751 ExceptSpec.hasAnyExceptionSpecification(),
4752 ExceptSpec.size(),
4753 ExceptSpec.data(),
Douglas Gregord3c35902010-07-01 16:36:15 +00004754 FunctionType::ExtInfo()),
4755 /*TInfo=*/0, /*isStatic=*/false,
4756 /*StorageClassAsWritten=*/FunctionDecl::None,
4757 /*isInline=*/true);
4758 CopyAssignment->setAccess(AS_public);
4759 CopyAssignment->setImplicit();
4760 CopyAssignment->setTrivial(ClassDecl->hasTrivialCopyAssignment());
4761 CopyAssignment->setCopyAssignment(true);
4762
4763 // Add the parameter to the operator.
4764 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyAssignment,
4765 ClassDecl->getLocation(),
4766 /*Id=*/0,
4767 ArgType, /*TInfo=*/0,
4768 VarDecl::None,
4769 VarDecl::None, 0);
4770 CopyAssignment->setParams(&FromParam, 1);
4771
Douglas Gregora376d102010-07-02 21:50:04 +00004772 // Note that we have added this copy-assignment operator.
4773 ClassDecl->setDeclaredCopyAssignment(true);
4774 ++ASTContext::NumImplicitCopyAssignmentOperatorsDeclared;
4775
Douglas Gregor23c94db2010-07-02 17:43:08 +00004776 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregora376d102010-07-02 21:50:04 +00004777 PushOnScopeChains(CopyAssignment, S, false);
4778 ClassDecl->addDecl(CopyAssignment);
Douglas Gregord3c35902010-07-01 16:36:15 +00004779
4780 AddOverriddenMethods(ClassDecl, CopyAssignment);
4781 return CopyAssignment;
4782}
4783
Douglas Gregor06a9f362010-05-01 20:49:11 +00004784void Sema::DefineImplicitCopyAssignment(SourceLocation CurrentLocation,
4785 CXXMethodDecl *CopyAssignOperator) {
4786 assert((CopyAssignOperator->isImplicit() &&
4787 CopyAssignOperator->isOverloadedOperator() &&
4788 CopyAssignOperator->getOverloadedOperator() == OO_Equal &&
Douglas Gregorc070cc62010-06-17 23:14:26 +00004789 !CopyAssignOperator->isUsed(false)) &&
Douglas Gregor06a9f362010-05-01 20:49:11 +00004790 "DefineImplicitCopyAssignment called for wrong function");
4791
4792 CXXRecordDecl *ClassDecl = CopyAssignOperator->getParent();
4793
4794 if (ClassDecl->isInvalidDecl() || CopyAssignOperator->isInvalidDecl()) {
4795 CopyAssignOperator->setInvalidDecl();
4796 return;
4797 }
4798
4799 CopyAssignOperator->setUsed();
4800
4801 ImplicitlyDefinedFunctionScope Scope(*this, CopyAssignOperator);
Douglas Gregorc63d2c82010-05-12 16:39:35 +00004802 ErrorTrap Trap(*this);
Douglas Gregor06a9f362010-05-01 20:49:11 +00004803
4804 // C++0x [class.copy]p30:
4805 // The implicitly-defined or explicitly-defaulted copy assignment operator
4806 // for a non-union class X performs memberwise copy assignment of its
4807 // subobjects. The direct base classes of X are assigned first, in the
4808 // order of their declaration in the base-specifier-list, and then the
4809 // immediate non-static data members of X are assigned, in the order in
4810 // which they were declared in the class definition.
4811
4812 // The statements that form the synthesized function body.
4813 ASTOwningVector<&ActionBase::DeleteStmt> Statements(*this);
4814
4815 // The parameter for the "other" object, which we are copying from.
4816 ParmVarDecl *Other = CopyAssignOperator->getParamDecl(0);
4817 Qualifiers OtherQuals = Other->getType().getQualifiers();
4818 QualType OtherRefType = Other->getType();
4819 if (const LValueReferenceType *OtherRef
4820 = OtherRefType->getAs<LValueReferenceType>()) {
4821 OtherRefType = OtherRef->getPointeeType();
4822 OtherQuals = OtherRefType.getQualifiers();
4823 }
4824
4825 // Our location for everything implicitly-generated.
4826 SourceLocation Loc = CopyAssignOperator->getLocation();
4827
4828 // Construct a reference to the "other" object. We'll be using this
4829 // throughout the generated ASTs.
4830 Expr *OtherRef = BuildDeclRefExpr(Other, OtherRefType, Loc).takeAs<Expr>();
4831 assert(OtherRef && "Reference to parameter cannot fail!");
4832
4833 // Construct the "this" pointer. We'll be using this throughout the generated
4834 // ASTs.
4835 Expr *This = ActOnCXXThis(Loc).takeAs<Expr>();
4836 assert(This && "Reference to this cannot fail!");
4837
4838 // Assign base classes.
4839 bool Invalid = false;
4840 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
4841 E = ClassDecl->bases_end(); Base != E; ++Base) {
4842 // Form the assignment:
4843 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&>(other));
4844 QualType BaseType = Base->getType().getUnqualifiedType();
4845 CXXRecordDecl *BaseClassDecl = 0;
4846 if (const RecordType *BaseRecordT = BaseType->getAs<RecordType>())
4847 BaseClassDecl = cast<CXXRecordDecl>(BaseRecordT->getDecl());
4848 else {
4849 Invalid = true;
4850 continue;
4851 }
4852
4853 // Construct the "from" expression, which is an implicit cast to the
4854 // appropriately-qualified base type.
4855 Expr *From = OtherRef->Retain();
4856 ImpCastExprToType(From, Context.getQualifiedType(BaseType, OtherQuals),
Sebastian Redl906082e2010-07-20 04:20:21 +00004857 CastExpr::CK_UncheckedDerivedToBase,
4858 ImplicitCastExpr::LValue, CXXBaseSpecifierArray(Base));
Douglas Gregor06a9f362010-05-01 20:49:11 +00004859
4860 // Dereference "this".
4861 OwningExprResult To = CreateBuiltinUnaryOp(Loc, UnaryOperator::Deref,
4862 Owned(This->Retain()));
4863
4864 // Implicitly cast "this" to the appropriately-qualified base type.
4865 Expr *ToE = To.takeAs<Expr>();
4866 ImpCastExprToType(ToE,
4867 Context.getCVRQualifiedType(BaseType,
4868 CopyAssignOperator->getTypeQualifiers()),
4869 CastExpr::CK_UncheckedDerivedToBase,
Sebastian Redl906082e2010-07-20 04:20:21 +00004870 ImplicitCastExpr::LValue, CXXBaseSpecifierArray(Base));
Douglas Gregor06a9f362010-05-01 20:49:11 +00004871 To = Owned(ToE);
4872
4873 // Build the copy.
4874 OwningStmtResult Copy = BuildSingleCopyAssign(*this, Loc, BaseType,
Douglas Gregor6cdc1612010-05-04 15:20:55 +00004875 move(To), Owned(From),
4876 /*CopyingBaseSubobject=*/true);
Douglas Gregor06a9f362010-05-01 20:49:11 +00004877 if (Copy.isInvalid()) {
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00004878 Diag(CurrentLocation, diag::note_member_synthesized_at)
4879 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
4880 CopyAssignOperator->setInvalidDecl();
4881 return;
Douglas Gregor06a9f362010-05-01 20:49:11 +00004882 }
4883
4884 // Success! Record the copy.
4885 Statements.push_back(Copy.takeAs<Expr>());
4886 }
4887
4888 // \brief Reference to the __builtin_memcpy function.
4889 Expr *BuiltinMemCpyRef = 0;
Fariborz Jahanian8e2eab22010-06-16 16:22:04 +00004890 // \brief Reference to the __builtin_objc_memmove_collectable function.
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00004891 Expr *CollectableMemCpyRef = 0;
Douglas Gregor06a9f362010-05-01 20:49:11 +00004892
4893 // Assign non-static members.
4894 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
4895 FieldEnd = ClassDecl->field_end();
4896 Field != FieldEnd; ++Field) {
4897 // Check for members of reference type; we can't copy those.
4898 if (Field->getType()->isReferenceType()) {
4899 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
4900 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
4901 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00004902 Diag(CurrentLocation, diag::note_member_synthesized_at)
4903 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregor06a9f362010-05-01 20:49:11 +00004904 Invalid = true;
4905 continue;
4906 }
4907
4908 // Check for members of const-qualified, non-class type.
4909 QualType BaseType = Context.getBaseElementType(Field->getType());
4910 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) {
4911 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
4912 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
4913 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00004914 Diag(CurrentLocation, diag::note_member_synthesized_at)
4915 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregor06a9f362010-05-01 20:49:11 +00004916 Invalid = true;
4917 continue;
4918 }
4919
4920 QualType FieldType = Field->getType().getNonReferenceType();
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00004921 if (FieldType->isIncompleteArrayType()) {
4922 assert(ClassDecl->hasFlexibleArrayMember() &&
4923 "Incomplete array type is not valid");
4924 continue;
4925 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00004926
4927 // Build references to the field in the object we're copying from and to.
4928 CXXScopeSpec SS; // Intentionally empty
4929 LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
4930 LookupMemberName);
4931 MemberLookup.addDecl(*Field);
4932 MemberLookup.resolveKind();
4933 OwningExprResult From = BuildMemberReferenceExpr(Owned(OtherRef->Retain()),
4934 OtherRefType,
4935 Loc, /*IsArrow=*/false,
4936 SS, 0, MemberLookup, 0);
4937 OwningExprResult To = BuildMemberReferenceExpr(Owned(This->Retain()),
4938 This->getType(),
4939 Loc, /*IsArrow=*/true,
4940 SS, 0, MemberLookup, 0);
4941 assert(!From.isInvalid() && "Implicit field reference cannot fail");
4942 assert(!To.isInvalid() && "Implicit field reference cannot fail");
4943
4944 // If the field should be copied with __builtin_memcpy rather than via
4945 // explicit assignments, do so. This optimization only applies for arrays
4946 // of scalars and arrays of class type with trivial copy-assignment
4947 // operators.
4948 if (FieldType->isArrayType() &&
4949 (!BaseType->isRecordType() ||
4950 cast<CXXRecordDecl>(BaseType->getAs<RecordType>()->getDecl())
4951 ->hasTrivialCopyAssignment())) {
4952 // Compute the size of the memory buffer to be copied.
4953 QualType SizeType = Context.getSizeType();
4954 llvm::APInt Size(Context.getTypeSize(SizeType),
4955 Context.getTypeSizeInChars(BaseType).getQuantity());
4956 for (const ConstantArrayType *Array
4957 = Context.getAsConstantArrayType(FieldType);
4958 Array;
4959 Array = Context.getAsConstantArrayType(Array->getElementType())) {
4960 llvm::APInt ArraySize = Array->getSize();
4961 ArraySize.zextOrTrunc(Size.getBitWidth());
4962 Size *= ArraySize;
4963 }
4964
4965 // Take the address of the field references for "from" and "to".
4966 From = CreateBuiltinUnaryOp(Loc, UnaryOperator::AddrOf, move(From));
4967 To = CreateBuiltinUnaryOp(Loc, UnaryOperator::AddrOf, move(To));
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00004968
4969 bool NeedsCollectableMemCpy =
4970 (BaseType->isRecordType() &&
4971 BaseType->getAs<RecordType>()->getDecl()->hasObjectMember());
4972
4973 if (NeedsCollectableMemCpy) {
4974 if (!CollectableMemCpyRef) {
Fariborz Jahanian8e2eab22010-06-16 16:22:04 +00004975 // Create a reference to the __builtin_objc_memmove_collectable function.
4976 LookupResult R(*this,
4977 &Context.Idents.get("__builtin_objc_memmove_collectable"),
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00004978 Loc, LookupOrdinaryName);
4979 LookupName(R, TUScope, true);
4980
4981 FunctionDecl *CollectableMemCpy = R.getAsSingle<FunctionDecl>();
4982 if (!CollectableMemCpy) {
4983 // Something went horribly wrong earlier, and we will have
4984 // complained about it.
4985 Invalid = true;
4986 continue;
4987 }
4988
4989 CollectableMemCpyRef = BuildDeclRefExpr(CollectableMemCpy,
4990 CollectableMemCpy->getType(),
4991 Loc, 0).takeAs<Expr>();
4992 assert(CollectableMemCpyRef && "Builtin reference cannot fail");
4993 }
4994 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00004995 // Create a reference to the __builtin_memcpy builtin function.
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00004996 else if (!BuiltinMemCpyRef) {
Douglas Gregor06a9f362010-05-01 20:49:11 +00004997 LookupResult R(*this, &Context.Idents.get("__builtin_memcpy"), Loc,
4998 LookupOrdinaryName);
4999 LookupName(R, TUScope, true);
5000
5001 FunctionDecl *BuiltinMemCpy = R.getAsSingle<FunctionDecl>();
5002 if (!BuiltinMemCpy) {
5003 // Something went horribly wrong earlier, and we will have complained
5004 // about it.
5005 Invalid = true;
5006 continue;
5007 }
5008
5009 BuiltinMemCpyRef = BuildDeclRefExpr(BuiltinMemCpy,
5010 BuiltinMemCpy->getType(),
5011 Loc, 0).takeAs<Expr>();
5012 assert(BuiltinMemCpyRef && "Builtin reference cannot fail");
5013 }
5014
5015 ASTOwningVector<&ActionBase::DeleteExpr> CallArgs(*this);
5016 CallArgs.push_back(To.takeAs<Expr>());
5017 CallArgs.push_back(From.takeAs<Expr>());
5018 CallArgs.push_back(new (Context) IntegerLiteral(Size, SizeType, Loc));
5019 llvm::SmallVector<SourceLocation, 4> Commas; // FIXME: Silly
5020 Commas.push_back(Loc);
5021 Commas.push_back(Loc);
Fariborz Jahanianff2d05f2010-06-16 00:16:38 +00005022 OwningExprResult Call = ExprError();
5023 if (NeedsCollectableMemCpy)
5024 Call = ActOnCallExpr(/*Scope=*/0,
5025 Owned(CollectableMemCpyRef->Retain()),
5026 Loc, move_arg(CallArgs),
5027 Commas.data(), Loc);
5028 else
5029 Call = ActOnCallExpr(/*Scope=*/0,
5030 Owned(BuiltinMemCpyRef->Retain()),
5031 Loc, move_arg(CallArgs),
5032 Commas.data(), Loc);
5033
Douglas Gregor06a9f362010-05-01 20:49:11 +00005034 assert(!Call.isInvalid() && "Call to __builtin_memcpy cannot fail!");
5035 Statements.push_back(Call.takeAs<Expr>());
5036 continue;
5037 }
5038
5039 // Build the copy of this field.
5040 OwningStmtResult Copy = BuildSingleCopyAssign(*this, Loc, FieldType,
Douglas Gregor6cdc1612010-05-04 15:20:55 +00005041 move(To), move(From),
5042 /*CopyingBaseSubobject=*/false);
Douglas Gregor06a9f362010-05-01 20:49:11 +00005043 if (Copy.isInvalid()) {
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00005044 Diag(CurrentLocation, diag::note_member_synthesized_at)
5045 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
5046 CopyAssignOperator->setInvalidDecl();
5047 return;
Douglas Gregor06a9f362010-05-01 20:49:11 +00005048 }
5049
5050 // Success! Record the copy.
5051 Statements.push_back(Copy.takeAs<Stmt>());
5052 }
5053
5054 if (!Invalid) {
5055 // Add a "return *this;"
5056 OwningExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UnaryOperator::Deref,
5057 Owned(This->Retain()));
5058
5059 OwningStmtResult Return = ActOnReturnStmt(Loc, move(ThisObj));
5060 if (Return.isInvalid())
5061 Invalid = true;
5062 else {
5063 Statements.push_back(Return.takeAs<Stmt>());
Douglas Gregorc63d2c82010-05-12 16:39:35 +00005064
5065 if (Trap.hasErrorOccurred()) {
5066 Diag(CurrentLocation, diag::note_member_synthesized_at)
5067 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
5068 Invalid = true;
5069 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00005070 }
5071 }
5072
5073 if (Invalid) {
5074 CopyAssignOperator->setInvalidDecl();
5075 return;
5076 }
5077
5078 OwningStmtResult Body = ActOnCompoundStmt(Loc, Loc, move_arg(Statements),
5079 /*isStmtExpr=*/false);
5080 assert(!Body.isInvalid() && "Compound statement creation cannot fail");
5081 CopyAssignOperator->setBody(Body.takeAs<Stmt>());
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00005082}
5083
Douglas Gregor23c94db2010-07-02 17:43:08 +00005084CXXConstructorDecl *Sema::DeclareImplicitCopyConstructor(
5085 CXXRecordDecl *ClassDecl) {
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005086 // C++ [class.copy]p4:
5087 // If the class definition does not explicitly declare a copy
5088 // constructor, one is declared implicitly.
5089
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005090 // C++ [class.copy]p5:
5091 // The implicitly-declared copy constructor for a class X will
5092 // have the form
5093 //
5094 // X::X(const X&)
5095 //
5096 // if
5097 bool HasConstCopyConstructor = true;
5098
5099 // -- each direct or virtual base class B of X has a copy
5100 // constructor whose first parameter is of type const B& or
5101 // const volatile B&, and
5102 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
5103 BaseEnd = ClassDecl->bases_end();
5104 HasConstCopyConstructor && Base != BaseEnd;
5105 ++Base) {
Douglas Gregor598a8542010-07-01 18:27:03 +00005106 // Virtual bases are handled below.
5107 if (Base->isVirtual())
5108 continue;
5109
Douglas Gregor22584312010-07-02 23:41:54 +00005110 CXXRecordDecl *BaseClassDecl
Douglas Gregor598a8542010-07-01 18:27:03 +00005111 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregor22584312010-07-02 23:41:54 +00005112 if (!BaseClassDecl->hasDeclaredCopyConstructor())
5113 DeclareImplicitCopyConstructor(BaseClassDecl);
5114
Douglas Gregor598a8542010-07-01 18:27:03 +00005115 HasConstCopyConstructor
5116 = BaseClassDecl->hasConstCopyConstructor(Context);
5117 }
5118
5119 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
5120 BaseEnd = ClassDecl->vbases_end();
5121 HasConstCopyConstructor && Base != BaseEnd;
5122 ++Base) {
Douglas Gregor22584312010-07-02 23:41:54 +00005123 CXXRecordDecl *BaseClassDecl
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005124 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregor22584312010-07-02 23:41:54 +00005125 if (!BaseClassDecl->hasDeclaredCopyConstructor())
5126 DeclareImplicitCopyConstructor(BaseClassDecl);
5127
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005128 HasConstCopyConstructor
5129 = BaseClassDecl->hasConstCopyConstructor(Context);
5130 }
5131
5132 // -- for all the nonstatic data members of X that are of a
5133 // class type M (or array thereof), each such class type
5134 // has a copy constructor whose first parameter is of type
5135 // const M& or const volatile M&.
5136 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
5137 FieldEnd = ClassDecl->field_end();
5138 HasConstCopyConstructor && Field != FieldEnd;
5139 ++Field) {
Douglas Gregor598a8542010-07-01 18:27:03 +00005140 QualType FieldType = Context.getBaseElementType((*Field)->getType());
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005141 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Douglas Gregor22584312010-07-02 23:41:54 +00005142 CXXRecordDecl *FieldClassDecl
Douglas Gregor598a8542010-07-01 18:27:03 +00005143 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Douglas Gregor22584312010-07-02 23:41:54 +00005144 if (!FieldClassDecl->hasDeclaredCopyConstructor())
5145 DeclareImplicitCopyConstructor(FieldClassDecl);
5146
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005147 HasConstCopyConstructor
Douglas Gregor598a8542010-07-01 18:27:03 +00005148 = FieldClassDecl->hasConstCopyConstructor(Context);
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005149 }
5150 }
5151
5152 // Otherwise, the implicitly declared copy constructor will have
5153 // the form
5154 //
5155 // X::X(X&)
5156 QualType ClassType = Context.getTypeDeclType(ClassDecl);
5157 QualType ArgType = ClassType;
5158 if (HasConstCopyConstructor)
5159 ArgType = ArgType.withConst();
5160 ArgType = Context.getLValueReferenceType(ArgType);
5161
Douglas Gregor0d405db2010-07-01 20:59:04 +00005162 // C++ [except.spec]p14:
5163 // An implicitly declared special member function (Clause 12) shall have an
5164 // exception-specification. [...]
5165 ImplicitExceptionSpecification ExceptSpec(Context);
5166 unsigned Quals = HasConstCopyConstructor? Qualifiers::Const : 0;
5167 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
5168 BaseEnd = ClassDecl->bases_end();
5169 Base != BaseEnd;
5170 ++Base) {
5171 // Virtual bases are handled below.
5172 if (Base->isVirtual())
5173 continue;
5174
Douglas Gregor22584312010-07-02 23:41:54 +00005175 CXXRecordDecl *BaseClassDecl
Douglas Gregor0d405db2010-07-01 20:59:04 +00005176 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregor22584312010-07-02 23:41:54 +00005177 if (!BaseClassDecl->hasDeclaredCopyConstructor())
5178 DeclareImplicitCopyConstructor(BaseClassDecl);
5179
Douglas Gregor0d405db2010-07-01 20:59:04 +00005180 if (CXXConstructorDecl *CopyConstructor
5181 = BaseClassDecl->getCopyConstructor(Context, Quals))
5182 ExceptSpec.CalledDecl(CopyConstructor);
5183 }
5184 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
5185 BaseEnd = ClassDecl->vbases_end();
5186 Base != BaseEnd;
5187 ++Base) {
Douglas Gregor22584312010-07-02 23:41:54 +00005188 CXXRecordDecl *BaseClassDecl
Douglas Gregor0d405db2010-07-01 20:59:04 +00005189 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregor22584312010-07-02 23:41:54 +00005190 if (!BaseClassDecl->hasDeclaredCopyConstructor())
5191 DeclareImplicitCopyConstructor(BaseClassDecl);
5192
Douglas Gregor0d405db2010-07-01 20:59:04 +00005193 if (CXXConstructorDecl *CopyConstructor
5194 = BaseClassDecl->getCopyConstructor(Context, Quals))
5195 ExceptSpec.CalledDecl(CopyConstructor);
5196 }
5197 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
5198 FieldEnd = ClassDecl->field_end();
5199 Field != FieldEnd;
5200 ++Field) {
5201 QualType FieldType = Context.getBaseElementType((*Field)->getType());
5202 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Douglas Gregor22584312010-07-02 23:41:54 +00005203 CXXRecordDecl *FieldClassDecl
Douglas Gregor0d405db2010-07-01 20:59:04 +00005204 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Douglas Gregor22584312010-07-02 23:41:54 +00005205 if (!FieldClassDecl->hasDeclaredCopyConstructor())
5206 DeclareImplicitCopyConstructor(FieldClassDecl);
5207
Douglas Gregor0d405db2010-07-01 20:59:04 +00005208 if (CXXConstructorDecl *CopyConstructor
5209 = FieldClassDecl->getCopyConstructor(Context, Quals))
5210 ExceptSpec.CalledDecl(CopyConstructor);
5211 }
5212 }
5213
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005214 // An implicitly-declared copy constructor is an inline public
5215 // member of its class.
5216 DeclarationName Name
5217 = Context.DeclarationNames.getCXXConstructorName(
5218 Context.getCanonicalType(ClassType));
5219 CXXConstructorDecl *CopyConstructor
5220 = CXXConstructorDecl::Create(Context, ClassDecl,
5221 ClassDecl->getLocation(), Name,
5222 Context.getFunctionType(Context.VoidTy,
5223 &ArgType, 1,
5224 false, 0,
Douglas Gregor0d405db2010-07-01 20:59:04 +00005225 ExceptSpec.hasExceptionSpecification(),
5226 ExceptSpec.hasAnyExceptionSpecification(),
5227 ExceptSpec.size(),
5228 ExceptSpec.data(),
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005229 FunctionType::ExtInfo()),
5230 /*TInfo=*/0,
5231 /*isExplicit=*/false,
5232 /*isInline=*/true,
5233 /*isImplicitlyDeclared=*/true);
5234 CopyConstructor->setAccess(AS_public);
5235 CopyConstructor->setImplicit();
5236 CopyConstructor->setTrivial(ClassDecl->hasTrivialCopyConstructor());
5237
Douglas Gregor22584312010-07-02 23:41:54 +00005238 // Note that we have declared this constructor.
5239 ClassDecl->setDeclaredCopyConstructor(true);
5240 ++ASTContext::NumImplicitCopyConstructorsDeclared;
5241
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005242 // Add the parameter to the constructor.
5243 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyConstructor,
5244 ClassDecl->getLocation(),
5245 /*IdentifierInfo=*/0,
5246 ArgType, /*TInfo=*/0,
5247 VarDecl::None,
5248 VarDecl::None, 0);
5249 CopyConstructor->setParams(&FromParam, 1);
Douglas Gregor23c94db2010-07-02 17:43:08 +00005250 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor22584312010-07-02 23:41:54 +00005251 PushOnScopeChains(CopyConstructor, S, false);
5252 ClassDecl->addDecl(CopyConstructor);
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005253
5254 return CopyConstructor;
5255}
5256
Fariborz Jahanian485f0872009-06-22 23:34:40 +00005257void Sema::DefineImplicitCopyConstructor(SourceLocation CurrentLocation,
5258 CXXConstructorDecl *CopyConstructor,
5259 unsigned TypeQuals) {
Mike Stump1eb44332009-09-09 15:08:12 +00005260 assert((CopyConstructor->isImplicit() &&
Douglas Gregor9e9199d2009-12-22 00:34:07 +00005261 CopyConstructor->isCopyConstructor(TypeQuals) &&
Douglas Gregorc070cc62010-06-17 23:14:26 +00005262 !CopyConstructor->isUsed(false)) &&
Fariborz Jahanian485f0872009-06-22 23:34:40 +00005263 "DefineImplicitCopyConstructor - call it for implicit copy ctor");
Mike Stump1eb44332009-09-09 15:08:12 +00005264
Anders Carlsson63010a72010-04-23 16:24:12 +00005265 CXXRecordDecl *ClassDecl = CopyConstructor->getParent();
Fariborz Jahanian485f0872009-06-22 23:34:40 +00005266 assert(ClassDecl && "DefineImplicitCopyConstructor - invalid constructor");
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00005267
Douglas Gregor39957dc2010-05-01 15:04:51 +00005268 ImplicitlyDefinedFunctionScope Scope(*this, CopyConstructor);
Douglas Gregorc63d2c82010-05-12 16:39:35 +00005269 ErrorTrap Trap(*this);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00005270
Douglas Gregorc63d2c82010-05-12 16:39:35 +00005271 if (SetBaseOrMemberInitializers(CopyConstructor, 0, 0, /*AnyErrors=*/false) ||
5272 Trap.hasErrorOccurred()) {
Anders Carlsson59b7f152010-05-01 16:39:01 +00005273 Diag(CurrentLocation, diag::note_member_synthesized_at)
Douglas Gregorfb8cc252010-05-05 05:51:00 +00005274 << CXXCopyConstructor << Context.getTagDeclType(ClassDecl);
Anders Carlsson59b7f152010-05-01 16:39:01 +00005275 CopyConstructor->setInvalidDecl();
Douglas Gregorfb8cc252010-05-05 05:51:00 +00005276 } else {
5277 CopyConstructor->setBody(ActOnCompoundStmt(CopyConstructor->getLocation(),
5278 CopyConstructor->getLocation(),
5279 MultiStmtArg(*this, 0, 0),
5280 /*isStmtExpr=*/false)
5281 .takeAs<Stmt>());
Anders Carlsson8e142cc2010-04-25 00:52:09 +00005282 }
Douglas Gregorfb8cc252010-05-05 05:51:00 +00005283
5284 CopyConstructor->setUsed();
Fariborz Jahanian485f0872009-06-22 23:34:40 +00005285}
5286
Anders Carlssonda3f4e22009-08-25 05:12:04 +00005287Sema::OwningExprResult
Anders Carlssonec8e5ea2009-09-05 07:40:38 +00005288Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
Mike Stump1eb44332009-09-09 15:08:12 +00005289 CXXConstructorDecl *Constructor,
Douglas Gregor16006c92009-12-16 18:50:27 +00005290 MultiExprArg ExprArgs,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00005291 bool RequiresZeroInit,
Anders Carlsson72e96fd2010-05-02 22:54:08 +00005292 CXXConstructExpr::ConstructionKind ConstructKind) {
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00005293 bool Elidable = false;
Mike Stump1eb44332009-09-09 15:08:12 +00005294
Douglas Gregor2f599792010-04-02 18:24:57 +00005295 // C++0x [class.copy]p34:
5296 // When certain criteria are met, an implementation is allowed to
5297 // omit the copy/move construction of a class object, even if the
5298 // copy/move constructor and/or destructor for the object have
5299 // side effects. [...]
5300 // - when a temporary class object that has not been bound to a
5301 // reference (12.2) would be copied/moved to a class object
5302 // with the same cv-unqualified type, the copy/move operation
5303 // can be omitted by constructing the temporary object
5304 // directly into the target of the omitted copy/move
5305 if (Constructor->isCopyConstructor() && ExprArgs.size() >= 1) {
5306 Expr *SubExpr = ((Expr **)ExprArgs.get())[0];
5307 Elidable = SubExpr->isTemporaryObject() &&
5308 Context.hasSameUnqualifiedType(SubExpr->getType(),
5309 Context.getTypeDeclType(Constructor->getParent()));
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00005310 }
Mike Stump1eb44332009-09-09 15:08:12 +00005311
5312 return BuildCXXConstructExpr(ConstructLoc, DeclInitType, Constructor,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00005313 Elidable, move(ExprArgs), RequiresZeroInit,
Anders Carlsson72e96fd2010-05-02 22:54:08 +00005314 ConstructKind);
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00005315}
5316
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00005317/// BuildCXXConstructExpr - Creates a complete call to a constructor,
5318/// including handling of its default argument expressions.
Anders Carlssonda3f4e22009-08-25 05:12:04 +00005319Sema::OwningExprResult
Anders Carlssonec8e5ea2009-09-05 07:40:38 +00005320Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
5321 CXXConstructorDecl *Constructor, bool Elidable,
Douglas Gregor16006c92009-12-16 18:50:27 +00005322 MultiExprArg ExprArgs,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00005323 bool RequiresZeroInit,
Anders Carlsson72e96fd2010-05-02 22:54:08 +00005324 CXXConstructExpr::ConstructionKind ConstructKind) {
Anders Carlssonf47511a2009-09-07 22:23:31 +00005325 unsigned NumExprs = ExprArgs.size();
5326 Expr **Exprs = (Expr **)ExprArgs.release();
Mike Stump1eb44332009-09-09 15:08:12 +00005327
Douglas Gregor7edfb692009-11-23 12:27:39 +00005328 MarkDeclarationReferenced(ConstructLoc, Constructor);
Douglas Gregor99a2e602009-12-16 01:38:02 +00005329 return Owned(CXXConstructExpr::Create(Context, DeclInitType, ConstructLoc,
Douglas Gregor16006c92009-12-16 18:50:27 +00005330 Constructor, Elidable, Exprs, NumExprs,
Anders Carlsson72e96fd2010-05-02 22:54:08 +00005331 RequiresZeroInit, ConstructKind));
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00005332}
5333
Mike Stump1eb44332009-09-09 15:08:12 +00005334bool Sema::InitializeVarWithConstructor(VarDecl *VD,
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00005335 CXXConstructorDecl *Constructor,
Anders Carlssonf47511a2009-09-07 22:23:31 +00005336 MultiExprArg Exprs) {
Mike Stump1eb44332009-09-09 15:08:12 +00005337 OwningExprResult TempResult =
Fariborz Jahanianc0fcce42009-10-28 18:41:06 +00005338 BuildCXXConstructExpr(VD->getLocation(), VD->getType(), Constructor,
Anders Carlssonf47511a2009-09-07 22:23:31 +00005339 move(Exprs));
Anders Carlssonfe2de492009-08-25 05:18:00 +00005340 if (TempResult.isInvalid())
5341 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00005342
Anders Carlssonda3f4e22009-08-25 05:12:04 +00005343 Expr *Temp = TempResult.takeAs<Expr>();
Douglas Gregord7f37bf2009-06-22 23:06:13 +00005344 MarkDeclarationReferenced(VD->getLocation(), Constructor);
Anders Carlsson0ece4912009-12-15 20:51:39 +00005345 Temp = MaybeCreateCXXExprWithTemporaries(Temp);
Douglas Gregor838db382010-02-11 01:19:42 +00005346 VD->setInit(Temp);
Mike Stump1eb44332009-09-09 15:08:12 +00005347
Anders Carlssonfe2de492009-08-25 05:18:00 +00005348 return false;
Anders Carlsson930e8d02009-04-16 23:50:50 +00005349}
5350
John McCall68c6c9a2010-02-02 09:10:11 +00005351void Sema::FinalizeVarWithDestructor(VarDecl *VD, const RecordType *Record) {
5352 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Record->getDecl());
Douglas Gregor333de062010-02-25 18:11:54 +00005353 if (!ClassDecl->isInvalidDecl() && !VD->isInvalidDecl() &&
Douglas Gregorfb2db462010-05-22 17:12:29 +00005354 !ClassDecl->hasTrivialDestructor() && !ClassDecl->isDependentContext()) {
Douglas Gregordb89f282010-07-01 22:47:18 +00005355 CXXDestructorDecl *Destructor = LookupDestructor(ClassDecl);
John McCall4f9506a2010-02-02 08:45:54 +00005356 MarkDeclarationReferenced(VD->getLocation(), Destructor);
John McCall58e6f342010-03-16 05:22:47 +00005357 CheckDestructorAccess(VD->getLocation(), Destructor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00005358 PDiag(diag::err_access_dtor_var)
John McCall58e6f342010-03-16 05:22:47 +00005359 << VD->getDeclName()
5360 << VD->getType());
John McCall626e96e2010-08-01 20:20:59 +00005361
5362 if (!VD->isInvalidDecl() && VD->hasGlobalStorage())
5363 Diag(VD->getLocation(), diag::warn_global_destructor);
John McCall4f9506a2010-02-02 08:45:54 +00005364 }
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00005365}
5366
Mike Stump1eb44332009-09-09 15:08:12 +00005367/// AddCXXDirectInitializerToDecl - This action is called immediately after
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00005368/// ActOnDeclarator, when a C++ direct initializer is present.
5369/// e.g: "int x(1);"
Chris Lattnerb28317a2009-03-28 19:18:32 +00005370void Sema::AddCXXDirectInitializerToDecl(DeclPtrTy Dcl,
5371 SourceLocation LParenLoc,
Sebastian Redlf53597f2009-03-15 17:47:39 +00005372 MultiExprArg Exprs,
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00005373 SourceLocation *CommaLocs,
5374 SourceLocation RParenLoc) {
Daniel Dunbar51846262009-12-24 19:19:26 +00005375 assert(Exprs.size() != 0 && Exprs.get() && "missing expressions");
Chris Lattnerb28317a2009-03-28 19:18:32 +00005376 Decl *RealDecl = Dcl.getAs<Decl>();
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00005377
5378 // If there is no declaration, there was an error parsing it. Just ignore
5379 // the initializer.
Chris Lattnerb28317a2009-03-28 19:18:32 +00005380 if (RealDecl == 0)
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00005381 return;
Mike Stump1eb44332009-09-09 15:08:12 +00005382
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00005383 VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl);
5384 if (!VDecl) {
5385 Diag(RealDecl->getLocation(), diag::err_illegal_initializer);
5386 RealDecl->setInvalidDecl();
5387 return;
5388 }
5389
Douglas Gregor83ddad32009-08-26 21:14:46 +00005390 // We will represent direct-initialization similarly to copy-initialization:
Argyrios Kyrtzidisce8e2922008-10-06 23:08:37 +00005391 // int x(1); -as-> int x = 1;
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00005392 // ClassType x(a,b,c); -as-> ClassType x = ClassType(a,b,c);
5393 //
5394 // Clients that want to distinguish between the two forms, can check for
5395 // direct initializer using VarDecl::hasCXXDirectInitializer().
5396 // A major benefit is that clients that don't particularly care about which
5397 // exactly form was it (like the CodeGen) can handle both cases without
5398 // special case code.
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +00005399
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00005400 // C++ 8.5p11:
5401 // The form of initialization (using parentheses or '=') is generally
5402 // insignificant, but does matter when the entity being initialized has a
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +00005403 // class type.
5404
Douglas Gregor4dffad62010-02-11 22:55:30 +00005405 if (!VDecl->getType()->isDependentType() &&
5406 RequireCompleteType(VDecl->getLocation(), VDecl->getType(),
Douglas Gregor615c5d42009-03-24 16:43:20 +00005407 diag::err_typecheck_decl_incomplete_type)) {
5408 VDecl->setInvalidDecl();
5409 return;
5410 }
5411
Douglas Gregor90f93822009-12-22 22:17:25 +00005412 // The variable can not have an abstract class type.
5413 if (RequireNonAbstractType(VDecl->getLocation(), VDecl->getType(),
5414 diag::err_abstract_type_in_decl,
5415 AbstractVariableType))
5416 VDecl->setInvalidDecl();
5417
Sebastian Redl31310a22010-02-01 20:16:42 +00005418 const VarDecl *Def;
5419 if ((Def = VDecl->getDefinition()) && Def != VDecl) {
Douglas Gregor90f93822009-12-22 22:17:25 +00005420 Diag(VDecl->getLocation(), diag::err_redefinition)
5421 << VDecl->getDeclName();
5422 Diag(Def->getLocation(), diag::note_previous_definition);
5423 VDecl->setInvalidDecl();
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +00005424 return;
5425 }
Douglas Gregor4dffad62010-02-11 22:55:30 +00005426
5427 // If either the declaration has a dependent type or if any of the
5428 // expressions is type-dependent, we represent the initialization
5429 // via a ParenListExpr for later use during template instantiation.
5430 if (VDecl->getType()->isDependentType() ||
5431 Expr::hasAnyTypeDependentArguments((Expr **)Exprs.get(), Exprs.size())) {
5432 // Let clients know that initialization was done with a direct initializer.
5433 VDecl->setCXXDirectInitializer(true);
5434
5435 // Store the initialization expressions as a ParenListExpr.
5436 unsigned NumExprs = Exprs.size();
5437 VDecl->setInit(new (Context) ParenListExpr(Context, LParenLoc,
5438 (Expr **)Exprs.release(),
5439 NumExprs, RParenLoc));
5440 return;
5441 }
Douglas Gregor90f93822009-12-22 22:17:25 +00005442
5443 // Capture the variable that is being initialized and the style of
5444 // initialization.
5445 InitializedEntity Entity = InitializedEntity::InitializeVariable(VDecl);
5446
5447 // FIXME: Poor source location information.
5448 InitializationKind Kind
5449 = InitializationKind::CreateDirect(VDecl->getLocation(),
5450 LParenLoc, RParenLoc);
5451
5452 InitializationSequence InitSeq(*this, Entity, Kind,
5453 (Expr**)Exprs.get(), Exprs.size());
5454 OwningExprResult Result = InitSeq.Perform(*this, Entity, Kind, move(Exprs));
5455 if (Result.isInvalid()) {
5456 VDecl->setInvalidDecl();
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00005457 return;
5458 }
Douglas Gregor90f93822009-12-22 22:17:25 +00005459
5460 Result = MaybeCreateCXXExprWithTemporaries(move(Result));
Douglas Gregor838db382010-02-11 01:19:42 +00005461 VDecl->setInit(Result.takeAs<Expr>());
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00005462 VDecl->setCXXDirectInitializer(true);
Argyrios Kyrtzidisce8e2922008-10-06 23:08:37 +00005463
John McCall68c6c9a2010-02-02 09:10:11 +00005464 if (const RecordType *Record = VDecl->getType()->getAs<RecordType>())
5465 FinalizeVarWithDestructor(VDecl, Record);
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00005466}
Douglas Gregor27c8dc02008-10-29 00:13:59 +00005467
Douglas Gregor39da0b82009-09-09 23:08:42 +00005468/// \brief Given a constructor and the set of arguments provided for the
5469/// constructor, convert the arguments and add any required default arguments
5470/// to form a proper call to this constructor.
5471///
5472/// \returns true if an error occurred, false otherwise.
5473bool
5474Sema::CompleteConstructorCall(CXXConstructorDecl *Constructor,
5475 MultiExprArg ArgsPtr,
5476 SourceLocation Loc,
5477 ASTOwningVector<&ActionBase::DeleteExpr> &ConvertedArgs) {
5478 // FIXME: This duplicates a lot of code from Sema::ConvertArgumentsForCall.
5479 unsigned NumArgs = ArgsPtr.size();
5480 Expr **Args = (Expr **)ArgsPtr.get();
5481
5482 const FunctionProtoType *Proto
5483 = Constructor->getType()->getAs<FunctionProtoType>();
5484 assert(Proto && "Constructor without a prototype?");
5485 unsigned NumArgsInProto = Proto->getNumArgs();
Douglas Gregor39da0b82009-09-09 23:08:42 +00005486
5487 // If too few arguments are available, we'll fill in the rest with defaults.
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00005488 if (NumArgs < NumArgsInProto)
Douglas Gregor39da0b82009-09-09 23:08:42 +00005489 ConvertedArgs.reserve(NumArgsInProto);
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00005490 else
Douglas Gregor39da0b82009-09-09 23:08:42 +00005491 ConvertedArgs.reserve(NumArgs);
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00005492
5493 VariadicCallType CallType =
5494 Proto->isVariadic() ? VariadicConstructor : VariadicDoesNotApply;
5495 llvm::SmallVector<Expr *, 8> AllArgs;
5496 bool Invalid = GatherArgumentsForCall(Loc, Constructor,
5497 Proto, 0, Args, NumArgs, AllArgs,
5498 CallType);
5499 for (unsigned i =0, size = AllArgs.size(); i < size; i++)
5500 ConvertedArgs.push_back(AllArgs[i]);
5501 return Invalid;
Douglas Gregor18fe5682008-11-03 20:45:27 +00005502}
5503
Anders Carlsson20d45d22009-12-12 00:32:00 +00005504static inline bool
5505CheckOperatorNewDeleteDeclarationScope(Sema &SemaRef,
5506 const FunctionDecl *FnDecl) {
5507 const DeclContext *DC = FnDecl->getDeclContext()->getLookupContext();
5508 if (isa<NamespaceDecl>(DC)) {
5509 return SemaRef.Diag(FnDecl->getLocation(),
5510 diag::err_operator_new_delete_declared_in_namespace)
5511 << FnDecl->getDeclName();
5512 }
5513
5514 if (isa<TranslationUnitDecl>(DC) &&
5515 FnDecl->getStorageClass() == FunctionDecl::Static) {
5516 return SemaRef.Diag(FnDecl->getLocation(),
5517 diag::err_operator_new_delete_declared_static)
5518 << FnDecl->getDeclName();
5519 }
5520
Anders Carlssonfcfdb2b2009-12-12 02:43:16 +00005521 return false;
Anders Carlsson20d45d22009-12-12 00:32:00 +00005522}
5523
Anders Carlsson156c78e2009-12-13 17:53:43 +00005524static inline bool
5525CheckOperatorNewDeleteTypes(Sema &SemaRef, const FunctionDecl *FnDecl,
5526 CanQualType ExpectedResultType,
5527 CanQualType ExpectedFirstParamType,
5528 unsigned DependentParamTypeDiag,
5529 unsigned InvalidParamTypeDiag) {
5530 QualType ResultType =
5531 FnDecl->getType()->getAs<FunctionType>()->getResultType();
5532
5533 // Check that the result type is not dependent.
5534 if (ResultType->isDependentType())
5535 return SemaRef.Diag(FnDecl->getLocation(),
5536 diag::err_operator_new_delete_dependent_result_type)
5537 << FnDecl->getDeclName() << ExpectedResultType;
5538
5539 // Check that the result type is what we expect.
5540 if (SemaRef.Context.getCanonicalType(ResultType) != ExpectedResultType)
5541 return SemaRef.Diag(FnDecl->getLocation(),
5542 diag::err_operator_new_delete_invalid_result_type)
5543 << FnDecl->getDeclName() << ExpectedResultType;
5544
5545 // A function template must have at least 2 parameters.
5546 if (FnDecl->getDescribedFunctionTemplate() && FnDecl->getNumParams() < 2)
5547 return SemaRef.Diag(FnDecl->getLocation(),
5548 diag::err_operator_new_delete_template_too_few_parameters)
5549 << FnDecl->getDeclName();
5550
5551 // The function decl must have at least 1 parameter.
5552 if (FnDecl->getNumParams() == 0)
5553 return SemaRef.Diag(FnDecl->getLocation(),
5554 diag::err_operator_new_delete_too_few_parameters)
5555 << FnDecl->getDeclName();
5556
5557 // Check the the first parameter type is not dependent.
5558 QualType FirstParamType = FnDecl->getParamDecl(0)->getType();
5559 if (FirstParamType->isDependentType())
5560 return SemaRef.Diag(FnDecl->getLocation(), DependentParamTypeDiag)
5561 << FnDecl->getDeclName() << ExpectedFirstParamType;
5562
5563 // Check that the first parameter type is what we expect.
Douglas Gregor6e790ab2009-12-22 23:42:49 +00005564 if (SemaRef.Context.getCanonicalType(FirstParamType).getUnqualifiedType() !=
Anders Carlsson156c78e2009-12-13 17:53:43 +00005565 ExpectedFirstParamType)
5566 return SemaRef.Diag(FnDecl->getLocation(), InvalidParamTypeDiag)
5567 << FnDecl->getDeclName() << ExpectedFirstParamType;
5568
5569 return false;
5570}
5571
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00005572static bool
Anders Carlsson156c78e2009-12-13 17:53:43 +00005573CheckOperatorNewDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
Anders Carlsson20d45d22009-12-12 00:32:00 +00005574 // C++ [basic.stc.dynamic.allocation]p1:
5575 // A program is ill-formed if an allocation function is declared in a
5576 // namespace scope other than global scope or declared static in global
5577 // scope.
5578 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
5579 return true;
Anders Carlsson156c78e2009-12-13 17:53:43 +00005580
5581 CanQualType SizeTy =
5582 SemaRef.Context.getCanonicalType(SemaRef.Context.getSizeType());
5583
5584 // C++ [basic.stc.dynamic.allocation]p1:
5585 // The return type shall be void*. The first parameter shall have type
5586 // std::size_t.
5587 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidPtrTy,
5588 SizeTy,
5589 diag::err_operator_new_dependent_param_type,
5590 diag::err_operator_new_param_type))
5591 return true;
5592
5593 // C++ [basic.stc.dynamic.allocation]p1:
5594 // The first parameter shall not have an associated default argument.
5595 if (FnDecl->getParamDecl(0)->hasDefaultArg())
Anders Carlssona3ccda52009-12-12 00:26:23 +00005596 return SemaRef.Diag(FnDecl->getLocation(),
Anders Carlsson156c78e2009-12-13 17:53:43 +00005597 diag::err_operator_new_default_arg)
5598 << FnDecl->getDeclName() << FnDecl->getParamDecl(0)->getDefaultArgRange();
5599
5600 return false;
Anders Carlssona3ccda52009-12-12 00:26:23 +00005601}
5602
5603static bool
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00005604CheckOperatorDeleteDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
5605 // C++ [basic.stc.dynamic.deallocation]p1:
5606 // A program is ill-formed if deallocation functions are declared in a
5607 // namespace scope other than global scope or declared static in global
5608 // scope.
Anders Carlsson20d45d22009-12-12 00:32:00 +00005609 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
5610 return true;
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00005611
5612 // C++ [basic.stc.dynamic.deallocation]p2:
5613 // Each deallocation function shall return void and its first parameter
5614 // shall be void*.
Anders Carlsson156c78e2009-12-13 17:53:43 +00005615 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidTy,
5616 SemaRef.Context.VoidPtrTy,
5617 diag::err_operator_delete_dependent_param_type,
5618 diag::err_operator_delete_param_type))
5619 return true;
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00005620
Anders Carlsson46991d62009-12-12 00:16:02 +00005621 QualType FirstParamType = FnDecl->getParamDecl(0)->getType();
5622 if (FirstParamType->isDependentType())
5623 return SemaRef.Diag(FnDecl->getLocation(),
5624 diag::err_operator_delete_dependent_param_type)
5625 << FnDecl->getDeclName() << SemaRef.Context.VoidPtrTy;
5626
5627 if (SemaRef.Context.getCanonicalType(FirstParamType) !=
5628 SemaRef.Context.VoidPtrTy)
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00005629 return SemaRef.Diag(FnDecl->getLocation(),
5630 diag::err_operator_delete_param_type)
5631 << FnDecl->getDeclName() << SemaRef.Context.VoidPtrTy;
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00005632
5633 return false;
5634}
5635
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005636/// CheckOverloadedOperatorDeclaration - Check whether the declaration
5637/// of this overloaded operator is well-formed. If so, returns false;
5638/// otherwise, emits appropriate diagnostics and returns true.
5639bool Sema::CheckOverloadedOperatorDeclaration(FunctionDecl *FnDecl) {
Douglas Gregor43c7bad2008-11-17 16:14:12 +00005640 assert(FnDecl && FnDecl->isOverloadedOperator() &&
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005641 "Expected an overloaded operator declaration");
5642
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005643 OverloadedOperatorKind Op = FnDecl->getOverloadedOperator();
5644
Mike Stump1eb44332009-09-09 15:08:12 +00005645 // C++ [over.oper]p5:
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005646 // The allocation and deallocation functions, operator new,
5647 // operator new[], operator delete and operator delete[], are
5648 // described completely in 3.7.3. The attributes and restrictions
5649 // found in the rest of this subclause do not apply to them unless
5650 // explicitly stated in 3.7.3.
Anders Carlsson1152c392009-12-11 23:31:21 +00005651 if (Op == OO_Delete || Op == OO_Array_Delete)
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00005652 return CheckOperatorDeleteDeclaration(*this, FnDecl);
Fariborz Jahanianb03bfa52009-11-10 23:47:18 +00005653
Anders Carlssona3ccda52009-12-12 00:26:23 +00005654 if (Op == OO_New || Op == OO_Array_New)
5655 return CheckOperatorNewDeclaration(*this, FnDecl);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005656
5657 // C++ [over.oper]p6:
5658 // An operator function shall either be a non-static member
5659 // function or be a non-member function and have at least one
5660 // parameter whose type is a class, a reference to a class, an
5661 // enumeration, or a reference to an enumeration.
Douglas Gregor43c7bad2008-11-17 16:14:12 +00005662 if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(FnDecl)) {
5663 if (MethodDecl->isStatic())
5664 return Diag(FnDecl->getLocation(),
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00005665 diag::err_operator_overload_static) << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005666 } else {
5667 bool ClassOrEnumParam = false;
Douglas Gregor43c7bad2008-11-17 16:14:12 +00005668 for (FunctionDecl::param_iterator Param = FnDecl->param_begin(),
5669 ParamEnd = FnDecl->param_end();
5670 Param != ParamEnd; ++Param) {
5671 QualType ParamType = (*Param)->getType().getNonReferenceType();
Eli Friedman5d39dee2009-06-27 05:59:59 +00005672 if (ParamType->isDependentType() || ParamType->isRecordType() ||
5673 ParamType->isEnumeralType()) {
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005674 ClassOrEnumParam = true;
5675 break;
5676 }
5677 }
5678
Douglas Gregor43c7bad2008-11-17 16:14:12 +00005679 if (!ClassOrEnumParam)
5680 return Diag(FnDecl->getLocation(),
Chris Lattnerf3a41af2008-11-20 06:38:18 +00005681 diag::err_operator_overload_needs_class_or_enum)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00005682 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005683 }
5684
5685 // C++ [over.oper]p8:
5686 // An operator function cannot have default arguments (8.3.6),
5687 // except where explicitly stated below.
5688 //
Mike Stump1eb44332009-09-09 15:08:12 +00005689 // Only the function-call operator allows default arguments
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005690 // (C++ [over.call]p1).
5691 if (Op != OO_Call) {
5692 for (FunctionDecl::param_iterator Param = FnDecl->param_begin();
5693 Param != FnDecl->param_end(); ++Param) {
Anders Carlsson156c78e2009-12-13 17:53:43 +00005694 if ((*Param)->hasDefaultArg())
Mike Stump1eb44332009-09-09 15:08:12 +00005695 return Diag((*Param)->getLocation(),
Douglas Gregor61366e92008-12-24 00:01:03 +00005696 diag::err_operator_overload_default_arg)
Anders Carlsson156c78e2009-12-13 17:53:43 +00005697 << FnDecl->getDeclName() << (*Param)->getDefaultArgRange();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005698 }
5699 }
5700
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00005701 static const bool OperatorUses[NUM_OVERLOADED_OPERATORS][3] = {
5702 { false, false, false }
5703#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
5704 , { Unary, Binary, MemberOnly }
5705#include "clang/Basic/OperatorKinds.def"
5706 };
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005707
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00005708 bool CanBeUnaryOperator = OperatorUses[Op][0];
5709 bool CanBeBinaryOperator = OperatorUses[Op][1];
5710 bool MustBeMemberOperator = OperatorUses[Op][2];
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005711
5712 // C++ [over.oper]p8:
5713 // [...] Operator functions cannot have more or fewer parameters
5714 // than the number required for the corresponding operator, as
5715 // described in the rest of this subclause.
Mike Stump1eb44332009-09-09 15:08:12 +00005716 unsigned NumParams = FnDecl->getNumParams()
Douglas Gregor43c7bad2008-11-17 16:14:12 +00005717 + (isa<CXXMethodDecl>(FnDecl)? 1 : 0);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005718 if (Op != OO_Call &&
5719 ((NumParams == 1 && !CanBeUnaryOperator) ||
5720 (NumParams == 2 && !CanBeBinaryOperator) ||
5721 (NumParams < 1) || (NumParams > 2))) {
5722 // We have the wrong number of parameters.
Chris Lattner416e46f2008-11-21 07:57:12 +00005723 unsigned ErrorKind;
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00005724 if (CanBeUnaryOperator && CanBeBinaryOperator) {
Chris Lattner416e46f2008-11-21 07:57:12 +00005725 ErrorKind = 2; // 2 -> unary or binary.
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00005726 } else if (CanBeUnaryOperator) {
Chris Lattner416e46f2008-11-21 07:57:12 +00005727 ErrorKind = 0; // 0 -> unary
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00005728 } else {
Chris Lattneraf7ae4e2008-11-21 07:50:02 +00005729 assert(CanBeBinaryOperator &&
5730 "All non-call overloaded operators are unary or binary!");
Chris Lattner416e46f2008-11-21 07:57:12 +00005731 ErrorKind = 1; // 1 -> binary
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00005732 }
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005733
Chris Lattner416e46f2008-11-21 07:57:12 +00005734 return Diag(FnDecl->getLocation(), diag::err_operator_overload_must_be)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00005735 << FnDecl->getDeclName() << NumParams << ErrorKind;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005736 }
Sebastian Redl64b45f72009-01-05 20:52:13 +00005737
Douglas Gregor43c7bad2008-11-17 16:14:12 +00005738 // Overloaded operators other than operator() cannot be variadic.
5739 if (Op != OO_Call &&
John McCall183700f2009-09-21 23:43:11 +00005740 FnDecl->getType()->getAs<FunctionProtoType>()->isVariadic()) {
Chris Lattnerf3a41af2008-11-20 06:38:18 +00005741 return Diag(FnDecl->getLocation(), diag::err_operator_overload_variadic)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00005742 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005743 }
5744
5745 // Some operators must be non-static member functions.
Douglas Gregor43c7bad2008-11-17 16:14:12 +00005746 if (MustBeMemberOperator && !isa<CXXMethodDecl>(FnDecl)) {
5747 return Diag(FnDecl->getLocation(),
Chris Lattnerf3a41af2008-11-20 06:38:18 +00005748 diag::err_operator_overload_must_be_member)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00005749 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005750 }
5751
5752 // C++ [over.inc]p1:
5753 // The user-defined function called operator++ implements the
5754 // prefix and postfix ++ operator. If this function is a member
5755 // function with no parameters, or a non-member function with one
5756 // parameter of class or enumeration type, it defines the prefix
5757 // increment operator ++ for objects of that type. If the function
5758 // is a member function with one parameter (which shall be of type
5759 // int) or a non-member function with two parameters (the second
5760 // of which shall be of type int), it defines the postfix
5761 // increment operator ++ for objects of that type.
5762 if ((Op == OO_PlusPlus || Op == OO_MinusMinus) && NumParams == 2) {
5763 ParmVarDecl *LastParam = FnDecl->getParamDecl(FnDecl->getNumParams() - 1);
5764 bool ParamIsInt = false;
John McCall183700f2009-09-21 23:43:11 +00005765 if (const BuiltinType *BT = LastParam->getType()->getAs<BuiltinType>())
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005766 ParamIsInt = BT->getKind() == BuiltinType::Int;
5767
Chris Lattneraf7ae4e2008-11-21 07:50:02 +00005768 if (!ParamIsInt)
5769 return Diag(LastParam->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00005770 diag::err_operator_overload_post_incdec_must_be_int)
Chris Lattnerd1625842008-11-24 06:25:27 +00005771 << LastParam->getType() << (Op == OO_MinusMinus);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005772 }
5773
Sebastian Redl64b45f72009-01-05 20:52:13 +00005774 // Notify the class if it got an assignment operator.
5775 if (Op == OO_Equal) {
5776 // Would have returned earlier otherwise.
5777 assert(isa<CXXMethodDecl>(FnDecl) &&
5778 "Overloaded = not member, but not filtered.");
5779 CXXMethodDecl *Method = cast<CXXMethodDecl>(FnDecl);
5780 Method->getParent()->addedAssignmentOperator(Context, Method);
5781 }
5782
Douglas Gregor43c7bad2008-11-17 16:14:12 +00005783 return false;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005784}
Chris Lattner5a003a42008-12-17 07:09:26 +00005785
Sean Hunta6c058d2010-01-13 09:01:02 +00005786/// CheckLiteralOperatorDeclaration - Check whether the declaration
5787/// of this literal operator function is well-formed. If so, returns
5788/// false; otherwise, emits appropriate diagnostics and returns true.
5789bool Sema::CheckLiteralOperatorDeclaration(FunctionDecl *FnDecl) {
5790 DeclContext *DC = FnDecl->getDeclContext();
5791 Decl::Kind Kind = DC->getDeclKind();
5792 if (Kind != Decl::TranslationUnit && Kind != Decl::Namespace &&
5793 Kind != Decl::LinkageSpec) {
5794 Diag(FnDecl->getLocation(), diag::err_literal_operator_outside_namespace)
5795 << FnDecl->getDeclName();
5796 return true;
5797 }
5798
5799 bool Valid = false;
5800
Sean Hunt216c2782010-04-07 23:11:06 +00005801 // template <char...> type operator "" name() is the only valid template
5802 // signature, and the only valid signature with no parameters.
5803 if (FnDecl->param_size() == 0) {
5804 if (FunctionTemplateDecl *TpDecl = FnDecl->getDescribedFunctionTemplate()) {
5805 // Must have only one template parameter
5806 TemplateParameterList *Params = TpDecl->getTemplateParameters();
5807 if (Params->size() == 1) {
5808 NonTypeTemplateParmDecl *PmDecl =
5809 cast<NonTypeTemplateParmDecl>(Params->getParam(0));
Sean Hunta6c058d2010-01-13 09:01:02 +00005810
Sean Hunt216c2782010-04-07 23:11:06 +00005811 // The template parameter must be a char parameter pack.
5812 // FIXME: This test will always fail because non-type parameter packs
5813 // have not been implemented.
5814 if (PmDecl && PmDecl->isTemplateParameterPack() &&
5815 Context.hasSameType(PmDecl->getType(), Context.CharTy))
5816 Valid = true;
5817 }
5818 }
5819 } else {
Sean Hunta6c058d2010-01-13 09:01:02 +00005820 // Check the first parameter
Sean Hunt216c2782010-04-07 23:11:06 +00005821 FunctionDecl::param_iterator Param = FnDecl->param_begin();
5822
Sean Hunta6c058d2010-01-13 09:01:02 +00005823 QualType T = (*Param)->getType();
5824
Sean Hunt30019c02010-04-07 22:57:35 +00005825 // unsigned long long int, long double, and any character type are allowed
5826 // as the only parameters.
Sean Hunta6c058d2010-01-13 09:01:02 +00005827 if (Context.hasSameType(T, Context.UnsignedLongLongTy) ||
5828 Context.hasSameType(T, Context.LongDoubleTy) ||
5829 Context.hasSameType(T, Context.CharTy) ||
5830 Context.hasSameType(T, Context.WCharTy) ||
5831 Context.hasSameType(T, Context.Char16Ty) ||
5832 Context.hasSameType(T, Context.Char32Ty)) {
5833 if (++Param == FnDecl->param_end())
5834 Valid = true;
5835 goto FinishedParams;
5836 }
5837
Sean Hunt30019c02010-04-07 22:57:35 +00005838 // Otherwise it must be a pointer to const; let's strip those qualifiers.
Sean Hunta6c058d2010-01-13 09:01:02 +00005839 const PointerType *PT = T->getAs<PointerType>();
5840 if (!PT)
5841 goto FinishedParams;
5842 T = PT->getPointeeType();
5843 if (!T.isConstQualified())
5844 goto FinishedParams;
5845 T = T.getUnqualifiedType();
5846
5847 // Move on to the second parameter;
5848 ++Param;
5849
5850 // If there is no second parameter, the first must be a const char *
5851 if (Param == FnDecl->param_end()) {
5852 if (Context.hasSameType(T, Context.CharTy))
5853 Valid = true;
5854 goto FinishedParams;
5855 }
5856
5857 // const char *, const wchar_t*, const char16_t*, and const char32_t*
5858 // are allowed as the first parameter to a two-parameter function
5859 if (!(Context.hasSameType(T, Context.CharTy) ||
5860 Context.hasSameType(T, Context.WCharTy) ||
5861 Context.hasSameType(T, Context.Char16Ty) ||
5862 Context.hasSameType(T, Context.Char32Ty)))
5863 goto FinishedParams;
5864
5865 // The second and final parameter must be an std::size_t
5866 T = (*Param)->getType().getUnqualifiedType();
5867 if (Context.hasSameType(T, Context.getSizeType()) &&
5868 ++Param == FnDecl->param_end())
5869 Valid = true;
5870 }
5871
5872 // FIXME: This diagnostic is absolutely terrible.
5873FinishedParams:
5874 if (!Valid) {
5875 Diag(FnDecl->getLocation(), diag::err_literal_operator_params)
5876 << FnDecl->getDeclName();
5877 return true;
5878 }
5879
5880 return false;
5881}
5882
Douglas Gregor074149e2009-01-05 19:45:36 +00005883/// ActOnStartLinkageSpecification - Parsed the beginning of a C++
5884/// linkage specification, including the language and (if present)
5885/// the '{'. ExternLoc is the location of the 'extern', LangLoc is
5886/// the location of the language string literal, which is provided
5887/// by Lang/StrSize. LBraceLoc, if valid, provides the location of
5888/// the '{' brace. Otherwise, this linkage specification does not
5889/// have any braces.
Chris Lattnerb28317a2009-03-28 19:18:32 +00005890Sema::DeclPtrTy Sema::ActOnStartLinkageSpecification(Scope *S,
5891 SourceLocation ExternLoc,
5892 SourceLocation LangLoc,
Benjamin Kramerd5663812010-05-03 13:08:54 +00005893 llvm::StringRef Lang,
Chris Lattnerb28317a2009-03-28 19:18:32 +00005894 SourceLocation LBraceLoc) {
Chris Lattnercc98eac2008-12-17 07:13:27 +00005895 LinkageSpecDecl::LanguageIDs Language;
Benjamin Kramerd5663812010-05-03 13:08:54 +00005896 if (Lang == "\"C\"")
Chris Lattnercc98eac2008-12-17 07:13:27 +00005897 Language = LinkageSpecDecl::lang_c;
Benjamin Kramerd5663812010-05-03 13:08:54 +00005898 else if (Lang == "\"C++\"")
Chris Lattnercc98eac2008-12-17 07:13:27 +00005899 Language = LinkageSpecDecl::lang_cxx;
5900 else {
Douglas Gregor074149e2009-01-05 19:45:36 +00005901 Diag(LangLoc, diag::err_bad_language);
Chris Lattnerb28317a2009-03-28 19:18:32 +00005902 return DeclPtrTy();
Chris Lattnercc98eac2008-12-17 07:13:27 +00005903 }
Mike Stump1eb44332009-09-09 15:08:12 +00005904
Chris Lattnercc98eac2008-12-17 07:13:27 +00005905 // FIXME: Add all the various semantics of linkage specifications
Mike Stump1eb44332009-09-09 15:08:12 +00005906
Douglas Gregor074149e2009-01-05 19:45:36 +00005907 LinkageSpecDecl *D = LinkageSpecDecl::Create(Context, CurContext,
Mike Stump1eb44332009-09-09 15:08:12 +00005908 LangLoc, Language,
Douglas Gregor074149e2009-01-05 19:45:36 +00005909 LBraceLoc.isValid());
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00005910 CurContext->addDecl(D);
Douglas Gregor074149e2009-01-05 19:45:36 +00005911 PushDeclContext(S, D);
Chris Lattnerb28317a2009-03-28 19:18:32 +00005912 return DeclPtrTy::make(D);
Chris Lattnercc98eac2008-12-17 07:13:27 +00005913}
5914
Abramo Bagnara35f9a192010-07-30 16:47:02 +00005915/// ActOnFinishLinkageSpecification - Complete the definition of
Douglas Gregor074149e2009-01-05 19:45:36 +00005916/// the C++ linkage specification LinkageSpec. If RBraceLoc is
5917/// valid, it's the position of the closing '}' brace in a linkage
5918/// specification that uses braces.
Chris Lattnerb28317a2009-03-28 19:18:32 +00005919Sema::DeclPtrTy Sema::ActOnFinishLinkageSpecification(Scope *S,
5920 DeclPtrTy LinkageSpec,
5921 SourceLocation RBraceLoc) {
Douglas Gregor074149e2009-01-05 19:45:36 +00005922 if (LinkageSpec)
5923 PopDeclContext();
5924 return LinkageSpec;
Chris Lattner5a003a42008-12-17 07:09:26 +00005925}
5926
Douglas Gregord308e622009-05-18 20:51:54 +00005927/// \brief Perform semantic analysis for the variable declaration that
5928/// occurs within a C++ catch clause, returning the newly-created
5929/// variable.
5930VarDecl *Sema::BuildExceptionDeclaration(Scope *S, QualType ExDeclType,
John McCalla93c9342009-12-07 02:54:59 +00005931 TypeSourceInfo *TInfo,
Douglas Gregord308e622009-05-18 20:51:54 +00005932 IdentifierInfo *Name,
5933 SourceLocation Loc,
5934 SourceRange Range) {
5935 bool Invalid = false;
Sebastian Redl4b07b292008-12-22 19:15:10 +00005936
5937 // Arrays and functions decay.
5938 if (ExDeclType->isArrayType())
5939 ExDeclType = Context.getArrayDecayedType(ExDeclType);
5940 else if (ExDeclType->isFunctionType())
5941 ExDeclType = Context.getPointerType(ExDeclType);
5942
5943 // C++ 15.3p1: The exception-declaration shall not denote an incomplete type.
5944 // The exception-declaration shall not denote a pointer or reference to an
5945 // incomplete type, other than [cv] void*.
Sebastian Redlf2e21e52009-03-22 23:49:27 +00005946 // N2844 forbids rvalue references.
Mike Stump1eb44332009-09-09 15:08:12 +00005947 if (!ExDeclType->isDependentType() && ExDeclType->isRValueReferenceType()) {
Douglas Gregord308e622009-05-18 20:51:54 +00005948 Diag(Loc, diag::err_catch_rvalue_ref) << Range;
Sebastian Redlf2e21e52009-03-22 23:49:27 +00005949 Invalid = true;
5950 }
Douglas Gregord308e622009-05-18 20:51:54 +00005951
Douglas Gregora2762912010-03-08 01:47:36 +00005952 // GCC allows catching pointers and references to incomplete types
5953 // as an extension; so do we, but we warn by default.
5954
Sebastian Redl4b07b292008-12-22 19:15:10 +00005955 QualType BaseType = ExDeclType;
5956 int Mode = 0; // 0 for direct type, 1 for pointer, 2 for reference
Douglas Gregor4ec339f2009-01-19 19:26:10 +00005957 unsigned DK = diag::err_catch_incomplete;
Douglas Gregora2762912010-03-08 01:47:36 +00005958 bool IncompleteCatchIsInvalid = true;
Ted Kremenek6217b802009-07-29 21:53:49 +00005959 if (const PointerType *Ptr = BaseType->getAs<PointerType>()) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00005960 BaseType = Ptr->getPointeeType();
5961 Mode = 1;
Douglas Gregora2762912010-03-08 01:47:36 +00005962 DK = diag::ext_catch_incomplete_ptr;
5963 IncompleteCatchIsInvalid = false;
Mike Stump1eb44332009-09-09 15:08:12 +00005964 } else if (const ReferenceType *Ref = BaseType->getAs<ReferenceType>()) {
Sebastian Redlf2e21e52009-03-22 23:49:27 +00005965 // For the purpose of error recovery, we treat rvalue refs like lvalue refs.
Sebastian Redl4b07b292008-12-22 19:15:10 +00005966 BaseType = Ref->getPointeeType();
5967 Mode = 2;
Douglas Gregora2762912010-03-08 01:47:36 +00005968 DK = diag::ext_catch_incomplete_ref;
5969 IncompleteCatchIsInvalid = false;
Sebastian Redl4b07b292008-12-22 19:15:10 +00005970 }
Sebastian Redlf2e21e52009-03-22 23:49:27 +00005971 if (!Invalid && (Mode == 0 || !BaseType->isVoidType()) &&
Douglas Gregora2762912010-03-08 01:47:36 +00005972 !BaseType->isDependentType() && RequireCompleteType(Loc, BaseType, DK) &&
5973 IncompleteCatchIsInvalid)
Sebastian Redl4b07b292008-12-22 19:15:10 +00005974 Invalid = true;
Sebastian Redl4b07b292008-12-22 19:15:10 +00005975
Mike Stump1eb44332009-09-09 15:08:12 +00005976 if (!Invalid && !ExDeclType->isDependentType() &&
Douglas Gregord308e622009-05-18 20:51:54 +00005977 RequireNonAbstractType(Loc, ExDeclType,
5978 diag::err_abstract_type_in_decl,
5979 AbstractVariableType))
Sebastian Redlfef9f592009-04-27 21:03:30 +00005980 Invalid = true;
5981
John McCall5a180392010-07-24 00:37:23 +00005982 // Only the non-fragile NeXT runtime currently supports C++ catches
5983 // of ObjC types, and no runtime supports catching ObjC types by value.
5984 if (!Invalid && getLangOptions().ObjC1) {
5985 QualType T = ExDeclType;
5986 if (const ReferenceType *RT = T->getAs<ReferenceType>())
5987 T = RT->getPointeeType();
5988
5989 if (T->isObjCObjectType()) {
5990 Diag(Loc, diag::err_objc_object_catch);
5991 Invalid = true;
5992 } else if (T->isObjCObjectPointerType()) {
5993 if (!getLangOptions().NeXTRuntime) {
5994 Diag(Loc, diag::err_objc_pointer_cxx_catch_gnu);
5995 Invalid = true;
5996 } else if (!getLangOptions().ObjCNonFragileABI) {
5997 Diag(Loc, diag::err_objc_pointer_cxx_catch_fragile);
5998 Invalid = true;
5999 }
6000 }
6001 }
6002
Mike Stump1eb44332009-09-09 15:08:12 +00006003 VarDecl *ExDecl = VarDecl::Create(Context, CurContext, Loc,
Douglas Gregor16573fa2010-04-19 22:54:31 +00006004 Name, ExDeclType, TInfo, VarDecl::None,
6005 VarDecl::None);
Douglas Gregor324b54d2010-05-03 18:51:14 +00006006 ExDecl->setExceptionVariable(true);
6007
Douglas Gregor6d182892010-03-05 23:38:39 +00006008 if (!Invalid) {
6009 if (const RecordType *RecordTy = ExDeclType->getAs<RecordType>()) {
6010 // C++ [except.handle]p16:
6011 // The object declared in an exception-declaration or, if the
6012 // exception-declaration does not specify a name, a temporary (12.2) is
6013 // copy-initialized (8.5) from the exception object. [...]
6014 // The object is destroyed when the handler exits, after the destruction
6015 // of any automatic objects initialized within the handler.
6016 //
6017 // We just pretend to initialize the object with itself, then make sure
6018 // it can be destroyed later.
6019 InitializedEntity Entity = InitializedEntity::InitializeVariable(ExDecl);
6020 Expr *ExDeclRef = DeclRefExpr::Create(Context, 0, SourceRange(), ExDecl,
6021 Loc, ExDeclType, 0);
6022 InitializationKind Kind = InitializationKind::CreateCopy(Loc,
6023 SourceLocation());
6024 InitializationSequence InitSeq(*this, Entity, Kind, &ExDeclRef, 1);
6025 OwningExprResult Result = InitSeq.Perform(*this, Entity, Kind,
6026 MultiExprArg(*this, (void**)&ExDeclRef, 1));
6027 if (Result.isInvalid())
6028 Invalid = true;
6029 else
6030 FinalizeVarWithDestructor(ExDecl, RecordTy);
6031 }
6032 }
6033
Douglas Gregord308e622009-05-18 20:51:54 +00006034 if (Invalid)
6035 ExDecl->setInvalidDecl();
6036
6037 return ExDecl;
6038}
6039
6040/// ActOnExceptionDeclarator - Parsed the exception-declarator in a C++ catch
6041/// handler.
6042Sema::DeclPtrTy Sema::ActOnExceptionDeclarator(Scope *S, Declarator &D) {
John McCallbf1a0282010-06-04 23:28:52 +00006043 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
6044 QualType ExDeclType = TInfo->getType();
Douglas Gregord308e622009-05-18 20:51:54 +00006045
6046 bool Invalid = D.isInvalidType();
Sebastian Redl4b07b292008-12-22 19:15:10 +00006047 IdentifierInfo *II = D.getIdentifier();
Douglas Gregorc83c6872010-04-15 22:33:43 +00006048 if (NamedDecl *PrevDecl = LookupSingleName(S, II, D.getIdentifierLoc(),
Douglas Gregorc0b39642010-04-15 23:40:53 +00006049 LookupOrdinaryName,
6050 ForRedeclaration)) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00006051 // The scope should be freshly made just for us. There is just no way
6052 // it contains any previous declaration.
Chris Lattnerb28317a2009-03-28 19:18:32 +00006053 assert(!S->isDeclScope(DeclPtrTy::make(PrevDecl)));
Sebastian Redl4b07b292008-12-22 19:15:10 +00006054 if (PrevDecl->isTemplateParameter()) {
6055 // Maybe we will complain about the shadowed template parameter.
6056 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
Sebastian Redl4b07b292008-12-22 19:15:10 +00006057 }
6058 }
6059
Chris Lattnereaaebc72009-04-25 08:06:05 +00006060 if (D.getCXXScopeSpec().isSet() && !Invalid) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00006061 Diag(D.getIdentifierLoc(), diag::err_qualified_catch_declarator)
6062 << D.getCXXScopeSpec().getRange();
Chris Lattnereaaebc72009-04-25 08:06:05 +00006063 Invalid = true;
Sebastian Redl4b07b292008-12-22 19:15:10 +00006064 }
6065
John McCalla93c9342009-12-07 02:54:59 +00006066 VarDecl *ExDecl = BuildExceptionDeclaration(S, ExDeclType, TInfo,
Douglas Gregord308e622009-05-18 20:51:54 +00006067 D.getIdentifier(),
6068 D.getIdentifierLoc(),
6069 D.getDeclSpec().getSourceRange());
6070
Chris Lattnereaaebc72009-04-25 08:06:05 +00006071 if (Invalid)
6072 ExDecl->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00006073
Sebastian Redl4b07b292008-12-22 19:15:10 +00006074 // Add the exception declaration into this scope.
Sebastian Redl4b07b292008-12-22 19:15:10 +00006075 if (II)
Douglas Gregord308e622009-05-18 20:51:54 +00006076 PushOnScopeChains(ExDecl, S);
6077 else
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00006078 CurContext->addDecl(ExDecl);
Sebastian Redl4b07b292008-12-22 19:15:10 +00006079
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00006080 ProcessDeclAttributes(S, ExDecl, D);
Chris Lattnerb28317a2009-03-28 19:18:32 +00006081 return DeclPtrTy::make(ExDecl);
Sebastian Redl4b07b292008-12-22 19:15:10 +00006082}
Anders Carlssonfb311762009-03-14 00:25:26 +00006083
Mike Stump1eb44332009-09-09 15:08:12 +00006084Sema::DeclPtrTy Sema::ActOnStaticAssertDeclaration(SourceLocation AssertLoc,
Chris Lattnerb28317a2009-03-28 19:18:32 +00006085 ExprArg assertexpr,
6086 ExprArg assertmessageexpr) {
Anders Carlssonfb311762009-03-14 00:25:26 +00006087 Expr *AssertExpr = (Expr *)assertexpr.get();
Mike Stump1eb44332009-09-09 15:08:12 +00006088 StringLiteral *AssertMessage =
Anders Carlssonfb311762009-03-14 00:25:26 +00006089 cast<StringLiteral>((Expr *)assertmessageexpr.get());
6090
Anders Carlssonc3082412009-03-14 00:33:21 +00006091 if (!AssertExpr->isTypeDependent() && !AssertExpr->isValueDependent()) {
6092 llvm::APSInt Value(32);
6093 if (!AssertExpr->isIntegerConstantExpr(Value, Context)) {
6094 Diag(AssertLoc, diag::err_static_assert_expression_is_not_constant) <<
6095 AssertExpr->getSourceRange();
Chris Lattnerb28317a2009-03-28 19:18:32 +00006096 return DeclPtrTy();
Anders Carlssonc3082412009-03-14 00:33:21 +00006097 }
Anders Carlssonfb311762009-03-14 00:25:26 +00006098
Anders Carlssonc3082412009-03-14 00:33:21 +00006099 if (Value == 0) {
Mike Stump1eb44332009-09-09 15:08:12 +00006100 Diag(AssertLoc, diag::err_static_assert_failed)
Benjamin Kramer8d042582009-12-11 13:33:18 +00006101 << AssertMessage->getString() << AssertExpr->getSourceRange();
Anders Carlssonc3082412009-03-14 00:33:21 +00006102 }
6103 }
Mike Stump1eb44332009-09-09 15:08:12 +00006104
Anders Carlsson77d81422009-03-15 17:35:16 +00006105 assertexpr.release();
6106 assertmessageexpr.release();
Mike Stump1eb44332009-09-09 15:08:12 +00006107 Decl *Decl = StaticAssertDecl::Create(Context, CurContext, AssertLoc,
Anders Carlssonfb311762009-03-14 00:25:26 +00006108 AssertExpr, AssertMessage);
Mike Stump1eb44332009-09-09 15:08:12 +00006109
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00006110 CurContext->addDecl(Decl);
Chris Lattnerb28317a2009-03-28 19:18:32 +00006111 return DeclPtrTy::make(Decl);
Anders Carlssonfb311762009-03-14 00:25:26 +00006112}
Sebastian Redl50de12f2009-03-24 22:27:57 +00006113
Douglas Gregor1d869352010-04-07 16:53:43 +00006114/// \brief Perform semantic analysis of the given friend type declaration.
6115///
6116/// \returns A friend declaration that.
6117FriendDecl *Sema::CheckFriendTypeDecl(SourceLocation FriendLoc,
6118 TypeSourceInfo *TSInfo) {
6119 assert(TSInfo && "NULL TypeSourceInfo for friend type declaration");
6120
6121 QualType T = TSInfo->getType();
Abramo Bagnarabd054db2010-05-20 10:00:11 +00006122 SourceRange TypeRange = TSInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor1d869352010-04-07 16:53:43 +00006123
Douglas Gregor06245bf2010-04-07 17:57:12 +00006124 if (!getLangOptions().CPlusPlus0x) {
6125 // C++03 [class.friend]p2:
6126 // An elaborated-type-specifier shall be used in a friend declaration
6127 // for a class.*
6128 //
6129 // * The class-key of the elaborated-type-specifier is required.
6130 if (!ActiveTemplateInstantiations.empty()) {
6131 // Do not complain about the form of friend template types during
6132 // template instantiation; we will already have complained when the
6133 // template was declared.
6134 } else if (!T->isElaboratedTypeSpecifier()) {
6135 // If we evaluated the type to a record type, suggest putting
6136 // a tag in front.
6137 if (const RecordType *RT = T->getAs<RecordType>()) {
6138 RecordDecl *RD = RT->getDecl();
6139
6140 std::string InsertionText = std::string(" ") + RD->getKindName();
6141
6142 Diag(TypeRange.getBegin(), diag::ext_unelaborated_friend_type)
6143 << (unsigned) RD->getTagKind()
6144 << T
6145 << FixItHint::CreateInsertion(PP.getLocForEndOfToken(FriendLoc),
6146 InsertionText);
6147 } else {
6148 Diag(FriendLoc, diag::ext_nonclass_type_friend)
6149 << T
6150 << SourceRange(FriendLoc, TypeRange.getEnd());
6151 }
6152 } else if (T->getAs<EnumType>()) {
6153 Diag(FriendLoc, diag::ext_enum_friend)
Douglas Gregor1d869352010-04-07 16:53:43 +00006154 << T
Douglas Gregor1d869352010-04-07 16:53:43 +00006155 << SourceRange(FriendLoc, TypeRange.getEnd());
Douglas Gregor1d869352010-04-07 16:53:43 +00006156 }
6157 }
6158
Douglas Gregor06245bf2010-04-07 17:57:12 +00006159 // C++0x [class.friend]p3:
6160 // If the type specifier in a friend declaration designates a (possibly
6161 // cv-qualified) class type, that class is declared as a friend; otherwise,
6162 // the friend declaration is ignored.
6163
6164 // FIXME: C++0x has some syntactic restrictions on friend type declarations
6165 // in [class.friend]p3 that we do not implement.
Douglas Gregor1d869352010-04-07 16:53:43 +00006166
6167 return FriendDecl::Create(Context, CurContext, FriendLoc, TSInfo, FriendLoc);
6168}
6169
John McCalldd4a3b02009-09-16 22:47:08 +00006170/// Handle a friend type declaration. This works in tandem with
6171/// ActOnTag.
6172///
6173/// Notes on friend class templates:
6174///
6175/// We generally treat friend class declarations as if they were
6176/// declaring a class. So, for example, the elaborated type specifier
6177/// in a friend declaration is required to obey the restrictions of a
6178/// class-head (i.e. no typedefs in the scope chain), template
6179/// parameters are required to match up with simple template-ids, &c.
6180/// However, unlike when declaring a template specialization, it's
6181/// okay to refer to a template specialization without an empty
6182/// template parameter declaration, e.g.
6183/// friend class A<T>::B<unsigned>;
6184/// We permit this as a special case; if there are any template
6185/// parameters present at all, require proper matching, i.e.
6186/// template <> template <class T> friend class A<int>::B;
Chris Lattnerc7f19042009-10-25 17:47:27 +00006187Sema::DeclPtrTy Sema::ActOnFriendTypeDecl(Scope *S, const DeclSpec &DS,
John McCalldd4a3b02009-09-16 22:47:08 +00006188 MultiTemplateParamsArg TempParams) {
John McCall02cace72009-08-28 07:59:38 +00006189 SourceLocation Loc = DS.getSourceRange().getBegin();
John McCall67d1a672009-08-06 02:15:43 +00006190
6191 assert(DS.isFriendSpecified());
6192 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
6193
John McCalldd4a3b02009-09-16 22:47:08 +00006194 // Try to convert the decl specifier to a type. This works for
6195 // friend templates because ActOnTag never produces a ClassTemplateDecl
6196 // for a TUK_Friend.
Chris Lattnerc7f19042009-10-25 17:47:27 +00006197 Declarator TheDeclarator(DS, Declarator::MemberContext);
John McCallbf1a0282010-06-04 23:28:52 +00006198 TypeSourceInfo *TSI = GetTypeForDeclarator(TheDeclarator, S);
6199 QualType T = TSI->getType();
Chris Lattnerc7f19042009-10-25 17:47:27 +00006200 if (TheDeclarator.isInvalidType())
6201 return DeclPtrTy();
John McCall67d1a672009-08-06 02:15:43 +00006202
John McCalldd4a3b02009-09-16 22:47:08 +00006203 // This is definitely an error in C++98. It's probably meant to
6204 // be forbidden in C++0x, too, but the specification is just
6205 // poorly written.
6206 //
6207 // The problem is with declarations like the following:
6208 // template <T> friend A<T>::foo;
6209 // where deciding whether a class C is a friend or not now hinges
6210 // on whether there exists an instantiation of A that causes
6211 // 'foo' to equal C. There are restrictions on class-heads
6212 // (which we declare (by fiat) elaborated friend declarations to
6213 // be) that makes this tractable.
6214 //
6215 // FIXME: handle "template <> friend class A<T>;", which
6216 // is possibly well-formed? Who even knows?
Douglas Gregor40336422010-03-31 22:19:08 +00006217 if (TempParams.size() && !T->isElaboratedTypeSpecifier()) {
John McCalldd4a3b02009-09-16 22:47:08 +00006218 Diag(Loc, diag::err_tagless_friend_type_template)
6219 << DS.getSourceRange();
6220 return DeclPtrTy();
6221 }
Douglas Gregor1d869352010-04-07 16:53:43 +00006222
John McCall02cace72009-08-28 07:59:38 +00006223 // C++98 [class.friend]p1: A friend of a class is a function
6224 // or class that is not a member of the class . . .
John McCalla236a552009-12-22 00:59:39 +00006225 // This is fixed in DR77, which just barely didn't make the C++03
6226 // deadline. It's also a very silly restriction that seriously
6227 // affects inner classes and which nobody else seems to implement;
6228 // thus we never diagnose it, not even in -pedantic.
John McCall32f2fb52010-03-25 18:04:51 +00006229 //
6230 // But note that we could warn about it: it's always useless to
6231 // friend one of your own members (it's not, however, worthless to
6232 // friend a member of an arbitrary specialization of your template).
John McCall02cace72009-08-28 07:59:38 +00006233
John McCalldd4a3b02009-09-16 22:47:08 +00006234 Decl *D;
Douglas Gregor1d869352010-04-07 16:53:43 +00006235 if (unsigned NumTempParamLists = TempParams.size())
John McCalldd4a3b02009-09-16 22:47:08 +00006236 D = FriendTemplateDecl::Create(Context, CurContext, Loc,
Douglas Gregor1d869352010-04-07 16:53:43 +00006237 NumTempParamLists,
John McCalldd4a3b02009-09-16 22:47:08 +00006238 (TemplateParameterList**) TempParams.release(),
John McCall32f2fb52010-03-25 18:04:51 +00006239 TSI,
John McCalldd4a3b02009-09-16 22:47:08 +00006240 DS.getFriendSpecLoc());
6241 else
Douglas Gregor1d869352010-04-07 16:53:43 +00006242 D = CheckFriendTypeDecl(DS.getFriendSpecLoc(), TSI);
6243
6244 if (!D)
6245 return DeclPtrTy();
6246
John McCalldd4a3b02009-09-16 22:47:08 +00006247 D->setAccess(AS_public);
6248 CurContext->addDecl(D);
John McCall02cace72009-08-28 07:59:38 +00006249
John McCalldd4a3b02009-09-16 22:47:08 +00006250 return DeclPtrTy::make(D);
John McCall02cace72009-08-28 07:59:38 +00006251}
6252
John McCallbbbcdd92009-09-11 21:02:39 +00006253Sema::DeclPtrTy
6254Sema::ActOnFriendFunctionDecl(Scope *S,
6255 Declarator &D,
6256 bool IsDefinition,
6257 MultiTemplateParamsArg TemplateParams) {
John McCall02cace72009-08-28 07:59:38 +00006258 const DeclSpec &DS = D.getDeclSpec();
6259
6260 assert(DS.isFriendSpecified());
6261 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
6262
6263 SourceLocation Loc = D.getIdentifierLoc();
John McCallbf1a0282010-06-04 23:28:52 +00006264 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
6265 QualType T = TInfo->getType();
John McCall67d1a672009-08-06 02:15:43 +00006266
6267 // C++ [class.friend]p1
6268 // A friend of a class is a function or class....
6269 // Note that this sees through typedefs, which is intended.
John McCall02cace72009-08-28 07:59:38 +00006270 // It *doesn't* see through dependent types, which is correct
6271 // according to [temp.arg.type]p3:
6272 // If a declaration acquires a function type through a
6273 // type dependent on a template-parameter and this causes
6274 // a declaration that does not use the syntactic form of a
6275 // function declarator to have a function type, the program
6276 // is ill-formed.
John McCall67d1a672009-08-06 02:15:43 +00006277 if (!T->isFunctionType()) {
6278 Diag(Loc, diag::err_unexpected_friend);
6279
6280 // It might be worthwhile to try to recover by creating an
6281 // appropriate declaration.
6282 return DeclPtrTy();
6283 }
6284
6285 // C++ [namespace.memdef]p3
6286 // - If a friend declaration in a non-local class first declares a
6287 // class or function, the friend class or function is a member
6288 // of the innermost enclosing namespace.
6289 // - The name of the friend is not found by simple name lookup
6290 // until a matching declaration is provided in that namespace
6291 // scope (either before or after the class declaration granting
6292 // friendship).
6293 // - If a friend function is called, its name may be found by the
6294 // name lookup that considers functions from namespaces and
6295 // classes associated with the types of the function arguments.
6296 // - When looking for a prior declaration of a class or a function
6297 // declared as a friend, scopes outside the innermost enclosing
6298 // namespace scope are not considered.
6299
John McCall02cace72009-08-28 07:59:38 +00006300 CXXScopeSpec &ScopeQual = D.getCXXScopeSpec();
6301 DeclarationName Name = GetNameForDeclarator(D);
John McCall67d1a672009-08-06 02:15:43 +00006302 assert(Name);
6303
John McCall67d1a672009-08-06 02:15:43 +00006304 // The context we found the declaration in, or in which we should
6305 // create the declaration.
6306 DeclContext *DC;
6307
6308 // FIXME: handle local classes
6309
6310 // Recover from invalid scope qualifiers as if they just weren't there.
John McCall68263142009-11-18 22:49:29 +00006311 LookupResult Previous(*this, Name, D.getIdentifierLoc(), LookupOrdinaryName,
6312 ForRedeclaration);
John McCall67d1a672009-08-06 02:15:43 +00006313 if (!ScopeQual.isInvalid() && ScopeQual.isSet()) {
6314 DC = computeDeclContext(ScopeQual);
6315
6316 // FIXME: handle dependent contexts
6317 if (!DC) return DeclPtrTy();
John McCall77bb1aa2010-05-01 00:40:08 +00006318 if (RequireCompleteDeclContext(ScopeQual, DC)) return DeclPtrTy();
John McCall67d1a672009-08-06 02:15:43 +00006319
John McCall68263142009-11-18 22:49:29 +00006320 LookupQualifiedName(Previous, DC);
John McCall67d1a672009-08-06 02:15:43 +00006321
John McCall9da9cdf2010-05-28 01:41:47 +00006322 // Ignore things found implicitly in the wrong scope.
John McCall67d1a672009-08-06 02:15:43 +00006323 // TODO: better diagnostics for this case. Suggesting the right
6324 // qualified scope would be nice...
John McCall9da9cdf2010-05-28 01:41:47 +00006325 LookupResult::Filter F = Previous.makeFilter();
6326 while (F.hasNext()) {
6327 NamedDecl *D = F.next();
6328 if (!D->getDeclContext()->getLookupContext()->Equals(DC))
6329 F.erase();
6330 }
6331 F.done();
6332
6333 if (Previous.empty()) {
John McCall02cace72009-08-28 07:59:38 +00006334 D.setInvalidType();
John McCall67d1a672009-08-06 02:15:43 +00006335 Diag(Loc, diag::err_qualified_friend_not_found) << Name << T;
6336 return DeclPtrTy();
6337 }
6338
6339 // C++ [class.friend]p1: A friend of a class is a function or
6340 // class that is not a member of the class . . .
Douglas Gregor182ddf02009-09-28 00:08:27 +00006341 if (DC->Equals(CurContext))
John McCall67d1a672009-08-06 02:15:43 +00006342 Diag(DS.getFriendSpecLoc(), diag::err_friend_is_member);
6343
John McCall67d1a672009-08-06 02:15:43 +00006344 // Otherwise walk out to the nearest namespace scope looking for matches.
6345 } else {
6346 // TODO: handle local class contexts.
6347
6348 DC = CurContext;
6349 while (true) {
6350 // Skip class contexts. If someone can cite chapter and verse
6351 // for this behavior, that would be nice --- it's what GCC and
6352 // EDG do, and it seems like a reasonable intent, but the spec
6353 // really only says that checks for unqualified existing
6354 // declarations should stop at the nearest enclosing namespace,
6355 // not that they should only consider the nearest enclosing
6356 // namespace.
Douglas Gregor182ddf02009-09-28 00:08:27 +00006357 while (DC->isRecord())
6358 DC = DC->getParent();
John McCall67d1a672009-08-06 02:15:43 +00006359
John McCall68263142009-11-18 22:49:29 +00006360 LookupQualifiedName(Previous, DC);
John McCall67d1a672009-08-06 02:15:43 +00006361
6362 // TODO: decide what we think about using declarations.
John McCall68263142009-11-18 22:49:29 +00006363 if (!Previous.empty())
John McCall67d1a672009-08-06 02:15:43 +00006364 break;
Douglas Gregor182ddf02009-09-28 00:08:27 +00006365
John McCall67d1a672009-08-06 02:15:43 +00006366 if (DC->isFileContext()) break;
6367 DC = DC->getParent();
6368 }
6369
6370 // C++ [class.friend]p1: A friend of a class is a function or
6371 // class that is not a member of the class . . .
John McCall7f27d922009-08-06 20:49:32 +00006372 // C++0x changes this for both friend types and functions.
6373 // Most C++ 98 compilers do seem to give an error here, so
6374 // we do, too.
John McCall68263142009-11-18 22:49:29 +00006375 if (!Previous.empty() && DC->Equals(CurContext)
6376 && !getLangOptions().CPlusPlus0x)
John McCall67d1a672009-08-06 02:15:43 +00006377 Diag(DS.getFriendSpecLoc(), diag::err_friend_is_member);
6378 }
6379
Douglas Gregor182ddf02009-09-28 00:08:27 +00006380 if (DC->isFileContext()) {
John McCall67d1a672009-08-06 02:15:43 +00006381 // This implies that it has to be an operator or function.
Douglas Gregor3f9a0562009-11-03 01:35:08 +00006382 if (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ||
6383 D.getName().getKind() == UnqualifiedId::IK_DestructorName ||
6384 D.getName().getKind() == UnqualifiedId::IK_ConversionFunctionId) {
John McCall67d1a672009-08-06 02:15:43 +00006385 Diag(Loc, diag::err_introducing_special_friend) <<
Douglas Gregor3f9a0562009-11-03 01:35:08 +00006386 (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ? 0 :
6387 D.getName().getKind() == UnqualifiedId::IK_DestructorName ? 1 : 2);
John McCall67d1a672009-08-06 02:15:43 +00006388 return DeclPtrTy();
6389 }
John McCall67d1a672009-08-06 02:15:43 +00006390 }
6391
Douglas Gregor182ddf02009-09-28 00:08:27 +00006392 bool Redeclaration = false;
John McCalla93c9342009-12-07 02:54:59 +00006393 NamedDecl *ND = ActOnFunctionDeclarator(S, D, DC, T, TInfo, Previous,
Douglas Gregora735b202009-10-13 14:39:41 +00006394 move(TemplateParams),
John McCall3f9a8a62009-08-11 06:59:38 +00006395 IsDefinition,
6396 Redeclaration);
John McCall02cace72009-08-28 07:59:38 +00006397 if (!ND) return DeclPtrTy();
John McCallab88d972009-08-31 22:39:49 +00006398
Douglas Gregor182ddf02009-09-28 00:08:27 +00006399 assert(ND->getDeclContext() == DC);
6400 assert(ND->getLexicalDeclContext() == CurContext);
John McCall88232aa2009-08-18 00:00:49 +00006401
John McCallab88d972009-08-31 22:39:49 +00006402 // Add the function declaration to the appropriate lookup tables,
6403 // adjusting the redeclarations list as necessary. We don't
6404 // want to do this yet if the friending class is dependent.
Mike Stump1eb44332009-09-09 15:08:12 +00006405 //
John McCallab88d972009-08-31 22:39:49 +00006406 // Also update the scope-based lookup if the target context's
6407 // lookup context is in lexical scope.
6408 if (!CurContext->isDependentContext()) {
6409 DC = DC->getLookupContext();
Douglas Gregor182ddf02009-09-28 00:08:27 +00006410 DC->makeDeclVisibleInContext(ND, /* Recoverable=*/ false);
John McCallab88d972009-08-31 22:39:49 +00006411 if (Scope *EnclosingScope = getScopeForDeclContext(S, DC))
Douglas Gregor182ddf02009-09-28 00:08:27 +00006412 PushOnScopeChains(ND, EnclosingScope, /*AddToContext=*/ false);
John McCallab88d972009-08-31 22:39:49 +00006413 }
John McCall02cace72009-08-28 07:59:38 +00006414
6415 FriendDecl *FrD = FriendDecl::Create(Context, CurContext,
Douglas Gregor182ddf02009-09-28 00:08:27 +00006416 D.getIdentifierLoc(), ND,
John McCall02cace72009-08-28 07:59:38 +00006417 DS.getFriendSpecLoc());
John McCall5fee1102009-08-29 03:50:18 +00006418 FrD->setAccess(AS_public);
John McCall02cace72009-08-28 07:59:38 +00006419 CurContext->addDecl(FrD);
John McCall67d1a672009-08-06 02:15:43 +00006420
Douglas Gregor182ddf02009-09-28 00:08:27 +00006421 return DeclPtrTy::make(ND);
Anders Carlsson00338362009-05-11 22:55:49 +00006422}
6423
Chris Lattnerb28317a2009-03-28 19:18:32 +00006424void Sema::SetDeclDeleted(DeclPtrTy dcl, SourceLocation DelLoc) {
Douglas Gregorefd5bda2009-08-24 11:57:43 +00006425 AdjustDeclIfTemplate(dcl);
Mike Stump1eb44332009-09-09 15:08:12 +00006426
Chris Lattnerb28317a2009-03-28 19:18:32 +00006427 Decl *Dcl = dcl.getAs<Decl>();
Sebastian Redl50de12f2009-03-24 22:27:57 +00006428 FunctionDecl *Fn = dyn_cast<FunctionDecl>(Dcl);
6429 if (!Fn) {
6430 Diag(DelLoc, diag::err_deleted_non_function);
6431 return;
6432 }
6433 if (const FunctionDecl *Prev = Fn->getPreviousDeclaration()) {
6434 Diag(DelLoc, diag::err_deleted_decl_not_first);
6435 Diag(Prev->getLocation(), diag::note_previous_declaration);
6436 // If the declaration wasn't the first, we delete the function anyway for
6437 // recovery.
6438 }
6439 Fn->setDeleted();
6440}
Sebastian Redl13e88542009-04-27 21:33:24 +00006441
6442static void SearchForReturnInStmt(Sema &Self, Stmt *S) {
6443 for (Stmt::child_iterator CI = S->child_begin(), E = S->child_end(); CI != E;
6444 ++CI) {
6445 Stmt *SubStmt = *CI;
6446 if (!SubStmt)
6447 continue;
6448 if (isa<ReturnStmt>(SubStmt))
6449 Self.Diag(SubStmt->getSourceRange().getBegin(),
6450 diag::err_return_in_constructor_handler);
6451 if (!isa<Expr>(SubStmt))
6452 SearchForReturnInStmt(Self, SubStmt);
6453 }
6454}
6455
6456void Sema::DiagnoseReturnInConstructorExceptionHandler(CXXTryStmt *TryBlock) {
6457 for (unsigned I = 0, E = TryBlock->getNumHandlers(); I != E; ++I) {
6458 CXXCatchStmt *Handler = TryBlock->getHandler(I);
6459 SearchForReturnInStmt(*this, Handler);
6460 }
6461}
Anders Carlssond7ba27d2009-05-14 01:09:04 +00006462
Mike Stump1eb44332009-09-09 15:08:12 +00006463bool Sema::CheckOverridingFunctionReturnType(const CXXMethodDecl *New,
Anders Carlssond7ba27d2009-05-14 01:09:04 +00006464 const CXXMethodDecl *Old) {
John McCall183700f2009-09-21 23:43:11 +00006465 QualType NewTy = New->getType()->getAs<FunctionType>()->getResultType();
6466 QualType OldTy = Old->getType()->getAs<FunctionType>()->getResultType();
Anders Carlssond7ba27d2009-05-14 01:09:04 +00006467
Chandler Carruth73857792010-02-15 11:53:20 +00006468 if (Context.hasSameType(NewTy, OldTy) ||
6469 NewTy->isDependentType() || OldTy->isDependentType())
Anders Carlssond7ba27d2009-05-14 01:09:04 +00006470 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00006471
Anders Carlssonc3a68b22009-05-14 19:52:19 +00006472 // Check if the return types are covariant
6473 QualType NewClassTy, OldClassTy;
Mike Stump1eb44332009-09-09 15:08:12 +00006474
Anders Carlssonc3a68b22009-05-14 19:52:19 +00006475 /// Both types must be pointers or references to classes.
Anders Carlssonf2a04bf2010-01-22 17:37:20 +00006476 if (const PointerType *NewPT = NewTy->getAs<PointerType>()) {
6477 if (const PointerType *OldPT = OldTy->getAs<PointerType>()) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +00006478 NewClassTy = NewPT->getPointeeType();
6479 OldClassTy = OldPT->getPointeeType();
6480 }
Anders Carlssonf2a04bf2010-01-22 17:37:20 +00006481 } else if (const ReferenceType *NewRT = NewTy->getAs<ReferenceType>()) {
6482 if (const ReferenceType *OldRT = OldTy->getAs<ReferenceType>()) {
6483 if (NewRT->getTypeClass() == OldRT->getTypeClass()) {
6484 NewClassTy = NewRT->getPointeeType();
6485 OldClassTy = OldRT->getPointeeType();
6486 }
Anders Carlssonc3a68b22009-05-14 19:52:19 +00006487 }
6488 }
Mike Stump1eb44332009-09-09 15:08:12 +00006489
Anders Carlssonc3a68b22009-05-14 19:52:19 +00006490 // The return types aren't either both pointers or references to a class type.
6491 if (NewClassTy.isNull()) {
Mike Stump1eb44332009-09-09 15:08:12 +00006492 Diag(New->getLocation(),
Anders Carlssonc3a68b22009-05-14 19:52:19 +00006493 diag::err_different_return_type_for_overriding_virtual_function)
6494 << New->getDeclName() << NewTy << OldTy;
6495 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
Mike Stump1eb44332009-09-09 15:08:12 +00006496
Anders Carlssonc3a68b22009-05-14 19:52:19 +00006497 return true;
6498 }
Anders Carlssond7ba27d2009-05-14 01:09:04 +00006499
Anders Carlssonbe2e2052009-12-31 18:34:24 +00006500 // C++ [class.virtual]p6:
6501 // If the return type of D::f differs from the return type of B::f, the
6502 // class type in the return type of D::f shall be complete at the point of
6503 // declaration of D::f or shall be the class type D.
Anders Carlssonac4c9392009-12-31 18:54:35 +00006504 if (const RecordType *RT = NewClassTy->getAs<RecordType>()) {
6505 if (!RT->isBeingDefined() &&
6506 RequireCompleteType(New->getLocation(), NewClassTy,
6507 PDiag(diag::err_covariant_return_incomplete)
6508 << New->getDeclName()))
Anders Carlssonbe2e2052009-12-31 18:34:24 +00006509 return true;
Anders Carlssonac4c9392009-12-31 18:54:35 +00006510 }
Anders Carlssonbe2e2052009-12-31 18:34:24 +00006511
Douglas Gregora4923eb2009-11-16 21:35:15 +00006512 if (!Context.hasSameUnqualifiedType(NewClassTy, OldClassTy)) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +00006513 // Check if the new class derives from the old class.
6514 if (!IsDerivedFrom(NewClassTy, OldClassTy)) {
6515 Diag(New->getLocation(),
6516 diag::err_covariant_return_not_derived)
6517 << New->getDeclName() << NewTy << OldTy;
6518 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
6519 return true;
6520 }
Mike Stump1eb44332009-09-09 15:08:12 +00006521
Anders Carlssonc3a68b22009-05-14 19:52:19 +00006522 // Check if we the conversion from derived to base is valid.
John McCall58e6f342010-03-16 05:22:47 +00006523 if (CheckDerivedToBaseConversion(NewClassTy, OldClassTy,
Anders Carlssone25a96c2010-04-24 17:11:09 +00006524 diag::err_covariant_return_inaccessible_base,
6525 diag::err_covariant_return_ambiguous_derived_to_base_conv,
6526 // FIXME: Should this point to the return type?
6527 New->getLocation(), SourceRange(), New->getDeclName(), 0)) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +00006528 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
6529 return true;
6530 }
6531 }
Mike Stump1eb44332009-09-09 15:08:12 +00006532
Anders Carlssonc3a68b22009-05-14 19:52:19 +00006533 // The qualifiers of the return types must be the same.
Anders Carlssonf2a04bf2010-01-22 17:37:20 +00006534 if (NewTy.getLocalCVRQualifiers() != OldTy.getLocalCVRQualifiers()) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +00006535 Diag(New->getLocation(),
6536 diag::err_covariant_return_type_different_qualifications)
Anders Carlssond7ba27d2009-05-14 01:09:04 +00006537 << New->getDeclName() << NewTy << OldTy;
Anders Carlssonc3a68b22009-05-14 19:52:19 +00006538 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
6539 return true;
6540 };
Mike Stump1eb44332009-09-09 15:08:12 +00006541
Anders Carlssonc3a68b22009-05-14 19:52:19 +00006542
6543 // The new class type must have the same or less qualifiers as the old type.
6544 if (NewClassTy.isMoreQualifiedThan(OldClassTy)) {
6545 Diag(New->getLocation(),
6546 diag::err_covariant_return_type_class_type_more_qualified)
6547 << New->getDeclName() << NewTy << OldTy;
6548 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
6549 return true;
6550 };
Mike Stump1eb44332009-09-09 15:08:12 +00006551
Anders Carlssonc3a68b22009-05-14 19:52:19 +00006552 return false;
Anders Carlssond7ba27d2009-05-14 01:09:04 +00006553}
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00006554
Sean Huntbbd37c62009-11-21 08:43:09 +00006555bool Sema::CheckOverridingFunctionAttributes(const CXXMethodDecl *New,
6556 const CXXMethodDecl *Old)
6557{
6558 if (Old->hasAttr<FinalAttr>()) {
6559 Diag(New->getLocation(), diag::err_final_function_overridden)
6560 << New->getDeclName();
6561 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
6562 return true;
6563 }
6564
6565 return false;
6566}
6567
Douglas Gregor4ba31362009-12-01 17:24:26 +00006568/// \brief Mark the given method pure.
6569///
6570/// \param Method the method to be marked pure.
6571///
6572/// \param InitRange the source range that covers the "0" initializer.
6573bool Sema::CheckPureMethod(CXXMethodDecl *Method, SourceRange InitRange) {
6574 if (Method->isVirtual() || Method->getParent()->isDependentContext()) {
6575 Method->setPure();
6576
6577 // A class is abstract if at least one function is pure virtual.
6578 Method->getParent()->setAbstract(true);
6579 return false;
6580 }
6581
6582 if (!Method->isInvalidDecl())
6583 Diag(Method->getLocation(), diag::err_non_virtual_pure)
6584 << Method->getDeclName() << InitRange;
6585 return true;
6586}
6587
John McCall731ad842009-12-19 09:28:58 +00006588/// ActOnCXXEnterDeclInitializer - Invoked when we are about to parse
6589/// an initializer for the out-of-line declaration 'Dcl'. The scope
6590/// is a fresh scope pushed for just this purpose.
6591///
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00006592/// After this method is called, according to [C++ 3.4.1p13], if 'Dcl' is a
6593/// static data member of class X, names should be looked up in the scope of
6594/// class X.
6595void Sema::ActOnCXXEnterDeclInitializer(Scope *S, DeclPtrTy Dcl) {
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00006596 // If there is no declaration, there was an error parsing it.
John McCall731ad842009-12-19 09:28:58 +00006597 Decl *D = Dcl.getAs<Decl>();
6598 if (D == 0) return;
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00006599
John McCall731ad842009-12-19 09:28:58 +00006600 // We should only get called for declarations with scope specifiers, like:
6601 // int foo::bar;
6602 assert(D->isOutOfLine());
John McCall7a1dc562009-12-19 10:49:29 +00006603 EnterDeclaratorContext(S, D->getDeclContext());
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00006604}
6605
6606/// ActOnCXXExitDeclInitializer - Invoked after we are finished parsing an
John McCall731ad842009-12-19 09:28:58 +00006607/// initializer for the out-of-line declaration 'Dcl'.
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00006608void Sema::ActOnCXXExitDeclInitializer(Scope *S, DeclPtrTy Dcl) {
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00006609 // If there is no declaration, there was an error parsing it.
John McCall731ad842009-12-19 09:28:58 +00006610 Decl *D = Dcl.getAs<Decl>();
6611 if (D == 0) return;
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00006612
John McCall731ad842009-12-19 09:28:58 +00006613 assert(D->isOutOfLine());
John McCall7a1dc562009-12-19 10:49:29 +00006614 ExitDeclaratorContext(S);
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00006615}
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00006616
6617/// ActOnCXXConditionDeclarationExpr - Parsed a condition declaration of a
6618/// C++ if/switch/while/for statement.
6619/// e.g: "if (int x = f()) {...}"
6620Action::DeclResult
6621Sema::ActOnCXXConditionDeclaration(Scope *S, Declarator &D) {
6622 // C++ 6.4p2:
6623 // The declarator shall not specify a function or an array.
6624 // The type-specifier-seq shall not contain typedef and shall not declare a
6625 // new class or enumeration.
6626 assert(D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef &&
6627 "Parser allowed 'typedef' as storage class of condition decl.");
6628
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00006629 TagDecl *OwnedTag = 0;
John McCallbf1a0282010-06-04 23:28:52 +00006630 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S, &OwnedTag);
6631 QualType Ty = TInfo->getType();
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00006632
6633 if (Ty->isFunctionType()) { // The declarator shall not specify a function...
6634 // We exit without creating a CXXConditionDeclExpr because a FunctionDecl
6635 // would be created and CXXConditionDeclExpr wants a VarDecl.
6636 Diag(D.getIdentifierLoc(), diag::err_invalid_use_of_function_type)
6637 << D.getSourceRange();
6638 return DeclResult();
6639 } else if (OwnedTag && OwnedTag->isDefinition()) {
6640 // The type-specifier-seq shall not declare a new class or enumeration.
6641 Diag(OwnedTag->getLocation(), diag::err_type_defined_in_condition);
6642 }
6643
6644 DeclPtrTy Dcl = ActOnDeclarator(S, D);
6645 if (!Dcl)
6646 return DeclResult();
6647
6648 VarDecl *VD = cast<VarDecl>(Dcl.getAs<Decl>());
6649 VD->setDeclaredInCondition(true);
6650 return Dcl;
6651}
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00006652
Douglas Gregor6fb745b2010-05-13 16:44:06 +00006653void Sema::MarkVTableUsed(SourceLocation Loc, CXXRecordDecl *Class,
6654 bool DefinitionRequired) {
6655 // Ignore any vtable uses in unevaluated operands or for classes that do
6656 // not have a vtable.
6657 if (!Class->isDynamicClass() || Class->isDependentContext() ||
6658 CurContext->isDependentContext() ||
6659 ExprEvalContexts.back().Context == Unevaluated)
Rafael Espindolabbf58bb2010-03-10 02:19:29 +00006660 return;
6661
Douglas Gregor6fb745b2010-05-13 16:44:06 +00006662 // Try to insert this class into the map.
6663 Class = cast<CXXRecordDecl>(Class->getCanonicalDecl());
6664 std::pair<llvm::DenseMap<CXXRecordDecl *, bool>::iterator, bool>
6665 Pos = VTablesUsed.insert(std::make_pair(Class, DefinitionRequired));
6666 if (!Pos.second) {
Daniel Dunbarb9aefa72010-05-25 00:33:13 +00006667 // If we already had an entry, check to see if we are promoting this vtable
6668 // to required a definition. If so, we need to reappend to the VTableUses
6669 // list, since we may have already processed the first entry.
6670 if (DefinitionRequired && !Pos.first->second) {
6671 Pos.first->second = true;
6672 } else {
6673 // Otherwise, we can early exit.
6674 return;
6675 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +00006676 }
6677
6678 // Local classes need to have their virtual members marked
6679 // immediately. For all other classes, we mark their virtual members
6680 // at the end of the translation unit.
6681 if (Class->isLocalClass())
6682 MarkVirtualMembersReferenced(Loc, Class);
Daniel Dunbar380c2132010-05-11 21:32:35 +00006683 else
Douglas Gregor6fb745b2010-05-13 16:44:06 +00006684 VTableUses.push_back(std::make_pair(Class, Loc));
Douglas Gregorbbbe0742010-05-11 20:24:17 +00006685}
6686
Douglas Gregor6fb745b2010-05-13 16:44:06 +00006687bool Sema::DefineUsedVTables() {
6688 // If any dynamic classes have their key function defined within
6689 // this translation unit, then those vtables are considered "used" and must
6690 // be emitted.
6691 for (unsigned I = 0, N = DynamicClasses.size(); I != N; ++I) {
6692 if (const CXXMethodDecl *KeyFunction
6693 = Context.getKeyFunction(DynamicClasses[I])) {
6694 const FunctionDecl *Definition = 0;
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00006695 if (KeyFunction->hasBody(Definition))
Douglas Gregor6fb745b2010-05-13 16:44:06 +00006696 MarkVTableUsed(Definition->getLocation(), DynamicClasses[I], true);
6697 }
6698 }
6699
6700 if (VTableUses.empty())
Anders Carlssond6a637f2009-12-07 08:24:59 +00006701 return false;
6702
Douglas Gregor6fb745b2010-05-13 16:44:06 +00006703 // Note: The VTableUses vector could grow as a result of marking
6704 // the members of a class as "used", so we check the size each
6705 // time through the loop and prefer indices (with are stable) to
6706 // iterators (which are not).
6707 for (unsigned I = 0; I != VTableUses.size(); ++I) {
Daniel Dunbare669f892010-05-25 00:32:58 +00006708 CXXRecordDecl *Class = VTableUses[I].first->getDefinition();
Douglas Gregor6fb745b2010-05-13 16:44:06 +00006709 if (!Class)
6710 continue;
6711
6712 SourceLocation Loc = VTableUses[I].second;
6713
6714 // If this class has a key function, but that key function is
6715 // defined in another translation unit, we don't need to emit the
6716 // vtable even though we're using it.
6717 const CXXMethodDecl *KeyFunction = Context.getKeyFunction(Class);
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00006718 if (KeyFunction && !KeyFunction->hasBody()) {
Douglas Gregor6fb745b2010-05-13 16:44:06 +00006719 switch (KeyFunction->getTemplateSpecializationKind()) {
6720 case TSK_Undeclared:
6721 case TSK_ExplicitSpecialization:
6722 case TSK_ExplicitInstantiationDeclaration:
6723 // The key function is in another translation unit.
6724 continue;
6725
6726 case TSK_ExplicitInstantiationDefinition:
6727 case TSK_ImplicitInstantiation:
6728 // We will be instantiating the key function.
6729 break;
6730 }
6731 } else if (!KeyFunction) {
6732 // If we have a class with no key function that is the subject
6733 // of an explicit instantiation declaration, suppress the
6734 // vtable; it will live with the explicit instantiation
6735 // definition.
6736 bool IsExplicitInstantiationDeclaration
6737 = Class->getTemplateSpecializationKind()
6738 == TSK_ExplicitInstantiationDeclaration;
6739 for (TagDecl::redecl_iterator R = Class->redecls_begin(),
6740 REnd = Class->redecls_end();
6741 R != REnd; ++R) {
6742 TemplateSpecializationKind TSK
6743 = cast<CXXRecordDecl>(*R)->getTemplateSpecializationKind();
6744 if (TSK == TSK_ExplicitInstantiationDeclaration)
6745 IsExplicitInstantiationDeclaration = true;
6746 else if (TSK == TSK_ExplicitInstantiationDefinition) {
6747 IsExplicitInstantiationDeclaration = false;
6748 break;
6749 }
6750 }
6751
6752 if (IsExplicitInstantiationDeclaration)
6753 continue;
6754 }
6755
6756 // Mark all of the virtual members of this class as referenced, so
6757 // that we can build a vtable. Then, tell the AST consumer that a
6758 // vtable for this class is required.
6759 MarkVirtualMembersReferenced(Loc, Class);
6760 CXXRecordDecl *Canonical = cast<CXXRecordDecl>(Class->getCanonicalDecl());
6761 Consumer.HandleVTable(Class, VTablesUsed[Canonical]);
6762
6763 // Optionally warn if we're emitting a weak vtable.
6764 if (Class->getLinkage() == ExternalLinkage &&
6765 Class->getTemplateSpecializationKind() != TSK_ImplicitInstantiation) {
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00006766 if (!KeyFunction || (KeyFunction->hasBody() && KeyFunction->isInlined()))
Douglas Gregor6fb745b2010-05-13 16:44:06 +00006767 Diag(Class->getLocation(), diag::warn_weak_vtable) << Class;
6768 }
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00006769 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +00006770 VTableUses.clear();
6771
Anders Carlssond6a637f2009-12-07 08:24:59 +00006772 return true;
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00006773}
Anders Carlssond6a637f2009-12-07 08:24:59 +00006774
Rafael Espindola3e1ae932010-03-26 00:36:59 +00006775void Sema::MarkVirtualMembersReferenced(SourceLocation Loc,
6776 const CXXRecordDecl *RD) {
Anders Carlssond6a637f2009-12-07 08:24:59 +00006777 for (CXXRecordDecl::method_iterator i = RD->method_begin(),
6778 e = RD->method_end(); i != e; ++i) {
6779 CXXMethodDecl *MD = *i;
6780
6781 // C++ [basic.def.odr]p2:
6782 // [...] A virtual member function is used if it is not pure. [...]
6783 if (MD->isVirtual() && !MD->isPure())
6784 MarkDeclarationReferenced(Loc, MD);
6785 }
Rafael Espindola3e1ae932010-03-26 00:36:59 +00006786
6787 // Only classes that have virtual bases need a VTT.
6788 if (RD->getNumVBases() == 0)
6789 return;
6790
6791 for (CXXRecordDecl::base_class_const_iterator i = RD->bases_begin(),
6792 e = RD->bases_end(); i != e; ++i) {
6793 const CXXRecordDecl *Base =
6794 cast<CXXRecordDecl>(i->getType()->getAs<RecordType>()->getDecl());
6795 if (i->isVirtual())
6796 continue;
6797 if (Base->getNumVBases() == 0)
6798 continue;
6799 MarkVirtualMembersReferenced(Loc, Base);
6800 }
Anders Carlssond6a637f2009-12-07 08:24:59 +00006801}
Fariborz Jahaniane4498c62010-04-28 16:11:27 +00006802
6803/// SetIvarInitializers - This routine builds initialization ASTs for the
6804/// Objective-C implementation whose ivars need be initialized.
6805void Sema::SetIvarInitializers(ObjCImplementationDecl *ObjCImplementation) {
6806 if (!getLangOptions().CPlusPlus)
6807 return;
6808 if (const ObjCInterfaceDecl *OID = ObjCImplementation->getClassInterface()) {
6809 llvm::SmallVector<ObjCIvarDecl*, 8> ivars;
6810 CollectIvarsToConstructOrDestruct(OID, ivars);
6811 if (ivars.empty())
6812 return;
6813 llvm::SmallVector<CXXBaseOrMemberInitializer*, 32> AllToInit;
6814 for (unsigned i = 0; i < ivars.size(); i++) {
6815 FieldDecl *Field = ivars[i];
Douglas Gregor68dd3ee2010-05-20 02:24:22 +00006816 if (Field->isInvalidDecl())
6817 continue;
6818
Fariborz Jahaniane4498c62010-04-28 16:11:27 +00006819 CXXBaseOrMemberInitializer *Member;
6820 InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field);
6821 InitializationKind InitKind =
6822 InitializationKind::CreateDefault(ObjCImplementation->getLocation());
6823
6824 InitializationSequence InitSeq(*this, InitEntity, InitKind, 0, 0);
6825 Sema::OwningExprResult MemberInit =
6826 InitSeq.Perform(*this, InitEntity, InitKind,
6827 Sema::MultiExprArg(*this, 0, 0));
6828 MemberInit = MaybeCreateCXXExprWithTemporaries(move(MemberInit));
6829 // Note, MemberInit could actually come back empty if no initialization
6830 // is required (e.g., because it would call a trivial default constructor)
6831 if (!MemberInit.get() || MemberInit.isInvalid())
6832 continue;
6833
6834 Member =
6835 new (Context) CXXBaseOrMemberInitializer(Context,
6836 Field, SourceLocation(),
6837 SourceLocation(),
6838 MemberInit.takeAs<Expr>(),
6839 SourceLocation());
6840 AllToInit.push_back(Member);
Douglas Gregor68dd3ee2010-05-20 02:24:22 +00006841
6842 // Be sure that the destructor is accessible and is marked as referenced.
6843 if (const RecordType *RecordTy
6844 = Context.getBaseElementType(Field->getType())
6845 ->getAs<RecordType>()) {
6846 CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl());
Douglas Gregordb89f282010-07-01 22:47:18 +00006847 if (CXXDestructorDecl *Destructor = LookupDestructor(RD)) {
Douglas Gregor68dd3ee2010-05-20 02:24:22 +00006848 MarkDeclarationReferenced(Field->getLocation(), Destructor);
6849 CheckDestructorAccess(Field->getLocation(), Destructor,
6850 PDiag(diag::err_access_dtor_ivar)
6851 << Context.getBaseElementType(Field->getType()));
6852 }
6853 }
Fariborz Jahaniane4498c62010-04-28 16:11:27 +00006854 }
6855 ObjCImplementation->setIvarInitializers(Context,
6856 AllToInit.data(), AllToInit.size());
6857 }
6858}