blob: 94ca031c2a3155685a29d2cbb71fedb1cd0972ce [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,
John McCallf871d0c2010-08-07 06:22:56 +0000723 CXXCastPath &BasePathArray) {
Anders Carlsson5cf86ba2010-04-24 19:06:50 +0000724 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)
John McCallf871d0c2010-08-07 06:22:56 +0000742 BasePathArray.push_back(const_cast<CXXBaseSpecifier*>(Path[I].Base));
Anders Carlsson5cf86ba2010-04-24 19:06:50 +0000743}
744
Douglas Gregor6fb745b2010-05-13 16:44:06 +0000745/// \brief Determine whether the given base path includes a virtual
746/// base class.
John McCallf871d0c2010-08-07 06:22:56 +0000747bool Sema::BasePathInvolvesVirtualBase(const CXXCastPath &BasePath) {
748 for (CXXCastPath::const_iterator B = BasePath.begin(),
749 BEnd = BasePath.end();
Douglas Gregor6fb745b2010-05-13 16:44:06 +0000750 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,
John McCallf871d0c2010-08-07 06:22:56 +0000771 CXXCastPath *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,
John McCallf871d0c2010-08-07 06:22:56 +0000829 CXXCastPath *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());
John McCallf871d0c2010-08-07 06:22:56 +00001537
1538 CXXCastPath BasePath;
1539 BasePath.push_back(BaseSpec);
Sebastian Redl906082e2010-07-20 04:20:21 +00001540 SemaRef.ImpCastExprToType(CopyCtorArg, ArgTy,
Anders Carlssonc7957502010-04-24 22:02:54 +00001541 CastExpr::CK_UncheckedDerivedToBase,
John McCallf871d0c2010-08-07 06:22:56 +00001542 ImplicitCastExpr::LValue, &BasePath);
Anders Carlssonc7957502010-04-24 22:02:54 +00001543
Anders Carlssone5ef7402010-04-23 03:10:23 +00001544 InitializationKind InitKind
1545 = InitializationKind::CreateDirect(Constructor->getLocation(),
1546 SourceLocation(), SourceLocation());
1547 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind,
1548 &CopyCtorArg, 1);
1549 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind,
1550 Sema::MultiExprArg(SemaRef,
1551 (void**)&CopyCtorArg, 1));
1552 break;
1553 }
Anders Carlsson84688f22010-04-20 23:11:20 +00001554
Anders Carlssone5ef7402010-04-23 03:10:23 +00001555 case IIK_Move:
1556 assert(false && "Unhandled initializer kind!");
1557 }
1558
Anders Carlsson84688f22010-04-20 23:11:20 +00001559 BaseInit = SemaRef.MaybeCreateCXXExprWithTemporaries(move(BaseInit));
1560 if (BaseInit.isInvalid())
Anders Carlssondefefd22010-04-23 02:00:02 +00001561 return true;
Anders Carlsson84688f22010-04-20 23:11:20 +00001562
Anders Carlssondefefd22010-04-23 02:00:02 +00001563 CXXBaseInit =
Anders Carlsson84688f22010-04-20 23:11:20 +00001564 new (SemaRef.Context) CXXBaseOrMemberInitializer(SemaRef.Context,
1565 SemaRef.Context.getTrivialTypeSourceInfo(BaseSpec->getType(),
1566 SourceLocation()),
1567 BaseSpec->isVirtual(),
1568 SourceLocation(),
1569 BaseInit.takeAs<Expr>(),
1570 SourceLocation());
1571
Anders Carlssondefefd22010-04-23 02:00:02 +00001572 return false;
Anders Carlsson84688f22010-04-20 23:11:20 +00001573}
1574
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001575static bool
1576BuildImplicitMemberInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlssone5ef7402010-04-23 03:10:23 +00001577 ImplicitInitializerKind ImplicitInitKind,
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001578 FieldDecl *Field,
1579 CXXBaseOrMemberInitializer *&CXXMemberInit) {
Douglas Gregor72a43bb2010-05-20 22:12:02 +00001580 if (Field->isInvalidDecl())
1581 return true;
1582
Chandler Carruthf186b542010-06-29 23:50:44 +00001583 SourceLocation Loc = Constructor->getLocation();
1584
Anders Carlssonf6513ed2010-04-23 16:04:08 +00001585 if (ImplicitInitKind == IIK_Copy) {
1586 ParmVarDecl *Param = Constructor->getParamDecl(0);
1587 QualType ParamType = Param->getType().getNonReferenceType();
1588
1589 Expr *MemberExprBase =
1590 DeclRefExpr::Create(SemaRef.Context, 0, SourceRange(), Param,
Douglas Gregorfb8cc252010-05-05 05:51:00 +00001591 Loc, ParamType, 0);
1592
1593 // Build a reference to this field within the parameter.
1594 CXXScopeSpec SS;
1595 LookupResult MemberLookup(SemaRef, Field->getDeclName(), Loc,
1596 Sema::LookupMemberName);
1597 MemberLookup.addDecl(Field, AS_public);
1598 MemberLookup.resolveKind();
1599 Sema::OwningExprResult CopyCtorArg
1600 = SemaRef.BuildMemberReferenceExpr(SemaRef.Owned(MemberExprBase),
1601 ParamType, Loc,
1602 /*IsArrow=*/false,
1603 SS,
1604 /*FirstQualifierInScope=*/0,
1605 MemberLookup,
1606 /*TemplateArgs=*/0);
1607 if (CopyCtorArg.isInvalid())
Anders Carlssonf6513ed2010-04-23 16:04:08 +00001608 return true;
1609
Douglas Gregorfb8cc252010-05-05 05:51:00 +00001610 // When the field we are copying is an array, create index variables for
1611 // each dimension of the array. We use these index variables to subscript
1612 // the source array, and other clients (e.g., CodeGen) will perform the
1613 // necessary iteration with these index variables.
1614 llvm::SmallVector<VarDecl *, 4> IndexVariables;
1615 QualType BaseType = Field->getType();
1616 QualType SizeType = SemaRef.Context.getSizeType();
1617 while (const ConstantArrayType *Array
1618 = SemaRef.Context.getAsConstantArrayType(BaseType)) {
1619 // Create the iteration variable for this array index.
1620 IdentifierInfo *IterationVarName = 0;
1621 {
1622 llvm::SmallString<8> Str;
1623 llvm::raw_svector_ostream OS(Str);
1624 OS << "__i" << IndexVariables.size();
1625 IterationVarName = &SemaRef.Context.Idents.get(OS.str());
1626 }
1627 VarDecl *IterationVar
1628 = VarDecl::Create(SemaRef.Context, SemaRef.CurContext, Loc,
1629 IterationVarName, SizeType,
1630 SemaRef.Context.getTrivialTypeSourceInfo(SizeType, Loc),
1631 VarDecl::None, VarDecl::None);
1632 IndexVariables.push_back(IterationVar);
1633
1634 // Create a reference to the iteration variable.
1635 Sema::OwningExprResult IterationVarRef
1636 = SemaRef.BuildDeclRefExpr(IterationVar, SizeType, Loc);
1637 assert(!IterationVarRef.isInvalid() &&
1638 "Reference to invented variable cannot fail!");
1639
1640 // Subscript the array with this iteration variable.
1641 CopyCtorArg = SemaRef.CreateBuiltinArraySubscriptExpr(move(CopyCtorArg),
1642 Loc,
1643 move(IterationVarRef),
1644 Loc);
1645 if (CopyCtorArg.isInvalid())
1646 return true;
1647
1648 BaseType = Array->getElementType();
1649 }
1650
1651 // Construct the entity that we will be initializing. For an array, this
1652 // will be first element in the array, which may require several levels
1653 // of array-subscript entities.
1654 llvm::SmallVector<InitializedEntity, 4> Entities;
1655 Entities.reserve(1 + IndexVariables.size());
1656 Entities.push_back(InitializedEntity::InitializeMember(Field));
1657 for (unsigned I = 0, N = IndexVariables.size(); I != N; ++I)
1658 Entities.push_back(InitializedEntity::InitializeElement(SemaRef.Context,
1659 0,
1660 Entities.back()));
1661
1662 // Direct-initialize to use the copy constructor.
1663 InitializationKind InitKind =
1664 InitializationKind::CreateDirect(Loc, SourceLocation(), SourceLocation());
1665
1666 Expr *CopyCtorArgE = CopyCtorArg.takeAs<Expr>();
1667 InitializationSequence InitSeq(SemaRef, Entities.back(), InitKind,
1668 &CopyCtorArgE, 1);
1669
1670 Sema::OwningExprResult MemberInit
1671 = InitSeq.Perform(SemaRef, Entities.back(), InitKind,
1672 Sema::MultiExprArg(SemaRef, (void**)&CopyCtorArgE, 1));
1673 MemberInit = SemaRef.MaybeCreateCXXExprWithTemporaries(move(MemberInit));
1674 if (MemberInit.isInvalid())
1675 return true;
1676
1677 CXXMemberInit
1678 = CXXBaseOrMemberInitializer::Create(SemaRef.Context, Field, Loc, Loc,
1679 MemberInit.takeAs<Expr>(), Loc,
1680 IndexVariables.data(),
1681 IndexVariables.size());
Anders Carlssone5ef7402010-04-23 03:10:23 +00001682 return false;
1683 }
1684
Anders Carlssonf6513ed2010-04-23 16:04:08 +00001685 assert(ImplicitInitKind == IIK_Default && "Unhandled implicit init kind!");
1686
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001687 QualType FieldBaseElementType =
1688 SemaRef.Context.getBaseElementType(Field->getType());
1689
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001690 if (FieldBaseElementType->isRecordType()) {
1691 InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field);
Anders Carlssonf6513ed2010-04-23 16:04:08 +00001692 InitializationKind InitKind =
Chandler Carruthf186b542010-06-29 23:50:44 +00001693 InitializationKind::CreateDefault(Loc);
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001694
1695 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, 0, 0);
1696 Sema::OwningExprResult MemberInit =
1697 InitSeq.Perform(SemaRef, InitEntity, InitKind,
1698 Sema::MultiExprArg(SemaRef, 0, 0));
1699 MemberInit = SemaRef.MaybeCreateCXXExprWithTemporaries(move(MemberInit));
1700 if (MemberInit.isInvalid())
1701 return true;
1702
1703 CXXMemberInit =
1704 new (SemaRef.Context) CXXBaseOrMemberInitializer(SemaRef.Context,
Chandler Carruthf186b542010-06-29 23:50:44 +00001705 Field, Loc, Loc,
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001706 MemberInit.takeAs<Expr>(),
Chandler Carruthf186b542010-06-29 23:50:44 +00001707 Loc);
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001708 return false;
1709 }
Anders Carlsson114a2972010-04-23 03:07:47 +00001710
1711 if (FieldBaseElementType->isReferenceType()) {
1712 SemaRef.Diag(Constructor->getLocation(),
1713 diag::err_uninitialized_member_in_ctor)
1714 << (int)Constructor->isImplicit()
1715 << SemaRef.Context.getTagDeclType(Constructor->getParent())
1716 << 0 << Field->getDeclName();
1717 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
1718 return true;
1719 }
1720
1721 if (FieldBaseElementType.isConstQualified()) {
1722 SemaRef.Diag(Constructor->getLocation(),
1723 diag::err_uninitialized_member_in_ctor)
1724 << (int)Constructor->isImplicit()
1725 << SemaRef.Context.getTagDeclType(Constructor->getParent())
1726 << 1 << Field->getDeclName();
1727 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
1728 return true;
1729 }
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001730
1731 // Nothing to initialize.
1732 CXXMemberInit = 0;
1733 return false;
1734}
John McCallf1860e52010-05-20 23:23:51 +00001735
1736namespace {
1737struct BaseAndFieldInfo {
1738 Sema &S;
1739 CXXConstructorDecl *Ctor;
1740 bool AnyErrorsInInits;
1741 ImplicitInitializerKind IIK;
1742 llvm::DenseMap<const void *, CXXBaseOrMemberInitializer*> AllBaseFields;
1743 llvm::SmallVector<CXXBaseOrMemberInitializer*, 8> AllToInit;
1744
1745 BaseAndFieldInfo(Sema &S, CXXConstructorDecl *Ctor, bool ErrorsInInits)
1746 : S(S), Ctor(Ctor), AnyErrorsInInits(ErrorsInInits) {
1747 // FIXME: Handle implicit move constructors.
1748 if (Ctor->isImplicit() && Ctor->isCopyConstructor())
1749 IIK = IIK_Copy;
1750 else
1751 IIK = IIK_Default;
1752 }
1753};
1754}
1755
Chandler Carruthe861c602010-06-30 02:59:29 +00001756static void RecordFieldInitializer(BaseAndFieldInfo &Info,
1757 FieldDecl *Top, FieldDecl *Field,
1758 CXXBaseOrMemberInitializer *Init) {
1759 // If the member doesn't need to be initialized, Init will still be null.
1760 if (!Init)
1761 return;
1762
1763 Info.AllToInit.push_back(Init);
1764 if (Field != Top) {
1765 Init->setMember(Top);
1766 Init->setAnonUnionMember(Field);
1767 }
1768}
1769
John McCallf1860e52010-05-20 23:23:51 +00001770static bool CollectFieldInitializer(BaseAndFieldInfo &Info,
1771 FieldDecl *Top, FieldDecl *Field) {
1772
Chandler Carruthe861c602010-06-30 02:59:29 +00001773 // Overwhelmingly common case: we have a direct initializer for this field.
John McCallf1860e52010-05-20 23:23:51 +00001774 if (CXXBaseOrMemberInitializer *Init = Info.AllBaseFields.lookup(Field)) {
Chandler Carruthe861c602010-06-30 02:59:29 +00001775 RecordFieldInitializer(Info, Top, Field, Init);
John McCallf1860e52010-05-20 23:23:51 +00001776 return false;
1777 }
1778
1779 if (Info.IIK == IIK_Default && Field->isAnonymousStructOrUnion()) {
1780 const RecordType *FieldClassType = Field->getType()->getAs<RecordType>();
1781 assert(FieldClassType && "anonymous struct/union without record type");
John McCallf1860e52010-05-20 23:23:51 +00001782 CXXRecordDecl *FieldClassDecl
1783 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Chandler Carruthe861c602010-06-30 02:59:29 +00001784
1785 // Even though union members never have non-trivial default
1786 // constructions in C++03, we still build member initializers for aggregate
1787 // record types which can be union members, and C++0x allows non-trivial
1788 // default constructors for union members, so we ensure that only one
1789 // member is initialized for these.
1790 if (FieldClassDecl->isUnion()) {
1791 // First check for an explicit initializer for one field.
1792 for (RecordDecl::field_iterator FA = FieldClassDecl->field_begin(),
1793 EA = FieldClassDecl->field_end(); FA != EA; FA++) {
1794 if (CXXBaseOrMemberInitializer *Init = Info.AllBaseFields.lookup(*FA)) {
1795 RecordFieldInitializer(Info, Top, *FA, Init);
1796
1797 // Once we've initialized a field of an anonymous union, the union
1798 // field in the class is also initialized, so exit immediately.
1799 return false;
1800 }
1801 }
1802
1803 // Fallthrough and construct a default initializer for the union as
1804 // a whole, which can call its default constructor if such a thing exists
1805 // (C++0x perhaps). FIXME: It's not clear that this is the correct
1806 // behavior going forward with C++0x, when anonymous unions there are
1807 // finalized, we should revisit this.
1808 } else {
1809 // For structs, we simply descend through to initialize all members where
1810 // necessary.
1811 for (RecordDecl::field_iterator FA = FieldClassDecl->field_begin(),
1812 EA = FieldClassDecl->field_end(); FA != EA; FA++) {
1813 if (CollectFieldInitializer(Info, Top, *FA))
1814 return true;
1815 }
1816 }
John McCallf1860e52010-05-20 23:23:51 +00001817 }
1818
1819 // Don't try to build an implicit initializer if there were semantic
1820 // errors in any of the initializers (and therefore we might be
1821 // missing some that the user actually wrote).
1822 if (Info.AnyErrorsInInits)
1823 return false;
1824
1825 CXXBaseOrMemberInitializer *Init = 0;
1826 if (BuildImplicitMemberInitializer(Info.S, Info.Ctor, Info.IIK, Field, Init))
1827 return true;
John McCallf1860e52010-05-20 23:23:51 +00001828
Chandler Carruthe861c602010-06-30 02:59:29 +00001829 RecordFieldInitializer(Info, Top, Field, Init);
John McCallf1860e52010-05-20 23:23:51 +00001830 return false;
1831}
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001832
Eli Friedman80c30da2009-11-09 19:20:36 +00001833bool
Anders Carlsson0ebb6d32009-10-29 15:46:07 +00001834Sema::SetBaseOrMemberInitializers(CXXConstructorDecl *Constructor,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001835 CXXBaseOrMemberInitializer **Initializers,
1836 unsigned NumInitializers,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001837 bool AnyErrors) {
John McCalld6ca8da2010-04-10 07:37:23 +00001838 if (Constructor->getDeclContext()->isDependentContext()) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00001839 // Just store the initializers as written, they will be checked during
1840 // instantiation.
1841 if (NumInitializers > 0) {
1842 Constructor->setNumBaseOrMemberInitializers(NumInitializers);
1843 CXXBaseOrMemberInitializer **baseOrMemberInitializers =
1844 new (Context) CXXBaseOrMemberInitializer*[NumInitializers];
1845 memcpy(baseOrMemberInitializers, Initializers,
1846 NumInitializers * sizeof(CXXBaseOrMemberInitializer*));
1847 Constructor->setBaseOrMemberInitializers(baseOrMemberInitializers);
1848 }
1849
1850 return false;
1851 }
1852
John McCallf1860e52010-05-20 23:23:51 +00001853 BaseAndFieldInfo Info(*this, Constructor, AnyErrors);
Anders Carlssone5ef7402010-04-23 03:10:23 +00001854
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001855 // We need to build the initializer AST according to order of construction
1856 // and not what user specified in the Initializers list.
Anders Carlssonea356fb2010-04-02 05:42:15 +00001857 CXXRecordDecl *ClassDecl = Constructor->getParent()->getDefinition();
Douglas Gregord6068482010-03-26 22:43:07 +00001858 if (!ClassDecl)
1859 return true;
1860
Eli Friedman80c30da2009-11-09 19:20:36 +00001861 bool HadError = false;
Mike Stump1eb44332009-09-09 15:08:12 +00001862
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001863 for (unsigned i = 0; i < NumInitializers; i++) {
1864 CXXBaseOrMemberInitializer *Member = Initializers[i];
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00001865
1866 if (Member->isBaseInitializer())
John McCallf1860e52010-05-20 23:23:51 +00001867 Info.AllBaseFields[Member->getBaseClass()->getAs<RecordType>()] = Member;
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00001868 else
John McCallf1860e52010-05-20 23:23:51 +00001869 Info.AllBaseFields[Member->getMember()] = Member;
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00001870 }
1871
Anders Carlsson711f34a2010-04-21 19:52:01 +00001872 // Keep track of the direct virtual bases.
1873 llvm::SmallPtrSet<CXXBaseSpecifier *, 16> DirectVBases;
1874 for (CXXRecordDecl::base_class_iterator I = ClassDecl->bases_begin(),
1875 E = ClassDecl->bases_end(); I != E; ++I) {
1876 if (I->isVirtual())
1877 DirectVBases.insert(I);
1878 }
1879
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00001880 // Push virtual bases before others.
1881 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
1882 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
1883
1884 if (CXXBaseOrMemberInitializer *Value
John McCallf1860e52010-05-20 23:23:51 +00001885 = Info.AllBaseFields.lookup(VBase->getType()->getAs<RecordType>())) {
1886 Info.AllToInit.push_back(Value);
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00001887 } else if (!AnyErrors) {
Anders Carlsson711f34a2010-04-21 19:52:01 +00001888 bool IsInheritedVirtualBase = !DirectVBases.count(VBase);
Anders Carlssondefefd22010-04-23 02:00:02 +00001889 CXXBaseOrMemberInitializer *CXXBaseInit;
John McCallf1860e52010-05-20 23:23:51 +00001890 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Anders Carlssone5ef7402010-04-23 03:10:23 +00001891 VBase, IsInheritedVirtualBase,
1892 CXXBaseInit)) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00001893 HadError = true;
1894 continue;
1895 }
Anders Carlsson84688f22010-04-20 23:11:20 +00001896
John McCallf1860e52010-05-20 23:23:51 +00001897 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001898 }
1899 }
Mike Stump1eb44332009-09-09 15:08:12 +00001900
John McCallf1860e52010-05-20 23:23:51 +00001901 // Non-virtual bases.
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00001902 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
1903 E = ClassDecl->bases_end(); Base != E; ++Base) {
1904 // Virtuals are in the virtual base list and already constructed.
1905 if (Base->isVirtual())
1906 continue;
Mike Stump1eb44332009-09-09 15:08:12 +00001907
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00001908 if (CXXBaseOrMemberInitializer *Value
John McCallf1860e52010-05-20 23:23:51 +00001909 = Info.AllBaseFields.lookup(Base->getType()->getAs<RecordType>())) {
1910 Info.AllToInit.push_back(Value);
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00001911 } else if (!AnyErrors) {
Anders Carlssondefefd22010-04-23 02:00:02 +00001912 CXXBaseOrMemberInitializer *CXXBaseInit;
John McCallf1860e52010-05-20 23:23:51 +00001913 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Anders Carlssone5ef7402010-04-23 03:10:23 +00001914 Base, /*IsInheritedVirtualBase=*/false,
Anders Carlssondefefd22010-04-23 02:00:02 +00001915 CXXBaseInit)) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00001916 HadError = true;
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001917 continue;
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00001918 }
Fariborz Jahanian9d436202009-09-03 21:32:41 +00001919
John McCallf1860e52010-05-20 23:23:51 +00001920 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001921 }
1922 }
Mike Stump1eb44332009-09-09 15:08:12 +00001923
John McCallf1860e52010-05-20 23:23:51 +00001924 // Fields.
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001925 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00001926 E = ClassDecl->field_end(); Field != E; ++Field) {
1927 if ((*Field)->getType()->isIncompleteArrayType()) {
1928 assert(ClassDecl->hasFlexibleArrayMember() &&
1929 "Incomplete array type is not valid");
1930 continue;
1931 }
John McCallf1860e52010-05-20 23:23:51 +00001932 if (CollectFieldInitializer(Info, *Field, *Field))
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001933 HadError = true;
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00001934 }
Mike Stump1eb44332009-09-09 15:08:12 +00001935
John McCallf1860e52010-05-20 23:23:51 +00001936 NumInitializers = Info.AllToInit.size();
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001937 if (NumInitializers > 0) {
1938 Constructor->setNumBaseOrMemberInitializers(NumInitializers);
1939 CXXBaseOrMemberInitializer **baseOrMemberInitializers =
1940 new (Context) CXXBaseOrMemberInitializer*[NumInitializers];
John McCallf1860e52010-05-20 23:23:51 +00001941 memcpy(baseOrMemberInitializers, Info.AllToInit.data(),
John McCallef027fe2010-03-16 21:39:52 +00001942 NumInitializers * sizeof(CXXBaseOrMemberInitializer*));
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001943 Constructor->setBaseOrMemberInitializers(baseOrMemberInitializers);
Rafael Espindola961b1672010-03-13 18:12:56 +00001944
John McCallef027fe2010-03-16 21:39:52 +00001945 // Constructors implicitly reference the base and member
1946 // destructors.
1947 MarkBaseAndMemberDestructorsReferenced(Constructor->getLocation(),
1948 Constructor->getParent());
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001949 }
Eli Friedman80c30da2009-11-09 19:20:36 +00001950
1951 return HadError;
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001952}
1953
Eli Friedman6347f422009-07-21 19:28:10 +00001954static void *GetKeyForTopLevelField(FieldDecl *Field) {
1955 // For anonymous unions, use the class declaration as the key.
Ted Kremenek6217b802009-07-29 21:53:49 +00001956 if (const RecordType *RT = Field->getType()->getAs<RecordType>()) {
Eli Friedman6347f422009-07-21 19:28:10 +00001957 if (RT->getDecl()->isAnonymousStructOrUnion())
1958 return static_cast<void *>(RT->getDecl());
1959 }
1960 return static_cast<void *>(Field);
1961}
1962
Anders Carlssonea356fb2010-04-02 05:42:15 +00001963static void *GetKeyForBase(ASTContext &Context, QualType BaseType) {
1964 return Context.getCanonicalType(BaseType).getTypePtr();
Anders Carlssoncdc83c72009-09-01 06:22:14 +00001965}
1966
Anders Carlssonea356fb2010-04-02 05:42:15 +00001967static void *GetKeyForMember(ASTContext &Context,
1968 CXXBaseOrMemberInitializer *Member,
Anders Carlssoncdc83c72009-09-01 06:22:14 +00001969 bool MemberMaybeAnon = false) {
Anders Carlsson8f1a2402010-03-30 15:39:27 +00001970 if (!Member->isMemberInitializer())
Anders Carlssonea356fb2010-04-02 05:42:15 +00001971 return GetKeyForBase(Context, QualType(Member->getBaseClass(), 0));
Anders Carlsson8f1a2402010-03-30 15:39:27 +00001972
Eli Friedman6347f422009-07-21 19:28:10 +00001973 // For fields injected into the class via declaration of an anonymous union,
1974 // use its anonymous union class declaration as the unique key.
Anders Carlsson8f1a2402010-03-30 15:39:27 +00001975 FieldDecl *Field = Member->getMember();
Mike Stump1eb44332009-09-09 15:08:12 +00001976
Anders Carlsson8f1a2402010-03-30 15:39:27 +00001977 // After SetBaseOrMemberInitializers call, Field is the anonymous union
1978 // data member of the class. Data member used in the initializer list is
1979 // in AnonUnionMember field.
1980 if (MemberMaybeAnon && Field->isAnonymousStructOrUnion())
1981 Field = Member->getAnonUnionMember();
Anders Carlssonee11b2d2010-03-30 16:19:37 +00001982
John McCall3c3ccdb2010-04-10 09:28:51 +00001983 // If the field is a member of an anonymous struct or union, our key
1984 // is the anonymous record decl that's a direct child of the class.
Anders Carlssonee11b2d2010-03-30 16:19:37 +00001985 RecordDecl *RD = Field->getParent();
John McCall3c3ccdb2010-04-10 09:28:51 +00001986 if (RD->isAnonymousStructOrUnion()) {
1987 while (true) {
1988 RecordDecl *Parent = cast<RecordDecl>(RD->getDeclContext());
1989 if (Parent->isAnonymousStructOrUnion())
1990 RD = Parent;
1991 else
1992 break;
1993 }
1994
Anders Carlssonee11b2d2010-03-30 16:19:37 +00001995 return static_cast<void *>(RD);
John McCall3c3ccdb2010-04-10 09:28:51 +00001996 }
Mike Stump1eb44332009-09-09 15:08:12 +00001997
Anders Carlsson8f1a2402010-03-30 15:39:27 +00001998 return static_cast<void *>(Field);
Eli Friedman6347f422009-07-21 19:28:10 +00001999}
2000
Anders Carlsson58cfbde2010-04-02 03:37:03 +00002001static void
2002DiagnoseBaseOrMemInitializerOrder(Sema &SemaRef,
Anders Carlsson071d6102010-04-02 03:38:04 +00002003 const CXXConstructorDecl *Constructor,
John McCalld6ca8da2010-04-10 07:37:23 +00002004 CXXBaseOrMemberInitializer **Inits,
2005 unsigned NumInits) {
2006 if (Constructor->getDeclContext()->isDependentContext())
Anders Carlsson8d4c5ea2009-08-27 05:57:30 +00002007 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002008
John McCalld6ca8da2010-04-10 07:37:23 +00002009 if (SemaRef.Diags.getDiagnosticLevel(diag::warn_initializer_out_of_order)
2010 == Diagnostic::Ignored)
Anders Carlsson5c36fb22009-08-27 05:45:01 +00002011 return;
Anders Carlsson58cfbde2010-04-02 03:37:03 +00002012
John McCalld6ca8da2010-04-10 07:37:23 +00002013 // Build the list of bases and members in the order that they'll
2014 // actually be initialized. The explicit initializers should be in
2015 // this same order but may be missing things.
2016 llvm::SmallVector<const void*, 32> IdealInitKeys;
Mike Stump1eb44332009-09-09 15:08:12 +00002017
Anders Carlsson071d6102010-04-02 03:38:04 +00002018 const CXXRecordDecl *ClassDecl = Constructor->getParent();
2019
John McCalld6ca8da2010-04-10 07:37:23 +00002020 // 1. Virtual bases.
Anders Carlsson071d6102010-04-02 03:38:04 +00002021 for (CXXRecordDecl::base_class_const_iterator VBase =
Anders Carlsson5c36fb22009-08-27 05:45:01 +00002022 ClassDecl->vbases_begin(),
2023 E = ClassDecl->vbases_end(); VBase != E; ++VBase)
John McCalld6ca8da2010-04-10 07:37:23 +00002024 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, VBase->getType()));
Mike Stump1eb44332009-09-09 15:08:12 +00002025
John McCalld6ca8da2010-04-10 07:37:23 +00002026 // 2. Non-virtual bases.
Anders Carlsson071d6102010-04-02 03:38:04 +00002027 for (CXXRecordDecl::base_class_const_iterator Base = ClassDecl->bases_begin(),
Anders Carlsson5c36fb22009-08-27 05:45:01 +00002028 E = ClassDecl->bases_end(); Base != E; ++Base) {
Anders Carlsson5c36fb22009-08-27 05:45:01 +00002029 if (Base->isVirtual())
2030 continue;
John McCalld6ca8da2010-04-10 07:37:23 +00002031 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, Base->getType()));
Anders Carlsson5c36fb22009-08-27 05:45:01 +00002032 }
Mike Stump1eb44332009-09-09 15:08:12 +00002033
John McCalld6ca8da2010-04-10 07:37:23 +00002034 // 3. Direct fields.
Anders Carlsson5c36fb22009-08-27 05:45:01 +00002035 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
2036 E = ClassDecl->field_end(); Field != E; ++Field)
John McCalld6ca8da2010-04-10 07:37:23 +00002037 IdealInitKeys.push_back(GetKeyForTopLevelField(*Field));
Mike Stump1eb44332009-09-09 15:08:12 +00002038
John McCalld6ca8da2010-04-10 07:37:23 +00002039 unsigned NumIdealInits = IdealInitKeys.size();
2040 unsigned IdealIndex = 0;
Eli Friedman6347f422009-07-21 19:28:10 +00002041
John McCalld6ca8da2010-04-10 07:37:23 +00002042 CXXBaseOrMemberInitializer *PrevInit = 0;
2043 for (unsigned InitIndex = 0; InitIndex != NumInits; ++InitIndex) {
2044 CXXBaseOrMemberInitializer *Init = Inits[InitIndex];
2045 void *InitKey = GetKeyForMember(SemaRef.Context, Init, true);
2046
2047 // Scan forward to try to find this initializer in the idealized
2048 // initializers list.
2049 for (; IdealIndex != NumIdealInits; ++IdealIndex)
2050 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlsson5c36fb22009-08-27 05:45:01 +00002051 break;
John McCalld6ca8da2010-04-10 07:37:23 +00002052
2053 // If we didn't find this initializer, it must be because we
2054 // scanned past it on a previous iteration. That can only
2055 // happen if we're out of order; emit a warning.
Douglas Gregorfe2d3792010-05-20 23:49:34 +00002056 if (IdealIndex == NumIdealInits && PrevInit) {
John McCalld6ca8da2010-04-10 07:37:23 +00002057 Sema::SemaDiagnosticBuilder D =
2058 SemaRef.Diag(PrevInit->getSourceLocation(),
2059 diag::warn_initializer_out_of_order);
2060
2061 if (PrevInit->isMemberInitializer())
2062 D << 0 << PrevInit->getMember()->getDeclName();
2063 else
2064 D << 1 << PrevInit->getBaseClassInfo()->getType();
2065
2066 if (Init->isMemberInitializer())
2067 D << 0 << Init->getMember()->getDeclName();
2068 else
2069 D << 1 << Init->getBaseClassInfo()->getType();
2070
2071 // Move back to the initializer's location in the ideal list.
2072 for (IdealIndex = 0; IdealIndex != NumIdealInits; ++IdealIndex)
2073 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlsson5c36fb22009-08-27 05:45:01 +00002074 break;
John McCalld6ca8da2010-04-10 07:37:23 +00002075
2076 assert(IdealIndex != NumIdealInits &&
2077 "initializer not found in initializer list");
Fariborz Jahanianeb96e122009-07-09 19:59:47 +00002078 }
John McCalld6ca8da2010-04-10 07:37:23 +00002079
2080 PrevInit = Init;
Fariborz Jahanianeb96e122009-07-09 19:59:47 +00002081 }
Anders Carlssona7b35212009-03-25 02:58:17 +00002082}
2083
John McCall3c3ccdb2010-04-10 09:28:51 +00002084namespace {
2085bool CheckRedundantInit(Sema &S,
2086 CXXBaseOrMemberInitializer *Init,
2087 CXXBaseOrMemberInitializer *&PrevInit) {
2088 if (!PrevInit) {
2089 PrevInit = Init;
2090 return false;
2091 }
2092
2093 if (FieldDecl *Field = Init->getMember())
2094 S.Diag(Init->getSourceLocation(),
2095 diag::err_multiple_mem_initialization)
2096 << Field->getDeclName()
2097 << Init->getSourceRange();
2098 else {
2099 Type *BaseClass = Init->getBaseClass();
2100 assert(BaseClass && "neither field nor base");
2101 S.Diag(Init->getSourceLocation(),
2102 diag::err_multiple_base_initialization)
2103 << QualType(BaseClass, 0)
2104 << Init->getSourceRange();
2105 }
2106 S.Diag(PrevInit->getSourceLocation(), diag::note_previous_initializer)
2107 << 0 << PrevInit->getSourceRange();
2108
2109 return true;
2110}
2111
2112typedef std::pair<NamedDecl *, CXXBaseOrMemberInitializer *> UnionEntry;
2113typedef llvm::DenseMap<RecordDecl*, UnionEntry> RedundantUnionMap;
2114
2115bool CheckRedundantUnionInit(Sema &S,
2116 CXXBaseOrMemberInitializer *Init,
2117 RedundantUnionMap &Unions) {
2118 FieldDecl *Field = Init->getMember();
2119 RecordDecl *Parent = Field->getParent();
2120 if (!Parent->isAnonymousStructOrUnion())
2121 return false;
2122
2123 NamedDecl *Child = Field;
2124 do {
2125 if (Parent->isUnion()) {
2126 UnionEntry &En = Unions[Parent];
2127 if (En.first && En.first != Child) {
2128 S.Diag(Init->getSourceLocation(),
2129 diag::err_multiple_mem_union_initialization)
2130 << Field->getDeclName()
2131 << Init->getSourceRange();
2132 S.Diag(En.second->getSourceLocation(), diag::note_previous_initializer)
2133 << 0 << En.second->getSourceRange();
2134 return true;
2135 } else if (!En.first) {
2136 En.first = Child;
2137 En.second = Init;
2138 }
2139 }
2140
2141 Child = Parent;
2142 Parent = cast<RecordDecl>(Parent->getDeclContext());
2143 } while (Parent->isAnonymousStructOrUnion());
2144
2145 return false;
2146}
2147}
2148
Anders Carlsson58cfbde2010-04-02 03:37:03 +00002149/// ActOnMemInitializers - Handle the member initializers for a constructor.
2150void Sema::ActOnMemInitializers(DeclPtrTy ConstructorDecl,
2151 SourceLocation ColonLoc,
2152 MemInitTy **meminits, unsigned NumMemInits,
2153 bool AnyErrors) {
2154 if (!ConstructorDecl)
2155 return;
2156
2157 AdjustDeclIfTemplate(ConstructorDecl);
2158
2159 CXXConstructorDecl *Constructor
2160 = dyn_cast<CXXConstructorDecl>(ConstructorDecl.getAs<Decl>());
2161
2162 if (!Constructor) {
2163 Diag(ColonLoc, diag::err_only_constructors_take_base_inits);
2164 return;
2165 }
2166
2167 CXXBaseOrMemberInitializer **MemInits =
2168 reinterpret_cast<CXXBaseOrMemberInitializer **>(meminits);
John McCall3c3ccdb2010-04-10 09:28:51 +00002169
2170 // Mapping for the duplicate initializers check.
2171 // For member initializers, this is keyed with a FieldDecl*.
2172 // For base initializers, this is keyed with a Type*.
Anders Carlssonea356fb2010-04-02 05:42:15 +00002173 llvm::DenseMap<void*, CXXBaseOrMemberInitializer *> Members;
John McCall3c3ccdb2010-04-10 09:28:51 +00002174
2175 // Mapping for the inconsistent anonymous-union initializers check.
2176 RedundantUnionMap MemberUnions;
2177
Anders Carlssonea356fb2010-04-02 05:42:15 +00002178 bool HadError = false;
2179 for (unsigned i = 0; i < NumMemInits; i++) {
John McCall3c3ccdb2010-04-10 09:28:51 +00002180 CXXBaseOrMemberInitializer *Init = MemInits[i];
Anders Carlsson58cfbde2010-04-02 03:37:03 +00002181
Abramo Bagnaraa0af3b42010-05-26 18:09:23 +00002182 // Set the source order index.
2183 Init->setSourceOrder(i);
2184
John McCall3c3ccdb2010-04-10 09:28:51 +00002185 if (Init->isMemberInitializer()) {
2186 FieldDecl *Field = Init->getMember();
2187 if (CheckRedundantInit(*this, Init, Members[Field]) ||
2188 CheckRedundantUnionInit(*this, Init, MemberUnions))
2189 HadError = true;
2190 } else {
2191 void *Key = GetKeyForBase(Context, QualType(Init->getBaseClass(), 0));
2192 if (CheckRedundantInit(*this, Init, Members[Key]))
2193 HadError = true;
Anders Carlsson58cfbde2010-04-02 03:37:03 +00002194 }
Anders Carlsson58cfbde2010-04-02 03:37:03 +00002195 }
2196
Anders Carlssonea356fb2010-04-02 05:42:15 +00002197 if (HadError)
2198 return;
2199
Anders Carlsson58cfbde2010-04-02 03:37:03 +00002200 DiagnoseBaseOrMemInitializerOrder(*this, Constructor, MemInits, NumMemInits);
Anders Carlssonec3332b2010-04-02 03:43:34 +00002201
2202 SetBaseOrMemberInitializers(Constructor, MemInits, NumMemInits, AnyErrors);
Anders Carlsson58cfbde2010-04-02 03:37:03 +00002203}
2204
Fariborz Jahanian34374e62009-09-03 23:18:17 +00002205void
John McCallef027fe2010-03-16 21:39:52 +00002206Sema::MarkBaseAndMemberDestructorsReferenced(SourceLocation Location,
2207 CXXRecordDecl *ClassDecl) {
2208 // Ignore dependent contexts.
2209 if (ClassDecl->isDependentContext())
Anders Carlsson9f853df2009-11-17 04:44:12 +00002210 return;
John McCall58e6f342010-03-16 05:22:47 +00002211
2212 // FIXME: all the access-control diagnostics are positioned on the
2213 // field/base declaration. That's probably good; that said, the
2214 // user might reasonably want to know why the destructor is being
2215 // emitted, and we currently don't say.
Anders Carlsson9f853df2009-11-17 04:44:12 +00002216
Anders Carlsson9f853df2009-11-17 04:44:12 +00002217 // Non-static data members.
2218 for (CXXRecordDecl::field_iterator I = ClassDecl->field_begin(),
2219 E = ClassDecl->field_end(); I != E; ++I) {
2220 FieldDecl *Field = *I;
Fariborz Jahanian9614dc02010-05-17 18:15:18 +00002221 if (Field->isInvalidDecl())
2222 continue;
Anders Carlsson9f853df2009-11-17 04:44:12 +00002223 QualType FieldType = Context.getBaseElementType(Field->getType());
2224
2225 const RecordType* RT = FieldType->getAs<RecordType>();
2226 if (!RT)
2227 continue;
2228
2229 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl());
2230 if (FieldClassDecl->hasTrivialDestructor())
2231 continue;
2232
Douglas Gregordb89f282010-07-01 22:47:18 +00002233 CXXDestructorDecl *Dtor = LookupDestructor(FieldClassDecl);
John McCall58e6f342010-03-16 05:22:47 +00002234 CheckDestructorAccess(Field->getLocation(), Dtor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00002235 PDiag(diag::err_access_dtor_field)
John McCall58e6f342010-03-16 05:22:47 +00002236 << Field->getDeclName()
2237 << FieldType);
2238
John McCallef027fe2010-03-16 21:39:52 +00002239 MarkDeclarationReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Anders Carlsson9f853df2009-11-17 04:44:12 +00002240 }
2241
John McCall58e6f342010-03-16 05:22:47 +00002242 llvm::SmallPtrSet<const RecordType *, 8> DirectVirtualBases;
2243
Anders Carlsson9f853df2009-11-17 04:44:12 +00002244 // Bases.
2245 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
2246 E = ClassDecl->bases_end(); Base != E; ++Base) {
John McCall58e6f342010-03-16 05:22:47 +00002247 // Bases are always records in a well-formed non-dependent class.
2248 const RecordType *RT = Base->getType()->getAs<RecordType>();
2249
2250 // Remember direct virtual bases.
Anders Carlsson9f853df2009-11-17 04:44:12 +00002251 if (Base->isVirtual())
John McCall58e6f342010-03-16 05:22:47 +00002252 DirectVirtualBases.insert(RT);
Anders Carlsson9f853df2009-11-17 04:44:12 +00002253
2254 // Ignore trivial destructors.
John McCall58e6f342010-03-16 05:22:47 +00002255 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Anders Carlsson9f853df2009-11-17 04:44:12 +00002256 if (BaseClassDecl->hasTrivialDestructor())
2257 continue;
John McCall58e6f342010-03-16 05:22:47 +00002258
Douglas Gregordb89f282010-07-01 22:47:18 +00002259 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
John McCall58e6f342010-03-16 05:22:47 +00002260
2261 // FIXME: caret should be on the start of the class name
2262 CheckDestructorAccess(Base->getSourceRange().getBegin(), Dtor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00002263 PDiag(diag::err_access_dtor_base)
John McCall58e6f342010-03-16 05:22:47 +00002264 << Base->getType()
2265 << Base->getSourceRange());
Anders Carlsson9f853df2009-11-17 04:44:12 +00002266
John McCallef027fe2010-03-16 21:39:52 +00002267 MarkDeclarationReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Anders Carlsson9f853df2009-11-17 04:44:12 +00002268 }
2269
2270 // Virtual bases.
Fariborz Jahanian34374e62009-09-03 23:18:17 +00002271 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
2272 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
John McCall58e6f342010-03-16 05:22:47 +00002273
2274 // Bases are always records in a well-formed non-dependent class.
2275 const RecordType *RT = VBase->getType()->getAs<RecordType>();
2276
2277 // Ignore direct virtual bases.
2278 if (DirectVirtualBases.count(RT))
2279 continue;
2280
Anders Carlsson9f853df2009-11-17 04:44:12 +00002281 // Ignore trivial destructors.
John McCall58e6f342010-03-16 05:22:47 +00002282 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Fariborz Jahanian34374e62009-09-03 23:18:17 +00002283 if (BaseClassDecl->hasTrivialDestructor())
2284 continue;
John McCall58e6f342010-03-16 05:22:47 +00002285
Douglas Gregordb89f282010-07-01 22:47:18 +00002286 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
John McCall58e6f342010-03-16 05:22:47 +00002287 CheckDestructorAccess(ClassDecl->getLocation(), Dtor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00002288 PDiag(diag::err_access_dtor_vbase)
John McCall58e6f342010-03-16 05:22:47 +00002289 << VBase->getType());
2290
John McCallef027fe2010-03-16 21:39:52 +00002291 MarkDeclarationReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Fariborz Jahanian34374e62009-09-03 23:18:17 +00002292 }
2293}
2294
Fariborz Jahanian393612e2009-07-21 22:36:06 +00002295void Sema::ActOnDefaultCtorInitializers(DeclPtrTy CDtorDecl) {
Fariborz Jahanian560de452009-07-15 22:34:08 +00002296 if (!CDtorDecl)
Fariborz Jahaniand01c9152009-07-14 18:24:21 +00002297 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002298
Mike Stump1eb44332009-09-09 15:08:12 +00002299 if (CXXConstructorDecl *Constructor
Fariborz Jahanian560de452009-07-15 22:34:08 +00002300 = dyn_cast<CXXConstructorDecl>(CDtorDecl.getAs<Decl>()))
Anders Carlssonec3332b2010-04-02 03:43:34 +00002301 SetBaseOrMemberInitializers(Constructor, 0, 0, /*AnyErrors=*/false);
Fariborz Jahaniand01c9152009-07-14 18:24:21 +00002302}
2303
Mike Stump1eb44332009-09-09 15:08:12 +00002304bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
Anders Carlssone65a3c82009-03-24 17:23:42 +00002305 unsigned DiagID, AbstractDiagSelID SelID,
2306 const CXXRecordDecl *CurrentRD) {
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00002307 if (SelID == -1)
2308 return RequireNonAbstractType(Loc, T,
2309 PDiag(DiagID), CurrentRD);
2310 else
2311 return RequireNonAbstractType(Loc, T,
2312 PDiag(DiagID) << SelID, CurrentRD);
Mike Stump1eb44332009-09-09 15:08:12 +00002313}
2314
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00002315bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
2316 const PartialDiagnostic &PD,
2317 const CXXRecordDecl *CurrentRD) {
Anders Carlsson4681ebd2009-03-22 20:18:17 +00002318 if (!getLangOptions().CPlusPlus)
2319 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00002320
Anders Carlsson11f21a02009-03-23 19:10:31 +00002321 if (const ArrayType *AT = Context.getAsArrayType(T))
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00002322 return RequireNonAbstractType(Loc, AT->getElementType(), PD,
Anders Carlssone65a3c82009-03-24 17:23:42 +00002323 CurrentRD);
Mike Stump1eb44332009-09-09 15:08:12 +00002324
Ted Kremenek6217b802009-07-29 21:53:49 +00002325 if (const PointerType *PT = T->getAs<PointerType>()) {
Anders Carlsson5eff73c2009-03-24 01:46:45 +00002326 // Find the innermost pointer type.
Ted Kremenek6217b802009-07-29 21:53:49 +00002327 while (const PointerType *T = PT->getPointeeType()->getAs<PointerType>())
Anders Carlsson5eff73c2009-03-24 01:46:45 +00002328 PT = T;
Mike Stump1eb44332009-09-09 15:08:12 +00002329
Anders Carlsson5eff73c2009-03-24 01:46:45 +00002330 if (const ArrayType *AT = Context.getAsArrayType(PT->getPointeeType()))
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00002331 return RequireNonAbstractType(Loc, AT->getElementType(), PD, CurrentRD);
Anders Carlsson5eff73c2009-03-24 01:46:45 +00002332 }
Mike Stump1eb44332009-09-09 15:08:12 +00002333
Ted Kremenek6217b802009-07-29 21:53:49 +00002334 const RecordType *RT = T->getAs<RecordType>();
Anders Carlsson4681ebd2009-03-22 20:18:17 +00002335 if (!RT)
2336 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00002337
John McCall86ff3082010-02-04 22:26:26 +00002338 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
Anders Carlsson4681ebd2009-03-22 20:18:17 +00002339
Anders Carlssone65a3c82009-03-24 17:23:42 +00002340 if (CurrentRD && CurrentRD != RD)
2341 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00002342
John McCall86ff3082010-02-04 22:26:26 +00002343 // FIXME: is this reasonable? It matches current behavior, but....
Douglas Gregor952b0172010-02-11 01:04:33 +00002344 if (!RD->getDefinition())
John McCall86ff3082010-02-04 22:26:26 +00002345 return false;
2346
Anders Carlsson4681ebd2009-03-22 20:18:17 +00002347 if (!RD->isAbstract())
2348 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00002349
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00002350 Diag(Loc, PD) << RD->getDeclName();
Mike Stump1eb44332009-09-09 15:08:12 +00002351
Anders Carlsson4681ebd2009-03-22 20:18:17 +00002352 // Check if we've already emitted the list of pure virtual functions for this
2353 // class.
2354 if (PureVirtualClassDiagSet && PureVirtualClassDiagSet->count(RD))
2355 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00002356
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00002357 CXXFinalOverriderMap FinalOverriders;
2358 RD->getFinalOverriders(FinalOverriders);
Mike Stump1eb44332009-09-09 15:08:12 +00002359
Anders Carlssonffdb2d22010-06-03 01:00:02 +00002360 // Keep a set of seen pure methods so we won't diagnose the same method
2361 // more than once.
2362 llvm::SmallPtrSet<const CXXMethodDecl *, 8> SeenPureMethods;
2363
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00002364 for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(),
2365 MEnd = FinalOverriders.end();
2366 M != MEnd;
2367 ++M) {
2368 for (OverridingMethods::iterator SO = M->second.begin(),
2369 SOEnd = M->second.end();
2370 SO != SOEnd; ++SO) {
2371 // C++ [class.abstract]p4:
2372 // A class is abstract if it contains or inherits at least one
2373 // pure virtual function for which the final overrider is pure
2374 // virtual.
Mike Stump1eb44332009-09-09 15:08:12 +00002375
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00002376 //
2377 if (SO->second.size() != 1)
2378 continue;
2379
2380 if (!SO->second.front().Method->isPure())
2381 continue;
2382
Anders Carlssonffdb2d22010-06-03 01:00:02 +00002383 if (!SeenPureMethods.insert(SO->second.front().Method))
2384 continue;
2385
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00002386 Diag(SO->second.front().Method->getLocation(),
2387 diag::note_pure_virtual_function)
2388 << SO->second.front().Method->getDeclName();
2389 }
Anders Carlsson4681ebd2009-03-22 20:18:17 +00002390 }
2391
2392 if (!PureVirtualClassDiagSet)
2393 PureVirtualClassDiagSet.reset(new RecordDeclSetTy);
2394 PureVirtualClassDiagSet->insert(RD);
Mike Stump1eb44332009-09-09 15:08:12 +00002395
Anders Carlsson4681ebd2009-03-22 20:18:17 +00002396 return true;
2397}
2398
Anders Carlsson8211eff2009-03-24 01:19:16 +00002399namespace {
Benjamin Kramer85b45212009-11-28 19:45:26 +00002400 class AbstractClassUsageDiagnoser
Anders Carlsson8211eff2009-03-24 01:19:16 +00002401 : public DeclVisitor<AbstractClassUsageDiagnoser, bool> {
2402 Sema &SemaRef;
2403 CXXRecordDecl *AbstractClass;
Mike Stump1eb44332009-09-09 15:08:12 +00002404
Anders Carlssone65a3c82009-03-24 17:23:42 +00002405 bool VisitDeclContext(const DeclContext *DC) {
Anders Carlsson8211eff2009-03-24 01:19:16 +00002406 bool Invalid = false;
2407
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002408 for (CXXRecordDecl::decl_iterator I = DC->decls_begin(),
2409 E = DC->decls_end(); I != E; ++I)
Anders Carlsson8211eff2009-03-24 01:19:16 +00002410 Invalid |= Visit(*I);
Anders Carlssone65a3c82009-03-24 17:23:42 +00002411
Anders Carlsson8211eff2009-03-24 01:19:16 +00002412 return Invalid;
2413 }
Mike Stump1eb44332009-09-09 15:08:12 +00002414
Anders Carlssone65a3c82009-03-24 17:23:42 +00002415 public:
2416 AbstractClassUsageDiagnoser(Sema& SemaRef, CXXRecordDecl *ac)
2417 : SemaRef(SemaRef), AbstractClass(ac) {
2418 Visit(SemaRef.Context.getTranslationUnitDecl());
2419 }
Anders Carlsson8211eff2009-03-24 01:19:16 +00002420
Anders Carlssone65a3c82009-03-24 17:23:42 +00002421 bool VisitFunctionDecl(const FunctionDecl *FD) {
2422 if (FD->isThisDeclarationADefinition()) {
2423 // No need to do the check if we're in a definition, because it requires
2424 // that the return/param types are complete.
Mike Stump1eb44332009-09-09 15:08:12 +00002425 // because that requires
Anders Carlssone65a3c82009-03-24 17:23:42 +00002426 return VisitDeclContext(FD);
2427 }
Mike Stump1eb44332009-09-09 15:08:12 +00002428
Anders Carlssone65a3c82009-03-24 17:23:42 +00002429 // Check the return type.
John McCall183700f2009-09-21 23:43:11 +00002430 QualType RTy = FD->getType()->getAs<FunctionType>()->getResultType();
Mike Stump1eb44332009-09-09 15:08:12 +00002431 bool Invalid =
Anders Carlssone65a3c82009-03-24 17:23:42 +00002432 SemaRef.RequireNonAbstractType(FD->getLocation(), RTy,
2433 diag::err_abstract_type_in_decl,
2434 Sema::AbstractReturnType,
2435 AbstractClass);
2436
Mike Stump1eb44332009-09-09 15:08:12 +00002437 for (FunctionDecl::param_const_iterator I = FD->param_begin(),
Anders Carlssone65a3c82009-03-24 17:23:42 +00002438 E = FD->param_end(); I != E; ++I) {
Anders Carlsson8211eff2009-03-24 01:19:16 +00002439 const ParmVarDecl *VD = *I;
Mike Stump1eb44332009-09-09 15:08:12 +00002440 Invalid |=
Anders Carlsson8211eff2009-03-24 01:19:16 +00002441 SemaRef.RequireNonAbstractType(VD->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00002442 VD->getOriginalType(),
2443 diag::err_abstract_type_in_decl,
Anders Carlssone65a3c82009-03-24 17:23:42 +00002444 Sema::AbstractParamType,
2445 AbstractClass);
Anders Carlsson8211eff2009-03-24 01:19:16 +00002446 }
2447
2448 return Invalid;
2449 }
Mike Stump1eb44332009-09-09 15:08:12 +00002450
Anders Carlssone65a3c82009-03-24 17:23:42 +00002451 bool VisitDecl(const Decl* D) {
2452 if (const DeclContext *DC = dyn_cast<DeclContext>(D))
2453 return VisitDeclContext(DC);
Mike Stump1eb44332009-09-09 15:08:12 +00002454
Anders Carlssone65a3c82009-03-24 17:23:42 +00002455 return false;
2456 }
Anders Carlsson8211eff2009-03-24 01:19:16 +00002457 };
2458}
2459
Douglas Gregor1ab537b2009-12-03 18:33:45 +00002460/// \brief Perform semantic checks on a class definition that has been
2461/// completing, introducing implicitly-declared members, checking for
2462/// abstract types, etc.
Douglas Gregor23c94db2010-07-02 17:43:08 +00002463void Sema::CheckCompletedCXXClass(CXXRecordDecl *Record) {
Douglas Gregor1ab537b2009-12-03 18:33:45 +00002464 if (!Record || Record->isInvalidDecl())
2465 return;
2466
Eli Friedmanff2d8782009-12-16 20:00:27 +00002467 if (!Record->isDependentType())
Douglas Gregor23c94db2010-07-02 17:43:08 +00002468 AddImplicitlyDeclaredMembersToClass(Record);
Douglas Gregor159ef1e2010-01-06 04:44:19 +00002469
Eli Friedmanff2d8782009-12-16 20:00:27 +00002470 if (Record->isInvalidDecl())
2471 return;
2472
John McCall233a6412010-01-28 07:38:46 +00002473 // Set access bits correctly on the directly-declared conversions.
2474 UnresolvedSetImpl *Convs = Record->getConversionFunctions();
2475 for (UnresolvedSetIterator I = Convs->begin(), E = Convs->end(); I != E; ++I)
2476 Convs->setAccess(I, (*I)->getAccess());
2477
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00002478 // Determine whether we need to check for final overriders. We do
2479 // this either when there are virtual base classes (in which case we
2480 // may end up finding multiple final overriders for a given virtual
2481 // function) or any of the base classes is abstract (in which case
2482 // we might detect that this class is abstract).
2483 bool CheckFinalOverriders = false;
2484 if (Record->isPolymorphic() && !Record->isInvalidDecl() &&
2485 !Record->isDependentType()) {
2486 if (Record->getNumVBases())
2487 CheckFinalOverriders = true;
2488 else if (!Record->isAbstract()) {
2489 for (CXXRecordDecl::base_class_const_iterator B = Record->bases_begin(),
2490 BEnd = Record->bases_end();
2491 B != BEnd; ++B) {
2492 CXXRecordDecl *BaseDecl
2493 = cast<CXXRecordDecl>(B->getType()->getAs<RecordType>()->getDecl());
2494 if (BaseDecl->isAbstract()) {
2495 CheckFinalOverriders = true;
2496 break;
2497 }
2498 }
2499 }
Douglas Gregor1ab537b2009-12-03 18:33:45 +00002500 }
2501
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00002502 if (CheckFinalOverriders) {
2503 CXXFinalOverriderMap FinalOverriders;
2504 Record->getFinalOverriders(FinalOverriders);
2505
2506 for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(),
2507 MEnd = FinalOverriders.end();
2508 M != MEnd; ++M) {
2509 for (OverridingMethods::iterator SO = M->second.begin(),
2510 SOEnd = M->second.end();
2511 SO != SOEnd; ++SO) {
2512 assert(SO->second.size() > 0 &&
2513 "All virtual functions have overridding virtual functions");
2514 if (SO->second.size() == 1) {
2515 // C++ [class.abstract]p4:
2516 // A class is abstract if it contains or inherits at least one
2517 // pure virtual function for which the final overrider is pure
2518 // virtual.
2519 if (SO->second.front().Method->isPure())
2520 Record->setAbstract(true);
2521 continue;
2522 }
2523
2524 // C++ [class.virtual]p2:
2525 // In a derived class, if a virtual member function of a base
2526 // class subobject has more than one final overrider the
2527 // program is ill-formed.
2528 Diag(Record->getLocation(), diag::err_multiple_final_overriders)
2529 << (NamedDecl *)M->first << Record;
2530 Diag(M->first->getLocation(), diag::note_overridden_virtual_function);
2531 for (OverridingMethods::overriding_iterator OM = SO->second.begin(),
2532 OMEnd = SO->second.end();
2533 OM != OMEnd; ++OM)
2534 Diag(OM->Method->getLocation(), diag::note_final_overrider)
2535 << (NamedDecl *)M->first << OM->Method->getParent();
2536
2537 Record->setInvalidDecl();
2538 }
2539 }
2540 }
2541
2542 if (Record->isAbstract() && !Record->isInvalidDecl())
Douglas Gregor1ab537b2009-12-03 18:33:45 +00002543 (void)AbstractClassUsageDiagnoser(*this, Record);
Douglas Gregor325e5932010-04-15 00:00:53 +00002544
2545 // If this is not an aggregate type and has no user-declared constructor,
2546 // complain about any non-static data members of reference or const scalar
2547 // type, since they will never get initializers.
2548 if (!Record->isInvalidDecl() && !Record->isDependentType() &&
2549 !Record->isAggregate() && !Record->hasUserDeclaredConstructor()) {
2550 bool Complained = false;
2551 for (RecordDecl::field_iterator F = Record->field_begin(),
2552 FEnd = Record->field_end();
2553 F != FEnd; ++F) {
2554 if (F->getType()->isReferenceType() ||
Benjamin Kramer1deea662010-04-16 17:43:15 +00002555 (F->getType().isConstQualified() && F->getType()->isScalarType())) {
Douglas Gregor325e5932010-04-15 00:00:53 +00002556 if (!Complained) {
2557 Diag(Record->getLocation(), diag::warn_no_constructor_for_refconst)
2558 << Record->getTagKind() << Record;
2559 Complained = true;
2560 }
2561
2562 Diag(F->getLocation(), diag::note_refconst_member_not_initialized)
2563 << F->getType()->isReferenceType()
2564 << F->getDeclName();
2565 }
2566 }
2567 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +00002568
2569 if (Record->isDynamicClass())
2570 DynamicClasses.push_back(Record);
Douglas Gregor1ab537b2009-12-03 18:33:45 +00002571}
2572
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00002573void Sema::ActOnFinishCXXMemberSpecification(Scope* S, SourceLocation RLoc,
Chris Lattnerb28317a2009-03-28 19:18:32 +00002574 DeclPtrTy TagDecl,
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00002575 SourceLocation LBrac,
Douglas Gregor0b4c9b52010-03-29 14:42:08 +00002576 SourceLocation RBrac,
2577 AttributeList *AttrList) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00002578 if (!TagDecl)
2579 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002580
Douglas Gregor42af25f2009-05-11 19:58:34 +00002581 AdjustDeclIfTemplate(TagDecl);
Douglas Gregor1ab537b2009-12-03 18:33:45 +00002582
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00002583 ActOnFields(S, RLoc, TagDecl,
Chris Lattnerb28317a2009-03-28 19:18:32 +00002584 (DeclPtrTy*)FieldCollector->getCurFields(),
Douglas Gregor0b4c9b52010-03-29 14:42:08 +00002585 FieldCollector->getCurNumFields(), LBrac, RBrac, AttrList);
Douglas Gregor2943aed2009-03-03 04:44:36 +00002586
Douglas Gregor23c94db2010-07-02 17:43:08 +00002587 CheckCompletedCXXClass(
2588 dyn_cast_or_null<CXXRecordDecl>(TagDecl.getAs<Decl>()));
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00002589}
2590
Douglas Gregord92ec472010-07-01 05:10:53 +00002591namespace {
2592 /// \brief Helper class that collects exception specifications for
2593 /// implicitly-declared special member functions.
2594 class ImplicitExceptionSpecification {
2595 ASTContext &Context;
2596 bool AllowsAllExceptions;
2597 llvm::SmallPtrSet<CanQualType, 4> ExceptionsSeen;
2598 llvm::SmallVector<QualType, 4> Exceptions;
2599
2600 public:
2601 explicit ImplicitExceptionSpecification(ASTContext &Context)
2602 : Context(Context), AllowsAllExceptions(false) { }
2603
2604 /// \brief Whether the special member function should have any
2605 /// exception specification at all.
2606 bool hasExceptionSpecification() const {
2607 return !AllowsAllExceptions;
2608 }
2609
2610 /// \brief Whether the special member function should have a
2611 /// throw(...) exception specification (a Microsoft extension).
2612 bool hasAnyExceptionSpecification() const {
2613 return false;
2614 }
2615
2616 /// \brief The number of exceptions in the exception specification.
2617 unsigned size() const { return Exceptions.size(); }
2618
2619 /// \brief The set of exceptions in the exception specification.
2620 const QualType *data() const { return Exceptions.data(); }
2621
2622 /// \brief Note that
2623 void CalledDecl(CXXMethodDecl *Method) {
2624 // If we already know that we allow all exceptions, do nothing.
Douglas Gregor4681ca82010-07-01 15:29:53 +00002625 if (AllowsAllExceptions || !Method)
Douglas Gregord92ec472010-07-01 05:10:53 +00002626 return;
2627
2628 const FunctionProtoType *Proto
2629 = Method->getType()->getAs<FunctionProtoType>();
2630
2631 // If this function can throw any exceptions, make a note of that.
2632 if (!Proto->hasExceptionSpec() || Proto->hasAnyExceptionSpec()) {
2633 AllowsAllExceptions = true;
2634 ExceptionsSeen.clear();
2635 Exceptions.clear();
2636 return;
2637 }
2638
2639 // Record the exceptions in this function's exception specification.
2640 for (FunctionProtoType::exception_iterator E = Proto->exception_begin(),
2641 EEnd = Proto->exception_end();
2642 E != EEnd; ++E)
2643 if (ExceptionsSeen.insert(Context.getCanonicalType(*E)))
2644 Exceptions.push_back(*E);
2645 }
2646 };
2647}
2648
2649
Douglas Gregor396b7cd2008-11-03 17:51:48 +00002650/// AddImplicitlyDeclaredMembersToClass - Adds any implicitly-declared
2651/// special functions, such as the default constructor, copy
2652/// constructor, or destructor, to the given C++ class (C++
2653/// [special]p1). This routine can only be executed just before the
2654/// definition of the class is complete.
Douglas Gregor23c94db2010-07-02 17:43:08 +00002655void Sema::AddImplicitlyDeclaredMembersToClass(CXXRecordDecl *ClassDecl) {
Douglas Gregor32df23e2010-07-01 22:02:46 +00002656 if (!ClassDecl->hasUserDeclaredConstructor())
Douglas Gregor18274032010-07-03 00:47:00 +00002657 ++ASTContext::NumImplicitDefaultConstructors;
Douglas Gregor396b7cd2008-11-03 17:51:48 +00002658
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00002659 if (!ClassDecl->hasUserDeclaredCopyConstructor())
Douglas Gregor22584312010-07-02 23:41:54 +00002660 ++ASTContext::NumImplicitCopyConstructors;
Douglas Gregor396b7cd2008-11-03 17:51:48 +00002661
Douglas Gregora376d102010-07-02 21:50:04 +00002662 if (!ClassDecl->hasUserDeclaredCopyAssignment()) {
2663 ++ASTContext::NumImplicitCopyAssignmentOperators;
2664
2665 // If we have a dynamic class, then the copy assignment operator may be
2666 // virtual, so we have to declare it immediately. This ensures that, e.g.,
2667 // it shows up in the right place in the vtable and that we diagnose
2668 // problems with the implicit exception specification.
2669 if (ClassDecl->isDynamicClass())
2670 DeclareImplicitCopyAssignment(ClassDecl);
2671 }
Sebastian Redl64b45f72009-01-05 20:52:13 +00002672
Douglas Gregor4923aa22010-07-02 20:37:36 +00002673 if (!ClassDecl->hasUserDeclaredDestructor()) {
2674 ++ASTContext::NumImplicitDestructors;
2675
2676 // If we have a dynamic class, then the destructor may be virtual, so we
2677 // have to declare the destructor immediately. This ensures that, e.g., it
2678 // shows up in the right place in the vtable and that we diagnose problems
2679 // with the implicit exception specification.
2680 if (ClassDecl->isDynamicClass())
2681 DeclareImplicitDestructor(ClassDecl);
2682 }
Douglas Gregor396b7cd2008-11-03 17:51:48 +00002683}
2684
Douglas Gregor6569d682009-05-27 23:11:45 +00002685void Sema::ActOnReenterTemplateScope(Scope *S, DeclPtrTy TemplateD) {
Douglas Gregor1cdcc572009-09-10 00:12:48 +00002686 Decl *D = TemplateD.getAs<Decl>();
2687 if (!D)
2688 return;
2689
2690 TemplateParameterList *Params = 0;
2691 if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D))
2692 Params = Template->getTemplateParameters();
2693 else if (ClassTemplatePartialSpecializationDecl *PartialSpec
2694 = dyn_cast<ClassTemplatePartialSpecializationDecl>(D))
2695 Params = PartialSpec->getTemplateParameters();
2696 else
Douglas Gregor6569d682009-05-27 23:11:45 +00002697 return;
2698
Douglas Gregor6569d682009-05-27 23:11:45 +00002699 for (TemplateParameterList::iterator Param = Params->begin(),
2700 ParamEnd = Params->end();
2701 Param != ParamEnd; ++Param) {
2702 NamedDecl *Named = cast<NamedDecl>(*Param);
2703 if (Named->getDeclName()) {
2704 S->AddDecl(DeclPtrTy::make(Named));
2705 IdResolver.AddDecl(Named);
2706 }
2707 }
2708}
2709
John McCall7a1dc562009-12-19 10:49:29 +00002710void Sema::ActOnStartDelayedMemberDeclarations(Scope *S, DeclPtrTy RecordD) {
2711 if (!RecordD) return;
2712 AdjustDeclIfTemplate(RecordD);
2713 CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordD.getAs<Decl>());
2714 PushDeclContext(S, Record);
2715}
2716
2717void Sema::ActOnFinishDelayedMemberDeclarations(Scope *S, DeclPtrTy RecordD) {
2718 if (!RecordD) return;
2719 PopDeclContext();
2720}
2721
Douglas Gregor72b505b2008-12-16 21:30:33 +00002722/// ActOnStartDelayedCXXMethodDeclaration - We have completed
2723/// parsing a top-level (non-nested) C++ class, and we are now
2724/// parsing those parts of the given Method declaration that could
2725/// not be parsed earlier (C++ [class.mem]p2), such as default
2726/// arguments. This action should enter the scope of the given
2727/// Method declaration as if we had just parsed the qualified method
2728/// name. However, it should not bring the parameters into scope;
2729/// that will be performed by ActOnDelayedCXXMethodParameter.
Chris Lattnerb28317a2009-03-28 19:18:32 +00002730void Sema::ActOnStartDelayedCXXMethodDeclaration(Scope *S, DeclPtrTy MethodD) {
Douglas Gregor72b505b2008-12-16 21:30:33 +00002731}
2732
2733/// ActOnDelayedCXXMethodParameter - We've already started a delayed
2734/// C++ method declaration. We're (re-)introducing the given
2735/// function parameter into scope for use in parsing later parts of
2736/// the method declaration. For example, we could see an
2737/// ActOnParamDefaultArgument event for this parameter.
Chris Lattnerb28317a2009-03-28 19:18:32 +00002738void Sema::ActOnDelayedCXXMethodParameter(Scope *S, DeclPtrTy ParamD) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00002739 if (!ParamD)
2740 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002741
Chris Lattnerb28317a2009-03-28 19:18:32 +00002742 ParmVarDecl *Param = cast<ParmVarDecl>(ParamD.getAs<Decl>());
Douglas Gregor61366e92008-12-24 00:01:03 +00002743
2744 // If this parameter has an unparsed default argument, clear it out
2745 // to make way for the parsed default argument.
2746 if (Param->hasUnparsedDefaultArg())
2747 Param->setDefaultArg(0);
2748
Chris Lattnerb28317a2009-03-28 19:18:32 +00002749 S->AddDecl(DeclPtrTy::make(Param));
Douglas Gregor72b505b2008-12-16 21:30:33 +00002750 if (Param->getDeclName())
2751 IdResolver.AddDecl(Param);
2752}
2753
2754/// ActOnFinishDelayedCXXMethodDeclaration - We have finished
2755/// processing the delayed method declaration for Method. The method
2756/// declaration is now considered finished. There may be a separate
2757/// ActOnStartOfFunctionDef action later (not necessarily
2758/// immediately!) for this method, if it was also defined inside the
2759/// class body.
Chris Lattnerb28317a2009-03-28 19:18:32 +00002760void Sema::ActOnFinishDelayedCXXMethodDeclaration(Scope *S, DeclPtrTy MethodD) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00002761 if (!MethodD)
2762 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002763
Douglas Gregorefd5bda2009-08-24 11:57:43 +00002764 AdjustDeclIfTemplate(MethodD);
Mike Stump1eb44332009-09-09 15:08:12 +00002765
Chris Lattnerb28317a2009-03-28 19:18:32 +00002766 FunctionDecl *Method = cast<FunctionDecl>(MethodD.getAs<Decl>());
Douglas Gregor72b505b2008-12-16 21:30:33 +00002767
2768 // Now that we have our default arguments, check the constructor
2769 // again. It could produce additional diagnostics or affect whether
2770 // the class has implicitly-declared destructors, among other
2771 // things.
Chris Lattner6e475012009-04-25 08:35:12 +00002772 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Method))
2773 CheckConstructor(Constructor);
Douglas Gregor72b505b2008-12-16 21:30:33 +00002774
2775 // Check the default arguments, which we may have added.
2776 if (!Method->isInvalidDecl())
2777 CheckCXXDefaultArguments(Method);
2778}
2779
Douglas Gregor42a552f2008-11-05 20:51:48 +00002780/// CheckConstructorDeclarator - Called by ActOnDeclarator to check
Douglas Gregor72b505b2008-12-16 21:30:33 +00002781/// the well-formedness of the constructor declarator @p D with type @p
Douglas Gregor42a552f2008-11-05 20:51:48 +00002782/// R. If there are any errors in the declarator, this routine will
Chris Lattner65401802009-04-25 08:28:21 +00002783/// emit diagnostics and set the invalid bit to true. In any case, the type
2784/// will be updated to reflect a well-formed type for the constructor and
2785/// returned.
2786QualType Sema::CheckConstructorDeclarator(Declarator &D, QualType R,
2787 FunctionDecl::StorageClass &SC) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00002788 bool isVirtual = D.getDeclSpec().isVirtualSpecified();
Douglas Gregor42a552f2008-11-05 20:51:48 +00002789
2790 // C++ [class.ctor]p3:
2791 // A constructor shall not be virtual (10.3) or static (9.4). A
2792 // constructor can be invoked for a const, volatile or const
2793 // volatile object. A constructor shall not be declared const,
2794 // volatile, or const volatile (9.3.2).
2795 if (isVirtual) {
Chris Lattner65401802009-04-25 08:28:21 +00002796 if (!D.isInvalidType())
2797 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
2798 << "virtual" << SourceRange(D.getDeclSpec().getVirtualSpecLoc())
2799 << SourceRange(D.getIdentifierLoc());
2800 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00002801 }
2802 if (SC == FunctionDecl::Static) {
Chris Lattner65401802009-04-25 08:28:21 +00002803 if (!D.isInvalidType())
2804 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
2805 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
2806 << SourceRange(D.getIdentifierLoc());
2807 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00002808 SC = FunctionDecl::None;
2809 }
Mike Stump1eb44332009-09-09 15:08:12 +00002810
Chris Lattner65401802009-04-25 08:28:21 +00002811 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
2812 if (FTI.TypeQuals != 0) {
John McCall0953e762009-09-24 19:53:00 +00002813 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002814 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
2815 << "const" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00002816 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002817 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
2818 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00002819 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002820 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
2821 << "restrict" << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +00002822 }
Mike Stump1eb44332009-09-09 15:08:12 +00002823
Douglas Gregor42a552f2008-11-05 20:51:48 +00002824 // Rebuild the function type "R" without any type qualifiers (in
2825 // case any of the errors above fired) and with "void" as the
Douglas Gregord92ec472010-07-01 05:10:53 +00002826 // return type, since constructors don't have return types.
John McCall183700f2009-09-21 23:43:11 +00002827 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
Chris Lattner65401802009-04-25 08:28:21 +00002828 return Context.getFunctionType(Context.VoidTy, Proto->arg_type_begin(),
2829 Proto->getNumArgs(),
Douglas Gregorce056bc2010-02-21 22:15:06 +00002830 Proto->isVariadic(), 0,
2831 Proto->hasExceptionSpec(),
2832 Proto->hasAnyExceptionSpec(),
2833 Proto->getNumExceptions(),
2834 Proto->exception_begin(),
Rafael Espindola264ba482010-03-30 20:24:48 +00002835 Proto->getExtInfo());
Douglas Gregor42a552f2008-11-05 20:51:48 +00002836}
2837
Douglas Gregor72b505b2008-12-16 21:30:33 +00002838/// CheckConstructor - Checks a fully-formed constructor for
2839/// well-formedness, issuing any diagnostics required. Returns true if
2840/// the constructor declarator is invalid.
Chris Lattner6e475012009-04-25 08:35:12 +00002841void Sema::CheckConstructor(CXXConstructorDecl *Constructor) {
Mike Stump1eb44332009-09-09 15:08:12 +00002842 CXXRecordDecl *ClassDecl
Douglas Gregor33297562009-03-27 04:38:56 +00002843 = dyn_cast<CXXRecordDecl>(Constructor->getDeclContext());
2844 if (!ClassDecl)
Chris Lattner6e475012009-04-25 08:35:12 +00002845 return Constructor->setInvalidDecl();
Douglas Gregor72b505b2008-12-16 21:30:33 +00002846
2847 // C++ [class.copy]p3:
2848 // A declaration of a constructor for a class X is ill-formed if
2849 // its first parameter is of type (optionally cv-qualified) X and
2850 // either there are no other parameters or else all other
2851 // parameters have default arguments.
Douglas Gregor33297562009-03-27 04:38:56 +00002852 if (!Constructor->isInvalidDecl() &&
Mike Stump1eb44332009-09-09 15:08:12 +00002853 ((Constructor->getNumParams() == 1) ||
2854 (Constructor->getNumParams() > 1 &&
Douglas Gregor66724ea2009-11-14 01:20:54 +00002855 Constructor->getParamDecl(1)->hasDefaultArg())) &&
2856 Constructor->getTemplateSpecializationKind()
2857 != TSK_ImplicitInstantiation) {
Douglas Gregor72b505b2008-12-16 21:30:33 +00002858 QualType ParamType = Constructor->getParamDecl(0)->getType();
2859 QualType ClassTy = Context.getTagDeclType(ClassDecl);
2860 if (Context.getCanonicalType(ParamType).getUnqualifiedType() == ClassTy) {
Douglas Gregora3a83512009-04-01 23:51:29 +00002861 SourceLocation ParamLoc = Constructor->getParamDecl(0)->getLocation();
Douglas Gregoraeb4a282010-05-27 21:28:21 +00002862 const char *ConstRef
2863 = Constructor->getParamDecl(0)->getIdentifier() ? "const &"
2864 : " const &";
Douglas Gregora3a83512009-04-01 23:51:29 +00002865 Diag(ParamLoc, diag::err_constructor_byvalue_arg)
Douglas Gregoraeb4a282010-05-27 21:28:21 +00002866 << FixItHint::CreateInsertion(ParamLoc, ConstRef);
Douglas Gregor66724ea2009-11-14 01:20:54 +00002867
2868 // FIXME: Rather that making the constructor invalid, we should endeavor
2869 // to fix the type.
Chris Lattner6e475012009-04-25 08:35:12 +00002870 Constructor->setInvalidDecl();
Douglas Gregor72b505b2008-12-16 21:30:33 +00002871 }
2872 }
Mike Stump1eb44332009-09-09 15:08:12 +00002873
John McCall3d043362010-04-13 07:45:41 +00002874 // Notify the class that we've added a constructor. In principle we
2875 // don't need to do this for out-of-line declarations; in practice
2876 // we only instantiate the most recent declaration of a method, so
2877 // we have to call this for everything but friends.
2878 if (!Constructor->getFriendObjectKind())
2879 ClassDecl->addedConstructor(Context, Constructor);
Douglas Gregor72b505b2008-12-16 21:30:33 +00002880}
2881
John McCall15442822010-08-04 01:04:25 +00002882/// CheckDestructor - Checks a fully-formed destructor definition for
2883/// well-formedness, issuing any diagnostics required. Returns true
2884/// on error.
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00002885bool Sema::CheckDestructor(CXXDestructorDecl *Destructor) {
Anders Carlsson6d701392009-11-15 22:49:34 +00002886 CXXRecordDecl *RD = Destructor->getParent();
2887
2888 if (Destructor->isVirtual()) {
2889 SourceLocation Loc;
2890
2891 if (!Destructor->isImplicit())
2892 Loc = Destructor->getLocation();
2893 else
2894 Loc = RD->getLocation();
2895
2896 // If we have a virtual destructor, look up the deallocation function
2897 FunctionDecl *OperatorDelete = 0;
2898 DeclarationName Name =
2899 Context.DeclarationNames.getCXXOperatorName(OO_Delete);
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00002900 if (FindDeallocationFunction(Loc, RD, Name, OperatorDelete))
Anders Carlsson37909802009-11-30 21:24:50 +00002901 return true;
John McCall5efd91a2010-07-03 18:33:00 +00002902
2903 MarkDeclarationReferenced(Loc, OperatorDelete);
Anders Carlsson37909802009-11-30 21:24:50 +00002904
2905 Destructor->setOperatorDelete(OperatorDelete);
Anders Carlsson6d701392009-11-15 22:49:34 +00002906 }
Anders Carlsson37909802009-11-30 21:24:50 +00002907
2908 return false;
Anders Carlsson6d701392009-11-15 22:49:34 +00002909}
2910
Mike Stump1eb44332009-09-09 15:08:12 +00002911static inline bool
Anders Carlsson7786d1c2009-04-30 23:18:11 +00002912FTIHasSingleVoidArgument(DeclaratorChunk::FunctionTypeInfo &FTI) {
2913 return (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
2914 FTI.ArgInfo[0].Param &&
2915 FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType()->isVoidType());
2916}
2917
Douglas Gregor42a552f2008-11-05 20:51:48 +00002918/// CheckDestructorDeclarator - Called by ActOnDeclarator to check
2919/// the well-formednes of the destructor declarator @p D with type @p
2920/// R. If there are any errors in the declarator, this routine will
Chris Lattner65401802009-04-25 08:28:21 +00002921/// emit diagnostics and set the declarator to invalid. Even if this happens,
2922/// will be updated to reflect a well-formed type for the destructor and
2923/// returned.
Douglas Gregord92ec472010-07-01 05:10:53 +00002924QualType Sema::CheckDestructorDeclarator(Declarator &D, QualType R,
Chris Lattner65401802009-04-25 08:28:21 +00002925 FunctionDecl::StorageClass& SC) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00002926 // C++ [class.dtor]p1:
2927 // [...] A typedef-name that names a class is a class-name
2928 // (7.1.3); however, a typedef-name that names a class shall not
2929 // be used as the identifier in the declarator for a destructor
2930 // declaration.
Douglas Gregor3f9a0562009-11-03 01:35:08 +00002931 QualType DeclaratorType = GetTypeFromParser(D.getName().DestructorName);
Douglas Gregord92ec472010-07-01 05:10:53 +00002932 if (isa<TypedefType>(DeclaratorType))
Chris Lattner65401802009-04-25 08:28:21 +00002933 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
Douglas Gregor1a51b4a2009-02-09 15:09:02 +00002934 << DeclaratorType;
Douglas Gregor42a552f2008-11-05 20:51:48 +00002935
2936 // C++ [class.dtor]p2:
2937 // A destructor is used to destroy objects of its class type. A
2938 // destructor takes no parameters, and no return type can be
2939 // specified for it (not even void). The address of a destructor
2940 // shall not be taken. A destructor shall not be static. A
2941 // destructor can be invoked for a const, volatile or const
2942 // volatile object. A destructor shall not be declared const,
2943 // volatile or const volatile (9.3.2).
2944 if (SC == FunctionDecl::Static) {
Chris Lattner65401802009-04-25 08:28:21 +00002945 if (!D.isInvalidType())
2946 Diag(D.getIdentifierLoc(), diag::err_destructor_cannot_be)
2947 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
Douglas Gregord92ec472010-07-01 05:10:53 +00002948 << SourceRange(D.getIdentifierLoc())
2949 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
2950
Douglas Gregor42a552f2008-11-05 20:51:48 +00002951 SC = FunctionDecl::None;
2952 }
Chris Lattner65401802009-04-25 08:28:21 +00002953 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00002954 // Destructors don't have return types, but the parser will
2955 // happily parse something like:
2956 //
2957 // class X {
2958 // float ~X();
2959 // };
2960 //
2961 // The return type will be eliminated later.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002962 Diag(D.getIdentifierLoc(), diag::err_destructor_return_type)
2963 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
2964 << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +00002965 }
Mike Stump1eb44332009-09-09 15:08:12 +00002966
Chris Lattner65401802009-04-25 08:28:21 +00002967 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
2968 if (FTI.TypeQuals != 0 && !D.isInvalidType()) {
John McCall0953e762009-09-24 19:53:00 +00002969 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002970 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
2971 << "const" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00002972 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002973 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
2974 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00002975 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002976 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
2977 << "restrict" << SourceRange(D.getIdentifierLoc());
Chris Lattner65401802009-04-25 08:28:21 +00002978 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00002979 }
2980
2981 // Make sure we don't have any parameters.
Anders Carlsson7786d1c2009-04-30 23:18:11 +00002982 if (FTI.NumArgs > 0 && !FTIHasSingleVoidArgument(FTI)) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00002983 Diag(D.getIdentifierLoc(), diag::err_destructor_with_params);
2984
2985 // Delete the parameters.
Chris Lattner65401802009-04-25 08:28:21 +00002986 FTI.freeArgs();
2987 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00002988 }
2989
Mike Stump1eb44332009-09-09 15:08:12 +00002990 // Make sure the destructor isn't variadic.
Chris Lattner65401802009-04-25 08:28:21 +00002991 if (FTI.isVariadic) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00002992 Diag(D.getIdentifierLoc(), diag::err_destructor_variadic);
Chris Lattner65401802009-04-25 08:28:21 +00002993 D.setInvalidType();
2994 }
Douglas Gregor42a552f2008-11-05 20:51:48 +00002995
2996 // Rebuild the function type "R" without any type qualifiers or
2997 // parameters (in case any of the errors above fired) and with
2998 // "void" as the return type, since destructors don't have return
Douglas Gregord92ec472010-07-01 05:10:53 +00002999 // types.
3000 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
3001 if (!Proto)
3002 return QualType();
3003
Douglas Gregorce056bc2010-02-21 22:15:06 +00003004 return Context.getFunctionType(Context.VoidTy, 0, 0, false, 0,
Douglas Gregord92ec472010-07-01 05:10:53 +00003005 Proto->hasExceptionSpec(),
3006 Proto->hasAnyExceptionSpec(),
3007 Proto->getNumExceptions(),
3008 Proto->exception_begin(),
3009 Proto->getExtInfo());
Douglas Gregor42a552f2008-11-05 20:51:48 +00003010}
3011
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003012/// CheckConversionDeclarator - Called by ActOnDeclarator to check the
3013/// well-formednes of the conversion function declarator @p D with
3014/// type @p R. If there are any errors in the declarator, this routine
3015/// will emit diagnostics and return true. Otherwise, it will return
3016/// false. Either way, the type @p R will be updated to reflect a
3017/// well-formed type for the conversion operator.
Chris Lattner6e475012009-04-25 08:35:12 +00003018void Sema::CheckConversionDeclarator(Declarator &D, QualType &R,
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003019 FunctionDecl::StorageClass& SC) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003020 // C++ [class.conv.fct]p1:
3021 // Neither parameter types nor return type can be specified. The
Eli Friedman33a31382009-08-05 19:21:58 +00003022 // type of a conversion function (8.3.5) is "function taking no
Mike Stump1eb44332009-09-09 15:08:12 +00003023 // parameter returning conversion-type-id."
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003024 if (SC == FunctionDecl::Static) {
Chris Lattner6e475012009-04-25 08:35:12 +00003025 if (!D.isInvalidType())
3026 Diag(D.getIdentifierLoc(), diag::err_conv_function_not_member)
3027 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
3028 << SourceRange(D.getIdentifierLoc());
3029 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003030 SC = FunctionDecl::None;
3031 }
John McCalla3f81372010-04-13 00:04:31 +00003032
3033 QualType ConvType = GetTypeFromParser(D.getName().ConversionFunctionId);
3034
Chris Lattner6e475012009-04-25 08:35:12 +00003035 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003036 // Conversion functions don't have return types, but the parser will
3037 // happily parse something like:
3038 //
3039 // class X {
3040 // float operator bool();
3041 // };
3042 //
3043 // The return type will be changed later anyway.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003044 Diag(D.getIdentifierLoc(), diag::err_conv_function_return_type)
3045 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
3046 << SourceRange(D.getIdentifierLoc());
John McCalla3f81372010-04-13 00:04:31 +00003047 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003048 }
3049
John McCalla3f81372010-04-13 00:04:31 +00003050 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
3051
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003052 // Make sure we don't have any parameters.
John McCalla3f81372010-04-13 00:04:31 +00003053 if (Proto->getNumArgs() > 0) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003054 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_params);
3055
3056 // Delete the parameters.
Chris Lattner1833a832009-01-20 21:06:38 +00003057 D.getTypeObject(0).Fun.freeArgs();
Chris Lattner6e475012009-04-25 08:35:12 +00003058 D.setInvalidType();
John McCalla3f81372010-04-13 00:04:31 +00003059 } else if (Proto->isVariadic()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003060 Diag(D.getIdentifierLoc(), diag::err_conv_function_variadic);
Chris Lattner6e475012009-04-25 08:35:12 +00003061 D.setInvalidType();
3062 }
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003063
John McCalla3f81372010-04-13 00:04:31 +00003064 // Diagnose "&operator bool()" and other such nonsense. This
3065 // is actually a gcc extension which we don't support.
3066 if (Proto->getResultType() != ConvType) {
3067 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_complex_decl)
3068 << Proto->getResultType();
3069 D.setInvalidType();
3070 ConvType = Proto->getResultType();
3071 }
3072
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003073 // C++ [class.conv.fct]p4:
3074 // The conversion-type-id shall not represent a function type nor
3075 // an array type.
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003076 if (ConvType->isArrayType()) {
3077 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_array);
3078 ConvType = Context.getPointerType(ConvType);
Chris Lattner6e475012009-04-25 08:35:12 +00003079 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003080 } else if (ConvType->isFunctionType()) {
3081 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_function);
3082 ConvType = Context.getPointerType(ConvType);
Chris Lattner6e475012009-04-25 08:35:12 +00003083 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003084 }
3085
3086 // Rebuild the function type "R" without any parameters (in case any
3087 // of the errors above fired) and with the conversion type as the
Mike Stump1eb44332009-09-09 15:08:12 +00003088 // return type.
John McCalla3f81372010-04-13 00:04:31 +00003089 if (D.isInvalidType()) {
3090 R = Context.getFunctionType(ConvType, 0, 0, false,
3091 Proto->getTypeQuals(),
3092 Proto->hasExceptionSpec(),
3093 Proto->hasAnyExceptionSpec(),
3094 Proto->getNumExceptions(),
3095 Proto->exception_begin(),
3096 Proto->getExtInfo());
3097 }
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003098
Douglas Gregor09f41cf2009-01-14 15:45:31 +00003099 // C++0x explicit conversion operators.
3100 if (D.getDeclSpec().isExplicitSpecified() && !getLangOptions().CPlusPlus0x)
Mike Stump1eb44332009-09-09 15:08:12 +00003101 Diag(D.getDeclSpec().getExplicitSpecLoc(),
Douglas Gregor09f41cf2009-01-14 15:45:31 +00003102 diag::warn_explicit_conversion_functions)
3103 << SourceRange(D.getDeclSpec().getExplicitSpecLoc());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003104}
3105
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003106/// ActOnConversionDeclarator - Called by ActOnDeclarator to complete
3107/// the declaration of the given C++ conversion function. This routine
3108/// is responsible for recording the conversion function in the C++
3109/// class, if possible.
Chris Lattnerb28317a2009-03-28 19:18:32 +00003110Sema::DeclPtrTy Sema::ActOnConversionDeclarator(CXXConversionDecl *Conversion) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003111 assert(Conversion && "Expected to receive a conversion function declaration");
3112
Douglas Gregor9d350972008-12-12 08:25:50 +00003113 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Conversion->getDeclContext());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003114
3115 // Make sure we aren't redeclaring the conversion function.
3116 QualType ConvType = Context.getCanonicalType(Conversion->getConversionType());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003117
3118 // C++ [class.conv.fct]p1:
3119 // [...] A conversion function is never used to convert a
3120 // (possibly cv-qualified) object to the (possibly cv-qualified)
3121 // same object type (or a reference to it), to a (possibly
3122 // cv-qualified) base class of that type (or a reference to it),
3123 // or to (possibly cv-qualified) void.
Mike Stump390b4cc2009-05-16 07:39:55 +00003124 // FIXME: Suppress this warning if the conversion function ends up being a
3125 // virtual function that overrides a virtual function in a base class.
Mike Stump1eb44332009-09-09 15:08:12 +00003126 QualType ClassType
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003127 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Ted Kremenek6217b802009-07-29 21:53:49 +00003128 if (const ReferenceType *ConvTypeRef = ConvType->getAs<ReferenceType>())
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003129 ConvType = ConvTypeRef->getPointeeType();
3130 if (ConvType->isRecordType()) {
3131 ConvType = Context.getCanonicalType(ConvType).getUnqualifiedType();
3132 if (ConvType == ClassType)
Chris Lattner5dc266a2008-11-20 06:13:02 +00003133 Diag(Conversion->getLocation(), diag::warn_conv_to_self_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00003134 << ClassType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003135 else if (IsDerivedFrom(ClassType, ConvType))
Chris Lattner5dc266a2008-11-20 06:13:02 +00003136 Diag(Conversion->getLocation(), diag::warn_conv_to_base_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00003137 << ClassType << ConvType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003138 } else if (ConvType->isVoidType()) {
Chris Lattner5dc266a2008-11-20 06:13:02 +00003139 Diag(Conversion->getLocation(), diag::warn_conv_to_void_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00003140 << ClassType << ConvType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003141 }
3142
Douglas Gregor48026d22010-01-11 18:40:55 +00003143 if (Conversion->getPrimaryTemplate()) {
3144 // ignore specializations
3145 } else if (Conversion->getPreviousDeclaration()) {
Mike Stump1eb44332009-09-09 15:08:12 +00003146 if (FunctionTemplateDecl *ConversionTemplate
Douglas Gregor0c551062010-01-11 18:53:25 +00003147 = Conversion->getDescribedFunctionTemplate()) {
3148 if (ClassDecl->replaceConversion(
3149 ConversionTemplate->getPreviousDeclaration(),
3150 ConversionTemplate))
3151 return DeclPtrTy::make(ConversionTemplate);
3152 } else if (ClassDecl->replaceConversion(Conversion->getPreviousDeclaration(),
3153 Conversion))
John McCallba135432009-11-21 08:51:07 +00003154 return DeclPtrTy::make(Conversion);
Douglas Gregor70316a02008-12-26 15:00:45 +00003155 assert(Conversion->isInvalidDecl() && "Conversion should not get here.");
Mike Stump1eb44332009-09-09 15:08:12 +00003156 } else if (FunctionTemplateDecl *ConversionTemplate
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00003157 = Conversion->getDescribedFunctionTemplate())
Fariborz Jahaniandebc6292009-09-12 19:02:34 +00003158 ClassDecl->addConversionFunction(ConversionTemplate);
Douglas Gregor48026d22010-01-11 18:40:55 +00003159 else
Fariborz Jahaniandebc6292009-09-12 19:02:34 +00003160 ClassDecl->addConversionFunction(Conversion);
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003161
Chris Lattnerb28317a2009-03-28 19:18:32 +00003162 return DeclPtrTy::make(Conversion);
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003163}
3164
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003165//===----------------------------------------------------------------------===//
3166// Namespace Handling
3167//===----------------------------------------------------------------------===//
3168
3169/// ActOnStartNamespaceDef - This is called at the start of a namespace
3170/// definition.
Chris Lattnerb28317a2009-03-28 19:18:32 +00003171Sema::DeclPtrTy Sema::ActOnStartNamespaceDef(Scope *NamespcScope,
3172 SourceLocation IdentLoc,
3173 IdentifierInfo *II,
Anders Carlsson2a3503d2010-02-07 01:09:23 +00003174 SourceLocation LBrace,
3175 AttributeList *AttrList) {
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003176 NamespaceDecl *Namespc =
3177 NamespaceDecl::Create(Context, CurContext, IdentLoc, II);
3178 Namespc->setLBracLoc(LBrace);
3179
3180 Scope *DeclRegionScope = NamespcScope->getParent();
3181
Anders Carlsson2a3503d2010-02-07 01:09:23 +00003182 ProcessDeclAttributeList(DeclRegionScope, Namespc, AttrList);
3183
Eli Friedmanaa8b0d12010-08-05 06:57:20 +00003184 if (const VisibilityAttr *attr = Namespc->getAttr<VisibilityAttr>())
3185 PushPragmaVisibility(attr->getVisibility());
3186
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003187 if (II) {
3188 // C++ [namespace.def]p2:
3189 // The identifier in an original-namespace-definition shall not have been
3190 // previously defined in the declarative region in which the
3191 // original-namespace-definition appears. The identifier in an
3192 // original-namespace-definition is the name of the namespace. Subsequently
3193 // in that declarative region, it is treated as an original-namespace-name.
3194
John McCallf36e02d2009-10-09 21:13:30 +00003195 NamedDecl *PrevDecl
Douglas Gregorc83c6872010-04-15 22:33:43 +00003196 = LookupSingleName(DeclRegionScope, II, IdentLoc, LookupOrdinaryName,
John McCall7d384dd2009-11-18 07:57:50 +00003197 ForRedeclaration);
Mike Stump1eb44332009-09-09 15:08:12 +00003198
Douglas Gregor44b43212008-12-11 16:49:14 +00003199 if (NamespaceDecl *OrigNS = dyn_cast_or_null<NamespaceDecl>(PrevDecl)) {
3200 // This is an extended namespace definition.
3201 // Attach this namespace decl to the chain of extended namespace
3202 // definitions.
3203 OrigNS->setNextNamespace(Namespc);
3204 Namespc->setOriginalNamespace(OrigNS->getOriginalNamespace());
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003205
Mike Stump1eb44332009-09-09 15:08:12 +00003206 // Remove the previous declaration from the scope.
Chris Lattnerb28317a2009-03-28 19:18:32 +00003207 if (DeclRegionScope->isDeclScope(DeclPtrTy::make(OrigNS))) {
Douglas Gregore267ff32008-12-11 20:41:00 +00003208 IdResolver.RemoveDecl(OrigNS);
Chris Lattnerb28317a2009-03-28 19:18:32 +00003209 DeclRegionScope->RemoveDecl(DeclPtrTy::make(OrigNS));
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003210 }
Douglas Gregor44b43212008-12-11 16:49:14 +00003211 } else if (PrevDecl) {
3212 // This is an invalid name redefinition.
3213 Diag(Namespc->getLocation(), diag::err_redefinition_different_kind)
3214 << Namespc->getDeclName();
3215 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
3216 Namespc->setInvalidDecl();
3217 // Continue on to push Namespc as current DeclContext and return it.
Douglas Gregor7adb10f2009-09-15 22:30:29 +00003218 } else if (II->isStr("std") &&
3219 CurContext->getLookupContext()->isTranslationUnit()) {
3220 // This is the first "real" definition of the namespace "std", so update
3221 // our cache of the "std" namespace to point at this definition.
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00003222 if (NamespaceDecl *StdNS = getStdNamespace()) {
Douglas Gregor7adb10f2009-09-15 22:30:29 +00003223 // We had already defined a dummy namespace "std". Link this new
3224 // namespace definition to the dummy namespace "std".
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00003225 StdNS->setNextNamespace(Namespc);
3226 StdNS->setLocation(IdentLoc);
3227 Namespc->setOriginalNamespace(StdNS->getOriginalNamespace());
Douglas Gregor7adb10f2009-09-15 22:30:29 +00003228 }
3229
3230 // Make our StdNamespace cache point at the first real definition of the
3231 // "std" namespace.
3232 StdNamespace = Namespc;
Mike Stump1eb44332009-09-09 15:08:12 +00003233 }
Douglas Gregor44b43212008-12-11 16:49:14 +00003234
3235 PushOnScopeChains(Namespc, DeclRegionScope);
3236 } else {
John McCall9aeed322009-10-01 00:25:31 +00003237 // Anonymous namespaces.
John McCall5fdd7642009-12-16 02:06:49 +00003238 assert(Namespc->isAnonymousNamespace());
John McCall5fdd7642009-12-16 02:06:49 +00003239
3240 // Link the anonymous namespace into its parent.
3241 NamespaceDecl *PrevDecl;
3242 DeclContext *Parent = CurContext->getLookupContext();
3243 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
3244 PrevDecl = TU->getAnonymousNamespace();
3245 TU->setAnonymousNamespace(Namespc);
3246 } else {
3247 NamespaceDecl *ND = cast<NamespaceDecl>(Parent);
3248 PrevDecl = ND->getAnonymousNamespace();
3249 ND->setAnonymousNamespace(Namespc);
3250 }
3251
3252 // Link the anonymous namespace with its previous declaration.
3253 if (PrevDecl) {
3254 assert(PrevDecl->isAnonymousNamespace());
3255 assert(!PrevDecl->getNextNamespace());
3256 Namespc->setOriginalNamespace(PrevDecl->getOriginalNamespace());
3257 PrevDecl->setNextNamespace(Namespc);
3258 }
John McCall9aeed322009-10-01 00:25:31 +00003259
Douglas Gregora4181472010-03-24 00:46:35 +00003260 CurContext->addDecl(Namespc);
3261
John McCall9aeed322009-10-01 00:25:31 +00003262 // C++ [namespace.unnamed]p1. An unnamed-namespace-definition
3263 // behaves as if it were replaced by
3264 // namespace unique { /* empty body */ }
3265 // using namespace unique;
3266 // namespace unique { namespace-body }
3267 // where all occurrences of 'unique' in a translation unit are
3268 // replaced by the same identifier and this identifier differs
3269 // from all other identifiers in the entire program.
3270
3271 // We just create the namespace with an empty name and then add an
3272 // implicit using declaration, just like the standard suggests.
3273 //
3274 // CodeGen enforces the "universally unique" aspect by giving all
3275 // declarations semantically contained within an anonymous
3276 // namespace internal linkage.
3277
John McCall5fdd7642009-12-16 02:06:49 +00003278 if (!PrevDecl) {
3279 UsingDirectiveDecl* UD
3280 = UsingDirectiveDecl::Create(Context, CurContext,
3281 /* 'using' */ LBrace,
3282 /* 'namespace' */ SourceLocation(),
3283 /* qualifier */ SourceRange(),
3284 /* NNS */ NULL,
3285 /* identifier */ SourceLocation(),
3286 Namespc,
3287 /* Ancestor */ CurContext);
3288 UD->setImplicit();
3289 CurContext->addDecl(UD);
3290 }
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003291 }
3292
3293 // Although we could have an invalid decl (i.e. the namespace name is a
3294 // redefinition), push it as current DeclContext and try to continue parsing.
Mike Stump390b4cc2009-05-16 07:39:55 +00003295 // FIXME: We should be able to push Namespc here, so that the each DeclContext
3296 // for the namespace has the declarations that showed up in that particular
3297 // namespace definition.
Douglas Gregor44b43212008-12-11 16:49:14 +00003298 PushDeclContext(NamespcScope, Namespc);
Chris Lattnerb28317a2009-03-28 19:18:32 +00003299 return DeclPtrTy::make(Namespc);
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003300}
3301
Sebastian Redleb0d8c92009-11-23 15:34:23 +00003302/// getNamespaceDecl - Returns the namespace a decl represents. If the decl
3303/// is a namespace alias, returns the namespace it points to.
3304static inline NamespaceDecl *getNamespaceDecl(NamedDecl *D) {
3305 if (NamespaceAliasDecl *AD = dyn_cast_or_null<NamespaceAliasDecl>(D))
3306 return AD->getNamespace();
3307 return dyn_cast_or_null<NamespaceDecl>(D);
3308}
3309
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003310/// ActOnFinishNamespaceDef - This callback is called after a namespace is
3311/// exited. Decl is the DeclTy returned by ActOnStartNamespaceDef.
Chris Lattnerb28317a2009-03-28 19:18:32 +00003312void Sema::ActOnFinishNamespaceDef(DeclPtrTy D, SourceLocation RBrace) {
3313 Decl *Dcl = D.getAs<Decl>();
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003314 NamespaceDecl *Namespc = dyn_cast_or_null<NamespaceDecl>(Dcl);
3315 assert(Namespc && "Invalid parameter, expected NamespaceDecl");
3316 Namespc->setRBracLoc(RBrace);
3317 PopDeclContext();
Eli Friedmanaa8b0d12010-08-05 06:57:20 +00003318 if (Namespc->hasAttr<VisibilityAttr>())
3319 PopPragmaVisibility();
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003320}
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00003321
Douglas Gregor66992202010-06-29 17:53:46 +00003322/// \brief Retrieve the special "std" namespace, which may require us to
3323/// implicitly define the namespace.
Argyrios Kyrtzidis26faaac2010-08-02 07:14:39 +00003324NamespaceDecl *Sema::getOrCreateStdNamespace() {
Douglas Gregor66992202010-06-29 17:53:46 +00003325 if (!StdNamespace) {
3326 // The "std" namespace has not yet been defined, so build one implicitly.
3327 StdNamespace = NamespaceDecl::Create(Context,
3328 Context.getTranslationUnitDecl(),
3329 SourceLocation(),
3330 &PP.getIdentifierTable().get("std"));
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00003331 getStdNamespace()->setImplicit(true);
Douglas Gregor66992202010-06-29 17:53:46 +00003332 }
3333
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00003334 return getStdNamespace();
Douglas Gregor66992202010-06-29 17:53:46 +00003335}
3336
Chris Lattnerb28317a2009-03-28 19:18:32 +00003337Sema::DeclPtrTy Sema::ActOnUsingDirective(Scope *S,
3338 SourceLocation UsingLoc,
3339 SourceLocation NamespcLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00003340 CXXScopeSpec &SS,
Chris Lattnerb28317a2009-03-28 19:18:32 +00003341 SourceLocation IdentLoc,
3342 IdentifierInfo *NamespcName,
3343 AttributeList *AttrList) {
Douglas Gregorf780abc2008-12-30 03:27:21 +00003344 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
3345 assert(NamespcName && "Invalid NamespcName.");
3346 assert(IdentLoc.isValid() && "Invalid NamespceName location.");
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003347 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Douglas Gregorf780abc2008-12-30 03:27:21 +00003348
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003349 UsingDirectiveDecl *UDir = 0;
Douglas Gregor66992202010-06-29 17:53:46 +00003350 NestedNameSpecifier *Qualifier = 0;
3351 if (SS.isSet())
3352 Qualifier = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
3353
Douglas Gregoreb11cd02009-01-14 22:20:51 +00003354 // Lookup namespace name.
John McCalla24dc2e2009-11-17 02:14:36 +00003355 LookupResult R(*this, NamespcName, IdentLoc, LookupNamespaceName);
3356 LookupParsedName(R, S, &SS);
3357 if (R.isAmbiguous())
Chris Lattnerb28317a2009-03-28 19:18:32 +00003358 return DeclPtrTy();
John McCalla24dc2e2009-11-17 02:14:36 +00003359
Douglas Gregor66992202010-06-29 17:53:46 +00003360 if (R.empty()) {
3361 // Allow "using namespace std;" or "using namespace ::std;" even if
3362 // "std" hasn't been defined yet, for GCC compatibility.
3363 if ((!Qualifier || Qualifier->getKind() == NestedNameSpecifier::Global) &&
3364 NamespcName->isStr("std")) {
3365 Diag(IdentLoc, diag::ext_using_undefined_std);
Argyrios Kyrtzidis26faaac2010-08-02 07:14:39 +00003366 R.addDecl(getOrCreateStdNamespace());
Douglas Gregor66992202010-06-29 17:53:46 +00003367 R.resolveKind();
3368 }
3369 // Otherwise, attempt typo correction.
3370 else if (DeclarationName Corrected = CorrectTypo(R, S, &SS, 0, false,
3371 CTC_NoKeywords, 0)) {
3372 if (R.getAsSingle<NamespaceDecl>() ||
3373 R.getAsSingle<NamespaceAliasDecl>()) {
3374 if (DeclContext *DC = computeDeclContext(SS, false))
3375 Diag(IdentLoc, diag::err_using_directive_member_suggest)
3376 << NamespcName << DC << Corrected << SS.getRange()
3377 << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
3378 else
3379 Diag(IdentLoc, diag::err_using_directive_suggest)
3380 << NamespcName << Corrected
3381 << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
3382 Diag(R.getFoundDecl()->getLocation(), diag::note_namespace_defined_here)
3383 << Corrected;
3384
3385 NamespcName = Corrected.getAsIdentifierInfo();
Douglas Gregor12eb5d62010-06-29 19:27:42 +00003386 } else {
3387 R.clear();
3388 R.setLookupName(NamespcName);
Douglas Gregor66992202010-06-29 17:53:46 +00003389 }
3390 }
3391 }
3392
John McCallf36e02d2009-10-09 21:13:30 +00003393 if (!R.empty()) {
Sebastian Redleb0d8c92009-11-23 15:34:23 +00003394 NamedDecl *Named = R.getFoundDecl();
3395 assert((isa<NamespaceDecl>(Named) || isa<NamespaceAliasDecl>(Named))
3396 && "expected namespace decl");
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003397 // C++ [namespace.udir]p1:
3398 // A using-directive specifies that the names in the nominated
3399 // namespace can be used in the scope in which the
3400 // using-directive appears after the using-directive. During
3401 // unqualified name lookup (3.4.1), the names appear as if they
3402 // were declared in the nearest enclosing namespace which
3403 // contains both the using-directive and the nominated
Eli Friedman33a31382009-08-05 19:21:58 +00003404 // namespace. [Note: in this context, "contains" means "contains
3405 // directly or indirectly". ]
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003406
3407 // Find enclosing context containing both using-directive and
3408 // nominated namespace.
Sebastian Redleb0d8c92009-11-23 15:34:23 +00003409 NamespaceDecl *NS = getNamespaceDecl(Named);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003410 DeclContext *CommonAncestor = cast<DeclContext>(NS);
3411 while (CommonAncestor && !CommonAncestor->Encloses(CurContext))
3412 CommonAncestor = CommonAncestor->getParent();
3413
Sebastian Redleb0d8c92009-11-23 15:34:23 +00003414 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc,
Douglas Gregor8419fa32009-05-30 06:31:56 +00003415 SS.getRange(),
3416 (NestedNameSpecifier *)SS.getScopeRep(),
Sebastian Redleb0d8c92009-11-23 15:34:23 +00003417 IdentLoc, Named, CommonAncestor);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003418 PushUsingDirective(S, UDir);
Douglas Gregorf780abc2008-12-30 03:27:21 +00003419 } else {
Chris Lattneread013e2009-01-06 07:24:29 +00003420 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
Douglas Gregorf780abc2008-12-30 03:27:21 +00003421 }
3422
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003423 // FIXME: We ignore attributes for now.
Douglas Gregorf780abc2008-12-30 03:27:21 +00003424 delete AttrList;
Chris Lattnerb28317a2009-03-28 19:18:32 +00003425 return DeclPtrTy::make(UDir);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003426}
3427
3428void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) {
3429 // If scope has associated entity, then using directive is at namespace
3430 // or translation unit scope. We add UsingDirectiveDecls, into
3431 // it's lookup structure.
3432 if (DeclContext *Ctx = static_cast<DeclContext*>(S->getEntity()))
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003433 Ctx->addDecl(UDir);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003434 else
3435 // Otherwise it is block-sope. using-directives will affect lookup
3436 // only to the end of scope.
Chris Lattnerb28317a2009-03-28 19:18:32 +00003437 S->PushUsingDirective(DeclPtrTy::make(UDir));
Douglas Gregorf780abc2008-12-30 03:27:21 +00003438}
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00003439
Douglas Gregor9cfbe482009-06-20 00:51:54 +00003440
3441Sema::DeclPtrTy Sema::ActOnUsingDeclaration(Scope *S,
Anders Carlsson595adc12009-08-29 19:54:19 +00003442 AccessSpecifier AS,
John McCall60fa3cf2009-12-11 02:10:03 +00003443 bool HasUsingKeyword,
Anders Carlssoncf9f9212009-08-28 03:16:11 +00003444 SourceLocation UsingLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00003445 CXXScopeSpec &SS,
Douglas Gregor12c118a2009-11-04 16:30:06 +00003446 UnqualifiedId &Name,
Anders Carlssoncf9f9212009-08-28 03:16:11 +00003447 AttributeList *AttrList,
John McCall7ba107a2009-11-18 02:36:19 +00003448 bool IsTypeName,
3449 SourceLocation TypenameLoc) {
Douglas Gregor9cfbe482009-06-20 00:51:54 +00003450 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Mike Stump1eb44332009-09-09 15:08:12 +00003451
Douglas Gregor12c118a2009-11-04 16:30:06 +00003452 switch (Name.getKind()) {
3453 case UnqualifiedId::IK_Identifier:
3454 case UnqualifiedId::IK_OperatorFunctionId:
Sean Hunt0486d742009-11-28 04:44:28 +00003455 case UnqualifiedId::IK_LiteralOperatorId:
Douglas Gregor12c118a2009-11-04 16:30:06 +00003456 case UnqualifiedId::IK_ConversionFunctionId:
3457 break;
3458
3459 case UnqualifiedId::IK_ConstructorName:
Douglas Gregor0efc2c12010-01-13 17:31:36 +00003460 case UnqualifiedId::IK_ConstructorTemplateId:
John McCall604e7f12009-12-08 07:46:18 +00003461 // C++0x inherited constructors.
3462 if (getLangOptions().CPlusPlus0x) break;
3463
Douglas Gregor12c118a2009-11-04 16:30:06 +00003464 Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_constructor)
3465 << SS.getRange();
3466 return DeclPtrTy();
3467
3468 case UnqualifiedId::IK_DestructorName:
3469 Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_destructor)
3470 << SS.getRange();
3471 return DeclPtrTy();
3472
3473 case UnqualifiedId::IK_TemplateId:
3474 Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_template_id)
3475 << SourceRange(Name.TemplateId->LAngleLoc, Name.TemplateId->RAngleLoc);
3476 return DeclPtrTy();
3477 }
3478
3479 DeclarationName TargetName = GetNameFromUnqualifiedId(Name);
John McCall604e7f12009-12-08 07:46:18 +00003480 if (!TargetName)
3481 return DeclPtrTy();
3482
John McCall60fa3cf2009-12-11 02:10:03 +00003483 // Warn about using declarations.
3484 // TODO: store that the declaration was written without 'using' and
3485 // talk about access decls instead of using decls in the
3486 // diagnostics.
3487 if (!HasUsingKeyword) {
3488 UsingLoc = Name.getSourceRange().getBegin();
3489
3490 Diag(UsingLoc, diag::warn_access_decl_deprecated)
Douglas Gregor849b2432010-03-31 17:46:05 +00003491 << FixItHint::CreateInsertion(SS.getRange().getBegin(), "using ");
John McCall60fa3cf2009-12-11 02:10:03 +00003492 }
3493
John McCall9488ea12009-11-17 05:59:44 +00003494 NamedDecl *UD = BuildUsingDeclaration(S, AS, UsingLoc, SS,
Douglas Gregor12c118a2009-11-04 16:30:06 +00003495 Name.getSourceRange().getBegin(),
John McCall7ba107a2009-11-18 02:36:19 +00003496 TargetName, AttrList,
3497 /* IsInstantiation */ false,
3498 IsTypeName, TypenameLoc);
John McCalled976492009-12-04 22:46:56 +00003499 if (UD)
3500 PushOnScopeChains(UD, S, /*AddToContext*/ false);
Mike Stump1eb44332009-09-09 15:08:12 +00003501
Anders Carlssonc72160b2009-08-28 05:40:36 +00003502 return DeclPtrTy::make(UD);
3503}
3504
Douglas Gregor09acc982010-07-07 23:08:52 +00003505/// \brief Determine whether a using declaration considers the given
3506/// declarations as "equivalent", e.g., if they are redeclarations of
3507/// the same entity or are both typedefs of the same type.
3508static bool
3509IsEquivalentForUsingDecl(ASTContext &Context, NamedDecl *D1, NamedDecl *D2,
3510 bool &SuppressRedeclaration) {
3511 if (D1->getCanonicalDecl() == D2->getCanonicalDecl()) {
3512 SuppressRedeclaration = false;
3513 return true;
3514 }
3515
3516 if (TypedefDecl *TD1 = dyn_cast<TypedefDecl>(D1))
3517 if (TypedefDecl *TD2 = dyn_cast<TypedefDecl>(D2)) {
3518 SuppressRedeclaration = true;
3519 return Context.hasSameType(TD1->getUnderlyingType(),
3520 TD2->getUnderlyingType());
3521 }
3522
3523 return false;
3524}
3525
3526
John McCall9f54ad42009-12-10 09:41:52 +00003527/// Determines whether to create a using shadow decl for a particular
3528/// decl, given the set of decls existing prior to this using lookup.
3529bool Sema::CheckUsingShadowDecl(UsingDecl *Using, NamedDecl *Orig,
3530 const LookupResult &Previous) {
3531 // Diagnose finding a decl which is not from a base class of the
3532 // current class. We do this now because there are cases where this
3533 // function will silently decide not to build a shadow decl, which
3534 // will pre-empt further diagnostics.
3535 //
3536 // We don't need to do this in C++0x because we do the check once on
3537 // the qualifier.
3538 //
3539 // FIXME: diagnose the following if we care enough:
3540 // struct A { int foo; };
3541 // struct B : A { using A::foo; };
3542 // template <class T> struct C : A {};
3543 // template <class T> struct D : C<T> { using B::foo; } // <---
3544 // This is invalid (during instantiation) in C++03 because B::foo
3545 // resolves to the using decl in B, which is not a base class of D<T>.
3546 // We can't diagnose it immediately because C<T> is an unknown
3547 // specialization. The UsingShadowDecl in D<T> then points directly
3548 // to A::foo, which will look well-formed when we instantiate.
3549 // The right solution is to not collapse the shadow-decl chain.
3550 if (!getLangOptions().CPlusPlus0x && CurContext->isRecord()) {
3551 DeclContext *OrigDC = Orig->getDeclContext();
3552
3553 // Handle enums and anonymous structs.
3554 if (isa<EnumDecl>(OrigDC)) OrigDC = OrigDC->getParent();
3555 CXXRecordDecl *OrigRec = cast<CXXRecordDecl>(OrigDC);
3556 while (OrigRec->isAnonymousStructOrUnion())
3557 OrigRec = cast<CXXRecordDecl>(OrigRec->getDeclContext());
3558
3559 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(OrigRec)) {
3560 if (OrigDC == CurContext) {
3561 Diag(Using->getLocation(),
3562 diag::err_using_decl_nested_name_specifier_is_current_class)
3563 << Using->getNestedNameRange();
3564 Diag(Orig->getLocation(), diag::note_using_decl_target);
3565 return true;
3566 }
3567
3568 Diag(Using->getNestedNameRange().getBegin(),
3569 diag::err_using_decl_nested_name_specifier_is_not_base_class)
3570 << Using->getTargetNestedNameDecl()
3571 << cast<CXXRecordDecl>(CurContext)
3572 << Using->getNestedNameRange();
3573 Diag(Orig->getLocation(), diag::note_using_decl_target);
3574 return true;
3575 }
3576 }
3577
3578 if (Previous.empty()) return false;
3579
3580 NamedDecl *Target = Orig;
3581 if (isa<UsingShadowDecl>(Target))
3582 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
3583
John McCalld7533ec2009-12-11 02:33:26 +00003584 // If the target happens to be one of the previous declarations, we
3585 // don't have a conflict.
3586 //
3587 // FIXME: but we might be increasing its access, in which case we
3588 // should redeclare it.
3589 NamedDecl *NonTag = 0, *Tag = 0;
3590 for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
3591 I != E; ++I) {
3592 NamedDecl *D = (*I)->getUnderlyingDecl();
Douglas Gregor09acc982010-07-07 23:08:52 +00003593 bool Result;
3594 if (IsEquivalentForUsingDecl(Context, D, Target, Result))
3595 return Result;
John McCalld7533ec2009-12-11 02:33:26 +00003596
3597 (isa<TagDecl>(D) ? Tag : NonTag) = D;
3598 }
3599
John McCall9f54ad42009-12-10 09:41:52 +00003600 if (Target->isFunctionOrFunctionTemplate()) {
3601 FunctionDecl *FD;
3602 if (isa<FunctionTemplateDecl>(Target))
3603 FD = cast<FunctionTemplateDecl>(Target)->getTemplatedDecl();
3604 else
3605 FD = cast<FunctionDecl>(Target);
3606
3607 NamedDecl *OldDecl = 0;
John McCallad00b772010-06-16 08:42:20 +00003608 switch (CheckOverload(0, FD, Previous, OldDecl, /*IsForUsingDecl*/ true)) {
John McCall9f54ad42009-12-10 09:41:52 +00003609 case Ovl_Overload:
3610 return false;
3611
3612 case Ovl_NonFunction:
John McCall41ce66f2009-12-10 19:51:03 +00003613 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00003614 break;
3615
3616 // We found a decl with the exact signature.
3617 case Ovl_Match:
John McCall9f54ad42009-12-10 09:41:52 +00003618 // If we're in a record, we want to hide the target, so we
3619 // return true (without a diagnostic) to tell the caller not to
3620 // build a shadow decl.
3621 if (CurContext->isRecord())
3622 return true;
3623
3624 // If we're not in a record, this is an error.
John McCall41ce66f2009-12-10 19:51:03 +00003625 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00003626 break;
3627 }
3628
3629 Diag(Target->getLocation(), diag::note_using_decl_target);
3630 Diag(OldDecl->getLocation(), diag::note_using_decl_conflict);
3631 return true;
3632 }
3633
3634 // Target is not a function.
3635
John McCall9f54ad42009-12-10 09:41:52 +00003636 if (isa<TagDecl>(Target)) {
3637 // No conflict between a tag and a non-tag.
3638 if (!Tag) return false;
3639
John McCall41ce66f2009-12-10 19:51:03 +00003640 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00003641 Diag(Target->getLocation(), diag::note_using_decl_target);
3642 Diag(Tag->getLocation(), diag::note_using_decl_conflict);
3643 return true;
3644 }
3645
3646 // No conflict between a tag and a non-tag.
3647 if (!NonTag) return false;
3648
John McCall41ce66f2009-12-10 19:51:03 +00003649 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00003650 Diag(Target->getLocation(), diag::note_using_decl_target);
3651 Diag(NonTag->getLocation(), diag::note_using_decl_conflict);
3652 return true;
3653}
3654
John McCall9488ea12009-11-17 05:59:44 +00003655/// Builds a shadow declaration corresponding to a 'using' declaration.
John McCall604e7f12009-12-08 07:46:18 +00003656UsingShadowDecl *Sema::BuildUsingShadowDecl(Scope *S,
John McCall604e7f12009-12-08 07:46:18 +00003657 UsingDecl *UD,
3658 NamedDecl *Orig) {
John McCall9488ea12009-11-17 05:59:44 +00003659
3660 // If we resolved to another shadow declaration, just coalesce them.
John McCall604e7f12009-12-08 07:46:18 +00003661 NamedDecl *Target = Orig;
3662 if (isa<UsingShadowDecl>(Target)) {
3663 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
3664 assert(!isa<UsingShadowDecl>(Target) && "nested shadow declaration");
John McCall9488ea12009-11-17 05:59:44 +00003665 }
3666
3667 UsingShadowDecl *Shadow
John McCall604e7f12009-12-08 07:46:18 +00003668 = UsingShadowDecl::Create(Context, CurContext,
3669 UD->getLocation(), UD, Target);
John McCall9488ea12009-11-17 05:59:44 +00003670 UD->addShadowDecl(Shadow);
3671
3672 if (S)
John McCall604e7f12009-12-08 07:46:18 +00003673 PushOnScopeChains(Shadow, S);
John McCall9488ea12009-11-17 05:59:44 +00003674 else
John McCall604e7f12009-12-08 07:46:18 +00003675 CurContext->addDecl(Shadow);
John McCall9f54ad42009-12-10 09:41:52 +00003676 Shadow->setAccess(UD->getAccess());
John McCall9488ea12009-11-17 05:59:44 +00003677
John McCall32daa422010-03-31 01:36:47 +00003678 // Register it as a conversion if appropriate.
3679 if (Shadow->getDeclName().getNameKind()
3680 == DeclarationName::CXXConversionFunctionName)
3681 cast<CXXRecordDecl>(CurContext)->addConversionFunction(Shadow);
3682
John McCall604e7f12009-12-08 07:46:18 +00003683 if (Orig->isInvalidDecl() || UD->isInvalidDecl())
3684 Shadow->setInvalidDecl();
3685
John McCall9f54ad42009-12-10 09:41:52 +00003686 return Shadow;
3687}
John McCall604e7f12009-12-08 07:46:18 +00003688
John McCall9f54ad42009-12-10 09:41:52 +00003689/// Hides a using shadow declaration. This is required by the current
3690/// using-decl implementation when a resolvable using declaration in a
3691/// class is followed by a declaration which would hide or override
3692/// one or more of the using decl's targets; for example:
3693///
3694/// struct Base { void foo(int); };
3695/// struct Derived : Base {
3696/// using Base::foo;
3697/// void foo(int);
3698/// };
3699///
3700/// The governing language is C++03 [namespace.udecl]p12:
3701///
3702/// When a using-declaration brings names from a base class into a
3703/// derived class scope, member functions in the derived class
3704/// override and/or hide member functions with the same name and
3705/// parameter types in a base class (rather than conflicting).
3706///
3707/// There are two ways to implement this:
3708/// (1) optimistically create shadow decls when they're not hidden
3709/// by existing declarations, or
3710/// (2) don't create any shadow decls (or at least don't make them
3711/// visible) until we've fully parsed/instantiated the class.
3712/// The problem with (1) is that we might have to retroactively remove
3713/// a shadow decl, which requires several O(n) operations because the
3714/// decl structures are (very reasonably) not designed for removal.
3715/// (2) avoids this but is very fiddly and phase-dependent.
3716void Sema::HideUsingShadowDecl(Scope *S, UsingShadowDecl *Shadow) {
John McCall32daa422010-03-31 01:36:47 +00003717 if (Shadow->getDeclName().getNameKind() ==
3718 DeclarationName::CXXConversionFunctionName)
3719 cast<CXXRecordDecl>(Shadow->getDeclContext())->removeConversion(Shadow);
3720
John McCall9f54ad42009-12-10 09:41:52 +00003721 // Remove it from the DeclContext...
3722 Shadow->getDeclContext()->removeDecl(Shadow);
John McCall604e7f12009-12-08 07:46:18 +00003723
John McCall9f54ad42009-12-10 09:41:52 +00003724 // ...and the scope, if applicable...
3725 if (S) {
3726 S->RemoveDecl(DeclPtrTy::make(static_cast<Decl*>(Shadow)));
3727 IdResolver.RemoveDecl(Shadow);
John McCall604e7f12009-12-08 07:46:18 +00003728 }
3729
John McCall9f54ad42009-12-10 09:41:52 +00003730 // ...and the using decl.
3731 Shadow->getUsingDecl()->removeShadowDecl(Shadow);
3732
3733 // TODO: complain somehow if Shadow was used. It shouldn't
John McCall32daa422010-03-31 01:36:47 +00003734 // be possible for this to happen, because...?
John McCall9488ea12009-11-17 05:59:44 +00003735}
3736
John McCall7ba107a2009-11-18 02:36:19 +00003737/// Builds a using declaration.
3738///
3739/// \param IsInstantiation - Whether this call arises from an
3740/// instantiation of an unresolved using declaration. We treat
3741/// the lookup differently for these declarations.
John McCall9488ea12009-11-17 05:59:44 +00003742NamedDecl *Sema::BuildUsingDeclaration(Scope *S, AccessSpecifier AS,
3743 SourceLocation UsingLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00003744 CXXScopeSpec &SS,
Anders Carlssonc72160b2009-08-28 05:40:36 +00003745 SourceLocation IdentLoc,
3746 DeclarationName Name,
3747 AttributeList *AttrList,
John McCall7ba107a2009-11-18 02:36:19 +00003748 bool IsInstantiation,
3749 bool IsTypeName,
3750 SourceLocation TypenameLoc) {
Anders Carlssonc72160b2009-08-28 05:40:36 +00003751 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
3752 assert(IdentLoc.isValid() && "Invalid TargetName location.");
Eli Friedman2a16a132009-08-27 05:09:36 +00003753
Anders Carlsson550b14b2009-08-28 05:49:21 +00003754 // FIXME: We ignore attributes for now.
3755 delete AttrList;
Mike Stump1eb44332009-09-09 15:08:12 +00003756
Anders Carlssoncf9f9212009-08-28 03:16:11 +00003757 if (SS.isEmpty()) {
3758 Diag(IdentLoc, diag::err_using_requires_qualname);
Anders Carlssonc72160b2009-08-28 05:40:36 +00003759 return 0;
Anders Carlssoncf9f9212009-08-28 03:16:11 +00003760 }
Mike Stump1eb44332009-09-09 15:08:12 +00003761
John McCall9f54ad42009-12-10 09:41:52 +00003762 // Do the redeclaration lookup in the current scope.
3763 LookupResult Previous(*this, Name, IdentLoc, LookupUsingDeclName,
3764 ForRedeclaration);
3765 Previous.setHideTags(false);
3766 if (S) {
3767 LookupName(Previous, S);
3768
3769 // It is really dumb that we have to do this.
3770 LookupResult::Filter F = Previous.makeFilter();
3771 while (F.hasNext()) {
3772 NamedDecl *D = F.next();
3773 if (!isDeclInScope(D, CurContext, S))
3774 F.erase();
3775 }
3776 F.done();
3777 } else {
3778 assert(IsInstantiation && "no scope in non-instantiation");
3779 assert(CurContext->isRecord() && "scope not record in instantiation");
3780 LookupQualifiedName(Previous, CurContext);
3781 }
3782
Mike Stump1eb44332009-09-09 15:08:12 +00003783 NestedNameSpecifier *NNS =
Anders Carlssoncf9f9212009-08-28 03:16:11 +00003784 static_cast<NestedNameSpecifier *>(SS.getScopeRep());
3785
John McCall9f54ad42009-12-10 09:41:52 +00003786 // Check for invalid redeclarations.
3787 if (CheckUsingDeclRedeclaration(UsingLoc, IsTypeName, SS, IdentLoc, Previous))
3788 return 0;
3789
3790 // Check for bad qualifiers.
John McCalled976492009-12-04 22:46:56 +00003791 if (CheckUsingDeclQualifier(UsingLoc, SS, IdentLoc))
3792 return 0;
3793
John McCallaf8e6ed2009-11-12 03:15:40 +00003794 DeclContext *LookupContext = computeDeclContext(SS);
John McCalled976492009-12-04 22:46:56 +00003795 NamedDecl *D;
John McCallaf8e6ed2009-11-12 03:15:40 +00003796 if (!LookupContext) {
John McCall7ba107a2009-11-18 02:36:19 +00003797 if (IsTypeName) {
John McCalled976492009-12-04 22:46:56 +00003798 // FIXME: not all declaration name kinds are legal here
3799 D = UnresolvedUsingTypenameDecl::Create(Context, CurContext,
3800 UsingLoc, TypenameLoc,
3801 SS.getRange(), NNS,
John McCall7ba107a2009-11-18 02:36:19 +00003802 IdentLoc, Name);
John McCalled976492009-12-04 22:46:56 +00003803 } else {
3804 D = UnresolvedUsingValueDecl::Create(Context, CurContext,
3805 UsingLoc, SS.getRange(), NNS,
3806 IdentLoc, Name);
John McCall7ba107a2009-11-18 02:36:19 +00003807 }
John McCalled976492009-12-04 22:46:56 +00003808 } else {
3809 D = UsingDecl::Create(Context, CurContext, IdentLoc,
3810 SS.getRange(), UsingLoc, NNS, Name,
3811 IsTypeName);
Anders Carlsson550b14b2009-08-28 05:49:21 +00003812 }
John McCalled976492009-12-04 22:46:56 +00003813 D->setAccess(AS);
3814 CurContext->addDecl(D);
3815
3816 if (!LookupContext) return D;
3817 UsingDecl *UD = cast<UsingDecl>(D);
Mike Stump1eb44332009-09-09 15:08:12 +00003818
John McCall77bb1aa2010-05-01 00:40:08 +00003819 if (RequireCompleteDeclContext(SS, LookupContext)) {
John McCall604e7f12009-12-08 07:46:18 +00003820 UD->setInvalidDecl();
3821 return UD;
Anders Carlssoncf9f9212009-08-28 03:16:11 +00003822 }
3823
John McCall604e7f12009-12-08 07:46:18 +00003824 // Look up the target name.
3825
John McCalla24dc2e2009-11-17 02:14:36 +00003826 LookupResult R(*this, Name, IdentLoc, LookupOrdinaryName);
John McCall7ba107a2009-11-18 02:36:19 +00003827
John McCall604e7f12009-12-08 07:46:18 +00003828 // Unlike most lookups, we don't always want to hide tag
3829 // declarations: tag names are visible through the using declaration
3830 // even if hidden by ordinary names, *except* in a dependent context
3831 // where it's important for the sanity of two-phase lookup.
John McCall7ba107a2009-11-18 02:36:19 +00003832 if (!IsInstantiation)
3833 R.setHideTags(false);
John McCall9488ea12009-11-17 05:59:44 +00003834
John McCalla24dc2e2009-11-17 02:14:36 +00003835 LookupQualifiedName(R, LookupContext);
Mike Stump1eb44332009-09-09 15:08:12 +00003836
John McCallf36e02d2009-10-09 21:13:30 +00003837 if (R.empty()) {
Douglas Gregor3f093272009-10-13 21:16:44 +00003838 Diag(IdentLoc, diag::err_no_member)
3839 << Name << LookupContext << SS.getRange();
John McCalled976492009-12-04 22:46:56 +00003840 UD->setInvalidDecl();
3841 return UD;
Douglas Gregor9cfbe482009-06-20 00:51:54 +00003842 }
3843
John McCalled976492009-12-04 22:46:56 +00003844 if (R.isAmbiguous()) {
3845 UD->setInvalidDecl();
3846 return UD;
3847 }
Mike Stump1eb44332009-09-09 15:08:12 +00003848
John McCall7ba107a2009-11-18 02:36:19 +00003849 if (IsTypeName) {
3850 // If we asked for a typename and got a non-type decl, error out.
John McCalled976492009-12-04 22:46:56 +00003851 if (!R.getAsSingle<TypeDecl>()) {
John McCall7ba107a2009-11-18 02:36:19 +00003852 Diag(IdentLoc, diag::err_using_typename_non_type);
3853 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I)
3854 Diag((*I)->getUnderlyingDecl()->getLocation(),
3855 diag::note_using_decl_target);
John McCalled976492009-12-04 22:46:56 +00003856 UD->setInvalidDecl();
3857 return UD;
John McCall7ba107a2009-11-18 02:36:19 +00003858 }
3859 } else {
3860 // If we asked for a non-typename and we got a type, error out,
3861 // but only if this is an instantiation of an unresolved using
3862 // decl. Otherwise just silently find the type name.
John McCalled976492009-12-04 22:46:56 +00003863 if (IsInstantiation && R.getAsSingle<TypeDecl>()) {
John McCall7ba107a2009-11-18 02:36:19 +00003864 Diag(IdentLoc, diag::err_using_dependent_value_is_type);
3865 Diag(R.getFoundDecl()->getLocation(), diag::note_using_decl_target);
John McCalled976492009-12-04 22:46:56 +00003866 UD->setInvalidDecl();
3867 return UD;
John McCall7ba107a2009-11-18 02:36:19 +00003868 }
Anders Carlssoncf9f9212009-08-28 03:16:11 +00003869 }
3870
Anders Carlsson73b39cf2009-08-28 03:35:18 +00003871 // C++0x N2914 [namespace.udecl]p6:
3872 // A using-declaration shall not name a namespace.
John McCalled976492009-12-04 22:46:56 +00003873 if (R.getAsSingle<NamespaceDecl>()) {
Anders Carlsson73b39cf2009-08-28 03:35:18 +00003874 Diag(IdentLoc, diag::err_using_decl_can_not_refer_to_namespace)
3875 << SS.getRange();
John McCalled976492009-12-04 22:46:56 +00003876 UD->setInvalidDecl();
3877 return UD;
Anders Carlsson73b39cf2009-08-28 03:35:18 +00003878 }
Mike Stump1eb44332009-09-09 15:08:12 +00003879
John McCall9f54ad42009-12-10 09:41:52 +00003880 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) {
3881 if (!CheckUsingShadowDecl(UD, *I, Previous))
3882 BuildUsingShadowDecl(S, UD, *I);
3883 }
John McCall9488ea12009-11-17 05:59:44 +00003884
3885 return UD;
Douglas Gregor9cfbe482009-06-20 00:51:54 +00003886}
3887
John McCall9f54ad42009-12-10 09:41:52 +00003888/// Checks that the given using declaration is not an invalid
3889/// redeclaration. Note that this is checking only for the using decl
3890/// itself, not for any ill-formedness among the UsingShadowDecls.
3891bool Sema::CheckUsingDeclRedeclaration(SourceLocation UsingLoc,
3892 bool isTypeName,
3893 const CXXScopeSpec &SS,
3894 SourceLocation NameLoc,
3895 const LookupResult &Prev) {
3896 // C++03 [namespace.udecl]p8:
3897 // C++0x [namespace.udecl]p10:
3898 // A using-declaration is a declaration and can therefore be used
3899 // repeatedly where (and only where) multiple declarations are
3900 // allowed.
Douglas Gregora97badf2010-05-06 23:31:27 +00003901 //
3902 // That's in non-member contexts.
3903 if (!CurContext->getLookupContext()->isRecord())
John McCall9f54ad42009-12-10 09:41:52 +00003904 return false;
3905
3906 NestedNameSpecifier *Qual
3907 = static_cast<NestedNameSpecifier*>(SS.getScopeRep());
3908
3909 for (LookupResult::iterator I = Prev.begin(), E = Prev.end(); I != E; ++I) {
3910 NamedDecl *D = *I;
3911
3912 bool DTypename;
3913 NestedNameSpecifier *DQual;
3914 if (UsingDecl *UD = dyn_cast<UsingDecl>(D)) {
3915 DTypename = UD->isTypeName();
3916 DQual = UD->getTargetNestedNameDecl();
3917 } else if (UnresolvedUsingValueDecl *UD
3918 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
3919 DTypename = false;
3920 DQual = UD->getTargetNestedNameSpecifier();
3921 } else if (UnresolvedUsingTypenameDecl *UD
3922 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
3923 DTypename = true;
3924 DQual = UD->getTargetNestedNameSpecifier();
3925 } else continue;
3926
3927 // using decls differ if one says 'typename' and the other doesn't.
3928 // FIXME: non-dependent using decls?
3929 if (isTypeName != DTypename) continue;
3930
3931 // using decls differ if they name different scopes (but note that
3932 // template instantiation can cause this check to trigger when it
3933 // didn't before instantiation).
3934 if (Context.getCanonicalNestedNameSpecifier(Qual) !=
3935 Context.getCanonicalNestedNameSpecifier(DQual))
3936 continue;
3937
3938 Diag(NameLoc, diag::err_using_decl_redeclaration) << SS.getRange();
John McCall41ce66f2009-12-10 19:51:03 +00003939 Diag(D->getLocation(), diag::note_using_decl) << 1;
John McCall9f54ad42009-12-10 09:41:52 +00003940 return true;
3941 }
3942
3943 return false;
3944}
3945
John McCall604e7f12009-12-08 07:46:18 +00003946
John McCalled976492009-12-04 22:46:56 +00003947/// Checks that the given nested-name qualifier used in a using decl
3948/// in the current context is appropriately related to the current
3949/// scope. If an error is found, diagnoses it and returns true.
3950bool Sema::CheckUsingDeclQualifier(SourceLocation UsingLoc,
3951 const CXXScopeSpec &SS,
3952 SourceLocation NameLoc) {
John McCall604e7f12009-12-08 07:46:18 +00003953 DeclContext *NamedContext = computeDeclContext(SS);
John McCalled976492009-12-04 22:46:56 +00003954
John McCall604e7f12009-12-08 07:46:18 +00003955 if (!CurContext->isRecord()) {
3956 // C++03 [namespace.udecl]p3:
3957 // C++0x [namespace.udecl]p8:
3958 // A using-declaration for a class member shall be a member-declaration.
3959
3960 // If we weren't able to compute a valid scope, it must be a
3961 // dependent class scope.
3962 if (!NamedContext || NamedContext->isRecord()) {
3963 Diag(NameLoc, diag::err_using_decl_can_not_refer_to_class_member)
3964 << SS.getRange();
3965 return true;
3966 }
3967
3968 // Otherwise, everything is known to be fine.
3969 return false;
3970 }
3971
3972 // The current scope is a record.
3973
3974 // If the named context is dependent, we can't decide much.
3975 if (!NamedContext) {
3976 // FIXME: in C++0x, we can diagnose if we can prove that the
3977 // nested-name-specifier does not refer to a base class, which is
3978 // still possible in some cases.
3979
3980 // Otherwise we have to conservatively report that things might be
3981 // okay.
3982 return false;
3983 }
3984
3985 if (!NamedContext->isRecord()) {
3986 // Ideally this would point at the last name in the specifier,
3987 // but we don't have that level of source info.
3988 Diag(SS.getRange().getBegin(),
3989 diag::err_using_decl_nested_name_specifier_is_not_class)
3990 << (NestedNameSpecifier*) SS.getScopeRep() << SS.getRange();
3991 return true;
3992 }
3993
3994 if (getLangOptions().CPlusPlus0x) {
3995 // C++0x [namespace.udecl]p3:
3996 // In a using-declaration used as a member-declaration, the
3997 // nested-name-specifier shall name a base class of the class
3998 // being defined.
3999
4000 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(
4001 cast<CXXRecordDecl>(NamedContext))) {
4002 if (CurContext == NamedContext) {
4003 Diag(NameLoc,
4004 diag::err_using_decl_nested_name_specifier_is_current_class)
4005 << SS.getRange();
4006 return true;
4007 }
4008
4009 Diag(SS.getRange().getBegin(),
4010 diag::err_using_decl_nested_name_specifier_is_not_base_class)
4011 << (NestedNameSpecifier*) SS.getScopeRep()
4012 << cast<CXXRecordDecl>(CurContext)
4013 << SS.getRange();
4014 return true;
4015 }
4016
4017 return false;
4018 }
4019
4020 // C++03 [namespace.udecl]p4:
4021 // A using-declaration used as a member-declaration shall refer
4022 // to a member of a base class of the class being defined [etc.].
4023
4024 // Salient point: SS doesn't have to name a base class as long as
4025 // lookup only finds members from base classes. Therefore we can
4026 // diagnose here only if we can prove that that can't happen,
4027 // i.e. if the class hierarchies provably don't intersect.
4028
4029 // TODO: it would be nice if "definitely valid" results were cached
4030 // in the UsingDecl and UsingShadowDecl so that these checks didn't
4031 // need to be repeated.
4032
4033 struct UserData {
4034 llvm::DenseSet<const CXXRecordDecl*> Bases;
4035
4036 static bool collect(const CXXRecordDecl *Base, void *OpaqueData) {
4037 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
4038 Data->Bases.insert(Base);
4039 return true;
4040 }
4041
4042 bool hasDependentBases(const CXXRecordDecl *Class) {
4043 return !Class->forallBases(collect, this);
4044 }
4045
4046 /// Returns true if the base is dependent or is one of the
4047 /// accumulated base classes.
4048 static bool doesNotContain(const CXXRecordDecl *Base, void *OpaqueData) {
4049 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
4050 return !Data->Bases.count(Base);
4051 }
4052
4053 bool mightShareBases(const CXXRecordDecl *Class) {
4054 return Bases.count(Class) || !Class->forallBases(doesNotContain, this);
4055 }
4056 };
4057
4058 UserData Data;
4059
4060 // Returns false if we find a dependent base.
4061 if (Data.hasDependentBases(cast<CXXRecordDecl>(CurContext)))
4062 return false;
4063
4064 // Returns false if the class has a dependent base or if it or one
4065 // of its bases is present in the base set of the current context.
4066 if (Data.mightShareBases(cast<CXXRecordDecl>(NamedContext)))
4067 return false;
4068
4069 Diag(SS.getRange().getBegin(),
4070 diag::err_using_decl_nested_name_specifier_is_not_base_class)
4071 << (NestedNameSpecifier*) SS.getScopeRep()
4072 << cast<CXXRecordDecl>(CurContext)
4073 << SS.getRange();
4074
4075 return true;
John McCalled976492009-12-04 22:46:56 +00004076}
4077
Mike Stump1eb44332009-09-09 15:08:12 +00004078Sema::DeclPtrTy Sema::ActOnNamespaceAliasDef(Scope *S,
Anders Carlsson03bd5a12009-03-28 22:53:22 +00004079 SourceLocation NamespaceLoc,
Chris Lattnerb28317a2009-03-28 19:18:32 +00004080 SourceLocation AliasLoc,
4081 IdentifierInfo *Alias,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00004082 CXXScopeSpec &SS,
Anders Carlsson03bd5a12009-03-28 22:53:22 +00004083 SourceLocation IdentLoc,
4084 IdentifierInfo *Ident) {
Mike Stump1eb44332009-09-09 15:08:12 +00004085
Anders Carlsson81c85c42009-03-28 23:53:49 +00004086 // Lookup the namespace name.
John McCalla24dc2e2009-11-17 02:14:36 +00004087 LookupResult R(*this, Ident, IdentLoc, LookupNamespaceName);
4088 LookupParsedName(R, S, &SS);
Anders Carlsson81c85c42009-03-28 23:53:49 +00004089
Anders Carlsson8d7ba402009-03-28 06:23:46 +00004090 // Check if we have a previous declaration with the same name.
Douglas Gregorae374752010-05-03 15:37:31 +00004091 NamedDecl *PrevDecl
4092 = LookupSingleName(S, Alias, AliasLoc, LookupOrdinaryName,
4093 ForRedeclaration);
4094 if (PrevDecl && !isDeclInScope(PrevDecl, CurContext, S))
4095 PrevDecl = 0;
4096
4097 if (PrevDecl) {
Anders Carlsson81c85c42009-03-28 23:53:49 +00004098 if (NamespaceAliasDecl *AD = dyn_cast<NamespaceAliasDecl>(PrevDecl)) {
Mike Stump1eb44332009-09-09 15:08:12 +00004099 // We already have an alias with the same name that points to the same
Anders Carlsson81c85c42009-03-28 23:53:49 +00004100 // namespace, so don't create a new one.
Douglas Gregorc67b0322010-03-26 22:59:39 +00004101 // FIXME: At some point, we'll want to create the (redundant)
4102 // declaration to maintain better source information.
John McCallf36e02d2009-10-09 21:13:30 +00004103 if (!R.isAmbiguous() && !R.empty() &&
Douglas Gregorc67b0322010-03-26 22:59:39 +00004104 AD->getNamespace()->Equals(getNamespaceDecl(R.getFoundDecl())))
Anders Carlsson81c85c42009-03-28 23:53:49 +00004105 return DeclPtrTy();
4106 }
Mike Stump1eb44332009-09-09 15:08:12 +00004107
Anders Carlsson8d7ba402009-03-28 06:23:46 +00004108 unsigned DiagID = isa<NamespaceDecl>(PrevDecl) ? diag::err_redefinition :
4109 diag::err_redefinition_different_kind;
4110 Diag(AliasLoc, DiagID) << Alias;
4111 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Chris Lattnerb28317a2009-03-28 19:18:32 +00004112 return DeclPtrTy();
Anders Carlsson8d7ba402009-03-28 06:23:46 +00004113 }
4114
John McCalla24dc2e2009-11-17 02:14:36 +00004115 if (R.isAmbiguous())
Chris Lattnerb28317a2009-03-28 19:18:32 +00004116 return DeclPtrTy();
Mike Stump1eb44332009-09-09 15:08:12 +00004117
John McCallf36e02d2009-10-09 21:13:30 +00004118 if (R.empty()) {
Douglas Gregor0e8c4b92010-06-29 18:55:19 +00004119 if (DeclarationName Corrected = CorrectTypo(R, S, &SS, 0, false,
4120 CTC_NoKeywords, 0)) {
4121 if (R.getAsSingle<NamespaceDecl>() ||
4122 R.getAsSingle<NamespaceAliasDecl>()) {
4123 if (DeclContext *DC = computeDeclContext(SS, false))
4124 Diag(IdentLoc, diag::err_using_directive_member_suggest)
4125 << Ident << DC << Corrected << SS.getRange()
4126 << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
4127 else
4128 Diag(IdentLoc, diag::err_using_directive_suggest)
4129 << Ident << Corrected
4130 << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
4131
4132 Diag(R.getFoundDecl()->getLocation(), diag::note_namespace_defined_here)
4133 << Corrected;
4134
4135 Ident = Corrected.getAsIdentifierInfo();
Douglas Gregor12eb5d62010-06-29 19:27:42 +00004136 } else {
4137 R.clear();
4138 R.setLookupName(Ident);
Douglas Gregor0e8c4b92010-06-29 18:55:19 +00004139 }
4140 }
4141
4142 if (R.empty()) {
4143 Diag(NamespaceLoc, diag::err_expected_namespace_name) << SS.getRange();
4144 return DeclPtrTy();
4145 }
Anders Carlsson5721c682009-03-28 06:42:02 +00004146 }
Mike Stump1eb44332009-09-09 15:08:12 +00004147
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00004148 NamespaceAliasDecl *AliasDecl =
Mike Stump1eb44332009-09-09 15:08:12 +00004149 NamespaceAliasDecl::Create(Context, CurContext, NamespaceLoc, AliasLoc,
4150 Alias, SS.getRange(),
Douglas Gregor6c9c9402009-05-30 06:48:27 +00004151 (NestedNameSpecifier *)SS.getScopeRep(),
John McCallf36e02d2009-10-09 21:13:30 +00004152 IdentLoc, R.getFoundDecl());
Mike Stump1eb44332009-09-09 15:08:12 +00004153
John McCall3dbd3d52010-02-16 06:53:13 +00004154 PushOnScopeChains(AliasDecl, S);
Anders Carlsson68771c72009-03-28 22:58:02 +00004155 return DeclPtrTy::make(AliasDecl);
Anders Carlssondbb00942009-03-28 05:27:17 +00004156}
4157
Douglas Gregor39957dc2010-05-01 15:04:51 +00004158namespace {
4159 /// \brief Scoped object used to handle the state changes required in Sema
4160 /// to implicitly define the body of a C++ member function;
4161 class ImplicitlyDefinedFunctionScope {
4162 Sema &S;
4163 DeclContext *PreviousContext;
4164
4165 public:
4166 ImplicitlyDefinedFunctionScope(Sema &S, CXXMethodDecl *Method)
4167 : S(S), PreviousContext(S.CurContext)
4168 {
4169 S.CurContext = Method;
4170 S.PushFunctionScope();
4171 S.PushExpressionEvaluationContext(Sema::PotentiallyEvaluated);
4172 }
4173
4174 ~ImplicitlyDefinedFunctionScope() {
4175 S.PopExpressionEvaluationContext();
4176 S.PopFunctionOrBlockScope();
4177 S.CurContext = PreviousContext;
4178 }
4179 };
4180}
4181
Douglas Gregor23c94db2010-07-02 17:43:08 +00004182CXXConstructorDecl *Sema::DeclareImplicitDefaultConstructor(
4183 CXXRecordDecl *ClassDecl) {
Douglas Gregor32df23e2010-07-01 22:02:46 +00004184 // C++ [class.ctor]p5:
4185 // A default constructor for a class X is a constructor of class X
4186 // that can be called without an argument. If there is no
4187 // user-declared constructor for class X, a default constructor is
4188 // implicitly declared. An implicitly-declared default constructor
4189 // is an inline public member of its class.
Douglas Gregor18274032010-07-03 00:47:00 +00004190 assert(!ClassDecl->hasUserDeclaredConstructor() &&
4191 "Should not build implicit default constructor!");
4192
Douglas Gregoreb8c6702010-07-01 22:31:05 +00004193 // C++ [except.spec]p14:
4194 // An implicitly declared special member function (Clause 12) shall have an
4195 // exception-specification. [...]
4196 ImplicitExceptionSpecification ExceptSpec(Context);
4197
4198 // Direct base-class destructors.
4199 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
4200 BEnd = ClassDecl->bases_end();
4201 B != BEnd; ++B) {
4202 if (B->isVirtual()) // Handled below.
4203 continue;
4204
Douglas Gregor18274032010-07-03 00:47:00 +00004205 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
4206 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
4207 if (!BaseClassDecl->hasDeclaredDefaultConstructor())
4208 ExceptSpec.CalledDecl(DeclareImplicitDefaultConstructor(BaseClassDecl));
4209 else if (CXXConstructorDecl *Constructor
4210 = BaseClassDecl->getDefaultConstructor())
Douglas Gregoreb8c6702010-07-01 22:31:05 +00004211 ExceptSpec.CalledDecl(Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00004212 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00004213 }
4214
4215 // Virtual base-class destructors.
4216 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
4217 BEnd = ClassDecl->vbases_end();
4218 B != BEnd; ++B) {
Douglas Gregor18274032010-07-03 00:47:00 +00004219 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
4220 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
4221 if (!BaseClassDecl->hasDeclaredDefaultConstructor())
4222 ExceptSpec.CalledDecl(DeclareImplicitDefaultConstructor(BaseClassDecl));
4223 else if (CXXConstructorDecl *Constructor
4224 = BaseClassDecl->getDefaultConstructor())
Douglas Gregoreb8c6702010-07-01 22:31:05 +00004225 ExceptSpec.CalledDecl(Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00004226 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00004227 }
4228
4229 // Field destructors.
4230 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
4231 FEnd = ClassDecl->field_end();
4232 F != FEnd; ++F) {
4233 if (const RecordType *RecordTy
Douglas Gregor18274032010-07-03 00:47:00 +00004234 = Context.getBaseElementType(F->getType())->getAs<RecordType>()) {
4235 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
4236 if (!FieldClassDecl->hasDeclaredDefaultConstructor())
4237 ExceptSpec.CalledDecl(
4238 DeclareImplicitDefaultConstructor(FieldClassDecl));
4239 else if (CXXConstructorDecl *Constructor
4240 = FieldClassDecl->getDefaultConstructor())
Douglas Gregoreb8c6702010-07-01 22:31:05 +00004241 ExceptSpec.CalledDecl(Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00004242 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00004243 }
4244
4245
4246 // Create the actual constructor declaration.
Douglas Gregor32df23e2010-07-01 22:02:46 +00004247 CanQualType ClassType
4248 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
4249 DeclarationName Name
4250 = Context.DeclarationNames.getCXXConstructorName(ClassType);
4251 CXXConstructorDecl *DefaultCon
4252 = CXXConstructorDecl::Create(Context, ClassDecl,
4253 ClassDecl->getLocation(), Name,
4254 Context.getFunctionType(Context.VoidTy,
4255 0, 0, false, 0,
Douglas Gregoreb8c6702010-07-01 22:31:05 +00004256 ExceptSpec.hasExceptionSpecification(),
4257 ExceptSpec.hasAnyExceptionSpecification(),
4258 ExceptSpec.size(),
4259 ExceptSpec.data(),
Douglas Gregor32df23e2010-07-01 22:02:46 +00004260 FunctionType::ExtInfo()),
4261 /*TInfo=*/0,
4262 /*isExplicit=*/false,
4263 /*isInline=*/true,
4264 /*isImplicitlyDeclared=*/true);
4265 DefaultCon->setAccess(AS_public);
4266 DefaultCon->setImplicit();
4267 DefaultCon->setTrivial(ClassDecl->hasTrivialConstructor());
Douglas Gregor18274032010-07-03 00:47:00 +00004268
4269 // Note that we have declared this constructor.
4270 ClassDecl->setDeclaredDefaultConstructor(true);
4271 ++ASTContext::NumImplicitDefaultConstructorsDeclared;
4272
Douglas Gregor23c94db2010-07-02 17:43:08 +00004273 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor18274032010-07-03 00:47:00 +00004274 PushOnScopeChains(DefaultCon, S, false);
4275 ClassDecl->addDecl(DefaultCon);
4276
Douglas Gregor32df23e2010-07-01 22:02:46 +00004277 return DefaultCon;
4278}
4279
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00004280void Sema::DefineImplicitDefaultConstructor(SourceLocation CurrentLocation,
4281 CXXConstructorDecl *Constructor) {
Fariborz Jahanian05a5c452009-06-22 20:37:23 +00004282 assert((Constructor->isImplicit() && Constructor->isDefaultConstructor() &&
Douglas Gregorc070cc62010-06-17 23:14:26 +00004283 !Constructor->isUsed(false)) &&
Fariborz Jahanian05a5c452009-06-22 20:37:23 +00004284 "DefineImplicitDefaultConstructor - call it for implicit default ctor");
Mike Stump1eb44332009-09-09 15:08:12 +00004285
Anders Carlssonf6513ed2010-04-23 16:04:08 +00004286 CXXRecordDecl *ClassDecl = Constructor->getParent();
Eli Friedman80c30da2009-11-09 19:20:36 +00004287 assert(ClassDecl && "DefineImplicitDefaultConstructor - invalid constructor");
Eli Friedman49c16da2009-11-09 01:05:47 +00004288
Douglas Gregor39957dc2010-05-01 15:04:51 +00004289 ImplicitlyDefinedFunctionScope Scope(*this, Constructor);
Douglas Gregorc63d2c82010-05-12 16:39:35 +00004290 ErrorTrap Trap(*this);
4291 if (SetBaseOrMemberInitializers(Constructor, 0, 0, /*AnyErrors=*/false) ||
4292 Trap.hasErrorOccurred()) {
Anders Carlsson37909802009-11-30 21:24:50 +00004293 Diag(CurrentLocation, diag::note_member_synthesized_at)
Anders Carlsson3b8c53b2010-04-22 05:40:53 +00004294 << CXXConstructor << Context.getTagDeclType(ClassDecl);
Eli Friedman80c30da2009-11-09 19:20:36 +00004295 Constructor->setInvalidDecl();
4296 } else {
4297 Constructor->setUsed();
Douglas Gregor6fb745b2010-05-13 16:44:06 +00004298 MarkVTableUsed(CurrentLocation, ClassDecl);
Eli Friedman80c30da2009-11-09 19:20:36 +00004299 }
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00004300}
4301
Douglas Gregor23c94db2010-07-02 17:43:08 +00004302CXXDestructorDecl *Sema::DeclareImplicitDestructor(CXXRecordDecl *ClassDecl) {
Douglas Gregorfabd43a2010-07-01 19:09:28 +00004303 // C++ [class.dtor]p2:
4304 // If a class has no user-declared destructor, a destructor is
4305 // declared implicitly. An implicitly-declared destructor is an
4306 // inline public member of its class.
4307
4308 // C++ [except.spec]p14:
4309 // An implicitly declared special member function (Clause 12) shall have
4310 // an exception-specification.
4311 ImplicitExceptionSpecification ExceptSpec(Context);
4312
4313 // Direct base-class destructors.
4314 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
4315 BEnd = ClassDecl->bases_end();
4316 B != BEnd; ++B) {
4317 if (B->isVirtual()) // Handled below.
4318 continue;
4319
4320 if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
4321 ExceptSpec.CalledDecl(
Douglas Gregordb89f282010-07-01 22:47:18 +00004322 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00004323 }
4324
4325 // Virtual base-class destructors.
4326 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
4327 BEnd = ClassDecl->vbases_end();
4328 B != BEnd; ++B) {
4329 if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
4330 ExceptSpec.CalledDecl(
Douglas Gregordb89f282010-07-01 22:47:18 +00004331 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00004332 }
4333
4334 // Field destructors.
4335 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
4336 FEnd = ClassDecl->field_end();
4337 F != FEnd; ++F) {
4338 if (const RecordType *RecordTy
4339 = Context.getBaseElementType(F->getType())->getAs<RecordType>())
4340 ExceptSpec.CalledDecl(
Douglas Gregordb89f282010-07-01 22:47:18 +00004341 LookupDestructor(cast<CXXRecordDecl>(RecordTy->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00004342 }
4343
Douglas Gregor4923aa22010-07-02 20:37:36 +00004344 // Create the actual destructor declaration.
Douglas Gregorfabd43a2010-07-01 19:09:28 +00004345 QualType Ty = Context.getFunctionType(Context.VoidTy,
4346 0, 0, false, 0,
4347 ExceptSpec.hasExceptionSpecification(),
4348 ExceptSpec.hasAnyExceptionSpecification(),
4349 ExceptSpec.size(),
4350 ExceptSpec.data(),
4351 FunctionType::ExtInfo());
4352
4353 CanQualType ClassType
4354 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
4355 DeclarationName Name
4356 = Context.DeclarationNames.getCXXDestructorName(ClassType);
4357 CXXDestructorDecl *Destructor
4358 = CXXDestructorDecl::Create(Context, ClassDecl,
4359 ClassDecl->getLocation(), Name, Ty,
4360 /*isInline=*/true,
4361 /*isImplicitlyDeclared=*/true);
4362 Destructor->setAccess(AS_public);
4363 Destructor->setImplicit();
4364 Destructor->setTrivial(ClassDecl->hasTrivialDestructor());
Douglas Gregor4923aa22010-07-02 20:37:36 +00004365
4366 // Note that we have declared this destructor.
4367 ClassDecl->setDeclaredDestructor(true);
4368 ++ASTContext::NumImplicitDestructorsDeclared;
4369
4370 // Introduce this destructor into its scope.
Douglas Gregor23c94db2010-07-02 17:43:08 +00004371 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor4923aa22010-07-02 20:37:36 +00004372 PushOnScopeChains(Destructor, S, false);
4373 ClassDecl->addDecl(Destructor);
Douglas Gregorfabd43a2010-07-01 19:09:28 +00004374
4375 // This could be uniqued if it ever proves significant.
4376 Destructor->setTypeSourceInfo(Context.getTrivialTypeSourceInfo(Ty));
4377
4378 AddOverriddenMethods(ClassDecl, Destructor);
Douglas Gregor4923aa22010-07-02 20:37:36 +00004379
Douglas Gregorfabd43a2010-07-01 19:09:28 +00004380 return Destructor;
4381}
4382
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00004383void Sema::DefineImplicitDestructor(SourceLocation CurrentLocation,
Douglas Gregor4fe95f92009-09-04 19:04:08 +00004384 CXXDestructorDecl *Destructor) {
Douglas Gregorc070cc62010-06-17 23:14:26 +00004385 assert((Destructor->isImplicit() && !Destructor->isUsed(false)) &&
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00004386 "DefineImplicitDestructor - call it for implicit default dtor");
Anders Carlsson6d701392009-11-15 22:49:34 +00004387 CXXRecordDecl *ClassDecl = Destructor->getParent();
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00004388 assert(ClassDecl && "DefineImplicitDestructor - invalid destructor");
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00004389
Douglas Gregorc63d2c82010-05-12 16:39:35 +00004390 if (Destructor->isInvalidDecl())
4391 return;
4392
Douglas Gregor39957dc2010-05-01 15:04:51 +00004393 ImplicitlyDefinedFunctionScope Scope(*this, Destructor);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00004394
Douglas Gregorc63d2c82010-05-12 16:39:35 +00004395 ErrorTrap Trap(*this);
John McCallef027fe2010-03-16 21:39:52 +00004396 MarkBaseAndMemberDestructorsReferenced(Destructor->getLocation(),
4397 Destructor->getParent());
Mike Stump1eb44332009-09-09 15:08:12 +00004398
Douglas Gregorc63d2c82010-05-12 16:39:35 +00004399 if (CheckDestructor(Destructor) || Trap.hasErrorOccurred()) {
Anders Carlsson37909802009-11-30 21:24:50 +00004400 Diag(CurrentLocation, diag::note_member_synthesized_at)
4401 << CXXDestructor << Context.getTagDeclType(ClassDecl);
4402
4403 Destructor->setInvalidDecl();
4404 return;
4405 }
4406
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00004407 Destructor->setUsed();
Douglas Gregor6fb745b2010-05-13 16:44:06 +00004408 MarkVTableUsed(CurrentLocation, ClassDecl);
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00004409}
4410
Douglas Gregor06a9f362010-05-01 20:49:11 +00004411/// \brief Builds a statement that copies the given entity from \p From to
4412/// \c To.
4413///
4414/// This routine is used to copy the members of a class with an
4415/// implicitly-declared copy assignment operator. When the entities being
4416/// copied are arrays, this routine builds for loops to copy them.
4417///
4418/// \param S The Sema object used for type-checking.
4419///
4420/// \param Loc The location where the implicit copy is being generated.
4421///
4422/// \param T The type of the expressions being copied. Both expressions must
4423/// have this type.
4424///
4425/// \param To The expression we are copying to.
4426///
4427/// \param From The expression we are copying from.
4428///
Douglas Gregor6cdc1612010-05-04 15:20:55 +00004429/// \param CopyingBaseSubobject Whether we're copying a base subobject.
4430/// Otherwise, it's a non-static member subobject.
4431///
Douglas Gregor06a9f362010-05-01 20:49:11 +00004432/// \param Depth Internal parameter recording the depth of the recursion.
4433///
4434/// \returns A statement or a loop that copies the expressions.
4435static Sema::OwningStmtResult
4436BuildSingleCopyAssign(Sema &S, SourceLocation Loc, QualType T,
4437 Sema::OwningExprResult To, Sema::OwningExprResult From,
Douglas Gregor6cdc1612010-05-04 15:20:55 +00004438 bool CopyingBaseSubobject, unsigned Depth = 0) {
Douglas Gregor06a9f362010-05-01 20:49:11 +00004439 typedef Sema::OwningStmtResult OwningStmtResult;
4440 typedef Sema::OwningExprResult OwningExprResult;
4441
4442 // C++0x [class.copy]p30:
4443 // Each subobject is assigned in the manner appropriate to its type:
4444 //
4445 // - if the subobject is of class type, the copy assignment operator
4446 // for the class is used (as if by explicit qualification; that is,
4447 // ignoring any possible virtual overriding functions in more derived
4448 // classes);
4449 if (const RecordType *RecordTy = T->getAs<RecordType>()) {
4450 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
4451
4452 // Look for operator=.
4453 DeclarationName Name
4454 = S.Context.DeclarationNames.getCXXOperatorName(OO_Equal);
4455 LookupResult OpLookup(S, Name, Loc, Sema::LookupOrdinaryName);
4456 S.LookupQualifiedName(OpLookup, ClassDecl, false);
4457
4458 // Filter out any result that isn't a copy-assignment operator.
4459 LookupResult::Filter F = OpLookup.makeFilter();
4460 while (F.hasNext()) {
4461 NamedDecl *D = F.next();
4462 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
4463 if (Method->isCopyAssignmentOperator())
4464 continue;
4465
4466 F.erase();
John McCallb0207482010-03-16 06:11:48 +00004467 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00004468 F.done();
4469
Douglas Gregor6cdc1612010-05-04 15:20:55 +00004470 // Suppress the protected check (C++ [class.protected]) for each of the
4471 // assignment operators we found. This strange dance is required when
4472 // we're assigning via a base classes's copy-assignment operator. To
4473 // ensure that we're getting the right base class subobject (without
4474 // ambiguities), we need to cast "this" to that subobject type; to
4475 // ensure that we don't go through the virtual call mechanism, we need
4476 // to qualify the operator= name with the base class (see below). However,
4477 // this means that if the base class has a protected copy assignment
4478 // operator, the protected member access check will fail. So, we
4479 // rewrite "protected" access to "public" access in this case, since we
4480 // know by construction that we're calling from a derived class.
4481 if (CopyingBaseSubobject) {
4482 for (LookupResult::iterator L = OpLookup.begin(), LEnd = OpLookup.end();
4483 L != LEnd; ++L) {
4484 if (L.getAccess() == AS_protected)
4485 L.setAccess(AS_public);
4486 }
4487 }
4488
Douglas Gregor06a9f362010-05-01 20:49:11 +00004489 // Create the nested-name-specifier that will be used to qualify the
4490 // reference to operator=; this is required to suppress the virtual
4491 // call mechanism.
4492 CXXScopeSpec SS;
4493 SS.setRange(Loc);
4494 SS.setScopeRep(NestedNameSpecifier::Create(S.Context, 0, false,
4495 T.getTypePtr()));
4496
4497 // Create the reference to operator=.
4498 OwningExprResult OpEqualRef
4499 = S.BuildMemberReferenceExpr(move(To), T, Loc, /*isArrow=*/false, SS,
4500 /*FirstQualifierInScope=*/0, OpLookup,
4501 /*TemplateArgs=*/0,
4502 /*SuppressQualifierCheck=*/true);
4503 if (OpEqualRef.isInvalid())
4504 return S.StmtError();
4505
4506 // Build the call to the assignment operator.
4507 Expr *FromE = From.takeAs<Expr>();
4508 OwningExprResult Call = S.BuildCallToMemberFunction(/*Scope=*/0,
4509 OpEqualRef.takeAs<Expr>(),
4510 Loc, &FromE, 1, 0, Loc);
4511 if (Call.isInvalid())
4512 return S.StmtError();
4513
4514 return S.Owned(Call.takeAs<Stmt>());
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00004515 }
John McCallb0207482010-03-16 06:11:48 +00004516
Douglas Gregor06a9f362010-05-01 20:49:11 +00004517 // - if the subobject is of scalar type, the built-in assignment
4518 // operator is used.
4519 const ConstantArrayType *ArrayTy = S.Context.getAsConstantArrayType(T);
4520 if (!ArrayTy) {
4521 OwningExprResult Assignment = S.CreateBuiltinBinOp(Loc,
4522 BinaryOperator::Assign,
4523 To.takeAs<Expr>(),
4524 From.takeAs<Expr>());
4525 if (Assignment.isInvalid())
4526 return S.StmtError();
4527
4528 return S.Owned(Assignment.takeAs<Stmt>());
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00004529 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00004530
4531 // - if the subobject is an array, each element is assigned, in the
4532 // manner appropriate to the element type;
4533
4534 // Construct a loop over the array bounds, e.g.,
4535 //
4536 // for (__SIZE_TYPE__ i0 = 0; i0 != array-size; ++i0)
4537 //
4538 // that will copy each of the array elements.
4539 QualType SizeType = S.Context.getSizeType();
4540
4541 // Create the iteration variable.
4542 IdentifierInfo *IterationVarName = 0;
4543 {
4544 llvm::SmallString<8> Str;
4545 llvm::raw_svector_ostream OS(Str);
4546 OS << "__i" << Depth;
4547 IterationVarName = &S.Context.Idents.get(OS.str());
4548 }
4549 VarDecl *IterationVar = VarDecl::Create(S.Context, S.CurContext, Loc,
4550 IterationVarName, SizeType,
4551 S.Context.getTrivialTypeSourceInfo(SizeType, Loc),
4552 VarDecl::None, VarDecl::None);
4553
4554 // Initialize the iteration variable to zero.
4555 llvm::APInt Zero(S.Context.getTypeSize(SizeType), 0);
4556 IterationVar->setInit(new (S.Context) IntegerLiteral(Zero, SizeType, Loc));
4557
4558 // Create a reference to the iteration variable; we'll use this several
4559 // times throughout.
4560 Expr *IterationVarRef
4561 = S.BuildDeclRefExpr(IterationVar, SizeType, Loc).takeAs<Expr>();
4562 assert(IterationVarRef && "Reference to invented variable cannot fail!");
4563
4564 // Create the DeclStmt that holds the iteration variable.
4565 Stmt *InitStmt = new (S.Context) DeclStmt(DeclGroupRef(IterationVar),Loc,Loc);
4566
4567 // Create the comparison against the array bound.
4568 llvm::APInt Upper = ArrayTy->getSize();
4569 Upper.zextOrTrunc(S.Context.getTypeSize(SizeType));
4570 OwningExprResult Comparison
4571 = S.Owned(new (S.Context) BinaryOperator(IterationVarRef->Retain(),
4572 new (S.Context) IntegerLiteral(Upper, SizeType, Loc),
4573 BinaryOperator::NE, S.Context.BoolTy, Loc));
4574
4575 // Create the pre-increment of the iteration variable.
4576 OwningExprResult Increment
4577 = S.Owned(new (S.Context) UnaryOperator(IterationVarRef->Retain(),
4578 UnaryOperator::PreInc,
4579 SizeType, Loc));
4580
4581 // Subscript the "from" and "to" expressions with the iteration variable.
4582 From = S.CreateBuiltinArraySubscriptExpr(move(From), Loc,
4583 S.Owned(IterationVarRef->Retain()),
4584 Loc);
4585 To = S.CreateBuiltinArraySubscriptExpr(move(To), Loc,
4586 S.Owned(IterationVarRef->Retain()),
4587 Loc);
4588 assert(!From.isInvalid() && "Builtin subscripting can't fail!");
4589 assert(!To.isInvalid() && "Builtin subscripting can't fail!");
4590
4591 // Build the copy for an individual element of the array.
4592 OwningStmtResult Copy = BuildSingleCopyAssign(S, Loc,
4593 ArrayTy->getElementType(),
Douglas Gregor6cdc1612010-05-04 15:20:55 +00004594 move(To), move(From),
4595 CopyingBaseSubobject, Depth+1);
Douglas Gregorff331c12010-07-25 18:17:45 +00004596 if (Copy.isInvalid())
Douglas Gregor06a9f362010-05-01 20:49:11 +00004597 return S.StmtError();
Douglas Gregor06a9f362010-05-01 20:49:11 +00004598
4599 // Construct the loop that copies all elements of this array.
4600 return S.ActOnForStmt(Loc, Loc, S.Owned(InitStmt),
4601 S.MakeFullExpr(Comparison),
4602 Sema::DeclPtrTy(),
4603 S.MakeFullExpr(Increment),
4604 Loc, move(Copy));
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00004605}
4606
Douglas Gregora376d102010-07-02 21:50:04 +00004607/// \brief Determine whether the given class has a copy assignment operator
4608/// that accepts a const-qualified argument.
4609static bool hasConstCopyAssignment(Sema &S, const CXXRecordDecl *CClass) {
4610 CXXRecordDecl *Class = const_cast<CXXRecordDecl *>(CClass);
4611
4612 if (!Class->hasDeclaredCopyAssignment())
4613 S.DeclareImplicitCopyAssignment(Class);
4614
4615 QualType ClassType = S.Context.getCanonicalType(S.Context.getTypeDeclType(Class));
4616 DeclarationName OpName
4617 = S.Context.DeclarationNames.getCXXOperatorName(OO_Equal);
4618
4619 DeclContext::lookup_const_iterator Op, OpEnd;
4620 for (llvm::tie(Op, OpEnd) = Class->lookup(OpName); Op != OpEnd; ++Op) {
4621 // C++ [class.copy]p9:
4622 // A user-declared copy assignment operator is a non-static non-template
4623 // member function of class X with exactly one parameter of type X, X&,
4624 // const X&, volatile X& or const volatile X&.
4625 const CXXMethodDecl* Method = dyn_cast<CXXMethodDecl>(*Op);
4626 if (!Method)
4627 continue;
4628
4629 if (Method->isStatic())
4630 continue;
4631 if (Method->getPrimaryTemplate())
4632 continue;
4633 const FunctionProtoType *FnType =
4634 Method->getType()->getAs<FunctionProtoType>();
4635 assert(FnType && "Overloaded operator has no prototype.");
4636 // Don't assert on this; an invalid decl might have been left in the AST.
4637 if (FnType->getNumArgs() != 1 || FnType->isVariadic())
4638 continue;
4639 bool AcceptsConst = true;
4640 QualType ArgType = FnType->getArgType(0);
4641 if (const LValueReferenceType *Ref = ArgType->getAs<LValueReferenceType>()){
4642 ArgType = Ref->getPointeeType();
4643 // Is it a non-const lvalue reference?
4644 if (!ArgType.isConstQualified())
4645 AcceptsConst = false;
4646 }
4647 if (!S.Context.hasSameUnqualifiedType(ArgType, ClassType))
4648 continue;
4649
4650 // We have a single argument of type cv X or cv X&, i.e. we've found the
4651 // copy assignment operator. Return whether it accepts const arguments.
4652 return AcceptsConst;
4653 }
4654 assert(Class->isInvalidDecl() &&
4655 "No copy assignment operator declared in valid code.");
4656 return false;
4657}
4658
Douglas Gregor23c94db2010-07-02 17:43:08 +00004659CXXMethodDecl *Sema::DeclareImplicitCopyAssignment(CXXRecordDecl *ClassDecl) {
Douglas Gregord3c35902010-07-01 16:36:15 +00004660 // Note: The following rules are largely analoguous to the copy
4661 // constructor rules. Note that virtual bases are not taken into account
4662 // for determining the argument type of the operator. Note also that
4663 // operators taking an object instead of a reference are allowed.
Douglas Gregor18274032010-07-03 00:47:00 +00004664
4665
Douglas Gregord3c35902010-07-01 16:36:15 +00004666 // C++ [class.copy]p10:
4667 // If the class definition does not explicitly declare a copy
4668 // assignment operator, one is declared implicitly.
4669 // The implicitly-defined copy assignment operator for a class X
4670 // will have the form
4671 //
4672 // X& X::operator=(const X&)
4673 //
4674 // if
4675 bool HasConstCopyAssignment = true;
4676
4677 // -- each direct base class B of X has a copy assignment operator
4678 // whose parameter is of type const B&, const volatile B& or B,
4679 // and
4680 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
4681 BaseEnd = ClassDecl->bases_end();
4682 HasConstCopyAssignment && Base != BaseEnd; ++Base) {
4683 assert(!Base->getType()->isDependentType() &&
4684 "Cannot generate implicit members for class with dependent bases.");
4685 const CXXRecordDecl *BaseClassDecl
4686 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregora376d102010-07-02 21:50:04 +00004687 HasConstCopyAssignment = hasConstCopyAssignment(*this, BaseClassDecl);
Douglas Gregord3c35902010-07-01 16:36:15 +00004688 }
4689
4690 // -- for all the nonstatic data members of X that are of a class
4691 // type M (or array thereof), each such class type has a copy
4692 // assignment operator whose parameter is of type const M&,
4693 // const volatile M& or M.
4694 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
4695 FieldEnd = ClassDecl->field_end();
4696 HasConstCopyAssignment && Field != FieldEnd;
4697 ++Field) {
4698 QualType FieldType = Context.getBaseElementType((*Field)->getType());
4699 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
4700 const CXXRecordDecl *FieldClassDecl
4701 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Douglas Gregora376d102010-07-02 21:50:04 +00004702 HasConstCopyAssignment = hasConstCopyAssignment(*this, FieldClassDecl);
Douglas Gregord3c35902010-07-01 16:36:15 +00004703 }
4704 }
4705
4706 // Otherwise, the implicitly declared copy assignment operator will
4707 // have the form
4708 //
4709 // X& X::operator=(X&)
4710 QualType ArgType = Context.getTypeDeclType(ClassDecl);
4711 QualType RetType = Context.getLValueReferenceType(ArgType);
4712 if (HasConstCopyAssignment)
4713 ArgType = ArgType.withConst();
4714 ArgType = Context.getLValueReferenceType(ArgType);
4715
Douglas Gregorb87786f2010-07-01 17:48:08 +00004716 // C++ [except.spec]p14:
4717 // An implicitly declared special member function (Clause 12) shall have an
4718 // exception-specification. [...]
4719 ImplicitExceptionSpecification ExceptSpec(Context);
4720 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
4721 BaseEnd = ClassDecl->bases_end();
4722 Base != BaseEnd; ++Base) {
Douglas Gregora376d102010-07-02 21:50:04 +00004723 CXXRecordDecl *BaseClassDecl
Douglas Gregorb87786f2010-07-01 17:48:08 +00004724 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregora376d102010-07-02 21:50:04 +00004725
4726 if (!BaseClassDecl->hasDeclaredCopyAssignment())
4727 DeclareImplicitCopyAssignment(BaseClassDecl);
4728
Douglas Gregorb87786f2010-07-01 17:48:08 +00004729 if (CXXMethodDecl *CopyAssign
4730 = BaseClassDecl->getCopyAssignmentOperator(HasConstCopyAssignment))
4731 ExceptSpec.CalledDecl(CopyAssign);
4732 }
4733 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
4734 FieldEnd = ClassDecl->field_end();
4735 Field != FieldEnd;
4736 ++Field) {
4737 QualType FieldType = Context.getBaseElementType((*Field)->getType());
4738 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Douglas Gregora376d102010-07-02 21:50:04 +00004739 CXXRecordDecl *FieldClassDecl
Douglas Gregorb87786f2010-07-01 17:48:08 +00004740 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Douglas Gregora376d102010-07-02 21:50:04 +00004741
4742 if (!FieldClassDecl->hasDeclaredCopyAssignment())
4743 DeclareImplicitCopyAssignment(FieldClassDecl);
4744
Douglas Gregorb87786f2010-07-01 17:48:08 +00004745 if (CXXMethodDecl *CopyAssign
4746 = FieldClassDecl->getCopyAssignmentOperator(HasConstCopyAssignment))
4747 ExceptSpec.CalledDecl(CopyAssign);
4748 }
4749 }
4750
Douglas Gregord3c35902010-07-01 16:36:15 +00004751 // An implicitly-declared copy assignment operator is an inline public
4752 // member of its class.
4753 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
4754 CXXMethodDecl *CopyAssignment
4755 = CXXMethodDecl::Create(Context, ClassDecl, ClassDecl->getLocation(), Name,
4756 Context.getFunctionType(RetType, &ArgType, 1,
4757 false, 0,
Douglas Gregorb87786f2010-07-01 17:48:08 +00004758 ExceptSpec.hasExceptionSpecification(),
4759 ExceptSpec.hasAnyExceptionSpecification(),
4760 ExceptSpec.size(),
4761 ExceptSpec.data(),
Douglas Gregord3c35902010-07-01 16:36:15 +00004762 FunctionType::ExtInfo()),
4763 /*TInfo=*/0, /*isStatic=*/false,
4764 /*StorageClassAsWritten=*/FunctionDecl::None,
4765 /*isInline=*/true);
4766 CopyAssignment->setAccess(AS_public);
4767 CopyAssignment->setImplicit();
4768 CopyAssignment->setTrivial(ClassDecl->hasTrivialCopyAssignment());
4769 CopyAssignment->setCopyAssignment(true);
4770
4771 // Add the parameter to the operator.
4772 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyAssignment,
4773 ClassDecl->getLocation(),
4774 /*Id=*/0,
4775 ArgType, /*TInfo=*/0,
4776 VarDecl::None,
4777 VarDecl::None, 0);
4778 CopyAssignment->setParams(&FromParam, 1);
4779
Douglas Gregora376d102010-07-02 21:50:04 +00004780 // Note that we have added this copy-assignment operator.
4781 ClassDecl->setDeclaredCopyAssignment(true);
4782 ++ASTContext::NumImplicitCopyAssignmentOperatorsDeclared;
4783
Douglas Gregor23c94db2010-07-02 17:43:08 +00004784 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregora376d102010-07-02 21:50:04 +00004785 PushOnScopeChains(CopyAssignment, S, false);
4786 ClassDecl->addDecl(CopyAssignment);
Douglas Gregord3c35902010-07-01 16:36:15 +00004787
4788 AddOverriddenMethods(ClassDecl, CopyAssignment);
4789 return CopyAssignment;
4790}
4791
Douglas Gregor06a9f362010-05-01 20:49:11 +00004792void Sema::DefineImplicitCopyAssignment(SourceLocation CurrentLocation,
4793 CXXMethodDecl *CopyAssignOperator) {
4794 assert((CopyAssignOperator->isImplicit() &&
4795 CopyAssignOperator->isOverloadedOperator() &&
4796 CopyAssignOperator->getOverloadedOperator() == OO_Equal &&
Douglas Gregorc070cc62010-06-17 23:14:26 +00004797 !CopyAssignOperator->isUsed(false)) &&
Douglas Gregor06a9f362010-05-01 20:49:11 +00004798 "DefineImplicitCopyAssignment called for wrong function");
4799
4800 CXXRecordDecl *ClassDecl = CopyAssignOperator->getParent();
4801
4802 if (ClassDecl->isInvalidDecl() || CopyAssignOperator->isInvalidDecl()) {
4803 CopyAssignOperator->setInvalidDecl();
4804 return;
4805 }
4806
4807 CopyAssignOperator->setUsed();
4808
4809 ImplicitlyDefinedFunctionScope Scope(*this, CopyAssignOperator);
Douglas Gregorc63d2c82010-05-12 16:39:35 +00004810 ErrorTrap Trap(*this);
Douglas Gregor06a9f362010-05-01 20:49:11 +00004811
4812 // C++0x [class.copy]p30:
4813 // The implicitly-defined or explicitly-defaulted copy assignment operator
4814 // for a non-union class X performs memberwise copy assignment of its
4815 // subobjects. The direct base classes of X are assigned first, in the
4816 // order of their declaration in the base-specifier-list, and then the
4817 // immediate non-static data members of X are assigned, in the order in
4818 // which they were declared in the class definition.
4819
4820 // The statements that form the synthesized function body.
4821 ASTOwningVector<&ActionBase::DeleteStmt> Statements(*this);
4822
4823 // The parameter for the "other" object, which we are copying from.
4824 ParmVarDecl *Other = CopyAssignOperator->getParamDecl(0);
4825 Qualifiers OtherQuals = Other->getType().getQualifiers();
4826 QualType OtherRefType = Other->getType();
4827 if (const LValueReferenceType *OtherRef
4828 = OtherRefType->getAs<LValueReferenceType>()) {
4829 OtherRefType = OtherRef->getPointeeType();
4830 OtherQuals = OtherRefType.getQualifiers();
4831 }
4832
4833 // Our location for everything implicitly-generated.
4834 SourceLocation Loc = CopyAssignOperator->getLocation();
4835
4836 // Construct a reference to the "other" object. We'll be using this
4837 // throughout the generated ASTs.
4838 Expr *OtherRef = BuildDeclRefExpr(Other, OtherRefType, Loc).takeAs<Expr>();
4839 assert(OtherRef && "Reference to parameter cannot fail!");
4840
4841 // Construct the "this" pointer. We'll be using this throughout the generated
4842 // ASTs.
4843 Expr *This = ActOnCXXThis(Loc).takeAs<Expr>();
4844 assert(This && "Reference to this cannot fail!");
4845
4846 // Assign base classes.
4847 bool Invalid = false;
4848 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
4849 E = ClassDecl->bases_end(); Base != E; ++Base) {
4850 // Form the assignment:
4851 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&>(other));
4852 QualType BaseType = Base->getType().getUnqualifiedType();
4853 CXXRecordDecl *BaseClassDecl = 0;
4854 if (const RecordType *BaseRecordT = BaseType->getAs<RecordType>())
4855 BaseClassDecl = cast<CXXRecordDecl>(BaseRecordT->getDecl());
4856 else {
4857 Invalid = true;
4858 continue;
4859 }
4860
John McCallf871d0c2010-08-07 06:22:56 +00004861 CXXCastPath BasePath;
4862 BasePath.push_back(Base);
4863
Douglas Gregor06a9f362010-05-01 20:49:11 +00004864 // Construct the "from" expression, which is an implicit cast to the
4865 // appropriately-qualified base type.
4866 Expr *From = OtherRef->Retain();
4867 ImpCastExprToType(From, Context.getQualifiedType(BaseType, OtherQuals),
Sebastian Redl906082e2010-07-20 04:20:21 +00004868 CastExpr::CK_UncheckedDerivedToBase,
John McCallf871d0c2010-08-07 06:22:56 +00004869 ImplicitCastExpr::LValue, &BasePath);
Douglas Gregor06a9f362010-05-01 20:49:11 +00004870
4871 // Dereference "this".
4872 OwningExprResult To = CreateBuiltinUnaryOp(Loc, UnaryOperator::Deref,
4873 Owned(This->Retain()));
4874
4875 // Implicitly cast "this" to the appropriately-qualified base type.
4876 Expr *ToE = To.takeAs<Expr>();
4877 ImpCastExprToType(ToE,
4878 Context.getCVRQualifiedType(BaseType,
4879 CopyAssignOperator->getTypeQualifiers()),
4880 CastExpr::CK_UncheckedDerivedToBase,
John McCallf871d0c2010-08-07 06:22:56 +00004881 ImplicitCastExpr::LValue, &BasePath);
Douglas Gregor06a9f362010-05-01 20:49:11 +00004882 To = Owned(ToE);
4883
4884 // Build the copy.
4885 OwningStmtResult Copy = BuildSingleCopyAssign(*this, Loc, BaseType,
Douglas Gregor6cdc1612010-05-04 15:20:55 +00004886 move(To), Owned(From),
4887 /*CopyingBaseSubobject=*/true);
Douglas Gregor06a9f362010-05-01 20:49:11 +00004888 if (Copy.isInvalid()) {
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00004889 Diag(CurrentLocation, diag::note_member_synthesized_at)
4890 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
4891 CopyAssignOperator->setInvalidDecl();
4892 return;
Douglas Gregor06a9f362010-05-01 20:49:11 +00004893 }
4894
4895 // Success! Record the copy.
4896 Statements.push_back(Copy.takeAs<Expr>());
4897 }
4898
4899 // \brief Reference to the __builtin_memcpy function.
4900 Expr *BuiltinMemCpyRef = 0;
Fariborz Jahanian8e2eab22010-06-16 16:22:04 +00004901 // \brief Reference to the __builtin_objc_memmove_collectable function.
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00004902 Expr *CollectableMemCpyRef = 0;
Douglas Gregor06a9f362010-05-01 20:49:11 +00004903
4904 // Assign non-static members.
4905 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
4906 FieldEnd = ClassDecl->field_end();
4907 Field != FieldEnd; ++Field) {
4908 // Check for members of reference type; we can't copy those.
4909 if (Field->getType()->isReferenceType()) {
4910 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
4911 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
4912 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00004913 Diag(CurrentLocation, diag::note_member_synthesized_at)
4914 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregor06a9f362010-05-01 20:49:11 +00004915 Invalid = true;
4916 continue;
4917 }
4918
4919 // Check for members of const-qualified, non-class type.
4920 QualType BaseType = Context.getBaseElementType(Field->getType());
4921 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) {
4922 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
4923 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
4924 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00004925 Diag(CurrentLocation, diag::note_member_synthesized_at)
4926 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregor06a9f362010-05-01 20:49:11 +00004927 Invalid = true;
4928 continue;
4929 }
4930
4931 QualType FieldType = Field->getType().getNonReferenceType();
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00004932 if (FieldType->isIncompleteArrayType()) {
4933 assert(ClassDecl->hasFlexibleArrayMember() &&
4934 "Incomplete array type is not valid");
4935 continue;
4936 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00004937
4938 // Build references to the field in the object we're copying from and to.
4939 CXXScopeSpec SS; // Intentionally empty
4940 LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
4941 LookupMemberName);
4942 MemberLookup.addDecl(*Field);
4943 MemberLookup.resolveKind();
4944 OwningExprResult From = BuildMemberReferenceExpr(Owned(OtherRef->Retain()),
4945 OtherRefType,
4946 Loc, /*IsArrow=*/false,
4947 SS, 0, MemberLookup, 0);
4948 OwningExprResult To = BuildMemberReferenceExpr(Owned(This->Retain()),
4949 This->getType(),
4950 Loc, /*IsArrow=*/true,
4951 SS, 0, MemberLookup, 0);
4952 assert(!From.isInvalid() && "Implicit field reference cannot fail");
4953 assert(!To.isInvalid() && "Implicit field reference cannot fail");
4954
4955 // If the field should be copied with __builtin_memcpy rather than via
4956 // explicit assignments, do so. This optimization only applies for arrays
4957 // of scalars and arrays of class type with trivial copy-assignment
4958 // operators.
4959 if (FieldType->isArrayType() &&
4960 (!BaseType->isRecordType() ||
4961 cast<CXXRecordDecl>(BaseType->getAs<RecordType>()->getDecl())
4962 ->hasTrivialCopyAssignment())) {
4963 // Compute the size of the memory buffer to be copied.
4964 QualType SizeType = Context.getSizeType();
4965 llvm::APInt Size(Context.getTypeSize(SizeType),
4966 Context.getTypeSizeInChars(BaseType).getQuantity());
4967 for (const ConstantArrayType *Array
4968 = Context.getAsConstantArrayType(FieldType);
4969 Array;
4970 Array = Context.getAsConstantArrayType(Array->getElementType())) {
4971 llvm::APInt ArraySize = Array->getSize();
4972 ArraySize.zextOrTrunc(Size.getBitWidth());
4973 Size *= ArraySize;
4974 }
4975
4976 // Take the address of the field references for "from" and "to".
4977 From = CreateBuiltinUnaryOp(Loc, UnaryOperator::AddrOf, move(From));
4978 To = CreateBuiltinUnaryOp(Loc, UnaryOperator::AddrOf, move(To));
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00004979
4980 bool NeedsCollectableMemCpy =
4981 (BaseType->isRecordType() &&
4982 BaseType->getAs<RecordType>()->getDecl()->hasObjectMember());
4983
4984 if (NeedsCollectableMemCpy) {
4985 if (!CollectableMemCpyRef) {
Fariborz Jahanian8e2eab22010-06-16 16:22:04 +00004986 // Create a reference to the __builtin_objc_memmove_collectable function.
4987 LookupResult R(*this,
4988 &Context.Idents.get("__builtin_objc_memmove_collectable"),
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00004989 Loc, LookupOrdinaryName);
4990 LookupName(R, TUScope, true);
4991
4992 FunctionDecl *CollectableMemCpy = R.getAsSingle<FunctionDecl>();
4993 if (!CollectableMemCpy) {
4994 // Something went horribly wrong earlier, and we will have
4995 // complained about it.
4996 Invalid = true;
4997 continue;
4998 }
4999
5000 CollectableMemCpyRef = BuildDeclRefExpr(CollectableMemCpy,
5001 CollectableMemCpy->getType(),
5002 Loc, 0).takeAs<Expr>();
5003 assert(CollectableMemCpyRef && "Builtin reference cannot fail");
5004 }
5005 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00005006 // Create a reference to the __builtin_memcpy builtin function.
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00005007 else if (!BuiltinMemCpyRef) {
Douglas Gregor06a9f362010-05-01 20:49:11 +00005008 LookupResult R(*this, &Context.Idents.get("__builtin_memcpy"), Loc,
5009 LookupOrdinaryName);
5010 LookupName(R, TUScope, true);
5011
5012 FunctionDecl *BuiltinMemCpy = R.getAsSingle<FunctionDecl>();
5013 if (!BuiltinMemCpy) {
5014 // Something went horribly wrong earlier, and we will have complained
5015 // about it.
5016 Invalid = true;
5017 continue;
5018 }
5019
5020 BuiltinMemCpyRef = BuildDeclRefExpr(BuiltinMemCpy,
5021 BuiltinMemCpy->getType(),
5022 Loc, 0).takeAs<Expr>();
5023 assert(BuiltinMemCpyRef && "Builtin reference cannot fail");
5024 }
5025
5026 ASTOwningVector<&ActionBase::DeleteExpr> CallArgs(*this);
5027 CallArgs.push_back(To.takeAs<Expr>());
5028 CallArgs.push_back(From.takeAs<Expr>());
5029 CallArgs.push_back(new (Context) IntegerLiteral(Size, SizeType, Loc));
5030 llvm::SmallVector<SourceLocation, 4> Commas; // FIXME: Silly
5031 Commas.push_back(Loc);
5032 Commas.push_back(Loc);
Fariborz Jahanianff2d05f2010-06-16 00:16:38 +00005033 OwningExprResult Call = ExprError();
5034 if (NeedsCollectableMemCpy)
5035 Call = ActOnCallExpr(/*Scope=*/0,
5036 Owned(CollectableMemCpyRef->Retain()),
5037 Loc, move_arg(CallArgs),
5038 Commas.data(), Loc);
5039 else
5040 Call = ActOnCallExpr(/*Scope=*/0,
5041 Owned(BuiltinMemCpyRef->Retain()),
5042 Loc, move_arg(CallArgs),
5043 Commas.data(), Loc);
5044
Douglas Gregor06a9f362010-05-01 20:49:11 +00005045 assert(!Call.isInvalid() && "Call to __builtin_memcpy cannot fail!");
5046 Statements.push_back(Call.takeAs<Expr>());
5047 continue;
5048 }
5049
5050 // Build the copy of this field.
5051 OwningStmtResult Copy = BuildSingleCopyAssign(*this, Loc, FieldType,
Douglas Gregor6cdc1612010-05-04 15:20:55 +00005052 move(To), move(From),
5053 /*CopyingBaseSubobject=*/false);
Douglas Gregor06a9f362010-05-01 20:49:11 +00005054 if (Copy.isInvalid()) {
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00005055 Diag(CurrentLocation, diag::note_member_synthesized_at)
5056 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
5057 CopyAssignOperator->setInvalidDecl();
5058 return;
Douglas Gregor06a9f362010-05-01 20:49:11 +00005059 }
5060
5061 // Success! Record the copy.
5062 Statements.push_back(Copy.takeAs<Stmt>());
5063 }
5064
5065 if (!Invalid) {
5066 // Add a "return *this;"
5067 OwningExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UnaryOperator::Deref,
5068 Owned(This->Retain()));
5069
5070 OwningStmtResult Return = ActOnReturnStmt(Loc, move(ThisObj));
5071 if (Return.isInvalid())
5072 Invalid = true;
5073 else {
5074 Statements.push_back(Return.takeAs<Stmt>());
Douglas Gregorc63d2c82010-05-12 16:39:35 +00005075
5076 if (Trap.hasErrorOccurred()) {
5077 Diag(CurrentLocation, diag::note_member_synthesized_at)
5078 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
5079 Invalid = true;
5080 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00005081 }
5082 }
5083
5084 if (Invalid) {
5085 CopyAssignOperator->setInvalidDecl();
5086 return;
5087 }
5088
5089 OwningStmtResult Body = ActOnCompoundStmt(Loc, Loc, move_arg(Statements),
5090 /*isStmtExpr=*/false);
5091 assert(!Body.isInvalid() && "Compound statement creation cannot fail");
5092 CopyAssignOperator->setBody(Body.takeAs<Stmt>());
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00005093}
5094
Douglas Gregor23c94db2010-07-02 17:43:08 +00005095CXXConstructorDecl *Sema::DeclareImplicitCopyConstructor(
5096 CXXRecordDecl *ClassDecl) {
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005097 // C++ [class.copy]p4:
5098 // If the class definition does not explicitly declare a copy
5099 // constructor, one is declared implicitly.
5100
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005101 // C++ [class.copy]p5:
5102 // The implicitly-declared copy constructor for a class X will
5103 // have the form
5104 //
5105 // X::X(const X&)
5106 //
5107 // if
5108 bool HasConstCopyConstructor = true;
5109
5110 // -- each direct or virtual base class B of X has a copy
5111 // constructor whose first parameter is of type const B& or
5112 // const volatile B&, and
5113 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
5114 BaseEnd = ClassDecl->bases_end();
5115 HasConstCopyConstructor && Base != BaseEnd;
5116 ++Base) {
Douglas Gregor598a8542010-07-01 18:27:03 +00005117 // Virtual bases are handled below.
5118 if (Base->isVirtual())
5119 continue;
5120
Douglas Gregor22584312010-07-02 23:41:54 +00005121 CXXRecordDecl *BaseClassDecl
Douglas Gregor598a8542010-07-01 18:27:03 +00005122 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregor22584312010-07-02 23:41:54 +00005123 if (!BaseClassDecl->hasDeclaredCopyConstructor())
5124 DeclareImplicitCopyConstructor(BaseClassDecl);
5125
Douglas Gregor598a8542010-07-01 18:27:03 +00005126 HasConstCopyConstructor
5127 = BaseClassDecl->hasConstCopyConstructor(Context);
5128 }
5129
5130 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
5131 BaseEnd = ClassDecl->vbases_end();
5132 HasConstCopyConstructor && Base != BaseEnd;
5133 ++Base) {
Douglas Gregor22584312010-07-02 23:41:54 +00005134 CXXRecordDecl *BaseClassDecl
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005135 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregor22584312010-07-02 23:41:54 +00005136 if (!BaseClassDecl->hasDeclaredCopyConstructor())
5137 DeclareImplicitCopyConstructor(BaseClassDecl);
5138
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005139 HasConstCopyConstructor
5140 = BaseClassDecl->hasConstCopyConstructor(Context);
5141 }
5142
5143 // -- for all the nonstatic data members of X that are of a
5144 // class type M (or array thereof), each such class type
5145 // has a copy constructor whose first parameter is of type
5146 // const M& or const volatile M&.
5147 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
5148 FieldEnd = ClassDecl->field_end();
5149 HasConstCopyConstructor && Field != FieldEnd;
5150 ++Field) {
Douglas Gregor598a8542010-07-01 18:27:03 +00005151 QualType FieldType = Context.getBaseElementType((*Field)->getType());
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005152 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Douglas Gregor22584312010-07-02 23:41:54 +00005153 CXXRecordDecl *FieldClassDecl
Douglas Gregor598a8542010-07-01 18:27:03 +00005154 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Douglas Gregor22584312010-07-02 23:41:54 +00005155 if (!FieldClassDecl->hasDeclaredCopyConstructor())
5156 DeclareImplicitCopyConstructor(FieldClassDecl);
5157
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005158 HasConstCopyConstructor
Douglas Gregor598a8542010-07-01 18:27:03 +00005159 = FieldClassDecl->hasConstCopyConstructor(Context);
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005160 }
5161 }
5162
5163 // Otherwise, the implicitly declared copy constructor will have
5164 // the form
5165 //
5166 // X::X(X&)
5167 QualType ClassType = Context.getTypeDeclType(ClassDecl);
5168 QualType ArgType = ClassType;
5169 if (HasConstCopyConstructor)
5170 ArgType = ArgType.withConst();
5171 ArgType = Context.getLValueReferenceType(ArgType);
5172
Douglas Gregor0d405db2010-07-01 20:59:04 +00005173 // C++ [except.spec]p14:
5174 // An implicitly declared special member function (Clause 12) shall have an
5175 // exception-specification. [...]
5176 ImplicitExceptionSpecification ExceptSpec(Context);
5177 unsigned Quals = HasConstCopyConstructor? Qualifiers::Const : 0;
5178 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
5179 BaseEnd = ClassDecl->bases_end();
5180 Base != BaseEnd;
5181 ++Base) {
5182 // Virtual bases are handled below.
5183 if (Base->isVirtual())
5184 continue;
5185
Douglas Gregor22584312010-07-02 23:41:54 +00005186 CXXRecordDecl *BaseClassDecl
Douglas Gregor0d405db2010-07-01 20:59:04 +00005187 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregor22584312010-07-02 23:41:54 +00005188 if (!BaseClassDecl->hasDeclaredCopyConstructor())
5189 DeclareImplicitCopyConstructor(BaseClassDecl);
5190
Douglas Gregor0d405db2010-07-01 20:59:04 +00005191 if (CXXConstructorDecl *CopyConstructor
5192 = BaseClassDecl->getCopyConstructor(Context, Quals))
5193 ExceptSpec.CalledDecl(CopyConstructor);
5194 }
5195 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
5196 BaseEnd = ClassDecl->vbases_end();
5197 Base != BaseEnd;
5198 ++Base) {
Douglas Gregor22584312010-07-02 23:41:54 +00005199 CXXRecordDecl *BaseClassDecl
Douglas Gregor0d405db2010-07-01 20:59:04 +00005200 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregor22584312010-07-02 23:41:54 +00005201 if (!BaseClassDecl->hasDeclaredCopyConstructor())
5202 DeclareImplicitCopyConstructor(BaseClassDecl);
5203
Douglas Gregor0d405db2010-07-01 20:59:04 +00005204 if (CXXConstructorDecl *CopyConstructor
5205 = BaseClassDecl->getCopyConstructor(Context, Quals))
5206 ExceptSpec.CalledDecl(CopyConstructor);
5207 }
5208 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
5209 FieldEnd = ClassDecl->field_end();
5210 Field != FieldEnd;
5211 ++Field) {
5212 QualType FieldType = Context.getBaseElementType((*Field)->getType());
5213 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Douglas Gregor22584312010-07-02 23:41:54 +00005214 CXXRecordDecl *FieldClassDecl
Douglas Gregor0d405db2010-07-01 20:59:04 +00005215 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Douglas Gregor22584312010-07-02 23:41:54 +00005216 if (!FieldClassDecl->hasDeclaredCopyConstructor())
5217 DeclareImplicitCopyConstructor(FieldClassDecl);
5218
Douglas Gregor0d405db2010-07-01 20:59:04 +00005219 if (CXXConstructorDecl *CopyConstructor
5220 = FieldClassDecl->getCopyConstructor(Context, Quals))
5221 ExceptSpec.CalledDecl(CopyConstructor);
5222 }
5223 }
5224
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005225 // An implicitly-declared copy constructor is an inline public
5226 // member of its class.
5227 DeclarationName Name
5228 = Context.DeclarationNames.getCXXConstructorName(
5229 Context.getCanonicalType(ClassType));
5230 CXXConstructorDecl *CopyConstructor
5231 = CXXConstructorDecl::Create(Context, ClassDecl,
5232 ClassDecl->getLocation(), Name,
5233 Context.getFunctionType(Context.VoidTy,
5234 &ArgType, 1,
5235 false, 0,
Douglas Gregor0d405db2010-07-01 20:59:04 +00005236 ExceptSpec.hasExceptionSpecification(),
5237 ExceptSpec.hasAnyExceptionSpecification(),
5238 ExceptSpec.size(),
5239 ExceptSpec.data(),
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005240 FunctionType::ExtInfo()),
5241 /*TInfo=*/0,
5242 /*isExplicit=*/false,
5243 /*isInline=*/true,
5244 /*isImplicitlyDeclared=*/true);
5245 CopyConstructor->setAccess(AS_public);
5246 CopyConstructor->setImplicit();
5247 CopyConstructor->setTrivial(ClassDecl->hasTrivialCopyConstructor());
5248
Douglas Gregor22584312010-07-02 23:41:54 +00005249 // Note that we have declared this constructor.
5250 ClassDecl->setDeclaredCopyConstructor(true);
5251 ++ASTContext::NumImplicitCopyConstructorsDeclared;
5252
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005253 // Add the parameter to the constructor.
5254 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyConstructor,
5255 ClassDecl->getLocation(),
5256 /*IdentifierInfo=*/0,
5257 ArgType, /*TInfo=*/0,
5258 VarDecl::None,
5259 VarDecl::None, 0);
5260 CopyConstructor->setParams(&FromParam, 1);
Douglas Gregor23c94db2010-07-02 17:43:08 +00005261 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor22584312010-07-02 23:41:54 +00005262 PushOnScopeChains(CopyConstructor, S, false);
5263 ClassDecl->addDecl(CopyConstructor);
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005264
5265 return CopyConstructor;
5266}
5267
Fariborz Jahanian485f0872009-06-22 23:34:40 +00005268void Sema::DefineImplicitCopyConstructor(SourceLocation CurrentLocation,
5269 CXXConstructorDecl *CopyConstructor,
5270 unsigned TypeQuals) {
Mike Stump1eb44332009-09-09 15:08:12 +00005271 assert((CopyConstructor->isImplicit() &&
Douglas Gregor9e9199d2009-12-22 00:34:07 +00005272 CopyConstructor->isCopyConstructor(TypeQuals) &&
Douglas Gregorc070cc62010-06-17 23:14:26 +00005273 !CopyConstructor->isUsed(false)) &&
Fariborz Jahanian485f0872009-06-22 23:34:40 +00005274 "DefineImplicitCopyConstructor - call it for implicit copy ctor");
Mike Stump1eb44332009-09-09 15:08:12 +00005275
Anders Carlsson63010a72010-04-23 16:24:12 +00005276 CXXRecordDecl *ClassDecl = CopyConstructor->getParent();
Fariborz Jahanian485f0872009-06-22 23:34:40 +00005277 assert(ClassDecl && "DefineImplicitCopyConstructor - invalid constructor");
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00005278
Douglas Gregor39957dc2010-05-01 15:04:51 +00005279 ImplicitlyDefinedFunctionScope Scope(*this, CopyConstructor);
Douglas Gregorc63d2c82010-05-12 16:39:35 +00005280 ErrorTrap Trap(*this);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00005281
Douglas Gregorc63d2c82010-05-12 16:39:35 +00005282 if (SetBaseOrMemberInitializers(CopyConstructor, 0, 0, /*AnyErrors=*/false) ||
5283 Trap.hasErrorOccurred()) {
Anders Carlsson59b7f152010-05-01 16:39:01 +00005284 Diag(CurrentLocation, diag::note_member_synthesized_at)
Douglas Gregorfb8cc252010-05-05 05:51:00 +00005285 << CXXCopyConstructor << Context.getTagDeclType(ClassDecl);
Anders Carlsson59b7f152010-05-01 16:39:01 +00005286 CopyConstructor->setInvalidDecl();
Douglas Gregorfb8cc252010-05-05 05:51:00 +00005287 } else {
5288 CopyConstructor->setBody(ActOnCompoundStmt(CopyConstructor->getLocation(),
5289 CopyConstructor->getLocation(),
5290 MultiStmtArg(*this, 0, 0),
5291 /*isStmtExpr=*/false)
5292 .takeAs<Stmt>());
Anders Carlsson8e142cc2010-04-25 00:52:09 +00005293 }
Douglas Gregorfb8cc252010-05-05 05:51:00 +00005294
5295 CopyConstructor->setUsed();
Fariborz Jahanian485f0872009-06-22 23:34:40 +00005296}
5297
Anders Carlssonda3f4e22009-08-25 05:12:04 +00005298Sema::OwningExprResult
Anders Carlssonec8e5ea2009-09-05 07:40:38 +00005299Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
Mike Stump1eb44332009-09-09 15:08:12 +00005300 CXXConstructorDecl *Constructor,
Douglas Gregor16006c92009-12-16 18:50:27 +00005301 MultiExprArg ExprArgs,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00005302 bool RequiresZeroInit,
Anders Carlsson72e96fd2010-05-02 22:54:08 +00005303 CXXConstructExpr::ConstructionKind ConstructKind) {
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00005304 bool Elidable = false;
Mike Stump1eb44332009-09-09 15:08:12 +00005305
Douglas Gregor2f599792010-04-02 18:24:57 +00005306 // C++0x [class.copy]p34:
5307 // When certain criteria are met, an implementation is allowed to
5308 // omit the copy/move construction of a class object, even if the
5309 // copy/move constructor and/or destructor for the object have
5310 // side effects. [...]
5311 // - when a temporary class object that has not been bound to a
5312 // reference (12.2) would be copied/moved to a class object
5313 // with the same cv-unqualified type, the copy/move operation
5314 // can be omitted by constructing the temporary object
5315 // directly into the target of the omitted copy/move
5316 if (Constructor->isCopyConstructor() && ExprArgs.size() >= 1) {
5317 Expr *SubExpr = ((Expr **)ExprArgs.get())[0];
5318 Elidable = SubExpr->isTemporaryObject() &&
5319 Context.hasSameUnqualifiedType(SubExpr->getType(),
5320 Context.getTypeDeclType(Constructor->getParent()));
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00005321 }
Mike Stump1eb44332009-09-09 15:08:12 +00005322
5323 return BuildCXXConstructExpr(ConstructLoc, DeclInitType, Constructor,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00005324 Elidable, move(ExprArgs), RequiresZeroInit,
Anders Carlsson72e96fd2010-05-02 22:54:08 +00005325 ConstructKind);
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00005326}
5327
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00005328/// BuildCXXConstructExpr - Creates a complete call to a constructor,
5329/// including handling of its default argument expressions.
Anders Carlssonda3f4e22009-08-25 05:12:04 +00005330Sema::OwningExprResult
Anders Carlssonec8e5ea2009-09-05 07:40:38 +00005331Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
5332 CXXConstructorDecl *Constructor, bool Elidable,
Douglas Gregor16006c92009-12-16 18:50:27 +00005333 MultiExprArg ExprArgs,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00005334 bool RequiresZeroInit,
Anders Carlsson72e96fd2010-05-02 22:54:08 +00005335 CXXConstructExpr::ConstructionKind ConstructKind) {
Anders Carlssonf47511a2009-09-07 22:23:31 +00005336 unsigned NumExprs = ExprArgs.size();
5337 Expr **Exprs = (Expr **)ExprArgs.release();
Mike Stump1eb44332009-09-09 15:08:12 +00005338
Douglas Gregor7edfb692009-11-23 12:27:39 +00005339 MarkDeclarationReferenced(ConstructLoc, Constructor);
Douglas Gregor99a2e602009-12-16 01:38:02 +00005340 return Owned(CXXConstructExpr::Create(Context, DeclInitType, ConstructLoc,
Douglas Gregor16006c92009-12-16 18:50:27 +00005341 Constructor, Elidable, Exprs, NumExprs,
Anders Carlsson72e96fd2010-05-02 22:54:08 +00005342 RequiresZeroInit, ConstructKind));
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00005343}
5344
Mike Stump1eb44332009-09-09 15:08:12 +00005345bool Sema::InitializeVarWithConstructor(VarDecl *VD,
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00005346 CXXConstructorDecl *Constructor,
Anders Carlssonf47511a2009-09-07 22:23:31 +00005347 MultiExprArg Exprs) {
Mike Stump1eb44332009-09-09 15:08:12 +00005348 OwningExprResult TempResult =
Fariborz Jahanianc0fcce42009-10-28 18:41:06 +00005349 BuildCXXConstructExpr(VD->getLocation(), VD->getType(), Constructor,
Anders Carlssonf47511a2009-09-07 22:23:31 +00005350 move(Exprs));
Anders Carlssonfe2de492009-08-25 05:18:00 +00005351 if (TempResult.isInvalid())
5352 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00005353
Anders Carlssonda3f4e22009-08-25 05:12:04 +00005354 Expr *Temp = TempResult.takeAs<Expr>();
Douglas Gregord7f37bf2009-06-22 23:06:13 +00005355 MarkDeclarationReferenced(VD->getLocation(), Constructor);
Anders Carlsson0ece4912009-12-15 20:51:39 +00005356 Temp = MaybeCreateCXXExprWithTemporaries(Temp);
Douglas Gregor838db382010-02-11 01:19:42 +00005357 VD->setInit(Temp);
Mike Stump1eb44332009-09-09 15:08:12 +00005358
Anders Carlssonfe2de492009-08-25 05:18:00 +00005359 return false;
Anders Carlsson930e8d02009-04-16 23:50:50 +00005360}
5361
John McCall68c6c9a2010-02-02 09:10:11 +00005362void Sema::FinalizeVarWithDestructor(VarDecl *VD, const RecordType *Record) {
5363 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Record->getDecl());
Douglas Gregor333de062010-02-25 18:11:54 +00005364 if (!ClassDecl->isInvalidDecl() && !VD->isInvalidDecl() &&
Douglas Gregorfb2db462010-05-22 17:12:29 +00005365 !ClassDecl->hasTrivialDestructor() && !ClassDecl->isDependentContext()) {
Douglas Gregordb89f282010-07-01 22:47:18 +00005366 CXXDestructorDecl *Destructor = LookupDestructor(ClassDecl);
John McCall4f9506a2010-02-02 08:45:54 +00005367 MarkDeclarationReferenced(VD->getLocation(), Destructor);
John McCall58e6f342010-03-16 05:22:47 +00005368 CheckDestructorAccess(VD->getLocation(), Destructor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00005369 PDiag(diag::err_access_dtor_var)
John McCall58e6f342010-03-16 05:22:47 +00005370 << VD->getDeclName()
5371 << VD->getType());
John McCall626e96e2010-08-01 20:20:59 +00005372
5373 if (!VD->isInvalidDecl() && VD->hasGlobalStorage())
5374 Diag(VD->getLocation(), diag::warn_global_destructor);
John McCall4f9506a2010-02-02 08:45:54 +00005375 }
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00005376}
5377
Mike Stump1eb44332009-09-09 15:08:12 +00005378/// AddCXXDirectInitializerToDecl - This action is called immediately after
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00005379/// ActOnDeclarator, when a C++ direct initializer is present.
5380/// e.g: "int x(1);"
Chris Lattnerb28317a2009-03-28 19:18:32 +00005381void Sema::AddCXXDirectInitializerToDecl(DeclPtrTy Dcl,
5382 SourceLocation LParenLoc,
Sebastian Redlf53597f2009-03-15 17:47:39 +00005383 MultiExprArg Exprs,
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00005384 SourceLocation *CommaLocs,
5385 SourceLocation RParenLoc) {
Daniel Dunbar51846262009-12-24 19:19:26 +00005386 assert(Exprs.size() != 0 && Exprs.get() && "missing expressions");
Chris Lattnerb28317a2009-03-28 19:18:32 +00005387 Decl *RealDecl = Dcl.getAs<Decl>();
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00005388
5389 // If there is no declaration, there was an error parsing it. Just ignore
5390 // the initializer.
Chris Lattnerb28317a2009-03-28 19:18:32 +00005391 if (RealDecl == 0)
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00005392 return;
Mike Stump1eb44332009-09-09 15:08:12 +00005393
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00005394 VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl);
5395 if (!VDecl) {
5396 Diag(RealDecl->getLocation(), diag::err_illegal_initializer);
5397 RealDecl->setInvalidDecl();
5398 return;
5399 }
5400
Douglas Gregor83ddad32009-08-26 21:14:46 +00005401 // We will represent direct-initialization similarly to copy-initialization:
Argyrios Kyrtzidisce8e2922008-10-06 23:08:37 +00005402 // int x(1); -as-> int x = 1;
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00005403 // ClassType x(a,b,c); -as-> ClassType x = ClassType(a,b,c);
5404 //
5405 // Clients that want to distinguish between the two forms, can check for
5406 // direct initializer using VarDecl::hasCXXDirectInitializer().
5407 // A major benefit is that clients that don't particularly care about which
5408 // exactly form was it (like the CodeGen) can handle both cases without
5409 // special case code.
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +00005410
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00005411 // C++ 8.5p11:
5412 // The form of initialization (using parentheses or '=') is generally
5413 // insignificant, but does matter when the entity being initialized has a
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +00005414 // class type.
5415
Douglas Gregor4dffad62010-02-11 22:55:30 +00005416 if (!VDecl->getType()->isDependentType() &&
5417 RequireCompleteType(VDecl->getLocation(), VDecl->getType(),
Douglas Gregor615c5d42009-03-24 16:43:20 +00005418 diag::err_typecheck_decl_incomplete_type)) {
5419 VDecl->setInvalidDecl();
5420 return;
5421 }
5422
Douglas Gregor90f93822009-12-22 22:17:25 +00005423 // The variable can not have an abstract class type.
5424 if (RequireNonAbstractType(VDecl->getLocation(), VDecl->getType(),
5425 diag::err_abstract_type_in_decl,
5426 AbstractVariableType))
5427 VDecl->setInvalidDecl();
5428
Sebastian Redl31310a22010-02-01 20:16:42 +00005429 const VarDecl *Def;
5430 if ((Def = VDecl->getDefinition()) && Def != VDecl) {
Douglas Gregor90f93822009-12-22 22:17:25 +00005431 Diag(VDecl->getLocation(), diag::err_redefinition)
5432 << VDecl->getDeclName();
5433 Diag(Def->getLocation(), diag::note_previous_definition);
5434 VDecl->setInvalidDecl();
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +00005435 return;
5436 }
Douglas Gregor4dffad62010-02-11 22:55:30 +00005437
5438 // If either the declaration has a dependent type or if any of the
5439 // expressions is type-dependent, we represent the initialization
5440 // via a ParenListExpr for later use during template instantiation.
5441 if (VDecl->getType()->isDependentType() ||
5442 Expr::hasAnyTypeDependentArguments((Expr **)Exprs.get(), Exprs.size())) {
5443 // Let clients know that initialization was done with a direct initializer.
5444 VDecl->setCXXDirectInitializer(true);
5445
5446 // Store the initialization expressions as a ParenListExpr.
5447 unsigned NumExprs = Exprs.size();
5448 VDecl->setInit(new (Context) ParenListExpr(Context, LParenLoc,
5449 (Expr **)Exprs.release(),
5450 NumExprs, RParenLoc));
5451 return;
5452 }
Douglas Gregor90f93822009-12-22 22:17:25 +00005453
5454 // Capture the variable that is being initialized and the style of
5455 // initialization.
5456 InitializedEntity Entity = InitializedEntity::InitializeVariable(VDecl);
5457
5458 // FIXME: Poor source location information.
5459 InitializationKind Kind
5460 = InitializationKind::CreateDirect(VDecl->getLocation(),
5461 LParenLoc, RParenLoc);
5462
5463 InitializationSequence InitSeq(*this, Entity, Kind,
5464 (Expr**)Exprs.get(), Exprs.size());
5465 OwningExprResult Result = InitSeq.Perform(*this, Entity, Kind, move(Exprs));
5466 if (Result.isInvalid()) {
5467 VDecl->setInvalidDecl();
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00005468 return;
5469 }
Douglas Gregor90f93822009-12-22 22:17:25 +00005470
5471 Result = MaybeCreateCXXExprWithTemporaries(move(Result));
Douglas Gregor838db382010-02-11 01:19:42 +00005472 VDecl->setInit(Result.takeAs<Expr>());
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00005473 VDecl->setCXXDirectInitializer(true);
Argyrios Kyrtzidisce8e2922008-10-06 23:08:37 +00005474
John McCall4204f072010-08-02 21:13:48 +00005475 if (!VDecl->isInvalidDecl() &&
5476 !VDecl->getDeclContext()->isDependentContext() &&
5477 VDecl->hasGlobalStorage() &&
5478 !VDecl->getInit()->isConstantInitializer(Context,
5479 VDecl->getType()->isReferenceType()))
5480 Diag(VDecl->getLocation(), diag::warn_global_constructor)
5481 << VDecl->getInit()->getSourceRange();
5482
John McCall68c6c9a2010-02-02 09:10:11 +00005483 if (const RecordType *Record = VDecl->getType()->getAs<RecordType>())
5484 FinalizeVarWithDestructor(VDecl, Record);
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00005485}
Douglas Gregor27c8dc02008-10-29 00:13:59 +00005486
Douglas Gregor39da0b82009-09-09 23:08:42 +00005487/// \brief Given a constructor and the set of arguments provided for the
5488/// constructor, convert the arguments and add any required default arguments
5489/// to form a proper call to this constructor.
5490///
5491/// \returns true if an error occurred, false otherwise.
5492bool
5493Sema::CompleteConstructorCall(CXXConstructorDecl *Constructor,
5494 MultiExprArg ArgsPtr,
5495 SourceLocation Loc,
5496 ASTOwningVector<&ActionBase::DeleteExpr> &ConvertedArgs) {
5497 // FIXME: This duplicates a lot of code from Sema::ConvertArgumentsForCall.
5498 unsigned NumArgs = ArgsPtr.size();
5499 Expr **Args = (Expr **)ArgsPtr.get();
5500
5501 const FunctionProtoType *Proto
5502 = Constructor->getType()->getAs<FunctionProtoType>();
5503 assert(Proto && "Constructor without a prototype?");
5504 unsigned NumArgsInProto = Proto->getNumArgs();
Douglas Gregor39da0b82009-09-09 23:08:42 +00005505
5506 // If too few arguments are available, we'll fill in the rest with defaults.
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00005507 if (NumArgs < NumArgsInProto)
Douglas Gregor39da0b82009-09-09 23:08:42 +00005508 ConvertedArgs.reserve(NumArgsInProto);
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00005509 else
Douglas Gregor39da0b82009-09-09 23:08:42 +00005510 ConvertedArgs.reserve(NumArgs);
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00005511
5512 VariadicCallType CallType =
5513 Proto->isVariadic() ? VariadicConstructor : VariadicDoesNotApply;
5514 llvm::SmallVector<Expr *, 8> AllArgs;
5515 bool Invalid = GatherArgumentsForCall(Loc, Constructor,
5516 Proto, 0, Args, NumArgs, AllArgs,
5517 CallType);
5518 for (unsigned i =0, size = AllArgs.size(); i < size; i++)
5519 ConvertedArgs.push_back(AllArgs[i]);
5520 return Invalid;
Douglas Gregor18fe5682008-11-03 20:45:27 +00005521}
5522
Anders Carlsson20d45d22009-12-12 00:32:00 +00005523static inline bool
5524CheckOperatorNewDeleteDeclarationScope(Sema &SemaRef,
5525 const FunctionDecl *FnDecl) {
5526 const DeclContext *DC = FnDecl->getDeclContext()->getLookupContext();
5527 if (isa<NamespaceDecl>(DC)) {
5528 return SemaRef.Diag(FnDecl->getLocation(),
5529 diag::err_operator_new_delete_declared_in_namespace)
5530 << FnDecl->getDeclName();
5531 }
5532
5533 if (isa<TranslationUnitDecl>(DC) &&
5534 FnDecl->getStorageClass() == FunctionDecl::Static) {
5535 return SemaRef.Diag(FnDecl->getLocation(),
5536 diag::err_operator_new_delete_declared_static)
5537 << FnDecl->getDeclName();
5538 }
5539
Anders Carlssonfcfdb2b2009-12-12 02:43:16 +00005540 return false;
Anders Carlsson20d45d22009-12-12 00:32:00 +00005541}
5542
Anders Carlsson156c78e2009-12-13 17:53:43 +00005543static inline bool
5544CheckOperatorNewDeleteTypes(Sema &SemaRef, const FunctionDecl *FnDecl,
5545 CanQualType ExpectedResultType,
5546 CanQualType ExpectedFirstParamType,
5547 unsigned DependentParamTypeDiag,
5548 unsigned InvalidParamTypeDiag) {
5549 QualType ResultType =
5550 FnDecl->getType()->getAs<FunctionType>()->getResultType();
5551
5552 // Check that the result type is not dependent.
5553 if (ResultType->isDependentType())
5554 return SemaRef.Diag(FnDecl->getLocation(),
5555 diag::err_operator_new_delete_dependent_result_type)
5556 << FnDecl->getDeclName() << ExpectedResultType;
5557
5558 // Check that the result type is what we expect.
5559 if (SemaRef.Context.getCanonicalType(ResultType) != ExpectedResultType)
5560 return SemaRef.Diag(FnDecl->getLocation(),
5561 diag::err_operator_new_delete_invalid_result_type)
5562 << FnDecl->getDeclName() << ExpectedResultType;
5563
5564 // A function template must have at least 2 parameters.
5565 if (FnDecl->getDescribedFunctionTemplate() && FnDecl->getNumParams() < 2)
5566 return SemaRef.Diag(FnDecl->getLocation(),
5567 diag::err_operator_new_delete_template_too_few_parameters)
5568 << FnDecl->getDeclName();
5569
5570 // The function decl must have at least 1 parameter.
5571 if (FnDecl->getNumParams() == 0)
5572 return SemaRef.Diag(FnDecl->getLocation(),
5573 diag::err_operator_new_delete_too_few_parameters)
5574 << FnDecl->getDeclName();
5575
5576 // Check the the first parameter type is not dependent.
5577 QualType FirstParamType = FnDecl->getParamDecl(0)->getType();
5578 if (FirstParamType->isDependentType())
5579 return SemaRef.Diag(FnDecl->getLocation(), DependentParamTypeDiag)
5580 << FnDecl->getDeclName() << ExpectedFirstParamType;
5581
5582 // Check that the first parameter type is what we expect.
Douglas Gregor6e790ab2009-12-22 23:42:49 +00005583 if (SemaRef.Context.getCanonicalType(FirstParamType).getUnqualifiedType() !=
Anders Carlsson156c78e2009-12-13 17:53:43 +00005584 ExpectedFirstParamType)
5585 return SemaRef.Diag(FnDecl->getLocation(), InvalidParamTypeDiag)
5586 << FnDecl->getDeclName() << ExpectedFirstParamType;
5587
5588 return false;
5589}
5590
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00005591static bool
Anders Carlsson156c78e2009-12-13 17:53:43 +00005592CheckOperatorNewDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
Anders Carlsson20d45d22009-12-12 00:32:00 +00005593 // C++ [basic.stc.dynamic.allocation]p1:
5594 // A program is ill-formed if an allocation function is declared in a
5595 // namespace scope other than global scope or declared static in global
5596 // scope.
5597 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
5598 return true;
Anders Carlsson156c78e2009-12-13 17:53:43 +00005599
5600 CanQualType SizeTy =
5601 SemaRef.Context.getCanonicalType(SemaRef.Context.getSizeType());
5602
5603 // C++ [basic.stc.dynamic.allocation]p1:
5604 // The return type shall be void*. The first parameter shall have type
5605 // std::size_t.
5606 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidPtrTy,
5607 SizeTy,
5608 diag::err_operator_new_dependent_param_type,
5609 diag::err_operator_new_param_type))
5610 return true;
5611
5612 // C++ [basic.stc.dynamic.allocation]p1:
5613 // The first parameter shall not have an associated default argument.
5614 if (FnDecl->getParamDecl(0)->hasDefaultArg())
Anders Carlssona3ccda52009-12-12 00:26:23 +00005615 return SemaRef.Diag(FnDecl->getLocation(),
Anders Carlsson156c78e2009-12-13 17:53:43 +00005616 diag::err_operator_new_default_arg)
5617 << FnDecl->getDeclName() << FnDecl->getParamDecl(0)->getDefaultArgRange();
5618
5619 return false;
Anders Carlssona3ccda52009-12-12 00:26:23 +00005620}
5621
5622static bool
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00005623CheckOperatorDeleteDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
5624 // C++ [basic.stc.dynamic.deallocation]p1:
5625 // A program is ill-formed if deallocation functions are declared in a
5626 // namespace scope other than global scope or declared static in global
5627 // scope.
Anders Carlsson20d45d22009-12-12 00:32:00 +00005628 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
5629 return true;
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00005630
5631 // C++ [basic.stc.dynamic.deallocation]p2:
5632 // Each deallocation function shall return void and its first parameter
5633 // shall be void*.
Anders Carlsson156c78e2009-12-13 17:53:43 +00005634 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidTy,
5635 SemaRef.Context.VoidPtrTy,
5636 diag::err_operator_delete_dependent_param_type,
5637 diag::err_operator_delete_param_type))
5638 return true;
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00005639
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00005640 return false;
5641}
5642
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005643/// CheckOverloadedOperatorDeclaration - Check whether the declaration
5644/// of this overloaded operator is well-formed. If so, returns false;
5645/// otherwise, emits appropriate diagnostics and returns true.
5646bool Sema::CheckOverloadedOperatorDeclaration(FunctionDecl *FnDecl) {
Douglas Gregor43c7bad2008-11-17 16:14:12 +00005647 assert(FnDecl && FnDecl->isOverloadedOperator() &&
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005648 "Expected an overloaded operator declaration");
5649
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005650 OverloadedOperatorKind Op = FnDecl->getOverloadedOperator();
5651
Mike Stump1eb44332009-09-09 15:08:12 +00005652 // C++ [over.oper]p5:
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005653 // The allocation and deallocation functions, operator new,
5654 // operator new[], operator delete and operator delete[], are
5655 // described completely in 3.7.3. The attributes and restrictions
5656 // found in the rest of this subclause do not apply to them unless
5657 // explicitly stated in 3.7.3.
Anders Carlsson1152c392009-12-11 23:31:21 +00005658 if (Op == OO_Delete || Op == OO_Array_Delete)
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00005659 return CheckOperatorDeleteDeclaration(*this, FnDecl);
Fariborz Jahanianb03bfa52009-11-10 23:47:18 +00005660
Anders Carlssona3ccda52009-12-12 00:26:23 +00005661 if (Op == OO_New || Op == OO_Array_New)
5662 return CheckOperatorNewDeclaration(*this, FnDecl);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005663
5664 // C++ [over.oper]p6:
5665 // An operator function shall either be a non-static member
5666 // function or be a non-member function and have at least one
5667 // parameter whose type is a class, a reference to a class, an
5668 // enumeration, or a reference to an enumeration.
Douglas Gregor43c7bad2008-11-17 16:14:12 +00005669 if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(FnDecl)) {
5670 if (MethodDecl->isStatic())
5671 return Diag(FnDecl->getLocation(),
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00005672 diag::err_operator_overload_static) << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005673 } else {
5674 bool ClassOrEnumParam = false;
Douglas Gregor43c7bad2008-11-17 16:14:12 +00005675 for (FunctionDecl::param_iterator Param = FnDecl->param_begin(),
5676 ParamEnd = FnDecl->param_end();
5677 Param != ParamEnd; ++Param) {
5678 QualType ParamType = (*Param)->getType().getNonReferenceType();
Eli Friedman5d39dee2009-06-27 05:59:59 +00005679 if (ParamType->isDependentType() || ParamType->isRecordType() ||
5680 ParamType->isEnumeralType()) {
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005681 ClassOrEnumParam = true;
5682 break;
5683 }
5684 }
5685
Douglas Gregor43c7bad2008-11-17 16:14:12 +00005686 if (!ClassOrEnumParam)
5687 return Diag(FnDecl->getLocation(),
Chris Lattnerf3a41af2008-11-20 06:38:18 +00005688 diag::err_operator_overload_needs_class_or_enum)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00005689 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005690 }
5691
5692 // C++ [over.oper]p8:
5693 // An operator function cannot have default arguments (8.3.6),
5694 // except where explicitly stated below.
5695 //
Mike Stump1eb44332009-09-09 15:08:12 +00005696 // Only the function-call operator allows default arguments
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005697 // (C++ [over.call]p1).
5698 if (Op != OO_Call) {
5699 for (FunctionDecl::param_iterator Param = FnDecl->param_begin();
5700 Param != FnDecl->param_end(); ++Param) {
Anders Carlsson156c78e2009-12-13 17:53:43 +00005701 if ((*Param)->hasDefaultArg())
Mike Stump1eb44332009-09-09 15:08:12 +00005702 return Diag((*Param)->getLocation(),
Douglas Gregor61366e92008-12-24 00:01:03 +00005703 diag::err_operator_overload_default_arg)
Anders Carlsson156c78e2009-12-13 17:53:43 +00005704 << FnDecl->getDeclName() << (*Param)->getDefaultArgRange();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005705 }
5706 }
5707
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00005708 static const bool OperatorUses[NUM_OVERLOADED_OPERATORS][3] = {
5709 { false, false, false }
5710#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
5711 , { Unary, Binary, MemberOnly }
5712#include "clang/Basic/OperatorKinds.def"
5713 };
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005714
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00005715 bool CanBeUnaryOperator = OperatorUses[Op][0];
5716 bool CanBeBinaryOperator = OperatorUses[Op][1];
5717 bool MustBeMemberOperator = OperatorUses[Op][2];
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005718
5719 // C++ [over.oper]p8:
5720 // [...] Operator functions cannot have more or fewer parameters
5721 // than the number required for the corresponding operator, as
5722 // described in the rest of this subclause.
Mike Stump1eb44332009-09-09 15:08:12 +00005723 unsigned NumParams = FnDecl->getNumParams()
Douglas Gregor43c7bad2008-11-17 16:14:12 +00005724 + (isa<CXXMethodDecl>(FnDecl)? 1 : 0);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005725 if (Op != OO_Call &&
5726 ((NumParams == 1 && !CanBeUnaryOperator) ||
5727 (NumParams == 2 && !CanBeBinaryOperator) ||
5728 (NumParams < 1) || (NumParams > 2))) {
5729 // We have the wrong number of parameters.
Chris Lattner416e46f2008-11-21 07:57:12 +00005730 unsigned ErrorKind;
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00005731 if (CanBeUnaryOperator && CanBeBinaryOperator) {
Chris Lattner416e46f2008-11-21 07:57:12 +00005732 ErrorKind = 2; // 2 -> unary or binary.
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00005733 } else if (CanBeUnaryOperator) {
Chris Lattner416e46f2008-11-21 07:57:12 +00005734 ErrorKind = 0; // 0 -> unary
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00005735 } else {
Chris Lattneraf7ae4e2008-11-21 07:50:02 +00005736 assert(CanBeBinaryOperator &&
5737 "All non-call overloaded operators are unary or binary!");
Chris Lattner416e46f2008-11-21 07:57:12 +00005738 ErrorKind = 1; // 1 -> binary
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00005739 }
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005740
Chris Lattner416e46f2008-11-21 07:57:12 +00005741 return Diag(FnDecl->getLocation(), diag::err_operator_overload_must_be)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00005742 << FnDecl->getDeclName() << NumParams << ErrorKind;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005743 }
Sebastian Redl64b45f72009-01-05 20:52:13 +00005744
Douglas Gregor43c7bad2008-11-17 16:14:12 +00005745 // Overloaded operators other than operator() cannot be variadic.
5746 if (Op != OO_Call &&
John McCall183700f2009-09-21 23:43:11 +00005747 FnDecl->getType()->getAs<FunctionProtoType>()->isVariadic()) {
Chris Lattnerf3a41af2008-11-20 06:38:18 +00005748 return Diag(FnDecl->getLocation(), diag::err_operator_overload_variadic)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00005749 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005750 }
5751
5752 // Some operators must be non-static member functions.
Douglas Gregor43c7bad2008-11-17 16:14:12 +00005753 if (MustBeMemberOperator && !isa<CXXMethodDecl>(FnDecl)) {
5754 return Diag(FnDecl->getLocation(),
Chris Lattnerf3a41af2008-11-20 06:38:18 +00005755 diag::err_operator_overload_must_be_member)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00005756 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005757 }
5758
5759 // C++ [over.inc]p1:
5760 // The user-defined function called operator++ implements the
5761 // prefix and postfix ++ operator. If this function is a member
5762 // function with no parameters, or a non-member function with one
5763 // parameter of class or enumeration type, it defines the prefix
5764 // increment operator ++ for objects of that type. If the function
5765 // is a member function with one parameter (which shall be of type
5766 // int) or a non-member function with two parameters (the second
5767 // of which shall be of type int), it defines the postfix
5768 // increment operator ++ for objects of that type.
5769 if ((Op == OO_PlusPlus || Op == OO_MinusMinus) && NumParams == 2) {
5770 ParmVarDecl *LastParam = FnDecl->getParamDecl(FnDecl->getNumParams() - 1);
5771 bool ParamIsInt = false;
John McCall183700f2009-09-21 23:43:11 +00005772 if (const BuiltinType *BT = LastParam->getType()->getAs<BuiltinType>())
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005773 ParamIsInt = BT->getKind() == BuiltinType::Int;
5774
Chris Lattneraf7ae4e2008-11-21 07:50:02 +00005775 if (!ParamIsInt)
5776 return Diag(LastParam->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00005777 diag::err_operator_overload_post_incdec_must_be_int)
Chris Lattnerd1625842008-11-24 06:25:27 +00005778 << LastParam->getType() << (Op == OO_MinusMinus);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005779 }
5780
Sebastian Redl64b45f72009-01-05 20:52:13 +00005781 // Notify the class if it got an assignment operator.
5782 if (Op == OO_Equal) {
5783 // Would have returned earlier otherwise.
5784 assert(isa<CXXMethodDecl>(FnDecl) &&
5785 "Overloaded = not member, but not filtered.");
5786 CXXMethodDecl *Method = cast<CXXMethodDecl>(FnDecl);
5787 Method->getParent()->addedAssignmentOperator(Context, Method);
5788 }
5789
Douglas Gregor43c7bad2008-11-17 16:14:12 +00005790 return false;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005791}
Chris Lattner5a003a42008-12-17 07:09:26 +00005792
Sean Hunta6c058d2010-01-13 09:01:02 +00005793/// CheckLiteralOperatorDeclaration - Check whether the declaration
5794/// of this literal operator function is well-formed. If so, returns
5795/// false; otherwise, emits appropriate diagnostics and returns true.
5796bool Sema::CheckLiteralOperatorDeclaration(FunctionDecl *FnDecl) {
5797 DeclContext *DC = FnDecl->getDeclContext();
5798 Decl::Kind Kind = DC->getDeclKind();
5799 if (Kind != Decl::TranslationUnit && Kind != Decl::Namespace &&
5800 Kind != Decl::LinkageSpec) {
5801 Diag(FnDecl->getLocation(), diag::err_literal_operator_outside_namespace)
5802 << FnDecl->getDeclName();
5803 return true;
5804 }
5805
5806 bool Valid = false;
5807
Sean Hunt216c2782010-04-07 23:11:06 +00005808 // template <char...> type operator "" name() is the only valid template
5809 // signature, and the only valid signature with no parameters.
5810 if (FnDecl->param_size() == 0) {
5811 if (FunctionTemplateDecl *TpDecl = FnDecl->getDescribedFunctionTemplate()) {
5812 // Must have only one template parameter
5813 TemplateParameterList *Params = TpDecl->getTemplateParameters();
5814 if (Params->size() == 1) {
5815 NonTypeTemplateParmDecl *PmDecl =
5816 cast<NonTypeTemplateParmDecl>(Params->getParam(0));
Sean Hunta6c058d2010-01-13 09:01:02 +00005817
Sean Hunt216c2782010-04-07 23:11:06 +00005818 // The template parameter must be a char parameter pack.
5819 // FIXME: This test will always fail because non-type parameter packs
5820 // have not been implemented.
5821 if (PmDecl && PmDecl->isTemplateParameterPack() &&
5822 Context.hasSameType(PmDecl->getType(), Context.CharTy))
5823 Valid = true;
5824 }
5825 }
5826 } else {
Sean Hunta6c058d2010-01-13 09:01:02 +00005827 // Check the first parameter
Sean Hunt216c2782010-04-07 23:11:06 +00005828 FunctionDecl::param_iterator Param = FnDecl->param_begin();
5829
Sean Hunta6c058d2010-01-13 09:01:02 +00005830 QualType T = (*Param)->getType();
5831
Sean Hunt30019c02010-04-07 22:57:35 +00005832 // unsigned long long int, long double, and any character type are allowed
5833 // as the only parameters.
Sean Hunta6c058d2010-01-13 09:01:02 +00005834 if (Context.hasSameType(T, Context.UnsignedLongLongTy) ||
5835 Context.hasSameType(T, Context.LongDoubleTy) ||
5836 Context.hasSameType(T, Context.CharTy) ||
5837 Context.hasSameType(T, Context.WCharTy) ||
5838 Context.hasSameType(T, Context.Char16Ty) ||
5839 Context.hasSameType(T, Context.Char32Ty)) {
5840 if (++Param == FnDecl->param_end())
5841 Valid = true;
5842 goto FinishedParams;
5843 }
5844
Sean Hunt30019c02010-04-07 22:57:35 +00005845 // Otherwise it must be a pointer to const; let's strip those qualifiers.
Sean Hunta6c058d2010-01-13 09:01:02 +00005846 const PointerType *PT = T->getAs<PointerType>();
5847 if (!PT)
5848 goto FinishedParams;
5849 T = PT->getPointeeType();
5850 if (!T.isConstQualified())
5851 goto FinishedParams;
5852 T = T.getUnqualifiedType();
5853
5854 // Move on to the second parameter;
5855 ++Param;
5856
5857 // If there is no second parameter, the first must be a const char *
5858 if (Param == FnDecl->param_end()) {
5859 if (Context.hasSameType(T, Context.CharTy))
5860 Valid = true;
5861 goto FinishedParams;
5862 }
5863
5864 // const char *, const wchar_t*, const char16_t*, and const char32_t*
5865 // are allowed as the first parameter to a two-parameter function
5866 if (!(Context.hasSameType(T, Context.CharTy) ||
5867 Context.hasSameType(T, Context.WCharTy) ||
5868 Context.hasSameType(T, Context.Char16Ty) ||
5869 Context.hasSameType(T, Context.Char32Ty)))
5870 goto FinishedParams;
5871
5872 // The second and final parameter must be an std::size_t
5873 T = (*Param)->getType().getUnqualifiedType();
5874 if (Context.hasSameType(T, Context.getSizeType()) &&
5875 ++Param == FnDecl->param_end())
5876 Valid = true;
5877 }
5878
5879 // FIXME: This diagnostic is absolutely terrible.
5880FinishedParams:
5881 if (!Valid) {
5882 Diag(FnDecl->getLocation(), diag::err_literal_operator_params)
5883 << FnDecl->getDeclName();
5884 return true;
5885 }
5886
5887 return false;
5888}
5889
Douglas Gregor074149e2009-01-05 19:45:36 +00005890/// ActOnStartLinkageSpecification - Parsed the beginning of a C++
5891/// linkage specification, including the language and (if present)
5892/// the '{'. ExternLoc is the location of the 'extern', LangLoc is
5893/// the location of the language string literal, which is provided
5894/// by Lang/StrSize. LBraceLoc, if valid, provides the location of
5895/// the '{' brace. Otherwise, this linkage specification does not
5896/// have any braces.
Chris Lattnerb28317a2009-03-28 19:18:32 +00005897Sema::DeclPtrTy Sema::ActOnStartLinkageSpecification(Scope *S,
5898 SourceLocation ExternLoc,
5899 SourceLocation LangLoc,
Benjamin Kramerd5663812010-05-03 13:08:54 +00005900 llvm::StringRef Lang,
Chris Lattnerb28317a2009-03-28 19:18:32 +00005901 SourceLocation LBraceLoc) {
Chris Lattnercc98eac2008-12-17 07:13:27 +00005902 LinkageSpecDecl::LanguageIDs Language;
Benjamin Kramerd5663812010-05-03 13:08:54 +00005903 if (Lang == "\"C\"")
Chris Lattnercc98eac2008-12-17 07:13:27 +00005904 Language = LinkageSpecDecl::lang_c;
Benjamin Kramerd5663812010-05-03 13:08:54 +00005905 else if (Lang == "\"C++\"")
Chris Lattnercc98eac2008-12-17 07:13:27 +00005906 Language = LinkageSpecDecl::lang_cxx;
5907 else {
Douglas Gregor074149e2009-01-05 19:45:36 +00005908 Diag(LangLoc, diag::err_bad_language);
Chris Lattnerb28317a2009-03-28 19:18:32 +00005909 return DeclPtrTy();
Chris Lattnercc98eac2008-12-17 07:13:27 +00005910 }
Mike Stump1eb44332009-09-09 15:08:12 +00005911
Chris Lattnercc98eac2008-12-17 07:13:27 +00005912 // FIXME: Add all the various semantics of linkage specifications
Mike Stump1eb44332009-09-09 15:08:12 +00005913
Douglas Gregor074149e2009-01-05 19:45:36 +00005914 LinkageSpecDecl *D = LinkageSpecDecl::Create(Context, CurContext,
Mike Stump1eb44332009-09-09 15:08:12 +00005915 LangLoc, Language,
Douglas Gregor074149e2009-01-05 19:45:36 +00005916 LBraceLoc.isValid());
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00005917 CurContext->addDecl(D);
Douglas Gregor074149e2009-01-05 19:45:36 +00005918 PushDeclContext(S, D);
Chris Lattnerb28317a2009-03-28 19:18:32 +00005919 return DeclPtrTy::make(D);
Chris Lattnercc98eac2008-12-17 07:13:27 +00005920}
5921
Abramo Bagnara35f9a192010-07-30 16:47:02 +00005922/// ActOnFinishLinkageSpecification - Complete the definition of
Douglas Gregor074149e2009-01-05 19:45:36 +00005923/// the C++ linkage specification LinkageSpec. If RBraceLoc is
5924/// valid, it's the position of the closing '}' brace in a linkage
5925/// specification that uses braces.
Chris Lattnerb28317a2009-03-28 19:18:32 +00005926Sema::DeclPtrTy Sema::ActOnFinishLinkageSpecification(Scope *S,
5927 DeclPtrTy LinkageSpec,
5928 SourceLocation RBraceLoc) {
Douglas Gregor074149e2009-01-05 19:45:36 +00005929 if (LinkageSpec)
5930 PopDeclContext();
5931 return LinkageSpec;
Chris Lattner5a003a42008-12-17 07:09:26 +00005932}
5933
Douglas Gregord308e622009-05-18 20:51:54 +00005934/// \brief Perform semantic analysis for the variable declaration that
5935/// occurs within a C++ catch clause, returning the newly-created
5936/// variable.
5937VarDecl *Sema::BuildExceptionDeclaration(Scope *S, QualType ExDeclType,
John McCalla93c9342009-12-07 02:54:59 +00005938 TypeSourceInfo *TInfo,
Douglas Gregord308e622009-05-18 20:51:54 +00005939 IdentifierInfo *Name,
5940 SourceLocation Loc,
5941 SourceRange Range) {
5942 bool Invalid = false;
Sebastian Redl4b07b292008-12-22 19:15:10 +00005943
5944 // Arrays and functions decay.
5945 if (ExDeclType->isArrayType())
5946 ExDeclType = Context.getArrayDecayedType(ExDeclType);
5947 else if (ExDeclType->isFunctionType())
5948 ExDeclType = Context.getPointerType(ExDeclType);
5949
5950 // C++ 15.3p1: The exception-declaration shall not denote an incomplete type.
5951 // The exception-declaration shall not denote a pointer or reference to an
5952 // incomplete type, other than [cv] void*.
Sebastian Redlf2e21e52009-03-22 23:49:27 +00005953 // N2844 forbids rvalue references.
Mike Stump1eb44332009-09-09 15:08:12 +00005954 if (!ExDeclType->isDependentType() && ExDeclType->isRValueReferenceType()) {
Douglas Gregord308e622009-05-18 20:51:54 +00005955 Diag(Loc, diag::err_catch_rvalue_ref) << Range;
Sebastian Redlf2e21e52009-03-22 23:49:27 +00005956 Invalid = true;
5957 }
Douglas Gregord308e622009-05-18 20:51:54 +00005958
Douglas Gregora2762912010-03-08 01:47:36 +00005959 // GCC allows catching pointers and references to incomplete types
5960 // as an extension; so do we, but we warn by default.
5961
Sebastian Redl4b07b292008-12-22 19:15:10 +00005962 QualType BaseType = ExDeclType;
5963 int Mode = 0; // 0 for direct type, 1 for pointer, 2 for reference
Douglas Gregor4ec339f2009-01-19 19:26:10 +00005964 unsigned DK = diag::err_catch_incomplete;
Douglas Gregora2762912010-03-08 01:47:36 +00005965 bool IncompleteCatchIsInvalid = true;
Ted Kremenek6217b802009-07-29 21:53:49 +00005966 if (const PointerType *Ptr = BaseType->getAs<PointerType>()) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00005967 BaseType = Ptr->getPointeeType();
5968 Mode = 1;
Douglas Gregora2762912010-03-08 01:47:36 +00005969 DK = diag::ext_catch_incomplete_ptr;
5970 IncompleteCatchIsInvalid = false;
Mike Stump1eb44332009-09-09 15:08:12 +00005971 } else if (const ReferenceType *Ref = BaseType->getAs<ReferenceType>()) {
Sebastian Redlf2e21e52009-03-22 23:49:27 +00005972 // For the purpose of error recovery, we treat rvalue refs like lvalue refs.
Sebastian Redl4b07b292008-12-22 19:15:10 +00005973 BaseType = Ref->getPointeeType();
5974 Mode = 2;
Douglas Gregora2762912010-03-08 01:47:36 +00005975 DK = diag::ext_catch_incomplete_ref;
5976 IncompleteCatchIsInvalid = false;
Sebastian Redl4b07b292008-12-22 19:15:10 +00005977 }
Sebastian Redlf2e21e52009-03-22 23:49:27 +00005978 if (!Invalid && (Mode == 0 || !BaseType->isVoidType()) &&
Douglas Gregora2762912010-03-08 01:47:36 +00005979 !BaseType->isDependentType() && RequireCompleteType(Loc, BaseType, DK) &&
5980 IncompleteCatchIsInvalid)
Sebastian Redl4b07b292008-12-22 19:15:10 +00005981 Invalid = true;
Sebastian Redl4b07b292008-12-22 19:15:10 +00005982
Mike Stump1eb44332009-09-09 15:08:12 +00005983 if (!Invalid && !ExDeclType->isDependentType() &&
Douglas Gregord308e622009-05-18 20:51:54 +00005984 RequireNonAbstractType(Loc, ExDeclType,
5985 diag::err_abstract_type_in_decl,
5986 AbstractVariableType))
Sebastian Redlfef9f592009-04-27 21:03:30 +00005987 Invalid = true;
5988
John McCall5a180392010-07-24 00:37:23 +00005989 // Only the non-fragile NeXT runtime currently supports C++ catches
5990 // of ObjC types, and no runtime supports catching ObjC types by value.
5991 if (!Invalid && getLangOptions().ObjC1) {
5992 QualType T = ExDeclType;
5993 if (const ReferenceType *RT = T->getAs<ReferenceType>())
5994 T = RT->getPointeeType();
5995
5996 if (T->isObjCObjectType()) {
5997 Diag(Loc, diag::err_objc_object_catch);
5998 Invalid = true;
5999 } else if (T->isObjCObjectPointerType()) {
6000 if (!getLangOptions().NeXTRuntime) {
6001 Diag(Loc, diag::err_objc_pointer_cxx_catch_gnu);
6002 Invalid = true;
6003 } else if (!getLangOptions().ObjCNonFragileABI) {
6004 Diag(Loc, diag::err_objc_pointer_cxx_catch_fragile);
6005 Invalid = true;
6006 }
6007 }
6008 }
6009
Mike Stump1eb44332009-09-09 15:08:12 +00006010 VarDecl *ExDecl = VarDecl::Create(Context, CurContext, Loc,
Douglas Gregor16573fa2010-04-19 22:54:31 +00006011 Name, ExDeclType, TInfo, VarDecl::None,
6012 VarDecl::None);
Douglas Gregor324b54d2010-05-03 18:51:14 +00006013 ExDecl->setExceptionVariable(true);
6014
Douglas Gregor6d182892010-03-05 23:38:39 +00006015 if (!Invalid) {
6016 if (const RecordType *RecordTy = ExDeclType->getAs<RecordType>()) {
6017 // C++ [except.handle]p16:
6018 // The object declared in an exception-declaration or, if the
6019 // exception-declaration does not specify a name, a temporary (12.2) is
6020 // copy-initialized (8.5) from the exception object. [...]
6021 // The object is destroyed when the handler exits, after the destruction
6022 // of any automatic objects initialized within the handler.
6023 //
6024 // We just pretend to initialize the object with itself, then make sure
6025 // it can be destroyed later.
6026 InitializedEntity Entity = InitializedEntity::InitializeVariable(ExDecl);
6027 Expr *ExDeclRef = DeclRefExpr::Create(Context, 0, SourceRange(), ExDecl,
6028 Loc, ExDeclType, 0);
6029 InitializationKind Kind = InitializationKind::CreateCopy(Loc,
6030 SourceLocation());
6031 InitializationSequence InitSeq(*this, Entity, Kind, &ExDeclRef, 1);
6032 OwningExprResult Result = InitSeq.Perform(*this, Entity, Kind,
6033 MultiExprArg(*this, (void**)&ExDeclRef, 1));
6034 if (Result.isInvalid())
6035 Invalid = true;
6036 else
6037 FinalizeVarWithDestructor(ExDecl, RecordTy);
6038 }
6039 }
6040
Douglas Gregord308e622009-05-18 20:51:54 +00006041 if (Invalid)
6042 ExDecl->setInvalidDecl();
6043
6044 return ExDecl;
6045}
6046
6047/// ActOnExceptionDeclarator - Parsed the exception-declarator in a C++ catch
6048/// handler.
6049Sema::DeclPtrTy Sema::ActOnExceptionDeclarator(Scope *S, Declarator &D) {
John McCallbf1a0282010-06-04 23:28:52 +00006050 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
6051 QualType ExDeclType = TInfo->getType();
Douglas Gregord308e622009-05-18 20:51:54 +00006052
6053 bool Invalid = D.isInvalidType();
Sebastian Redl4b07b292008-12-22 19:15:10 +00006054 IdentifierInfo *II = D.getIdentifier();
Douglas Gregorc83c6872010-04-15 22:33:43 +00006055 if (NamedDecl *PrevDecl = LookupSingleName(S, II, D.getIdentifierLoc(),
Douglas Gregorc0b39642010-04-15 23:40:53 +00006056 LookupOrdinaryName,
6057 ForRedeclaration)) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00006058 // The scope should be freshly made just for us. There is just no way
6059 // it contains any previous declaration.
Chris Lattnerb28317a2009-03-28 19:18:32 +00006060 assert(!S->isDeclScope(DeclPtrTy::make(PrevDecl)));
Sebastian Redl4b07b292008-12-22 19:15:10 +00006061 if (PrevDecl->isTemplateParameter()) {
6062 // Maybe we will complain about the shadowed template parameter.
6063 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
Sebastian Redl4b07b292008-12-22 19:15:10 +00006064 }
6065 }
6066
Chris Lattnereaaebc72009-04-25 08:06:05 +00006067 if (D.getCXXScopeSpec().isSet() && !Invalid) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00006068 Diag(D.getIdentifierLoc(), diag::err_qualified_catch_declarator)
6069 << D.getCXXScopeSpec().getRange();
Chris Lattnereaaebc72009-04-25 08:06:05 +00006070 Invalid = true;
Sebastian Redl4b07b292008-12-22 19:15:10 +00006071 }
6072
John McCalla93c9342009-12-07 02:54:59 +00006073 VarDecl *ExDecl = BuildExceptionDeclaration(S, ExDeclType, TInfo,
Douglas Gregord308e622009-05-18 20:51:54 +00006074 D.getIdentifier(),
6075 D.getIdentifierLoc(),
6076 D.getDeclSpec().getSourceRange());
6077
Chris Lattnereaaebc72009-04-25 08:06:05 +00006078 if (Invalid)
6079 ExDecl->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00006080
Sebastian Redl4b07b292008-12-22 19:15:10 +00006081 // Add the exception declaration into this scope.
Sebastian Redl4b07b292008-12-22 19:15:10 +00006082 if (II)
Douglas Gregord308e622009-05-18 20:51:54 +00006083 PushOnScopeChains(ExDecl, S);
6084 else
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00006085 CurContext->addDecl(ExDecl);
Sebastian Redl4b07b292008-12-22 19:15:10 +00006086
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00006087 ProcessDeclAttributes(S, ExDecl, D);
Chris Lattnerb28317a2009-03-28 19:18:32 +00006088 return DeclPtrTy::make(ExDecl);
Sebastian Redl4b07b292008-12-22 19:15:10 +00006089}
Anders Carlssonfb311762009-03-14 00:25:26 +00006090
Mike Stump1eb44332009-09-09 15:08:12 +00006091Sema::DeclPtrTy Sema::ActOnStaticAssertDeclaration(SourceLocation AssertLoc,
Chris Lattnerb28317a2009-03-28 19:18:32 +00006092 ExprArg assertexpr,
6093 ExprArg assertmessageexpr) {
Anders Carlssonfb311762009-03-14 00:25:26 +00006094 Expr *AssertExpr = (Expr *)assertexpr.get();
Mike Stump1eb44332009-09-09 15:08:12 +00006095 StringLiteral *AssertMessage =
Anders Carlssonfb311762009-03-14 00:25:26 +00006096 cast<StringLiteral>((Expr *)assertmessageexpr.get());
6097
Anders Carlssonc3082412009-03-14 00:33:21 +00006098 if (!AssertExpr->isTypeDependent() && !AssertExpr->isValueDependent()) {
6099 llvm::APSInt Value(32);
6100 if (!AssertExpr->isIntegerConstantExpr(Value, Context)) {
6101 Diag(AssertLoc, diag::err_static_assert_expression_is_not_constant) <<
6102 AssertExpr->getSourceRange();
Chris Lattnerb28317a2009-03-28 19:18:32 +00006103 return DeclPtrTy();
Anders Carlssonc3082412009-03-14 00:33:21 +00006104 }
Anders Carlssonfb311762009-03-14 00:25:26 +00006105
Anders Carlssonc3082412009-03-14 00:33:21 +00006106 if (Value == 0) {
Mike Stump1eb44332009-09-09 15:08:12 +00006107 Diag(AssertLoc, diag::err_static_assert_failed)
Benjamin Kramer8d042582009-12-11 13:33:18 +00006108 << AssertMessage->getString() << AssertExpr->getSourceRange();
Anders Carlssonc3082412009-03-14 00:33:21 +00006109 }
6110 }
Mike Stump1eb44332009-09-09 15:08:12 +00006111
Anders Carlsson77d81422009-03-15 17:35:16 +00006112 assertexpr.release();
6113 assertmessageexpr.release();
Mike Stump1eb44332009-09-09 15:08:12 +00006114 Decl *Decl = StaticAssertDecl::Create(Context, CurContext, AssertLoc,
Anders Carlssonfb311762009-03-14 00:25:26 +00006115 AssertExpr, AssertMessage);
Mike Stump1eb44332009-09-09 15:08:12 +00006116
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00006117 CurContext->addDecl(Decl);
Chris Lattnerb28317a2009-03-28 19:18:32 +00006118 return DeclPtrTy::make(Decl);
Anders Carlssonfb311762009-03-14 00:25:26 +00006119}
Sebastian Redl50de12f2009-03-24 22:27:57 +00006120
Douglas Gregor1d869352010-04-07 16:53:43 +00006121/// \brief Perform semantic analysis of the given friend type declaration.
6122///
6123/// \returns A friend declaration that.
6124FriendDecl *Sema::CheckFriendTypeDecl(SourceLocation FriendLoc,
6125 TypeSourceInfo *TSInfo) {
6126 assert(TSInfo && "NULL TypeSourceInfo for friend type declaration");
6127
6128 QualType T = TSInfo->getType();
Abramo Bagnarabd054db2010-05-20 10:00:11 +00006129 SourceRange TypeRange = TSInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor1d869352010-04-07 16:53:43 +00006130
Douglas Gregor06245bf2010-04-07 17:57:12 +00006131 if (!getLangOptions().CPlusPlus0x) {
6132 // C++03 [class.friend]p2:
6133 // An elaborated-type-specifier shall be used in a friend declaration
6134 // for a class.*
6135 //
6136 // * The class-key of the elaborated-type-specifier is required.
6137 if (!ActiveTemplateInstantiations.empty()) {
6138 // Do not complain about the form of friend template types during
6139 // template instantiation; we will already have complained when the
6140 // template was declared.
6141 } else if (!T->isElaboratedTypeSpecifier()) {
6142 // If we evaluated the type to a record type, suggest putting
6143 // a tag in front.
6144 if (const RecordType *RT = T->getAs<RecordType>()) {
6145 RecordDecl *RD = RT->getDecl();
6146
6147 std::string InsertionText = std::string(" ") + RD->getKindName();
6148
6149 Diag(TypeRange.getBegin(), diag::ext_unelaborated_friend_type)
6150 << (unsigned) RD->getTagKind()
6151 << T
6152 << FixItHint::CreateInsertion(PP.getLocForEndOfToken(FriendLoc),
6153 InsertionText);
6154 } else {
6155 Diag(FriendLoc, diag::ext_nonclass_type_friend)
6156 << T
6157 << SourceRange(FriendLoc, TypeRange.getEnd());
6158 }
6159 } else if (T->getAs<EnumType>()) {
6160 Diag(FriendLoc, diag::ext_enum_friend)
Douglas Gregor1d869352010-04-07 16:53:43 +00006161 << T
Douglas Gregor1d869352010-04-07 16:53:43 +00006162 << SourceRange(FriendLoc, TypeRange.getEnd());
Douglas Gregor1d869352010-04-07 16:53:43 +00006163 }
6164 }
6165
Douglas Gregor06245bf2010-04-07 17:57:12 +00006166 // C++0x [class.friend]p3:
6167 // If the type specifier in a friend declaration designates a (possibly
6168 // cv-qualified) class type, that class is declared as a friend; otherwise,
6169 // the friend declaration is ignored.
6170
6171 // FIXME: C++0x has some syntactic restrictions on friend type declarations
6172 // in [class.friend]p3 that we do not implement.
Douglas Gregor1d869352010-04-07 16:53:43 +00006173
6174 return FriendDecl::Create(Context, CurContext, FriendLoc, TSInfo, FriendLoc);
6175}
6176
John McCalldd4a3b02009-09-16 22:47:08 +00006177/// Handle a friend type declaration. This works in tandem with
6178/// ActOnTag.
6179///
6180/// Notes on friend class templates:
6181///
6182/// We generally treat friend class declarations as if they were
6183/// declaring a class. So, for example, the elaborated type specifier
6184/// in a friend declaration is required to obey the restrictions of a
6185/// class-head (i.e. no typedefs in the scope chain), template
6186/// parameters are required to match up with simple template-ids, &c.
6187/// However, unlike when declaring a template specialization, it's
6188/// okay to refer to a template specialization without an empty
6189/// template parameter declaration, e.g.
6190/// friend class A<T>::B<unsigned>;
6191/// We permit this as a special case; if there are any template
6192/// parameters present at all, require proper matching, i.e.
6193/// template <> template <class T> friend class A<int>::B;
Chris Lattnerc7f19042009-10-25 17:47:27 +00006194Sema::DeclPtrTy Sema::ActOnFriendTypeDecl(Scope *S, const DeclSpec &DS,
John McCalldd4a3b02009-09-16 22:47:08 +00006195 MultiTemplateParamsArg TempParams) {
John McCall02cace72009-08-28 07:59:38 +00006196 SourceLocation Loc = DS.getSourceRange().getBegin();
John McCall67d1a672009-08-06 02:15:43 +00006197
6198 assert(DS.isFriendSpecified());
6199 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
6200
John McCalldd4a3b02009-09-16 22:47:08 +00006201 // Try to convert the decl specifier to a type. This works for
6202 // friend templates because ActOnTag never produces a ClassTemplateDecl
6203 // for a TUK_Friend.
Chris Lattnerc7f19042009-10-25 17:47:27 +00006204 Declarator TheDeclarator(DS, Declarator::MemberContext);
John McCallbf1a0282010-06-04 23:28:52 +00006205 TypeSourceInfo *TSI = GetTypeForDeclarator(TheDeclarator, S);
6206 QualType T = TSI->getType();
Chris Lattnerc7f19042009-10-25 17:47:27 +00006207 if (TheDeclarator.isInvalidType())
6208 return DeclPtrTy();
John McCall67d1a672009-08-06 02:15:43 +00006209
John McCalldd4a3b02009-09-16 22:47:08 +00006210 // This is definitely an error in C++98. It's probably meant to
6211 // be forbidden in C++0x, too, but the specification is just
6212 // poorly written.
6213 //
6214 // The problem is with declarations like the following:
6215 // template <T> friend A<T>::foo;
6216 // where deciding whether a class C is a friend or not now hinges
6217 // on whether there exists an instantiation of A that causes
6218 // 'foo' to equal C. There are restrictions on class-heads
6219 // (which we declare (by fiat) elaborated friend declarations to
6220 // be) that makes this tractable.
6221 //
6222 // FIXME: handle "template <> friend class A<T>;", which
6223 // is possibly well-formed? Who even knows?
Douglas Gregor40336422010-03-31 22:19:08 +00006224 if (TempParams.size() && !T->isElaboratedTypeSpecifier()) {
John McCalldd4a3b02009-09-16 22:47:08 +00006225 Diag(Loc, diag::err_tagless_friend_type_template)
6226 << DS.getSourceRange();
6227 return DeclPtrTy();
6228 }
Douglas Gregor1d869352010-04-07 16:53:43 +00006229
John McCall02cace72009-08-28 07:59:38 +00006230 // C++98 [class.friend]p1: A friend of a class is a function
6231 // or class that is not a member of the class . . .
John McCalla236a552009-12-22 00:59:39 +00006232 // This is fixed in DR77, which just barely didn't make the C++03
6233 // deadline. It's also a very silly restriction that seriously
6234 // affects inner classes and which nobody else seems to implement;
6235 // thus we never diagnose it, not even in -pedantic.
John McCall32f2fb52010-03-25 18:04:51 +00006236 //
6237 // But note that we could warn about it: it's always useless to
6238 // friend one of your own members (it's not, however, worthless to
6239 // friend a member of an arbitrary specialization of your template).
John McCall02cace72009-08-28 07:59:38 +00006240
John McCalldd4a3b02009-09-16 22:47:08 +00006241 Decl *D;
Douglas Gregor1d869352010-04-07 16:53:43 +00006242 if (unsigned NumTempParamLists = TempParams.size())
John McCalldd4a3b02009-09-16 22:47:08 +00006243 D = FriendTemplateDecl::Create(Context, CurContext, Loc,
Douglas Gregor1d869352010-04-07 16:53:43 +00006244 NumTempParamLists,
John McCalldd4a3b02009-09-16 22:47:08 +00006245 (TemplateParameterList**) TempParams.release(),
John McCall32f2fb52010-03-25 18:04:51 +00006246 TSI,
John McCalldd4a3b02009-09-16 22:47:08 +00006247 DS.getFriendSpecLoc());
6248 else
Douglas Gregor1d869352010-04-07 16:53:43 +00006249 D = CheckFriendTypeDecl(DS.getFriendSpecLoc(), TSI);
6250
6251 if (!D)
6252 return DeclPtrTy();
6253
John McCalldd4a3b02009-09-16 22:47:08 +00006254 D->setAccess(AS_public);
6255 CurContext->addDecl(D);
John McCall02cace72009-08-28 07:59:38 +00006256
John McCalldd4a3b02009-09-16 22:47:08 +00006257 return DeclPtrTy::make(D);
John McCall02cace72009-08-28 07:59:38 +00006258}
6259
John McCallbbbcdd92009-09-11 21:02:39 +00006260Sema::DeclPtrTy
6261Sema::ActOnFriendFunctionDecl(Scope *S,
6262 Declarator &D,
6263 bool IsDefinition,
6264 MultiTemplateParamsArg TemplateParams) {
John McCall02cace72009-08-28 07:59:38 +00006265 const DeclSpec &DS = D.getDeclSpec();
6266
6267 assert(DS.isFriendSpecified());
6268 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
6269
6270 SourceLocation Loc = D.getIdentifierLoc();
John McCallbf1a0282010-06-04 23:28:52 +00006271 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
6272 QualType T = TInfo->getType();
John McCall67d1a672009-08-06 02:15:43 +00006273
6274 // C++ [class.friend]p1
6275 // A friend of a class is a function or class....
6276 // Note that this sees through typedefs, which is intended.
John McCall02cace72009-08-28 07:59:38 +00006277 // It *doesn't* see through dependent types, which is correct
6278 // according to [temp.arg.type]p3:
6279 // If a declaration acquires a function type through a
6280 // type dependent on a template-parameter and this causes
6281 // a declaration that does not use the syntactic form of a
6282 // function declarator to have a function type, the program
6283 // is ill-formed.
John McCall67d1a672009-08-06 02:15:43 +00006284 if (!T->isFunctionType()) {
6285 Diag(Loc, diag::err_unexpected_friend);
6286
6287 // It might be worthwhile to try to recover by creating an
6288 // appropriate declaration.
6289 return DeclPtrTy();
6290 }
6291
6292 // C++ [namespace.memdef]p3
6293 // - If a friend declaration in a non-local class first declares a
6294 // class or function, the friend class or function is a member
6295 // of the innermost enclosing namespace.
6296 // - The name of the friend is not found by simple name lookup
6297 // until a matching declaration is provided in that namespace
6298 // scope (either before or after the class declaration granting
6299 // friendship).
6300 // - If a friend function is called, its name may be found by the
6301 // name lookup that considers functions from namespaces and
6302 // classes associated with the types of the function arguments.
6303 // - When looking for a prior declaration of a class or a function
6304 // declared as a friend, scopes outside the innermost enclosing
6305 // namespace scope are not considered.
6306
John McCall02cace72009-08-28 07:59:38 +00006307 CXXScopeSpec &ScopeQual = D.getCXXScopeSpec();
6308 DeclarationName Name = GetNameForDeclarator(D);
John McCall67d1a672009-08-06 02:15:43 +00006309 assert(Name);
6310
John McCall67d1a672009-08-06 02:15:43 +00006311 // The context we found the declaration in, or in which we should
6312 // create the declaration.
6313 DeclContext *DC;
6314
6315 // FIXME: handle local classes
6316
6317 // Recover from invalid scope qualifiers as if they just weren't there.
John McCall68263142009-11-18 22:49:29 +00006318 LookupResult Previous(*this, Name, D.getIdentifierLoc(), LookupOrdinaryName,
6319 ForRedeclaration);
John McCall67d1a672009-08-06 02:15:43 +00006320 if (!ScopeQual.isInvalid() && ScopeQual.isSet()) {
6321 DC = computeDeclContext(ScopeQual);
6322
6323 // FIXME: handle dependent contexts
6324 if (!DC) return DeclPtrTy();
John McCall77bb1aa2010-05-01 00:40:08 +00006325 if (RequireCompleteDeclContext(ScopeQual, DC)) return DeclPtrTy();
John McCall67d1a672009-08-06 02:15:43 +00006326
John McCall68263142009-11-18 22:49:29 +00006327 LookupQualifiedName(Previous, DC);
John McCall67d1a672009-08-06 02:15:43 +00006328
John McCall9da9cdf2010-05-28 01:41:47 +00006329 // Ignore things found implicitly in the wrong scope.
John McCall67d1a672009-08-06 02:15:43 +00006330 // TODO: better diagnostics for this case. Suggesting the right
6331 // qualified scope would be nice...
John McCall9da9cdf2010-05-28 01:41:47 +00006332 LookupResult::Filter F = Previous.makeFilter();
6333 while (F.hasNext()) {
6334 NamedDecl *D = F.next();
6335 if (!D->getDeclContext()->getLookupContext()->Equals(DC))
6336 F.erase();
6337 }
6338 F.done();
6339
6340 if (Previous.empty()) {
John McCall02cace72009-08-28 07:59:38 +00006341 D.setInvalidType();
John McCall67d1a672009-08-06 02:15:43 +00006342 Diag(Loc, diag::err_qualified_friend_not_found) << Name << T;
6343 return DeclPtrTy();
6344 }
6345
6346 // C++ [class.friend]p1: A friend of a class is a function or
6347 // class that is not a member of the class . . .
Douglas Gregor182ddf02009-09-28 00:08:27 +00006348 if (DC->Equals(CurContext))
John McCall67d1a672009-08-06 02:15:43 +00006349 Diag(DS.getFriendSpecLoc(), diag::err_friend_is_member);
6350
John McCall67d1a672009-08-06 02:15:43 +00006351 // Otherwise walk out to the nearest namespace scope looking for matches.
6352 } else {
6353 // TODO: handle local class contexts.
6354
6355 DC = CurContext;
6356 while (true) {
6357 // Skip class contexts. If someone can cite chapter and verse
6358 // for this behavior, that would be nice --- it's what GCC and
6359 // EDG do, and it seems like a reasonable intent, but the spec
6360 // really only says that checks for unqualified existing
6361 // declarations should stop at the nearest enclosing namespace,
6362 // not that they should only consider the nearest enclosing
6363 // namespace.
Douglas Gregor182ddf02009-09-28 00:08:27 +00006364 while (DC->isRecord())
6365 DC = DC->getParent();
John McCall67d1a672009-08-06 02:15:43 +00006366
John McCall68263142009-11-18 22:49:29 +00006367 LookupQualifiedName(Previous, DC);
John McCall67d1a672009-08-06 02:15:43 +00006368
6369 // TODO: decide what we think about using declarations.
John McCall68263142009-11-18 22:49:29 +00006370 if (!Previous.empty())
John McCall67d1a672009-08-06 02:15:43 +00006371 break;
Douglas Gregor182ddf02009-09-28 00:08:27 +00006372
John McCall67d1a672009-08-06 02:15:43 +00006373 if (DC->isFileContext()) break;
6374 DC = DC->getParent();
6375 }
6376
6377 // C++ [class.friend]p1: A friend of a class is a function or
6378 // class that is not a member of the class . . .
John McCall7f27d922009-08-06 20:49:32 +00006379 // C++0x changes this for both friend types and functions.
6380 // Most C++ 98 compilers do seem to give an error here, so
6381 // we do, too.
John McCall68263142009-11-18 22:49:29 +00006382 if (!Previous.empty() && DC->Equals(CurContext)
6383 && !getLangOptions().CPlusPlus0x)
John McCall67d1a672009-08-06 02:15:43 +00006384 Diag(DS.getFriendSpecLoc(), diag::err_friend_is_member);
6385 }
6386
Douglas Gregor182ddf02009-09-28 00:08:27 +00006387 if (DC->isFileContext()) {
John McCall67d1a672009-08-06 02:15:43 +00006388 // This implies that it has to be an operator or function.
Douglas Gregor3f9a0562009-11-03 01:35:08 +00006389 if (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ||
6390 D.getName().getKind() == UnqualifiedId::IK_DestructorName ||
6391 D.getName().getKind() == UnqualifiedId::IK_ConversionFunctionId) {
John McCall67d1a672009-08-06 02:15:43 +00006392 Diag(Loc, diag::err_introducing_special_friend) <<
Douglas Gregor3f9a0562009-11-03 01:35:08 +00006393 (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ? 0 :
6394 D.getName().getKind() == UnqualifiedId::IK_DestructorName ? 1 : 2);
John McCall67d1a672009-08-06 02:15:43 +00006395 return DeclPtrTy();
6396 }
John McCall67d1a672009-08-06 02:15:43 +00006397 }
6398
Douglas Gregor182ddf02009-09-28 00:08:27 +00006399 bool Redeclaration = false;
John McCalla93c9342009-12-07 02:54:59 +00006400 NamedDecl *ND = ActOnFunctionDeclarator(S, D, DC, T, TInfo, Previous,
Douglas Gregora735b202009-10-13 14:39:41 +00006401 move(TemplateParams),
John McCall3f9a8a62009-08-11 06:59:38 +00006402 IsDefinition,
6403 Redeclaration);
John McCall02cace72009-08-28 07:59:38 +00006404 if (!ND) return DeclPtrTy();
John McCallab88d972009-08-31 22:39:49 +00006405
Douglas Gregor182ddf02009-09-28 00:08:27 +00006406 assert(ND->getDeclContext() == DC);
6407 assert(ND->getLexicalDeclContext() == CurContext);
John McCall88232aa2009-08-18 00:00:49 +00006408
John McCallab88d972009-08-31 22:39:49 +00006409 // Add the function declaration to the appropriate lookup tables,
6410 // adjusting the redeclarations list as necessary. We don't
6411 // want to do this yet if the friending class is dependent.
Mike Stump1eb44332009-09-09 15:08:12 +00006412 //
John McCallab88d972009-08-31 22:39:49 +00006413 // Also update the scope-based lookup if the target context's
6414 // lookup context is in lexical scope.
6415 if (!CurContext->isDependentContext()) {
6416 DC = DC->getLookupContext();
Douglas Gregor182ddf02009-09-28 00:08:27 +00006417 DC->makeDeclVisibleInContext(ND, /* Recoverable=*/ false);
John McCallab88d972009-08-31 22:39:49 +00006418 if (Scope *EnclosingScope = getScopeForDeclContext(S, DC))
Douglas Gregor182ddf02009-09-28 00:08:27 +00006419 PushOnScopeChains(ND, EnclosingScope, /*AddToContext=*/ false);
John McCallab88d972009-08-31 22:39:49 +00006420 }
John McCall02cace72009-08-28 07:59:38 +00006421
6422 FriendDecl *FrD = FriendDecl::Create(Context, CurContext,
Douglas Gregor182ddf02009-09-28 00:08:27 +00006423 D.getIdentifierLoc(), ND,
John McCall02cace72009-08-28 07:59:38 +00006424 DS.getFriendSpecLoc());
John McCall5fee1102009-08-29 03:50:18 +00006425 FrD->setAccess(AS_public);
John McCall02cace72009-08-28 07:59:38 +00006426 CurContext->addDecl(FrD);
John McCall67d1a672009-08-06 02:15:43 +00006427
Douglas Gregor182ddf02009-09-28 00:08:27 +00006428 return DeclPtrTy::make(ND);
Anders Carlsson00338362009-05-11 22:55:49 +00006429}
6430
Chris Lattnerb28317a2009-03-28 19:18:32 +00006431void Sema::SetDeclDeleted(DeclPtrTy dcl, SourceLocation DelLoc) {
Douglas Gregorefd5bda2009-08-24 11:57:43 +00006432 AdjustDeclIfTemplate(dcl);
Mike Stump1eb44332009-09-09 15:08:12 +00006433
Chris Lattnerb28317a2009-03-28 19:18:32 +00006434 Decl *Dcl = dcl.getAs<Decl>();
Sebastian Redl50de12f2009-03-24 22:27:57 +00006435 FunctionDecl *Fn = dyn_cast<FunctionDecl>(Dcl);
6436 if (!Fn) {
6437 Diag(DelLoc, diag::err_deleted_non_function);
6438 return;
6439 }
6440 if (const FunctionDecl *Prev = Fn->getPreviousDeclaration()) {
6441 Diag(DelLoc, diag::err_deleted_decl_not_first);
6442 Diag(Prev->getLocation(), diag::note_previous_declaration);
6443 // If the declaration wasn't the first, we delete the function anyway for
6444 // recovery.
6445 }
6446 Fn->setDeleted();
6447}
Sebastian Redl13e88542009-04-27 21:33:24 +00006448
6449static void SearchForReturnInStmt(Sema &Self, Stmt *S) {
6450 for (Stmt::child_iterator CI = S->child_begin(), E = S->child_end(); CI != E;
6451 ++CI) {
6452 Stmt *SubStmt = *CI;
6453 if (!SubStmt)
6454 continue;
6455 if (isa<ReturnStmt>(SubStmt))
6456 Self.Diag(SubStmt->getSourceRange().getBegin(),
6457 diag::err_return_in_constructor_handler);
6458 if (!isa<Expr>(SubStmt))
6459 SearchForReturnInStmt(Self, SubStmt);
6460 }
6461}
6462
6463void Sema::DiagnoseReturnInConstructorExceptionHandler(CXXTryStmt *TryBlock) {
6464 for (unsigned I = 0, E = TryBlock->getNumHandlers(); I != E; ++I) {
6465 CXXCatchStmt *Handler = TryBlock->getHandler(I);
6466 SearchForReturnInStmt(*this, Handler);
6467 }
6468}
Anders Carlssond7ba27d2009-05-14 01:09:04 +00006469
Mike Stump1eb44332009-09-09 15:08:12 +00006470bool Sema::CheckOverridingFunctionReturnType(const CXXMethodDecl *New,
Anders Carlssond7ba27d2009-05-14 01:09:04 +00006471 const CXXMethodDecl *Old) {
John McCall183700f2009-09-21 23:43:11 +00006472 QualType NewTy = New->getType()->getAs<FunctionType>()->getResultType();
6473 QualType OldTy = Old->getType()->getAs<FunctionType>()->getResultType();
Anders Carlssond7ba27d2009-05-14 01:09:04 +00006474
Chandler Carruth73857792010-02-15 11:53:20 +00006475 if (Context.hasSameType(NewTy, OldTy) ||
6476 NewTy->isDependentType() || OldTy->isDependentType())
Anders Carlssond7ba27d2009-05-14 01:09:04 +00006477 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00006478
Anders Carlssonc3a68b22009-05-14 19:52:19 +00006479 // Check if the return types are covariant
6480 QualType NewClassTy, OldClassTy;
Mike Stump1eb44332009-09-09 15:08:12 +00006481
Anders Carlssonc3a68b22009-05-14 19:52:19 +00006482 /// Both types must be pointers or references to classes.
Anders Carlssonf2a04bf2010-01-22 17:37:20 +00006483 if (const PointerType *NewPT = NewTy->getAs<PointerType>()) {
6484 if (const PointerType *OldPT = OldTy->getAs<PointerType>()) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +00006485 NewClassTy = NewPT->getPointeeType();
6486 OldClassTy = OldPT->getPointeeType();
6487 }
Anders Carlssonf2a04bf2010-01-22 17:37:20 +00006488 } else if (const ReferenceType *NewRT = NewTy->getAs<ReferenceType>()) {
6489 if (const ReferenceType *OldRT = OldTy->getAs<ReferenceType>()) {
6490 if (NewRT->getTypeClass() == OldRT->getTypeClass()) {
6491 NewClassTy = NewRT->getPointeeType();
6492 OldClassTy = OldRT->getPointeeType();
6493 }
Anders Carlssonc3a68b22009-05-14 19:52:19 +00006494 }
6495 }
Mike Stump1eb44332009-09-09 15:08:12 +00006496
Anders Carlssonc3a68b22009-05-14 19:52:19 +00006497 // The return types aren't either both pointers or references to a class type.
6498 if (NewClassTy.isNull()) {
Mike Stump1eb44332009-09-09 15:08:12 +00006499 Diag(New->getLocation(),
Anders Carlssonc3a68b22009-05-14 19:52:19 +00006500 diag::err_different_return_type_for_overriding_virtual_function)
6501 << New->getDeclName() << NewTy << OldTy;
6502 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
Mike Stump1eb44332009-09-09 15:08:12 +00006503
Anders Carlssonc3a68b22009-05-14 19:52:19 +00006504 return true;
6505 }
Anders Carlssond7ba27d2009-05-14 01:09:04 +00006506
Anders Carlssonbe2e2052009-12-31 18:34:24 +00006507 // C++ [class.virtual]p6:
6508 // If the return type of D::f differs from the return type of B::f, the
6509 // class type in the return type of D::f shall be complete at the point of
6510 // declaration of D::f or shall be the class type D.
Anders Carlssonac4c9392009-12-31 18:54:35 +00006511 if (const RecordType *RT = NewClassTy->getAs<RecordType>()) {
6512 if (!RT->isBeingDefined() &&
6513 RequireCompleteType(New->getLocation(), NewClassTy,
6514 PDiag(diag::err_covariant_return_incomplete)
6515 << New->getDeclName()))
Anders Carlssonbe2e2052009-12-31 18:34:24 +00006516 return true;
Anders Carlssonac4c9392009-12-31 18:54:35 +00006517 }
Anders Carlssonbe2e2052009-12-31 18:34:24 +00006518
Douglas Gregora4923eb2009-11-16 21:35:15 +00006519 if (!Context.hasSameUnqualifiedType(NewClassTy, OldClassTy)) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +00006520 // Check if the new class derives from the old class.
6521 if (!IsDerivedFrom(NewClassTy, OldClassTy)) {
6522 Diag(New->getLocation(),
6523 diag::err_covariant_return_not_derived)
6524 << New->getDeclName() << NewTy << OldTy;
6525 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
6526 return true;
6527 }
Mike Stump1eb44332009-09-09 15:08:12 +00006528
Anders Carlssonc3a68b22009-05-14 19:52:19 +00006529 // Check if we the conversion from derived to base is valid.
John McCall58e6f342010-03-16 05:22:47 +00006530 if (CheckDerivedToBaseConversion(NewClassTy, OldClassTy,
Anders Carlssone25a96c2010-04-24 17:11:09 +00006531 diag::err_covariant_return_inaccessible_base,
6532 diag::err_covariant_return_ambiguous_derived_to_base_conv,
6533 // FIXME: Should this point to the return type?
6534 New->getLocation(), SourceRange(), New->getDeclName(), 0)) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +00006535 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
6536 return true;
6537 }
6538 }
Mike Stump1eb44332009-09-09 15:08:12 +00006539
Anders Carlssonc3a68b22009-05-14 19:52:19 +00006540 // The qualifiers of the return types must be the same.
Anders Carlssonf2a04bf2010-01-22 17:37:20 +00006541 if (NewTy.getLocalCVRQualifiers() != OldTy.getLocalCVRQualifiers()) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +00006542 Diag(New->getLocation(),
6543 diag::err_covariant_return_type_different_qualifications)
Anders Carlssond7ba27d2009-05-14 01:09:04 +00006544 << New->getDeclName() << NewTy << OldTy;
Anders Carlssonc3a68b22009-05-14 19:52:19 +00006545 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
6546 return true;
6547 };
Mike Stump1eb44332009-09-09 15:08:12 +00006548
Anders Carlssonc3a68b22009-05-14 19:52:19 +00006549
6550 // The new class type must have the same or less qualifiers as the old type.
6551 if (NewClassTy.isMoreQualifiedThan(OldClassTy)) {
6552 Diag(New->getLocation(),
6553 diag::err_covariant_return_type_class_type_more_qualified)
6554 << New->getDeclName() << NewTy << OldTy;
6555 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
6556 return true;
6557 };
Mike Stump1eb44332009-09-09 15:08:12 +00006558
Anders Carlssonc3a68b22009-05-14 19:52:19 +00006559 return false;
Anders Carlssond7ba27d2009-05-14 01:09:04 +00006560}
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00006561
Sean Huntbbd37c62009-11-21 08:43:09 +00006562bool Sema::CheckOverridingFunctionAttributes(const CXXMethodDecl *New,
6563 const CXXMethodDecl *Old)
6564{
6565 if (Old->hasAttr<FinalAttr>()) {
6566 Diag(New->getLocation(), diag::err_final_function_overridden)
6567 << New->getDeclName();
6568 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
6569 return true;
6570 }
6571
6572 return false;
6573}
6574
Douglas Gregor4ba31362009-12-01 17:24:26 +00006575/// \brief Mark the given method pure.
6576///
6577/// \param Method the method to be marked pure.
6578///
6579/// \param InitRange the source range that covers the "0" initializer.
6580bool Sema::CheckPureMethod(CXXMethodDecl *Method, SourceRange InitRange) {
6581 if (Method->isVirtual() || Method->getParent()->isDependentContext()) {
6582 Method->setPure();
6583
6584 // A class is abstract if at least one function is pure virtual.
6585 Method->getParent()->setAbstract(true);
6586 return false;
6587 }
6588
6589 if (!Method->isInvalidDecl())
6590 Diag(Method->getLocation(), diag::err_non_virtual_pure)
6591 << Method->getDeclName() << InitRange;
6592 return true;
6593}
6594
John McCall731ad842009-12-19 09:28:58 +00006595/// ActOnCXXEnterDeclInitializer - Invoked when we are about to parse
6596/// an initializer for the out-of-line declaration 'Dcl'. The scope
6597/// is a fresh scope pushed for just this purpose.
6598///
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00006599/// After this method is called, according to [C++ 3.4.1p13], if 'Dcl' is a
6600/// static data member of class X, names should be looked up in the scope of
6601/// class X.
6602void Sema::ActOnCXXEnterDeclInitializer(Scope *S, DeclPtrTy Dcl) {
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00006603 // If there is no declaration, there was an error parsing it.
John McCall731ad842009-12-19 09:28:58 +00006604 Decl *D = Dcl.getAs<Decl>();
6605 if (D == 0) return;
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00006606
John McCall731ad842009-12-19 09:28:58 +00006607 // We should only get called for declarations with scope specifiers, like:
6608 // int foo::bar;
6609 assert(D->isOutOfLine());
John McCall7a1dc562009-12-19 10:49:29 +00006610 EnterDeclaratorContext(S, D->getDeclContext());
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00006611}
6612
6613/// ActOnCXXExitDeclInitializer - Invoked after we are finished parsing an
John McCall731ad842009-12-19 09:28:58 +00006614/// initializer for the out-of-line declaration 'Dcl'.
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00006615void Sema::ActOnCXXExitDeclInitializer(Scope *S, DeclPtrTy Dcl) {
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00006616 // If there is no declaration, there was an error parsing it.
John McCall731ad842009-12-19 09:28:58 +00006617 Decl *D = Dcl.getAs<Decl>();
6618 if (D == 0) return;
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00006619
John McCall731ad842009-12-19 09:28:58 +00006620 assert(D->isOutOfLine());
John McCall7a1dc562009-12-19 10:49:29 +00006621 ExitDeclaratorContext(S);
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00006622}
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00006623
6624/// ActOnCXXConditionDeclarationExpr - Parsed a condition declaration of a
6625/// C++ if/switch/while/for statement.
6626/// e.g: "if (int x = f()) {...}"
6627Action::DeclResult
6628Sema::ActOnCXXConditionDeclaration(Scope *S, Declarator &D) {
6629 // C++ 6.4p2:
6630 // The declarator shall not specify a function or an array.
6631 // The type-specifier-seq shall not contain typedef and shall not declare a
6632 // new class or enumeration.
6633 assert(D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef &&
6634 "Parser allowed 'typedef' as storage class of condition decl.");
6635
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00006636 TagDecl *OwnedTag = 0;
John McCallbf1a0282010-06-04 23:28:52 +00006637 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S, &OwnedTag);
6638 QualType Ty = TInfo->getType();
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00006639
6640 if (Ty->isFunctionType()) { // The declarator shall not specify a function...
6641 // We exit without creating a CXXConditionDeclExpr because a FunctionDecl
6642 // would be created and CXXConditionDeclExpr wants a VarDecl.
6643 Diag(D.getIdentifierLoc(), diag::err_invalid_use_of_function_type)
6644 << D.getSourceRange();
6645 return DeclResult();
6646 } else if (OwnedTag && OwnedTag->isDefinition()) {
6647 // The type-specifier-seq shall not declare a new class or enumeration.
6648 Diag(OwnedTag->getLocation(), diag::err_type_defined_in_condition);
6649 }
6650
6651 DeclPtrTy Dcl = ActOnDeclarator(S, D);
6652 if (!Dcl)
6653 return DeclResult();
6654
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00006655 return Dcl;
6656}
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00006657
Douglas Gregor6fb745b2010-05-13 16:44:06 +00006658void Sema::MarkVTableUsed(SourceLocation Loc, CXXRecordDecl *Class,
6659 bool DefinitionRequired) {
6660 // Ignore any vtable uses in unevaluated operands or for classes that do
6661 // not have a vtable.
6662 if (!Class->isDynamicClass() || Class->isDependentContext() ||
6663 CurContext->isDependentContext() ||
6664 ExprEvalContexts.back().Context == Unevaluated)
Rafael Espindolabbf58bb2010-03-10 02:19:29 +00006665 return;
6666
Douglas Gregor6fb745b2010-05-13 16:44:06 +00006667 // Try to insert this class into the map.
6668 Class = cast<CXXRecordDecl>(Class->getCanonicalDecl());
6669 std::pair<llvm::DenseMap<CXXRecordDecl *, bool>::iterator, bool>
6670 Pos = VTablesUsed.insert(std::make_pair(Class, DefinitionRequired));
6671 if (!Pos.second) {
Daniel Dunbarb9aefa72010-05-25 00:33:13 +00006672 // If we already had an entry, check to see if we are promoting this vtable
6673 // to required a definition. If so, we need to reappend to the VTableUses
6674 // list, since we may have already processed the first entry.
6675 if (DefinitionRequired && !Pos.first->second) {
6676 Pos.first->second = true;
6677 } else {
6678 // Otherwise, we can early exit.
6679 return;
6680 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +00006681 }
6682
6683 // Local classes need to have their virtual members marked
6684 // immediately. For all other classes, we mark their virtual members
6685 // at the end of the translation unit.
6686 if (Class->isLocalClass())
6687 MarkVirtualMembersReferenced(Loc, Class);
Daniel Dunbar380c2132010-05-11 21:32:35 +00006688 else
Douglas Gregor6fb745b2010-05-13 16:44:06 +00006689 VTableUses.push_back(std::make_pair(Class, Loc));
Douglas Gregorbbbe0742010-05-11 20:24:17 +00006690}
6691
Douglas Gregor6fb745b2010-05-13 16:44:06 +00006692bool Sema::DefineUsedVTables() {
6693 // If any dynamic classes have their key function defined within
6694 // this translation unit, then those vtables are considered "used" and must
6695 // be emitted.
6696 for (unsigned I = 0, N = DynamicClasses.size(); I != N; ++I) {
6697 if (const CXXMethodDecl *KeyFunction
6698 = Context.getKeyFunction(DynamicClasses[I])) {
6699 const FunctionDecl *Definition = 0;
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00006700 if (KeyFunction->hasBody(Definition))
Douglas Gregor6fb745b2010-05-13 16:44:06 +00006701 MarkVTableUsed(Definition->getLocation(), DynamicClasses[I], true);
6702 }
6703 }
6704
6705 if (VTableUses.empty())
Anders Carlssond6a637f2009-12-07 08:24:59 +00006706 return false;
6707
Douglas Gregor6fb745b2010-05-13 16:44:06 +00006708 // Note: The VTableUses vector could grow as a result of marking
6709 // the members of a class as "used", so we check the size each
6710 // time through the loop and prefer indices (with are stable) to
6711 // iterators (which are not).
6712 for (unsigned I = 0; I != VTableUses.size(); ++I) {
Daniel Dunbare669f892010-05-25 00:32:58 +00006713 CXXRecordDecl *Class = VTableUses[I].first->getDefinition();
Douglas Gregor6fb745b2010-05-13 16:44:06 +00006714 if (!Class)
6715 continue;
6716
6717 SourceLocation Loc = VTableUses[I].second;
6718
6719 // If this class has a key function, but that key function is
6720 // defined in another translation unit, we don't need to emit the
6721 // vtable even though we're using it.
6722 const CXXMethodDecl *KeyFunction = Context.getKeyFunction(Class);
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00006723 if (KeyFunction && !KeyFunction->hasBody()) {
Douglas Gregor6fb745b2010-05-13 16:44:06 +00006724 switch (KeyFunction->getTemplateSpecializationKind()) {
6725 case TSK_Undeclared:
6726 case TSK_ExplicitSpecialization:
6727 case TSK_ExplicitInstantiationDeclaration:
6728 // The key function is in another translation unit.
6729 continue;
6730
6731 case TSK_ExplicitInstantiationDefinition:
6732 case TSK_ImplicitInstantiation:
6733 // We will be instantiating the key function.
6734 break;
6735 }
6736 } else if (!KeyFunction) {
6737 // If we have a class with no key function that is the subject
6738 // of an explicit instantiation declaration, suppress the
6739 // vtable; it will live with the explicit instantiation
6740 // definition.
6741 bool IsExplicitInstantiationDeclaration
6742 = Class->getTemplateSpecializationKind()
6743 == TSK_ExplicitInstantiationDeclaration;
6744 for (TagDecl::redecl_iterator R = Class->redecls_begin(),
6745 REnd = Class->redecls_end();
6746 R != REnd; ++R) {
6747 TemplateSpecializationKind TSK
6748 = cast<CXXRecordDecl>(*R)->getTemplateSpecializationKind();
6749 if (TSK == TSK_ExplicitInstantiationDeclaration)
6750 IsExplicitInstantiationDeclaration = true;
6751 else if (TSK == TSK_ExplicitInstantiationDefinition) {
6752 IsExplicitInstantiationDeclaration = false;
6753 break;
6754 }
6755 }
6756
6757 if (IsExplicitInstantiationDeclaration)
6758 continue;
6759 }
6760
6761 // Mark all of the virtual members of this class as referenced, so
6762 // that we can build a vtable. Then, tell the AST consumer that a
6763 // vtable for this class is required.
6764 MarkVirtualMembersReferenced(Loc, Class);
6765 CXXRecordDecl *Canonical = cast<CXXRecordDecl>(Class->getCanonicalDecl());
6766 Consumer.HandleVTable(Class, VTablesUsed[Canonical]);
6767
6768 // Optionally warn if we're emitting a weak vtable.
6769 if (Class->getLinkage() == ExternalLinkage &&
6770 Class->getTemplateSpecializationKind() != TSK_ImplicitInstantiation) {
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00006771 if (!KeyFunction || (KeyFunction->hasBody() && KeyFunction->isInlined()))
Douglas Gregor6fb745b2010-05-13 16:44:06 +00006772 Diag(Class->getLocation(), diag::warn_weak_vtable) << Class;
6773 }
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00006774 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +00006775 VTableUses.clear();
6776
Anders Carlssond6a637f2009-12-07 08:24:59 +00006777 return true;
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00006778}
Anders Carlssond6a637f2009-12-07 08:24:59 +00006779
Rafael Espindola3e1ae932010-03-26 00:36:59 +00006780void Sema::MarkVirtualMembersReferenced(SourceLocation Loc,
6781 const CXXRecordDecl *RD) {
Anders Carlssond6a637f2009-12-07 08:24:59 +00006782 for (CXXRecordDecl::method_iterator i = RD->method_begin(),
6783 e = RD->method_end(); i != e; ++i) {
6784 CXXMethodDecl *MD = *i;
6785
6786 // C++ [basic.def.odr]p2:
6787 // [...] A virtual member function is used if it is not pure. [...]
6788 if (MD->isVirtual() && !MD->isPure())
6789 MarkDeclarationReferenced(Loc, MD);
6790 }
Rafael Espindola3e1ae932010-03-26 00:36:59 +00006791
6792 // Only classes that have virtual bases need a VTT.
6793 if (RD->getNumVBases() == 0)
6794 return;
6795
6796 for (CXXRecordDecl::base_class_const_iterator i = RD->bases_begin(),
6797 e = RD->bases_end(); i != e; ++i) {
6798 const CXXRecordDecl *Base =
6799 cast<CXXRecordDecl>(i->getType()->getAs<RecordType>()->getDecl());
Rafael Espindola3e1ae932010-03-26 00:36:59 +00006800 if (Base->getNumVBases() == 0)
6801 continue;
6802 MarkVirtualMembersReferenced(Loc, Base);
6803 }
Anders Carlssond6a637f2009-12-07 08:24:59 +00006804}
Fariborz Jahaniane4498c62010-04-28 16:11:27 +00006805
6806/// SetIvarInitializers - This routine builds initialization ASTs for the
6807/// Objective-C implementation whose ivars need be initialized.
6808void Sema::SetIvarInitializers(ObjCImplementationDecl *ObjCImplementation) {
6809 if (!getLangOptions().CPlusPlus)
6810 return;
6811 if (const ObjCInterfaceDecl *OID = ObjCImplementation->getClassInterface()) {
6812 llvm::SmallVector<ObjCIvarDecl*, 8> ivars;
6813 CollectIvarsToConstructOrDestruct(OID, ivars);
6814 if (ivars.empty())
6815 return;
6816 llvm::SmallVector<CXXBaseOrMemberInitializer*, 32> AllToInit;
6817 for (unsigned i = 0; i < ivars.size(); i++) {
6818 FieldDecl *Field = ivars[i];
Douglas Gregor68dd3ee2010-05-20 02:24:22 +00006819 if (Field->isInvalidDecl())
6820 continue;
6821
Fariborz Jahaniane4498c62010-04-28 16:11:27 +00006822 CXXBaseOrMemberInitializer *Member;
6823 InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field);
6824 InitializationKind InitKind =
6825 InitializationKind::CreateDefault(ObjCImplementation->getLocation());
6826
6827 InitializationSequence InitSeq(*this, InitEntity, InitKind, 0, 0);
6828 Sema::OwningExprResult MemberInit =
6829 InitSeq.Perform(*this, InitEntity, InitKind,
6830 Sema::MultiExprArg(*this, 0, 0));
6831 MemberInit = MaybeCreateCXXExprWithTemporaries(move(MemberInit));
6832 // Note, MemberInit could actually come back empty if no initialization
6833 // is required (e.g., because it would call a trivial default constructor)
6834 if (!MemberInit.get() || MemberInit.isInvalid())
6835 continue;
6836
6837 Member =
6838 new (Context) CXXBaseOrMemberInitializer(Context,
6839 Field, SourceLocation(),
6840 SourceLocation(),
6841 MemberInit.takeAs<Expr>(),
6842 SourceLocation());
6843 AllToInit.push_back(Member);
Douglas Gregor68dd3ee2010-05-20 02:24:22 +00006844
6845 // Be sure that the destructor is accessible and is marked as referenced.
6846 if (const RecordType *RecordTy
6847 = Context.getBaseElementType(Field->getType())
6848 ->getAs<RecordType>()) {
6849 CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl());
Douglas Gregordb89f282010-07-01 22:47:18 +00006850 if (CXXDestructorDecl *Destructor = LookupDestructor(RD)) {
Douglas Gregor68dd3ee2010-05-20 02:24:22 +00006851 MarkDeclarationReferenced(Field->getLocation(), Destructor);
6852 CheckDestructorAccess(Field->getLocation(), Destructor,
6853 PDiag(diag::err_access_dtor_ivar)
6854 << Context.getBaseElementType(Field->getType()));
6855 }
6856 }
Fariborz Jahaniane4498c62010-04-28 16:11:27 +00006857 }
6858 ObjCImplementation->setIvarInitializers(Context,
6859 AllToInit.data(), AllToInit.size());
6860 }
6861}