blob: 9697f1357fe481ab07a394aa00b9e2b698db0bd8 [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()) {
Douglas Gregor61366e92008-12-24 00:01:03 +0000415 if (!Param->hasUnparsedDefaultArg())
416 Param->getDefaultArg()->Destroy(Context);
Chris Lattner3d1cee32008-04-08 05:04:30 +0000417 Param->setDefaultArg(0);
418 }
419 }
420 }
421}
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000422
Douglas Gregorb48fe382008-10-31 09:07:45 +0000423/// isCurrentClassName - Determine whether the identifier II is the
424/// name of the class type currently being defined. In the case of
425/// nested classes, this will only return true if II is the name of
426/// the innermost class.
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000427bool Sema::isCurrentClassName(const IdentifierInfo &II, Scope *,
428 const CXXScopeSpec *SS) {
Douglas Gregorb862b8f2010-01-11 23:29:10 +0000429 assert(getLangOptions().CPlusPlus && "No class names in C!");
430
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +0000431 CXXRecordDecl *CurDecl;
Douglas Gregore4e5b052009-03-19 00:18:19 +0000432 if (SS && SS->isSet() && !SS->isInvalid()) {
Douglas Gregorac373c42009-08-21 22:16:40 +0000433 DeclContext *DC = computeDeclContext(*SS, true);
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +0000434 CurDecl = dyn_cast_or_null<CXXRecordDecl>(DC);
435 } else
436 CurDecl = dyn_cast_or_null<CXXRecordDecl>(CurContext);
437
Douglas Gregor6f7a17b2010-02-05 06:12:42 +0000438 if (CurDecl && CurDecl->getIdentifier())
Douglas Gregorb48fe382008-10-31 09:07:45 +0000439 return &II == CurDecl->getIdentifier();
440 else
441 return false;
442}
443
Mike Stump1eb44332009-09-09 15:08:12 +0000444/// \brief Check the validity of a C++ base class specifier.
Douglas Gregor2943aed2009-03-03 04:44:36 +0000445///
446/// \returns a new CXXBaseSpecifier if well-formed, emits diagnostics
447/// and returns NULL otherwise.
448CXXBaseSpecifier *
449Sema::CheckBaseSpecifier(CXXRecordDecl *Class,
450 SourceRange SpecifierRange,
451 bool Virtual, AccessSpecifier Access,
Mike Stump1eb44332009-09-09 15:08:12 +0000452 QualType BaseType,
Douglas Gregor2943aed2009-03-03 04:44:36 +0000453 SourceLocation BaseLoc) {
454 // C++ [class.union]p1:
455 // A union shall not have base classes.
456 if (Class->isUnion()) {
457 Diag(Class->getLocation(), diag::err_base_clause_on_union)
458 << SpecifierRange;
459 return 0;
460 }
461
462 if (BaseType->isDependentType())
Mike Stump1eb44332009-09-09 15:08:12 +0000463 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
Abramo Bagnara465d41b2010-05-11 21:36:43 +0000464 Class->getTagKind() == TTK_Class,
Douglas Gregor2943aed2009-03-03 04:44:36 +0000465 Access, BaseType);
466
467 // Base specifiers must be record types.
468 if (!BaseType->isRecordType()) {
469 Diag(BaseLoc, diag::err_base_must_be_class) << SpecifierRange;
470 return 0;
471 }
472
473 // C++ [class.union]p1:
474 // A union shall not be used as a base class.
475 if (BaseType->isUnionType()) {
476 Diag(BaseLoc, diag::err_union_as_base_class) << SpecifierRange;
477 return 0;
478 }
479
480 // C++ [class.derived]p2:
481 // The class-name in a base-specifier shall not be an incompletely
482 // defined class.
Mike Stump1eb44332009-09-09 15:08:12 +0000483 if (RequireCompleteType(BaseLoc, BaseType,
Anders Carlssonb7906612009-08-26 23:45:07 +0000484 PDiag(diag::err_incomplete_base_class)
485 << SpecifierRange))
Douglas Gregor2943aed2009-03-03 04:44:36 +0000486 return 0;
487
Eli Friedman1d954f62009-08-15 21:55:26 +0000488 // If the base class is polymorphic or isn't empty, the new one is/isn't, too.
Ted Kremenek6217b802009-07-29 21:53:49 +0000489 RecordDecl *BaseDecl = BaseType->getAs<RecordType>()->getDecl();
Douglas Gregor2943aed2009-03-03 04:44:36 +0000490 assert(BaseDecl && "Record type has no declaration");
Douglas Gregor952b0172010-02-11 01:04:33 +0000491 BaseDecl = BaseDecl->getDefinition();
Douglas Gregor2943aed2009-03-03 04:44:36 +0000492 assert(BaseDecl && "Base type is not incomplete, but has no definition");
Eli Friedman1d954f62009-08-15 21:55:26 +0000493 CXXRecordDecl * CXXBaseDecl = cast<CXXRecordDecl>(BaseDecl);
494 assert(CXXBaseDecl && "Base type is not a C++ type");
Eli Friedmand0137332009-12-05 23:03:49 +0000495
Sean Huntbbd37c62009-11-21 08:43:09 +0000496 // C++0x CWG Issue #817 indicates that [[final]] classes shouldn't be bases.
497 if (CXXBaseDecl->hasAttr<FinalAttr>()) {
498 Diag(BaseLoc, diag::err_final_base) << BaseType.getAsString();
Douglas Gregor9af2f522009-12-01 16:58:18 +0000499 Diag(CXXBaseDecl->getLocation(), diag::note_previous_decl)
500 << BaseType;
Sean Huntbbd37c62009-11-21 08:43:09 +0000501 return 0;
502 }
Douglas Gregor2943aed2009-03-03 04:44:36 +0000503
Eli Friedmand0137332009-12-05 23:03:49 +0000504 SetClassDeclAttributesFromBase(Class, CXXBaseDecl, Virtual);
Anders Carlsson51f94042009-12-03 17:49:57 +0000505
506 // Create the base specifier.
Anders Carlsson51f94042009-12-03 17:49:57 +0000507 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
Abramo Bagnara465d41b2010-05-11 21:36:43 +0000508 Class->getTagKind() == TTK_Class,
Anders Carlsson51f94042009-12-03 17:49:57 +0000509 Access, BaseType);
510}
511
512void Sema::SetClassDeclAttributesFromBase(CXXRecordDecl *Class,
513 const CXXRecordDecl *BaseClass,
514 bool BaseIsVirtual) {
Eli Friedmand0137332009-12-05 23:03:49 +0000515 // A class with a non-empty base class is not empty.
516 // FIXME: Standard ref?
517 if (!BaseClass->isEmpty())
518 Class->setEmpty(false);
519
520 // C++ [class.virtual]p1:
521 // A class that [...] inherits a virtual function is called a polymorphic
522 // class.
523 if (BaseClass->isPolymorphic())
524 Class->setPolymorphic(true);
Anders Carlsson51f94042009-12-03 17:49:57 +0000525
Douglas Gregor2943aed2009-03-03 04:44:36 +0000526 // C++ [dcl.init.aggr]p1:
527 // An aggregate is [...] a class with [...] no base classes [...].
528 Class->setAggregate(false);
Eli Friedmand0137332009-12-05 23:03:49 +0000529
530 // C++ [class]p4:
531 // A POD-struct is an aggregate class...
Douglas Gregor2943aed2009-03-03 04:44:36 +0000532 Class->setPOD(false);
533
Anders Carlsson51f94042009-12-03 17:49:57 +0000534 if (BaseIsVirtual) {
Anders Carlsson347ba892009-04-16 00:08:20 +0000535 // C++ [class.ctor]p5:
536 // A constructor is trivial if its class has no virtual base classes.
537 Class->setHasTrivialConstructor(false);
Douglas Gregor1f2023a2009-07-22 18:25:24 +0000538
539 // C++ [class.copy]p6:
540 // A copy constructor is trivial if its class has no virtual base classes.
541 Class->setHasTrivialCopyConstructor(false);
542
543 // C++ [class.copy]p11:
544 // A copy assignment operator is trivial if its class has no virtual
545 // base classes.
546 Class->setHasTrivialCopyAssignment(false);
Eli Friedman1d954f62009-08-15 21:55:26 +0000547
548 // C++0x [meta.unary.prop] is_empty:
549 // T is a class type, but not a union type, with ... no virtual base
550 // classes
551 Class->setEmpty(false);
Anders Carlsson347ba892009-04-16 00:08:20 +0000552 } else {
553 // C++ [class.ctor]p5:
Mike Stump1eb44332009-09-09 15:08:12 +0000554 // A constructor is trivial if all the direct base classes of its
Anders Carlsson347ba892009-04-16 00:08:20 +0000555 // class have trivial constructors.
Anders Carlsson51f94042009-12-03 17:49:57 +0000556 if (!BaseClass->hasTrivialConstructor())
Douglas Gregor1f2023a2009-07-22 18:25:24 +0000557 Class->setHasTrivialConstructor(false);
558
559 // C++ [class.copy]p6:
560 // A copy constructor is trivial if all the direct base classes of its
561 // class have trivial copy constructors.
Anders Carlsson51f94042009-12-03 17:49:57 +0000562 if (!BaseClass->hasTrivialCopyConstructor())
Douglas Gregor1f2023a2009-07-22 18:25:24 +0000563 Class->setHasTrivialCopyConstructor(false);
564
565 // C++ [class.copy]p11:
566 // A copy assignment operator is trivial if all the direct base classes
567 // of its class have trivial copy assignment operators.
Anders Carlsson51f94042009-12-03 17:49:57 +0000568 if (!BaseClass->hasTrivialCopyAssignment())
Douglas Gregor1f2023a2009-07-22 18:25:24 +0000569 Class->setHasTrivialCopyAssignment(false);
Anders Carlsson347ba892009-04-16 00:08:20 +0000570 }
Anders Carlsson072abef2009-04-17 02:34:54 +0000571
572 // C++ [class.ctor]p3:
573 // A destructor is trivial if all the direct base classes of its class
574 // have trivial destructors.
Anders Carlsson51f94042009-12-03 17:49:57 +0000575 if (!BaseClass->hasTrivialDestructor())
Douglas Gregor1f2023a2009-07-22 18:25:24 +0000576 Class->setHasTrivialDestructor(false);
Douglas Gregor2943aed2009-03-03 04:44:36 +0000577}
578
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000579/// ActOnBaseSpecifier - Parsed a base specifier. A base specifier is
580/// one entry in the base class list of a class specifier, for
Mike Stump1eb44332009-09-09 15:08:12 +0000581/// example:
582/// class foo : public bar, virtual private baz {
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000583/// 'public bar' and 'virtual private baz' are each base-specifiers.
Mike Stump1eb44332009-09-09 15:08:12 +0000584Sema::BaseResult
Chris Lattnerb28317a2009-03-28 19:18:32 +0000585Sema::ActOnBaseSpecifier(DeclPtrTy classdecl, SourceRange SpecifierRange,
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000586 bool Virtual, AccessSpecifier Access,
587 TypeTy *basetype, SourceLocation BaseLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000588 if (!classdecl)
589 return true;
590
Douglas Gregor40808ce2009-03-09 23:48:35 +0000591 AdjustDeclIfTemplate(classdecl);
Douglas Gregor5fe8c042010-02-27 00:25:28 +0000592 CXXRecordDecl *Class = dyn_cast<CXXRecordDecl>(classdecl.getAs<Decl>());
593 if (!Class)
594 return true;
595
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +0000596 QualType BaseType = GetTypeFromParser(basetype);
Douglas Gregor2943aed2009-03-03 04:44:36 +0000597 if (CXXBaseSpecifier *BaseSpec = CheckBaseSpecifier(Class, SpecifierRange,
598 Virtual, Access,
599 BaseType, BaseLoc))
600 return BaseSpec;
Mike Stump1eb44332009-09-09 15:08:12 +0000601
Douglas Gregor2943aed2009-03-03 04:44:36 +0000602 return true;
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000603}
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000604
Douglas Gregor2943aed2009-03-03 04:44:36 +0000605/// \brief Performs the actual work of attaching the given base class
606/// specifiers to a C++ class.
607bool Sema::AttachBaseSpecifiers(CXXRecordDecl *Class, CXXBaseSpecifier **Bases,
608 unsigned NumBases) {
609 if (NumBases == 0)
610 return false;
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000611
612 // Used to keep track of which base types we have already seen, so
613 // that we can properly diagnose redundant direct base types. Note
Douglas Gregor57c856b2008-10-23 18:13:27 +0000614 // that the key is always the unqualified canonical type of the base
615 // class.
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000616 std::map<QualType, CXXBaseSpecifier*, QualTypeOrdering> KnownBaseTypes;
617
618 // Copy non-redundant base specifiers into permanent storage.
Douglas Gregor57c856b2008-10-23 18:13:27 +0000619 unsigned NumGoodBases = 0;
Douglas Gregor2943aed2009-03-03 04:44:36 +0000620 bool Invalid = false;
Douglas Gregor57c856b2008-10-23 18:13:27 +0000621 for (unsigned idx = 0; idx < NumBases; ++idx) {
Mike Stump1eb44332009-09-09 15:08:12 +0000622 QualType NewBaseType
Douglas Gregor2943aed2009-03-03 04:44:36 +0000623 = Context.getCanonicalType(Bases[idx]->getType());
Douglas Gregora4923eb2009-11-16 21:35:15 +0000624 NewBaseType = NewBaseType.getLocalUnqualifiedType();
Fariborz Jahanian0ed5c5d2010-05-20 23:34:56 +0000625 if (!Class->hasObjectMember()) {
626 if (const RecordType *FDTTy =
627 NewBaseType.getTypePtr()->getAs<RecordType>())
628 if (FDTTy->getDecl()->hasObjectMember())
629 Class->setHasObjectMember(true);
630 }
631
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000632 if (KnownBaseTypes[NewBaseType]) {
633 // C++ [class.mi]p3:
634 // A class shall not be specified as a direct base class of a
635 // derived class more than once.
Douglas Gregor2943aed2009-03-03 04:44:36 +0000636 Diag(Bases[idx]->getSourceRange().getBegin(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000637 diag::err_duplicate_base_class)
Chris Lattnerd1625842008-11-24 06:25:27 +0000638 << KnownBaseTypes[NewBaseType]->getType()
Douglas Gregor2943aed2009-03-03 04:44:36 +0000639 << Bases[idx]->getSourceRange();
Douglas Gregor57c856b2008-10-23 18:13:27 +0000640
641 // Delete the duplicate base class specifier; we're going to
642 // overwrite its pointer later.
Douglas Gregor2aef06d2009-07-22 20:55:49 +0000643 Context.Deallocate(Bases[idx]);
Douglas Gregor2943aed2009-03-03 04:44:36 +0000644
645 Invalid = true;
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000646 } else {
647 // Okay, add this new base class.
Douglas Gregor2943aed2009-03-03 04:44:36 +0000648 KnownBaseTypes[NewBaseType] = Bases[idx];
649 Bases[NumGoodBases++] = Bases[idx];
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000650 }
651 }
652
653 // Attach the remaining base class specifiers to the derived class.
Douglas Gregor2d5b7032010-02-11 01:30:34 +0000654 Class->setBases(Bases, NumGoodBases);
Douglas Gregor57c856b2008-10-23 18:13:27 +0000655
656 // Delete the remaining (good) base class specifiers, since their
657 // data has been copied into the CXXRecordDecl.
658 for (unsigned idx = 0; idx < NumGoodBases; ++idx)
Douglas Gregor2aef06d2009-07-22 20:55:49 +0000659 Context.Deallocate(Bases[idx]);
Douglas Gregor2943aed2009-03-03 04:44:36 +0000660
661 return Invalid;
662}
663
664/// ActOnBaseSpecifiers - Attach the given base specifiers to the
665/// class, after checking whether there are any duplicate base
666/// classes.
Mike Stump1eb44332009-09-09 15:08:12 +0000667void Sema::ActOnBaseSpecifiers(DeclPtrTy ClassDecl, BaseTy **Bases,
Douglas Gregor2943aed2009-03-03 04:44:36 +0000668 unsigned NumBases) {
669 if (!ClassDecl || !Bases || !NumBases)
670 return;
671
672 AdjustDeclIfTemplate(ClassDecl);
Chris Lattnerb28317a2009-03-28 19:18:32 +0000673 AttachBaseSpecifiers(cast<CXXRecordDecl>(ClassDecl.getAs<Decl>()),
Douglas Gregor2943aed2009-03-03 04:44:36 +0000674 (CXXBaseSpecifier**)(Bases), NumBases);
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000675}
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +0000676
John McCall3cb0ebd2010-03-10 03:28:59 +0000677static CXXRecordDecl *GetClassForType(QualType T) {
678 if (const RecordType *RT = T->getAs<RecordType>())
679 return cast<CXXRecordDecl>(RT->getDecl());
680 else if (const InjectedClassNameType *ICT = T->getAs<InjectedClassNameType>())
681 return ICT->getDecl();
682 else
683 return 0;
684}
685
Douglas Gregora8f32e02009-10-06 17:59:45 +0000686/// \brief Determine whether the type \p Derived is a C++ class that is
687/// derived from the type \p Base.
688bool Sema::IsDerivedFrom(QualType Derived, QualType Base) {
689 if (!getLangOptions().CPlusPlus)
690 return false;
John McCall3cb0ebd2010-03-10 03:28:59 +0000691
692 CXXRecordDecl *DerivedRD = GetClassForType(Derived);
693 if (!DerivedRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +0000694 return false;
695
John McCall3cb0ebd2010-03-10 03:28:59 +0000696 CXXRecordDecl *BaseRD = GetClassForType(Base);
697 if (!BaseRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +0000698 return false;
699
John McCall86ff3082010-02-04 22:26:26 +0000700 // FIXME: instantiate DerivedRD if necessary. We need a PoI for this.
701 return DerivedRD->hasDefinition() && DerivedRD->isDerivedFrom(BaseRD);
Douglas Gregora8f32e02009-10-06 17:59:45 +0000702}
703
704/// \brief Determine whether the type \p Derived is a C++ class that is
705/// derived from the type \p Base.
706bool Sema::IsDerivedFrom(QualType Derived, QualType Base, CXXBasePaths &Paths) {
707 if (!getLangOptions().CPlusPlus)
708 return false;
709
John McCall3cb0ebd2010-03-10 03:28:59 +0000710 CXXRecordDecl *DerivedRD = GetClassForType(Derived);
711 if (!DerivedRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +0000712 return false;
713
John McCall3cb0ebd2010-03-10 03:28:59 +0000714 CXXRecordDecl *BaseRD = GetClassForType(Base);
715 if (!BaseRD)
Douglas Gregora8f32e02009-10-06 17:59:45 +0000716 return false;
717
Douglas Gregora8f32e02009-10-06 17:59:45 +0000718 return DerivedRD->isDerivedFrom(BaseRD, Paths);
719}
720
Anders Carlsson5cf86ba2010-04-24 19:06:50 +0000721void Sema::BuildBasePathArray(const CXXBasePaths &Paths,
722 CXXBaseSpecifierArray &BasePathArray) {
723 assert(BasePathArray.empty() && "Base path array must be empty!");
724 assert(Paths.isRecordingPaths() && "Must record paths!");
725
726 const CXXBasePath &Path = Paths.front();
727
728 // We first go backward and check if we have a virtual base.
729 // FIXME: It would be better if CXXBasePath had the base specifier for
730 // the nearest virtual base.
731 unsigned Start = 0;
732 for (unsigned I = Path.size(); I != 0; --I) {
733 if (Path[I - 1].Base->isVirtual()) {
734 Start = I - 1;
735 break;
736 }
737 }
738
739 // Now add all bases.
740 for (unsigned I = Start, E = Path.size(); I != E; ++I)
741 BasePathArray.push_back(Path[I].Base);
742}
743
Douglas Gregor6fb745b2010-05-13 16:44:06 +0000744/// \brief Determine whether the given base path includes a virtual
745/// base class.
746bool Sema::BasePathInvolvesVirtualBase(const CXXBaseSpecifierArray &BasePath) {
747 for (CXXBaseSpecifierArray::iterator B = BasePath.begin(),
748 BEnd = BasePath.end();
749 B != BEnd; ++B)
750 if ((*B)->isVirtual())
751 return true;
752
753 return false;
754}
755
Douglas Gregora8f32e02009-10-06 17:59:45 +0000756/// CheckDerivedToBaseConversion - Check whether the Derived-to-Base
757/// conversion (where Derived and Base are class types) is
758/// well-formed, meaning that the conversion is unambiguous (and
759/// that all of the base classes are accessible). Returns true
760/// and emits a diagnostic if the code is ill-formed, returns false
761/// otherwise. Loc is the location where this routine should point to
762/// if there is an error, and Range is the source range to highlight
763/// if there is an error.
764bool
765Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
John McCall58e6f342010-03-16 05:22:47 +0000766 unsigned InaccessibleBaseID,
Douglas Gregora8f32e02009-10-06 17:59:45 +0000767 unsigned AmbigiousBaseConvID,
768 SourceLocation Loc, SourceRange Range,
Anders Carlssone25a96c2010-04-24 17:11:09 +0000769 DeclarationName Name,
770 CXXBaseSpecifierArray *BasePath) {
Douglas Gregora8f32e02009-10-06 17:59:45 +0000771 // First, determine whether the path from Derived to Base is
772 // ambiguous. This is slightly more expensive than checking whether
773 // the Derived to Base conversion exists, because here we need to
774 // explore multiple paths to determine if there is an ambiguity.
775 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
776 /*DetectVirtual=*/false);
777 bool DerivationOkay = IsDerivedFrom(Derived, Base, Paths);
778 assert(DerivationOkay &&
779 "Can only be used with a derived-to-base conversion");
780 (void)DerivationOkay;
781
782 if (!Paths.isAmbiguous(Context.getCanonicalType(Base).getUnqualifiedType())) {
Anders Carlsson5cf86ba2010-04-24 19:06:50 +0000783 if (InaccessibleBaseID) {
784 // Check that the base class can be accessed.
785 switch (CheckBaseClassAccess(Loc, Base, Derived, Paths.front(),
786 InaccessibleBaseID)) {
787 case AR_inaccessible:
788 return true;
789 case AR_accessible:
790 case AR_dependent:
791 case AR_delayed:
792 break;
Anders Carlssone25a96c2010-04-24 17:11:09 +0000793 }
John McCall6b2accb2010-02-10 09:31:12 +0000794 }
Anders Carlsson5cf86ba2010-04-24 19:06:50 +0000795
796 // Build a base path if necessary.
797 if (BasePath)
798 BuildBasePathArray(Paths, *BasePath);
799 return false;
Douglas Gregora8f32e02009-10-06 17:59:45 +0000800 }
801
802 // We know that the derived-to-base conversion is ambiguous, and
803 // we're going to produce a diagnostic. Perform the derived-to-base
804 // search just one more time to compute all of the possible paths so
805 // that we can print them out. This is more expensive than any of
806 // the previous derived-to-base checks we've done, but at this point
807 // performance isn't as much of an issue.
808 Paths.clear();
809 Paths.setRecordingPaths(true);
810 bool StillOkay = IsDerivedFrom(Derived, Base, Paths);
811 assert(StillOkay && "Can only be used with a derived-to-base conversion");
812 (void)StillOkay;
813
814 // Build up a textual representation of the ambiguous paths, e.g.,
815 // D -> B -> A, that will be used to illustrate the ambiguous
816 // conversions in the diagnostic. We only print one of the paths
817 // to each base class subobject.
818 std::string PathDisplayStr = getAmbiguousPathsDisplayString(Paths);
819
820 Diag(Loc, AmbigiousBaseConvID)
821 << Derived << Base << PathDisplayStr << Range << Name;
822 return true;
823}
824
825bool
826Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
Sebastian Redla82e4ae2009-11-14 21:15:49 +0000827 SourceLocation Loc, SourceRange Range,
Anders Carlssone25a96c2010-04-24 17:11:09 +0000828 CXXBaseSpecifierArray *BasePath,
Sebastian Redla82e4ae2009-11-14 21:15:49 +0000829 bool IgnoreAccess) {
Douglas Gregora8f32e02009-10-06 17:59:45 +0000830 return CheckDerivedToBaseConversion(Derived, Base,
John McCall58e6f342010-03-16 05:22:47 +0000831 IgnoreAccess ? 0
832 : diag::err_upcast_to_inaccessible_base,
Douglas Gregora8f32e02009-10-06 17:59:45 +0000833 diag::err_ambiguous_derived_to_base_conv,
Anders Carlssone25a96c2010-04-24 17:11:09 +0000834 Loc, Range, DeclarationName(),
835 BasePath);
Douglas Gregora8f32e02009-10-06 17:59:45 +0000836}
837
838
839/// @brief Builds a string representing ambiguous paths from a
840/// specific derived class to different subobjects of the same base
841/// class.
842///
843/// This function builds a string that can be used in error messages
844/// to show the different paths that one can take through the
845/// inheritance hierarchy to go from the derived class to different
846/// subobjects of a base class. The result looks something like this:
847/// @code
848/// struct D -> struct B -> struct A
849/// struct D -> struct C -> struct A
850/// @endcode
851std::string Sema::getAmbiguousPathsDisplayString(CXXBasePaths &Paths) {
852 std::string PathDisplayStr;
853 std::set<unsigned> DisplayedPaths;
854 for (CXXBasePaths::paths_iterator Path = Paths.begin();
855 Path != Paths.end(); ++Path) {
856 if (DisplayedPaths.insert(Path->back().SubobjectNumber).second) {
857 // We haven't displayed a path to this particular base
858 // class subobject yet.
859 PathDisplayStr += "\n ";
860 PathDisplayStr += Context.getTypeDeclType(Paths.getOrigin()).getAsString();
861 for (CXXBasePath::const_iterator Element = Path->begin();
862 Element != Path->end(); ++Element)
863 PathDisplayStr += " -> " + Element->Base->getType().getAsString();
864 }
865 }
866
867 return PathDisplayStr;
868}
869
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000870//===----------------------------------------------------------------------===//
871// C++ class member Handling
872//===----------------------------------------------------------------------===//
873
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000874/// ActOnCXXMemberDeclarator - This is invoked when a C++ class member
875/// declarator is parsed. 'AS' is the access specifier, 'BW' specifies the
876/// bitfield width if there is one and 'InitExpr' specifies the initializer if
Chris Lattnerb6688e02009-04-12 22:37:57 +0000877/// any.
Chris Lattnerb28317a2009-03-28 19:18:32 +0000878Sema::DeclPtrTy
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000879Sema::ActOnCXXMemberDeclarator(Scope *S, AccessSpecifier AS, Declarator &D,
Douglas Gregor37b372b2009-08-20 22:52:58 +0000880 MultiTemplateParamsArg TemplateParameterLists,
Sebastian Redld1a78462009-11-24 23:38:44 +0000881 ExprTy *BW, ExprTy *InitExpr, bool IsDefinition,
882 bool Deleted) {
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000883 const DeclSpec &DS = D.getDeclSpec();
Douglas Gregor10bd3682008-11-17 22:58:34 +0000884 DeclarationName Name = GetNameForDeclarator(D);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000885 Expr *BitWidth = static_cast<Expr*>(BW);
886 Expr *Init = static_cast<Expr*>(InitExpr);
887 SourceLocation Loc = D.getIdentifierLoc();
888
Sebastian Redl669d5d72008-11-14 23:42:31 +0000889 bool isFunc = D.isFunctionDeclarator();
890
John McCall67d1a672009-08-06 02:15:43 +0000891 assert(!DS.isFriendSpecified());
892
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000893 // C++ 9.2p6: A member shall not be declared to have automatic storage
894 // duration (auto, register) or with the extern storage-class-specifier.
Sebastian Redl669d5d72008-11-14 23:42:31 +0000895 // C++ 7.1.1p8: The mutable specifier can be applied only to names of class
896 // data members and cannot be applied to names declared const or static,
897 // and cannot be applied to reference members.
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000898 switch (DS.getStorageClassSpec()) {
899 case DeclSpec::SCS_unspecified:
900 case DeclSpec::SCS_typedef:
901 case DeclSpec::SCS_static:
902 // FALL THROUGH.
903 break;
Sebastian Redl669d5d72008-11-14 23:42:31 +0000904 case DeclSpec::SCS_mutable:
905 if (isFunc) {
906 if (DS.getStorageClassSpecLoc().isValid())
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000907 Diag(DS.getStorageClassSpecLoc(), diag::err_mutable_function);
Sebastian Redl669d5d72008-11-14 23:42:31 +0000908 else
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000909 Diag(DS.getThreadSpecLoc(), diag::err_mutable_function);
Mike Stump1eb44332009-09-09 15:08:12 +0000910
Sebastian Redla11f42f2008-11-17 23:24:37 +0000911 // FIXME: It would be nicer if the keyword was ignored only for this
912 // declarator. Otherwise we could get follow-up errors.
Sebastian Redl669d5d72008-11-14 23:42:31 +0000913 D.getMutableDeclSpec().ClearStorageClassSpecs();
914 } else {
915 QualType T = GetTypeForDeclarator(D, S);
916 diag::kind err = static_cast<diag::kind>(0);
917 if (T->isReferenceType())
918 err = diag::err_mutable_reference;
919 else if (T.isConstQualified())
920 err = diag::err_mutable_const;
921 if (err != 0) {
922 if (DS.getStorageClassSpecLoc().isValid())
923 Diag(DS.getStorageClassSpecLoc(), err);
924 else
925 Diag(DS.getThreadSpecLoc(), err);
Sebastian Redla11f42f2008-11-17 23:24:37 +0000926 // FIXME: It would be nicer if the keyword was ignored only for this
927 // declarator. Otherwise we could get follow-up errors.
Sebastian Redl669d5d72008-11-14 23:42:31 +0000928 D.getMutableDeclSpec().ClearStorageClassSpecs();
929 }
930 }
931 break;
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000932 default:
933 if (DS.getStorageClassSpecLoc().isValid())
934 Diag(DS.getStorageClassSpecLoc(),
935 diag::err_storageclass_invalid_for_member);
936 else
937 Diag(DS.getThreadSpecLoc(), diag::err_storageclass_invalid_for_member);
938 D.getMutableDeclSpec().ClearStorageClassSpecs();
939 }
940
Argyrios Kyrtzidisd6caa9e2008-10-15 20:23:22 +0000941 if (!isFunc &&
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000942 D.getDeclSpec().getTypeSpecType() == DeclSpec::TST_typename &&
Argyrios Kyrtzidisd6caa9e2008-10-15 20:23:22 +0000943 D.getNumTypeObjects() == 0) {
Argyrios Kyrtzidisde933f02008-10-08 22:20:31 +0000944 // Check also for this case:
945 //
946 // typedef int f();
947 // f a;
948 //
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +0000949 QualType TDType = GetTypeFromParser(DS.getTypeRep());
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000950 isFunc = TDType->isFunctionType();
Argyrios Kyrtzidisde933f02008-10-08 22:20:31 +0000951 }
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000952
Sebastian Redl669d5d72008-11-14 23:42:31 +0000953 bool isInstField = ((DS.getStorageClassSpec() == DeclSpec::SCS_unspecified ||
954 DS.getStorageClassSpec() == DeclSpec::SCS_mutable) &&
Argyrios Kyrtzidisde933f02008-10-08 22:20:31 +0000955 !isFunc);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000956
957 Decl *Member;
Chris Lattner24793662009-03-05 22:45:59 +0000958 if (isInstField) {
Douglas Gregor37b372b2009-08-20 22:52:58 +0000959 // FIXME: Check for template parameters!
Douglas Gregor4dd55f52009-03-11 20:50:30 +0000960 Member = HandleField(S, cast<CXXRecordDecl>(CurContext), Loc, D, BitWidth,
961 AS);
Chris Lattner6f8ce142009-03-05 23:03:49 +0000962 assert(Member && "HandleField never returns null");
Chris Lattner24793662009-03-05 22:45:59 +0000963 } else {
Sebastian Redld1a78462009-11-24 23:38:44 +0000964 Member = HandleDeclarator(S, D, move(TemplateParameterLists), IsDefinition)
Douglas Gregor37b372b2009-08-20 22:52:58 +0000965 .getAs<Decl>();
Chris Lattner6f8ce142009-03-05 23:03:49 +0000966 if (!Member) {
967 if (BitWidth) DeleteExpr(BitWidth);
Chris Lattner682bf922009-03-29 16:50:03 +0000968 return DeclPtrTy();
Chris Lattner6f8ce142009-03-05 23:03:49 +0000969 }
Chris Lattner8b963ef2009-03-05 23:01:03 +0000970
971 // Non-instance-fields can't have a bitfield.
972 if (BitWidth) {
973 if (Member->isInvalidDecl()) {
974 // don't emit another diagnostic.
Douglas Gregor2d2e9cf2009-03-11 20:22:50 +0000975 } else if (isa<VarDecl>(Member)) {
Chris Lattner8b963ef2009-03-05 23:01:03 +0000976 // C++ 9.6p3: A bit-field shall not be a static member.
977 // "static member 'A' cannot be a bit-field"
978 Diag(Loc, diag::err_static_not_bitfield)
979 << Name << BitWidth->getSourceRange();
980 } else if (isa<TypedefDecl>(Member)) {
981 // "typedef member 'x' cannot be a bit-field"
982 Diag(Loc, diag::err_typedef_not_bitfield)
983 << Name << BitWidth->getSourceRange();
984 } else {
985 // A function typedef ("typedef int f(); f a;").
986 // C++ 9.6p3: A bit-field shall have integral or enumeration type.
987 Diag(Loc, diag::err_not_integral_type_bitfield)
Mike Stump1eb44332009-09-09 15:08:12 +0000988 << Name << cast<ValueDecl>(Member)->getType()
Douglas Gregor3cf538d2009-03-11 18:59:21 +0000989 << BitWidth->getSourceRange();
Chris Lattner8b963ef2009-03-05 23:01:03 +0000990 }
Mike Stump1eb44332009-09-09 15:08:12 +0000991
Chris Lattner8b963ef2009-03-05 23:01:03 +0000992 DeleteExpr(BitWidth);
993 BitWidth = 0;
994 Member->setInvalidDecl();
995 }
Douglas Gregor4dd55f52009-03-11 20:50:30 +0000996
997 Member->setAccess(AS);
Mike Stump1eb44332009-09-09 15:08:12 +0000998
Douglas Gregor37b372b2009-08-20 22:52:58 +0000999 // If we have declared a member function template, set the access of the
1000 // templated declaration as well.
1001 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Member))
1002 FunTmpl->getTemplatedDecl()->setAccess(AS);
Chris Lattner24793662009-03-05 22:45:59 +00001003 }
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001004
Douglas Gregor10bd3682008-11-17 22:58:34 +00001005 assert((Name || isInstField) && "No identifier for non-field ?");
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001006
Douglas Gregor021c3b32009-03-11 23:00:04 +00001007 if (Init)
Chris Lattnerb28317a2009-03-28 19:18:32 +00001008 AddInitializerToDecl(DeclPtrTy::make(Member), ExprArg(*this, Init), false);
Sebastian Redle2b68332009-04-12 17:16:29 +00001009 if (Deleted) // FIXME: Source location is not very good.
1010 SetDeclDeleted(DeclPtrTy::make(Member), D.getSourceRange().getBegin());
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001011
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001012 if (isInstField) {
Douglas Gregor44b43212008-12-11 16:49:14 +00001013 FieldCollector->Add(cast<FieldDecl>(Member));
Chris Lattner682bf922009-03-29 16:50:03 +00001014 return DeclPtrTy();
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001015 }
Chris Lattnerb28317a2009-03-28 19:18:32 +00001016 return DeclPtrTy::make(Member);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001017}
1018
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001019/// \brief Find the direct and/or virtual base specifiers that
1020/// correspond to the given base type, for use in base initialization
1021/// within a constructor.
1022static bool FindBaseInitializer(Sema &SemaRef,
1023 CXXRecordDecl *ClassDecl,
1024 QualType BaseType,
1025 const CXXBaseSpecifier *&DirectBaseSpec,
1026 const CXXBaseSpecifier *&VirtualBaseSpec) {
1027 // First, check for a direct base class.
1028 DirectBaseSpec = 0;
1029 for (CXXRecordDecl::base_class_const_iterator Base
1030 = ClassDecl->bases_begin();
1031 Base != ClassDecl->bases_end(); ++Base) {
1032 if (SemaRef.Context.hasSameUnqualifiedType(BaseType, Base->getType())) {
1033 // We found a direct base of this type. That's what we're
1034 // initializing.
1035 DirectBaseSpec = &*Base;
1036 break;
1037 }
1038 }
1039
1040 // Check for a virtual base class.
1041 // FIXME: We might be able to short-circuit this if we know in advance that
1042 // there are no virtual bases.
1043 VirtualBaseSpec = 0;
1044 if (!DirectBaseSpec || !DirectBaseSpec->isVirtual()) {
1045 // We haven't found a base yet; search the class hierarchy for a
1046 // virtual base class.
1047 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
1048 /*DetectVirtual=*/false);
1049 if (SemaRef.IsDerivedFrom(SemaRef.Context.getTypeDeclType(ClassDecl),
1050 BaseType, Paths)) {
1051 for (CXXBasePaths::paths_iterator Path = Paths.begin();
1052 Path != Paths.end(); ++Path) {
1053 if (Path->back().Base->isVirtual()) {
1054 VirtualBaseSpec = Path->back().Base;
1055 break;
1056 }
1057 }
1058 }
1059 }
1060
1061 return DirectBaseSpec || VirtualBaseSpec;
1062}
1063
Douglas Gregor7ad83902008-11-05 04:29:56 +00001064/// ActOnMemInitializer - Handle a C++ member initializer.
Mike Stump1eb44332009-09-09 15:08:12 +00001065Sema::MemInitResult
Chris Lattnerb28317a2009-03-28 19:18:32 +00001066Sema::ActOnMemInitializer(DeclPtrTy ConstructorD,
Douglas Gregor7ad83902008-11-05 04:29:56 +00001067 Scope *S,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00001068 CXXScopeSpec &SS,
Douglas Gregor7ad83902008-11-05 04:29:56 +00001069 IdentifierInfo *MemberOrBase,
Fariborz Jahanian96174332009-07-01 19:21:19 +00001070 TypeTy *TemplateTypeTy,
Douglas Gregor7ad83902008-11-05 04:29:56 +00001071 SourceLocation IdLoc,
1072 SourceLocation LParenLoc,
1073 ExprTy **Args, unsigned NumArgs,
1074 SourceLocation *CommaLocs,
1075 SourceLocation RParenLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00001076 if (!ConstructorD)
1077 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001078
Douglas Gregorefd5bda2009-08-24 11:57:43 +00001079 AdjustDeclIfTemplate(ConstructorD);
Mike Stump1eb44332009-09-09 15:08:12 +00001080
1081 CXXConstructorDecl *Constructor
Chris Lattnerb28317a2009-03-28 19:18:32 +00001082 = dyn_cast<CXXConstructorDecl>(ConstructorD.getAs<Decl>());
Douglas Gregor7ad83902008-11-05 04:29:56 +00001083 if (!Constructor) {
1084 // The user wrote a constructor initializer on a function that is
1085 // not a C++ constructor. Ignore the error for now, because we may
1086 // have more member initializers coming; we'll diagnose it just
1087 // once in ActOnMemInitializers.
1088 return true;
1089 }
1090
1091 CXXRecordDecl *ClassDecl = Constructor->getParent();
1092
1093 // C++ [class.base.init]p2:
1094 // Names in a mem-initializer-id are looked up in the scope of the
1095 // constructor’s class and, if not found in that scope, are looked
1096 // up in the scope containing the constructor’s
1097 // definition. [Note: if the constructor’s class contains a member
1098 // with the same name as a direct or virtual base class of the
1099 // class, a mem-initializer-id naming the member or base class and
1100 // composed of a single identifier refers to the class member. A
1101 // mem-initializer-id for the hidden base class may be specified
1102 // using a qualified name. ]
Fariborz Jahanian96174332009-07-01 19:21:19 +00001103 if (!SS.getScopeRep() && !TemplateTypeTy) {
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00001104 // Look for a member, first.
1105 FieldDecl *Member = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001106 DeclContext::lookup_result Result
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00001107 = ClassDecl->lookup(MemberOrBase);
1108 if (Result.first != Result.second)
1109 Member = dyn_cast<FieldDecl>(*Result.first);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001110
Fariborz Jahanianbcfad542009-06-30 23:26:25 +00001111 // FIXME: Handle members of an anonymous union.
Douglas Gregor7ad83902008-11-05 04:29:56 +00001112
Eli Friedman59c04372009-07-29 19:44:27 +00001113 if (Member)
1114 return BuildMemberInitializer(Member, (Expr**)Args, NumArgs, IdLoc,
Douglas Gregor802ab452009-12-02 22:36:29 +00001115 LParenLoc, RParenLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001116 }
Douglas Gregor7ad83902008-11-05 04:29:56 +00001117 // It didn't name a member, so see if it names a class.
Douglas Gregor802ab452009-12-02 22:36:29 +00001118 QualType BaseType;
John McCalla93c9342009-12-07 02:54:59 +00001119 TypeSourceInfo *TInfo = 0;
John McCall2b194412009-12-21 10:41:20 +00001120
1121 if (TemplateTypeTy) {
John McCalla93c9342009-12-07 02:54:59 +00001122 BaseType = GetTypeFromParser(TemplateTypeTy, &TInfo);
John McCall2b194412009-12-21 10:41:20 +00001123 } else {
1124 LookupResult R(*this, MemberOrBase, IdLoc, LookupOrdinaryName);
1125 LookupParsedName(R, S, &SS);
1126
1127 TypeDecl *TyD = R.getAsSingle<TypeDecl>();
1128 if (!TyD) {
1129 if (R.isAmbiguous()) return true;
1130
John McCallfd225442010-04-09 19:01:14 +00001131 // We don't want access-control diagnostics here.
1132 R.suppressDiagnostics();
1133
Douglas Gregor7a886e12010-01-19 06:46:48 +00001134 if (SS.isSet() && isDependentScopeSpecifier(SS)) {
1135 bool NotUnknownSpecialization = false;
1136 DeclContext *DC = computeDeclContext(SS, false);
1137 if (CXXRecordDecl *Record = dyn_cast_or_null<CXXRecordDecl>(DC))
1138 NotUnknownSpecialization = !Record->hasAnyDependentBases();
1139
1140 if (!NotUnknownSpecialization) {
1141 // When the scope specifier can refer to a member of an unknown
1142 // specialization, we take it as a type name.
Douglas Gregor107de902010-04-24 15:35:55 +00001143 BaseType = CheckTypenameType(ETK_None,
1144 (NestedNameSpecifier *)SS.getScopeRep(),
Abramo Bagnarae4da7a02010-05-19 21:37:53 +00001145 *MemberOrBase, SourceLocation(),
1146 SS.getRange(), IdLoc);
Douglas Gregora50ce322010-03-07 23:26:22 +00001147 if (BaseType.isNull())
1148 return true;
1149
Douglas Gregor7a886e12010-01-19 06:46:48 +00001150 R.clear();
1151 }
1152 }
1153
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001154 // If no results were found, try to correct typos.
Douglas Gregor7a886e12010-01-19 06:46:48 +00001155 if (R.empty() && BaseType.isNull() &&
Douglas Gregoraaf87162010-04-14 20:04:41 +00001156 CorrectTypo(R, S, &SS, ClassDecl, 0, CTC_NoKeywords) &&
1157 R.isSingleResult()) {
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001158 if (FieldDecl *Member = R.getAsSingle<FieldDecl>()) {
1159 if (Member->getDeclContext()->getLookupContext()->Equals(ClassDecl)) {
1160 // We have found a non-static data member with a similar
1161 // name to what was typed; complain and initialize that
1162 // member.
1163 Diag(R.getNameLoc(), diag::err_mem_init_not_member_or_class_suggest)
1164 << MemberOrBase << true << R.getLookupName()
Douglas Gregor849b2432010-03-31 17:46:05 +00001165 << FixItHint::CreateReplacement(R.getNameLoc(),
1166 R.getLookupName().getAsString());
Douglas Gregor67dd1d42010-01-07 00:17:44 +00001167 Diag(Member->getLocation(), diag::note_previous_decl)
1168 << Member->getDeclName();
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001169
1170 return BuildMemberInitializer(Member, (Expr**)Args, NumArgs, IdLoc,
1171 LParenLoc, RParenLoc);
1172 }
1173 } else if (TypeDecl *Type = R.getAsSingle<TypeDecl>()) {
1174 const CXXBaseSpecifier *DirectBaseSpec;
1175 const CXXBaseSpecifier *VirtualBaseSpec;
1176 if (FindBaseInitializer(*this, ClassDecl,
1177 Context.getTypeDeclType(Type),
1178 DirectBaseSpec, VirtualBaseSpec)) {
1179 // We have found a direct or virtual base class with a
1180 // similar name to what was typed; complain and initialize
1181 // that base class.
1182 Diag(R.getNameLoc(), diag::err_mem_init_not_member_or_class_suggest)
1183 << MemberOrBase << false << R.getLookupName()
Douglas Gregor849b2432010-03-31 17:46:05 +00001184 << FixItHint::CreateReplacement(R.getNameLoc(),
1185 R.getLookupName().getAsString());
Douglas Gregor0d535c82010-01-07 00:26:25 +00001186
1187 const CXXBaseSpecifier *BaseSpec = DirectBaseSpec? DirectBaseSpec
1188 : VirtualBaseSpec;
1189 Diag(BaseSpec->getSourceRange().getBegin(),
1190 diag::note_base_class_specified_here)
1191 << BaseSpec->getType()
1192 << BaseSpec->getSourceRange();
1193
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001194 TyD = Type;
1195 }
1196 }
1197 }
1198
Douglas Gregor7a886e12010-01-19 06:46:48 +00001199 if (!TyD && BaseType.isNull()) {
Douglas Gregorfe0241e2009-12-31 09:10:24 +00001200 Diag(IdLoc, diag::err_mem_init_not_member_or_class)
1201 << MemberOrBase << SourceRange(IdLoc, RParenLoc);
1202 return true;
1203 }
John McCall2b194412009-12-21 10:41:20 +00001204 }
1205
Douglas Gregor7a886e12010-01-19 06:46:48 +00001206 if (BaseType.isNull()) {
1207 BaseType = Context.getTypeDeclType(TyD);
1208 if (SS.isSet()) {
1209 NestedNameSpecifier *Qualifier =
1210 static_cast<NestedNameSpecifier*>(SS.getScopeRep());
John McCall2b194412009-12-21 10:41:20 +00001211
Douglas Gregor7a886e12010-01-19 06:46:48 +00001212 // FIXME: preserve source range information
Abramo Bagnara465d41b2010-05-11 21:36:43 +00001213 BaseType = Context.getElaboratedType(ETK_None, Qualifier, BaseType);
Douglas Gregor7a886e12010-01-19 06:46:48 +00001214 }
John McCall2b194412009-12-21 10:41:20 +00001215 }
1216 }
Mike Stump1eb44332009-09-09 15:08:12 +00001217
John McCalla93c9342009-12-07 02:54:59 +00001218 if (!TInfo)
1219 TInfo = Context.getTrivialTypeSourceInfo(BaseType, IdLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001220
John McCalla93c9342009-12-07 02:54:59 +00001221 return BuildBaseInitializer(BaseType, TInfo, (Expr **)Args, NumArgs,
Douglas Gregor802ab452009-12-02 22:36:29 +00001222 LParenLoc, RParenLoc, ClassDecl);
Eli Friedman59c04372009-07-29 19:44:27 +00001223}
1224
John McCallb4190042009-11-04 23:02:40 +00001225/// Checks an initializer expression for use of uninitialized fields, such as
1226/// containing the field that is being initialized. Returns true if there is an
1227/// uninitialized field was used an updates the SourceLocation parameter; false
1228/// otherwise.
1229static bool InitExprContainsUninitializedFields(const Stmt* S,
1230 const FieldDecl* LhsField,
1231 SourceLocation* L) {
1232 const MemberExpr* ME = dyn_cast<MemberExpr>(S);
1233 if (ME) {
1234 const NamedDecl* RhsField = ME->getMemberDecl();
1235 if (RhsField == LhsField) {
1236 // Initializing a field with itself. Throw a warning.
1237 // But wait; there are exceptions!
1238 // Exception #1: The field may not belong to this record.
1239 // e.g. Foo(const Foo& rhs) : A(rhs.A) {}
1240 const Expr* base = ME->getBase();
1241 if (base != NULL && !isa<CXXThisExpr>(base->IgnoreParenCasts())) {
1242 // Even though the field matches, it does not belong to this record.
1243 return false;
1244 }
1245 // None of the exceptions triggered; return true to indicate an
1246 // uninitialized field was used.
1247 *L = ME->getMemberLoc();
1248 return true;
1249 }
1250 }
1251 bool found = false;
1252 for (Stmt::const_child_iterator it = S->child_begin();
1253 it != S->child_end() && found == false;
1254 ++it) {
1255 if (isa<CallExpr>(S)) {
1256 // Do not descend into function calls or constructors, as the use
1257 // of an uninitialized field may be valid. One would have to inspect
1258 // the contents of the function/ctor to determine if it is safe or not.
1259 // i.e. Pass-by-value is never safe, but pass-by-reference and pointers
1260 // may be safe, depending on what the function/ctor does.
1261 continue;
1262 }
1263 found = InitExprContainsUninitializedFields(*it, LhsField, L);
1264 }
1265 return found;
1266}
1267
Eli Friedman59c04372009-07-29 19:44:27 +00001268Sema::MemInitResult
1269Sema::BuildMemberInitializer(FieldDecl *Member, Expr **Args,
1270 unsigned NumArgs, SourceLocation IdLoc,
Douglas Gregor802ab452009-12-02 22:36:29 +00001271 SourceLocation LParenLoc,
Eli Friedman59c04372009-07-29 19:44:27 +00001272 SourceLocation RParenLoc) {
John McCallb4190042009-11-04 23:02:40 +00001273 // Diagnose value-uses of fields to initialize themselves, e.g.
1274 // foo(foo)
1275 // where foo is not also a parameter to the constructor.
John McCall6aee6212009-11-04 23:13:52 +00001276 // TODO: implement -Wuninitialized and fold this into that framework.
John McCallb4190042009-11-04 23:02:40 +00001277 for (unsigned i = 0; i < NumArgs; ++i) {
1278 SourceLocation L;
1279 if (InitExprContainsUninitializedFields(Args[i], Member, &L)) {
1280 // FIXME: Return true in the case when other fields are used before being
1281 // uninitialized. For example, let this field be the i'th field. When
1282 // initializing the i'th field, throw a warning if any of the >= i'th
1283 // fields are used, as they are not yet initialized.
1284 // Right now we are only handling the case where the i'th field uses
1285 // itself in its initializer.
1286 Diag(L, diag::warn_field_is_uninit);
1287 }
1288 }
1289
Eli Friedman59c04372009-07-29 19:44:27 +00001290 bool HasDependentArg = false;
1291 for (unsigned i = 0; i < NumArgs; i++)
1292 HasDependentArg |= Args[i]->isTypeDependent();
1293
Eli Friedman59c04372009-07-29 19:44:27 +00001294 QualType FieldType = Member->getType();
1295 if (const ArrayType *Array = Context.getAsArrayType(FieldType))
1296 FieldType = Array->getElementType();
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001297 if (FieldType->isDependentType() || HasDependentArg) {
1298 // Can't check initialization for a member of dependent type or when
1299 // any of the arguments are type-dependent expressions.
1300 OwningExprResult Init
1301 = Owned(new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1302 RParenLoc));
1303
1304 // Erase any temporaries within this evaluation context; we're not
1305 // going to track them in the AST, since we'll be rebuilding the
1306 // ASTs during template instantiation.
1307 ExprTemporaries.erase(
1308 ExprTemporaries.begin() + ExprEvalContexts.back().NumTemporaries,
1309 ExprTemporaries.end());
1310
1311 return new (Context) CXXBaseOrMemberInitializer(Context, Member, IdLoc,
1312 LParenLoc,
1313 Init.takeAs<Expr>(),
1314 RParenLoc);
1315
Douglas Gregor7ad83902008-11-05 04:29:56 +00001316 }
Anders Carlssonf8a9a792009-11-13 19:21:49 +00001317
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001318 if (Member->isInvalidDecl())
1319 return true;
Anders Carlssonf8a9a792009-11-13 19:21:49 +00001320
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001321 // Initialize the member.
1322 InitializedEntity MemberEntity =
1323 InitializedEntity::InitializeMember(Member, 0);
1324 InitializationKind Kind =
1325 InitializationKind::CreateDirect(IdLoc, LParenLoc, RParenLoc);
1326
1327 InitializationSequence InitSeq(*this, MemberEntity, Kind, Args, NumArgs);
1328
1329 OwningExprResult MemberInit =
1330 InitSeq.Perform(*this, MemberEntity, Kind,
1331 MultiExprArg(*this, (void**)Args, NumArgs), 0);
1332 if (MemberInit.isInvalid())
1333 return true;
1334
1335 // C++0x [class.base.init]p7:
1336 // The initialization of each base and member constitutes a
1337 // full-expression.
1338 MemberInit = MaybeCreateCXXExprWithTemporaries(move(MemberInit));
1339 if (MemberInit.isInvalid())
1340 return true;
1341
1342 // If we are in a dependent context, template instantiation will
1343 // perform this type-checking again. Just save the arguments that we
1344 // received in a ParenListExpr.
1345 // FIXME: This isn't quite ideal, since our ASTs don't capture all
1346 // of the information that we have about the member
1347 // initializer. However, deconstructing the ASTs is a dicey process,
1348 // and this approach is far more likely to get the corner cases right.
1349 if (CurContext->isDependentContext()) {
1350 // Bump the reference count of all of the arguments.
1351 for (unsigned I = 0; I != NumArgs; ++I)
1352 Args[I]->Retain();
1353
1354 OwningExprResult Init
1355 = Owned(new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1356 RParenLoc));
1357 return new (Context) CXXBaseOrMemberInitializer(Context, Member, IdLoc,
1358 LParenLoc,
1359 Init.takeAs<Expr>(),
1360 RParenLoc);
1361 }
1362
Douglas Gregor802ab452009-12-02 22:36:29 +00001363 return new (Context) CXXBaseOrMemberInitializer(Context, Member, IdLoc,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001364 LParenLoc,
1365 MemberInit.takeAs<Expr>(),
1366 RParenLoc);
Eli Friedman59c04372009-07-29 19:44:27 +00001367}
1368
1369Sema::MemInitResult
John McCalla93c9342009-12-07 02:54:59 +00001370Sema::BuildBaseInitializer(QualType BaseType, TypeSourceInfo *BaseTInfo,
Douglas Gregor802ab452009-12-02 22:36:29 +00001371 Expr **Args, unsigned NumArgs,
1372 SourceLocation LParenLoc, SourceLocation RParenLoc,
1373 CXXRecordDecl *ClassDecl) {
Eli Friedman59c04372009-07-29 19:44:27 +00001374 bool HasDependentArg = false;
1375 for (unsigned i = 0; i < NumArgs; i++)
1376 HasDependentArg |= Args[i]->isTypeDependent();
1377
Abramo Bagnarabd054db2010-05-20 10:00:11 +00001378 SourceLocation BaseLoc = BaseTInfo->getTypeLoc().getLocalSourceRange().getBegin();
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001379 if (BaseType->isDependentType() || HasDependentArg) {
1380 // Can't check initialization for a base of dependent type or when
1381 // any of the arguments are type-dependent expressions.
1382 OwningExprResult BaseInit
1383 = Owned(new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1384 RParenLoc));
Eli Friedman59c04372009-07-29 19:44:27 +00001385
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001386 // Erase any temporaries within this evaluation context; we're not
1387 // going to track them in the AST, since we'll be rebuilding the
1388 // ASTs during template instantiation.
1389 ExprTemporaries.erase(
1390 ExprTemporaries.begin() + ExprEvalContexts.back().NumTemporaries,
1391 ExprTemporaries.end());
Mike Stump1eb44332009-09-09 15:08:12 +00001392
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001393 return new (Context) CXXBaseOrMemberInitializer(Context, BaseTInfo,
Anders Carlsson80638c52010-04-12 00:51:03 +00001394 /*IsVirtual=*/false,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001395 LParenLoc,
1396 BaseInit.takeAs<Expr>(),
1397 RParenLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001398 }
Anders Carlssonf8a9a792009-11-13 19:21:49 +00001399
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001400 if (!BaseType->isRecordType())
1401 return Diag(BaseLoc, diag::err_base_init_does_not_name_class)
Abramo Bagnarabd054db2010-05-20 10:00:11 +00001402 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001403
1404 // C++ [class.base.init]p2:
1405 // [...] Unless the mem-initializer-id names a nonstatic data
1406 // member of the constructor’s class or a direct or virtual base
1407 // of that class, the mem-initializer is ill-formed. A
1408 // mem-initializer-list can initialize a base class using any
1409 // name that denotes that base class type.
1410
1411 // Check for direct and virtual base classes.
1412 const CXXBaseSpecifier *DirectBaseSpec = 0;
1413 const CXXBaseSpecifier *VirtualBaseSpec = 0;
1414 FindBaseInitializer(*this, ClassDecl, BaseType, DirectBaseSpec,
1415 VirtualBaseSpec);
1416
1417 // C++ [base.class.init]p2:
1418 // If a mem-initializer-id is ambiguous because it designates both
1419 // a direct non-virtual base class and an inherited virtual base
1420 // class, the mem-initializer is ill-formed.
1421 if (DirectBaseSpec && VirtualBaseSpec)
1422 return Diag(BaseLoc, diag::err_base_init_direct_and_virtual)
Abramo Bagnarabd054db2010-05-20 10:00:11 +00001423 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001424 // C++ [base.class.init]p2:
1425 // Unless the mem-initializer-id names a nonstatic data membeer of the
1426 // constructor's class ot a direst or virtual base of that class, the
1427 // mem-initializer is ill-formed.
1428 if (!DirectBaseSpec && !VirtualBaseSpec)
1429 return Diag(BaseLoc, diag::err_not_direct_base_or_virtual)
John McCall110acc12010-04-27 01:43:38 +00001430 << BaseType << Context.getTypeDeclType(ClassDecl)
Abramo Bagnarabd054db2010-05-20 10:00:11 +00001431 << BaseTInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001432
1433 CXXBaseSpecifier *BaseSpec
1434 = const_cast<CXXBaseSpecifier *>(DirectBaseSpec);
1435 if (!BaseSpec)
1436 BaseSpec = const_cast<CXXBaseSpecifier *>(VirtualBaseSpec);
1437
1438 // Initialize the base.
1439 InitializedEntity BaseEntity =
Anders Carlsson711f34a2010-04-21 19:52:01 +00001440 InitializedEntity::InitializeBase(Context, BaseSpec, VirtualBaseSpec);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001441 InitializationKind Kind =
1442 InitializationKind::CreateDirect(BaseLoc, LParenLoc, RParenLoc);
1443
1444 InitializationSequence InitSeq(*this, BaseEntity, Kind, Args, NumArgs);
1445
1446 OwningExprResult BaseInit =
1447 InitSeq.Perform(*this, BaseEntity, Kind,
1448 MultiExprArg(*this, (void**)Args, NumArgs), 0);
1449 if (BaseInit.isInvalid())
1450 return true;
1451
1452 // C++0x [class.base.init]p7:
1453 // The initialization of each base and member constitutes a
1454 // full-expression.
1455 BaseInit = MaybeCreateCXXExprWithTemporaries(move(BaseInit));
1456 if (BaseInit.isInvalid())
1457 return true;
1458
1459 // If we are in a dependent context, template instantiation will
1460 // perform this type-checking again. Just save the arguments that we
1461 // received in a ParenListExpr.
1462 // FIXME: This isn't quite ideal, since our ASTs don't capture all
1463 // of the information that we have about the base
1464 // initializer. However, deconstructing the ASTs is a dicey process,
1465 // and this approach is far more likely to get the corner cases right.
1466 if (CurContext->isDependentContext()) {
1467 // Bump the reference count of all of the arguments.
1468 for (unsigned I = 0; I != NumArgs; ++I)
1469 Args[I]->Retain();
1470
1471 OwningExprResult Init
1472 = Owned(new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1473 RParenLoc));
1474 return new (Context) CXXBaseOrMemberInitializer(Context, BaseTInfo,
Anders Carlsson80638c52010-04-12 00:51:03 +00001475 BaseSpec->isVirtual(),
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001476 LParenLoc,
1477 Init.takeAs<Expr>(),
1478 RParenLoc);
1479 }
1480
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 BaseInit.takeAs<Expr>(),
1485 RParenLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001486}
1487
Anders Carlssone5ef7402010-04-23 03:10:23 +00001488/// ImplicitInitializerKind - How an implicit base or member initializer should
1489/// initialize its base or member.
1490enum ImplicitInitializerKind {
1491 IIK_Default,
1492 IIK_Copy,
1493 IIK_Move
1494};
1495
Anders Carlssondefefd22010-04-23 02:00:02 +00001496static bool
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001497BuildImplicitBaseInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlssone5ef7402010-04-23 03:10:23 +00001498 ImplicitInitializerKind ImplicitInitKind,
Anders Carlsson711f34a2010-04-21 19:52:01 +00001499 CXXBaseSpecifier *BaseSpec,
Anders Carlssondefefd22010-04-23 02:00:02 +00001500 bool IsInheritedVirtualBase,
1501 CXXBaseOrMemberInitializer *&CXXBaseInit) {
Anders Carlsson84688f22010-04-20 23:11:20 +00001502 InitializedEntity InitEntity
Anders Carlsson711f34a2010-04-21 19:52:01 +00001503 = InitializedEntity::InitializeBase(SemaRef.Context, BaseSpec,
1504 IsInheritedVirtualBase);
Anders Carlsson84688f22010-04-20 23:11:20 +00001505
Anders Carlssone5ef7402010-04-23 03:10:23 +00001506 Sema::OwningExprResult BaseInit(SemaRef);
1507
1508 switch (ImplicitInitKind) {
1509 case IIK_Default: {
1510 InitializationKind InitKind
1511 = InitializationKind::CreateDefault(Constructor->getLocation());
1512 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, 0, 0);
1513 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind,
1514 Sema::MultiExprArg(SemaRef, 0, 0));
1515 break;
1516 }
Anders Carlsson84688f22010-04-20 23:11:20 +00001517
Anders Carlssone5ef7402010-04-23 03:10:23 +00001518 case IIK_Copy: {
1519 ParmVarDecl *Param = Constructor->getParamDecl(0);
1520 QualType ParamType = Param->getType().getNonReferenceType();
1521
1522 Expr *CopyCtorArg =
1523 DeclRefExpr::Create(SemaRef.Context, 0, SourceRange(), Param,
Douglas Gregor62b71f42010-05-03 15:43:53 +00001524 Constructor->getLocation(), ParamType, 0);
Anders Carlssone5ef7402010-04-23 03:10:23 +00001525
Anders Carlssonc7957502010-04-24 22:02:54 +00001526 // Cast to the base class to avoid ambiguities.
Anders Carlsson59b7f152010-05-01 16:39:01 +00001527 QualType ArgTy =
1528 SemaRef.Context.getQualifiedType(BaseSpec->getType().getUnqualifiedType(),
1529 ParamType.getQualifiers());
1530 SemaRef.ImpCastExprToType(CopyCtorArg, ArgTy,
Anders Carlssonc7957502010-04-24 22:02:54 +00001531 CastExpr::CK_UncheckedDerivedToBase,
Anders Carlsson8f2abbc2010-04-24 22:54:32 +00001532 /*isLvalue=*/true,
1533 CXXBaseSpecifierArray(BaseSpec));
Anders Carlssonc7957502010-04-24 22:02:54 +00001534
Anders Carlssone5ef7402010-04-23 03:10:23 +00001535 InitializationKind InitKind
1536 = InitializationKind::CreateDirect(Constructor->getLocation(),
1537 SourceLocation(), SourceLocation());
1538 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind,
1539 &CopyCtorArg, 1);
1540 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind,
1541 Sema::MultiExprArg(SemaRef,
1542 (void**)&CopyCtorArg, 1));
1543 break;
1544 }
Anders Carlsson84688f22010-04-20 23:11:20 +00001545
Anders Carlssone5ef7402010-04-23 03:10:23 +00001546 case IIK_Move:
1547 assert(false && "Unhandled initializer kind!");
1548 }
1549
Anders Carlsson84688f22010-04-20 23:11:20 +00001550 BaseInit = SemaRef.MaybeCreateCXXExprWithTemporaries(move(BaseInit));
1551 if (BaseInit.isInvalid())
Anders Carlssondefefd22010-04-23 02:00:02 +00001552 return true;
Anders Carlsson84688f22010-04-20 23:11:20 +00001553
Anders Carlssondefefd22010-04-23 02:00:02 +00001554 CXXBaseInit =
Anders Carlsson84688f22010-04-20 23:11:20 +00001555 new (SemaRef.Context) CXXBaseOrMemberInitializer(SemaRef.Context,
1556 SemaRef.Context.getTrivialTypeSourceInfo(BaseSpec->getType(),
1557 SourceLocation()),
1558 BaseSpec->isVirtual(),
1559 SourceLocation(),
1560 BaseInit.takeAs<Expr>(),
1561 SourceLocation());
1562
Anders Carlssondefefd22010-04-23 02:00:02 +00001563 return false;
Anders Carlsson84688f22010-04-20 23:11:20 +00001564}
1565
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001566static bool
1567BuildImplicitMemberInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlssone5ef7402010-04-23 03:10:23 +00001568 ImplicitInitializerKind ImplicitInitKind,
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001569 FieldDecl *Field,
1570 CXXBaseOrMemberInitializer *&CXXMemberInit) {
Douglas Gregor72a43bb2010-05-20 22:12:02 +00001571 if (Field->isInvalidDecl())
1572 return true;
1573
Anders Carlssonf6513ed2010-04-23 16:04:08 +00001574 if (ImplicitInitKind == IIK_Copy) {
Douglas Gregorfb8cc252010-05-05 05:51:00 +00001575 SourceLocation Loc = Constructor->getLocation();
Anders Carlssonf6513ed2010-04-23 16:04:08 +00001576 ParmVarDecl *Param = Constructor->getParamDecl(0);
1577 QualType ParamType = Param->getType().getNonReferenceType();
1578
1579 Expr *MemberExprBase =
1580 DeclRefExpr::Create(SemaRef.Context, 0, SourceRange(), Param,
Douglas Gregorfb8cc252010-05-05 05:51:00 +00001581 Loc, ParamType, 0);
1582
1583 // Build a reference to this field within the parameter.
1584 CXXScopeSpec SS;
1585 LookupResult MemberLookup(SemaRef, Field->getDeclName(), Loc,
1586 Sema::LookupMemberName);
1587 MemberLookup.addDecl(Field, AS_public);
1588 MemberLookup.resolveKind();
1589 Sema::OwningExprResult CopyCtorArg
1590 = SemaRef.BuildMemberReferenceExpr(SemaRef.Owned(MemberExprBase),
1591 ParamType, Loc,
1592 /*IsArrow=*/false,
1593 SS,
1594 /*FirstQualifierInScope=*/0,
1595 MemberLookup,
1596 /*TemplateArgs=*/0);
1597 if (CopyCtorArg.isInvalid())
Anders Carlssonf6513ed2010-04-23 16:04:08 +00001598 return true;
1599
Douglas Gregorfb8cc252010-05-05 05:51:00 +00001600 // When the field we are copying is an array, create index variables for
1601 // each dimension of the array. We use these index variables to subscript
1602 // the source array, and other clients (e.g., CodeGen) will perform the
1603 // necessary iteration with these index variables.
1604 llvm::SmallVector<VarDecl *, 4> IndexVariables;
1605 QualType BaseType = Field->getType();
1606 QualType SizeType = SemaRef.Context.getSizeType();
1607 while (const ConstantArrayType *Array
1608 = SemaRef.Context.getAsConstantArrayType(BaseType)) {
1609 // Create the iteration variable for this array index.
1610 IdentifierInfo *IterationVarName = 0;
1611 {
1612 llvm::SmallString<8> Str;
1613 llvm::raw_svector_ostream OS(Str);
1614 OS << "__i" << IndexVariables.size();
1615 IterationVarName = &SemaRef.Context.Idents.get(OS.str());
1616 }
1617 VarDecl *IterationVar
1618 = VarDecl::Create(SemaRef.Context, SemaRef.CurContext, Loc,
1619 IterationVarName, SizeType,
1620 SemaRef.Context.getTrivialTypeSourceInfo(SizeType, Loc),
1621 VarDecl::None, VarDecl::None);
1622 IndexVariables.push_back(IterationVar);
1623
1624 // Create a reference to the iteration variable.
1625 Sema::OwningExprResult IterationVarRef
1626 = SemaRef.BuildDeclRefExpr(IterationVar, SizeType, Loc);
1627 assert(!IterationVarRef.isInvalid() &&
1628 "Reference to invented variable cannot fail!");
1629
1630 // Subscript the array with this iteration variable.
1631 CopyCtorArg = SemaRef.CreateBuiltinArraySubscriptExpr(move(CopyCtorArg),
1632 Loc,
1633 move(IterationVarRef),
1634 Loc);
1635 if (CopyCtorArg.isInvalid())
1636 return true;
1637
1638 BaseType = Array->getElementType();
1639 }
1640
1641 // Construct the entity that we will be initializing. For an array, this
1642 // will be first element in the array, which may require several levels
1643 // of array-subscript entities.
1644 llvm::SmallVector<InitializedEntity, 4> Entities;
1645 Entities.reserve(1 + IndexVariables.size());
1646 Entities.push_back(InitializedEntity::InitializeMember(Field));
1647 for (unsigned I = 0, N = IndexVariables.size(); I != N; ++I)
1648 Entities.push_back(InitializedEntity::InitializeElement(SemaRef.Context,
1649 0,
1650 Entities.back()));
1651
1652 // Direct-initialize to use the copy constructor.
1653 InitializationKind InitKind =
1654 InitializationKind::CreateDirect(Loc, SourceLocation(), SourceLocation());
1655
1656 Expr *CopyCtorArgE = CopyCtorArg.takeAs<Expr>();
1657 InitializationSequence InitSeq(SemaRef, Entities.back(), InitKind,
1658 &CopyCtorArgE, 1);
1659
1660 Sema::OwningExprResult MemberInit
1661 = InitSeq.Perform(SemaRef, Entities.back(), InitKind,
1662 Sema::MultiExprArg(SemaRef, (void**)&CopyCtorArgE, 1));
1663 MemberInit = SemaRef.MaybeCreateCXXExprWithTemporaries(move(MemberInit));
1664 if (MemberInit.isInvalid())
1665 return true;
1666
1667 CXXMemberInit
1668 = CXXBaseOrMemberInitializer::Create(SemaRef.Context, Field, Loc, Loc,
1669 MemberInit.takeAs<Expr>(), Loc,
1670 IndexVariables.data(),
1671 IndexVariables.size());
Anders Carlssone5ef7402010-04-23 03:10:23 +00001672 return false;
1673 }
1674
Anders Carlssonf6513ed2010-04-23 16:04:08 +00001675 assert(ImplicitInitKind == IIK_Default && "Unhandled implicit init kind!");
1676
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001677 QualType FieldBaseElementType =
1678 SemaRef.Context.getBaseElementType(Field->getType());
1679
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001680 if (FieldBaseElementType->isRecordType()) {
1681 InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field);
Anders Carlssonf6513ed2010-04-23 16:04:08 +00001682 InitializationKind InitKind =
1683 InitializationKind::CreateDefault(Constructor->getLocation());
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001684
1685 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, 0, 0);
1686 Sema::OwningExprResult MemberInit =
1687 InitSeq.Perform(SemaRef, InitEntity, InitKind,
1688 Sema::MultiExprArg(SemaRef, 0, 0));
1689 MemberInit = SemaRef.MaybeCreateCXXExprWithTemporaries(move(MemberInit));
1690 if (MemberInit.isInvalid())
1691 return true;
1692
1693 CXXMemberInit =
1694 new (SemaRef.Context) CXXBaseOrMemberInitializer(SemaRef.Context,
1695 Field, SourceLocation(),
1696 SourceLocation(),
1697 MemberInit.takeAs<Expr>(),
1698 SourceLocation());
1699 return false;
1700 }
Anders Carlsson114a2972010-04-23 03:07:47 +00001701
1702 if (FieldBaseElementType->isReferenceType()) {
1703 SemaRef.Diag(Constructor->getLocation(),
1704 diag::err_uninitialized_member_in_ctor)
1705 << (int)Constructor->isImplicit()
1706 << SemaRef.Context.getTagDeclType(Constructor->getParent())
1707 << 0 << Field->getDeclName();
1708 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
1709 return true;
1710 }
1711
1712 if (FieldBaseElementType.isConstQualified()) {
1713 SemaRef.Diag(Constructor->getLocation(),
1714 diag::err_uninitialized_member_in_ctor)
1715 << (int)Constructor->isImplicit()
1716 << SemaRef.Context.getTagDeclType(Constructor->getParent())
1717 << 1 << Field->getDeclName();
1718 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
1719 return true;
1720 }
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001721
1722 // Nothing to initialize.
1723 CXXMemberInit = 0;
1724 return false;
1725}
John McCallf1860e52010-05-20 23:23:51 +00001726
1727namespace {
1728struct BaseAndFieldInfo {
1729 Sema &S;
1730 CXXConstructorDecl *Ctor;
1731 bool AnyErrorsInInits;
1732 ImplicitInitializerKind IIK;
1733 llvm::DenseMap<const void *, CXXBaseOrMemberInitializer*> AllBaseFields;
1734 llvm::SmallVector<CXXBaseOrMemberInitializer*, 8> AllToInit;
1735
1736 BaseAndFieldInfo(Sema &S, CXXConstructorDecl *Ctor, bool ErrorsInInits)
1737 : S(S), Ctor(Ctor), AnyErrorsInInits(ErrorsInInits) {
1738 // FIXME: Handle implicit move constructors.
1739 if (Ctor->isImplicit() && Ctor->isCopyConstructor())
1740 IIK = IIK_Copy;
1741 else
1742 IIK = IIK_Default;
1743 }
1744};
1745}
1746
1747static bool CollectFieldInitializer(BaseAndFieldInfo &Info,
1748 FieldDecl *Top, FieldDecl *Field) {
1749
1750 // Overwhelmingly common case: we have a direct initializer for this field.
1751 if (CXXBaseOrMemberInitializer *Init = Info.AllBaseFields.lookup(Field)) {
1752 Info.AllToInit.push_back(Init);
1753
1754 if (Field != Top) {
1755 Init->setMember(Top);
1756 Init->setAnonUnionMember(Field);
1757 }
1758 return false;
1759 }
1760
1761 if (Info.IIK == IIK_Default && Field->isAnonymousStructOrUnion()) {
1762 const RecordType *FieldClassType = Field->getType()->getAs<RecordType>();
1763 assert(FieldClassType && "anonymous struct/union without record type");
1764
1765 // Walk through the members, tying in any initializers for fields
1766 // we find. The earlier semantic checks should prevent redundant
1767 // initialization of union members, given the requirement that
1768 // union members never have non-trivial default constructors.
1769
1770 // TODO: in C++0x, it might be legal to have union members with
1771 // non-trivial default constructors in unions. Revise this
1772 // implementation then with the appropriate semantics.
1773 CXXRecordDecl *FieldClassDecl
1774 = cast<CXXRecordDecl>(FieldClassType->getDecl());
1775 for (RecordDecl::field_iterator FA = FieldClassDecl->field_begin(),
1776 EA = FieldClassDecl->field_end(); FA != EA; FA++)
1777 if (CollectFieldInitializer(Info, Top, *FA))
1778 return true;
1779 }
1780
1781 // Don't try to build an implicit initializer if there were semantic
1782 // errors in any of the initializers (and therefore we might be
1783 // missing some that the user actually wrote).
1784 if (Info.AnyErrorsInInits)
1785 return false;
1786
1787 CXXBaseOrMemberInitializer *Init = 0;
1788 if (BuildImplicitMemberInitializer(Info.S, Info.Ctor, Info.IIK, Field, Init))
1789 return true;
1790
1791 // If the member doesn't need to be initialized, Init will still be null.
1792 if (!Init) return false;
1793
1794 Info.AllToInit.push_back(Init);
1795 if (Top != Field) {
1796 Init->setMember(Top);
1797 Init->setAnonUnionMember(Field);
1798 }
1799 return false;
1800}
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001801
Eli Friedman80c30da2009-11-09 19:20:36 +00001802bool
Anders Carlsson0ebb6d32009-10-29 15:46:07 +00001803Sema::SetBaseOrMemberInitializers(CXXConstructorDecl *Constructor,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001804 CXXBaseOrMemberInitializer **Initializers,
1805 unsigned NumInitializers,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001806 bool AnyErrors) {
John McCalld6ca8da2010-04-10 07:37:23 +00001807 if (Constructor->getDeclContext()->isDependentContext()) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00001808 // Just store the initializers as written, they will be checked during
1809 // instantiation.
1810 if (NumInitializers > 0) {
1811 Constructor->setNumBaseOrMemberInitializers(NumInitializers);
1812 CXXBaseOrMemberInitializer **baseOrMemberInitializers =
1813 new (Context) CXXBaseOrMemberInitializer*[NumInitializers];
1814 memcpy(baseOrMemberInitializers, Initializers,
1815 NumInitializers * sizeof(CXXBaseOrMemberInitializer*));
1816 Constructor->setBaseOrMemberInitializers(baseOrMemberInitializers);
1817 }
1818
1819 return false;
1820 }
1821
John McCallf1860e52010-05-20 23:23:51 +00001822 BaseAndFieldInfo Info(*this, Constructor, AnyErrors);
Anders Carlssone5ef7402010-04-23 03:10:23 +00001823
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001824 // We need to build the initializer AST according to order of construction
1825 // and not what user specified in the Initializers list.
Anders Carlssonea356fb2010-04-02 05:42:15 +00001826 CXXRecordDecl *ClassDecl = Constructor->getParent()->getDefinition();
Douglas Gregord6068482010-03-26 22:43:07 +00001827 if (!ClassDecl)
1828 return true;
1829
Eli Friedman80c30da2009-11-09 19:20:36 +00001830 bool HadError = false;
Mike Stump1eb44332009-09-09 15:08:12 +00001831
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001832 for (unsigned i = 0; i < NumInitializers; i++) {
1833 CXXBaseOrMemberInitializer *Member = Initializers[i];
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00001834
1835 if (Member->isBaseInitializer())
John McCallf1860e52010-05-20 23:23:51 +00001836 Info.AllBaseFields[Member->getBaseClass()->getAs<RecordType>()] = Member;
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00001837 else
John McCallf1860e52010-05-20 23:23:51 +00001838 Info.AllBaseFields[Member->getMember()] = Member;
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00001839 }
1840
Anders Carlsson711f34a2010-04-21 19:52:01 +00001841 // Keep track of the direct virtual bases.
1842 llvm::SmallPtrSet<CXXBaseSpecifier *, 16> DirectVBases;
1843 for (CXXRecordDecl::base_class_iterator I = ClassDecl->bases_begin(),
1844 E = ClassDecl->bases_end(); I != E; ++I) {
1845 if (I->isVirtual())
1846 DirectVBases.insert(I);
1847 }
1848
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00001849 // Push virtual bases before others.
1850 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
1851 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
1852
1853 if (CXXBaseOrMemberInitializer *Value
John McCallf1860e52010-05-20 23:23:51 +00001854 = Info.AllBaseFields.lookup(VBase->getType()->getAs<RecordType>())) {
1855 Info.AllToInit.push_back(Value);
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00001856 } else if (!AnyErrors) {
Anders Carlsson711f34a2010-04-21 19:52:01 +00001857 bool IsInheritedVirtualBase = !DirectVBases.count(VBase);
Anders Carlssondefefd22010-04-23 02:00:02 +00001858 CXXBaseOrMemberInitializer *CXXBaseInit;
John McCallf1860e52010-05-20 23:23:51 +00001859 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Anders Carlssone5ef7402010-04-23 03:10:23 +00001860 VBase, IsInheritedVirtualBase,
1861 CXXBaseInit)) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00001862 HadError = true;
1863 continue;
1864 }
Anders Carlsson84688f22010-04-20 23:11:20 +00001865
John McCallf1860e52010-05-20 23:23:51 +00001866 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001867 }
1868 }
Mike Stump1eb44332009-09-09 15:08:12 +00001869
John McCallf1860e52010-05-20 23:23:51 +00001870 // Non-virtual bases.
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00001871 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
1872 E = ClassDecl->bases_end(); Base != E; ++Base) {
1873 // Virtuals are in the virtual base list and already constructed.
1874 if (Base->isVirtual())
1875 continue;
Mike Stump1eb44332009-09-09 15:08:12 +00001876
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00001877 if (CXXBaseOrMemberInitializer *Value
John McCallf1860e52010-05-20 23:23:51 +00001878 = Info.AllBaseFields.lookup(Base->getType()->getAs<RecordType>())) {
1879 Info.AllToInit.push_back(Value);
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00001880 } else if (!AnyErrors) {
Anders Carlssondefefd22010-04-23 02:00:02 +00001881 CXXBaseOrMemberInitializer *CXXBaseInit;
John McCallf1860e52010-05-20 23:23:51 +00001882 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Anders Carlssone5ef7402010-04-23 03:10:23 +00001883 Base, /*IsInheritedVirtualBase=*/false,
Anders Carlssondefefd22010-04-23 02:00:02 +00001884 CXXBaseInit)) {
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00001885 HadError = true;
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001886 continue;
Anders Carlssonbcc12fd2010-04-02 06:26:44 +00001887 }
Fariborz Jahanian9d436202009-09-03 21:32:41 +00001888
John McCallf1860e52010-05-20 23:23:51 +00001889 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001890 }
1891 }
Mike Stump1eb44332009-09-09 15:08:12 +00001892
John McCallf1860e52010-05-20 23:23:51 +00001893 // Fields.
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001894 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00001895 E = ClassDecl->field_end(); Field != E; ++Field) {
1896 if ((*Field)->getType()->isIncompleteArrayType()) {
1897 assert(ClassDecl->hasFlexibleArrayMember() &&
1898 "Incomplete array type is not valid");
1899 continue;
1900 }
John McCallf1860e52010-05-20 23:23:51 +00001901 if (CollectFieldInitializer(Info, *Field, *Field))
Anders Carlssonddfb75f2010-04-23 02:15:47 +00001902 HadError = true;
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00001903 }
Mike Stump1eb44332009-09-09 15:08:12 +00001904
John McCallf1860e52010-05-20 23:23:51 +00001905 NumInitializers = Info.AllToInit.size();
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001906 if (NumInitializers > 0) {
1907 Constructor->setNumBaseOrMemberInitializers(NumInitializers);
1908 CXXBaseOrMemberInitializer **baseOrMemberInitializers =
1909 new (Context) CXXBaseOrMemberInitializer*[NumInitializers];
John McCallf1860e52010-05-20 23:23:51 +00001910 memcpy(baseOrMemberInitializers, Info.AllToInit.data(),
John McCallef027fe2010-03-16 21:39:52 +00001911 NumInitializers * sizeof(CXXBaseOrMemberInitializer*));
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001912 Constructor->setBaseOrMemberInitializers(baseOrMemberInitializers);
Rafael Espindola961b1672010-03-13 18:12:56 +00001913
John McCallef027fe2010-03-16 21:39:52 +00001914 // Constructors implicitly reference the base and member
1915 // destructors.
1916 MarkBaseAndMemberDestructorsReferenced(Constructor->getLocation(),
1917 Constructor->getParent());
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001918 }
Eli Friedman80c30da2009-11-09 19:20:36 +00001919
1920 return HadError;
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001921}
1922
Eli Friedman6347f422009-07-21 19:28:10 +00001923static void *GetKeyForTopLevelField(FieldDecl *Field) {
1924 // For anonymous unions, use the class declaration as the key.
Ted Kremenek6217b802009-07-29 21:53:49 +00001925 if (const RecordType *RT = Field->getType()->getAs<RecordType>()) {
Eli Friedman6347f422009-07-21 19:28:10 +00001926 if (RT->getDecl()->isAnonymousStructOrUnion())
1927 return static_cast<void *>(RT->getDecl());
1928 }
1929 return static_cast<void *>(Field);
1930}
1931
Anders Carlssonea356fb2010-04-02 05:42:15 +00001932static void *GetKeyForBase(ASTContext &Context, QualType BaseType) {
1933 return Context.getCanonicalType(BaseType).getTypePtr();
Anders Carlssoncdc83c72009-09-01 06:22:14 +00001934}
1935
Anders Carlssonea356fb2010-04-02 05:42:15 +00001936static void *GetKeyForMember(ASTContext &Context,
1937 CXXBaseOrMemberInitializer *Member,
Anders Carlssoncdc83c72009-09-01 06:22:14 +00001938 bool MemberMaybeAnon = false) {
Anders Carlsson8f1a2402010-03-30 15:39:27 +00001939 if (!Member->isMemberInitializer())
Anders Carlssonea356fb2010-04-02 05:42:15 +00001940 return GetKeyForBase(Context, QualType(Member->getBaseClass(), 0));
Anders Carlsson8f1a2402010-03-30 15:39:27 +00001941
Eli Friedman6347f422009-07-21 19:28:10 +00001942 // For fields injected into the class via declaration of an anonymous union,
1943 // use its anonymous union class declaration as the unique key.
Anders Carlsson8f1a2402010-03-30 15:39:27 +00001944 FieldDecl *Field = Member->getMember();
Mike Stump1eb44332009-09-09 15:08:12 +00001945
Anders Carlsson8f1a2402010-03-30 15:39:27 +00001946 // After SetBaseOrMemberInitializers call, Field is the anonymous union
1947 // data member of the class. Data member used in the initializer list is
1948 // in AnonUnionMember field.
1949 if (MemberMaybeAnon && Field->isAnonymousStructOrUnion())
1950 Field = Member->getAnonUnionMember();
Anders Carlssonee11b2d2010-03-30 16:19:37 +00001951
John McCall3c3ccdb2010-04-10 09:28:51 +00001952 // If the field is a member of an anonymous struct or union, our key
1953 // is the anonymous record decl that's a direct child of the class.
Anders Carlssonee11b2d2010-03-30 16:19:37 +00001954 RecordDecl *RD = Field->getParent();
John McCall3c3ccdb2010-04-10 09:28:51 +00001955 if (RD->isAnonymousStructOrUnion()) {
1956 while (true) {
1957 RecordDecl *Parent = cast<RecordDecl>(RD->getDeclContext());
1958 if (Parent->isAnonymousStructOrUnion())
1959 RD = Parent;
1960 else
1961 break;
1962 }
1963
Anders Carlssonee11b2d2010-03-30 16:19:37 +00001964 return static_cast<void *>(RD);
John McCall3c3ccdb2010-04-10 09:28:51 +00001965 }
Mike Stump1eb44332009-09-09 15:08:12 +00001966
Anders Carlsson8f1a2402010-03-30 15:39:27 +00001967 return static_cast<void *>(Field);
Eli Friedman6347f422009-07-21 19:28:10 +00001968}
1969
Anders Carlsson58cfbde2010-04-02 03:37:03 +00001970static void
1971DiagnoseBaseOrMemInitializerOrder(Sema &SemaRef,
Anders Carlsson071d6102010-04-02 03:38:04 +00001972 const CXXConstructorDecl *Constructor,
John McCalld6ca8da2010-04-10 07:37:23 +00001973 CXXBaseOrMemberInitializer **Inits,
1974 unsigned NumInits) {
1975 if (Constructor->getDeclContext()->isDependentContext())
Anders Carlsson8d4c5ea2009-08-27 05:57:30 +00001976 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001977
John McCalld6ca8da2010-04-10 07:37:23 +00001978 if (SemaRef.Diags.getDiagnosticLevel(diag::warn_initializer_out_of_order)
1979 == Diagnostic::Ignored)
Anders Carlsson5c36fb22009-08-27 05:45:01 +00001980 return;
Anders Carlsson58cfbde2010-04-02 03:37:03 +00001981
John McCalld6ca8da2010-04-10 07:37:23 +00001982 // Build the list of bases and members in the order that they'll
1983 // actually be initialized. The explicit initializers should be in
1984 // this same order but may be missing things.
1985 llvm::SmallVector<const void*, 32> IdealInitKeys;
Mike Stump1eb44332009-09-09 15:08:12 +00001986
Anders Carlsson071d6102010-04-02 03:38:04 +00001987 const CXXRecordDecl *ClassDecl = Constructor->getParent();
1988
John McCalld6ca8da2010-04-10 07:37:23 +00001989 // 1. Virtual bases.
Anders Carlsson071d6102010-04-02 03:38:04 +00001990 for (CXXRecordDecl::base_class_const_iterator VBase =
Anders Carlsson5c36fb22009-08-27 05:45:01 +00001991 ClassDecl->vbases_begin(),
1992 E = ClassDecl->vbases_end(); VBase != E; ++VBase)
John McCalld6ca8da2010-04-10 07:37:23 +00001993 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, VBase->getType()));
Mike Stump1eb44332009-09-09 15:08:12 +00001994
John McCalld6ca8da2010-04-10 07:37:23 +00001995 // 2. Non-virtual bases.
Anders Carlsson071d6102010-04-02 03:38:04 +00001996 for (CXXRecordDecl::base_class_const_iterator Base = ClassDecl->bases_begin(),
Anders Carlsson5c36fb22009-08-27 05:45:01 +00001997 E = ClassDecl->bases_end(); Base != E; ++Base) {
Anders Carlsson5c36fb22009-08-27 05:45:01 +00001998 if (Base->isVirtual())
1999 continue;
John McCalld6ca8da2010-04-10 07:37:23 +00002000 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, Base->getType()));
Anders Carlsson5c36fb22009-08-27 05:45:01 +00002001 }
Mike Stump1eb44332009-09-09 15:08:12 +00002002
John McCalld6ca8da2010-04-10 07:37:23 +00002003 // 3. Direct fields.
Anders Carlsson5c36fb22009-08-27 05:45:01 +00002004 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
2005 E = ClassDecl->field_end(); Field != E; ++Field)
John McCalld6ca8da2010-04-10 07:37:23 +00002006 IdealInitKeys.push_back(GetKeyForTopLevelField(*Field));
Mike Stump1eb44332009-09-09 15:08:12 +00002007
John McCalld6ca8da2010-04-10 07:37:23 +00002008 unsigned NumIdealInits = IdealInitKeys.size();
2009 unsigned IdealIndex = 0;
Eli Friedman6347f422009-07-21 19:28:10 +00002010
John McCalld6ca8da2010-04-10 07:37:23 +00002011 CXXBaseOrMemberInitializer *PrevInit = 0;
2012 for (unsigned InitIndex = 0; InitIndex != NumInits; ++InitIndex) {
2013 CXXBaseOrMemberInitializer *Init = Inits[InitIndex];
2014 void *InitKey = GetKeyForMember(SemaRef.Context, Init, true);
2015
2016 // Scan forward to try to find this initializer in the idealized
2017 // initializers list.
2018 for (; IdealIndex != NumIdealInits; ++IdealIndex)
2019 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlsson5c36fb22009-08-27 05:45:01 +00002020 break;
John McCalld6ca8da2010-04-10 07:37:23 +00002021
2022 // If we didn't find this initializer, it must be because we
2023 // scanned past it on a previous iteration. That can only
2024 // happen if we're out of order; emit a warning.
Douglas Gregorfe2d3792010-05-20 23:49:34 +00002025 if (IdealIndex == NumIdealInits && PrevInit) {
John McCalld6ca8da2010-04-10 07:37:23 +00002026 Sema::SemaDiagnosticBuilder D =
2027 SemaRef.Diag(PrevInit->getSourceLocation(),
2028 diag::warn_initializer_out_of_order);
2029
2030 if (PrevInit->isMemberInitializer())
2031 D << 0 << PrevInit->getMember()->getDeclName();
2032 else
2033 D << 1 << PrevInit->getBaseClassInfo()->getType();
2034
2035 if (Init->isMemberInitializer())
2036 D << 0 << Init->getMember()->getDeclName();
2037 else
2038 D << 1 << Init->getBaseClassInfo()->getType();
2039
2040 // Move back to the initializer's location in the ideal list.
2041 for (IdealIndex = 0; IdealIndex != NumIdealInits; ++IdealIndex)
2042 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlsson5c36fb22009-08-27 05:45:01 +00002043 break;
John McCalld6ca8da2010-04-10 07:37:23 +00002044
2045 assert(IdealIndex != NumIdealInits &&
2046 "initializer not found in initializer list");
Fariborz Jahanianeb96e122009-07-09 19:59:47 +00002047 }
John McCalld6ca8da2010-04-10 07:37:23 +00002048
2049 PrevInit = Init;
Fariborz Jahanianeb96e122009-07-09 19:59:47 +00002050 }
Anders Carlssona7b35212009-03-25 02:58:17 +00002051}
2052
John McCall3c3ccdb2010-04-10 09:28:51 +00002053namespace {
2054bool CheckRedundantInit(Sema &S,
2055 CXXBaseOrMemberInitializer *Init,
2056 CXXBaseOrMemberInitializer *&PrevInit) {
2057 if (!PrevInit) {
2058 PrevInit = Init;
2059 return false;
2060 }
2061
2062 if (FieldDecl *Field = Init->getMember())
2063 S.Diag(Init->getSourceLocation(),
2064 diag::err_multiple_mem_initialization)
2065 << Field->getDeclName()
2066 << Init->getSourceRange();
2067 else {
2068 Type *BaseClass = Init->getBaseClass();
2069 assert(BaseClass && "neither field nor base");
2070 S.Diag(Init->getSourceLocation(),
2071 diag::err_multiple_base_initialization)
2072 << QualType(BaseClass, 0)
2073 << Init->getSourceRange();
2074 }
2075 S.Diag(PrevInit->getSourceLocation(), diag::note_previous_initializer)
2076 << 0 << PrevInit->getSourceRange();
2077
2078 return true;
2079}
2080
2081typedef std::pair<NamedDecl *, CXXBaseOrMemberInitializer *> UnionEntry;
2082typedef llvm::DenseMap<RecordDecl*, UnionEntry> RedundantUnionMap;
2083
2084bool CheckRedundantUnionInit(Sema &S,
2085 CXXBaseOrMemberInitializer *Init,
2086 RedundantUnionMap &Unions) {
2087 FieldDecl *Field = Init->getMember();
2088 RecordDecl *Parent = Field->getParent();
2089 if (!Parent->isAnonymousStructOrUnion())
2090 return false;
2091
2092 NamedDecl *Child = Field;
2093 do {
2094 if (Parent->isUnion()) {
2095 UnionEntry &En = Unions[Parent];
2096 if (En.first && En.first != Child) {
2097 S.Diag(Init->getSourceLocation(),
2098 diag::err_multiple_mem_union_initialization)
2099 << Field->getDeclName()
2100 << Init->getSourceRange();
2101 S.Diag(En.second->getSourceLocation(), diag::note_previous_initializer)
2102 << 0 << En.second->getSourceRange();
2103 return true;
2104 } else if (!En.first) {
2105 En.first = Child;
2106 En.second = Init;
2107 }
2108 }
2109
2110 Child = Parent;
2111 Parent = cast<RecordDecl>(Parent->getDeclContext());
2112 } while (Parent->isAnonymousStructOrUnion());
2113
2114 return false;
2115}
2116}
2117
Anders Carlsson58cfbde2010-04-02 03:37:03 +00002118/// ActOnMemInitializers - Handle the member initializers for a constructor.
2119void Sema::ActOnMemInitializers(DeclPtrTy ConstructorDecl,
2120 SourceLocation ColonLoc,
2121 MemInitTy **meminits, unsigned NumMemInits,
2122 bool AnyErrors) {
2123 if (!ConstructorDecl)
2124 return;
2125
2126 AdjustDeclIfTemplate(ConstructorDecl);
2127
2128 CXXConstructorDecl *Constructor
2129 = dyn_cast<CXXConstructorDecl>(ConstructorDecl.getAs<Decl>());
2130
2131 if (!Constructor) {
2132 Diag(ColonLoc, diag::err_only_constructors_take_base_inits);
2133 return;
2134 }
2135
2136 CXXBaseOrMemberInitializer **MemInits =
2137 reinterpret_cast<CXXBaseOrMemberInitializer **>(meminits);
John McCall3c3ccdb2010-04-10 09:28:51 +00002138
2139 // Mapping for the duplicate initializers check.
2140 // For member initializers, this is keyed with a FieldDecl*.
2141 // For base initializers, this is keyed with a Type*.
Anders Carlssonea356fb2010-04-02 05:42:15 +00002142 llvm::DenseMap<void*, CXXBaseOrMemberInitializer *> Members;
John McCall3c3ccdb2010-04-10 09:28:51 +00002143
2144 // Mapping for the inconsistent anonymous-union initializers check.
2145 RedundantUnionMap MemberUnions;
2146
Anders Carlssonea356fb2010-04-02 05:42:15 +00002147 bool HadError = false;
2148 for (unsigned i = 0; i < NumMemInits; i++) {
John McCall3c3ccdb2010-04-10 09:28:51 +00002149 CXXBaseOrMemberInitializer *Init = MemInits[i];
Anders Carlsson58cfbde2010-04-02 03:37:03 +00002150
Abramo Bagnaraa0af3b42010-05-26 18:09:23 +00002151 // Set the source order index.
2152 Init->setSourceOrder(i);
2153
John McCall3c3ccdb2010-04-10 09:28:51 +00002154 if (Init->isMemberInitializer()) {
2155 FieldDecl *Field = Init->getMember();
2156 if (CheckRedundantInit(*this, Init, Members[Field]) ||
2157 CheckRedundantUnionInit(*this, Init, MemberUnions))
2158 HadError = true;
2159 } else {
2160 void *Key = GetKeyForBase(Context, QualType(Init->getBaseClass(), 0));
2161 if (CheckRedundantInit(*this, Init, Members[Key]))
2162 HadError = true;
Anders Carlsson58cfbde2010-04-02 03:37:03 +00002163 }
Anders Carlsson58cfbde2010-04-02 03:37:03 +00002164 }
2165
Anders Carlssonea356fb2010-04-02 05:42:15 +00002166 if (HadError)
2167 return;
2168
Anders Carlsson58cfbde2010-04-02 03:37:03 +00002169 DiagnoseBaseOrMemInitializerOrder(*this, Constructor, MemInits, NumMemInits);
Anders Carlssonec3332b2010-04-02 03:43:34 +00002170
2171 SetBaseOrMemberInitializers(Constructor, MemInits, NumMemInits, AnyErrors);
Anders Carlsson58cfbde2010-04-02 03:37:03 +00002172}
2173
Fariborz Jahanian34374e62009-09-03 23:18:17 +00002174void
John McCallef027fe2010-03-16 21:39:52 +00002175Sema::MarkBaseAndMemberDestructorsReferenced(SourceLocation Location,
2176 CXXRecordDecl *ClassDecl) {
2177 // Ignore dependent contexts.
2178 if (ClassDecl->isDependentContext())
Anders Carlsson9f853df2009-11-17 04:44:12 +00002179 return;
John McCall58e6f342010-03-16 05:22:47 +00002180
2181 // FIXME: all the access-control diagnostics are positioned on the
2182 // field/base declaration. That's probably good; that said, the
2183 // user might reasonably want to know why the destructor is being
2184 // emitted, and we currently don't say.
Anders Carlsson9f853df2009-11-17 04:44:12 +00002185
Anders Carlsson9f853df2009-11-17 04:44:12 +00002186 // Non-static data members.
2187 for (CXXRecordDecl::field_iterator I = ClassDecl->field_begin(),
2188 E = ClassDecl->field_end(); I != E; ++I) {
2189 FieldDecl *Field = *I;
Fariborz Jahanian9614dc02010-05-17 18:15:18 +00002190 if (Field->isInvalidDecl())
2191 continue;
Anders Carlsson9f853df2009-11-17 04:44:12 +00002192 QualType FieldType = Context.getBaseElementType(Field->getType());
2193
2194 const RecordType* RT = FieldType->getAs<RecordType>();
2195 if (!RT)
2196 continue;
2197
2198 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl());
2199 if (FieldClassDecl->hasTrivialDestructor())
2200 continue;
2201
John McCall58e6f342010-03-16 05:22:47 +00002202 CXXDestructorDecl *Dtor = FieldClassDecl->getDestructor(Context);
2203 CheckDestructorAccess(Field->getLocation(), Dtor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00002204 PDiag(diag::err_access_dtor_field)
John McCall58e6f342010-03-16 05:22:47 +00002205 << Field->getDeclName()
2206 << FieldType);
2207
John McCallef027fe2010-03-16 21:39:52 +00002208 MarkDeclarationReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Anders Carlsson9f853df2009-11-17 04:44:12 +00002209 }
2210
John McCall58e6f342010-03-16 05:22:47 +00002211 llvm::SmallPtrSet<const RecordType *, 8> DirectVirtualBases;
2212
Anders Carlsson9f853df2009-11-17 04:44:12 +00002213 // Bases.
2214 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
2215 E = ClassDecl->bases_end(); Base != E; ++Base) {
John McCall58e6f342010-03-16 05:22:47 +00002216 // Bases are always records in a well-formed non-dependent class.
2217 const RecordType *RT = Base->getType()->getAs<RecordType>();
2218
2219 // Remember direct virtual bases.
Anders Carlsson9f853df2009-11-17 04:44:12 +00002220 if (Base->isVirtual())
John McCall58e6f342010-03-16 05:22:47 +00002221 DirectVirtualBases.insert(RT);
Anders Carlsson9f853df2009-11-17 04:44:12 +00002222
2223 // Ignore trivial destructors.
John McCall58e6f342010-03-16 05:22:47 +00002224 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Anders Carlsson9f853df2009-11-17 04:44:12 +00002225 if (BaseClassDecl->hasTrivialDestructor())
2226 continue;
John McCall58e6f342010-03-16 05:22:47 +00002227
2228 CXXDestructorDecl *Dtor = BaseClassDecl->getDestructor(Context);
2229
2230 // FIXME: caret should be on the start of the class name
2231 CheckDestructorAccess(Base->getSourceRange().getBegin(), Dtor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00002232 PDiag(diag::err_access_dtor_base)
John McCall58e6f342010-03-16 05:22:47 +00002233 << Base->getType()
2234 << Base->getSourceRange());
Anders Carlsson9f853df2009-11-17 04:44:12 +00002235
John McCallef027fe2010-03-16 21:39:52 +00002236 MarkDeclarationReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Anders Carlsson9f853df2009-11-17 04:44:12 +00002237 }
2238
2239 // Virtual bases.
Fariborz Jahanian34374e62009-09-03 23:18:17 +00002240 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
2241 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
John McCall58e6f342010-03-16 05:22:47 +00002242
2243 // Bases are always records in a well-formed non-dependent class.
2244 const RecordType *RT = VBase->getType()->getAs<RecordType>();
2245
2246 // Ignore direct virtual bases.
2247 if (DirectVirtualBases.count(RT))
2248 continue;
2249
Anders Carlsson9f853df2009-11-17 04:44:12 +00002250 // Ignore trivial destructors.
John McCall58e6f342010-03-16 05:22:47 +00002251 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Fariborz Jahanian34374e62009-09-03 23:18:17 +00002252 if (BaseClassDecl->hasTrivialDestructor())
2253 continue;
John McCall58e6f342010-03-16 05:22:47 +00002254
2255 CXXDestructorDecl *Dtor = BaseClassDecl->getDestructor(Context);
2256 CheckDestructorAccess(ClassDecl->getLocation(), Dtor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00002257 PDiag(diag::err_access_dtor_vbase)
John McCall58e6f342010-03-16 05:22:47 +00002258 << VBase->getType());
2259
John McCallef027fe2010-03-16 21:39:52 +00002260 MarkDeclarationReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Fariborz Jahanian34374e62009-09-03 23:18:17 +00002261 }
2262}
2263
Fariborz Jahanian393612e2009-07-21 22:36:06 +00002264void Sema::ActOnDefaultCtorInitializers(DeclPtrTy CDtorDecl) {
Fariborz Jahanian560de452009-07-15 22:34:08 +00002265 if (!CDtorDecl)
Fariborz Jahaniand01c9152009-07-14 18:24:21 +00002266 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002267
Mike Stump1eb44332009-09-09 15:08:12 +00002268 if (CXXConstructorDecl *Constructor
Fariborz Jahanian560de452009-07-15 22:34:08 +00002269 = dyn_cast<CXXConstructorDecl>(CDtorDecl.getAs<Decl>()))
Anders Carlssonec3332b2010-04-02 03:43:34 +00002270 SetBaseOrMemberInitializers(Constructor, 0, 0, /*AnyErrors=*/false);
Fariborz Jahaniand01c9152009-07-14 18:24:21 +00002271}
2272
Mike Stump1eb44332009-09-09 15:08:12 +00002273bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
Anders Carlssone65a3c82009-03-24 17:23:42 +00002274 unsigned DiagID, AbstractDiagSelID SelID,
2275 const CXXRecordDecl *CurrentRD) {
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00002276 if (SelID == -1)
2277 return RequireNonAbstractType(Loc, T,
2278 PDiag(DiagID), CurrentRD);
2279 else
2280 return RequireNonAbstractType(Loc, T,
2281 PDiag(DiagID) << SelID, CurrentRD);
Mike Stump1eb44332009-09-09 15:08:12 +00002282}
2283
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00002284bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
2285 const PartialDiagnostic &PD,
2286 const CXXRecordDecl *CurrentRD) {
Anders Carlsson4681ebd2009-03-22 20:18:17 +00002287 if (!getLangOptions().CPlusPlus)
2288 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00002289
Anders Carlsson11f21a02009-03-23 19:10:31 +00002290 if (const ArrayType *AT = Context.getAsArrayType(T))
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00002291 return RequireNonAbstractType(Loc, AT->getElementType(), PD,
Anders Carlssone65a3c82009-03-24 17:23:42 +00002292 CurrentRD);
Mike Stump1eb44332009-09-09 15:08:12 +00002293
Ted Kremenek6217b802009-07-29 21:53:49 +00002294 if (const PointerType *PT = T->getAs<PointerType>()) {
Anders Carlsson5eff73c2009-03-24 01:46:45 +00002295 // Find the innermost pointer type.
Ted Kremenek6217b802009-07-29 21:53:49 +00002296 while (const PointerType *T = PT->getPointeeType()->getAs<PointerType>())
Anders Carlsson5eff73c2009-03-24 01:46:45 +00002297 PT = T;
Mike Stump1eb44332009-09-09 15:08:12 +00002298
Anders Carlsson5eff73c2009-03-24 01:46:45 +00002299 if (const ArrayType *AT = Context.getAsArrayType(PT->getPointeeType()))
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00002300 return RequireNonAbstractType(Loc, AT->getElementType(), PD, CurrentRD);
Anders Carlsson5eff73c2009-03-24 01:46:45 +00002301 }
Mike Stump1eb44332009-09-09 15:08:12 +00002302
Ted Kremenek6217b802009-07-29 21:53:49 +00002303 const RecordType *RT = T->getAs<RecordType>();
Anders Carlsson4681ebd2009-03-22 20:18:17 +00002304 if (!RT)
2305 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00002306
John McCall86ff3082010-02-04 22:26:26 +00002307 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
Anders Carlsson4681ebd2009-03-22 20:18:17 +00002308
Anders Carlssone65a3c82009-03-24 17:23:42 +00002309 if (CurrentRD && CurrentRD != RD)
2310 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00002311
John McCall86ff3082010-02-04 22:26:26 +00002312 // FIXME: is this reasonable? It matches current behavior, but....
Douglas Gregor952b0172010-02-11 01:04:33 +00002313 if (!RD->getDefinition())
John McCall86ff3082010-02-04 22:26:26 +00002314 return false;
2315
Anders Carlsson4681ebd2009-03-22 20:18:17 +00002316 if (!RD->isAbstract())
2317 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00002318
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00002319 Diag(Loc, PD) << RD->getDeclName();
Mike Stump1eb44332009-09-09 15:08:12 +00002320
Anders Carlsson4681ebd2009-03-22 20:18:17 +00002321 // Check if we've already emitted the list of pure virtual functions for this
2322 // class.
2323 if (PureVirtualClassDiagSet && PureVirtualClassDiagSet->count(RD))
2324 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00002325
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00002326 CXXFinalOverriderMap FinalOverriders;
2327 RD->getFinalOverriders(FinalOverriders);
Mike Stump1eb44332009-09-09 15:08:12 +00002328
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00002329 for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(),
2330 MEnd = FinalOverriders.end();
2331 M != MEnd;
2332 ++M) {
2333 for (OverridingMethods::iterator SO = M->second.begin(),
2334 SOEnd = M->second.end();
2335 SO != SOEnd; ++SO) {
2336 // C++ [class.abstract]p4:
2337 // A class is abstract if it contains or inherits at least one
2338 // pure virtual function for which the final overrider is pure
2339 // virtual.
Mike Stump1eb44332009-09-09 15:08:12 +00002340
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00002341 //
2342 if (SO->second.size() != 1)
2343 continue;
2344
2345 if (!SO->second.front().Method->isPure())
2346 continue;
2347
2348 Diag(SO->second.front().Method->getLocation(),
2349 diag::note_pure_virtual_function)
2350 << SO->second.front().Method->getDeclName();
2351 }
Anders Carlsson4681ebd2009-03-22 20:18:17 +00002352 }
2353
2354 if (!PureVirtualClassDiagSet)
2355 PureVirtualClassDiagSet.reset(new RecordDeclSetTy);
2356 PureVirtualClassDiagSet->insert(RD);
Mike Stump1eb44332009-09-09 15:08:12 +00002357
Anders Carlsson4681ebd2009-03-22 20:18:17 +00002358 return true;
2359}
2360
Anders Carlsson8211eff2009-03-24 01:19:16 +00002361namespace {
Benjamin Kramer85b45212009-11-28 19:45:26 +00002362 class AbstractClassUsageDiagnoser
Anders Carlsson8211eff2009-03-24 01:19:16 +00002363 : public DeclVisitor<AbstractClassUsageDiagnoser, bool> {
2364 Sema &SemaRef;
2365 CXXRecordDecl *AbstractClass;
Mike Stump1eb44332009-09-09 15:08:12 +00002366
Anders Carlssone65a3c82009-03-24 17:23:42 +00002367 bool VisitDeclContext(const DeclContext *DC) {
Anders Carlsson8211eff2009-03-24 01:19:16 +00002368 bool Invalid = false;
2369
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002370 for (CXXRecordDecl::decl_iterator I = DC->decls_begin(),
2371 E = DC->decls_end(); I != E; ++I)
Anders Carlsson8211eff2009-03-24 01:19:16 +00002372 Invalid |= Visit(*I);
Anders Carlssone65a3c82009-03-24 17:23:42 +00002373
Anders Carlsson8211eff2009-03-24 01:19:16 +00002374 return Invalid;
2375 }
Mike Stump1eb44332009-09-09 15:08:12 +00002376
Anders Carlssone65a3c82009-03-24 17:23:42 +00002377 public:
2378 AbstractClassUsageDiagnoser(Sema& SemaRef, CXXRecordDecl *ac)
2379 : SemaRef(SemaRef), AbstractClass(ac) {
2380 Visit(SemaRef.Context.getTranslationUnitDecl());
2381 }
Anders Carlsson8211eff2009-03-24 01:19:16 +00002382
Anders Carlssone65a3c82009-03-24 17:23:42 +00002383 bool VisitFunctionDecl(const FunctionDecl *FD) {
2384 if (FD->isThisDeclarationADefinition()) {
2385 // No need to do the check if we're in a definition, because it requires
2386 // that the return/param types are complete.
Mike Stump1eb44332009-09-09 15:08:12 +00002387 // because that requires
Anders Carlssone65a3c82009-03-24 17:23:42 +00002388 return VisitDeclContext(FD);
2389 }
Mike Stump1eb44332009-09-09 15:08:12 +00002390
Anders Carlssone65a3c82009-03-24 17:23:42 +00002391 // Check the return type.
John McCall183700f2009-09-21 23:43:11 +00002392 QualType RTy = FD->getType()->getAs<FunctionType>()->getResultType();
Mike Stump1eb44332009-09-09 15:08:12 +00002393 bool Invalid =
Anders Carlssone65a3c82009-03-24 17:23:42 +00002394 SemaRef.RequireNonAbstractType(FD->getLocation(), RTy,
2395 diag::err_abstract_type_in_decl,
2396 Sema::AbstractReturnType,
2397 AbstractClass);
2398
Mike Stump1eb44332009-09-09 15:08:12 +00002399 for (FunctionDecl::param_const_iterator I = FD->param_begin(),
Anders Carlssone65a3c82009-03-24 17:23:42 +00002400 E = FD->param_end(); I != E; ++I) {
Anders Carlsson8211eff2009-03-24 01:19:16 +00002401 const ParmVarDecl *VD = *I;
Mike Stump1eb44332009-09-09 15:08:12 +00002402 Invalid |=
Anders Carlsson8211eff2009-03-24 01:19:16 +00002403 SemaRef.RequireNonAbstractType(VD->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00002404 VD->getOriginalType(),
2405 diag::err_abstract_type_in_decl,
Anders Carlssone65a3c82009-03-24 17:23:42 +00002406 Sema::AbstractParamType,
2407 AbstractClass);
Anders Carlsson8211eff2009-03-24 01:19:16 +00002408 }
2409
2410 return Invalid;
2411 }
Mike Stump1eb44332009-09-09 15:08:12 +00002412
Anders Carlssone65a3c82009-03-24 17:23:42 +00002413 bool VisitDecl(const Decl* D) {
2414 if (const DeclContext *DC = dyn_cast<DeclContext>(D))
2415 return VisitDeclContext(DC);
Mike Stump1eb44332009-09-09 15:08:12 +00002416
Anders Carlssone65a3c82009-03-24 17:23:42 +00002417 return false;
2418 }
Anders Carlsson8211eff2009-03-24 01:19:16 +00002419 };
2420}
2421
Douglas Gregor1ab537b2009-12-03 18:33:45 +00002422/// \brief Perform semantic checks on a class definition that has been
2423/// completing, introducing implicitly-declared members, checking for
2424/// abstract types, etc.
Douglas Gregor6275e0c2010-04-12 17:09:20 +00002425void Sema::CheckCompletedCXXClass(Scope *S, CXXRecordDecl *Record) {
Douglas Gregor1ab537b2009-12-03 18:33:45 +00002426 if (!Record || Record->isInvalidDecl())
2427 return;
2428
Eli Friedmanff2d8782009-12-16 20:00:27 +00002429 if (!Record->isDependentType())
Douglas Gregor6275e0c2010-04-12 17:09:20 +00002430 AddImplicitlyDeclaredMembersToClass(S, Record);
Douglas Gregor159ef1e2010-01-06 04:44:19 +00002431
Eli Friedmanff2d8782009-12-16 20:00:27 +00002432 if (Record->isInvalidDecl())
2433 return;
2434
John McCall233a6412010-01-28 07:38:46 +00002435 // Set access bits correctly on the directly-declared conversions.
2436 UnresolvedSetImpl *Convs = Record->getConversionFunctions();
2437 for (UnresolvedSetIterator I = Convs->begin(), E = Convs->end(); I != E; ++I)
2438 Convs->setAccess(I, (*I)->getAccess());
2439
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00002440 // Determine whether we need to check for final overriders. We do
2441 // this either when there are virtual base classes (in which case we
2442 // may end up finding multiple final overriders for a given virtual
2443 // function) or any of the base classes is abstract (in which case
2444 // we might detect that this class is abstract).
2445 bool CheckFinalOverriders = false;
2446 if (Record->isPolymorphic() && !Record->isInvalidDecl() &&
2447 !Record->isDependentType()) {
2448 if (Record->getNumVBases())
2449 CheckFinalOverriders = true;
2450 else if (!Record->isAbstract()) {
2451 for (CXXRecordDecl::base_class_const_iterator B = Record->bases_begin(),
2452 BEnd = Record->bases_end();
2453 B != BEnd; ++B) {
2454 CXXRecordDecl *BaseDecl
2455 = cast<CXXRecordDecl>(B->getType()->getAs<RecordType>()->getDecl());
2456 if (BaseDecl->isAbstract()) {
2457 CheckFinalOverriders = true;
2458 break;
2459 }
2460 }
2461 }
Douglas Gregor1ab537b2009-12-03 18:33:45 +00002462 }
2463
Douglas Gregor7b2fc9d2010-03-23 23:47:56 +00002464 if (CheckFinalOverriders) {
2465 CXXFinalOverriderMap FinalOverriders;
2466 Record->getFinalOverriders(FinalOverriders);
2467
2468 for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(),
2469 MEnd = FinalOverriders.end();
2470 M != MEnd; ++M) {
2471 for (OverridingMethods::iterator SO = M->second.begin(),
2472 SOEnd = M->second.end();
2473 SO != SOEnd; ++SO) {
2474 assert(SO->second.size() > 0 &&
2475 "All virtual functions have overridding virtual functions");
2476 if (SO->second.size() == 1) {
2477 // C++ [class.abstract]p4:
2478 // A class is abstract if it contains or inherits at least one
2479 // pure virtual function for which the final overrider is pure
2480 // virtual.
2481 if (SO->second.front().Method->isPure())
2482 Record->setAbstract(true);
2483 continue;
2484 }
2485
2486 // C++ [class.virtual]p2:
2487 // In a derived class, if a virtual member function of a base
2488 // class subobject has more than one final overrider the
2489 // program is ill-formed.
2490 Diag(Record->getLocation(), diag::err_multiple_final_overriders)
2491 << (NamedDecl *)M->first << Record;
2492 Diag(M->first->getLocation(), diag::note_overridden_virtual_function);
2493 for (OverridingMethods::overriding_iterator OM = SO->second.begin(),
2494 OMEnd = SO->second.end();
2495 OM != OMEnd; ++OM)
2496 Diag(OM->Method->getLocation(), diag::note_final_overrider)
2497 << (NamedDecl *)M->first << OM->Method->getParent();
2498
2499 Record->setInvalidDecl();
2500 }
2501 }
2502 }
2503
2504 if (Record->isAbstract() && !Record->isInvalidDecl())
Douglas Gregor1ab537b2009-12-03 18:33:45 +00002505 (void)AbstractClassUsageDiagnoser(*this, Record);
Douglas Gregor325e5932010-04-15 00:00:53 +00002506
2507 // If this is not an aggregate type and has no user-declared constructor,
2508 // complain about any non-static data members of reference or const scalar
2509 // type, since they will never get initializers.
2510 if (!Record->isInvalidDecl() && !Record->isDependentType() &&
2511 !Record->isAggregate() && !Record->hasUserDeclaredConstructor()) {
2512 bool Complained = false;
2513 for (RecordDecl::field_iterator F = Record->field_begin(),
2514 FEnd = Record->field_end();
2515 F != FEnd; ++F) {
2516 if (F->getType()->isReferenceType() ||
Benjamin Kramer1deea662010-04-16 17:43:15 +00002517 (F->getType().isConstQualified() && F->getType()->isScalarType())) {
Douglas Gregor325e5932010-04-15 00:00:53 +00002518 if (!Complained) {
2519 Diag(Record->getLocation(), diag::warn_no_constructor_for_refconst)
2520 << Record->getTagKind() << Record;
2521 Complained = true;
2522 }
2523
2524 Diag(F->getLocation(), diag::note_refconst_member_not_initialized)
2525 << F->getType()->isReferenceType()
2526 << F->getDeclName();
2527 }
2528 }
2529 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +00002530
2531 if (Record->isDynamicClass())
2532 DynamicClasses.push_back(Record);
Douglas Gregor1ab537b2009-12-03 18:33:45 +00002533}
2534
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00002535void Sema::ActOnFinishCXXMemberSpecification(Scope* S, SourceLocation RLoc,
Chris Lattnerb28317a2009-03-28 19:18:32 +00002536 DeclPtrTy TagDecl,
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00002537 SourceLocation LBrac,
Douglas Gregor0b4c9b52010-03-29 14:42:08 +00002538 SourceLocation RBrac,
2539 AttributeList *AttrList) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00002540 if (!TagDecl)
2541 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002542
Douglas Gregor42af25f2009-05-11 19:58:34 +00002543 AdjustDeclIfTemplate(TagDecl);
Douglas Gregor1ab537b2009-12-03 18:33:45 +00002544
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00002545 ActOnFields(S, RLoc, TagDecl,
Chris Lattnerb28317a2009-03-28 19:18:32 +00002546 (DeclPtrTy*)FieldCollector->getCurFields(),
Douglas Gregor0b4c9b52010-03-29 14:42:08 +00002547 FieldCollector->getCurNumFields(), LBrac, RBrac, AttrList);
Douglas Gregor2943aed2009-03-03 04:44:36 +00002548
Douglas Gregor6275e0c2010-04-12 17:09:20 +00002549 CheckCompletedCXXClass(S,
Douglas Gregor1ab537b2009-12-03 18:33:45 +00002550 dyn_cast_or_null<CXXRecordDecl>(TagDecl.getAs<Decl>()));
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00002551}
2552
Douglas Gregor396b7cd2008-11-03 17:51:48 +00002553/// AddImplicitlyDeclaredMembersToClass - Adds any implicitly-declared
2554/// special functions, such as the default constructor, copy
2555/// constructor, or destructor, to the given C++ class (C++
2556/// [special]p1). This routine can only be executed just before the
2557/// definition of the class is complete.
Douglas Gregor6275e0c2010-04-12 17:09:20 +00002558///
2559/// The scope, if provided, is the class scope.
2560void Sema::AddImplicitlyDeclaredMembersToClass(Scope *S,
2561 CXXRecordDecl *ClassDecl) {
Mike Stump1eb44332009-09-09 15:08:12 +00002562 CanQualType ClassType
Douglas Gregor50d62d12009-08-05 05:36:45 +00002563 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Douglas Gregor2e1cd422008-11-17 14:58:09 +00002564
Sebastian Redl465226e2009-05-27 22:11:52 +00002565 // FIXME: Implicit declarations have exception specifications, which are
2566 // the union of the specifications of the implicitly called functions.
2567
Douglas Gregor396b7cd2008-11-03 17:51:48 +00002568 if (!ClassDecl->hasUserDeclaredConstructor()) {
2569 // C++ [class.ctor]p5:
2570 // A default constructor for a class X is a constructor of class X
2571 // that can be called without an argument. If there is no
2572 // user-declared constructor for class X, a default constructor is
2573 // implicitly declared. An implicitly-declared default constructor
2574 // is an inline public member of its class.
Mike Stump1eb44332009-09-09 15:08:12 +00002575 DeclarationName Name
Douglas Gregor2e1cd422008-11-17 14:58:09 +00002576 = Context.DeclarationNames.getCXXConstructorName(ClassType);
Mike Stump1eb44332009-09-09 15:08:12 +00002577 CXXConstructorDecl *DefaultCon =
Douglas Gregor396b7cd2008-11-03 17:51:48 +00002578 CXXConstructorDecl::Create(Context, ClassDecl,
Douglas Gregor2e1cd422008-11-17 14:58:09 +00002579 ClassDecl->getLocation(), Name,
Douglas Gregor396b7cd2008-11-03 17:51:48 +00002580 Context.getFunctionType(Context.VoidTy,
Douglas Gregorce056bc2010-02-21 22:15:06 +00002581 0, 0, false, 0,
2582 /*FIXME*/false, false,
Rafael Espindola264ba482010-03-30 20:24:48 +00002583 0, 0,
2584 FunctionType::ExtInfo()),
John McCalla93c9342009-12-07 02:54:59 +00002585 /*TInfo=*/0,
Douglas Gregor396b7cd2008-11-03 17:51:48 +00002586 /*isExplicit=*/false,
2587 /*isInline=*/true,
2588 /*isImplicitlyDeclared=*/true);
2589 DefaultCon->setAccess(AS_public);
Douglas Gregor6b3945f2009-01-07 19:46:03 +00002590 DefaultCon->setImplicit();
Douglas Gregor1f2023a2009-07-22 18:25:24 +00002591 DefaultCon->setTrivial(ClassDecl->hasTrivialConstructor());
Douglas Gregor6275e0c2010-04-12 17:09:20 +00002592 if (S)
2593 PushOnScopeChains(DefaultCon, S, true);
2594 else
2595 ClassDecl->addDecl(DefaultCon);
Douglas Gregor396b7cd2008-11-03 17:51:48 +00002596 }
2597
2598 if (!ClassDecl->hasUserDeclaredCopyConstructor()) {
2599 // C++ [class.copy]p4:
2600 // If the class definition does not explicitly declare a copy
2601 // constructor, one is declared implicitly.
2602
2603 // C++ [class.copy]p5:
2604 // The implicitly-declared copy constructor for a class X will
2605 // have the form
2606 //
2607 // X::X(const X&)
2608 //
2609 // if
2610 bool HasConstCopyConstructor = true;
2611
2612 // -- each direct or virtual base class B of X has a copy
2613 // constructor whose first parameter is of type const B& or
2614 // const volatile B&, and
2615 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin();
2616 HasConstCopyConstructor && Base != ClassDecl->bases_end(); ++Base) {
2617 const CXXRecordDecl *BaseClassDecl
Ted Kremenek6217b802009-07-29 21:53:49 +00002618 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Mike Stump1eb44332009-09-09 15:08:12 +00002619 HasConstCopyConstructor
Douglas Gregor396b7cd2008-11-03 17:51:48 +00002620 = BaseClassDecl->hasConstCopyConstructor(Context);
2621 }
2622
2623 // -- for all the nonstatic data members of X that are of a
2624 // class type M (or array thereof), each such class type
2625 // has a copy constructor whose first parameter is of type
2626 // const M& or const volatile M&.
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002627 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin();
2628 HasConstCopyConstructor && Field != ClassDecl->field_end();
Douglas Gregor6ab35242009-04-09 21:40:53 +00002629 ++Field) {
Douglas Gregor396b7cd2008-11-03 17:51:48 +00002630 QualType FieldType = (*Field)->getType();
2631 if (const ArrayType *Array = Context.getAsArrayType(FieldType))
2632 FieldType = Array->getElementType();
Ted Kremenek6217b802009-07-29 21:53:49 +00002633 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Mike Stump1eb44332009-09-09 15:08:12 +00002634 const CXXRecordDecl *FieldClassDecl
Douglas Gregor396b7cd2008-11-03 17:51:48 +00002635 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Mike Stump1eb44332009-09-09 15:08:12 +00002636 HasConstCopyConstructor
Douglas Gregor396b7cd2008-11-03 17:51:48 +00002637 = FieldClassDecl->hasConstCopyConstructor(Context);
2638 }
2639 }
2640
Sebastian Redl64b45f72009-01-05 20:52:13 +00002641 // Otherwise, the implicitly declared copy constructor will have
2642 // the form
Douglas Gregor396b7cd2008-11-03 17:51:48 +00002643 //
2644 // X::X(X&)
Sebastian Redl64b45f72009-01-05 20:52:13 +00002645 QualType ArgType = ClassType;
Douglas Gregor396b7cd2008-11-03 17:51:48 +00002646 if (HasConstCopyConstructor)
2647 ArgType = ArgType.withConst();
Sebastian Redl7c80bd62009-03-16 23:22:08 +00002648 ArgType = Context.getLValueReferenceType(ArgType);
Douglas Gregor396b7cd2008-11-03 17:51:48 +00002649
Sebastian Redl64b45f72009-01-05 20:52:13 +00002650 // An implicitly-declared copy constructor is an inline public
2651 // member of its class.
Mike Stump1eb44332009-09-09 15:08:12 +00002652 DeclarationName Name
Douglas Gregor2e1cd422008-11-17 14:58:09 +00002653 = Context.DeclarationNames.getCXXConstructorName(ClassType);
Douglas Gregor396b7cd2008-11-03 17:51:48 +00002654 CXXConstructorDecl *CopyConstructor
2655 = CXXConstructorDecl::Create(Context, ClassDecl,
Douglas Gregor2e1cd422008-11-17 14:58:09 +00002656 ClassDecl->getLocation(), Name,
Douglas Gregor396b7cd2008-11-03 17:51:48 +00002657 Context.getFunctionType(Context.VoidTy,
2658 &ArgType, 1,
Douglas Gregorce056bc2010-02-21 22:15:06 +00002659 false, 0,
Chris Lattnerface9812010-05-12 23:26:21 +00002660 /*FIXME: hasExceptionSpec*/false,
Rafael Espindola264ba482010-03-30 20:24:48 +00002661 false, 0, 0,
2662 FunctionType::ExtInfo()),
John McCalla93c9342009-12-07 02:54:59 +00002663 /*TInfo=*/0,
Douglas Gregor396b7cd2008-11-03 17:51:48 +00002664 /*isExplicit=*/false,
2665 /*isInline=*/true,
2666 /*isImplicitlyDeclared=*/true);
2667 CopyConstructor->setAccess(AS_public);
Douglas Gregor6b3945f2009-01-07 19:46:03 +00002668 CopyConstructor->setImplicit();
Douglas Gregor1f2023a2009-07-22 18:25:24 +00002669 CopyConstructor->setTrivial(ClassDecl->hasTrivialCopyConstructor());
Douglas Gregor396b7cd2008-11-03 17:51:48 +00002670
2671 // Add the parameter to the constructor.
2672 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyConstructor,
2673 ClassDecl->getLocation(),
2674 /*IdentifierInfo=*/0,
John McCalla93c9342009-12-07 02:54:59 +00002675 ArgType, /*TInfo=*/0,
Douglas Gregor16573fa2010-04-19 22:54:31 +00002676 VarDecl::None,
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00002677 VarDecl::None, 0);
Douglas Gregor838db382010-02-11 01:19:42 +00002678 CopyConstructor->setParams(&FromParam, 1);
Douglas Gregor6275e0c2010-04-12 17:09:20 +00002679 if (S)
2680 PushOnScopeChains(CopyConstructor, S, true);
2681 else
2682 ClassDecl->addDecl(CopyConstructor);
Douglas Gregor396b7cd2008-11-03 17:51:48 +00002683 }
2684
Sebastian Redl64b45f72009-01-05 20:52:13 +00002685 if (!ClassDecl->hasUserDeclaredCopyAssignment()) {
2686 // Note: The following rules are largely analoguous to the copy
2687 // constructor rules. Note that virtual bases are not taken into account
2688 // for determining the argument type of the operator. Note also that
2689 // operators taking an object instead of a reference are allowed.
2690 //
2691 // C++ [class.copy]p10:
2692 // If the class definition does not explicitly declare a copy
2693 // assignment operator, one is declared implicitly.
2694 // The implicitly-defined copy assignment operator for a class X
2695 // will have the form
2696 //
2697 // X& X::operator=(const X&)
2698 //
2699 // if
2700 bool HasConstCopyAssignment = true;
2701
2702 // -- each direct base class B of X has a copy assignment operator
2703 // whose parameter is of type const B&, const volatile B& or B,
2704 // and
2705 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin();
2706 HasConstCopyAssignment && Base != ClassDecl->bases_end(); ++Base) {
Sebastian Redl9994a342009-10-25 17:03:50 +00002707 assert(!Base->getType()->isDependentType() &&
2708 "Cannot generate implicit members for class with dependent bases.");
Sebastian Redl64b45f72009-01-05 20:52:13 +00002709 const CXXRecordDecl *BaseClassDecl
Ted Kremenek6217b802009-07-29 21:53:49 +00002710 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Fariborz Jahanian0270b8a2009-08-12 23:34:46 +00002711 const CXXMethodDecl *MD = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00002712 HasConstCopyAssignment = BaseClassDecl->hasConstCopyAssignment(Context,
Fariborz Jahanian0270b8a2009-08-12 23:34:46 +00002713 MD);
Sebastian Redl64b45f72009-01-05 20:52:13 +00002714 }
2715
2716 // -- for all the nonstatic data members of X that are of a class
2717 // type M (or array thereof), each such class type has a copy
2718 // assignment operator whose parameter is of type const M&,
2719 // const volatile M& or M.
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002720 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin();
2721 HasConstCopyAssignment && Field != ClassDecl->field_end();
Douglas Gregor6ab35242009-04-09 21:40:53 +00002722 ++Field) {
Sebastian Redl64b45f72009-01-05 20:52:13 +00002723 QualType FieldType = (*Field)->getType();
2724 if (const ArrayType *Array = Context.getAsArrayType(FieldType))
2725 FieldType = Array->getElementType();
Ted Kremenek6217b802009-07-29 21:53:49 +00002726 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Sebastian Redl64b45f72009-01-05 20:52:13 +00002727 const CXXRecordDecl *FieldClassDecl
2728 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Fariborz Jahanian0270b8a2009-08-12 23:34:46 +00002729 const CXXMethodDecl *MD = 0;
Sebastian Redl64b45f72009-01-05 20:52:13 +00002730 HasConstCopyAssignment
Fariborz Jahanian0270b8a2009-08-12 23:34:46 +00002731 = FieldClassDecl->hasConstCopyAssignment(Context, MD);
Sebastian Redl64b45f72009-01-05 20:52:13 +00002732 }
2733 }
2734
2735 // Otherwise, the implicitly declared copy assignment operator will
2736 // have the form
2737 //
2738 // X& X::operator=(X&)
2739 QualType ArgType = ClassType;
Sebastian Redl7c80bd62009-03-16 23:22:08 +00002740 QualType RetType = Context.getLValueReferenceType(ArgType);
Sebastian Redl64b45f72009-01-05 20:52:13 +00002741 if (HasConstCopyAssignment)
2742 ArgType = ArgType.withConst();
Sebastian Redl7c80bd62009-03-16 23:22:08 +00002743 ArgType = Context.getLValueReferenceType(ArgType);
Sebastian Redl64b45f72009-01-05 20:52:13 +00002744
2745 // An implicitly-declared copy assignment operator is an inline public
2746 // member of its class.
2747 DeclarationName Name =
2748 Context.DeclarationNames.getCXXOperatorName(OO_Equal);
2749 CXXMethodDecl *CopyAssignment =
2750 CXXMethodDecl::Create(Context, ClassDecl, ClassDecl->getLocation(), Name,
2751 Context.getFunctionType(RetType, &ArgType, 1,
Douglas Gregorce056bc2010-02-21 22:15:06 +00002752 false, 0,
Chris Lattnerface9812010-05-12 23:26:21 +00002753 /*FIXME: hasExceptionSpec*/false,
Rafael Espindola264ba482010-03-30 20:24:48 +00002754 false, 0, 0,
2755 FunctionType::ExtInfo()),
Douglas Gregor16573fa2010-04-19 22:54:31 +00002756 /*TInfo=*/0, /*isStatic=*/false,
2757 /*StorageClassAsWritten=*/FunctionDecl::None,
2758 /*isInline=*/true);
Sebastian Redl64b45f72009-01-05 20:52:13 +00002759 CopyAssignment->setAccess(AS_public);
Douglas Gregor6b3945f2009-01-07 19:46:03 +00002760 CopyAssignment->setImplicit();
Douglas Gregor1f2023a2009-07-22 18:25:24 +00002761 CopyAssignment->setTrivial(ClassDecl->hasTrivialCopyAssignment());
Fariborz Jahanian2198ba12009-08-12 21:14:35 +00002762 CopyAssignment->setCopyAssignment(true);
Sebastian Redl64b45f72009-01-05 20:52:13 +00002763
2764 // Add the parameter to the operator.
2765 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyAssignment,
2766 ClassDecl->getLocation(),
Douglas Gregor06a9f362010-05-01 20:49:11 +00002767 /*Id=*/0,
John McCalla93c9342009-12-07 02:54:59 +00002768 ArgType, /*TInfo=*/0,
Douglas Gregor16573fa2010-04-19 22:54:31 +00002769 VarDecl::None,
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00002770 VarDecl::None, 0);
Douglas Gregor838db382010-02-11 01:19:42 +00002771 CopyAssignment->setParams(&FromParam, 1);
Sebastian Redl64b45f72009-01-05 20:52:13 +00002772
2773 // Don't call addedAssignmentOperator. There is no way to distinguish an
2774 // implicit from an explicit assignment operator.
Douglas Gregor6275e0c2010-04-12 17:09:20 +00002775 if (S)
2776 PushOnScopeChains(CopyAssignment, S, true);
2777 else
2778 ClassDecl->addDecl(CopyAssignment);
Eli Friedmanca6affd2009-12-02 06:59:20 +00002779 AddOverriddenMethods(ClassDecl, CopyAssignment);
Sebastian Redl64b45f72009-01-05 20:52:13 +00002780 }
2781
Douglas Gregor9e7d9de2008-12-15 21:24:18 +00002782 if (!ClassDecl->hasUserDeclaredDestructor()) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00002783 // C++ [class.dtor]p2:
2784 // If a class has no user-declared destructor, a destructor is
2785 // declared implicitly. An implicitly-declared destructor is an
2786 // inline public member of its class.
John McCall21ef0fa2010-03-11 09:03:00 +00002787 QualType Ty = Context.getFunctionType(Context.VoidTy,
2788 0, 0, false, 0,
Chris Lattnerface9812010-05-12 23:26:21 +00002789 /*FIXME: hasExceptionSpec*/false,
Rafael Espindola264ba482010-03-30 20:24:48 +00002790 false, 0, 0, FunctionType::ExtInfo());
John McCall21ef0fa2010-03-11 09:03:00 +00002791
Mike Stump1eb44332009-09-09 15:08:12 +00002792 DeclarationName Name
Douglas Gregor2e1cd422008-11-17 14:58:09 +00002793 = Context.DeclarationNames.getCXXDestructorName(ClassType);
Mike Stump1eb44332009-09-09 15:08:12 +00002794 CXXDestructorDecl *Destructor
Douglas Gregor42a552f2008-11-05 20:51:48 +00002795 = CXXDestructorDecl::Create(Context, ClassDecl,
John McCall21ef0fa2010-03-11 09:03:00 +00002796 ClassDecl->getLocation(), Name, Ty,
Douglas Gregor42a552f2008-11-05 20:51:48 +00002797 /*isInline=*/true,
2798 /*isImplicitlyDeclared=*/true);
2799 Destructor->setAccess(AS_public);
Douglas Gregor6b3945f2009-01-07 19:46:03 +00002800 Destructor->setImplicit();
Douglas Gregor1f2023a2009-07-22 18:25:24 +00002801 Destructor->setTrivial(ClassDecl->hasTrivialDestructor());
Douglas Gregor6275e0c2010-04-12 17:09:20 +00002802 if (S)
2803 PushOnScopeChains(Destructor, S, true);
2804 else
2805 ClassDecl->addDecl(Destructor);
John McCall21ef0fa2010-03-11 09:03:00 +00002806
2807 // This could be uniqued if it ever proves significant.
2808 Destructor->setTypeSourceInfo(Context.getTrivialTypeSourceInfo(Ty));
Anders Carlssond5a942b2009-11-26 21:25:09 +00002809
2810 AddOverriddenMethods(ClassDecl, Destructor);
Douglas Gregor42a552f2008-11-05 20:51:48 +00002811 }
Douglas Gregor396b7cd2008-11-03 17:51:48 +00002812}
2813
Douglas Gregor6569d682009-05-27 23:11:45 +00002814void Sema::ActOnReenterTemplateScope(Scope *S, DeclPtrTy TemplateD) {
Douglas Gregor1cdcc572009-09-10 00:12:48 +00002815 Decl *D = TemplateD.getAs<Decl>();
2816 if (!D)
2817 return;
2818
2819 TemplateParameterList *Params = 0;
2820 if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D))
2821 Params = Template->getTemplateParameters();
2822 else if (ClassTemplatePartialSpecializationDecl *PartialSpec
2823 = dyn_cast<ClassTemplatePartialSpecializationDecl>(D))
2824 Params = PartialSpec->getTemplateParameters();
2825 else
Douglas Gregor6569d682009-05-27 23:11:45 +00002826 return;
2827
Douglas Gregor6569d682009-05-27 23:11:45 +00002828 for (TemplateParameterList::iterator Param = Params->begin(),
2829 ParamEnd = Params->end();
2830 Param != ParamEnd; ++Param) {
2831 NamedDecl *Named = cast<NamedDecl>(*Param);
2832 if (Named->getDeclName()) {
2833 S->AddDecl(DeclPtrTy::make(Named));
2834 IdResolver.AddDecl(Named);
2835 }
2836 }
2837}
2838
John McCall7a1dc562009-12-19 10:49:29 +00002839void Sema::ActOnStartDelayedMemberDeclarations(Scope *S, DeclPtrTy RecordD) {
2840 if (!RecordD) return;
2841 AdjustDeclIfTemplate(RecordD);
2842 CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordD.getAs<Decl>());
2843 PushDeclContext(S, Record);
2844}
2845
2846void Sema::ActOnFinishDelayedMemberDeclarations(Scope *S, DeclPtrTy RecordD) {
2847 if (!RecordD) return;
2848 PopDeclContext();
2849}
2850
Douglas Gregor72b505b2008-12-16 21:30:33 +00002851/// ActOnStartDelayedCXXMethodDeclaration - We have completed
2852/// parsing a top-level (non-nested) C++ class, and we are now
2853/// parsing those parts of the given Method declaration that could
2854/// not be parsed earlier (C++ [class.mem]p2), such as default
2855/// arguments. This action should enter the scope of the given
2856/// Method declaration as if we had just parsed the qualified method
2857/// name. However, it should not bring the parameters into scope;
2858/// that will be performed by ActOnDelayedCXXMethodParameter.
Chris Lattnerb28317a2009-03-28 19:18:32 +00002859void Sema::ActOnStartDelayedCXXMethodDeclaration(Scope *S, DeclPtrTy MethodD) {
Douglas Gregor72b505b2008-12-16 21:30:33 +00002860}
2861
2862/// ActOnDelayedCXXMethodParameter - We've already started a delayed
2863/// C++ method declaration. We're (re-)introducing the given
2864/// function parameter into scope for use in parsing later parts of
2865/// the method declaration. For example, we could see an
2866/// ActOnParamDefaultArgument event for this parameter.
Chris Lattnerb28317a2009-03-28 19:18:32 +00002867void Sema::ActOnDelayedCXXMethodParameter(Scope *S, DeclPtrTy ParamD) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00002868 if (!ParamD)
2869 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002870
Chris Lattnerb28317a2009-03-28 19:18:32 +00002871 ParmVarDecl *Param = cast<ParmVarDecl>(ParamD.getAs<Decl>());
Douglas Gregor61366e92008-12-24 00:01:03 +00002872
2873 // If this parameter has an unparsed default argument, clear it out
2874 // to make way for the parsed default argument.
2875 if (Param->hasUnparsedDefaultArg())
2876 Param->setDefaultArg(0);
2877
Chris Lattnerb28317a2009-03-28 19:18:32 +00002878 S->AddDecl(DeclPtrTy::make(Param));
Douglas Gregor72b505b2008-12-16 21:30:33 +00002879 if (Param->getDeclName())
2880 IdResolver.AddDecl(Param);
2881}
2882
2883/// ActOnFinishDelayedCXXMethodDeclaration - We have finished
2884/// processing the delayed method declaration for Method. The method
2885/// declaration is now considered finished. There may be a separate
2886/// ActOnStartOfFunctionDef action later (not necessarily
2887/// immediately!) for this method, if it was also defined inside the
2888/// class body.
Chris Lattnerb28317a2009-03-28 19:18:32 +00002889void Sema::ActOnFinishDelayedCXXMethodDeclaration(Scope *S, DeclPtrTy MethodD) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00002890 if (!MethodD)
2891 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002892
Douglas Gregorefd5bda2009-08-24 11:57:43 +00002893 AdjustDeclIfTemplate(MethodD);
Mike Stump1eb44332009-09-09 15:08:12 +00002894
Chris Lattnerb28317a2009-03-28 19:18:32 +00002895 FunctionDecl *Method = cast<FunctionDecl>(MethodD.getAs<Decl>());
Douglas Gregor72b505b2008-12-16 21:30:33 +00002896
2897 // Now that we have our default arguments, check the constructor
2898 // again. It could produce additional diagnostics or affect whether
2899 // the class has implicitly-declared destructors, among other
2900 // things.
Chris Lattner6e475012009-04-25 08:35:12 +00002901 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Method))
2902 CheckConstructor(Constructor);
Douglas Gregor72b505b2008-12-16 21:30:33 +00002903
2904 // Check the default arguments, which we may have added.
2905 if (!Method->isInvalidDecl())
2906 CheckCXXDefaultArguments(Method);
2907}
2908
Douglas Gregor42a552f2008-11-05 20:51:48 +00002909/// CheckConstructorDeclarator - Called by ActOnDeclarator to check
Douglas Gregor72b505b2008-12-16 21:30:33 +00002910/// the well-formedness of the constructor declarator @p D with type @p
Douglas Gregor42a552f2008-11-05 20:51:48 +00002911/// R. If there are any errors in the declarator, this routine will
Chris Lattner65401802009-04-25 08:28:21 +00002912/// emit diagnostics and set the invalid bit to true. In any case, the type
2913/// will be updated to reflect a well-formed type for the constructor and
2914/// returned.
2915QualType Sema::CheckConstructorDeclarator(Declarator &D, QualType R,
2916 FunctionDecl::StorageClass &SC) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00002917 bool isVirtual = D.getDeclSpec().isVirtualSpecified();
Douglas Gregor42a552f2008-11-05 20:51:48 +00002918
2919 // C++ [class.ctor]p3:
2920 // A constructor shall not be virtual (10.3) or static (9.4). A
2921 // constructor can be invoked for a const, volatile or const
2922 // volatile object. A constructor shall not be declared const,
2923 // volatile, or const volatile (9.3.2).
2924 if (isVirtual) {
Chris Lattner65401802009-04-25 08:28:21 +00002925 if (!D.isInvalidType())
2926 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
2927 << "virtual" << SourceRange(D.getDeclSpec().getVirtualSpecLoc())
2928 << SourceRange(D.getIdentifierLoc());
2929 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00002930 }
2931 if (SC == FunctionDecl::Static) {
Chris Lattner65401802009-04-25 08:28:21 +00002932 if (!D.isInvalidType())
2933 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
2934 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
2935 << SourceRange(D.getIdentifierLoc());
2936 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00002937 SC = FunctionDecl::None;
2938 }
Mike Stump1eb44332009-09-09 15:08:12 +00002939
Chris Lattner65401802009-04-25 08:28:21 +00002940 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
2941 if (FTI.TypeQuals != 0) {
John McCall0953e762009-09-24 19:53:00 +00002942 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002943 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
2944 << "const" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00002945 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002946 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
2947 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00002948 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002949 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
2950 << "restrict" << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +00002951 }
Mike Stump1eb44332009-09-09 15:08:12 +00002952
Douglas Gregor42a552f2008-11-05 20:51:48 +00002953 // Rebuild the function type "R" without any type qualifiers (in
2954 // case any of the errors above fired) and with "void" as the
2955 // return type, since constructors don't have return types. We
2956 // *always* have to do this, because GetTypeForDeclarator will
2957 // put in a result type of "int" when none was specified.
John McCall183700f2009-09-21 23:43:11 +00002958 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
Chris Lattner65401802009-04-25 08:28:21 +00002959 return Context.getFunctionType(Context.VoidTy, Proto->arg_type_begin(),
2960 Proto->getNumArgs(),
Douglas Gregorce056bc2010-02-21 22:15:06 +00002961 Proto->isVariadic(), 0,
2962 Proto->hasExceptionSpec(),
2963 Proto->hasAnyExceptionSpec(),
2964 Proto->getNumExceptions(),
2965 Proto->exception_begin(),
Rafael Espindola264ba482010-03-30 20:24:48 +00002966 Proto->getExtInfo());
Douglas Gregor42a552f2008-11-05 20:51:48 +00002967}
2968
Douglas Gregor72b505b2008-12-16 21:30:33 +00002969/// CheckConstructor - Checks a fully-formed constructor for
2970/// well-formedness, issuing any diagnostics required. Returns true if
2971/// the constructor declarator is invalid.
Chris Lattner6e475012009-04-25 08:35:12 +00002972void Sema::CheckConstructor(CXXConstructorDecl *Constructor) {
Mike Stump1eb44332009-09-09 15:08:12 +00002973 CXXRecordDecl *ClassDecl
Douglas Gregor33297562009-03-27 04:38:56 +00002974 = dyn_cast<CXXRecordDecl>(Constructor->getDeclContext());
2975 if (!ClassDecl)
Chris Lattner6e475012009-04-25 08:35:12 +00002976 return Constructor->setInvalidDecl();
Douglas Gregor72b505b2008-12-16 21:30:33 +00002977
2978 // C++ [class.copy]p3:
2979 // A declaration of a constructor for a class X is ill-formed if
2980 // its first parameter is of type (optionally cv-qualified) X and
2981 // either there are no other parameters or else all other
2982 // parameters have default arguments.
Douglas Gregor33297562009-03-27 04:38:56 +00002983 if (!Constructor->isInvalidDecl() &&
Mike Stump1eb44332009-09-09 15:08:12 +00002984 ((Constructor->getNumParams() == 1) ||
2985 (Constructor->getNumParams() > 1 &&
Douglas Gregor66724ea2009-11-14 01:20:54 +00002986 Constructor->getParamDecl(1)->hasDefaultArg())) &&
2987 Constructor->getTemplateSpecializationKind()
2988 != TSK_ImplicitInstantiation) {
Douglas Gregor72b505b2008-12-16 21:30:33 +00002989 QualType ParamType = Constructor->getParamDecl(0)->getType();
2990 QualType ClassTy = Context.getTagDeclType(ClassDecl);
2991 if (Context.getCanonicalType(ParamType).getUnqualifiedType() == ClassTy) {
Douglas Gregora3a83512009-04-01 23:51:29 +00002992 SourceLocation ParamLoc = Constructor->getParamDecl(0)->getLocation();
Douglas Gregoraeb4a282010-05-27 21:28:21 +00002993 const char *ConstRef
2994 = Constructor->getParamDecl(0)->getIdentifier() ? "const &"
2995 : " const &";
Douglas Gregora3a83512009-04-01 23:51:29 +00002996 Diag(ParamLoc, diag::err_constructor_byvalue_arg)
Douglas Gregoraeb4a282010-05-27 21:28:21 +00002997 << FixItHint::CreateInsertion(ParamLoc, ConstRef);
Douglas Gregor66724ea2009-11-14 01:20:54 +00002998
2999 // FIXME: Rather that making the constructor invalid, we should endeavor
3000 // to fix the type.
Chris Lattner6e475012009-04-25 08:35:12 +00003001 Constructor->setInvalidDecl();
Douglas Gregor72b505b2008-12-16 21:30:33 +00003002 }
3003 }
Mike Stump1eb44332009-09-09 15:08:12 +00003004
John McCall3d043362010-04-13 07:45:41 +00003005 // Notify the class that we've added a constructor. In principle we
3006 // don't need to do this for out-of-line declarations; in practice
3007 // we only instantiate the most recent declaration of a method, so
3008 // we have to call this for everything but friends.
3009 if (!Constructor->getFriendObjectKind())
3010 ClassDecl->addedConstructor(Context, Constructor);
Douglas Gregor72b505b2008-12-16 21:30:33 +00003011}
3012
Anders Carlsson37909802009-11-30 21:24:50 +00003013/// CheckDestructor - Checks a fully-formed destructor for well-formedness,
3014/// issuing any diagnostics required. Returns true on error.
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00003015bool Sema::CheckDestructor(CXXDestructorDecl *Destructor) {
Anders Carlsson6d701392009-11-15 22:49:34 +00003016 CXXRecordDecl *RD = Destructor->getParent();
3017
3018 if (Destructor->isVirtual()) {
3019 SourceLocation Loc;
3020
3021 if (!Destructor->isImplicit())
3022 Loc = Destructor->getLocation();
3023 else
3024 Loc = RD->getLocation();
3025
3026 // If we have a virtual destructor, look up the deallocation function
3027 FunctionDecl *OperatorDelete = 0;
3028 DeclarationName Name =
3029 Context.DeclarationNames.getCXXOperatorName(OO_Delete);
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00003030 if (FindDeallocationFunction(Loc, RD, Name, OperatorDelete))
Anders Carlsson37909802009-11-30 21:24:50 +00003031 return true;
3032
3033 Destructor->setOperatorDelete(OperatorDelete);
Anders Carlsson6d701392009-11-15 22:49:34 +00003034 }
Anders Carlsson37909802009-11-30 21:24:50 +00003035
3036 return false;
Anders Carlsson6d701392009-11-15 22:49:34 +00003037}
3038
Mike Stump1eb44332009-09-09 15:08:12 +00003039static inline bool
Anders Carlsson7786d1c2009-04-30 23:18:11 +00003040FTIHasSingleVoidArgument(DeclaratorChunk::FunctionTypeInfo &FTI) {
3041 return (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
3042 FTI.ArgInfo[0].Param &&
3043 FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType()->isVoidType());
3044}
3045
Douglas Gregor42a552f2008-11-05 20:51:48 +00003046/// CheckDestructorDeclarator - Called by ActOnDeclarator to check
3047/// the well-formednes of the destructor declarator @p D with type @p
3048/// R. If there are any errors in the declarator, this routine will
Chris Lattner65401802009-04-25 08:28:21 +00003049/// emit diagnostics and set the declarator to invalid. Even if this happens,
3050/// will be updated to reflect a well-formed type for the destructor and
3051/// returned.
3052QualType Sema::CheckDestructorDeclarator(Declarator &D,
3053 FunctionDecl::StorageClass& SC) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00003054 // C++ [class.dtor]p1:
3055 // [...] A typedef-name that names a class is a class-name
3056 // (7.1.3); however, a typedef-name that names a class shall not
3057 // be used as the identifier in the declarator for a destructor
3058 // declaration.
Douglas Gregor3f9a0562009-11-03 01:35:08 +00003059 QualType DeclaratorType = GetTypeFromParser(D.getName().DestructorName);
Chris Lattner65401802009-04-25 08:28:21 +00003060 if (isa<TypedefType>(DeclaratorType)) {
3061 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
Douglas Gregor1a51b4a2009-02-09 15:09:02 +00003062 << DeclaratorType;
Chris Lattner65401802009-04-25 08:28:21 +00003063 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00003064 }
3065
3066 // C++ [class.dtor]p2:
3067 // A destructor is used to destroy objects of its class type. A
3068 // destructor takes no parameters, and no return type can be
3069 // specified for it (not even void). The address of a destructor
3070 // shall not be taken. A destructor shall not be static. A
3071 // destructor can be invoked for a const, volatile or const
3072 // volatile object. A destructor shall not be declared const,
3073 // volatile or const volatile (9.3.2).
3074 if (SC == FunctionDecl::Static) {
Chris Lattner65401802009-04-25 08:28:21 +00003075 if (!D.isInvalidType())
3076 Diag(D.getIdentifierLoc(), diag::err_destructor_cannot_be)
3077 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
3078 << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +00003079 SC = FunctionDecl::None;
Chris Lattner65401802009-04-25 08:28:21 +00003080 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00003081 }
Chris Lattner65401802009-04-25 08:28:21 +00003082 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00003083 // Destructors don't have return types, but the parser will
3084 // happily parse something like:
3085 //
3086 // class X {
3087 // float ~X();
3088 // };
3089 //
3090 // The return type will be eliminated later.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003091 Diag(D.getIdentifierLoc(), diag::err_destructor_return_type)
3092 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
3093 << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +00003094 }
Mike Stump1eb44332009-09-09 15:08:12 +00003095
Chris Lattner65401802009-04-25 08:28:21 +00003096 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
3097 if (FTI.TypeQuals != 0 && !D.isInvalidType()) {
John McCall0953e762009-09-24 19:53:00 +00003098 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003099 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
3100 << "const" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00003101 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003102 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
3103 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00003104 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003105 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
3106 << "restrict" << SourceRange(D.getIdentifierLoc());
Chris Lattner65401802009-04-25 08:28:21 +00003107 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00003108 }
3109
3110 // Make sure we don't have any parameters.
Anders Carlsson7786d1c2009-04-30 23:18:11 +00003111 if (FTI.NumArgs > 0 && !FTIHasSingleVoidArgument(FTI)) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00003112 Diag(D.getIdentifierLoc(), diag::err_destructor_with_params);
3113
3114 // Delete the parameters.
Chris Lattner65401802009-04-25 08:28:21 +00003115 FTI.freeArgs();
3116 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00003117 }
3118
Mike Stump1eb44332009-09-09 15:08:12 +00003119 // Make sure the destructor isn't variadic.
Chris Lattner65401802009-04-25 08:28:21 +00003120 if (FTI.isVariadic) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00003121 Diag(D.getIdentifierLoc(), diag::err_destructor_variadic);
Chris Lattner65401802009-04-25 08:28:21 +00003122 D.setInvalidType();
3123 }
Douglas Gregor42a552f2008-11-05 20:51:48 +00003124
3125 // Rebuild the function type "R" without any type qualifiers or
3126 // parameters (in case any of the errors above fired) and with
3127 // "void" as the return type, since destructors don't have return
3128 // types. We *always* have to do this, because GetTypeForDeclarator
3129 // will put in a result type of "int" when none was specified.
Douglas Gregorce056bc2010-02-21 22:15:06 +00003130 // FIXME: Exceptions!
3131 return Context.getFunctionType(Context.VoidTy, 0, 0, false, 0,
Rafael Espindola264ba482010-03-30 20:24:48 +00003132 false, false, 0, 0, FunctionType::ExtInfo());
Douglas Gregor42a552f2008-11-05 20:51:48 +00003133}
3134
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003135/// CheckConversionDeclarator - Called by ActOnDeclarator to check the
3136/// well-formednes of the conversion function declarator @p D with
3137/// type @p R. If there are any errors in the declarator, this routine
3138/// will emit diagnostics and return true. Otherwise, it will return
3139/// false. Either way, the type @p R will be updated to reflect a
3140/// well-formed type for the conversion operator.
Chris Lattner6e475012009-04-25 08:35:12 +00003141void Sema::CheckConversionDeclarator(Declarator &D, QualType &R,
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003142 FunctionDecl::StorageClass& SC) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003143 // C++ [class.conv.fct]p1:
3144 // Neither parameter types nor return type can be specified. The
Eli Friedman33a31382009-08-05 19:21:58 +00003145 // type of a conversion function (8.3.5) is "function taking no
Mike Stump1eb44332009-09-09 15:08:12 +00003146 // parameter returning conversion-type-id."
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003147 if (SC == FunctionDecl::Static) {
Chris Lattner6e475012009-04-25 08:35:12 +00003148 if (!D.isInvalidType())
3149 Diag(D.getIdentifierLoc(), diag::err_conv_function_not_member)
3150 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
3151 << SourceRange(D.getIdentifierLoc());
3152 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003153 SC = FunctionDecl::None;
3154 }
John McCalla3f81372010-04-13 00:04:31 +00003155
3156 QualType ConvType = GetTypeFromParser(D.getName().ConversionFunctionId);
3157
Chris Lattner6e475012009-04-25 08:35:12 +00003158 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003159 // Conversion functions don't have return types, but the parser will
3160 // happily parse something like:
3161 //
3162 // class X {
3163 // float operator bool();
3164 // };
3165 //
3166 // The return type will be changed later anyway.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003167 Diag(D.getIdentifierLoc(), diag::err_conv_function_return_type)
3168 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
3169 << SourceRange(D.getIdentifierLoc());
John McCalla3f81372010-04-13 00:04:31 +00003170 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003171 }
3172
John McCalla3f81372010-04-13 00:04:31 +00003173 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
3174
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003175 // Make sure we don't have any parameters.
John McCalla3f81372010-04-13 00:04:31 +00003176 if (Proto->getNumArgs() > 0) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003177 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_params);
3178
3179 // Delete the parameters.
Chris Lattner1833a832009-01-20 21:06:38 +00003180 D.getTypeObject(0).Fun.freeArgs();
Chris Lattner6e475012009-04-25 08:35:12 +00003181 D.setInvalidType();
John McCalla3f81372010-04-13 00:04:31 +00003182 } else if (Proto->isVariadic()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003183 Diag(D.getIdentifierLoc(), diag::err_conv_function_variadic);
Chris Lattner6e475012009-04-25 08:35:12 +00003184 D.setInvalidType();
3185 }
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003186
John McCalla3f81372010-04-13 00:04:31 +00003187 // Diagnose "&operator bool()" and other such nonsense. This
3188 // is actually a gcc extension which we don't support.
3189 if (Proto->getResultType() != ConvType) {
3190 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_complex_decl)
3191 << Proto->getResultType();
3192 D.setInvalidType();
3193 ConvType = Proto->getResultType();
3194 }
3195
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003196 // C++ [class.conv.fct]p4:
3197 // The conversion-type-id shall not represent a function type nor
3198 // an array type.
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003199 if (ConvType->isArrayType()) {
3200 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_array);
3201 ConvType = Context.getPointerType(ConvType);
Chris Lattner6e475012009-04-25 08:35:12 +00003202 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003203 } else if (ConvType->isFunctionType()) {
3204 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_function);
3205 ConvType = Context.getPointerType(ConvType);
Chris Lattner6e475012009-04-25 08:35:12 +00003206 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003207 }
3208
3209 // Rebuild the function type "R" without any parameters (in case any
3210 // of the errors above fired) and with the conversion type as the
Mike Stump1eb44332009-09-09 15:08:12 +00003211 // return type.
John McCalla3f81372010-04-13 00:04:31 +00003212 if (D.isInvalidType()) {
3213 R = Context.getFunctionType(ConvType, 0, 0, false,
3214 Proto->getTypeQuals(),
3215 Proto->hasExceptionSpec(),
3216 Proto->hasAnyExceptionSpec(),
3217 Proto->getNumExceptions(),
3218 Proto->exception_begin(),
3219 Proto->getExtInfo());
3220 }
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003221
Douglas Gregor09f41cf2009-01-14 15:45:31 +00003222 // C++0x explicit conversion operators.
3223 if (D.getDeclSpec().isExplicitSpecified() && !getLangOptions().CPlusPlus0x)
Mike Stump1eb44332009-09-09 15:08:12 +00003224 Diag(D.getDeclSpec().getExplicitSpecLoc(),
Douglas Gregor09f41cf2009-01-14 15:45:31 +00003225 diag::warn_explicit_conversion_functions)
3226 << SourceRange(D.getDeclSpec().getExplicitSpecLoc());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003227}
3228
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003229/// ActOnConversionDeclarator - Called by ActOnDeclarator to complete
3230/// the declaration of the given C++ conversion function. This routine
3231/// is responsible for recording the conversion function in the C++
3232/// class, if possible.
Chris Lattnerb28317a2009-03-28 19:18:32 +00003233Sema::DeclPtrTy Sema::ActOnConversionDeclarator(CXXConversionDecl *Conversion) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003234 assert(Conversion && "Expected to receive a conversion function declaration");
3235
Douglas Gregor9d350972008-12-12 08:25:50 +00003236 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Conversion->getDeclContext());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003237
3238 // Make sure we aren't redeclaring the conversion function.
3239 QualType ConvType = Context.getCanonicalType(Conversion->getConversionType());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003240
3241 // C++ [class.conv.fct]p1:
3242 // [...] A conversion function is never used to convert a
3243 // (possibly cv-qualified) object to the (possibly cv-qualified)
3244 // same object type (or a reference to it), to a (possibly
3245 // cv-qualified) base class of that type (or a reference to it),
3246 // or to (possibly cv-qualified) void.
Mike Stump390b4cc2009-05-16 07:39:55 +00003247 // FIXME: Suppress this warning if the conversion function ends up being a
3248 // virtual function that overrides a virtual function in a base class.
Mike Stump1eb44332009-09-09 15:08:12 +00003249 QualType ClassType
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003250 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Ted Kremenek6217b802009-07-29 21:53:49 +00003251 if (const ReferenceType *ConvTypeRef = ConvType->getAs<ReferenceType>())
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003252 ConvType = ConvTypeRef->getPointeeType();
3253 if (ConvType->isRecordType()) {
3254 ConvType = Context.getCanonicalType(ConvType).getUnqualifiedType();
3255 if (ConvType == ClassType)
Chris Lattner5dc266a2008-11-20 06:13:02 +00003256 Diag(Conversion->getLocation(), diag::warn_conv_to_self_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00003257 << ClassType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003258 else if (IsDerivedFrom(ClassType, ConvType))
Chris Lattner5dc266a2008-11-20 06:13:02 +00003259 Diag(Conversion->getLocation(), diag::warn_conv_to_base_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00003260 << ClassType << ConvType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003261 } else if (ConvType->isVoidType()) {
Chris Lattner5dc266a2008-11-20 06:13:02 +00003262 Diag(Conversion->getLocation(), diag::warn_conv_to_void_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00003263 << ClassType << ConvType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003264 }
3265
Douglas Gregor48026d22010-01-11 18:40:55 +00003266 if (Conversion->getPrimaryTemplate()) {
3267 // ignore specializations
3268 } else if (Conversion->getPreviousDeclaration()) {
Mike Stump1eb44332009-09-09 15:08:12 +00003269 if (FunctionTemplateDecl *ConversionTemplate
Douglas Gregor0c551062010-01-11 18:53:25 +00003270 = Conversion->getDescribedFunctionTemplate()) {
3271 if (ClassDecl->replaceConversion(
3272 ConversionTemplate->getPreviousDeclaration(),
3273 ConversionTemplate))
3274 return DeclPtrTy::make(ConversionTemplate);
3275 } else if (ClassDecl->replaceConversion(Conversion->getPreviousDeclaration(),
3276 Conversion))
John McCallba135432009-11-21 08:51:07 +00003277 return DeclPtrTy::make(Conversion);
Douglas Gregor70316a02008-12-26 15:00:45 +00003278 assert(Conversion->isInvalidDecl() && "Conversion should not get here.");
Mike Stump1eb44332009-09-09 15:08:12 +00003279 } else if (FunctionTemplateDecl *ConversionTemplate
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00003280 = Conversion->getDescribedFunctionTemplate())
Fariborz Jahaniandebc6292009-09-12 19:02:34 +00003281 ClassDecl->addConversionFunction(ConversionTemplate);
Douglas Gregor48026d22010-01-11 18:40:55 +00003282 else
Fariborz Jahaniandebc6292009-09-12 19:02:34 +00003283 ClassDecl->addConversionFunction(Conversion);
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003284
Chris Lattnerb28317a2009-03-28 19:18:32 +00003285 return DeclPtrTy::make(Conversion);
Douglas Gregor2f1bc522008-11-07 20:08:42 +00003286}
3287
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003288//===----------------------------------------------------------------------===//
3289// Namespace Handling
3290//===----------------------------------------------------------------------===//
3291
3292/// ActOnStartNamespaceDef - This is called at the start of a namespace
3293/// definition.
Chris Lattnerb28317a2009-03-28 19:18:32 +00003294Sema::DeclPtrTy Sema::ActOnStartNamespaceDef(Scope *NamespcScope,
3295 SourceLocation IdentLoc,
3296 IdentifierInfo *II,
Anders Carlsson2a3503d2010-02-07 01:09:23 +00003297 SourceLocation LBrace,
3298 AttributeList *AttrList) {
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003299 NamespaceDecl *Namespc =
3300 NamespaceDecl::Create(Context, CurContext, IdentLoc, II);
3301 Namespc->setLBracLoc(LBrace);
3302
3303 Scope *DeclRegionScope = NamespcScope->getParent();
3304
Anders Carlsson2a3503d2010-02-07 01:09:23 +00003305 ProcessDeclAttributeList(DeclRegionScope, Namespc, AttrList);
3306
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003307 if (II) {
3308 // C++ [namespace.def]p2:
3309 // The identifier in an original-namespace-definition shall not have been
3310 // previously defined in the declarative region in which the
3311 // original-namespace-definition appears. The identifier in an
3312 // original-namespace-definition is the name of the namespace. Subsequently
3313 // in that declarative region, it is treated as an original-namespace-name.
3314
John McCallf36e02d2009-10-09 21:13:30 +00003315 NamedDecl *PrevDecl
Douglas Gregorc83c6872010-04-15 22:33:43 +00003316 = LookupSingleName(DeclRegionScope, II, IdentLoc, LookupOrdinaryName,
John McCall7d384dd2009-11-18 07:57:50 +00003317 ForRedeclaration);
Mike Stump1eb44332009-09-09 15:08:12 +00003318
Douglas Gregor44b43212008-12-11 16:49:14 +00003319 if (NamespaceDecl *OrigNS = dyn_cast_or_null<NamespaceDecl>(PrevDecl)) {
3320 // This is an extended namespace definition.
3321 // Attach this namespace decl to the chain of extended namespace
3322 // definitions.
3323 OrigNS->setNextNamespace(Namespc);
3324 Namespc->setOriginalNamespace(OrigNS->getOriginalNamespace());
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003325
Mike Stump1eb44332009-09-09 15:08:12 +00003326 // Remove the previous declaration from the scope.
Chris Lattnerb28317a2009-03-28 19:18:32 +00003327 if (DeclRegionScope->isDeclScope(DeclPtrTy::make(OrigNS))) {
Douglas Gregore267ff32008-12-11 20:41:00 +00003328 IdResolver.RemoveDecl(OrigNS);
Chris Lattnerb28317a2009-03-28 19:18:32 +00003329 DeclRegionScope->RemoveDecl(DeclPtrTy::make(OrigNS));
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003330 }
Douglas Gregor44b43212008-12-11 16:49:14 +00003331 } else if (PrevDecl) {
3332 // This is an invalid name redefinition.
3333 Diag(Namespc->getLocation(), diag::err_redefinition_different_kind)
3334 << Namespc->getDeclName();
3335 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
3336 Namespc->setInvalidDecl();
3337 // Continue on to push Namespc as current DeclContext and return it.
Douglas Gregor7adb10f2009-09-15 22:30:29 +00003338 } else if (II->isStr("std") &&
3339 CurContext->getLookupContext()->isTranslationUnit()) {
3340 // This is the first "real" definition of the namespace "std", so update
3341 // our cache of the "std" namespace to point at this definition.
3342 if (StdNamespace) {
3343 // We had already defined a dummy namespace "std". Link this new
3344 // namespace definition to the dummy namespace "std".
3345 StdNamespace->setNextNamespace(Namespc);
3346 StdNamespace->setLocation(IdentLoc);
3347 Namespc->setOriginalNamespace(StdNamespace->getOriginalNamespace());
3348 }
3349
3350 // Make our StdNamespace cache point at the first real definition of the
3351 // "std" namespace.
3352 StdNamespace = Namespc;
Mike Stump1eb44332009-09-09 15:08:12 +00003353 }
Douglas Gregor44b43212008-12-11 16:49:14 +00003354
3355 PushOnScopeChains(Namespc, DeclRegionScope);
3356 } else {
John McCall9aeed322009-10-01 00:25:31 +00003357 // Anonymous namespaces.
John McCall5fdd7642009-12-16 02:06:49 +00003358 assert(Namespc->isAnonymousNamespace());
John McCall5fdd7642009-12-16 02:06:49 +00003359
3360 // Link the anonymous namespace into its parent.
3361 NamespaceDecl *PrevDecl;
3362 DeclContext *Parent = CurContext->getLookupContext();
3363 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
3364 PrevDecl = TU->getAnonymousNamespace();
3365 TU->setAnonymousNamespace(Namespc);
3366 } else {
3367 NamespaceDecl *ND = cast<NamespaceDecl>(Parent);
3368 PrevDecl = ND->getAnonymousNamespace();
3369 ND->setAnonymousNamespace(Namespc);
3370 }
3371
3372 // Link the anonymous namespace with its previous declaration.
3373 if (PrevDecl) {
3374 assert(PrevDecl->isAnonymousNamespace());
3375 assert(!PrevDecl->getNextNamespace());
3376 Namespc->setOriginalNamespace(PrevDecl->getOriginalNamespace());
3377 PrevDecl->setNextNamespace(Namespc);
3378 }
John McCall9aeed322009-10-01 00:25:31 +00003379
Douglas Gregora4181472010-03-24 00:46:35 +00003380 CurContext->addDecl(Namespc);
3381
John McCall9aeed322009-10-01 00:25:31 +00003382 // C++ [namespace.unnamed]p1. An unnamed-namespace-definition
3383 // behaves as if it were replaced by
3384 // namespace unique { /* empty body */ }
3385 // using namespace unique;
3386 // namespace unique { namespace-body }
3387 // where all occurrences of 'unique' in a translation unit are
3388 // replaced by the same identifier and this identifier differs
3389 // from all other identifiers in the entire program.
3390
3391 // We just create the namespace with an empty name and then add an
3392 // implicit using declaration, just like the standard suggests.
3393 //
3394 // CodeGen enforces the "universally unique" aspect by giving all
3395 // declarations semantically contained within an anonymous
3396 // namespace internal linkage.
3397
John McCall5fdd7642009-12-16 02:06:49 +00003398 if (!PrevDecl) {
3399 UsingDirectiveDecl* UD
3400 = UsingDirectiveDecl::Create(Context, CurContext,
3401 /* 'using' */ LBrace,
3402 /* 'namespace' */ SourceLocation(),
3403 /* qualifier */ SourceRange(),
3404 /* NNS */ NULL,
3405 /* identifier */ SourceLocation(),
3406 Namespc,
3407 /* Ancestor */ CurContext);
3408 UD->setImplicit();
3409 CurContext->addDecl(UD);
3410 }
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003411 }
3412
3413 // Although we could have an invalid decl (i.e. the namespace name is a
3414 // redefinition), push it as current DeclContext and try to continue parsing.
Mike Stump390b4cc2009-05-16 07:39:55 +00003415 // FIXME: We should be able to push Namespc here, so that the each DeclContext
3416 // for the namespace has the declarations that showed up in that particular
3417 // namespace definition.
Douglas Gregor44b43212008-12-11 16:49:14 +00003418 PushDeclContext(NamespcScope, Namespc);
Chris Lattnerb28317a2009-03-28 19:18:32 +00003419 return DeclPtrTy::make(Namespc);
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003420}
3421
Sebastian Redleb0d8c92009-11-23 15:34:23 +00003422/// getNamespaceDecl - Returns the namespace a decl represents. If the decl
3423/// is a namespace alias, returns the namespace it points to.
3424static inline NamespaceDecl *getNamespaceDecl(NamedDecl *D) {
3425 if (NamespaceAliasDecl *AD = dyn_cast_or_null<NamespaceAliasDecl>(D))
3426 return AD->getNamespace();
3427 return dyn_cast_or_null<NamespaceDecl>(D);
3428}
3429
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003430/// ActOnFinishNamespaceDef - This callback is called after a namespace is
3431/// exited. Decl is the DeclTy returned by ActOnStartNamespaceDef.
Chris Lattnerb28317a2009-03-28 19:18:32 +00003432void Sema::ActOnFinishNamespaceDef(DeclPtrTy D, SourceLocation RBrace) {
3433 Decl *Dcl = D.getAs<Decl>();
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00003434 NamespaceDecl *Namespc = dyn_cast_or_null<NamespaceDecl>(Dcl);
3435 assert(Namespc && "Invalid parameter, expected NamespaceDecl");
3436 Namespc->setRBracLoc(RBrace);
3437 PopDeclContext();
3438}
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00003439
Chris Lattnerb28317a2009-03-28 19:18:32 +00003440Sema::DeclPtrTy Sema::ActOnUsingDirective(Scope *S,
3441 SourceLocation UsingLoc,
3442 SourceLocation NamespcLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00003443 CXXScopeSpec &SS,
Chris Lattnerb28317a2009-03-28 19:18:32 +00003444 SourceLocation IdentLoc,
3445 IdentifierInfo *NamespcName,
3446 AttributeList *AttrList) {
Douglas Gregorf780abc2008-12-30 03:27:21 +00003447 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
3448 assert(NamespcName && "Invalid NamespcName.");
3449 assert(IdentLoc.isValid() && "Invalid NamespceName location.");
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003450 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Douglas Gregorf780abc2008-12-30 03:27:21 +00003451
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003452 UsingDirectiveDecl *UDir = 0;
Douglas Gregorf780abc2008-12-30 03:27:21 +00003453
Douglas Gregoreb11cd02009-01-14 22:20:51 +00003454 // Lookup namespace name.
John McCalla24dc2e2009-11-17 02:14:36 +00003455 LookupResult R(*this, NamespcName, IdentLoc, LookupNamespaceName);
3456 LookupParsedName(R, S, &SS);
3457 if (R.isAmbiguous())
Chris Lattnerb28317a2009-03-28 19:18:32 +00003458 return DeclPtrTy();
John McCalla24dc2e2009-11-17 02:14:36 +00003459
John McCallf36e02d2009-10-09 21:13:30 +00003460 if (!R.empty()) {
Sebastian Redleb0d8c92009-11-23 15:34:23 +00003461 NamedDecl *Named = R.getFoundDecl();
3462 assert((isa<NamespaceDecl>(Named) || isa<NamespaceAliasDecl>(Named))
3463 && "expected namespace decl");
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003464 // C++ [namespace.udir]p1:
3465 // A using-directive specifies that the names in the nominated
3466 // namespace can be used in the scope in which the
3467 // using-directive appears after the using-directive. During
3468 // unqualified name lookup (3.4.1), the names appear as if they
3469 // were declared in the nearest enclosing namespace which
3470 // contains both the using-directive and the nominated
Eli Friedman33a31382009-08-05 19:21:58 +00003471 // namespace. [Note: in this context, "contains" means "contains
3472 // directly or indirectly". ]
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003473
3474 // Find enclosing context containing both using-directive and
3475 // nominated namespace.
Sebastian Redleb0d8c92009-11-23 15:34:23 +00003476 NamespaceDecl *NS = getNamespaceDecl(Named);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003477 DeclContext *CommonAncestor = cast<DeclContext>(NS);
3478 while (CommonAncestor && !CommonAncestor->Encloses(CurContext))
3479 CommonAncestor = CommonAncestor->getParent();
3480
Sebastian Redleb0d8c92009-11-23 15:34:23 +00003481 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc,
Douglas Gregor8419fa32009-05-30 06:31:56 +00003482 SS.getRange(),
3483 (NestedNameSpecifier *)SS.getScopeRep(),
Sebastian Redleb0d8c92009-11-23 15:34:23 +00003484 IdentLoc, Named, CommonAncestor);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003485 PushUsingDirective(S, UDir);
Douglas Gregorf780abc2008-12-30 03:27:21 +00003486 } else {
Chris Lattneread013e2009-01-06 07:24:29 +00003487 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
Douglas Gregorf780abc2008-12-30 03:27:21 +00003488 }
3489
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003490 // FIXME: We ignore attributes for now.
Douglas Gregorf780abc2008-12-30 03:27:21 +00003491 delete AttrList;
Chris Lattnerb28317a2009-03-28 19:18:32 +00003492 return DeclPtrTy::make(UDir);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003493}
3494
3495void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) {
3496 // If scope has associated entity, then using directive is at namespace
3497 // or translation unit scope. We add UsingDirectiveDecls, into
3498 // it's lookup structure.
3499 if (DeclContext *Ctx = static_cast<DeclContext*>(S->getEntity()))
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003500 Ctx->addDecl(UDir);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00003501 else
3502 // Otherwise it is block-sope. using-directives will affect lookup
3503 // only to the end of scope.
Chris Lattnerb28317a2009-03-28 19:18:32 +00003504 S->PushUsingDirective(DeclPtrTy::make(UDir));
Douglas Gregorf780abc2008-12-30 03:27:21 +00003505}
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00003506
Douglas Gregor9cfbe482009-06-20 00:51:54 +00003507
3508Sema::DeclPtrTy Sema::ActOnUsingDeclaration(Scope *S,
Anders Carlsson595adc12009-08-29 19:54:19 +00003509 AccessSpecifier AS,
John McCall60fa3cf2009-12-11 02:10:03 +00003510 bool HasUsingKeyword,
Anders Carlssoncf9f9212009-08-28 03:16:11 +00003511 SourceLocation UsingLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00003512 CXXScopeSpec &SS,
Douglas Gregor12c118a2009-11-04 16:30:06 +00003513 UnqualifiedId &Name,
Anders Carlssoncf9f9212009-08-28 03:16:11 +00003514 AttributeList *AttrList,
John McCall7ba107a2009-11-18 02:36:19 +00003515 bool IsTypeName,
3516 SourceLocation TypenameLoc) {
Douglas Gregor9cfbe482009-06-20 00:51:54 +00003517 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Mike Stump1eb44332009-09-09 15:08:12 +00003518
Douglas Gregor12c118a2009-11-04 16:30:06 +00003519 switch (Name.getKind()) {
3520 case UnqualifiedId::IK_Identifier:
3521 case UnqualifiedId::IK_OperatorFunctionId:
Sean Hunt0486d742009-11-28 04:44:28 +00003522 case UnqualifiedId::IK_LiteralOperatorId:
Douglas Gregor12c118a2009-11-04 16:30:06 +00003523 case UnqualifiedId::IK_ConversionFunctionId:
3524 break;
3525
3526 case UnqualifiedId::IK_ConstructorName:
Douglas Gregor0efc2c12010-01-13 17:31:36 +00003527 case UnqualifiedId::IK_ConstructorTemplateId:
John McCall604e7f12009-12-08 07:46:18 +00003528 // C++0x inherited constructors.
3529 if (getLangOptions().CPlusPlus0x) break;
3530
Douglas Gregor12c118a2009-11-04 16:30:06 +00003531 Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_constructor)
3532 << SS.getRange();
3533 return DeclPtrTy();
3534
3535 case UnqualifiedId::IK_DestructorName:
3536 Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_destructor)
3537 << SS.getRange();
3538 return DeclPtrTy();
3539
3540 case UnqualifiedId::IK_TemplateId:
3541 Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_template_id)
3542 << SourceRange(Name.TemplateId->LAngleLoc, Name.TemplateId->RAngleLoc);
3543 return DeclPtrTy();
3544 }
3545
3546 DeclarationName TargetName = GetNameFromUnqualifiedId(Name);
John McCall604e7f12009-12-08 07:46:18 +00003547 if (!TargetName)
3548 return DeclPtrTy();
3549
John McCall60fa3cf2009-12-11 02:10:03 +00003550 // Warn about using declarations.
3551 // TODO: store that the declaration was written without 'using' and
3552 // talk about access decls instead of using decls in the
3553 // diagnostics.
3554 if (!HasUsingKeyword) {
3555 UsingLoc = Name.getSourceRange().getBegin();
3556
3557 Diag(UsingLoc, diag::warn_access_decl_deprecated)
Douglas Gregor849b2432010-03-31 17:46:05 +00003558 << FixItHint::CreateInsertion(SS.getRange().getBegin(), "using ");
John McCall60fa3cf2009-12-11 02:10:03 +00003559 }
3560
John McCall9488ea12009-11-17 05:59:44 +00003561 NamedDecl *UD = BuildUsingDeclaration(S, AS, UsingLoc, SS,
Douglas Gregor12c118a2009-11-04 16:30:06 +00003562 Name.getSourceRange().getBegin(),
John McCall7ba107a2009-11-18 02:36:19 +00003563 TargetName, AttrList,
3564 /* IsInstantiation */ false,
3565 IsTypeName, TypenameLoc);
John McCalled976492009-12-04 22:46:56 +00003566 if (UD)
3567 PushOnScopeChains(UD, S, /*AddToContext*/ false);
Mike Stump1eb44332009-09-09 15:08:12 +00003568
Anders Carlssonc72160b2009-08-28 05:40:36 +00003569 return DeclPtrTy::make(UD);
3570}
3571
John McCall9f54ad42009-12-10 09:41:52 +00003572/// Determines whether to create a using shadow decl for a particular
3573/// decl, given the set of decls existing prior to this using lookup.
3574bool Sema::CheckUsingShadowDecl(UsingDecl *Using, NamedDecl *Orig,
3575 const LookupResult &Previous) {
3576 // Diagnose finding a decl which is not from a base class of the
3577 // current class. We do this now because there are cases where this
3578 // function will silently decide not to build a shadow decl, which
3579 // will pre-empt further diagnostics.
3580 //
3581 // We don't need to do this in C++0x because we do the check once on
3582 // the qualifier.
3583 //
3584 // FIXME: diagnose the following if we care enough:
3585 // struct A { int foo; };
3586 // struct B : A { using A::foo; };
3587 // template <class T> struct C : A {};
3588 // template <class T> struct D : C<T> { using B::foo; } // <---
3589 // This is invalid (during instantiation) in C++03 because B::foo
3590 // resolves to the using decl in B, which is not a base class of D<T>.
3591 // We can't diagnose it immediately because C<T> is an unknown
3592 // specialization. The UsingShadowDecl in D<T> then points directly
3593 // to A::foo, which will look well-formed when we instantiate.
3594 // The right solution is to not collapse the shadow-decl chain.
3595 if (!getLangOptions().CPlusPlus0x && CurContext->isRecord()) {
3596 DeclContext *OrigDC = Orig->getDeclContext();
3597
3598 // Handle enums and anonymous structs.
3599 if (isa<EnumDecl>(OrigDC)) OrigDC = OrigDC->getParent();
3600 CXXRecordDecl *OrigRec = cast<CXXRecordDecl>(OrigDC);
3601 while (OrigRec->isAnonymousStructOrUnion())
3602 OrigRec = cast<CXXRecordDecl>(OrigRec->getDeclContext());
3603
3604 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(OrigRec)) {
3605 if (OrigDC == CurContext) {
3606 Diag(Using->getLocation(),
3607 diag::err_using_decl_nested_name_specifier_is_current_class)
3608 << Using->getNestedNameRange();
3609 Diag(Orig->getLocation(), diag::note_using_decl_target);
3610 return true;
3611 }
3612
3613 Diag(Using->getNestedNameRange().getBegin(),
3614 diag::err_using_decl_nested_name_specifier_is_not_base_class)
3615 << Using->getTargetNestedNameDecl()
3616 << cast<CXXRecordDecl>(CurContext)
3617 << Using->getNestedNameRange();
3618 Diag(Orig->getLocation(), diag::note_using_decl_target);
3619 return true;
3620 }
3621 }
3622
3623 if (Previous.empty()) return false;
3624
3625 NamedDecl *Target = Orig;
3626 if (isa<UsingShadowDecl>(Target))
3627 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
3628
John McCalld7533ec2009-12-11 02:33:26 +00003629 // If the target happens to be one of the previous declarations, we
3630 // don't have a conflict.
3631 //
3632 // FIXME: but we might be increasing its access, in which case we
3633 // should redeclare it.
3634 NamedDecl *NonTag = 0, *Tag = 0;
3635 for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
3636 I != E; ++I) {
3637 NamedDecl *D = (*I)->getUnderlyingDecl();
3638 if (D->getCanonicalDecl() == Target->getCanonicalDecl())
3639 return false;
3640
3641 (isa<TagDecl>(D) ? Tag : NonTag) = D;
3642 }
3643
John McCall9f54ad42009-12-10 09:41:52 +00003644 if (Target->isFunctionOrFunctionTemplate()) {
3645 FunctionDecl *FD;
3646 if (isa<FunctionTemplateDecl>(Target))
3647 FD = cast<FunctionTemplateDecl>(Target)->getTemplatedDecl();
3648 else
3649 FD = cast<FunctionDecl>(Target);
3650
3651 NamedDecl *OldDecl = 0;
3652 switch (CheckOverload(FD, Previous, OldDecl)) {
3653 case Ovl_Overload:
3654 return false;
3655
3656 case Ovl_NonFunction:
John McCall41ce66f2009-12-10 19:51:03 +00003657 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00003658 break;
3659
3660 // We found a decl with the exact signature.
3661 case Ovl_Match:
3662 if (isa<UsingShadowDecl>(OldDecl)) {
3663 // Silently ignore the possible conflict.
3664 return false;
3665 }
3666
3667 // If we're in a record, we want to hide the target, so we
3668 // return true (without a diagnostic) to tell the caller not to
3669 // build a shadow decl.
3670 if (CurContext->isRecord())
3671 return true;
3672
3673 // If we're not in a record, this is an error.
John McCall41ce66f2009-12-10 19:51:03 +00003674 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00003675 break;
3676 }
3677
3678 Diag(Target->getLocation(), diag::note_using_decl_target);
3679 Diag(OldDecl->getLocation(), diag::note_using_decl_conflict);
3680 return true;
3681 }
3682
3683 // Target is not a function.
3684
John McCall9f54ad42009-12-10 09:41:52 +00003685 if (isa<TagDecl>(Target)) {
3686 // No conflict between a tag and a non-tag.
3687 if (!Tag) return false;
3688
John McCall41ce66f2009-12-10 19:51:03 +00003689 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00003690 Diag(Target->getLocation(), diag::note_using_decl_target);
3691 Diag(Tag->getLocation(), diag::note_using_decl_conflict);
3692 return true;
3693 }
3694
3695 // No conflict between a tag and a non-tag.
3696 if (!NonTag) return false;
3697
John McCall41ce66f2009-12-10 19:51:03 +00003698 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall9f54ad42009-12-10 09:41:52 +00003699 Diag(Target->getLocation(), diag::note_using_decl_target);
3700 Diag(NonTag->getLocation(), diag::note_using_decl_conflict);
3701 return true;
3702}
3703
John McCall9488ea12009-11-17 05:59:44 +00003704/// Builds a shadow declaration corresponding to a 'using' declaration.
John McCall604e7f12009-12-08 07:46:18 +00003705UsingShadowDecl *Sema::BuildUsingShadowDecl(Scope *S,
John McCall604e7f12009-12-08 07:46:18 +00003706 UsingDecl *UD,
3707 NamedDecl *Orig) {
John McCall9488ea12009-11-17 05:59:44 +00003708
3709 // If we resolved to another shadow declaration, just coalesce them.
John McCall604e7f12009-12-08 07:46:18 +00003710 NamedDecl *Target = Orig;
3711 if (isa<UsingShadowDecl>(Target)) {
3712 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
3713 assert(!isa<UsingShadowDecl>(Target) && "nested shadow declaration");
John McCall9488ea12009-11-17 05:59:44 +00003714 }
3715
3716 UsingShadowDecl *Shadow
John McCall604e7f12009-12-08 07:46:18 +00003717 = UsingShadowDecl::Create(Context, CurContext,
3718 UD->getLocation(), UD, Target);
John McCall9488ea12009-11-17 05:59:44 +00003719 UD->addShadowDecl(Shadow);
3720
3721 if (S)
John McCall604e7f12009-12-08 07:46:18 +00003722 PushOnScopeChains(Shadow, S);
John McCall9488ea12009-11-17 05:59:44 +00003723 else
John McCall604e7f12009-12-08 07:46:18 +00003724 CurContext->addDecl(Shadow);
John McCall9f54ad42009-12-10 09:41:52 +00003725 Shadow->setAccess(UD->getAccess());
John McCall9488ea12009-11-17 05:59:44 +00003726
John McCall32daa422010-03-31 01:36:47 +00003727 // Register it as a conversion if appropriate.
3728 if (Shadow->getDeclName().getNameKind()
3729 == DeclarationName::CXXConversionFunctionName)
3730 cast<CXXRecordDecl>(CurContext)->addConversionFunction(Shadow);
3731
John McCall604e7f12009-12-08 07:46:18 +00003732 if (Orig->isInvalidDecl() || UD->isInvalidDecl())
3733 Shadow->setInvalidDecl();
3734
John McCall9f54ad42009-12-10 09:41:52 +00003735 return Shadow;
3736}
John McCall604e7f12009-12-08 07:46:18 +00003737
John McCall9f54ad42009-12-10 09:41:52 +00003738/// Hides a using shadow declaration. This is required by the current
3739/// using-decl implementation when a resolvable using declaration in a
3740/// class is followed by a declaration which would hide or override
3741/// one or more of the using decl's targets; for example:
3742///
3743/// struct Base { void foo(int); };
3744/// struct Derived : Base {
3745/// using Base::foo;
3746/// void foo(int);
3747/// };
3748///
3749/// The governing language is C++03 [namespace.udecl]p12:
3750///
3751/// When a using-declaration brings names from a base class into a
3752/// derived class scope, member functions in the derived class
3753/// override and/or hide member functions with the same name and
3754/// parameter types in a base class (rather than conflicting).
3755///
3756/// There are two ways to implement this:
3757/// (1) optimistically create shadow decls when they're not hidden
3758/// by existing declarations, or
3759/// (2) don't create any shadow decls (or at least don't make them
3760/// visible) until we've fully parsed/instantiated the class.
3761/// The problem with (1) is that we might have to retroactively remove
3762/// a shadow decl, which requires several O(n) operations because the
3763/// decl structures are (very reasonably) not designed for removal.
3764/// (2) avoids this but is very fiddly and phase-dependent.
3765void Sema::HideUsingShadowDecl(Scope *S, UsingShadowDecl *Shadow) {
John McCall32daa422010-03-31 01:36:47 +00003766 if (Shadow->getDeclName().getNameKind() ==
3767 DeclarationName::CXXConversionFunctionName)
3768 cast<CXXRecordDecl>(Shadow->getDeclContext())->removeConversion(Shadow);
3769
John McCall9f54ad42009-12-10 09:41:52 +00003770 // Remove it from the DeclContext...
3771 Shadow->getDeclContext()->removeDecl(Shadow);
John McCall604e7f12009-12-08 07:46:18 +00003772
John McCall9f54ad42009-12-10 09:41:52 +00003773 // ...and the scope, if applicable...
3774 if (S) {
3775 S->RemoveDecl(DeclPtrTy::make(static_cast<Decl*>(Shadow)));
3776 IdResolver.RemoveDecl(Shadow);
John McCall604e7f12009-12-08 07:46:18 +00003777 }
3778
John McCall9f54ad42009-12-10 09:41:52 +00003779 // ...and the using decl.
3780 Shadow->getUsingDecl()->removeShadowDecl(Shadow);
3781
3782 // TODO: complain somehow if Shadow was used. It shouldn't
John McCall32daa422010-03-31 01:36:47 +00003783 // be possible for this to happen, because...?
John McCall9488ea12009-11-17 05:59:44 +00003784}
3785
John McCall7ba107a2009-11-18 02:36:19 +00003786/// Builds a using declaration.
3787///
3788/// \param IsInstantiation - Whether this call arises from an
3789/// instantiation of an unresolved using declaration. We treat
3790/// the lookup differently for these declarations.
John McCall9488ea12009-11-17 05:59:44 +00003791NamedDecl *Sema::BuildUsingDeclaration(Scope *S, AccessSpecifier AS,
3792 SourceLocation UsingLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00003793 CXXScopeSpec &SS,
Anders Carlssonc72160b2009-08-28 05:40:36 +00003794 SourceLocation IdentLoc,
3795 DeclarationName Name,
3796 AttributeList *AttrList,
John McCall7ba107a2009-11-18 02:36:19 +00003797 bool IsInstantiation,
3798 bool IsTypeName,
3799 SourceLocation TypenameLoc) {
Anders Carlssonc72160b2009-08-28 05:40:36 +00003800 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
3801 assert(IdentLoc.isValid() && "Invalid TargetName location.");
Eli Friedman2a16a132009-08-27 05:09:36 +00003802
Anders Carlsson550b14b2009-08-28 05:49:21 +00003803 // FIXME: We ignore attributes for now.
3804 delete AttrList;
Mike Stump1eb44332009-09-09 15:08:12 +00003805
Anders Carlssoncf9f9212009-08-28 03:16:11 +00003806 if (SS.isEmpty()) {
3807 Diag(IdentLoc, diag::err_using_requires_qualname);
Anders Carlssonc72160b2009-08-28 05:40:36 +00003808 return 0;
Anders Carlssoncf9f9212009-08-28 03:16:11 +00003809 }
Mike Stump1eb44332009-09-09 15:08:12 +00003810
John McCall9f54ad42009-12-10 09:41:52 +00003811 // Do the redeclaration lookup in the current scope.
3812 LookupResult Previous(*this, Name, IdentLoc, LookupUsingDeclName,
3813 ForRedeclaration);
3814 Previous.setHideTags(false);
3815 if (S) {
3816 LookupName(Previous, S);
3817
3818 // It is really dumb that we have to do this.
3819 LookupResult::Filter F = Previous.makeFilter();
3820 while (F.hasNext()) {
3821 NamedDecl *D = F.next();
3822 if (!isDeclInScope(D, CurContext, S))
3823 F.erase();
3824 }
3825 F.done();
3826 } else {
3827 assert(IsInstantiation && "no scope in non-instantiation");
3828 assert(CurContext->isRecord() && "scope not record in instantiation");
3829 LookupQualifiedName(Previous, CurContext);
3830 }
3831
Mike Stump1eb44332009-09-09 15:08:12 +00003832 NestedNameSpecifier *NNS =
Anders Carlssoncf9f9212009-08-28 03:16:11 +00003833 static_cast<NestedNameSpecifier *>(SS.getScopeRep());
3834
John McCall9f54ad42009-12-10 09:41:52 +00003835 // Check for invalid redeclarations.
3836 if (CheckUsingDeclRedeclaration(UsingLoc, IsTypeName, SS, IdentLoc, Previous))
3837 return 0;
3838
3839 // Check for bad qualifiers.
John McCalled976492009-12-04 22:46:56 +00003840 if (CheckUsingDeclQualifier(UsingLoc, SS, IdentLoc))
3841 return 0;
3842
John McCallaf8e6ed2009-11-12 03:15:40 +00003843 DeclContext *LookupContext = computeDeclContext(SS);
John McCalled976492009-12-04 22:46:56 +00003844 NamedDecl *D;
John McCallaf8e6ed2009-11-12 03:15:40 +00003845 if (!LookupContext) {
John McCall7ba107a2009-11-18 02:36:19 +00003846 if (IsTypeName) {
John McCalled976492009-12-04 22:46:56 +00003847 // FIXME: not all declaration name kinds are legal here
3848 D = UnresolvedUsingTypenameDecl::Create(Context, CurContext,
3849 UsingLoc, TypenameLoc,
3850 SS.getRange(), NNS,
John McCall7ba107a2009-11-18 02:36:19 +00003851 IdentLoc, Name);
John McCalled976492009-12-04 22:46:56 +00003852 } else {
3853 D = UnresolvedUsingValueDecl::Create(Context, CurContext,
3854 UsingLoc, SS.getRange(), NNS,
3855 IdentLoc, Name);
John McCall7ba107a2009-11-18 02:36:19 +00003856 }
John McCalled976492009-12-04 22:46:56 +00003857 } else {
3858 D = UsingDecl::Create(Context, CurContext, IdentLoc,
3859 SS.getRange(), UsingLoc, NNS, Name,
3860 IsTypeName);
Anders Carlsson550b14b2009-08-28 05:49:21 +00003861 }
John McCalled976492009-12-04 22:46:56 +00003862 D->setAccess(AS);
3863 CurContext->addDecl(D);
3864
3865 if (!LookupContext) return D;
3866 UsingDecl *UD = cast<UsingDecl>(D);
Mike Stump1eb44332009-09-09 15:08:12 +00003867
John McCall77bb1aa2010-05-01 00:40:08 +00003868 if (RequireCompleteDeclContext(SS, LookupContext)) {
John McCall604e7f12009-12-08 07:46:18 +00003869 UD->setInvalidDecl();
3870 return UD;
Anders Carlssoncf9f9212009-08-28 03:16:11 +00003871 }
3872
John McCall604e7f12009-12-08 07:46:18 +00003873 // Look up the target name.
3874
John McCalla24dc2e2009-11-17 02:14:36 +00003875 LookupResult R(*this, Name, IdentLoc, LookupOrdinaryName);
John McCall7ba107a2009-11-18 02:36:19 +00003876
John McCall604e7f12009-12-08 07:46:18 +00003877 // Unlike most lookups, we don't always want to hide tag
3878 // declarations: tag names are visible through the using declaration
3879 // even if hidden by ordinary names, *except* in a dependent context
3880 // where it's important for the sanity of two-phase lookup.
John McCall7ba107a2009-11-18 02:36:19 +00003881 if (!IsInstantiation)
3882 R.setHideTags(false);
John McCall9488ea12009-11-17 05:59:44 +00003883
John McCalla24dc2e2009-11-17 02:14:36 +00003884 LookupQualifiedName(R, LookupContext);
Mike Stump1eb44332009-09-09 15:08:12 +00003885
John McCallf36e02d2009-10-09 21:13:30 +00003886 if (R.empty()) {
Douglas Gregor3f093272009-10-13 21:16:44 +00003887 Diag(IdentLoc, diag::err_no_member)
3888 << Name << LookupContext << SS.getRange();
John McCalled976492009-12-04 22:46:56 +00003889 UD->setInvalidDecl();
3890 return UD;
Douglas Gregor9cfbe482009-06-20 00:51:54 +00003891 }
3892
John McCalled976492009-12-04 22:46:56 +00003893 if (R.isAmbiguous()) {
3894 UD->setInvalidDecl();
3895 return UD;
3896 }
Mike Stump1eb44332009-09-09 15:08:12 +00003897
John McCall7ba107a2009-11-18 02:36:19 +00003898 if (IsTypeName) {
3899 // If we asked for a typename and got a non-type decl, error out.
John McCalled976492009-12-04 22:46:56 +00003900 if (!R.getAsSingle<TypeDecl>()) {
John McCall7ba107a2009-11-18 02:36:19 +00003901 Diag(IdentLoc, diag::err_using_typename_non_type);
3902 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I)
3903 Diag((*I)->getUnderlyingDecl()->getLocation(),
3904 diag::note_using_decl_target);
John McCalled976492009-12-04 22:46:56 +00003905 UD->setInvalidDecl();
3906 return UD;
John McCall7ba107a2009-11-18 02:36:19 +00003907 }
3908 } else {
3909 // If we asked for a non-typename and we got a type, error out,
3910 // but only if this is an instantiation of an unresolved using
3911 // decl. Otherwise just silently find the type name.
John McCalled976492009-12-04 22:46:56 +00003912 if (IsInstantiation && R.getAsSingle<TypeDecl>()) {
John McCall7ba107a2009-11-18 02:36:19 +00003913 Diag(IdentLoc, diag::err_using_dependent_value_is_type);
3914 Diag(R.getFoundDecl()->getLocation(), diag::note_using_decl_target);
John McCalled976492009-12-04 22:46:56 +00003915 UD->setInvalidDecl();
3916 return UD;
John McCall7ba107a2009-11-18 02:36:19 +00003917 }
Anders Carlssoncf9f9212009-08-28 03:16:11 +00003918 }
3919
Anders Carlsson73b39cf2009-08-28 03:35:18 +00003920 // C++0x N2914 [namespace.udecl]p6:
3921 // A using-declaration shall not name a namespace.
John McCalled976492009-12-04 22:46:56 +00003922 if (R.getAsSingle<NamespaceDecl>()) {
Anders Carlsson73b39cf2009-08-28 03:35:18 +00003923 Diag(IdentLoc, diag::err_using_decl_can_not_refer_to_namespace)
3924 << SS.getRange();
John McCalled976492009-12-04 22:46:56 +00003925 UD->setInvalidDecl();
3926 return UD;
Anders Carlsson73b39cf2009-08-28 03:35:18 +00003927 }
Mike Stump1eb44332009-09-09 15:08:12 +00003928
John McCall9f54ad42009-12-10 09:41:52 +00003929 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) {
3930 if (!CheckUsingShadowDecl(UD, *I, Previous))
3931 BuildUsingShadowDecl(S, UD, *I);
3932 }
John McCall9488ea12009-11-17 05:59:44 +00003933
3934 return UD;
Douglas Gregor9cfbe482009-06-20 00:51:54 +00003935}
3936
John McCall9f54ad42009-12-10 09:41:52 +00003937/// Checks that the given using declaration is not an invalid
3938/// redeclaration. Note that this is checking only for the using decl
3939/// itself, not for any ill-formedness among the UsingShadowDecls.
3940bool Sema::CheckUsingDeclRedeclaration(SourceLocation UsingLoc,
3941 bool isTypeName,
3942 const CXXScopeSpec &SS,
3943 SourceLocation NameLoc,
3944 const LookupResult &Prev) {
3945 // C++03 [namespace.udecl]p8:
3946 // C++0x [namespace.udecl]p10:
3947 // A using-declaration is a declaration and can therefore be used
3948 // repeatedly where (and only where) multiple declarations are
3949 // allowed.
Douglas Gregora97badf2010-05-06 23:31:27 +00003950 //
3951 // That's in non-member contexts.
3952 if (!CurContext->getLookupContext()->isRecord())
John McCall9f54ad42009-12-10 09:41:52 +00003953 return false;
3954
3955 NestedNameSpecifier *Qual
3956 = static_cast<NestedNameSpecifier*>(SS.getScopeRep());
3957
3958 for (LookupResult::iterator I = Prev.begin(), E = Prev.end(); I != E; ++I) {
3959 NamedDecl *D = *I;
3960
3961 bool DTypename;
3962 NestedNameSpecifier *DQual;
3963 if (UsingDecl *UD = dyn_cast<UsingDecl>(D)) {
3964 DTypename = UD->isTypeName();
3965 DQual = UD->getTargetNestedNameDecl();
3966 } else if (UnresolvedUsingValueDecl *UD
3967 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
3968 DTypename = false;
3969 DQual = UD->getTargetNestedNameSpecifier();
3970 } else if (UnresolvedUsingTypenameDecl *UD
3971 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
3972 DTypename = true;
3973 DQual = UD->getTargetNestedNameSpecifier();
3974 } else continue;
3975
3976 // using decls differ if one says 'typename' and the other doesn't.
3977 // FIXME: non-dependent using decls?
3978 if (isTypeName != DTypename) continue;
3979
3980 // using decls differ if they name different scopes (but note that
3981 // template instantiation can cause this check to trigger when it
3982 // didn't before instantiation).
3983 if (Context.getCanonicalNestedNameSpecifier(Qual) !=
3984 Context.getCanonicalNestedNameSpecifier(DQual))
3985 continue;
3986
3987 Diag(NameLoc, diag::err_using_decl_redeclaration) << SS.getRange();
John McCall41ce66f2009-12-10 19:51:03 +00003988 Diag(D->getLocation(), diag::note_using_decl) << 1;
John McCall9f54ad42009-12-10 09:41:52 +00003989 return true;
3990 }
3991
3992 return false;
3993}
3994
John McCall604e7f12009-12-08 07:46:18 +00003995
John McCalled976492009-12-04 22:46:56 +00003996/// Checks that the given nested-name qualifier used in a using decl
3997/// in the current context is appropriately related to the current
3998/// scope. If an error is found, diagnoses it and returns true.
3999bool Sema::CheckUsingDeclQualifier(SourceLocation UsingLoc,
4000 const CXXScopeSpec &SS,
4001 SourceLocation NameLoc) {
John McCall604e7f12009-12-08 07:46:18 +00004002 DeclContext *NamedContext = computeDeclContext(SS);
John McCalled976492009-12-04 22:46:56 +00004003
John McCall604e7f12009-12-08 07:46:18 +00004004 if (!CurContext->isRecord()) {
4005 // C++03 [namespace.udecl]p3:
4006 // C++0x [namespace.udecl]p8:
4007 // A using-declaration for a class member shall be a member-declaration.
4008
4009 // If we weren't able to compute a valid scope, it must be a
4010 // dependent class scope.
4011 if (!NamedContext || NamedContext->isRecord()) {
4012 Diag(NameLoc, diag::err_using_decl_can_not_refer_to_class_member)
4013 << SS.getRange();
4014 return true;
4015 }
4016
4017 // Otherwise, everything is known to be fine.
4018 return false;
4019 }
4020
4021 // The current scope is a record.
4022
4023 // If the named context is dependent, we can't decide much.
4024 if (!NamedContext) {
4025 // FIXME: in C++0x, we can diagnose if we can prove that the
4026 // nested-name-specifier does not refer to a base class, which is
4027 // still possible in some cases.
4028
4029 // Otherwise we have to conservatively report that things might be
4030 // okay.
4031 return false;
4032 }
4033
4034 if (!NamedContext->isRecord()) {
4035 // Ideally this would point at the last name in the specifier,
4036 // but we don't have that level of source info.
4037 Diag(SS.getRange().getBegin(),
4038 diag::err_using_decl_nested_name_specifier_is_not_class)
4039 << (NestedNameSpecifier*) SS.getScopeRep() << SS.getRange();
4040 return true;
4041 }
4042
4043 if (getLangOptions().CPlusPlus0x) {
4044 // C++0x [namespace.udecl]p3:
4045 // In a using-declaration used as a member-declaration, the
4046 // nested-name-specifier shall name a base class of the class
4047 // being defined.
4048
4049 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(
4050 cast<CXXRecordDecl>(NamedContext))) {
4051 if (CurContext == NamedContext) {
4052 Diag(NameLoc,
4053 diag::err_using_decl_nested_name_specifier_is_current_class)
4054 << SS.getRange();
4055 return true;
4056 }
4057
4058 Diag(SS.getRange().getBegin(),
4059 diag::err_using_decl_nested_name_specifier_is_not_base_class)
4060 << (NestedNameSpecifier*) SS.getScopeRep()
4061 << cast<CXXRecordDecl>(CurContext)
4062 << SS.getRange();
4063 return true;
4064 }
4065
4066 return false;
4067 }
4068
4069 // C++03 [namespace.udecl]p4:
4070 // A using-declaration used as a member-declaration shall refer
4071 // to a member of a base class of the class being defined [etc.].
4072
4073 // Salient point: SS doesn't have to name a base class as long as
4074 // lookup only finds members from base classes. Therefore we can
4075 // diagnose here only if we can prove that that can't happen,
4076 // i.e. if the class hierarchies provably don't intersect.
4077
4078 // TODO: it would be nice if "definitely valid" results were cached
4079 // in the UsingDecl and UsingShadowDecl so that these checks didn't
4080 // need to be repeated.
4081
4082 struct UserData {
4083 llvm::DenseSet<const CXXRecordDecl*> Bases;
4084
4085 static bool collect(const CXXRecordDecl *Base, void *OpaqueData) {
4086 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
4087 Data->Bases.insert(Base);
4088 return true;
4089 }
4090
4091 bool hasDependentBases(const CXXRecordDecl *Class) {
4092 return !Class->forallBases(collect, this);
4093 }
4094
4095 /// Returns true if the base is dependent or is one of the
4096 /// accumulated base classes.
4097 static bool doesNotContain(const CXXRecordDecl *Base, void *OpaqueData) {
4098 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
4099 return !Data->Bases.count(Base);
4100 }
4101
4102 bool mightShareBases(const CXXRecordDecl *Class) {
4103 return Bases.count(Class) || !Class->forallBases(doesNotContain, this);
4104 }
4105 };
4106
4107 UserData Data;
4108
4109 // Returns false if we find a dependent base.
4110 if (Data.hasDependentBases(cast<CXXRecordDecl>(CurContext)))
4111 return false;
4112
4113 // Returns false if the class has a dependent base or if it or one
4114 // of its bases is present in the base set of the current context.
4115 if (Data.mightShareBases(cast<CXXRecordDecl>(NamedContext)))
4116 return false;
4117
4118 Diag(SS.getRange().getBegin(),
4119 diag::err_using_decl_nested_name_specifier_is_not_base_class)
4120 << (NestedNameSpecifier*) SS.getScopeRep()
4121 << cast<CXXRecordDecl>(CurContext)
4122 << SS.getRange();
4123
4124 return true;
John McCalled976492009-12-04 22:46:56 +00004125}
4126
Mike Stump1eb44332009-09-09 15:08:12 +00004127Sema::DeclPtrTy Sema::ActOnNamespaceAliasDef(Scope *S,
Anders Carlsson03bd5a12009-03-28 22:53:22 +00004128 SourceLocation NamespaceLoc,
Chris Lattnerb28317a2009-03-28 19:18:32 +00004129 SourceLocation AliasLoc,
4130 IdentifierInfo *Alias,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00004131 CXXScopeSpec &SS,
Anders Carlsson03bd5a12009-03-28 22:53:22 +00004132 SourceLocation IdentLoc,
4133 IdentifierInfo *Ident) {
Mike Stump1eb44332009-09-09 15:08:12 +00004134
Anders Carlsson81c85c42009-03-28 23:53:49 +00004135 // Lookup the namespace name.
John McCalla24dc2e2009-11-17 02:14:36 +00004136 LookupResult R(*this, Ident, IdentLoc, LookupNamespaceName);
4137 LookupParsedName(R, S, &SS);
Anders Carlsson81c85c42009-03-28 23:53:49 +00004138
Anders Carlsson8d7ba402009-03-28 06:23:46 +00004139 // Check if we have a previous declaration with the same name.
Douglas Gregorae374752010-05-03 15:37:31 +00004140 NamedDecl *PrevDecl
4141 = LookupSingleName(S, Alias, AliasLoc, LookupOrdinaryName,
4142 ForRedeclaration);
4143 if (PrevDecl && !isDeclInScope(PrevDecl, CurContext, S))
4144 PrevDecl = 0;
4145
4146 if (PrevDecl) {
Anders Carlsson81c85c42009-03-28 23:53:49 +00004147 if (NamespaceAliasDecl *AD = dyn_cast<NamespaceAliasDecl>(PrevDecl)) {
Mike Stump1eb44332009-09-09 15:08:12 +00004148 // We already have an alias with the same name that points to the same
Anders Carlsson81c85c42009-03-28 23:53:49 +00004149 // namespace, so don't create a new one.
Douglas Gregorc67b0322010-03-26 22:59:39 +00004150 // FIXME: At some point, we'll want to create the (redundant)
4151 // declaration to maintain better source information.
John McCallf36e02d2009-10-09 21:13:30 +00004152 if (!R.isAmbiguous() && !R.empty() &&
Douglas Gregorc67b0322010-03-26 22:59:39 +00004153 AD->getNamespace()->Equals(getNamespaceDecl(R.getFoundDecl())))
Anders Carlsson81c85c42009-03-28 23:53:49 +00004154 return DeclPtrTy();
4155 }
Mike Stump1eb44332009-09-09 15:08:12 +00004156
Anders Carlsson8d7ba402009-03-28 06:23:46 +00004157 unsigned DiagID = isa<NamespaceDecl>(PrevDecl) ? diag::err_redefinition :
4158 diag::err_redefinition_different_kind;
4159 Diag(AliasLoc, DiagID) << Alias;
4160 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Chris Lattnerb28317a2009-03-28 19:18:32 +00004161 return DeclPtrTy();
Anders Carlsson8d7ba402009-03-28 06:23:46 +00004162 }
4163
John McCalla24dc2e2009-11-17 02:14:36 +00004164 if (R.isAmbiguous())
Chris Lattnerb28317a2009-03-28 19:18:32 +00004165 return DeclPtrTy();
Mike Stump1eb44332009-09-09 15:08:12 +00004166
John McCallf36e02d2009-10-09 21:13:30 +00004167 if (R.empty()) {
Anders Carlsson5721c682009-03-28 06:42:02 +00004168 Diag(NamespaceLoc, diag::err_expected_namespace_name) << SS.getRange();
Chris Lattnerb28317a2009-03-28 19:18:32 +00004169 return DeclPtrTy();
Anders Carlsson5721c682009-03-28 06:42:02 +00004170 }
Mike Stump1eb44332009-09-09 15:08:12 +00004171
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00004172 NamespaceAliasDecl *AliasDecl =
Mike Stump1eb44332009-09-09 15:08:12 +00004173 NamespaceAliasDecl::Create(Context, CurContext, NamespaceLoc, AliasLoc,
4174 Alias, SS.getRange(),
Douglas Gregor6c9c9402009-05-30 06:48:27 +00004175 (NestedNameSpecifier *)SS.getScopeRep(),
John McCallf36e02d2009-10-09 21:13:30 +00004176 IdentLoc, R.getFoundDecl());
Mike Stump1eb44332009-09-09 15:08:12 +00004177
John McCall3dbd3d52010-02-16 06:53:13 +00004178 PushOnScopeChains(AliasDecl, S);
Anders Carlsson68771c72009-03-28 22:58:02 +00004179 return DeclPtrTy::make(AliasDecl);
Anders Carlssondbb00942009-03-28 05:27:17 +00004180}
4181
Douglas Gregor39957dc2010-05-01 15:04:51 +00004182namespace {
4183 /// \brief Scoped object used to handle the state changes required in Sema
4184 /// to implicitly define the body of a C++ member function;
4185 class ImplicitlyDefinedFunctionScope {
4186 Sema &S;
4187 DeclContext *PreviousContext;
4188
4189 public:
4190 ImplicitlyDefinedFunctionScope(Sema &S, CXXMethodDecl *Method)
4191 : S(S), PreviousContext(S.CurContext)
4192 {
4193 S.CurContext = Method;
4194 S.PushFunctionScope();
4195 S.PushExpressionEvaluationContext(Sema::PotentiallyEvaluated);
4196 }
4197
4198 ~ImplicitlyDefinedFunctionScope() {
4199 S.PopExpressionEvaluationContext();
4200 S.PopFunctionOrBlockScope();
4201 S.CurContext = PreviousContext;
4202 }
4203 };
4204}
4205
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00004206void Sema::DefineImplicitDefaultConstructor(SourceLocation CurrentLocation,
4207 CXXConstructorDecl *Constructor) {
Fariborz Jahanian05a5c452009-06-22 20:37:23 +00004208 assert((Constructor->isImplicit() && Constructor->isDefaultConstructor() &&
4209 !Constructor->isUsed()) &&
4210 "DefineImplicitDefaultConstructor - call it for implicit default ctor");
Mike Stump1eb44332009-09-09 15:08:12 +00004211
Anders Carlssonf6513ed2010-04-23 16:04:08 +00004212 CXXRecordDecl *ClassDecl = Constructor->getParent();
Eli Friedman80c30da2009-11-09 19:20:36 +00004213 assert(ClassDecl && "DefineImplicitDefaultConstructor - invalid constructor");
Eli Friedman49c16da2009-11-09 01:05:47 +00004214
Douglas Gregor39957dc2010-05-01 15:04:51 +00004215 ImplicitlyDefinedFunctionScope Scope(*this, Constructor);
Douglas Gregorc63d2c82010-05-12 16:39:35 +00004216 ErrorTrap Trap(*this);
4217 if (SetBaseOrMemberInitializers(Constructor, 0, 0, /*AnyErrors=*/false) ||
4218 Trap.hasErrorOccurred()) {
Anders Carlsson37909802009-11-30 21:24:50 +00004219 Diag(CurrentLocation, diag::note_member_synthesized_at)
Anders Carlsson3b8c53b2010-04-22 05:40:53 +00004220 << CXXConstructor << Context.getTagDeclType(ClassDecl);
Eli Friedman80c30da2009-11-09 19:20:36 +00004221 Constructor->setInvalidDecl();
4222 } else {
4223 Constructor->setUsed();
Douglas Gregor6fb745b2010-05-13 16:44:06 +00004224 MarkVTableUsed(CurrentLocation, ClassDecl);
Eli Friedman80c30da2009-11-09 19:20:36 +00004225 }
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00004226}
4227
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00004228void Sema::DefineImplicitDestructor(SourceLocation CurrentLocation,
Douglas Gregor4fe95f92009-09-04 19:04:08 +00004229 CXXDestructorDecl *Destructor) {
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00004230 assert((Destructor->isImplicit() && !Destructor->isUsed()) &&
4231 "DefineImplicitDestructor - call it for implicit default dtor");
Anders Carlsson6d701392009-11-15 22:49:34 +00004232 CXXRecordDecl *ClassDecl = Destructor->getParent();
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00004233 assert(ClassDecl && "DefineImplicitDestructor - invalid destructor");
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00004234
Douglas Gregorc63d2c82010-05-12 16:39:35 +00004235 if (Destructor->isInvalidDecl())
4236 return;
4237
Douglas Gregor39957dc2010-05-01 15:04:51 +00004238 ImplicitlyDefinedFunctionScope Scope(*this, Destructor);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00004239
Douglas Gregorc63d2c82010-05-12 16:39:35 +00004240 ErrorTrap Trap(*this);
John McCallef027fe2010-03-16 21:39:52 +00004241 MarkBaseAndMemberDestructorsReferenced(Destructor->getLocation(),
4242 Destructor->getParent());
Mike Stump1eb44332009-09-09 15:08:12 +00004243
Douglas Gregorc63d2c82010-05-12 16:39:35 +00004244 if (CheckDestructor(Destructor) || Trap.hasErrorOccurred()) {
Anders Carlsson37909802009-11-30 21:24:50 +00004245 Diag(CurrentLocation, diag::note_member_synthesized_at)
4246 << CXXDestructor << Context.getTagDeclType(ClassDecl);
4247
4248 Destructor->setInvalidDecl();
4249 return;
4250 }
4251
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00004252 Destructor->setUsed();
Douglas Gregor6fb745b2010-05-13 16:44:06 +00004253 MarkVTableUsed(CurrentLocation, ClassDecl);
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00004254}
4255
Douglas Gregor06a9f362010-05-01 20:49:11 +00004256/// \brief Builds a statement that copies the given entity from \p From to
4257/// \c To.
4258///
4259/// This routine is used to copy the members of a class with an
4260/// implicitly-declared copy assignment operator. When the entities being
4261/// copied are arrays, this routine builds for loops to copy them.
4262///
4263/// \param S The Sema object used for type-checking.
4264///
4265/// \param Loc The location where the implicit copy is being generated.
4266///
4267/// \param T The type of the expressions being copied. Both expressions must
4268/// have this type.
4269///
4270/// \param To The expression we are copying to.
4271///
4272/// \param From The expression we are copying from.
4273///
Douglas Gregor6cdc1612010-05-04 15:20:55 +00004274/// \param CopyingBaseSubobject Whether we're copying a base subobject.
4275/// Otherwise, it's a non-static member subobject.
4276///
Douglas Gregor06a9f362010-05-01 20:49:11 +00004277/// \param Depth Internal parameter recording the depth of the recursion.
4278///
4279/// \returns A statement or a loop that copies the expressions.
4280static Sema::OwningStmtResult
4281BuildSingleCopyAssign(Sema &S, SourceLocation Loc, QualType T,
4282 Sema::OwningExprResult To, Sema::OwningExprResult From,
Douglas Gregor6cdc1612010-05-04 15:20:55 +00004283 bool CopyingBaseSubobject, unsigned Depth = 0) {
Douglas Gregor06a9f362010-05-01 20:49:11 +00004284 typedef Sema::OwningStmtResult OwningStmtResult;
4285 typedef Sema::OwningExprResult OwningExprResult;
4286
4287 // C++0x [class.copy]p30:
4288 // Each subobject is assigned in the manner appropriate to its type:
4289 //
4290 // - if the subobject is of class type, the copy assignment operator
4291 // for the class is used (as if by explicit qualification; that is,
4292 // ignoring any possible virtual overriding functions in more derived
4293 // classes);
4294 if (const RecordType *RecordTy = T->getAs<RecordType>()) {
4295 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
4296
4297 // Look for operator=.
4298 DeclarationName Name
4299 = S.Context.DeclarationNames.getCXXOperatorName(OO_Equal);
4300 LookupResult OpLookup(S, Name, Loc, Sema::LookupOrdinaryName);
4301 S.LookupQualifiedName(OpLookup, ClassDecl, false);
4302
4303 // Filter out any result that isn't a copy-assignment operator.
4304 LookupResult::Filter F = OpLookup.makeFilter();
4305 while (F.hasNext()) {
4306 NamedDecl *D = F.next();
4307 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
4308 if (Method->isCopyAssignmentOperator())
4309 continue;
4310
4311 F.erase();
John McCallb0207482010-03-16 06:11:48 +00004312 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00004313 F.done();
4314
Douglas Gregor6cdc1612010-05-04 15:20:55 +00004315 // Suppress the protected check (C++ [class.protected]) for each of the
4316 // assignment operators we found. This strange dance is required when
4317 // we're assigning via a base classes's copy-assignment operator. To
4318 // ensure that we're getting the right base class subobject (without
4319 // ambiguities), we need to cast "this" to that subobject type; to
4320 // ensure that we don't go through the virtual call mechanism, we need
4321 // to qualify the operator= name with the base class (see below). However,
4322 // this means that if the base class has a protected copy assignment
4323 // operator, the protected member access check will fail. So, we
4324 // rewrite "protected" access to "public" access in this case, since we
4325 // know by construction that we're calling from a derived class.
4326 if (CopyingBaseSubobject) {
4327 for (LookupResult::iterator L = OpLookup.begin(), LEnd = OpLookup.end();
4328 L != LEnd; ++L) {
4329 if (L.getAccess() == AS_protected)
4330 L.setAccess(AS_public);
4331 }
4332 }
4333
Douglas Gregor06a9f362010-05-01 20:49:11 +00004334 // Create the nested-name-specifier that will be used to qualify the
4335 // reference to operator=; this is required to suppress the virtual
4336 // call mechanism.
4337 CXXScopeSpec SS;
4338 SS.setRange(Loc);
4339 SS.setScopeRep(NestedNameSpecifier::Create(S.Context, 0, false,
4340 T.getTypePtr()));
4341
4342 // Create the reference to operator=.
4343 OwningExprResult OpEqualRef
4344 = S.BuildMemberReferenceExpr(move(To), T, Loc, /*isArrow=*/false, SS,
4345 /*FirstQualifierInScope=*/0, OpLookup,
4346 /*TemplateArgs=*/0,
4347 /*SuppressQualifierCheck=*/true);
4348 if (OpEqualRef.isInvalid())
4349 return S.StmtError();
4350
4351 // Build the call to the assignment operator.
4352 Expr *FromE = From.takeAs<Expr>();
4353 OwningExprResult Call = S.BuildCallToMemberFunction(/*Scope=*/0,
4354 OpEqualRef.takeAs<Expr>(),
4355 Loc, &FromE, 1, 0, Loc);
4356 if (Call.isInvalid())
4357 return S.StmtError();
4358
4359 return S.Owned(Call.takeAs<Stmt>());
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00004360 }
John McCallb0207482010-03-16 06:11:48 +00004361
Douglas Gregor06a9f362010-05-01 20:49:11 +00004362 // - if the subobject is of scalar type, the built-in assignment
4363 // operator is used.
4364 const ConstantArrayType *ArrayTy = S.Context.getAsConstantArrayType(T);
4365 if (!ArrayTy) {
4366 OwningExprResult Assignment = S.CreateBuiltinBinOp(Loc,
4367 BinaryOperator::Assign,
4368 To.takeAs<Expr>(),
4369 From.takeAs<Expr>());
4370 if (Assignment.isInvalid())
4371 return S.StmtError();
4372
4373 return S.Owned(Assignment.takeAs<Stmt>());
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00004374 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00004375
4376 // - if the subobject is an array, each element is assigned, in the
4377 // manner appropriate to the element type;
4378
4379 // Construct a loop over the array bounds, e.g.,
4380 //
4381 // for (__SIZE_TYPE__ i0 = 0; i0 != array-size; ++i0)
4382 //
4383 // that will copy each of the array elements.
4384 QualType SizeType = S.Context.getSizeType();
4385
4386 // Create the iteration variable.
4387 IdentifierInfo *IterationVarName = 0;
4388 {
4389 llvm::SmallString<8> Str;
4390 llvm::raw_svector_ostream OS(Str);
4391 OS << "__i" << Depth;
4392 IterationVarName = &S.Context.Idents.get(OS.str());
4393 }
4394 VarDecl *IterationVar = VarDecl::Create(S.Context, S.CurContext, Loc,
4395 IterationVarName, SizeType,
4396 S.Context.getTrivialTypeSourceInfo(SizeType, Loc),
4397 VarDecl::None, VarDecl::None);
4398
4399 // Initialize the iteration variable to zero.
4400 llvm::APInt Zero(S.Context.getTypeSize(SizeType), 0);
4401 IterationVar->setInit(new (S.Context) IntegerLiteral(Zero, SizeType, Loc));
4402
4403 // Create a reference to the iteration variable; we'll use this several
4404 // times throughout.
4405 Expr *IterationVarRef
4406 = S.BuildDeclRefExpr(IterationVar, SizeType, Loc).takeAs<Expr>();
4407 assert(IterationVarRef && "Reference to invented variable cannot fail!");
4408
4409 // Create the DeclStmt that holds the iteration variable.
4410 Stmt *InitStmt = new (S.Context) DeclStmt(DeclGroupRef(IterationVar),Loc,Loc);
4411
4412 // Create the comparison against the array bound.
4413 llvm::APInt Upper = ArrayTy->getSize();
4414 Upper.zextOrTrunc(S.Context.getTypeSize(SizeType));
4415 OwningExprResult Comparison
4416 = S.Owned(new (S.Context) BinaryOperator(IterationVarRef->Retain(),
4417 new (S.Context) IntegerLiteral(Upper, SizeType, Loc),
4418 BinaryOperator::NE, S.Context.BoolTy, Loc));
4419
4420 // Create the pre-increment of the iteration variable.
4421 OwningExprResult Increment
4422 = S.Owned(new (S.Context) UnaryOperator(IterationVarRef->Retain(),
4423 UnaryOperator::PreInc,
4424 SizeType, Loc));
4425
4426 // Subscript the "from" and "to" expressions with the iteration variable.
4427 From = S.CreateBuiltinArraySubscriptExpr(move(From), Loc,
4428 S.Owned(IterationVarRef->Retain()),
4429 Loc);
4430 To = S.CreateBuiltinArraySubscriptExpr(move(To), Loc,
4431 S.Owned(IterationVarRef->Retain()),
4432 Loc);
4433 assert(!From.isInvalid() && "Builtin subscripting can't fail!");
4434 assert(!To.isInvalid() && "Builtin subscripting can't fail!");
4435
4436 // Build the copy for an individual element of the array.
4437 OwningStmtResult Copy = BuildSingleCopyAssign(S, Loc,
4438 ArrayTy->getElementType(),
Douglas Gregor6cdc1612010-05-04 15:20:55 +00004439 move(To), move(From),
4440 CopyingBaseSubobject, Depth+1);
Douglas Gregor06a9f362010-05-01 20:49:11 +00004441 if (Copy.isInvalid()) {
4442 InitStmt->Destroy(S.Context);
4443 return S.StmtError();
4444 }
4445
4446 // Construct the loop that copies all elements of this array.
4447 return S.ActOnForStmt(Loc, Loc, S.Owned(InitStmt),
4448 S.MakeFullExpr(Comparison),
4449 Sema::DeclPtrTy(),
4450 S.MakeFullExpr(Increment),
4451 Loc, move(Copy));
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00004452}
4453
Douglas Gregor06a9f362010-05-01 20:49:11 +00004454void Sema::DefineImplicitCopyAssignment(SourceLocation CurrentLocation,
4455 CXXMethodDecl *CopyAssignOperator) {
4456 assert((CopyAssignOperator->isImplicit() &&
4457 CopyAssignOperator->isOverloadedOperator() &&
4458 CopyAssignOperator->getOverloadedOperator() == OO_Equal &&
4459 !CopyAssignOperator->isUsed()) &&
4460 "DefineImplicitCopyAssignment called for wrong function");
4461
4462 CXXRecordDecl *ClassDecl = CopyAssignOperator->getParent();
4463
4464 if (ClassDecl->isInvalidDecl() || CopyAssignOperator->isInvalidDecl()) {
4465 CopyAssignOperator->setInvalidDecl();
4466 return;
4467 }
4468
4469 CopyAssignOperator->setUsed();
4470
4471 ImplicitlyDefinedFunctionScope Scope(*this, CopyAssignOperator);
Douglas Gregorc63d2c82010-05-12 16:39:35 +00004472 ErrorTrap Trap(*this);
Douglas Gregor06a9f362010-05-01 20:49:11 +00004473
4474 // C++0x [class.copy]p30:
4475 // The implicitly-defined or explicitly-defaulted copy assignment operator
4476 // for a non-union class X performs memberwise copy assignment of its
4477 // subobjects. The direct base classes of X are assigned first, in the
4478 // order of their declaration in the base-specifier-list, and then the
4479 // immediate non-static data members of X are assigned, in the order in
4480 // which they were declared in the class definition.
4481
4482 // The statements that form the synthesized function body.
4483 ASTOwningVector<&ActionBase::DeleteStmt> Statements(*this);
4484
4485 // The parameter for the "other" object, which we are copying from.
4486 ParmVarDecl *Other = CopyAssignOperator->getParamDecl(0);
4487 Qualifiers OtherQuals = Other->getType().getQualifiers();
4488 QualType OtherRefType = Other->getType();
4489 if (const LValueReferenceType *OtherRef
4490 = OtherRefType->getAs<LValueReferenceType>()) {
4491 OtherRefType = OtherRef->getPointeeType();
4492 OtherQuals = OtherRefType.getQualifiers();
4493 }
4494
4495 // Our location for everything implicitly-generated.
4496 SourceLocation Loc = CopyAssignOperator->getLocation();
4497
4498 // Construct a reference to the "other" object. We'll be using this
4499 // throughout the generated ASTs.
4500 Expr *OtherRef = BuildDeclRefExpr(Other, OtherRefType, Loc).takeAs<Expr>();
4501 assert(OtherRef && "Reference to parameter cannot fail!");
4502
4503 // Construct the "this" pointer. We'll be using this throughout the generated
4504 // ASTs.
4505 Expr *This = ActOnCXXThis(Loc).takeAs<Expr>();
4506 assert(This && "Reference to this cannot fail!");
4507
4508 // Assign base classes.
4509 bool Invalid = false;
4510 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
4511 E = ClassDecl->bases_end(); Base != E; ++Base) {
4512 // Form the assignment:
4513 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&>(other));
4514 QualType BaseType = Base->getType().getUnqualifiedType();
4515 CXXRecordDecl *BaseClassDecl = 0;
4516 if (const RecordType *BaseRecordT = BaseType->getAs<RecordType>())
4517 BaseClassDecl = cast<CXXRecordDecl>(BaseRecordT->getDecl());
4518 else {
4519 Invalid = true;
4520 continue;
4521 }
4522
4523 // Construct the "from" expression, which is an implicit cast to the
4524 // appropriately-qualified base type.
4525 Expr *From = OtherRef->Retain();
4526 ImpCastExprToType(From, Context.getQualifiedType(BaseType, OtherQuals),
4527 CastExpr::CK_UncheckedDerivedToBase, /*isLvalue=*/true,
4528 CXXBaseSpecifierArray(Base));
4529
4530 // Dereference "this".
4531 OwningExprResult To = CreateBuiltinUnaryOp(Loc, UnaryOperator::Deref,
4532 Owned(This->Retain()));
4533
4534 // Implicitly cast "this" to the appropriately-qualified base type.
4535 Expr *ToE = To.takeAs<Expr>();
4536 ImpCastExprToType(ToE,
4537 Context.getCVRQualifiedType(BaseType,
4538 CopyAssignOperator->getTypeQualifiers()),
4539 CastExpr::CK_UncheckedDerivedToBase,
4540 /*isLvalue=*/true, CXXBaseSpecifierArray(Base));
4541 To = Owned(ToE);
4542
4543 // Build the copy.
4544 OwningStmtResult Copy = BuildSingleCopyAssign(*this, Loc, BaseType,
Douglas Gregor6cdc1612010-05-04 15:20:55 +00004545 move(To), Owned(From),
4546 /*CopyingBaseSubobject=*/true);
Douglas Gregor06a9f362010-05-01 20:49:11 +00004547 if (Copy.isInvalid()) {
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00004548 Diag(CurrentLocation, diag::note_member_synthesized_at)
4549 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
4550 CopyAssignOperator->setInvalidDecl();
4551 return;
Douglas Gregor06a9f362010-05-01 20:49:11 +00004552 }
4553
4554 // Success! Record the copy.
4555 Statements.push_back(Copy.takeAs<Expr>());
4556 }
4557
4558 // \brief Reference to the __builtin_memcpy function.
4559 Expr *BuiltinMemCpyRef = 0;
4560
4561 // Assign non-static members.
4562 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
4563 FieldEnd = ClassDecl->field_end();
4564 Field != FieldEnd; ++Field) {
4565 // Check for members of reference type; we can't copy those.
4566 if (Field->getType()->isReferenceType()) {
4567 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
4568 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
4569 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00004570 Diag(CurrentLocation, diag::note_member_synthesized_at)
4571 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregor06a9f362010-05-01 20:49:11 +00004572 Invalid = true;
4573 continue;
4574 }
4575
4576 // Check for members of const-qualified, non-class type.
4577 QualType BaseType = Context.getBaseElementType(Field->getType());
4578 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) {
4579 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
4580 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
4581 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00004582 Diag(CurrentLocation, diag::note_member_synthesized_at)
4583 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregor06a9f362010-05-01 20:49:11 +00004584 Invalid = true;
4585 continue;
4586 }
4587
4588 QualType FieldType = Field->getType().getNonReferenceType();
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +00004589 if (FieldType->isIncompleteArrayType()) {
4590 assert(ClassDecl->hasFlexibleArrayMember() &&
4591 "Incomplete array type is not valid");
4592 continue;
4593 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00004594
4595 // Build references to the field in the object we're copying from and to.
4596 CXXScopeSpec SS; // Intentionally empty
4597 LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
4598 LookupMemberName);
4599 MemberLookup.addDecl(*Field);
4600 MemberLookup.resolveKind();
4601 OwningExprResult From = BuildMemberReferenceExpr(Owned(OtherRef->Retain()),
4602 OtherRefType,
4603 Loc, /*IsArrow=*/false,
4604 SS, 0, MemberLookup, 0);
4605 OwningExprResult To = BuildMemberReferenceExpr(Owned(This->Retain()),
4606 This->getType(),
4607 Loc, /*IsArrow=*/true,
4608 SS, 0, MemberLookup, 0);
4609 assert(!From.isInvalid() && "Implicit field reference cannot fail");
4610 assert(!To.isInvalid() && "Implicit field reference cannot fail");
4611
4612 // If the field should be copied with __builtin_memcpy rather than via
4613 // explicit assignments, do so. This optimization only applies for arrays
4614 // of scalars and arrays of class type with trivial copy-assignment
4615 // operators.
4616 if (FieldType->isArrayType() &&
4617 (!BaseType->isRecordType() ||
4618 cast<CXXRecordDecl>(BaseType->getAs<RecordType>()->getDecl())
4619 ->hasTrivialCopyAssignment())) {
4620 // Compute the size of the memory buffer to be copied.
4621 QualType SizeType = Context.getSizeType();
4622 llvm::APInt Size(Context.getTypeSize(SizeType),
4623 Context.getTypeSizeInChars(BaseType).getQuantity());
4624 for (const ConstantArrayType *Array
4625 = Context.getAsConstantArrayType(FieldType);
4626 Array;
4627 Array = Context.getAsConstantArrayType(Array->getElementType())) {
4628 llvm::APInt ArraySize = Array->getSize();
4629 ArraySize.zextOrTrunc(Size.getBitWidth());
4630 Size *= ArraySize;
4631 }
4632
4633 // Take the address of the field references for "from" and "to".
4634 From = CreateBuiltinUnaryOp(Loc, UnaryOperator::AddrOf, move(From));
4635 To = CreateBuiltinUnaryOp(Loc, UnaryOperator::AddrOf, move(To));
4636
4637 // Create a reference to the __builtin_memcpy builtin function.
4638 if (!BuiltinMemCpyRef) {
4639 LookupResult R(*this, &Context.Idents.get("__builtin_memcpy"), Loc,
4640 LookupOrdinaryName);
4641 LookupName(R, TUScope, true);
4642
4643 FunctionDecl *BuiltinMemCpy = R.getAsSingle<FunctionDecl>();
4644 if (!BuiltinMemCpy) {
4645 // Something went horribly wrong earlier, and we will have complained
4646 // about it.
4647 Invalid = true;
4648 continue;
4649 }
4650
4651 BuiltinMemCpyRef = BuildDeclRefExpr(BuiltinMemCpy,
4652 BuiltinMemCpy->getType(),
4653 Loc, 0).takeAs<Expr>();
4654 assert(BuiltinMemCpyRef && "Builtin reference cannot fail");
4655 }
4656
4657 ASTOwningVector<&ActionBase::DeleteExpr> CallArgs(*this);
4658 CallArgs.push_back(To.takeAs<Expr>());
4659 CallArgs.push_back(From.takeAs<Expr>());
4660 CallArgs.push_back(new (Context) IntegerLiteral(Size, SizeType, Loc));
4661 llvm::SmallVector<SourceLocation, 4> Commas; // FIXME: Silly
4662 Commas.push_back(Loc);
4663 Commas.push_back(Loc);
4664 OwningExprResult Call = ActOnCallExpr(/*Scope=*/0,
4665 Owned(BuiltinMemCpyRef->Retain()),
4666 Loc, move_arg(CallArgs),
4667 Commas.data(), Loc);
4668 assert(!Call.isInvalid() && "Call to __builtin_memcpy cannot fail!");
4669 Statements.push_back(Call.takeAs<Expr>());
4670 continue;
4671 }
4672
4673 // Build the copy of this field.
4674 OwningStmtResult Copy = BuildSingleCopyAssign(*this, Loc, FieldType,
Douglas Gregor6cdc1612010-05-04 15:20:55 +00004675 move(To), move(From),
4676 /*CopyingBaseSubobject=*/false);
Douglas Gregor06a9f362010-05-01 20:49:11 +00004677 if (Copy.isInvalid()) {
Douglas Gregor60a8fbb2010-05-05 22:38:15 +00004678 Diag(CurrentLocation, diag::note_member_synthesized_at)
4679 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
4680 CopyAssignOperator->setInvalidDecl();
4681 return;
Douglas Gregor06a9f362010-05-01 20:49:11 +00004682 }
4683
4684 // Success! Record the copy.
4685 Statements.push_back(Copy.takeAs<Stmt>());
4686 }
4687
4688 if (!Invalid) {
4689 // Add a "return *this;"
4690 OwningExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UnaryOperator::Deref,
4691 Owned(This->Retain()));
4692
4693 OwningStmtResult Return = ActOnReturnStmt(Loc, move(ThisObj));
4694 if (Return.isInvalid())
4695 Invalid = true;
4696 else {
4697 Statements.push_back(Return.takeAs<Stmt>());
Douglas Gregorc63d2c82010-05-12 16:39:35 +00004698
4699 if (Trap.hasErrorOccurred()) {
4700 Diag(CurrentLocation, diag::note_member_synthesized_at)
4701 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
4702 Invalid = true;
4703 }
Douglas Gregor06a9f362010-05-01 20:49:11 +00004704 }
4705 }
4706
4707 if (Invalid) {
4708 CopyAssignOperator->setInvalidDecl();
4709 return;
4710 }
4711
4712 OwningStmtResult Body = ActOnCompoundStmt(Loc, Loc, move_arg(Statements),
4713 /*isStmtExpr=*/false);
4714 assert(!Body.isInvalid() && "Compound statement creation cannot fail");
4715 CopyAssignOperator->setBody(Body.takeAs<Stmt>());
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00004716}
4717
Fariborz Jahanian485f0872009-06-22 23:34:40 +00004718void Sema::DefineImplicitCopyConstructor(SourceLocation CurrentLocation,
4719 CXXConstructorDecl *CopyConstructor,
4720 unsigned TypeQuals) {
Mike Stump1eb44332009-09-09 15:08:12 +00004721 assert((CopyConstructor->isImplicit() &&
Douglas Gregor9e9199d2009-12-22 00:34:07 +00004722 CopyConstructor->isCopyConstructor(TypeQuals) &&
Fariborz Jahanian485f0872009-06-22 23:34:40 +00004723 !CopyConstructor->isUsed()) &&
4724 "DefineImplicitCopyConstructor - call it for implicit copy ctor");
Mike Stump1eb44332009-09-09 15:08:12 +00004725
Anders Carlsson63010a72010-04-23 16:24:12 +00004726 CXXRecordDecl *ClassDecl = CopyConstructor->getParent();
Fariborz Jahanian485f0872009-06-22 23:34:40 +00004727 assert(ClassDecl && "DefineImplicitCopyConstructor - invalid constructor");
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00004728
Douglas Gregor39957dc2010-05-01 15:04:51 +00004729 ImplicitlyDefinedFunctionScope Scope(*this, CopyConstructor);
Douglas Gregorc63d2c82010-05-12 16:39:35 +00004730 ErrorTrap Trap(*this);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00004731
Douglas Gregorc63d2c82010-05-12 16:39:35 +00004732 if (SetBaseOrMemberInitializers(CopyConstructor, 0, 0, /*AnyErrors=*/false) ||
4733 Trap.hasErrorOccurred()) {
Anders Carlsson59b7f152010-05-01 16:39:01 +00004734 Diag(CurrentLocation, diag::note_member_synthesized_at)
Douglas Gregorfb8cc252010-05-05 05:51:00 +00004735 << CXXCopyConstructor << Context.getTagDeclType(ClassDecl);
Anders Carlsson59b7f152010-05-01 16:39:01 +00004736 CopyConstructor->setInvalidDecl();
Douglas Gregorfb8cc252010-05-05 05:51:00 +00004737 } else {
4738 CopyConstructor->setBody(ActOnCompoundStmt(CopyConstructor->getLocation(),
4739 CopyConstructor->getLocation(),
4740 MultiStmtArg(*this, 0, 0),
4741 /*isStmtExpr=*/false)
4742 .takeAs<Stmt>());
Anders Carlsson8e142cc2010-04-25 00:52:09 +00004743 }
Douglas Gregorfb8cc252010-05-05 05:51:00 +00004744
4745 CopyConstructor->setUsed();
Fariborz Jahanian485f0872009-06-22 23:34:40 +00004746}
4747
Anders Carlssonda3f4e22009-08-25 05:12:04 +00004748Sema::OwningExprResult
Anders Carlssonec8e5ea2009-09-05 07:40:38 +00004749Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
Mike Stump1eb44332009-09-09 15:08:12 +00004750 CXXConstructorDecl *Constructor,
Douglas Gregor16006c92009-12-16 18:50:27 +00004751 MultiExprArg ExprArgs,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00004752 bool RequiresZeroInit,
Anders Carlsson72e96fd2010-05-02 22:54:08 +00004753 CXXConstructExpr::ConstructionKind ConstructKind) {
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00004754 bool Elidable = false;
Mike Stump1eb44332009-09-09 15:08:12 +00004755
Douglas Gregor2f599792010-04-02 18:24:57 +00004756 // C++0x [class.copy]p34:
4757 // When certain criteria are met, an implementation is allowed to
4758 // omit the copy/move construction of a class object, even if the
4759 // copy/move constructor and/or destructor for the object have
4760 // side effects. [...]
4761 // - when a temporary class object that has not been bound to a
4762 // reference (12.2) would be copied/moved to a class object
4763 // with the same cv-unqualified type, the copy/move operation
4764 // can be omitted by constructing the temporary object
4765 // directly into the target of the omitted copy/move
4766 if (Constructor->isCopyConstructor() && ExprArgs.size() >= 1) {
4767 Expr *SubExpr = ((Expr **)ExprArgs.get())[0];
4768 Elidable = SubExpr->isTemporaryObject() &&
4769 Context.hasSameUnqualifiedType(SubExpr->getType(),
4770 Context.getTypeDeclType(Constructor->getParent()));
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00004771 }
Mike Stump1eb44332009-09-09 15:08:12 +00004772
4773 return BuildCXXConstructExpr(ConstructLoc, DeclInitType, Constructor,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00004774 Elidable, move(ExprArgs), RequiresZeroInit,
Anders Carlsson72e96fd2010-05-02 22:54:08 +00004775 ConstructKind);
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00004776}
4777
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00004778/// BuildCXXConstructExpr - Creates a complete call to a constructor,
4779/// including handling of its default argument expressions.
Anders Carlssonda3f4e22009-08-25 05:12:04 +00004780Sema::OwningExprResult
Anders Carlssonec8e5ea2009-09-05 07:40:38 +00004781Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
4782 CXXConstructorDecl *Constructor, bool Elidable,
Douglas Gregor16006c92009-12-16 18:50:27 +00004783 MultiExprArg ExprArgs,
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00004784 bool RequiresZeroInit,
Anders Carlsson72e96fd2010-05-02 22:54:08 +00004785 CXXConstructExpr::ConstructionKind ConstructKind) {
Anders Carlssonf47511a2009-09-07 22:23:31 +00004786 unsigned NumExprs = ExprArgs.size();
4787 Expr **Exprs = (Expr **)ExprArgs.release();
Mike Stump1eb44332009-09-09 15:08:12 +00004788
Douglas Gregor7edfb692009-11-23 12:27:39 +00004789 MarkDeclarationReferenced(ConstructLoc, Constructor);
Douglas Gregor99a2e602009-12-16 01:38:02 +00004790 return Owned(CXXConstructExpr::Create(Context, DeclInitType, ConstructLoc,
Douglas Gregor16006c92009-12-16 18:50:27 +00004791 Constructor, Elidable, Exprs, NumExprs,
Anders Carlsson72e96fd2010-05-02 22:54:08 +00004792 RequiresZeroInit, ConstructKind));
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00004793}
4794
Mike Stump1eb44332009-09-09 15:08:12 +00004795bool Sema::InitializeVarWithConstructor(VarDecl *VD,
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00004796 CXXConstructorDecl *Constructor,
Anders Carlssonf47511a2009-09-07 22:23:31 +00004797 MultiExprArg Exprs) {
Mike Stump1eb44332009-09-09 15:08:12 +00004798 OwningExprResult TempResult =
Fariborz Jahanianc0fcce42009-10-28 18:41:06 +00004799 BuildCXXConstructExpr(VD->getLocation(), VD->getType(), Constructor,
Anders Carlssonf47511a2009-09-07 22:23:31 +00004800 move(Exprs));
Anders Carlssonfe2de492009-08-25 05:18:00 +00004801 if (TempResult.isInvalid())
4802 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00004803
Anders Carlssonda3f4e22009-08-25 05:12:04 +00004804 Expr *Temp = TempResult.takeAs<Expr>();
Douglas Gregord7f37bf2009-06-22 23:06:13 +00004805 MarkDeclarationReferenced(VD->getLocation(), Constructor);
Anders Carlsson0ece4912009-12-15 20:51:39 +00004806 Temp = MaybeCreateCXXExprWithTemporaries(Temp);
Douglas Gregor838db382010-02-11 01:19:42 +00004807 VD->setInit(Temp);
Mike Stump1eb44332009-09-09 15:08:12 +00004808
Anders Carlssonfe2de492009-08-25 05:18:00 +00004809 return false;
Anders Carlsson930e8d02009-04-16 23:50:50 +00004810}
4811
John McCall68c6c9a2010-02-02 09:10:11 +00004812void Sema::FinalizeVarWithDestructor(VarDecl *VD, const RecordType *Record) {
4813 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Record->getDecl());
Douglas Gregor333de062010-02-25 18:11:54 +00004814 if (!ClassDecl->isInvalidDecl() && !VD->isInvalidDecl() &&
Douglas Gregorfb2db462010-05-22 17:12:29 +00004815 !ClassDecl->hasTrivialDestructor() && !ClassDecl->isDependentContext()) {
John McCall4f9506a2010-02-02 08:45:54 +00004816 CXXDestructorDecl *Destructor = ClassDecl->getDestructor(Context);
4817 MarkDeclarationReferenced(VD->getLocation(), Destructor);
John McCall58e6f342010-03-16 05:22:47 +00004818 CheckDestructorAccess(VD->getLocation(), Destructor,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00004819 PDiag(diag::err_access_dtor_var)
John McCall58e6f342010-03-16 05:22:47 +00004820 << VD->getDeclName()
4821 << VD->getType());
John McCall4f9506a2010-02-02 08:45:54 +00004822 }
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00004823}
4824
Mike Stump1eb44332009-09-09 15:08:12 +00004825/// AddCXXDirectInitializerToDecl - This action is called immediately after
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00004826/// ActOnDeclarator, when a C++ direct initializer is present.
4827/// e.g: "int x(1);"
Chris Lattnerb28317a2009-03-28 19:18:32 +00004828void Sema::AddCXXDirectInitializerToDecl(DeclPtrTy Dcl,
4829 SourceLocation LParenLoc,
Sebastian Redlf53597f2009-03-15 17:47:39 +00004830 MultiExprArg Exprs,
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00004831 SourceLocation *CommaLocs,
4832 SourceLocation RParenLoc) {
Daniel Dunbar51846262009-12-24 19:19:26 +00004833 assert(Exprs.size() != 0 && Exprs.get() && "missing expressions");
Chris Lattnerb28317a2009-03-28 19:18:32 +00004834 Decl *RealDecl = Dcl.getAs<Decl>();
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00004835
4836 // If there is no declaration, there was an error parsing it. Just ignore
4837 // the initializer.
Chris Lattnerb28317a2009-03-28 19:18:32 +00004838 if (RealDecl == 0)
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00004839 return;
Mike Stump1eb44332009-09-09 15:08:12 +00004840
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00004841 VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl);
4842 if (!VDecl) {
4843 Diag(RealDecl->getLocation(), diag::err_illegal_initializer);
4844 RealDecl->setInvalidDecl();
4845 return;
4846 }
4847
Douglas Gregor83ddad32009-08-26 21:14:46 +00004848 // We will represent direct-initialization similarly to copy-initialization:
Argyrios Kyrtzidisce8e2922008-10-06 23:08:37 +00004849 // int x(1); -as-> int x = 1;
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00004850 // ClassType x(a,b,c); -as-> ClassType x = ClassType(a,b,c);
4851 //
4852 // Clients that want to distinguish between the two forms, can check for
4853 // direct initializer using VarDecl::hasCXXDirectInitializer().
4854 // A major benefit is that clients that don't particularly care about which
4855 // exactly form was it (like the CodeGen) can handle both cases without
4856 // special case code.
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +00004857
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00004858 // C++ 8.5p11:
4859 // The form of initialization (using parentheses or '=') is generally
4860 // insignificant, but does matter when the entity being initialized has a
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +00004861 // class type.
Douglas Gregor18fe5682008-11-03 20:45:27 +00004862 QualType DeclInitType = VDecl->getType();
4863 if (const ArrayType *Array = Context.getAsArrayType(DeclInitType))
Fariborz Jahanian680a3f32009-10-28 19:04:36 +00004864 DeclInitType = Context.getBaseElementType(Array);
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +00004865
Douglas Gregor4dffad62010-02-11 22:55:30 +00004866 if (!VDecl->getType()->isDependentType() &&
4867 RequireCompleteType(VDecl->getLocation(), VDecl->getType(),
Douglas Gregor615c5d42009-03-24 16:43:20 +00004868 diag::err_typecheck_decl_incomplete_type)) {
4869 VDecl->setInvalidDecl();
4870 return;
4871 }
4872
Douglas Gregor90f93822009-12-22 22:17:25 +00004873 // The variable can not have an abstract class type.
4874 if (RequireNonAbstractType(VDecl->getLocation(), VDecl->getType(),
4875 diag::err_abstract_type_in_decl,
4876 AbstractVariableType))
4877 VDecl->setInvalidDecl();
4878
Sebastian Redl31310a22010-02-01 20:16:42 +00004879 const VarDecl *Def;
4880 if ((Def = VDecl->getDefinition()) && Def != VDecl) {
Douglas Gregor90f93822009-12-22 22:17:25 +00004881 Diag(VDecl->getLocation(), diag::err_redefinition)
4882 << VDecl->getDeclName();
4883 Diag(Def->getLocation(), diag::note_previous_definition);
4884 VDecl->setInvalidDecl();
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +00004885 return;
4886 }
Douglas Gregor4dffad62010-02-11 22:55:30 +00004887
4888 // If either the declaration has a dependent type or if any of the
4889 // expressions is type-dependent, we represent the initialization
4890 // via a ParenListExpr for later use during template instantiation.
4891 if (VDecl->getType()->isDependentType() ||
4892 Expr::hasAnyTypeDependentArguments((Expr **)Exprs.get(), Exprs.size())) {
4893 // Let clients know that initialization was done with a direct initializer.
4894 VDecl->setCXXDirectInitializer(true);
4895
4896 // Store the initialization expressions as a ParenListExpr.
4897 unsigned NumExprs = Exprs.size();
4898 VDecl->setInit(new (Context) ParenListExpr(Context, LParenLoc,
4899 (Expr **)Exprs.release(),
4900 NumExprs, RParenLoc));
4901 return;
4902 }
Douglas Gregor90f93822009-12-22 22:17:25 +00004903
4904 // Capture the variable that is being initialized and the style of
4905 // initialization.
4906 InitializedEntity Entity = InitializedEntity::InitializeVariable(VDecl);
4907
4908 // FIXME: Poor source location information.
4909 InitializationKind Kind
4910 = InitializationKind::CreateDirect(VDecl->getLocation(),
4911 LParenLoc, RParenLoc);
4912
4913 InitializationSequence InitSeq(*this, Entity, Kind,
4914 (Expr**)Exprs.get(), Exprs.size());
4915 OwningExprResult Result = InitSeq.Perform(*this, Entity, Kind, move(Exprs));
4916 if (Result.isInvalid()) {
4917 VDecl->setInvalidDecl();
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00004918 return;
4919 }
Douglas Gregor90f93822009-12-22 22:17:25 +00004920
4921 Result = MaybeCreateCXXExprWithTemporaries(move(Result));
Douglas Gregor838db382010-02-11 01:19:42 +00004922 VDecl->setInit(Result.takeAs<Expr>());
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00004923 VDecl->setCXXDirectInitializer(true);
Argyrios Kyrtzidisce8e2922008-10-06 23:08:37 +00004924
John McCall68c6c9a2010-02-02 09:10:11 +00004925 if (const RecordType *Record = VDecl->getType()->getAs<RecordType>())
4926 FinalizeVarWithDestructor(VDecl, Record);
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00004927}
Douglas Gregor27c8dc02008-10-29 00:13:59 +00004928
Douglas Gregor39da0b82009-09-09 23:08:42 +00004929/// \brief Given a constructor and the set of arguments provided for the
4930/// constructor, convert the arguments and add any required default arguments
4931/// to form a proper call to this constructor.
4932///
4933/// \returns true if an error occurred, false otherwise.
4934bool
4935Sema::CompleteConstructorCall(CXXConstructorDecl *Constructor,
4936 MultiExprArg ArgsPtr,
4937 SourceLocation Loc,
4938 ASTOwningVector<&ActionBase::DeleteExpr> &ConvertedArgs) {
4939 // FIXME: This duplicates a lot of code from Sema::ConvertArgumentsForCall.
4940 unsigned NumArgs = ArgsPtr.size();
4941 Expr **Args = (Expr **)ArgsPtr.get();
4942
4943 const FunctionProtoType *Proto
4944 = Constructor->getType()->getAs<FunctionProtoType>();
4945 assert(Proto && "Constructor without a prototype?");
4946 unsigned NumArgsInProto = Proto->getNumArgs();
Douglas Gregor39da0b82009-09-09 23:08:42 +00004947
4948 // If too few arguments are available, we'll fill in the rest with defaults.
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00004949 if (NumArgs < NumArgsInProto)
Douglas Gregor39da0b82009-09-09 23:08:42 +00004950 ConvertedArgs.reserve(NumArgsInProto);
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00004951 else
Douglas Gregor39da0b82009-09-09 23:08:42 +00004952 ConvertedArgs.reserve(NumArgs);
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00004953
4954 VariadicCallType CallType =
4955 Proto->isVariadic() ? VariadicConstructor : VariadicDoesNotApply;
4956 llvm::SmallVector<Expr *, 8> AllArgs;
4957 bool Invalid = GatherArgumentsForCall(Loc, Constructor,
4958 Proto, 0, Args, NumArgs, AllArgs,
4959 CallType);
4960 for (unsigned i =0, size = AllArgs.size(); i < size; i++)
4961 ConvertedArgs.push_back(AllArgs[i]);
4962 return Invalid;
Douglas Gregor18fe5682008-11-03 20:45:27 +00004963}
4964
Anders Carlsson20d45d22009-12-12 00:32:00 +00004965static inline bool
4966CheckOperatorNewDeleteDeclarationScope(Sema &SemaRef,
4967 const FunctionDecl *FnDecl) {
4968 const DeclContext *DC = FnDecl->getDeclContext()->getLookupContext();
4969 if (isa<NamespaceDecl>(DC)) {
4970 return SemaRef.Diag(FnDecl->getLocation(),
4971 diag::err_operator_new_delete_declared_in_namespace)
4972 << FnDecl->getDeclName();
4973 }
4974
4975 if (isa<TranslationUnitDecl>(DC) &&
4976 FnDecl->getStorageClass() == FunctionDecl::Static) {
4977 return SemaRef.Diag(FnDecl->getLocation(),
4978 diag::err_operator_new_delete_declared_static)
4979 << FnDecl->getDeclName();
4980 }
4981
Anders Carlssonfcfdb2b2009-12-12 02:43:16 +00004982 return false;
Anders Carlsson20d45d22009-12-12 00:32:00 +00004983}
4984
Anders Carlsson156c78e2009-12-13 17:53:43 +00004985static inline bool
4986CheckOperatorNewDeleteTypes(Sema &SemaRef, const FunctionDecl *FnDecl,
4987 CanQualType ExpectedResultType,
4988 CanQualType ExpectedFirstParamType,
4989 unsigned DependentParamTypeDiag,
4990 unsigned InvalidParamTypeDiag) {
4991 QualType ResultType =
4992 FnDecl->getType()->getAs<FunctionType>()->getResultType();
4993
4994 // Check that the result type is not dependent.
4995 if (ResultType->isDependentType())
4996 return SemaRef.Diag(FnDecl->getLocation(),
4997 diag::err_operator_new_delete_dependent_result_type)
4998 << FnDecl->getDeclName() << ExpectedResultType;
4999
5000 // Check that the result type is what we expect.
5001 if (SemaRef.Context.getCanonicalType(ResultType) != ExpectedResultType)
5002 return SemaRef.Diag(FnDecl->getLocation(),
5003 diag::err_operator_new_delete_invalid_result_type)
5004 << FnDecl->getDeclName() << ExpectedResultType;
5005
5006 // A function template must have at least 2 parameters.
5007 if (FnDecl->getDescribedFunctionTemplate() && FnDecl->getNumParams() < 2)
5008 return SemaRef.Diag(FnDecl->getLocation(),
5009 diag::err_operator_new_delete_template_too_few_parameters)
5010 << FnDecl->getDeclName();
5011
5012 // The function decl must have at least 1 parameter.
5013 if (FnDecl->getNumParams() == 0)
5014 return SemaRef.Diag(FnDecl->getLocation(),
5015 diag::err_operator_new_delete_too_few_parameters)
5016 << FnDecl->getDeclName();
5017
5018 // Check the the first parameter type is not dependent.
5019 QualType FirstParamType = FnDecl->getParamDecl(0)->getType();
5020 if (FirstParamType->isDependentType())
5021 return SemaRef.Diag(FnDecl->getLocation(), DependentParamTypeDiag)
5022 << FnDecl->getDeclName() << ExpectedFirstParamType;
5023
5024 // Check that the first parameter type is what we expect.
Douglas Gregor6e790ab2009-12-22 23:42:49 +00005025 if (SemaRef.Context.getCanonicalType(FirstParamType).getUnqualifiedType() !=
Anders Carlsson156c78e2009-12-13 17:53:43 +00005026 ExpectedFirstParamType)
5027 return SemaRef.Diag(FnDecl->getLocation(), InvalidParamTypeDiag)
5028 << FnDecl->getDeclName() << ExpectedFirstParamType;
5029
5030 return false;
5031}
5032
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00005033static bool
Anders Carlsson156c78e2009-12-13 17:53:43 +00005034CheckOperatorNewDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
Anders Carlsson20d45d22009-12-12 00:32:00 +00005035 // C++ [basic.stc.dynamic.allocation]p1:
5036 // A program is ill-formed if an allocation function is declared in a
5037 // namespace scope other than global scope or declared static in global
5038 // scope.
5039 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
5040 return true;
Anders Carlsson156c78e2009-12-13 17:53:43 +00005041
5042 CanQualType SizeTy =
5043 SemaRef.Context.getCanonicalType(SemaRef.Context.getSizeType());
5044
5045 // C++ [basic.stc.dynamic.allocation]p1:
5046 // The return type shall be void*. The first parameter shall have type
5047 // std::size_t.
5048 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidPtrTy,
5049 SizeTy,
5050 diag::err_operator_new_dependent_param_type,
5051 diag::err_operator_new_param_type))
5052 return true;
5053
5054 // C++ [basic.stc.dynamic.allocation]p1:
5055 // The first parameter shall not have an associated default argument.
5056 if (FnDecl->getParamDecl(0)->hasDefaultArg())
Anders Carlssona3ccda52009-12-12 00:26:23 +00005057 return SemaRef.Diag(FnDecl->getLocation(),
Anders Carlsson156c78e2009-12-13 17:53:43 +00005058 diag::err_operator_new_default_arg)
5059 << FnDecl->getDeclName() << FnDecl->getParamDecl(0)->getDefaultArgRange();
5060
5061 return false;
Anders Carlssona3ccda52009-12-12 00:26:23 +00005062}
5063
5064static bool
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00005065CheckOperatorDeleteDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
5066 // C++ [basic.stc.dynamic.deallocation]p1:
5067 // A program is ill-formed if deallocation functions are declared in a
5068 // namespace scope other than global scope or declared static in global
5069 // scope.
Anders Carlsson20d45d22009-12-12 00:32:00 +00005070 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
5071 return true;
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00005072
5073 // C++ [basic.stc.dynamic.deallocation]p2:
5074 // Each deallocation function shall return void and its first parameter
5075 // shall be void*.
Anders Carlsson156c78e2009-12-13 17:53:43 +00005076 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidTy,
5077 SemaRef.Context.VoidPtrTy,
5078 diag::err_operator_delete_dependent_param_type,
5079 diag::err_operator_delete_param_type))
5080 return true;
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00005081
Anders Carlsson46991d62009-12-12 00:16:02 +00005082 QualType FirstParamType = FnDecl->getParamDecl(0)->getType();
5083 if (FirstParamType->isDependentType())
5084 return SemaRef.Diag(FnDecl->getLocation(),
5085 diag::err_operator_delete_dependent_param_type)
5086 << FnDecl->getDeclName() << SemaRef.Context.VoidPtrTy;
5087
5088 if (SemaRef.Context.getCanonicalType(FirstParamType) !=
5089 SemaRef.Context.VoidPtrTy)
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00005090 return SemaRef.Diag(FnDecl->getLocation(),
5091 diag::err_operator_delete_param_type)
5092 << FnDecl->getDeclName() << SemaRef.Context.VoidPtrTy;
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00005093
5094 return false;
5095}
5096
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005097/// CheckOverloadedOperatorDeclaration - Check whether the declaration
5098/// of this overloaded operator is well-formed. If so, returns false;
5099/// otherwise, emits appropriate diagnostics and returns true.
5100bool Sema::CheckOverloadedOperatorDeclaration(FunctionDecl *FnDecl) {
Douglas Gregor43c7bad2008-11-17 16:14:12 +00005101 assert(FnDecl && FnDecl->isOverloadedOperator() &&
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005102 "Expected an overloaded operator declaration");
5103
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005104 OverloadedOperatorKind Op = FnDecl->getOverloadedOperator();
5105
Mike Stump1eb44332009-09-09 15:08:12 +00005106 // C++ [over.oper]p5:
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005107 // The allocation and deallocation functions, operator new,
5108 // operator new[], operator delete and operator delete[], are
5109 // described completely in 3.7.3. The attributes and restrictions
5110 // found in the rest of this subclause do not apply to them unless
5111 // explicitly stated in 3.7.3.
Anders Carlsson1152c392009-12-11 23:31:21 +00005112 if (Op == OO_Delete || Op == OO_Array_Delete)
Anders Carlsson9d59ecb2009-12-11 23:23:22 +00005113 return CheckOperatorDeleteDeclaration(*this, FnDecl);
Fariborz Jahanianb03bfa52009-11-10 23:47:18 +00005114
Anders Carlssona3ccda52009-12-12 00:26:23 +00005115 if (Op == OO_New || Op == OO_Array_New)
5116 return CheckOperatorNewDeclaration(*this, FnDecl);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005117
5118 // C++ [over.oper]p6:
5119 // An operator function shall either be a non-static member
5120 // function or be a non-member function and have at least one
5121 // parameter whose type is a class, a reference to a class, an
5122 // enumeration, or a reference to an enumeration.
Douglas Gregor43c7bad2008-11-17 16:14:12 +00005123 if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(FnDecl)) {
5124 if (MethodDecl->isStatic())
5125 return Diag(FnDecl->getLocation(),
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00005126 diag::err_operator_overload_static) << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005127 } else {
5128 bool ClassOrEnumParam = false;
Douglas Gregor43c7bad2008-11-17 16:14:12 +00005129 for (FunctionDecl::param_iterator Param = FnDecl->param_begin(),
5130 ParamEnd = FnDecl->param_end();
5131 Param != ParamEnd; ++Param) {
5132 QualType ParamType = (*Param)->getType().getNonReferenceType();
Eli Friedman5d39dee2009-06-27 05:59:59 +00005133 if (ParamType->isDependentType() || ParamType->isRecordType() ||
5134 ParamType->isEnumeralType()) {
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005135 ClassOrEnumParam = true;
5136 break;
5137 }
5138 }
5139
Douglas Gregor43c7bad2008-11-17 16:14:12 +00005140 if (!ClassOrEnumParam)
5141 return Diag(FnDecl->getLocation(),
Chris Lattnerf3a41af2008-11-20 06:38:18 +00005142 diag::err_operator_overload_needs_class_or_enum)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00005143 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005144 }
5145
5146 // C++ [over.oper]p8:
5147 // An operator function cannot have default arguments (8.3.6),
5148 // except where explicitly stated below.
5149 //
Mike Stump1eb44332009-09-09 15:08:12 +00005150 // Only the function-call operator allows default arguments
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005151 // (C++ [over.call]p1).
5152 if (Op != OO_Call) {
5153 for (FunctionDecl::param_iterator Param = FnDecl->param_begin();
5154 Param != FnDecl->param_end(); ++Param) {
Anders Carlsson156c78e2009-12-13 17:53:43 +00005155 if ((*Param)->hasDefaultArg())
Mike Stump1eb44332009-09-09 15:08:12 +00005156 return Diag((*Param)->getLocation(),
Douglas Gregor61366e92008-12-24 00:01:03 +00005157 diag::err_operator_overload_default_arg)
Anders Carlsson156c78e2009-12-13 17:53:43 +00005158 << FnDecl->getDeclName() << (*Param)->getDefaultArgRange();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005159 }
5160 }
5161
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00005162 static const bool OperatorUses[NUM_OVERLOADED_OPERATORS][3] = {
5163 { false, false, false }
5164#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
5165 , { Unary, Binary, MemberOnly }
5166#include "clang/Basic/OperatorKinds.def"
5167 };
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005168
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00005169 bool CanBeUnaryOperator = OperatorUses[Op][0];
5170 bool CanBeBinaryOperator = OperatorUses[Op][1];
5171 bool MustBeMemberOperator = OperatorUses[Op][2];
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005172
5173 // C++ [over.oper]p8:
5174 // [...] Operator functions cannot have more or fewer parameters
5175 // than the number required for the corresponding operator, as
5176 // described in the rest of this subclause.
Mike Stump1eb44332009-09-09 15:08:12 +00005177 unsigned NumParams = FnDecl->getNumParams()
Douglas Gregor43c7bad2008-11-17 16:14:12 +00005178 + (isa<CXXMethodDecl>(FnDecl)? 1 : 0);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005179 if (Op != OO_Call &&
5180 ((NumParams == 1 && !CanBeUnaryOperator) ||
5181 (NumParams == 2 && !CanBeBinaryOperator) ||
5182 (NumParams < 1) || (NumParams > 2))) {
5183 // We have the wrong number of parameters.
Chris Lattner416e46f2008-11-21 07:57:12 +00005184 unsigned ErrorKind;
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00005185 if (CanBeUnaryOperator && CanBeBinaryOperator) {
Chris Lattner416e46f2008-11-21 07:57:12 +00005186 ErrorKind = 2; // 2 -> unary or binary.
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00005187 } else if (CanBeUnaryOperator) {
Chris Lattner416e46f2008-11-21 07:57:12 +00005188 ErrorKind = 0; // 0 -> unary
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00005189 } else {
Chris Lattneraf7ae4e2008-11-21 07:50:02 +00005190 assert(CanBeBinaryOperator &&
5191 "All non-call overloaded operators are unary or binary!");
Chris Lattner416e46f2008-11-21 07:57:12 +00005192 ErrorKind = 1; // 1 -> binary
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00005193 }
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005194
Chris Lattner416e46f2008-11-21 07:57:12 +00005195 return Diag(FnDecl->getLocation(), diag::err_operator_overload_must_be)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00005196 << FnDecl->getDeclName() << NumParams << ErrorKind;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005197 }
Sebastian Redl64b45f72009-01-05 20:52:13 +00005198
Douglas Gregor43c7bad2008-11-17 16:14:12 +00005199 // Overloaded operators other than operator() cannot be variadic.
5200 if (Op != OO_Call &&
John McCall183700f2009-09-21 23:43:11 +00005201 FnDecl->getType()->getAs<FunctionProtoType>()->isVariadic()) {
Chris Lattnerf3a41af2008-11-20 06:38:18 +00005202 return Diag(FnDecl->getLocation(), diag::err_operator_overload_variadic)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00005203 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005204 }
5205
5206 // Some operators must be non-static member functions.
Douglas Gregor43c7bad2008-11-17 16:14:12 +00005207 if (MustBeMemberOperator && !isa<CXXMethodDecl>(FnDecl)) {
5208 return Diag(FnDecl->getLocation(),
Chris Lattnerf3a41af2008-11-20 06:38:18 +00005209 diag::err_operator_overload_must_be_member)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00005210 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005211 }
5212
5213 // C++ [over.inc]p1:
5214 // The user-defined function called operator++ implements the
5215 // prefix and postfix ++ operator. If this function is a member
5216 // function with no parameters, or a non-member function with one
5217 // parameter of class or enumeration type, it defines the prefix
5218 // increment operator ++ for objects of that type. If the function
5219 // is a member function with one parameter (which shall be of type
5220 // int) or a non-member function with two parameters (the second
5221 // of which shall be of type int), it defines the postfix
5222 // increment operator ++ for objects of that type.
5223 if ((Op == OO_PlusPlus || Op == OO_MinusMinus) && NumParams == 2) {
5224 ParmVarDecl *LastParam = FnDecl->getParamDecl(FnDecl->getNumParams() - 1);
5225 bool ParamIsInt = false;
John McCall183700f2009-09-21 23:43:11 +00005226 if (const BuiltinType *BT = LastParam->getType()->getAs<BuiltinType>())
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005227 ParamIsInt = BT->getKind() == BuiltinType::Int;
5228
Chris Lattneraf7ae4e2008-11-21 07:50:02 +00005229 if (!ParamIsInt)
5230 return Diag(LastParam->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00005231 diag::err_operator_overload_post_incdec_must_be_int)
Chris Lattnerd1625842008-11-24 06:25:27 +00005232 << LastParam->getType() << (Op == OO_MinusMinus);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005233 }
5234
Sebastian Redl64b45f72009-01-05 20:52:13 +00005235 // Notify the class if it got an assignment operator.
5236 if (Op == OO_Equal) {
5237 // Would have returned earlier otherwise.
5238 assert(isa<CXXMethodDecl>(FnDecl) &&
5239 "Overloaded = not member, but not filtered.");
5240 CXXMethodDecl *Method = cast<CXXMethodDecl>(FnDecl);
5241 Method->getParent()->addedAssignmentOperator(Context, Method);
5242 }
5243
Douglas Gregor43c7bad2008-11-17 16:14:12 +00005244 return false;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00005245}
Chris Lattner5a003a42008-12-17 07:09:26 +00005246
Sean Hunta6c058d2010-01-13 09:01:02 +00005247/// CheckLiteralOperatorDeclaration - Check whether the declaration
5248/// of this literal operator function is well-formed. If so, returns
5249/// false; otherwise, emits appropriate diagnostics and returns true.
5250bool Sema::CheckLiteralOperatorDeclaration(FunctionDecl *FnDecl) {
5251 DeclContext *DC = FnDecl->getDeclContext();
5252 Decl::Kind Kind = DC->getDeclKind();
5253 if (Kind != Decl::TranslationUnit && Kind != Decl::Namespace &&
5254 Kind != Decl::LinkageSpec) {
5255 Diag(FnDecl->getLocation(), diag::err_literal_operator_outside_namespace)
5256 << FnDecl->getDeclName();
5257 return true;
5258 }
5259
5260 bool Valid = false;
5261
Sean Hunt216c2782010-04-07 23:11:06 +00005262 // template <char...> type operator "" name() is the only valid template
5263 // signature, and the only valid signature with no parameters.
5264 if (FnDecl->param_size() == 0) {
5265 if (FunctionTemplateDecl *TpDecl = FnDecl->getDescribedFunctionTemplate()) {
5266 // Must have only one template parameter
5267 TemplateParameterList *Params = TpDecl->getTemplateParameters();
5268 if (Params->size() == 1) {
5269 NonTypeTemplateParmDecl *PmDecl =
5270 cast<NonTypeTemplateParmDecl>(Params->getParam(0));
Sean Hunta6c058d2010-01-13 09:01:02 +00005271
Sean Hunt216c2782010-04-07 23:11:06 +00005272 // The template parameter must be a char parameter pack.
5273 // FIXME: This test will always fail because non-type parameter packs
5274 // have not been implemented.
5275 if (PmDecl && PmDecl->isTemplateParameterPack() &&
5276 Context.hasSameType(PmDecl->getType(), Context.CharTy))
5277 Valid = true;
5278 }
5279 }
5280 } else {
Sean Hunta6c058d2010-01-13 09:01:02 +00005281 // Check the first parameter
Sean Hunt216c2782010-04-07 23:11:06 +00005282 FunctionDecl::param_iterator Param = FnDecl->param_begin();
5283
Sean Hunta6c058d2010-01-13 09:01:02 +00005284 QualType T = (*Param)->getType();
5285
Sean Hunt30019c02010-04-07 22:57:35 +00005286 // unsigned long long int, long double, and any character type are allowed
5287 // as the only parameters.
Sean Hunta6c058d2010-01-13 09:01:02 +00005288 if (Context.hasSameType(T, Context.UnsignedLongLongTy) ||
5289 Context.hasSameType(T, Context.LongDoubleTy) ||
5290 Context.hasSameType(T, Context.CharTy) ||
5291 Context.hasSameType(T, Context.WCharTy) ||
5292 Context.hasSameType(T, Context.Char16Ty) ||
5293 Context.hasSameType(T, Context.Char32Ty)) {
5294 if (++Param == FnDecl->param_end())
5295 Valid = true;
5296 goto FinishedParams;
5297 }
5298
Sean Hunt30019c02010-04-07 22:57:35 +00005299 // Otherwise it must be a pointer to const; let's strip those qualifiers.
Sean Hunta6c058d2010-01-13 09:01:02 +00005300 const PointerType *PT = T->getAs<PointerType>();
5301 if (!PT)
5302 goto FinishedParams;
5303 T = PT->getPointeeType();
5304 if (!T.isConstQualified())
5305 goto FinishedParams;
5306 T = T.getUnqualifiedType();
5307
5308 // Move on to the second parameter;
5309 ++Param;
5310
5311 // If there is no second parameter, the first must be a const char *
5312 if (Param == FnDecl->param_end()) {
5313 if (Context.hasSameType(T, Context.CharTy))
5314 Valid = true;
5315 goto FinishedParams;
5316 }
5317
5318 // const char *, const wchar_t*, const char16_t*, and const char32_t*
5319 // are allowed as the first parameter to a two-parameter function
5320 if (!(Context.hasSameType(T, Context.CharTy) ||
5321 Context.hasSameType(T, Context.WCharTy) ||
5322 Context.hasSameType(T, Context.Char16Ty) ||
5323 Context.hasSameType(T, Context.Char32Ty)))
5324 goto FinishedParams;
5325
5326 // The second and final parameter must be an std::size_t
5327 T = (*Param)->getType().getUnqualifiedType();
5328 if (Context.hasSameType(T, Context.getSizeType()) &&
5329 ++Param == FnDecl->param_end())
5330 Valid = true;
5331 }
5332
5333 // FIXME: This diagnostic is absolutely terrible.
5334FinishedParams:
5335 if (!Valid) {
5336 Diag(FnDecl->getLocation(), diag::err_literal_operator_params)
5337 << FnDecl->getDeclName();
5338 return true;
5339 }
5340
5341 return false;
5342}
5343
Douglas Gregor074149e2009-01-05 19:45:36 +00005344/// ActOnStartLinkageSpecification - Parsed the beginning of a C++
5345/// linkage specification, including the language and (if present)
5346/// the '{'. ExternLoc is the location of the 'extern', LangLoc is
5347/// the location of the language string literal, which is provided
5348/// by Lang/StrSize. LBraceLoc, if valid, provides the location of
5349/// the '{' brace. Otherwise, this linkage specification does not
5350/// have any braces.
Chris Lattnerb28317a2009-03-28 19:18:32 +00005351Sema::DeclPtrTy Sema::ActOnStartLinkageSpecification(Scope *S,
5352 SourceLocation ExternLoc,
5353 SourceLocation LangLoc,
Benjamin Kramerd5663812010-05-03 13:08:54 +00005354 llvm::StringRef Lang,
Chris Lattnerb28317a2009-03-28 19:18:32 +00005355 SourceLocation LBraceLoc) {
Chris Lattnercc98eac2008-12-17 07:13:27 +00005356 LinkageSpecDecl::LanguageIDs Language;
Benjamin Kramerd5663812010-05-03 13:08:54 +00005357 if (Lang == "\"C\"")
Chris Lattnercc98eac2008-12-17 07:13:27 +00005358 Language = LinkageSpecDecl::lang_c;
Benjamin Kramerd5663812010-05-03 13:08:54 +00005359 else if (Lang == "\"C++\"")
Chris Lattnercc98eac2008-12-17 07:13:27 +00005360 Language = LinkageSpecDecl::lang_cxx;
5361 else {
Douglas Gregor074149e2009-01-05 19:45:36 +00005362 Diag(LangLoc, diag::err_bad_language);
Chris Lattnerb28317a2009-03-28 19:18:32 +00005363 return DeclPtrTy();
Chris Lattnercc98eac2008-12-17 07:13:27 +00005364 }
Mike Stump1eb44332009-09-09 15:08:12 +00005365
Chris Lattnercc98eac2008-12-17 07:13:27 +00005366 // FIXME: Add all the various semantics of linkage specifications
Mike Stump1eb44332009-09-09 15:08:12 +00005367
Douglas Gregor074149e2009-01-05 19:45:36 +00005368 LinkageSpecDecl *D = LinkageSpecDecl::Create(Context, CurContext,
Mike Stump1eb44332009-09-09 15:08:12 +00005369 LangLoc, Language,
Douglas Gregor074149e2009-01-05 19:45:36 +00005370 LBraceLoc.isValid());
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00005371 CurContext->addDecl(D);
Douglas Gregor074149e2009-01-05 19:45:36 +00005372 PushDeclContext(S, D);
Chris Lattnerb28317a2009-03-28 19:18:32 +00005373 return DeclPtrTy::make(D);
Chris Lattnercc98eac2008-12-17 07:13:27 +00005374}
5375
Douglas Gregor074149e2009-01-05 19:45:36 +00005376/// ActOnFinishLinkageSpecification - Completely the definition of
5377/// the C++ linkage specification LinkageSpec. If RBraceLoc is
5378/// valid, it's the position of the closing '}' brace in a linkage
5379/// specification that uses braces.
Chris Lattnerb28317a2009-03-28 19:18:32 +00005380Sema::DeclPtrTy Sema::ActOnFinishLinkageSpecification(Scope *S,
5381 DeclPtrTy LinkageSpec,
5382 SourceLocation RBraceLoc) {
Douglas Gregor074149e2009-01-05 19:45:36 +00005383 if (LinkageSpec)
5384 PopDeclContext();
5385 return LinkageSpec;
Chris Lattner5a003a42008-12-17 07:09:26 +00005386}
5387
Douglas Gregord308e622009-05-18 20:51:54 +00005388/// \brief Perform semantic analysis for the variable declaration that
5389/// occurs within a C++ catch clause, returning the newly-created
5390/// variable.
5391VarDecl *Sema::BuildExceptionDeclaration(Scope *S, QualType ExDeclType,
John McCalla93c9342009-12-07 02:54:59 +00005392 TypeSourceInfo *TInfo,
Douglas Gregord308e622009-05-18 20:51:54 +00005393 IdentifierInfo *Name,
5394 SourceLocation Loc,
5395 SourceRange Range) {
5396 bool Invalid = false;
Sebastian Redl4b07b292008-12-22 19:15:10 +00005397
5398 // Arrays and functions decay.
5399 if (ExDeclType->isArrayType())
5400 ExDeclType = Context.getArrayDecayedType(ExDeclType);
5401 else if (ExDeclType->isFunctionType())
5402 ExDeclType = Context.getPointerType(ExDeclType);
5403
5404 // C++ 15.3p1: The exception-declaration shall not denote an incomplete type.
5405 // The exception-declaration shall not denote a pointer or reference to an
5406 // incomplete type, other than [cv] void*.
Sebastian Redlf2e21e52009-03-22 23:49:27 +00005407 // N2844 forbids rvalue references.
Mike Stump1eb44332009-09-09 15:08:12 +00005408 if (!ExDeclType->isDependentType() && ExDeclType->isRValueReferenceType()) {
Douglas Gregord308e622009-05-18 20:51:54 +00005409 Diag(Loc, diag::err_catch_rvalue_ref) << Range;
Sebastian Redlf2e21e52009-03-22 23:49:27 +00005410 Invalid = true;
5411 }
Douglas Gregord308e622009-05-18 20:51:54 +00005412
Douglas Gregora2762912010-03-08 01:47:36 +00005413 // GCC allows catching pointers and references to incomplete types
5414 // as an extension; so do we, but we warn by default.
5415
Sebastian Redl4b07b292008-12-22 19:15:10 +00005416 QualType BaseType = ExDeclType;
5417 int Mode = 0; // 0 for direct type, 1 for pointer, 2 for reference
Douglas Gregor4ec339f2009-01-19 19:26:10 +00005418 unsigned DK = diag::err_catch_incomplete;
Douglas Gregora2762912010-03-08 01:47:36 +00005419 bool IncompleteCatchIsInvalid = true;
Ted Kremenek6217b802009-07-29 21:53:49 +00005420 if (const PointerType *Ptr = BaseType->getAs<PointerType>()) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00005421 BaseType = Ptr->getPointeeType();
5422 Mode = 1;
Douglas Gregora2762912010-03-08 01:47:36 +00005423 DK = diag::ext_catch_incomplete_ptr;
5424 IncompleteCatchIsInvalid = false;
Mike Stump1eb44332009-09-09 15:08:12 +00005425 } else if (const ReferenceType *Ref = BaseType->getAs<ReferenceType>()) {
Sebastian Redlf2e21e52009-03-22 23:49:27 +00005426 // For the purpose of error recovery, we treat rvalue refs like lvalue refs.
Sebastian Redl4b07b292008-12-22 19:15:10 +00005427 BaseType = Ref->getPointeeType();
5428 Mode = 2;
Douglas Gregora2762912010-03-08 01:47:36 +00005429 DK = diag::ext_catch_incomplete_ref;
5430 IncompleteCatchIsInvalid = false;
Sebastian Redl4b07b292008-12-22 19:15:10 +00005431 }
Sebastian Redlf2e21e52009-03-22 23:49:27 +00005432 if (!Invalid && (Mode == 0 || !BaseType->isVoidType()) &&
Douglas Gregora2762912010-03-08 01:47:36 +00005433 !BaseType->isDependentType() && RequireCompleteType(Loc, BaseType, DK) &&
5434 IncompleteCatchIsInvalid)
Sebastian Redl4b07b292008-12-22 19:15:10 +00005435 Invalid = true;
Sebastian Redl4b07b292008-12-22 19:15:10 +00005436
Mike Stump1eb44332009-09-09 15:08:12 +00005437 if (!Invalid && !ExDeclType->isDependentType() &&
Douglas Gregord308e622009-05-18 20:51:54 +00005438 RequireNonAbstractType(Loc, ExDeclType,
5439 diag::err_abstract_type_in_decl,
5440 AbstractVariableType))
Sebastian Redlfef9f592009-04-27 21:03:30 +00005441 Invalid = true;
5442
Mike Stump1eb44332009-09-09 15:08:12 +00005443 VarDecl *ExDecl = VarDecl::Create(Context, CurContext, Loc,
Douglas Gregor16573fa2010-04-19 22:54:31 +00005444 Name, ExDeclType, TInfo, VarDecl::None,
5445 VarDecl::None);
Douglas Gregor324b54d2010-05-03 18:51:14 +00005446 ExDecl->setExceptionVariable(true);
5447
Douglas Gregor6d182892010-03-05 23:38:39 +00005448 if (!Invalid) {
5449 if (const RecordType *RecordTy = ExDeclType->getAs<RecordType>()) {
5450 // C++ [except.handle]p16:
5451 // The object declared in an exception-declaration or, if the
5452 // exception-declaration does not specify a name, a temporary (12.2) is
5453 // copy-initialized (8.5) from the exception object. [...]
5454 // The object is destroyed when the handler exits, after the destruction
5455 // of any automatic objects initialized within the handler.
5456 //
5457 // We just pretend to initialize the object with itself, then make sure
5458 // it can be destroyed later.
5459 InitializedEntity Entity = InitializedEntity::InitializeVariable(ExDecl);
5460 Expr *ExDeclRef = DeclRefExpr::Create(Context, 0, SourceRange(), ExDecl,
5461 Loc, ExDeclType, 0);
5462 InitializationKind Kind = InitializationKind::CreateCopy(Loc,
5463 SourceLocation());
5464 InitializationSequence InitSeq(*this, Entity, Kind, &ExDeclRef, 1);
5465 OwningExprResult Result = InitSeq.Perform(*this, Entity, Kind,
5466 MultiExprArg(*this, (void**)&ExDeclRef, 1));
5467 if (Result.isInvalid())
5468 Invalid = true;
5469 else
5470 FinalizeVarWithDestructor(ExDecl, RecordTy);
5471 }
5472 }
5473
Douglas Gregord308e622009-05-18 20:51:54 +00005474 if (Invalid)
5475 ExDecl->setInvalidDecl();
5476
5477 return ExDecl;
5478}
5479
5480/// ActOnExceptionDeclarator - Parsed the exception-declarator in a C++ catch
5481/// handler.
5482Sema::DeclPtrTy Sema::ActOnExceptionDeclarator(Scope *S, Declarator &D) {
John McCalla93c9342009-12-07 02:54:59 +00005483 TypeSourceInfo *TInfo = 0;
5484 QualType ExDeclType = GetTypeForDeclarator(D, S, &TInfo);
Douglas Gregord308e622009-05-18 20:51:54 +00005485
5486 bool Invalid = D.isInvalidType();
Sebastian Redl4b07b292008-12-22 19:15:10 +00005487 IdentifierInfo *II = D.getIdentifier();
Douglas Gregorc83c6872010-04-15 22:33:43 +00005488 if (NamedDecl *PrevDecl = LookupSingleName(S, II, D.getIdentifierLoc(),
Douglas Gregorc0b39642010-04-15 23:40:53 +00005489 LookupOrdinaryName,
5490 ForRedeclaration)) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00005491 // The scope should be freshly made just for us. There is just no way
5492 // it contains any previous declaration.
Chris Lattnerb28317a2009-03-28 19:18:32 +00005493 assert(!S->isDeclScope(DeclPtrTy::make(PrevDecl)));
Sebastian Redl4b07b292008-12-22 19:15:10 +00005494 if (PrevDecl->isTemplateParameter()) {
5495 // Maybe we will complain about the shadowed template parameter.
5496 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
Sebastian Redl4b07b292008-12-22 19:15:10 +00005497 }
5498 }
5499
Chris Lattnereaaebc72009-04-25 08:06:05 +00005500 if (D.getCXXScopeSpec().isSet() && !Invalid) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00005501 Diag(D.getIdentifierLoc(), diag::err_qualified_catch_declarator)
5502 << D.getCXXScopeSpec().getRange();
Chris Lattnereaaebc72009-04-25 08:06:05 +00005503 Invalid = true;
Sebastian Redl4b07b292008-12-22 19:15:10 +00005504 }
5505
John McCalla93c9342009-12-07 02:54:59 +00005506 VarDecl *ExDecl = BuildExceptionDeclaration(S, ExDeclType, TInfo,
Douglas Gregord308e622009-05-18 20:51:54 +00005507 D.getIdentifier(),
5508 D.getIdentifierLoc(),
5509 D.getDeclSpec().getSourceRange());
5510
Chris Lattnereaaebc72009-04-25 08:06:05 +00005511 if (Invalid)
5512 ExDecl->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00005513
Sebastian Redl4b07b292008-12-22 19:15:10 +00005514 // Add the exception declaration into this scope.
Sebastian Redl4b07b292008-12-22 19:15:10 +00005515 if (II)
Douglas Gregord308e622009-05-18 20:51:54 +00005516 PushOnScopeChains(ExDecl, S);
5517 else
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00005518 CurContext->addDecl(ExDecl);
Sebastian Redl4b07b292008-12-22 19:15:10 +00005519
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00005520 ProcessDeclAttributes(S, ExDecl, D);
Chris Lattnerb28317a2009-03-28 19:18:32 +00005521 return DeclPtrTy::make(ExDecl);
Sebastian Redl4b07b292008-12-22 19:15:10 +00005522}
Anders Carlssonfb311762009-03-14 00:25:26 +00005523
Mike Stump1eb44332009-09-09 15:08:12 +00005524Sema::DeclPtrTy Sema::ActOnStaticAssertDeclaration(SourceLocation AssertLoc,
Chris Lattnerb28317a2009-03-28 19:18:32 +00005525 ExprArg assertexpr,
5526 ExprArg assertmessageexpr) {
Anders Carlssonfb311762009-03-14 00:25:26 +00005527 Expr *AssertExpr = (Expr *)assertexpr.get();
Mike Stump1eb44332009-09-09 15:08:12 +00005528 StringLiteral *AssertMessage =
Anders Carlssonfb311762009-03-14 00:25:26 +00005529 cast<StringLiteral>((Expr *)assertmessageexpr.get());
5530
Anders Carlssonc3082412009-03-14 00:33:21 +00005531 if (!AssertExpr->isTypeDependent() && !AssertExpr->isValueDependent()) {
5532 llvm::APSInt Value(32);
5533 if (!AssertExpr->isIntegerConstantExpr(Value, Context)) {
5534 Diag(AssertLoc, diag::err_static_assert_expression_is_not_constant) <<
5535 AssertExpr->getSourceRange();
Chris Lattnerb28317a2009-03-28 19:18:32 +00005536 return DeclPtrTy();
Anders Carlssonc3082412009-03-14 00:33:21 +00005537 }
Anders Carlssonfb311762009-03-14 00:25:26 +00005538
Anders Carlssonc3082412009-03-14 00:33:21 +00005539 if (Value == 0) {
Mike Stump1eb44332009-09-09 15:08:12 +00005540 Diag(AssertLoc, diag::err_static_assert_failed)
Benjamin Kramer8d042582009-12-11 13:33:18 +00005541 << AssertMessage->getString() << AssertExpr->getSourceRange();
Anders Carlssonc3082412009-03-14 00:33:21 +00005542 }
5543 }
Mike Stump1eb44332009-09-09 15:08:12 +00005544
Anders Carlsson77d81422009-03-15 17:35:16 +00005545 assertexpr.release();
5546 assertmessageexpr.release();
Mike Stump1eb44332009-09-09 15:08:12 +00005547 Decl *Decl = StaticAssertDecl::Create(Context, CurContext, AssertLoc,
Anders Carlssonfb311762009-03-14 00:25:26 +00005548 AssertExpr, AssertMessage);
Mike Stump1eb44332009-09-09 15:08:12 +00005549
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00005550 CurContext->addDecl(Decl);
Chris Lattnerb28317a2009-03-28 19:18:32 +00005551 return DeclPtrTy::make(Decl);
Anders Carlssonfb311762009-03-14 00:25:26 +00005552}
Sebastian Redl50de12f2009-03-24 22:27:57 +00005553
Douglas Gregor1d869352010-04-07 16:53:43 +00005554/// \brief Perform semantic analysis of the given friend type declaration.
5555///
5556/// \returns A friend declaration that.
5557FriendDecl *Sema::CheckFriendTypeDecl(SourceLocation FriendLoc,
5558 TypeSourceInfo *TSInfo) {
5559 assert(TSInfo && "NULL TypeSourceInfo for friend type declaration");
5560
5561 QualType T = TSInfo->getType();
Abramo Bagnarabd054db2010-05-20 10:00:11 +00005562 SourceRange TypeRange = TSInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor1d869352010-04-07 16:53:43 +00005563
Douglas Gregor06245bf2010-04-07 17:57:12 +00005564 if (!getLangOptions().CPlusPlus0x) {
5565 // C++03 [class.friend]p2:
5566 // An elaborated-type-specifier shall be used in a friend declaration
5567 // for a class.*
5568 //
5569 // * The class-key of the elaborated-type-specifier is required.
5570 if (!ActiveTemplateInstantiations.empty()) {
5571 // Do not complain about the form of friend template types during
5572 // template instantiation; we will already have complained when the
5573 // template was declared.
5574 } else if (!T->isElaboratedTypeSpecifier()) {
5575 // If we evaluated the type to a record type, suggest putting
5576 // a tag in front.
5577 if (const RecordType *RT = T->getAs<RecordType>()) {
5578 RecordDecl *RD = RT->getDecl();
5579
5580 std::string InsertionText = std::string(" ") + RD->getKindName();
5581
5582 Diag(TypeRange.getBegin(), diag::ext_unelaborated_friend_type)
5583 << (unsigned) RD->getTagKind()
5584 << T
5585 << FixItHint::CreateInsertion(PP.getLocForEndOfToken(FriendLoc),
5586 InsertionText);
5587 } else {
5588 Diag(FriendLoc, diag::ext_nonclass_type_friend)
5589 << T
5590 << SourceRange(FriendLoc, TypeRange.getEnd());
5591 }
5592 } else if (T->getAs<EnumType>()) {
5593 Diag(FriendLoc, diag::ext_enum_friend)
Douglas Gregor1d869352010-04-07 16:53:43 +00005594 << T
Douglas Gregor1d869352010-04-07 16:53:43 +00005595 << SourceRange(FriendLoc, TypeRange.getEnd());
Douglas Gregor1d869352010-04-07 16:53:43 +00005596 }
5597 }
5598
Douglas Gregor06245bf2010-04-07 17:57:12 +00005599 // C++0x [class.friend]p3:
5600 // If the type specifier in a friend declaration designates a (possibly
5601 // cv-qualified) class type, that class is declared as a friend; otherwise,
5602 // the friend declaration is ignored.
5603
5604 // FIXME: C++0x has some syntactic restrictions on friend type declarations
5605 // in [class.friend]p3 that we do not implement.
Douglas Gregor1d869352010-04-07 16:53:43 +00005606
5607 return FriendDecl::Create(Context, CurContext, FriendLoc, TSInfo, FriendLoc);
5608}
5609
John McCalldd4a3b02009-09-16 22:47:08 +00005610/// Handle a friend type declaration. This works in tandem with
5611/// ActOnTag.
5612///
5613/// Notes on friend class templates:
5614///
5615/// We generally treat friend class declarations as if they were
5616/// declaring a class. So, for example, the elaborated type specifier
5617/// in a friend declaration is required to obey the restrictions of a
5618/// class-head (i.e. no typedefs in the scope chain), template
5619/// parameters are required to match up with simple template-ids, &c.
5620/// However, unlike when declaring a template specialization, it's
5621/// okay to refer to a template specialization without an empty
5622/// template parameter declaration, e.g.
5623/// friend class A<T>::B<unsigned>;
5624/// We permit this as a special case; if there are any template
5625/// parameters present at all, require proper matching, i.e.
5626/// template <> template <class T> friend class A<int>::B;
Chris Lattnerc7f19042009-10-25 17:47:27 +00005627Sema::DeclPtrTy Sema::ActOnFriendTypeDecl(Scope *S, const DeclSpec &DS,
John McCalldd4a3b02009-09-16 22:47:08 +00005628 MultiTemplateParamsArg TempParams) {
John McCall02cace72009-08-28 07:59:38 +00005629 SourceLocation Loc = DS.getSourceRange().getBegin();
John McCall67d1a672009-08-06 02:15:43 +00005630
5631 assert(DS.isFriendSpecified());
5632 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
5633
John McCalldd4a3b02009-09-16 22:47:08 +00005634 // Try to convert the decl specifier to a type. This works for
5635 // friend templates because ActOnTag never produces a ClassTemplateDecl
5636 // for a TUK_Friend.
Chris Lattnerc7f19042009-10-25 17:47:27 +00005637 Declarator TheDeclarator(DS, Declarator::MemberContext);
John McCall32f2fb52010-03-25 18:04:51 +00005638 TypeSourceInfo *TSI;
5639 QualType T = GetTypeForDeclarator(TheDeclarator, S, &TSI);
Chris Lattnerc7f19042009-10-25 17:47:27 +00005640 if (TheDeclarator.isInvalidType())
5641 return DeclPtrTy();
John McCall67d1a672009-08-06 02:15:43 +00005642
Douglas Gregor1d869352010-04-07 16:53:43 +00005643 if (!TSI)
5644 TSI = Context.getTrivialTypeSourceInfo(T, DS.getSourceRange().getBegin());
5645
John McCalldd4a3b02009-09-16 22:47:08 +00005646 // This is definitely an error in C++98. It's probably meant to
5647 // be forbidden in C++0x, too, but the specification is just
5648 // poorly written.
5649 //
5650 // The problem is with declarations like the following:
5651 // template <T> friend A<T>::foo;
5652 // where deciding whether a class C is a friend or not now hinges
5653 // on whether there exists an instantiation of A that causes
5654 // 'foo' to equal C. There are restrictions on class-heads
5655 // (which we declare (by fiat) elaborated friend declarations to
5656 // be) that makes this tractable.
5657 //
5658 // FIXME: handle "template <> friend class A<T>;", which
5659 // is possibly well-formed? Who even knows?
Douglas Gregor40336422010-03-31 22:19:08 +00005660 if (TempParams.size() && !T->isElaboratedTypeSpecifier()) {
John McCalldd4a3b02009-09-16 22:47:08 +00005661 Diag(Loc, diag::err_tagless_friend_type_template)
5662 << DS.getSourceRange();
5663 return DeclPtrTy();
5664 }
Douglas Gregor1d869352010-04-07 16:53:43 +00005665
John McCall02cace72009-08-28 07:59:38 +00005666 // C++98 [class.friend]p1: A friend of a class is a function
5667 // or class that is not a member of the class . . .
John McCalla236a552009-12-22 00:59:39 +00005668 // This is fixed in DR77, which just barely didn't make the C++03
5669 // deadline. It's also a very silly restriction that seriously
5670 // affects inner classes and which nobody else seems to implement;
5671 // thus we never diagnose it, not even in -pedantic.
John McCall32f2fb52010-03-25 18:04:51 +00005672 //
5673 // But note that we could warn about it: it's always useless to
5674 // friend one of your own members (it's not, however, worthless to
5675 // friend a member of an arbitrary specialization of your template).
John McCall02cace72009-08-28 07:59:38 +00005676
John McCalldd4a3b02009-09-16 22:47:08 +00005677 Decl *D;
Douglas Gregor1d869352010-04-07 16:53:43 +00005678 if (unsigned NumTempParamLists = TempParams.size())
John McCalldd4a3b02009-09-16 22:47:08 +00005679 D = FriendTemplateDecl::Create(Context, CurContext, Loc,
Douglas Gregor1d869352010-04-07 16:53:43 +00005680 NumTempParamLists,
John McCalldd4a3b02009-09-16 22:47:08 +00005681 (TemplateParameterList**) TempParams.release(),
John McCall32f2fb52010-03-25 18:04:51 +00005682 TSI,
John McCalldd4a3b02009-09-16 22:47:08 +00005683 DS.getFriendSpecLoc());
5684 else
Douglas Gregor1d869352010-04-07 16:53:43 +00005685 D = CheckFriendTypeDecl(DS.getFriendSpecLoc(), TSI);
5686
5687 if (!D)
5688 return DeclPtrTy();
5689
John McCalldd4a3b02009-09-16 22:47:08 +00005690 D->setAccess(AS_public);
5691 CurContext->addDecl(D);
John McCall02cace72009-08-28 07:59:38 +00005692
John McCalldd4a3b02009-09-16 22:47:08 +00005693 return DeclPtrTy::make(D);
John McCall02cace72009-08-28 07:59:38 +00005694}
5695
John McCallbbbcdd92009-09-11 21:02:39 +00005696Sema::DeclPtrTy
5697Sema::ActOnFriendFunctionDecl(Scope *S,
5698 Declarator &D,
5699 bool IsDefinition,
5700 MultiTemplateParamsArg TemplateParams) {
John McCall02cace72009-08-28 07:59:38 +00005701 const DeclSpec &DS = D.getDeclSpec();
5702
5703 assert(DS.isFriendSpecified());
5704 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
5705
5706 SourceLocation Loc = D.getIdentifierLoc();
John McCalla93c9342009-12-07 02:54:59 +00005707 TypeSourceInfo *TInfo = 0;
5708 QualType T = GetTypeForDeclarator(D, S, &TInfo);
John McCall67d1a672009-08-06 02:15:43 +00005709
5710 // C++ [class.friend]p1
5711 // A friend of a class is a function or class....
5712 // Note that this sees through typedefs, which is intended.
John McCall02cace72009-08-28 07:59:38 +00005713 // It *doesn't* see through dependent types, which is correct
5714 // according to [temp.arg.type]p3:
5715 // If a declaration acquires a function type through a
5716 // type dependent on a template-parameter and this causes
5717 // a declaration that does not use the syntactic form of a
5718 // function declarator to have a function type, the program
5719 // is ill-formed.
John McCall67d1a672009-08-06 02:15:43 +00005720 if (!T->isFunctionType()) {
5721 Diag(Loc, diag::err_unexpected_friend);
5722
5723 // It might be worthwhile to try to recover by creating an
5724 // appropriate declaration.
5725 return DeclPtrTy();
5726 }
5727
5728 // C++ [namespace.memdef]p3
5729 // - If a friend declaration in a non-local class first declares a
5730 // class or function, the friend class or function is a member
5731 // of the innermost enclosing namespace.
5732 // - The name of the friend is not found by simple name lookup
5733 // until a matching declaration is provided in that namespace
5734 // scope (either before or after the class declaration granting
5735 // friendship).
5736 // - If a friend function is called, its name may be found by the
5737 // name lookup that considers functions from namespaces and
5738 // classes associated with the types of the function arguments.
5739 // - When looking for a prior declaration of a class or a function
5740 // declared as a friend, scopes outside the innermost enclosing
5741 // namespace scope are not considered.
5742
John McCall02cace72009-08-28 07:59:38 +00005743 CXXScopeSpec &ScopeQual = D.getCXXScopeSpec();
5744 DeclarationName Name = GetNameForDeclarator(D);
John McCall67d1a672009-08-06 02:15:43 +00005745 assert(Name);
5746
John McCall67d1a672009-08-06 02:15:43 +00005747 // The context we found the declaration in, or in which we should
5748 // create the declaration.
5749 DeclContext *DC;
5750
5751 // FIXME: handle local classes
5752
5753 // Recover from invalid scope qualifiers as if they just weren't there.
John McCall68263142009-11-18 22:49:29 +00005754 LookupResult Previous(*this, Name, D.getIdentifierLoc(), LookupOrdinaryName,
5755 ForRedeclaration);
John McCall67d1a672009-08-06 02:15:43 +00005756 if (!ScopeQual.isInvalid() && ScopeQual.isSet()) {
5757 DC = computeDeclContext(ScopeQual);
5758
5759 // FIXME: handle dependent contexts
5760 if (!DC) return DeclPtrTy();
John McCall77bb1aa2010-05-01 00:40:08 +00005761 if (RequireCompleteDeclContext(ScopeQual, DC)) return DeclPtrTy();
John McCall67d1a672009-08-06 02:15:43 +00005762
John McCall68263142009-11-18 22:49:29 +00005763 LookupQualifiedName(Previous, DC);
John McCall67d1a672009-08-06 02:15:43 +00005764
5765 // If searching in that context implicitly found a declaration in
5766 // a different context, treat it like it wasn't found at all.
5767 // TODO: better diagnostics for this case. Suggesting the right
5768 // qualified scope would be nice...
John McCall68263142009-11-18 22:49:29 +00005769 // FIXME: getRepresentativeDecl() is not right here at all
5770 if (Previous.empty() ||
5771 !Previous.getRepresentativeDecl()->getDeclContext()->Equals(DC)) {
John McCall02cace72009-08-28 07:59:38 +00005772 D.setInvalidType();
John McCall67d1a672009-08-06 02:15:43 +00005773 Diag(Loc, diag::err_qualified_friend_not_found) << Name << T;
5774 return DeclPtrTy();
5775 }
5776
5777 // C++ [class.friend]p1: A friend of a class is a function or
5778 // class that is not a member of the class . . .
Douglas Gregor182ddf02009-09-28 00:08:27 +00005779 if (DC->Equals(CurContext))
John McCall67d1a672009-08-06 02:15:43 +00005780 Diag(DS.getFriendSpecLoc(), diag::err_friend_is_member);
5781
John McCall67d1a672009-08-06 02:15:43 +00005782 // Otherwise walk out to the nearest namespace scope looking for matches.
5783 } else {
5784 // TODO: handle local class contexts.
5785
5786 DC = CurContext;
5787 while (true) {
5788 // Skip class contexts. If someone can cite chapter and verse
5789 // for this behavior, that would be nice --- it's what GCC and
5790 // EDG do, and it seems like a reasonable intent, but the spec
5791 // really only says that checks for unqualified existing
5792 // declarations should stop at the nearest enclosing namespace,
5793 // not that they should only consider the nearest enclosing
5794 // namespace.
Douglas Gregor182ddf02009-09-28 00:08:27 +00005795 while (DC->isRecord())
5796 DC = DC->getParent();
John McCall67d1a672009-08-06 02:15:43 +00005797
John McCall68263142009-11-18 22:49:29 +00005798 LookupQualifiedName(Previous, DC);
John McCall67d1a672009-08-06 02:15:43 +00005799
5800 // TODO: decide what we think about using declarations.
John McCall68263142009-11-18 22:49:29 +00005801 if (!Previous.empty())
John McCall67d1a672009-08-06 02:15:43 +00005802 break;
Douglas Gregor182ddf02009-09-28 00:08:27 +00005803
John McCall67d1a672009-08-06 02:15:43 +00005804 if (DC->isFileContext()) break;
5805 DC = DC->getParent();
5806 }
5807
5808 // C++ [class.friend]p1: A friend of a class is a function or
5809 // class that is not a member of the class . . .
John McCall7f27d922009-08-06 20:49:32 +00005810 // C++0x changes this for both friend types and functions.
5811 // Most C++ 98 compilers do seem to give an error here, so
5812 // we do, too.
John McCall68263142009-11-18 22:49:29 +00005813 if (!Previous.empty() && DC->Equals(CurContext)
5814 && !getLangOptions().CPlusPlus0x)
John McCall67d1a672009-08-06 02:15:43 +00005815 Diag(DS.getFriendSpecLoc(), diag::err_friend_is_member);
5816 }
5817
Douglas Gregor182ddf02009-09-28 00:08:27 +00005818 if (DC->isFileContext()) {
John McCall67d1a672009-08-06 02:15:43 +00005819 // This implies that it has to be an operator or function.
Douglas Gregor3f9a0562009-11-03 01:35:08 +00005820 if (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ||
5821 D.getName().getKind() == UnqualifiedId::IK_DestructorName ||
5822 D.getName().getKind() == UnqualifiedId::IK_ConversionFunctionId) {
John McCall67d1a672009-08-06 02:15:43 +00005823 Diag(Loc, diag::err_introducing_special_friend) <<
Douglas Gregor3f9a0562009-11-03 01:35:08 +00005824 (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ? 0 :
5825 D.getName().getKind() == UnqualifiedId::IK_DestructorName ? 1 : 2);
John McCall67d1a672009-08-06 02:15:43 +00005826 return DeclPtrTy();
5827 }
John McCall67d1a672009-08-06 02:15:43 +00005828 }
5829
Douglas Gregor182ddf02009-09-28 00:08:27 +00005830 bool Redeclaration = false;
John McCalla93c9342009-12-07 02:54:59 +00005831 NamedDecl *ND = ActOnFunctionDeclarator(S, D, DC, T, TInfo, Previous,
Douglas Gregora735b202009-10-13 14:39:41 +00005832 move(TemplateParams),
John McCall3f9a8a62009-08-11 06:59:38 +00005833 IsDefinition,
5834 Redeclaration);
John McCall02cace72009-08-28 07:59:38 +00005835 if (!ND) return DeclPtrTy();
John McCallab88d972009-08-31 22:39:49 +00005836
Douglas Gregor182ddf02009-09-28 00:08:27 +00005837 assert(ND->getDeclContext() == DC);
5838 assert(ND->getLexicalDeclContext() == CurContext);
John McCall88232aa2009-08-18 00:00:49 +00005839
John McCallab88d972009-08-31 22:39:49 +00005840 // Add the function declaration to the appropriate lookup tables,
5841 // adjusting the redeclarations list as necessary. We don't
5842 // want to do this yet if the friending class is dependent.
Mike Stump1eb44332009-09-09 15:08:12 +00005843 //
John McCallab88d972009-08-31 22:39:49 +00005844 // Also update the scope-based lookup if the target context's
5845 // lookup context is in lexical scope.
5846 if (!CurContext->isDependentContext()) {
5847 DC = DC->getLookupContext();
Douglas Gregor182ddf02009-09-28 00:08:27 +00005848 DC->makeDeclVisibleInContext(ND, /* Recoverable=*/ false);
John McCallab88d972009-08-31 22:39:49 +00005849 if (Scope *EnclosingScope = getScopeForDeclContext(S, DC))
Douglas Gregor182ddf02009-09-28 00:08:27 +00005850 PushOnScopeChains(ND, EnclosingScope, /*AddToContext=*/ false);
John McCallab88d972009-08-31 22:39:49 +00005851 }
John McCall02cace72009-08-28 07:59:38 +00005852
5853 FriendDecl *FrD = FriendDecl::Create(Context, CurContext,
Douglas Gregor182ddf02009-09-28 00:08:27 +00005854 D.getIdentifierLoc(), ND,
John McCall02cace72009-08-28 07:59:38 +00005855 DS.getFriendSpecLoc());
John McCall5fee1102009-08-29 03:50:18 +00005856 FrD->setAccess(AS_public);
John McCall02cace72009-08-28 07:59:38 +00005857 CurContext->addDecl(FrD);
John McCall67d1a672009-08-06 02:15:43 +00005858
Douglas Gregor182ddf02009-09-28 00:08:27 +00005859 return DeclPtrTy::make(ND);
Anders Carlsson00338362009-05-11 22:55:49 +00005860}
5861
Chris Lattnerb28317a2009-03-28 19:18:32 +00005862void Sema::SetDeclDeleted(DeclPtrTy dcl, SourceLocation DelLoc) {
Douglas Gregorefd5bda2009-08-24 11:57:43 +00005863 AdjustDeclIfTemplate(dcl);
Mike Stump1eb44332009-09-09 15:08:12 +00005864
Chris Lattnerb28317a2009-03-28 19:18:32 +00005865 Decl *Dcl = dcl.getAs<Decl>();
Sebastian Redl50de12f2009-03-24 22:27:57 +00005866 FunctionDecl *Fn = dyn_cast<FunctionDecl>(Dcl);
5867 if (!Fn) {
5868 Diag(DelLoc, diag::err_deleted_non_function);
5869 return;
5870 }
5871 if (const FunctionDecl *Prev = Fn->getPreviousDeclaration()) {
5872 Diag(DelLoc, diag::err_deleted_decl_not_first);
5873 Diag(Prev->getLocation(), diag::note_previous_declaration);
5874 // If the declaration wasn't the first, we delete the function anyway for
5875 // recovery.
5876 }
5877 Fn->setDeleted();
5878}
Sebastian Redl13e88542009-04-27 21:33:24 +00005879
5880static void SearchForReturnInStmt(Sema &Self, Stmt *S) {
5881 for (Stmt::child_iterator CI = S->child_begin(), E = S->child_end(); CI != E;
5882 ++CI) {
5883 Stmt *SubStmt = *CI;
5884 if (!SubStmt)
5885 continue;
5886 if (isa<ReturnStmt>(SubStmt))
5887 Self.Diag(SubStmt->getSourceRange().getBegin(),
5888 diag::err_return_in_constructor_handler);
5889 if (!isa<Expr>(SubStmt))
5890 SearchForReturnInStmt(Self, SubStmt);
5891 }
5892}
5893
5894void Sema::DiagnoseReturnInConstructorExceptionHandler(CXXTryStmt *TryBlock) {
5895 for (unsigned I = 0, E = TryBlock->getNumHandlers(); I != E; ++I) {
5896 CXXCatchStmt *Handler = TryBlock->getHandler(I);
5897 SearchForReturnInStmt(*this, Handler);
5898 }
5899}
Anders Carlssond7ba27d2009-05-14 01:09:04 +00005900
Mike Stump1eb44332009-09-09 15:08:12 +00005901bool Sema::CheckOverridingFunctionReturnType(const CXXMethodDecl *New,
Anders Carlssond7ba27d2009-05-14 01:09:04 +00005902 const CXXMethodDecl *Old) {
John McCall183700f2009-09-21 23:43:11 +00005903 QualType NewTy = New->getType()->getAs<FunctionType>()->getResultType();
5904 QualType OldTy = Old->getType()->getAs<FunctionType>()->getResultType();
Anders Carlssond7ba27d2009-05-14 01:09:04 +00005905
Chandler Carruth73857792010-02-15 11:53:20 +00005906 if (Context.hasSameType(NewTy, OldTy) ||
5907 NewTy->isDependentType() || OldTy->isDependentType())
Anders Carlssond7ba27d2009-05-14 01:09:04 +00005908 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00005909
Anders Carlssonc3a68b22009-05-14 19:52:19 +00005910 // Check if the return types are covariant
5911 QualType NewClassTy, OldClassTy;
Mike Stump1eb44332009-09-09 15:08:12 +00005912
Anders Carlssonc3a68b22009-05-14 19:52:19 +00005913 /// Both types must be pointers or references to classes.
Anders Carlssonf2a04bf2010-01-22 17:37:20 +00005914 if (const PointerType *NewPT = NewTy->getAs<PointerType>()) {
5915 if (const PointerType *OldPT = OldTy->getAs<PointerType>()) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +00005916 NewClassTy = NewPT->getPointeeType();
5917 OldClassTy = OldPT->getPointeeType();
5918 }
Anders Carlssonf2a04bf2010-01-22 17:37:20 +00005919 } else if (const ReferenceType *NewRT = NewTy->getAs<ReferenceType>()) {
5920 if (const ReferenceType *OldRT = OldTy->getAs<ReferenceType>()) {
5921 if (NewRT->getTypeClass() == OldRT->getTypeClass()) {
5922 NewClassTy = NewRT->getPointeeType();
5923 OldClassTy = OldRT->getPointeeType();
5924 }
Anders Carlssonc3a68b22009-05-14 19:52:19 +00005925 }
5926 }
Mike Stump1eb44332009-09-09 15:08:12 +00005927
Anders Carlssonc3a68b22009-05-14 19:52:19 +00005928 // The return types aren't either both pointers or references to a class type.
5929 if (NewClassTy.isNull()) {
Mike Stump1eb44332009-09-09 15:08:12 +00005930 Diag(New->getLocation(),
Anders Carlssonc3a68b22009-05-14 19:52:19 +00005931 diag::err_different_return_type_for_overriding_virtual_function)
5932 << New->getDeclName() << NewTy << OldTy;
5933 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
Mike Stump1eb44332009-09-09 15:08:12 +00005934
Anders Carlssonc3a68b22009-05-14 19:52:19 +00005935 return true;
5936 }
Anders Carlssond7ba27d2009-05-14 01:09:04 +00005937
Anders Carlssonbe2e2052009-12-31 18:34:24 +00005938 // C++ [class.virtual]p6:
5939 // If the return type of D::f differs from the return type of B::f, the
5940 // class type in the return type of D::f shall be complete at the point of
5941 // declaration of D::f or shall be the class type D.
Anders Carlssonac4c9392009-12-31 18:54:35 +00005942 if (const RecordType *RT = NewClassTy->getAs<RecordType>()) {
5943 if (!RT->isBeingDefined() &&
5944 RequireCompleteType(New->getLocation(), NewClassTy,
5945 PDiag(diag::err_covariant_return_incomplete)
5946 << New->getDeclName()))
Anders Carlssonbe2e2052009-12-31 18:34:24 +00005947 return true;
Anders Carlssonac4c9392009-12-31 18:54:35 +00005948 }
Anders Carlssonbe2e2052009-12-31 18:34:24 +00005949
Douglas Gregora4923eb2009-11-16 21:35:15 +00005950 if (!Context.hasSameUnqualifiedType(NewClassTy, OldClassTy)) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +00005951 // Check if the new class derives from the old class.
5952 if (!IsDerivedFrom(NewClassTy, OldClassTy)) {
5953 Diag(New->getLocation(),
5954 diag::err_covariant_return_not_derived)
5955 << New->getDeclName() << NewTy << OldTy;
5956 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
5957 return true;
5958 }
Mike Stump1eb44332009-09-09 15:08:12 +00005959
Anders Carlssonc3a68b22009-05-14 19:52:19 +00005960 // Check if we the conversion from derived to base is valid.
John McCall58e6f342010-03-16 05:22:47 +00005961 if (CheckDerivedToBaseConversion(NewClassTy, OldClassTy,
Anders Carlssone25a96c2010-04-24 17:11:09 +00005962 diag::err_covariant_return_inaccessible_base,
5963 diag::err_covariant_return_ambiguous_derived_to_base_conv,
5964 // FIXME: Should this point to the return type?
5965 New->getLocation(), SourceRange(), New->getDeclName(), 0)) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +00005966 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
5967 return true;
5968 }
5969 }
Mike Stump1eb44332009-09-09 15:08:12 +00005970
Anders Carlssonc3a68b22009-05-14 19:52:19 +00005971 // The qualifiers of the return types must be the same.
Anders Carlssonf2a04bf2010-01-22 17:37:20 +00005972 if (NewTy.getLocalCVRQualifiers() != OldTy.getLocalCVRQualifiers()) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +00005973 Diag(New->getLocation(),
5974 diag::err_covariant_return_type_different_qualifications)
Anders Carlssond7ba27d2009-05-14 01:09:04 +00005975 << New->getDeclName() << NewTy << OldTy;
Anders Carlssonc3a68b22009-05-14 19:52:19 +00005976 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
5977 return true;
5978 };
Mike Stump1eb44332009-09-09 15:08:12 +00005979
Anders Carlssonc3a68b22009-05-14 19:52:19 +00005980
5981 // The new class type must have the same or less qualifiers as the old type.
5982 if (NewClassTy.isMoreQualifiedThan(OldClassTy)) {
5983 Diag(New->getLocation(),
5984 diag::err_covariant_return_type_class_type_more_qualified)
5985 << New->getDeclName() << NewTy << OldTy;
5986 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
5987 return true;
5988 };
Mike Stump1eb44332009-09-09 15:08:12 +00005989
Anders Carlssonc3a68b22009-05-14 19:52:19 +00005990 return false;
Anders Carlssond7ba27d2009-05-14 01:09:04 +00005991}
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00005992
Sean Huntbbd37c62009-11-21 08:43:09 +00005993bool Sema::CheckOverridingFunctionAttributes(const CXXMethodDecl *New,
5994 const CXXMethodDecl *Old)
5995{
5996 if (Old->hasAttr<FinalAttr>()) {
5997 Diag(New->getLocation(), diag::err_final_function_overridden)
5998 << New->getDeclName();
5999 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
6000 return true;
6001 }
6002
6003 return false;
6004}
6005
Douglas Gregor4ba31362009-12-01 17:24:26 +00006006/// \brief Mark the given method pure.
6007///
6008/// \param Method the method to be marked pure.
6009///
6010/// \param InitRange the source range that covers the "0" initializer.
6011bool Sema::CheckPureMethod(CXXMethodDecl *Method, SourceRange InitRange) {
6012 if (Method->isVirtual() || Method->getParent()->isDependentContext()) {
6013 Method->setPure();
6014
6015 // A class is abstract if at least one function is pure virtual.
6016 Method->getParent()->setAbstract(true);
6017 return false;
6018 }
6019
6020 if (!Method->isInvalidDecl())
6021 Diag(Method->getLocation(), diag::err_non_virtual_pure)
6022 << Method->getDeclName() << InitRange;
6023 return true;
6024}
6025
John McCall731ad842009-12-19 09:28:58 +00006026/// ActOnCXXEnterDeclInitializer - Invoked when we are about to parse
6027/// an initializer for the out-of-line declaration 'Dcl'. The scope
6028/// is a fresh scope pushed for just this purpose.
6029///
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00006030/// After this method is called, according to [C++ 3.4.1p13], if 'Dcl' is a
6031/// static data member of class X, names should be looked up in the scope of
6032/// class X.
6033void Sema::ActOnCXXEnterDeclInitializer(Scope *S, DeclPtrTy Dcl) {
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00006034 // If there is no declaration, there was an error parsing it.
John McCall731ad842009-12-19 09:28:58 +00006035 Decl *D = Dcl.getAs<Decl>();
6036 if (D == 0) return;
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00006037
John McCall731ad842009-12-19 09:28:58 +00006038 // We should only get called for declarations with scope specifiers, like:
6039 // int foo::bar;
6040 assert(D->isOutOfLine());
John McCall7a1dc562009-12-19 10:49:29 +00006041 EnterDeclaratorContext(S, D->getDeclContext());
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00006042}
6043
6044/// ActOnCXXExitDeclInitializer - Invoked after we are finished parsing an
John McCall731ad842009-12-19 09:28:58 +00006045/// initializer for the out-of-line declaration 'Dcl'.
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00006046void Sema::ActOnCXXExitDeclInitializer(Scope *S, DeclPtrTy Dcl) {
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00006047 // If there is no declaration, there was an error parsing it.
John McCall731ad842009-12-19 09:28:58 +00006048 Decl *D = Dcl.getAs<Decl>();
6049 if (D == 0) return;
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00006050
John McCall731ad842009-12-19 09:28:58 +00006051 assert(D->isOutOfLine());
John McCall7a1dc562009-12-19 10:49:29 +00006052 ExitDeclaratorContext(S);
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00006053}
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00006054
6055/// ActOnCXXConditionDeclarationExpr - Parsed a condition declaration of a
6056/// C++ if/switch/while/for statement.
6057/// e.g: "if (int x = f()) {...}"
6058Action::DeclResult
6059Sema::ActOnCXXConditionDeclaration(Scope *S, Declarator &D) {
6060 // C++ 6.4p2:
6061 // The declarator shall not specify a function or an array.
6062 // The type-specifier-seq shall not contain typedef and shall not declare a
6063 // new class or enumeration.
6064 assert(D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef &&
6065 "Parser allowed 'typedef' as storage class of condition decl.");
6066
John McCalla93c9342009-12-07 02:54:59 +00006067 TypeSourceInfo *TInfo = 0;
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00006068 TagDecl *OwnedTag = 0;
John McCalla93c9342009-12-07 02:54:59 +00006069 QualType Ty = GetTypeForDeclarator(D, S, &TInfo, &OwnedTag);
Douglas Gregor99e9b4d2009-11-25 00:27:52 +00006070
6071 if (Ty->isFunctionType()) { // The declarator shall not specify a function...
6072 // We exit without creating a CXXConditionDeclExpr because a FunctionDecl
6073 // would be created and CXXConditionDeclExpr wants a VarDecl.
6074 Diag(D.getIdentifierLoc(), diag::err_invalid_use_of_function_type)
6075 << D.getSourceRange();
6076 return DeclResult();
6077 } else if (OwnedTag && OwnedTag->isDefinition()) {
6078 // The type-specifier-seq shall not declare a new class or enumeration.
6079 Diag(OwnedTag->getLocation(), diag::err_type_defined_in_condition);
6080 }
6081
6082 DeclPtrTy Dcl = ActOnDeclarator(S, D);
6083 if (!Dcl)
6084 return DeclResult();
6085
6086 VarDecl *VD = cast<VarDecl>(Dcl.getAs<Decl>());
6087 VD->setDeclaredInCondition(true);
6088 return Dcl;
6089}
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00006090
Douglas Gregor6fb745b2010-05-13 16:44:06 +00006091void Sema::MarkVTableUsed(SourceLocation Loc, CXXRecordDecl *Class,
6092 bool DefinitionRequired) {
6093 // Ignore any vtable uses in unevaluated operands or for classes that do
6094 // not have a vtable.
6095 if (!Class->isDynamicClass() || Class->isDependentContext() ||
6096 CurContext->isDependentContext() ||
6097 ExprEvalContexts.back().Context == Unevaluated)
Rafael Espindolabbf58bb2010-03-10 02:19:29 +00006098 return;
6099
Douglas Gregor6fb745b2010-05-13 16:44:06 +00006100 // Try to insert this class into the map.
6101 Class = cast<CXXRecordDecl>(Class->getCanonicalDecl());
6102 std::pair<llvm::DenseMap<CXXRecordDecl *, bool>::iterator, bool>
6103 Pos = VTablesUsed.insert(std::make_pair(Class, DefinitionRequired));
6104 if (!Pos.second) {
Daniel Dunbarb9aefa72010-05-25 00:33:13 +00006105 // If we already had an entry, check to see if we are promoting this vtable
6106 // to required a definition. If so, we need to reappend to the VTableUses
6107 // list, since we may have already processed the first entry.
6108 if (DefinitionRequired && !Pos.first->second) {
6109 Pos.first->second = true;
6110 } else {
6111 // Otherwise, we can early exit.
6112 return;
6113 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +00006114 }
6115
6116 // Local classes need to have their virtual members marked
6117 // immediately. For all other classes, we mark their virtual members
6118 // at the end of the translation unit.
6119 if (Class->isLocalClass())
6120 MarkVirtualMembersReferenced(Loc, Class);
Daniel Dunbar380c2132010-05-11 21:32:35 +00006121 else
Douglas Gregor6fb745b2010-05-13 16:44:06 +00006122 VTableUses.push_back(std::make_pair(Class, Loc));
Douglas Gregorbbbe0742010-05-11 20:24:17 +00006123}
6124
Douglas Gregor6fb745b2010-05-13 16:44:06 +00006125bool Sema::DefineUsedVTables() {
6126 // If any dynamic classes have their key function defined within
6127 // this translation unit, then those vtables are considered "used" and must
6128 // be emitted.
6129 for (unsigned I = 0, N = DynamicClasses.size(); I != N; ++I) {
6130 if (const CXXMethodDecl *KeyFunction
6131 = Context.getKeyFunction(DynamicClasses[I])) {
6132 const FunctionDecl *Definition = 0;
Douglas Gregorca4aa372010-05-14 04:08:48 +00006133 if (KeyFunction->getBody(Definition))
Douglas Gregor6fb745b2010-05-13 16:44:06 +00006134 MarkVTableUsed(Definition->getLocation(), DynamicClasses[I], true);
6135 }
6136 }
6137
6138 if (VTableUses.empty())
Anders Carlssond6a637f2009-12-07 08:24:59 +00006139 return false;
6140
Douglas Gregor6fb745b2010-05-13 16:44:06 +00006141 // Note: The VTableUses vector could grow as a result of marking
6142 // the members of a class as "used", so we check the size each
6143 // time through the loop and prefer indices (with are stable) to
6144 // iterators (which are not).
6145 for (unsigned I = 0; I != VTableUses.size(); ++I) {
Daniel Dunbare669f892010-05-25 00:32:58 +00006146 CXXRecordDecl *Class = VTableUses[I].first->getDefinition();
Douglas Gregor6fb745b2010-05-13 16:44:06 +00006147 if (!Class)
6148 continue;
6149
6150 SourceLocation Loc = VTableUses[I].second;
6151
6152 // If this class has a key function, but that key function is
6153 // defined in another translation unit, we don't need to emit the
6154 // vtable even though we're using it.
6155 const CXXMethodDecl *KeyFunction = Context.getKeyFunction(Class);
6156 if (KeyFunction && !KeyFunction->getBody()) {
6157 switch (KeyFunction->getTemplateSpecializationKind()) {
6158 case TSK_Undeclared:
6159 case TSK_ExplicitSpecialization:
6160 case TSK_ExplicitInstantiationDeclaration:
6161 // The key function is in another translation unit.
6162 continue;
6163
6164 case TSK_ExplicitInstantiationDefinition:
6165 case TSK_ImplicitInstantiation:
6166 // We will be instantiating the key function.
6167 break;
6168 }
6169 } else if (!KeyFunction) {
6170 // If we have a class with no key function that is the subject
6171 // of an explicit instantiation declaration, suppress the
6172 // vtable; it will live with the explicit instantiation
6173 // definition.
6174 bool IsExplicitInstantiationDeclaration
6175 = Class->getTemplateSpecializationKind()
6176 == TSK_ExplicitInstantiationDeclaration;
6177 for (TagDecl::redecl_iterator R = Class->redecls_begin(),
6178 REnd = Class->redecls_end();
6179 R != REnd; ++R) {
6180 TemplateSpecializationKind TSK
6181 = cast<CXXRecordDecl>(*R)->getTemplateSpecializationKind();
6182 if (TSK == TSK_ExplicitInstantiationDeclaration)
6183 IsExplicitInstantiationDeclaration = true;
6184 else if (TSK == TSK_ExplicitInstantiationDefinition) {
6185 IsExplicitInstantiationDeclaration = false;
6186 break;
6187 }
6188 }
6189
6190 if (IsExplicitInstantiationDeclaration)
6191 continue;
6192 }
6193
6194 // Mark all of the virtual members of this class as referenced, so
6195 // that we can build a vtable. Then, tell the AST consumer that a
6196 // vtable for this class is required.
6197 MarkVirtualMembersReferenced(Loc, Class);
6198 CXXRecordDecl *Canonical = cast<CXXRecordDecl>(Class->getCanonicalDecl());
6199 Consumer.HandleVTable(Class, VTablesUsed[Canonical]);
6200
6201 // Optionally warn if we're emitting a weak vtable.
6202 if (Class->getLinkage() == ExternalLinkage &&
6203 Class->getTemplateSpecializationKind() != TSK_ImplicitInstantiation) {
6204 if (!KeyFunction || (KeyFunction->getBody() && KeyFunction->isInlined()))
6205 Diag(Class->getLocation(), diag::warn_weak_vtable) << Class;
6206 }
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00006207 }
Douglas Gregor6fb745b2010-05-13 16:44:06 +00006208 VTableUses.clear();
6209
Anders Carlssond6a637f2009-12-07 08:24:59 +00006210 return true;
Anders Carlsson5ec02ae2009-12-02 17:15:43 +00006211}
Anders Carlssond6a637f2009-12-07 08:24:59 +00006212
Rafael Espindola3e1ae932010-03-26 00:36:59 +00006213void Sema::MarkVirtualMembersReferenced(SourceLocation Loc,
6214 const CXXRecordDecl *RD) {
Anders Carlssond6a637f2009-12-07 08:24:59 +00006215 for (CXXRecordDecl::method_iterator i = RD->method_begin(),
6216 e = RD->method_end(); i != e; ++i) {
6217 CXXMethodDecl *MD = *i;
6218
6219 // C++ [basic.def.odr]p2:
6220 // [...] A virtual member function is used if it is not pure. [...]
6221 if (MD->isVirtual() && !MD->isPure())
6222 MarkDeclarationReferenced(Loc, MD);
6223 }
Rafael Espindola3e1ae932010-03-26 00:36:59 +00006224
6225 // Only classes that have virtual bases need a VTT.
6226 if (RD->getNumVBases() == 0)
6227 return;
6228
6229 for (CXXRecordDecl::base_class_const_iterator i = RD->bases_begin(),
6230 e = RD->bases_end(); i != e; ++i) {
6231 const CXXRecordDecl *Base =
6232 cast<CXXRecordDecl>(i->getType()->getAs<RecordType>()->getDecl());
6233 if (i->isVirtual())
6234 continue;
6235 if (Base->getNumVBases() == 0)
6236 continue;
6237 MarkVirtualMembersReferenced(Loc, Base);
6238 }
Anders Carlssond6a637f2009-12-07 08:24:59 +00006239}
Fariborz Jahaniane4498c62010-04-28 16:11:27 +00006240
6241/// SetIvarInitializers - This routine builds initialization ASTs for the
6242/// Objective-C implementation whose ivars need be initialized.
6243void Sema::SetIvarInitializers(ObjCImplementationDecl *ObjCImplementation) {
6244 if (!getLangOptions().CPlusPlus)
6245 return;
6246 if (const ObjCInterfaceDecl *OID = ObjCImplementation->getClassInterface()) {
6247 llvm::SmallVector<ObjCIvarDecl*, 8> ivars;
6248 CollectIvarsToConstructOrDestruct(OID, ivars);
6249 if (ivars.empty())
6250 return;
6251 llvm::SmallVector<CXXBaseOrMemberInitializer*, 32> AllToInit;
6252 for (unsigned i = 0; i < ivars.size(); i++) {
6253 FieldDecl *Field = ivars[i];
Douglas Gregor68dd3ee2010-05-20 02:24:22 +00006254 if (Field->isInvalidDecl())
6255 continue;
6256
Fariborz Jahaniane4498c62010-04-28 16:11:27 +00006257 CXXBaseOrMemberInitializer *Member;
6258 InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field);
6259 InitializationKind InitKind =
6260 InitializationKind::CreateDefault(ObjCImplementation->getLocation());
6261
6262 InitializationSequence InitSeq(*this, InitEntity, InitKind, 0, 0);
6263 Sema::OwningExprResult MemberInit =
6264 InitSeq.Perform(*this, InitEntity, InitKind,
6265 Sema::MultiExprArg(*this, 0, 0));
6266 MemberInit = MaybeCreateCXXExprWithTemporaries(move(MemberInit));
6267 // Note, MemberInit could actually come back empty if no initialization
6268 // is required (e.g., because it would call a trivial default constructor)
6269 if (!MemberInit.get() || MemberInit.isInvalid())
6270 continue;
6271
6272 Member =
6273 new (Context) CXXBaseOrMemberInitializer(Context,
6274 Field, SourceLocation(),
6275 SourceLocation(),
6276 MemberInit.takeAs<Expr>(),
6277 SourceLocation());
6278 AllToInit.push_back(Member);
Douglas Gregor68dd3ee2010-05-20 02:24:22 +00006279
6280 // Be sure that the destructor is accessible and is marked as referenced.
6281 if (const RecordType *RecordTy
6282 = Context.getBaseElementType(Field->getType())
6283 ->getAs<RecordType>()) {
6284 CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl());
6285 if (CXXDestructorDecl *Destructor
6286 = const_cast<CXXDestructorDecl*>(RD->getDestructor(Context))) {
6287 MarkDeclarationReferenced(Field->getLocation(), Destructor);
6288 CheckDestructorAccess(Field->getLocation(), Destructor,
6289 PDiag(diag::err_access_dtor_ivar)
6290 << Context.getBaseElementType(Field->getType()));
6291 }
6292 }
Fariborz Jahaniane4498c62010-04-28 16:11:27 +00006293 }
6294 ObjCImplementation->setIvarInitializers(Context,
6295 AllToInit.data(), AllToInit.size());
6296 }
6297}