blob: c5705dfa9e743a6aa7fa32392844b5e2ccfc9a5b [file] [log] [blame]
Chris Lattner3d1cee32008-04-08 05:04:30 +00001//===------ SemaDeclCXX.cpp - Semantic Analysis for C++ Declarations ------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements semantic analysis for C++ declarations.
11//
12//===----------------------------------------------------------------------===//
13
14#include "Sema.h"
Douglas Gregor20093b42009-12-09 23:02:17 +000015#include "SemaInit.h"
John McCall7d384dd2009-11-18 07:57:50 +000016#include "Lookup.h"
Argyrios Kyrtzidisa4755c62008-08-09 00:58:37 +000017#include "clang/AST/ASTConsumer.h"
Douglas Gregore37ac4f2008-04-13 21:30:24 +000018#include "clang/AST/ASTContext.h"
Douglas Gregor06a9f362010-05-01 20:49:11 +000019#include "clang/AST/CharUnits.h"
Douglas Gregora8f32e02009-10-06 17:59:45 +000020#include "clang/AST/CXXInheritance.h"
Anders Carlsson8211eff2009-03-24 01:19:16 +000021#include "clang/AST/DeclVisitor.h"
Douglas Gregor06a9f362010-05-01 20:49:11 +000022#include "clang/AST/RecordLayout.h"
23#include "clang/AST/StmtVisitor.h"
Douglas Gregor802ab452009-12-02 22:36:29 +000024#include "clang/AST/TypeLoc.h"
Douglas Gregor02189362008-10-22 21:13:31 +000025#include "clang/AST/TypeOrdering.h"
Douglas Gregor314b97f2009-11-10 19:49:08 +000026#include "clang/Parse/DeclSpec.h"
27#include "clang/Parse/Template.h"
Anders Carlssonb7906612009-08-26 23:45:07 +000028#include "clang/Basic/PartialDiagnostic.h"
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +000029#include "clang/Lex/Preprocessor.h"
Douglas Gregor3fc749d2008-12-23 00:26:44 +000030#include "llvm/ADT/STLExtras.h"
Douglas Gregorf8268ae2008-10-22 17:49:05 +000031#include <map>
Douglas Gregora8f32e02009-10-06 17:59:45 +000032#include <set>
Chris Lattner3d1cee32008-04-08 05:04:30 +000033
34using namespace clang;
35
Chris Lattner8123a952008-04-10 02:22:51 +000036//===----------------------------------------------------------------------===//
37// CheckDefaultArgumentVisitor
38//===----------------------------------------------------------------------===//
39
Chris Lattner9e979552008-04-12 23:52:44 +000040namespace {
41 /// CheckDefaultArgumentVisitor - C++ [dcl.fct.default] Traverses
42 /// the default argument of a parameter to determine whether it
43 /// contains any ill-formed subexpressions. For example, this will
44 /// diagnose the use of local variables or parameters within the
45 /// default argument expression.
Benjamin Kramer85b45212009-11-28 19:45:26 +000046 class CheckDefaultArgumentVisitor
Chris Lattnerb77792e2008-07-26 22:17:49 +000047 : public StmtVisitor<CheckDefaultArgumentVisitor, bool> {
Chris Lattner9e979552008-04-12 23:52:44 +000048 Expr *DefaultArg;
49 Sema *S;
Chris Lattner8123a952008-04-10 02:22:51 +000050
Chris Lattner9e979552008-04-12 23:52:44 +000051 public:
Mike Stump1eb44332009-09-09 15:08:12 +000052 CheckDefaultArgumentVisitor(Expr *defarg, Sema *s)
Chris Lattner9e979552008-04-12 23:52:44 +000053 : DefaultArg(defarg), S(s) {}
Chris Lattner8123a952008-04-10 02:22:51 +000054
Chris Lattner9e979552008-04-12 23:52:44 +000055 bool VisitExpr(Expr *Node);
56 bool VisitDeclRefExpr(DeclRefExpr *DRE);
Douglas Gregor796da182008-11-04 14:32:21 +000057 bool VisitCXXThisExpr(CXXThisExpr *ThisE);
Chris Lattner9e979552008-04-12 23:52:44 +000058 };
Chris Lattner8123a952008-04-10 02:22:51 +000059
Chris Lattner9e979552008-04-12 23:52:44 +000060 /// VisitExpr - Visit all of the children of this expression.
61 bool CheckDefaultArgumentVisitor::VisitExpr(Expr *Node) {
62 bool IsInvalid = false;
Mike Stump1eb44332009-09-09 15:08:12 +000063 for (Stmt::child_iterator I = Node->child_begin(),
Chris Lattnerb77792e2008-07-26 22:17:49 +000064 E = Node->child_end(); I != E; ++I)
65 IsInvalid |= Visit(*I);
Chris Lattner9e979552008-04-12 23:52:44 +000066 return IsInvalid;
Chris Lattner8123a952008-04-10 02:22:51 +000067 }
68
Chris Lattner9e979552008-04-12 23:52:44 +000069 /// VisitDeclRefExpr - Visit a reference to a declaration, to
70 /// determine whether this declaration can be used in the default
71 /// argument expression.
72 bool CheckDefaultArgumentVisitor::VisitDeclRefExpr(DeclRefExpr *DRE) {
Douglas Gregor8e9bebd2008-10-21 16:13:35 +000073 NamedDecl *Decl = DRE->getDecl();
Chris Lattner9e979552008-04-12 23:52:44 +000074 if (ParmVarDecl *Param = dyn_cast<ParmVarDecl>(Decl)) {
75 // C++ [dcl.fct.default]p9
76 // Default arguments are evaluated each time the function is
77 // called. The order of evaluation of function arguments is
78 // unspecified. Consequently, parameters of a function shall not
79 // be used in default argument expressions, even if they are not
80 // evaluated. Parameters of a function declared before a default
81 // argument expression are in scope and can hide namespace and
82 // class member names.
Mike Stump1eb44332009-09-09 15:08:12 +000083 return S->Diag(DRE->getSourceRange().getBegin(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +000084 diag::err_param_default_argument_references_param)
Chris Lattner08631c52008-11-23 21:45:46 +000085 << Param->getDeclName() << DefaultArg->getSourceRange();
Steve Naroff248a7532008-04-15 22:42:06 +000086 } else if (VarDecl *VDecl = dyn_cast<VarDecl>(Decl)) {
Chris Lattner9e979552008-04-12 23:52:44 +000087 // C++ [dcl.fct.default]p7
88 // Local variables shall not be used in default argument
89 // expressions.
Steve Naroff248a7532008-04-15 22:42:06 +000090 if (VDecl->isBlockVarDecl())
Mike Stump1eb44332009-09-09 15:08:12 +000091 return S->Diag(DRE->getSourceRange().getBegin(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +000092 diag::err_param_default_argument_references_local)
Chris Lattner08631c52008-11-23 21:45:46 +000093 << VDecl->getDeclName() << DefaultArg->getSourceRange();
Chris Lattner9e979552008-04-12 23:52:44 +000094 }
Chris Lattner8123a952008-04-10 02:22:51 +000095
Douglas Gregor3996f232008-11-04 13:41:56 +000096 return false;
97 }
Chris Lattner9e979552008-04-12 23:52:44 +000098
Douglas Gregor796da182008-11-04 14:32:21 +000099 /// VisitCXXThisExpr - Visit a C++ "this" expression.
100 bool CheckDefaultArgumentVisitor::VisitCXXThisExpr(CXXThisExpr *ThisE) {
101 // C++ [dcl.fct.default]p8:
102 // The keyword this shall not be used in a default argument of a
103 // member function.
104 return S->Diag(ThisE->getSourceRange().getBegin(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000105 diag::err_param_default_argument_references_this)
106 << ThisE->getSourceRange();
Chris Lattner9e979552008-04-12 23:52:44 +0000107 }
Chris Lattner8123a952008-04-10 02:22:51 +0000108}
109
Anders Carlssoned961f92009-08-25 02:29:20 +0000110bool
111Sema::SetParamDefaultArgument(ParmVarDecl *Param, ExprArg DefaultArg,
Mike Stump1eb44332009-09-09 15:08:12 +0000112 SourceLocation EqualLoc) {
Anders Carlsson5653ca52009-08-25 13:46:13 +0000113 if (RequireCompleteType(Param->getLocation(), Param->getType(),
114 diag::err_typecheck_decl_incomplete_type)) {
115 Param->setInvalidDecl();
116 return true;
117 }
118
Anders Carlssoned961f92009-08-25 02:29:20 +0000119 Expr *Arg = (Expr *)DefaultArg.get();
Mike Stump1eb44332009-09-09 15:08:12 +0000120
Anders Carlssoned961f92009-08-25 02:29:20 +0000121 // C++ [dcl.fct.default]p5
122 // A default argument expression is implicitly converted (clause
123 // 4) to the parameter type. The default argument expression has
124 // the same semantic constraints as the initializer expression in
125 // a declaration of a variable of the parameter type, using the
126 // copy-initialization semantics (8.5).
Douglas Gregor99a2e602009-12-16 01:38:02 +0000127 InitializedEntity Entity = InitializedEntity::InitializeParameter(Param);
128 InitializationKind Kind = InitializationKind::CreateCopy(Param->getLocation(),
129 EqualLoc);
Eli Friedman4a2c19b2009-12-22 02:46:13 +0000130 InitializationSequence InitSeq(*this, Entity, Kind, &Arg, 1);
131 OwningExprResult Result = InitSeq.Perform(*this, Entity, Kind,
132 MultiExprArg(*this, (void**)&Arg, 1));
133 if (Result.isInvalid())
Anders Carlsson9351c172009-08-25 03:18:48 +0000134 return true;
Eli Friedman4a2c19b2009-12-22 02:46:13 +0000135 Arg = Result.takeAs<Expr>();
Anders Carlssoned961f92009-08-25 02:29:20 +0000136
Anders Carlsson0ece4912009-12-15 20:51:39 +0000137 Arg = MaybeCreateCXXExprWithTemporaries(Arg);
Mike Stump1eb44332009-09-09 15:08:12 +0000138
Anders Carlssoned961f92009-08-25 02:29:20 +0000139 // Okay: add the default argument to the parameter
140 Param->setDefaultArg(Arg);
Mike Stump1eb44332009-09-09 15:08:12 +0000141
Anders Carlssoned961f92009-08-25 02:29:20 +0000142 DefaultArg.release();
Mike Stump1eb44332009-09-09 15:08:12 +0000143
Anders Carlsson9351c172009-08-25 03:18:48 +0000144 return false;
Anders Carlssoned961f92009-08-25 02:29:20 +0000145}
146
Chris Lattner8123a952008-04-10 02:22:51 +0000147/// ActOnParamDefaultArgument - Check whether the default argument
148/// provided for a function parameter is well-formed. If so, attach it
149/// to the parameter declaration.
Chris Lattner3d1cee32008-04-08 05:04:30 +0000150void
Mike Stump1eb44332009-09-09 15:08:12 +0000151Sema::ActOnParamDefaultArgument(DeclPtrTy param, SourceLocation EqualLoc,
Sebastian Redlf53597f2009-03-15 17:47:39 +0000152 ExprArg defarg) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000153 if (!param || !defarg.get())
154 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000155
Chris Lattnerb28317a2009-03-28 19:18:32 +0000156 ParmVarDecl *Param = cast<ParmVarDecl>(param.getAs<Decl>());
Anders Carlsson5e300d12009-06-12 16:51:40 +0000157 UnparsedDefaultArgLocs.erase(Param);
158
Anders Carlssonf1b1d592009-05-01 19:30:39 +0000159 ExprOwningPtr<Expr> DefaultArg(this, defarg.takeAs<Expr>());
Chris Lattner3d1cee32008-04-08 05:04:30 +0000160
161 // Default arguments are only permitted in C++
162 if (!getLangOptions().CPlusPlus) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000163 Diag(EqualLoc, diag::err_param_default_argument)
164 << DefaultArg->getSourceRange();
Douglas Gregor72b505b2008-12-16 21:30:33 +0000165 Param->setInvalidDecl();
Chris Lattner3d1cee32008-04-08 05:04:30 +0000166 return;
167 }
168
Anders Carlsson66e30672009-08-25 01:02:06 +0000169 // Check that the default argument is well-formed
170 CheckDefaultArgumentVisitor DefaultArgChecker(DefaultArg.get(), this);
171 if (DefaultArgChecker.Visit(DefaultArg.get())) {
172 Param->setInvalidDecl();
173 return;
174 }
Mike Stump1eb44332009-09-09 15:08:12 +0000175
Anders Carlssoned961f92009-08-25 02:29:20 +0000176 SetParamDefaultArgument(Param, move(DefaultArg), EqualLoc);
Chris Lattner3d1cee32008-04-08 05:04:30 +0000177}
178
Douglas Gregor61366e92008-12-24 00:01:03 +0000179/// ActOnParamUnparsedDefaultArgument - We've seen a default
180/// argument for a function parameter, but we can't parse it yet
181/// because we're inside a class definition. Note that this default
182/// argument will be parsed later.
Mike Stump1eb44332009-09-09 15:08:12 +0000183void Sema::ActOnParamUnparsedDefaultArgument(DeclPtrTy param,
Anders Carlsson5e300d12009-06-12 16:51:40 +0000184 SourceLocation EqualLoc,
185 SourceLocation ArgLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000186 if (!param)
187 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000188
Chris Lattnerb28317a2009-03-28 19:18:32 +0000189 ParmVarDecl *Param = cast<ParmVarDecl>(param.getAs<Decl>());
Douglas Gregor61366e92008-12-24 00:01:03 +0000190 if (Param)
191 Param->setUnparsedDefaultArg();
Mike Stump1eb44332009-09-09 15:08:12 +0000192
Anders Carlsson5e300d12009-06-12 16:51:40 +0000193 UnparsedDefaultArgLocs[Param] = ArgLoc;
Douglas Gregor61366e92008-12-24 00:01:03 +0000194}
195
Douglas Gregor72b505b2008-12-16 21:30:33 +0000196/// ActOnParamDefaultArgumentError - Parsing or semantic analysis of
197/// the default argument for the parameter param failed.
Chris Lattnerb28317a2009-03-28 19:18:32 +0000198void Sema::ActOnParamDefaultArgumentError(DeclPtrTy param) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000199 if (!param)
200 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000201
Anders Carlsson5e300d12009-06-12 16:51:40 +0000202 ParmVarDecl *Param = cast<ParmVarDecl>(param.getAs<Decl>());
Mike Stump1eb44332009-09-09 15:08:12 +0000203
Anders Carlsson5e300d12009-06-12 16:51:40 +0000204 Param->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000205
Anders Carlsson5e300d12009-06-12 16:51:40 +0000206 UnparsedDefaultArgLocs.erase(Param);
Douglas Gregor72b505b2008-12-16 21:30:33 +0000207}
208
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000209/// CheckExtraCXXDefaultArguments - Check for any extra default
210/// arguments in the declarator, which is not a function declaration
211/// or definition and therefore is not permitted to have default
212/// arguments. This routine should be invoked for every declarator
213/// that is not a function declaration or definition.
214void Sema::CheckExtraCXXDefaultArguments(Declarator &D) {
215 // C++ [dcl.fct.default]p3
216 // A default argument expression shall be specified only in the
217 // parameter-declaration-clause of a function declaration or in a
218 // template-parameter (14.1). It shall not be specified for a
219 // parameter pack. If it is specified in a
220 // parameter-declaration-clause, it shall not occur within a
221 // declarator or abstract-declarator of a parameter-declaration.
Chris Lattnerb28317a2009-03-28 19:18:32 +0000222 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i) {
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000223 DeclaratorChunk &chunk = D.getTypeObject(i);
224 if (chunk.Kind == DeclaratorChunk::Function) {
Chris Lattnerb28317a2009-03-28 19:18:32 +0000225 for (unsigned argIdx = 0, e = chunk.Fun.NumArgs; argIdx != e; ++argIdx) {
226 ParmVarDecl *Param =
227 cast<ParmVarDecl>(chunk.Fun.ArgInfo[argIdx].Param.getAs<Decl>());
Douglas Gregor61366e92008-12-24 00:01:03 +0000228 if (Param->hasUnparsedDefaultArg()) {
229 CachedTokens *Toks = chunk.Fun.ArgInfo[argIdx].DefaultArgTokens;
Douglas Gregor72b505b2008-12-16 21:30:33 +0000230 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
231 << SourceRange((*Toks)[1].getLocation(), Toks->back().getLocation());
232 delete Toks;
233 chunk.Fun.ArgInfo[argIdx].DefaultArgTokens = 0;
Douglas Gregor61366e92008-12-24 00:01:03 +0000234 } else if (Param->getDefaultArg()) {
235 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
236 << Param->getDefaultArg()->getSourceRange();
237 Param->setDefaultArg(0);
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000238 }
239 }
240 }
241 }
242}
243
Chris Lattner3d1cee32008-04-08 05:04:30 +0000244// MergeCXXFunctionDecl - Merge two declarations of the same C++
245// function, once we already know that they have the same
Douglas Gregorcda9c672009-02-16 17:45:42 +0000246// type. Subroutine of MergeFunctionDecl. Returns true if there was an
247// error, false otherwise.
248bool Sema::MergeCXXFunctionDecl(FunctionDecl *New, FunctionDecl *Old) {
249 bool Invalid = false;
250
Chris Lattner3d1cee32008-04-08 05:04:30 +0000251 // C++ [dcl.fct.default]p4:
Chris Lattner3d1cee32008-04-08 05:04:30 +0000252 // For non-template functions, default arguments can be added in
253 // later declarations of a function in the same
254 // scope. Declarations in different scopes have completely
255 // distinct sets of default arguments. That is, declarations in
256 // inner scopes do not acquire default arguments from
257 // declarations in outer scopes, and vice versa. In a given
258 // function declaration, all parameters subsequent to a
259 // parameter with a default argument shall have default
260 // arguments supplied in this or previous declarations. A
261 // default argument shall not be redefined by a later
262 // declaration (not even to the same value).
Douglas Gregor6cc15182009-09-11 18:44:32 +0000263 //
264 // C++ [dcl.fct.default]p6:
265 // Except for member functions of class templates, the default arguments
266 // in a member function definition that appears outside of the class
267 // definition are added to the set of default arguments provided by the
268 // member function declaration in the class definition.
Chris Lattner3d1cee32008-04-08 05:04:30 +0000269 for (unsigned p = 0, NumParams = Old->getNumParams(); p < NumParams; ++p) {
270 ParmVarDecl *OldParam = Old->getParamDecl(p);
271 ParmVarDecl *NewParam = New->getParamDecl(p);
272
Douglas Gregor6cc15182009-09-11 18:44:32 +0000273 if (OldParam->hasDefaultArg() && NewParam->hasDefaultArg()) {
Douglas Gregor4f123ff2010-01-13 00:12:48 +0000274 // FIXME: If we knew where the '=' was, we could easily provide a fix-it
275 // hint here. Alternatively, we could walk the type-source information
276 // for NewParam to find the last source location in the type... but it
277 // isn't worth the effort right now. This is the kind of test case that
278 // is hard to get right:
279
280 // int f(int);
281 // void g(int (*fp)(int) = f);
282 // void g(int (*fp)(int) = &f);
Mike Stump1eb44332009-09-09 15:08:12 +0000283 Diag(NewParam->getLocation(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000284 diag::err_param_default_argument_redefinition)
Douglas Gregor4f123ff2010-01-13 00:12:48 +0000285 << NewParam->getDefaultArgRange();
Douglas Gregor6cc15182009-09-11 18:44:32 +0000286
287 // Look for the function declaration where the default argument was
288 // actually written, which may be a declaration prior to Old.
289 for (FunctionDecl *Older = Old->getPreviousDeclaration();
290 Older; Older = Older->getPreviousDeclaration()) {
291 if (!Older->getParamDecl(p)->hasDefaultArg())
292 break;
293
294 OldParam = Older->getParamDecl(p);
295 }
296
297 Diag(OldParam->getLocation(), diag::note_previous_definition)
298 << OldParam->getDefaultArgRange();
Douglas Gregorcda9c672009-02-16 17:45:42 +0000299 Invalid = true;
Douglas Gregord85cef52009-09-17 19:51:30 +0000300 } else if (OldParam->hasDefaultArg()) {
John McCall3d6c1782010-05-04 01:53:42 +0000301 // Merge the old default argument into the new parameter.
302 // It's important to use getInit() here; getDefaultArg()
303 // strips off any top-level CXXExprWithTemporaries.
John McCallbf73b352010-03-12 18:31:32 +0000304 NewParam->setHasInheritedDefaultArg();
Douglas Gregord85cef52009-09-17 19:51:30 +0000305 if (OldParam->hasUninstantiatedDefaultArg())
306 NewParam->setUninstantiatedDefaultArg(
307 OldParam->getUninstantiatedDefaultArg());
308 else
John McCall3d6c1782010-05-04 01:53:42 +0000309 NewParam->setDefaultArg(OldParam->getInit());
Douglas Gregor6cc15182009-09-11 18:44:32 +0000310 } else if (NewParam->hasDefaultArg()) {
311 if (New->getDescribedFunctionTemplate()) {
312 // Paragraph 4, quoted above, only applies to non-template functions.
313 Diag(NewParam->getLocation(),
314 diag::err_param_default_argument_template_redecl)
315 << NewParam->getDefaultArgRange();
316 Diag(Old->getLocation(), diag::note_template_prev_declaration)
317 << false;
Douglas Gregor096ebfd2009-10-13 17:02:54 +0000318 } else if (New->getTemplateSpecializationKind()
319 != TSK_ImplicitInstantiation &&
320 New->getTemplateSpecializationKind() != TSK_Undeclared) {
321 // C++ [temp.expr.spec]p21:
322 // Default function arguments shall not be specified in a declaration
323 // or a definition for one of the following explicit specializations:
324 // - the explicit specialization of a function template;
Douglas Gregor8c638ab2009-10-13 23:52:38 +0000325 // - the explicit specialization of a member function template;
326 // - the explicit specialization of a member function of a class
Douglas Gregor096ebfd2009-10-13 17:02:54 +0000327 // template where the class template specialization to which the
328 // member function specialization belongs is implicitly
329 // instantiated.
330 Diag(NewParam->getLocation(), diag::err_template_spec_default_arg)
331 << (New->getTemplateSpecializationKind() ==TSK_ExplicitSpecialization)
332 << New->getDeclName()
333 << NewParam->getDefaultArgRange();
Douglas Gregor6cc15182009-09-11 18:44:32 +0000334 } else if (New->getDeclContext()->isDependentContext()) {
335 // C++ [dcl.fct.default]p6 (DR217):
336 // Default arguments for a member function of a class template shall
337 // be specified on the initial declaration of the member function
338 // within the class template.
339 //
340 // Reading the tea leaves a bit in DR217 and its reference to DR205
341 // leads me to the conclusion that one cannot add default function
342 // arguments for an out-of-line definition of a member function of a
343 // dependent type.
344 int WhichKind = 2;
345 if (CXXRecordDecl *Record
346 = dyn_cast<CXXRecordDecl>(New->getDeclContext())) {
347 if (Record->getDescribedClassTemplate())
348 WhichKind = 0;
349 else if (isa<ClassTemplatePartialSpecializationDecl>(Record))
350 WhichKind = 1;
351 else
352 WhichKind = 2;
353 }
354
355 Diag(NewParam->getLocation(),
356 diag::err_param_default_argument_member_template_redecl)
357 << WhichKind
358 << NewParam->getDefaultArgRange();
359 }
Chris Lattner3d1cee32008-04-08 05:04:30 +0000360 }
361 }
362
Douglas Gregore13ad832010-02-12 07:32:17 +0000363 if (CheckEquivalentExceptionSpec(Old, New))
Sebastian Redl4994d2d2009-07-04 11:39:00 +0000364 Invalid = true;
Sebastian Redl4994d2d2009-07-04 11:39:00 +0000365
Douglas Gregorcda9c672009-02-16 17:45:42 +0000366 return Invalid;
Chris Lattner3d1cee32008-04-08 05:04:30 +0000367}
368
369/// CheckCXXDefaultArguments - Verify that the default arguments for a
370/// function declaration are well-formed according to C++
371/// [dcl.fct.default].
372void Sema::CheckCXXDefaultArguments(FunctionDecl *FD) {
373 unsigned NumParams = FD->getNumParams();
374 unsigned p;
375
376 // Find first parameter with a default argument
377 for (p = 0; p < NumParams; ++p) {
378 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson5f49a0c2009-08-25 01:23:32 +0000379 if (Param->hasDefaultArg())
Chris Lattner3d1cee32008-04-08 05:04:30 +0000380 break;
381 }
382
383 // C++ [dcl.fct.default]p4:
384 // In a given function declaration, all parameters
385 // subsequent to a parameter with a default argument shall
386 // have default arguments supplied in this or previous
387 // declarations. A default argument shall not be redefined
388 // by a later declaration (not even to the same value).
389 unsigned LastMissingDefaultArg = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000390 for (; p < NumParams; ++p) {
Chris Lattner3d1cee32008-04-08 05:04:30 +0000391 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson5f49a0c2009-08-25 01:23:32 +0000392 if (!Param->hasDefaultArg()) {
Douglas Gregor72b505b2008-12-16 21:30:33 +0000393 if (Param->isInvalidDecl())
394 /* We already complained about this parameter. */;
395 else if (Param->getIdentifier())
Mike Stump1eb44332009-09-09 15:08:12 +0000396 Diag(Param->getLocation(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000397 diag::err_param_default_argument_missing_name)
Chris Lattner43b628c2008-11-19 07:32:16 +0000398 << Param->getIdentifier();
Chris Lattner3d1cee32008-04-08 05:04:30 +0000399 else
Mike Stump1eb44332009-09-09 15:08:12 +0000400 Diag(Param->getLocation(),
Chris Lattner3d1cee32008-04-08 05:04:30 +0000401 diag::err_param_default_argument_missing);
Mike Stump1eb44332009-09-09 15:08:12 +0000402
Chris Lattner3d1cee32008-04-08 05:04:30 +0000403 LastMissingDefaultArg = p;
404 }
405 }
406
407 if (LastMissingDefaultArg > 0) {
408 // Some default arguments were missing. Clear out all of the
409 // default arguments up to (and including) the last missing
410 // default argument, so that we leave the function parameters
411 // in a semantically valid state.
412 for (p = 0; p <= LastMissingDefaultArg; ++p) {
413 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson5e300d12009-06-12 16:51:40 +0000414 if (Param->hasDefaultArg()) {
Chris Lattner3d1cee32008-04-08 05:04:30 +0000415 Param->setDefaultArg(0);
416 }
417 }
418 }
419}
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000420
Douglas Gregorb48fe382008-10-31 09:07:45 +0000421/// isCurrentClassName - Determine whether the identifier II is the
422/// name of the class type currently being defined. In the case of
423/// nested classes, this will only return true if II is the name of
424/// the innermost class.
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000425bool Sema::isCurrentClassName(const IdentifierInfo &II, Scope *,
426 const CXXScopeSpec *SS) {
Douglas Gregorb862b8f2010-01-11 23:29:10 +0000427 assert(getLangOptions().CPlusPlus && "No class names in C!");
428
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +0000429 CXXRecordDecl *CurDecl;
Douglas Gregore4e5b052009-03-19 00:18:19 +0000430 if (SS && SS->isSet() && !SS->isInvalid()) {
Douglas Gregorac373c42009-08-21 22:16:40 +0000431 DeclContext *DC = computeDeclContext(*SS, true);
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +0000432 CurDecl = dyn_cast_or_null<CXXRecordDecl>(DC);
433 } else
434 CurDecl = dyn_cast_or_null<CXXRecordDecl>(CurContext);
435
Douglas Gregor6f7a17b2010-02-05 06:12:42 +0000436 if (CurDecl && CurDecl->getIdentifier())
Douglas Gregorb48fe382008-10-31 09:07:45 +0000437 return &II == CurDecl->getIdentifier();
438 else
439 return false;
440}
441
Mike Stump1eb44332009-09-09 15:08:12 +0000442/// \brief Check the validity of a C++ base class specifier.
Douglas Gregor2943aed2009-03-03 04:44:36 +0000443///
444/// \returns a new CXXBaseSpecifier if well-formed, emits diagnostics
445/// and returns NULL otherwise.
446CXXBaseSpecifier *
447Sema::CheckBaseSpecifier(CXXRecordDecl *Class,
448 SourceRange SpecifierRange,
449 bool Virtual, AccessSpecifier Access,
Nick Lewycky56062202010-07-26 16:56:01 +0000450 TypeSourceInfo *TInfo) {
451 QualType BaseType = TInfo->getType();
452
Douglas Gregor2943aed2009-03-03 04:44:36 +0000453 // C++ [class.union]p1:
454 // A union shall not have base classes.
455 if (Class->isUnion()) {
456 Diag(Class->getLocation(), diag::err_base_clause_on_union)
457 << SpecifierRange;
458 return 0;
459 }
460
461 if (BaseType->isDependentType())
Mike Stump1eb44332009-09-09 15:08:12 +0000462 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
Nick Lewycky56062202010-07-26 16:56:01 +0000463 Class->getTagKind() == TTK_Class,
464 Access, TInfo);
465
466 SourceLocation BaseLoc = TInfo->getTypeLoc().getBeginLoc();
Douglas Gregor2943aed2009-03-03 04:44:36 +0000467
468 // Base specifiers must be record types.
469 if (!BaseType->isRecordType()) {
470 Diag(BaseLoc, diag::err_base_must_be_class) << SpecifierRange;
471 return 0;
472 }
473
474 // C++ [class.union]p1:
475 // A union shall not be used as a base class.
476 if (BaseType->isUnionType()) {
477 Diag(BaseLoc, diag::err_union_as_base_class) << SpecifierRange;
478 return 0;
479 }
480
481 // C++ [class.derived]p2:
482 // The class-name in a base-specifier shall not be an incompletely
483 // defined class.
Mike Stump1eb44332009-09-09 15:08:12 +0000484 if (RequireCompleteType(BaseLoc, BaseType,
Anders Carlssonb7906612009-08-26 23:45:07 +0000485 PDiag(diag::err_incomplete_base_class)
486 << SpecifierRange))
Douglas Gregor2943aed2009-03-03 04:44:36 +0000487 return 0;
488
Eli Friedman1d954f62009-08-15 21:55:26 +0000489 // If the base class is polymorphic or isn't empty, the new one is/isn't, too.
Ted Kremenek6217b802009-07-29 21:53:49 +0000490 RecordDecl *BaseDecl = BaseType->getAs<RecordType>()->getDecl();
Douglas Gregor2943aed2009-03-03 04:44:36 +0000491 assert(BaseDecl && "Record type has no declaration");
Douglas Gregor952b0172010-02-11 01:04:33 +0000492 BaseDecl = BaseDecl->getDefinition();
Douglas Gregor2943aed2009-03-03 04:44:36 +0000493 assert(BaseDecl && "Base type is not incomplete, but has no definition");
Eli Friedman1d954f62009-08-15 21:55:26 +0000494 CXXRecordDecl * CXXBaseDecl = cast<CXXRecordDecl>(BaseDecl);
495 assert(CXXBaseDecl && "Base type is not a C++ type");
Eli Friedmand0137332009-12-05 23:03:49 +0000496
Sean Huntbbd37c62009-11-21 08:43:09 +0000497 // C++0x CWG Issue #817 indicates that [[final]] classes shouldn't be bases.
498 if (CXXBaseDecl->hasAttr<FinalAttr>()) {
499 Diag(BaseLoc, diag::err_final_base) << BaseType.getAsString();
Douglas Gregor9af2f522009-12-01 16:58:18 +0000500 Diag(CXXBaseDecl->getLocation(), diag::note_previous_decl)
501 << BaseType;
Sean Huntbbd37c62009-11-21 08:43:09 +0000502 return 0;
503 }
Douglas Gregor2943aed2009-03-03 04:44:36 +0000504
Eli Friedmand0137332009-12-05 23:03:49 +0000505 SetClassDeclAttributesFromBase(Class, CXXBaseDecl, Virtual);
Anders Carlsson51f94042009-12-03 17:49:57 +0000506
507 // Create the base specifier.
Anders Carlsson51f94042009-12-03 17:49:57 +0000508 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
Nick Lewycky56062202010-07-26 16:56:01 +0000509 Class->getTagKind() == TTK_Class,
510 Access, TInfo);
Anders Carlsson51f94042009-12-03 17:49:57 +0000511}
512
513void Sema::SetClassDeclAttributesFromBase(CXXRecordDecl *Class,
514 const CXXRecordDecl *BaseClass,
515 bool BaseIsVirtual) {
Eli Friedmand0137332009-12-05 23:03:49 +0000516 // A class with a non-empty base class is not empty.
517 // FIXME: Standard ref?
518 if (!BaseClass->isEmpty())
519 Class->setEmpty(false);
520
521 // C++ [class.virtual]p1:
522 // A class that [...] inherits a virtual function is called a polymorphic
523 // class.
524 if (BaseClass->isPolymorphic())
525 Class->setPolymorphic(true);
Anders Carlsson51f94042009-12-03 17:49:57 +0000526
Douglas Gregor2943aed2009-03-03 04:44:36 +0000527 // C++ [dcl.init.aggr]p1:
528 // An aggregate is [...] a class with [...] no base classes [...].
529 Class->setAggregate(false);
Eli Friedmand0137332009-12-05 23:03:49 +0000530
531 // C++ [class]p4:
532 // A POD-struct is an aggregate class...
Douglas Gregor2943aed2009-03-03 04:44:36 +0000533 Class->setPOD(false);
534
Anders Carlsson51f94042009-12-03 17:49:57 +0000535 if (BaseIsVirtual) {
Anders Carlsson347ba892009-04-16 00:08:20 +0000536 // C++ [class.ctor]p5:
537 // A constructor is trivial if its class has no virtual base classes.
538 Class->setHasTrivialConstructor(false);
Douglas Gregor1f2023a2009-07-22 18:25:24 +0000539
540 // C++ [class.copy]p6:
541 // A copy constructor is trivial if its class has no virtual base classes.
542 Class->setHasTrivialCopyConstructor(false);
543
544 // C++ [class.copy]p11:
545 // A copy assignment operator is trivial if its class has no virtual
546 // base classes.
547 Class->setHasTrivialCopyAssignment(false);
Eli Friedman1d954f62009-08-15 21:55:26 +0000548
549 // C++0x [meta.unary.prop] is_empty:
550 // T is a class type, but not a union type, with ... no virtual base
551 // classes
552 Class->setEmpty(false);
Anders Carlsson347ba892009-04-16 00:08:20 +0000553 } else {
554 // C++ [class.ctor]p5:
Mike Stump1eb44332009-09-09 15:08:12 +0000555 // A constructor is trivial if all the direct base classes of its
Anders Carlsson347ba892009-04-16 00:08:20 +0000556 // class have trivial constructors.
Anders Carlsson51f94042009-12-03 17:49:57 +0000557 if (!BaseClass->hasTrivialConstructor())
Douglas Gregor1f2023a2009-07-22 18:25:24 +0000558 Class->setHasTrivialConstructor(false);
559
560 // C++ [class.copy]p6:
561 // A copy constructor is trivial if all the direct base classes of its
562 // class have trivial copy constructors.
Anders Carlsson51f94042009-12-03 17:49:57 +0000563 if (!BaseClass->hasTrivialCopyConstructor())
Douglas Gregor1f2023a2009-07-22 18:25:24 +0000564 Class->setHasTrivialCopyConstructor(false);
565
566 // C++ [class.copy]p11:
567 // A copy assignment operator is trivial if all the direct base classes
568 // of its class have trivial copy assignment operators.
Anders Carlsson51f94042009-12-03 17:49:57 +0000569 if (!BaseClass->hasTrivialCopyAssignment())
Douglas Gregor1f2023a2009-07-22 18:25:24 +0000570 Class->setHasTrivialCopyAssignment(false);
Anders Carlsson347ba892009-04-16 00:08:20 +0000571 }
Anders Carlsson072abef2009-04-17 02:34:54 +0000572
573 // C++ [class.ctor]p3:
574 // A destructor is trivial if all the direct base classes of its class
575 // have trivial destructors.
Anders Carlsson51f94042009-12-03 17:49:57 +0000576 if (!BaseClass->hasTrivialDestructor())
Douglas Gregor1f2023a2009-07-22 18:25:24 +0000577 Class->setHasTrivialDestructor(false);
Douglas Gregor2943aed2009-03-03 04:44:36 +0000578}
579
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000580/// ActOnBaseSpecifier - Parsed a base specifier. A base specifier is
581/// one entry in the base class list of a class specifier, for
Mike Stump1eb44332009-09-09 15:08:12 +0000582/// example:
583/// class foo : public bar, virtual private baz {
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000584/// 'public bar' and 'virtual private baz' are each base-specifiers.
Mike Stump1eb44332009-09-09 15:08:12 +0000585Sema::BaseResult
Chris Lattnerb28317a2009-03-28 19:18:32 +0000586Sema::ActOnBaseSpecifier(DeclPtrTy classdecl, SourceRange SpecifierRange,
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000587 bool Virtual, AccessSpecifier Access,
588 TypeTy *basetype, SourceLocation BaseLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000589 if (!classdecl)
590 return true;
591
Douglas Gregor40808ce2009-03-09 23:48:35 +0000592 AdjustDeclIfTemplate(classdecl);
Douglas Gregor5fe8c042010-02-27 00:25:28 +0000593 CXXRecordDecl *Class = dyn_cast<CXXRecordDecl>(classdecl.getAs<Decl>());
594 if (!Class)
595 return true;
596
Nick Lewycky56062202010-07-26 16:56:01 +0000597 TypeSourceInfo *TInfo = 0;
598 GetTypeFromParser(basetype, &TInfo);
Douglas Gregor2943aed2009-03-03 04:44:36 +0000599 if (CXXBaseSpecifier *BaseSpec = CheckBaseSpecifier(Class, SpecifierRange,
Nick Lewycky56062202010-07-26 16:56:01 +0000600 Virtual, Access, TInfo))
Douglas Gregor2943aed2009-03-03 04:44:36 +0000601 return BaseSpec;
Mike Stump1eb44332009-09-09 15:08:12 +0000602
Douglas Gregor2943aed2009-03-03 04:44:36 +0000603 return true;
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000604}
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000605
Douglas Gregor2943aed2009-03-03 04:44:36 +0000606/// \brief Performs the actual work of attaching the given base class
607/// specifiers to a C++ class.
608bool Sema::AttachBaseSpecifiers(CXXRecordDecl *Class, CXXBaseSpecifier **Bases,
609 unsigned NumBases) {
610 if (NumBases == 0)
611 return false;
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000612
613 // Used to keep track of which base types we have already seen, so
614 // that we can properly diagnose redundant direct base types. Note
Douglas Gregor57c856b2008-10-23 18:13:27 +0000615 // that the key is always the unqualified canonical type of the base
616 // class.
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000617 std::map<QualType, CXXBaseSpecifier*, QualTypeOrdering> KnownBaseTypes;
618
619 // Copy non-redundant base specifiers into permanent storage.
Douglas Gregor57c856b2008-10-23 18:13:27 +0000620 unsigned NumGoodBases = 0;
Douglas Gregor2943aed2009-03-03 04:44:36 +0000621 bool Invalid = false;
Douglas Gregor57c856b2008-10-23 18:13:27 +0000622 for (unsigned idx = 0; idx < NumBases; ++idx) {
Mike Stump1eb44332009-09-09 15:08:12 +0000623 QualType NewBaseType
Douglas Gregor2943aed2009-03-03 04:44:36 +0000624 = Context.getCanonicalType(Bases[idx]->getType());
Douglas Gregora4923eb2009-11-16 21:35:15 +0000625 NewBaseType = NewBaseType.getLocalUnqualifiedType();
Fariborz Jahanian0ed5c5d2010-05-20 23:34:56 +0000626 if (!Class->hasObjectMember()) {
627 if (const RecordType *FDTTy =
628 NewBaseType.getTypePtr()->getAs<RecordType>())
629 if (FDTTy->getDecl()->hasObjectMember())
630 Class->setHasObjectMember(true);
631 }
632
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000633 if (KnownBaseTypes[NewBaseType]) {
634 // C++ [class.mi]p3:
635 // A class shall not be specified as a direct base class of a
636 // derived class more than once.
Douglas Gregor2943aed2009-03-03 04:44:36 +0000637 Diag(Bases[idx]->getSourceRange().getBegin(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000638 diag::err_duplicate_base_class)
Chris Lattnerd1625842008-11-24 06:25:27 +0000639 << KnownBaseTypes[NewBaseType]->getType()
Douglas Gregor2943aed2009-03-03 04:44:36 +0000640 << Bases[idx]->getSourceRange();
Douglas Gregor57c856b2008-10-23 18:13:27 +0000641
642 // Delete the duplicate base class specifier; we're going to
643 // overwrite its pointer later.
Douglas Gregor2aef06d2009-07-22 20:55:49 +0000644 Context.Deallocate(Bases[idx]);
Douglas Gregor2943aed2009-03-03 04:44:36 +0000645
646 Invalid = true;
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000647 } else {
648 // Okay, add this new base class.
Douglas Gregor2943aed2009-03-03 04:44:36 +0000649 KnownBaseTypes[NewBaseType] = Bases[idx];
650 Bases[NumGoodBases++] = Bases[idx];
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000651 }
652 }
653
654 // Attach the remaining base class specifiers to the derived class.
Douglas Gregor2d5b7032010-02-11 01:30:34 +0000655 Class->setBases(Bases, NumGoodBases);
Douglas Gregor57c856b2008-10-23 18:13:27 +0000656
657 // Delete the remaining (good) base class specifiers, since their
658 // data has been copied into the CXXRecordDecl.
659 for (unsigned idx = 0; idx < NumGoodBases; ++idx)
Douglas Gregor2aef06d2009-07-22 20:55:49 +0000660 Context.Deallocate(Bases[idx]);
Douglas Gregor2943aed2009-03-03 04:44:36 +0000661
662 return Invalid;
663}
664
665/// ActOnBaseSpecifiers - Attach the given base specifiers to the
666/// class, after checking whether there are any duplicate base
667/// classes.
Mike Stump1eb44332009-09-09 15:08:12 +0000668void Sema::ActOnBaseSpecifiers(DeclPtrTy ClassDecl, BaseTy **Bases,
Douglas Gregor2943aed2009-03-03 04:44:36 +0000669 unsigned NumBases) {
670 if (!ClassDecl || !Bases || !NumBases)
671 return;
672
673 AdjustDeclIfTemplate(ClassDecl);
Chris Lattnerb28317a2009-03-28 19:18:32 +0000674 AttachBaseSpecifiers(cast<CXXRecordDecl>(ClassDecl.getAs<Decl>()),
Douglas Gregor2943aed2009-03-03 04:44:36 +0000675 (CXXBaseSpecifier**)(Bases), NumBases);
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000676}
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +0000677
John McCall3cb0ebd2010-03-10 03:28:59 +0000678static CXXRecordDecl *GetClassForType(QualType T) {
679 if (const RecordType *RT = T->getAs<RecordType>())
680 return cast<CXXRecordDecl>(RT->getDecl());
681 else if (const InjectedClassNameType *ICT = T->getAs<InjectedClassNameType>())
682 return ICT->getDecl();
683 else
684 return 0;
685}
686
Douglas Gregora8f32e02009-10-06 17:59:45 +0000687/// \brief Determine whether the type \p Derived is a C++ class that is
688/// derived from the type \p Base.
689bool Sema::IsDerivedFrom(QualType Derived, QualType Base) {
690 if (!getLangOptions().CPlusPlus)
691 return false;
John McCall3cb0ebd2010-03-10 03:28:59 +0000692
693 CXXRecordDecl *DerivedRD = GetClassForType(Derived);
694 if (!DerivedRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +0000695 return false;
696
John McCall3cb0ebd2010-03-10 03:28:59 +0000697 CXXRecordDecl *BaseRD = GetClassForType(Base);
698 if (!BaseRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +0000699 return false;
700
John McCall86ff3082010-02-04 22:26:26 +0000701 // FIXME: instantiate DerivedRD if necessary. We need a PoI for this.
702 return DerivedRD->hasDefinition() && DerivedRD->isDerivedFrom(BaseRD);
Douglas Gregora8f32e02009-10-06 17:59:45 +0000703}
704
705/// \brief Determine whether the type \p Derived is a C++ class that is
706/// derived from the type \p Base.
707bool Sema::IsDerivedFrom(QualType Derived, QualType Base, CXXBasePaths &Paths) {
708 if (!getLangOptions().CPlusPlus)
709 return false;
710
John McCall3cb0ebd2010-03-10 03:28:59 +0000711 CXXRecordDecl *DerivedRD = GetClassForType(Derived);
712 if (!DerivedRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +0000713 return false;
714
John McCall3cb0ebd2010-03-10 03:28:59 +0000715 CXXRecordDecl *BaseRD = GetClassForType(Base);
716 if (!BaseRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +0000717 return false;
718
Douglas Gregora8f32e02009-10-06 17:59:45 +0000719 return DerivedRD->isDerivedFrom(BaseRD, Paths);
720}
721
Anders Carlsson5cf86ba2010-04-24 19:06:50 +0000722void Sema::BuildBasePathArray(const CXXBasePaths &Paths,
723 CXXBaseSpecifierArray &BasePathArray) {
724 assert(BasePathArray.empty() && "Base path array must be empty!");
725 assert(Paths.isRecordingPaths() && "Must record paths!");
726
727 const CXXBasePath &Path = Paths.front();
728
729 // We first go backward and check if we have a virtual base.
730 // FIXME: It would be better if CXXBasePath had the base specifier for
731 // the nearest virtual base.
732 unsigned Start = 0;
733 for (unsigned I = Path.size(); I != 0; --I) {
734 if (Path[I - 1].Base->isVirtual()) {
735 Start = I - 1;
736 break;
737 }
738 }
739
740 // Now add all bases.
741 for (unsigned I = Start, E = Path.size(); I != E; ++I)
742 BasePathArray.push_back(Path[I].Base);
743}
744
Douglas Gregor6fb745b2010-05-13 16:44:06 +0000745/// \brief Determine whether the given base path includes a virtual
746/// base class.
747bool Sema::BasePathInvolvesVirtualBase(const CXXBaseSpecifierArray &BasePath) {
748 for (CXXBaseSpecifierArray::iterator B = BasePath.begin(),
749 BEnd = BasePath.end();
750 B != BEnd; ++B)
751 if ((*B)->isVirtual())
752 return true;
753
754 return false;
755}
756
Douglas Gregora8f32e02009-10-06 17:59:45 +0000757/// CheckDerivedToBaseConversion - Check whether the Derived-to-Base
758/// conversion (where Derived and Base are class types) is
759/// well-formed, meaning that the conversion is unambiguous (and
760/// that all of the base classes are accessible). Returns true
761/// and emits a diagnostic if the code is ill-formed, returns false
762/// otherwise. Loc is the location where this routine should point to
763/// if there is an error, and Range is the source range to highlight
764/// if there is an error.
765bool
766Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
John McCall58e6f342010-03-16 05:22:47 +0000767 unsigned InaccessibleBaseID,
Douglas Gregora8f32e02009-10-06 17:59:45 +0000768 unsigned AmbigiousBaseConvID,
769 SourceLocation Loc, SourceRange Range,
Anders Carlssone25a96c2010-04-24 17:11:09 +0000770 DeclarationName Name,
771 CXXBaseSpecifierArray *BasePath) {
Douglas Gregora8f32e02009-10-06 17:59:45 +0000772 // First, determine whether the path from Derived to Base is
773 // ambiguous. This is slightly more expensive than checking whether
774 // the Derived to Base conversion exists, because here we need to
775 // explore multiple paths to determine if there is an ambiguity.
776 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
777 /*DetectVirtual=*/false);
778 bool DerivationOkay = IsDerivedFrom(Derived, Base, Paths);
779 assert(DerivationOkay &&
780 "Can only be used with a derived-to-base conversion");
781 (void)DerivationOkay;
782
783 if (!Paths.isAmbiguous(Context.getCanonicalType(Base).getUnqualifiedType())) {
Anders Carlsson5cf86ba2010-04-24 19:06:50 +0000784 if (InaccessibleBaseID) {
785 // Check that the base class can be accessed.
786 switch (CheckBaseClassAccess(Loc, Base, Derived, Paths.front(),
787 InaccessibleBaseID)) {
788 case AR_inaccessible:
789 return true;
790 case AR_accessible:
791 case AR_dependent:
792 case AR_delayed:
793 break;
Anders Carlssone25a96c2010-04-24 17:11:09 +0000794 }
John McCall6b2accb2010-02-10 09:31:12 +0000795 }
Anders Carlsson5cf86ba2010-04-24 19:06:50 +0000796
797 // Build a base path if necessary.
798 if (BasePath)
799 BuildBasePathArray(Paths, *BasePath);
800 return false;
Douglas Gregora8f32e02009-10-06 17:59:45 +0000801 }
802
803 // We know that the derived-to-base conversion is ambiguous, and
804 // we're going to produce a diagnostic. Perform the derived-to-base
805 // search just one more time to compute all of the possible paths so
806 // that we can print them out. This is more expensive than any of
807 // the previous derived-to-base checks we've done, but at this point
808 // performance isn't as much of an issue.
809 Paths.clear();
810 Paths.setRecordingPaths(true);
811 bool StillOkay = IsDerivedFrom(Derived, Base, Paths);
812 assert(StillOkay && "Can only be used with a derived-to-base conversion");
813 (void)StillOkay;
814
815 // Build up a textual representation of the ambiguous paths, e.g.,
816 // D -> B -> A, that will be used to illustrate the ambiguous
817 // conversions in the diagnostic. We only print one of the paths
818 // to each base class subobject.
819 std::string PathDisplayStr = getAmbiguousPathsDisplayString(Paths);
820
821 Diag(Loc, AmbigiousBaseConvID)
822 << Derived << Base << PathDisplayStr << Range << Name;
823 return true;
824}
825
826bool
827Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
Sebastian Redla82e4ae2009-11-14 21:15:49 +0000828 SourceLocation Loc, SourceRange Range,
Anders Carlssone25a96c2010-04-24 17:11:09 +0000829 CXXBaseSpecifierArray *BasePath,
Sebastian Redla82e4ae2009-11-14 21:15:49 +0000830 bool IgnoreAccess) {
Douglas Gregora8f32e02009-10-06 17:59:45 +0000831 return CheckDerivedToBaseConversion(Derived, Base,
John McCall58e6f342010-03-16 05:22:47 +0000832 IgnoreAccess ? 0
833 : diag::err_upcast_to_inaccessible_base,
Douglas Gregora8f32e02009-10-06 17:59:45 +0000834 diag::err_ambiguous_derived_to_base_conv,
Anders Carlssone25a96c2010-04-24 17:11:09 +0000835 Loc, Range, DeclarationName(),
836 BasePath);
Douglas Gregora8f32e02009-10-06 17:59:45 +0000837}
838
839
840/// @brief Builds a string representing ambiguous paths from a
841/// specific derived class to different subobjects of the same base
842/// class.
843///
844/// This function builds a string that can be used in error messages
845/// to show the different paths that one can take through the
846/// inheritance hierarchy to go from the derived class to different
847/// subobjects of a base class. The result looks something like this:
848/// @code
849/// struct D -> struct B -> struct A
850/// struct D -> struct C -> struct A
851/// @endcode
852std::string Sema::getAmbiguousPathsDisplayString(CXXBasePaths &Paths) {
853 std::string PathDisplayStr;
854 std::set<unsigned> DisplayedPaths;
855 for (CXXBasePaths::paths_iterator Path = Paths.begin();
856 Path != Paths.end(); ++Path) {
857 if (DisplayedPaths.insert(Path->back().SubobjectNumber).second) {
858 // We haven't displayed a path to this particular base
859 // class subobject yet.
860 PathDisplayStr += "\n ";
861 PathDisplayStr += Context.getTypeDeclType(Paths.getOrigin()).getAsString();
862 for (CXXBasePath::const_iterator Element = Path->begin();
863 Element != Path->end(); ++Element)
864 PathDisplayStr += " -> " + Element->Base->getType().getAsString();
865 }
866 }
867
868 return PathDisplayStr;
869}
870
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000871//===----------------------------------------------------------------------===//
872// C++ class member Handling
873//===----------------------------------------------------------------------===//
874
Abramo Bagnara6206d532010-06-05 05:09:32 +0000875/// ActOnAccessSpecifier - Parsed an access specifier followed by a colon.
876Sema::DeclPtrTy
877Sema::ActOnAccessSpecifier(AccessSpecifier Access,
878 SourceLocation ASLoc, SourceLocation ColonLoc) {
879 assert(Access != AS_none && "Invalid kind for syntactic access specifier!");
880 AccessSpecDecl* ASDecl = AccessSpecDecl::Create(Context, Access, CurContext,
881 ASLoc, ColonLoc);
882 CurContext->addHiddenDecl(ASDecl);
883 return DeclPtrTy::make(ASDecl);
884}
885
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000886/// ActOnCXXMemberDeclarator - This is invoked when a C++ class member
887/// declarator is parsed. 'AS' is the access specifier, 'BW' specifies the
888/// bitfield width if there is one and 'InitExpr' specifies the initializer if
Chris Lattnerb6688e02009-04-12 22:37:57 +0000889/// any.
Chris Lattnerb28317a2009-03-28 19:18:32 +0000890Sema::DeclPtrTy
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000891Sema::ActOnCXXMemberDeclarator(Scope *S, AccessSpecifier AS, Declarator &D,
Douglas Gregor37b372b2009-08-20 22:52:58 +0000892 MultiTemplateParamsArg TemplateParameterLists,
Sebastian Redld1a78462009-11-24 23:38:44 +0000893 ExprTy *BW, ExprTy *InitExpr, bool IsDefinition,
894 bool Deleted) {
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000895 const DeclSpec &DS = D.getDeclSpec();
Douglas Gregor10bd3682008-11-17 22:58:34 +0000896 DeclarationName Name = GetNameForDeclarator(D);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000897 Expr *BitWidth = static_cast<Expr*>(BW);
898 Expr *Init = static_cast<Expr*>(InitExpr);
899 SourceLocation Loc = D.getIdentifierLoc();
900
John McCall4bde1e12010-06-04 08:34:12 +0000901 assert(isa<CXXRecordDecl>(CurContext));
John McCall67d1a672009-08-06 02:15:43 +0000902 assert(!DS.isFriendSpecified());
903
John McCall4bde1e12010-06-04 08:34:12 +0000904 bool isFunc = false;
905 if (D.isFunctionDeclarator())
906 isFunc = true;
907 else if (D.getNumTypeObjects() == 0 &&
908 D.getDeclSpec().getTypeSpecType() == DeclSpec::TST_typename) {
909 QualType TDType = GetTypeFromParser(DS.getTypeRep());
910 isFunc = TDType->isFunctionType();
911 }
912
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000913 // C++ 9.2p6: A member shall not be declared to have automatic storage
914 // duration (auto, register) or with the extern storage-class-specifier.
Sebastian Redl669d5d72008-11-14 23:42:31 +0000915 // C++ 7.1.1p8: The mutable specifier can be applied only to names of class
916 // data members and cannot be applied to names declared const or static,
917 // and cannot be applied to reference members.
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000918 switch (DS.getStorageClassSpec()) {
919 case DeclSpec::SCS_unspecified:
920 case DeclSpec::SCS_typedef:
921 case DeclSpec::SCS_static:
922 // FALL THROUGH.
923 break;
Sebastian Redl669d5d72008-11-14 23:42:31 +0000924 case DeclSpec::SCS_mutable:
925 if (isFunc) {
926 if (DS.getStorageClassSpecLoc().isValid())
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000927 Diag(DS.getStorageClassSpecLoc(), diag::err_mutable_function);
Sebastian Redl669d5d72008-11-14 23:42:31 +0000928 else
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000929 Diag(DS.getThreadSpecLoc(), diag::err_mutable_function);
Mike Stump1eb44332009-09-09 15:08:12 +0000930
Sebastian Redla11f42f2008-11-17 23:24:37 +0000931 // FIXME: It would be nicer if the keyword was ignored only for this
932 // declarator. Otherwise we could get follow-up errors.
Sebastian Redl669d5d72008-11-14 23:42:31 +0000933 D.getMutableDeclSpec().ClearStorageClassSpecs();
Sebastian Redl669d5d72008-11-14 23:42:31 +0000934 }
935 break;
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000936 default:
937 if (DS.getStorageClassSpecLoc().isValid())
938 Diag(DS.getStorageClassSpecLoc(),
939 diag::err_storageclass_invalid_for_member);
940 else
941 Diag(DS.getThreadSpecLoc(), diag::err_storageclass_invalid_for_member);
942 D.getMutableDeclSpec().ClearStorageClassSpecs();
943 }
944
Sebastian Redl669d5d72008-11-14 23:42:31 +0000945 bool isInstField = ((DS.getStorageClassSpec() == DeclSpec::SCS_unspecified ||
946 DS.getStorageClassSpec() == DeclSpec::SCS_mutable) &&
Argyrios Kyrtzidisde933f02008-10-08 22:20:31 +0000947 !isFunc);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000948
949 Decl *Member;
Chris Lattner24793662009-03-05 22:45:59 +0000950 if (isInstField) {
Douglas Gregor37b372b2009-08-20 22:52:58 +0000951 // FIXME: Check for template parameters!
Douglas Gregor4dd55f52009-03-11 20:50:30 +0000952 Member = HandleField(S, cast<CXXRecordDecl>(CurContext), Loc, D, BitWidth,
953 AS);
Chris Lattner6f8ce142009-03-05 23:03:49 +0000954 assert(Member && "HandleField never returns null");
Chris Lattner24793662009-03-05 22:45:59 +0000955 } else {
Sebastian Redld1a78462009-11-24 23:38:44 +0000956 Member = HandleDeclarator(S, D, move(TemplateParameterLists), IsDefinition)
Douglas Gregor37b372b2009-08-20 22:52:58 +0000957 .getAs<Decl>();
Chris Lattner6f8ce142009-03-05 23:03:49 +0000958 if (!Member) {
959 if (BitWidth) DeleteExpr(BitWidth);
Chris Lattner682bf922009-03-29 16:50:03 +0000960 return DeclPtrTy();
Chris Lattner6f8ce142009-03-05 23:03:49 +0000961 }
Chris Lattner8b963ef2009-03-05 23:01:03 +0000962
963 // Non-instance-fields can't have a bitfield.
964 if (BitWidth) {
965 if (Member->isInvalidDecl()) {
966 // don't emit another diagnostic.
Douglas Gregor2d2e9cf2009-03-11 20:22:50 +0000967 } else if (isa<VarDecl>(Member)) {
Chris Lattner8b963ef2009-03-05 23:01:03 +0000968 // C++ 9.6p3: A bit-field shall not be a static member.
969 // "static member 'A' cannot be a bit-field"
970 Diag(Loc, diag::err_static_not_bitfield)
971 << Name << BitWidth->getSourceRange();
972 } else if (isa<TypedefDecl>(Member)) {
973 // "typedef member 'x' cannot be a bit-field"
974 Diag(Loc, diag::err_typedef_not_bitfield)
975 << Name << BitWidth->getSourceRange();
976 } else {
977 // A function typedef ("typedef int f(); f a;").
978 // C++ 9.6p3: A bit-field shall have integral or enumeration type.
979 Diag(Loc, diag::err_not_integral_type_bitfield)
Mike Stump1eb44332009-09-09 15:08:12 +0000980 << Name << cast<ValueDecl>(Member)->getType()
Douglas Gregor3cf538d2009-03-11 18:59:21 +0000981 << BitWidth->getSourceRange();
Chris Lattner8b963ef2009-03-05 23:01:03 +0000982 }
Mike Stump1eb44332009-09-09 15:08:12 +0000983
Chris Lattner8b963ef2009-03-05 23:01:03 +0000984 DeleteExpr(BitWidth);
985 BitWidth = 0;
986 Member->setInvalidDecl();
987 }
Douglas Gregor4dd55f52009-03-11 20:50:30 +0000988
989 Member->setAccess(AS);
Mike Stump1eb44332009-09-09 15:08:12 +0000990
Douglas Gregor37b372b2009-08-20 22:52:58 +0000991 // If we have declared a member function template, set the access of the
992 // templated declaration as well.
993 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Member))
994 FunTmpl->getTemplatedDecl()->setAccess(AS);
Chris Lattner24793662009-03-05 22:45:59 +0000995 }
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000996
Douglas Gregor10bd3682008-11-17 22:58:34 +0000997 assert((Name || isInstField) && "No identifier for non-field ?");
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000998
Douglas Gregor021c3b32009-03-11 23:00:04 +0000999 if (Init)
Chris Lattnerb28317a2009-03-28 19:18:32 +00001000 AddInitializerToDecl(DeclPtrTy::make(Member), ExprArg(*this, Init), false);
Sebastian Redle2b68332009-04-12 17:16:29 +00001001 if (Deleted) // FIXME: Source location is not very good.
1002 SetDeclDeleted(DeclPtrTy::make(Member), D.getSourceRange().getBegin());
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001003
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001004 if (isInstField) {
Douglas Gregor44b43212008-12-11 16:49:14 +00001005 FieldCollector->Add(cast<FieldDecl>(Member));
Chris Lattner682bf922009-03-29 16:50:03 +00001006 return DeclPtrTy();
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001007 }
Chris Lattnerb28317a2009-03-28 19:18:32 +00001008 return DeclPtrTy::make(Member);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001009}
1010
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001011/// \brief Find the direct and/or virtual base specifiers that
1012/// correspond to the given base type, for use in base initialization
1013/// within a constructor.
1014static bool FindBaseInitializer(Sema &SemaRef,
1015 CXXRecordDecl *ClassDecl,
1016 QualType BaseType,
1017 const CXXBaseSpecifier *&DirectBaseSpec,
1018 const CXXBaseSpecifier *&VirtualBaseSpec) {
1019 // First, check for a direct base class.
1020 DirectBaseSpec = 0;
1021 for (CXXRecordDecl::base_class_const_iterator Base
1022 = ClassDecl->bases_begin();
1023 Base != ClassDecl->bases_end(); ++Base) {
1024 if (SemaRef.Context.hasSameUnqualifiedType(BaseType, Base->getType())) {
1025 // We found a direct base of this type. That's what we're
1026 // initializing.
1027 DirectBaseSpec = &*Base;
1028 break;
1029 }
1030 }
1031
1032 // Check for a virtual base class.
1033 // FIXME: We might be able to short-circuit this if we know in advance that
1034 // there are no virtual bases.
1035 VirtualBaseSpec = 0;
1036 if (!DirectBaseSpec || !DirectBaseSpec->isVirtual()) {
1037 // We haven't found a base yet; search the class hierarchy for a
1038 // virtual base class.
1039 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
1040 /*DetectVirtual=*/false);
1041 if (SemaRef.IsDerivedFrom(SemaRef.Context.getTypeDeclType(ClassDecl),
1042 BaseType, Paths)) {
1043 for (CXXBasePaths::paths_iterator Path = Paths.begin();
1044 Path != Paths.end(); ++Path) {
1045 if (Path->back().Base->isVirtual()) {
1046 VirtualBaseSpec = Path->back().Base;
1047 break;
1048 }
1049 }
1050 }
1051 }
1052
1053 return DirectBaseSpec || VirtualBaseSpec;
1054}
1055
Douglas Gregor7ad83902008-11-05 04:29:56 +00001056/// ActOnMemInitializer - Handle a C++ member initializer.
Mike Stump1eb44332009-09-09 15:08:12 +00001057Sema::MemInitResult
Chris Lattnerb28317a2009-03-28 19:18:32 +00001058Sema::ActOnMemInitializer(DeclPtrTy ConstructorD,
Douglas Gregor7ad83902008-11-05 04:29:56 +00001059 Scope *S,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00001060 CXXScopeSpec &SS,
Douglas Gregor7ad83902008-11-05 04:29:56 +00001061 IdentifierInfo *MemberOrBase,
Fariborz Jahanian96174332009-07-01 19:21:19 +00001062 TypeTy *TemplateTypeTy,
Douglas Gregor7ad83902008-11-05 04:29:56 +00001063 SourceLocation IdLoc,
1064 SourceLocation LParenLoc,
1065 ExprTy **Args, unsigned NumArgs,
1066 SourceLocation *CommaLocs,
1067 SourceLocation RParenLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00001068 if (!ConstructorD)
1069 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001070
Douglas Gregorefd5bda2009-08-24 11:57:43 +00001071 AdjustDeclIfTemplate(ConstructorD);
Mike Stump1eb44332009-09-09 15:08:12 +00001072
1073 CXXConstructorDecl *Constructor
Chris Lattnerb28317a2009-03-28 19:18:32 +00001074 = dyn_cast<CXXConstructorDecl>(ConstructorD.getAs<Decl>());
Douglas Gregor7ad83902008-11-05 04:29:56 +00001075 if (!Constructor) {
1076 // The user wrote a constructor initializer on a function that is
1077 // not a C++ constructor. Ignore the error for now, because we may
1078 // have more member initializers coming; we'll diagnose it just
1079 // once in ActOnMemInitializers.
1080 return true;
1081 }
1082
1083 CXXRecordDecl *ClassDecl = Constructor->getParent();
1084
1085 // C++ [class.base.init]p2:
1086 // Names in a mem-initializer-id are looked up in the scope of the
1087 // constructor’s class and, if not found in that scope, are looked
1088 // up in the scope containing the constructor’s
1089 // definition. [Note: if the constructor’s class contains a member
1090 // with the same name as a direct or virtual base class of the
1091 // class, a mem-initializer-id naming the member or base class and
1092 // composed of a single identifier refers to the class member. A
1093 // mem-initializer-id for the hidden base class may be specified
1094 // using a qualified name. ]
Fariborz Jahanian96174332009-07-01 19:21:19 +00001095 if (!SS.getScopeRep() && !TemplateTypeTy) {
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00001096 // Look for a member, first.
1097 FieldDecl *Member = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001098 DeclContext::lookup_result Result
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00001099 = ClassDecl->lookup(MemberOrBase);
1100 if (Result.first != Result.second)
1101 Member = dyn_cast<FieldDecl>(*Result.first);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001102
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00001103 // FIXME: Handle members of an anonymous union.
Douglas Gregor7ad83902008-11-05 04:29:56 +00001104
Eli Friedman59c04372009-07-29 19:44:27 +00001105 if (Member)
1106 return BuildMemberInitializer(Member, (Expr**)Args, NumArgs, IdLoc,
Douglas Gregor802ab452009-12-02 22:36:29 +00001107 LParenLoc, RParenLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001108 }
Douglas Gregor7ad83902008-11-05 04:29:56 +00001109 // It didn't name a member, so see if it names a class.
Douglas Gregor802ab452009-12-02 22:36:29 +00001110 QualType BaseType;
John McCalla93c9342009-12-07 02:54:59 +00001111 TypeSourceInfo *TInfo = 0;
John McCall2b194412009-12-21 10:41:20 +00001112
1113 if (TemplateTypeTy) {
John McCalla93c9342009-12-07 02:54:59 +00001114 BaseType = GetTypeFromParser(TemplateTypeTy, &TInfo);
John McCall2b194412009-12-21 10:41:20 +00001115 } else {
1116 LookupResult R(*this, MemberOrBase, IdLoc, LookupOrdinaryName);
1117 LookupParsedName(R, S, &SS);
1118
1119 TypeDecl *TyD = R.getAsSingle<TypeDecl>();
1120 if (!TyD) {
1121 if (R.isAmbiguous()) return true;
1122
John McCallfd225442010-04-09 19:01:14 +00001123 // We don't want access-control diagnostics here.
1124 R.suppressDiagnostics();
1125
Douglas Gregor7a886e12010-01-19 06:46:48 +00001126 if (SS.isSet() && isDependentScopeSpecifier(SS)) {
1127 bool NotUnknownSpecialization = false;
1128 DeclContext *DC = computeDeclContext(SS, false);
1129 if (CXXRecordDecl *Record = dyn_cast_or_null<CXXRecordDecl>(DC))
1130 NotUnknownSpecialization = !Record->hasAnyDependentBases();
1131
1132 if (!NotUnknownSpecialization) {
1133 // When the scope specifier can refer to a member of an unknown
1134 // specialization, we take it as a type name.
Douglas Gregor107de902010-04-24 15:35:55 +00001135 BaseType = CheckTypenameType(ETK_None,
1136 (NestedNameSpecifier *)SS.getScopeRep(),
Abramo Bagnarae4da7a02010-05-19 21:37:53 +00001137 *MemberOrBase, SourceLocation(),
1138 SS.getRange(), IdLoc);
Douglas Gregora50ce322010-03-07 23:26:22 +00001139 if (BaseType.isNull())
1140 return true;
1141
Douglas Gregor7a886e12010-01-19 06:46:48 +00001142 R.clear();
Douglas Gregor12eb5d62010-06-29 19:27:42 +00001143 R.setLookupName(MemberOrBase);
Douglas Gregor7a886e12010-01-19 06:46:48 +00001144 }
1145 }
1146
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001147 // If no results were found, try to correct typos.
Douglas Gregor7a886e12010-01-19 06:46:48 +00001148 if (R.empty() && BaseType.isNull() &&
Douglas Gregoraaf87162010-04-14 20:04:41 +00001149 CorrectTypo(R, S, &SS, ClassDecl, 0, CTC_NoKeywords) &&
1150 R.isSingleResult()) {
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001151 if (FieldDecl *Member = R.getAsSingle<FieldDecl>()) {
1152 if (Member->getDeclContext()->getLookupContext()->Equals(ClassDecl)) {
1153 // We have found a non-static data member with a similar
1154 // name to what was typed; complain and initialize that
1155 // member.
1156 Diag(R.getNameLoc(), diag::err_mem_init_not_member_or_class_suggest)
1157 << MemberOrBase << true << R.getLookupName()
Douglas Gregor849b2432010-03-31 17:46:05 +00001158 << FixItHint::CreateReplacement(R.getNameLoc(),
1159 R.getLookupName().getAsString());
Douglas Gregor67dd1d42010-01-07 00:17:44 +00001160 Diag(Member->getLocation(), diag::note_previous_decl)
1161 << Member->getDeclName();
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001162
1163 return BuildMemberInitializer(Member, (Expr**)Args, NumArgs, IdLoc,
1164 LParenLoc, RParenLoc);
1165 }
1166 } else if (TypeDecl *Type = R.getAsSingle<TypeDecl>()) {
1167 const CXXBaseSpecifier *DirectBaseSpec;
1168 const CXXBaseSpecifier *VirtualBaseSpec;
1169 if (FindBaseInitializer(*this, ClassDecl,
1170 Context.getTypeDeclType(Type),
1171 DirectBaseSpec, VirtualBaseSpec)) {
1172 // We have found a direct or virtual base class with a
1173 // similar name to what was typed; complain and initialize
1174 // that base class.
1175 Diag(R.getNameLoc(), diag::err_mem_init_not_member_or_class_suggest)
1176 << MemberOrBase << false << R.getLookupName()
Douglas Gregor849b2432010-03-31 17:46:05 +00001177 << FixItHint::CreateReplacement(R.getNameLoc(),
1178 R.getLookupName().getAsString());
Douglas Gregor0d535c82010-01-07 00:26:25 +00001179
1180 const CXXBaseSpecifier *BaseSpec = DirectBaseSpec? DirectBaseSpec
1181 : VirtualBaseSpec;
1182 Diag(BaseSpec->getSourceRange().getBegin(),
1183 diag::note_base_class_specified_here)
1184 << BaseSpec->getType()
1185 << BaseSpec->getSourceRange();
1186
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001187 TyD = Type;
1188 }
1189 }
1190 }
1191
Douglas Gregor7a886e12010-01-19 06:46:48 +00001192 if (!TyD && BaseType.isNull()) {
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001193 Diag(IdLoc, diag::err_mem_init_not_member_or_class)
1194 << MemberOrBase << SourceRange(IdLoc, RParenLoc);
1195 return true;
1196 }
John McCall2b194412009-12-21 10:41:20 +00001197 }
1198
Douglas Gregor7a886e12010-01-19 06:46:48 +00001199 if (BaseType.isNull()) {
1200 BaseType = Context.getTypeDeclType(TyD);
1201 if (SS.isSet()) {
1202 NestedNameSpecifier *Qualifier =
1203 static_cast<NestedNameSpecifier*>(SS.getScopeRep());
John McCall2b194412009-12-21 10:41:20 +00001204
Douglas Gregor7a886e12010-01-19 06:46:48 +00001205 // FIXME: preserve source range information
Abramo Bagnara465d41b2010-05-11 21:36:43 +00001206 BaseType = Context.getElaboratedType(ETK_None, Qualifier, BaseType);
Douglas Gregor7a886e12010-01-19 06:46:48 +00001207 }
John McCall2b194412009-12-21 10:41:20 +00001208 }
1209 }
Mike Stump1eb44332009-09-09 15:08:12 +00001210
John McCalla93c9342009-12-07 02:54:59 +00001211 if (!TInfo)
1212 TInfo = Context.getTrivialTypeSourceInfo(BaseType, IdLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001213
John McCalla93c9342009-12-07 02:54:59 +00001214 return BuildBaseInitializer(BaseType, TInfo, (Expr **)Args, NumArgs,
Douglas Gregor802ab452009-12-02 22:36:29 +00001215 LParenLoc, RParenLoc, ClassDecl);
Eli Friedman59c04372009-07-29 19:44:27 +00001216}
1217
John McCallb4190042009-11-04 23:02:40 +00001218/// Checks an initializer expression for use of uninitialized fields, such as
1219/// containing the field that is being initialized. Returns true if there is an
1220/// uninitialized field was used an updates the SourceLocation parameter; false
1221/// otherwise.
Nick Lewycky43ad1822010-06-15 07:32:55 +00001222static bool InitExprContainsUninitializedFields(const Stmt *S,
1223 const FieldDecl *LhsField,
1224 SourceLocation *L) {
1225 if (isa<CallExpr>(S)) {
1226 // Do not descend into function calls or constructors, as the use
1227 // of an uninitialized field may be valid. One would have to inspect
1228 // the contents of the function/ctor to determine if it is safe or not.
1229 // i.e. Pass-by-value is never safe, but pass-by-reference and pointers
1230 // may be safe, depending on what the function/ctor does.
1231 return false;
1232 }
1233 if (const MemberExpr *ME = dyn_cast<MemberExpr>(S)) {
1234 const NamedDecl *RhsField = ME->getMemberDecl();
John McCallb4190042009-11-04 23:02:40 +00001235 if (RhsField == LhsField) {
1236 // Initializing a field with itself. Throw a warning.
1237 // But wait; there are exceptions!
1238 // Exception #1: The field may not belong to this record.
1239 // e.g. Foo(const Foo& rhs) : A(rhs.A) {}
Nick Lewycky43ad1822010-06-15 07:32:55 +00001240 const Expr *base = ME->getBase();
John McCallb4190042009-11-04 23:02:40 +00001241 if (base != NULL && !isa<CXXThisExpr>(base->IgnoreParenCasts())) {
1242 // Even though the field matches, it does not belong to this record.
1243 return false;
1244 }
1245 // None of the exceptions triggered; return true to indicate an
1246 // uninitialized field was used.
1247 *L = ME->getMemberLoc();
1248 return true;
1249 }
1250 }
Nick Lewycky43ad1822010-06-15 07:32:55 +00001251 for (Stmt::const_child_iterator it = S->child_begin(), e = S->child_end();
1252 it != e; ++it) {
1253 if (!*it) {
1254 // An expression such as 'member(arg ?: "")' may trigger this.
John McCallb4190042009-11-04 23:02:40 +00001255 continue;
1256 }
Nick Lewycky43ad1822010-06-15 07:32:55 +00001257 if (InitExprContainsUninitializedFields(*it, LhsField, L))
1258 return true;
John McCallb4190042009-11-04 23:02:40 +00001259 }
Nick Lewycky43ad1822010-06-15 07:32:55 +00001260 return false;
John McCallb4190042009-11-04 23:02:40 +00001261}
1262
Eli Friedman59c04372009-07-29 19:44:27 +00001263Sema::MemInitResult
1264Sema::BuildMemberInitializer(FieldDecl *Member, Expr **Args,
1265 unsigned NumArgs, SourceLocation IdLoc,
Douglas Gregor802ab452009-12-02 22:36:29 +00001266 SourceLocation LParenLoc,
Eli Friedman59c04372009-07-29 19:44:27 +00001267 SourceLocation RParenLoc) {
John McCallb4190042009-11-04 23:02:40 +00001268 // Diagnose value-uses of fields to initialize themselves, e.g.
1269 // foo(foo)
1270 // where foo is not also a parameter to the constructor.
John McCall6aee6212009-11-04 23:13:52 +00001271 // TODO: implement -Wuninitialized and fold this into that framework.
John McCallb4190042009-11-04 23:02:40 +00001272 for (unsigned i = 0; i < NumArgs; ++i) {
1273 SourceLocation L;
1274 if (InitExprContainsUninitializedFields(Args[i], Member, &L)) {
1275 // FIXME: Return true in the case when other fields are used before being
1276 // uninitialized. For example, let this field be the i'th field. When
1277 // initializing the i'th field, throw a warning if any of the >= i'th
1278 // fields are used, as they are not yet initialized.
1279 // Right now we are only handling the case where the i'th field uses
1280 // itself in its initializer.
1281 Diag(L, diag::warn_field_is_uninit);
1282 }
1283 }
1284
Eli Friedman59c04372009-07-29 19:44:27 +00001285 bool HasDependentArg = false;
1286 for (unsigned i = 0; i < NumArgs; i++)
1287 HasDependentArg |= Args[i]->isTypeDependent();
1288
Eli Friedman0f2b97d2010-07-24 21:19:15 +00001289 if (Member->getType()->isDependentType() || HasDependentArg) {
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001290 // Can't check initialization for a member of dependent type or when
1291 // any of the arguments are type-dependent expressions.
1292 OwningExprResult Init
1293 = Owned(new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1294 RParenLoc));
1295
1296 // Erase any temporaries within this evaluation context; we're not
1297 // going to track them in the AST, since we'll be rebuilding the
1298 // ASTs during template instantiation.
1299 ExprTemporaries.erase(
1300 ExprTemporaries.begin() + ExprEvalContexts.back().NumTemporaries,
1301 ExprTemporaries.end());
1302
1303 return new (Context) CXXBaseOrMemberInitializer(Context, Member, IdLoc,
1304 LParenLoc,
1305 Init.takeAs<Expr>(),
1306 RParenLoc);
1307
Douglas Gregor7ad83902008-11-05 04:29:56 +00001308 }
Anders Carlssonf8a9a792009-11-13 19:21:49 +00001309
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001310 if (Member->isInvalidDecl())
1311 return true;
Anders Carlssonf8a9a792009-11-13 19:21:49 +00001312
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001313 // Initialize the member.
1314 InitializedEntity MemberEntity =
1315 InitializedEntity::InitializeMember(Member, 0);
1316 InitializationKind Kind =
1317 InitializationKind::CreateDirect(IdLoc, LParenLoc, RParenLoc);
1318
1319 InitializationSequence InitSeq(*this, MemberEntity, Kind, Args, NumArgs);
1320
1321 OwningExprResult MemberInit =
1322 InitSeq.Perform(*this, MemberEntity, Kind,
1323 MultiExprArg(*this, (void**)Args, NumArgs), 0);
1324 if (MemberInit.isInvalid())
1325 return true;
1326
1327 // C++0x [class.base.init]p7:
1328 // The initialization of each base and member constitutes a
1329 // full-expression.
1330 MemberInit = MaybeCreateCXXExprWithTemporaries(move(MemberInit));
1331 if (MemberInit.isInvalid())
1332 return true;
1333
1334 // If we are in a dependent context, template instantiation will
1335 // perform this type-checking again. Just save the arguments that we
1336 // received in a ParenListExpr.
1337 // FIXME: This isn't quite ideal, since our ASTs don't capture all
1338 // of the information that we have about the member
1339 // initializer. However, deconstructing the ASTs is a dicey process,
1340 // and this approach is far more likely to get the corner cases right.
1341 if (CurContext->isDependentContext()) {
1342 // Bump the reference count of all of the arguments.
1343 for (unsigned I = 0; I != NumArgs; ++I)
1344 Args[I]->Retain();
1345
1346 OwningExprResult Init
1347 = Owned(new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1348 RParenLoc));
1349 return new (Context) CXXBaseOrMemberInitializer(Context, Member, IdLoc,
1350 LParenLoc,
1351 Init.takeAs<Expr>(),
1352 RParenLoc);
1353 }
1354
Douglas Gregor802ab452009-12-02 22:36:29 +00001355 return new (Context) CXXBaseOrMemberInitializer(Context, Member, IdLoc,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001356 LParenLoc,
1357 MemberInit.takeAs<Expr>(),
1358 RParenLoc);
Eli Friedman59c04372009-07-29 19:44:27 +00001359}
1360
1361Sema::MemInitResult
John McCalla93c9342009-12-07 02:54:59 +00001362Sema::BuildBaseInitializer(QualType BaseType, TypeSourceInfo *BaseTInfo,
Douglas Gregor802ab452009-12-02 22:36:29 +00001363 Expr **Args, unsigned NumArgs,
1364 SourceLocation LParenLoc, SourceLocation RParenLoc,
1365 CXXRecordDecl *ClassDecl) {
Eli Friedman59c04372009-07-29 19:44:27 +00001366 bool HasDependentArg = false;
1367 for (unsigned i = 0; i < NumArgs; i++)
1368 HasDependentArg |= Args[i]->isTypeDependent();
1369
Douglas Gregor3956b1a2010-06-16 16:03:14 +00001370 SourceLocation BaseLoc
1371 = BaseTInfo->getTypeLoc().getLocalSourceRange().getBegin();
1372
1373 if (!BaseType->isDependentType() && !BaseType->isRecordType())
1374 return Diag(BaseLoc, diag::err_base_init_does_not_name_class)
1375 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
1376
1377 // C++ [class.base.init]p2:
1378 // [...] Unless the mem-initializer-id names a nonstatic data
1379 // member of the constructor’s class or a direct or virtual base
1380 // of that class, the mem-initializer is ill-formed. A
1381 // mem-initializer-list can initialize a base class using any
1382 // name that denotes that base class type.
1383 bool Dependent = BaseType->isDependentType() || HasDependentArg;
1384
1385 // Check for direct and virtual base classes.
1386 const CXXBaseSpecifier *DirectBaseSpec = 0;
1387 const CXXBaseSpecifier *VirtualBaseSpec = 0;
1388 if (!Dependent) {
1389 FindBaseInitializer(*this, ClassDecl, BaseType, DirectBaseSpec,
1390 VirtualBaseSpec);
1391
1392 // C++ [base.class.init]p2:
1393 // Unless the mem-initializer-id names a nonstatic data member of the
1394 // constructor's class or a direct or virtual base of that class, the
1395 // mem-initializer is ill-formed.
1396 if (!DirectBaseSpec && !VirtualBaseSpec) {
1397 // If the class has any dependent bases, then it's possible that
1398 // one of those types will resolve to the same type as
1399 // BaseType. Therefore, just treat this as a dependent base
1400 // class initialization. FIXME: Should we try to check the
1401 // initialization anyway? It seems odd.
1402 if (ClassDecl->hasAnyDependentBases())
1403 Dependent = true;
1404 else
1405 return Diag(BaseLoc, diag::err_not_direct_base_or_virtual)
1406 << BaseType << Context.getTypeDeclType(ClassDecl)
1407 << BaseTInfo->getTypeLoc().getLocalSourceRange();
1408 }
1409 }
1410
1411 if (Dependent) {
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001412 // Can't check initialization for a base of dependent type or when
1413 // any of the arguments are type-dependent expressions.
1414 OwningExprResult BaseInit
1415 = Owned(new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1416 RParenLoc));
Eli Friedman59c04372009-07-29 19:44:27 +00001417
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001418 // Erase any temporaries within this evaluation context; we're not
1419 // going to track them in the AST, since we'll be rebuilding the
1420 // ASTs during template instantiation.
1421 ExprTemporaries.erase(
1422 ExprTemporaries.begin() + ExprEvalContexts.back().NumTemporaries,
1423 ExprTemporaries.end());
Mike Stump1eb44332009-09-09 15:08:12 +00001424
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001425 return new (Context) CXXBaseOrMemberInitializer(Context, BaseTInfo,
Anders Carlsson80638c52010-04-12 00:51:03 +00001426 /*IsVirtual=*/false,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001427 LParenLoc,
1428 BaseInit.takeAs<Expr>(),
1429 RParenLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001430 }
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001431
1432 // C++ [base.class.init]p2:
1433 // If a mem-initializer-id is ambiguous because it designates both
1434 // a direct non-virtual base class and an inherited virtual base
1435 // class, the mem-initializer is ill-formed.
1436 if (DirectBaseSpec && VirtualBaseSpec)
1437 return Diag(BaseLoc, diag::err_base_init_direct_and_virtual)
Abramo Bagnarabd054db2010-05-20 10:00:11 +00001438 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001439
1440 CXXBaseSpecifier *BaseSpec
1441 = const_cast<CXXBaseSpecifier *>(DirectBaseSpec);
1442 if (!BaseSpec)
1443 BaseSpec = const_cast<CXXBaseSpecifier *>(VirtualBaseSpec);
1444
1445 // Initialize the base.
1446 InitializedEntity BaseEntity =
Anders Carlsson711f34a2010-04-21 19:52:01 +00001447 InitializedEntity::InitializeBase(Context, BaseSpec, VirtualBaseSpec);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001448 InitializationKind Kind =
1449 InitializationKind::CreateDirect(BaseLoc, LParenLoc, RParenLoc);
1450
1451 InitializationSequence InitSeq(*this, BaseEntity, Kind, Args, NumArgs);
1452
1453 OwningExprResult BaseInit =
1454 InitSeq.Perform(*this, BaseEntity, Kind,
1455 MultiExprArg(*this, (void**)Args, NumArgs), 0);
1456 if (BaseInit.isInvalid())
1457 return true;
1458
1459 // C++0x [class.base.init]p7:
1460 // The initialization of each base and member constitutes a
1461 // full-expression.
1462 BaseInit = MaybeCreateCXXExprWithTemporaries(move(BaseInit));
1463 if (BaseInit.isInvalid())
1464 return true;
1465
1466 // If we are in a dependent context, template instantiation will
1467 // perform this type-checking again. Just save the arguments that we
1468 // received in a ParenListExpr.
1469 // FIXME: This isn't quite ideal, since our ASTs don't capture all
1470 // of the information that we have about the base
1471 // initializer. However, deconstructing the ASTs is a dicey process,
1472 // and this approach is far more likely to get the corner cases right.
1473 if (CurContext->isDependentContext()) {
1474 // Bump the reference count of all of the arguments.
1475 for (unsigned I = 0; I != NumArgs; ++I)
1476 Args[I]->Retain();
1477
1478 OwningExprResult Init
1479 = Owned(new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1480 RParenLoc));
1481 return new (Context) CXXBaseOrMemberInitializer(Context, BaseTInfo,
Anders Carlsson80638c52010-04-12 00:51:03 +00001482 BaseSpec->isVirtual(),
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001483 LParenLoc,
1484 Init.takeAs<Expr>(),
1485 RParenLoc);
1486 }
1487
1488 return new (Context) CXXBaseOrMemberInitializer(Context, BaseTInfo,
Anders Carlsson80638c52010-04-12 00:51:03 +00001489 BaseSpec->isVirtual(),
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001490 LParenLoc,
1491 BaseInit.takeAs<Expr>(),
1492 RParenLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001493}
1494
Anders Carlssone5ef7402010-04-23 03:10:23 +00001495/// ImplicitInitializerKind - How an implicit base or member initializer should
1496/// initialize its base or member.
1497enum ImplicitInitializerKind {
1498 IIK_Default,
1499 IIK_Copy,
1500 IIK_Move
1501};
1502
Anders Carlssondefefd22010-04-23 02:00:02 +00001503static bool
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001504BuildImplicitBaseInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlssone5ef7402010-04-23 03:10:23 +00001505 ImplicitInitializerKind ImplicitInitKind,
Anders Carlsson711f34a2010-04-21 19:52:01 +00001506 CXXBaseSpecifier *BaseSpec,
Anders Carlssondefefd22010-04-23 02:00:02 +00001507 bool IsInheritedVirtualBase,
1508 CXXBaseOrMemberInitializer *&CXXBaseInit) {
Anders Carlsson84688f22010-04-20 23:11:20 +00001509 InitializedEntity InitEntity
Anders Carlsson711f34a2010-04-21 19:52:01 +00001510 = InitializedEntity::InitializeBase(SemaRef.Context, BaseSpec,
1511 IsInheritedVirtualBase);
Anders Carlsson84688f22010-04-20 23:11:20 +00001512
Anders Carlssone5ef7402010-04-23 03:10:23 +00001513 Sema::OwningExprResult BaseInit(SemaRef);
1514
1515 switch (ImplicitInitKind) {
1516 case IIK_Default: {
1517 InitializationKind InitKind
1518 = InitializationKind::CreateDefault(Constructor->getLocation());
1519 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, 0, 0);
1520 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind,
1521 Sema::MultiExprArg(SemaRef, 0, 0));
1522 break;
1523 }
Anders Carlsson84688f22010-04-20 23:11:20 +00001524
Anders Carlssone5ef7402010-04-23 03:10:23 +00001525 case IIK_Copy: {
1526 ParmVarDecl *Param = Constructor->getParamDecl(0);
1527 QualType ParamType = Param->getType().getNonReferenceType();
1528
1529 Expr *CopyCtorArg =
1530 DeclRefExpr::Create(SemaRef.Context, 0, SourceRange(), Param,
Douglas Gregor62b71f42010-05-03 15:43:53 +00001531 Constructor->getLocation(), ParamType, 0);
Anders Carlssone5ef7402010-04-23 03:10:23 +00001532
Anders Carlssonc7957502010-04-24 22:02:54 +00001533 // Cast to the base class to avoid ambiguities.
Anders Carlsson59b7f152010-05-01 16:39:01 +00001534 QualType ArgTy =
1535 SemaRef.Context.getQualifiedType(BaseSpec->getType().getUnqualifiedType(),
1536 ParamType.getQualifiers());
Sebastian Redl906082e2010-07-20 04:20:21 +00001537 SemaRef.ImpCastExprToType(CopyCtorArg, ArgTy,
Anders Carlssonc7957502010-04-24 22:02:54 +00001538 CastExpr::CK_UncheckedDerivedToBase,
Sebastian Redl906082e2010-07-20 04:20:21 +00001539 ImplicitCastExpr::LValue,
Anders Carlsson8f2abbc2010-04-24 22:54:32 +00001540 CXXBaseSpecifierArray(BaseSpec));
Anders Carlssonc7957502010-04-24 22:02:54 +00001541
Anders Carlssone5ef7402010-04-23 03:10:23 +00001542 InitializationKind InitKind
1543 = InitializationKind::CreateDirect(Constructor->getLocation(),
1544 SourceLocation(), SourceLocation());
1545 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind,
1546 &CopyCtorArg, 1);
1547 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind,
1548 Sema::MultiExprArg(SemaRef,
1549 (void**)&CopyCtorArg, 1));
1550 break;
1551 }
Anders Carlsson84688f22010-04-20 23:11:20 +00001552
Anders Carlssone5ef7402010-04-23 03:10:23 +00001553 case IIK_Move:
1554 assert(false && "Unhandled initializer kind!");
1555 }
1556
Anders Carlsson84688f22010-04-20 23:11:20 +00001557 BaseInit = SemaRef.MaybeCreateCXXExprWithTemporaries(move(BaseInit));
1558 if (BaseInit.isInvalid())
Anders Carlssondefefd22010-04-23 02:00:02 +00001559 return true;
Anders Carlsson84688f22010-04-20 23:11:20 +00001560
Anders Carlssondefefd22010-04-23 02:00:02 +00001561 CXXBaseInit =
Anders Carlsson84688f22010-04-20 23:11:20 +00001562 new (SemaRef.Context) CXXBaseOrMemberInitializer(SemaRef.Context,
1563 SemaRef.Context.getTrivialTypeSourceInfo(BaseSpec->getType(),
1564 SourceLocation()),
1565 BaseSpec->isVirtual(),
1566 SourceLocation(),
1567 BaseInit.takeAs<Expr>(),
1568 SourceLocation());
1569
Anders Carlssondefefd22010-04-23 02:00:02 +00001570 return false;
Anders Carlsson84688f22010-04-20 23:11:20 +00001571}
1572
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001573static bool
1574BuildImplicitMemberInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlssone5ef7402010-04-23 03:10:23 +00001575 ImplicitInitializerKind ImplicitInitKind,
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001576 FieldDecl *Field,
1577 CXXBaseOrMemberInitializer *&CXXMemberInit) {
Douglas Gregor72a43bb2010-05-20 22:12:02 +00001578 if (Field->isInvalidDecl())
1579 return true;
1580
Chandler Carruthf186b542010-06-29 23:50:44 +00001581 SourceLocation Loc = Constructor->getLocation();
1582
Anders Carlssonf6513ed2010-04-23 16:04:08 +00001583 if (ImplicitInitKind == IIK_Copy) {
1584 ParmVarDecl *Param = Constructor->getParamDecl(0);
1585 QualType ParamType = Param->getType().getNonReferenceType();
1586
1587 Expr *MemberExprBase =
1588 DeclRefExpr::Create(SemaRef.Context, 0, SourceRange(), Param,
Douglas Gregorfb8cc252010-05-05 05:51:00 +00001589 Loc, ParamType, 0);
1590
1591 // Build a reference to this field within the parameter.
1592 CXXScopeSpec SS;
1593 LookupResult MemberLookup(SemaRef, Field->getDeclName(), Loc,
1594 Sema::LookupMemberName);
1595 MemberLookup.addDecl(Field, AS_public);
1596 MemberLookup.resolveKind();
1597 Sema::OwningExprResult CopyCtorArg
1598 = SemaRef.BuildMemberReferenceExpr(SemaRef.Owned(MemberExprBase),
1599 ParamType, Loc,
1600 /*IsArrow=*/false,
1601 SS,
1602 /*FirstQualifierInScope=*/0,
1603 MemberLookup,
1604 /*TemplateArgs=*/0);
1605 if (CopyCtorArg.isInvalid())
Anders Carlssonf6513ed2010-04-23 16:04:08 +00001606 return true;
1607
Douglas Gregorfb8cc252010-05-05 05:51:00 +00001608 // When the field we are copying is an array, create index variables for
1609 // each dimension of the array. We use these index variables to subscript
1610 // the source array, and other clients (e.g., CodeGen) will perform the
1611 // necessary iteration with these index variables.
1612 llvm::SmallVector<VarDecl *, 4> IndexVariables;
1613 QualType BaseType = Field->getType();
1614 QualType SizeType = SemaRef.Context.getSizeType();
1615 while (const ConstantArrayType *Array
1616 = SemaRef.Context.getAsConstantArrayType(BaseType)) {
1617 // Create the iteration variable for this array index.
1618 IdentifierInfo *IterationVarName = 0;
1619 {
1620 llvm::SmallString<8> Str;
1621 llvm::raw_svector_ostream OS(Str);
1622 OS << "__i" << IndexVariables.size();
1623 IterationVarName = &SemaRef.Context.Idents.get(OS.str());
1624 }
1625 VarDecl *IterationVar
1626 = VarDecl::Create(SemaRef.Context, SemaRef.CurContext, Loc,
1627 IterationVarName, SizeType,
1628 SemaRef.Context.getTrivialTypeSourceInfo(SizeType, Loc),
1629 VarDecl::None, VarDecl::None);
1630 IndexVariables.push_back(IterationVar);
1631
1632 // Create a reference to the iteration variable.
1633 Sema::OwningExprResult IterationVarRef
1634 = SemaRef.BuildDeclRefExpr(IterationVar, SizeType, Loc);
1635 assert(!IterationVarRef.isInvalid() &&
1636 "Reference to invented variable cannot fail!");
1637
1638 // Subscript the array with this iteration variable.
1639 CopyCtorArg = SemaRef.CreateBuiltinArraySubscriptExpr(move(CopyCtorArg),
1640 Loc,
1641 move(IterationVarRef),
1642 Loc);
1643 if (CopyCtorArg.isInvalid())
1644 return true;
1645
1646 BaseType = Array->getElementType();
1647 }
1648
1649 // Construct the entity that we will be initializing. For an array, this
1650 // will be first element in the array, which may require several levels
1651 // of array-subscript entities.
1652 llvm::SmallVector<InitializedEntity, 4> Entities;
1653 Entities.reserve(1 + IndexVariables.size());
1654 Entities.push_back(InitializedEntity::InitializeMember(Field));
1655 for (unsigned I = 0, N = IndexVariables.size(); I != N; ++I)
1656 Entities.push_back(InitializedEntity::InitializeElement(SemaRef.Context,
1657 0,
1658 Entities.back()));
1659
1660 // Direct-initialize to use the copy constructor.
1661 InitializationKind InitKind =
1662 InitializationKind::CreateDirect(Loc, SourceLocation(), SourceLocation());
1663
1664 Expr *CopyCtorArgE = CopyCtorArg.takeAs<Expr>();
1665 InitializationSequence InitSeq(SemaRef, Entities.back(), InitKind,
1666 &CopyCtorArgE, 1);
1667
1668 Sema::OwningExprResult MemberInit
1669 = InitSeq.Perform(SemaRef, Entities.back(), InitKind,
1670 Sema::MultiExprArg(SemaRef, (void**)&CopyCtorArgE, 1));
1671 MemberInit = SemaRef.MaybeCreateCXXExprWithTemporaries(move(MemberInit));
1672 if (MemberInit.isInvalid())
1673 return true;
1674
1675 CXXMemberInit
1676 = CXXBaseOrMemberInitializer::Create(SemaRef.Context, Field, Loc, Loc,
1677 MemberInit.takeAs<Expr>(), Loc,
1678 IndexVariables.data(),
1679 IndexVariables.size());
Anders Carlssone5ef7402010-04-23 03:10:23 +00001680 return false;
1681 }
1682
Anders Carlssonf6513ed2010-04-23 16:04:08 +00001683 assert(ImplicitInitKind == IIK_Default && "Unhandled implicit init kind!");
1684
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001685 QualType FieldBaseElementType =
1686 SemaRef.Context.getBaseElementType(Field->getType());
1687
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001688 if (FieldBaseElementType->isRecordType()) {
1689 InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field);
Anders Carlssonf6513ed2010-04-23 16:04:08 +00001690 InitializationKind InitKind =
Chandler Carruthf186b542010-06-29 23:50:44 +00001691 InitializationKind::CreateDefault(Loc);
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001692
1693 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, 0, 0);
1694 Sema::OwningExprResult MemberInit =
1695 InitSeq.Perform(SemaRef, InitEntity, InitKind,
1696 Sema::MultiExprArg(SemaRef, 0, 0));
1697 MemberInit = SemaRef.MaybeCreateCXXExprWithTemporaries(move(MemberInit));
1698 if (MemberInit.isInvalid())
1699 return true;
1700
1701 CXXMemberInit =
1702 new (SemaRef.Context) CXXBaseOrMemberInitializer(SemaRef.Context,
Chandler Carruthf186b542010-06-29 23:50:44 +00001703 Field, Loc, Loc,
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001704 MemberInit.takeAs<Expr>(),
Chandler Carruthf186b542010-06-29 23:50:44 +00001705 Loc);
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001706 return false;
1707 }
Anders Carlsson114a2972010-04-23 03:07:47 +00001708
1709 if (FieldBaseElementType->isReferenceType()) {
1710 SemaRef.Diag(Constructor->getLocation(),
1711 diag::err_uninitialized_member_in_ctor)
1712 << (int)Constructor->isImplicit()
1713 << SemaRef.Context.getTagDeclType(Constructor->getParent())
1714 << 0 << Field->getDeclName();
1715 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
1716 return true;
1717 }
1718
1719 if (FieldBaseElementType.isConstQualified()) {
1720 SemaRef.Diag(Constructor->getLocation(),
1721 diag::err_uninitialized_member_in_ctor)
1722 << (int)Constructor->isImplicit()
1723 << SemaRef.Context.getTagDeclType(Constructor->getParent())
1724 << 1 << Field->getDeclName();
1725 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
1726 return true;
1727 }
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001728
1729 // Nothing to initialize.
1730 CXXMemberInit = 0;
1731 return false;
1732}
John McCallf1860e52010-05-20 23:23:51 +00001733
1734namespace {
1735struct BaseAndFieldInfo {
1736 Sema &S;
1737 CXXConstructorDecl *Ctor;
1738 bool AnyErrorsInInits;
1739 ImplicitInitializerKind IIK;
1740 llvm::DenseMap<const void *, CXXBaseOrMemberInitializer*> AllBaseFields;
1741 llvm::SmallVector<CXXBaseOrMemberInitializer*, 8> AllToInit;
1742
1743 BaseAndFieldInfo(Sema &S, CXXConstructorDecl *Ctor, bool ErrorsInInits)
1744 : S(S), Ctor(Ctor), AnyErrorsInInits(ErrorsInInits) {
1745 // FIXME: Handle implicit move constructors.
1746 if (Ctor->isImplicit() && Ctor->isCopyConstructor())
1747 IIK = IIK_Copy;
1748 else
1749 IIK = IIK_Default;
1750 }
1751};
1752}
1753
Chandler Carruthe861c602010-06-30 02:59:29 +00001754static void RecordFieldInitializer(BaseAndFieldInfo &Info,
1755 FieldDecl *Top, FieldDecl *Field,
1756 CXXBaseOrMemberInitializer *Init) {
1757 // If the member doesn't need to be initialized, Init will still be null.
1758 if (!Init)
1759 return;
1760
1761 Info.AllToInit.push_back(Init);
1762 if (Field != Top) {
1763 Init->setMember(Top);
1764 Init->setAnonUnionMember(Field);
1765 }
1766}
1767
John McCallf1860e52010-05-20 23:23:51 +00001768static bool CollectFieldInitializer(BaseAndFieldInfo &Info,
1769 FieldDecl *Top, FieldDecl *Field) {
1770
Chandler Carruthe861c602010-06-30 02:59:29 +00001771 // Overwhelmingly common case: we have a direct initializer for this field.
John McCallf1860e52010-05-20 23:23:51 +00001772 if (CXXBaseOrMemberInitializer *Init = Info.AllBaseFields.lookup(Field)) {
Chandler Carruthe861c602010-06-30 02:59:29 +00001773 RecordFieldInitializer(Info, Top, Field, Init);
John McCallf1860e52010-05-20 23:23:51 +00001774 return false;
1775 }
1776
1777 if (Info.IIK == IIK_Default && Field->isAnonymousStructOrUnion()) {
1778 const RecordType *FieldClassType = Field->getType()->getAs<RecordType>();
1779 assert(FieldClassType && "anonymous struct/union without record type");
John McCallf1860e52010-05-20 23:23:51 +00001780 CXXRecordDecl *FieldClassDecl
1781 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Chandler Carruthe861c602010-06-30 02:59:29 +00001782
1783 // Even though union members never have non-trivial default
1784 // constructions in C++03, we still build member initializers for aggregate
1785 // record types which can be union members, and C++0x allows non-trivial
1786 // default constructors for union members, so we ensure that only one
1787 // member is initialized for these.
1788 if (FieldClassDecl->isUnion()) {
1789 // First check for an explicit initializer for one field.
1790 for (RecordDecl::field_iterator FA = FieldClassDecl->field_begin(),
1791 EA = FieldClassDecl->field_end(); FA != EA; FA++) {
1792 if (CXXBaseOrMemberInitializer *Init = Info.AllBaseFields.lookup(*FA)) {
1793 RecordFieldInitializer(Info, Top, *FA, Init);
1794
1795 // Once we've initialized a field of an anonymous union, the union
1796 // field in the class is also initialized, so exit immediately.
1797 return false;
1798 }
1799 }
1800
1801 // Fallthrough and construct a default initializer for the union as
1802 // a whole, which can call its default constructor if such a thing exists
1803 // (C++0x perhaps). FIXME: It's not clear that this is the correct
1804 // behavior going forward with C++0x, when anonymous unions there are
1805 // finalized, we should revisit this.
1806 } else {
1807 // For structs, we simply descend through to initialize all members where
1808 // necessary.
1809 for (RecordDecl::field_iterator FA = FieldClassDecl->field_begin(),
1810 EA = FieldClassDecl->field_end(); FA != EA; FA++) {
1811 if (CollectFieldInitializer(Info, Top, *FA))
1812 return true;
1813 }
1814 }
John McCallf1860e52010-05-20 23:23:51 +00001815 }
1816
1817 // Don't try to build an implicit initializer if there were semantic
1818 // errors in any of the initializers (and therefore we might be
1819 // missing some that the user actually wrote).
1820 if (Info.AnyErrorsInInits)
1821 return false;
1822
1823 CXXBaseOrMemberInitializer *Init = 0;
1824 if (BuildImplicitMemberInitializer(Info.S, Info.Ctor, Info.IIK, Field, Init))
1825 return true;
John McCallf1860e52010-05-20 23:23:51 +00001826
Chandler Carruthe861c602010-06-30 02:59:29 +00001827 RecordFieldInitializer(Info, Top, Field, Init);
John McCallf1860e52010-05-20 23:23:51 +00001828 return false;
1829}
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001830
Eli Friedman80c30da2009-11-09 19:20:36 +00001831bool
Anders Carlsson0ebb6d32009-10-29 15:46:07 +00001832Sema::SetBaseOrMemberInitializers(CXXConstructorDecl *Constructor,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001833 CXXBaseOrMemberInitializer **Initializers,
1834 unsigned NumInitializers,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001835 bool AnyErrors) {
John McCalld6ca8da2010-04-10 07:37:23 +00001836 if (Constructor->getDeclContext()->isDependentContext()) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00001837 // Just store the initializers as written, they will be checked during
1838 // instantiation.
1839 if (NumInitializers > 0) {
1840 Constructor->setNumBaseOrMemberInitializers(NumInitializers);
1841 CXXBaseOrMemberInitializer **baseOrMemberInitializers =
1842 new (Context) CXXBaseOrMemberInitializer*[NumInitializers];
1843 memcpy(baseOrMemberInitializers, Initializers,
1844 NumInitializers * sizeof(CXXBaseOrMemberInitializer*));
1845 Constructor->setBaseOrMemberInitializers(baseOrMemberInitializers);
1846 }
1847
1848 return false;
1849 }
1850
John McCallf1860e52010-05-20 23:23:51 +00001851 BaseAndFieldInfo Info(*this, Constructor, AnyErrors);
Anders Carlssone5ef7402010-04-23 03:10:23 +00001852
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001853 // We need to build the initializer AST according to order of construction
1854 // and not what user specified in the Initializers list.
Anders Carlssonea356fb2010-04-02 05:42:15 +00001855 CXXRecordDecl *ClassDecl = Constructor->getParent()->getDefinition();
Douglas Gregord6068482010-03-26 22:43:07 +00001856 if (!ClassDecl)
1857 return true;
1858
Eli Friedman80c30da2009-11-09 19:20:36 +00001859 bool HadError = false;
Mike Stump1eb44332009-09-09 15:08:12 +00001860
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001861 for (unsigned i = 0; i < NumInitializers; i++) {
1862 CXXBaseOrMemberInitializer *Member = Initializers[i];
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00001863
1864 if (Member->isBaseInitializer())
John McCallf1860e52010-05-20 23:23:51 +00001865 Info.AllBaseFields[Member->getBaseClass()->getAs<RecordType>()] = Member;
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00001866 else
John McCallf1860e52010-05-20 23:23:51 +00001867 Info.AllBaseFields[Member->getMember()] = Member;
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00001868 }
1869
Anders Carlsson711f34a2010-04-21 19:52:01 +00001870 // Keep track of the direct virtual bases.
1871 llvm::SmallPtrSet<CXXBaseSpecifier *, 16> DirectVBases;
1872 for (CXXRecordDecl::base_class_iterator I = ClassDecl->bases_begin(),
1873 E = ClassDecl->bases_end(); I != E; ++I) {
1874 if (I->isVirtual())
1875 DirectVBases.insert(I);
1876 }
1877
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00001878 // Push virtual bases before others.
1879 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
1880 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
1881
1882 if (CXXBaseOrMemberInitializer *Value
John McCallf1860e52010-05-20 23:23:51 +00001883 = Info.AllBaseFields.lookup(VBase->getType()->getAs<RecordType>())) {
1884 Info.AllToInit.push_back(Value);
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00001885 } else if (!AnyErrors) {
Anders Carlsson711f34a2010-04-21 19:52:01 +00001886 bool IsInheritedVirtualBase = !DirectVBases.count(VBase);
Anders Carlssondefefd22010-04-23 02:00:02 +00001887 CXXBaseOrMemberInitializer *CXXBaseInit;
John McCallf1860e52010-05-20 23:23:51 +00001888 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Anders Carlssone5ef7402010-04-23 03:10:23 +00001889 VBase, IsInheritedVirtualBase,
1890 CXXBaseInit)) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00001891 HadError = true;
1892 continue;
1893 }
Anders Carlsson84688f22010-04-20 23:11:20 +00001894
John McCallf1860e52010-05-20 23:23:51 +00001895 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001896 }
1897 }
Mike Stump1eb44332009-09-09 15:08:12 +00001898
John McCallf1860e52010-05-20 23:23:51 +00001899 // Non-virtual bases.
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00001900 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
1901 E = ClassDecl->bases_end(); Base != E; ++Base) {
1902 // Virtuals are in the virtual base list and already constructed.
1903 if (Base->isVirtual())
1904 continue;
Mike Stump1eb44332009-09-09 15:08:12 +00001905
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00001906 if (CXXBaseOrMemberInitializer *Value
John McCallf1860e52010-05-20 23:23:51 +00001907 = Info.AllBaseFields.lookup(Base->getType()->getAs<RecordType>())) {
1908 Info.AllToInit.push_back(Value);
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00001909 } else if (!AnyErrors) {
Anders Carlssondefefd22010-04-23 02:00:02 +00001910 CXXBaseOrMemberInitializer *CXXBaseInit;
John McCallf1860e52010-05-20 23:23:51 +00001911 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Anders Carlssone5ef7402010-04-23 03:10:23 +00001912 Base, /*IsInheritedVirtualBase=*/false,
Anders Carlssondefefd22010-04-23 02:00:02 +00001913 CXXBaseInit)) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00001914 HadError = true;
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001915 continue;
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00001916 }
Fariborz Jahanian9d436202009-09-03 21:32:41 +00001917
John McCallf1860e52010-05-20 23:23:51 +00001918 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001919 }
1920 }
Mike Stump1eb44332009-09-09 15:08:12 +00001921
John McCallf1860e52010-05-20 23:23:51 +00001922 // Fields.
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001923 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00001924 E = ClassDecl->field_end(); Field != E; ++Field) {
1925 if ((*Field)->getType()->isIncompleteArrayType()) {
1926 assert(ClassDecl->hasFlexibleArrayMember() &&
1927 "Incomplete array type is not valid");
1928 continue;
1929 }
John McCallf1860e52010-05-20 23:23:51 +00001930 if (CollectFieldInitializer(Info, *Field, *Field))
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001931 HadError = true;
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00001932 }
Mike Stump1eb44332009-09-09 15:08:12 +00001933
John McCallf1860e52010-05-20 23:23:51 +00001934 NumInitializers = Info.AllToInit.size();
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001935 if (NumInitializers > 0) {
1936 Constructor->setNumBaseOrMemberInitializers(NumInitializers);
1937 CXXBaseOrMemberInitializer **baseOrMemberInitializers =
1938 new (Context) CXXBaseOrMemberInitializer*[NumInitializers];
John McCallf1860e52010-05-20 23:23:51 +00001939 memcpy(baseOrMemberInitializers, Info.AllToInit.data(),
John McCallef027fe2010-03-16 21:39:52 +00001940 NumInitializers * sizeof(CXXBaseOrMemberInitializer*));
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001941 Constructor->setBaseOrMemberInitializers(baseOrMemberInitializers);
Rafael Espindola961b1672010-03-13 18:12:56 +00001942
John McCallef027fe2010-03-16 21:39:52 +00001943 // Constructors implicitly reference the base and member
1944 // destructors.
1945 MarkBaseAndMemberDestructorsReferenced(Constructor->getLocation(),
1946 Constructor->getParent());
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001947 }
Eli Friedman80c30da2009-11-09 19:20:36 +00001948
1949 return HadError;
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001950}
1951
Eli Friedman6347f422009-07-21 19:28:10 +00001952static void *GetKeyForTopLevelField(FieldDecl *Field) {
1953 // For anonymous unions, use the class declaration as the key.
Ted Kremenek6217b802009-07-29 21:53:49 +00001954 if (const RecordType *RT = Field->getType()->getAs<RecordType>()) {
Eli Friedman6347f422009-07-21 19:28:10 +00001955 if (RT->getDecl()->isAnonymousStructOrUnion())
1956 return static_cast<void *>(RT->getDecl());
1957 }
1958 return static_cast<void *>(Field);
1959}
1960
Anders Carlssonea356fb2010-04-02 05:42:15 +00001961static void *GetKeyForBase(ASTContext &Context, QualType BaseType) {
1962 return Context.getCanonicalType(BaseType).getTypePtr();
Anders Carlssoncdc83c72009-09-01 06:22:14 +00001963}
1964
Anders Carlssonea356fb2010-04-02 05:42:15 +00001965static void *GetKeyForMember(ASTContext &Context,
1966 CXXBaseOrMemberInitializer *Member,
Anders Carlssoncdc83c72009-09-01 06:22:14 +00001967 bool MemberMaybeAnon = false) {
Anders Carlsson8f1a2402010-03-30 15:39:27 +00001968 if (!Member->isMemberInitializer())
Anders Carlssonea356fb2010-04-02 05:42:15 +00001969 return GetKeyForBase(Context, QualType(Member->getBaseClass(), 0));
Anders Carlsson8f1a2402010-03-30 15:39:27 +00001970
Eli Friedman6347f422009-07-21 19:28:10 +00001971 // For fields injected into the class via declaration of an anonymous union,
1972 // use its anonymous union class declaration as the unique key.
Anders Carlsson8f1a2402010-03-30 15:39:27 +00001973 FieldDecl *Field = Member->getMember();
Mike Stump1eb44332009-09-09 15:08:12 +00001974
Anders Carlsson8f1a2402010-03-30 15:39:27 +00001975 // After SetBaseOrMemberInitializers call, Field is the anonymous union
1976 // data member of the class. Data member used in the initializer list is
1977 // in AnonUnionMember field.
1978 if (MemberMaybeAnon && Field->isAnonymousStructOrUnion())
1979 Field = Member->getAnonUnionMember();
Anders Carlssonee11b2d2010-03-30 16:19:37 +00001980
John McCall3c3ccdb2010-04-10 09:28:51 +00001981 // If the field is a member of an anonymous struct or union, our key
1982 // is the anonymous record decl that's a direct child of the class.
Anders Carlssonee11b2d2010-03-30 16:19:37 +00001983 RecordDecl *RD = Field->getParent();
John McCall3c3ccdb2010-04-10 09:28:51 +00001984 if (RD->isAnonymousStructOrUnion()) {
1985 while (true) {
1986 RecordDecl *Parent = cast<RecordDecl>(RD->getDeclContext());
1987 if (Parent->isAnonymousStructOrUnion())
1988 RD = Parent;
1989 else
1990 break;
1991 }
1992
Anders Carlssonee11b2d2010-03-30 16:19:37 +00001993 return static_cast<void *>(RD);
John McCall3c3ccdb2010-04-10 09:28:51 +00001994 }
Mike Stump1eb44332009-09-09 15:08:12 +00001995
Anders Carlsson8f1a2402010-03-30 15:39:27 +00001996 return static_cast<void *>(Field);
Eli Friedman6347f422009-07-21 19:28:10 +00001997}
1998
Anders Carlsson58cfbde2010-04-02 03:37:03 +00001999static void
2000DiagnoseBaseOrMemInitializerOrder(Sema &SemaRef,
Anders Carlsson071d6102010-04-02 03:38:04 +00002001 const CXXConstructorDecl *Constructor,
John McCalld6ca8da2010-04-10 07:37:23 +00002002 CXXBaseOrMemberInitializer **Inits,
2003 unsigned NumInits) {
2004 if (Constructor->getDeclContext()->isDependentContext())
Anders Carlsson8d4c5ea2009-08-27 05:57:30 +00002005 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002006
John McCalld6ca8da2010-04-10 07:37:23 +00002007 if (SemaRef.Diags.getDiagnosticLevel(diag::warn_initializer_out_of_order)
2008 == Diagnostic::Ignored)
Anders Carlsson5c36fb22009-08-27 05:45:01 +00002009 return;
Anders Carlsson58cfbde2010-04-02 03:37:03 +00002010
John McCalld6ca8da2010-04-10 07:37:23 +00002011 // Build the list of bases and members in the order that they'll
2012 // actually be initialized. The explicit initializers should be in
2013 // this same order but may be missing things.
2014 llvm::SmallVector<const void*, 32> IdealInitKeys;
Mike Stump1eb44332009-09-09 15:08:12 +00002015
Anders Carlsson071d6102010-04-02 03:38:04 +00002016 const CXXRecordDecl *ClassDecl = Constructor->getParent();
2017
John McCalld6ca8da2010-04-10 07:37:23 +00002018 // 1. Virtual bases.
Anders Carlsson071d6102010-04-02 03:38:04 +00002019 for (CXXRecordDecl::base_class_const_iterator VBase =
Anders Carlsson5c36fb22009-08-27 05:45:01 +00002020 ClassDecl->vbases_begin(),
2021 E = ClassDecl->vbases_end(); VBase != E; ++VBase)
John McCalld6ca8da2010-04-10 07:37:23 +00002022 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, VBase->getType()));
Mike Stump1eb44332009-09-09 15:08:12 +00002023
John McCalld6ca8da2010-04-10 07:37:23 +00002024 // 2. Non-virtual bases.
Anders Carlsson071d6102010-04-02 03:38:04 +00002025 for (CXXRecordDecl::base_class_const_iterator Base = ClassDecl->bases_begin(),
Anders Carlsson5c36fb22009-08-27 05:45:01 +00002026 E = ClassDecl->bases_end(); Base != E; ++Base) {
Anders Carlsson5c36fb22009-08-27 05:45:01 +00002027 if (Base->isVirtual())
2028 continue;
John McCalld6ca8da2010-04-10 07:37:23 +00002029 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, Base->getType()));
Anders Carlsson5c36fb22009-08-27 05:45:01 +00002030 }
Mike Stump1eb44332009-09-09 15:08:12 +00002031
John McCalld6ca8da2010-04-10 07:37:23 +00002032 // 3. Direct fields.
Anders Carlsson5c36fb22009-08-27 05:45:01 +00002033 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
2034 E = ClassDecl->field_end(); Field != E; ++Field)
John McCalld6ca8da2010-04-10 07:37:23 +00002035 IdealInitKeys.push_back(GetKeyForTopLevelField(*Field));
Mike Stump1eb44332009-09-09 15:08:12 +00002036
John McCalld6ca8da2010-04-10 07:37:23 +00002037 unsigned NumIdealInits = IdealInitKeys.size();
2038 unsigned IdealIndex = 0;
Eli Friedman6347f422009-07-21 19:28:10 +00002039
John McCalld6ca8da2010-04-10 07:37:23 +00002040 CXXBaseOrMemberInitializer *PrevInit = 0;
2041 for (unsigned InitIndex = 0; InitIndex != NumInits; ++InitIndex) {
2042 CXXBaseOrMemberInitializer *Init = Inits[InitIndex];
2043 void *InitKey = GetKeyForMember(SemaRef.Context, Init, true);
2044
2045 // Scan forward to try to find this initializer in the idealized
2046 // initializers list.
2047 for (; IdealIndex != NumIdealInits; ++IdealIndex)
2048 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlsson5c36fb22009-08-27 05:45:01 +00002049 break;
John McCalld6ca8da2010-04-10 07:37:23 +00002050
2051 // If we didn't find this initializer, it must be because we
2052 // scanned past it on a previous iteration. That can only
2053 // happen if we're out of order; emit a warning.
Douglas Gregorfe2d3792010-05-20 23:49:34 +00002054 if (IdealIndex == NumIdealInits && PrevInit) {
John McCalld6ca8da2010-04-10 07:37:23 +00002055 Sema::SemaDiagnosticBuilder D =
2056 SemaRef.Diag(PrevInit->getSourceLocation(),
2057 diag::warn_initializer_out_of_order);
2058
2059 if (PrevInit->isMemberInitializer())
2060 D << 0 << PrevInit->getMember()->getDeclName();
2061 else
2062 D << 1 << PrevInit->getBaseClassInfo()->getType();
2063
2064 if (Init->isMemberInitializer())
2065 D << 0 << Init->getMember()->getDeclName();
2066 else
2067 D << 1 << Init->getBaseClassInfo()->getType();
2068
2069 // Move back to the initializer's location in the ideal list.
2070 for (IdealIndex = 0; IdealIndex != NumIdealInits; ++IdealIndex)
2071 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlsson5c36fb22009-08-27 05:45:01 +00002072 break;
John McCalld6ca8da2010-04-10 07:37:23 +00002073
2074 assert(IdealIndex != NumIdealInits &&
2075 "initializer not found in initializer list");
Fariborz Jahanianeb96e122009-07-09 19:59:47 +00002076 }
John McCalld6ca8da2010-04-10 07:37:23 +00002077
2078 PrevInit = Init;
Fariborz Jahanianeb96e122009-07-09 19:59:47 +00002079 }
Anders Carlssona7b35212009-03-25 02:58:17 +00002080}
2081
John McCall3c3ccdb2010-04-10 09:28:51 +00002082namespace {
2083bool CheckRedundantInit(Sema &S,
2084 CXXBaseOrMemberInitializer *Init,
2085 CXXBaseOrMemberInitializer *&PrevInit) {
2086 if (!PrevInit) {
2087 PrevInit = Init;
2088 return false;
2089 }
2090
2091 if (FieldDecl *Field = Init->getMember())
2092 S.Diag(Init->getSourceLocation(),
2093 diag::err_multiple_mem_initialization)
2094 << Field->getDeclName()
2095 << Init->getSourceRange();
2096 else {
2097 Type *BaseClass = Init->getBaseClass();
2098 assert(BaseClass && "neither field nor base");
2099 S.Diag(Init->getSourceLocation(),
2100 diag::err_multiple_base_initialization)
2101 << QualType(BaseClass, 0)
2102 << Init->getSourceRange();
2103 }
2104 S.Diag(PrevInit->getSourceLocation(), diag::note_previous_initializer)
2105 << 0 << PrevInit->getSourceRange();
2106
2107 return true;
2108}
2109
2110typedef std::pair<NamedDecl *, CXXBaseOrMemberInitializer *> UnionEntry;
2111typedef llvm::DenseMap<RecordDecl*, UnionEntry> RedundantUnionMap;
2112
2113bool CheckRedundantUnionInit(Sema &S,
2114 CXXBaseOrMemberInitializer *Init,
2115 RedundantUnionMap &Unions) {
2116 FieldDecl *Field = Init->getMember();
2117 RecordDecl *Parent = Field->getParent();
2118 if (!Parent->isAnonymousStructOrUnion())
2119 return false;
2120
2121 NamedDecl *Child = Field;
2122 do {
2123 if (Parent->isUnion()) {
2124 UnionEntry &En = Unions[Parent];
2125 if (En.first && En.first != Child) {
2126 S.Diag(Init->getSourceLocation(),
2127 diag::err_multiple_mem_union_initialization)
2128 << Field->getDeclName()
2129 << Init->getSourceRange();
2130 S.Diag(En.second->getSourceLocation(), diag::note_previous_initializer)
2131 << 0 << En.second->getSourceRange();
2132 return true;
2133 } else if (!En.first) {
2134 En.first = Child;
2135 En.second = Init;
2136 }
2137 }
2138
2139 Child = Parent;
2140 Parent = cast<RecordDecl>(Parent->getDeclContext());
2141 } while (Parent->isAnonymousStructOrUnion());
2142
2143 return false;
2144}
2145}
2146
Anders Carlsson58cfbde2010-04-02 03:37:03 +00002147/// ActOnMemInitializers - Handle the member initializers for a constructor.
2148void Sema::ActOnMemInitializers(DeclPtrTy ConstructorDecl,
2149 SourceLocation ColonLoc,
2150 MemInitTy **meminits, unsigned NumMemInits,
2151 bool AnyErrors) {
2152 if (!ConstructorDecl)
2153 return;
2154
2155 AdjustDeclIfTemplate(ConstructorDecl);
2156
2157 CXXConstructorDecl *Constructor
2158 = dyn_cast<CXXConstructorDecl>(ConstructorDecl.getAs<Decl>());
2159
2160 if (!Constructor) {
2161 Diag(ColonLoc, diag::err_only_constructors_take_base_inits);
2162 return;
2163 }
2164
2165 CXXBaseOrMemberInitializer **MemInits =
2166 reinterpret_cast<CXXBaseOrMemberInitializer **>(meminits);
John McCall3c3ccdb2010-04-10 09:28:51 +00002167
2168 // Mapping for the duplicate initializers check.
2169 // For member initializers, this is keyed with a FieldDecl*.
2170 // For base initializers, this is keyed with a Type*.
Anders Carlssonea356fb2010-04-02 05:42:15 +00002171 llvm::DenseMap<void*, CXXBaseOrMemberInitializer *> Members;
John McCall3c3ccdb2010-04-10 09:28:51 +00002172
2173 // Mapping for the inconsistent anonymous-union initializers check.
2174 RedundantUnionMap MemberUnions;
2175
Anders Carlssonea356fb2010-04-02 05:42:15 +00002176 bool HadError = false;
2177 for (unsigned i = 0; i < NumMemInits; i++) {
John McCall3c3ccdb2010-04-10 09:28:51 +00002178 CXXBaseOrMemberInitializer *Init = MemInits[i];
Anders Carlsson58cfbde2010-04-02 03:37:03 +00002179
Abramo Bagnaraa0af3b42010-05-26 18:09:23 +00002180 // Set the source order index.
2181 Init->setSourceOrder(i);
2182
John McCall3c3ccdb2010-04-10 09:28:51 +00002183 if (Init->isMemberInitializer()) {
2184 FieldDecl *Field = Init->getMember();
2185 if (CheckRedundantInit(*this, Init, Members[Field]) ||
2186 CheckRedundantUnionInit(*this, Init, MemberUnions))
2187 HadError = true;
2188 } else {
2189 void *Key = GetKeyForBase(Context, QualType(Init->getBaseClass(), 0));
2190 if (CheckRedundantInit(*this, Init, Members[Key]))
2191 HadError = true;
Anders Carlsson58cfbde2010-04-02 03:37:03 +00002192 }
Anders Carlsson58cfbde2010-04-02 03:37:03 +00002193 }
2194
Anders Carlssonea356fb2010-04-02 05:42:15 +00002195 if (HadError)
2196 return;
2197
Anders Carlsson58cfbde2010-04-02 03:37:03 +00002198 DiagnoseBaseOrMemInitializerOrder(*this, Constructor, MemInits, NumMemInits);
Anders Carlssonec3332b2010-04-02 03:43:34 +00002199
2200 SetBaseOrMemberInitializers(Constructor, MemInits, NumMemInits, AnyErrors);
Anders Carlsson58cfbde2010-04-02 03:37:03 +00002201}
2202
Fariborz Jahanian34374e62009-09-03 23:18:17 +00002203void
John McCallef027fe2010-03-16 21:39:52 +00002204Sema::MarkBaseAndMemberDestructorsReferenced(SourceLocation Location,
2205 CXXRecordDecl *ClassDecl) {
2206 // Ignore dependent contexts.
2207 if (ClassDecl->isDependentContext())
Anders Carlsson9f853df2009-11-17 04:44:12 +00002208 return;
John McCall58e6f342010-03-16 05:22:47 +00002209
2210 // FIXME: all the access-control diagnostics are positioned on the
2211 // field/base declaration. That's probably good; that said, the
2212 // user might reasonably want to know why the destructor is being
2213 // emitted, and we currently don't say.
Anders Carlsson9f853df2009-11-17 04:44:12 +00002214
Anders Carlsson9f853df2009-11-17 04:44:12 +00002215 // Non-static data members.
2216 for (CXXRecordDecl::field_iterator I = ClassDecl->field_begin(),
2217 E = ClassDecl->field_end(); I != E; ++I) {
2218 FieldDecl *Field = *I;
Fariborz Jahanian9614dc02010-05-17 18:15:18 +00002219 if (Field->isInvalidDecl())
2220 continue;
Anders Carlsson9f853df2009-11-17 04:44:12 +00002221 QualType FieldType = Context.getBaseElementType(Field->getType());
2222
2223 const RecordType* RT = FieldType->getAs<RecordType>();
2224 if (!RT)
2225 continue;
2226
2227 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl());
2228 if (FieldClassDecl->hasTrivialDestructor())
2229 continue;
2230
Douglas Gregordb89f282010-07-01 22:47:18 +00002231 CXXDestructorDecl *Dtor = LookupDestructor(FieldClassDecl);
John McCall58e6f342010-03-16 05:22:47 +00002232 CheckDestructorAccess(Field->getLocation(), Dtor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00002233 PDiag(diag::err_access_dtor_field)
John McCall58e6f342010-03-16 05:22:47 +00002234 << Field->getDeclName()
2235 << FieldType);
2236
John McCallef027fe2010-03-16 21:39:52 +00002237 MarkDeclarationReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Anders Carlsson9f853df2009-11-17 04:44:12 +00002238 }
2239
John McCall58e6f342010-03-16 05:22:47 +00002240 llvm::SmallPtrSet<const RecordType *, 8> DirectVirtualBases;
2241
Anders Carlsson9f853df2009-11-17 04:44:12 +00002242 // Bases.
2243 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
2244 E = ClassDecl->bases_end(); Base != E; ++Base) {
John McCall58e6f342010-03-16 05:22:47 +00002245 // Bases are always records in a well-formed non-dependent class.
2246 const RecordType *RT = Base->getType()->getAs<RecordType>();
2247
2248 // Remember direct virtual bases.
Anders Carlsson9f853df2009-11-17 04:44:12 +00002249 if (Base->isVirtual())
John McCall58e6f342010-03-16 05:22:47 +00002250 DirectVirtualBases.insert(RT);
Anders Carlsson9f853df2009-11-17 04:44:12 +00002251
2252 // Ignore trivial destructors.
John McCall58e6f342010-03-16 05:22:47 +00002253 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Anders Carlsson9f853df2009-11-17 04:44:12 +00002254 if (BaseClassDecl->hasTrivialDestructor())
2255 continue;
John McCall58e6f342010-03-16 05:22:47 +00002256
Douglas Gregordb89f282010-07-01 22:47:18 +00002257 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
John McCall58e6f342010-03-16 05:22:47 +00002258
2259 // FIXME: caret should be on the start of the class name
2260 CheckDestructorAccess(Base->getSourceRange().getBegin(), Dtor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00002261 PDiag(diag::err_access_dtor_base)
John McCall58e6f342010-03-16 05:22:47 +00002262 << Base->getType()
2263 << Base->getSourceRange());
Anders Carlsson9f853df2009-11-17 04:44:12 +00002264
John McCallef027fe2010-03-16 21:39:52 +00002265 MarkDeclarationReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Anders Carlsson9f853df2009-11-17 04:44:12 +00002266 }
2267
2268 // Virtual bases.
Fariborz Jahanian34374e62009-09-03 23:18:17 +00002269 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
2270 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
John McCall58e6f342010-03-16 05:22:47 +00002271
2272 // Bases are always records in a well-formed non-dependent class.
2273 const RecordType *RT = VBase->getType()->getAs<RecordType>();
2274
2275 // Ignore direct virtual bases.
2276 if (DirectVirtualBases.count(RT))
2277 continue;
2278
Anders Carlsson9f853df2009-11-17 04:44:12 +00002279 // Ignore trivial destructors.
John McCall58e6f342010-03-16 05:22:47 +00002280 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Fariborz Jahanian34374e62009-09-03 23:18:17 +00002281 if (BaseClassDecl->hasTrivialDestructor())
2282 continue;
John McCall58e6f342010-03-16 05:22:47 +00002283
Douglas Gregordb89f282010-07-01 22:47:18 +00002284 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
John McCall58e6f342010-03-16 05:22:47 +00002285 CheckDestructorAccess(ClassDecl->getLocation(), Dtor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00002286 PDiag(diag::err_access_dtor_vbase)
John McCall58e6f342010-03-16 05:22:47 +00002287 << VBase->getType());
2288
John McCallef027fe2010-03-16 21:39:52 +00002289 MarkDeclarationReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Fariborz Jahanian34374e62009-09-03 23:18:17 +00002290 }
2291}
2292
Fariborz Jahanian393612e2009-07-21 22:36:06 +00002293void Sema::ActOnDefaultCtorInitializers(DeclPtrTy CDtorDecl) {
Fariborz Jahanian560de452009-07-15 22:34:08 +00002294 if (!CDtorDecl)
Fariborz Jahaniand01c9152009-07-14 18:24:21 +00002295 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002296
Mike Stump1eb44332009-09-09 15:08:12 +00002297 if (CXXConstructorDecl *Constructor
Fariborz Jahanian560de452009-07-15 22:34:08 +00002298 = dyn_cast<CXXConstructorDecl>(CDtorDecl.getAs<Decl>()))
Anders Carlssonec3332b2010-04-02 03:43:34 +00002299 SetBaseOrMemberInitializers(Constructor, 0, 0, /*AnyErrors=*/false);
Fariborz Jahaniand01c9152009-07-14 18:24:21 +00002300}
2301
Mike Stump1eb44332009-09-09 15:08:12 +00002302bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
Anders Carlssone65a3c82009-03-24 17:23:42 +00002303 unsigned DiagID, AbstractDiagSelID SelID,
2304 const CXXRecordDecl *CurrentRD) {
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00002305 if (SelID == -1)
2306 return RequireNonAbstractType(Loc, T,
2307 PDiag(DiagID), CurrentRD);
2308 else
2309 return RequireNonAbstractType(Loc, T,
2310 PDiag(DiagID) << SelID, CurrentRD);
Mike Stump1eb44332009-09-09 15:08:12 +00002311}
2312
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00002313bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
2314 const PartialDiagnostic &PD,
2315 const CXXRecordDecl *CurrentRD) {
Anders Carlsson4681ebd2009-03-22 20:18:17 +00002316 if (!getLangOptions().CPlusPlus)
2317 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00002318
Anders Carlsson11f21a02009-03-23 19:10:31 +00002319 if (const ArrayType *AT = Context.getAsArrayType(T))
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00002320 return RequireNonAbstractType(Loc, AT->getElementType(), PD,
Anders Carlssone65a3c82009-03-24 17:23:42 +00002321 CurrentRD);
Mike Stump1eb44332009-09-09 15:08:12 +00002322
Ted Kremenek6217b802009-07-29 21:53:49 +00002323 if (const PointerType *PT = T->getAs<PointerType>()) {
Anders Carlsson5eff73c2009-03-24 01:46:45 +00002324 // Find the innermost pointer type.
Ted Kremenek6217b802009-07-29 21:53:49 +00002325 while (const PointerType *T = PT->getPointeeType()->getAs<PointerType>())
Anders Carlsson5eff73c2009-03-24 01:46:45 +00002326 PT = T;
Mike Stump1eb44332009-09-09 15:08:12 +00002327
Anders Carlsson5eff73c2009-03-24 01:46:45 +00002328 if (const ArrayType *AT = Context.getAsArrayType(PT->getPointeeType()))
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00002329 return RequireNonAbstractType(Loc, AT->getElementType(), PD, CurrentRD);
Anders Carlsson5eff73c2009-03-24 01:46:45 +00002330 }
Mike Stump1eb44332009-09-09 15:08:12 +00002331
Ted Kremenek6217b802009-07-29 21:53:49 +00002332 const RecordType *RT = T->getAs<RecordType>();
Anders Carlsson4681ebd2009-03-22 20:18:17 +00002333 if (!RT)
2334 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00002335
John McCall86ff3082010-02-04 22:26:26 +00002336 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
Anders Carlsson4681ebd2009-03-22 20:18:17 +00002337
Anders Carlssone65a3c82009-03-24 17:23:42 +00002338 if (CurrentRD && CurrentRD != RD)
2339 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00002340
John McCall86ff3082010-02-04 22:26:26 +00002341 // FIXME: is this reasonable? It matches current behavior, but....
Douglas Gregor952b0172010-02-11 01:04:33 +00002342 if (!RD->getDefinition())
John McCall86ff3082010-02-04 22:26:26 +00002343 return false;
2344
Anders Carlsson4681ebd2009-03-22 20:18:17 +00002345 if (!RD->isAbstract())
2346 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00002347
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00002348 Diag(Loc, PD) << RD->getDeclName();
Mike Stump1eb44332009-09-09 15:08:12 +00002349
Anders Carlsson4681ebd2009-03-22 20:18:17 +00002350 // Check if we've already emitted the list of pure virtual functions for this
2351 // class.
2352 if (PureVirtualClassDiagSet && PureVirtualClassDiagSet->count(RD))
2353 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00002354
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00002355 CXXFinalOverriderMap FinalOverriders;
2356 RD->getFinalOverriders(FinalOverriders);
Mike Stump1eb44332009-09-09 15:08:12 +00002357
Anders Carlssonffdb2d22010-06-03 01:00:02 +00002358 // Keep a set of seen pure methods so we won't diagnose the same method
2359 // more than once.
2360 llvm::SmallPtrSet<const CXXMethodDecl *, 8> SeenPureMethods;
2361
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00002362 for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(),
2363 MEnd = FinalOverriders.end();
2364 M != MEnd;
2365 ++M) {
2366 for (OverridingMethods::iterator SO = M->second.begin(),
2367 SOEnd = M->second.end();
2368 SO != SOEnd; ++SO) {
2369 // C++ [class.abstract]p4:
2370 // A class is abstract if it contains or inherits at least one
2371 // pure virtual function for which the final overrider is pure
2372 // virtual.
Mike Stump1eb44332009-09-09 15:08:12 +00002373
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00002374 //
2375 if (SO->second.size() != 1)
2376 continue;
2377
2378 if (!SO->second.front().Method->isPure())
2379 continue;
2380
Anders Carlssonffdb2d22010-06-03 01:00:02 +00002381 if (!SeenPureMethods.insert(SO->second.front().Method))
2382 continue;
2383
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00002384 Diag(SO->second.front().Method->getLocation(),
2385 diag::note_pure_virtual_function)
2386 << SO->second.front().Method->getDeclName();
2387 }
Anders Carlsson4681ebd2009-03-22 20:18:17 +00002388 }
2389
2390 if (!PureVirtualClassDiagSet)
2391 PureVirtualClassDiagSet.reset(new RecordDeclSetTy);
2392 PureVirtualClassDiagSet->insert(RD);
Mike Stump1eb44332009-09-09 15:08:12 +00002393
Anders Carlsson4681ebd2009-03-22 20:18:17 +00002394 return true;
2395}
2396
Anders Carlsson8211eff2009-03-24 01:19:16 +00002397namespace {
Benjamin Kramer85b45212009-11-28 19:45:26 +00002398 class AbstractClassUsageDiagnoser
Anders Carlsson8211eff2009-03-24 01:19:16 +00002399 : public DeclVisitor<AbstractClassUsageDiagnoser, bool> {
2400 Sema &SemaRef;
2401 CXXRecordDecl *AbstractClass;
Mike Stump1eb44332009-09-09 15:08:12 +00002402
Anders Carlssone65a3c82009-03-24 17:23:42 +00002403 bool VisitDeclContext(const DeclContext *DC) {
Anders Carlsson8211eff2009-03-24 01:19:16 +00002404 bool Invalid = false;
2405
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002406 for (CXXRecordDecl::decl_iterator I = DC->decls_begin(),
2407 E = DC->decls_end(); I != E; ++I)
Anders Carlsson8211eff2009-03-24 01:19:16 +00002408 Invalid |= Visit(*I);
Anders Carlssone65a3c82009-03-24 17:23:42 +00002409
Anders Carlsson8211eff2009-03-24 01:19:16 +00002410 return Invalid;
2411 }
Mike Stump1eb44332009-09-09 15:08:12 +00002412
Anders Carlssone65a3c82009-03-24 17:23:42 +00002413 public:
2414 AbstractClassUsageDiagnoser(Sema& SemaRef, CXXRecordDecl *ac)
2415 : SemaRef(SemaRef), AbstractClass(ac) {
2416 Visit(SemaRef.Context.getTranslationUnitDecl());
2417 }
Anders Carlsson8211eff2009-03-24 01:19:16 +00002418
Anders Carlssone65a3c82009-03-24 17:23:42 +00002419 bool VisitFunctionDecl(const FunctionDecl *FD) {
2420 if (FD->isThisDeclarationADefinition()) {
2421 // No need to do the check if we're in a definition, because it requires
2422 // that the return/param types are complete.
Mike Stump1eb44332009-09-09 15:08:12 +00002423 // because that requires
Anders Carlssone65a3c82009-03-24 17:23:42 +00002424 return VisitDeclContext(FD);
2425 }
Mike Stump1eb44332009-09-09 15:08:12 +00002426
Anders Carlssone65a3c82009-03-24 17:23:42 +00002427 // Check the return type.
John McCall183700f2009-09-21 23:43:11 +00002428 QualType RTy = FD->getType()->getAs<FunctionType>()->getResultType();
Mike Stump1eb44332009-09-09 15:08:12 +00002429 bool Invalid =
Anders Carlssone65a3c82009-03-24 17:23:42 +00002430 SemaRef.RequireNonAbstractType(FD->getLocation(), RTy,
2431 diag::err_abstract_type_in_decl,
2432 Sema::AbstractReturnType,
2433 AbstractClass);
2434
Mike Stump1eb44332009-09-09 15:08:12 +00002435 for (FunctionDecl::param_const_iterator I = FD->param_begin(),
Anders Carlssone65a3c82009-03-24 17:23:42 +00002436 E = FD->param_end(); I != E; ++I) {
Anders Carlsson8211eff2009-03-24 01:19:16 +00002437 const ParmVarDecl *VD = *I;
Mike Stump1eb44332009-09-09 15:08:12 +00002438 Invalid |=
Anders Carlsson8211eff2009-03-24 01:19:16 +00002439 SemaRef.RequireNonAbstractType(VD->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00002440 VD->getOriginalType(),
2441 diag::err_abstract_type_in_decl,
Anders Carlssone65a3c82009-03-24 17:23:42 +00002442 Sema::AbstractParamType,
2443 AbstractClass);
Anders Carlsson8211eff2009-03-24 01:19:16 +00002444 }
2445
2446 return Invalid;
2447 }
Mike Stump1eb44332009-09-09 15:08:12 +00002448
Anders Carlssone65a3c82009-03-24 17:23:42 +00002449 bool VisitDecl(const Decl* D) {
2450 if (const DeclContext *DC = dyn_cast<DeclContext>(D))
2451 return VisitDeclContext(DC);
Mike Stump1eb44332009-09-09 15:08:12 +00002452
Anders Carlssone65a3c82009-03-24 17:23:42 +00002453 return false;
2454 }
Anders Carlsson8211eff2009-03-24 01:19:16 +00002455 };
2456}
2457
Douglas Gregor1ab537b2009-12-03 18:33:45 +00002458/// \brief Perform semantic checks on a class definition that has been
2459/// completing, introducing implicitly-declared members, checking for
2460/// abstract types, etc.
Douglas Gregor23c94db2010-07-02 17:43:08 +00002461void Sema::CheckCompletedCXXClass(CXXRecordDecl *Record) {
Douglas Gregor1ab537b2009-12-03 18:33:45 +00002462 if (!Record || Record->isInvalidDecl())
2463 return;
2464
Eli Friedmanff2d8782009-12-16 20:00:27 +00002465 if (!Record->isDependentType())
Douglas Gregor23c94db2010-07-02 17:43:08 +00002466 AddImplicitlyDeclaredMembersToClass(Record);
Douglas Gregor159ef1e2010-01-06 04:44:19 +00002467
Eli Friedmanff2d8782009-12-16 20:00:27 +00002468 if (Record->isInvalidDecl())
2469 return;
2470
John McCall233a6412010-01-28 07:38:46 +00002471 // Set access bits correctly on the directly-declared conversions.
2472 UnresolvedSetImpl *Convs = Record->getConversionFunctions();
2473 for (UnresolvedSetIterator I = Convs->begin(), E = Convs->end(); I != E; ++I)
2474 Convs->setAccess(I, (*I)->getAccess());
2475
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00002476 // Determine whether we need to check for final overriders. We do
2477 // this either when there are virtual base classes (in which case we
2478 // may end up finding multiple final overriders for a given virtual
2479 // function) or any of the base classes is abstract (in which case
2480 // we might detect that this class is abstract).
2481 bool CheckFinalOverriders = false;
2482 if (Record->isPolymorphic() && !Record->isInvalidDecl() &&
2483 !Record->isDependentType()) {
2484 if (Record->getNumVBases())
2485 CheckFinalOverriders = true;
2486 else if (!Record->isAbstract()) {
2487 for (CXXRecordDecl::base_class_const_iterator B = Record->bases_begin(),
2488 BEnd = Record->bases_end();
2489 B != BEnd; ++B) {
2490 CXXRecordDecl *BaseDecl
2491 = cast<CXXRecordDecl>(B->getType()->getAs<RecordType>()->getDecl());
2492 if (BaseDecl->isAbstract()) {
2493 CheckFinalOverriders = true;
2494 break;
2495 }
2496 }
2497 }
Douglas Gregor1ab537b2009-12-03 18:33:45 +00002498 }
2499
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00002500 if (CheckFinalOverriders) {
2501 CXXFinalOverriderMap FinalOverriders;
2502 Record->getFinalOverriders(FinalOverriders);
2503
2504 for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(),
2505 MEnd = FinalOverriders.end();
2506 M != MEnd; ++M) {
2507 for (OverridingMethods::iterator SO = M->second.begin(),
2508 SOEnd = M->second.end();
2509 SO != SOEnd; ++SO) {
2510 assert(SO->second.size() > 0 &&
2511 "All virtual functions have overridding virtual functions");
2512 if (SO->second.size() == 1) {
2513 // C++ [class.abstract]p4:
2514 // A class is abstract if it contains or inherits at least one
2515 // pure virtual function for which the final overrider is pure
2516 // virtual.
2517 if (SO->second.front().Method->isPure())
2518 Record->setAbstract(true);
2519 continue;
2520 }
2521
2522 // C++ [class.virtual]p2:
2523 // In a derived class, if a virtual member function of a base
2524 // class subobject has more than one final overrider the
2525 // program is ill-formed.
2526 Diag(Record->getLocation(), diag::err_multiple_final_overriders)
2527 << (NamedDecl *)M->first << Record;
2528 Diag(M->first->getLocation(), diag::note_overridden_virtual_function);
2529 for (OverridingMethods::overriding_iterator OM = SO->second.begin(),
2530 OMEnd = SO->second.end();
2531 OM != OMEnd; ++OM)
2532 Diag(OM->Method->getLocation(), diag::note_final_overrider)
2533 << (NamedDecl *)M->first << OM->Method->getParent();
2534
2535 Record->setInvalidDecl();
2536 }
2537 }
2538 }
2539
2540 if (Record->isAbstract() && !Record->isInvalidDecl())
Douglas Gregor1ab537b2009-12-03 18:33:45 +00002541 (void)AbstractClassUsageDiagnoser(*this, Record);
Douglas Gregor325e5932010-04-15 00:00:53 +00002542
2543 // If this is not an aggregate type and has no user-declared constructor,
2544 // complain about any non-static data members of reference or const scalar
2545 // type, since they will never get initializers.
2546 if (!Record->isInvalidDecl() && !Record->isDependentType() &&
2547 !Record->isAggregate() && !Record->hasUserDeclaredConstructor()) {
2548 bool Complained = false;
2549 for (RecordDecl::field_iterator F = Record->field_begin(),
2550 FEnd = Record->field_end();
2551 F != FEnd; ++F) {
2552 if (F->getType()->isReferenceType() ||
Benjamin Kramer1deea662010-04-16 17:43:15 +00002553 (F->getType().isConstQualified() && F->getType()->isScalarType())) {
Douglas Gregor325e5932010-04-15 00:00:53 +00002554 if (!Complained) {
2555 Diag(Record->getLocation(), diag::warn_no_constructor_for_refconst)
2556 << Record->getTagKind() << Record;
2557 Complained = true;
2558 }
2559
2560 Diag(F->getLocation(), diag::note_refconst_member_not_initialized)
2561 << F->getType()->isReferenceType()
2562 << F->getDeclName();
2563 }
2564 }
2565 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +00002566
2567 if (Record->isDynamicClass())
2568 DynamicClasses.push_back(Record);
Douglas Gregor1ab537b2009-12-03 18:33:45 +00002569}
2570
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00002571void Sema::ActOnFinishCXXMemberSpecification(Scope* S, SourceLocation RLoc,
Chris Lattnerb28317a2009-03-28 19:18:32 +00002572 DeclPtrTy TagDecl,
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00002573 SourceLocation LBrac,
Douglas Gregor0b4c9b52010-03-29 14:42:08 +00002574 SourceLocation RBrac,
2575 AttributeList *AttrList) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00002576 if (!TagDecl)
2577 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002578
Douglas Gregor42af25f2009-05-11 19:58:34 +00002579 AdjustDeclIfTemplate(TagDecl);
Douglas Gregor1ab537b2009-12-03 18:33:45 +00002580
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00002581 ActOnFields(S, RLoc, TagDecl,
Chris Lattnerb28317a2009-03-28 19:18:32 +00002582 (DeclPtrTy*)FieldCollector->getCurFields(),
Douglas Gregor0b4c9b52010-03-29 14:42:08 +00002583 FieldCollector->getCurNumFields(), LBrac, RBrac, AttrList);
Douglas Gregor2943aed2009-03-03 04:44:36 +00002584
Douglas Gregor23c94db2010-07-02 17:43:08 +00002585 CheckCompletedCXXClass(
2586 dyn_cast_or_null<CXXRecordDecl>(TagDecl.getAs<Decl>()));
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00002587}
2588
Douglas Gregord92ec472010-07-01 05:10:53 +00002589namespace {
2590 /// \brief Helper class that collects exception specifications for
2591 /// implicitly-declared special member functions.
2592 class ImplicitExceptionSpecification {
2593 ASTContext &Context;
2594 bool AllowsAllExceptions;
2595 llvm::SmallPtrSet<CanQualType, 4> ExceptionsSeen;
2596 llvm::SmallVector<QualType, 4> Exceptions;
2597
2598 public:
2599 explicit ImplicitExceptionSpecification(ASTContext &Context)
2600 : Context(Context), AllowsAllExceptions(false) { }
2601
2602 /// \brief Whether the special member function should have any
2603 /// exception specification at all.
2604 bool hasExceptionSpecification() const {
2605 return !AllowsAllExceptions;
2606 }
2607
2608 /// \brief Whether the special member function should have a
2609 /// throw(...) exception specification (a Microsoft extension).
2610 bool hasAnyExceptionSpecification() const {
2611 return false;
2612 }
2613
2614 /// \brief The number of exceptions in the exception specification.
2615 unsigned size() const { return Exceptions.size(); }
2616
2617 /// \brief The set of exceptions in the exception specification.
2618 const QualType *data() const { return Exceptions.data(); }
2619
2620 /// \brief Note that
2621 void CalledDecl(CXXMethodDecl *Method) {
2622 // If we already know that we allow all exceptions, do nothing.
Douglas Gregor4681ca82010-07-01 15:29:53 +00002623 if (AllowsAllExceptions || !Method)
Douglas Gregord92ec472010-07-01 05:10:53 +00002624 return;
2625
2626 const FunctionProtoType *Proto
2627 = Method->getType()->getAs<FunctionProtoType>();
2628
2629 // If this function can throw any exceptions, make a note of that.
2630 if (!Proto->hasExceptionSpec() || Proto->hasAnyExceptionSpec()) {
2631 AllowsAllExceptions = true;
2632 ExceptionsSeen.clear();
2633 Exceptions.clear();
2634 return;
2635 }
2636
2637 // Record the exceptions in this function's exception specification.
2638 for (FunctionProtoType::exception_iterator E = Proto->exception_begin(),
2639 EEnd = Proto->exception_end();
2640 E != EEnd; ++E)
2641 if (ExceptionsSeen.insert(Context.getCanonicalType(*E)))
2642 Exceptions.push_back(*E);
2643 }
2644 };
2645}
2646
2647
Douglas Gregor396b7cd2008-11-03 17:51:48 +00002648/// AddImplicitlyDeclaredMembersToClass - Adds any implicitly-declared
2649/// special functions, such as the default constructor, copy
2650/// constructor, or destructor, to the given C++ class (C++
2651/// [special]p1). This routine can only be executed just before the
2652/// definition of the class is complete.
Douglas Gregor23c94db2010-07-02 17:43:08 +00002653void Sema::AddImplicitlyDeclaredMembersToClass(CXXRecordDecl *ClassDecl) {
Douglas Gregor32df23e2010-07-01 22:02:46 +00002654 if (!ClassDecl->hasUserDeclaredConstructor())
Douglas Gregor18274032010-07-03 00:47:00 +00002655 ++ASTContext::NumImplicitDefaultConstructors;
Douglas Gregor396b7cd2008-11-03 17:51:48 +00002656
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00002657 if (!ClassDecl->hasUserDeclaredCopyConstructor())
Douglas Gregor22584312010-07-02 23:41:54 +00002658 ++ASTContext::NumImplicitCopyConstructors;
Douglas Gregor396b7cd2008-11-03 17:51:48 +00002659
Douglas Gregora376d102010-07-02 21:50:04 +00002660 if (!ClassDecl->hasUserDeclaredCopyAssignment()) {
2661 ++ASTContext::NumImplicitCopyAssignmentOperators;
2662
2663 // If we have a dynamic class, then the copy assignment operator may be
2664 // virtual, so we have to declare it immediately. This ensures that, e.g.,
2665 // it shows up in the right place in the vtable and that we diagnose
2666 // problems with the implicit exception specification.
2667 if (ClassDecl->isDynamicClass())
2668 DeclareImplicitCopyAssignment(ClassDecl);
2669 }
Sebastian Redl64b45f72009-01-05 20:52:13 +00002670
Douglas Gregor4923aa22010-07-02 20:37:36 +00002671 if (!ClassDecl->hasUserDeclaredDestructor()) {
2672 ++ASTContext::NumImplicitDestructors;
2673
2674 // If we have a dynamic class, then the destructor may be virtual, so we
2675 // have to declare the destructor immediately. This ensures that, e.g., it
2676 // shows up in the right place in the vtable and that we diagnose problems
2677 // with the implicit exception specification.
2678 if (ClassDecl->isDynamicClass())
2679 DeclareImplicitDestructor(ClassDecl);
2680 }
Douglas Gregor396b7cd2008-11-03 17:51:48 +00002681}
2682
Douglas Gregor6569d682009-05-27 23:11:45 +00002683void Sema::ActOnReenterTemplateScope(Scope *S, DeclPtrTy TemplateD) {
Douglas Gregor1cdcc572009-09-10 00:12:48 +00002684 Decl *D = TemplateD.getAs<Decl>();
2685 if (!D)
2686 return;
2687
2688 TemplateParameterList *Params = 0;
2689 if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D))
2690 Params = Template->getTemplateParameters();
2691 else if (ClassTemplatePartialSpecializationDecl *PartialSpec
2692 = dyn_cast<ClassTemplatePartialSpecializationDecl>(D))
2693 Params = PartialSpec->getTemplateParameters();
2694 else
Douglas Gregor6569d682009-05-27 23:11:45 +00002695 return;
2696
Douglas Gregor6569d682009-05-27 23:11:45 +00002697 for (TemplateParameterList::iterator Param = Params->begin(),
2698 ParamEnd = Params->end();
2699 Param != ParamEnd; ++Param) {
2700 NamedDecl *Named = cast<NamedDecl>(*Param);
2701 if (Named->getDeclName()) {
2702 S->AddDecl(DeclPtrTy::make(Named));
2703 IdResolver.AddDecl(Named);
2704 }
2705 }
2706}
2707
John McCall7a1dc562009-12-19 10:49:29 +00002708void Sema::ActOnStartDelayedMemberDeclarations(Scope *S, DeclPtrTy RecordD) {
2709 if (!RecordD) return;
2710 AdjustDeclIfTemplate(RecordD);
2711 CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordD.getAs<Decl>());
2712 PushDeclContext(S, Record);
2713}
2714
2715void Sema::ActOnFinishDelayedMemberDeclarations(Scope *S, DeclPtrTy RecordD) {
2716 if (!RecordD) return;
2717 PopDeclContext();
2718}
2719
Douglas Gregor72b505b2008-12-16 21:30:33 +00002720/// ActOnStartDelayedCXXMethodDeclaration - We have completed
2721/// parsing a top-level (non-nested) C++ class, and we are now
2722/// parsing those parts of the given Method declaration that could
2723/// not be parsed earlier (C++ [class.mem]p2), such as default
2724/// arguments. This action should enter the scope of the given
2725/// Method declaration as if we had just parsed the qualified method
2726/// name. However, it should not bring the parameters into scope;
2727/// that will be performed by ActOnDelayedCXXMethodParameter.
Chris Lattnerb28317a2009-03-28 19:18:32 +00002728void Sema::ActOnStartDelayedCXXMethodDeclaration(Scope *S, DeclPtrTy MethodD) {
Douglas Gregor72b505b2008-12-16 21:30:33 +00002729}
2730
2731/// ActOnDelayedCXXMethodParameter - We've already started a delayed
2732/// C++ method declaration. We're (re-)introducing the given
2733/// function parameter into scope for use in parsing later parts of
2734/// the method declaration. For example, we could see an
2735/// ActOnParamDefaultArgument event for this parameter.
Chris Lattnerb28317a2009-03-28 19:18:32 +00002736void Sema::ActOnDelayedCXXMethodParameter(Scope *S, DeclPtrTy ParamD) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00002737 if (!ParamD)
2738 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002739
Chris Lattnerb28317a2009-03-28 19:18:32 +00002740 ParmVarDecl *Param = cast<ParmVarDecl>(ParamD.getAs<Decl>());
Douglas Gregor61366e92008-12-24 00:01:03 +00002741
2742 // If this parameter has an unparsed default argument, clear it out
2743 // to make way for the parsed default argument.
2744 if (Param->hasUnparsedDefaultArg())
2745 Param->setDefaultArg(0);
2746
Chris Lattnerb28317a2009-03-28 19:18:32 +00002747 S->AddDecl(DeclPtrTy::make(Param));
Douglas Gregor72b505b2008-12-16 21:30:33 +00002748 if (Param->getDeclName())
2749 IdResolver.AddDecl(Param);
2750}
2751
2752/// ActOnFinishDelayedCXXMethodDeclaration - We have finished
2753/// processing the delayed method declaration for Method. The method
2754/// declaration is now considered finished. There may be a separate
2755/// ActOnStartOfFunctionDef action later (not necessarily
2756/// immediately!) for this method, if it was also defined inside the
2757/// class body.
Chris Lattnerb28317a2009-03-28 19:18:32 +00002758void Sema::ActOnFinishDelayedCXXMethodDeclaration(Scope *S, DeclPtrTy MethodD) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00002759 if (!MethodD)
2760 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002761
Douglas Gregorefd5bda2009-08-24 11:57:43 +00002762 AdjustDeclIfTemplate(MethodD);
Mike Stump1eb44332009-09-09 15:08:12 +00002763
Chris Lattnerb28317a2009-03-28 19:18:32 +00002764 FunctionDecl *Method = cast<FunctionDecl>(MethodD.getAs<Decl>());
Douglas Gregor72b505b2008-12-16 21:30:33 +00002765
2766 // Now that we have our default arguments, check the constructor
2767 // again. It could produce additional diagnostics or affect whether
2768 // the class has implicitly-declared destructors, among other
2769 // things.
Chris Lattner6e475012009-04-25 08:35:12 +00002770 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Method))
2771 CheckConstructor(Constructor);
Douglas Gregor72b505b2008-12-16 21:30:33 +00002772
2773 // Check the default arguments, which we may have added.
2774 if (!Method->isInvalidDecl())
2775 CheckCXXDefaultArguments(Method);
2776}
2777
Douglas Gregor42a552f2008-11-05 20:51:48 +00002778/// CheckConstructorDeclarator - Called by ActOnDeclarator to check
Douglas Gregor72b505b2008-12-16 21:30:33 +00002779/// the well-formedness of the constructor declarator @p D with type @p
Douglas Gregor42a552f2008-11-05 20:51:48 +00002780/// R. If there are any errors in the declarator, this routine will
Chris Lattner65401802009-04-25 08:28:21 +00002781/// emit diagnostics and set the invalid bit to true. In any case, the type
2782/// will be updated to reflect a well-formed type for the constructor and
2783/// returned.
2784QualType Sema::CheckConstructorDeclarator(Declarator &D, QualType R,
2785 FunctionDecl::StorageClass &SC) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00002786 bool isVirtual = D.getDeclSpec().isVirtualSpecified();
Douglas Gregor42a552f2008-11-05 20:51:48 +00002787
2788 // C++ [class.ctor]p3:
2789 // A constructor shall not be virtual (10.3) or static (9.4). A
2790 // constructor can be invoked for a const, volatile or const
2791 // volatile object. A constructor shall not be declared const,
2792 // volatile, or const volatile (9.3.2).
2793 if (isVirtual) {
Chris Lattner65401802009-04-25 08:28:21 +00002794 if (!D.isInvalidType())
2795 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
2796 << "virtual" << SourceRange(D.getDeclSpec().getVirtualSpecLoc())
2797 << SourceRange(D.getIdentifierLoc());
2798 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00002799 }
2800 if (SC == FunctionDecl::Static) {
Chris Lattner65401802009-04-25 08:28:21 +00002801 if (!D.isInvalidType())
2802 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
2803 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
2804 << SourceRange(D.getIdentifierLoc());
2805 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00002806 SC = FunctionDecl::None;
2807 }
Mike Stump1eb44332009-09-09 15:08:12 +00002808
Chris Lattner65401802009-04-25 08:28:21 +00002809 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
2810 if (FTI.TypeQuals != 0) {
John McCall0953e762009-09-24 19:53:00 +00002811 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002812 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
2813 << "const" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00002814 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002815 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
2816 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00002817 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002818 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
2819 << "restrict" << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +00002820 }
Mike Stump1eb44332009-09-09 15:08:12 +00002821
Douglas Gregor42a552f2008-11-05 20:51:48 +00002822 // Rebuild the function type "R" without any type qualifiers (in
2823 // case any of the errors above fired) and with "void" as the
Douglas Gregord92ec472010-07-01 05:10:53 +00002824 // return type, since constructors don't have return types.
John McCall183700f2009-09-21 23:43:11 +00002825 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
Chris Lattner65401802009-04-25 08:28:21 +00002826 return Context.getFunctionType(Context.VoidTy, Proto->arg_type_begin(),
2827 Proto->getNumArgs(),
Douglas Gregorce056bc2010-02-21 22:15:06 +00002828 Proto->isVariadic(), 0,
2829 Proto->hasExceptionSpec(),
2830 Proto->hasAnyExceptionSpec(),
2831 Proto->getNumExceptions(),
2832 Proto->exception_begin(),
Rafael Espindola264ba482010-03-30 20:24:48 +00002833 Proto->getExtInfo());
Douglas Gregor42a552f2008-11-05 20:51:48 +00002834}
2835
Douglas Gregor72b505b2008-12-16 21:30:33 +00002836/// CheckConstructor - Checks a fully-formed constructor for
2837/// well-formedness, issuing any diagnostics required. Returns true if
2838/// the constructor declarator is invalid.
Chris Lattner6e475012009-04-25 08:35:12 +00002839void Sema::CheckConstructor(CXXConstructorDecl *Constructor) {
Mike Stump1eb44332009-09-09 15:08:12 +00002840 CXXRecordDecl *ClassDecl
Douglas Gregor33297562009-03-27 04:38:56 +00002841 = dyn_cast<CXXRecordDecl>(Constructor->getDeclContext());
2842 if (!ClassDecl)
Chris Lattner6e475012009-04-25 08:35:12 +00002843 return Constructor->setInvalidDecl();
Douglas Gregor72b505b2008-12-16 21:30:33 +00002844
2845 // C++ [class.copy]p3:
2846 // A declaration of a constructor for a class X is ill-formed if
2847 // its first parameter is of type (optionally cv-qualified) X and
2848 // either there are no other parameters or else all other
2849 // parameters have default arguments.
Douglas Gregor33297562009-03-27 04:38:56 +00002850 if (!Constructor->isInvalidDecl() &&
Mike Stump1eb44332009-09-09 15:08:12 +00002851 ((Constructor->getNumParams() == 1) ||
2852 (Constructor->getNumParams() > 1 &&
Douglas Gregor66724ea2009-11-14 01:20:54 +00002853 Constructor->getParamDecl(1)->hasDefaultArg())) &&
2854 Constructor->getTemplateSpecializationKind()
2855 != TSK_ImplicitInstantiation) {
Douglas Gregor72b505b2008-12-16 21:30:33 +00002856 QualType ParamType = Constructor->getParamDecl(0)->getType();
2857 QualType ClassTy = Context.getTagDeclType(ClassDecl);
2858 if (Context.getCanonicalType(ParamType).getUnqualifiedType() == ClassTy) {
Douglas Gregora3a83512009-04-01 23:51:29 +00002859 SourceLocation ParamLoc = Constructor->getParamDecl(0)->getLocation();
Douglas Gregoraeb4a282010-05-27 21:28:21 +00002860 const char *ConstRef
2861 = Constructor->getParamDecl(0)->getIdentifier() ? "const &"
2862 : " const &";
Douglas Gregora3a83512009-04-01 23:51:29 +00002863 Diag(ParamLoc, diag::err_constructor_byvalue_arg)
Douglas Gregoraeb4a282010-05-27 21:28:21 +00002864 << FixItHint::CreateInsertion(ParamLoc, ConstRef);
Douglas Gregor66724ea2009-11-14 01:20:54 +00002865
2866 // FIXME: Rather that making the constructor invalid, we should endeavor
2867 // to fix the type.
Chris Lattner6e475012009-04-25 08:35:12 +00002868 Constructor->setInvalidDecl();
Douglas Gregor72b505b2008-12-16 21:30:33 +00002869 }
2870 }
Mike Stump1eb44332009-09-09 15:08:12 +00002871
John McCall3d043362010-04-13 07:45:41 +00002872 // Notify the class that we've added a constructor. In principle we
2873 // don't need to do this for out-of-line declarations; in practice
2874 // we only instantiate the most recent declaration of a method, so
2875 // we have to call this for everything but friends.
2876 if (!Constructor->getFriendObjectKind())
2877 ClassDecl->addedConstructor(Context, Constructor);
Douglas Gregor72b505b2008-12-16 21:30:33 +00002878}
2879
John McCall15442822010-08-04 01:04:25 +00002880/// CheckDestructor - Checks a fully-formed destructor definition for
2881/// well-formedness, issuing any diagnostics required. Returns true
2882/// on error.
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00002883bool Sema::CheckDestructor(CXXDestructorDecl *Destructor) {
Anders Carlsson6d701392009-11-15 22:49:34 +00002884 CXXRecordDecl *RD = Destructor->getParent();
2885
2886 if (Destructor->isVirtual()) {
2887 SourceLocation Loc;
2888
2889 if (!Destructor->isImplicit())
2890 Loc = Destructor->getLocation();
2891 else
2892 Loc = RD->getLocation();
2893
2894 // If we have a virtual destructor, look up the deallocation function
2895 FunctionDecl *OperatorDelete = 0;
2896 DeclarationName Name =
2897 Context.DeclarationNames.getCXXOperatorName(OO_Delete);
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00002898 if (FindDeallocationFunction(Loc, RD, Name, OperatorDelete))
Anders Carlsson37909802009-11-30 21:24:50 +00002899 return true;
John McCall5efd91a2010-07-03 18:33:00 +00002900
2901 MarkDeclarationReferenced(Loc, OperatorDelete);
Anders Carlsson37909802009-11-30 21:24:50 +00002902
2903 Destructor->setOperatorDelete(OperatorDelete);
Anders Carlsson6d701392009-11-15 22:49:34 +00002904 }
Anders Carlsson37909802009-11-30 21:24:50 +00002905
2906 return false;
Anders Carlsson6d701392009-11-15 22:49:34 +00002907}
2908
Mike Stump1eb44332009-09-09 15:08:12 +00002909static inline bool
Anders Carlsson7786d1c2009-04-30 23:18:11 +00002910FTIHasSingleVoidArgument(DeclaratorChunk::FunctionTypeInfo &FTI) {
2911 return (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
2912 FTI.ArgInfo[0].Param &&
2913 FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType()->isVoidType());
2914}
2915
Douglas Gregor42a552f2008-11-05 20:51:48 +00002916/// CheckDestructorDeclarator - Called by ActOnDeclarator to check
2917/// the well-formednes of the destructor declarator @p D with type @p
2918/// R. If there are any errors in the declarator, this routine will
Chris Lattner65401802009-04-25 08:28:21 +00002919/// emit diagnostics and set the declarator to invalid. Even if this happens,
2920/// will be updated to reflect a well-formed type for the destructor and
2921/// returned.
Douglas Gregord92ec472010-07-01 05:10:53 +00002922QualType Sema::CheckDestructorDeclarator(Declarator &D, QualType R,
Chris Lattner65401802009-04-25 08:28:21 +00002923 FunctionDecl::StorageClass& SC) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00002924 // C++ [class.dtor]p1:
2925 // [...] A typedef-name that names a class is a class-name
2926 // (7.1.3); however, a typedef-name that names a class shall not
2927 // be used as the identifier in the declarator for a destructor
2928 // declaration.
Douglas Gregor3f9a0562009-11-03 01:35:08 +00002929 QualType DeclaratorType = GetTypeFromParser(D.getName().DestructorName);
Douglas Gregord92ec472010-07-01 05:10:53 +00002930 if (isa<TypedefType>(DeclaratorType))
Chris Lattner65401802009-04-25 08:28:21 +00002931 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
Douglas Gregor1a51b4a2009-02-09 15:09:02 +00002932 << DeclaratorType;
Douglas Gregor42a552f2008-11-05 20:51:48 +00002933
2934 // C++ [class.dtor]p2:
2935 // A destructor is used to destroy objects of its class type. A
2936 // destructor takes no parameters, and no return type can be
2937 // specified for it (not even void). The address of a destructor
2938 // shall not be taken. A destructor shall not be static. A
2939 // destructor can be invoked for a const, volatile or const
2940 // volatile object. A destructor shall not be declared const,
2941 // volatile or const volatile (9.3.2).
2942 if (SC == FunctionDecl::Static) {
Chris Lattner65401802009-04-25 08:28:21 +00002943 if (!D.isInvalidType())
2944 Diag(D.getIdentifierLoc(), diag::err_destructor_cannot_be)
2945 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
Douglas Gregord92ec472010-07-01 05:10:53 +00002946 << SourceRange(D.getIdentifierLoc())
2947 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
2948
Douglas Gregor42a552f2008-11-05 20:51:48 +00002949 SC = FunctionDecl::None;
2950 }
Chris Lattner65401802009-04-25 08:28:21 +00002951 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00002952 // Destructors don't have return types, but the parser will
2953 // happily parse something like:
2954 //
2955 // class X {
2956 // float ~X();
2957 // };
2958 //
2959 // The return type will be eliminated later.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002960 Diag(D.getIdentifierLoc(), diag::err_destructor_return_type)
2961 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
2962 << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +00002963 }
Mike Stump1eb44332009-09-09 15:08:12 +00002964
Chris Lattner65401802009-04-25 08:28:21 +00002965 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
2966 if (FTI.TypeQuals != 0 && !D.isInvalidType()) {
John McCall0953e762009-09-24 19:53:00 +00002967 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002968 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
2969 << "const" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00002970 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002971 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
2972 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00002973 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002974 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
2975 << "restrict" << SourceRange(D.getIdentifierLoc());
Chris Lattner65401802009-04-25 08:28:21 +00002976 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00002977 }
2978
2979 // Make sure we don't have any parameters.
Anders Carlsson7786d1c2009-04-30 23:18:11 +00002980 if (FTI.NumArgs > 0 && !FTIHasSingleVoidArgument(FTI)) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00002981 Diag(D.getIdentifierLoc(), diag::err_destructor_with_params);
2982
2983 // Delete the parameters.
Chris Lattner65401802009-04-25 08:28:21 +00002984 FTI.freeArgs();
2985 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00002986 }
2987
Mike Stump1eb44332009-09-09 15:08:12 +00002988 // Make sure the destructor isn't variadic.
Chris Lattner65401802009-04-25 08:28:21 +00002989 if (FTI.isVariadic) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00002990 Diag(D.getIdentifierLoc(), diag::err_destructor_variadic);
Chris Lattner65401802009-04-25 08:28:21 +00002991 D.setInvalidType();
2992 }
Douglas Gregor42a552f2008-11-05 20:51:48 +00002993
2994 // Rebuild the function type "R" without any type qualifiers or
2995 // parameters (in case any of the errors above fired) and with
2996 // "void" as the return type, since destructors don't have return
Douglas Gregord92ec472010-07-01 05:10:53 +00002997 // types.
2998 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
2999 if (!Proto)
3000 return QualType();
3001
Douglas Gregorce056bc2010-02-21 22:15:06 +00003002 return Context.getFunctionType(Context.VoidTy, 0, 0, false, 0,
Douglas Gregord92ec472010-07-01 05:10:53 +00003003 Proto->hasExceptionSpec(),
3004 Proto->hasAnyExceptionSpec(),
3005 Proto->getNumExceptions(),
3006 Proto->exception_begin(),
3007 Proto->getExtInfo());
Douglas Gregor42a552f2008-11-05 20:51:48 +00003008}
3009
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003010/// CheckConversionDeclarator - Called by ActOnDeclarator to check the
3011/// well-formednes of the conversion function declarator @p D with
3012/// type @p R. If there are any errors in the declarator, this routine
3013/// will emit diagnostics and return true. Otherwise, it will return
3014/// false. Either way, the type @p R will be updated to reflect a
3015/// well-formed type for the conversion operator.
Chris Lattner6e475012009-04-25 08:35:12 +00003016void Sema::CheckConversionDeclarator(Declarator &D, QualType &R,
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003017 FunctionDecl::StorageClass& SC) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003018 // C++ [class.conv.fct]p1:
3019 // Neither parameter types nor return type can be specified. The
Eli Friedman33a31382009-08-05 19:21:58 +00003020 // type of a conversion function (8.3.5) is "function taking no
Mike Stump1eb44332009-09-09 15:08:12 +00003021 // parameter returning conversion-type-id."
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003022 if (SC == FunctionDecl::Static) {
Chris Lattner6e475012009-04-25 08:35:12 +00003023 if (!D.isInvalidType())
3024 Diag(D.getIdentifierLoc(), diag::err_conv_function_not_member)
3025 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
3026 << SourceRange(D.getIdentifierLoc());
3027 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003028 SC = FunctionDecl::None;
3029 }
John McCalla3f81372010-04-13 00:04:31 +00003030
3031 QualType ConvType = GetTypeFromParser(D.getName().ConversionFunctionId);
3032
Chris Lattner6e475012009-04-25 08:35:12 +00003033 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003034 // Conversion functions don't have return types, but the parser will
3035 // happily parse something like:
3036 //
3037 // class X {
3038 // float operator bool();
3039 // };
3040 //
3041 // The return type will be changed later anyway.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003042 Diag(D.getIdentifierLoc(), diag::err_conv_function_return_type)
3043 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
3044 << SourceRange(D.getIdentifierLoc());
John McCalla3f81372010-04-13 00:04:31 +00003045 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003046 }
3047
John McCalla3f81372010-04-13 00:04:31 +00003048 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
3049
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003050 // Make sure we don't have any parameters.
John McCalla3f81372010-04-13 00:04:31 +00003051 if (Proto->getNumArgs() > 0) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003052 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_params);
3053
3054 // Delete the parameters.
Chris Lattner1833a832009-01-20 21:06:38 +00003055 D.getTypeObject(0).Fun.freeArgs();
Chris Lattner6e475012009-04-25 08:35:12 +00003056 D.setInvalidType();
John McCalla3f81372010-04-13 00:04:31 +00003057 } else if (Proto->isVariadic()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003058 Diag(D.getIdentifierLoc(), diag::err_conv_function_variadic);
Chris Lattner6e475012009-04-25 08:35:12 +00003059 D.setInvalidType();
3060 }
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003061
John McCalla3f81372010-04-13 00:04:31 +00003062 // Diagnose "&operator bool()" and other such nonsense. This
3063 // is actually a gcc extension which we don't support.
3064 if (Proto->getResultType() != ConvType) {
3065 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_complex_decl)
3066 << Proto->getResultType();
3067 D.setInvalidType();
3068 ConvType = Proto->getResultType();
3069 }
3070
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003071 // C++ [class.conv.fct]p4:
3072 // The conversion-type-id shall not represent a function type nor
3073 // an array type.
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003074 if (ConvType->isArrayType()) {
3075 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_array);
3076 ConvType = Context.getPointerType(ConvType);
Chris Lattner6e475012009-04-25 08:35:12 +00003077 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003078 } else if (ConvType->isFunctionType()) {
3079 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_function);
3080 ConvType = Context.getPointerType(ConvType);
Chris Lattner6e475012009-04-25 08:35:12 +00003081 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003082 }
3083
3084 // Rebuild the function type "R" without any parameters (in case any
3085 // of the errors above fired) and with the conversion type as the
Mike Stump1eb44332009-09-09 15:08:12 +00003086 // return type.
John McCalla3f81372010-04-13 00:04:31 +00003087 if (D.isInvalidType()) {
3088 R = Context.getFunctionType(ConvType, 0, 0, false,
3089 Proto->getTypeQuals(),
3090 Proto->hasExceptionSpec(),
3091 Proto->hasAnyExceptionSpec(),
3092 Proto->getNumExceptions(),
3093 Proto->exception_begin(),
3094 Proto->getExtInfo());
3095 }
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003096
Douglas Gregor09f41cf2009-01-14 15:45:31 +00003097 // C++0x explicit conversion operators.
3098 if (D.getDeclSpec().isExplicitSpecified() && !getLangOptions().CPlusPlus0x)
Mike Stump1eb44332009-09-09 15:08:12 +00003099 Diag(D.getDeclSpec().getExplicitSpecLoc(),
Douglas Gregor09f41cf2009-01-14 15:45:31 +00003100 diag::warn_explicit_conversion_functions)
3101 << SourceRange(D.getDeclSpec().getExplicitSpecLoc());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003102}
3103
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003104/// ActOnConversionDeclarator - Called by ActOnDeclarator to complete
3105/// the declaration of the given C++ conversion function. This routine
3106/// is responsible for recording the conversion function in the C++
3107/// class, if possible.
Chris Lattnerb28317a2009-03-28 19:18:32 +00003108Sema::DeclPtrTy Sema::ActOnConversionDeclarator(CXXConversionDecl *Conversion) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003109 assert(Conversion && "Expected to receive a conversion function declaration");
3110
Douglas Gregor9d350972008-12-12 08:25:50 +00003111 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Conversion->getDeclContext());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003112
3113 // Make sure we aren't redeclaring the conversion function.
3114 QualType ConvType = Context.getCanonicalType(Conversion->getConversionType());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003115
3116 // C++ [class.conv.fct]p1:
3117 // [...] A conversion function is never used to convert a
3118 // (possibly cv-qualified) object to the (possibly cv-qualified)
3119 // same object type (or a reference to it), to a (possibly
3120 // cv-qualified) base class of that type (or a reference to it),
3121 // or to (possibly cv-qualified) void.
Mike Stump390b4cc2009-05-16 07:39:55 +00003122 // FIXME: Suppress this warning if the conversion function ends up being a
3123 // virtual function that overrides a virtual function in a base class.
Mike Stump1eb44332009-09-09 15:08:12 +00003124 QualType ClassType
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003125 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Ted Kremenek6217b802009-07-29 21:53:49 +00003126 if (const ReferenceType *ConvTypeRef = ConvType->getAs<ReferenceType>())
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003127 ConvType = ConvTypeRef->getPointeeType();
3128 if (ConvType->isRecordType()) {
3129 ConvType = Context.getCanonicalType(ConvType).getUnqualifiedType();
3130 if (ConvType == ClassType)
Chris Lattner5dc266a2008-11-20 06:13:02 +00003131 Diag(Conversion->getLocation(), diag::warn_conv_to_self_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00003132 << ClassType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003133 else if (IsDerivedFrom(ClassType, ConvType))
Chris Lattner5dc266a2008-11-20 06:13:02 +00003134 Diag(Conversion->getLocation(), diag::warn_conv_to_base_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00003135 << ClassType << ConvType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003136 } else if (ConvType->isVoidType()) {
Chris Lattner5dc266a2008-11-20 06:13:02 +00003137 Diag(Conversion->getLocation(), diag::warn_conv_to_void_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00003138 << ClassType << ConvType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003139 }
3140
Douglas Gregor48026d22010-01-11 18:40:55 +00003141 if (Conversion->getPrimaryTemplate()) {
3142 // ignore specializations
3143 } else if (Conversion->getPreviousDeclaration()) {
Mike Stump1eb44332009-09-09 15:08:12 +00003144 if (FunctionTemplateDecl *ConversionTemplate
Douglas Gregor0c551062010-01-11 18:53:25 +00003145 = Conversion->getDescribedFunctionTemplate()) {
3146 if (ClassDecl->replaceConversion(
3147 ConversionTemplate->getPreviousDeclaration(),
3148 ConversionTemplate))
3149 return DeclPtrTy::make(ConversionTemplate);
3150 } else if (ClassDecl->replaceConversion(Conversion->getPreviousDeclaration(),
3151 Conversion))
John McCallba135432009-11-21 08:51:07 +00003152 return DeclPtrTy::make(Conversion);
Douglas Gregor70316a02008-12-26 15:00:45 +00003153 assert(Conversion->isInvalidDecl() && "Conversion should not get here.");
Mike Stump1eb44332009-09-09 15:08:12 +00003154 } else if (FunctionTemplateDecl *ConversionTemplate
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00003155 = Conversion->getDescribedFunctionTemplate())
Fariborz Jahaniandebc6292009-09-12 19:02:34 +00003156 ClassDecl->addConversionFunction(ConversionTemplate);
Douglas Gregor48026d22010-01-11 18:40:55 +00003157 else
Fariborz Jahaniandebc6292009-09-12 19:02:34 +00003158 ClassDecl->addConversionFunction(Conversion);
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003159
Chris Lattnerb28317a2009-03-28 19:18:32 +00003160 return DeclPtrTy::make(Conversion);
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003161}
3162
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003163//===----------------------------------------------------------------------===//
3164// Namespace Handling
3165//===----------------------------------------------------------------------===//
3166
3167/// ActOnStartNamespaceDef - This is called at the start of a namespace
3168/// definition.
Chris Lattnerb28317a2009-03-28 19:18:32 +00003169Sema::DeclPtrTy Sema::ActOnStartNamespaceDef(Scope *NamespcScope,
3170 SourceLocation IdentLoc,
3171 IdentifierInfo *II,
Anders Carlsson2a3503d2010-02-07 01:09:23 +00003172 SourceLocation LBrace,
3173 AttributeList *AttrList) {
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003174 NamespaceDecl *Namespc =
3175 NamespaceDecl::Create(Context, CurContext, IdentLoc, II);
3176 Namespc->setLBracLoc(LBrace);
3177
3178 Scope *DeclRegionScope = NamespcScope->getParent();
3179
Anders Carlsson2a3503d2010-02-07 01:09:23 +00003180 ProcessDeclAttributeList(DeclRegionScope, Namespc, AttrList);
3181
Eli Friedmanaa8b0d12010-08-05 06:57:20 +00003182 if (const VisibilityAttr *attr = Namespc->getAttr<VisibilityAttr>())
3183 PushPragmaVisibility(attr->getVisibility());
3184
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003185 if (II) {
3186 // C++ [namespace.def]p2:
3187 // The identifier in an original-namespace-definition shall not have been
3188 // previously defined in the declarative region in which the
3189 // original-namespace-definition appears. The identifier in an
3190 // original-namespace-definition is the name of the namespace. Subsequently
3191 // in that declarative region, it is treated as an original-namespace-name.
3192
John McCallf36e02d2009-10-09 21:13:30 +00003193 NamedDecl *PrevDecl
Douglas Gregorc83c6872010-04-15 22:33:43 +00003194 = LookupSingleName(DeclRegionScope, II, IdentLoc, LookupOrdinaryName,
John McCall7d384dd2009-11-18 07:57:50 +00003195 ForRedeclaration);
Mike Stump1eb44332009-09-09 15:08:12 +00003196
Douglas Gregor44b43212008-12-11 16:49:14 +00003197 if (NamespaceDecl *OrigNS = dyn_cast_or_null<NamespaceDecl>(PrevDecl)) {
3198 // This is an extended namespace definition.
3199 // Attach this namespace decl to the chain of extended namespace
3200 // definitions.
3201 OrigNS->setNextNamespace(Namespc);
3202 Namespc->setOriginalNamespace(OrigNS->getOriginalNamespace());
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003203
Mike Stump1eb44332009-09-09 15:08:12 +00003204 // Remove the previous declaration from the scope.
Chris Lattnerb28317a2009-03-28 19:18:32 +00003205 if (DeclRegionScope->isDeclScope(DeclPtrTy::make(OrigNS))) {
Douglas Gregore267ff32008-12-11 20:41:00 +00003206 IdResolver.RemoveDecl(OrigNS);
Chris Lattnerb28317a2009-03-28 19:18:32 +00003207 DeclRegionScope->RemoveDecl(DeclPtrTy::make(OrigNS));
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003208 }
Douglas Gregor44b43212008-12-11 16:49:14 +00003209 } else if (PrevDecl) {
3210 // This is an invalid name redefinition.
3211 Diag(Namespc->getLocation(), diag::err_redefinition_different_kind)
3212 << Namespc->getDeclName();
3213 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
3214 Namespc->setInvalidDecl();
3215 // Continue on to push Namespc as current DeclContext and return it.
Douglas Gregor7adb10f2009-09-15 22:30:29 +00003216 } else if (II->isStr("std") &&
3217 CurContext->getLookupContext()->isTranslationUnit()) {
3218 // This is the first "real" definition of the namespace "std", so update
3219 // our cache of the "std" namespace to point at this definition.
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00003220 if (NamespaceDecl *StdNS = getStdNamespace()) {
Douglas Gregor7adb10f2009-09-15 22:30:29 +00003221 // We had already defined a dummy namespace "std". Link this new
3222 // namespace definition to the dummy namespace "std".
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00003223 StdNS->setNextNamespace(Namespc);
3224 StdNS->setLocation(IdentLoc);
3225 Namespc->setOriginalNamespace(StdNS->getOriginalNamespace());
Douglas Gregor7adb10f2009-09-15 22:30:29 +00003226 }
3227
3228 // Make our StdNamespace cache point at the first real definition of the
3229 // "std" namespace.
3230 StdNamespace = Namespc;
Mike Stump1eb44332009-09-09 15:08:12 +00003231 }
Douglas Gregor44b43212008-12-11 16:49:14 +00003232
3233 PushOnScopeChains(Namespc, DeclRegionScope);
3234 } else {
John McCall9aeed322009-10-01 00:25:31 +00003235 // Anonymous namespaces.
John McCall5fdd7642009-12-16 02:06:49 +00003236 assert(Namespc->isAnonymousNamespace());
John McCall5fdd7642009-12-16 02:06:49 +00003237
3238 // Link the anonymous namespace into its parent.
3239 NamespaceDecl *PrevDecl;
3240 DeclContext *Parent = CurContext->getLookupContext();
3241 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
3242 PrevDecl = TU->getAnonymousNamespace();
3243 TU->setAnonymousNamespace(Namespc);
3244 } else {
3245 NamespaceDecl *ND = cast<NamespaceDecl>(Parent);
3246 PrevDecl = ND->getAnonymousNamespace();
3247 ND->setAnonymousNamespace(Namespc);
3248 }
3249
3250 // Link the anonymous namespace with its previous declaration.
3251 if (PrevDecl) {
3252 assert(PrevDecl->isAnonymousNamespace());
3253 assert(!PrevDecl->getNextNamespace());
3254 Namespc->setOriginalNamespace(PrevDecl->getOriginalNamespace());
3255 PrevDecl->setNextNamespace(Namespc);
3256 }
John McCall9aeed322009-10-01 00:25:31 +00003257
Douglas Gregora4181472010-03-24 00:46:35 +00003258 CurContext->addDecl(Namespc);
3259
John McCall9aeed322009-10-01 00:25:31 +00003260 // C++ [namespace.unnamed]p1. An unnamed-namespace-definition
3261 // behaves as if it were replaced by
3262 // namespace unique { /* empty body */ }
3263 // using namespace unique;
3264 // namespace unique { namespace-body }
3265 // where all occurrences of 'unique' in a translation unit are
3266 // replaced by the same identifier and this identifier differs
3267 // from all other identifiers in the entire program.
3268
3269 // We just create the namespace with an empty name and then add an
3270 // implicit using declaration, just like the standard suggests.
3271 //
3272 // CodeGen enforces the "universally unique" aspect by giving all
3273 // declarations semantically contained within an anonymous
3274 // namespace internal linkage.
3275
John McCall5fdd7642009-12-16 02:06:49 +00003276 if (!PrevDecl) {
3277 UsingDirectiveDecl* UD
3278 = UsingDirectiveDecl::Create(Context, CurContext,
3279 /* 'using' */ LBrace,
3280 /* 'namespace' */ SourceLocation(),
3281 /* qualifier */ SourceRange(),
3282 /* NNS */ NULL,
3283 /* identifier */ SourceLocation(),
3284 Namespc,
3285 /* Ancestor */ CurContext);
3286 UD->setImplicit();
3287 CurContext->addDecl(UD);
3288 }
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003289 }
3290
3291 // Although we could have an invalid decl (i.e. the namespace name is a
3292 // redefinition), push it as current DeclContext and try to continue parsing.
Mike Stump390b4cc2009-05-16 07:39:55 +00003293 // FIXME: We should be able to push Namespc here, so that the each DeclContext
3294 // for the namespace has the declarations that showed up in that particular
3295 // namespace definition.
Douglas Gregor44b43212008-12-11 16:49:14 +00003296 PushDeclContext(NamespcScope, Namespc);
Chris Lattnerb28317a2009-03-28 19:18:32 +00003297 return DeclPtrTy::make(Namespc);
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003298}
3299
Sebastian Redleb0d8c92009-11-23 15:34:23 +00003300/// getNamespaceDecl - Returns the namespace a decl represents. If the decl
3301/// is a namespace alias, returns the namespace it points to.
3302static inline NamespaceDecl *getNamespaceDecl(NamedDecl *D) {
3303 if (NamespaceAliasDecl *AD = dyn_cast_or_null<NamespaceAliasDecl>(D))
3304 return AD->getNamespace();
3305 return dyn_cast_or_null<NamespaceDecl>(D);
3306}
3307
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003308/// ActOnFinishNamespaceDef - This callback is called after a namespace is
3309/// exited. Decl is the DeclTy returned by ActOnStartNamespaceDef.
Chris Lattnerb28317a2009-03-28 19:18:32 +00003310void Sema::ActOnFinishNamespaceDef(DeclPtrTy D, SourceLocation RBrace) {
3311 Decl *Dcl = D.getAs<Decl>();
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003312 NamespaceDecl *Namespc = dyn_cast_or_null<NamespaceDecl>(Dcl);
3313 assert(Namespc && "Invalid parameter, expected NamespaceDecl");
3314 Namespc->setRBracLoc(RBrace);
3315 PopDeclContext();
Eli Friedmanaa8b0d12010-08-05 06:57:20 +00003316 if (Namespc->hasAttr<VisibilityAttr>())
3317 PopPragmaVisibility();
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003318}
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00003319
Douglas Gregor66992202010-06-29 17:53:46 +00003320/// \brief Retrieve the special "std" namespace, which may require us to
3321/// implicitly define the namespace.
Argyrios Kyrtzidis26faaac2010-08-02 07:14:39 +00003322NamespaceDecl *Sema::getOrCreateStdNamespace() {
Douglas Gregor66992202010-06-29 17:53:46 +00003323 if (!StdNamespace) {
3324 // The "std" namespace has not yet been defined, so build one implicitly.
3325 StdNamespace = NamespaceDecl::Create(Context,
3326 Context.getTranslationUnitDecl(),
3327 SourceLocation(),
3328 &PP.getIdentifierTable().get("std"));
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00003329 getStdNamespace()->setImplicit(true);
Douglas Gregor66992202010-06-29 17:53:46 +00003330 }
3331
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00003332 return getStdNamespace();
Douglas Gregor66992202010-06-29 17:53:46 +00003333}
3334
Chris Lattnerb28317a2009-03-28 19:18:32 +00003335Sema::DeclPtrTy Sema::ActOnUsingDirective(Scope *S,
3336 SourceLocation UsingLoc,
3337 SourceLocation NamespcLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00003338 CXXScopeSpec &SS,
Chris Lattnerb28317a2009-03-28 19:18:32 +00003339 SourceLocation IdentLoc,
3340 IdentifierInfo *NamespcName,
3341 AttributeList *AttrList) {
Douglas Gregorf780abc2008-12-30 03:27:21 +00003342 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
3343 assert(NamespcName && "Invalid NamespcName.");
3344 assert(IdentLoc.isValid() && "Invalid NamespceName location.");
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003345 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Douglas Gregorf780abc2008-12-30 03:27:21 +00003346
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003347 UsingDirectiveDecl *UDir = 0;
Douglas Gregor66992202010-06-29 17:53:46 +00003348 NestedNameSpecifier *Qualifier = 0;
3349 if (SS.isSet())
3350 Qualifier = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
3351
Douglas Gregoreb11cd02009-01-14 22:20:51 +00003352 // Lookup namespace name.
John McCalla24dc2e2009-11-17 02:14:36 +00003353 LookupResult R(*this, NamespcName, IdentLoc, LookupNamespaceName);
3354 LookupParsedName(R, S, &SS);
3355 if (R.isAmbiguous())
Chris Lattnerb28317a2009-03-28 19:18:32 +00003356 return DeclPtrTy();
John McCalla24dc2e2009-11-17 02:14:36 +00003357
Douglas Gregor66992202010-06-29 17:53:46 +00003358 if (R.empty()) {
3359 // Allow "using namespace std;" or "using namespace ::std;" even if
3360 // "std" hasn't been defined yet, for GCC compatibility.
3361 if ((!Qualifier || Qualifier->getKind() == NestedNameSpecifier::Global) &&
3362 NamespcName->isStr("std")) {
3363 Diag(IdentLoc, diag::ext_using_undefined_std);
Argyrios Kyrtzidis26faaac2010-08-02 07:14:39 +00003364 R.addDecl(getOrCreateStdNamespace());
Douglas Gregor66992202010-06-29 17:53:46 +00003365 R.resolveKind();
3366 }
3367 // Otherwise, attempt typo correction.
3368 else if (DeclarationName Corrected = CorrectTypo(R, S, &SS, 0, false,
3369 CTC_NoKeywords, 0)) {
3370 if (R.getAsSingle<NamespaceDecl>() ||
3371 R.getAsSingle<NamespaceAliasDecl>()) {
3372 if (DeclContext *DC = computeDeclContext(SS, false))
3373 Diag(IdentLoc, diag::err_using_directive_member_suggest)
3374 << NamespcName << DC << Corrected << SS.getRange()
3375 << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
3376 else
3377 Diag(IdentLoc, diag::err_using_directive_suggest)
3378 << NamespcName << Corrected
3379 << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
3380 Diag(R.getFoundDecl()->getLocation(), diag::note_namespace_defined_here)
3381 << Corrected;
3382
3383 NamespcName = Corrected.getAsIdentifierInfo();
Douglas Gregor12eb5d62010-06-29 19:27:42 +00003384 } else {
3385 R.clear();
3386 R.setLookupName(NamespcName);
Douglas Gregor66992202010-06-29 17:53:46 +00003387 }
3388 }
3389 }
3390
John McCallf36e02d2009-10-09 21:13:30 +00003391 if (!R.empty()) {
Sebastian Redleb0d8c92009-11-23 15:34:23 +00003392 NamedDecl *Named = R.getFoundDecl();
3393 assert((isa<NamespaceDecl>(Named) || isa<NamespaceAliasDecl>(Named))
3394 && "expected namespace decl");
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003395 // C++ [namespace.udir]p1:
3396 // A using-directive specifies that the names in the nominated
3397 // namespace can be used in the scope in which the
3398 // using-directive appears after the using-directive. During
3399 // unqualified name lookup (3.4.1), the names appear as if they
3400 // were declared in the nearest enclosing namespace which
3401 // contains both the using-directive and the nominated
Eli Friedman33a31382009-08-05 19:21:58 +00003402 // namespace. [Note: in this context, "contains" means "contains
3403 // directly or indirectly". ]
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003404
3405 // Find enclosing context containing both using-directive and
3406 // nominated namespace.
Sebastian Redleb0d8c92009-11-23 15:34:23 +00003407 NamespaceDecl *NS = getNamespaceDecl(Named);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003408 DeclContext *CommonAncestor = cast<DeclContext>(NS);
3409 while (CommonAncestor && !CommonAncestor->Encloses(CurContext))
3410 CommonAncestor = CommonAncestor->getParent();
3411
Sebastian Redleb0d8c92009-11-23 15:34:23 +00003412 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc,
Douglas Gregor8419fa32009-05-30 06:31:56 +00003413 SS.getRange(),
3414 (NestedNameSpecifier *)SS.getScopeRep(),
Sebastian Redleb0d8c92009-11-23 15:34:23 +00003415 IdentLoc, Named, CommonAncestor);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003416 PushUsingDirective(S, UDir);
Douglas Gregorf780abc2008-12-30 03:27:21 +00003417 } else {
Chris Lattneread013e2009-01-06 07:24:29 +00003418 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
Douglas Gregorf780abc2008-12-30 03:27:21 +00003419 }
3420
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003421 // FIXME: We ignore attributes for now.
Douglas Gregorf780abc2008-12-30 03:27:21 +00003422 delete AttrList;
Chris Lattnerb28317a2009-03-28 19:18:32 +00003423 return DeclPtrTy::make(UDir);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003424}
3425
3426void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) {
3427 // If scope has associated entity, then using directive is at namespace
3428 // or translation unit scope. We add UsingDirectiveDecls, into
3429 // it's lookup structure.
3430 if (DeclContext *Ctx = static_cast<DeclContext*>(S->getEntity()))
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003431 Ctx->addDecl(UDir);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003432 else
3433 // Otherwise it is block-sope. using-directives will affect lookup
3434 // only to the end of scope.
Chris Lattnerb28317a2009-03-28 19:18:32 +00003435 S->PushUsingDirective(DeclPtrTy::make(UDir));
Douglas Gregorf780abc2008-12-30 03:27:21 +00003436}
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00003437
Douglas Gregor9cfbe482009-06-20 00:51:54 +00003438
3439Sema::DeclPtrTy Sema::ActOnUsingDeclaration(Scope *S,
Anders Carlsson595adc12009-08-29 19:54:19 +00003440 AccessSpecifier AS,
John McCall60fa3cf2009-12-11 02:10:03 +00003441 bool HasUsingKeyword,
Anders Carlssoncf9f9212009-08-28 03:16:11 +00003442 SourceLocation UsingLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00003443 CXXScopeSpec &SS,
Douglas Gregor12c118a2009-11-04 16:30:06 +00003444 UnqualifiedId &Name,
Anders Carlssoncf9f9212009-08-28 03:16:11 +00003445 AttributeList *AttrList,
John McCall7ba107a2009-11-18 02:36:19 +00003446 bool IsTypeName,
3447 SourceLocation TypenameLoc) {
Douglas Gregor9cfbe482009-06-20 00:51:54 +00003448 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Mike Stump1eb44332009-09-09 15:08:12 +00003449
Douglas Gregor12c118a2009-11-04 16:30:06 +00003450 switch (Name.getKind()) {
3451 case UnqualifiedId::IK_Identifier:
3452 case UnqualifiedId::IK_OperatorFunctionId:
Sean Hunt0486d742009-11-28 04:44:28 +00003453 case UnqualifiedId::IK_LiteralOperatorId:
Douglas Gregor12c118a2009-11-04 16:30:06 +00003454 case UnqualifiedId::IK_ConversionFunctionId:
3455 break;
3456
3457 case UnqualifiedId::IK_ConstructorName:
Douglas Gregor0efc2c12010-01-13 17:31:36 +00003458 case UnqualifiedId::IK_ConstructorTemplateId:
John McCall604e7f12009-12-08 07:46:18 +00003459 // C++0x inherited constructors.
3460 if (getLangOptions().CPlusPlus0x) break;
3461
Douglas Gregor12c118a2009-11-04 16:30:06 +00003462 Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_constructor)
3463 << SS.getRange();
3464 return DeclPtrTy();
3465
3466 case UnqualifiedId::IK_DestructorName:
3467 Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_destructor)
3468 << SS.getRange();
3469 return DeclPtrTy();
3470
3471 case UnqualifiedId::IK_TemplateId:
3472 Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_template_id)
3473 << SourceRange(Name.TemplateId->LAngleLoc, Name.TemplateId->RAngleLoc);
3474 return DeclPtrTy();
3475 }
3476
3477 DeclarationName TargetName = GetNameFromUnqualifiedId(Name);
John McCall604e7f12009-12-08 07:46:18 +00003478 if (!TargetName)
3479 return DeclPtrTy();
3480
John McCall60fa3cf2009-12-11 02:10:03 +00003481 // Warn about using declarations.
3482 // TODO: store that the declaration was written without 'using' and
3483 // talk about access decls instead of using decls in the
3484 // diagnostics.
3485 if (!HasUsingKeyword) {
3486 UsingLoc = Name.getSourceRange().getBegin();
3487
3488 Diag(UsingLoc, diag::warn_access_decl_deprecated)
Douglas Gregor849b2432010-03-31 17:46:05 +00003489 << FixItHint::CreateInsertion(SS.getRange().getBegin(), "using ");
John McCall60fa3cf2009-12-11 02:10:03 +00003490 }
3491
John McCall9488ea12009-11-17 05:59:44 +00003492 NamedDecl *UD = BuildUsingDeclaration(S, AS, UsingLoc, SS,
Douglas Gregor12c118a2009-11-04 16:30:06 +00003493 Name.getSourceRange().getBegin(),
John McCall7ba107a2009-11-18 02:36:19 +00003494 TargetName, AttrList,
3495 /* IsInstantiation */ false,
3496 IsTypeName, TypenameLoc);
John McCalled976492009-12-04 22:46:56 +00003497 if (UD)
3498 PushOnScopeChains(UD, S, /*AddToContext*/ false);
Mike Stump1eb44332009-09-09 15:08:12 +00003499
Anders Carlssonc72160b2009-08-28 05:40:36 +00003500 return DeclPtrTy::make(UD);
3501}
3502
Douglas Gregor09acc982010-07-07 23:08:52 +00003503/// \brief Determine whether a using declaration considers the given
3504/// declarations as "equivalent", e.g., if they are redeclarations of
3505/// the same entity or are both typedefs of the same type.
3506static bool
3507IsEquivalentForUsingDecl(ASTContext &Context, NamedDecl *D1, NamedDecl *D2,
3508 bool &SuppressRedeclaration) {
3509 if (D1->getCanonicalDecl() == D2->getCanonicalDecl()) {
3510 SuppressRedeclaration = false;
3511 return true;
3512 }
3513
3514 if (TypedefDecl *TD1 = dyn_cast<TypedefDecl>(D1))
3515 if (TypedefDecl *TD2 = dyn_cast<TypedefDecl>(D2)) {
3516 SuppressRedeclaration = true;
3517 return Context.hasSameType(TD1->getUnderlyingType(),
3518 TD2->getUnderlyingType());
3519 }
3520
3521 return false;
3522}
3523
3524
John McCall9f54ad42009-12-10 09:41:52 +00003525/// Determines whether to create a using shadow decl for a particular
3526/// decl, given the set of decls existing prior to this using lookup.
3527bool Sema::CheckUsingShadowDecl(UsingDecl *Using, NamedDecl *Orig,
3528 const LookupResult &Previous) {
3529 // Diagnose finding a decl which is not from a base class of the
3530 // current class. We do this now because there are cases where this
3531 // function will silently decide not to build a shadow decl, which
3532 // will pre-empt further diagnostics.
3533 //
3534 // We don't need to do this in C++0x because we do the check once on
3535 // the qualifier.
3536 //
3537 // FIXME: diagnose the following if we care enough:
3538 // struct A { int foo; };
3539 // struct B : A { using A::foo; };
3540 // template <class T> struct C : A {};
3541 // template <class T> struct D : C<T> { using B::foo; } // <---
3542 // This is invalid (during instantiation) in C++03 because B::foo
3543 // resolves to the using decl in B, which is not a base class of D<T>.
3544 // We can't diagnose it immediately because C<T> is an unknown
3545 // specialization. The UsingShadowDecl in D<T> then points directly
3546 // to A::foo, which will look well-formed when we instantiate.
3547 // The right solution is to not collapse the shadow-decl chain.
3548 if (!getLangOptions().CPlusPlus0x && CurContext->isRecord()) {
3549 DeclContext *OrigDC = Orig->getDeclContext();
3550
3551 // Handle enums and anonymous structs.
3552 if (isa<EnumDecl>(OrigDC)) OrigDC = OrigDC->getParent();
3553 CXXRecordDecl *OrigRec = cast<CXXRecordDecl>(OrigDC);
3554 while (OrigRec->isAnonymousStructOrUnion())
3555 OrigRec = cast<CXXRecordDecl>(OrigRec->getDeclContext());
3556
3557 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(OrigRec)) {
3558 if (OrigDC == CurContext) {
3559 Diag(Using->getLocation(),
3560 diag::err_using_decl_nested_name_specifier_is_current_class)
3561 << Using->getNestedNameRange();
3562 Diag(Orig->getLocation(), diag::note_using_decl_target);
3563 return true;
3564 }
3565
3566 Diag(Using->getNestedNameRange().getBegin(),
3567 diag::err_using_decl_nested_name_specifier_is_not_base_class)
3568 << Using->getTargetNestedNameDecl()
3569 << cast<CXXRecordDecl>(CurContext)
3570 << Using->getNestedNameRange();
3571 Diag(Orig->getLocation(), diag::note_using_decl_target);
3572 return true;
3573 }
3574 }
3575
3576 if (Previous.empty()) return false;
3577
3578 NamedDecl *Target = Orig;
3579 if (isa<UsingShadowDecl>(Target))
3580 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
3581
John McCalld7533ec2009-12-11 02:33:26 +00003582 // If the target happens to be one of the previous declarations, we
3583 // don't have a conflict.
3584 //
3585 // FIXME: but we might be increasing its access, in which case we
3586 // should redeclare it.
3587 NamedDecl *NonTag = 0, *Tag = 0;
3588 for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
3589 I != E; ++I) {
3590 NamedDecl *D = (*I)->getUnderlyingDecl();
Douglas Gregor09acc982010-07-07 23:08:52 +00003591 bool Result;
3592 if (IsEquivalentForUsingDecl(Context, D, Target, Result))
3593 return Result;
John McCalld7533ec2009-12-11 02:33:26 +00003594
3595 (isa<TagDecl>(D) ? Tag : NonTag) = D;
3596 }
3597
John McCall9f54ad42009-12-10 09:41:52 +00003598 if (Target->isFunctionOrFunctionTemplate()) {
3599 FunctionDecl *FD;
3600 if (isa<FunctionTemplateDecl>(Target))
3601 FD = cast<FunctionTemplateDecl>(Target)->getTemplatedDecl();
3602 else
3603 FD = cast<FunctionDecl>(Target);
3604
3605 NamedDecl *OldDecl = 0;
John McCallad00b772010-06-16 08:42:20 +00003606 switch (CheckOverload(0, FD, Previous, OldDecl, /*IsForUsingDecl*/ true)) {
John McCall9f54ad42009-12-10 09:41:52 +00003607 case Ovl_Overload:
3608 return false;
3609
3610 case Ovl_NonFunction:
John McCall41ce66f2009-12-10 19:51:03 +00003611 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00003612 break;
3613
3614 // We found a decl with the exact signature.
3615 case Ovl_Match:
John McCall9f54ad42009-12-10 09:41:52 +00003616 // If we're in a record, we want to hide the target, so we
3617 // return true (without a diagnostic) to tell the caller not to
3618 // build a shadow decl.
3619 if (CurContext->isRecord())
3620 return true;
3621
3622 // If we're not in a record, this is an error.
John McCall41ce66f2009-12-10 19:51:03 +00003623 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00003624 break;
3625 }
3626
3627 Diag(Target->getLocation(), diag::note_using_decl_target);
3628 Diag(OldDecl->getLocation(), diag::note_using_decl_conflict);
3629 return true;
3630 }
3631
3632 // Target is not a function.
3633
John McCall9f54ad42009-12-10 09:41:52 +00003634 if (isa<TagDecl>(Target)) {
3635 // No conflict between a tag and a non-tag.
3636 if (!Tag) return false;
3637
John McCall41ce66f2009-12-10 19:51:03 +00003638 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00003639 Diag(Target->getLocation(), diag::note_using_decl_target);
3640 Diag(Tag->getLocation(), diag::note_using_decl_conflict);
3641 return true;
3642 }
3643
3644 // No conflict between a tag and a non-tag.
3645 if (!NonTag) return false;
3646
John McCall41ce66f2009-12-10 19:51:03 +00003647 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00003648 Diag(Target->getLocation(), diag::note_using_decl_target);
3649 Diag(NonTag->getLocation(), diag::note_using_decl_conflict);
3650 return true;
3651}
3652
John McCall9488ea12009-11-17 05:59:44 +00003653/// Builds a shadow declaration corresponding to a 'using' declaration.
John McCall604e7f12009-12-08 07:46:18 +00003654UsingShadowDecl *Sema::BuildUsingShadowDecl(Scope *S,
John McCall604e7f12009-12-08 07:46:18 +00003655 UsingDecl *UD,
3656 NamedDecl *Orig) {
John McCall9488ea12009-11-17 05:59:44 +00003657
3658 // If we resolved to another shadow declaration, just coalesce them.
John McCall604e7f12009-12-08 07:46:18 +00003659 NamedDecl *Target = Orig;
3660 if (isa<UsingShadowDecl>(Target)) {
3661 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
3662 assert(!isa<UsingShadowDecl>(Target) && "nested shadow declaration");
John McCall9488ea12009-11-17 05:59:44 +00003663 }
3664
3665 UsingShadowDecl *Shadow
John McCall604e7f12009-12-08 07:46:18 +00003666 = UsingShadowDecl::Create(Context, CurContext,
3667 UD->getLocation(), UD, Target);
John McCall9488ea12009-11-17 05:59:44 +00003668 UD->addShadowDecl(Shadow);
3669
3670 if (S)
John McCall604e7f12009-12-08 07:46:18 +00003671 PushOnScopeChains(Shadow, S);
John McCall9488ea12009-11-17 05:59:44 +00003672 else
John McCall604e7f12009-12-08 07:46:18 +00003673 CurContext->addDecl(Shadow);
John McCall9f54ad42009-12-10 09:41:52 +00003674 Shadow->setAccess(UD->getAccess());
John McCall9488ea12009-11-17 05:59:44 +00003675
John McCall32daa422010-03-31 01:36:47 +00003676 // Register it as a conversion if appropriate.
3677 if (Shadow->getDeclName().getNameKind()
3678 == DeclarationName::CXXConversionFunctionName)
3679 cast<CXXRecordDecl>(CurContext)->addConversionFunction(Shadow);
3680
John McCall604e7f12009-12-08 07:46:18 +00003681 if (Orig->isInvalidDecl() || UD->isInvalidDecl())
3682 Shadow->setInvalidDecl();
3683
John McCall9f54ad42009-12-10 09:41:52 +00003684 return Shadow;
3685}
John McCall604e7f12009-12-08 07:46:18 +00003686
John McCall9f54ad42009-12-10 09:41:52 +00003687/// Hides a using shadow declaration. This is required by the current
3688/// using-decl implementation when a resolvable using declaration in a
3689/// class is followed by a declaration which would hide or override
3690/// one or more of the using decl's targets; for example:
3691///
3692/// struct Base { void foo(int); };
3693/// struct Derived : Base {
3694/// using Base::foo;
3695/// void foo(int);
3696/// };
3697///
3698/// The governing language is C++03 [namespace.udecl]p12:
3699///
3700/// When a using-declaration brings names from a base class into a
3701/// derived class scope, member functions in the derived class
3702/// override and/or hide member functions with the same name and
3703/// parameter types in a base class (rather than conflicting).
3704///
3705/// There are two ways to implement this:
3706/// (1) optimistically create shadow decls when they're not hidden
3707/// by existing declarations, or
3708/// (2) don't create any shadow decls (or at least don't make them
3709/// visible) until we've fully parsed/instantiated the class.
3710/// The problem with (1) is that we might have to retroactively remove
3711/// a shadow decl, which requires several O(n) operations because the
3712/// decl structures are (very reasonably) not designed for removal.
3713/// (2) avoids this but is very fiddly and phase-dependent.
3714void Sema::HideUsingShadowDecl(Scope *S, UsingShadowDecl *Shadow) {
John McCall32daa422010-03-31 01:36:47 +00003715 if (Shadow->getDeclName().getNameKind() ==
3716 DeclarationName::CXXConversionFunctionName)
3717 cast<CXXRecordDecl>(Shadow->getDeclContext())->removeConversion(Shadow);
3718
John McCall9f54ad42009-12-10 09:41:52 +00003719 // Remove it from the DeclContext...
3720 Shadow->getDeclContext()->removeDecl(Shadow);
John McCall604e7f12009-12-08 07:46:18 +00003721
John McCall9f54ad42009-12-10 09:41:52 +00003722 // ...and the scope, if applicable...
3723 if (S) {
3724 S->RemoveDecl(DeclPtrTy::make(static_cast<Decl*>(Shadow)));
3725 IdResolver.RemoveDecl(Shadow);
John McCall604e7f12009-12-08 07:46:18 +00003726 }
3727
John McCall9f54ad42009-12-10 09:41:52 +00003728 // ...and the using decl.
3729 Shadow->getUsingDecl()->removeShadowDecl(Shadow);
3730
3731 // TODO: complain somehow if Shadow was used. It shouldn't
John McCall32daa422010-03-31 01:36:47 +00003732 // be possible for this to happen, because...?
John McCall9488ea12009-11-17 05:59:44 +00003733}
3734
John McCall7ba107a2009-11-18 02:36:19 +00003735/// Builds a using declaration.
3736///
3737/// \param IsInstantiation - Whether this call arises from an
3738/// instantiation of an unresolved using declaration. We treat
3739/// the lookup differently for these declarations.
John McCall9488ea12009-11-17 05:59:44 +00003740NamedDecl *Sema::BuildUsingDeclaration(Scope *S, AccessSpecifier AS,
3741 SourceLocation UsingLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00003742 CXXScopeSpec &SS,
Anders Carlssonc72160b2009-08-28 05:40:36 +00003743 SourceLocation IdentLoc,
3744 DeclarationName Name,
3745 AttributeList *AttrList,
John McCall7ba107a2009-11-18 02:36:19 +00003746 bool IsInstantiation,
3747 bool IsTypeName,
3748 SourceLocation TypenameLoc) {
Anders Carlssonc72160b2009-08-28 05:40:36 +00003749 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
3750 assert(IdentLoc.isValid() && "Invalid TargetName location.");
Eli Friedman2a16a132009-08-27 05:09:36 +00003751
Anders Carlsson550b14b2009-08-28 05:49:21 +00003752 // FIXME: We ignore attributes for now.
3753 delete AttrList;
Mike Stump1eb44332009-09-09 15:08:12 +00003754
Anders Carlssoncf9f9212009-08-28 03:16:11 +00003755 if (SS.isEmpty()) {
3756 Diag(IdentLoc, diag::err_using_requires_qualname);
Anders Carlssonc72160b2009-08-28 05:40:36 +00003757 return 0;
Anders Carlssoncf9f9212009-08-28 03:16:11 +00003758 }
Mike Stump1eb44332009-09-09 15:08:12 +00003759
John McCall9f54ad42009-12-10 09:41:52 +00003760 // Do the redeclaration lookup in the current scope.
3761 LookupResult Previous(*this, Name, IdentLoc, LookupUsingDeclName,
3762 ForRedeclaration);
3763 Previous.setHideTags(false);
3764 if (S) {
3765 LookupName(Previous, S);
3766
3767 // It is really dumb that we have to do this.
3768 LookupResult::Filter F = Previous.makeFilter();
3769 while (F.hasNext()) {
3770 NamedDecl *D = F.next();
3771 if (!isDeclInScope(D, CurContext, S))
3772 F.erase();
3773 }
3774 F.done();
3775 } else {
3776 assert(IsInstantiation && "no scope in non-instantiation");
3777 assert(CurContext->isRecord() && "scope not record in instantiation");
3778 LookupQualifiedName(Previous, CurContext);
3779 }
3780
Mike Stump1eb44332009-09-09 15:08:12 +00003781 NestedNameSpecifier *NNS =
Anders Carlssoncf9f9212009-08-28 03:16:11 +00003782 static_cast<NestedNameSpecifier *>(SS.getScopeRep());
3783
John McCall9f54ad42009-12-10 09:41:52 +00003784 // Check for invalid redeclarations.
3785 if (CheckUsingDeclRedeclaration(UsingLoc, IsTypeName, SS, IdentLoc, Previous))
3786 return 0;
3787
3788 // Check for bad qualifiers.
John McCalled976492009-12-04 22:46:56 +00003789 if (CheckUsingDeclQualifier(UsingLoc, SS, IdentLoc))
3790 return 0;
3791
John McCallaf8e6ed2009-11-12 03:15:40 +00003792 DeclContext *LookupContext = computeDeclContext(SS);
John McCalled976492009-12-04 22:46:56 +00003793 NamedDecl *D;
John McCallaf8e6ed2009-11-12 03:15:40 +00003794 if (!LookupContext) {
John McCall7ba107a2009-11-18 02:36:19 +00003795 if (IsTypeName) {
John McCalled976492009-12-04 22:46:56 +00003796 // FIXME: not all declaration name kinds are legal here
3797 D = UnresolvedUsingTypenameDecl::Create(Context, CurContext,
3798 UsingLoc, TypenameLoc,
3799 SS.getRange(), NNS,
John McCall7ba107a2009-11-18 02:36:19 +00003800 IdentLoc, Name);
John McCalled976492009-12-04 22:46:56 +00003801 } else {
3802 D = UnresolvedUsingValueDecl::Create(Context, CurContext,
3803 UsingLoc, SS.getRange(), NNS,
3804 IdentLoc, Name);
John McCall7ba107a2009-11-18 02:36:19 +00003805 }
John McCalled976492009-12-04 22:46:56 +00003806 } else {
3807 D = UsingDecl::Create(Context, CurContext, IdentLoc,
3808 SS.getRange(), UsingLoc, NNS, Name,
3809 IsTypeName);
Anders Carlsson550b14b2009-08-28 05:49:21 +00003810 }
John McCalled976492009-12-04 22:46:56 +00003811 D->setAccess(AS);
3812 CurContext->addDecl(D);
3813
3814 if (!LookupContext) return D;
3815 UsingDecl *UD = cast<UsingDecl>(D);
Mike Stump1eb44332009-09-09 15:08:12 +00003816
John McCall77bb1aa2010-05-01 00:40:08 +00003817 if (RequireCompleteDeclContext(SS, LookupContext)) {
John McCall604e7f12009-12-08 07:46:18 +00003818 UD->setInvalidDecl();
3819 return UD;
Anders Carlssoncf9f9212009-08-28 03:16:11 +00003820 }
3821
John McCall604e7f12009-12-08 07:46:18 +00003822 // Look up the target name.
3823
John McCalla24dc2e2009-11-17 02:14:36 +00003824 LookupResult R(*this, Name, IdentLoc, LookupOrdinaryName);
John McCall7ba107a2009-11-18 02:36:19 +00003825
John McCall604e7f12009-12-08 07:46:18 +00003826 // Unlike most lookups, we don't always want to hide tag
3827 // declarations: tag names are visible through the using declaration
3828 // even if hidden by ordinary names, *except* in a dependent context
3829 // where it's important for the sanity of two-phase lookup.
John McCall7ba107a2009-11-18 02:36:19 +00003830 if (!IsInstantiation)
3831 R.setHideTags(false);
John McCall9488ea12009-11-17 05:59:44 +00003832
John McCalla24dc2e2009-11-17 02:14:36 +00003833 LookupQualifiedName(R, LookupContext);
Mike Stump1eb44332009-09-09 15:08:12 +00003834
John McCallf36e02d2009-10-09 21:13:30 +00003835 if (R.empty()) {
Douglas Gregor3f093272009-10-13 21:16:44 +00003836 Diag(IdentLoc, diag::err_no_member)
3837 << Name << LookupContext << SS.getRange();
John McCalled976492009-12-04 22:46:56 +00003838 UD->setInvalidDecl();
3839 return UD;
Douglas Gregor9cfbe482009-06-20 00:51:54 +00003840 }
3841
John McCalled976492009-12-04 22:46:56 +00003842 if (R.isAmbiguous()) {
3843 UD->setInvalidDecl();
3844 return UD;
3845 }
Mike Stump1eb44332009-09-09 15:08:12 +00003846
John McCall7ba107a2009-11-18 02:36:19 +00003847 if (IsTypeName) {
3848 // If we asked for a typename and got a non-type decl, error out.
John McCalled976492009-12-04 22:46:56 +00003849 if (!R.getAsSingle<TypeDecl>()) {
John McCall7ba107a2009-11-18 02:36:19 +00003850 Diag(IdentLoc, diag::err_using_typename_non_type);
3851 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I)
3852 Diag((*I)->getUnderlyingDecl()->getLocation(),
3853 diag::note_using_decl_target);
John McCalled976492009-12-04 22:46:56 +00003854 UD->setInvalidDecl();
3855 return UD;
John McCall7ba107a2009-11-18 02:36:19 +00003856 }
3857 } else {
3858 // If we asked for a non-typename and we got a type, error out,
3859 // but only if this is an instantiation of an unresolved using
3860 // decl. Otherwise just silently find the type name.
John McCalled976492009-12-04 22:46:56 +00003861 if (IsInstantiation && R.getAsSingle<TypeDecl>()) {
John McCall7ba107a2009-11-18 02:36:19 +00003862 Diag(IdentLoc, diag::err_using_dependent_value_is_type);
3863 Diag(R.getFoundDecl()->getLocation(), diag::note_using_decl_target);
John McCalled976492009-12-04 22:46:56 +00003864 UD->setInvalidDecl();
3865 return UD;
John McCall7ba107a2009-11-18 02:36:19 +00003866 }
Anders Carlssoncf9f9212009-08-28 03:16:11 +00003867 }
3868
Anders Carlsson73b39cf2009-08-28 03:35:18 +00003869 // C++0x N2914 [namespace.udecl]p6:
3870 // A using-declaration shall not name a namespace.
John McCalled976492009-12-04 22:46:56 +00003871 if (R.getAsSingle<NamespaceDecl>()) {
Anders Carlsson73b39cf2009-08-28 03:35:18 +00003872 Diag(IdentLoc, diag::err_using_decl_can_not_refer_to_namespace)
3873 << SS.getRange();
John McCalled976492009-12-04 22:46:56 +00003874 UD->setInvalidDecl();
3875 return UD;
Anders Carlsson73b39cf2009-08-28 03:35:18 +00003876 }
Mike Stump1eb44332009-09-09 15:08:12 +00003877
John McCall9f54ad42009-12-10 09:41:52 +00003878 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) {
3879 if (!CheckUsingShadowDecl(UD, *I, Previous))
3880 BuildUsingShadowDecl(S, UD, *I);
3881 }
John McCall9488ea12009-11-17 05:59:44 +00003882
3883 return UD;
Douglas Gregor9cfbe482009-06-20 00:51:54 +00003884}
3885
John McCall9f54ad42009-12-10 09:41:52 +00003886/// Checks that the given using declaration is not an invalid
3887/// redeclaration. Note that this is checking only for the using decl
3888/// itself, not for any ill-formedness among the UsingShadowDecls.
3889bool Sema::CheckUsingDeclRedeclaration(SourceLocation UsingLoc,
3890 bool isTypeName,
3891 const CXXScopeSpec &SS,
3892 SourceLocation NameLoc,
3893 const LookupResult &Prev) {
3894 // C++03 [namespace.udecl]p8:
3895 // C++0x [namespace.udecl]p10:
3896 // A using-declaration is a declaration and can therefore be used
3897 // repeatedly where (and only where) multiple declarations are
3898 // allowed.
Douglas Gregora97badf2010-05-06 23:31:27 +00003899 //
3900 // That's in non-member contexts.
3901 if (!CurContext->getLookupContext()->isRecord())
John McCall9f54ad42009-12-10 09:41:52 +00003902 return false;
3903
3904 NestedNameSpecifier *Qual
3905 = static_cast<NestedNameSpecifier*>(SS.getScopeRep());
3906
3907 for (LookupResult::iterator I = Prev.begin(), E = Prev.end(); I != E; ++I) {
3908 NamedDecl *D = *I;
3909
3910 bool DTypename;
3911 NestedNameSpecifier *DQual;
3912 if (UsingDecl *UD = dyn_cast<UsingDecl>(D)) {
3913 DTypename = UD->isTypeName();
3914 DQual = UD->getTargetNestedNameDecl();
3915 } else if (UnresolvedUsingValueDecl *UD
3916 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
3917 DTypename = false;
3918 DQual = UD->getTargetNestedNameSpecifier();
3919 } else if (UnresolvedUsingTypenameDecl *UD
3920 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
3921 DTypename = true;
3922 DQual = UD->getTargetNestedNameSpecifier();
3923 } else continue;
3924
3925 // using decls differ if one says 'typename' and the other doesn't.
3926 // FIXME: non-dependent using decls?
3927 if (isTypeName != DTypename) continue;
3928
3929 // using decls differ if they name different scopes (but note that
3930 // template instantiation can cause this check to trigger when it
3931 // didn't before instantiation).
3932 if (Context.getCanonicalNestedNameSpecifier(Qual) !=
3933 Context.getCanonicalNestedNameSpecifier(DQual))
3934 continue;
3935
3936 Diag(NameLoc, diag::err_using_decl_redeclaration) << SS.getRange();
John McCall41ce66f2009-12-10 19:51:03 +00003937 Diag(D->getLocation(), diag::note_using_decl) << 1;
John McCall9f54ad42009-12-10 09:41:52 +00003938 return true;
3939 }
3940
3941 return false;
3942}
3943
John McCall604e7f12009-12-08 07:46:18 +00003944
John McCalled976492009-12-04 22:46:56 +00003945/// Checks that the given nested-name qualifier used in a using decl
3946/// in the current context is appropriately related to the current
3947/// scope. If an error is found, diagnoses it and returns true.
3948bool Sema::CheckUsingDeclQualifier(SourceLocation UsingLoc,
3949 const CXXScopeSpec &SS,
3950 SourceLocation NameLoc) {
John McCall604e7f12009-12-08 07:46:18 +00003951 DeclContext *NamedContext = computeDeclContext(SS);
John McCalled976492009-12-04 22:46:56 +00003952
John McCall604e7f12009-12-08 07:46:18 +00003953 if (!CurContext->isRecord()) {
3954 // C++03 [namespace.udecl]p3:
3955 // C++0x [namespace.udecl]p8:
3956 // A using-declaration for a class member shall be a member-declaration.
3957
3958 // If we weren't able to compute a valid scope, it must be a
3959 // dependent class scope.
3960 if (!NamedContext || NamedContext->isRecord()) {
3961 Diag(NameLoc, diag::err_using_decl_can_not_refer_to_class_member)
3962 << SS.getRange();
3963 return true;
3964 }
3965
3966 // Otherwise, everything is known to be fine.
3967 return false;
3968 }
3969
3970 // The current scope is a record.
3971
3972 // If the named context is dependent, we can't decide much.
3973 if (!NamedContext) {
3974 // FIXME: in C++0x, we can diagnose if we can prove that the
3975 // nested-name-specifier does not refer to a base class, which is
3976 // still possible in some cases.
3977
3978 // Otherwise we have to conservatively report that things might be
3979 // okay.
3980 return false;
3981 }
3982
3983 if (!NamedContext->isRecord()) {
3984 // Ideally this would point at the last name in the specifier,
3985 // but we don't have that level of source info.
3986 Diag(SS.getRange().getBegin(),
3987 diag::err_using_decl_nested_name_specifier_is_not_class)
3988 << (NestedNameSpecifier*) SS.getScopeRep() << SS.getRange();
3989 return true;
3990 }
3991
3992 if (getLangOptions().CPlusPlus0x) {
3993 // C++0x [namespace.udecl]p3:
3994 // In a using-declaration used as a member-declaration, the
3995 // nested-name-specifier shall name a base class of the class
3996 // being defined.
3997
3998 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(
3999 cast<CXXRecordDecl>(NamedContext))) {
4000 if (CurContext == NamedContext) {
4001 Diag(NameLoc,
4002 diag::err_using_decl_nested_name_specifier_is_current_class)
4003 << SS.getRange();
4004 return true;
4005 }
4006
4007 Diag(SS.getRange().getBegin(),
4008 diag::err_using_decl_nested_name_specifier_is_not_base_class)
4009 << (NestedNameSpecifier*) SS.getScopeRep()
4010 << cast<CXXRecordDecl>(CurContext)
4011 << SS.getRange();
4012 return true;
4013 }
4014
4015 return false;
4016 }
4017
4018 // C++03 [namespace.udecl]p4:
4019 // A using-declaration used as a member-declaration shall refer
4020 // to a member of a base class of the class being defined [etc.].
4021
4022 // Salient point: SS doesn't have to name a base class as long as
4023 // lookup only finds members from base classes. Therefore we can
4024 // diagnose here only if we can prove that that can't happen,
4025 // i.e. if the class hierarchies provably don't intersect.
4026
4027 // TODO: it would be nice if "definitely valid" results were cached
4028 // in the UsingDecl and UsingShadowDecl so that these checks didn't
4029 // need to be repeated.
4030
4031 struct UserData {
4032 llvm::DenseSet<const CXXRecordDecl*> Bases;
4033
4034 static bool collect(const CXXRecordDecl *Base, void *OpaqueData) {
4035 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
4036 Data->Bases.insert(Base);
4037 return true;
4038 }
4039
4040 bool hasDependentBases(const CXXRecordDecl *Class) {
4041 return !Class->forallBases(collect, this);
4042 }
4043
4044 /// Returns true if the base is dependent or is one of the
4045 /// accumulated base classes.
4046 static bool doesNotContain(const CXXRecordDecl *Base, void *OpaqueData) {
4047 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
4048 return !Data->Bases.count(Base);
4049 }
4050
4051 bool mightShareBases(const CXXRecordDecl *Class) {
4052 return Bases.count(Class) || !Class->forallBases(doesNotContain, this);
4053 }
4054 };
4055
4056 UserData Data;
4057
4058 // Returns false if we find a dependent base.
4059 if (Data.hasDependentBases(cast<CXXRecordDecl>(CurContext)))
4060 return false;
4061
4062 // Returns false if the class has a dependent base or if it or one
4063 // of its bases is present in the base set of the current context.
4064 if (Data.mightShareBases(cast<CXXRecordDecl>(NamedContext)))
4065 return false;
4066
4067 Diag(SS.getRange().getBegin(),
4068 diag::err_using_decl_nested_name_specifier_is_not_base_class)
4069 << (NestedNameSpecifier*) SS.getScopeRep()
4070 << cast<CXXRecordDecl>(CurContext)
4071 << SS.getRange();
4072
4073 return true;
John McCalled976492009-12-04 22:46:56 +00004074}
4075
Mike Stump1eb44332009-09-09 15:08:12 +00004076Sema::DeclPtrTy Sema::ActOnNamespaceAliasDef(Scope *S,
Anders Carlsson03bd5a12009-03-28 22:53:22 +00004077 SourceLocation NamespaceLoc,
Chris Lattnerb28317a2009-03-28 19:18:32 +00004078 SourceLocation AliasLoc,
4079 IdentifierInfo *Alias,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00004080 CXXScopeSpec &SS,
Anders Carlsson03bd5a12009-03-28 22:53:22 +00004081 SourceLocation IdentLoc,
4082 IdentifierInfo *Ident) {
Mike Stump1eb44332009-09-09 15:08:12 +00004083
Anders Carlsson81c85c42009-03-28 23:53:49 +00004084 // Lookup the namespace name.
John McCalla24dc2e2009-11-17 02:14:36 +00004085 LookupResult R(*this, Ident, IdentLoc, LookupNamespaceName);
4086 LookupParsedName(R, S, &SS);
Anders Carlsson81c85c42009-03-28 23:53:49 +00004087
Anders Carlsson8d7ba402009-03-28 06:23:46 +00004088 // Check if we have a previous declaration with the same name.
Douglas Gregorae374752010-05-03 15:37:31 +00004089 NamedDecl *PrevDecl
4090 = LookupSingleName(S, Alias, AliasLoc, LookupOrdinaryName,
4091 ForRedeclaration);
4092 if (PrevDecl && !isDeclInScope(PrevDecl, CurContext, S))
4093 PrevDecl = 0;
4094
4095 if (PrevDecl) {
Anders Carlsson81c85c42009-03-28 23:53:49 +00004096 if (NamespaceAliasDecl *AD = dyn_cast<NamespaceAliasDecl>(PrevDecl)) {
Mike Stump1eb44332009-09-09 15:08:12 +00004097 // We already have an alias with the same name that points to the same
Anders Carlsson81c85c42009-03-28 23:53:49 +00004098 // namespace, so don't create a new one.
Douglas Gregorc67b0322010-03-26 22:59:39 +00004099 // FIXME: At some point, we'll want to create the (redundant)
4100 // declaration to maintain better source information.
John McCallf36e02d2009-10-09 21:13:30 +00004101 if (!R.isAmbiguous() && !R.empty() &&
Douglas Gregorc67b0322010-03-26 22:59:39 +00004102 AD->getNamespace()->Equals(getNamespaceDecl(R.getFoundDecl())))
Anders Carlsson81c85c42009-03-28 23:53:49 +00004103 return DeclPtrTy();
4104 }
Mike Stump1eb44332009-09-09 15:08:12 +00004105
Anders Carlsson8d7ba402009-03-28 06:23:46 +00004106 unsigned DiagID = isa<NamespaceDecl>(PrevDecl) ? diag::err_redefinition :
4107 diag::err_redefinition_different_kind;
4108 Diag(AliasLoc, DiagID) << Alias;
4109 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Chris Lattnerb28317a2009-03-28 19:18:32 +00004110 return DeclPtrTy();
Anders Carlsson8d7ba402009-03-28 06:23:46 +00004111 }
4112
John McCalla24dc2e2009-11-17 02:14:36 +00004113 if (R.isAmbiguous())
Chris Lattnerb28317a2009-03-28 19:18:32 +00004114 return DeclPtrTy();
Mike Stump1eb44332009-09-09 15:08:12 +00004115
John McCallf36e02d2009-10-09 21:13:30 +00004116 if (R.empty()) {
Douglas Gregor0e8c4b92010-06-29 18:55:19 +00004117 if (DeclarationName Corrected = CorrectTypo(R, S, &SS, 0, false,
4118 CTC_NoKeywords, 0)) {
4119 if (R.getAsSingle<NamespaceDecl>() ||
4120 R.getAsSingle<NamespaceAliasDecl>()) {
4121 if (DeclContext *DC = computeDeclContext(SS, false))
4122 Diag(IdentLoc, diag::err_using_directive_member_suggest)
4123 << Ident << DC << Corrected << SS.getRange()
4124 << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
4125 else
4126 Diag(IdentLoc, diag::err_using_directive_suggest)
4127 << Ident << Corrected
4128 << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
4129
4130 Diag(R.getFoundDecl()->getLocation(), diag::note_namespace_defined_here)
4131 << Corrected;
4132
4133 Ident = Corrected.getAsIdentifierInfo();
Douglas Gregor12eb5d62010-06-29 19:27:42 +00004134 } else {
4135 R.clear();
4136 R.setLookupName(Ident);
Douglas Gregor0e8c4b92010-06-29 18:55:19 +00004137 }
4138 }
4139
4140 if (R.empty()) {
4141 Diag(NamespaceLoc, diag::err_expected_namespace_name) << SS.getRange();
4142 return DeclPtrTy();
4143 }
Anders Carlsson5721c682009-03-28 06:42:02 +00004144 }
Mike Stump1eb44332009-09-09 15:08:12 +00004145
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00004146 NamespaceAliasDecl *AliasDecl =
Mike Stump1eb44332009-09-09 15:08:12 +00004147 NamespaceAliasDecl::Create(Context, CurContext, NamespaceLoc, AliasLoc,
4148 Alias, SS.getRange(),
Douglas Gregor6c9c9402009-05-30 06:48:27 +00004149 (NestedNameSpecifier *)SS.getScopeRep(),
John McCallf36e02d2009-10-09 21:13:30 +00004150 IdentLoc, R.getFoundDecl());
Mike Stump1eb44332009-09-09 15:08:12 +00004151
John McCall3dbd3d52010-02-16 06:53:13 +00004152 PushOnScopeChains(AliasDecl, S);
Anders Carlsson68771c72009-03-28 22:58:02 +00004153 return DeclPtrTy::make(AliasDecl);
Anders Carlssondbb00942009-03-28 05:27:17 +00004154}
4155
Douglas Gregor39957dc2010-05-01 15:04:51 +00004156namespace {
4157 /// \brief Scoped object used to handle the state changes required in Sema
4158 /// to implicitly define the body of a C++ member function;
4159 class ImplicitlyDefinedFunctionScope {
4160 Sema &S;
4161 DeclContext *PreviousContext;
4162
4163 public:
4164 ImplicitlyDefinedFunctionScope(Sema &S, CXXMethodDecl *Method)
4165 : S(S), PreviousContext(S.CurContext)
4166 {
4167 S.CurContext = Method;
4168 S.PushFunctionScope();
4169 S.PushExpressionEvaluationContext(Sema::PotentiallyEvaluated);
4170 }
4171
4172 ~ImplicitlyDefinedFunctionScope() {
4173 S.PopExpressionEvaluationContext();
4174 S.PopFunctionOrBlockScope();
4175 S.CurContext = PreviousContext;
4176 }
4177 };
4178}
4179
Douglas Gregor23c94db2010-07-02 17:43:08 +00004180CXXConstructorDecl *Sema::DeclareImplicitDefaultConstructor(
4181 CXXRecordDecl *ClassDecl) {
Douglas Gregor32df23e2010-07-01 22:02:46 +00004182 // C++ [class.ctor]p5:
4183 // A default constructor for a class X is a constructor of class X
4184 // that can be called without an argument. If there is no
4185 // user-declared constructor for class X, a default constructor is
4186 // implicitly declared. An implicitly-declared default constructor
4187 // is an inline public member of its class.
Douglas Gregor18274032010-07-03 00:47:00 +00004188 assert(!ClassDecl->hasUserDeclaredConstructor() &&
4189 "Should not build implicit default constructor!");
4190
Douglas Gregoreb8c6702010-07-01 22:31:05 +00004191 // C++ [except.spec]p14:
4192 // An implicitly declared special member function (Clause 12) shall have an
4193 // exception-specification. [...]
4194 ImplicitExceptionSpecification ExceptSpec(Context);
4195
4196 // Direct base-class destructors.
4197 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
4198 BEnd = ClassDecl->bases_end();
4199 B != BEnd; ++B) {
4200 if (B->isVirtual()) // Handled below.
4201 continue;
4202
Douglas Gregor18274032010-07-03 00:47:00 +00004203 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
4204 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
4205 if (!BaseClassDecl->hasDeclaredDefaultConstructor())
4206 ExceptSpec.CalledDecl(DeclareImplicitDefaultConstructor(BaseClassDecl));
4207 else if (CXXConstructorDecl *Constructor
4208 = BaseClassDecl->getDefaultConstructor())
Douglas Gregoreb8c6702010-07-01 22:31:05 +00004209 ExceptSpec.CalledDecl(Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00004210 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00004211 }
4212
4213 // Virtual base-class destructors.
4214 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
4215 BEnd = ClassDecl->vbases_end();
4216 B != BEnd; ++B) {
Douglas Gregor18274032010-07-03 00:47:00 +00004217 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
4218 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
4219 if (!BaseClassDecl->hasDeclaredDefaultConstructor())
4220 ExceptSpec.CalledDecl(DeclareImplicitDefaultConstructor(BaseClassDecl));
4221 else if (CXXConstructorDecl *Constructor
4222 = BaseClassDecl->getDefaultConstructor())
Douglas Gregoreb8c6702010-07-01 22:31:05 +00004223 ExceptSpec.CalledDecl(Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00004224 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00004225 }
4226
4227 // Field destructors.
4228 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
4229 FEnd = ClassDecl->field_end();
4230 F != FEnd; ++F) {
4231 if (const RecordType *RecordTy
Douglas Gregor18274032010-07-03 00:47:00 +00004232 = Context.getBaseElementType(F->getType())->getAs<RecordType>()) {
4233 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
4234 if (!FieldClassDecl->hasDeclaredDefaultConstructor())
4235 ExceptSpec.CalledDecl(
4236 DeclareImplicitDefaultConstructor(FieldClassDecl));
4237 else if (CXXConstructorDecl *Constructor
4238 = FieldClassDecl->getDefaultConstructor())
Douglas Gregoreb8c6702010-07-01 22:31:05 +00004239 ExceptSpec.CalledDecl(Constructor);
Douglas Gregor18274032010-07-03 00:47:00 +00004240 }
Douglas Gregoreb8c6702010-07-01 22:31:05 +00004241 }
4242
4243
4244 // Create the actual constructor declaration.
Douglas Gregor32df23e2010-07-01 22:02:46 +00004245 CanQualType ClassType
4246 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
4247 DeclarationName Name
4248 = Context.DeclarationNames.getCXXConstructorName(ClassType);
4249 CXXConstructorDecl *DefaultCon
4250 = CXXConstructorDecl::Create(Context, ClassDecl,
4251 ClassDecl->getLocation(), Name,
4252 Context.getFunctionType(Context.VoidTy,
4253 0, 0, false, 0,
Douglas Gregoreb8c6702010-07-01 22:31:05 +00004254 ExceptSpec.hasExceptionSpecification(),
4255 ExceptSpec.hasAnyExceptionSpecification(),
4256 ExceptSpec.size(),
4257 ExceptSpec.data(),
Douglas Gregor32df23e2010-07-01 22:02:46 +00004258 FunctionType::ExtInfo()),
4259 /*TInfo=*/0,
4260 /*isExplicit=*/false,
4261 /*isInline=*/true,
4262 /*isImplicitlyDeclared=*/true);
4263 DefaultCon->setAccess(AS_public);
4264 DefaultCon->setImplicit();
4265 DefaultCon->setTrivial(ClassDecl->hasTrivialConstructor());
Douglas Gregor18274032010-07-03 00:47:00 +00004266
4267 // Note that we have declared this constructor.
4268 ClassDecl->setDeclaredDefaultConstructor(true);
4269 ++ASTContext::NumImplicitDefaultConstructorsDeclared;
4270
Douglas Gregor23c94db2010-07-02 17:43:08 +00004271 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor18274032010-07-03 00:47:00 +00004272 PushOnScopeChains(DefaultCon, S, false);
4273 ClassDecl->addDecl(DefaultCon);
4274
Douglas Gregor32df23e2010-07-01 22:02:46 +00004275 return DefaultCon;
4276}
4277
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00004278void Sema::DefineImplicitDefaultConstructor(SourceLocation CurrentLocation,
4279 CXXConstructorDecl *Constructor) {
Fariborz Jahanian05a5c452009-06-22 20:37:23 +00004280 assert((Constructor->isImplicit() && Constructor->isDefaultConstructor() &&
Douglas Gregorc070cc62010-06-17 23:14:26 +00004281 !Constructor->isUsed(false)) &&
Fariborz Jahanian05a5c452009-06-22 20:37:23 +00004282 "DefineImplicitDefaultConstructor - call it for implicit default ctor");
Mike Stump1eb44332009-09-09 15:08:12 +00004283
Anders Carlssonf6513ed2010-04-23 16:04:08 +00004284 CXXRecordDecl *ClassDecl = Constructor->getParent();
Eli Friedman80c30da2009-11-09 19:20:36 +00004285 assert(ClassDecl && "DefineImplicitDefaultConstructor - invalid constructor");
Eli Friedman49c16da2009-11-09 01:05:47 +00004286
Douglas Gregor39957dc2010-05-01 15:04:51 +00004287 ImplicitlyDefinedFunctionScope Scope(*this, Constructor);
Douglas Gregorc63d2c82010-05-12 16:39:35 +00004288 ErrorTrap Trap(*this);
4289 if (SetBaseOrMemberInitializers(Constructor, 0, 0, /*AnyErrors=*/false) ||
4290 Trap.hasErrorOccurred()) {
Anders Carlsson37909802009-11-30 21:24:50 +00004291 Diag(CurrentLocation, diag::note_member_synthesized_at)
Anders Carlsson3b8c53b2010-04-22 05:40:53 +00004292 << CXXConstructor << Context.getTagDeclType(ClassDecl);
Eli Friedman80c30da2009-11-09 19:20:36 +00004293 Constructor->setInvalidDecl();
4294 } else {
4295 Constructor->setUsed();
Douglas Gregor6fb745b2010-05-13 16:44:06 +00004296 MarkVTableUsed(CurrentLocation, ClassDecl);
Eli Friedman80c30da2009-11-09 19:20:36 +00004297 }
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00004298}
4299
Douglas Gregor23c94db2010-07-02 17:43:08 +00004300CXXDestructorDecl *Sema::DeclareImplicitDestructor(CXXRecordDecl *ClassDecl) {
Douglas Gregorfabd43a2010-07-01 19:09:28 +00004301 // C++ [class.dtor]p2:
4302 // If a class has no user-declared destructor, a destructor is
4303 // declared implicitly. An implicitly-declared destructor is an
4304 // inline public member of its class.
4305
4306 // C++ [except.spec]p14:
4307 // An implicitly declared special member function (Clause 12) shall have
4308 // an exception-specification.
4309 ImplicitExceptionSpecification ExceptSpec(Context);
4310
4311 // Direct base-class destructors.
4312 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
4313 BEnd = ClassDecl->bases_end();
4314 B != BEnd; ++B) {
4315 if (B->isVirtual()) // Handled below.
4316 continue;
4317
4318 if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
4319 ExceptSpec.CalledDecl(
Douglas Gregordb89f282010-07-01 22:47:18 +00004320 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00004321 }
4322
4323 // Virtual base-class destructors.
4324 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
4325 BEnd = ClassDecl->vbases_end();
4326 B != BEnd; ++B) {
4327 if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
4328 ExceptSpec.CalledDecl(
Douglas Gregordb89f282010-07-01 22:47:18 +00004329 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00004330 }
4331
4332 // Field destructors.
4333 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
4334 FEnd = ClassDecl->field_end();
4335 F != FEnd; ++F) {
4336 if (const RecordType *RecordTy
4337 = Context.getBaseElementType(F->getType())->getAs<RecordType>())
4338 ExceptSpec.CalledDecl(
Douglas Gregordb89f282010-07-01 22:47:18 +00004339 LookupDestructor(cast<CXXRecordDecl>(RecordTy->getDecl())));
Douglas Gregorfabd43a2010-07-01 19:09:28 +00004340 }
4341
Douglas Gregor4923aa22010-07-02 20:37:36 +00004342 // Create the actual destructor declaration.
Douglas Gregorfabd43a2010-07-01 19:09:28 +00004343 QualType Ty = Context.getFunctionType(Context.VoidTy,
4344 0, 0, false, 0,
4345 ExceptSpec.hasExceptionSpecification(),
4346 ExceptSpec.hasAnyExceptionSpecification(),
4347 ExceptSpec.size(),
4348 ExceptSpec.data(),
4349 FunctionType::ExtInfo());
4350
4351 CanQualType ClassType
4352 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
4353 DeclarationName Name
4354 = Context.DeclarationNames.getCXXDestructorName(ClassType);
4355 CXXDestructorDecl *Destructor
4356 = CXXDestructorDecl::Create(Context, ClassDecl,
4357 ClassDecl->getLocation(), Name, Ty,
4358 /*isInline=*/true,
4359 /*isImplicitlyDeclared=*/true);
4360 Destructor->setAccess(AS_public);
4361 Destructor->setImplicit();
4362 Destructor->setTrivial(ClassDecl->hasTrivialDestructor());
Douglas Gregor4923aa22010-07-02 20:37:36 +00004363
4364 // Note that we have declared this destructor.
4365 ClassDecl->setDeclaredDestructor(true);
4366 ++ASTContext::NumImplicitDestructorsDeclared;
4367
4368 // Introduce this destructor into its scope.
Douglas Gregor23c94db2010-07-02 17:43:08 +00004369 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor4923aa22010-07-02 20:37:36 +00004370 PushOnScopeChains(Destructor, S, false);
4371 ClassDecl->addDecl(Destructor);
Douglas Gregorfabd43a2010-07-01 19:09:28 +00004372
4373 // This could be uniqued if it ever proves significant.
4374 Destructor->setTypeSourceInfo(Context.getTrivialTypeSourceInfo(Ty));
4375
4376 AddOverriddenMethods(ClassDecl, Destructor);
Douglas Gregor4923aa22010-07-02 20:37:36 +00004377
Douglas Gregorfabd43a2010-07-01 19:09:28 +00004378 return Destructor;
4379}
4380
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00004381void Sema::DefineImplicitDestructor(SourceLocation CurrentLocation,
Douglas Gregor4fe95f92009-09-04 19:04:08 +00004382 CXXDestructorDecl *Destructor) {
Douglas Gregorc070cc62010-06-17 23:14:26 +00004383 assert((Destructor->isImplicit() && !Destructor->isUsed(false)) &&
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00004384 "DefineImplicitDestructor - call it for implicit default dtor");
Anders Carlsson6d701392009-11-15 22:49:34 +00004385 CXXRecordDecl *ClassDecl = Destructor->getParent();
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00004386 assert(ClassDecl && "DefineImplicitDestructor - invalid destructor");
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00004387
Douglas Gregorc63d2c82010-05-12 16:39:35 +00004388 if (Destructor->isInvalidDecl())
4389 return;
4390
Douglas Gregor39957dc2010-05-01 15:04:51 +00004391 ImplicitlyDefinedFunctionScope Scope(*this, Destructor);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00004392
Douglas Gregorc63d2c82010-05-12 16:39:35 +00004393 ErrorTrap Trap(*this);
John McCallef027fe2010-03-16 21:39:52 +00004394 MarkBaseAndMemberDestructorsReferenced(Destructor->getLocation(),
4395 Destructor->getParent());
Mike Stump1eb44332009-09-09 15:08:12 +00004396
Douglas Gregorc63d2c82010-05-12 16:39:35 +00004397 if (CheckDestructor(Destructor) || Trap.hasErrorOccurred()) {
Anders Carlsson37909802009-11-30 21:24:50 +00004398 Diag(CurrentLocation, diag::note_member_synthesized_at)
4399 << CXXDestructor << Context.getTagDeclType(ClassDecl);
4400
4401 Destructor->setInvalidDecl();
4402 return;
4403 }
4404
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00004405 Destructor->setUsed();
Douglas Gregor6fb745b2010-05-13 16:44:06 +00004406 MarkVTableUsed(CurrentLocation, ClassDecl);
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00004407}
4408
Douglas Gregor06a9f362010-05-01 20:49:11 +00004409/// \brief Builds a statement that copies the given entity from \p From to
4410/// \c To.
4411///
4412/// This routine is used to copy the members of a class with an
4413/// implicitly-declared copy assignment operator. When the entities being
4414/// copied are arrays, this routine builds for loops to copy them.
4415///
4416/// \param S The Sema object used for type-checking.
4417///
4418/// \param Loc The location where the implicit copy is being generated.
4419///
4420/// \param T The type of the expressions being copied. Both expressions must
4421/// have this type.
4422///
4423/// \param To The expression we are copying to.
4424///
4425/// \param From The expression we are copying from.
4426///
Douglas Gregor6cdc1612010-05-04 15:20:55 +00004427/// \param CopyingBaseSubobject Whether we're copying a base subobject.
4428/// Otherwise, it's a non-static member subobject.
4429///
Douglas Gregor06a9f362010-05-01 20:49:11 +00004430/// \param Depth Internal parameter recording the depth of the recursion.
4431///
4432/// \returns A statement or a loop that copies the expressions.
4433static Sema::OwningStmtResult
4434BuildSingleCopyAssign(Sema &S, SourceLocation Loc, QualType T,
4435 Sema::OwningExprResult To, Sema::OwningExprResult From,
Douglas Gregor6cdc1612010-05-04 15:20:55 +00004436 bool CopyingBaseSubobject, unsigned Depth = 0) {
Douglas Gregor06a9f362010-05-01 20:49:11 +00004437 typedef Sema::OwningStmtResult OwningStmtResult;
4438 typedef Sema::OwningExprResult OwningExprResult;
4439
4440 // C++0x [class.copy]p30:
4441 // Each subobject is assigned in the manner appropriate to its type:
4442 //
4443 // - if the subobject is of class type, the copy assignment operator
4444 // for the class is used (as if by explicit qualification; that is,
4445 // ignoring any possible virtual overriding functions in more derived
4446 // classes);
4447 if (const RecordType *RecordTy = T->getAs<RecordType>()) {
4448 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
4449
4450 // Look for operator=.
4451 DeclarationName Name
4452 = S.Context.DeclarationNames.getCXXOperatorName(OO_Equal);
4453 LookupResult OpLookup(S, Name, Loc, Sema::LookupOrdinaryName);
4454 S.LookupQualifiedName(OpLookup, ClassDecl, false);
4455
4456 // Filter out any result that isn't a copy-assignment operator.
4457 LookupResult::Filter F = OpLookup.makeFilter();
4458 while (F.hasNext()) {
4459 NamedDecl *D = F.next();
4460 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
4461 if (Method->isCopyAssignmentOperator())
4462 continue;
4463
4464 F.erase();
John McCallb0207482010-03-16 06:11:48 +00004465 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00004466 F.done();
4467
Douglas Gregor6cdc1612010-05-04 15:20:55 +00004468 // Suppress the protected check (C++ [class.protected]) for each of the
4469 // assignment operators we found. This strange dance is required when
4470 // we're assigning via a base classes's copy-assignment operator. To
4471 // ensure that we're getting the right base class subobject (without
4472 // ambiguities), we need to cast "this" to that subobject type; to
4473 // ensure that we don't go through the virtual call mechanism, we need
4474 // to qualify the operator= name with the base class (see below). However,
4475 // this means that if the base class has a protected copy assignment
4476 // operator, the protected member access check will fail. So, we
4477 // rewrite "protected" access to "public" access in this case, since we
4478 // know by construction that we're calling from a derived class.
4479 if (CopyingBaseSubobject) {
4480 for (LookupResult::iterator L = OpLookup.begin(), LEnd = OpLookup.end();
4481 L != LEnd; ++L) {
4482 if (L.getAccess() == AS_protected)
4483 L.setAccess(AS_public);
4484 }
4485 }
4486
Douglas Gregor06a9f362010-05-01 20:49:11 +00004487 // Create the nested-name-specifier that will be used to qualify the
4488 // reference to operator=; this is required to suppress the virtual
4489 // call mechanism.
4490 CXXScopeSpec SS;
4491 SS.setRange(Loc);
4492 SS.setScopeRep(NestedNameSpecifier::Create(S.Context, 0, false,
4493 T.getTypePtr()));
4494
4495 // Create the reference to operator=.
4496 OwningExprResult OpEqualRef
4497 = S.BuildMemberReferenceExpr(move(To), T, Loc, /*isArrow=*/false, SS,
4498 /*FirstQualifierInScope=*/0, OpLookup,
4499 /*TemplateArgs=*/0,
4500 /*SuppressQualifierCheck=*/true);
4501 if (OpEqualRef.isInvalid())
4502 return S.StmtError();
4503
4504 // Build the call to the assignment operator.
4505 Expr *FromE = From.takeAs<Expr>();
4506 OwningExprResult Call = S.BuildCallToMemberFunction(/*Scope=*/0,
4507 OpEqualRef.takeAs<Expr>(),
4508 Loc, &FromE, 1, 0, Loc);
4509 if (Call.isInvalid())
4510 return S.StmtError();
4511
4512 return S.Owned(Call.takeAs<Stmt>());
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00004513 }
John McCallb0207482010-03-16 06:11:48 +00004514
Douglas Gregor06a9f362010-05-01 20:49:11 +00004515 // - if the subobject is of scalar type, the built-in assignment
4516 // operator is used.
4517 const ConstantArrayType *ArrayTy = S.Context.getAsConstantArrayType(T);
4518 if (!ArrayTy) {
4519 OwningExprResult Assignment = S.CreateBuiltinBinOp(Loc,
4520 BinaryOperator::Assign,
4521 To.takeAs<Expr>(),
4522 From.takeAs<Expr>());
4523 if (Assignment.isInvalid())
4524 return S.StmtError();
4525
4526 return S.Owned(Assignment.takeAs<Stmt>());
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00004527 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00004528
4529 // - if the subobject is an array, each element is assigned, in the
4530 // manner appropriate to the element type;
4531
4532 // Construct a loop over the array bounds, e.g.,
4533 //
4534 // for (__SIZE_TYPE__ i0 = 0; i0 != array-size; ++i0)
4535 //
4536 // that will copy each of the array elements.
4537 QualType SizeType = S.Context.getSizeType();
4538
4539 // Create the iteration variable.
4540 IdentifierInfo *IterationVarName = 0;
4541 {
4542 llvm::SmallString<8> Str;
4543 llvm::raw_svector_ostream OS(Str);
4544 OS << "__i" << Depth;
4545 IterationVarName = &S.Context.Idents.get(OS.str());
4546 }
4547 VarDecl *IterationVar = VarDecl::Create(S.Context, S.CurContext, Loc,
4548 IterationVarName, SizeType,
4549 S.Context.getTrivialTypeSourceInfo(SizeType, Loc),
4550 VarDecl::None, VarDecl::None);
4551
4552 // Initialize the iteration variable to zero.
4553 llvm::APInt Zero(S.Context.getTypeSize(SizeType), 0);
4554 IterationVar->setInit(new (S.Context) IntegerLiteral(Zero, SizeType, Loc));
4555
4556 // Create a reference to the iteration variable; we'll use this several
4557 // times throughout.
4558 Expr *IterationVarRef
4559 = S.BuildDeclRefExpr(IterationVar, SizeType, Loc).takeAs<Expr>();
4560 assert(IterationVarRef && "Reference to invented variable cannot fail!");
4561
4562 // Create the DeclStmt that holds the iteration variable.
4563 Stmt *InitStmt = new (S.Context) DeclStmt(DeclGroupRef(IterationVar),Loc,Loc);
4564
4565 // Create the comparison against the array bound.
4566 llvm::APInt Upper = ArrayTy->getSize();
4567 Upper.zextOrTrunc(S.Context.getTypeSize(SizeType));
4568 OwningExprResult Comparison
4569 = S.Owned(new (S.Context) BinaryOperator(IterationVarRef->Retain(),
4570 new (S.Context) IntegerLiteral(Upper, SizeType, Loc),
4571 BinaryOperator::NE, S.Context.BoolTy, Loc));
4572
4573 // Create the pre-increment of the iteration variable.
4574 OwningExprResult Increment
4575 = S.Owned(new (S.Context) UnaryOperator(IterationVarRef->Retain(),
4576 UnaryOperator::PreInc,
4577 SizeType, Loc));
4578
4579 // Subscript the "from" and "to" expressions with the iteration variable.
4580 From = S.CreateBuiltinArraySubscriptExpr(move(From), Loc,
4581 S.Owned(IterationVarRef->Retain()),
4582 Loc);
4583 To = S.CreateBuiltinArraySubscriptExpr(move(To), Loc,
4584 S.Owned(IterationVarRef->Retain()),
4585 Loc);
4586 assert(!From.isInvalid() && "Builtin subscripting can't fail!");
4587 assert(!To.isInvalid() && "Builtin subscripting can't fail!");
4588
4589 // Build the copy for an individual element of the array.
4590 OwningStmtResult Copy = BuildSingleCopyAssign(S, Loc,
4591 ArrayTy->getElementType(),
Douglas Gregor6cdc1612010-05-04 15:20:55 +00004592 move(To), move(From),
4593 CopyingBaseSubobject, Depth+1);
Douglas Gregorff331c12010-07-25 18:17:45 +00004594 if (Copy.isInvalid())
Douglas Gregor06a9f362010-05-01 20:49:11 +00004595 return S.StmtError();
Douglas Gregor06a9f362010-05-01 20:49:11 +00004596
4597 // Construct the loop that copies all elements of this array.
4598 return S.ActOnForStmt(Loc, Loc, S.Owned(InitStmt),
4599 S.MakeFullExpr(Comparison),
4600 Sema::DeclPtrTy(),
4601 S.MakeFullExpr(Increment),
4602 Loc, move(Copy));
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00004603}
4604
Douglas Gregora376d102010-07-02 21:50:04 +00004605/// \brief Determine whether the given class has a copy assignment operator
4606/// that accepts a const-qualified argument.
4607static bool hasConstCopyAssignment(Sema &S, const CXXRecordDecl *CClass) {
4608 CXXRecordDecl *Class = const_cast<CXXRecordDecl *>(CClass);
4609
4610 if (!Class->hasDeclaredCopyAssignment())
4611 S.DeclareImplicitCopyAssignment(Class);
4612
4613 QualType ClassType = S.Context.getCanonicalType(S.Context.getTypeDeclType(Class));
4614 DeclarationName OpName
4615 = S.Context.DeclarationNames.getCXXOperatorName(OO_Equal);
4616
4617 DeclContext::lookup_const_iterator Op, OpEnd;
4618 for (llvm::tie(Op, OpEnd) = Class->lookup(OpName); Op != OpEnd; ++Op) {
4619 // C++ [class.copy]p9:
4620 // A user-declared copy assignment operator is a non-static non-template
4621 // member function of class X with exactly one parameter of type X, X&,
4622 // const X&, volatile X& or const volatile X&.
4623 const CXXMethodDecl* Method = dyn_cast<CXXMethodDecl>(*Op);
4624 if (!Method)
4625 continue;
4626
4627 if (Method->isStatic())
4628 continue;
4629 if (Method->getPrimaryTemplate())
4630 continue;
4631 const FunctionProtoType *FnType =
4632 Method->getType()->getAs<FunctionProtoType>();
4633 assert(FnType && "Overloaded operator has no prototype.");
4634 // Don't assert on this; an invalid decl might have been left in the AST.
4635 if (FnType->getNumArgs() != 1 || FnType->isVariadic())
4636 continue;
4637 bool AcceptsConst = true;
4638 QualType ArgType = FnType->getArgType(0);
4639 if (const LValueReferenceType *Ref = ArgType->getAs<LValueReferenceType>()){
4640 ArgType = Ref->getPointeeType();
4641 // Is it a non-const lvalue reference?
4642 if (!ArgType.isConstQualified())
4643 AcceptsConst = false;
4644 }
4645 if (!S.Context.hasSameUnqualifiedType(ArgType, ClassType))
4646 continue;
4647
4648 // We have a single argument of type cv X or cv X&, i.e. we've found the
4649 // copy assignment operator. Return whether it accepts const arguments.
4650 return AcceptsConst;
4651 }
4652 assert(Class->isInvalidDecl() &&
4653 "No copy assignment operator declared in valid code.");
4654 return false;
4655}
4656
Douglas Gregor23c94db2010-07-02 17:43:08 +00004657CXXMethodDecl *Sema::DeclareImplicitCopyAssignment(CXXRecordDecl *ClassDecl) {
Douglas Gregord3c35902010-07-01 16:36:15 +00004658 // Note: The following rules are largely analoguous to the copy
4659 // constructor rules. Note that virtual bases are not taken into account
4660 // for determining the argument type of the operator. Note also that
4661 // operators taking an object instead of a reference are allowed.
Douglas Gregor18274032010-07-03 00:47:00 +00004662
4663
Douglas Gregord3c35902010-07-01 16:36:15 +00004664 // C++ [class.copy]p10:
4665 // If the class definition does not explicitly declare a copy
4666 // assignment operator, one is declared implicitly.
4667 // The implicitly-defined copy assignment operator for a class X
4668 // will have the form
4669 //
4670 // X& X::operator=(const X&)
4671 //
4672 // if
4673 bool HasConstCopyAssignment = true;
4674
4675 // -- each direct base class B of X has a copy assignment operator
4676 // whose parameter is of type const B&, const volatile B& or B,
4677 // and
4678 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
4679 BaseEnd = ClassDecl->bases_end();
4680 HasConstCopyAssignment && Base != BaseEnd; ++Base) {
4681 assert(!Base->getType()->isDependentType() &&
4682 "Cannot generate implicit members for class with dependent bases.");
4683 const CXXRecordDecl *BaseClassDecl
4684 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregora376d102010-07-02 21:50:04 +00004685 HasConstCopyAssignment = hasConstCopyAssignment(*this, BaseClassDecl);
Douglas Gregord3c35902010-07-01 16:36:15 +00004686 }
4687
4688 // -- for all the nonstatic data members of X that are of a class
4689 // type M (or array thereof), each such class type has a copy
4690 // assignment operator whose parameter is of type const M&,
4691 // const volatile M& or M.
4692 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
4693 FieldEnd = ClassDecl->field_end();
4694 HasConstCopyAssignment && Field != FieldEnd;
4695 ++Field) {
4696 QualType FieldType = Context.getBaseElementType((*Field)->getType());
4697 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
4698 const CXXRecordDecl *FieldClassDecl
4699 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Douglas Gregora376d102010-07-02 21:50:04 +00004700 HasConstCopyAssignment = hasConstCopyAssignment(*this, FieldClassDecl);
Douglas Gregord3c35902010-07-01 16:36:15 +00004701 }
4702 }
4703
4704 // Otherwise, the implicitly declared copy assignment operator will
4705 // have the form
4706 //
4707 // X& X::operator=(X&)
4708 QualType ArgType = Context.getTypeDeclType(ClassDecl);
4709 QualType RetType = Context.getLValueReferenceType(ArgType);
4710 if (HasConstCopyAssignment)
4711 ArgType = ArgType.withConst();
4712 ArgType = Context.getLValueReferenceType(ArgType);
4713
Douglas Gregorb87786f2010-07-01 17:48:08 +00004714 // C++ [except.spec]p14:
4715 // An implicitly declared special member function (Clause 12) shall have an
4716 // exception-specification. [...]
4717 ImplicitExceptionSpecification ExceptSpec(Context);
4718 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
4719 BaseEnd = ClassDecl->bases_end();
4720 Base != BaseEnd; ++Base) {
Douglas Gregora376d102010-07-02 21:50:04 +00004721 CXXRecordDecl *BaseClassDecl
Douglas Gregorb87786f2010-07-01 17:48:08 +00004722 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregora376d102010-07-02 21:50:04 +00004723
4724 if (!BaseClassDecl->hasDeclaredCopyAssignment())
4725 DeclareImplicitCopyAssignment(BaseClassDecl);
4726
Douglas Gregorb87786f2010-07-01 17:48:08 +00004727 if (CXXMethodDecl *CopyAssign
4728 = BaseClassDecl->getCopyAssignmentOperator(HasConstCopyAssignment))
4729 ExceptSpec.CalledDecl(CopyAssign);
4730 }
4731 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
4732 FieldEnd = ClassDecl->field_end();
4733 Field != FieldEnd;
4734 ++Field) {
4735 QualType FieldType = Context.getBaseElementType((*Field)->getType());
4736 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Douglas Gregora376d102010-07-02 21:50:04 +00004737 CXXRecordDecl *FieldClassDecl
Douglas Gregorb87786f2010-07-01 17:48:08 +00004738 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Douglas Gregora376d102010-07-02 21:50:04 +00004739
4740 if (!FieldClassDecl->hasDeclaredCopyAssignment())
4741 DeclareImplicitCopyAssignment(FieldClassDecl);
4742
Douglas Gregorb87786f2010-07-01 17:48:08 +00004743 if (CXXMethodDecl *CopyAssign
4744 = FieldClassDecl->getCopyAssignmentOperator(HasConstCopyAssignment))
4745 ExceptSpec.CalledDecl(CopyAssign);
4746 }
4747 }
4748
Douglas Gregord3c35902010-07-01 16:36:15 +00004749 // An implicitly-declared copy assignment operator is an inline public
4750 // member of its class.
4751 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
4752 CXXMethodDecl *CopyAssignment
4753 = CXXMethodDecl::Create(Context, ClassDecl, ClassDecl->getLocation(), Name,
4754 Context.getFunctionType(RetType, &ArgType, 1,
4755 false, 0,
Douglas Gregorb87786f2010-07-01 17:48:08 +00004756 ExceptSpec.hasExceptionSpecification(),
4757 ExceptSpec.hasAnyExceptionSpecification(),
4758 ExceptSpec.size(),
4759 ExceptSpec.data(),
Douglas Gregord3c35902010-07-01 16:36:15 +00004760 FunctionType::ExtInfo()),
4761 /*TInfo=*/0, /*isStatic=*/false,
4762 /*StorageClassAsWritten=*/FunctionDecl::None,
4763 /*isInline=*/true);
4764 CopyAssignment->setAccess(AS_public);
4765 CopyAssignment->setImplicit();
4766 CopyAssignment->setTrivial(ClassDecl->hasTrivialCopyAssignment());
4767 CopyAssignment->setCopyAssignment(true);
4768
4769 // Add the parameter to the operator.
4770 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyAssignment,
4771 ClassDecl->getLocation(),
4772 /*Id=*/0,
4773 ArgType, /*TInfo=*/0,
4774 VarDecl::None,
4775 VarDecl::None, 0);
4776 CopyAssignment->setParams(&FromParam, 1);
4777
Douglas Gregora376d102010-07-02 21:50:04 +00004778 // Note that we have added this copy-assignment operator.
4779 ClassDecl->setDeclaredCopyAssignment(true);
4780 ++ASTContext::NumImplicitCopyAssignmentOperatorsDeclared;
4781
Douglas Gregor23c94db2010-07-02 17:43:08 +00004782 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregora376d102010-07-02 21:50:04 +00004783 PushOnScopeChains(CopyAssignment, S, false);
4784 ClassDecl->addDecl(CopyAssignment);
Douglas Gregord3c35902010-07-01 16:36:15 +00004785
4786 AddOverriddenMethods(ClassDecl, CopyAssignment);
4787 return CopyAssignment;
4788}
4789
Douglas Gregor06a9f362010-05-01 20:49:11 +00004790void Sema::DefineImplicitCopyAssignment(SourceLocation CurrentLocation,
4791 CXXMethodDecl *CopyAssignOperator) {
4792 assert((CopyAssignOperator->isImplicit() &&
4793 CopyAssignOperator->isOverloadedOperator() &&
4794 CopyAssignOperator->getOverloadedOperator() == OO_Equal &&
Douglas Gregorc070cc62010-06-17 23:14:26 +00004795 !CopyAssignOperator->isUsed(false)) &&
Douglas Gregor06a9f362010-05-01 20:49:11 +00004796 "DefineImplicitCopyAssignment called for wrong function");
4797
4798 CXXRecordDecl *ClassDecl = CopyAssignOperator->getParent();
4799
4800 if (ClassDecl->isInvalidDecl() || CopyAssignOperator->isInvalidDecl()) {
4801 CopyAssignOperator->setInvalidDecl();
4802 return;
4803 }
4804
4805 CopyAssignOperator->setUsed();
4806
4807 ImplicitlyDefinedFunctionScope Scope(*this, CopyAssignOperator);
Douglas Gregorc63d2c82010-05-12 16:39:35 +00004808 ErrorTrap Trap(*this);
Douglas Gregor06a9f362010-05-01 20:49:11 +00004809
4810 // C++0x [class.copy]p30:
4811 // The implicitly-defined or explicitly-defaulted copy assignment operator
4812 // for a non-union class X performs memberwise copy assignment of its
4813 // subobjects. The direct base classes of X are assigned first, in the
4814 // order of their declaration in the base-specifier-list, and then the
4815 // immediate non-static data members of X are assigned, in the order in
4816 // which they were declared in the class definition.
4817
4818 // The statements that form the synthesized function body.
4819 ASTOwningVector<&ActionBase::DeleteStmt> Statements(*this);
4820
4821 // The parameter for the "other" object, which we are copying from.
4822 ParmVarDecl *Other = CopyAssignOperator->getParamDecl(0);
4823 Qualifiers OtherQuals = Other->getType().getQualifiers();
4824 QualType OtherRefType = Other->getType();
4825 if (const LValueReferenceType *OtherRef
4826 = OtherRefType->getAs<LValueReferenceType>()) {
4827 OtherRefType = OtherRef->getPointeeType();
4828 OtherQuals = OtherRefType.getQualifiers();
4829 }
4830
4831 // Our location for everything implicitly-generated.
4832 SourceLocation Loc = CopyAssignOperator->getLocation();
4833
4834 // Construct a reference to the "other" object. We'll be using this
4835 // throughout the generated ASTs.
4836 Expr *OtherRef = BuildDeclRefExpr(Other, OtherRefType, Loc).takeAs<Expr>();
4837 assert(OtherRef && "Reference to parameter cannot fail!");
4838
4839 // Construct the "this" pointer. We'll be using this throughout the generated
4840 // ASTs.
4841 Expr *This = ActOnCXXThis(Loc).takeAs<Expr>();
4842 assert(This && "Reference to this cannot fail!");
4843
4844 // Assign base classes.
4845 bool Invalid = false;
4846 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
4847 E = ClassDecl->bases_end(); Base != E; ++Base) {
4848 // Form the assignment:
4849 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&>(other));
4850 QualType BaseType = Base->getType().getUnqualifiedType();
4851 CXXRecordDecl *BaseClassDecl = 0;
4852 if (const RecordType *BaseRecordT = BaseType->getAs<RecordType>())
4853 BaseClassDecl = cast<CXXRecordDecl>(BaseRecordT->getDecl());
4854 else {
4855 Invalid = true;
4856 continue;
4857 }
4858
4859 // Construct the "from" expression, which is an implicit cast to the
4860 // appropriately-qualified base type.
4861 Expr *From = OtherRef->Retain();
4862 ImpCastExprToType(From, Context.getQualifiedType(BaseType, OtherQuals),
Sebastian Redl906082e2010-07-20 04:20:21 +00004863 CastExpr::CK_UncheckedDerivedToBase,
4864 ImplicitCastExpr::LValue, CXXBaseSpecifierArray(Base));
Douglas Gregor06a9f362010-05-01 20:49:11 +00004865
4866 // Dereference "this".
4867 OwningExprResult To = CreateBuiltinUnaryOp(Loc, UnaryOperator::Deref,
4868 Owned(This->Retain()));
4869
4870 // Implicitly cast "this" to the appropriately-qualified base type.
4871 Expr *ToE = To.takeAs<Expr>();
4872 ImpCastExprToType(ToE,
4873 Context.getCVRQualifiedType(BaseType,
4874 CopyAssignOperator->getTypeQualifiers()),
4875 CastExpr::CK_UncheckedDerivedToBase,
Sebastian Redl906082e2010-07-20 04:20:21 +00004876 ImplicitCastExpr::LValue, CXXBaseSpecifierArray(Base));
Douglas Gregor06a9f362010-05-01 20:49:11 +00004877 To = Owned(ToE);
4878
4879 // Build the copy.
4880 OwningStmtResult Copy = BuildSingleCopyAssign(*this, Loc, BaseType,
Douglas Gregor6cdc1612010-05-04 15:20:55 +00004881 move(To), Owned(From),
4882 /*CopyingBaseSubobject=*/true);
Douglas Gregor06a9f362010-05-01 20:49:11 +00004883 if (Copy.isInvalid()) {
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00004884 Diag(CurrentLocation, diag::note_member_synthesized_at)
4885 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
4886 CopyAssignOperator->setInvalidDecl();
4887 return;
Douglas Gregor06a9f362010-05-01 20:49:11 +00004888 }
4889
4890 // Success! Record the copy.
4891 Statements.push_back(Copy.takeAs<Expr>());
4892 }
4893
4894 // \brief Reference to the __builtin_memcpy function.
4895 Expr *BuiltinMemCpyRef = 0;
Fariborz Jahanian8e2eab22010-06-16 16:22:04 +00004896 // \brief Reference to the __builtin_objc_memmove_collectable function.
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00004897 Expr *CollectableMemCpyRef = 0;
Douglas Gregor06a9f362010-05-01 20:49:11 +00004898
4899 // Assign non-static members.
4900 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
4901 FieldEnd = ClassDecl->field_end();
4902 Field != FieldEnd; ++Field) {
4903 // Check for members of reference type; we can't copy those.
4904 if (Field->getType()->isReferenceType()) {
4905 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
4906 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
4907 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00004908 Diag(CurrentLocation, diag::note_member_synthesized_at)
4909 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregor06a9f362010-05-01 20:49:11 +00004910 Invalid = true;
4911 continue;
4912 }
4913
4914 // Check for members of const-qualified, non-class type.
4915 QualType BaseType = Context.getBaseElementType(Field->getType());
4916 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) {
4917 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
4918 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
4919 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00004920 Diag(CurrentLocation, diag::note_member_synthesized_at)
4921 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregor06a9f362010-05-01 20:49:11 +00004922 Invalid = true;
4923 continue;
4924 }
4925
4926 QualType FieldType = Field->getType().getNonReferenceType();
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00004927 if (FieldType->isIncompleteArrayType()) {
4928 assert(ClassDecl->hasFlexibleArrayMember() &&
4929 "Incomplete array type is not valid");
4930 continue;
4931 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00004932
4933 // Build references to the field in the object we're copying from and to.
4934 CXXScopeSpec SS; // Intentionally empty
4935 LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
4936 LookupMemberName);
4937 MemberLookup.addDecl(*Field);
4938 MemberLookup.resolveKind();
4939 OwningExprResult From = BuildMemberReferenceExpr(Owned(OtherRef->Retain()),
4940 OtherRefType,
4941 Loc, /*IsArrow=*/false,
4942 SS, 0, MemberLookup, 0);
4943 OwningExprResult To = BuildMemberReferenceExpr(Owned(This->Retain()),
4944 This->getType(),
4945 Loc, /*IsArrow=*/true,
4946 SS, 0, MemberLookup, 0);
4947 assert(!From.isInvalid() && "Implicit field reference cannot fail");
4948 assert(!To.isInvalid() && "Implicit field reference cannot fail");
4949
4950 // If the field should be copied with __builtin_memcpy rather than via
4951 // explicit assignments, do so. This optimization only applies for arrays
4952 // of scalars and arrays of class type with trivial copy-assignment
4953 // operators.
4954 if (FieldType->isArrayType() &&
4955 (!BaseType->isRecordType() ||
4956 cast<CXXRecordDecl>(BaseType->getAs<RecordType>()->getDecl())
4957 ->hasTrivialCopyAssignment())) {
4958 // Compute the size of the memory buffer to be copied.
4959 QualType SizeType = Context.getSizeType();
4960 llvm::APInt Size(Context.getTypeSize(SizeType),
4961 Context.getTypeSizeInChars(BaseType).getQuantity());
4962 for (const ConstantArrayType *Array
4963 = Context.getAsConstantArrayType(FieldType);
4964 Array;
4965 Array = Context.getAsConstantArrayType(Array->getElementType())) {
4966 llvm::APInt ArraySize = Array->getSize();
4967 ArraySize.zextOrTrunc(Size.getBitWidth());
4968 Size *= ArraySize;
4969 }
4970
4971 // Take the address of the field references for "from" and "to".
4972 From = CreateBuiltinUnaryOp(Loc, UnaryOperator::AddrOf, move(From));
4973 To = CreateBuiltinUnaryOp(Loc, UnaryOperator::AddrOf, move(To));
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00004974
4975 bool NeedsCollectableMemCpy =
4976 (BaseType->isRecordType() &&
4977 BaseType->getAs<RecordType>()->getDecl()->hasObjectMember());
4978
4979 if (NeedsCollectableMemCpy) {
4980 if (!CollectableMemCpyRef) {
Fariborz Jahanian8e2eab22010-06-16 16:22:04 +00004981 // Create a reference to the __builtin_objc_memmove_collectable function.
4982 LookupResult R(*this,
4983 &Context.Idents.get("__builtin_objc_memmove_collectable"),
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00004984 Loc, LookupOrdinaryName);
4985 LookupName(R, TUScope, true);
4986
4987 FunctionDecl *CollectableMemCpy = R.getAsSingle<FunctionDecl>();
4988 if (!CollectableMemCpy) {
4989 // Something went horribly wrong earlier, and we will have
4990 // complained about it.
4991 Invalid = true;
4992 continue;
4993 }
4994
4995 CollectableMemCpyRef = BuildDeclRefExpr(CollectableMemCpy,
4996 CollectableMemCpy->getType(),
4997 Loc, 0).takeAs<Expr>();
4998 assert(CollectableMemCpyRef && "Builtin reference cannot fail");
4999 }
5000 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00005001 // Create a reference to the __builtin_memcpy builtin function.
Fariborz Jahanian55bcace2010-06-15 22:44:06 +00005002 else if (!BuiltinMemCpyRef) {
Douglas Gregor06a9f362010-05-01 20:49:11 +00005003 LookupResult R(*this, &Context.Idents.get("__builtin_memcpy"), Loc,
5004 LookupOrdinaryName);
5005 LookupName(R, TUScope, true);
5006
5007 FunctionDecl *BuiltinMemCpy = R.getAsSingle<FunctionDecl>();
5008 if (!BuiltinMemCpy) {
5009 // Something went horribly wrong earlier, and we will have complained
5010 // about it.
5011 Invalid = true;
5012 continue;
5013 }
5014
5015 BuiltinMemCpyRef = BuildDeclRefExpr(BuiltinMemCpy,
5016 BuiltinMemCpy->getType(),
5017 Loc, 0).takeAs<Expr>();
5018 assert(BuiltinMemCpyRef && "Builtin reference cannot fail");
5019 }
5020
5021 ASTOwningVector<&ActionBase::DeleteExpr> CallArgs(*this);
5022 CallArgs.push_back(To.takeAs<Expr>());
5023 CallArgs.push_back(From.takeAs<Expr>());
5024 CallArgs.push_back(new (Context) IntegerLiteral(Size, SizeType, Loc));
5025 llvm::SmallVector<SourceLocation, 4> Commas; // FIXME: Silly
5026 Commas.push_back(Loc);
5027 Commas.push_back(Loc);
Fariborz Jahanianff2d05f2010-06-16 00:16:38 +00005028 OwningExprResult Call = ExprError();
5029 if (NeedsCollectableMemCpy)
5030 Call = ActOnCallExpr(/*Scope=*/0,
5031 Owned(CollectableMemCpyRef->Retain()),
5032 Loc, move_arg(CallArgs),
5033 Commas.data(), Loc);
5034 else
5035 Call = ActOnCallExpr(/*Scope=*/0,
5036 Owned(BuiltinMemCpyRef->Retain()),
5037 Loc, move_arg(CallArgs),
5038 Commas.data(), Loc);
5039
Douglas Gregor06a9f362010-05-01 20:49:11 +00005040 assert(!Call.isInvalid() && "Call to __builtin_memcpy cannot fail!");
5041 Statements.push_back(Call.takeAs<Expr>());
5042 continue;
5043 }
5044
5045 // Build the copy of this field.
5046 OwningStmtResult Copy = BuildSingleCopyAssign(*this, Loc, FieldType,
Douglas Gregor6cdc1612010-05-04 15:20:55 +00005047 move(To), move(From),
5048 /*CopyingBaseSubobject=*/false);
Douglas Gregor06a9f362010-05-01 20:49:11 +00005049 if (Copy.isInvalid()) {
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00005050 Diag(CurrentLocation, diag::note_member_synthesized_at)
5051 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
5052 CopyAssignOperator->setInvalidDecl();
5053 return;
Douglas Gregor06a9f362010-05-01 20:49:11 +00005054 }
5055
5056 // Success! Record the copy.
5057 Statements.push_back(Copy.takeAs<Stmt>());
5058 }
5059
5060 if (!Invalid) {
5061 // Add a "return *this;"
5062 OwningExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UnaryOperator::Deref,
5063 Owned(This->Retain()));
5064
5065 OwningStmtResult Return = ActOnReturnStmt(Loc, move(ThisObj));
5066 if (Return.isInvalid())
5067 Invalid = true;
5068 else {
5069 Statements.push_back(Return.takeAs<Stmt>());
Douglas Gregorc63d2c82010-05-12 16:39:35 +00005070
5071 if (Trap.hasErrorOccurred()) {
5072 Diag(CurrentLocation, diag::note_member_synthesized_at)
5073 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
5074 Invalid = true;
5075 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00005076 }
5077 }
5078
5079 if (Invalid) {
5080 CopyAssignOperator->setInvalidDecl();
5081 return;
5082 }
5083
5084 OwningStmtResult Body = ActOnCompoundStmt(Loc, Loc, move_arg(Statements),
5085 /*isStmtExpr=*/false);
5086 assert(!Body.isInvalid() && "Compound statement creation cannot fail");
5087 CopyAssignOperator->setBody(Body.takeAs<Stmt>());
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00005088}
5089
Douglas Gregor23c94db2010-07-02 17:43:08 +00005090CXXConstructorDecl *Sema::DeclareImplicitCopyConstructor(
5091 CXXRecordDecl *ClassDecl) {
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005092 // C++ [class.copy]p4:
5093 // If the class definition does not explicitly declare a copy
5094 // constructor, one is declared implicitly.
5095
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005096 // C++ [class.copy]p5:
5097 // The implicitly-declared copy constructor for a class X will
5098 // have the form
5099 //
5100 // X::X(const X&)
5101 //
5102 // if
5103 bool HasConstCopyConstructor = true;
5104
5105 // -- each direct or virtual base class B of X has a copy
5106 // constructor whose first parameter is of type const B& or
5107 // const volatile B&, and
5108 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
5109 BaseEnd = ClassDecl->bases_end();
5110 HasConstCopyConstructor && Base != BaseEnd;
5111 ++Base) {
Douglas Gregor598a8542010-07-01 18:27:03 +00005112 // Virtual bases are handled below.
5113 if (Base->isVirtual())
5114 continue;
5115
Douglas Gregor22584312010-07-02 23:41:54 +00005116 CXXRecordDecl *BaseClassDecl
Douglas Gregor598a8542010-07-01 18:27:03 +00005117 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregor22584312010-07-02 23:41:54 +00005118 if (!BaseClassDecl->hasDeclaredCopyConstructor())
5119 DeclareImplicitCopyConstructor(BaseClassDecl);
5120
Douglas Gregor598a8542010-07-01 18:27:03 +00005121 HasConstCopyConstructor
5122 = BaseClassDecl->hasConstCopyConstructor(Context);
5123 }
5124
5125 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
5126 BaseEnd = ClassDecl->vbases_end();
5127 HasConstCopyConstructor && Base != BaseEnd;
5128 ++Base) {
Douglas Gregor22584312010-07-02 23:41:54 +00005129 CXXRecordDecl *BaseClassDecl
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005130 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregor22584312010-07-02 23:41:54 +00005131 if (!BaseClassDecl->hasDeclaredCopyConstructor())
5132 DeclareImplicitCopyConstructor(BaseClassDecl);
5133
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005134 HasConstCopyConstructor
5135 = BaseClassDecl->hasConstCopyConstructor(Context);
5136 }
5137
5138 // -- for all the nonstatic data members of X that are of a
5139 // class type M (or array thereof), each such class type
5140 // has a copy constructor whose first parameter is of type
5141 // const M& or const volatile M&.
5142 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
5143 FieldEnd = ClassDecl->field_end();
5144 HasConstCopyConstructor && Field != FieldEnd;
5145 ++Field) {
Douglas Gregor598a8542010-07-01 18:27:03 +00005146 QualType FieldType = Context.getBaseElementType((*Field)->getType());
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005147 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Douglas Gregor22584312010-07-02 23:41:54 +00005148 CXXRecordDecl *FieldClassDecl
Douglas Gregor598a8542010-07-01 18:27:03 +00005149 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Douglas Gregor22584312010-07-02 23:41:54 +00005150 if (!FieldClassDecl->hasDeclaredCopyConstructor())
5151 DeclareImplicitCopyConstructor(FieldClassDecl);
5152
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005153 HasConstCopyConstructor
Douglas Gregor598a8542010-07-01 18:27:03 +00005154 = FieldClassDecl->hasConstCopyConstructor(Context);
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005155 }
5156 }
5157
5158 // Otherwise, the implicitly declared copy constructor will have
5159 // the form
5160 //
5161 // X::X(X&)
5162 QualType ClassType = Context.getTypeDeclType(ClassDecl);
5163 QualType ArgType = ClassType;
5164 if (HasConstCopyConstructor)
5165 ArgType = ArgType.withConst();
5166 ArgType = Context.getLValueReferenceType(ArgType);
5167
Douglas Gregor0d405db2010-07-01 20:59:04 +00005168 // C++ [except.spec]p14:
5169 // An implicitly declared special member function (Clause 12) shall have an
5170 // exception-specification. [...]
5171 ImplicitExceptionSpecification ExceptSpec(Context);
5172 unsigned Quals = HasConstCopyConstructor? Qualifiers::Const : 0;
5173 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
5174 BaseEnd = ClassDecl->bases_end();
5175 Base != BaseEnd;
5176 ++Base) {
5177 // Virtual bases are handled below.
5178 if (Base->isVirtual())
5179 continue;
5180
Douglas Gregor22584312010-07-02 23:41:54 +00005181 CXXRecordDecl *BaseClassDecl
Douglas Gregor0d405db2010-07-01 20:59:04 +00005182 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregor22584312010-07-02 23:41:54 +00005183 if (!BaseClassDecl->hasDeclaredCopyConstructor())
5184 DeclareImplicitCopyConstructor(BaseClassDecl);
5185
Douglas Gregor0d405db2010-07-01 20:59:04 +00005186 if (CXXConstructorDecl *CopyConstructor
5187 = BaseClassDecl->getCopyConstructor(Context, Quals))
5188 ExceptSpec.CalledDecl(CopyConstructor);
5189 }
5190 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
5191 BaseEnd = ClassDecl->vbases_end();
5192 Base != BaseEnd;
5193 ++Base) {
Douglas Gregor22584312010-07-02 23:41:54 +00005194 CXXRecordDecl *BaseClassDecl
Douglas Gregor0d405db2010-07-01 20:59:04 +00005195 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregor22584312010-07-02 23:41:54 +00005196 if (!BaseClassDecl->hasDeclaredCopyConstructor())
5197 DeclareImplicitCopyConstructor(BaseClassDecl);
5198
Douglas Gregor0d405db2010-07-01 20:59:04 +00005199 if (CXXConstructorDecl *CopyConstructor
5200 = BaseClassDecl->getCopyConstructor(Context, Quals))
5201 ExceptSpec.CalledDecl(CopyConstructor);
5202 }
5203 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
5204 FieldEnd = ClassDecl->field_end();
5205 Field != FieldEnd;
5206 ++Field) {
5207 QualType FieldType = Context.getBaseElementType((*Field)->getType());
5208 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Douglas Gregor22584312010-07-02 23:41:54 +00005209 CXXRecordDecl *FieldClassDecl
Douglas Gregor0d405db2010-07-01 20:59:04 +00005210 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Douglas Gregor22584312010-07-02 23:41:54 +00005211 if (!FieldClassDecl->hasDeclaredCopyConstructor())
5212 DeclareImplicitCopyConstructor(FieldClassDecl);
5213
Douglas Gregor0d405db2010-07-01 20:59:04 +00005214 if (CXXConstructorDecl *CopyConstructor
5215 = FieldClassDecl->getCopyConstructor(Context, Quals))
5216 ExceptSpec.CalledDecl(CopyConstructor);
5217 }
5218 }
5219
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005220 // An implicitly-declared copy constructor is an inline public
5221 // member of its class.
5222 DeclarationName Name
5223 = Context.DeclarationNames.getCXXConstructorName(
5224 Context.getCanonicalType(ClassType));
5225 CXXConstructorDecl *CopyConstructor
5226 = CXXConstructorDecl::Create(Context, ClassDecl,
5227 ClassDecl->getLocation(), Name,
5228 Context.getFunctionType(Context.VoidTy,
5229 &ArgType, 1,
5230 false, 0,
Douglas Gregor0d405db2010-07-01 20:59:04 +00005231 ExceptSpec.hasExceptionSpecification(),
5232 ExceptSpec.hasAnyExceptionSpecification(),
5233 ExceptSpec.size(),
5234 ExceptSpec.data(),
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005235 FunctionType::ExtInfo()),
5236 /*TInfo=*/0,
5237 /*isExplicit=*/false,
5238 /*isInline=*/true,
5239 /*isImplicitlyDeclared=*/true);
5240 CopyConstructor->setAccess(AS_public);
5241 CopyConstructor->setImplicit();
5242 CopyConstructor->setTrivial(ClassDecl->hasTrivialCopyConstructor());
5243
Douglas Gregor22584312010-07-02 23:41:54 +00005244 // Note that we have declared this constructor.
5245 ClassDecl->setDeclaredCopyConstructor(true);
5246 ++ASTContext::NumImplicitCopyConstructorsDeclared;
5247
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005248 // Add the parameter to the constructor.
5249 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyConstructor,
5250 ClassDecl->getLocation(),
5251 /*IdentifierInfo=*/0,
5252 ArgType, /*TInfo=*/0,
5253 VarDecl::None,
5254 VarDecl::None, 0);
5255 CopyConstructor->setParams(&FromParam, 1);
Douglas Gregor23c94db2010-07-02 17:43:08 +00005256 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor22584312010-07-02 23:41:54 +00005257 PushOnScopeChains(CopyConstructor, S, false);
5258 ClassDecl->addDecl(CopyConstructor);
Douglas Gregor4a0c26f2010-07-01 17:57:27 +00005259
5260 return CopyConstructor;
5261}
5262
Fariborz Jahanian485f0872009-06-22 23:34:40 +00005263void Sema::DefineImplicitCopyConstructor(SourceLocation CurrentLocation,
5264 CXXConstructorDecl *CopyConstructor,
5265 unsigned TypeQuals) {
Mike Stump1eb44332009-09-09 15:08:12 +00005266 assert((CopyConstructor->isImplicit() &&
Douglas Gregor9e9199d2009-12-22 00:34:07 +00005267 CopyConstructor->isCopyConstructor(TypeQuals) &&
Douglas Gregorc070cc62010-06-17 23:14:26 +00005268 !CopyConstructor->isUsed(false)) &&
Fariborz Jahanian485f0872009-06-22 23:34:40 +00005269 "DefineImplicitCopyConstructor - call it for implicit copy ctor");
Mike Stump1eb44332009-09-09 15:08:12 +00005270
Anders Carlsson63010a72010-04-23 16:24:12 +00005271 CXXRecordDecl *ClassDecl = CopyConstructor->getParent();
Fariborz Jahanian485f0872009-06-22 23:34:40 +00005272 assert(ClassDecl && "DefineImplicitCopyConstructor - invalid constructor");
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00005273
Douglas Gregor39957dc2010-05-01 15:04:51 +00005274 ImplicitlyDefinedFunctionScope Scope(*this, CopyConstructor);
Douglas Gregorc63d2c82010-05-12 16:39:35 +00005275 ErrorTrap Trap(*this);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00005276
Douglas Gregorc63d2c82010-05-12 16:39:35 +00005277 if (SetBaseOrMemberInitializers(CopyConstructor, 0, 0, /*AnyErrors=*/false) ||
5278 Trap.hasErrorOccurred()) {
Anders Carlsson59b7f152010-05-01 16:39:01 +00005279 Diag(CurrentLocation, diag::note_member_synthesized_at)
Douglas Gregorfb8cc252010-05-05 05:51:00 +00005280 << CXXCopyConstructor << Context.getTagDeclType(ClassDecl);
Anders Carlsson59b7f152010-05-01 16:39:01 +00005281 CopyConstructor->setInvalidDecl();
Douglas Gregorfb8cc252010-05-05 05:51:00 +00005282 } else {
5283 CopyConstructor->setBody(ActOnCompoundStmt(CopyConstructor->getLocation(),
5284 CopyConstructor->getLocation(),
5285 MultiStmtArg(*this, 0, 0),
5286 /*isStmtExpr=*/false)
5287 .takeAs<Stmt>());
Anders Carlsson8e142cc2010-04-25 00:52:09 +00005288 }
Douglas Gregorfb8cc252010-05-05 05:51:00 +00005289
5290 CopyConstructor->setUsed();
Fariborz Jahanian485f0872009-06-22 23:34:40 +00005291}
5292
Anders Carlssonda3f4e22009-08-25 05:12:04 +00005293Sema::OwningExprResult
Anders Carlssonec8e5ea2009-09-05 07:40:38 +00005294Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
Mike Stump1eb44332009-09-09 15:08:12 +00005295 CXXConstructorDecl *Constructor,
Douglas Gregor16006c92009-12-16 18:50:27 +00005296 MultiExprArg ExprArgs,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00005297 bool RequiresZeroInit,
Anders Carlsson72e96fd2010-05-02 22:54:08 +00005298 CXXConstructExpr::ConstructionKind ConstructKind) {
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00005299 bool Elidable = false;
Mike Stump1eb44332009-09-09 15:08:12 +00005300
Douglas Gregor2f599792010-04-02 18:24:57 +00005301 // C++0x [class.copy]p34:
5302 // When certain criteria are met, an implementation is allowed to
5303 // omit the copy/move construction of a class object, even if the
5304 // copy/move constructor and/or destructor for the object have
5305 // side effects. [...]
5306 // - when a temporary class object that has not been bound to a
5307 // reference (12.2) would be copied/moved to a class object
5308 // with the same cv-unqualified type, the copy/move operation
5309 // can be omitted by constructing the temporary object
5310 // directly into the target of the omitted copy/move
5311 if (Constructor->isCopyConstructor() && ExprArgs.size() >= 1) {
5312 Expr *SubExpr = ((Expr **)ExprArgs.get())[0];
5313 Elidable = SubExpr->isTemporaryObject() &&
5314 Context.hasSameUnqualifiedType(SubExpr->getType(),
5315 Context.getTypeDeclType(Constructor->getParent()));
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00005316 }
Mike Stump1eb44332009-09-09 15:08:12 +00005317
5318 return BuildCXXConstructExpr(ConstructLoc, DeclInitType, Constructor,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00005319 Elidable, move(ExprArgs), RequiresZeroInit,
Anders Carlsson72e96fd2010-05-02 22:54:08 +00005320 ConstructKind);
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00005321}
5322
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00005323/// BuildCXXConstructExpr - Creates a complete call to a constructor,
5324/// including handling of its default argument expressions.
Anders Carlssonda3f4e22009-08-25 05:12:04 +00005325Sema::OwningExprResult
Anders Carlssonec8e5ea2009-09-05 07:40:38 +00005326Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
5327 CXXConstructorDecl *Constructor, bool Elidable,
Douglas Gregor16006c92009-12-16 18:50:27 +00005328 MultiExprArg ExprArgs,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00005329 bool RequiresZeroInit,
Anders Carlsson72e96fd2010-05-02 22:54:08 +00005330 CXXConstructExpr::ConstructionKind ConstructKind) {
Anders Carlssonf47511a2009-09-07 22:23:31 +00005331 unsigned NumExprs = ExprArgs.size();
5332 Expr **Exprs = (Expr **)ExprArgs.release();
Mike Stump1eb44332009-09-09 15:08:12 +00005333
Douglas Gregor7edfb692009-11-23 12:27:39 +00005334 MarkDeclarationReferenced(ConstructLoc, Constructor);
Douglas Gregor99a2e602009-12-16 01:38:02 +00005335 return Owned(CXXConstructExpr::Create(Context, DeclInitType, ConstructLoc,
Douglas Gregor16006c92009-12-16 18:50:27 +00005336 Constructor, Elidable, Exprs, NumExprs,
Anders Carlsson72e96fd2010-05-02 22:54:08 +00005337 RequiresZeroInit, ConstructKind));
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00005338}
5339
Mike Stump1eb44332009-09-09 15:08:12 +00005340bool Sema::InitializeVarWithConstructor(VarDecl *VD,
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00005341 CXXConstructorDecl *Constructor,
Anders Carlssonf47511a2009-09-07 22:23:31 +00005342 MultiExprArg Exprs) {
Mike Stump1eb44332009-09-09 15:08:12 +00005343 OwningExprResult TempResult =
Fariborz Jahanianc0fcce42009-10-28 18:41:06 +00005344 BuildCXXConstructExpr(VD->getLocation(), VD->getType(), Constructor,
Anders Carlssonf47511a2009-09-07 22:23:31 +00005345 move(Exprs));
Anders Carlssonfe2de492009-08-25 05:18:00 +00005346 if (TempResult.isInvalid())
5347 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00005348
Anders Carlssonda3f4e22009-08-25 05:12:04 +00005349 Expr *Temp = TempResult.takeAs<Expr>();
Douglas Gregord7f37bf2009-06-22 23:06:13 +00005350 MarkDeclarationReferenced(VD->getLocation(), Constructor);
Anders Carlsson0ece4912009-12-15 20:51:39 +00005351 Temp = MaybeCreateCXXExprWithTemporaries(Temp);
Douglas Gregor838db382010-02-11 01:19:42 +00005352 VD->setInit(Temp);
Mike Stump1eb44332009-09-09 15:08:12 +00005353
Anders Carlssonfe2de492009-08-25 05:18:00 +00005354 return false;
Anders Carlsson930e8d02009-04-16 23:50:50 +00005355}
5356
John McCall68c6c9a2010-02-02 09:10:11 +00005357void Sema::FinalizeVarWithDestructor(VarDecl *VD, const RecordType *Record) {
5358 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Record->getDecl());
Douglas Gregor333de062010-02-25 18:11:54 +00005359 if (!ClassDecl->isInvalidDecl() && !VD->isInvalidDecl() &&
Douglas Gregorfb2db462010-05-22 17:12:29 +00005360 !ClassDecl->hasTrivialDestructor() && !ClassDecl->isDependentContext()) {
Douglas Gregordb89f282010-07-01 22:47:18 +00005361 CXXDestructorDecl *Destructor = LookupDestructor(ClassDecl);
John McCall4f9506a2010-02-02 08:45:54 +00005362 MarkDeclarationReferenced(VD->getLocation(), Destructor);
John McCall58e6f342010-03-16 05:22:47 +00005363 CheckDestructorAccess(VD->getLocation(), Destructor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00005364 PDiag(diag::err_access_dtor_var)
John McCall58e6f342010-03-16 05:22:47 +00005365 << VD->getDeclName()
5366 << VD->getType());
John McCall626e96e2010-08-01 20:20:59 +00005367
5368 if (!VD->isInvalidDecl() && VD->hasGlobalStorage())
5369 Diag(VD->getLocation(), diag::warn_global_destructor);
John McCall4f9506a2010-02-02 08:45:54 +00005370 }
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00005371}
5372
Mike Stump1eb44332009-09-09 15:08:12 +00005373/// AddCXXDirectInitializerToDecl - This action is called immediately after
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00005374/// ActOnDeclarator, when a C++ direct initializer is present.
5375/// e.g: "int x(1);"
Chris Lattnerb28317a2009-03-28 19:18:32 +00005376void Sema::AddCXXDirectInitializerToDecl(DeclPtrTy Dcl,
5377 SourceLocation LParenLoc,
Sebastian Redlf53597f2009-03-15 17:47:39 +00005378 MultiExprArg Exprs,
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00005379 SourceLocation *CommaLocs,
5380 SourceLocation RParenLoc) {
Daniel Dunbar51846262009-12-24 19:19:26 +00005381 assert(Exprs.size() != 0 && Exprs.get() && "missing expressions");
Chris Lattnerb28317a2009-03-28 19:18:32 +00005382 Decl *RealDecl = Dcl.getAs<Decl>();
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00005383
5384 // If there is no declaration, there was an error parsing it. Just ignore
5385 // the initializer.
Chris Lattnerb28317a2009-03-28 19:18:32 +00005386 if (RealDecl == 0)
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00005387 return;
Mike Stump1eb44332009-09-09 15:08:12 +00005388
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00005389 VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl);
5390 if (!VDecl) {
5391 Diag(RealDecl->getLocation(), diag::err_illegal_initializer);
5392 RealDecl->setInvalidDecl();
5393 return;
5394 }
5395
Douglas Gregor83ddad32009-08-26 21:14:46 +00005396 // We will represent direct-initialization similarly to copy-initialization:
Argyrios Kyrtzidisce8e2922008-10-06 23:08:37 +00005397 // int x(1); -as-> int x = 1;
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00005398 // ClassType x(a,b,c); -as-> ClassType x = ClassType(a,b,c);
5399 //
5400 // Clients that want to distinguish between the two forms, can check for
5401 // direct initializer using VarDecl::hasCXXDirectInitializer().
5402 // A major benefit is that clients that don't particularly care about which
5403 // exactly form was it (like the CodeGen) can handle both cases without
5404 // special case code.
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +00005405
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00005406 // C++ 8.5p11:
5407 // The form of initialization (using parentheses or '=') is generally
5408 // insignificant, but does matter when the entity being initialized has a
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +00005409 // class type.
5410
Douglas Gregor4dffad62010-02-11 22:55:30 +00005411 if (!VDecl->getType()->isDependentType() &&
5412 RequireCompleteType(VDecl->getLocation(), VDecl->getType(),
Douglas Gregor615c5d42009-03-24 16:43:20 +00005413 diag::err_typecheck_decl_incomplete_type)) {
5414 VDecl->setInvalidDecl();
5415 return;
5416 }
5417
Douglas Gregor90f93822009-12-22 22:17:25 +00005418 // The variable can not have an abstract class type.
5419 if (RequireNonAbstractType(VDecl->getLocation(), VDecl->getType(),
5420 diag::err_abstract_type_in_decl,
5421 AbstractVariableType))
5422 VDecl->setInvalidDecl();
5423
Sebastian Redl31310a22010-02-01 20:16:42 +00005424 const VarDecl *Def;
5425 if ((Def = VDecl->getDefinition()) && Def != VDecl) {
Douglas Gregor90f93822009-12-22 22:17:25 +00005426 Diag(VDecl->getLocation(), diag::err_redefinition)
5427 << VDecl->getDeclName();
5428 Diag(Def->getLocation(), diag::note_previous_definition);
5429 VDecl->setInvalidDecl();
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +00005430 return;
5431 }
Douglas Gregor4dffad62010-02-11 22:55:30 +00005432
5433 // If either the declaration has a dependent type or if any of the
5434 // expressions is type-dependent, we represent the initialization
5435 // via a ParenListExpr for later use during template instantiation.
5436 if (VDecl->getType()->isDependentType() ||
5437 Expr::hasAnyTypeDependentArguments((Expr **)Exprs.get(), Exprs.size())) {
5438 // Let clients know that initialization was done with a direct initializer.
5439 VDecl->setCXXDirectInitializer(true);
5440
5441 // Store the initialization expressions as a ParenListExpr.
5442 unsigned NumExprs = Exprs.size();
5443 VDecl->setInit(new (Context) ParenListExpr(Context, LParenLoc,
5444 (Expr **)Exprs.release(),
5445 NumExprs, RParenLoc));
5446 return;
5447 }
Douglas Gregor90f93822009-12-22 22:17:25 +00005448
5449 // Capture the variable that is being initialized and the style of
5450 // initialization.
5451 InitializedEntity Entity = InitializedEntity::InitializeVariable(VDecl);
5452
5453 // FIXME: Poor source location information.
5454 InitializationKind Kind
5455 = InitializationKind::CreateDirect(VDecl->getLocation(),
5456 LParenLoc, RParenLoc);
5457
5458 InitializationSequence InitSeq(*this, Entity, Kind,
5459 (Expr**)Exprs.get(), Exprs.size());
5460 OwningExprResult Result = InitSeq.Perform(*this, Entity, Kind, move(Exprs));
5461 if (Result.isInvalid()) {
5462 VDecl->setInvalidDecl();
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00005463 return;
5464 }
Douglas Gregor90f93822009-12-22 22:17:25 +00005465
5466 Result = MaybeCreateCXXExprWithTemporaries(move(Result));
Douglas Gregor838db382010-02-11 01:19:42 +00005467 VDecl->setInit(Result.takeAs<Expr>());
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00005468 VDecl->setCXXDirectInitializer(true);
Argyrios Kyrtzidisce8e2922008-10-06 23:08:37 +00005469
John McCall4204f072010-08-02 21:13:48 +00005470 if (!VDecl->isInvalidDecl() &&
5471 !VDecl->getDeclContext()->isDependentContext() &&
5472 VDecl->hasGlobalStorage() &&
5473 !VDecl->getInit()->isConstantInitializer(Context,
5474 VDecl->getType()->isReferenceType()))
5475 Diag(VDecl->getLocation(), diag::warn_global_constructor)
5476 << VDecl->getInit()->getSourceRange();
5477
John McCall68c6c9a2010-02-02 09:10:11 +00005478 if (const RecordType *Record = VDecl->getType()->getAs<RecordType>())
5479 FinalizeVarWithDestructor(VDecl, Record);
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00005480}
Douglas Gregor27c8dc02008-10-29 00:13:59 +00005481
Douglas Gregor39da0b82009-09-09 23:08:42 +00005482/// \brief Given a constructor and the set of arguments provided for the
5483/// constructor, convert the arguments and add any required default arguments
5484/// to form a proper call to this constructor.
5485///
5486/// \returns true if an error occurred, false otherwise.
5487bool
5488Sema::CompleteConstructorCall(CXXConstructorDecl *Constructor,
5489 MultiExprArg ArgsPtr,
5490 SourceLocation Loc,
5491 ASTOwningVector<&ActionBase::DeleteExpr> &ConvertedArgs) {
5492 // FIXME: This duplicates a lot of code from Sema::ConvertArgumentsForCall.
5493 unsigned NumArgs = ArgsPtr.size();
5494 Expr **Args = (Expr **)ArgsPtr.get();
5495
5496 const FunctionProtoType *Proto
5497 = Constructor->getType()->getAs<FunctionProtoType>();
5498 assert(Proto && "Constructor without a prototype?");
5499 unsigned NumArgsInProto = Proto->getNumArgs();
Douglas Gregor39da0b82009-09-09 23:08:42 +00005500
5501 // If too few arguments are available, we'll fill in the rest with defaults.
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00005502 if (NumArgs < NumArgsInProto)
Douglas Gregor39da0b82009-09-09 23:08:42 +00005503 ConvertedArgs.reserve(NumArgsInProto);
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00005504 else
Douglas Gregor39da0b82009-09-09 23:08:42 +00005505 ConvertedArgs.reserve(NumArgs);
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00005506
5507 VariadicCallType CallType =
5508 Proto->isVariadic() ? VariadicConstructor : VariadicDoesNotApply;
5509 llvm::SmallVector<Expr *, 8> AllArgs;
5510 bool Invalid = GatherArgumentsForCall(Loc, Constructor,
5511 Proto, 0, Args, NumArgs, AllArgs,
5512 CallType);
5513 for (unsigned i =0, size = AllArgs.size(); i < size; i++)
5514 ConvertedArgs.push_back(AllArgs[i]);
5515 return Invalid;
Douglas Gregor18fe5682008-11-03 20:45:27 +00005516}
5517
Anders Carlsson20d45d22009-12-12 00:32:00 +00005518static inline bool
5519CheckOperatorNewDeleteDeclarationScope(Sema &SemaRef,
5520 const FunctionDecl *FnDecl) {
5521 const DeclContext *DC = FnDecl->getDeclContext()->getLookupContext();
5522 if (isa<NamespaceDecl>(DC)) {
5523 return SemaRef.Diag(FnDecl->getLocation(),
5524 diag::err_operator_new_delete_declared_in_namespace)
5525 << FnDecl->getDeclName();
5526 }
5527
5528 if (isa<TranslationUnitDecl>(DC) &&
5529 FnDecl->getStorageClass() == FunctionDecl::Static) {
5530 return SemaRef.Diag(FnDecl->getLocation(),
5531 diag::err_operator_new_delete_declared_static)
5532 << FnDecl->getDeclName();
5533 }
5534
Anders Carlssonfcfdb2b2009-12-12 02:43:16 +00005535 return false;
Anders Carlsson20d45d22009-12-12 00:32:00 +00005536}
5537
Anders Carlsson156c78e2009-12-13 17:53:43 +00005538static inline bool
5539CheckOperatorNewDeleteTypes(Sema &SemaRef, const FunctionDecl *FnDecl,
5540 CanQualType ExpectedResultType,
5541 CanQualType ExpectedFirstParamType,
5542 unsigned DependentParamTypeDiag,
5543 unsigned InvalidParamTypeDiag) {
5544 QualType ResultType =
5545 FnDecl->getType()->getAs<FunctionType>()->getResultType();
5546
5547 // Check that the result type is not dependent.
5548 if (ResultType->isDependentType())
5549 return SemaRef.Diag(FnDecl->getLocation(),
5550 diag::err_operator_new_delete_dependent_result_type)
5551 << FnDecl->getDeclName() << ExpectedResultType;
5552
5553 // Check that the result type is what we expect.
5554 if (SemaRef.Context.getCanonicalType(ResultType) != ExpectedResultType)
5555 return SemaRef.Diag(FnDecl->getLocation(),
5556 diag::err_operator_new_delete_invalid_result_type)
5557 << FnDecl->getDeclName() << ExpectedResultType;
5558
5559 // A function template must have at least 2 parameters.
5560 if (FnDecl->getDescribedFunctionTemplate() && FnDecl->getNumParams() < 2)
5561 return SemaRef.Diag(FnDecl->getLocation(),
5562 diag::err_operator_new_delete_template_too_few_parameters)
5563 << FnDecl->getDeclName();
5564
5565 // The function decl must have at least 1 parameter.
5566 if (FnDecl->getNumParams() == 0)
5567 return SemaRef.Diag(FnDecl->getLocation(),
5568 diag::err_operator_new_delete_too_few_parameters)
5569 << FnDecl->getDeclName();
5570
5571 // Check the the first parameter type is not dependent.
5572 QualType FirstParamType = FnDecl->getParamDecl(0)->getType();
5573 if (FirstParamType->isDependentType())
5574 return SemaRef.Diag(FnDecl->getLocation(), DependentParamTypeDiag)
5575 << FnDecl->getDeclName() << ExpectedFirstParamType;
5576
5577 // Check that the first parameter type is what we expect.
Douglas Gregor6e790ab2009-12-22 23:42:49 +00005578 if (SemaRef.Context.getCanonicalType(FirstParamType).getUnqualifiedType() !=
Anders Carlsson156c78e2009-12-13 17:53:43 +00005579 ExpectedFirstParamType)
5580 return SemaRef.Diag(FnDecl->getLocation(), InvalidParamTypeDiag)
5581 << FnDecl->getDeclName() << ExpectedFirstParamType;
5582
5583 return false;
5584}
5585
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00005586static bool
Anders Carlsson156c78e2009-12-13 17:53:43 +00005587CheckOperatorNewDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
Anders Carlsson20d45d22009-12-12 00:32:00 +00005588 // C++ [basic.stc.dynamic.allocation]p1:
5589 // A program is ill-formed if an allocation function is declared in a
5590 // namespace scope other than global scope or declared static in global
5591 // scope.
5592 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
5593 return true;
Anders Carlsson156c78e2009-12-13 17:53:43 +00005594
5595 CanQualType SizeTy =
5596 SemaRef.Context.getCanonicalType(SemaRef.Context.getSizeType());
5597
5598 // C++ [basic.stc.dynamic.allocation]p1:
5599 // The return type shall be void*. The first parameter shall have type
5600 // std::size_t.
5601 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidPtrTy,
5602 SizeTy,
5603 diag::err_operator_new_dependent_param_type,
5604 diag::err_operator_new_param_type))
5605 return true;
5606
5607 // C++ [basic.stc.dynamic.allocation]p1:
5608 // The first parameter shall not have an associated default argument.
5609 if (FnDecl->getParamDecl(0)->hasDefaultArg())
Anders Carlssona3ccda52009-12-12 00:26:23 +00005610 return SemaRef.Diag(FnDecl->getLocation(),
Anders Carlsson156c78e2009-12-13 17:53:43 +00005611 diag::err_operator_new_default_arg)
5612 << FnDecl->getDeclName() << FnDecl->getParamDecl(0)->getDefaultArgRange();
5613
5614 return false;
Anders Carlssona3ccda52009-12-12 00:26:23 +00005615}
5616
5617static bool
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00005618CheckOperatorDeleteDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
5619 // C++ [basic.stc.dynamic.deallocation]p1:
5620 // A program is ill-formed if deallocation functions are declared in a
5621 // namespace scope other than global scope or declared static in global
5622 // scope.
Anders Carlsson20d45d22009-12-12 00:32:00 +00005623 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
5624 return true;
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00005625
5626 // C++ [basic.stc.dynamic.deallocation]p2:
5627 // Each deallocation function shall return void and its first parameter
5628 // shall be void*.
Anders Carlsson156c78e2009-12-13 17:53:43 +00005629 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidTy,
5630 SemaRef.Context.VoidPtrTy,
5631 diag::err_operator_delete_dependent_param_type,
5632 diag::err_operator_delete_param_type))
5633 return true;
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00005634
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00005635 return false;
5636}
5637
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005638/// CheckOverloadedOperatorDeclaration - Check whether the declaration
5639/// of this overloaded operator is well-formed. If so, returns false;
5640/// otherwise, emits appropriate diagnostics and returns true.
5641bool Sema::CheckOverloadedOperatorDeclaration(FunctionDecl *FnDecl) {
Douglas Gregor43c7bad2008-11-17 16:14:12 +00005642 assert(FnDecl && FnDecl->isOverloadedOperator() &&
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005643 "Expected an overloaded operator declaration");
5644
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005645 OverloadedOperatorKind Op = FnDecl->getOverloadedOperator();
5646
Mike Stump1eb44332009-09-09 15:08:12 +00005647 // C++ [over.oper]p5:
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005648 // The allocation and deallocation functions, operator new,
5649 // operator new[], operator delete and operator delete[], are
5650 // described completely in 3.7.3. The attributes and restrictions
5651 // found in the rest of this subclause do not apply to them unless
5652 // explicitly stated in 3.7.3.
Anders Carlsson1152c392009-12-11 23:31:21 +00005653 if (Op == OO_Delete || Op == OO_Array_Delete)
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00005654 return CheckOperatorDeleteDeclaration(*this, FnDecl);
Fariborz Jahanianb03bfa52009-11-10 23:47:18 +00005655
Anders Carlssona3ccda52009-12-12 00:26:23 +00005656 if (Op == OO_New || Op == OO_Array_New)
5657 return CheckOperatorNewDeclaration(*this, FnDecl);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005658
5659 // C++ [over.oper]p6:
5660 // An operator function shall either be a non-static member
5661 // function or be a non-member function and have at least one
5662 // parameter whose type is a class, a reference to a class, an
5663 // enumeration, or a reference to an enumeration.
Douglas Gregor43c7bad2008-11-17 16:14:12 +00005664 if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(FnDecl)) {
5665 if (MethodDecl->isStatic())
5666 return Diag(FnDecl->getLocation(),
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00005667 diag::err_operator_overload_static) << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005668 } else {
5669 bool ClassOrEnumParam = false;
Douglas Gregor43c7bad2008-11-17 16:14:12 +00005670 for (FunctionDecl::param_iterator Param = FnDecl->param_begin(),
5671 ParamEnd = FnDecl->param_end();
5672 Param != ParamEnd; ++Param) {
5673 QualType ParamType = (*Param)->getType().getNonReferenceType();
Eli Friedman5d39dee2009-06-27 05:59:59 +00005674 if (ParamType->isDependentType() || ParamType->isRecordType() ||
5675 ParamType->isEnumeralType()) {
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005676 ClassOrEnumParam = true;
5677 break;
5678 }
5679 }
5680
Douglas Gregor43c7bad2008-11-17 16:14:12 +00005681 if (!ClassOrEnumParam)
5682 return Diag(FnDecl->getLocation(),
Chris Lattnerf3a41af2008-11-20 06:38:18 +00005683 diag::err_operator_overload_needs_class_or_enum)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00005684 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005685 }
5686
5687 // C++ [over.oper]p8:
5688 // An operator function cannot have default arguments (8.3.6),
5689 // except where explicitly stated below.
5690 //
Mike Stump1eb44332009-09-09 15:08:12 +00005691 // Only the function-call operator allows default arguments
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005692 // (C++ [over.call]p1).
5693 if (Op != OO_Call) {
5694 for (FunctionDecl::param_iterator Param = FnDecl->param_begin();
5695 Param != FnDecl->param_end(); ++Param) {
Anders Carlsson156c78e2009-12-13 17:53:43 +00005696 if ((*Param)->hasDefaultArg())
Mike Stump1eb44332009-09-09 15:08:12 +00005697 return Diag((*Param)->getLocation(),
Douglas Gregor61366e92008-12-24 00:01:03 +00005698 diag::err_operator_overload_default_arg)
Anders Carlsson156c78e2009-12-13 17:53:43 +00005699 << FnDecl->getDeclName() << (*Param)->getDefaultArgRange();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005700 }
5701 }
5702
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00005703 static const bool OperatorUses[NUM_OVERLOADED_OPERATORS][3] = {
5704 { false, false, false }
5705#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
5706 , { Unary, Binary, MemberOnly }
5707#include "clang/Basic/OperatorKinds.def"
5708 };
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005709
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00005710 bool CanBeUnaryOperator = OperatorUses[Op][0];
5711 bool CanBeBinaryOperator = OperatorUses[Op][1];
5712 bool MustBeMemberOperator = OperatorUses[Op][2];
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005713
5714 // C++ [over.oper]p8:
5715 // [...] Operator functions cannot have more or fewer parameters
5716 // than the number required for the corresponding operator, as
5717 // described in the rest of this subclause.
Mike Stump1eb44332009-09-09 15:08:12 +00005718 unsigned NumParams = FnDecl->getNumParams()
Douglas Gregor43c7bad2008-11-17 16:14:12 +00005719 + (isa<CXXMethodDecl>(FnDecl)? 1 : 0);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005720 if (Op != OO_Call &&
5721 ((NumParams == 1 && !CanBeUnaryOperator) ||
5722 (NumParams == 2 && !CanBeBinaryOperator) ||
5723 (NumParams < 1) || (NumParams > 2))) {
5724 // We have the wrong number of parameters.
Chris Lattner416e46f2008-11-21 07:57:12 +00005725 unsigned ErrorKind;
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00005726 if (CanBeUnaryOperator && CanBeBinaryOperator) {
Chris Lattner416e46f2008-11-21 07:57:12 +00005727 ErrorKind = 2; // 2 -> unary or binary.
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00005728 } else if (CanBeUnaryOperator) {
Chris Lattner416e46f2008-11-21 07:57:12 +00005729 ErrorKind = 0; // 0 -> unary
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00005730 } else {
Chris Lattneraf7ae4e2008-11-21 07:50:02 +00005731 assert(CanBeBinaryOperator &&
5732 "All non-call overloaded operators are unary or binary!");
Chris Lattner416e46f2008-11-21 07:57:12 +00005733 ErrorKind = 1; // 1 -> binary
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00005734 }
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005735
Chris Lattner416e46f2008-11-21 07:57:12 +00005736 return Diag(FnDecl->getLocation(), diag::err_operator_overload_must_be)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00005737 << FnDecl->getDeclName() << NumParams << ErrorKind;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005738 }
Sebastian Redl64b45f72009-01-05 20:52:13 +00005739
Douglas Gregor43c7bad2008-11-17 16:14:12 +00005740 // Overloaded operators other than operator() cannot be variadic.
5741 if (Op != OO_Call &&
John McCall183700f2009-09-21 23:43:11 +00005742 FnDecl->getType()->getAs<FunctionProtoType>()->isVariadic()) {
Chris Lattnerf3a41af2008-11-20 06:38:18 +00005743 return Diag(FnDecl->getLocation(), diag::err_operator_overload_variadic)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00005744 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005745 }
5746
5747 // Some operators must be non-static member functions.
Douglas Gregor43c7bad2008-11-17 16:14:12 +00005748 if (MustBeMemberOperator && !isa<CXXMethodDecl>(FnDecl)) {
5749 return Diag(FnDecl->getLocation(),
Chris Lattnerf3a41af2008-11-20 06:38:18 +00005750 diag::err_operator_overload_must_be_member)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00005751 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005752 }
5753
5754 // C++ [over.inc]p1:
5755 // The user-defined function called operator++ implements the
5756 // prefix and postfix ++ operator. If this function is a member
5757 // function with no parameters, or a non-member function with one
5758 // parameter of class or enumeration type, it defines the prefix
5759 // increment operator ++ for objects of that type. If the function
5760 // is a member function with one parameter (which shall be of type
5761 // int) or a non-member function with two parameters (the second
5762 // of which shall be of type int), it defines the postfix
5763 // increment operator ++ for objects of that type.
5764 if ((Op == OO_PlusPlus || Op == OO_MinusMinus) && NumParams == 2) {
5765 ParmVarDecl *LastParam = FnDecl->getParamDecl(FnDecl->getNumParams() - 1);
5766 bool ParamIsInt = false;
John McCall183700f2009-09-21 23:43:11 +00005767 if (const BuiltinType *BT = LastParam->getType()->getAs<BuiltinType>())
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005768 ParamIsInt = BT->getKind() == BuiltinType::Int;
5769
Chris Lattneraf7ae4e2008-11-21 07:50:02 +00005770 if (!ParamIsInt)
5771 return Diag(LastParam->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00005772 diag::err_operator_overload_post_incdec_must_be_int)
Chris Lattnerd1625842008-11-24 06:25:27 +00005773 << LastParam->getType() << (Op == OO_MinusMinus);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005774 }
5775
Sebastian Redl64b45f72009-01-05 20:52:13 +00005776 // Notify the class if it got an assignment operator.
5777 if (Op == OO_Equal) {
5778 // Would have returned earlier otherwise.
5779 assert(isa<CXXMethodDecl>(FnDecl) &&
5780 "Overloaded = not member, but not filtered.");
5781 CXXMethodDecl *Method = cast<CXXMethodDecl>(FnDecl);
5782 Method->getParent()->addedAssignmentOperator(Context, Method);
5783 }
5784
Douglas Gregor43c7bad2008-11-17 16:14:12 +00005785 return false;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005786}
Chris Lattner5a003a42008-12-17 07:09:26 +00005787
Sean Hunta6c058d2010-01-13 09:01:02 +00005788/// CheckLiteralOperatorDeclaration - Check whether the declaration
5789/// of this literal operator function is well-formed. If so, returns
5790/// false; otherwise, emits appropriate diagnostics and returns true.
5791bool Sema::CheckLiteralOperatorDeclaration(FunctionDecl *FnDecl) {
5792 DeclContext *DC = FnDecl->getDeclContext();
5793 Decl::Kind Kind = DC->getDeclKind();
5794 if (Kind != Decl::TranslationUnit && Kind != Decl::Namespace &&
5795 Kind != Decl::LinkageSpec) {
5796 Diag(FnDecl->getLocation(), diag::err_literal_operator_outside_namespace)
5797 << FnDecl->getDeclName();
5798 return true;
5799 }
5800
5801 bool Valid = false;
5802
Sean Hunt216c2782010-04-07 23:11:06 +00005803 // template <char...> type operator "" name() is the only valid template
5804 // signature, and the only valid signature with no parameters.
5805 if (FnDecl->param_size() == 0) {
5806 if (FunctionTemplateDecl *TpDecl = FnDecl->getDescribedFunctionTemplate()) {
5807 // Must have only one template parameter
5808 TemplateParameterList *Params = TpDecl->getTemplateParameters();
5809 if (Params->size() == 1) {
5810 NonTypeTemplateParmDecl *PmDecl =
5811 cast<NonTypeTemplateParmDecl>(Params->getParam(0));
Sean Hunta6c058d2010-01-13 09:01:02 +00005812
Sean Hunt216c2782010-04-07 23:11:06 +00005813 // The template parameter must be a char parameter pack.
5814 // FIXME: This test will always fail because non-type parameter packs
5815 // have not been implemented.
5816 if (PmDecl && PmDecl->isTemplateParameterPack() &&
5817 Context.hasSameType(PmDecl->getType(), Context.CharTy))
5818 Valid = true;
5819 }
5820 }
5821 } else {
Sean Hunta6c058d2010-01-13 09:01:02 +00005822 // Check the first parameter
Sean Hunt216c2782010-04-07 23:11:06 +00005823 FunctionDecl::param_iterator Param = FnDecl->param_begin();
5824
Sean Hunta6c058d2010-01-13 09:01:02 +00005825 QualType T = (*Param)->getType();
5826
Sean Hunt30019c02010-04-07 22:57:35 +00005827 // unsigned long long int, long double, and any character type are allowed
5828 // as the only parameters.
Sean Hunta6c058d2010-01-13 09:01:02 +00005829 if (Context.hasSameType(T, Context.UnsignedLongLongTy) ||
5830 Context.hasSameType(T, Context.LongDoubleTy) ||
5831 Context.hasSameType(T, Context.CharTy) ||
5832 Context.hasSameType(T, Context.WCharTy) ||
5833 Context.hasSameType(T, Context.Char16Ty) ||
5834 Context.hasSameType(T, Context.Char32Ty)) {
5835 if (++Param == FnDecl->param_end())
5836 Valid = true;
5837 goto FinishedParams;
5838 }
5839
Sean Hunt30019c02010-04-07 22:57:35 +00005840 // Otherwise it must be a pointer to const; let's strip those qualifiers.
Sean Hunta6c058d2010-01-13 09:01:02 +00005841 const PointerType *PT = T->getAs<PointerType>();
5842 if (!PT)
5843 goto FinishedParams;
5844 T = PT->getPointeeType();
5845 if (!T.isConstQualified())
5846 goto FinishedParams;
5847 T = T.getUnqualifiedType();
5848
5849 // Move on to the second parameter;
5850 ++Param;
5851
5852 // If there is no second parameter, the first must be a const char *
5853 if (Param == FnDecl->param_end()) {
5854 if (Context.hasSameType(T, Context.CharTy))
5855 Valid = true;
5856 goto FinishedParams;
5857 }
5858
5859 // const char *, const wchar_t*, const char16_t*, and const char32_t*
5860 // are allowed as the first parameter to a two-parameter function
5861 if (!(Context.hasSameType(T, Context.CharTy) ||
5862 Context.hasSameType(T, Context.WCharTy) ||
5863 Context.hasSameType(T, Context.Char16Ty) ||
5864 Context.hasSameType(T, Context.Char32Ty)))
5865 goto FinishedParams;
5866
5867 // The second and final parameter must be an std::size_t
5868 T = (*Param)->getType().getUnqualifiedType();
5869 if (Context.hasSameType(T, Context.getSizeType()) &&
5870 ++Param == FnDecl->param_end())
5871 Valid = true;
5872 }
5873
5874 // FIXME: This diagnostic is absolutely terrible.
5875FinishedParams:
5876 if (!Valid) {
5877 Diag(FnDecl->getLocation(), diag::err_literal_operator_params)
5878 << FnDecl->getDeclName();
5879 return true;
5880 }
5881
5882 return false;
5883}
5884
Douglas Gregor074149e2009-01-05 19:45:36 +00005885/// ActOnStartLinkageSpecification - Parsed the beginning of a C++
5886/// linkage specification, including the language and (if present)
5887/// the '{'. ExternLoc is the location of the 'extern', LangLoc is
5888/// the location of the language string literal, which is provided
5889/// by Lang/StrSize. LBraceLoc, if valid, provides the location of
5890/// the '{' brace. Otherwise, this linkage specification does not
5891/// have any braces.
Chris Lattnerb28317a2009-03-28 19:18:32 +00005892Sema::DeclPtrTy Sema::ActOnStartLinkageSpecification(Scope *S,
5893 SourceLocation ExternLoc,
5894 SourceLocation LangLoc,
Benjamin Kramerd5663812010-05-03 13:08:54 +00005895 llvm::StringRef Lang,
Chris Lattnerb28317a2009-03-28 19:18:32 +00005896 SourceLocation LBraceLoc) {
Chris Lattnercc98eac2008-12-17 07:13:27 +00005897 LinkageSpecDecl::LanguageIDs Language;
Benjamin Kramerd5663812010-05-03 13:08:54 +00005898 if (Lang == "\"C\"")
Chris Lattnercc98eac2008-12-17 07:13:27 +00005899 Language = LinkageSpecDecl::lang_c;
Benjamin Kramerd5663812010-05-03 13:08:54 +00005900 else if (Lang == "\"C++\"")
Chris Lattnercc98eac2008-12-17 07:13:27 +00005901 Language = LinkageSpecDecl::lang_cxx;
5902 else {
Douglas Gregor074149e2009-01-05 19:45:36 +00005903 Diag(LangLoc, diag::err_bad_language);
Chris Lattnerb28317a2009-03-28 19:18:32 +00005904 return DeclPtrTy();
Chris Lattnercc98eac2008-12-17 07:13:27 +00005905 }
Mike Stump1eb44332009-09-09 15:08:12 +00005906
Chris Lattnercc98eac2008-12-17 07:13:27 +00005907 // FIXME: Add all the various semantics of linkage specifications
Mike Stump1eb44332009-09-09 15:08:12 +00005908
Douglas Gregor074149e2009-01-05 19:45:36 +00005909 LinkageSpecDecl *D = LinkageSpecDecl::Create(Context, CurContext,
Mike Stump1eb44332009-09-09 15:08:12 +00005910 LangLoc, Language,
Douglas Gregor074149e2009-01-05 19:45:36 +00005911 LBraceLoc.isValid());
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00005912 CurContext->addDecl(D);
Douglas Gregor074149e2009-01-05 19:45:36 +00005913 PushDeclContext(S, D);
Chris Lattnerb28317a2009-03-28 19:18:32 +00005914 return DeclPtrTy::make(D);
Chris Lattnercc98eac2008-12-17 07:13:27 +00005915}
5916
Abramo Bagnara35f9a192010-07-30 16:47:02 +00005917/// ActOnFinishLinkageSpecification - Complete the definition of
Douglas Gregor074149e2009-01-05 19:45:36 +00005918/// the C++ linkage specification LinkageSpec. If RBraceLoc is
5919/// valid, it's the position of the closing '}' brace in a linkage
5920/// specification that uses braces.
Chris Lattnerb28317a2009-03-28 19:18:32 +00005921Sema::DeclPtrTy Sema::ActOnFinishLinkageSpecification(Scope *S,
5922 DeclPtrTy LinkageSpec,
5923 SourceLocation RBraceLoc) {
Douglas Gregor074149e2009-01-05 19:45:36 +00005924 if (LinkageSpec)
5925 PopDeclContext();
5926 return LinkageSpec;
Chris Lattner5a003a42008-12-17 07:09:26 +00005927}
5928
Douglas Gregord308e622009-05-18 20:51:54 +00005929/// \brief Perform semantic analysis for the variable declaration that
5930/// occurs within a C++ catch clause, returning the newly-created
5931/// variable.
5932VarDecl *Sema::BuildExceptionDeclaration(Scope *S, QualType ExDeclType,
John McCalla93c9342009-12-07 02:54:59 +00005933 TypeSourceInfo *TInfo,
Douglas Gregord308e622009-05-18 20:51:54 +00005934 IdentifierInfo *Name,
5935 SourceLocation Loc,
5936 SourceRange Range) {
5937 bool Invalid = false;
Sebastian Redl4b07b292008-12-22 19:15:10 +00005938
5939 // Arrays and functions decay.
5940 if (ExDeclType->isArrayType())
5941 ExDeclType = Context.getArrayDecayedType(ExDeclType);
5942 else if (ExDeclType->isFunctionType())
5943 ExDeclType = Context.getPointerType(ExDeclType);
5944
5945 // C++ 15.3p1: The exception-declaration shall not denote an incomplete type.
5946 // The exception-declaration shall not denote a pointer or reference to an
5947 // incomplete type, other than [cv] void*.
Sebastian Redlf2e21e52009-03-22 23:49:27 +00005948 // N2844 forbids rvalue references.
Mike Stump1eb44332009-09-09 15:08:12 +00005949 if (!ExDeclType->isDependentType() && ExDeclType->isRValueReferenceType()) {
Douglas Gregord308e622009-05-18 20:51:54 +00005950 Diag(Loc, diag::err_catch_rvalue_ref) << Range;
Sebastian Redlf2e21e52009-03-22 23:49:27 +00005951 Invalid = true;
5952 }
Douglas Gregord308e622009-05-18 20:51:54 +00005953
Douglas Gregora2762912010-03-08 01:47:36 +00005954 // GCC allows catching pointers and references to incomplete types
5955 // as an extension; so do we, but we warn by default.
5956
Sebastian Redl4b07b292008-12-22 19:15:10 +00005957 QualType BaseType = ExDeclType;
5958 int Mode = 0; // 0 for direct type, 1 for pointer, 2 for reference
Douglas Gregor4ec339f2009-01-19 19:26:10 +00005959 unsigned DK = diag::err_catch_incomplete;
Douglas Gregora2762912010-03-08 01:47:36 +00005960 bool IncompleteCatchIsInvalid = true;
Ted Kremenek6217b802009-07-29 21:53:49 +00005961 if (const PointerType *Ptr = BaseType->getAs<PointerType>()) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00005962 BaseType = Ptr->getPointeeType();
5963 Mode = 1;
Douglas Gregora2762912010-03-08 01:47:36 +00005964 DK = diag::ext_catch_incomplete_ptr;
5965 IncompleteCatchIsInvalid = false;
Mike Stump1eb44332009-09-09 15:08:12 +00005966 } else if (const ReferenceType *Ref = BaseType->getAs<ReferenceType>()) {
Sebastian Redlf2e21e52009-03-22 23:49:27 +00005967 // For the purpose of error recovery, we treat rvalue refs like lvalue refs.
Sebastian Redl4b07b292008-12-22 19:15:10 +00005968 BaseType = Ref->getPointeeType();
5969 Mode = 2;
Douglas Gregora2762912010-03-08 01:47:36 +00005970 DK = diag::ext_catch_incomplete_ref;
5971 IncompleteCatchIsInvalid = false;
Sebastian Redl4b07b292008-12-22 19:15:10 +00005972 }
Sebastian Redlf2e21e52009-03-22 23:49:27 +00005973 if (!Invalid && (Mode == 0 || !BaseType->isVoidType()) &&
Douglas Gregora2762912010-03-08 01:47:36 +00005974 !BaseType->isDependentType() && RequireCompleteType(Loc, BaseType, DK) &&
5975 IncompleteCatchIsInvalid)
Sebastian Redl4b07b292008-12-22 19:15:10 +00005976 Invalid = true;
Sebastian Redl4b07b292008-12-22 19:15:10 +00005977
Mike Stump1eb44332009-09-09 15:08:12 +00005978 if (!Invalid && !ExDeclType->isDependentType() &&
Douglas Gregord308e622009-05-18 20:51:54 +00005979 RequireNonAbstractType(Loc, ExDeclType,
5980 diag::err_abstract_type_in_decl,
5981 AbstractVariableType))
Sebastian Redlfef9f592009-04-27 21:03:30 +00005982 Invalid = true;
5983
John McCall5a180392010-07-24 00:37:23 +00005984 // Only the non-fragile NeXT runtime currently supports C++ catches
5985 // of ObjC types, and no runtime supports catching ObjC types by value.
5986 if (!Invalid && getLangOptions().ObjC1) {
5987 QualType T = ExDeclType;
5988 if (const ReferenceType *RT = T->getAs<ReferenceType>())
5989 T = RT->getPointeeType();
5990
5991 if (T->isObjCObjectType()) {
5992 Diag(Loc, diag::err_objc_object_catch);
5993 Invalid = true;
5994 } else if (T->isObjCObjectPointerType()) {
5995 if (!getLangOptions().NeXTRuntime) {
5996 Diag(Loc, diag::err_objc_pointer_cxx_catch_gnu);
5997 Invalid = true;
5998 } else if (!getLangOptions().ObjCNonFragileABI) {
5999 Diag(Loc, diag::err_objc_pointer_cxx_catch_fragile);
6000 Invalid = true;
6001 }
6002 }
6003 }
6004
Mike Stump1eb44332009-09-09 15:08:12 +00006005 VarDecl *ExDecl = VarDecl::Create(Context, CurContext, Loc,
Douglas Gregor16573fa2010-04-19 22:54:31 +00006006 Name, ExDeclType, TInfo, VarDecl::None,
6007 VarDecl::None);
Douglas Gregor324b54d2010-05-03 18:51:14 +00006008 ExDecl->setExceptionVariable(true);
6009
Douglas Gregor6d182892010-03-05 23:38:39 +00006010 if (!Invalid) {
6011 if (const RecordType *RecordTy = ExDeclType->getAs<RecordType>()) {
6012 // C++ [except.handle]p16:
6013 // The object declared in an exception-declaration or, if the
6014 // exception-declaration does not specify a name, a temporary (12.2) is
6015 // copy-initialized (8.5) from the exception object. [...]
6016 // The object is destroyed when the handler exits, after the destruction
6017 // of any automatic objects initialized within the handler.
6018 //
6019 // We just pretend to initialize the object with itself, then make sure
6020 // it can be destroyed later.
6021 InitializedEntity Entity = InitializedEntity::InitializeVariable(ExDecl);
6022 Expr *ExDeclRef = DeclRefExpr::Create(Context, 0, SourceRange(), ExDecl,
6023 Loc, ExDeclType, 0);
6024 InitializationKind Kind = InitializationKind::CreateCopy(Loc,
6025 SourceLocation());
6026 InitializationSequence InitSeq(*this, Entity, Kind, &ExDeclRef, 1);
6027 OwningExprResult Result = InitSeq.Perform(*this, Entity, Kind,
6028 MultiExprArg(*this, (void**)&ExDeclRef, 1));
6029 if (Result.isInvalid())
6030 Invalid = true;
6031 else
6032 FinalizeVarWithDestructor(ExDecl, RecordTy);
6033 }
6034 }
6035
Douglas Gregord308e622009-05-18 20:51:54 +00006036 if (Invalid)
6037 ExDecl->setInvalidDecl();
6038
6039 return ExDecl;
6040}
6041
6042/// ActOnExceptionDeclarator - Parsed the exception-declarator in a C++ catch
6043/// handler.
6044Sema::DeclPtrTy Sema::ActOnExceptionDeclarator(Scope *S, Declarator &D) {
John McCallbf1a0282010-06-04 23:28:52 +00006045 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
6046 QualType ExDeclType = TInfo->getType();
Douglas Gregord308e622009-05-18 20:51:54 +00006047
6048 bool Invalid = D.isInvalidType();
Sebastian Redl4b07b292008-12-22 19:15:10 +00006049 IdentifierInfo *II = D.getIdentifier();
Douglas Gregorc83c6872010-04-15 22:33:43 +00006050 if (NamedDecl *PrevDecl = LookupSingleName(S, II, D.getIdentifierLoc(),
Douglas Gregorc0b39642010-04-15 23:40:53 +00006051 LookupOrdinaryName,
6052 ForRedeclaration)) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00006053 // The scope should be freshly made just for us. There is just no way
6054 // it contains any previous declaration.
Chris Lattnerb28317a2009-03-28 19:18:32 +00006055 assert(!S->isDeclScope(DeclPtrTy::make(PrevDecl)));
Sebastian Redl4b07b292008-12-22 19:15:10 +00006056 if (PrevDecl->isTemplateParameter()) {
6057 // Maybe we will complain about the shadowed template parameter.
6058 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
Sebastian Redl4b07b292008-12-22 19:15:10 +00006059 }
6060 }
6061
Chris Lattnereaaebc72009-04-25 08:06:05 +00006062 if (D.getCXXScopeSpec().isSet() && !Invalid) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00006063 Diag(D.getIdentifierLoc(), diag::err_qualified_catch_declarator)
6064 << D.getCXXScopeSpec().getRange();
Chris Lattnereaaebc72009-04-25 08:06:05 +00006065 Invalid = true;
Sebastian Redl4b07b292008-12-22 19:15:10 +00006066 }
6067
John McCalla93c9342009-12-07 02:54:59 +00006068 VarDecl *ExDecl = BuildExceptionDeclaration(S, ExDeclType, TInfo,
Douglas Gregord308e622009-05-18 20:51:54 +00006069 D.getIdentifier(),
6070 D.getIdentifierLoc(),
6071 D.getDeclSpec().getSourceRange());
6072
Chris Lattnereaaebc72009-04-25 08:06:05 +00006073 if (Invalid)
6074 ExDecl->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00006075
Sebastian Redl4b07b292008-12-22 19:15:10 +00006076 // Add the exception declaration into this scope.
Sebastian Redl4b07b292008-12-22 19:15:10 +00006077 if (II)
Douglas Gregord308e622009-05-18 20:51:54 +00006078 PushOnScopeChains(ExDecl, S);
6079 else
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00006080 CurContext->addDecl(ExDecl);
Sebastian Redl4b07b292008-12-22 19:15:10 +00006081
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00006082 ProcessDeclAttributes(S, ExDecl, D);
Chris Lattnerb28317a2009-03-28 19:18:32 +00006083 return DeclPtrTy::make(ExDecl);
Sebastian Redl4b07b292008-12-22 19:15:10 +00006084}
Anders Carlssonfb311762009-03-14 00:25:26 +00006085
Mike Stump1eb44332009-09-09 15:08:12 +00006086Sema::DeclPtrTy Sema::ActOnStaticAssertDeclaration(SourceLocation AssertLoc,
Chris Lattnerb28317a2009-03-28 19:18:32 +00006087 ExprArg assertexpr,
6088 ExprArg assertmessageexpr) {
Anders Carlssonfb311762009-03-14 00:25:26 +00006089 Expr *AssertExpr = (Expr *)assertexpr.get();
Mike Stump1eb44332009-09-09 15:08:12 +00006090 StringLiteral *AssertMessage =
Anders Carlssonfb311762009-03-14 00:25:26 +00006091 cast<StringLiteral>((Expr *)assertmessageexpr.get());
6092
Anders Carlssonc3082412009-03-14 00:33:21 +00006093 if (!AssertExpr->isTypeDependent() && !AssertExpr->isValueDependent()) {
6094 llvm::APSInt Value(32);
6095 if (!AssertExpr->isIntegerConstantExpr(Value, Context)) {
6096 Diag(AssertLoc, diag::err_static_assert_expression_is_not_constant) <<
6097 AssertExpr->getSourceRange();
Chris Lattnerb28317a2009-03-28 19:18:32 +00006098 return DeclPtrTy();
Anders Carlssonc3082412009-03-14 00:33:21 +00006099 }
Anders Carlssonfb311762009-03-14 00:25:26 +00006100
Anders Carlssonc3082412009-03-14 00:33:21 +00006101 if (Value == 0) {
Mike Stump1eb44332009-09-09 15:08:12 +00006102 Diag(AssertLoc, diag::err_static_assert_failed)
Benjamin Kramer8d042582009-12-11 13:33:18 +00006103 << AssertMessage->getString() << AssertExpr->getSourceRange();
Anders Carlssonc3082412009-03-14 00:33:21 +00006104 }
6105 }
Mike Stump1eb44332009-09-09 15:08:12 +00006106
Anders Carlsson77d81422009-03-15 17:35:16 +00006107 assertexpr.release();
6108 assertmessageexpr.release();
Mike Stump1eb44332009-09-09 15:08:12 +00006109 Decl *Decl = StaticAssertDecl::Create(Context, CurContext, AssertLoc,
Anders Carlssonfb311762009-03-14 00:25:26 +00006110 AssertExpr, AssertMessage);
Mike Stump1eb44332009-09-09 15:08:12 +00006111
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00006112 CurContext->addDecl(Decl);
Chris Lattnerb28317a2009-03-28 19:18:32 +00006113 return DeclPtrTy::make(Decl);
Anders Carlssonfb311762009-03-14 00:25:26 +00006114}
Sebastian Redl50de12f2009-03-24 22:27:57 +00006115
Douglas Gregor1d869352010-04-07 16:53:43 +00006116/// \brief Perform semantic analysis of the given friend type declaration.
6117///
6118/// \returns A friend declaration that.
6119FriendDecl *Sema::CheckFriendTypeDecl(SourceLocation FriendLoc,
6120 TypeSourceInfo *TSInfo) {
6121 assert(TSInfo && "NULL TypeSourceInfo for friend type declaration");
6122
6123 QualType T = TSInfo->getType();
Abramo Bagnarabd054db2010-05-20 10:00:11 +00006124 SourceRange TypeRange = TSInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor1d869352010-04-07 16:53:43 +00006125
Douglas Gregor06245bf2010-04-07 17:57:12 +00006126 if (!getLangOptions().CPlusPlus0x) {
6127 // C++03 [class.friend]p2:
6128 // An elaborated-type-specifier shall be used in a friend declaration
6129 // for a class.*
6130 //
6131 // * The class-key of the elaborated-type-specifier is required.
6132 if (!ActiveTemplateInstantiations.empty()) {
6133 // Do not complain about the form of friend template types during
6134 // template instantiation; we will already have complained when the
6135 // template was declared.
6136 } else if (!T->isElaboratedTypeSpecifier()) {
6137 // If we evaluated the type to a record type, suggest putting
6138 // a tag in front.
6139 if (const RecordType *RT = T->getAs<RecordType>()) {
6140 RecordDecl *RD = RT->getDecl();
6141
6142 std::string InsertionText = std::string(" ") + RD->getKindName();
6143
6144 Diag(TypeRange.getBegin(), diag::ext_unelaborated_friend_type)
6145 << (unsigned) RD->getTagKind()
6146 << T
6147 << FixItHint::CreateInsertion(PP.getLocForEndOfToken(FriendLoc),
6148 InsertionText);
6149 } else {
6150 Diag(FriendLoc, diag::ext_nonclass_type_friend)
6151 << T
6152 << SourceRange(FriendLoc, TypeRange.getEnd());
6153 }
6154 } else if (T->getAs<EnumType>()) {
6155 Diag(FriendLoc, diag::ext_enum_friend)
Douglas Gregor1d869352010-04-07 16:53:43 +00006156 << T
Douglas Gregor1d869352010-04-07 16:53:43 +00006157 << SourceRange(FriendLoc, TypeRange.getEnd());
Douglas Gregor1d869352010-04-07 16:53:43 +00006158 }
6159 }
6160
Douglas Gregor06245bf2010-04-07 17:57:12 +00006161 // C++0x [class.friend]p3:
6162 // If the type specifier in a friend declaration designates a (possibly
6163 // cv-qualified) class type, that class is declared as a friend; otherwise,
6164 // the friend declaration is ignored.
6165
6166 // FIXME: C++0x has some syntactic restrictions on friend type declarations
6167 // in [class.friend]p3 that we do not implement.
Douglas Gregor1d869352010-04-07 16:53:43 +00006168
6169 return FriendDecl::Create(Context, CurContext, FriendLoc, TSInfo, FriendLoc);
6170}
6171
John McCalldd4a3b02009-09-16 22:47:08 +00006172/// Handle a friend type declaration. This works in tandem with
6173/// ActOnTag.
6174///
6175/// Notes on friend class templates:
6176///
6177/// We generally treat friend class declarations as if they were
6178/// declaring a class. So, for example, the elaborated type specifier
6179/// in a friend declaration is required to obey the restrictions of a
6180/// class-head (i.e. no typedefs in the scope chain), template
6181/// parameters are required to match up with simple template-ids, &c.
6182/// However, unlike when declaring a template specialization, it's
6183/// okay to refer to a template specialization without an empty
6184/// template parameter declaration, e.g.
6185/// friend class A<T>::B<unsigned>;
6186/// We permit this as a special case; if there are any template
6187/// parameters present at all, require proper matching, i.e.
6188/// template <> template <class T> friend class A<int>::B;
Chris Lattnerc7f19042009-10-25 17:47:27 +00006189Sema::DeclPtrTy Sema::ActOnFriendTypeDecl(Scope *S, const DeclSpec &DS,
John McCalldd4a3b02009-09-16 22:47:08 +00006190 MultiTemplateParamsArg TempParams) {
John McCall02cace72009-08-28 07:59:38 +00006191 SourceLocation Loc = DS.getSourceRange().getBegin();
John McCall67d1a672009-08-06 02:15:43 +00006192
6193 assert(DS.isFriendSpecified());
6194 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
6195
John McCalldd4a3b02009-09-16 22:47:08 +00006196 // Try to convert the decl specifier to a type. This works for
6197 // friend templates because ActOnTag never produces a ClassTemplateDecl
6198 // for a TUK_Friend.
Chris Lattnerc7f19042009-10-25 17:47:27 +00006199 Declarator TheDeclarator(DS, Declarator::MemberContext);
John McCallbf1a0282010-06-04 23:28:52 +00006200 TypeSourceInfo *TSI = GetTypeForDeclarator(TheDeclarator, S);
6201 QualType T = TSI->getType();
Chris Lattnerc7f19042009-10-25 17:47:27 +00006202 if (TheDeclarator.isInvalidType())
6203 return DeclPtrTy();
John McCall67d1a672009-08-06 02:15:43 +00006204
John McCalldd4a3b02009-09-16 22:47:08 +00006205 // This is definitely an error in C++98. It's probably meant to
6206 // be forbidden in C++0x, too, but the specification is just
6207 // poorly written.
6208 //
6209 // The problem is with declarations like the following:
6210 // template <T> friend A<T>::foo;
6211 // where deciding whether a class C is a friend or not now hinges
6212 // on whether there exists an instantiation of A that causes
6213 // 'foo' to equal C. There are restrictions on class-heads
6214 // (which we declare (by fiat) elaborated friend declarations to
6215 // be) that makes this tractable.
6216 //
6217 // FIXME: handle "template <> friend class A<T>;", which
6218 // is possibly well-formed? Who even knows?
Douglas Gregor40336422010-03-31 22:19:08 +00006219 if (TempParams.size() && !T->isElaboratedTypeSpecifier()) {
John McCalldd4a3b02009-09-16 22:47:08 +00006220 Diag(Loc, diag::err_tagless_friend_type_template)
6221 << DS.getSourceRange();
6222 return DeclPtrTy();
6223 }
Douglas Gregor1d869352010-04-07 16:53:43 +00006224
John McCall02cace72009-08-28 07:59:38 +00006225 // C++98 [class.friend]p1: A friend of a class is a function
6226 // or class that is not a member of the class . . .
John McCalla236a552009-12-22 00:59:39 +00006227 // This is fixed in DR77, which just barely didn't make the C++03
6228 // deadline. It's also a very silly restriction that seriously
6229 // affects inner classes and which nobody else seems to implement;
6230 // thus we never diagnose it, not even in -pedantic.
John McCall32f2fb52010-03-25 18:04:51 +00006231 //
6232 // But note that we could warn about it: it's always useless to
6233 // friend one of your own members (it's not, however, worthless to
6234 // friend a member of an arbitrary specialization of your template).
John McCall02cace72009-08-28 07:59:38 +00006235
John McCalldd4a3b02009-09-16 22:47:08 +00006236 Decl *D;
Douglas Gregor1d869352010-04-07 16:53:43 +00006237 if (unsigned NumTempParamLists = TempParams.size())
John McCalldd4a3b02009-09-16 22:47:08 +00006238 D = FriendTemplateDecl::Create(Context, CurContext, Loc,
Douglas Gregor1d869352010-04-07 16:53:43 +00006239 NumTempParamLists,
John McCalldd4a3b02009-09-16 22:47:08 +00006240 (TemplateParameterList**) TempParams.release(),
John McCall32f2fb52010-03-25 18:04:51 +00006241 TSI,
John McCalldd4a3b02009-09-16 22:47:08 +00006242 DS.getFriendSpecLoc());
6243 else
Douglas Gregor1d869352010-04-07 16:53:43 +00006244 D = CheckFriendTypeDecl(DS.getFriendSpecLoc(), TSI);
6245
6246 if (!D)
6247 return DeclPtrTy();
6248
John McCalldd4a3b02009-09-16 22:47:08 +00006249 D->setAccess(AS_public);
6250 CurContext->addDecl(D);
John McCall02cace72009-08-28 07:59:38 +00006251
John McCalldd4a3b02009-09-16 22:47:08 +00006252 return DeclPtrTy::make(D);
John McCall02cace72009-08-28 07:59:38 +00006253}
6254
John McCallbbbcdd92009-09-11 21:02:39 +00006255Sema::DeclPtrTy
6256Sema::ActOnFriendFunctionDecl(Scope *S,
6257 Declarator &D,
6258 bool IsDefinition,
6259 MultiTemplateParamsArg TemplateParams) {
John McCall02cace72009-08-28 07:59:38 +00006260 const DeclSpec &DS = D.getDeclSpec();
6261
6262 assert(DS.isFriendSpecified());
6263 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
6264
6265 SourceLocation Loc = D.getIdentifierLoc();
John McCallbf1a0282010-06-04 23:28:52 +00006266 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
6267 QualType T = TInfo->getType();
John McCall67d1a672009-08-06 02:15:43 +00006268
6269 // C++ [class.friend]p1
6270 // A friend of a class is a function or class....
6271 // Note that this sees through typedefs, which is intended.
John McCall02cace72009-08-28 07:59:38 +00006272 // It *doesn't* see through dependent types, which is correct
6273 // according to [temp.arg.type]p3:
6274 // If a declaration acquires a function type through a
6275 // type dependent on a template-parameter and this causes
6276 // a declaration that does not use the syntactic form of a
6277 // function declarator to have a function type, the program
6278 // is ill-formed.
John McCall67d1a672009-08-06 02:15:43 +00006279 if (!T->isFunctionType()) {
6280 Diag(Loc, diag::err_unexpected_friend);
6281
6282 // It might be worthwhile to try to recover by creating an
6283 // appropriate declaration.
6284 return DeclPtrTy();
6285 }
6286
6287 // C++ [namespace.memdef]p3
6288 // - If a friend declaration in a non-local class first declares a
6289 // class or function, the friend class or function is a member
6290 // of the innermost enclosing namespace.
6291 // - The name of the friend is not found by simple name lookup
6292 // until a matching declaration is provided in that namespace
6293 // scope (either before or after the class declaration granting
6294 // friendship).
6295 // - If a friend function is called, its name may be found by the
6296 // name lookup that considers functions from namespaces and
6297 // classes associated with the types of the function arguments.
6298 // - When looking for a prior declaration of a class or a function
6299 // declared as a friend, scopes outside the innermost enclosing
6300 // namespace scope are not considered.
6301
John McCall02cace72009-08-28 07:59:38 +00006302 CXXScopeSpec &ScopeQual = D.getCXXScopeSpec();
6303 DeclarationName Name = GetNameForDeclarator(D);
John McCall67d1a672009-08-06 02:15:43 +00006304 assert(Name);
6305
John McCall67d1a672009-08-06 02:15:43 +00006306 // The context we found the declaration in, or in which we should
6307 // create the declaration.
6308 DeclContext *DC;
6309
6310 // FIXME: handle local classes
6311
6312 // Recover from invalid scope qualifiers as if they just weren't there.
John McCall68263142009-11-18 22:49:29 +00006313 LookupResult Previous(*this, Name, D.getIdentifierLoc(), LookupOrdinaryName,
6314 ForRedeclaration);
John McCall67d1a672009-08-06 02:15:43 +00006315 if (!ScopeQual.isInvalid() && ScopeQual.isSet()) {
6316 DC = computeDeclContext(ScopeQual);
6317
6318 // FIXME: handle dependent contexts
6319 if (!DC) return DeclPtrTy();
John McCall77bb1aa2010-05-01 00:40:08 +00006320 if (RequireCompleteDeclContext(ScopeQual, DC)) return DeclPtrTy();
John McCall67d1a672009-08-06 02:15:43 +00006321
John McCall68263142009-11-18 22:49:29 +00006322 LookupQualifiedName(Previous, DC);
John McCall67d1a672009-08-06 02:15:43 +00006323
John McCall9da9cdf2010-05-28 01:41:47 +00006324 // Ignore things found implicitly in the wrong scope.
John McCall67d1a672009-08-06 02:15:43 +00006325 // TODO: better diagnostics for this case. Suggesting the right
6326 // qualified scope would be nice...
John McCall9da9cdf2010-05-28 01:41:47 +00006327 LookupResult::Filter F = Previous.makeFilter();
6328 while (F.hasNext()) {
6329 NamedDecl *D = F.next();
6330 if (!D->getDeclContext()->getLookupContext()->Equals(DC))
6331 F.erase();
6332 }
6333 F.done();
6334
6335 if (Previous.empty()) {
John McCall02cace72009-08-28 07:59:38 +00006336 D.setInvalidType();
John McCall67d1a672009-08-06 02:15:43 +00006337 Diag(Loc, diag::err_qualified_friend_not_found) << Name << T;
6338 return DeclPtrTy();
6339 }
6340
6341 // C++ [class.friend]p1: A friend of a class is a function or
6342 // class that is not a member of the class . . .
Douglas Gregor182ddf02009-09-28 00:08:27 +00006343 if (DC->Equals(CurContext))
John McCall67d1a672009-08-06 02:15:43 +00006344 Diag(DS.getFriendSpecLoc(), diag::err_friend_is_member);
6345
John McCall67d1a672009-08-06 02:15:43 +00006346 // Otherwise walk out to the nearest namespace scope looking for matches.
6347 } else {
6348 // TODO: handle local class contexts.
6349
6350 DC = CurContext;
6351 while (true) {
6352 // Skip class contexts. If someone can cite chapter and verse
6353 // for this behavior, that would be nice --- it's what GCC and
6354 // EDG do, and it seems like a reasonable intent, but the spec
6355 // really only says that checks for unqualified existing
6356 // declarations should stop at the nearest enclosing namespace,
6357 // not that they should only consider the nearest enclosing
6358 // namespace.
Douglas Gregor182ddf02009-09-28 00:08:27 +00006359 while (DC->isRecord())
6360 DC = DC->getParent();
John McCall67d1a672009-08-06 02:15:43 +00006361
John McCall68263142009-11-18 22:49:29 +00006362 LookupQualifiedName(Previous, DC);
John McCall67d1a672009-08-06 02:15:43 +00006363
6364 // TODO: decide what we think about using declarations.
John McCall68263142009-11-18 22:49:29 +00006365 if (!Previous.empty())
John McCall67d1a672009-08-06 02:15:43 +00006366 break;
Douglas Gregor182ddf02009-09-28 00:08:27 +00006367
John McCall67d1a672009-08-06 02:15:43 +00006368 if (DC->isFileContext()) break;
6369 DC = DC->getParent();
6370 }
6371
6372 // C++ [class.friend]p1: A friend of a class is a function or
6373 // class that is not a member of the class . . .
John McCall7f27d922009-08-06 20:49:32 +00006374 // C++0x changes this for both friend types and functions.
6375 // Most C++ 98 compilers do seem to give an error here, so
6376 // we do, too.
John McCall68263142009-11-18 22:49:29 +00006377 if (!Previous.empty() && DC->Equals(CurContext)
6378 && !getLangOptions().CPlusPlus0x)
John McCall67d1a672009-08-06 02:15:43 +00006379 Diag(DS.getFriendSpecLoc(), diag::err_friend_is_member);
6380 }
6381
Douglas Gregor182ddf02009-09-28 00:08:27 +00006382 if (DC->isFileContext()) {
John McCall67d1a672009-08-06 02:15:43 +00006383 // This implies that it has to be an operator or function.
Douglas Gregor3f9a0562009-11-03 01:35:08 +00006384 if (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ||
6385 D.getName().getKind() == UnqualifiedId::IK_DestructorName ||
6386 D.getName().getKind() == UnqualifiedId::IK_ConversionFunctionId) {
John McCall67d1a672009-08-06 02:15:43 +00006387 Diag(Loc, diag::err_introducing_special_friend) <<
Douglas Gregor3f9a0562009-11-03 01:35:08 +00006388 (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ? 0 :
6389 D.getName().getKind() == UnqualifiedId::IK_DestructorName ? 1 : 2);
John McCall67d1a672009-08-06 02:15:43 +00006390 return DeclPtrTy();
6391 }
John McCall67d1a672009-08-06 02:15:43 +00006392 }
6393
Douglas Gregor182ddf02009-09-28 00:08:27 +00006394 bool Redeclaration = false;
John McCalla93c9342009-12-07 02:54:59 +00006395 NamedDecl *ND = ActOnFunctionDeclarator(S, D, DC, T, TInfo, Previous,
Douglas Gregora735b202009-10-13 14:39:41 +00006396 move(TemplateParams),
John McCall3f9a8a62009-08-11 06:59:38 +00006397 IsDefinition,
6398 Redeclaration);
John McCall02cace72009-08-28 07:59:38 +00006399 if (!ND) return DeclPtrTy();
John McCallab88d972009-08-31 22:39:49 +00006400
Douglas Gregor182ddf02009-09-28 00:08:27 +00006401 assert(ND->getDeclContext() == DC);
6402 assert(ND->getLexicalDeclContext() == CurContext);
John McCall88232aa2009-08-18 00:00:49 +00006403
John McCallab88d972009-08-31 22:39:49 +00006404 // Add the function declaration to the appropriate lookup tables,
6405 // adjusting the redeclarations list as necessary. We don't
6406 // want to do this yet if the friending class is dependent.
Mike Stump1eb44332009-09-09 15:08:12 +00006407 //
John McCallab88d972009-08-31 22:39:49 +00006408 // Also update the scope-based lookup if the target context's
6409 // lookup context is in lexical scope.
6410 if (!CurContext->isDependentContext()) {
6411 DC = DC->getLookupContext();
Douglas Gregor182ddf02009-09-28 00:08:27 +00006412 DC->makeDeclVisibleInContext(ND, /* Recoverable=*/ false);
John McCallab88d972009-08-31 22:39:49 +00006413 if (Scope *EnclosingScope = getScopeForDeclContext(S, DC))
Douglas Gregor182ddf02009-09-28 00:08:27 +00006414 PushOnScopeChains(ND, EnclosingScope, /*AddToContext=*/ false);
John McCallab88d972009-08-31 22:39:49 +00006415 }
John McCall02cace72009-08-28 07:59:38 +00006416
6417 FriendDecl *FrD = FriendDecl::Create(Context, CurContext,
Douglas Gregor182ddf02009-09-28 00:08:27 +00006418 D.getIdentifierLoc(), ND,
John McCall02cace72009-08-28 07:59:38 +00006419 DS.getFriendSpecLoc());
John McCall5fee1102009-08-29 03:50:18 +00006420 FrD->setAccess(AS_public);
John McCall02cace72009-08-28 07:59:38 +00006421 CurContext->addDecl(FrD);
John McCall67d1a672009-08-06 02:15:43 +00006422
Douglas Gregor182ddf02009-09-28 00:08:27 +00006423 return DeclPtrTy::make(ND);
Anders Carlsson00338362009-05-11 22:55:49 +00006424}
6425
Chris Lattnerb28317a2009-03-28 19:18:32 +00006426void Sema::SetDeclDeleted(DeclPtrTy dcl, SourceLocation DelLoc) {
Douglas Gregorefd5bda2009-08-24 11:57:43 +00006427 AdjustDeclIfTemplate(dcl);
Mike Stump1eb44332009-09-09 15:08:12 +00006428
Chris Lattnerb28317a2009-03-28 19:18:32 +00006429 Decl *Dcl = dcl.getAs<Decl>();
Sebastian Redl50de12f2009-03-24 22:27:57 +00006430 FunctionDecl *Fn = dyn_cast<FunctionDecl>(Dcl);
6431 if (!Fn) {
6432 Diag(DelLoc, diag::err_deleted_non_function);
6433 return;
6434 }
6435 if (const FunctionDecl *Prev = Fn->getPreviousDeclaration()) {
6436 Diag(DelLoc, diag::err_deleted_decl_not_first);
6437 Diag(Prev->getLocation(), diag::note_previous_declaration);
6438 // If the declaration wasn't the first, we delete the function anyway for
6439 // recovery.
6440 }
6441 Fn->setDeleted();
6442}
Sebastian Redl13e88542009-04-27 21:33:24 +00006443
6444static void SearchForReturnInStmt(Sema &Self, Stmt *S) {
6445 for (Stmt::child_iterator CI = S->child_begin(), E = S->child_end(); CI != E;
6446 ++CI) {
6447 Stmt *SubStmt = *CI;
6448 if (!SubStmt)
6449 continue;
6450 if (isa<ReturnStmt>(SubStmt))
6451 Self.Diag(SubStmt->getSourceRange().getBegin(),
6452 diag::err_return_in_constructor_handler);
6453 if (!isa<Expr>(SubStmt))
6454 SearchForReturnInStmt(Self, SubStmt);
6455 }
6456}
6457
6458void Sema::DiagnoseReturnInConstructorExceptionHandler(CXXTryStmt *TryBlock) {
6459 for (unsigned I = 0, E = TryBlock->getNumHandlers(); I != E; ++I) {
6460 CXXCatchStmt *Handler = TryBlock->getHandler(I);
6461 SearchForReturnInStmt(*this, Handler);
6462 }
6463}
Anders Carlssond7ba27d2009-05-14 01:09:04 +00006464
Mike Stump1eb44332009-09-09 15:08:12 +00006465bool Sema::CheckOverridingFunctionReturnType(const CXXMethodDecl *New,
Anders Carlssond7ba27d2009-05-14 01:09:04 +00006466 const CXXMethodDecl *Old) {
John McCall183700f2009-09-21 23:43:11 +00006467 QualType NewTy = New->getType()->getAs<FunctionType>()->getResultType();
6468 QualType OldTy = Old->getType()->getAs<FunctionType>()->getResultType();
Anders Carlssond7ba27d2009-05-14 01:09:04 +00006469
Chandler Carruth73857792010-02-15 11:53:20 +00006470 if (Context.hasSameType(NewTy, OldTy) ||
6471 NewTy->isDependentType() || OldTy->isDependentType())
Anders Carlssond7ba27d2009-05-14 01:09:04 +00006472 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00006473
Anders Carlssonc3a68b22009-05-14 19:52:19 +00006474 // Check if the return types are covariant
6475 QualType NewClassTy, OldClassTy;
Mike Stump1eb44332009-09-09 15:08:12 +00006476
Anders Carlssonc3a68b22009-05-14 19:52:19 +00006477 /// Both types must be pointers or references to classes.
Anders Carlssonf2a04bf2010-01-22 17:37:20 +00006478 if (const PointerType *NewPT = NewTy->getAs<PointerType>()) {
6479 if (const PointerType *OldPT = OldTy->getAs<PointerType>()) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +00006480 NewClassTy = NewPT->getPointeeType();
6481 OldClassTy = OldPT->getPointeeType();
6482 }
Anders Carlssonf2a04bf2010-01-22 17:37:20 +00006483 } else if (const ReferenceType *NewRT = NewTy->getAs<ReferenceType>()) {
6484 if (const ReferenceType *OldRT = OldTy->getAs<ReferenceType>()) {
6485 if (NewRT->getTypeClass() == OldRT->getTypeClass()) {
6486 NewClassTy = NewRT->getPointeeType();
6487 OldClassTy = OldRT->getPointeeType();
6488 }
Anders Carlssonc3a68b22009-05-14 19:52:19 +00006489 }
6490 }
Mike Stump1eb44332009-09-09 15:08:12 +00006491
Anders Carlssonc3a68b22009-05-14 19:52:19 +00006492 // The return types aren't either both pointers or references to a class type.
6493 if (NewClassTy.isNull()) {
Mike Stump1eb44332009-09-09 15:08:12 +00006494 Diag(New->getLocation(),
Anders Carlssonc3a68b22009-05-14 19:52:19 +00006495 diag::err_different_return_type_for_overriding_virtual_function)
6496 << New->getDeclName() << NewTy << OldTy;
6497 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
Mike Stump1eb44332009-09-09 15:08:12 +00006498
Anders Carlssonc3a68b22009-05-14 19:52:19 +00006499 return true;
6500 }
Anders Carlssond7ba27d2009-05-14 01:09:04 +00006501
Anders Carlssonbe2e2052009-12-31 18:34:24 +00006502 // C++ [class.virtual]p6:
6503 // If the return type of D::f differs from the return type of B::f, the
6504 // class type in the return type of D::f shall be complete at the point of
6505 // declaration of D::f or shall be the class type D.
Anders Carlssonac4c9392009-12-31 18:54:35 +00006506 if (const RecordType *RT = NewClassTy->getAs<RecordType>()) {
6507 if (!RT->isBeingDefined() &&
6508 RequireCompleteType(New->getLocation(), NewClassTy,
6509 PDiag(diag::err_covariant_return_incomplete)
6510 << New->getDeclName()))
Anders Carlssonbe2e2052009-12-31 18:34:24 +00006511 return true;
Anders Carlssonac4c9392009-12-31 18:54:35 +00006512 }
Anders Carlssonbe2e2052009-12-31 18:34:24 +00006513
Douglas Gregora4923eb2009-11-16 21:35:15 +00006514 if (!Context.hasSameUnqualifiedType(NewClassTy, OldClassTy)) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +00006515 // Check if the new class derives from the old class.
6516 if (!IsDerivedFrom(NewClassTy, OldClassTy)) {
6517 Diag(New->getLocation(),
6518 diag::err_covariant_return_not_derived)
6519 << New->getDeclName() << NewTy << OldTy;
6520 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
6521 return true;
6522 }
Mike Stump1eb44332009-09-09 15:08:12 +00006523
Anders Carlssonc3a68b22009-05-14 19:52:19 +00006524 // Check if we the conversion from derived to base is valid.
John McCall58e6f342010-03-16 05:22:47 +00006525 if (CheckDerivedToBaseConversion(NewClassTy, OldClassTy,
Anders Carlssone25a96c2010-04-24 17:11:09 +00006526 diag::err_covariant_return_inaccessible_base,
6527 diag::err_covariant_return_ambiguous_derived_to_base_conv,
6528 // FIXME: Should this point to the return type?
6529 New->getLocation(), SourceRange(), New->getDeclName(), 0)) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +00006530 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
6531 return true;
6532 }
6533 }
Mike Stump1eb44332009-09-09 15:08:12 +00006534
Anders Carlssonc3a68b22009-05-14 19:52:19 +00006535 // The qualifiers of the return types must be the same.
Anders Carlssonf2a04bf2010-01-22 17:37:20 +00006536 if (NewTy.getLocalCVRQualifiers() != OldTy.getLocalCVRQualifiers()) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +00006537 Diag(New->getLocation(),
6538 diag::err_covariant_return_type_different_qualifications)
Anders Carlssond7ba27d2009-05-14 01:09:04 +00006539 << New->getDeclName() << NewTy << OldTy;
Anders Carlssonc3a68b22009-05-14 19:52:19 +00006540 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
6541 return true;
6542 };
Mike Stump1eb44332009-09-09 15:08:12 +00006543
Anders Carlssonc3a68b22009-05-14 19:52:19 +00006544
6545 // The new class type must have the same or less qualifiers as the old type.
6546 if (NewClassTy.isMoreQualifiedThan(OldClassTy)) {
6547 Diag(New->getLocation(),
6548 diag::err_covariant_return_type_class_type_more_qualified)
6549 << New->getDeclName() << NewTy << OldTy;
6550 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
6551 return true;
6552 };
Mike Stump1eb44332009-09-09 15:08:12 +00006553
Anders Carlssonc3a68b22009-05-14 19:52:19 +00006554 return false;
Anders Carlssond7ba27d2009-05-14 01:09:04 +00006555}
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00006556
Sean Huntbbd37c62009-11-21 08:43:09 +00006557bool Sema::CheckOverridingFunctionAttributes(const CXXMethodDecl *New,
6558 const CXXMethodDecl *Old)
6559{
6560 if (Old->hasAttr<FinalAttr>()) {
6561 Diag(New->getLocation(), diag::err_final_function_overridden)
6562 << New->getDeclName();
6563 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
6564 return true;
6565 }
6566
6567 return false;
6568}
6569
Douglas Gregor4ba31362009-12-01 17:24:26 +00006570/// \brief Mark the given method pure.
6571///
6572/// \param Method the method to be marked pure.
6573///
6574/// \param InitRange the source range that covers the "0" initializer.
6575bool Sema::CheckPureMethod(CXXMethodDecl *Method, SourceRange InitRange) {
6576 if (Method->isVirtual() || Method->getParent()->isDependentContext()) {
6577 Method->setPure();
6578
6579 // A class is abstract if at least one function is pure virtual.
6580 Method->getParent()->setAbstract(true);
6581 return false;
6582 }
6583
6584 if (!Method->isInvalidDecl())
6585 Diag(Method->getLocation(), diag::err_non_virtual_pure)
6586 << Method->getDeclName() << InitRange;
6587 return true;
6588}
6589
John McCall731ad842009-12-19 09:28:58 +00006590/// ActOnCXXEnterDeclInitializer - Invoked when we are about to parse
6591/// an initializer for the out-of-line declaration 'Dcl'. The scope
6592/// is a fresh scope pushed for just this purpose.
6593///
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00006594/// After this method is called, according to [C++ 3.4.1p13], if 'Dcl' is a
6595/// static data member of class X, names should be looked up in the scope of
6596/// class X.
6597void Sema::ActOnCXXEnterDeclInitializer(Scope *S, DeclPtrTy Dcl) {
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00006598 // If there is no declaration, there was an error parsing it.
John McCall731ad842009-12-19 09:28:58 +00006599 Decl *D = Dcl.getAs<Decl>();
6600 if (D == 0) return;
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00006601
John McCall731ad842009-12-19 09:28:58 +00006602 // We should only get called for declarations with scope specifiers, like:
6603 // int foo::bar;
6604 assert(D->isOutOfLine());
John McCall7a1dc562009-12-19 10:49:29 +00006605 EnterDeclaratorContext(S, D->getDeclContext());
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00006606}
6607
6608/// ActOnCXXExitDeclInitializer - Invoked after we are finished parsing an
John McCall731ad842009-12-19 09:28:58 +00006609/// initializer for the out-of-line declaration 'Dcl'.
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00006610void Sema::ActOnCXXExitDeclInitializer(Scope *S, DeclPtrTy Dcl) {
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00006611 // If there is no declaration, there was an error parsing it.
John McCall731ad842009-12-19 09:28:58 +00006612 Decl *D = Dcl.getAs<Decl>();
6613 if (D == 0) return;
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00006614
John McCall731ad842009-12-19 09:28:58 +00006615 assert(D->isOutOfLine());
John McCall7a1dc562009-12-19 10:49:29 +00006616 ExitDeclaratorContext(S);
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00006617}
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00006618
6619/// ActOnCXXConditionDeclarationExpr - Parsed a condition declaration of a
6620/// C++ if/switch/while/for statement.
6621/// e.g: "if (int x = f()) {...}"
6622Action::DeclResult
6623Sema::ActOnCXXConditionDeclaration(Scope *S, Declarator &D) {
6624 // C++ 6.4p2:
6625 // The declarator shall not specify a function or an array.
6626 // The type-specifier-seq shall not contain typedef and shall not declare a
6627 // new class or enumeration.
6628 assert(D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef &&
6629 "Parser allowed 'typedef' as storage class of condition decl.");
6630
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00006631 TagDecl *OwnedTag = 0;
John McCallbf1a0282010-06-04 23:28:52 +00006632 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S, &OwnedTag);
6633 QualType Ty = TInfo->getType();
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00006634
6635 if (Ty->isFunctionType()) { // The declarator shall not specify a function...
6636 // We exit without creating a CXXConditionDeclExpr because a FunctionDecl
6637 // would be created and CXXConditionDeclExpr wants a VarDecl.
6638 Diag(D.getIdentifierLoc(), diag::err_invalid_use_of_function_type)
6639 << D.getSourceRange();
6640 return DeclResult();
6641 } else if (OwnedTag && OwnedTag->isDefinition()) {
6642 // The type-specifier-seq shall not declare a new class or enumeration.
6643 Diag(OwnedTag->getLocation(), diag::err_type_defined_in_condition);
6644 }
6645
6646 DeclPtrTy Dcl = ActOnDeclarator(S, D);
6647 if (!Dcl)
6648 return DeclResult();
6649
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00006650 return Dcl;
6651}
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00006652
Douglas Gregor6fb745b2010-05-13 16:44:06 +00006653void Sema::MarkVTableUsed(SourceLocation Loc, CXXRecordDecl *Class,
6654 bool DefinitionRequired) {
6655 // Ignore any vtable uses in unevaluated operands or for classes that do
6656 // not have a vtable.
6657 if (!Class->isDynamicClass() || Class->isDependentContext() ||
6658 CurContext->isDependentContext() ||
6659 ExprEvalContexts.back().Context == Unevaluated)
Rafael Espindolabbf58bb2010-03-10 02:19:29 +00006660 return;
6661
Douglas Gregor6fb745b2010-05-13 16:44:06 +00006662 // Try to insert this class into the map.
6663 Class = cast<CXXRecordDecl>(Class->getCanonicalDecl());
6664 std::pair<llvm::DenseMap<CXXRecordDecl *, bool>::iterator, bool>
6665 Pos = VTablesUsed.insert(std::make_pair(Class, DefinitionRequired));
6666 if (!Pos.second) {
Daniel Dunbarb9aefa72010-05-25 00:33:13 +00006667 // If we already had an entry, check to see if we are promoting this vtable
6668 // to required a definition. If so, we need to reappend to the VTableUses
6669 // list, since we may have already processed the first entry.
6670 if (DefinitionRequired && !Pos.first->second) {
6671 Pos.first->second = true;
6672 } else {
6673 // Otherwise, we can early exit.
6674 return;
6675 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +00006676 }
6677
6678 // Local classes need to have their virtual members marked
6679 // immediately. For all other classes, we mark their virtual members
6680 // at the end of the translation unit.
6681 if (Class->isLocalClass())
6682 MarkVirtualMembersReferenced(Loc, Class);
Daniel Dunbar380c2132010-05-11 21:32:35 +00006683 else
Douglas Gregor6fb745b2010-05-13 16:44:06 +00006684 VTableUses.push_back(std::make_pair(Class, Loc));
Douglas Gregorbbbe0742010-05-11 20:24:17 +00006685}
6686
Douglas Gregor6fb745b2010-05-13 16:44:06 +00006687bool Sema::DefineUsedVTables() {
6688 // If any dynamic classes have their key function defined within
6689 // this translation unit, then those vtables are considered "used" and must
6690 // be emitted.
6691 for (unsigned I = 0, N = DynamicClasses.size(); I != N; ++I) {
6692 if (const CXXMethodDecl *KeyFunction
6693 = Context.getKeyFunction(DynamicClasses[I])) {
6694 const FunctionDecl *Definition = 0;
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00006695 if (KeyFunction->hasBody(Definition))
Douglas Gregor6fb745b2010-05-13 16:44:06 +00006696 MarkVTableUsed(Definition->getLocation(), DynamicClasses[I], true);
6697 }
6698 }
6699
6700 if (VTableUses.empty())
Anders Carlssond6a637f2009-12-07 08:24:59 +00006701 return false;
6702
Douglas Gregor6fb745b2010-05-13 16:44:06 +00006703 // Note: The VTableUses vector could grow as a result of marking
6704 // the members of a class as "used", so we check the size each
6705 // time through the loop and prefer indices (with are stable) to
6706 // iterators (which are not).
6707 for (unsigned I = 0; I != VTableUses.size(); ++I) {
Daniel Dunbare669f892010-05-25 00:32:58 +00006708 CXXRecordDecl *Class = VTableUses[I].first->getDefinition();
Douglas Gregor6fb745b2010-05-13 16:44:06 +00006709 if (!Class)
6710 continue;
6711
6712 SourceLocation Loc = VTableUses[I].second;
6713
6714 // If this class has a key function, but that key function is
6715 // defined in another translation unit, we don't need to emit the
6716 // vtable even though we're using it.
6717 const CXXMethodDecl *KeyFunction = Context.getKeyFunction(Class);
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00006718 if (KeyFunction && !KeyFunction->hasBody()) {
Douglas Gregor6fb745b2010-05-13 16:44:06 +00006719 switch (KeyFunction->getTemplateSpecializationKind()) {
6720 case TSK_Undeclared:
6721 case TSK_ExplicitSpecialization:
6722 case TSK_ExplicitInstantiationDeclaration:
6723 // The key function is in another translation unit.
6724 continue;
6725
6726 case TSK_ExplicitInstantiationDefinition:
6727 case TSK_ImplicitInstantiation:
6728 // We will be instantiating the key function.
6729 break;
6730 }
6731 } else if (!KeyFunction) {
6732 // If we have a class with no key function that is the subject
6733 // of an explicit instantiation declaration, suppress the
6734 // vtable; it will live with the explicit instantiation
6735 // definition.
6736 bool IsExplicitInstantiationDeclaration
6737 = Class->getTemplateSpecializationKind()
6738 == TSK_ExplicitInstantiationDeclaration;
6739 for (TagDecl::redecl_iterator R = Class->redecls_begin(),
6740 REnd = Class->redecls_end();
6741 R != REnd; ++R) {
6742 TemplateSpecializationKind TSK
6743 = cast<CXXRecordDecl>(*R)->getTemplateSpecializationKind();
6744 if (TSK == TSK_ExplicitInstantiationDeclaration)
6745 IsExplicitInstantiationDeclaration = true;
6746 else if (TSK == TSK_ExplicitInstantiationDefinition) {
6747 IsExplicitInstantiationDeclaration = false;
6748 break;
6749 }
6750 }
6751
6752 if (IsExplicitInstantiationDeclaration)
6753 continue;
6754 }
6755
6756 // Mark all of the virtual members of this class as referenced, so
6757 // that we can build a vtable. Then, tell the AST consumer that a
6758 // vtable for this class is required.
6759 MarkVirtualMembersReferenced(Loc, Class);
6760 CXXRecordDecl *Canonical = cast<CXXRecordDecl>(Class->getCanonicalDecl());
6761 Consumer.HandleVTable(Class, VTablesUsed[Canonical]);
6762
6763 // Optionally warn if we're emitting a weak vtable.
6764 if (Class->getLinkage() == ExternalLinkage &&
6765 Class->getTemplateSpecializationKind() != TSK_ImplicitInstantiation) {
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00006766 if (!KeyFunction || (KeyFunction->hasBody() && KeyFunction->isInlined()))
Douglas Gregor6fb745b2010-05-13 16:44:06 +00006767 Diag(Class->getLocation(), diag::warn_weak_vtable) << Class;
6768 }
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00006769 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +00006770 VTableUses.clear();
6771
Anders Carlssond6a637f2009-12-07 08:24:59 +00006772 return true;
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00006773}
Anders Carlssond6a637f2009-12-07 08:24:59 +00006774
Rafael Espindola3e1ae932010-03-26 00:36:59 +00006775void Sema::MarkVirtualMembersReferenced(SourceLocation Loc,
6776 const CXXRecordDecl *RD) {
Anders Carlssond6a637f2009-12-07 08:24:59 +00006777 for (CXXRecordDecl::method_iterator i = RD->method_begin(),
6778 e = RD->method_end(); i != e; ++i) {
6779 CXXMethodDecl *MD = *i;
6780
6781 // C++ [basic.def.odr]p2:
6782 // [...] A virtual member function is used if it is not pure. [...]
6783 if (MD->isVirtual() && !MD->isPure())
6784 MarkDeclarationReferenced(Loc, MD);
6785 }
Rafael Espindola3e1ae932010-03-26 00:36:59 +00006786
6787 // Only classes that have virtual bases need a VTT.
6788 if (RD->getNumVBases() == 0)
6789 return;
6790
6791 for (CXXRecordDecl::base_class_const_iterator i = RD->bases_begin(),
6792 e = RD->bases_end(); i != e; ++i) {
6793 const CXXRecordDecl *Base =
6794 cast<CXXRecordDecl>(i->getType()->getAs<RecordType>()->getDecl());
6795 if (i->isVirtual())
6796 continue;
6797 if (Base->getNumVBases() == 0)
6798 continue;
6799 MarkVirtualMembersReferenced(Loc, Base);
6800 }
Anders Carlssond6a637f2009-12-07 08:24:59 +00006801}
Fariborz Jahaniane4498c62010-04-28 16:11:27 +00006802
6803/// SetIvarInitializers - This routine builds initialization ASTs for the
6804/// Objective-C implementation whose ivars need be initialized.
6805void Sema::SetIvarInitializers(ObjCImplementationDecl *ObjCImplementation) {
6806 if (!getLangOptions().CPlusPlus)
6807 return;
6808 if (const ObjCInterfaceDecl *OID = ObjCImplementation->getClassInterface()) {
6809 llvm::SmallVector<ObjCIvarDecl*, 8> ivars;
6810 CollectIvarsToConstructOrDestruct(OID, ivars);
6811 if (ivars.empty())
6812 return;
6813 llvm::SmallVector<CXXBaseOrMemberInitializer*, 32> AllToInit;
6814 for (unsigned i = 0; i < ivars.size(); i++) {
6815 FieldDecl *Field = ivars[i];
Douglas Gregor68dd3ee2010-05-20 02:24:22 +00006816 if (Field->isInvalidDecl())
6817 continue;
6818
Fariborz Jahaniane4498c62010-04-28 16:11:27 +00006819 CXXBaseOrMemberInitializer *Member;
6820 InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field);
6821 InitializationKind InitKind =
6822 InitializationKind::CreateDefault(ObjCImplementation->getLocation());
6823
6824 InitializationSequence InitSeq(*this, InitEntity, InitKind, 0, 0);
6825 Sema::OwningExprResult MemberInit =
6826 InitSeq.Perform(*this, InitEntity, InitKind,
6827 Sema::MultiExprArg(*this, 0, 0));
6828 MemberInit = MaybeCreateCXXExprWithTemporaries(move(MemberInit));
6829 // Note, MemberInit could actually come back empty if no initialization
6830 // is required (e.g., because it would call a trivial default constructor)
6831 if (!MemberInit.get() || MemberInit.isInvalid())
6832 continue;
6833
6834 Member =
6835 new (Context) CXXBaseOrMemberInitializer(Context,
6836 Field, SourceLocation(),
6837 SourceLocation(),
6838 MemberInit.takeAs<Expr>(),
6839 SourceLocation());
6840 AllToInit.push_back(Member);
Douglas Gregor68dd3ee2010-05-20 02:24:22 +00006841
6842 // Be sure that the destructor is accessible and is marked as referenced.
6843 if (const RecordType *RecordTy
6844 = Context.getBaseElementType(Field->getType())
6845 ->getAs<RecordType>()) {
6846 CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl());
Douglas Gregordb89f282010-07-01 22:47:18 +00006847 if (CXXDestructorDecl *Destructor = LookupDestructor(RD)) {
Douglas Gregor68dd3ee2010-05-20 02:24:22 +00006848 MarkDeclarationReferenced(Field->getLocation(), Destructor);
6849 CheckDestructorAccess(Field->getLocation(), Destructor,
6850 PDiag(diag::err_access_dtor_ivar)
6851 << Context.getBaseElementType(Field->getType()));
6852 }
6853 }
Fariborz Jahaniane4498c62010-04-28 16:11:27 +00006854 }
6855 ObjCImplementation->setIvarInitializers(Context,
6856 AllToInit.data(), AllToInit.size());
6857 }
6858}