blob: 3f59fb71d01c6d9477118a6c860eeb5967ce6c16 [file] [log] [blame]
Chris Lattner199abbc2008-04-08 05:04:30 +00001//===------ SemaDeclCXX.cpp - Semantic Analysis for C++ Declarations ------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements semantic analysis for C++ declarations.
11//
12//===----------------------------------------------------------------------===//
13
Douglas Gregorc3a6ade2010-08-12 20:07:10 +000014#include "clang/Sema/Sema.h"
15#include "clang/Sema/Initialization.h"
16#include "clang/Sema/Lookup.h"
Argyrios Kyrtzidis2f67f372008-08-09 00:58:37 +000017#include "clang/AST/ASTConsumer.h"
Douglas Gregor556877c2008-04-13 21:30:24 +000018#include "clang/AST/ASTContext.h"
Douglas Gregorb139cd52010-05-01 20:49:11 +000019#include "clang/AST/CharUnits.h"
Douglas Gregor36d1b142009-10-06 17:59:45 +000020#include "clang/AST/CXXInheritance.h"
Anders Carlssonb5a27b42009-03-24 01:19:16 +000021#include "clang/AST/DeclVisitor.h"
Douglas Gregorb139cd52010-05-01 20:49:11 +000022#include "clang/AST/RecordLayout.h"
23#include "clang/AST/StmtVisitor.h"
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +000024#include "clang/AST/TypeLoc.h"
Douglas Gregordff6a8e2008-10-22 21:13:31 +000025#include "clang/AST/TypeOrdering.h"
Douglas Gregorb53edfb2009-11-10 19:49:08 +000026#include "clang/Parse/DeclSpec.h"
27#include "clang/Parse/Template.h"
Anders Carlssond624e162009-08-26 23:45:07 +000028#include "clang/Basic/PartialDiagnostic.h"
Argyrios Kyrtzidis153d9672008-10-06 18:37:09 +000029#include "clang/Lex/Preprocessor.h"
Douglas Gregor55297ac2008-12-23 00:26:44 +000030#include "llvm/ADT/STLExtras.h"
Douglas Gregor29a92472008-10-22 17:49:05 +000031#include <map>
Douglas Gregor36d1b142009-10-06 17:59:45 +000032#include <set>
Chris Lattner199abbc2008-04-08 05:04:30 +000033
34using namespace clang;
35
Chris Lattner58258242008-04-10 02:22:51 +000036//===----------------------------------------------------------------------===//
37// CheckDefaultArgumentVisitor
38//===----------------------------------------------------------------------===//
39
Chris Lattnerb0d38442008-04-12 23:52:44 +000040namespace {
41 /// CheckDefaultArgumentVisitor - C++ [dcl.fct.default] Traverses
42 /// the default argument of a parameter to determine whether it
43 /// contains any ill-formed subexpressions. For example, this will
44 /// diagnose the use of local variables or parameters within the
45 /// default argument expression.
Benjamin Kramer337e3a52009-11-28 19:45:26 +000046 class CheckDefaultArgumentVisitor
Chris Lattner574dee62008-07-26 22:17:49 +000047 : public StmtVisitor<CheckDefaultArgumentVisitor, bool> {
Chris Lattnerb0d38442008-04-12 23:52:44 +000048 Expr *DefaultArg;
49 Sema *S;
Chris Lattner58258242008-04-10 02:22:51 +000050
Chris Lattnerb0d38442008-04-12 23:52:44 +000051 public:
Mike Stump11289f42009-09-09 15:08:12 +000052 CheckDefaultArgumentVisitor(Expr *defarg, Sema *s)
Chris Lattnerb0d38442008-04-12 23:52:44 +000053 : DefaultArg(defarg), S(s) {}
Chris Lattner58258242008-04-10 02:22:51 +000054
Chris Lattnerb0d38442008-04-12 23:52:44 +000055 bool VisitExpr(Expr *Node);
56 bool VisitDeclRefExpr(DeclRefExpr *DRE);
Douglas Gregor97a9c812008-11-04 14:32:21 +000057 bool VisitCXXThisExpr(CXXThisExpr *ThisE);
Chris Lattnerb0d38442008-04-12 23:52:44 +000058 };
Chris Lattner58258242008-04-10 02:22:51 +000059
Chris Lattnerb0d38442008-04-12 23:52:44 +000060 /// VisitExpr - Visit all of the children of this expression.
61 bool CheckDefaultArgumentVisitor::VisitExpr(Expr *Node) {
62 bool IsInvalid = false;
Mike Stump11289f42009-09-09 15:08:12 +000063 for (Stmt::child_iterator I = Node->child_begin(),
Chris Lattner574dee62008-07-26 22:17:49 +000064 E = Node->child_end(); I != E; ++I)
65 IsInvalid |= Visit(*I);
Chris Lattnerb0d38442008-04-12 23:52:44 +000066 return IsInvalid;
Chris Lattner58258242008-04-10 02:22:51 +000067 }
68
Chris Lattnerb0d38442008-04-12 23:52:44 +000069 /// VisitDeclRefExpr - Visit a reference to a declaration, to
70 /// determine whether this declaration can be used in the default
71 /// argument expression.
72 bool CheckDefaultArgumentVisitor::VisitDeclRefExpr(DeclRefExpr *DRE) {
Douglas Gregor5251f1b2008-10-21 16:13:35 +000073 NamedDecl *Decl = DRE->getDecl();
Chris Lattnerb0d38442008-04-12 23:52:44 +000074 if (ParmVarDecl *Param = dyn_cast<ParmVarDecl>(Decl)) {
75 // C++ [dcl.fct.default]p9
76 // Default arguments are evaluated each time the function is
77 // called. The order of evaluation of function arguments is
78 // unspecified. Consequently, parameters of a function shall not
79 // be used in default argument expressions, even if they are not
80 // evaluated. Parameters of a function declared before a default
81 // argument expression are in scope and can hide namespace and
82 // class member names.
Mike Stump11289f42009-09-09 15:08:12 +000083 return S->Diag(DRE->getSourceRange().getBegin(),
Chris Lattner3b054132008-11-19 05:08:23 +000084 diag::err_param_default_argument_references_param)
Chris Lattnere3d20d92008-11-23 21:45:46 +000085 << Param->getDeclName() << DefaultArg->getSourceRange();
Steve Naroff08899ff2008-04-15 22:42:06 +000086 } else if (VarDecl *VDecl = dyn_cast<VarDecl>(Decl)) {
Chris Lattnerb0d38442008-04-12 23:52:44 +000087 // C++ [dcl.fct.default]p7
88 // Local variables shall not be used in default argument
89 // expressions.
Steve Naroff08899ff2008-04-15 22:42:06 +000090 if (VDecl->isBlockVarDecl())
Mike Stump11289f42009-09-09 15:08:12 +000091 return S->Diag(DRE->getSourceRange().getBegin(),
Chris Lattner3b054132008-11-19 05:08:23 +000092 diag::err_param_default_argument_references_local)
Chris Lattnere3d20d92008-11-23 21:45:46 +000093 << VDecl->getDeclName() << DefaultArg->getSourceRange();
Chris Lattnerb0d38442008-04-12 23:52:44 +000094 }
Chris Lattner58258242008-04-10 02:22:51 +000095
Douglas Gregor8e12c382008-11-04 13:41:56 +000096 return false;
97 }
Chris Lattnerb0d38442008-04-12 23:52:44 +000098
Douglas Gregor97a9c812008-11-04 14:32:21 +000099 /// VisitCXXThisExpr - Visit a C++ "this" expression.
100 bool CheckDefaultArgumentVisitor::VisitCXXThisExpr(CXXThisExpr *ThisE) {
101 // C++ [dcl.fct.default]p8:
102 // The keyword this shall not be used in a default argument of a
103 // member function.
104 return S->Diag(ThisE->getSourceRange().getBegin(),
Chris Lattner3b054132008-11-19 05:08:23 +0000105 diag::err_param_default_argument_references_this)
106 << ThisE->getSourceRange();
Chris Lattnerb0d38442008-04-12 23:52:44 +0000107 }
Chris Lattner58258242008-04-10 02:22:51 +0000108}
109
Anders Carlssonc80a1272009-08-25 02:29:20 +0000110bool
111Sema::SetParamDefaultArgument(ParmVarDecl *Param, ExprArg DefaultArg,
Mike Stump11289f42009-09-09 15:08:12 +0000112 SourceLocation EqualLoc) {
Anders Carlsson114056f2009-08-25 13:46:13 +0000113 if (RequireCompleteType(Param->getLocation(), Param->getType(),
114 diag::err_typecheck_decl_incomplete_type)) {
115 Param->setInvalidDecl();
116 return true;
117 }
118
Anders Carlssonc80a1272009-08-25 02:29:20 +0000119 Expr *Arg = (Expr *)DefaultArg.get();
Mike Stump11289f42009-09-09 15:08:12 +0000120
Anders Carlssonc80a1272009-08-25 02:29:20 +0000121 // C++ [dcl.fct.default]p5
122 // A default argument expression is implicitly converted (clause
123 // 4) to the parameter type. The default argument expression has
124 // the same semantic constraints as the initializer expression in
125 // a declaration of a variable of the parameter type, using the
126 // copy-initialization semantics (8.5).
Douglas Gregor85dabae2009-12-16 01:38:02 +0000127 InitializedEntity Entity = InitializedEntity::InitializeParameter(Param);
128 InitializationKind Kind = InitializationKind::CreateCopy(Param->getLocation(),
129 EqualLoc);
Eli Friedman5f101b92009-12-22 02:46:13 +0000130 InitializationSequence InitSeq(*this, Entity, Kind, &Arg, 1);
131 OwningExprResult Result = InitSeq.Perform(*this, Entity, Kind,
132 MultiExprArg(*this, (void**)&Arg, 1));
133 if (Result.isInvalid())
Anders Carlsson4562f1f2009-08-25 03:18:48 +0000134 return true;
Eli Friedman5f101b92009-12-22 02:46:13 +0000135 Arg = Result.takeAs<Expr>();
Anders Carlssonc80a1272009-08-25 02:29:20 +0000136
Anders Carlsson6e997b22009-12-15 20:51:39 +0000137 Arg = MaybeCreateCXXExprWithTemporaries(Arg);
Mike Stump11289f42009-09-09 15:08:12 +0000138
Anders Carlssonc80a1272009-08-25 02:29:20 +0000139 // Okay: add the default argument to the parameter
140 Param->setDefaultArg(Arg);
Mike Stump11289f42009-09-09 15:08:12 +0000141
Anders Carlssonc80a1272009-08-25 02:29:20 +0000142 DefaultArg.release();
Mike Stump11289f42009-09-09 15:08:12 +0000143
Anders Carlsson4562f1f2009-08-25 03:18:48 +0000144 return false;
Anders Carlssonc80a1272009-08-25 02:29:20 +0000145}
146
Chris Lattner58258242008-04-10 02:22:51 +0000147/// ActOnParamDefaultArgument - Check whether the default argument
148/// provided for a function parameter is well-formed. If so, attach it
149/// to the parameter declaration.
Chris Lattner199abbc2008-04-08 05:04:30 +0000150void
Mike Stump11289f42009-09-09 15:08:12 +0000151Sema::ActOnParamDefaultArgument(DeclPtrTy param, SourceLocation EqualLoc,
Sebastian Redl6d4256c2009-03-15 17:47:39 +0000152 ExprArg defarg) {
Douglas Gregor71a57182009-06-22 23:20:33 +0000153 if (!param || !defarg.get())
154 return;
Mike Stump11289f42009-09-09 15:08:12 +0000155
Chris Lattner83f095c2009-03-28 19:18:32 +0000156 ParmVarDecl *Param = cast<ParmVarDecl>(param.getAs<Decl>());
Anders Carlsson84613c42009-06-12 16:51:40 +0000157 UnparsedDefaultArgLocs.erase(Param);
158
Anders Carlsson3cbc8592009-05-01 19:30:39 +0000159 ExprOwningPtr<Expr> DefaultArg(this, defarg.takeAs<Expr>());
Chris Lattner199abbc2008-04-08 05:04:30 +0000160
161 // Default arguments are only permitted in C++
162 if (!getLangOptions().CPlusPlus) {
Chris Lattner3b054132008-11-19 05:08:23 +0000163 Diag(EqualLoc, diag::err_param_default_argument)
164 << DefaultArg->getSourceRange();
Douglas Gregor4d87df52008-12-16 21:30:33 +0000165 Param->setInvalidDecl();
Chris Lattner199abbc2008-04-08 05:04:30 +0000166 return;
167 }
168
Anders Carlssonf1c26952009-08-25 01:02:06 +0000169 // Check that the default argument is well-formed
170 CheckDefaultArgumentVisitor DefaultArgChecker(DefaultArg.get(), this);
171 if (DefaultArgChecker.Visit(DefaultArg.get())) {
172 Param->setInvalidDecl();
173 return;
174 }
Mike Stump11289f42009-09-09 15:08:12 +0000175
Anders Carlssonc80a1272009-08-25 02:29:20 +0000176 SetParamDefaultArgument(Param, move(DefaultArg), EqualLoc);
Chris Lattner199abbc2008-04-08 05:04:30 +0000177}
178
Douglas Gregor58354032008-12-24 00:01:03 +0000179/// ActOnParamUnparsedDefaultArgument - We've seen a default
180/// argument for a function parameter, but we can't parse it yet
181/// because we're inside a class definition. Note that this default
182/// argument will be parsed later.
Mike Stump11289f42009-09-09 15:08:12 +0000183void Sema::ActOnParamUnparsedDefaultArgument(DeclPtrTy param,
Anders Carlsson84613c42009-06-12 16:51:40 +0000184 SourceLocation EqualLoc,
185 SourceLocation ArgLoc) {
Douglas Gregor71a57182009-06-22 23:20:33 +0000186 if (!param)
187 return;
Mike Stump11289f42009-09-09 15:08:12 +0000188
Chris Lattner83f095c2009-03-28 19:18:32 +0000189 ParmVarDecl *Param = cast<ParmVarDecl>(param.getAs<Decl>());
Douglas Gregor58354032008-12-24 00:01:03 +0000190 if (Param)
191 Param->setUnparsedDefaultArg();
Mike Stump11289f42009-09-09 15:08:12 +0000192
Anders Carlsson84613c42009-06-12 16:51:40 +0000193 UnparsedDefaultArgLocs[Param] = ArgLoc;
Douglas Gregor58354032008-12-24 00:01:03 +0000194}
195
Douglas Gregor4d87df52008-12-16 21:30:33 +0000196/// ActOnParamDefaultArgumentError - Parsing or semantic analysis of
197/// the default argument for the parameter param failed.
Chris Lattner83f095c2009-03-28 19:18:32 +0000198void Sema::ActOnParamDefaultArgumentError(DeclPtrTy param) {
Douglas Gregor71a57182009-06-22 23:20:33 +0000199 if (!param)
200 return;
Mike Stump11289f42009-09-09 15:08:12 +0000201
Anders Carlsson84613c42009-06-12 16:51:40 +0000202 ParmVarDecl *Param = cast<ParmVarDecl>(param.getAs<Decl>());
Mike Stump11289f42009-09-09 15:08:12 +0000203
Anders Carlsson84613c42009-06-12 16:51:40 +0000204 Param->setInvalidDecl();
Mike Stump11289f42009-09-09 15:08:12 +0000205
Anders Carlsson84613c42009-06-12 16:51:40 +0000206 UnparsedDefaultArgLocs.erase(Param);
Douglas Gregor4d87df52008-12-16 21:30:33 +0000207}
208
Douglas Gregorcaa8ace2008-05-07 04:49:29 +0000209/// CheckExtraCXXDefaultArguments - Check for any extra default
210/// arguments in the declarator, which is not a function declaration
211/// or definition and therefore is not permitted to have default
212/// arguments. This routine should be invoked for every declarator
213/// that is not a function declaration or definition.
214void Sema::CheckExtraCXXDefaultArguments(Declarator &D) {
215 // C++ [dcl.fct.default]p3
216 // A default argument expression shall be specified only in the
217 // parameter-declaration-clause of a function declaration or in a
218 // template-parameter (14.1). It shall not be specified for a
219 // parameter pack. If it is specified in a
220 // parameter-declaration-clause, it shall not occur within a
221 // declarator or abstract-declarator of a parameter-declaration.
Chris Lattner83f095c2009-03-28 19:18:32 +0000222 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i) {
Douglas Gregorcaa8ace2008-05-07 04:49:29 +0000223 DeclaratorChunk &chunk = D.getTypeObject(i);
224 if (chunk.Kind == DeclaratorChunk::Function) {
Chris Lattner83f095c2009-03-28 19:18:32 +0000225 for (unsigned argIdx = 0, e = chunk.Fun.NumArgs; argIdx != e; ++argIdx) {
226 ParmVarDecl *Param =
227 cast<ParmVarDecl>(chunk.Fun.ArgInfo[argIdx].Param.getAs<Decl>());
Douglas Gregor58354032008-12-24 00:01:03 +0000228 if (Param->hasUnparsedDefaultArg()) {
229 CachedTokens *Toks = chunk.Fun.ArgInfo[argIdx].DefaultArgTokens;
Douglas Gregor4d87df52008-12-16 21:30:33 +0000230 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
231 << SourceRange((*Toks)[1].getLocation(), Toks->back().getLocation());
232 delete Toks;
233 chunk.Fun.ArgInfo[argIdx].DefaultArgTokens = 0;
Douglas Gregor58354032008-12-24 00:01:03 +0000234 } else if (Param->getDefaultArg()) {
235 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
236 << Param->getDefaultArg()->getSourceRange();
237 Param->setDefaultArg(0);
Douglas Gregorcaa8ace2008-05-07 04:49:29 +0000238 }
239 }
240 }
241 }
242}
243
Chris Lattner199abbc2008-04-08 05:04:30 +0000244// MergeCXXFunctionDecl - Merge two declarations of the same C++
245// function, once we already know that they have the same
Douglas Gregor75a45ba2009-02-16 17:45:42 +0000246// type. Subroutine of MergeFunctionDecl. Returns true if there was an
247// error, false otherwise.
248bool Sema::MergeCXXFunctionDecl(FunctionDecl *New, FunctionDecl *Old) {
249 bool Invalid = false;
250
Chris Lattner199abbc2008-04-08 05:04:30 +0000251 // C++ [dcl.fct.default]p4:
Chris Lattner199abbc2008-04-08 05:04:30 +0000252 // For non-template functions, default arguments can be added in
253 // later declarations of a function in the same
254 // scope. Declarations in different scopes have completely
255 // distinct sets of default arguments. That is, declarations in
256 // inner scopes do not acquire default arguments from
257 // declarations in outer scopes, and vice versa. In a given
258 // function declaration, all parameters subsequent to a
259 // parameter with a default argument shall have default
260 // arguments supplied in this or previous declarations. A
261 // default argument shall not be redefined by a later
262 // declaration (not even to the same value).
Douglas Gregorc732aba2009-09-11 18:44:32 +0000263 //
264 // C++ [dcl.fct.default]p6:
265 // Except for member functions of class templates, the default arguments
266 // in a member function definition that appears outside of the class
267 // definition are added to the set of default arguments provided by the
268 // member function declaration in the class definition.
Chris Lattner199abbc2008-04-08 05:04:30 +0000269 for (unsigned p = 0, NumParams = Old->getNumParams(); p < NumParams; ++p) {
270 ParmVarDecl *OldParam = Old->getParamDecl(p);
271 ParmVarDecl *NewParam = New->getParamDecl(p);
272
Douglas Gregorc732aba2009-09-11 18:44:32 +0000273 if (OldParam->hasDefaultArg() && NewParam->hasDefaultArg()) {
Douglas Gregor08dc5842010-01-13 00:12:48 +0000274 // FIXME: If we knew where the '=' was, we could easily provide a fix-it
275 // hint here. Alternatively, we could walk the type-source information
276 // for NewParam to find the last source location in the type... but it
277 // isn't worth the effort right now. This is the kind of test case that
278 // is hard to get right:
279
280 // int f(int);
281 // void g(int (*fp)(int) = f);
282 // void g(int (*fp)(int) = &f);
Mike Stump11289f42009-09-09 15:08:12 +0000283 Diag(NewParam->getLocation(),
Chris Lattner3b054132008-11-19 05:08:23 +0000284 diag::err_param_default_argument_redefinition)
Douglas Gregor08dc5842010-01-13 00:12:48 +0000285 << NewParam->getDefaultArgRange();
Douglas Gregorc732aba2009-09-11 18:44:32 +0000286
287 // Look for the function declaration where the default argument was
288 // actually written, which may be a declaration prior to Old.
289 for (FunctionDecl *Older = Old->getPreviousDeclaration();
290 Older; Older = Older->getPreviousDeclaration()) {
291 if (!Older->getParamDecl(p)->hasDefaultArg())
292 break;
293
294 OldParam = Older->getParamDecl(p);
295 }
296
297 Diag(OldParam->getLocation(), diag::note_previous_definition)
298 << OldParam->getDefaultArgRange();
Douglas Gregor75a45ba2009-02-16 17:45:42 +0000299 Invalid = true;
Douglas Gregor4f15f4d2009-09-17 19:51:30 +0000300 } else if (OldParam->hasDefaultArg()) {
John McCalle61b02b2010-05-04 01:53:42 +0000301 // Merge the old default argument into the new parameter.
302 // It's important to use getInit() here; getDefaultArg()
303 // strips off any top-level CXXExprWithTemporaries.
John McCallf3cd6652010-03-12 18:31:32 +0000304 NewParam->setHasInheritedDefaultArg();
Douglas Gregor4f15f4d2009-09-17 19:51:30 +0000305 if (OldParam->hasUninstantiatedDefaultArg())
306 NewParam->setUninstantiatedDefaultArg(
307 OldParam->getUninstantiatedDefaultArg());
308 else
John McCalle61b02b2010-05-04 01:53:42 +0000309 NewParam->setDefaultArg(OldParam->getInit());
Douglas Gregorc732aba2009-09-11 18:44:32 +0000310 } else if (NewParam->hasDefaultArg()) {
311 if (New->getDescribedFunctionTemplate()) {
312 // Paragraph 4, quoted above, only applies to non-template functions.
313 Diag(NewParam->getLocation(),
314 diag::err_param_default_argument_template_redecl)
315 << NewParam->getDefaultArgRange();
316 Diag(Old->getLocation(), diag::note_template_prev_declaration)
317 << false;
Douglas Gregor62e10f02009-10-13 17:02:54 +0000318 } else if (New->getTemplateSpecializationKind()
319 != TSK_ImplicitInstantiation &&
320 New->getTemplateSpecializationKind() != TSK_Undeclared) {
321 // C++ [temp.expr.spec]p21:
322 // Default function arguments shall not be specified in a declaration
323 // or a definition for one of the following explicit specializations:
324 // - the explicit specialization of a function template;
Douglas Gregor3362bde2009-10-13 23:52:38 +0000325 // - the explicit specialization of a member function template;
326 // - the explicit specialization of a member function of a class
Douglas Gregor62e10f02009-10-13 17:02:54 +0000327 // template where the class template specialization to which the
328 // member function specialization belongs is implicitly
329 // instantiated.
330 Diag(NewParam->getLocation(), diag::err_template_spec_default_arg)
331 << (New->getTemplateSpecializationKind() ==TSK_ExplicitSpecialization)
332 << New->getDeclName()
333 << NewParam->getDefaultArgRange();
Douglas Gregorc732aba2009-09-11 18:44:32 +0000334 } else if (New->getDeclContext()->isDependentContext()) {
335 // C++ [dcl.fct.default]p6 (DR217):
336 // Default arguments for a member function of a class template shall
337 // be specified on the initial declaration of the member function
338 // within the class template.
339 //
340 // Reading the tea leaves a bit in DR217 and its reference to DR205
341 // leads me to the conclusion that one cannot add default function
342 // arguments for an out-of-line definition of a member function of a
343 // dependent type.
344 int WhichKind = 2;
345 if (CXXRecordDecl *Record
346 = dyn_cast<CXXRecordDecl>(New->getDeclContext())) {
347 if (Record->getDescribedClassTemplate())
348 WhichKind = 0;
349 else if (isa<ClassTemplatePartialSpecializationDecl>(Record))
350 WhichKind = 1;
351 else
352 WhichKind = 2;
353 }
354
355 Diag(NewParam->getLocation(),
356 diag::err_param_default_argument_member_template_redecl)
357 << WhichKind
358 << NewParam->getDefaultArgRange();
359 }
Chris Lattner199abbc2008-04-08 05:04:30 +0000360 }
361 }
362
Douglas Gregorf40863c2010-02-12 07:32:17 +0000363 if (CheckEquivalentExceptionSpec(Old, New))
Sebastian Redl4f4d7b52009-07-04 11:39:00 +0000364 Invalid = true;
Sebastian Redl4f4d7b52009-07-04 11:39:00 +0000365
Douglas Gregor75a45ba2009-02-16 17:45:42 +0000366 return Invalid;
Chris Lattner199abbc2008-04-08 05:04:30 +0000367}
368
369/// CheckCXXDefaultArguments - Verify that the default arguments for a
370/// function declaration are well-formed according to C++
371/// [dcl.fct.default].
372void Sema::CheckCXXDefaultArguments(FunctionDecl *FD) {
373 unsigned NumParams = FD->getNumParams();
374 unsigned p;
375
376 // Find first parameter with a default argument
377 for (p = 0; p < NumParams; ++p) {
378 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson5a532382009-08-25 01:23:32 +0000379 if (Param->hasDefaultArg())
Chris Lattner199abbc2008-04-08 05:04:30 +0000380 break;
381 }
382
383 // C++ [dcl.fct.default]p4:
384 // In a given function declaration, all parameters
385 // subsequent to a parameter with a default argument shall
386 // have default arguments supplied in this or previous
387 // declarations. A default argument shall not be redefined
388 // by a later declaration (not even to the same value).
389 unsigned LastMissingDefaultArg = 0;
Mike Stump11289f42009-09-09 15:08:12 +0000390 for (; p < NumParams; ++p) {
Chris Lattner199abbc2008-04-08 05:04:30 +0000391 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson5a532382009-08-25 01:23:32 +0000392 if (!Param->hasDefaultArg()) {
Douglas Gregor4d87df52008-12-16 21:30:33 +0000393 if (Param->isInvalidDecl())
394 /* We already complained about this parameter. */;
395 else if (Param->getIdentifier())
Mike Stump11289f42009-09-09 15:08:12 +0000396 Diag(Param->getLocation(),
Chris Lattner3b054132008-11-19 05:08:23 +0000397 diag::err_param_default_argument_missing_name)
Chris Lattnerb91fd172008-11-19 07:32:16 +0000398 << Param->getIdentifier();
Chris Lattner199abbc2008-04-08 05:04:30 +0000399 else
Mike Stump11289f42009-09-09 15:08:12 +0000400 Diag(Param->getLocation(),
Chris Lattner199abbc2008-04-08 05:04:30 +0000401 diag::err_param_default_argument_missing);
Mike Stump11289f42009-09-09 15:08:12 +0000402
Chris Lattner199abbc2008-04-08 05:04:30 +0000403 LastMissingDefaultArg = p;
404 }
405 }
406
407 if (LastMissingDefaultArg > 0) {
408 // Some default arguments were missing. Clear out all of the
409 // default arguments up to (and including) the last missing
410 // default argument, so that we leave the function parameters
411 // in a semantically valid state.
412 for (p = 0; p <= LastMissingDefaultArg; ++p) {
413 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson84613c42009-06-12 16:51:40 +0000414 if (Param->hasDefaultArg()) {
Chris Lattner199abbc2008-04-08 05:04:30 +0000415 Param->setDefaultArg(0);
416 }
417 }
418 }
419}
Douglas Gregor556877c2008-04-13 21:30:24 +0000420
Douglas Gregor61956c42008-10-31 09:07:45 +0000421/// isCurrentClassName - Determine whether the identifier II is the
422/// name of the class type currently being defined. In the case of
423/// nested classes, this will only return true if II is the name of
424/// the innermost class.
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +0000425bool Sema::isCurrentClassName(const IdentifierInfo &II, Scope *,
426 const CXXScopeSpec *SS) {
Douglas Gregor411e5ac2010-01-11 23:29:10 +0000427 assert(getLangOptions().CPlusPlus && "No class names in C!");
428
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +0000429 CXXRecordDecl *CurDecl;
Douglas Gregor52537682009-03-19 00:18:19 +0000430 if (SS && SS->isSet() && !SS->isInvalid()) {
Douglas Gregore5bbb7d2009-08-21 22:16:40 +0000431 DeclContext *DC = computeDeclContext(*SS, true);
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +0000432 CurDecl = dyn_cast_or_null<CXXRecordDecl>(DC);
433 } else
434 CurDecl = dyn_cast_or_null<CXXRecordDecl>(CurContext);
435
Douglas Gregor1aa3edb2010-02-05 06:12:42 +0000436 if (CurDecl && CurDecl->getIdentifier())
Douglas Gregor61956c42008-10-31 09:07:45 +0000437 return &II == CurDecl->getIdentifier();
438 else
439 return false;
440}
441
Mike Stump11289f42009-09-09 15:08:12 +0000442/// \brief Check the validity of a C++ base class specifier.
Douglas Gregor463421d2009-03-03 04:44:36 +0000443///
444/// \returns a new CXXBaseSpecifier if well-formed, emits diagnostics
445/// and returns NULL otherwise.
446CXXBaseSpecifier *
447Sema::CheckBaseSpecifier(CXXRecordDecl *Class,
448 SourceRange SpecifierRange,
449 bool Virtual, AccessSpecifier Access,
Nick Lewycky19b9f952010-07-26 16:56:01 +0000450 TypeSourceInfo *TInfo) {
451 QualType BaseType = TInfo->getType();
452
Douglas Gregor463421d2009-03-03 04:44:36 +0000453 // C++ [class.union]p1:
454 // A union shall not have base classes.
455 if (Class->isUnion()) {
456 Diag(Class->getLocation(), diag::err_base_clause_on_union)
457 << SpecifierRange;
458 return 0;
459 }
460
461 if (BaseType->isDependentType())
Mike Stump11289f42009-09-09 15:08:12 +0000462 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
Nick Lewycky19b9f952010-07-26 16:56:01 +0000463 Class->getTagKind() == TTK_Class,
464 Access, TInfo);
465
466 SourceLocation BaseLoc = TInfo->getTypeLoc().getBeginLoc();
Douglas Gregor463421d2009-03-03 04:44:36 +0000467
468 // Base specifiers must be record types.
469 if (!BaseType->isRecordType()) {
470 Diag(BaseLoc, diag::err_base_must_be_class) << SpecifierRange;
471 return 0;
472 }
473
474 // C++ [class.union]p1:
475 // A union shall not be used as a base class.
476 if (BaseType->isUnionType()) {
477 Diag(BaseLoc, diag::err_union_as_base_class) << SpecifierRange;
478 return 0;
479 }
480
481 // C++ [class.derived]p2:
482 // The class-name in a base-specifier shall not be an incompletely
483 // defined class.
Mike Stump11289f42009-09-09 15:08:12 +0000484 if (RequireCompleteType(BaseLoc, BaseType,
Anders Carlssond624e162009-08-26 23:45:07 +0000485 PDiag(diag::err_incomplete_base_class)
John McCall3696dcb2010-08-17 07:23:57 +0000486 << SpecifierRange)) {
487 Class->setInvalidDecl();
Douglas Gregor463421d2009-03-03 04:44:36 +0000488 return 0;
John McCall3696dcb2010-08-17 07:23:57 +0000489 }
Douglas Gregor463421d2009-03-03 04:44:36 +0000490
Eli Friedmanc96d4962009-08-15 21:55:26 +0000491 // If the base class is polymorphic or isn't empty, the new one is/isn't, too.
Ted Kremenekc23c7e62009-07-29 21:53:49 +0000492 RecordDecl *BaseDecl = BaseType->getAs<RecordType>()->getDecl();
Douglas Gregor463421d2009-03-03 04:44:36 +0000493 assert(BaseDecl && "Record type has no declaration");
Douglas Gregor0a5a2212010-02-11 01:04:33 +0000494 BaseDecl = BaseDecl->getDefinition();
Douglas Gregor463421d2009-03-03 04:44:36 +0000495 assert(BaseDecl && "Base type is not incomplete, but has no definition");
Eli Friedmanc96d4962009-08-15 21:55:26 +0000496 CXXRecordDecl * CXXBaseDecl = cast<CXXRecordDecl>(BaseDecl);
497 assert(CXXBaseDecl && "Base type is not a C++ type");
Eli Friedman89c038e2009-12-05 23:03:49 +0000498
Alexis Hunt96d5c762009-11-21 08:43:09 +0000499 // C++0x CWG Issue #817 indicates that [[final]] classes shouldn't be bases.
500 if (CXXBaseDecl->hasAttr<FinalAttr>()) {
501 Diag(BaseLoc, diag::err_final_base) << BaseType.getAsString();
Douglas Gregore7488b92009-12-01 16:58:18 +0000502 Diag(CXXBaseDecl->getLocation(), diag::note_previous_decl)
503 << BaseType;
Alexis Hunt96d5c762009-11-21 08:43:09 +0000504 return 0;
505 }
Douglas Gregor463421d2009-03-03 04:44:36 +0000506
Eli Friedman89c038e2009-12-05 23:03:49 +0000507 SetClassDeclAttributesFromBase(Class, CXXBaseDecl, Virtual);
John McCall3696dcb2010-08-17 07:23:57 +0000508
509 if (BaseDecl->isInvalidDecl())
510 Class->setInvalidDecl();
Anders Carlssonae3c5cf2009-12-03 17:49:57 +0000511
512 // Create the base specifier.
Anders Carlssonae3c5cf2009-12-03 17:49:57 +0000513 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
Nick Lewycky19b9f952010-07-26 16:56:01 +0000514 Class->getTagKind() == TTK_Class,
515 Access, TInfo);
Anders Carlssonae3c5cf2009-12-03 17:49:57 +0000516}
517
518void Sema::SetClassDeclAttributesFromBase(CXXRecordDecl *Class,
519 const CXXRecordDecl *BaseClass,
520 bool BaseIsVirtual) {
Eli Friedman89c038e2009-12-05 23:03:49 +0000521 // A class with a non-empty base class is not empty.
522 // FIXME: Standard ref?
523 if (!BaseClass->isEmpty())
524 Class->setEmpty(false);
525
526 // C++ [class.virtual]p1:
527 // A class that [...] inherits a virtual function is called a polymorphic
528 // class.
529 if (BaseClass->isPolymorphic())
530 Class->setPolymorphic(true);
Anders Carlssonae3c5cf2009-12-03 17:49:57 +0000531
Douglas Gregor463421d2009-03-03 04:44:36 +0000532 // C++ [dcl.init.aggr]p1:
533 // An aggregate is [...] a class with [...] no base classes [...].
534 Class->setAggregate(false);
Eli Friedman89c038e2009-12-05 23:03:49 +0000535
536 // C++ [class]p4:
537 // A POD-struct is an aggregate class...
Douglas Gregor463421d2009-03-03 04:44:36 +0000538 Class->setPOD(false);
539
Anders Carlssonae3c5cf2009-12-03 17:49:57 +0000540 if (BaseIsVirtual) {
Anders Carlssonfe63dc52009-04-16 00:08:20 +0000541 // C++ [class.ctor]p5:
542 // A constructor is trivial if its class has no virtual base classes.
543 Class->setHasTrivialConstructor(false);
Douglas Gregor8a273912009-07-22 18:25:24 +0000544
545 // C++ [class.copy]p6:
546 // A copy constructor is trivial if its class has no virtual base classes.
547 Class->setHasTrivialCopyConstructor(false);
548
549 // C++ [class.copy]p11:
550 // A copy assignment operator is trivial if its class has no virtual
551 // base classes.
552 Class->setHasTrivialCopyAssignment(false);
Eli Friedmanc96d4962009-08-15 21:55:26 +0000553
554 // C++0x [meta.unary.prop] is_empty:
555 // T is a class type, but not a union type, with ... no virtual base
556 // classes
557 Class->setEmpty(false);
Anders Carlssonfe63dc52009-04-16 00:08:20 +0000558 } else {
559 // C++ [class.ctor]p5:
Mike Stump11289f42009-09-09 15:08:12 +0000560 // A constructor is trivial if all the direct base classes of its
Anders Carlssonfe63dc52009-04-16 00:08:20 +0000561 // class have trivial constructors.
Anders Carlssonae3c5cf2009-12-03 17:49:57 +0000562 if (!BaseClass->hasTrivialConstructor())
Douglas Gregor8a273912009-07-22 18:25:24 +0000563 Class->setHasTrivialConstructor(false);
564
565 // C++ [class.copy]p6:
566 // A copy constructor is trivial if all the direct base classes of its
567 // class have trivial copy constructors.
Anders Carlssonae3c5cf2009-12-03 17:49:57 +0000568 if (!BaseClass->hasTrivialCopyConstructor())
Douglas Gregor8a273912009-07-22 18:25:24 +0000569 Class->setHasTrivialCopyConstructor(false);
570
571 // C++ [class.copy]p11:
572 // A copy assignment operator is trivial if all the direct base classes
573 // of its class have trivial copy assignment operators.
Anders Carlssonae3c5cf2009-12-03 17:49:57 +0000574 if (!BaseClass->hasTrivialCopyAssignment())
Douglas Gregor8a273912009-07-22 18:25:24 +0000575 Class->setHasTrivialCopyAssignment(false);
Anders Carlssonfe63dc52009-04-16 00:08:20 +0000576 }
Anders Carlsson6dc35752009-04-17 02:34:54 +0000577
578 // C++ [class.ctor]p3:
579 // A destructor is trivial if all the direct base classes of its class
580 // have trivial destructors.
Anders Carlssonae3c5cf2009-12-03 17:49:57 +0000581 if (!BaseClass->hasTrivialDestructor())
Douglas Gregor8a273912009-07-22 18:25:24 +0000582 Class->setHasTrivialDestructor(false);
Douglas Gregor463421d2009-03-03 04:44:36 +0000583}
584
Douglas Gregor556877c2008-04-13 21:30:24 +0000585/// ActOnBaseSpecifier - Parsed a base specifier. A base specifier is
586/// one entry in the base class list of a class specifier, for
Mike Stump11289f42009-09-09 15:08:12 +0000587/// example:
588/// class foo : public bar, virtual private baz {
Douglas Gregor556877c2008-04-13 21:30:24 +0000589/// 'public bar' and 'virtual private baz' are each base-specifiers.
Mike Stump11289f42009-09-09 15:08:12 +0000590Sema::BaseResult
Chris Lattner83f095c2009-03-28 19:18:32 +0000591Sema::ActOnBaseSpecifier(DeclPtrTy classdecl, SourceRange SpecifierRange,
Douglas Gregor29a92472008-10-22 17:49:05 +0000592 bool Virtual, AccessSpecifier Access,
593 TypeTy *basetype, SourceLocation BaseLoc) {
Douglas Gregor71a57182009-06-22 23:20:33 +0000594 if (!classdecl)
595 return true;
596
Douglas Gregorc40290e2009-03-09 23:48:35 +0000597 AdjustDeclIfTemplate(classdecl);
Douglas Gregorbeab56e2010-02-27 00:25:28 +0000598 CXXRecordDecl *Class = dyn_cast<CXXRecordDecl>(classdecl.getAs<Decl>());
599 if (!Class)
600 return true;
601
Nick Lewycky19b9f952010-07-26 16:56:01 +0000602 TypeSourceInfo *TInfo = 0;
603 GetTypeFromParser(basetype, &TInfo);
Douglas Gregor463421d2009-03-03 04:44:36 +0000604 if (CXXBaseSpecifier *BaseSpec = CheckBaseSpecifier(Class, SpecifierRange,
Nick Lewycky19b9f952010-07-26 16:56:01 +0000605 Virtual, Access, TInfo))
Douglas Gregor463421d2009-03-03 04:44:36 +0000606 return BaseSpec;
Mike Stump11289f42009-09-09 15:08:12 +0000607
Douglas Gregor463421d2009-03-03 04:44:36 +0000608 return true;
Douglas Gregor29a92472008-10-22 17:49:05 +0000609}
Douglas Gregor556877c2008-04-13 21:30:24 +0000610
Douglas Gregor463421d2009-03-03 04:44:36 +0000611/// \brief Performs the actual work of attaching the given base class
612/// specifiers to a C++ class.
613bool Sema::AttachBaseSpecifiers(CXXRecordDecl *Class, CXXBaseSpecifier **Bases,
614 unsigned NumBases) {
615 if (NumBases == 0)
616 return false;
Douglas Gregor29a92472008-10-22 17:49:05 +0000617
618 // Used to keep track of which base types we have already seen, so
619 // that we can properly diagnose redundant direct base types. Note
Douglas Gregor9d6290b2008-10-23 18:13:27 +0000620 // that the key is always the unqualified canonical type of the base
621 // class.
Douglas Gregor29a92472008-10-22 17:49:05 +0000622 std::map<QualType, CXXBaseSpecifier*, QualTypeOrdering> KnownBaseTypes;
623
624 // Copy non-redundant base specifiers into permanent storage.
Douglas Gregor9d6290b2008-10-23 18:13:27 +0000625 unsigned NumGoodBases = 0;
Douglas Gregor463421d2009-03-03 04:44:36 +0000626 bool Invalid = false;
Douglas Gregor9d6290b2008-10-23 18:13:27 +0000627 for (unsigned idx = 0; idx < NumBases; ++idx) {
Mike Stump11289f42009-09-09 15:08:12 +0000628 QualType NewBaseType
Douglas Gregor463421d2009-03-03 04:44:36 +0000629 = Context.getCanonicalType(Bases[idx]->getType());
Douglas Gregor1b8fe5b72009-11-16 21:35:15 +0000630 NewBaseType = NewBaseType.getLocalUnqualifiedType();
Fariborz Jahanian2792f302010-05-20 23:34:56 +0000631 if (!Class->hasObjectMember()) {
632 if (const RecordType *FDTTy =
633 NewBaseType.getTypePtr()->getAs<RecordType>())
634 if (FDTTy->getDecl()->hasObjectMember())
635 Class->setHasObjectMember(true);
636 }
637
Douglas Gregor29a92472008-10-22 17:49:05 +0000638 if (KnownBaseTypes[NewBaseType]) {
639 // C++ [class.mi]p3:
640 // A class shall not be specified as a direct base class of a
641 // derived class more than once.
Douglas Gregor463421d2009-03-03 04:44:36 +0000642 Diag(Bases[idx]->getSourceRange().getBegin(),
Chris Lattner3b054132008-11-19 05:08:23 +0000643 diag::err_duplicate_base_class)
Chris Lattner1e5665e2008-11-24 06:25:27 +0000644 << KnownBaseTypes[NewBaseType]->getType()
Douglas Gregor463421d2009-03-03 04:44:36 +0000645 << Bases[idx]->getSourceRange();
Douglas Gregor9d6290b2008-10-23 18:13:27 +0000646
647 // Delete the duplicate base class specifier; we're going to
648 // overwrite its pointer later.
Douglas Gregorb77af8f2009-07-22 20:55:49 +0000649 Context.Deallocate(Bases[idx]);
Douglas Gregor463421d2009-03-03 04:44:36 +0000650
651 Invalid = true;
Douglas Gregor29a92472008-10-22 17:49:05 +0000652 } else {
653 // Okay, add this new base class.
Douglas Gregor463421d2009-03-03 04:44:36 +0000654 KnownBaseTypes[NewBaseType] = Bases[idx];
655 Bases[NumGoodBases++] = Bases[idx];
Douglas Gregor29a92472008-10-22 17:49:05 +0000656 }
657 }
658
659 // Attach the remaining base class specifiers to the derived class.
Douglas Gregor4a62bdf2010-02-11 01:30:34 +0000660 Class->setBases(Bases, NumGoodBases);
Douglas Gregor9d6290b2008-10-23 18:13:27 +0000661
662 // Delete the remaining (good) base class specifiers, since their
663 // data has been copied into the CXXRecordDecl.
664 for (unsigned idx = 0; idx < NumGoodBases; ++idx)
Douglas Gregorb77af8f2009-07-22 20:55:49 +0000665 Context.Deallocate(Bases[idx]);
Douglas Gregor463421d2009-03-03 04:44:36 +0000666
667 return Invalid;
668}
669
670/// ActOnBaseSpecifiers - Attach the given base specifiers to the
671/// class, after checking whether there are any duplicate base
672/// classes.
Mike Stump11289f42009-09-09 15:08:12 +0000673void Sema::ActOnBaseSpecifiers(DeclPtrTy ClassDecl, BaseTy **Bases,
Douglas Gregor463421d2009-03-03 04:44:36 +0000674 unsigned NumBases) {
675 if (!ClassDecl || !Bases || !NumBases)
676 return;
677
678 AdjustDeclIfTemplate(ClassDecl);
Chris Lattner83f095c2009-03-28 19:18:32 +0000679 AttachBaseSpecifiers(cast<CXXRecordDecl>(ClassDecl.getAs<Decl>()),
Douglas Gregor463421d2009-03-03 04:44:36 +0000680 (CXXBaseSpecifier**)(Bases), NumBases);
Douglas Gregor556877c2008-04-13 21:30:24 +0000681}
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +0000682
John McCalle78aac42010-03-10 03:28:59 +0000683static CXXRecordDecl *GetClassForType(QualType T) {
684 if (const RecordType *RT = T->getAs<RecordType>())
685 return cast<CXXRecordDecl>(RT->getDecl());
686 else if (const InjectedClassNameType *ICT = T->getAs<InjectedClassNameType>())
687 return ICT->getDecl();
688 else
689 return 0;
690}
691
Douglas Gregor36d1b142009-10-06 17:59:45 +0000692/// \brief Determine whether the type \p Derived is a C++ class that is
693/// derived from the type \p Base.
694bool Sema::IsDerivedFrom(QualType Derived, QualType Base) {
695 if (!getLangOptions().CPlusPlus)
696 return false;
John McCalle78aac42010-03-10 03:28:59 +0000697
698 CXXRecordDecl *DerivedRD = GetClassForType(Derived);
699 if (!DerivedRD)
Douglas Gregor36d1b142009-10-06 17:59:45 +0000700 return false;
701
John McCalle78aac42010-03-10 03:28:59 +0000702 CXXRecordDecl *BaseRD = GetClassForType(Base);
703 if (!BaseRD)
Douglas Gregor36d1b142009-10-06 17:59:45 +0000704 return false;
705
John McCall67da35c2010-02-04 22:26:26 +0000706 // FIXME: instantiate DerivedRD if necessary. We need a PoI for this.
707 return DerivedRD->hasDefinition() && DerivedRD->isDerivedFrom(BaseRD);
Douglas Gregor36d1b142009-10-06 17:59:45 +0000708}
709
710/// \brief Determine whether the type \p Derived is a C++ class that is
711/// derived from the type \p Base.
712bool Sema::IsDerivedFrom(QualType Derived, QualType Base, CXXBasePaths &Paths) {
713 if (!getLangOptions().CPlusPlus)
714 return false;
715
John McCalle78aac42010-03-10 03:28:59 +0000716 CXXRecordDecl *DerivedRD = GetClassForType(Derived);
717 if (!DerivedRD)
Douglas Gregor36d1b142009-10-06 17:59:45 +0000718 return false;
719
John McCalle78aac42010-03-10 03:28:59 +0000720 CXXRecordDecl *BaseRD = GetClassForType(Base);
721 if (!BaseRD)
Douglas Gregor36d1b142009-10-06 17:59:45 +0000722 return false;
723
Douglas Gregor36d1b142009-10-06 17:59:45 +0000724 return DerivedRD->isDerivedFrom(BaseRD, Paths);
725}
726
Anders Carlssona70cff62010-04-24 19:06:50 +0000727void Sema::BuildBasePathArray(const CXXBasePaths &Paths,
John McCallcf142162010-08-07 06:22:56 +0000728 CXXCastPath &BasePathArray) {
Anders Carlssona70cff62010-04-24 19:06:50 +0000729 assert(BasePathArray.empty() && "Base path array must be empty!");
730 assert(Paths.isRecordingPaths() && "Must record paths!");
731
732 const CXXBasePath &Path = Paths.front();
733
734 // We first go backward and check if we have a virtual base.
735 // FIXME: It would be better if CXXBasePath had the base specifier for
736 // the nearest virtual base.
737 unsigned Start = 0;
738 for (unsigned I = Path.size(); I != 0; --I) {
739 if (Path[I - 1].Base->isVirtual()) {
740 Start = I - 1;
741 break;
742 }
743 }
744
745 // Now add all bases.
746 for (unsigned I = Start, E = Path.size(); I != E; ++I)
John McCallcf142162010-08-07 06:22:56 +0000747 BasePathArray.push_back(const_cast<CXXBaseSpecifier*>(Path[I].Base));
Anders Carlssona70cff62010-04-24 19:06:50 +0000748}
749
Douglas Gregor88d292c2010-05-13 16:44:06 +0000750/// \brief Determine whether the given base path includes a virtual
751/// base class.
John McCallcf142162010-08-07 06:22:56 +0000752bool Sema::BasePathInvolvesVirtualBase(const CXXCastPath &BasePath) {
753 for (CXXCastPath::const_iterator B = BasePath.begin(),
754 BEnd = BasePath.end();
Douglas Gregor88d292c2010-05-13 16:44:06 +0000755 B != BEnd; ++B)
756 if ((*B)->isVirtual())
757 return true;
758
759 return false;
760}
761
Douglas Gregor36d1b142009-10-06 17:59:45 +0000762/// CheckDerivedToBaseConversion - Check whether the Derived-to-Base
763/// conversion (where Derived and Base are class types) is
764/// well-formed, meaning that the conversion is unambiguous (and
765/// that all of the base classes are accessible). Returns true
766/// and emits a diagnostic if the code is ill-formed, returns false
767/// otherwise. Loc is the location where this routine should point to
768/// if there is an error, and Range is the source range to highlight
769/// if there is an error.
770bool
771Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
John McCall1064d7e2010-03-16 05:22:47 +0000772 unsigned InaccessibleBaseID,
Douglas Gregor36d1b142009-10-06 17:59:45 +0000773 unsigned AmbigiousBaseConvID,
774 SourceLocation Loc, SourceRange Range,
Anders Carlsson7afe4242010-04-24 17:11:09 +0000775 DeclarationName Name,
John McCallcf142162010-08-07 06:22:56 +0000776 CXXCastPath *BasePath) {
Douglas Gregor36d1b142009-10-06 17:59:45 +0000777 // First, determine whether the path from Derived to Base is
778 // ambiguous. This is slightly more expensive than checking whether
779 // the Derived to Base conversion exists, because here we need to
780 // explore multiple paths to determine if there is an ambiguity.
781 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
782 /*DetectVirtual=*/false);
783 bool DerivationOkay = IsDerivedFrom(Derived, Base, Paths);
784 assert(DerivationOkay &&
785 "Can only be used with a derived-to-base conversion");
786 (void)DerivationOkay;
787
788 if (!Paths.isAmbiguous(Context.getCanonicalType(Base).getUnqualifiedType())) {
Anders Carlssona70cff62010-04-24 19:06:50 +0000789 if (InaccessibleBaseID) {
790 // Check that the base class can be accessed.
791 switch (CheckBaseClassAccess(Loc, Base, Derived, Paths.front(),
792 InaccessibleBaseID)) {
793 case AR_inaccessible:
794 return true;
795 case AR_accessible:
796 case AR_dependent:
797 case AR_delayed:
798 break;
Anders Carlsson7afe4242010-04-24 17:11:09 +0000799 }
John McCall5b0829a2010-02-10 09:31:12 +0000800 }
Anders Carlssona70cff62010-04-24 19:06:50 +0000801
802 // Build a base path if necessary.
803 if (BasePath)
804 BuildBasePathArray(Paths, *BasePath);
805 return false;
Douglas Gregor36d1b142009-10-06 17:59:45 +0000806 }
807
808 // We know that the derived-to-base conversion is ambiguous, and
809 // we're going to produce a diagnostic. Perform the derived-to-base
810 // search just one more time to compute all of the possible paths so
811 // that we can print them out. This is more expensive than any of
812 // the previous derived-to-base checks we've done, but at this point
813 // performance isn't as much of an issue.
814 Paths.clear();
815 Paths.setRecordingPaths(true);
816 bool StillOkay = IsDerivedFrom(Derived, Base, Paths);
817 assert(StillOkay && "Can only be used with a derived-to-base conversion");
818 (void)StillOkay;
819
820 // Build up a textual representation of the ambiguous paths, e.g.,
821 // D -> B -> A, that will be used to illustrate the ambiguous
822 // conversions in the diagnostic. We only print one of the paths
823 // to each base class subobject.
824 std::string PathDisplayStr = getAmbiguousPathsDisplayString(Paths);
825
826 Diag(Loc, AmbigiousBaseConvID)
827 << Derived << Base << PathDisplayStr << Range << Name;
828 return true;
829}
830
831bool
832Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
Sebastian Redl7c353682009-11-14 21:15:49 +0000833 SourceLocation Loc, SourceRange Range,
John McCallcf142162010-08-07 06:22:56 +0000834 CXXCastPath *BasePath,
Sebastian Redl7c353682009-11-14 21:15:49 +0000835 bool IgnoreAccess) {
Douglas Gregor36d1b142009-10-06 17:59:45 +0000836 return CheckDerivedToBaseConversion(Derived, Base,
John McCall1064d7e2010-03-16 05:22:47 +0000837 IgnoreAccess ? 0
838 : diag::err_upcast_to_inaccessible_base,
Douglas Gregor36d1b142009-10-06 17:59:45 +0000839 diag::err_ambiguous_derived_to_base_conv,
Anders Carlsson7afe4242010-04-24 17:11:09 +0000840 Loc, Range, DeclarationName(),
841 BasePath);
Douglas Gregor36d1b142009-10-06 17:59:45 +0000842}
843
844
845/// @brief Builds a string representing ambiguous paths from a
846/// specific derived class to different subobjects of the same base
847/// class.
848///
849/// This function builds a string that can be used in error messages
850/// to show the different paths that one can take through the
851/// inheritance hierarchy to go from the derived class to different
852/// subobjects of a base class. The result looks something like this:
853/// @code
854/// struct D -> struct B -> struct A
855/// struct D -> struct C -> struct A
856/// @endcode
857std::string Sema::getAmbiguousPathsDisplayString(CXXBasePaths &Paths) {
858 std::string PathDisplayStr;
859 std::set<unsigned> DisplayedPaths;
860 for (CXXBasePaths::paths_iterator Path = Paths.begin();
861 Path != Paths.end(); ++Path) {
862 if (DisplayedPaths.insert(Path->back().SubobjectNumber).second) {
863 // We haven't displayed a path to this particular base
864 // class subobject yet.
865 PathDisplayStr += "\n ";
866 PathDisplayStr += Context.getTypeDeclType(Paths.getOrigin()).getAsString();
867 for (CXXBasePath::const_iterator Element = Path->begin();
868 Element != Path->end(); ++Element)
869 PathDisplayStr += " -> " + Element->Base->getType().getAsString();
870 }
871 }
872
873 return PathDisplayStr;
874}
875
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000876//===----------------------------------------------------------------------===//
877// C++ class member Handling
878//===----------------------------------------------------------------------===//
879
Abramo Bagnarad7340582010-06-05 05:09:32 +0000880/// ActOnAccessSpecifier - Parsed an access specifier followed by a colon.
881Sema::DeclPtrTy
882Sema::ActOnAccessSpecifier(AccessSpecifier Access,
883 SourceLocation ASLoc, SourceLocation ColonLoc) {
884 assert(Access != AS_none && "Invalid kind for syntactic access specifier!");
885 AccessSpecDecl* ASDecl = AccessSpecDecl::Create(Context, Access, CurContext,
886 ASLoc, ColonLoc);
887 CurContext->addHiddenDecl(ASDecl);
888 return DeclPtrTy::make(ASDecl);
889}
890
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000891/// ActOnCXXMemberDeclarator - This is invoked when a C++ class member
892/// declarator is parsed. 'AS' is the access specifier, 'BW' specifies the
893/// bitfield width if there is one and 'InitExpr' specifies the initializer if
Chris Lattnereb4373d2009-04-12 22:37:57 +0000894/// any.
Chris Lattner83f095c2009-03-28 19:18:32 +0000895Sema::DeclPtrTy
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000896Sema::ActOnCXXMemberDeclarator(Scope *S, AccessSpecifier AS, Declarator &D,
Douglas Gregor3447e762009-08-20 22:52:58 +0000897 MultiTemplateParamsArg TemplateParameterLists,
Sebastian Redld6f78502009-11-24 23:38:44 +0000898 ExprTy *BW, ExprTy *InitExpr, bool IsDefinition,
899 bool Deleted) {
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000900 const DeclSpec &DS = D.getDeclSpec();
Abramo Bagnarad6d2f182010-08-11 22:01:17 +0000901 DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
902 DeclarationName Name = NameInfo.getName();
903 SourceLocation Loc = NameInfo.getLoc();
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000904 Expr *BitWidth = static_cast<Expr*>(BW);
905 Expr *Init = static_cast<Expr*>(InitExpr);
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000906
John McCallb1cd7da2010-06-04 08:34:12 +0000907 assert(isa<CXXRecordDecl>(CurContext));
John McCall07e91c02009-08-06 02:15:43 +0000908 assert(!DS.isFriendSpecified());
909
John McCallb1cd7da2010-06-04 08:34:12 +0000910 bool isFunc = false;
911 if (D.isFunctionDeclarator())
912 isFunc = true;
913 else if (D.getNumTypeObjects() == 0 &&
914 D.getDeclSpec().getTypeSpecType() == DeclSpec::TST_typename) {
915 QualType TDType = GetTypeFromParser(DS.getTypeRep());
916 isFunc = TDType->isFunctionType();
917 }
918
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000919 // C++ 9.2p6: A member shall not be declared to have automatic storage
920 // duration (auto, register) or with the extern storage-class-specifier.
Sebastian Redlccdfaba2008-11-14 23:42:31 +0000921 // C++ 7.1.1p8: The mutable specifier can be applied only to names of class
922 // data members and cannot be applied to names declared const or static,
923 // and cannot be applied to reference members.
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000924 switch (DS.getStorageClassSpec()) {
925 case DeclSpec::SCS_unspecified:
926 case DeclSpec::SCS_typedef:
927 case DeclSpec::SCS_static:
928 // FALL THROUGH.
929 break;
Sebastian Redlccdfaba2008-11-14 23:42:31 +0000930 case DeclSpec::SCS_mutable:
931 if (isFunc) {
932 if (DS.getStorageClassSpecLoc().isValid())
Chris Lattner3b054132008-11-19 05:08:23 +0000933 Diag(DS.getStorageClassSpecLoc(), diag::err_mutable_function);
Sebastian Redlccdfaba2008-11-14 23:42:31 +0000934 else
Chris Lattner3b054132008-11-19 05:08:23 +0000935 Diag(DS.getThreadSpecLoc(), diag::err_mutable_function);
Mike Stump11289f42009-09-09 15:08:12 +0000936
Sebastian Redl8071edb2008-11-17 23:24:37 +0000937 // FIXME: It would be nicer if the keyword was ignored only for this
938 // declarator. Otherwise we could get follow-up errors.
Sebastian Redlccdfaba2008-11-14 23:42:31 +0000939 D.getMutableDeclSpec().ClearStorageClassSpecs();
Sebastian Redlccdfaba2008-11-14 23:42:31 +0000940 }
941 break;
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000942 default:
943 if (DS.getStorageClassSpecLoc().isValid())
944 Diag(DS.getStorageClassSpecLoc(),
945 diag::err_storageclass_invalid_for_member);
946 else
947 Diag(DS.getThreadSpecLoc(), diag::err_storageclass_invalid_for_member);
948 D.getMutableDeclSpec().ClearStorageClassSpecs();
949 }
950
Sebastian Redlccdfaba2008-11-14 23:42:31 +0000951 bool isInstField = ((DS.getStorageClassSpec() == DeclSpec::SCS_unspecified ||
952 DS.getStorageClassSpec() == DeclSpec::SCS_mutable) &&
Argyrios Kyrtzidis1207d312008-10-08 22:20:31 +0000953 !isFunc);
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000954
955 Decl *Member;
Chris Lattner73bf7b42009-03-05 22:45:59 +0000956 if (isInstField) {
Douglas Gregor3447e762009-08-20 22:52:58 +0000957 // FIXME: Check for template parameters!
Douglas Gregor4261e4c2009-03-11 20:50:30 +0000958 Member = HandleField(S, cast<CXXRecordDecl>(CurContext), Loc, D, BitWidth,
959 AS);
Chris Lattner97e277e2009-03-05 23:03:49 +0000960 assert(Member && "HandleField never returns null");
Chris Lattner73bf7b42009-03-05 22:45:59 +0000961 } else {
Sebastian Redld6f78502009-11-24 23:38:44 +0000962 Member = HandleDeclarator(S, D, move(TemplateParameterLists), IsDefinition)
Douglas Gregor3447e762009-08-20 22:52:58 +0000963 .getAs<Decl>();
Chris Lattner97e277e2009-03-05 23:03:49 +0000964 if (!Member) {
965 if (BitWidth) DeleteExpr(BitWidth);
Chris Lattner5bbb3c82009-03-29 16:50:03 +0000966 return DeclPtrTy();
Chris Lattner97e277e2009-03-05 23:03:49 +0000967 }
Chris Lattnerd26760a2009-03-05 23:01:03 +0000968
969 // Non-instance-fields can't have a bitfield.
970 if (BitWidth) {
971 if (Member->isInvalidDecl()) {
972 // don't emit another diagnostic.
Douglas Gregor212cab32009-03-11 20:22:50 +0000973 } else if (isa<VarDecl>(Member)) {
Chris Lattnerd26760a2009-03-05 23:01:03 +0000974 // C++ 9.6p3: A bit-field shall not be a static member.
975 // "static member 'A' cannot be a bit-field"
976 Diag(Loc, diag::err_static_not_bitfield)
977 << Name << BitWidth->getSourceRange();
978 } else if (isa<TypedefDecl>(Member)) {
979 // "typedef member 'x' cannot be a bit-field"
980 Diag(Loc, diag::err_typedef_not_bitfield)
981 << Name << BitWidth->getSourceRange();
982 } else {
983 // A function typedef ("typedef int f(); f a;").
984 // C++ 9.6p3: A bit-field shall have integral or enumeration type.
985 Diag(Loc, diag::err_not_integral_type_bitfield)
Mike Stump11289f42009-09-09 15:08:12 +0000986 << Name << cast<ValueDecl>(Member)->getType()
Douglas Gregor1efa4372009-03-11 18:59:21 +0000987 << BitWidth->getSourceRange();
Chris Lattnerd26760a2009-03-05 23:01:03 +0000988 }
Mike Stump11289f42009-09-09 15:08:12 +0000989
Chris Lattnerd26760a2009-03-05 23:01:03 +0000990 DeleteExpr(BitWidth);
991 BitWidth = 0;
992 Member->setInvalidDecl();
993 }
Douglas Gregor4261e4c2009-03-11 20:50:30 +0000994
995 Member->setAccess(AS);
Mike Stump11289f42009-09-09 15:08:12 +0000996
Douglas Gregor3447e762009-08-20 22:52:58 +0000997 // If we have declared a member function template, set the access of the
998 // templated declaration as well.
999 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Member))
1000 FunTmpl->getTemplatedDecl()->setAccess(AS);
Chris Lattner73bf7b42009-03-05 22:45:59 +00001001 }
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001002
Douglas Gregor92751d42008-11-17 22:58:34 +00001003 assert((Name || isInstField) && "No identifier for non-field ?");
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001004
Douglas Gregor0c880302009-03-11 23:00:04 +00001005 if (Init)
Chris Lattner83f095c2009-03-28 19:18:32 +00001006 AddInitializerToDecl(DeclPtrTy::make(Member), ExprArg(*this, Init), false);
Sebastian Redl42e92c42009-04-12 17:16:29 +00001007 if (Deleted) // FIXME: Source location is not very good.
1008 SetDeclDeleted(DeclPtrTy::make(Member), D.getSourceRange().getBegin());
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001009
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001010 if (isInstField) {
Douglas Gregor91f84212008-12-11 16:49:14 +00001011 FieldCollector->Add(cast<FieldDecl>(Member));
Chris Lattner5bbb3c82009-03-29 16:50:03 +00001012 return DeclPtrTy();
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001013 }
Chris Lattner83f095c2009-03-28 19:18:32 +00001014 return DeclPtrTy::make(Member);
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001015}
1016
Douglas Gregor15e77a22009-12-31 09:10:24 +00001017/// \brief Find the direct and/or virtual base specifiers that
1018/// correspond to the given base type, for use in base initialization
1019/// within a constructor.
1020static bool FindBaseInitializer(Sema &SemaRef,
1021 CXXRecordDecl *ClassDecl,
1022 QualType BaseType,
1023 const CXXBaseSpecifier *&DirectBaseSpec,
1024 const CXXBaseSpecifier *&VirtualBaseSpec) {
1025 // First, check for a direct base class.
1026 DirectBaseSpec = 0;
1027 for (CXXRecordDecl::base_class_const_iterator Base
1028 = ClassDecl->bases_begin();
1029 Base != ClassDecl->bases_end(); ++Base) {
1030 if (SemaRef.Context.hasSameUnqualifiedType(BaseType, Base->getType())) {
1031 // We found a direct base of this type. That's what we're
1032 // initializing.
1033 DirectBaseSpec = &*Base;
1034 break;
1035 }
1036 }
1037
1038 // Check for a virtual base class.
1039 // FIXME: We might be able to short-circuit this if we know in advance that
1040 // there are no virtual bases.
1041 VirtualBaseSpec = 0;
1042 if (!DirectBaseSpec || !DirectBaseSpec->isVirtual()) {
1043 // We haven't found a base yet; search the class hierarchy for a
1044 // virtual base class.
1045 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
1046 /*DetectVirtual=*/false);
1047 if (SemaRef.IsDerivedFrom(SemaRef.Context.getTypeDeclType(ClassDecl),
1048 BaseType, Paths)) {
1049 for (CXXBasePaths::paths_iterator Path = Paths.begin();
1050 Path != Paths.end(); ++Path) {
1051 if (Path->back().Base->isVirtual()) {
1052 VirtualBaseSpec = Path->back().Base;
1053 break;
1054 }
1055 }
1056 }
1057 }
1058
1059 return DirectBaseSpec || VirtualBaseSpec;
1060}
1061
Douglas Gregore8381c02008-11-05 04:29:56 +00001062/// ActOnMemInitializer - Handle a C++ member initializer.
Mike Stump11289f42009-09-09 15:08:12 +00001063Sema::MemInitResult
Chris Lattner83f095c2009-03-28 19:18:32 +00001064Sema::ActOnMemInitializer(DeclPtrTy ConstructorD,
Douglas Gregore8381c02008-11-05 04:29:56 +00001065 Scope *S,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00001066 CXXScopeSpec &SS,
Douglas Gregore8381c02008-11-05 04:29:56 +00001067 IdentifierInfo *MemberOrBase,
Fariborz Jahanianc1fc3ec2009-07-01 19:21:19 +00001068 TypeTy *TemplateTypeTy,
Douglas Gregore8381c02008-11-05 04:29:56 +00001069 SourceLocation IdLoc,
1070 SourceLocation LParenLoc,
1071 ExprTy **Args, unsigned NumArgs,
1072 SourceLocation *CommaLocs,
1073 SourceLocation RParenLoc) {
Douglas Gregor71a57182009-06-22 23:20:33 +00001074 if (!ConstructorD)
1075 return true;
Mike Stump11289f42009-09-09 15:08:12 +00001076
Douglas Gregorc8c277a2009-08-24 11:57:43 +00001077 AdjustDeclIfTemplate(ConstructorD);
Mike Stump11289f42009-09-09 15:08:12 +00001078
1079 CXXConstructorDecl *Constructor
Chris Lattner83f095c2009-03-28 19:18:32 +00001080 = dyn_cast<CXXConstructorDecl>(ConstructorD.getAs<Decl>());
Douglas Gregore8381c02008-11-05 04:29:56 +00001081 if (!Constructor) {
1082 // The user wrote a constructor initializer on a function that is
1083 // not a C++ constructor. Ignore the error for now, because we may
1084 // have more member initializers coming; we'll diagnose it just
1085 // once in ActOnMemInitializers.
1086 return true;
1087 }
1088
1089 CXXRecordDecl *ClassDecl = Constructor->getParent();
1090
1091 // C++ [class.base.init]p2:
1092 // Names in a mem-initializer-id are looked up in the scope of the
1093 // constructor’s class and, if not found in that scope, are looked
1094 // up in the scope containing the constructor’s
1095 // definition. [Note: if the constructor’s class contains a member
1096 // with the same name as a direct or virtual base class of the
1097 // class, a mem-initializer-id naming the member or base class and
1098 // composed of a single identifier refers to the class member. A
1099 // mem-initializer-id for the hidden base class may be specified
1100 // using a qualified name. ]
Fariborz Jahanianc1fc3ec2009-07-01 19:21:19 +00001101 if (!SS.getScopeRep() && !TemplateTypeTy) {
Fariborz Jahanian302bb662009-06-30 23:26:25 +00001102 // Look for a member, first.
1103 FieldDecl *Member = 0;
Mike Stump11289f42009-09-09 15:08:12 +00001104 DeclContext::lookup_result Result
Fariborz Jahanian302bb662009-06-30 23:26:25 +00001105 = ClassDecl->lookup(MemberOrBase);
1106 if (Result.first != Result.second)
1107 Member = dyn_cast<FieldDecl>(*Result.first);
Douglas Gregore8381c02008-11-05 04:29:56 +00001108
Fariborz Jahanian302bb662009-06-30 23:26:25 +00001109 // FIXME: Handle members of an anonymous union.
Douglas Gregore8381c02008-11-05 04:29:56 +00001110
Eli Friedman8e1433b2009-07-29 19:44:27 +00001111 if (Member)
1112 return BuildMemberInitializer(Member, (Expr**)Args, NumArgs, IdLoc,
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00001113 LParenLoc, RParenLoc);
Douglas Gregore8381c02008-11-05 04:29:56 +00001114 }
Douglas Gregore8381c02008-11-05 04:29:56 +00001115 // It didn't name a member, so see if it names a class.
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00001116 QualType BaseType;
John McCallbcd03502009-12-07 02:54:59 +00001117 TypeSourceInfo *TInfo = 0;
John McCallb5a0d312009-12-21 10:41:20 +00001118
1119 if (TemplateTypeTy) {
John McCallbcd03502009-12-07 02:54:59 +00001120 BaseType = GetTypeFromParser(TemplateTypeTy, &TInfo);
John McCallb5a0d312009-12-21 10:41:20 +00001121 } else {
1122 LookupResult R(*this, MemberOrBase, IdLoc, LookupOrdinaryName);
1123 LookupParsedName(R, S, &SS);
1124
1125 TypeDecl *TyD = R.getAsSingle<TypeDecl>();
1126 if (!TyD) {
1127 if (R.isAmbiguous()) return true;
1128
John McCallda6841b2010-04-09 19:01:14 +00001129 // We don't want access-control diagnostics here.
1130 R.suppressDiagnostics();
1131
Douglas Gregora3b624a2010-01-19 06:46:48 +00001132 if (SS.isSet() && isDependentScopeSpecifier(SS)) {
1133 bool NotUnknownSpecialization = false;
1134 DeclContext *DC = computeDeclContext(SS, false);
1135 if (CXXRecordDecl *Record = dyn_cast_or_null<CXXRecordDecl>(DC))
1136 NotUnknownSpecialization = !Record->hasAnyDependentBases();
1137
1138 if (!NotUnknownSpecialization) {
1139 // When the scope specifier can refer to a member of an unknown
1140 // specialization, we take it as a type name.
Douglas Gregorbbdf20a2010-04-24 15:35:55 +00001141 BaseType = CheckTypenameType(ETK_None,
1142 (NestedNameSpecifier *)SS.getScopeRep(),
Abramo Bagnarad7548482010-05-19 21:37:53 +00001143 *MemberOrBase, SourceLocation(),
1144 SS.getRange(), IdLoc);
Douglas Gregor281c4862010-03-07 23:26:22 +00001145 if (BaseType.isNull())
1146 return true;
1147
Douglas Gregora3b624a2010-01-19 06:46:48 +00001148 R.clear();
Douglas Gregorc048c522010-06-29 19:27:42 +00001149 R.setLookupName(MemberOrBase);
Douglas Gregora3b624a2010-01-19 06:46:48 +00001150 }
1151 }
1152
Douglas Gregor15e77a22009-12-31 09:10:24 +00001153 // If no results were found, try to correct typos.
Douglas Gregora3b624a2010-01-19 06:46:48 +00001154 if (R.empty() && BaseType.isNull() &&
Douglas Gregor280e1ee2010-04-14 20:04:41 +00001155 CorrectTypo(R, S, &SS, ClassDecl, 0, CTC_NoKeywords) &&
1156 R.isSingleResult()) {
Douglas Gregor15e77a22009-12-31 09:10:24 +00001157 if (FieldDecl *Member = R.getAsSingle<FieldDecl>()) {
1158 if (Member->getDeclContext()->getLookupContext()->Equals(ClassDecl)) {
1159 // We have found a non-static data member with a similar
1160 // name to what was typed; complain and initialize that
1161 // member.
1162 Diag(R.getNameLoc(), diag::err_mem_init_not_member_or_class_suggest)
1163 << MemberOrBase << true << R.getLookupName()
Douglas Gregora771f462010-03-31 17:46:05 +00001164 << FixItHint::CreateReplacement(R.getNameLoc(),
1165 R.getLookupName().getAsString());
Douglas Gregor6da83622010-01-07 00:17:44 +00001166 Diag(Member->getLocation(), diag::note_previous_decl)
1167 << Member->getDeclName();
Douglas Gregor15e77a22009-12-31 09:10:24 +00001168
1169 return BuildMemberInitializer(Member, (Expr**)Args, NumArgs, IdLoc,
1170 LParenLoc, RParenLoc);
1171 }
1172 } else if (TypeDecl *Type = R.getAsSingle<TypeDecl>()) {
1173 const CXXBaseSpecifier *DirectBaseSpec;
1174 const CXXBaseSpecifier *VirtualBaseSpec;
1175 if (FindBaseInitializer(*this, ClassDecl,
1176 Context.getTypeDeclType(Type),
1177 DirectBaseSpec, VirtualBaseSpec)) {
1178 // We have found a direct or virtual base class with a
1179 // similar name to what was typed; complain and initialize
1180 // that base class.
1181 Diag(R.getNameLoc(), diag::err_mem_init_not_member_or_class_suggest)
1182 << MemberOrBase << false << R.getLookupName()
Douglas Gregora771f462010-03-31 17:46:05 +00001183 << FixItHint::CreateReplacement(R.getNameLoc(),
1184 R.getLookupName().getAsString());
Douglas Gregor43a08572010-01-07 00:26:25 +00001185
1186 const CXXBaseSpecifier *BaseSpec = DirectBaseSpec? DirectBaseSpec
1187 : VirtualBaseSpec;
1188 Diag(BaseSpec->getSourceRange().getBegin(),
1189 diag::note_base_class_specified_here)
1190 << BaseSpec->getType()
1191 << BaseSpec->getSourceRange();
1192
Douglas Gregor15e77a22009-12-31 09:10:24 +00001193 TyD = Type;
1194 }
1195 }
1196 }
1197
Douglas Gregora3b624a2010-01-19 06:46:48 +00001198 if (!TyD && BaseType.isNull()) {
Douglas Gregor15e77a22009-12-31 09:10:24 +00001199 Diag(IdLoc, diag::err_mem_init_not_member_or_class)
1200 << MemberOrBase << SourceRange(IdLoc, RParenLoc);
1201 return true;
1202 }
John McCallb5a0d312009-12-21 10:41:20 +00001203 }
1204
Douglas Gregora3b624a2010-01-19 06:46:48 +00001205 if (BaseType.isNull()) {
1206 BaseType = Context.getTypeDeclType(TyD);
1207 if (SS.isSet()) {
1208 NestedNameSpecifier *Qualifier =
1209 static_cast<NestedNameSpecifier*>(SS.getScopeRep());
John McCallb5a0d312009-12-21 10:41:20 +00001210
Douglas Gregora3b624a2010-01-19 06:46:48 +00001211 // FIXME: preserve source range information
Abramo Bagnara6150c882010-05-11 21:36:43 +00001212 BaseType = Context.getElaboratedType(ETK_None, Qualifier, BaseType);
Douglas Gregora3b624a2010-01-19 06:46:48 +00001213 }
John McCallb5a0d312009-12-21 10:41:20 +00001214 }
1215 }
Mike Stump11289f42009-09-09 15:08:12 +00001216
John McCallbcd03502009-12-07 02:54:59 +00001217 if (!TInfo)
1218 TInfo = Context.getTrivialTypeSourceInfo(BaseType, IdLoc);
Douglas Gregore8381c02008-11-05 04:29:56 +00001219
John McCallbcd03502009-12-07 02:54:59 +00001220 return BuildBaseInitializer(BaseType, TInfo, (Expr **)Args, NumArgs,
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00001221 LParenLoc, RParenLoc, ClassDecl);
Eli Friedman8e1433b2009-07-29 19:44:27 +00001222}
1223
John McCalle22a04a2009-11-04 23:02:40 +00001224/// Checks an initializer expression for use of uninitialized fields, such as
1225/// containing the field that is being initialized. Returns true if there is an
1226/// uninitialized field was used an updates the SourceLocation parameter; false
1227/// otherwise.
Nick Lewyckya2fb98b2010-06-15 07:32:55 +00001228static bool InitExprContainsUninitializedFields(const Stmt *S,
1229 const FieldDecl *LhsField,
1230 SourceLocation *L) {
1231 if (isa<CallExpr>(S)) {
1232 // Do not descend into function calls or constructors, as the use
1233 // of an uninitialized field may be valid. One would have to inspect
1234 // the contents of the function/ctor to determine if it is safe or not.
1235 // i.e. Pass-by-value is never safe, but pass-by-reference and pointers
1236 // may be safe, depending on what the function/ctor does.
1237 return false;
1238 }
1239 if (const MemberExpr *ME = dyn_cast<MemberExpr>(S)) {
1240 const NamedDecl *RhsField = ME->getMemberDecl();
John McCalle22a04a2009-11-04 23:02:40 +00001241 if (RhsField == LhsField) {
1242 // Initializing a field with itself. Throw a warning.
1243 // But wait; there are exceptions!
1244 // Exception #1: The field may not belong to this record.
1245 // e.g. Foo(const Foo& rhs) : A(rhs.A) {}
Nick Lewyckya2fb98b2010-06-15 07:32:55 +00001246 const Expr *base = ME->getBase();
John McCalle22a04a2009-11-04 23:02:40 +00001247 if (base != NULL && !isa<CXXThisExpr>(base->IgnoreParenCasts())) {
1248 // Even though the field matches, it does not belong to this record.
1249 return false;
1250 }
1251 // None of the exceptions triggered; return true to indicate an
1252 // uninitialized field was used.
1253 *L = ME->getMemberLoc();
1254 return true;
1255 }
1256 }
Nick Lewyckya2fb98b2010-06-15 07:32:55 +00001257 for (Stmt::const_child_iterator it = S->child_begin(), e = S->child_end();
1258 it != e; ++it) {
1259 if (!*it) {
1260 // An expression such as 'member(arg ?: "")' may trigger this.
John McCalle22a04a2009-11-04 23:02:40 +00001261 continue;
1262 }
Nick Lewyckya2fb98b2010-06-15 07:32:55 +00001263 if (InitExprContainsUninitializedFields(*it, LhsField, L))
1264 return true;
John McCalle22a04a2009-11-04 23:02:40 +00001265 }
Nick Lewyckya2fb98b2010-06-15 07:32:55 +00001266 return false;
John McCalle22a04a2009-11-04 23:02:40 +00001267}
1268
Eli Friedman8e1433b2009-07-29 19:44:27 +00001269Sema::MemInitResult
1270Sema::BuildMemberInitializer(FieldDecl *Member, Expr **Args,
1271 unsigned NumArgs, SourceLocation IdLoc,
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00001272 SourceLocation LParenLoc,
Eli Friedman8e1433b2009-07-29 19:44:27 +00001273 SourceLocation RParenLoc) {
John McCalle22a04a2009-11-04 23:02:40 +00001274 // Diagnose value-uses of fields to initialize themselves, e.g.
1275 // foo(foo)
1276 // where foo is not also a parameter to the constructor.
John McCallc90f6d72009-11-04 23:13:52 +00001277 // TODO: implement -Wuninitialized and fold this into that framework.
John McCalle22a04a2009-11-04 23:02:40 +00001278 for (unsigned i = 0; i < NumArgs; ++i) {
1279 SourceLocation L;
1280 if (InitExprContainsUninitializedFields(Args[i], Member, &L)) {
1281 // FIXME: Return true in the case when other fields are used before being
1282 // uninitialized. For example, let this field be the i'th field. When
1283 // initializing the i'th field, throw a warning if any of the >= i'th
1284 // fields are used, as they are not yet initialized.
1285 // Right now we are only handling the case where the i'th field uses
1286 // itself in its initializer.
1287 Diag(L, diag::warn_field_is_uninit);
1288 }
1289 }
1290
Eli Friedman8e1433b2009-07-29 19:44:27 +00001291 bool HasDependentArg = false;
1292 for (unsigned i = 0; i < NumArgs; i++)
1293 HasDependentArg |= Args[i]->isTypeDependent();
1294
Eli Friedman9255adf2010-07-24 21:19:15 +00001295 if (Member->getType()->isDependentType() || HasDependentArg) {
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001296 // Can't check initialization for a member of dependent type or when
1297 // any of the arguments are type-dependent expressions.
1298 OwningExprResult Init
1299 = Owned(new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1300 RParenLoc));
1301
1302 // Erase any temporaries within this evaluation context; we're not
1303 // going to track them in the AST, since we'll be rebuilding the
1304 // ASTs during template instantiation.
1305 ExprTemporaries.erase(
1306 ExprTemporaries.begin() + ExprEvalContexts.back().NumTemporaries,
1307 ExprTemporaries.end());
1308
1309 return new (Context) CXXBaseOrMemberInitializer(Context, Member, IdLoc,
1310 LParenLoc,
1311 Init.takeAs<Expr>(),
1312 RParenLoc);
1313
Douglas Gregore8381c02008-11-05 04:29:56 +00001314 }
Anders Carlsson1fe64cb2009-11-13 19:21:49 +00001315
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001316 if (Member->isInvalidDecl())
1317 return true;
Anders Carlsson1fe64cb2009-11-13 19:21:49 +00001318
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001319 // Initialize the member.
1320 InitializedEntity MemberEntity =
1321 InitializedEntity::InitializeMember(Member, 0);
1322 InitializationKind Kind =
1323 InitializationKind::CreateDirect(IdLoc, LParenLoc, RParenLoc);
1324
1325 InitializationSequence InitSeq(*this, MemberEntity, Kind, Args, NumArgs);
1326
1327 OwningExprResult MemberInit =
1328 InitSeq.Perform(*this, MemberEntity, Kind,
1329 MultiExprArg(*this, (void**)Args, NumArgs), 0);
1330 if (MemberInit.isInvalid())
1331 return true;
1332
1333 // C++0x [class.base.init]p7:
1334 // The initialization of each base and member constitutes a
1335 // full-expression.
1336 MemberInit = MaybeCreateCXXExprWithTemporaries(move(MemberInit));
1337 if (MemberInit.isInvalid())
1338 return true;
1339
1340 // If we are in a dependent context, template instantiation will
1341 // perform this type-checking again. Just save the arguments that we
1342 // received in a ParenListExpr.
1343 // FIXME: This isn't quite ideal, since our ASTs don't capture all
1344 // of the information that we have about the member
1345 // initializer. However, deconstructing the ASTs is a dicey process,
1346 // and this approach is far more likely to get the corner cases right.
1347 if (CurContext->isDependentContext()) {
1348 // Bump the reference count of all of the arguments.
1349 for (unsigned I = 0; I != NumArgs; ++I)
1350 Args[I]->Retain();
1351
1352 OwningExprResult Init
1353 = Owned(new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1354 RParenLoc));
1355 return new (Context) CXXBaseOrMemberInitializer(Context, Member, IdLoc,
1356 LParenLoc,
1357 Init.takeAs<Expr>(),
1358 RParenLoc);
1359 }
1360
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00001361 return new (Context) CXXBaseOrMemberInitializer(Context, Member, IdLoc,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001362 LParenLoc,
1363 MemberInit.takeAs<Expr>(),
1364 RParenLoc);
Eli Friedman8e1433b2009-07-29 19:44:27 +00001365}
1366
1367Sema::MemInitResult
John McCallbcd03502009-12-07 02:54:59 +00001368Sema::BuildBaseInitializer(QualType BaseType, TypeSourceInfo *BaseTInfo,
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00001369 Expr **Args, unsigned NumArgs,
1370 SourceLocation LParenLoc, SourceLocation RParenLoc,
1371 CXXRecordDecl *ClassDecl) {
Eli Friedman8e1433b2009-07-29 19:44:27 +00001372 bool HasDependentArg = false;
1373 for (unsigned i = 0; i < NumArgs; i++)
1374 HasDependentArg |= Args[i]->isTypeDependent();
1375
Douglas Gregor1c69bf02010-06-16 16:03:14 +00001376 SourceLocation BaseLoc
1377 = BaseTInfo->getTypeLoc().getLocalSourceRange().getBegin();
1378
1379 if (!BaseType->isDependentType() && !BaseType->isRecordType())
1380 return Diag(BaseLoc, diag::err_base_init_does_not_name_class)
1381 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
1382
1383 // C++ [class.base.init]p2:
1384 // [...] Unless the mem-initializer-id names a nonstatic data
1385 // member of the constructor’s class or a direct or virtual base
1386 // of that class, the mem-initializer is ill-formed. A
1387 // mem-initializer-list can initialize a base class using any
1388 // name that denotes that base class type.
1389 bool Dependent = BaseType->isDependentType() || HasDependentArg;
1390
1391 // Check for direct and virtual base classes.
1392 const CXXBaseSpecifier *DirectBaseSpec = 0;
1393 const CXXBaseSpecifier *VirtualBaseSpec = 0;
1394 if (!Dependent) {
1395 FindBaseInitializer(*this, ClassDecl, BaseType, DirectBaseSpec,
1396 VirtualBaseSpec);
1397
1398 // C++ [base.class.init]p2:
1399 // Unless the mem-initializer-id names a nonstatic data member of the
1400 // constructor's class or a direct or virtual base of that class, the
1401 // mem-initializer is ill-formed.
1402 if (!DirectBaseSpec && !VirtualBaseSpec) {
1403 // If the class has any dependent bases, then it's possible that
1404 // one of those types will resolve to the same type as
1405 // BaseType. Therefore, just treat this as a dependent base
1406 // class initialization. FIXME: Should we try to check the
1407 // initialization anyway? It seems odd.
1408 if (ClassDecl->hasAnyDependentBases())
1409 Dependent = true;
1410 else
1411 return Diag(BaseLoc, diag::err_not_direct_base_or_virtual)
1412 << BaseType << Context.getTypeDeclType(ClassDecl)
1413 << BaseTInfo->getTypeLoc().getLocalSourceRange();
1414 }
1415 }
1416
1417 if (Dependent) {
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001418 // Can't check initialization for a base of dependent type or when
1419 // any of the arguments are type-dependent expressions.
1420 OwningExprResult BaseInit
1421 = Owned(new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1422 RParenLoc));
Eli Friedman8e1433b2009-07-29 19:44:27 +00001423
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001424 // Erase any temporaries within this evaluation context; we're not
1425 // going to track them in the AST, since we'll be rebuilding the
1426 // ASTs during template instantiation.
1427 ExprTemporaries.erase(
1428 ExprTemporaries.begin() + ExprEvalContexts.back().NumTemporaries,
1429 ExprTemporaries.end());
Mike Stump11289f42009-09-09 15:08:12 +00001430
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001431 return new (Context) CXXBaseOrMemberInitializer(Context, BaseTInfo,
Anders Carlsson1c0f8bb2010-04-12 00:51:03 +00001432 /*IsVirtual=*/false,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001433 LParenLoc,
1434 BaseInit.takeAs<Expr>(),
1435 RParenLoc);
Douglas Gregore8381c02008-11-05 04:29:56 +00001436 }
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001437
1438 // C++ [base.class.init]p2:
1439 // If a mem-initializer-id is ambiguous because it designates both
1440 // a direct non-virtual base class and an inherited virtual base
1441 // class, the mem-initializer is ill-formed.
1442 if (DirectBaseSpec && VirtualBaseSpec)
1443 return Diag(BaseLoc, diag::err_base_init_direct_and_virtual)
Abramo Bagnara1108e7b2010-05-20 10:00:11 +00001444 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001445
1446 CXXBaseSpecifier *BaseSpec
1447 = const_cast<CXXBaseSpecifier *>(DirectBaseSpec);
1448 if (!BaseSpec)
1449 BaseSpec = const_cast<CXXBaseSpecifier *>(VirtualBaseSpec);
1450
1451 // Initialize the base.
1452 InitializedEntity BaseEntity =
Anders Carlsson43c64af2010-04-21 19:52:01 +00001453 InitializedEntity::InitializeBase(Context, BaseSpec, VirtualBaseSpec);
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001454 InitializationKind Kind =
1455 InitializationKind::CreateDirect(BaseLoc, LParenLoc, RParenLoc);
1456
1457 InitializationSequence InitSeq(*this, BaseEntity, Kind, Args, NumArgs);
1458
1459 OwningExprResult BaseInit =
1460 InitSeq.Perform(*this, BaseEntity, Kind,
1461 MultiExprArg(*this, (void**)Args, NumArgs), 0);
1462 if (BaseInit.isInvalid())
1463 return true;
1464
1465 // C++0x [class.base.init]p7:
1466 // The initialization of each base and member constitutes a
1467 // full-expression.
1468 BaseInit = MaybeCreateCXXExprWithTemporaries(move(BaseInit));
1469 if (BaseInit.isInvalid())
1470 return true;
1471
1472 // If we are in a dependent context, template instantiation will
1473 // perform this type-checking again. Just save the arguments that we
1474 // received in a ParenListExpr.
1475 // FIXME: This isn't quite ideal, since our ASTs don't capture all
1476 // of the information that we have about the base
1477 // initializer. However, deconstructing the ASTs is a dicey process,
1478 // and this approach is far more likely to get the corner cases right.
1479 if (CurContext->isDependentContext()) {
1480 // Bump the reference count of all of the arguments.
1481 for (unsigned I = 0; I != NumArgs; ++I)
1482 Args[I]->Retain();
1483
1484 OwningExprResult Init
1485 = Owned(new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1486 RParenLoc));
1487 return new (Context) CXXBaseOrMemberInitializer(Context, BaseTInfo,
Anders Carlsson1c0f8bb2010-04-12 00:51:03 +00001488 BaseSpec->isVirtual(),
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001489 LParenLoc,
1490 Init.takeAs<Expr>(),
1491 RParenLoc);
1492 }
1493
1494 return new (Context) CXXBaseOrMemberInitializer(Context, BaseTInfo,
Anders Carlsson1c0f8bb2010-04-12 00:51:03 +00001495 BaseSpec->isVirtual(),
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001496 LParenLoc,
1497 BaseInit.takeAs<Expr>(),
1498 RParenLoc);
Douglas Gregore8381c02008-11-05 04:29:56 +00001499}
1500
Anders Carlsson1b00e242010-04-23 03:10:23 +00001501/// ImplicitInitializerKind - How an implicit base or member initializer should
1502/// initialize its base or member.
1503enum ImplicitInitializerKind {
1504 IIK_Default,
1505 IIK_Copy,
1506 IIK_Move
1507};
1508
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001509static bool
Anders Carlsson3c1db572010-04-23 02:15:47 +00001510BuildImplicitBaseInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlsson1b00e242010-04-23 03:10:23 +00001511 ImplicitInitializerKind ImplicitInitKind,
Anders Carlsson43c64af2010-04-21 19:52:01 +00001512 CXXBaseSpecifier *BaseSpec,
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001513 bool IsInheritedVirtualBase,
1514 CXXBaseOrMemberInitializer *&CXXBaseInit) {
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001515 InitializedEntity InitEntity
Anders Carlsson43c64af2010-04-21 19:52:01 +00001516 = InitializedEntity::InitializeBase(SemaRef.Context, BaseSpec,
1517 IsInheritedVirtualBase);
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001518
Anders Carlsson1b00e242010-04-23 03:10:23 +00001519 Sema::OwningExprResult BaseInit(SemaRef);
1520
1521 switch (ImplicitInitKind) {
1522 case IIK_Default: {
1523 InitializationKind InitKind
1524 = InitializationKind::CreateDefault(Constructor->getLocation());
1525 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, 0, 0);
1526 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind,
1527 Sema::MultiExprArg(SemaRef, 0, 0));
1528 break;
1529 }
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001530
Anders Carlsson1b00e242010-04-23 03:10:23 +00001531 case IIK_Copy: {
1532 ParmVarDecl *Param = Constructor->getParamDecl(0);
1533 QualType ParamType = Param->getType().getNonReferenceType();
1534
1535 Expr *CopyCtorArg =
1536 DeclRefExpr::Create(SemaRef.Context, 0, SourceRange(), Param,
Douglas Gregored088b72010-05-03 15:43:53 +00001537 Constructor->getLocation(), ParamType, 0);
Anders Carlsson1b00e242010-04-23 03:10:23 +00001538
Anders Carlssonaf13c7b2010-04-24 22:02:54 +00001539 // Cast to the base class to avoid ambiguities.
Anders Carlsson79111502010-05-01 16:39:01 +00001540 QualType ArgTy =
1541 SemaRef.Context.getQualifiedType(BaseSpec->getType().getUnqualifiedType(),
1542 ParamType.getQualifiers());
John McCallcf142162010-08-07 06:22:56 +00001543
1544 CXXCastPath BasePath;
1545 BasePath.push_back(BaseSpec);
Sebastian Redlc57d34b2010-07-20 04:20:21 +00001546 SemaRef.ImpCastExprToType(CopyCtorArg, ArgTy,
Anders Carlssonaf13c7b2010-04-24 22:02:54 +00001547 CastExpr::CK_UncheckedDerivedToBase,
John McCallcf142162010-08-07 06:22:56 +00001548 ImplicitCastExpr::LValue, &BasePath);
Anders Carlssonaf13c7b2010-04-24 22:02:54 +00001549
Anders Carlsson1b00e242010-04-23 03:10:23 +00001550 InitializationKind InitKind
1551 = InitializationKind::CreateDirect(Constructor->getLocation(),
1552 SourceLocation(), SourceLocation());
1553 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind,
1554 &CopyCtorArg, 1);
1555 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind,
1556 Sema::MultiExprArg(SemaRef,
1557 (void**)&CopyCtorArg, 1));
1558 break;
1559 }
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001560
Anders Carlsson1b00e242010-04-23 03:10:23 +00001561 case IIK_Move:
1562 assert(false && "Unhandled initializer kind!");
1563 }
1564
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001565 BaseInit = SemaRef.MaybeCreateCXXExprWithTemporaries(move(BaseInit));
1566 if (BaseInit.isInvalid())
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001567 return true;
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001568
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001569 CXXBaseInit =
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001570 new (SemaRef.Context) CXXBaseOrMemberInitializer(SemaRef.Context,
1571 SemaRef.Context.getTrivialTypeSourceInfo(BaseSpec->getType(),
1572 SourceLocation()),
1573 BaseSpec->isVirtual(),
1574 SourceLocation(),
1575 BaseInit.takeAs<Expr>(),
1576 SourceLocation());
1577
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001578 return false;
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001579}
1580
Anders Carlsson3c1db572010-04-23 02:15:47 +00001581static bool
1582BuildImplicitMemberInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlsson1b00e242010-04-23 03:10:23 +00001583 ImplicitInitializerKind ImplicitInitKind,
Anders Carlsson3c1db572010-04-23 02:15:47 +00001584 FieldDecl *Field,
1585 CXXBaseOrMemberInitializer *&CXXMemberInit) {
Douglas Gregor3f4f03a2010-05-20 22:12:02 +00001586 if (Field->isInvalidDecl())
1587 return true;
1588
Chandler Carruth9c9286b2010-06-29 23:50:44 +00001589 SourceLocation Loc = Constructor->getLocation();
1590
Anders Carlsson423f5d82010-04-23 16:04:08 +00001591 if (ImplicitInitKind == IIK_Copy) {
1592 ParmVarDecl *Param = Constructor->getParamDecl(0);
1593 QualType ParamType = Param->getType().getNonReferenceType();
1594
1595 Expr *MemberExprBase =
1596 DeclRefExpr::Create(SemaRef.Context, 0, SourceRange(), Param,
Douglas Gregor94f9a482010-05-05 05:51:00 +00001597 Loc, ParamType, 0);
1598
1599 // Build a reference to this field within the parameter.
1600 CXXScopeSpec SS;
1601 LookupResult MemberLookup(SemaRef, Field->getDeclName(), Loc,
1602 Sema::LookupMemberName);
1603 MemberLookup.addDecl(Field, AS_public);
1604 MemberLookup.resolveKind();
1605 Sema::OwningExprResult CopyCtorArg
1606 = SemaRef.BuildMemberReferenceExpr(SemaRef.Owned(MemberExprBase),
1607 ParamType, Loc,
1608 /*IsArrow=*/false,
1609 SS,
1610 /*FirstQualifierInScope=*/0,
1611 MemberLookup,
1612 /*TemplateArgs=*/0);
1613 if (CopyCtorArg.isInvalid())
Anders Carlsson423f5d82010-04-23 16:04:08 +00001614 return true;
1615
Douglas Gregor94f9a482010-05-05 05:51:00 +00001616 // When the field we are copying is an array, create index variables for
1617 // each dimension of the array. We use these index variables to subscript
1618 // the source array, and other clients (e.g., CodeGen) will perform the
1619 // necessary iteration with these index variables.
1620 llvm::SmallVector<VarDecl *, 4> IndexVariables;
1621 QualType BaseType = Field->getType();
1622 QualType SizeType = SemaRef.Context.getSizeType();
1623 while (const ConstantArrayType *Array
1624 = SemaRef.Context.getAsConstantArrayType(BaseType)) {
1625 // Create the iteration variable for this array index.
1626 IdentifierInfo *IterationVarName = 0;
1627 {
1628 llvm::SmallString<8> Str;
1629 llvm::raw_svector_ostream OS(Str);
1630 OS << "__i" << IndexVariables.size();
1631 IterationVarName = &SemaRef.Context.Idents.get(OS.str());
1632 }
1633 VarDecl *IterationVar
1634 = VarDecl::Create(SemaRef.Context, SemaRef.CurContext, Loc,
1635 IterationVarName, SizeType,
1636 SemaRef.Context.getTrivialTypeSourceInfo(SizeType, Loc),
1637 VarDecl::None, VarDecl::None);
1638 IndexVariables.push_back(IterationVar);
1639
1640 // Create a reference to the iteration variable.
1641 Sema::OwningExprResult IterationVarRef
1642 = SemaRef.BuildDeclRefExpr(IterationVar, SizeType, Loc);
1643 assert(!IterationVarRef.isInvalid() &&
1644 "Reference to invented variable cannot fail!");
1645
1646 // Subscript the array with this iteration variable.
1647 CopyCtorArg = SemaRef.CreateBuiltinArraySubscriptExpr(move(CopyCtorArg),
1648 Loc,
1649 move(IterationVarRef),
1650 Loc);
1651 if (CopyCtorArg.isInvalid())
1652 return true;
1653
1654 BaseType = Array->getElementType();
1655 }
1656
1657 // Construct the entity that we will be initializing. For an array, this
1658 // will be first element in the array, which may require several levels
1659 // of array-subscript entities.
1660 llvm::SmallVector<InitializedEntity, 4> Entities;
1661 Entities.reserve(1 + IndexVariables.size());
1662 Entities.push_back(InitializedEntity::InitializeMember(Field));
1663 for (unsigned I = 0, N = IndexVariables.size(); I != N; ++I)
1664 Entities.push_back(InitializedEntity::InitializeElement(SemaRef.Context,
1665 0,
1666 Entities.back()));
1667
1668 // Direct-initialize to use the copy constructor.
1669 InitializationKind InitKind =
1670 InitializationKind::CreateDirect(Loc, SourceLocation(), SourceLocation());
1671
1672 Expr *CopyCtorArgE = CopyCtorArg.takeAs<Expr>();
1673 InitializationSequence InitSeq(SemaRef, Entities.back(), InitKind,
1674 &CopyCtorArgE, 1);
1675
1676 Sema::OwningExprResult MemberInit
1677 = InitSeq.Perform(SemaRef, Entities.back(), InitKind,
1678 Sema::MultiExprArg(SemaRef, (void**)&CopyCtorArgE, 1));
1679 MemberInit = SemaRef.MaybeCreateCXXExprWithTemporaries(move(MemberInit));
1680 if (MemberInit.isInvalid())
1681 return true;
1682
1683 CXXMemberInit
1684 = CXXBaseOrMemberInitializer::Create(SemaRef.Context, Field, Loc, Loc,
1685 MemberInit.takeAs<Expr>(), Loc,
1686 IndexVariables.data(),
1687 IndexVariables.size());
Anders Carlsson1b00e242010-04-23 03:10:23 +00001688 return false;
1689 }
1690
Anders Carlsson423f5d82010-04-23 16:04:08 +00001691 assert(ImplicitInitKind == IIK_Default && "Unhandled implicit init kind!");
1692
Anders Carlsson3c1db572010-04-23 02:15:47 +00001693 QualType FieldBaseElementType =
1694 SemaRef.Context.getBaseElementType(Field->getType());
1695
Anders Carlsson3c1db572010-04-23 02:15:47 +00001696 if (FieldBaseElementType->isRecordType()) {
1697 InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field);
Anders Carlsson423f5d82010-04-23 16:04:08 +00001698 InitializationKind InitKind =
Chandler Carruth9c9286b2010-06-29 23:50:44 +00001699 InitializationKind::CreateDefault(Loc);
Anders Carlsson3c1db572010-04-23 02:15:47 +00001700
1701 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, 0, 0);
1702 Sema::OwningExprResult MemberInit =
1703 InitSeq.Perform(SemaRef, InitEntity, InitKind,
1704 Sema::MultiExprArg(SemaRef, 0, 0));
1705 MemberInit = SemaRef.MaybeCreateCXXExprWithTemporaries(move(MemberInit));
1706 if (MemberInit.isInvalid())
1707 return true;
1708
1709 CXXMemberInit =
1710 new (SemaRef.Context) CXXBaseOrMemberInitializer(SemaRef.Context,
Chandler Carruth9c9286b2010-06-29 23:50:44 +00001711 Field, Loc, Loc,
Anders Carlsson3c1db572010-04-23 02:15:47 +00001712 MemberInit.takeAs<Expr>(),
Chandler Carruth9c9286b2010-06-29 23:50:44 +00001713 Loc);
Anders Carlsson3c1db572010-04-23 02:15:47 +00001714 return false;
1715 }
Anders Carlssondca6be02010-04-23 03:07:47 +00001716
1717 if (FieldBaseElementType->isReferenceType()) {
1718 SemaRef.Diag(Constructor->getLocation(),
1719 diag::err_uninitialized_member_in_ctor)
1720 << (int)Constructor->isImplicit()
1721 << SemaRef.Context.getTagDeclType(Constructor->getParent())
1722 << 0 << Field->getDeclName();
1723 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
1724 return true;
1725 }
1726
1727 if (FieldBaseElementType.isConstQualified()) {
1728 SemaRef.Diag(Constructor->getLocation(),
1729 diag::err_uninitialized_member_in_ctor)
1730 << (int)Constructor->isImplicit()
1731 << SemaRef.Context.getTagDeclType(Constructor->getParent())
1732 << 1 << Field->getDeclName();
1733 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
1734 return true;
1735 }
Anders Carlsson3c1db572010-04-23 02:15:47 +00001736
1737 // Nothing to initialize.
1738 CXXMemberInit = 0;
1739 return false;
1740}
John McCallbc83b3f2010-05-20 23:23:51 +00001741
1742namespace {
1743struct BaseAndFieldInfo {
1744 Sema &S;
1745 CXXConstructorDecl *Ctor;
1746 bool AnyErrorsInInits;
1747 ImplicitInitializerKind IIK;
1748 llvm::DenseMap<const void *, CXXBaseOrMemberInitializer*> AllBaseFields;
1749 llvm::SmallVector<CXXBaseOrMemberInitializer*, 8> AllToInit;
1750
1751 BaseAndFieldInfo(Sema &S, CXXConstructorDecl *Ctor, bool ErrorsInInits)
1752 : S(S), Ctor(Ctor), AnyErrorsInInits(ErrorsInInits) {
1753 // FIXME: Handle implicit move constructors.
1754 if (Ctor->isImplicit() && Ctor->isCopyConstructor())
1755 IIK = IIK_Copy;
1756 else
1757 IIK = IIK_Default;
1758 }
1759};
1760}
1761
Chandler Carruth139e9622010-06-30 02:59:29 +00001762static void RecordFieldInitializer(BaseAndFieldInfo &Info,
1763 FieldDecl *Top, FieldDecl *Field,
1764 CXXBaseOrMemberInitializer *Init) {
1765 // If the member doesn't need to be initialized, Init will still be null.
1766 if (!Init)
1767 return;
1768
1769 Info.AllToInit.push_back(Init);
1770 if (Field != Top) {
1771 Init->setMember(Top);
1772 Init->setAnonUnionMember(Field);
1773 }
1774}
1775
John McCallbc83b3f2010-05-20 23:23:51 +00001776static bool CollectFieldInitializer(BaseAndFieldInfo &Info,
1777 FieldDecl *Top, FieldDecl *Field) {
1778
Chandler Carruth139e9622010-06-30 02:59:29 +00001779 // Overwhelmingly common case: we have a direct initializer for this field.
John McCallbc83b3f2010-05-20 23:23:51 +00001780 if (CXXBaseOrMemberInitializer *Init = Info.AllBaseFields.lookup(Field)) {
Chandler Carruth139e9622010-06-30 02:59:29 +00001781 RecordFieldInitializer(Info, Top, Field, Init);
John McCallbc83b3f2010-05-20 23:23:51 +00001782 return false;
1783 }
1784
1785 if (Info.IIK == IIK_Default && Field->isAnonymousStructOrUnion()) {
1786 const RecordType *FieldClassType = Field->getType()->getAs<RecordType>();
1787 assert(FieldClassType && "anonymous struct/union without record type");
John McCallbc83b3f2010-05-20 23:23:51 +00001788 CXXRecordDecl *FieldClassDecl
1789 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Chandler Carruth139e9622010-06-30 02:59:29 +00001790
1791 // Even though union members never have non-trivial default
1792 // constructions in C++03, we still build member initializers for aggregate
1793 // record types which can be union members, and C++0x allows non-trivial
1794 // default constructors for union members, so we ensure that only one
1795 // member is initialized for these.
1796 if (FieldClassDecl->isUnion()) {
1797 // First check for an explicit initializer for one field.
1798 for (RecordDecl::field_iterator FA = FieldClassDecl->field_begin(),
1799 EA = FieldClassDecl->field_end(); FA != EA; FA++) {
1800 if (CXXBaseOrMemberInitializer *Init = Info.AllBaseFields.lookup(*FA)) {
1801 RecordFieldInitializer(Info, Top, *FA, Init);
1802
1803 // Once we've initialized a field of an anonymous union, the union
1804 // field in the class is also initialized, so exit immediately.
1805 return false;
Argyrios Kyrtzidisa3ae3eb2010-08-16 17:27:13 +00001806 } else if ((*FA)->isAnonymousStructOrUnion()) {
1807 if (CollectFieldInitializer(Info, Top, *FA))
1808 return true;
Chandler Carruth139e9622010-06-30 02:59:29 +00001809 }
1810 }
1811
1812 // Fallthrough and construct a default initializer for the union as
1813 // a whole, which can call its default constructor if such a thing exists
1814 // (C++0x perhaps). FIXME: It's not clear that this is the correct
1815 // behavior going forward with C++0x, when anonymous unions there are
1816 // finalized, we should revisit this.
1817 } else {
1818 // For structs, we simply descend through to initialize all members where
1819 // necessary.
1820 for (RecordDecl::field_iterator FA = FieldClassDecl->field_begin(),
1821 EA = FieldClassDecl->field_end(); FA != EA; FA++) {
1822 if (CollectFieldInitializer(Info, Top, *FA))
1823 return true;
1824 }
1825 }
John McCallbc83b3f2010-05-20 23:23:51 +00001826 }
1827
1828 // Don't try to build an implicit initializer if there were semantic
1829 // errors in any of the initializers (and therefore we might be
1830 // missing some that the user actually wrote).
1831 if (Info.AnyErrorsInInits)
1832 return false;
1833
1834 CXXBaseOrMemberInitializer *Init = 0;
1835 if (BuildImplicitMemberInitializer(Info.S, Info.Ctor, Info.IIK, Field, Init))
1836 return true;
John McCallbc83b3f2010-05-20 23:23:51 +00001837
Chandler Carruth139e9622010-06-30 02:59:29 +00001838 RecordFieldInitializer(Info, Top, Field, Init);
John McCallbc83b3f2010-05-20 23:23:51 +00001839 return false;
1840}
Anders Carlsson3c1db572010-04-23 02:15:47 +00001841
Eli Friedman9cf6b592009-11-09 19:20:36 +00001842bool
Anders Carlsson561f7932009-10-29 15:46:07 +00001843Sema::SetBaseOrMemberInitializers(CXXConstructorDecl *Constructor,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001844 CXXBaseOrMemberInitializer **Initializers,
1845 unsigned NumInitializers,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001846 bool AnyErrors) {
John McCallbb7b6582010-04-10 07:37:23 +00001847 if (Constructor->getDeclContext()->isDependentContext()) {
Anders Carlssondb0a9652010-04-02 06:26:44 +00001848 // Just store the initializers as written, they will be checked during
1849 // instantiation.
1850 if (NumInitializers > 0) {
1851 Constructor->setNumBaseOrMemberInitializers(NumInitializers);
1852 CXXBaseOrMemberInitializer **baseOrMemberInitializers =
1853 new (Context) CXXBaseOrMemberInitializer*[NumInitializers];
1854 memcpy(baseOrMemberInitializers, Initializers,
1855 NumInitializers * sizeof(CXXBaseOrMemberInitializer*));
1856 Constructor->setBaseOrMemberInitializers(baseOrMemberInitializers);
1857 }
1858
1859 return false;
1860 }
1861
John McCallbc83b3f2010-05-20 23:23:51 +00001862 BaseAndFieldInfo Info(*this, Constructor, AnyErrors);
Anders Carlsson1b00e242010-04-23 03:10:23 +00001863
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001864 // We need to build the initializer AST according to order of construction
1865 // and not what user specified in the Initializers list.
Anders Carlsson7b3f2782010-04-02 05:42:15 +00001866 CXXRecordDecl *ClassDecl = Constructor->getParent()->getDefinition();
Douglas Gregorc14922f2010-03-26 22:43:07 +00001867 if (!ClassDecl)
1868 return true;
1869
Eli Friedman9cf6b592009-11-09 19:20:36 +00001870 bool HadError = false;
Mike Stump11289f42009-09-09 15:08:12 +00001871
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001872 for (unsigned i = 0; i < NumInitializers; i++) {
1873 CXXBaseOrMemberInitializer *Member = Initializers[i];
Anders Carlssondb0a9652010-04-02 06:26:44 +00001874
1875 if (Member->isBaseInitializer())
John McCallbc83b3f2010-05-20 23:23:51 +00001876 Info.AllBaseFields[Member->getBaseClass()->getAs<RecordType>()] = Member;
Anders Carlssondb0a9652010-04-02 06:26:44 +00001877 else
John McCallbc83b3f2010-05-20 23:23:51 +00001878 Info.AllBaseFields[Member->getMember()] = Member;
Anders Carlssondb0a9652010-04-02 06:26:44 +00001879 }
1880
Anders Carlsson43c64af2010-04-21 19:52:01 +00001881 // Keep track of the direct virtual bases.
1882 llvm::SmallPtrSet<CXXBaseSpecifier *, 16> DirectVBases;
1883 for (CXXRecordDecl::base_class_iterator I = ClassDecl->bases_begin(),
1884 E = ClassDecl->bases_end(); I != E; ++I) {
1885 if (I->isVirtual())
1886 DirectVBases.insert(I);
1887 }
1888
Anders Carlssondb0a9652010-04-02 06:26:44 +00001889 // Push virtual bases before others.
1890 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
1891 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
1892
1893 if (CXXBaseOrMemberInitializer *Value
John McCallbc83b3f2010-05-20 23:23:51 +00001894 = Info.AllBaseFields.lookup(VBase->getType()->getAs<RecordType>())) {
1895 Info.AllToInit.push_back(Value);
Anders Carlssondb0a9652010-04-02 06:26:44 +00001896 } else if (!AnyErrors) {
Anders Carlsson43c64af2010-04-21 19:52:01 +00001897 bool IsInheritedVirtualBase = !DirectVBases.count(VBase);
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001898 CXXBaseOrMemberInitializer *CXXBaseInit;
John McCallbc83b3f2010-05-20 23:23:51 +00001899 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Anders Carlsson1b00e242010-04-23 03:10:23 +00001900 VBase, IsInheritedVirtualBase,
1901 CXXBaseInit)) {
Anders Carlssondb0a9652010-04-02 06:26:44 +00001902 HadError = true;
1903 continue;
1904 }
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001905
John McCallbc83b3f2010-05-20 23:23:51 +00001906 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001907 }
1908 }
Mike Stump11289f42009-09-09 15:08:12 +00001909
John McCallbc83b3f2010-05-20 23:23:51 +00001910 // Non-virtual bases.
Anders Carlssondb0a9652010-04-02 06:26:44 +00001911 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
1912 E = ClassDecl->bases_end(); Base != E; ++Base) {
1913 // Virtuals are in the virtual base list and already constructed.
1914 if (Base->isVirtual())
1915 continue;
Mike Stump11289f42009-09-09 15:08:12 +00001916
Anders Carlssondb0a9652010-04-02 06:26:44 +00001917 if (CXXBaseOrMemberInitializer *Value
John McCallbc83b3f2010-05-20 23:23:51 +00001918 = Info.AllBaseFields.lookup(Base->getType()->getAs<RecordType>())) {
1919 Info.AllToInit.push_back(Value);
Anders Carlssondb0a9652010-04-02 06:26:44 +00001920 } else if (!AnyErrors) {
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001921 CXXBaseOrMemberInitializer *CXXBaseInit;
John McCallbc83b3f2010-05-20 23:23:51 +00001922 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Anders Carlsson1b00e242010-04-23 03:10:23 +00001923 Base, /*IsInheritedVirtualBase=*/false,
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001924 CXXBaseInit)) {
Anders Carlssondb0a9652010-04-02 06:26:44 +00001925 HadError = true;
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001926 continue;
Anders Carlssondb0a9652010-04-02 06:26:44 +00001927 }
Fariborz Jahanian59a1cd42009-09-03 21:32:41 +00001928
John McCallbc83b3f2010-05-20 23:23:51 +00001929 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001930 }
1931 }
Mike Stump11289f42009-09-09 15:08:12 +00001932
John McCallbc83b3f2010-05-20 23:23:51 +00001933 // Fields.
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001934 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
Fariborz Jahanian1138ba62010-05-26 20:19:07 +00001935 E = ClassDecl->field_end(); Field != E; ++Field) {
1936 if ((*Field)->getType()->isIncompleteArrayType()) {
1937 assert(ClassDecl->hasFlexibleArrayMember() &&
1938 "Incomplete array type is not valid");
1939 continue;
1940 }
John McCallbc83b3f2010-05-20 23:23:51 +00001941 if (CollectFieldInitializer(Info, *Field, *Field))
Anders Carlsson3c1db572010-04-23 02:15:47 +00001942 HadError = true;
Fariborz Jahanian1138ba62010-05-26 20:19:07 +00001943 }
Mike Stump11289f42009-09-09 15:08:12 +00001944
John McCallbc83b3f2010-05-20 23:23:51 +00001945 NumInitializers = Info.AllToInit.size();
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001946 if (NumInitializers > 0) {
1947 Constructor->setNumBaseOrMemberInitializers(NumInitializers);
1948 CXXBaseOrMemberInitializer **baseOrMemberInitializers =
1949 new (Context) CXXBaseOrMemberInitializer*[NumInitializers];
John McCallbc83b3f2010-05-20 23:23:51 +00001950 memcpy(baseOrMemberInitializers, Info.AllToInit.data(),
John McCalla6309952010-03-16 21:39:52 +00001951 NumInitializers * sizeof(CXXBaseOrMemberInitializer*));
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001952 Constructor->setBaseOrMemberInitializers(baseOrMemberInitializers);
Rafael Espindola13327bb2010-03-13 18:12:56 +00001953
John McCalla6309952010-03-16 21:39:52 +00001954 // Constructors implicitly reference the base and member
1955 // destructors.
1956 MarkBaseAndMemberDestructorsReferenced(Constructor->getLocation(),
1957 Constructor->getParent());
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001958 }
Eli Friedman9cf6b592009-11-09 19:20:36 +00001959
1960 return HadError;
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001961}
1962
Eli Friedman952c15d2009-07-21 19:28:10 +00001963static void *GetKeyForTopLevelField(FieldDecl *Field) {
1964 // For anonymous unions, use the class declaration as the key.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001965 if (const RecordType *RT = Field->getType()->getAs<RecordType>()) {
Eli Friedman952c15d2009-07-21 19:28:10 +00001966 if (RT->getDecl()->isAnonymousStructOrUnion())
1967 return static_cast<void *>(RT->getDecl());
1968 }
1969 return static_cast<void *>(Field);
1970}
1971
Anders Carlsson7b3f2782010-04-02 05:42:15 +00001972static void *GetKeyForBase(ASTContext &Context, QualType BaseType) {
1973 return Context.getCanonicalType(BaseType).getTypePtr();
Anders Carlssonbcec05c2009-09-01 06:22:14 +00001974}
1975
Anders Carlsson7b3f2782010-04-02 05:42:15 +00001976static void *GetKeyForMember(ASTContext &Context,
1977 CXXBaseOrMemberInitializer *Member,
Anders Carlssonbcec05c2009-09-01 06:22:14 +00001978 bool MemberMaybeAnon = false) {
Anders Carlssona942dcd2010-03-30 15:39:27 +00001979 if (!Member->isMemberInitializer())
Anders Carlsson7b3f2782010-04-02 05:42:15 +00001980 return GetKeyForBase(Context, QualType(Member->getBaseClass(), 0));
Anders Carlssona942dcd2010-03-30 15:39:27 +00001981
Eli Friedman952c15d2009-07-21 19:28:10 +00001982 // For fields injected into the class via declaration of an anonymous union,
1983 // use its anonymous union class declaration as the unique key.
Anders Carlssona942dcd2010-03-30 15:39:27 +00001984 FieldDecl *Field = Member->getMember();
Mike Stump11289f42009-09-09 15:08:12 +00001985
Anders Carlssona942dcd2010-03-30 15:39:27 +00001986 // After SetBaseOrMemberInitializers call, Field is the anonymous union
1987 // data member of the class. Data member used in the initializer list is
1988 // in AnonUnionMember field.
1989 if (MemberMaybeAnon && Field->isAnonymousStructOrUnion())
1990 Field = Member->getAnonUnionMember();
Anders Carlsson83ac3122010-03-30 16:19:37 +00001991
John McCall23eebd92010-04-10 09:28:51 +00001992 // If the field is a member of an anonymous struct or union, our key
1993 // is the anonymous record decl that's a direct child of the class.
Anders Carlsson83ac3122010-03-30 16:19:37 +00001994 RecordDecl *RD = Field->getParent();
John McCall23eebd92010-04-10 09:28:51 +00001995 if (RD->isAnonymousStructOrUnion()) {
1996 while (true) {
1997 RecordDecl *Parent = cast<RecordDecl>(RD->getDeclContext());
1998 if (Parent->isAnonymousStructOrUnion())
1999 RD = Parent;
2000 else
2001 break;
2002 }
2003
Anders Carlsson83ac3122010-03-30 16:19:37 +00002004 return static_cast<void *>(RD);
John McCall23eebd92010-04-10 09:28:51 +00002005 }
Mike Stump11289f42009-09-09 15:08:12 +00002006
Anders Carlssona942dcd2010-03-30 15:39:27 +00002007 return static_cast<void *>(Field);
Eli Friedman952c15d2009-07-21 19:28:10 +00002008}
2009
Anders Carlssone857b292010-04-02 03:37:03 +00002010static void
2011DiagnoseBaseOrMemInitializerOrder(Sema &SemaRef,
Anders Carlsson96b8fc62010-04-02 03:38:04 +00002012 const CXXConstructorDecl *Constructor,
John McCallbb7b6582010-04-10 07:37:23 +00002013 CXXBaseOrMemberInitializer **Inits,
2014 unsigned NumInits) {
2015 if (Constructor->getDeclContext()->isDependentContext())
Anders Carlsson35d6e3e2009-08-27 05:57:30 +00002016 return;
Mike Stump11289f42009-09-09 15:08:12 +00002017
John McCallbb7b6582010-04-10 07:37:23 +00002018 if (SemaRef.Diags.getDiagnosticLevel(diag::warn_initializer_out_of_order)
2019 == Diagnostic::Ignored)
Anders Carlssone0eebb32009-08-27 05:45:01 +00002020 return;
Anders Carlssone857b292010-04-02 03:37:03 +00002021
John McCallbb7b6582010-04-10 07:37:23 +00002022 // Build the list of bases and members in the order that they'll
2023 // actually be initialized. The explicit initializers should be in
2024 // this same order but may be missing things.
2025 llvm::SmallVector<const void*, 32> IdealInitKeys;
Mike Stump11289f42009-09-09 15:08:12 +00002026
Anders Carlsson96b8fc62010-04-02 03:38:04 +00002027 const CXXRecordDecl *ClassDecl = Constructor->getParent();
2028
John McCallbb7b6582010-04-10 07:37:23 +00002029 // 1. Virtual bases.
Anders Carlsson96b8fc62010-04-02 03:38:04 +00002030 for (CXXRecordDecl::base_class_const_iterator VBase =
Anders Carlssone0eebb32009-08-27 05:45:01 +00002031 ClassDecl->vbases_begin(),
2032 E = ClassDecl->vbases_end(); VBase != E; ++VBase)
John McCallbb7b6582010-04-10 07:37:23 +00002033 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, VBase->getType()));
Mike Stump11289f42009-09-09 15:08:12 +00002034
John McCallbb7b6582010-04-10 07:37:23 +00002035 // 2. Non-virtual bases.
Anders Carlsson96b8fc62010-04-02 03:38:04 +00002036 for (CXXRecordDecl::base_class_const_iterator Base = ClassDecl->bases_begin(),
Anders Carlssone0eebb32009-08-27 05:45:01 +00002037 E = ClassDecl->bases_end(); Base != E; ++Base) {
Anders Carlssone0eebb32009-08-27 05:45:01 +00002038 if (Base->isVirtual())
2039 continue;
John McCallbb7b6582010-04-10 07:37:23 +00002040 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, Base->getType()));
Anders Carlssone0eebb32009-08-27 05:45:01 +00002041 }
Mike Stump11289f42009-09-09 15:08:12 +00002042
John McCallbb7b6582010-04-10 07:37:23 +00002043 // 3. Direct fields.
Anders Carlssone0eebb32009-08-27 05:45:01 +00002044 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
2045 E = ClassDecl->field_end(); Field != E; ++Field)
John McCallbb7b6582010-04-10 07:37:23 +00002046 IdealInitKeys.push_back(GetKeyForTopLevelField(*Field));
Mike Stump11289f42009-09-09 15:08:12 +00002047
John McCallbb7b6582010-04-10 07:37:23 +00002048 unsigned NumIdealInits = IdealInitKeys.size();
2049 unsigned IdealIndex = 0;
Eli Friedman952c15d2009-07-21 19:28:10 +00002050
John McCallbb7b6582010-04-10 07:37:23 +00002051 CXXBaseOrMemberInitializer *PrevInit = 0;
2052 for (unsigned InitIndex = 0; InitIndex != NumInits; ++InitIndex) {
2053 CXXBaseOrMemberInitializer *Init = Inits[InitIndex];
2054 void *InitKey = GetKeyForMember(SemaRef.Context, Init, true);
2055
2056 // Scan forward to try to find this initializer in the idealized
2057 // initializers list.
2058 for (; IdealIndex != NumIdealInits; ++IdealIndex)
2059 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlssone0eebb32009-08-27 05:45:01 +00002060 break;
John McCallbb7b6582010-04-10 07:37:23 +00002061
2062 // If we didn't find this initializer, it must be because we
2063 // scanned past it on a previous iteration. That can only
2064 // happen if we're out of order; emit a warning.
Douglas Gregoraabdfcb2010-05-20 23:49:34 +00002065 if (IdealIndex == NumIdealInits && PrevInit) {
John McCallbb7b6582010-04-10 07:37:23 +00002066 Sema::SemaDiagnosticBuilder D =
2067 SemaRef.Diag(PrevInit->getSourceLocation(),
2068 diag::warn_initializer_out_of_order);
2069
2070 if (PrevInit->isMemberInitializer())
2071 D << 0 << PrevInit->getMember()->getDeclName();
2072 else
2073 D << 1 << PrevInit->getBaseClassInfo()->getType();
2074
2075 if (Init->isMemberInitializer())
2076 D << 0 << Init->getMember()->getDeclName();
2077 else
2078 D << 1 << Init->getBaseClassInfo()->getType();
2079
2080 // Move back to the initializer's location in the ideal list.
2081 for (IdealIndex = 0; IdealIndex != NumIdealInits; ++IdealIndex)
2082 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlssone0eebb32009-08-27 05:45:01 +00002083 break;
John McCallbb7b6582010-04-10 07:37:23 +00002084
2085 assert(IdealIndex != NumIdealInits &&
2086 "initializer not found in initializer list");
Fariborz Jahanian341583c2009-07-09 19:59:47 +00002087 }
John McCallbb7b6582010-04-10 07:37:23 +00002088
2089 PrevInit = Init;
Fariborz Jahanian341583c2009-07-09 19:59:47 +00002090 }
Anders Carlsson75fdaa42009-03-25 02:58:17 +00002091}
2092
John McCall23eebd92010-04-10 09:28:51 +00002093namespace {
2094bool CheckRedundantInit(Sema &S,
2095 CXXBaseOrMemberInitializer *Init,
2096 CXXBaseOrMemberInitializer *&PrevInit) {
2097 if (!PrevInit) {
2098 PrevInit = Init;
2099 return false;
2100 }
2101
2102 if (FieldDecl *Field = Init->getMember())
2103 S.Diag(Init->getSourceLocation(),
2104 diag::err_multiple_mem_initialization)
2105 << Field->getDeclName()
2106 << Init->getSourceRange();
2107 else {
2108 Type *BaseClass = Init->getBaseClass();
2109 assert(BaseClass && "neither field nor base");
2110 S.Diag(Init->getSourceLocation(),
2111 diag::err_multiple_base_initialization)
2112 << QualType(BaseClass, 0)
2113 << Init->getSourceRange();
2114 }
2115 S.Diag(PrevInit->getSourceLocation(), diag::note_previous_initializer)
2116 << 0 << PrevInit->getSourceRange();
2117
2118 return true;
2119}
2120
2121typedef std::pair<NamedDecl *, CXXBaseOrMemberInitializer *> UnionEntry;
2122typedef llvm::DenseMap<RecordDecl*, UnionEntry> RedundantUnionMap;
2123
2124bool CheckRedundantUnionInit(Sema &S,
2125 CXXBaseOrMemberInitializer *Init,
2126 RedundantUnionMap &Unions) {
2127 FieldDecl *Field = Init->getMember();
2128 RecordDecl *Parent = Field->getParent();
2129 if (!Parent->isAnonymousStructOrUnion())
2130 return false;
2131
2132 NamedDecl *Child = Field;
2133 do {
2134 if (Parent->isUnion()) {
2135 UnionEntry &En = Unions[Parent];
2136 if (En.first && En.first != Child) {
2137 S.Diag(Init->getSourceLocation(),
2138 diag::err_multiple_mem_union_initialization)
2139 << Field->getDeclName()
2140 << Init->getSourceRange();
2141 S.Diag(En.second->getSourceLocation(), diag::note_previous_initializer)
2142 << 0 << En.second->getSourceRange();
2143 return true;
2144 } else if (!En.first) {
2145 En.first = Child;
2146 En.second = Init;
2147 }
2148 }
2149
2150 Child = Parent;
2151 Parent = cast<RecordDecl>(Parent->getDeclContext());
2152 } while (Parent->isAnonymousStructOrUnion());
2153
2154 return false;
2155}
2156}
2157
Anders Carlssone857b292010-04-02 03:37:03 +00002158/// ActOnMemInitializers - Handle the member initializers for a constructor.
2159void Sema::ActOnMemInitializers(DeclPtrTy ConstructorDecl,
2160 SourceLocation ColonLoc,
2161 MemInitTy **meminits, unsigned NumMemInits,
2162 bool AnyErrors) {
2163 if (!ConstructorDecl)
2164 return;
2165
2166 AdjustDeclIfTemplate(ConstructorDecl);
2167
2168 CXXConstructorDecl *Constructor
2169 = dyn_cast<CXXConstructorDecl>(ConstructorDecl.getAs<Decl>());
2170
2171 if (!Constructor) {
2172 Diag(ColonLoc, diag::err_only_constructors_take_base_inits);
2173 return;
2174 }
2175
2176 CXXBaseOrMemberInitializer **MemInits =
2177 reinterpret_cast<CXXBaseOrMemberInitializer **>(meminits);
John McCall23eebd92010-04-10 09:28:51 +00002178
2179 // Mapping for the duplicate initializers check.
2180 // For member initializers, this is keyed with a FieldDecl*.
2181 // For base initializers, this is keyed with a Type*.
Anders Carlsson7b3f2782010-04-02 05:42:15 +00002182 llvm::DenseMap<void*, CXXBaseOrMemberInitializer *> Members;
John McCall23eebd92010-04-10 09:28:51 +00002183
2184 // Mapping for the inconsistent anonymous-union initializers check.
2185 RedundantUnionMap MemberUnions;
2186
Anders Carlsson7b3f2782010-04-02 05:42:15 +00002187 bool HadError = false;
2188 for (unsigned i = 0; i < NumMemInits; i++) {
John McCall23eebd92010-04-10 09:28:51 +00002189 CXXBaseOrMemberInitializer *Init = MemInits[i];
Anders Carlssone857b292010-04-02 03:37:03 +00002190
Abramo Bagnara341d7832010-05-26 18:09:23 +00002191 // Set the source order index.
2192 Init->setSourceOrder(i);
2193
John McCall23eebd92010-04-10 09:28:51 +00002194 if (Init->isMemberInitializer()) {
2195 FieldDecl *Field = Init->getMember();
2196 if (CheckRedundantInit(*this, Init, Members[Field]) ||
2197 CheckRedundantUnionInit(*this, Init, MemberUnions))
2198 HadError = true;
2199 } else {
2200 void *Key = GetKeyForBase(Context, QualType(Init->getBaseClass(), 0));
2201 if (CheckRedundantInit(*this, Init, Members[Key]))
2202 HadError = true;
Anders Carlssone857b292010-04-02 03:37:03 +00002203 }
Anders Carlssone857b292010-04-02 03:37:03 +00002204 }
2205
Anders Carlsson7b3f2782010-04-02 05:42:15 +00002206 if (HadError)
2207 return;
2208
Anders Carlssone857b292010-04-02 03:37:03 +00002209 DiagnoseBaseOrMemInitializerOrder(*this, Constructor, MemInits, NumMemInits);
Anders Carlsson4c8cb012010-04-02 03:43:34 +00002210
2211 SetBaseOrMemberInitializers(Constructor, MemInits, NumMemInits, AnyErrors);
Anders Carlssone857b292010-04-02 03:37:03 +00002212}
2213
Fariborz Jahanian37d06562009-09-03 23:18:17 +00002214void
John McCalla6309952010-03-16 21:39:52 +00002215Sema::MarkBaseAndMemberDestructorsReferenced(SourceLocation Location,
2216 CXXRecordDecl *ClassDecl) {
2217 // Ignore dependent contexts.
2218 if (ClassDecl->isDependentContext())
Anders Carlssondee9a302009-11-17 04:44:12 +00002219 return;
John McCall1064d7e2010-03-16 05:22:47 +00002220
2221 // FIXME: all the access-control diagnostics are positioned on the
2222 // field/base declaration. That's probably good; that said, the
2223 // user might reasonably want to know why the destructor is being
2224 // emitted, and we currently don't say.
Anders Carlssondee9a302009-11-17 04:44:12 +00002225
Anders Carlssondee9a302009-11-17 04:44:12 +00002226 // Non-static data members.
2227 for (CXXRecordDecl::field_iterator I = ClassDecl->field_begin(),
2228 E = ClassDecl->field_end(); I != E; ++I) {
2229 FieldDecl *Field = *I;
Fariborz Jahanian16f94c62010-05-17 18:15:18 +00002230 if (Field->isInvalidDecl())
2231 continue;
Anders Carlssondee9a302009-11-17 04:44:12 +00002232 QualType FieldType = Context.getBaseElementType(Field->getType());
2233
2234 const RecordType* RT = FieldType->getAs<RecordType>();
2235 if (!RT)
2236 continue;
2237
2238 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl());
2239 if (FieldClassDecl->hasTrivialDestructor())
2240 continue;
2241
Douglas Gregore71edda2010-07-01 22:47:18 +00002242 CXXDestructorDecl *Dtor = LookupDestructor(FieldClassDecl);
John McCall1064d7e2010-03-16 05:22:47 +00002243 CheckDestructorAccess(Field->getLocation(), Dtor,
Douglas Gregor89336232010-03-29 23:34:08 +00002244 PDiag(diag::err_access_dtor_field)
John McCall1064d7e2010-03-16 05:22:47 +00002245 << Field->getDeclName()
2246 << FieldType);
2247
John McCalla6309952010-03-16 21:39:52 +00002248 MarkDeclarationReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Anders Carlssondee9a302009-11-17 04:44:12 +00002249 }
2250
John McCall1064d7e2010-03-16 05:22:47 +00002251 llvm::SmallPtrSet<const RecordType *, 8> DirectVirtualBases;
2252
Anders Carlssondee9a302009-11-17 04:44:12 +00002253 // Bases.
2254 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
2255 E = ClassDecl->bases_end(); Base != E; ++Base) {
John McCall1064d7e2010-03-16 05:22:47 +00002256 // Bases are always records in a well-formed non-dependent class.
2257 const RecordType *RT = Base->getType()->getAs<RecordType>();
2258
2259 // Remember direct virtual bases.
Anders Carlssondee9a302009-11-17 04:44:12 +00002260 if (Base->isVirtual())
John McCall1064d7e2010-03-16 05:22:47 +00002261 DirectVirtualBases.insert(RT);
Anders Carlssondee9a302009-11-17 04:44:12 +00002262
2263 // Ignore trivial destructors.
John McCall1064d7e2010-03-16 05:22:47 +00002264 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Anders Carlssondee9a302009-11-17 04:44:12 +00002265 if (BaseClassDecl->hasTrivialDestructor())
2266 continue;
John McCall1064d7e2010-03-16 05:22:47 +00002267
Douglas Gregore71edda2010-07-01 22:47:18 +00002268 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
John McCall1064d7e2010-03-16 05:22:47 +00002269
2270 // FIXME: caret should be on the start of the class name
2271 CheckDestructorAccess(Base->getSourceRange().getBegin(), Dtor,
Douglas Gregor89336232010-03-29 23:34:08 +00002272 PDiag(diag::err_access_dtor_base)
John McCall1064d7e2010-03-16 05:22:47 +00002273 << Base->getType()
2274 << Base->getSourceRange());
Anders Carlssondee9a302009-11-17 04:44:12 +00002275
John McCalla6309952010-03-16 21:39:52 +00002276 MarkDeclarationReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Anders Carlssondee9a302009-11-17 04:44:12 +00002277 }
2278
2279 // Virtual bases.
Fariborz Jahanian37d06562009-09-03 23:18:17 +00002280 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
2281 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
John McCall1064d7e2010-03-16 05:22:47 +00002282
2283 // Bases are always records in a well-formed non-dependent class.
2284 const RecordType *RT = VBase->getType()->getAs<RecordType>();
2285
2286 // Ignore direct virtual bases.
2287 if (DirectVirtualBases.count(RT))
2288 continue;
2289
Anders Carlssondee9a302009-11-17 04:44:12 +00002290 // Ignore trivial destructors.
John McCall1064d7e2010-03-16 05:22:47 +00002291 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Fariborz Jahanian37d06562009-09-03 23:18:17 +00002292 if (BaseClassDecl->hasTrivialDestructor())
2293 continue;
John McCall1064d7e2010-03-16 05:22:47 +00002294
Douglas Gregore71edda2010-07-01 22:47:18 +00002295 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
John McCall1064d7e2010-03-16 05:22:47 +00002296 CheckDestructorAccess(ClassDecl->getLocation(), Dtor,
Douglas Gregor89336232010-03-29 23:34:08 +00002297 PDiag(diag::err_access_dtor_vbase)
John McCall1064d7e2010-03-16 05:22:47 +00002298 << VBase->getType());
2299
John McCalla6309952010-03-16 21:39:52 +00002300 MarkDeclarationReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Fariborz Jahanian37d06562009-09-03 23:18:17 +00002301 }
2302}
2303
Fariborz Jahanianaee31ac2009-07-21 22:36:06 +00002304void Sema::ActOnDefaultCtorInitializers(DeclPtrTy CDtorDecl) {
Fariborz Jahanian16094c22009-07-15 22:34:08 +00002305 if (!CDtorDecl)
Fariborz Jahanian49c81792009-07-14 18:24:21 +00002306 return;
Mike Stump11289f42009-09-09 15:08:12 +00002307
Mike Stump11289f42009-09-09 15:08:12 +00002308 if (CXXConstructorDecl *Constructor
Fariborz Jahanian16094c22009-07-15 22:34:08 +00002309 = dyn_cast<CXXConstructorDecl>(CDtorDecl.getAs<Decl>()))
Anders Carlsson4c8cb012010-04-02 03:43:34 +00002310 SetBaseOrMemberInitializers(Constructor, 0, 0, /*AnyErrors=*/false);
Fariborz Jahanian49c81792009-07-14 18:24:21 +00002311}
2312
Mike Stump11289f42009-09-09 15:08:12 +00002313bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
Anders Carlssonb57738b2009-03-24 17:23:42 +00002314 unsigned DiagID, AbstractDiagSelID SelID,
2315 const CXXRecordDecl *CurrentRD) {
Anders Carlssoneabf7702009-08-27 00:13:57 +00002316 if (SelID == -1)
2317 return RequireNonAbstractType(Loc, T,
2318 PDiag(DiagID), CurrentRD);
2319 else
2320 return RequireNonAbstractType(Loc, T,
2321 PDiag(DiagID) << SelID, CurrentRD);
Mike Stump11289f42009-09-09 15:08:12 +00002322}
2323
Anders Carlssoneabf7702009-08-27 00:13:57 +00002324bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
2325 const PartialDiagnostic &PD,
2326 const CXXRecordDecl *CurrentRD) {
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002327 if (!getLangOptions().CPlusPlus)
2328 return false;
Mike Stump11289f42009-09-09 15:08:12 +00002329
Anders Carlssoneb0c5322009-03-23 19:10:31 +00002330 if (const ArrayType *AT = Context.getAsArrayType(T))
Anders Carlssoneabf7702009-08-27 00:13:57 +00002331 return RequireNonAbstractType(Loc, AT->getElementType(), PD,
Anders Carlssonb57738b2009-03-24 17:23:42 +00002332 CurrentRD);
Mike Stump11289f42009-09-09 15:08:12 +00002333
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002334 if (const PointerType *PT = T->getAs<PointerType>()) {
Anders Carlsson8f0d2182009-03-24 01:46:45 +00002335 // Find the innermost pointer type.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002336 while (const PointerType *T = PT->getPointeeType()->getAs<PointerType>())
Anders Carlsson8f0d2182009-03-24 01:46:45 +00002337 PT = T;
Mike Stump11289f42009-09-09 15:08:12 +00002338
Anders Carlsson8f0d2182009-03-24 01:46:45 +00002339 if (const ArrayType *AT = Context.getAsArrayType(PT->getPointeeType()))
Anders Carlssoneabf7702009-08-27 00:13:57 +00002340 return RequireNonAbstractType(Loc, AT->getElementType(), PD, CurrentRD);
Anders Carlsson8f0d2182009-03-24 01:46:45 +00002341 }
Mike Stump11289f42009-09-09 15:08:12 +00002342
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002343 const RecordType *RT = T->getAs<RecordType>();
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002344 if (!RT)
2345 return false;
Mike Stump11289f42009-09-09 15:08:12 +00002346
John McCall67da35c2010-02-04 22:26:26 +00002347 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002348
Anders Carlssonb57738b2009-03-24 17:23:42 +00002349 if (CurrentRD && CurrentRD != RD)
2350 return false;
Mike Stump11289f42009-09-09 15:08:12 +00002351
John McCall67da35c2010-02-04 22:26:26 +00002352 // FIXME: is this reasonable? It matches current behavior, but....
Douglas Gregor0a5a2212010-02-11 01:04:33 +00002353 if (!RD->getDefinition())
John McCall67da35c2010-02-04 22:26:26 +00002354 return false;
2355
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002356 if (!RD->isAbstract())
2357 return false;
Mike Stump11289f42009-09-09 15:08:12 +00002358
Anders Carlssoneabf7702009-08-27 00:13:57 +00002359 Diag(Loc, PD) << RD->getDeclName();
Mike Stump11289f42009-09-09 15:08:12 +00002360
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002361 // Check if we've already emitted the list of pure virtual functions for this
2362 // class.
2363 if (PureVirtualClassDiagSet && PureVirtualClassDiagSet->count(RD))
2364 return true;
Mike Stump11289f42009-09-09 15:08:12 +00002365
Douglas Gregor4165bd62010-03-23 23:47:56 +00002366 CXXFinalOverriderMap FinalOverriders;
2367 RD->getFinalOverriders(FinalOverriders);
Mike Stump11289f42009-09-09 15:08:12 +00002368
Anders Carlssona2f74f32010-06-03 01:00:02 +00002369 // Keep a set of seen pure methods so we won't diagnose the same method
2370 // more than once.
2371 llvm::SmallPtrSet<const CXXMethodDecl *, 8> SeenPureMethods;
2372
Douglas Gregor4165bd62010-03-23 23:47:56 +00002373 for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(),
2374 MEnd = FinalOverriders.end();
2375 M != MEnd;
2376 ++M) {
2377 for (OverridingMethods::iterator SO = M->second.begin(),
2378 SOEnd = M->second.end();
2379 SO != SOEnd; ++SO) {
2380 // C++ [class.abstract]p4:
2381 // A class is abstract if it contains or inherits at least one
2382 // pure virtual function for which the final overrider is pure
2383 // virtual.
Mike Stump11289f42009-09-09 15:08:12 +00002384
Douglas Gregor4165bd62010-03-23 23:47:56 +00002385 //
2386 if (SO->second.size() != 1)
2387 continue;
2388
2389 if (!SO->second.front().Method->isPure())
2390 continue;
2391
Anders Carlssona2f74f32010-06-03 01:00:02 +00002392 if (!SeenPureMethods.insert(SO->second.front().Method))
2393 continue;
2394
Douglas Gregor4165bd62010-03-23 23:47:56 +00002395 Diag(SO->second.front().Method->getLocation(),
2396 diag::note_pure_virtual_function)
2397 << SO->second.front().Method->getDeclName();
2398 }
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002399 }
2400
2401 if (!PureVirtualClassDiagSet)
2402 PureVirtualClassDiagSet.reset(new RecordDeclSetTy);
2403 PureVirtualClassDiagSet->insert(RD);
Mike Stump11289f42009-09-09 15:08:12 +00002404
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002405 return true;
2406}
2407
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002408namespace {
Benjamin Kramer337e3a52009-11-28 19:45:26 +00002409 class AbstractClassUsageDiagnoser
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002410 : public DeclVisitor<AbstractClassUsageDiagnoser, bool> {
2411 Sema &SemaRef;
2412 CXXRecordDecl *AbstractClass;
Mike Stump11289f42009-09-09 15:08:12 +00002413
Anders Carlssonb57738b2009-03-24 17:23:42 +00002414 bool VisitDeclContext(const DeclContext *DC) {
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002415 bool Invalid = false;
2416
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00002417 for (CXXRecordDecl::decl_iterator I = DC->decls_begin(),
2418 E = DC->decls_end(); I != E; ++I)
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002419 Invalid |= Visit(*I);
Anders Carlssonb57738b2009-03-24 17:23:42 +00002420
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002421 return Invalid;
2422 }
Mike Stump11289f42009-09-09 15:08:12 +00002423
Anders Carlssonb57738b2009-03-24 17:23:42 +00002424 public:
2425 AbstractClassUsageDiagnoser(Sema& SemaRef, CXXRecordDecl *ac)
2426 : SemaRef(SemaRef), AbstractClass(ac) {
2427 Visit(SemaRef.Context.getTranslationUnitDecl());
2428 }
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002429
Anders Carlssonb57738b2009-03-24 17:23:42 +00002430 bool VisitFunctionDecl(const FunctionDecl *FD) {
2431 if (FD->isThisDeclarationADefinition()) {
2432 // No need to do the check if we're in a definition, because it requires
2433 // that the return/param types are complete.
Mike Stump11289f42009-09-09 15:08:12 +00002434 // because that requires
Anders Carlssonb57738b2009-03-24 17:23:42 +00002435 return VisitDeclContext(FD);
2436 }
Mike Stump11289f42009-09-09 15:08:12 +00002437
Anders Carlssonb57738b2009-03-24 17:23:42 +00002438 // Check the return type.
John McCall9dd450b2009-09-21 23:43:11 +00002439 QualType RTy = FD->getType()->getAs<FunctionType>()->getResultType();
Mike Stump11289f42009-09-09 15:08:12 +00002440 bool Invalid =
Anders Carlssonb57738b2009-03-24 17:23:42 +00002441 SemaRef.RequireNonAbstractType(FD->getLocation(), RTy,
2442 diag::err_abstract_type_in_decl,
2443 Sema::AbstractReturnType,
2444 AbstractClass);
2445
Mike Stump11289f42009-09-09 15:08:12 +00002446 for (FunctionDecl::param_const_iterator I = FD->param_begin(),
Anders Carlssonb57738b2009-03-24 17:23:42 +00002447 E = FD->param_end(); I != E; ++I) {
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002448 const ParmVarDecl *VD = *I;
Mike Stump11289f42009-09-09 15:08:12 +00002449 Invalid |=
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002450 SemaRef.RequireNonAbstractType(VD->getLocation(),
Mike Stump11289f42009-09-09 15:08:12 +00002451 VD->getOriginalType(),
2452 diag::err_abstract_type_in_decl,
Anders Carlssonb57738b2009-03-24 17:23:42 +00002453 Sema::AbstractParamType,
2454 AbstractClass);
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002455 }
2456
2457 return Invalid;
2458 }
Mike Stump11289f42009-09-09 15:08:12 +00002459
Anders Carlssonb57738b2009-03-24 17:23:42 +00002460 bool VisitDecl(const Decl* D) {
2461 if (const DeclContext *DC = dyn_cast<DeclContext>(D))
2462 return VisitDeclContext(DC);
Mike Stump11289f42009-09-09 15:08:12 +00002463
Anders Carlssonb57738b2009-03-24 17:23:42 +00002464 return false;
2465 }
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002466 };
2467}
2468
Douglas Gregorc99f1552009-12-03 18:33:45 +00002469/// \brief Perform semantic checks on a class definition that has been
2470/// completing, introducing implicitly-declared members, checking for
2471/// abstract types, etc.
Douglas Gregor0be31a22010-07-02 17:43:08 +00002472void Sema::CheckCompletedCXXClass(CXXRecordDecl *Record) {
Douglas Gregorc99f1552009-12-03 18:33:45 +00002473 if (!Record || Record->isInvalidDecl())
2474 return;
2475
Eli Friedman5dd02a0f2009-12-16 20:00:27 +00002476 if (!Record->isDependentType())
Douglas Gregor0be31a22010-07-02 17:43:08 +00002477 AddImplicitlyDeclaredMembersToClass(Record);
Douglas Gregor0a0f04d2010-01-06 04:44:19 +00002478
Eli Friedman5dd02a0f2009-12-16 20:00:27 +00002479 if (Record->isInvalidDecl())
2480 return;
2481
John McCall2cb94162010-01-28 07:38:46 +00002482 // Set access bits correctly on the directly-declared conversions.
2483 UnresolvedSetImpl *Convs = Record->getConversionFunctions();
2484 for (UnresolvedSetIterator I = Convs->begin(), E = Convs->end(); I != E; ++I)
2485 Convs->setAccess(I, (*I)->getAccess());
2486
Douglas Gregor4165bd62010-03-23 23:47:56 +00002487 // Determine whether we need to check for final overriders. We do
2488 // this either when there are virtual base classes (in which case we
2489 // may end up finding multiple final overriders for a given virtual
2490 // function) or any of the base classes is abstract (in which case
2491 // we might detect that this class is abstract).
2492 bool CheckFinalOverriders = false;
2493 if (Record->isPolymorphic() && !Record->isInvalidDecl() &&
2494 !Record->isDependentType()) {
2495 if (Record->getNumVBases())
2496 CheckFinalOverriders = true;
2497 else if (!Record->isAbstract()) {
2498 for (CXXRecordDecl::base_class_const_iterator B = Record->bases_begin(),
2499 BEnd = Record->bases_end();
2500 B != BEnd; ++B) {
2501 CXXRecordDecl *BaseDecl
2502 = cast<CXXRecordDecl>(B->getType()->getAs<RecordType>()->getDecl());
2503 if (BaseDecl->isAbstract()) {
2504 CheckFinalOverriders = true;
2505 break;
2506 }
2507 }
2508 }
Douglas Gregorc99f1552009-12-03 18:33:45 +00002509 }
2510
Douglas Gregor4165bd62010-03-23 23:47:56 +00002511 if (CheckFinalOverriders) {
2512 CXXFinalOverriderMap FinalOverriders;
2513 Record->getFinalOverriders(FinalOverriders);
2514
2515 for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(),
2516 MEnd = FinalOverriders.end();
2517 M != MEnd; ++M) {
2518 for (OverridingMethods::iterator SO = M->second.begin(),
2519 SOEnd = M->second.end();
2520 SO != SOEnd; ++SO) {
2521 assert(SO->second.size() > 0 &&
2522 "All virtual functions have overridding virtual functions");
2523 if (SO->second.size() == 1) {
2524 // C++ [class.abstract]p4:
2525 // A class is abstract if it contains or inherits at least one
2526 // pure virtual function for which the final overrider is pure
2527 // virtual.
2528 if (SO->second.front().Method->isPure())
2529 Record->setAbstract(true);
2530 continue;
2531 }
2532
2533 // C++ [class.virtual]p2:
2534 // In a derived class, if a virtual member function of a base
2535 // class subobject has more than one final overrider the
2536 // program is ill-formed.
2537 Diag(Record->getLocation(), diag::err_multiple_final_overriders)
2538 << (NamedDecl *)M->first << Record;
2539 Diag(M->first->getLocation(), diag::note_overridden_virtual_function);
2540 for (OverridingMethods::overriding_iterator OM = SO->second.begin(),
2541 OMEnd = SO->second.end();
2542 OM != OMEnd; ++OM)
2543 Diag(OM->Method->getLocation(), diag::note_final_overrider)
2544 << (NamedDecl *)M->first << OM->Method->getParent();
2545
2546 Record->setInvalidDecl();
2547 }
2548 }
2549 }
2550
2551 if (Record->isAbstract() && !Record->isInvalidDecl())
Douglas Gregorc99f1552009-12-03 18:33:45 +00002552 (void)AbstractClassUsageDiagnoser(*this, Record);
Douglas Gregor454a5b62010-04-15 00:00:53 +00002553
2554 // If this is not an aggregate type and has no user-declared constructor,
2555 // complain about any non-static data members of reference or const scalar
2556 // type, since they will never get initializers.
2557 if (!Record->isInvalidDecl() && !Record->isDependentType() &&
2558 !Record->isAggregate() && !Record->hasUserDeclaredConstructor()) {
2559 bool Complained = false;
2560 for (RecordDecl::field_iterator F = Record->field_begin(),
2561 FEnd = Record->field_end();
2562 F != FEnd; ++F) {
2563 if (F->getType()->isReferenceType() ||
Benjamin Kramer659d7fc2010-04-16 17:43:15 +00002564 (F->getType().isConstQualified() && F->getType()->isScalarType())) {
Douglas Gregor454a5b62010-04-15 00:00:53 +00002565 if (!Complained) {
2566 Diag(Record->getLocation(), diag::warn_no_constructor_for_refconst)
2567 << Record->getTagKind() << Record;
2568 Complained = true;
2569 }
2570
2571 Diag(F->getLocation(), diag::note_refconst_member_not_initialized)
2572 << F->getType()->isReferenceType()
2573 << F->getDeclName();
2574 }
2575 }
2576 }
Douglas Gregor88d292c2010-05-13 16:44:06 +00002577
2578 if (Record->isDynamicClass())
2579 DynamicClasses.push_back(Record);
Douglas Gregorc99f1552009-12-03 18:33:45 +00002580}
2581
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00002582void Sema::ActOnFinishCXXMemberSpecification(Scope* S, SourceLocation RLoc,
Chris Lattner83f095c2009-03-28 19:18:32 +00002583 DeclPtrTy TagDecl,
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00002584 SourceLocation LBrac,
Douglas Gregorc48a10d2010-03-29 14:42:08 +00002585 SourceLocation RBrac,
2586 AttributeList *AttrList) {
Douglas Gregor71a57182009-06-22 23:20:33 +00002587 if (!TagDecl)
2588 return;
Mike Stump11289f42009-09-09 15:08:12 +00002589
Douglas Gregorc9f9b862009-05-11 19:58:34 +00002590 AdjustDeclIfTemplate(TagDecl);
Douglas Gregorc99f1552009-12-03 18:33:45 +00002591
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00002592 ActOnFields(S, RLoc, TagDecl,
Chris Lattner83f095c2009-03-28 19:18:32 +00002593 (DeclPtrTy*)FieldCollector->getCurFields(),
Douglas Gregorc48a10d2010-03-29 14:42:08 +00002594 FieldCollector->getCurNumFields(), LBrac, RBrac, AttrList);
Douglas Gregor463421d2009-03-03 04:44:36 +00002595
Douglas Gregor0be31a22010-07-02 17:43:08 +00002596 CheckCompletedCXXClass(
2597 dyn_cast_or_null<CXXRecordDecl>(TagDecl.getAs<Decl>()));
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00002598}
2599
Douglas Gregor95755162010-07-01 05:10:53 +00002600namespace {
2601 /// \brief Helper class that collects exception specifications for
2602 /// implicitly-declared special member functions.
2603 class ImplicitExceptionSpecification {
2604 ASTContext &Context;
2605 bool AllowsAllExceptions;
2606 llvm::SmallPtrSet<CanQualType, 4> ExceptionsSeen;
2607 llvm::SmallVector<QualType, 4> Exceptions;
2608
2609 public:
2610 explicit ImplicitExceptionSpecification(ASTContext &Context)
2611 : Context(Context), AllowsAllExceptions(false) { }
2612
2613 /// \brief Whether the special member function should have any
2614 /// exception specification at all.
2615 bool hasExceptionSpecification() const {
2616 return !AllowsAllExceptions;
2617 }
2618
2619 /// \brief Whether the special member function should have a
2620 /// throw(...) exception specification (a Microsoft extension).
2621 bool hasAnyExceptionSpecification() const {
2622 return false;
2623 }
2624
2625 /// \brief The number of exceptions in the exception specification.
2626 unsigned size() const { return Exceptions.size(); }
2627
2628 /// \brief The set of exceptions in the exception specification.
2629 const QualType *data() const { return Exceptions.data(); }
2630
2631 /// \brief Note that
2632 void CalledDecl(CXXMethodDecl *Method) {
2633 // If we already know that we allow all exceptions, do nothing.
Douglas Gregor3311ed42010-07-01 15:29:53 +00002634 if (AllowsAllExceptions || !Method)
Douglas Gregor95755162010-07-01 05:10:53 +00002635 return;
2636
2637 const FunctionProtoType *Proto
2638 = Method->getType()->getAs<FunctionProtoType>();
2639
2640 // If this function can throw any exceptions, make a note of that.
2641 if (!Proto->hasExceptionSpec() || Proto->hasAnyExceptionSpec()) {
2642 AllowsAllExceptions = true;
2643 ExceptionsSeen.clear();
2644 Exceptions.clear();
2645 return;
2646 }
2647
2648 // Record the exceptions in this function's exception specification.
2649 for (FunctionProtoType::exception_iterator E = Proto->exception_begin(),
2650 EEnd = Proto->exception_end();
2651 E != EEnd; ++E)
2652 if (ExceptionsSeen.insert(Context.getCanonicalType(*E)))
2653 Exceptions.push_back(*E);
2654 }
2655 };
2656}
2657
2658
Douglas Gregor05379422008-11-03 17:51:48 +00002659/// AddImplicitlyDeclaredMembersToClass - Adds any implicitly-declared
2660/// special functions, such as the default constructor, copy
2661/// constructor, or destructor, to the given C++ class (C++
2662/// [special]p1). This routine can only be executed just before the
2663/// definition of the class is complete.
Douglas Gregor0be31a22010-07-02 17:43:08 +00002664void Sema::AddImplicitlyDeclaredMembersToClass(CXXRecordDecl *ClassDecl) {
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00002665 if (!ClassDecl->hasUserDeclaredConstructor())
Douglas Gregor9672f922010-07-03 00:47:00 +00002666 ++ASTContext::NumImplicitDefaultConstructors;
Douglas Gregor05379422008-11-03 17:51:48 +00002667
Douglas Gregor54be3392010-07-01 17:57:27 +00002668 if (!ClassDecl->hasUserDeclaredCopyConstructor())
Douglas Gregora6d69502010-07-02 23:41:54 +00002669 ++ASTContext::NumImplicitCopyConstructors;
Douglas Gregor05379422008-11-03 17:51:48 +00002670
Douglas Gregor330b9cf2010-07-02 21:50:04 +00002671 if (!ClassDecl->hasUserDeclaredCopyAssignment()) {
2672 ++ASTContext::NumImplicitCopyAssignmentOperators;
2673
2674 // If we have a dynamic class, then the copy assignment operator may be
2675 // virtual, so we have to declare it immediately. This ensures that, e.g.,
2676 // it shows up in the right place in the vtable and that we diagnose
2677 // problems with the implicit exception specification.
2678 if (ClassDecl->isDynamicClass())
2679 DeclareImplicitCopyAssignment(ClassDecl);
2680 }
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002681
Douglas Gregor7454c562010-07-02 20:37:36 +00002682 if (!ClassDecl->hasUserDeclaredDestructor()) {
2683 ++ASTContext::NumImplicitDestructors;
2684
2685 // If we have a dynamic class, then the destructor may be virtual, so we
2686 // have to declare the destructor immediately. This ensures that, e.g., it
2687 // shows up in the right place in the vtable and that we diagnose problems
2688 // with the implicit exception specification.
2689 if (ClassDecl->isDynamicClass())
2690 DeclareImplicitDestructor(ClassDecl);
2691 }
Douglas Gregor05379422008-11-03 17:51:48 +00002692}
2693
Douglas Gregore44a2ad2009-05-27 23:11:45 +00002694void Sema::ActOnReenterTemplateScope(Scope *S, DeclPtrTy TemplateD) {
Douglas Gregore61ef622009-09-10 00:12:48 +00002695 Decl *D = TemplateD.getAs<Decl>();
2696 if (!D)
2697 return;
2698
2699 TemplateParameterList *Params = 0;
2700 if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D))
2701 Params = Template->getTemplateParameters();
2702 else if (ClassTemplatePartialSpecializationDecl *PartialSpec
2703 = dyn_cast<ClassTemplatePartialSpecializationDecl>(D))
2704 Params = PartialSpec->getTemplateParameters();
2705 else
Douglas Gregore44a2ad2009-05-27 23:11:45 +00002706 return;
2707
Douglas Gregore44a2ad2009-05-27 23:11:45 +00002708 for (TemplateParameterList::iterator Param = Params->begin(),
2709 ParamEnd = Params->end();
2710 Param != ParamEnd; ++Param) {
2711 NamedDecl *Named = cast<NamedDecl>(*Param);
2712 if (Named->getDeclName()) {
2713 S->AddDecl(DeclPtrTy::make(Named));
2714 IdResolver.AddDecl(Named);
2715 }
2716 }
2717}
2718
John McCall6df5fef2009-12-19 10:49:29 +00002719void Sema::ActOnStartDelayedMemberDeclarations(Scope *S, DeclPtrTy RecordD) {
2720 if (!RecordD) return;
2721 AdjustDeclIfTemplate(RecordD);
2722 CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordD.getAs<Decl>());
2723 PushDeclContext(S, Record);
2724}
2725
2726void Sema::ActOnFinishDelayedMemberDeclarations(Scope *S, DeclPtrTy RecordD) {
2727 if (!RecordD) return;
2728 PopDeclContext();
2729}
2730
Douglas Gregor4d87df52008-12-16 21:30:33 +00002731/// ActOnStartDelayedCXXMethodDeclaration - We have completed
2732/// parsing a top-level (non-nested) C++ class, and we are now
2733/// parsing those parts of the given Method declaration that could
2734/// not be parsed earlier (C++ [class.mem]p2), such as default
2735/// arguments. This action should enter the scope of the given
2736/// Method declaration as if we had just parsed the qualified method
2737/// name. However, it should not bring the parameters into scope;
2738/// that will be performed by ActOnDelayedCXXMethodParameter.
Chris Lattner83f095c2009-03-28 19:18:32 +00002739void Sema::ActOnStartDelayedCXXMethodDeclaration(Scope *S, DeclPtrTy MethodD) {
Douglas Gregor4d87df52008-12-16 21:30:33 +00002740}
2741
2742/// ActOnDelayedCXXMethodParameter - We've already started a delayed
2743/// C++ method declaration. We're (re-)introducing the given
2744/// function parameter into scope for use in parsing later parts of
2745/// the method declaration. For example, we could see an
2746/// ActOnParamDefaultArgument event for this parameter.
Chris Lattner83f095c2009-03-28 19:18:32 +00002747void Sema::ActOnDelayedCXXMethodParameter(Scope *S, DeclPtrTy ParamD) {
Douglas Gregor71a57182009-06-22 23:20:33 +00002748 if (!ParamD)
2749 return;
Mike Stump11289f42009-09-09 15:08:12 +00002750
Chris Lattner83f095c2009-03-28 19:18:32 +00002751 ParmVarDecl *Param = cast<ParmVarDecl>(ParamD.getAs<Decl>());
Douglas Gregor58354032008-12-24 00:01:03 +00002752
2753 // If this parameter has an unparsed default argument, clear it out
2754 // to make way for the parsed default argument.
2755 if (Param->hasUnparsedDefaultArg())
2756 Param->setDefaultArg(0);
2757
Chris Lattner83f095c2009-03-28 19:18:32 +00002758 S->AddDecl(DeclPtrTy::make(Param));
Douglas Gregor4d87df52008-12-16 21:30:33 +00002759 if (Param->getDeclName())
2760 IdResolver.AddDecl(Param);
2761}
2762
2763/// ActOnFinishDelayedCXXMethodDeclaration - We have finished
2764/// processing the delayed method declaration for Method. The method
2765/// declaration is now considered finished. There may be a separate
2766/// ActOnStartOfFunctionDef action later (not necessarily
2767/// immediately!) for this method, if it was also defined inside the
2768/// class body.
Chris Lattner83f095c2009-03-28 19:18:32 +00002769void Sema::ActOnFinishDelayedCXXMethodDeclaration(Scope *S, DeclPtrTy MethodD) {
Douglas Gregor71a57182009-06-22 23:20:33 +00002770 if (!MethodD)
2771 return;
Mike Stump11289f42009-09-09 15:08:12 +00002772
Douglas Gregorc8c277a2009-08-24 11:57:43 +00002773 AdjustDeclIfTemplate(MethodD);
Mike Stump11289f42009-09-09 15:08:12 +00002774
Chris Lattner83f095c2009-03-28 19:18:32 +00002775 FunctionDecl *Method = cast<FunctionDecl>(MethodD.getAs<Decl>());
Douglas Gregor4d87df52008-12-16 21:30:33 +00002776
2777 // Now that we have our default arguments, check the constructor
2778 // again. It could produce additional diagnostics or affect whether
2779 // the class has implicitly-declared destructors, among other
2780 // things.
Chris Lattnerb41df4f2009-04-25 08:35:12 +00002781 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Method))
2782 CheckConstructor(Constructor);
Douglas Gregor4d87df52008-12-16 21:30:33 +00002783
2784 // Check the default arguments, which we may have added.
2785 if (!Method->isInvalidDecl())
2786 CheckCXXDefaultArguments(Method);
2787}
2788
Douglas Gregor831c93f2008-11-05 20:51:48 +00002789/// CheckConstructorDeclarator - Called by ActOnDeclarator to check
Douglas Gregor4d87df52008-12-16 21:30:33 +00002790/// the well-formedness of the constructor declarator @p D with type @p
Douglas Gregor831c93f2008-11-05 20:51:48 +00002791/// R. If there are any errors in the declarator, this routine will
Chris Lattner38378bf2009-04-25 08:28:21 +00002792/// emit diagnostics and set the invalid bit to true. In any case, the type
2793/// will be updated to reflect a well-formed type for the constructor and
2794/// returned.
2795QualType Sema::CheckConstructorDeclarator(Declarator &D, QualType R,
2796 FunctionDecl::StorageClass &SC) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00002797 bool isVirtual = D.getDeclSpec().isVirtualSpecified();
Douglas Gregor831c93f2008-11-05 20:51:48 +00002798
2799 // C++ [class.ctor]p3:
2800 // A constructor shall not be virtual (10.3) or static (9.4). A
2801 // constructor can be invoked for a const, volatile or const
2802 // volatile object. A constructor shall not be declared const,
2803 // volatile, or const volatile (9.3.2).
2804 if (isVirtual) {
Chris Lattner38378bf2009-04-25 08:28:21 +00002805 if (!D.isInvalidType())
2806 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
2807 << "virtual" << SourceRange(D.getDeclSpec().getVirtualSpecLoc())
2808 << SourceRange(D.getIdentifierLoc());
2809 D.setInvalidType();
Douglas Gregor831c93f2008-11-05 20:51:48 +00002810 }
2811 if (SC == FunctionDecl::Static) {
Chris Lattner38378bf2009-04-25 08:28:21 +00002812 if (!D.isInvalidType())
2813 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
2814 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
2815 << SourceRange(D.getIdentifierLoc());
2816 D.setInvalidType();
Douglas Gregor831c93f2008-11-05 20:51:48 +00002817 SC = FunctionDecl::None;
2818 }
Mike Stump11289f42009-09-09 15:08:12 +00002819
Chris Lattner38378bf2009-04-25 08:28:21 +00002820 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
2821 if (FTI.TypeQuals != 0) {
John McCall8ccfcb52009-09-24 19:53:00 +00002822 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattner3b054132008-11-19 05:08:23 +00002823 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
2824 << "const" << SourceRange(D.getIdentifierLoc());
John McCall8ccfcb52009-09-24 19:53:00 +00002825 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattner3b054132008-11-19 05:08:23 +00002826 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
2827 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall8ccfcb52009-09-24 19:53:00 +00002828 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattner3b054132008-11-19 05:08:23 +00002829 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
2830 << "restrict" << SourceRange(D.getIdentifierLoc());
Douglas Gregor831c93f2008-11-05 20:51:48 +00002831 }
Mike Stump11289f42009-09-09 15:08:12 +00002832
Douglas Gregor831c93f2008-11-05 20:51:48 +00002833 // Rebuild the function type "R" without any type qualifiers (in
2834 // case any of the errors above fired) and with "void" as the
Douglas Gregor95755162010-07-01 05:10:53 +00002835 // return type, since constructors don't have return types.
John McCall9dd450b2009-09-21 23:43:11 +00002836 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
Chris Lattner38378bf2009-04-25 08:28:21 +00002837 return Context.getFunctionType(Context.VoidTy, Proto->arg_type_begin(),
2838 Proto->getNumArgs(),
Douglas Gregor36c569f2010-02-21 22:15:06 +00002839 Proto->isVariadic(), 0,
2840 Proto->hasExceptionSpec(),
2841 Proto->hasAnyExceptionSpec(),
2842 Proto->getNumExceptions(),
2843 Proto->exception_begin(),
Rafael Espindolac50c27c2010-03-30 20:24:48 +00002844 Proto->getExtInfo());
Douglas Gregor831c93f2008-11-05 20:51:48 +00002845}
2846
Douglas Gregor4d87df52008-12-16 21:30:33 +00002847/// CheckConstructor - Checks a fully-formed constructor for
2848/// well-formedness, issuing any diagnostics required. Returns true if
2849/// the constructor declarator is invalid.
Chris Lattnerb41df4f2009-04-25 08:35:12 +00002850void Sema::CheckConstructor(CXXConstructorDecl *Constructor) {
Mike Stump11289f42009-09-09 15:08:12 +00002851 CXXRecordDecl *ClassDecl
Douglas Gregorf4d17c42009-03-27 04:38:56 +00002852 = dyn_cast<CXXRecordDecl>(Constructor->getDeclContext());
2853 if (!ClassDecl)
Chris Lattnerb41df4f2009-04-25 08:35:12 +00002854 return Constructor->setInvalidDecl();
Douglas Gregor4d87df52008-12-16 21:30:33 +00002855
2856 // C++ [class.copy]p3:
2857 // A declaration of a constructor for a class X is ill-formed if
2858 // its first parameter is of type (optionally cv-qualified) X and
2859 // either there are no other parameters or else all other
2860 // parameters have default arguments.
Douglas Gregorf4d17c42009-03-27 04:38:56 +00002861 if (!Constructor->isInvalidDecl() &&
Mike Stump11289f42009-09-09 15:08:12 +00002862 ((Constructor->getNumParams() == 1) ||
2863 (Constructor->getNumParams() > 1 &&
Douglas Gregorffe14e32009-11-14 01:20:54 +00002864 Constructor->getParamDecl(1)->hasDefaultArg())) &&
2865 Constructor->getTemplateSpecializationKind()
2866 != TSK_ImplicitInstantiation) {
Douglas Gregor4d87df52008-12-16 21:30:33 +00002867 QualType ParamType = Constructor->getParamDecl(0)->getType();
2868 QualType ClassTy = Context.getTagDeclType(ClassDecl);
2869 if (Context.getCanonicalType(ParamType).getUnqualifiedType() == ClassTy) {
Douglas Gregor170512f2009-04-01 23:51:29 +00002870 SourceLocation ParamLoc = Constructor->getParamDecl(0)->getLocation();
Douglas Gregorfd42e952010-05-27 21:28:21 +00002871 const char *ConstRef
2872 = Constructor->getParamDecl(0)->getIdentifier() ? "const &"
2873 : " const &";
Douglas Gregor170512f2009-04-01 23:51:29 +00002874 Diag(ParamLoc, diag::err_constructor_byvalue_arg)
Douglas Gregorfd42e952010-05-27 21:28:21 +00002875 << FixItHint::CreateInsertion(ParamLoc, ConstRef);
Douglas Gregorffe14e32009-11-14 01:20:54 +00002876
2877 // FIXME: Rather that making the constructor invalid, we should endeavor
2878 // to fix the type.
Chris Lattnerb41df4f2009-04-25 08:35:12 +00002879 Constructor->setInvalidDecl();
Douglas Gregor4d87df52008-12-16 21:30:33 +00002880 }
2881 }
Mike Stump11289f42009-09-09 15:08:12 +00002882
John McCall43314ab2010-04-13 07:45:41 +00002883 // Notify the class that we've added a constructor. In principle we
2884 // don't need to do this for out-of-line declarations; in practice
2885 // we only instantiate the most recent declaration of a method, so
2886 // we have to call this for everything but friends.
2887 if (!Constructor->getFriendObjectKind())
2888 ClassDecl->addedConstructor(Context, Constructor);
Douglas Gregor4d87df52008-12-16 21:30:33 +00002889}
2890
John McCalldeb646e2010-08-04 01:04:25 +00002891/// CheckDestructor - Checks a fully-formed destructor definition for
2892/// well-formedness, issuing any diagnostics required. Returns true
2893/// on error.
Anders Carlssonf98849e2009-12-02 17:15:43 +00002894bool Sema::CheckDestructor(CXXDestructorDecl *Destructor) {
Anders Carlsson2a50e952009-11-15 22:49:34 +00002895 CXXRecordDecl *RD = Destructor->getParent();
2896
2897 if (Destructor->isVirtual()) {
2898 SourceLocation Loc;
2899
2900 if (!Destructor->isImplicit())
2901 Loc = Destructor->getLocation();
2902 else
2903 Loc = RD->getLocation();
2904
2905 // If we have a virtual destructor, look up the deallocation function
2906 FunctionDecl *OperatorDelete = 0;
2907 DeclarationName Name =
2908 Context.DeclarationNames.getCXXOperatorName(OO_Delete);
Anders Carlssonf98849e2009-12-02 17:15:43 +00002909 if (FindDeallocationFunction(Loc, RD, Name, OperatorDelete))
Anders Carlsson26a807d2009-11-30 21:24:50 +00002910 return true;
John McCall1e5d75d2010-07-03 18:33:00 +00002911
2912 MarkDeclarationReferenced(Loc, OperatorDelete);
Anders Carlsson26a807d2009-11-30 21:24:50 +00002913
2914 Destructor->setOperatorDelete(OperatorDelete);
Anders Carlsson2a50e952009-11-15 22:49:34 +00002915 }
Anders Carlsson26a807d2009-11-30 21:24:50 +00002916
2917 return false;
Anders Carlsson2a50e952009-11-15 22:49:34 +00002918}
2919
Mike Stump11289f42009-09-09 15:08:12 +00002920static inline bool
Anders Carlsson5e965472009-04-30 23:18:11 +00002921FTIHasSingleVoidArgument(DeclaratorChunk::FunctionTypeInfo &FTI) {
2922 return (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
2923 FTI.ArgInfo[0].Param &&
2924 FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType()->isVoidType());
2925}
2926
Douglas Gregor831c93f2008-11-05 20:51:48 +00002927/// CheckDestructorDeclarator - Called by ActOnDeclarator to check
2928/// the well-formednes of the destructor declarator @p D with type @p
2929/// R. If there are any errors in the declarator, this routine will
Chris Lattner38378bf2009-04-25 08:28:21 +00002930/// emit diagnostics and set the declarator to invalid. Even if this happens,
2931/// will be updated to reflect a well-formed type for the destructor and
2932/// returned.
Douglas Gregor95755162010-07-01 05:10:53 +00002933QualType Sema::CheckDestructorDeclarator(Declarator &D, QualType R,
Chris Lattner38378bf2009-04-25 08:28:21 +00002934 FunctionDecl::StorageClass& SC) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00002935 // C++ [class.dtor]p1:
2936 // [...] A typedef-name that names a class is a class-name
2937 // (7.1.3); however, a typedef-name that names a class shall not
2938 // be used as the identifier in the declarator for a destructor
2939 // declaration.
Douglas Gregor7861a802009-11-03 01:35:08 +00002940 QualType DeclaratorType = GetTypeFromParser(D.getName().DestructorName);
Douglas Gregor95755162010-07-01 05:10:53 +00002941 if (isa<TypedefType>(DeclaratorType))
Chris Lattner38378bf2009-04-25 08:28:21 +00002942 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
Douglas Gregor9817f4a2009-02-09 15:09:02 +00002943 << DeclaratorType;
Douglas Gregor831c93f2008-11-05 20:51:48 +00002944
2945 // C++ [class.dtor]p2:
2946 // A destructor is used to destroy objects of its class type. A
2947 // destructor takes no parameters, and no return type can be
2948 // specified for it (not even void). The address of a destructor
2949 // shall not be taken. A destructor shall not be static. A
2950 // destructor can be invoked for a const, volatile or const
2951 // volatile object. A destructor shall not be declared const,
2952 // volatile or const volatile (9.3.2).
2953 if (SC == FunctionDecl::Static) {
Chris Lattner38378bf2009-04-25 08:28:21 +00002954 if (!D.isInvalidType())
2955 Diag(D.getIdentifierLoc(), diag::err_destructor_cannot_be)
2956 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
Douglas Gregor95755162010-07-01 05:10:53 +00002957 << SourceRange(D.getIdentifierLoc())
2958 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
2959
Douglas Gregor831c93f2008-11-05 20:51:48 +00002960 SC = FunctionDecl::None;
2961 }
Chris Lattner38378bf2009-04-25 08:28:21 +00002962 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00002963 // Destructors don't have return types, but the parser will
2964 // happily parse something like:
2965 //
2966 // class X {
2967 // float ~X();
2968 // };
2969 //
2970 // The return type will be eliminated later.
Chris Lattner3b054132008-11-19 05:08:23 +00002971 Diag(D.getIdentifierLoc(), diag::err_destructor_return_type)
2972 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
2973 << SourceRange(D.getIdentifierLoc());
Douglas Gregor831c93f2008-11-05 20:51:48 +00002974 }
Mike Stump11289f42009-09-09 15:08:12 +00002975
Chris Lattner38378bf2009-04-25 08:28:21 +00002976 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
2977 if (FTI.TypeQuals != 0 && !D.isInvalidType()) {
John McCall8ccfcb52009-09-24 19:53:00 +00002978 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattner3b054132008-11-19 05:08:23 +00002979 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
2980 << "const" << SourceRange(D.getIdentifierLoc());
John McCall8ccfcb52009-09-24 19:53:00 +00002981 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattner3b054132008-11-19 05:08:23 +00002982 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
2983 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall8ccfcb52009-09-24 19:53:00 +00002984 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattner3b054132008-11-19 05:08:23 +00002985 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
2986 << "restrict" << SourceRange(D.getIdentifierLoc());
Chris Lattner38378bf2009-04-25 08:28:21 +00002987 D.setInvalidType();
Douglas Gregor831c93f2008-11-05 20:51:48 +00002988 }
2989
2990 // Make sure we don't have any parameters.
Anders Carlsson5e965472009-04-30 23:18:11 +00002991 if (FTI.NumArgs > 0 && !FTIHasSingleVoidArgument(FTI)) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00002992 Diag(D.getIdentifierLoc(), diag::err_destructor_with_params);
2993
2994 // Delete the parameters.
Chris Lattner38378bf2009-04-25 08:28:21 +00002995 FTI.freeArgs();
2996 D.setInvalidType();
Douglas Gregor831c93f2008-11-05 20:51:48 +00002997 }
2998
Mike Stump11289f42009-09-09 15:08:12 +00002999 // Make sure the destructor isn't variadic.
Chris Lattner38378bf2009-04-25 08:28:21 +00003000 if (FTI.isVariadic) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00003001 Diag(D.getIdentifierLoc(), diag::err_destructor_variadic);
Chris Lattner38378bf2009-04-25 08:28:21 +00003002 D.setInvalidType();
3003 }
Douglas Gregor831c93f2008-11-05 20:51:48 +00003004
3005 // Rebuild the function type "R" without any type qualifiers or
3006 // parameters (in case any of the errors above fired) and with
3007 // "void" as the return type, since destructors don't have return
Douglas Gregor95755162010-07-01 05:10:53 +00003008 // types.
3009 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
3010 if (!Proto)
3011 return QualType();
3012
Douglas Gregor36c569f2010-02-21 22:15:06 +00003013 return Context.getFunctionType(Context.VoidTy, 0, 0, false, 0,
Douglas Gregor95755162010-07-01 05:10:53 +00003014 Proto->hasExceptionSpec(),
3015 Proto->hasAnyExceptionSpec(),
3016 Proto->getNumExceptions(),
3017 Proto->exception_begin(),
3018 Proto->getExtInfo());
Douglas Gregor831c93f2008-11-05 20:51:48 +00003019}
3020
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003021/// CheckConversionDeclarator - Called by ActOnDeclarator to check the
3022/// well-formednes of the conversion function declarator @p D with
3023/// type @p R. If there are any errors in the declarator, this routine
3024/// will emit diagnostics and return true. Otherwise, it will return
3025/// false. Either way, the type @p R will be updated to reflect a
3026/// well-formed type for the conversion operator.
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003027void Sema::CheckConversionDeclarator(Declarator &D, QualType &R,
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003028 FunctionDecl::StorageClass& SC) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003029 // C++ [class.conv.fct]p1:
3030 // Neither parameter types nor return type can be specified. The
Eli Friedman44b83ee2009-08-05 19:21:58 +00003031 // type of a conversion function (8.3.5) is "function taking no
Mike Stump11289f42009-09-09 15:08:12 +00003032 // parameter returning conversion-type-id."
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003033 if (SC == FunctionDecl::Static) {
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003034 if (!D.isInvalidType())
3035 Diag(D.getIdentifierLoc(), diag::err_conv_function_not_member)
3036 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
3037 << SourceRange(D.getIdentifierLoc());
3038 D.setInvalidType();
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003039 SC = FunctionDecl::None;
3040 }
John McCall212fa2e2010-04-13 00:04:31 +00003041
3042 QualType ConvType = GetTypeFromParser(D.getName().ConversionFunctionId);
3043
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003044 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003045 // Conversion functions don't have return types, but the parser will
3046 // happily parse something like:
3047 //
3048 // class X {
3049 // float operator bool();
3050 // };
3051 //
3052 // The return type will be changed later anyway.
Chris Lattner3b054132008-11-19 05:08:23 +00003053 Diag(D.getIdentifierLoc(), diag::err_conv_function_return_type)
3054 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
3055 << SourceRange(D.getIdentifierLoc());
John McCall212fa2e2010-04-13 00:04:31 +00003056 D.setInvalidType();
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003057 }
3058
John McCall212fa2e2010-04-13 00:04:31 +00003059 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
3060
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003061 // Make sure we don't have any parameters.
John McCall212fa2e2010-04-13 00:04:31 +00003062 if (Proto->getNumArgs() > 0) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003063 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_params);
3064
3065 // Delete the parameters.
Chris Lattner5742c1e2009-01-20 21:06:38 +00003066 D.getTypeObject(0).Fun.freeArgs();
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003067 D.setInvalidType();
John McCall212fa2e2010-04-13 00:04:31 +00003068 } else if (Proto->isVariadic()) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003069 Diag(D.getIdentifierLoc(), diag::err_conv_function_variadic);
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003070 D.setInvalidType();
3071 }
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003072
John McCall212fa2e2010-04-13 00:04:31 +00003073 // Diagnose "&operator bool()" and other such nonsense. This
3074 // is actually a gcc extension which we don't support.
3075 if (Proto->getResultType() != ConvType) {
3076 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_complex_decl)
3077 << Proto->getResultType();
3078 D.setInvalidType();
3079 ConvType = Proto->getResultType();
3080 }
3081
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003082 // C++ [class.conv.fct]p4:
3083 // The conversion-type-id shall not represent a function type nor
3084 // an array type.
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003085 if (ConvType->isArrayType()) {
3086 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_array);
3087 ConvType = Context.getPointerType(ConvType);
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003088 D.setInvalidType();
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003089 } else if (ConvType->isFunctionType()) {
3090 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_function);
3091 ConvType = Context.getPointerType(ConvType);
Chris Lattnerb41df4f2009-04-25 08:35:12 +00003092 D.setInvalidType();
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003093 }
3094
3095 // Rebuild the function type "R" without any parameters (in case any
3096 // of the errors above fired) and with the conversion type as the
Mike Stump11289f42009-09-09 15:08:12 +00003097 // return type.
John McCall212fa2e2010-04-13 00:04:31 +00003098 if (D.isInvalidType()) {
3099 R = Context.getFunctionType(ConvType, 0, 0, false,
3100 Proto->getTypeQuals(),
3101 Proto->hasExceptionSpec(),
3102 Proto->hasAnyExceptionSpec(),
3103 Proto->getNumExceptions(),
3104 Proto->exception_begin(),
3105 Proto->getExtInfo());
3106 }
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003107
Douglas Gregor5fb53972009-01-14 15:45:31 +00003108 // C++0x explicit conversion operators.
3109 if (D.getDeclSpec().isExplicitSpecified() && !getLangOptions().CPlusPlus0x)
Mike Stump11289f42009-09-09 15:08:12 +00003110 Diag(D.getDeclSpec().getExplicitSpecLoc(),
Douglas Gregor5fb53972009-01-14 15:45:31 +00003111 diag::warn_explicit_conversion_functions)
3112 << SourceRange(D.getDeclSpec().getExplicitSpecLoc());
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003113}
3114
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003115/// ActOnConversionDeclarator - Called by ActOnDeclarator to complete
3116/// the declaration of the given C++ conversion function. This routine
3117/// is responsible for recording the conversion function in the C++
3118/// class, if possible.
Chris Lattner83f095c2009-03-28 19:18:32 +00003119Sema::DeclPtrTy Sema::ActOnConversionDeclarator(CXXConversionDecl *Conversion) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003120 assert(Conversion && "Expected to receive a conversion function declaration");
3121
Douglas Gregor4287b372008-12-12 08:25:50 +00003122 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Conversion->getDeclContext());
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003123
3124 // Make sure we aren't redeclaring the conversion function.
3125 QualType ConvType = Context.getCanonicalType(Conversion->getConversionType());
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003126
3127 // C++ [class.conv.fct]p1:
3128 // [...] A conversion function is never used to convert a
3129 // (possibly cv-qualified) object to the (possibly cv-qualified)
3130 // same object type (or a reference to it), to a (possibly
3131 // cv-qualified) base class of that type (or a reference to it),
3132 // or to (possibly cv-qualified) void.
Mike Stump87c57ac2009-05-16 07:39:55 +00003133 // FIXME: Suppress this warning if the conversion function ends up being a
3134 // virtual function that overrides a virtual function in a base class.
Mike Stump11289f42009-09-09 15:08:12 +00003135 QualType ClassType
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003136 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003137 if (const ReferenceType *ConvTypeRef = ConvType->getAs<ReferenceType>())
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003138 ConvType = ConvTypeRef->getPointeeType();
3139 if (ConvType->isRecordType()) {
3140 ConvType = Context.getCanonicalType(ConvType).getUnqualifiedType();
3141 if (ConvType == ClassType)
Chris Lattnerf7e3f6d2008-11-20 06:13:02 +00003142 Diag(Conversion->getLocation(), diag::warn_conv_to_self_not_used)
Chris Lattner1e5665e2008-11-24 06:25:27 +00003143 << ClassType;
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003144 else if (IsDerivedFrom(ClassType, ConvType))
Chris Lattnerf7e3f6d2008-11-20 06:13:02 +00003145 Diag(Conversion->getLocation(), diag::warn_conv_to_base_not_used)
Chris Lattner1e5665e2008-11-24 06:25:27 +00003146 << ClassType << ConvType;
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003147 } else if (ConvType->isVoidType()) {
Chris Lattnerf7e3f6d2008-11-20 06:13:02 +00003148 Diag(Conversion->getLocation(), diag::warn_conv_to_void_not_used)
Chris Lattner1e5665e2008-11-24 06:25:27 +00003149 << ClassType << ConvType;
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003150 }
3151
Douglas Gregorea0a0a92010-01-11 18:40:55 +00003152 if (Conversion->getPrimaryTemplate()) {
3153 // ignore specializations
3154 } else if (Conversion->getPreviousDeclaration()) {
Mike Stump11289f42009-09-09 15:08:12 +00003155 if (FunctionTemplateDecl *ConversionTemplate
Douglas Gregor133bc742010-01-11 18:53:25 +00003156 = Conversion->getDescribedFunctionTemplate()) {
3157 if (ClassDecl->replaceConversion(
3158 ConversionTemplate->getPreviousDeclaration(),
3159 ConversionTemplate))
3160 return DeclPtrTy::make(ConversionTemplate);
3161 } else if (ClassDecl->replaceConversion(Conversion->getPreviousDeclaration(),
3162 Conversion))
John McCalld14a8642009-11-21 08:51:07 +00003163 return DeclPtrTy::make(Conversion);
Douglas Gregor1dc98262008-12-26 15:00:45 +00003164 assert(Conversion->isInvalidDecl() && "Conversion should not get here.");
Mike Stump11289f42009-09-09 15:08:12 +00003165 } else if (FunctionTemplateDecl *ConversionTemplate
Douglas Gregor05155d82009-08-21 23:19:43 +00003166 = Conversion->getDescribedFunctionTemplate())
Fariborz Jahanianedca0bc2009-09-12 19:02:34 +00003167 ClassDecl->addConversionFunction(ConversionTemplate);
Douglas Gregorea0a0a92010-01-11 18:40:55 +00003168 else
Fariborz Jahanianedca0bc2009-09-12 19:02:34 +00003169 ClassDecl->addConversionFunction(Conversion);
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003170
Chris Lattner83f095c2009-03-28 19:18:32 +00003171 return DeclPtrTy::make(Conversion);
Douglas Gregordbc5daf2008-11-07 20:08:42 +00003172}
3173
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003174//===----------------------------------------------------------------------===//
3175// Namespace Handling
3176//===----------------------------------------------------------------------===//
3177
3178/// ActOnStartNamespaceDef - This is called at the start of a namespace
3179/// definition.
Chris Lattner83f095c2009-03-28 19:18:32 +00003180Sema::DeclPtrTy Sema::ActOnStartNamespaceDef(Scope *NamespcScope,
3181 SourceLocation IdentLoc,
3182 IdentifierInfo *II,
Anders Carlssona7bcade2010-02-07 01:09:23 +00003183 SourceLocation LBrace,
3184 AttributeList *AttrList) {
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003185 NamespaceDecl *Namespc =
3186 NamespaceDecl::Create(Context, CurContext, IdentLoc, II);
3187 Namespc->setLBracLoc(LBrace);
3188
3189 Scope *DeclRegionScope = NamespcScope->getParent();
3190
Anders Carlssona7bcade2010-02-07 01:09:23 +00003191 ProcessDeclAttributeList(DeclRegionScope, Namespc, AttrList);
3192
Eli Friedman570024a2010-08-05 06:57:20 +00003193 if (const VisibilityAttr *attr = Namespc->getAttr<VisibilityAttr>())
3194 PushPragmaVisibility(attr->getVisibility());
3195
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003196 if (II) {
3197 // C++ [namespace.def]p2:
3198 // The identifier in an original-namespace-definition shall not have been
3199 // previously defined in the declarative region in which the
3200 // original-namespace-definition appears. The identifier in an
3201 // original-namespace-definition is the name of the namespace. Subsequently
3202 // in that declarative region, it is treated as an original-namespace-name.
3203
John McCall9f3059a2009-10-09 21:13:30 +00003204 NamedDecl *PrevDecl
Douglas Gregorb2ccf012010-04-15 22:33:43 +00003205 = LookupSingleName(DeclRegionScope, II, IdentLoc, LookupOrdinaryName,
John McCall5cebab12009-11-18 07:57:50 +00003206 ForRedeclaration);
Mike Stump11289f42009-09-09 15:08:12 +00003207
Douglas Gregor91f84212008-12-11 16:49:14 +00003208 if (NamespaceDecl *OrigNS = dyn_cast_or_null<NamespaceDecl>(PrevDecl)) {
3209 // This is an extended namespace definition.
3210 // Attach this namespace decl to the chain of extended namespace
3211 // definitions.
3212 OrigNS->setNextNamespace(Namespc);
3213 Namespc->setOriginalNamespace(OrigNS->getOriginalNamespace());
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003214
Mike Stump11289f42009-09-09 15:08:12 +00003215 // Remove the previous declaration from the scope.
Chris Lattner83f095c2009-03-28 19:18:32 +00003216 if (DeclRegionScope->isDeclScope(DeclPtrTy::make(OrigNS))) {
Douglas Gregor7a4fad12008-12-11 20:41:00 +00003217 IdResolver.RemoveDecl(OrigNS);
Chris Lattner83f095c2009-03-28 19:18:32 +00003218 DeclRegionScope->RemoveDecl(DeclPtrTy::make(OrigNS));
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003219 }
Douglas Gregor91f84212008-12-11 16:49:14 +00003220 } else if (PrevDecl) {
3221 // This is an invalid name redefinition.
3222 Diag(Namespc->getLocation(), diag::err_redefinition_different_kind)
3223 << Namespc->getDeclName();
3224 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
3225 Namespc->setInvalidDecl();
3226 // Continue on to push Namespc as current DeclContext and return it.
Douglas Gregor87f54062009-09-15 22:30:29 +00003227 } else if (II->isStr("std") &&
3228 CurContext->getLookupContext()->isTranslationUnit()) {
3229 // This is the first "real" definition of the namespace "std", so update
3230 // our cache of the "std" namespace to point at this definition.
Argyrios Kyrtzidis2d688102010-08-02 07:14:54 +00003231 if (NamespaceDecl *StdNS = getStdNamespace()) {
Douglas Gregor87f54062009-09-15 22:30:29 +00003232 // We had already defined a dummy namespace "std". Link this new
3233 // namespace definition to the dummy namespace "std".
Argyrios Kyrtzidis2d688102010-08-02 07:14:54 +00003234 StdNS->setNextNamespace(Namespc);
3235 StdNS->setLocation(IdentLoc);
3236 Namespc->setOriginalNamespace(StdNS->getOriginalNamespace());
Douglas Gregor87f54062009-09-15 22:30:29 +00003237 }
3238
3239 // Make our StdNamespace cache point at the first real definition of the
3240 // "std" namespace.
3241 StdNamespace = Namespc;
Mike Stump11289f42009-09-09 15:08:12 +00003242 }
Douglas Gregor91f84212008-12-11 16:49:14 +00003243
3244 PushOnScopeChains(Namespc, DeclRegionScope);
3245 } else {
John McCall4fa53422009-10-01 00:25:31 +00003246 // Anonymous namespaces.
John McCall0db42252009-12-16 02:06:49 +00003247 assert(Namespc->isAnonymousNamespace());
John McCall0db42252009-12-16 02:06:49 +00003248
3249 // Link the anonymous namespace into its parent.
3250 NamespaceDecl *PrevDecl;
3251 DeclContext *Parent = CurContext->getLookupContext();
3252 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
3253 PrevDecl = TU->getAnonymousNamespace();
3254 TU->setAnonymousNamespace(Namespc);
3255 } else {
3256 NamespaceDecl *ND = cast<NamespaceDecl>(Parent);
3257 PrevDecl = ND->getAnonymousNamespace();
3258 ND->setAnonymousNamespace(Namespc);
3259 }
3260
3261 // Link the anonymous namespace with its previous declaration.
3262 if (PrevDecl) {
3263 assert(PrevDecl->isAnonymousNamespace());
3264 assert(!PrevDecl->getNextNamespace());
3265 Namespc->setOriginalNamespace(PrevDecl->getOriginalNamespace());
3266 PrevDecl->setNextNamespace(Namespc);
3267 }
John McCall4fa53422009-10-01 00:25:31 +00003268
Douglas Gregorf9f54ea2010-03-24 00:46:35 +00003269 CurContext->addDecl(Namespc);
3270
John McCall4fa53422009-10-01 00:25:31 +00003271 // C++ [namespace.unnamed]p1. An unnamed-namespace-definition
3272 // behaves as if it were replaced by
3273 // namespace unique { /* empty body */ }
3274 // using namespace unique;
3275 // namespace unique { namespace-body }
3276 // where all occurrences of 'unique' in a translation unit are
3277 // replaced by the same identifier and this identifier differs
3278 // from all other identifiers in the entire program.
3279
3280 // We just create the namespace with an empty name and then add an
3281 // implicit using declaration, just like the standard suggests.
3282 //
3283 // CodeGen enforces the "universally unique" aspect by giving all
3284 // declarations semantically contained within an anonymous
3285 // namespace internal linkage.
3286
John McCall0db42252009-12-16 02:06:49 +00003287 if (!PrevDecl) {
3288 UsingDirectiveDecl* UD
3289 = UsingDirectiveDecl::Create(Context, CurContext,
3290 /* 'using' */ LBrace,
3291 /* 'namespace' */ SourceLocation(),
3292 /* qualifier */ SourceRange(),
3293 /* NNS */ NULL,
3294 /* identifier */ SourceLocation(),
3295 Namespc,
3296 /* Ancestor */ CurContext);
3297 UD->setImplicit();
3298 CurContext->addDecl(UD);
3299 }
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003300 }
3301
3302 // Although we could have an invalid decl (i.e. the namespace name is a
3303 // redefinition), push it as current DeclContext and try to continue parsing.
Mike Stump87c57ac2009-05-16 07:39:55 +00003304 // FIXME: We should be able to push Namespc here, so that the each DeclContext
3305 // for the namespace has the declarations that showed up in that particular
3306 // namespace definition.
Douglas Gregor91f84212008-12-11 16:49:14 +00003307 PushDeclContext(NamespcScope, Namespc);
Chris Lattner83f095c2009-03-28 19:18:32 +00003308 return DeclPtrTy::make(Namespc);
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003309}
3310
Sebastian Redla6602e92009-11-23 15:34:23 +00003311/// getNamespaceDecl - Returns the namespace a decl represents. If the decl
3312/// is a namespace alias, returns the namespace it points to.
3313static inline NamespaceDecl *getNamespaceDecl(NamedDecl *D) {
3314 if (NamespaceAliasDecl *AD = dyn_cast_or_null<NamespaceAliasDecl>(D))
3315 return AD->getNamespace();
3316 return dyn_cast_or_null<NamespaceDecl>(D);
3317}
3318
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003319/// ActOnFinishNamespaceDef - This callback is called after a namespace is
3320/// exited. Decl is the DeclTy returned by ActOnStartNamespaceDef.
Chris Lattner83f095c2009-03-28 19:18:32 +00003321void Sema::ActOnFinishNamespaceDef(DeclPtrTy D, SourceLocation RBrace) {
3322 Decl *Dcl = D.getAs<Decl>();
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003323 NamespaceDecl *Namespc = dyn_cast_or_null<NamespaceDecl>(Dcl);
3324 assert(Namespc && "Invalid parameter, expected NamespaceDecl");
3325 Namespc->setRBracLoc(RBrace);
3326 PopDeclContext();
Eli Friedman570024a2010-08-05 06:57:20 +00003327 if (Namespc->hasAttr<VisibilityAttr>())
3328 PopPragmaVisibility();
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00003329}
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00003330
Douglas Gregorcdf87022010-06-29 17:53:46 +00003331/// \brief Retrieve the special "std" namespace, which may require us to
3332/// implicitly define the namespace.
Argyrios Kyrtzidis4f8e1732010-08-02 07:14:39 +00003333NamespaceDecl *Sema::getOrCreateStdNamespace() {
Douglas Gregorcdf87022010-06-29 17:53:46 +00003334 if (!StdNamespace) {
3335 // The "std" namespace has not yet been defined, so build one implicitly.
3336 StdNamespace = NamespaceDecl::Create(Context,
3337 Context.getTranslationUnitDecl(),
3338 SourceLocation(),
3339 &PP.getIdentifierTable().get("std"));
Argyrios Kyrtzidis2d688102010-08-02 07:14:54 +00003340 getStdNamespace()->setImplicit(true);
Douglas Gregorcdf87022010-06-29 17:53:46 +00003341 }
3342
Argyrios Kyrtzidis2d688102010-08-02 07:14:54 +00003343 return getStdNamespace();
Douglas Gregorcdf87022010-06-29 17:53:46 +00003344}
3345
Chris Lattner83f095c2009-03-28 19:18:32 +00003346Sema::DeclPtrTy Sema::ActOnUsingDirective(Scope *S,
3347 SourceLocation UsingLoc,
3348 SourceLocation NamespcLoc,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00003349 CXXScopeSpec &SS,
Chris Lattner83f095c2009-03-28 19:18:32 +00003350 SourceLocation IdentLoc,
3351 IdentifierInfo *NamespcName,
3352 AttributeList *AttrList) {
Douglas Gregord7c4d982008-12-30 03:27:21 +00003353 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
3354 assert(NamespcName && "Invalid NamespcName.");
3355 assert(IdentLoc.isValid() && "Invalid NamespceName location.");
Douglas Gregor889ceb72009-02-03 19:21:40 +00003356 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Douglas Gregord7c4d982008-12-30 03:27:21 +00003357
Douglas Gregor889ceb72009-02-03 19:21:40 +00003358 UsingDirectiveDecl *UDir = 0;
Douglas Gregorcdf87022010-06-29 17:53:46 +00003359 NestedNameSpecifier *Qualifier = 0;
3360 if (SS.isSet())
3361 Qualifier = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
3362
Douglas Gregor34074322009-01-14 22:20:51 +00003363 // Lookup namespace name.
John McCall27b18f82009-11-17 02:14:36 +00003364 LookupResult R(*this, NamespcName, IdentLoc, LookupNamespaceName);
3365 LookupParsedName(R, S, &SS);
3366 if (R.isAmbiguous())
Chris Lattner83f095c2009-03-28 19:18:32 +00003367 return DeclPtrTy();
John McCall27b18f82009-11-17 02:14:36 +00003368
Douglas Gregorcdf87022010-06-29 17:53:46 +00003369 if (R.empty()) {
3370 // Allow "using namespace std;" or "using namespace ::std;" even if
3371 // "std" hasn't been defined yet, for GCC compatibility.
3372 if ((!Qualifier || Qualifier->getKind() == NestedNameSpecifier::Global) &&
3373 NamespcName->isStr("std")) {
3374 Diag(IdentLoc, diag::ext_using_undefined_std);
Argyrios Kyrtzidis4f8e1732010-08-02 07:14:39 +00003375 R.addDecl(getOrCreateStdNamespace());
Douglas Gregorcdf87022010-06-29 17:53:46 +00003376 R.resolveKind();
3377 }
3378 // Otherwise, attempt typo correction.
3379 else if (DeclarationName Corrected = CorrectTypo(R, S, &SS, 0, false,
3380 CTC_NoKeywords, 0)) {
3381 if (R.getAsSingle<NamespaceDecl>() ||
3382 R.getAsSingle<NamespaceAliasDecl>()) {
3383 if (DeclContext *DC = computeDeclContext(SS, false))
3384 Diag(IdentLoc, diag::err_using_directive_member_suggest)
3385 << NamespcName << DC << Corrected << SS.getRange()
3386 << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
3387 else
3388 Diag(IdentLoc, diag::err_using_directive_suggest)
3389 << NamespcName << Corrected
3390 << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
3391 Diag(R.getFoundDecl()->getLocation(), diag::note_namespace_defined_here)
3392 << Corrected;
3393
3394 NamespcName = Corrected.getAsIdentifierInfo();
Douglas Gregorc048c522010-06-29 19:27:42 +00003395 } else {
3396 R.clear();
3397 R.setLookupName(NamespcName);
Douglas Gregorcdf87022010-06-29 17:53:46 +00003398 }
3399 }
3400 }
3401
John McCall9f3059a2009-10-09 21:13:30 +00003402 if (!R.empty()) {
Sebastian Redla6602e92009-11-23 15:34:23 +00003403 NamedDecl *Named = R.getFoundDecl();
3404 assert((isa<NamespaceDecl>(Named) || isa<NamespaceAliasDecl>(Named))
3405 && "expected namespace decl");
Douglas Gregor889ceb72009-02-03 19:21:40 +00003406 // C++ [namespace.udir]p1:
3407 // A using-directive specifies that the names in the nominated
3408 // namespace can be used in the scope in which the
3409 // using-directive appears after the using-directive. During
3410 // unqualified name lookup (3.4.1), the names appear as if they
3411 // were declared in the nearest enclosing namespace which
3412 // contains both the using-directive and the nominated
Eli Friedman44b83ee2009-08-05 19:21:58 +00003413 // namespace. [Note: in this context, "contains" means "contains
3414 // directly or indirectly". ]
Douglas Gregor889ceb72009-02-03 19:21:40 +00003415
3416 // Find enclosing context containing both using-directive and
3417 // nominated namespace.
Sebastian Redla6602e92009-11-23 15:34:23 +00003418 NamespaceDecl *NS = getNamespaceDecl(Named);
Douglas Gregor889ceb72009-02-03 19:21:40 +00003419 DeclContext *CommonAncestor = cast<DeclContext>(NS);
3420 while (CommonAncestor && !CommonAncestor->Encloses(CurContext))
3421 CommonAncestor = CommonAncestor->getParent();
3422
Sebastian Redla6602e92009-11-23 15:34:23 +00003423 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc,
Douglas Gregor3bc6e4c2009-05-30 06:31:56 +00003424 SS.getRange(),
3425 (NestedNameSpecifier *)SS.getScopeRep(),
Sebastian Redla6602e92009-11-23 15:34:23 +00003426 IdentLoc, Named, CommonAncestor);
Douglas Gregor889ceb72009-02-03 19:21:40 +00003427 PushUsingDirective(S, UDir);
Douglas Gregord7c4d982008-12-30 03:27:21 +00003428 } else {
Chris Lattner8dca2e92009-01-06 07:24:29 +00003429 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
Douglas Gregord7c4d982008-12-30 03:27:21 +00003430 }
3431
Douglas Gregor889ceb72009-02-03 19:21:40 +00003432 // FIXME: We ignore attributes for now.
Douglas Gregord7c4d982008-12-30 03:27:21 +00003433 delete AttrList;
Chris Lattner83f095c2009-03-28 19:18:32 +00003434 return DeclPtrTy::make(UDir);
Douglas Gregor889ceb72009-02-03 19:21:40 +00003435}
3436
3437void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) {
3438 // If scope has associated entity, then using directive is at namespace
3439 // or translation unit scope. We add UsingDirectiveDecls, into
3440 // it's lookup structure.
3441 if (DeclContext *Ctx = static_cast<DeclContext*>(S->getEntity()))
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00003442 Ctx->addDecl(UDir);
Douglas Gregor889ceb72009-02-03 19:21:40 +00003443 else
3444 // Otherwise it is block-sope. using-directives will affect lookup
3445 // only to the end of scope.
Chris Lattner83f095c2009-03-28 19:18:32 +00003446 S->PushUsingDirective(DeclPtrTy::make(UDir));
Douglas Gregord7c4d982008-12-30 03:27:21 +00003447}
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00003448
Douglas Gregorfec52632009-06-20 00:51:54 +00003449
3450Sema::DeclPtrTy Sema::ActOnUsingDeclaration(Scope *S,
Anders Carlsson7b194b72009-08-29 19:54:19 +00003451 AccessSpecifier AS,
John McCalla0097262009-12-11 02:10:03 +00003452 bool HasUsingKeyword,
Anders Carlsson59140b32009-08-28 03:16:11 +00003453 SourceLocation UsingLoc,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00003454 CXXScopeSpec &SS,
Douglas Gregor220f4272009-11-04 16:30:06 +00003455 UnqualifiedId &Name,
Anders Carlsson59140b32009-08-28 03:16:11 +00003456 AttributeList *AttrList,
John McCalle61f2ba2009-11-18 02:36:19 +00003457 bool IsTypeName,
3458 SourceLocation TypenameLoc) {
Douglas Gregorfec52632009-06-20 00:51:54 +00003459 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Mike Stump11289f42009-09-09 15:08:12 +00003460
Douglas Gregor220f4272009-11-04 16:30:06 +00003461 switch (Name.getKind()) {
3462 case UnqualifiedId::IK_Identifier:
3463 case UnqualifiedId::IK_OperatorFunctionId:
Alexis Hunt34458502009-11-28 04:44:28 +00003464 case UnqualifiedId::IK_LiteralOperatorId:
Douglas Gregor220f4272009-11-04 16:30:06 +00003465 case UnqualifiedId::IK_ConversionFunctionId:
3466 break;
3467
3468 case UnqualifiedId::IK_ConstructorName:
Douglas Gregor9de54ea2010-01-13 17:31:36 +00003469 case UnqualifiedId::IK_ConstructorTemplateId:
John McCall3969e302009-12-08 07:46:18 +00003470 // C++0x inherited constructors.
3471 if (getLangOptions().CPlusPlus0x) break;
3472
Douglas Gregor220f4272009-11-04 16:30:06 +00003473 Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_constructor)
3474 << SS.getRange();
3475 return DeclPtrTy();
3476
3477 case UnqualifiedId::IK_DestructorName:
3478 Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_destructor)
3479 << SS.getRange();
3480 return DeclPtrTy();
3481
3482 case UnqualifiedId::IK_TemplateId:
3483 Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_template_id)
3484 << SourceRange(Name.TemplateId->LAngleLoc, Name.TemplateId->RAngleLoc);
3485 return DeclPtrTy();
3486 }
Abramo Bagnara8de74e92010-08-12 11:46:03 +00003487
3488 DeclarationNameInfo TargetNameInfo = GetNameFromUnqualifiedId(Name);
3489 DeclarationName TargetName = TargetNameInfo.getName();
John McCall3969e302009-12-08 07:46:18 +00003490 if (!TargetName)
3491 return DeclPtrTy();
3492
John McCalla0097262009-12-11 02:10:03 +00003493 // Warn about using declarations.
3494 // TODO: store that the declaration was written without 'using' and
3495 // talk about access decls instead of using decls in the
3496 // diagnostics.
3497 if (!HasUsingKeyword) {
3498 UsingLoc = Name.getSourceRange().getBegin();
3499
3500 Diag(UsingLoc, diag::warn_access_decl_deprecated)
Douglas Gregora771f462010-03-31 17:46:05 +00003501 << FixItHint::CreateInsertion(SS.getRange().getBegin(), "using ");
John McCalla0097262009-12-11 02:10:03 +00003502 }
3503
John McCall3f746822009-11-17 05:59:44 +00003504 NamedDecl *UD = BuildUsingDeclaration(S, AS, UsingLoc, SS,
Abramo Bagnara8de74e92010-08-12 11:46:03 +00003505 TargetNameInfo, AttrList,
John McCalle61f2ba2009-11-18 02:36:19 +00003506 /* IsInstantiation */ false,
3507 IsTypeName, TypenameLoc);
John McCallb96ec562009-12-04 22:46:56 +00003508 if (UD)
3509 PushOnScopeChains(UD, S, /*AddToContext*/ false);
Mike Stump11289f42009-09-09 15:08:12 +00003510
Anders Carlsson696a3f12009-08-28 05:40:36 +00003511 return DeclPtrTy::make(UD);
3512}
3513
Douglas Gregor1d9ef842010-07-07 23:08:52 +00003514/// \brief Determine whether a using declaration considers the given
3515/// declarations as "equivalent", e.g., if they are redeclarations of
3516/// the same entity or are both typedefs of the same type.
3517static bool
3518IsEquivalentForUsingDecl(ASTContext &Context, NamedDecl *D1, NamedDecl *D2,
3519 bool &SuppressRedeclaration) {
3520 if (D1->getCanonicalDecl() == D2->getCanonicalDecl()) {
3521 SuppressRedeclaration = false;
3522 return true;
3523 }
3524
3525 if (TypedefDecl *TD1 = dyn_cast<TypedefDecl>(D1))
3526 if (TypedefDecl *TD2 = dyn_cast<TypedefDecl>(D2)) {
3527 SuppressRedeclaration = true;
3528 return Context.hasSameType(TD1->getUnderlyingType(),
3529 TD2->getUnderlyingType());
3530 }
3531
3532 return false;
3533}
3534
3535
John McCall84d87672009-12-10 09:41:52 +00003536/// Determines whether to create a using shadow decl for a particular
3537/// decl, given the set of decls existing prior to this using lookup.
3538bool Sema::CheckUsingShadowDecl(UsingDecl *Using, NamedDecl *Orig,
3539 const LookupResult &Previous) {
3540 // Diagnose finding a decl which is not from a base class of the
3541 // current class. We do this now because there are cases where this
3542 // function will silently decide not to build a shadow decl, which
3543 // will pre-empt further diagnostics.
3544 //
3545 // We don't need to do this in C++0x because we do the check once on
3546 // the qualifier.
3547 //
3548 // FIXME: diagnose the following if we care enough:
3549 // struct A { int foo; };
3550 // struct B : A { using A::foo; };
3551 // template <class T> struct C : A {};
3552 // template <class T> struct D : C<T> { using B::foo; } // <---
3553 // This is invalid (during instantiation) in C++03 because B::foo
3554 // resolves to the using decl in B, which is not a base class of D<T>.
3555 // We can't diagnose it immediately because C<T> is an unknown
3556 // specialization. The UsingShadowDecl in D<T> then points directly
3557 // to A::foo, which will look well-formed when we instantiate.
3558 // The right solution is to not collapse the shadow-decl chain.
3559 if (!getLangOptions().CPlusPlus0x && CurContext->isRecord()) {
3560 DeclContext *OrigDC = Orig->getDeclContext();
3561
3562 // Handle enums and anonymous structs.
3563 if (isa<EnumDecl>(OrigDC)) OrigDC = OrigDC->getParent();
3564 CXXRecordDecl *OrigRec = cast<CXXRecordDecl>(OrigDC);
3565 while (OrigRec->isAnonymousStructOrUnion())
3566 OrigRec = cast<CXXRecordDecl>(OrigRec->getDeclContext());
3567
3568 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(OrigRec)) {
3569 if (OrigDC == CurContext) {
3570 Diag(Using->getLocation(),
3571 diag::err_using_decl_nested_name_specifier_is_current_class)
3572 << Using->getNestedNameRange();
3573 Diag(Orig->getLocation(), diag::note_using_decl_target);
3574 return true;
3575 }
3576
3577 Diag(Using->getNestedNameRange().getBegin(),
3578 diag::err_using_decl_nested_name_specifier_is_not_base_class)
3579 << Using->getTargetNestedNameDecl()
3580 << cast<CXXRecordDecl>(CurContext)
3581 << Using->getNestedNameRange();
3582 Diag(Orig->getLocation(), diag::note_using_decl_target);
3583 return true;
3584 }
3585 }
3586
3587 if (Previous.empty()) return false;
3588
3589 NamedDecl *Target = Orig;
3590 if (isa<UsingShadowDecl>(Target))
3591 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
3592
John McCalla17e83e2009-12-11 02:33:26 +00003593 // If the target happens to be one of the previous declarations, we
3594 // don't have a conflict.
3595 //
3596 // FIXME: but we might be increasing its access, in which case we
3597 // should redeclare it.
3598 NamedDecl *NonTag = 0, *Tag = 0;
3599 for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
3600 I != E; ++I) {
3601 NamedDecl *D = (*I)->getUnderlyingDecl();
Douglas Gregor1d9ef842010-07-07 23:08:52 +00003602 bool Result;
3603 if (IsEquivalentForUsingDecl(Context, D, Target, Result))
3604 return Result;
John McCalla17e83e2009-12-11 02:33:26 +00003605
3606 (isa<TagDecl>(D) ? Tag : NonTag) = D;
3607 }
3608
John McCall84d87672009-12-10 09:41:52 +00003609 if (Target->isFunctionOrFunctionTemplate()) {
3610 FunctionDecl *FD;
3611 if (isa<FunctionTemplateDecl>(Target))
3612 FD = cast<FunctionTemplateDecl>(Target)->getTemplatedDecl();
3613 else
3614 FD = cast<FunctionDecl>(Target);
3615
3616 NamedDecl *OldDecl = 0;
John McCalle9cccd82010-06-16 08:42:20 +00003617 switch (CheckOverload(0, FD, Previous, OldDecl, /*IsForUsingDecl*/ true)) {
John McCall84d87672009-12-10 09:41:52 +00003618 case Ovl_Overload:
3619 return false;
3620
3621 case Ovl_NonFunction:
John McCalle29c5cd2009-12-10 19:51:03 +00003622 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall84d87672009-12-10 09:41:52 +00003623 break;
3624
3625 // We found a decl with the exact signature.
3626 case Ovl_Match:
John McCall84d87672009-12-10 09:41:52 +00003627 // If we're in a record, we want to hide the target, so we
3628 // return true (without a diagnostic) to tell the caller not to
3629 // build a shadow decl.
3630 if (CurContext->isRecord())
3631 return true;
3632
3633 // If we're not in a record, this is an error.
John McCalle29c5cd2009-12-10 19:51:03 +00003634 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall84d87672009-12-10 09:41:52 +00003635 break;
3636 }
3637
3638 Diag(Target->getLocation(), diag::note_using_decl_target);
3639 Diag(OldDecl->getLocation(), diag::note_using_decl_conflict);
3640 return true;
3641 }
3642
3643 // Target is not a function.
3644
John McCall84d87672009-12-10 09:41:52 +00003645 if (isa<TagDecl>(Target)) {
3646 // No conflict between a tag and a non-tag.
3647 if (!Tag) return false;
3648
John McCalle29c5cd2009-12-10 19:51:03 +00003649 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall84d87672009-12-10 09:41:52 +00003650 Diag(Target->getLocation(), diag::note_using_decl_target);
3651 Diag(Tag->getLocation(), diag::note_using_decl_conflict);
3652 return true;
3653 }
3654
3655 // No conflict between a tag and a non-tag.
3656 if (!NonTag) return false;
3657
John McCalle29c5cd2009-12-10 19:51:03 +00003658 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall84d87672009-12-10 09:41:52 +00003659 Diag(Target->getLocation(), diag::note_using_decl_target);
3660 Diag(NonTag->getLocation(), diag::note_using_decl_conflict);
3661 return true;
3662}
3663
John McCall3f746822009-11-17 05:59:44 +00003664/// Builds a shadow declaration corresponding to a 'using' declaration.
John McCall3969e302009-12-08 07:46:18 +00003665UsingShadowDecl *Sema::BuildUsingShadowDecl(Scope *S,
John McCall3969e302009-12-08 07:46:18 +00003666 UsingDecl *UD,
3667 NamedDecl *Orig) {
John McCall3f746822009-11-17 05:59:44 +00003668
3669 // If we resolved to another shadow declaration, just coalesce them.
John McCall3969e302009-12-08 07:46:18 +00003670 NamedDecl *Target = Orig;
3671 if (isa<UsingShadowDecl>(Target)) {
3672 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
3673 assert(!isa<UsingShadowDecl>(Target) && "nested shadow declaration");
John McCall3f746822009-11-17 05:59:44 +00003674 }
3675
3676 UsingShadowDecl *Shadow
John McCall3969e302009-12-08 07:46:18 +00003677 = UsingShadowDecl::Create(Context, CurContext,
3678 UD->getLocation(), UD, Target);
John McCall3f746822009-11-17 05:59:44 +00003679 UD->addShadowDecl(Shadow);
3680
3681 if (S)
John McCall3969e302009-12-08 07:46:18 +00003682 PushOnScopeChains(Shadow, S);
John McCall3f746822009-11-17 05:59:44 +00003683 else
John McCall3969e302009-12-08 07:46:18 +00003684 CurContext->addDecl(Shadow);
John McCall84d87672009-12-10 09:41:52 +00003685 Shadow->setAccess(UD->getAccess());
John McCall3f746822009-11-17 05:59:44 +00003686
John McCallda4458e2010-03-31 01:36:47 +00003687 // Register it as a conversion if appropriate.
3688 if (Shadow->getDeclName().getNameKind()
3689 == DeclarationName::CXXConversionFunctionName)
3690 cast<CXXRecordDecl>(CurContext)->addConversionFunction(Shadow);
3691
John McCall3969e302009-12-08 07:46:18 +00003692 if (Orig->isInvalidDecl() || UD->isInvalidDecl())
3693 Shadow->setInvalidDecl();
3694
John McCall84d87672009-12-10 09:41:52 +00003695 return Shadow;
3696}
John McCall3969e302009-12-08 07:46:18 +00003697
John McCall84d87672009-12-10 09:41:52 +00003698/// Hides a using shadow declaration. This is required by the current
3699/// using-decl implementation when a resolvable using declaration in a
3700/// class is followed by a declaration which would hide or override
3701/// one or more of the using decl's targets; for example:
3702///
3703/// struct Base { void foo(int); };
3704/// struct Derived : Base {
3705/// using Base::foo;
3706/// void foo(int);
3707/// };
3708///
3709/// The governing language is C++03 [namespace.udecl]p12:
3710///
3711/// When a using-declaration brings names from a base class into a
3712/// derived class scope, member functions in the derived class
3713/// override and/or hide member functions with the same name and
3714/// parameter types in a base class (rather than conflicting).
3715///
3716/// There are two ways to implement this:
3717/// (1) optimistically create shadow decls when they're not hidden
3718/// by existing declarations, or
3719/// (2) don't create any shadow decls (or at least don't make them
3720/// visible) until we've fully parsed/instantiated the class.
3721/// The problem with (1) is that we might have to retroactively remove
3722/// a shadow decl, which requires several O(n) operations because the
3723/// decl structures are (very reasonably) not designed for removal.
3724/// (2) avoids this but is very fiddly and phase-dependent.
3725void Sema::HideUsingShadowDecl(Scope *S, UsingShadowDecl *Shadow) {
John McCallda4458e2010-03-31 01:36:47 +00003726 if (Shadow->getDeclName().getNameKind() ==
3727 DeclarationName::CXXConversionFunctionName)
3728 cast<CXXRecordDecl>(Shadow->getDeclContext())->removeConversion(Shadow);
3729
John McCall84d87672009-12-10 09:41:52 +00003730 // Remove it from the DeclContext...
3731 Shadow->getDeclContext()->removeDecl(Shadow);
John McCall3969e302009-12-08 07:46:18 +00003732
John McCall84d87672009-12-10 09:41:52 +00003733 // ...and the scope, if applicable...
3734 if (S) {
3735 S->RemoveDecl(DeclPtrTy::make(static_cast<Decl*>(Shadow)));
3736 IdResolver.RemoveDecl(Shadow);
John McCall3969e302009-12-08 07:46:18 +00003737 }
3738
John McCall84d87672009-12-10 09:41:52 +00003739 // ...and the using decl.
3740 Shadow->getUsingDecl()->removeShadowDecl(Shadow);
3741
3742 // TODO: complain somehow if Shadow was used. It shouldn't
John McCallda4458e2010-03-31 01:36:47 +00003743 // be possible for this to happen, because...?
John McCall3f746822009-11-17 05:59:44 +00003744}
3745
John McCalle61f2ba2009-11-18 02:36:19 +00003746/// Builds a using declaration.
3747///
3748/// \param IsInstantiation - Whether this call arises from an
3749/// instantiation of an unresolved using declaration. We treat
3750/// the lookup differently for these declarations.
John McCall3f746822009-11-17 05:59:44 +00003751NamedDecl *Sema::BuildUsingDeclaration(Scope *S, AccessSpecifier AS,
3752 SourceLocation UsingLoc,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00003753 CXXScopeSpec &SS,
Abramo Bagnara8de74e92010-08-12 11:46:03 +00003754 const DeclarationNameInfo &NameInfo,
Anders Carlsson696a3f12009-08-28 05:40:36 +00003755 AttributeList *AttrList,
John McCalle61f2ba2009-11-18 02:36:19 +00003756 bool IsInstantiation,
3757 bool IsTypeName,
3758 SourceLocation TypenameLoc) {
Anders Carlsson696a3f12009-08-28 05:40:36 +00003759 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
Abramo Bagnara8de74e92010-08-12 11:46:03 +00003760 SourceLocation IdentLoc = NameInfo.getLoc();
Anders Carlsson696a3f12009-08-28 05:40:36 +00003761 assert(IdentLoc.isValid() && "Invalid TargetName location.");
Eli Friedman561154d2009-08-27 05:09:36 +00003762
Anders Carlssonf038fc22009-08-28 05:49:21 +00003763 // FIXME: We ignore attributes for now.
3764 delete AttrList;
Mike Stump11289f42009-09-09 15:08:12 +00003765
Anders Carlsson59140b32009-08-28 03:16:11 +00003766 if (SS.isEmpty()) {
3767 Diag(IdentLoc, diag::err_using_requires_qualname);
Anders Carlsson696a3f12009-08-28 05:40:36 +00003768 return 0;
Anders Carlsson59140b32009-08-28 03:16:11 +00003769 }
Mike Stump11289f42009-09-09 15:08:12 +00003770
John McCall84d87672009-12-10 09:41:52 +00003771 // Do the redeclaration lookup in the current scope.
Abramo Bagnara8de74e92010-08-12 11:46:03 +00003772 LookupResult Previous(*this, NameInfo, LookupUsingDeclName,
John McCall84d87672009-12-10 09:41:52 +00003773 ForRedeclaration);
3774 Previous.setHideTags(false);
3775 if (S) {
3776 LookupName(Previous, S);
3777
3778 // It is really dumb that we have to do this.
3779 LookupResult::Filter F = Previous.makeFilter();
3780 while (F.hasNext()) {
3781 NamedDecl *D = F.next();
3782 if (!isDeclInScope(D, CurContext, S))
3783 F.erase();
3784 }
3785 F.done();
3786 } else {
3787 assert(IsInstantiation && "no scope in non-instantiation");
3788 assert(CurContext->isRecord() && "scope not record in instantiation");
3789 LookupQualifiedName(Previous, CurContext);
3790 }
3791
Mike Stump11289f42009-09-09 15:08:12 +00003792 NestedNameSpecifier *NNS =
Anders Carlsson59140b32009-08-28 03:16:11 +00003793 static_cast<NestedNameSpecifier *>(SS.getScopeRep());
3794
John McCall84d87672009-12-10 09:41:52 +00003795 // Check for invalid redeclarations.
3796 if (CheckUsingDeclRedeclaration(UsingLoc, IsTypeName, SS, IdentLoc, Previous))
3797 return 0;
3798
3799 // Check for bad qualifiers.
John McCallb96ec562009-12-04 22:46:56 +00003800 if (CheckUsingDeclQualifier(UsingLoc, SS, IdentLoc))
3801 return 0;
3802
John McCall84c16cf2009-11-12 03:15:40 +00003803 DeclContext *LookupContext = computeDeclContext(SS);
John McCallb96ec562009-12-04 22:46:56 +00003804 NamedDecl *D;
John McCall84c16cf2009-11-12 03:15:40 +00003805 if (!LookupContext) {
John McCalle61f2ba2009-11-18 02:36:19 +00003806 if (IsTypeName) {
John McCallb96ec562009-12-04 22:46:56 +00003807 // FIXME: not all declaration name kinds are legal here
3808 D = UnresolvedUsingTypenameDecl::Create(Context, CurContext,
3809 UsingLoc, TypenameLoc,
3810 SS.getRange(), NNS,
Abramo Bagnara8de74e92010-08-12 11:46:03 +00003811 IdentLoc, NameInfo.getName());
John McCallb96ec562009-12-04 22:46:56 +00003812 } else {
3813 D = UnresolvedUsingValueDecl::Create(Context, CurContext,
Abramo Bagnara8de74e92010-08-12 11:46:03 +00003814 UsingLoc, SS.getRange(),
3815 NNS, NameInfo);
John McCalle61f2ba2009-11-18 02:36:19 +00003816 }
John McCallb96ec562009-12-04 22:46:56 +00003817 } else {
Abramo Bagnara8de74e92010-08-12 11:46:03 +00003818 D = UsingDecl::Create(Context, CurContext,
3819 SS.getRange(), UsingLoc, NNS, NameInfo,
John McCallb96ec562009-12-04 22:46:56 +00003820 IsTypeName);
Anders Carlssonf038fc22009-08-28 05:49:21 +00003821 }
John McCallb96ec562009-12-04 22:46:56 +00003822 D->setAccess(AS);
3823 CurContext->addDecl(D);
3824
3825 if (!LookupContext) return D;
3826 UsingDecl *UD = cast<UsingDecl>(D);
Mike Stump11289f42009-09-09 15:08:12 +00003827
John McCall0b66eb32010-05-01 00:40:08 +00003828 if (RequireCompleteDeclContext(SS, LookupContext)) {
John McCall3969e302009-12-08 07:46:18 +00003829 UD->setInvalidDecl();
3830 return UD;
Anders Carlsson59140b32009-08-28 03:16:11 +00003831 }
3832
John McCall3969e302009-12-08 07:46:18 +00003833 // Look up the target name.
3834
Abramo Bagnara8de74e92010-08-12 11:46:03 +00003835 LookupResult R(*this, NameInfo, LookupOrdinaryName);
John McCalle61f2ba2009-11-18 02:36:19 +00003836
John McCall3969e302009-12-08 07:46:18 +00003837 // Unlike most lookups, we don't always want to hide tag
3838 // declarations: tag names are visible through the using declaration
3839 // even if hidden by ordinary names, *except* in a dependent context
3840 // where it's important for the sanity of two-phase lookup.
John McCalle61f2ba2009-11-18 02:36:19 +00003841 if (!IsInstantiation)
3842 R.setHideTags(false);
John McCall3f746822009-11-17 05:59:44 +00003843
John McCall27b18f82009-11-17 02:14:36 +00003844 LookupQualifiedName(R, LookupContext);
Mike Stump11289f42009-09-09 15:08:12 +00003845
John McCall9f3059a2009-10-09 21:13:30 +00003846 if (R.empty()) {
Douglas Gregore40876a2009-10-13 21:16:44 +00003847 Diag(IdentLoc, diag::err_no_member)
Abramo Bagnara8de74e92010-08-12 11:46:03 +00003848 << NameInfo.getName() << LookupContext << SS.getRange();
John McCallb96ec562009-12-04 22:46:56 +00003849 UD->setInvalidDecl();
3850 return UD;
Douglas Gregorfec52632009-06-20 00:51:54 +00003851 }
3852
John McCallb96ec562009-12-04 22:46:56 +00003853 if (R.isAmbiguous()) {
3854 UD->setInvalidDecl();
3855 return UD;
3856 }
Mike Stump11289f42009-09-09 15:08:12 +00003857
John McCalle61f2ba2009-11-18 02:36:19 +00003858 if (IsTypeName) {
3859 // If we asked for a typename and got a non-type decl, error out.
John McCallb96ec562009-12-04 22:46:56 +00003860 if (!R.getAsSingle<TypeDecl>()) {
John McCalle61f2ba2009-11-18 02:36:19 +00003861 Diag(IdentLoc, diag::err_using_typename_non_type);
3862 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I)
3863 Diag((*I)->getUnderlyingDecl()->getLocation(),
3864 diag::note_using_decl_target);
John McCallb96ec562009-12-04 22:46:56 +00003865 UD->setInvalidDecl();
3866 return UD;
John McCalle61f2ba2009-11-18 02:36:19 +00003867 }
3868 } else {
3869 // If we asked for a non-typename and we got a type, error out,
3870 // but only if this is an instantiation of an unresolved using
3871 // decl. Otherwise just silently find the type name.
John McCallb96ec562009-12-04 22:46:56 +00003872 if (IsInstantiation && R.getAsSingle<TypeDecl>()) {
John McCalle61f2ba2009-11-18 02:36:19 +00003873 Diag(IdentLoc, diag::err_using_dependent_value_is_type);
3874 Diag(R.getFoundDecl()->getLocation(), diag::note_using_decl_target);
John McCallb96ec562009-12-04 22:46:56 +00003875 UD->setInvalidDecl();
3876 return UD;
John McCalle61f2ba2009-11-18 02:36:19 +00003877 }
Anders Carlsson59140b32009-08-28 03:16:11 +00003878 }
3879
Anders Carlsson5a9c5ac2009-08-28 03:35:18 +00003880 // C++0x N2914 [namespace.udecl]p6:
3881 // A using-declaration shall not name a namespace.
John McCallb96ec562009-12-04 22:46:56 +00003882 if (R.getAsSingle<NamespaceDecl>()) {
Anders Carlsson5a9c5ac2009-08-28 03:35:18 +00003883 Diag(IdentLoc, diag::err_using_decl_can_not_refer_to_namespace)
3884 << SS.getRange();
John McCallb96ec562009-12-04 22:46:56 +00003885 UD->setInvalidDecl();
3886 return UD;
Anders Carlsson5a9c5ac2009-08-28 03:35:18 +00003887 }
Mike Stump11289f42009-09-09 15:08:12 +00003888
John McCall84d87672009-12-10 09:41:52 +00003889 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) {
3890 if (!CheckUsingShadowDecl(UD, *I, Previous))
3891 BuildUsingShadowDecl(S, UD, *I);
3892 }
John McCall3f746822009-11-17 05:59:44 +00003893
3894 return UD;
Douglas Gregorfec52632009-06-20 00:51:54 +00003895}
3896
John McCall84d87672009-12-10 09:41:52 +00003897/// Checks that the given using declaration is not an invalid
3898/// redeclaration. Note that this is checking only for the using decl
3899/// itself, not for any ill-formedness among the UsingShadowDecls.
3900bool Sema::CheckUsingDeclRedeclaration(SourceLocation UsingLoc,
3901 bool isTypeName,
3902 const CXXScopeSpec &SS,
3903 SourceLocation NameLoc,
3904 const LookupResult &Prev) {
3905 // C++03 [namespace.udecl]p8:
3906 // C++0x [namespace.udecl]p10:
3907 // A using-declaration is a declaration and can therefore be used
3908 // repeatedly where (and only where) multiple declarations are
3909 // allowed.
Douglas Gregor4b718ee2010-05-06 23:31:27 +00003910 //
3911 // That's in non-member contexts.
3912 if (!CurContext->getLookupContext()->isRecord())
John McCall84d87672009-12-10 09:41:52 +00003913 return false;
3914
3915 NestedNameSpecifier *Qual
3916 = static_cast<NestedNameSpecifier*>(SS.getScopeRep());
3917
3918 for (LookupResult::iterator I = Prev.begin(), E = Prev.end(); I != E; ++I) {
3919 NamedDecl *D = *I;
3920
3921 bool DTypename;
3922 NestedNameSpecifier *DQual;
3923 if (UsingDecl *UD = dyn_cast<UsingDecl>(D)) {
3924 DTypename = UD->isTypeName();
3925 DQual = UD->getTargetNestedNameDecl();
3926 } else if (UnresolvedUsingValueDecl *UD
3927 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
3928 DTypename = false;
3929 DQual = UD->getTargetNestedNameSpecifier();
3930 } else if (UnresolvedUsingTypenameDecl *UD
3931 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
3932 DTypename = true;
3933 DQual = UD->getTargetNestedNameSpecifier();
3934 } else continue;
3935
3936 // using decls differ if one says 'typename' and the other doesn't.
3937 // FIXME: non-dependent using decls?
3938 if (isTypeName != DTypename) continue;
3939
3940 // using decls differ if they name different scopes (but note that
3941 // template instantiation can cause this check to trigger when it
3942 // didn't before instantiation).
3943 if (Context.getCanonicalNestedNameSpecifier(Qual) !=
3944 Context.getCanonicalNestedNameSpecifier(DQual))
3945 continue;
3946
3947 Diag(NameLoc, diag::err_using_decl_redeclaration) << SS.getRange();
John McCalle29c5cd2009-12-10 19:51:03 +00003948 Diag(D->getLocation(), diag::note_using_decl) << 1;
John McCall84d87672009-12-10 09:41:52 +00003949 return true;
3950 }
3951
3952 return false;
3953}
3954
John McCall3969e302009-12-08 07:46:18 +00003955
John McCallb96ec562009-12-04 22:46:56 +00003956/// Checks that the given nested-name qualifier used in a using decl
3957/// in the current context is appropriately related to the current
3958/// scope. If an error is found, diagnoses it and returns true.
3959bool Sema::CheckUsingDeclQualifier(SourceLocation UsingLoc,
3960 const CXXScopeSpec &SS,
3961 SourceLocation NameLoc) {
John McCall3969e302009-12-08 07:46:18 +00003962 DeclContext *NamedContext = computeDeclContext(SS);
John McCallb96ec562009-12-04 22:46:56 +00003963
John McCall3969e302009-12-08 07:46:18 +00003964 if (!CurContext->isRecord()) {
3965 // C++03 [namespace.udecl]p3:
3966 // C++0x [namespace.udecl]p8:
3967 // A using-declaration for a class member shall be a member-declaration.
3968
3969 // If we weren't able to compute a valid scope, it must be a
3970 // dependent class scope.
3971 if (!NamedContext || NamedContext->isRecord()) {
3972 Diag(NameLoc, diag::err_using_decl_can_not_refer_to_class_member)
3973 << SS.getRange();
3974 return true;
3975 }
3976
3977 // Otherwise, everything is known to be fine.
3978 return false;
3979 }
3980
3981 // The current scope is a record.
3982
3983 // If the named context is dependent, we can't decide much.
3984 if (!NamedContext) {
3985 // FIXME: in C++0x, we can diagnose if we can prove that the
3986 // nested-name-specifier does not refer to a base class, which is
3987 // still possible in some cases.
3988
3989 // Otherwise we have to conservatively report that things might be
3990 // okay.
3991 return false;
3992 }
3993
3994 if (!NamedContext->isRecord()) {
3995 // Ideally this would point at the last name in the specifier,
3996 // but we don't have that level of source info.
3997 Diag(SS.getRange().getBegin(),
3998 diag::err_using_decl_nested_name_specifier_is_not_class)
3999 << (NestedNameSpecifier*) SS.getScopeRep() << SS.getRange();
4000 return true;
4001 }
4002
4003 if (getLangOptions().CPlusPlus0x) {
4004 // C++0x [namespace.udecl]p3:
4005 // In a using-declaration used as a member-declaration, the
4006 // nested-name-specifier shall name a base class of the class
4007 // being defined.
4008
4009 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(
4010 cast<CXXRecordDecl>(NamedContext))) {
4011 if (CurContext == NamedContext) {
4012 Diag(NameLoc,
4013 diag::err_using_decl_nested_name_specifier_is_current_class)
4014 << SS.getRange();
4015 return true;
4016 }
4017
4018 Diag(SS.getRange().getBegin(),
4019 diag::err_using_decl_nested_name_specifier_is_not_base_class)
4020 << (NestedNameSpecifier*) SS.getScopeRep()
4021 << cast<CXXRecordDecl>(CurContext)
4022 << SS.getRange();
4023 return true;
4024 }
4025
4026 return false;
4027 }
4028
4029 // C++03 [namespace.udecl]p4:
4030 // A using-declaration used as a member-declaration shall refer
4031 // to a member of a base class of the class being defined [etc.].
4032
4033 // Salient point: SS doesn't have to name a base class as long as
4034 // lookup only finds members from base classes. Therefore we can
4035 // diagnose here only if we can prove that that can't happen,
4036 // i.e. if the class hierarchies provably don't intersect.
4037
4038 // TODO: it would be nice if "definitely valid" results were cached
4039 // in the UsingDecl and UsingShadowDecl so that these checks didn't
4040 // need to be repeated.
4041
4042 struct UserData {
4043 llvm::DenseSet<const CXXRecordDecl*> Bases;
4044
4045 static bool collect(const CXXRecordDecl *Base, void *OpaqueData) {
4046 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
4047 Data->Bases.insert(Base);
4048 return true;
4049 }
4050
4051 bool hasDependentBases(const CXXRecordDecl *Class) {
4052 return !Class->forallBases(collect, this);
4053 }
4054
4055 /// Returns true if the base is dependent or is one of the
4056 /// accumulated base classes.
4057 static bool doesNotContain(const CXXRecordDecl *Base, void *OpaqueData) {
4058 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
4059 return !Data->Bases.count(Base);
4060 }
4061
4062 bool mightShareBases(const CXXRecordDecl *Class) {
4063 return Bases.count(Class) || !Class->forallBases(doesNotContain, this);
4064 }
4065 };
4066
4067 UserData Data;
4068
4069 // Returns false if we find a dependent base.
4070 if (Data.hasDependentBases(cast<CXXRecordDecl>(CurContext)))
4071 return false;
4072
4073 // Returns false if the class has a dependent base or if it or one
4074 // of its bases is present in the base set of the current context.
4075 if (Data.mightShareBases(cast<CXXRecordDecl>(NamedContext)))
4076 return false;
4077
4078 Diag(SS.getRange().getBegin(),
4079 diag::err_using_decl_nested_name_specifier_is_not_base_class)
4080 << (NestedNameSpecifier*) SS.getScopeRep()
4081 << cast<CXXRecordDecl>(CurContext)
4082 << SS.getRange();
4083
4084 return true;
John McCallb96ec562009-12-04 22:46:56 +00004085}
4086
Mike Stump11289f42009-09-09 15:08:12 +00004087Sema::DeclPtrTy Sema::ActOnNamespaceAliasDef(Scope *S,
Anders Carlsson47952ae2009-03-28 22:53:22 +00004088 SourceLocation NamespaceLoc,
Chris Lattner83f095c2009-03-28 19:18:32 +00004089 SourceLocation AliasLoc,
4090 IdentifierInfo *Alias,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00004091 CXXScopeSpec &SS,
Anders Carlsson47952ae2009-03-28 22:53:22 +00004092 SourceLocation IdentLoc,
4093 IdentifierInfo *Ident) {
Mike Stump11289f42009-09-09 15:08:12 +00004094
Anders Carlssonbb1e4722009-03-28 23:53:49 +00004095 // Lookup the namespace name.
John McCall27b18f82009-11-17 02:14:36 +00004096 LookupResult R(*this, Ident, IdentLoc, LookupNamespaceName);
4097 LookupParsedName(R, S, &SS);
Anders Carlssonbb1e4722009-03-28 23:53:49 +00004098
Anders Carlssondca83c42009-03-28 06:23:46 +00004099 // Check if we have a previous declaration with the same name.
Douglas Gregor5cf8d672010-05-03 15:37:31 +00004100 NamedDecl *PrevDecl
4101 = LookupSingleName(S, Alias, AliasLoc, LookupOrdinaryName,
4102 ForRedeclaration);
4103 if (PrevDecl && !isDeclInScope(PrevDecl, CurContext, S))
4104 PrevDecl = 0;
4105
4106 if (PrevDecl) {
Anders Carlssonbb1e4722009-03-28 23:53:49 +00004107 if (NamespaceAliasDecl *AD = dyn_cast<NamespaceAliasDecl>(PrevDecl)) {
Mike Stump11289f42009-09-09 15:08:12 +00004108 // We already have an alias with the same name that points to the same
Anders Carlssonbb1e4722009-03-28 23:53:49 +00004109 // namespace, so don't create a new one.
Douglas Gregor4667eff2010-03-26 22:59:39 +00004110 // FIXME: At some point, we'll want to create the (redundant)
4111 // declaration to maintain better source information.
John McCall9f3059a2009-10-09 21:13:30 +00004112 if (!R.isAmbiguous() && !R.empty() &&
Douglas Gregor4667eff2010-03-26 22:59:39 +00004113 AD->getNamespace()->Equals(getNamespaceDecl(R.getFoundDecl())))
Anders Carlssonbb1e4722009-03-28 23:53:49 +00004114 return DeclPtrTy();
4115 }
Mike Stump11289f42009-09-09 15:08:12 +00004116
Anders Carlssondca83c42009-03-28 06:23:46 +00004117 unsigned DiagID = isa<NamespaceDecl>(PrevDecl) ? diag::err_redefinition :
4118 diag::err_redefinition_different_kind;
4119 Diag(AliasLoc, DiagID) << Alias;
4120 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Chris Lattner83f095c2009-03-28 19:18:32 +00004121 return DeclPtrTy();
Anders Carlssondca83c42009-03-28 06:23:46 +00004122 }
4123
John McCall27b18f82009-11-17 02:14:36 +00004124 if (R.isAmbiguous())
Chris Lattner83f095c2009-03-28 19:18:32 +00004125 return DeclPtrTy();
Mike Stump11289f42009-09-09 15:08:12 +00004126
John McCall9f3059a2009-10-09 21:13:30 +00004127 if (R.empty()) {
Douglas Gregor9629e9a2010-06-29 18:55:19 +00004128 if (DeclarationName Corrected = CorrectTypo(R, S, &SS, 0, false,
4129 CTC_NoKeywords, 0)) {
4130 if (R.getAsSingle<NamespaceDecl>() ||
4131 R.getAsSingle<NamespaceAliasDecl>()) {
4132 if (DeclContext *DC = computeDeclContext(SS, false))
4133 Diag(IdentLoc, diag::err_using_directive_member_suggest)
4134 << Ident << DC << Corrected << SS.getRange()
4135 << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
4136 else
4137 Diag(IdentLoc, diag::err_using_directive_suggest)
4138 << Ident << Corrected
4139 << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
4140
4141 Diag(R.getFoundDecl()->getLocation(), diag::note_namespace_defined_here)
4142 << Corrected;
4143
4144 Ident = Corrected.getAsIdentifierInfo();
Douglas Gregorc048c522010-06-29 19:27:42 +00004145 } else {
4146 R.clear();
4147 R.setLookupName(Ident);
Douglas Gregor9629e9a2010-06-29 18:55:19 +00004148 }
4149 }
4150
4151 if (R.empty()) {
4152 Diag(NamespaceLoc, diag::err_expected_namespace_name) << SS.getRange();
4153 return DeclPtrTy();
4154 }
Anders Carlssonac2c9652009-03-28 06:42:02 +00004155 }
Mike Stump11289f42009-09-09 15:08:12 +00004156
Fariborz Jahanian423a81f2009-06-19 19:55:27 +00004157 NamespaceAliasDecl *AliasDecl =
Mike Stump11289f42009-09-09 15:08:12 +00004158 NamespaceAliasDecl::Create(Context, CurContext, NamespaceLoc, AliasLoc,
4159 Alias, SS.getRange(),
Douglas Gregor18231932009-05-30 06:48:27 +00004160 (NestedNameSpecifier *)SS.getScopeRep(),
John McCall9f3059a2009-10-09 21:13:30 +00004161 IdentLoc, R.getFoundDecl());
Mike Stump11289f42009-09-09 15:08:12 +00004162
John McCalld8d0d432010-02-16 06:53:13 +00004163 PushOnScopeChains(AliasDecl, S);
Anders Carlssonff25fdf2009-03-28 22:58:02 +00004164 return DeclPtrTy::make(AliasDecl);
Anders Carlsson9205d552009-03-28 05:27:17 +00004165}
4166
Douglas Gregora57478e2010-05-01 15:04:51 +00004167namespace {
4168 /// \brief Scoped object used to handle the state changes required in Sema
4169 /// to implicitly define the body of a C++ member function;
4170 class ImplicitlyDefinedFunctionScope {
4171 Sema &S;
4172 DeclContext *PreviousContext;
4173
4174 public:
4175 ImplicitlyDefinedFunctionScope(Sema &S, CXXMethodDecl *Method)
4176 : S(S), PreviousContext(S.CurContext)
4177 {
4178 S.CurContext = Method;
4179 S.PushFunctionScope();
4180 S.PushExpressionEvaluationContext(Sema::PotentiallyEvaluated);
4181 }
4182
4183 ~ImplicitlyDefinedFunctionScope() {
4184 S.PopExpressionEvaluationContext();
4185 S.PopFunctionOrBlockScope();
4186 S.CurContext = PreviousContext;
4187 }
4188 };
4189}
4190
Douglas Gregor0be31a22010-07-02 17:43:08 +00004191CXXConstructorDecl *Sema::DeclareImplicitDefaultConstructor(
4192 CXXRecordDecl *ClassDecl) {
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00004193 // C++ [class.ctor]p5:
4194 // A default constructor for a class X is a constructor of class X
4195 // that can be called without an argument. If there is no
4196 // user-declared constructor for class X, a default constructor is
4197 // implicitly declared. An implicitly-declared default constructor
4198 // is an inline public member of its class.
Douglas Gregor9672f922010-07-03 00:47:00 +00004199 assert(!ClassDecl->hasUserDeclaredConstructor() &&
4200 "Should not build implicit default constructor!");
4201
Douglas Gregor6d880b12010-07-01 22:31:05 +00004202 // C++ [except.spec]p14:
4203 // An implicitly declared special member function (Clause 12) shall have an
4204 // exception-specification. [...]
4205 ImplicitExceptionSpecification ExceptSpec(Context);
4206
4207 // Direct base-class destructors.
4208 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
4209 BEnd = ClassDecl->bases_end();
4210 B != BEnd; ++B) {
4211 if (B->isVirtual()) // Handled below.
4212 continue;
4213
Douglas Gregor9672f922010-07-03 00:47:00 +00004214 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
4215 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
4216 if (!BaseClassDecl->hasDeclaredDefaultConstructor())
4217 ExceptSpec.CalledDecl(DeclareImplicitDefaultConstructor(BaseClassDecl));
4218 else if (CXXConstructorDecl *Constructor
4219 = BaseClassDecl->getDefaultConstructor())
Douglas Gregor6d880b12010-07-01 22:31:05 +00004220 ExceptSpec.CalledDecl(Constructor);
Douglas Gregor9672f922010-07-03 00:47:00 +00004221 }
Douglas Gregor6d880b12010-07-01 22:31:05 +00004222 }
4223
4224 // Virtual base-class destructors.
4225 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
4226 BEnd = ClassDecl->vbases_end();
4227 B != BEnd; ++B) {
Douglas Gregor9672f922010-07-03 00:47:00 +00004228 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
4229 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
4230 if (!BaseClassDecl->hasDeclaredDefaultConstructor())
4231 ExceptSpec.CalledDecl(DeclareImplicitDefaultConstructor(BaseClassDecl));
4232 else if (CXXConstructorDecl *Constructor
4233 = BaseClassDecl->getDefaultConstructor())
Douglas Gregor6d880b12010-07-01 22:31:05 +00004234 ExceptSpec.CalledDecl(Constructor);
Douglas Gregor9672f922010-07-03 00:47:00 +00004235 }
Douglas Gregor6d880b12010-07-01 22:31:05 +00004236 }
4237
4238 // Field destructors.
4239 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
4240 FEnd = ClassDecl->field_end();
4241 F != FEnd; ++F) {
4242 if (const RecordType *RecordTy
Douglas Gregor9672f922010-07-03 00:47:00 +00004243 = Context.getBaseElementType(F->getType())->getAs<RecordType>()) {
4244 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
4245 if (!FieldClassDecl->hasDeclaredDefaultConstructor())
4246 ExceptSpec.CalledDecl(
4247 DeclareImplicitDefaultConstructor(FieldClassDecl));
4248 else if (CXXConstructorDecl *Constructor
4249 = FieldClassDecl->getDefaultConstructor())
Douglas Gregor6d880b12010-07-01 22:31:05 +00004250 ExceptSpec.CalledDecl(Constructor);
Douglas Gregor9672f922010-07-03 00:47:00 +00004251 }
Douglas Gregor6d880b12010-07-01 22:31:05 +00004252 }
4253
4254
4255 // Create the actual constructor declaration.
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00004256 CanQualType ClassType
4257 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
4258 DeclarationName Name
4259 = Context.DeclarationNames.getCXXConstructorName(ClassType);
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00004260 DeclarationNameInfo NameInfo(Name, ClassDecl->getLocation());
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00004261 CXXConstructorDecl *DefaultCon
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00004262 = CXXConstructorDecl::Create(Context, ClassDecl, NameInfo,
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00004263 Context.getFunctionType(Context.VoidTy,
4264 0, 0, false, 0,
Douglas Gregor6d880b12010-07-01 22:31:05 +00004265 ExceptSpec.hasExceptionSpecification(),
4266 ExceptSpec.hasAnyExceptionSpecification(),
4267 ExceptSpec.size(),
4268 ExceptSpec.data(),
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00004269 FunctionType::ExtInfo()),
4270 /*TInfo=*/0,
4271 /*isExplicit=*/false,
4272 /*isInline=*/true,
4273 /*isImplicitlyDeclared=*/true);
4274 DefaultCon->setAccess(AS_public);
4275 DefaultCon->setImplicit();
4276 DefaultCon->setTrivial(ClassDecl->hasTrivialConstructor());
Douglas Gregor9672f922010-07-03 00:47:00 +00004277
4278 // Note that we have declared this constructor.
4279 ClassDecl->setDeclaredDefaultConstructor(true);
4280 ++ASTContext::NumImplicitDefaultConstructorsDeclared;
4281
Douglas Gregor0be31a22010-07-02 17:43:08 +00004282 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor9672f922010-07-03 00:47:00 +00004283 PushOnScopeChains(DefaultCon, S, false);
4284 ClassDecl->addDecl(DefaultCon);
4285
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00004286 return DefaultCon;
4287}
4288
Fariborz Jahanian423a81f2009-06-19 19:55:27 +00004289void Sema::DefineImplicitDefaultConstructor(SourceLocation CurrentLocation,
4290 CXXConstructorDecl *Constructor) {
Fariborz Jahanian18eb69a2009-06-22 20:37:23 +00004291 assert((Constructor->isImplicit() && Constructor->isDefaultConstructor() &&
Douglas Gregorebada0772010-06-17 23:14:26 +00004292 !Constructor->isUsed(false)) &&
Fariborz Jahanian18eb69a2009-06-22 20:37:23 +00004293 "DefineImplicitDefaultConstructor - call it for implicit default ctor");
Mike Stump11289f42009-09-09 15:08:12 +00004294
Anders Carlsson423f5d82010-04-23 16:04:08 +00004295 CXXRecordDecl *ClassDecl = Constructor->getParent();
Eli Friedman9cf6b592009-11-09 19:20:36 +00004296 assert(ClassDecl && "DefineImplicitDefaultConstructor - invalid constructor");
Eli Friedmand7686ef2009-11-09 01:05:47 +00004297
Douglas Gregora57478e2010-05-01 15:04:51 +00004298 ImplicitlyDefinedFunctionScope Scope(*this, Constructor);
Douglas Gregor54818f02010-05-12 16:39:35 +00004299 ErrorTrap Trap(*this);
4300 if (SetBaseOrMemberInitializers(Constructor, 0, 0, /*AnyErrors=*/false) ||
4301 Trap.hasErrorOccurred()) {
Anders Carlsson26a807d2009-11-30 21:24:50 +00004302 Diag(CurrentLocation, diag::note_member_synthesized_at)
Anders Carlsson05bf0092010-04-22 05:40:53 +00004303 << CXXConstructor << Context.getTagDeclType(ClassDecl);
Eli Friedman9cf6b592009-11-09 19:20:36 +00004304 Constructor->setInvalidDecl();
4305 } else {
4306 Constructor->setUsed();
Douglas Gregor88d292c2010-05-13 16:44:06 +00004307 MarkVTableUsed(CurrentLocation, ClassDecl);
Eli Friedman9cf6b592009-11-09 19:20:36 +00004308 }
Fariborz Jahanian423a81f2009-06-19 19:55:27 +00004309}
4310
Douglas Gregor0be31a22010-07-02 17:43:08 +00004311CXXDestructorDecl *Sema::DeclareImplicitDestructor(CXXRecordDecl *ClassDecl) {
Douglas Gregorf1203042010-07-01 19:09:28 +00004312 // C++ [class.dtor]p2:
4313 // If a class has no user-declared destructor, a destructor is
4314 // declared implicitly. An implicitly-declared destructor is an
4315 // inline public member of its class.
4316
4317 // C++ [except.spec]p14:
4318 // An implicitly declared special member function (Clause 12) shall have
4319 // an exception-specification.
4320 ImplicitExceptionSpecification ExceptSpec(Context);
4321
4322 // Direct base-class destructors.
4323 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
4324 BEnd = ClassDecl->bases_end();
4325 B != BEnd; ++B) {
4326 if (B->isVirtual()) // Handled below.
4327 continue;
4328
4329 if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
4330 ExceptSpec.CalledDecl(
Douglas Gregore71edda2010-07-01 22:47:18 +00004331 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorf1203042010-07-01 19:09:28 +00004332 }
4333
4334 // Virtual base-class destructors.
4335 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
4336 BEnd = ClassDecl->vbases_end();
4337 B != BEnd; ++B) {
4338 if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
4339 ExceptSpec.CalledDecl(
Douglas Gregore71edda2010-07-01 22:47:18 +00004340 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorf1203042010-07-01 19:09:28 +00004341 }
4342
4343 // Field destructors.
4344 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
4345 FEnd = ClassDecl->field_end();
4346 F != FEnd; ++F) {
4347 if (const RecordType *RecordTy
4348 = Context.getBaseElementType(F->getType())->getAs<RecordType>())
4349 ExceptSpec.CalledDecl(
Douglas Gregore71edda2010-07-01 22:47:18 +00004350 LookupDestructor(cast<CXXRecordDecl>(RecordTy->getDecl())));
Douglas Gregorf1203042010-07-01 19:09:28 +00004351 }
4352
Douglas Gregor7454c562010-07-02 20:37:36 +00004353 // Create the actual destructor declaration.
Douglas Gregorf1203042010-07-01 19:09:28 +00004354 QualType Ty = Context.getFunctionType(Context.VoidTy,
4355 0, 0, false, 0,
4356 ExceptSpec.hasExceptionSpecification(),
4357 ExceptSpec.hasAnyExceptionSpecification(),
4358 ExceptSpec.size(),
4359 ExceptSpec.data(),
4360 FunctionType::ExtInfo());
4361
4362 CanQualType ClassType
4363 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
4364 DeclarationName Name
4365 = Context.DeclarationNames.getCXXDestructorName(ClassType);
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00004366 DeclarationNameInfo NameInfo(Name, ClassDecl->getLocation());
Douglas Gregorf1203042010-07-01 19:09:28 +00004367 CXXDestructorDecl *Destructor
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00004368 = CXXDestructorDecl::Create(Context, ClassDecl, NameInfo, Ty,
Douglas Gregorf1203042010-07-01 19:09:28 +00004369 /*isInline=*/true,
4370 /*isImplicitlyDeclared=*/true);
4371 Destructor->setAccess(AS_public);
4372 Destructor->setImplicit();
4373 Destructor->setTrivial(ClassDecl->hasTrivialDestructor());
Douglas Gregor7454c562010-07-02 20:37:36 +00004374
4375 // Note that we have declared this destructor.
4376 ClassDecl->setDeclaredDestructor(true);
4377 ++ASTContext::NumImplicitDestructorsDeclared;
4378
4379 // Introduce this destructor into its scope.
Douglas Gregor0be31a22010-07-02 17:43:08 +00004380 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor7454c562010-07-02 20:37:36 +00004381 PushOnScopeChains(Destructor, S, false);
4382 ClassDecl->addDecl(Destructor);
Douglas Gregorf1203042010-07-01 19:09:28 +00004383
4384 // This could be uniqued if it ever proves significant.
4385 Destructor->setTypeSourceInfo(Context.getTrivialTypeSourceInfo(Ty));
4386
4387 AddOverriddenMethods(ClassDecl, Destructor);
Douglas Gregor7454c562010-07-02 20:37:36 +00004388
Douglas Gregorf1203042010-07-01 19:09:28 +00004389 return Destructor;
4390}
4391
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00004392void Sema::DefineImplicitDestructor(SourceLocation CurrentLocation,
Douglas Gregord94105a2009-09-04 19:04:08 +00004393 CXXDestructorDecl *Destructor) {
Douglas Gregorebada0772010-06-17 23:14:26 +00004394 assert((Destructor->isImplicit() && !Destructor->isUsed(false)) &&
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00004395 "DefineImplicitDestructor - call it for implicit default dtor");
Anders Carlsson2a50e952009-11-15 22:49:34 +00004396 CXXRecordDecl *ClassDecl = Destructor->getParent();
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00004397 assert(ClassDecl && "DefineImplicitDestructor - invalid destructor");
Douglas Gregor7ae2d772010-01-31 09:12:51 +00004398
Douglas Gregor54818f02010-05-12 16:39:35 +00004399 if (Destructor->isInvalidDecl())
4400 return;
4401
Douglas Gregora57478e2010-05-01 15:04:51 +00004402 ImplicitlyDefinedFunctionScope Scope(*this, Destructor);
Douglas Gregor7ae2d772010-01-31 09:12:51 +00004403
Douglas Gregor54818f02010-05-12 16:39:35 +00004404 ErrorTrap Trap(*this);
John McCalla6309952010-03-16 21:39:52 +00004405 MarkBaseAndMemberDestructorsReferenced(Destructor->getLocation(),
4406 Destructor->getParent());
Mike Stump11289f42009-09-09 15:08:12 +00004407
Douglas Gregor54818f02010-05-12 16:39:35 +00004408 if (CheckDestructor(Destructor) || Trap.hasErrorOccurred()) {
Anders Carlsson26a807d2009-11-30 21:24:50 +00004409 Diag(CurrentLocation, diag::note_member_synthesized_at)
4410 << CXXDestructor << Context.getTagDeclType(ClassDecl);
4411
4412 Destructor->setInvalidDecl();
4413 return;
4414 }
4415
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00004416 Destructor->setUsed();
Douglas Gregor88d292c2010-05-13 16:44:06 +00004417 MarkVTableUsed(CurrentLocation, ClassDecl);
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00004418}
4419
Douglas Gregorb139cd52010-05-01 20:49:11 +00004420/// \brief Builds a statement that copies the given entity from \p From to
4421/// \c To.
4422///
4423/// This routine is used to copy the members of a class with an
4424/// implicitly-declared copy assignment operator. When the entities being
4425/// copied are arrays, this routine builds for loops to copy them.
4426///
4427/// \param S The Sema object used for type-checking.
4428///
4429/// \param Loc The location where the implicit copy is being generated.
4430///
4431/// \param T The type of the expressions being copied. Both expressions must
4432/// have this type.
4433///
4434/// \param To The expression we are copying to.
4435///
4436/// \param From The expression we are copying from.
4437///
Douglas Gregor40c92bb2010-05-04 15:20:55 +00004438/// \param CopyingBaseSubobject Whether we're copying a base subobject.
4439/// Otherwise, it's a non-static member subobject.
4440///
Douglas Gregorb139cd52010-05-01 20:49:11 +00004441/// \param Depth Internal parameter recording the depth of the recursion.
4442///
4443/// \returns A statement or a loop that copies the expressions.
4444static Sema::OwningStmtResult
4445BuildSingleCopyAssign(Sema &S, SourceLocation Loc, QualType T,
4446 Sema::OwningExprResult To, Sema::OwningExprResult From,
Douglas Gregor40c92bb2010-05-04 15:20:55 +00004447 bool CopyingBaseSubobject, unsigned Depth = 0) {
Douglas Gregorb139cd52010-05-01 20:49:11 +00004448 typedef Sema::OwningStmtResult OwningStmtResult;
4449 typedef Sema::OwningExprResult OwningExprResult;
4450
4451 // C++0x [class.copy]p30:
4452 // Each subobject is assigned in the manner appropriate to its type:
4453 //
4454 // - if the subobject is of class type, the copy assignment operator
4455 // for the class is used (as if by explicit qualification; that is,
4456 // ignoring any possible virtual overriding functions in more derived
4457 // classes);
4458 if (const RecordType *RecordTy = T->getAs<RecordType>()) {
4459 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
4460
4461 // Look for operator=.
4462 DeclarationName Name
4463 = S.Context.DeclarationNames.getCXXOperatorName(OO_Equal);
4464 LookupResult OpLookup(S, Name, Loc, Sema::LookupOrdinaryName);
4465 S.LookupQualifiedName(OpLookup, ClassDecl, false);
4466
4467 // Filter out any result that isn't a copy-assignment operator.
4468 LookupResult::Filter F = OpLookup.makeFilter();
4469 while (F.hasNext()) {
4470 NamedDecl *D = F.next();
4471 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
4472 if (Method->isCopyAssignmentOperator())
4473 continue;
4474
4475 F.erase();
John McCallab8c2732010-03-16 06:11:48 +00004476 }
Douglas Gregorb139cd52010-05-01 20:49:11 +00004477 F.done();
4478
Douglas Gregor40c92bb2010-05-04 15:20:55 +00004479 // Suppress the protected check (C++ [class.protected]) for each of the
4480 // assignment operators we found. This strange dance is required when
4481 // we're assigning via a base classes's copy-assignment operator. To
4482 // ensure that we're getting the right base class subobject (without
4483 // ambiguities), we need to cast "this" to that subobject type; to
4484 // ensure that we don't go through the virtual call mechanism, we need
4485 // to qualify the operator= name with the base class (see below). However,
4486 // this means that if the base class has a protected copy assignment
4487 // operator, the protected member access check will fail. So, we
4488 // rewrite "protected" access to "public" access in this case, since we
4489 // know by construction that we're calling from a derived class.
4490 if (CopyingBaseSubobject) {
4491 for (LookupResult::iterator L = OpLookup.begin(), LEnd = OpLookup.end();
4492 L != LEnd; ++L) {
4493 if (L.getAccess() == AS_protected)
4494 L.setAccess(AS_public);
4495 }
4496 }
4497
Douglas Gregorb139cd52010-05-01 20:49:11 +00004498 // Create the nested-name-specifier that will be used to qualify the
4499 // reference to operator=; this is required to suppress the virtual
4500 // call mechanism.
4501 CXXScopeSpec SS;
4502 SS.setRange(Loc);
4503 SS.setScopeRep(NestedNameSpecifier::Create(S.Context, 0, false,
4504 T.getTypePtr()));
4505
4506 // Create the reference to operator=.
4507 OwningExprResult OpEqualRef
4508 = S.BuildMemberReferenceExpr(move(To), T, Loc, /*isArrow=*/false, SS,
4509 /*FirstQualifierInScope=*/0, OpLookup,
4510 /*TemplateArgs=*/0,
4511 /*SuppressQualifierCheck=*/true);
4512 if (OpEqualRef.isInvalid())
4513 return S.StmtError();
4514
4515 // Build the call to the assignment operator.
4516 Expr *FromE = From.takeAs<Expr>();
4517 OwningExprResult Call = S.BuildCallToMemberFunction(/*Scope=*/0,
4518 OpEqualRef.takeAs<Expr>(),
4519 Loc, &FromE, 1, 0, Loc);
4520 if (Call.isInvalid())
4521 return S.StmtError();
4522
4523 return S.Owned(Call.takeAs<Stmt>());
Fariborz Jahanian41f79272009-06-25 21:45:19 +00004524 }
John McCallab8c2732010-03-16 06:11:48 +00004525
Douglas Gregorb139cd52010-05-01 20:49:11 +00004526 // - if the subobject is of scalar type, the built-in assignment
4527 // operator is used.
4528 const ConstantArrayType *ArrayTy = S.Context.getAsConstantArrayType(T);
4529 if (!ArrayTy) {
4530 OwningExprResult Assignment = S.CreateBuiltinBinOp(Loc,
4531 BinaryOperator::Assign,
4532 To.takeAs<Expr>(),
4533 From.takeAs<Expr>());
4534 if (Assignment.isInvalid())
4535 return S.StmtError();
4536
4537 return S.Owned(Assignment.takeAs<Stmt>());
Fariborz Jahanian41f79272009-06-25 21:45:19 +00004538 }
Douglas Gregorb139cd52010-05-01 20:49:11 +00004539
4540 // - if the subobject is an array, each element is assigned, in the
4541 // manner appropriate to the element type;
4542
4543 // Construct a loop over the array bounds, e.g.,
4544 //
4545 // for (__SIZE_TYPE__ i0 = 0; i0 != array-size; ++i0)
4546 //
4547 // that will copy each of the array elements.
4548 QualType SizeType = S.Context.getSizeType();
4549
4550 // Create the iteration variable.
4551 IdentifierInfo *IterationVarName = 0;
4552 {
4553 llvm::SmallString<8> Str;
4554 llvm::raw_svector_ostream OS(Str);
4555 OS << "__i" << Depth;
4556 IterationVarName = &S.Context.Idents.get(OS.str());
4557 }
4558 VarDecl *IterationVar = VarDecl::Create(S.Context, S.CurContext, Loc,
4559 IterationVarName, SizeType,
4560 S.Context.getTrivialTypeSourceInfo(SizeType, Loc),
4561 VarDecl::None, VarDecl::None);
4562
4563 // Initialize the iteration variable to zero.
4564 llvm::APInt Zero(S.Context.getTypeSize(SizeType), 0);
4565 IterationVar->setInit(new (S.Context) IntegerLiteral(Zero, SizeType, Loc));
4566
4567 // Create a reference to the iteration variable; we'll use this several
4568 // times throughout.
4569 Expr *IterationVarRef
4570 = S.BuildDeclRefExpr(IterationVar, SizeType, Loc).takeAs<Expr>();
4571 assert(IterationVarRef && "Reference to invented variable cannot fail!");
4572
4573 // Create the DeclStmt that holds the iteration variable.
4574 Stmt *InitStmt = new (S.Context) DeclStmt(DeclGroupRef(IterationVar),Loc,Loc);
4575
4576 // Create the comparison against the array bound.
4577 llvm::APInt Upper = ArrayTy->getSize();
4578 Upper.zextOrTrunc(S.Context.getTypeSize(SizeType));
4579 OwningExprResult Comparison
4580 = S.Owned(new (S.Context) BinaryOperator(IterationVarRef->Retain(),
4581 new (S.Context) IntegerLiteral(Upper, SizeType, Loc),
4582 BinaryOperator::NE, S.Context.BoolTy, Loc));
4583
4584 // Create the pre-increment of the iteration variable.
4585 OwningExprResult Increment
4586 = S.Owned(new (S.Context) UnaryOperator(IterationVarRef->Retain(),
4587 UnaryOperator::PreInc,
4588 SizeType, Loc));
4589
4590 // Subscript the "from" and "to" expressions with the iteration variable.
4591 From = S.CreateBuiltinArraySubscriptExpr(move(From), Loc,
4592 S.Owned(IterationVarRef->Retain()),
4593 Loc);
4594 To = S.CreateBuiltinArraySubscriptExpr(move(To), Loc,
4595 S.Owned(IterationVarRef->Retain()),
4596 Loc);
4597 assert(!From.isInvalid() && "Builtin subscripting can't fail!");
4598 assert(!To.isInvalid() && "Builtin subscripting can't fail!");
4599
4600 // Build the copy for an individual element of the array.
4601 OwningStmtResult Copy = BuildSingleCopyAssign(S, Loc,
4602 ArrayTy->getElementType(),
Douglas Gregor40c92bb2010-05-04 15:20:55 +00004603 move(To), move(From),
4604 CopyingBaseSubobject, Depth+1);
Douglas Gregorb412e172010-07-25 18:17:45 +00004605 if (Copy.isInvalid())
Douglas Gregorb139cd52010-05-01 20:49:11 +00004606 return S.StmtError();
Douglas Gregorb139cd52010-05-01 20:49:11 +00004607
4608 // Construct the loop that copies all elements of this array.
4609 return S.ActOnForStmt(Loc, Loc, S.Owned(InitStmt),
4610 S.MakeFullExpr(Comparison),
4611 Sema::DeclPtrTy(),
4612 S.MakeFullExpr(Increment),
4613 Loc, move(Copy));
Fariborz Jahanian41f79272009-06-25 21:45:19 +00004614}
4615
Douglas Gregor330b9cf2010-07-02 21:50:04 +00004616/// \brief Determine whether the given class has a copy assignment operator
4617/// that accepts a const-qualified argument.
4618static bool hasConstCopyAssignment(Sema &S, const CXXRecordDecl *CClass) {
4619 CXXRecordDecl *Class = const_cast<CXXRecordDecl *>(CClass);
4620
4621 if (!Class->hasDeclaredCopyAssignment())
4622 S.DeclareImplicitCopyAssignment(Class);
4623
4624 QualType ClassType = S.Context.getCanonicalType(S.Context.getTypeDeclType(Class));
4625 DeclarationName OpName
4626 = S.Context.DeclarationNames.getCXXOperatorName(OO_Equal);
4627
4628 DeclContext::lookup_const_iterator Op, OpEnd;
4629 for (llvm::tie(Op, OpEnd) = Class->lookup(OpName); Op != OpEnd; ++Op) {
4630 // C++ [class.copy]p9:
4631 // A user-declared copy assignment operator is a non-static non-template
4632 // member function of class X with exactly one parameter of type X, X&,
4633 // const X&, volatile X& or const volatile X&.
4634 const CXXMethodDecl* Method = dyn_cast<CXXMethodDecl>(*Op);
4635 if (!Method)
4636 continue;
4637
4638 if (Method->isStatic())
4639 continue;
4640 if (Method->getPrimaryTemplate())
4641 continue;
4642 const FunctionProtoType *FnType =
4643 Method->getType()->getAs<FunctionProtoType>();
4644 assert(FnType && "Overloaded operator has no prototype.");
4645 // Don't assert on this; an invalid decl might have been left in the AST.
4646 if (FnType->getNumArgs() != 1 || FnType->isVariadic())
4647 continue;
4648 bool AcceptsConst = true;
4649 QualType ArgType = FnType->getArgType(0);
4650 if (const LValueReferenceType *Ref = ArgType->getAs<LValueReferenceType>()){
4651 ArgType = Ref->getPointeeType();
4652 // Is it a non-const lvalue reference?
4653 if (!ArgType.isConstQualified())
4654 AcceptsConst = false;
4655 }
4656 if (!S.Context.hasSameUnqualifiedType(ArgType, ClassType))
4657 continue;
4658
4659 // We have a single argument of type cv X or cv X&, i.e. we've found the
4660 // copy assignment operator. Return whether it accepts const arguments.
4661 return AcceptsConst;
4662 }
4663 assert(Class->isInvalidDecl() &&
4664 "No copy assignment operator declared in valid code.");
4665 return false;
4666}
4667
Douglas Gregor0be31a22010-07-02 17:43:08 +00004668CXXMethodDecl *Sema::DeclareImplicitCopyAssignment(CXXRecordDecl *ClassDecl) {
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004669 // Note: The following rules are largely analoguous to the copy
4670 // constructor rules. Note that virtual bases are not taken into account
4671 // for determining the argument type of the operator. Note also that
4672 // operators taking an object instead of a reference are allowed.
Douglas Gregor9672f922010-07-03 00:47:00 +00004673
4674
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004675 // C++ [class.copy]p10:
4676 // If the class definition does not explicitly declare a copy
4677 // assignment operator, one is declared implicitly.
4678 // The implicitly-defined copy assignment operator for a class X
4679 // will have the form
4680 //
4681 // X& X::operator=(const X&)
4682 //
4683 // if
4684 bool HasConstCopyAssignment = true;
4685
4686 // -- each direct base class B of X has a copy assignment operator
4687 // whose parameter is of type const B&, const volatile B& or B,
4688 // and
4689 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
4690 BaseEnd = ClassDecl->bases_end();
4691 HasConstCopyAssignment && Base != BaseEnd; ++Base) {
4692 assert(!Base->getType()->isDependentType() &&
4693 "Cannot generate implicit members for class with dependent bases.");
4694 const CXXRecordDecl *BaseClassDecl
4695 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregor330b9cf2010-07-02 21:50:04 +00004696 HasConstCopyAssignment = hasConstCopyAssignment(*this, BaseClassDecl);
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004697 }
4698
4699 // -- for all the nonstatic data members of X that are of a class
4700 // type M (or array thereof), each such class type has a copy
4701 // assignment operator whose parameter is of type const M&,
4702 // const volatile M& or M.
4703 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
4704 FieldEnd = ClassDecl->field_end();
4705 HasConstCopyAssignment && Field != FieldEnd;
4706 ++Field) {
4707 QualType FieldType = Context.getBaseElementType((*Field)->getType());
4708 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
4709 const CXXRecordDecl *FieldClassDecl
4710 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Douglas Gregor330b9cf2010-07-02 21:50:04 +00004711 HasConstCopyAssignment = hasConstCopyAssignment(*this, FieldClassDecl);
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004712 }
4713 }
4714
4715 // Otherwise, the implicitly declared copy assignment operator will
4716 // have the form
4717 //
4718 // X& X::operator=(X&)
4719 QualType ArgType = Context.getTypeDeclType(ClassDecl);
4720 QualType RetType = Context.getLValueReferenceType(ArgType);
4721 if (HasConstCopyAssignment)
4722 ArgType = ArgType.withConst();
4723 ArgType = Context.getLValueReferenceType(ArgType);
4724
Douglas Gregor68e11362010-07-01 17:48:08 +00004725 // C++ [except.spec]p14:
4726 // An implicitly declared special member function (Clause 12) shall have an
4727 // exception-specification. [...]
4728 ImplicitExceptionSpecification ExceptSpec(Context);
4729 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
4730 BaseEnd = ClassDecl->bases_end();
4731 Base != BaseEnd; ++Base) {
Douglas Gregor330b9cf2010-07-02 21:50:04 +00004732 CXXRecordDecl *BaseClassDecl
Douglas Gregor68e11362010-07-01 17:48:08 +00004733 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregor330b9cf2010-07-02 21:50:04 +00004734
4735 if (!BaseClassDecl->hasDeclaredCopyAssignment())
4736 DeclareImplicitCopyAssignment(BaseClassDecl);
4737
Douglas Gregor68e11362010-07-01 17:48:08 +00004738 if (CXXMethodDecl *CopyAssign
4739 = BaseClassDecl->getCopyAssignmentOperator(HasConstCopyAssignment))
4740 ExceptSpec.CalledDecl(CopyAssign);
4741 }
4742 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
4743 FieldEnd = ClassDecl->field_end();
4744 Field != FieldEnd;
4745 ++Field) {
4746 QualType FieldType = Context.getBaseElementType((*Field)->getType());
4747 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Douglas Gregor330b9cf2010-07-02 21:50:04 +00004748 CXXRecordDecl *FieldClassDecl
Douglas Gregor68e11362010-07-01 17:48:08 +00004749 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Douglas Gregor330b9cf2010-07-02 21:50:04 +00004750
4751 if (!FieldClassDecl->hasDeclaredCopyAssignment())
4752 DeclareImplicitCopyAssignment(FieldClassDecl);
4753
Douglas Gregor68e11362010-07-01 17:48:08 +00004754 if (CXXMethodDecl *CopyAssign
4755 = FieldClassDecl->getCopyAssignmentOperator(HasConstCopyAssignment))
4756 ExceptSpec.CalledDecl(CopyAssign);
4757 }
4758 }
4759
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004760 // An implicitly-declared copy assignment operator is an inline public
4761 // member of its class.
4762 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00004763 DeclarationNameInfo NameInfo(Name, ClassDecl->getLocation());
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004764 CXXMethodDecl *CopyAssignment
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00004765 = CXXMethodDecl::Create(Context, ClassDecl, NameInfo,
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004766 Context.getFunctionType(RetType, &ArgType, 1,
4767 false, 0,
Douglas Gregor68e11362010-07-01 17:48:08 +00004768 ExceptSpec.hasExceptionSpecification(),
4769 ExceptSpec.hasAnyExceptionSpecification(),
4770 ExceptSpec.size(),
4771 ExceptSpec.data(),
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004772 FunctionType::ExtInfo()),
4773 /*TInfo=*/0, /*isStatic=*/false,
4774 /*StorageClassAsWritten=*/FunctionDecl::None,
4775 /*isInline=*/true);
4776 CopyAssignment->setAccess(AS_public);
4777 CopyAssignment->setImplicit();
4778 CopyAssignment->setTrivial(ClassDecl->hasTrivialCopyAssignment());
4779 CopyAssignment->setCopyAssignment(true);
4780
4781 // Add the parameter to the operator.
4782 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyAssignment,
4783 ClassDecl->getLocation(),
4784 /*Id=*/0,
4785 ArgType, /*TInfo=*/0,
4786 VarDecl::None,
4787 VarDecl::None, 0);
4788 CopyAssignment->setParams(&FromParam, 1);
4789
Douglas Gregor330b9cf2010-07-02 21:50:04 +00004790 // Note that we have added this copy-assignment operator.
4791 ClassDecl->setDeclaredCopyAssignment(true);
4792 ++ASTContext::NumImplicitCopyAssignmentOperatorsDeclared;
4793
Douglas Gregor0be31a22010-07-02 17:43:08 +00004794 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor330b9cf2010-07-02 21:50:04 +00004795 PushOnScopeChains(CopyAssignment, S, false);
4796 ClassDecl->addDecl(CopyAssignment);
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00004797
4798 AddOverriddenMethods(ClassDecl, CopyAssignment);
4799 return CopyAssignment;
4800}
4801
Douglas Gregorb139cd52010-05-01 20:49:11 +00004802void Sema::DefineImplicitCopyAssignment(SourceLocation CurrentLocation,
4803 CXXMethodDecl *CopyAssignOperator) {
4804 assert((CopyAssignOperator->isImplicit() &&
4805 CopyAssignOperator->isOverloadedOperator() &&
4806 CopyAssignOperator->getOverloadedOperator() == OO_Equal &&
Douglas Gregorebada0772010-06-17 23:14:26 +00004807 !CopyAssignOperator->isUsed(false)) &&
Douglas Gregorb139cd52010-05-01 20:49:11 +00004808 "DefineImplicitCopyAssignment called for wrong function");
4809
4810 CXXRecordDecl *ClassDecl = CopyAssignOperator->getParent();
4811
4812 if (ClassDecl->isInvalidDecl() || CopyAssignOperator->isInvalidDecl()) {
4813 CopyAssignOperator->setInvalidDecl();
4814 return;
4815 }
4816
4817 CopyAssignOperator->setUsed();
4818
4819 ImplicitlyDefinedFunctionScope Scope(*this, CopyAssignOperator);
Douglas Gregor54818f02010-05-12 16:39:35 +00004820 ErrorTrap Trap(*this);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004821
4822 // C++0x [class.copy]p30:
4823 // The implicitly-defined or explicitly-defaulted copy assignment operator
4824 // for a non-union class X performs memberwise copy assignment of its
4825 // subobjects. The direct base classes of X are assigned first, in the
4826 // order of their declaration in the base-specifier-list, and then the
4827 // immediate non-static data members of X are assigned, in the order in
4828 // which they were declared in the class definition.
4829
4830 // The statements that form the synthesized function body.
4831 ASTOwningVector<&ActionBase::DeleteStmt> Statements(*this);
4832
4833 // The parameter for the "other" object, which we are copying from.
4834 ParmVarDecl *Other = CopyAssignOperator->getParamDecl(0);
4835 Qualifiers OtherQuals = Other->getType().getQualifiers();
4836 QualType OtherRefType = Other->getType();
4837 if (const LValueReferenceType *OtherRef
4838 = OtherRefType->getAs<LValueReferenceType>()) {
4839 OtherRefType = OtherRef->getPointeeType();
4840 OtherQuals = OtherRefType.getQualifiers();
4841 }
4842
4843 // Our location for everything implicitly-generated.
4844 SourceLocation Loc = CopyAssignOperator->getLocation();
4845
4846 // Construct a reference to the "other" object. We'll be using this
4847 // throughout the generated ASTs.
4848 Expr *OtherRef = BuildDeclRefExpr(Other, OtherRefType, Loc).takeAs<Expr>();
4849 assert(OtherRef && "Reference to parameter cannot fail!");
4850
4851 // Construct the "this" pointer. We'll be using this throughout the generated
4852 // ASTs.
4853 Expr *This = ActOnCXXThis(Loc).takeAs<Expr>();
4854 assert(This && "Reference to this cannot fail!");
4855
4856 // Assign base classes.
4857 bool Invalid = false;
4858 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
4859 E = ClassDecl->bases_end(); Base != E; ++Base) {
4860 // Form the assignment:
4861 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&>(other));
4862 QualType BaseType = Base->getType().getUnqualifiedType();
4863 CXXRecordDecl *BaseClassDecl = 0;
4864 if (const RecordType *BaseRecordT = BaseType->getAs<RecordType>())
4865 BaseClassDecl = cast<CXXRecordDecl>(BaseRecordT->getDecl());
4866 else {
4867 Invalid = true;
4868 continue;
4869 }
4870
John McCallcf142162010-08-07 06:22:56 +00004871 CXXCastPath BasePath;
4872 BasePath.push_back(Base);
4873
Douglas Gregorb139cd52010-05-01 20:49:11 +00004874 // Construct the "from" expression, which is an implicit cast to the
4875 // appropriately-qualified base type.
4876 Expr *From = OtherRef->Retain();
4877 ImpCastExprToType(From, Context.getQualifiedType(BaseType, OtherQuals),
Sebastian Redlc57d34b2010-07-20 04:20:21 +00004878 CastExpr::CK_UncheckedDerivedToBase,
John McCallcf142162010-08-07 06:22:56 +00004879 ImplicitCastExpr::LValue, &BasePath);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004880
4881 // Dereference "this".
4882 OwningExprResult To = CreateBuiltinUnaryOp(Loc, UnaryOperator::Deref,
4883 Owned(This->Retain()));
4884
4885 // Implicitly cast "this" to the appropriately-qualified base type.
4886 Expr *ToE = To.takeAs<Expr>();
4887 ImpCastExprToType(ToE,
4888 Context.getCVRQualifiedType(BaseType,
4889 CopyAssignOperator->getTypeQualifiers()),
4890 CastExpr::CK_UncheckedDerivedToBase,
John McCallcf142162010-08-07 06:22:56 +00004891 ImplicitCastExpr::LValue, &BasePath);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004892 To = Owned(ToE);
4893
4894 // Build the copy.
4895 OwningStmtResult Copy = BuildSingleCopyAssign(*this, Loc, BaseType,
Douglas Gregor40c92bb2010-05-04 15:20:55 +00004896 move(To), Owned(From),
4897 /*CopyingBaseSubobject=*/true);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004898 if (Copy.isInvalid()) {
Douglas Gregorbf1fb442010-05-05 22:38:15 +00004899 Diag(CurrentLocation, diag::note_member_synthesized_at)
4900 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
4901 CopyAssignOperator->setInvalidDecl();
4902 return;
Douglas Gregorb139cd52010-05-01 20:49:11 +00004903 }
4904
4905 // Success! Record the copy.
4906 Statements.push_back(Copy.takeAs<Expr>());
4907 }
4908
4909 // \brief Reference to the __builtin_memcpy function.
4910 Expr *BuiltinMemCpyRef = 0;
Fariborz Jahanian4a303072010-06-16 16:22:04 +00004911 // \brief Reference to the __builtin_objc_memmove_collectable function.
Fariborz Jahanian021510e2010-06-15 22:44:06 +00004912 Expr *CollectableMemCpyRef = 0;
Douglas Gregorb139cd52010-05-01 20:49:11 +00004913
4914 // Assign non-static members.
4915 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
4916 FieldEnd = ClassDecl->field_end();
4917 Field != FieldEnd; ++Field) {
4918 // Check for members of reference type; we can't copy those.
4919 if (Field->getType()->isReferenceType()) {
4920 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
4921 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
4922 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregorbf1fb442010-05-05 22:38:15 +00004923 Diag(CurrentLocation, diag::note_member_synthesized_at)
4924 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004925 Invalid = true;
4926 continue;
4927 }
4928
4929 // Check for members of const-qualified, non-class type.
4930 QualType BaseType = Context.getBaseElementType(Field->getType());
4931 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) {
4932 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
4933 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
4934 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregorbf1fb442010-05-05 22:38:15 +00004935 Diag(CurrentLocation, diag::note_member_synthesized_at)
4936 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregorb139cd52010-05-01 20:49:11 +00004937 Invalid = true;
4938 continue;
4939 }
4940
4941 QualType FieldType = Field->getType().getNonReferenceType();
Fariborz Jahanian1138ba62010-05-26 20:19:07 +00004942 if (FieldType->isIncompleteArrayType()) {
4943 assert(ClassDecl->hasFlexibleArrayMember() &&
4944 "Incomplete array type is not valid");
4945 continue;
4946 }
Douglas Gregorb139cd52010-05-01 20:49:11 +00004947
4948 // Build references to the field in the object we're copying from and to.
4949 CXXScopeSpec SS; // Intentionally empty
4950 LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
4951 LookupMemberName);
4952 MemberLookup.addDecl(*Field);
4953 MemberLookup.resolveKind();
4954 OwningExprResult From = BuildMemberReferenceExpr(Owned(OtherRef->Retain()),
4955 OtherRefType,
4956 Loc, /*IsArrow=*/false,
4957 SS, 0, MemberLookup, 0);
4958 OwningExprResult To = BuildMemberReferenceExpr(Owned(This->Retain()),
4959 This->getType(),
4960 Loc, /*IsArrow=*/true,
4961 SS, 0, MemberLookup, 0);
4962 assert(!From.isInvalid() && "Implicit field reference cannot fail");
4963 assert(!To.isInvalid() && "Implicit field reference cannot fail");
4964
4965 // If the field should be copied with __builtin_memcpy rather than via
4966 // explicit assignments, do so. This optimization only applies for arrays
4967 // of scalars and arrays of class type with trivial copy-assignment
4968 // operators.
4969 if (FieldType->isArrayType() &&
4970 (!BaseType->isRecordType() ||
4971 cast<CXXRecordDecl>(BaseType->getAs<RecordType>()->getDecl())
4972 ->hasTrivialCopyAssignment())) {
4973 // Compute the size of the memory buffer to be copied.
4974 QualType SizeType = Context.getSizeType();
4975 llvm::APInt Size(Context.getTypeSize(SizeType),
4976 Context.getTypeSizeInChars(BaseType).getQuantity());
4977 for (const ConstantArrayType *Array
4978 = Context.getAsConstantArrayType(FieldType);
4979 Array;
4980 Array = Context.getAsConstantArrayType(Array->getElementType())) {
4981 llvm::APInt ArraySize = Array->getSize();
4982 ArraySize.zextOrTrunc(Size.getBitWidth());
4983 Size *= ArraySize;
4984 }
4985
4986 // Take the address of the field references for "from" and "to".
4987 From = CreateBuiltinUnaryOp(Loc, UnaryOperator::AddrOf, move(From));
4988 To = CreateBuiltinUnaryOp(Loc, UnaryOperator::AddrOf, move(To));
Fariborz Jahanian021510e2010-06-15 22:44:06 +00004989
4990 bool NeedsCollectableMemCpy =
4991 (BaseType->isRecordType() &&
4992 BaseType->getAs<RecordType>()->getDecl()->hasObjectMember());
4993
4994 if (NeedsCollectableMemCpy) {
4995 if (!CollectableMemCpyRef) {
Fariborz Jahanian4a303072010-06-16 16:22:04 +00004996 // Create a reference to the __builtin_objc_memmove_collectable function.
4997 LookupResult R(*this,
4998 &Context.Idents.get("__builtin_objc_memmove_collectable"),
Fariborz Jahanian021510e2010-06-15 22:44:06 +00004999 Loc, LookupOrdinaryName);
5000 LookupName(R, TUScope, true);
5001
5002 FunctionDecl *CollectableMemCpy = R.getAsSingle<FunctionDecl>();
5003 if (!CollectableMemCpy) {
5004 // Something went horribly wrong earlier, and we will have
5005 // complained about it.
5006 Invalid = true;
5007 continue;
5008 }
5009
5010 CollectableMemCpyRef = BuildDeclRefExpr(CollectableMemCpy,
5011 CollectableMemCpy->getType(),
5012 Loc, 0).takeAs<Expr>();
5013 assert(CollectableMemCpyRef && "Builtin reference cannot fail");
5014 }
5015 }
Douglas Gregorb139cd52010-05-01 20:49:11 +00005016 // Create a reference to the __builtin_memcpy builtin function.
Fariborz Jahanian021510e2010-06-15 22:44:06 +00005017 else if (!BuiltinMemCpyRef) {
Douglas Gregorb139cd52010-05-01 20:49:11 +00005018 LookupResult R(*this, &Context.Idents.get("__builtin_memcpy"), Loc,
5019 LookupOrdinaryName);
5020 LookupName(R, TUScope, true);
5021
5022 FunctionDecl *BuiltinMemCpy = R.getAsSingle<FunctionDecl>();
5023 if (!BuiltinMemCpy) {
5024 // Something went horribly wrong earlier, and we will have complained
5025 // about it.
5026 Invalid = true;
5027 continue;
5028 }
5029
5030 BuiltinMemCpyRef = BuildDeclRefExpr(BuiltinMemCpy,
5031 BuiltinMemCpy->getType(),
5032 Loc, 0).takeAs<Expr>();
5033 assert(BuiltinMemCpyRef && "Builtin reference cannot fail");
5034 }
5035
5036 ASTOwningVector<&ActionBase::DeleteExpr> CallArgs(*this);
5037 CallArgs.push_back(To.takeAs<Expr>());
5038 CallArgs.push_back(From.takeAs<Expr>());
5039 CallArgs.push_back(new (Context) IntegerLiteral(Size, SizeType, Loc));
5040 llvm::SmallVector<SourceLocation, 4> Commas; // FIXME: Silly
5041 Commas.push_back(Loc);
5042 Commas.push_back(Loc);
Fariborz Jahanian00bdca52010-06-16 00:16:38 +00005043 OwningExprResult Call = ExprError();
5044 if (NeedsCollectableMemCpy)
5045 Call = ActOnCallExpr(/*Scope=*/0,
5046 Owned(CollectableMemCpyRef->Retain()),
5047 Loc, move_arg(CallArgs),
5048 Commas.data(), Loc);
5049 else
5050 Call = ActOnCallExpr(/*Scope=*/0,
5051 Owned(BuiltinMemCpyRef->Retain()),
5052 Loc, move_arg(CallArgs),
5053 Commas.data(), Loc);
5054
Douglas Gregorb139cd52010-05-01 20:49:11 +00005055 assert(!Call.isInvalid() && "Call to __builtin_memcpy cannot fail!");
5056 Statements.push_back(Call.takeAs<Expr>());
5057 continue;
5058 }
5059
5060 // Build the copy of this field.
5061 OwningStmtResult Copy = BuildSingleCopyAssign(*this, Loc, FieldType,
Douglas Gregor40c92bb2010-05-04 15:20:55 +00005062 move(To), move(From),
5063 /*CopyingBaseSubobject=*/false);
Douglas Gregorb139cd52010-05-01 20:49:11 +00005064 if (Copy.isInvalid()) {
Douglas Gregorbf1fb442010-05-05 22:38:15 +00005065 Diag(CurrentLocation, diag::note_member_synthesized_at)
5066 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
5067 CopyAssignOperator->setInvalidDecl();
5068 return;
Douglas Gregorb139cd52010-05-01 20:49:11 +00005069 }
5070
5071 // Success! Record the copy.
5072 Statements.push_back(Copy.takeAs<Stmt>());
5073 }
5074
5075 if (!Invalid) {
5076 // Add a "return *this;"
5077 OwningExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UnaryOperator::Deref,
5078 Owned(This->Retain()));
5079
5080 OwningStmtResult Return = ActOnReturnStmt(Loc, move(ThisObj));
5081 if (Return.isInvalid())
5082 Invalid = true;
5083 else {
5084 Statements.push_back(Return.takeAs<Stmt>());
Douglas Gregor54818f02010-05-12 16:39:35 +00005085
5086 if (Trap.hasErrorOccurred()) {
5087 Diag(CurrentLocation, diag::note_member_synthesized_at)
5088 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
5089 Invalid = true;
5090 }
Douglas Gregorb139cd52010-05-01 20:49:11 +00005091 }
5092 }
5093
5094 if (Invalid) {
5095 CopyAssignOperator->setInvalidDecl();
5096 return;
5097 }
5098
5099 OwningStmtResult Body = ActOnCompoundStmt(Loc, Loc, move_arg(Statements),
5100 /*isStmtExpr=*/false);
5101 assert(!Body.isInvalid() && "Compound statement creation cannot fail");
5102 CopyAssignOperator->setBody(Body.takeAs<Stmt>());
Fariborz Jahanian41f79272009-06-25 21:45:19 +00005103}
5104
Douglas Gregor0be31a22010-07-02 17:43:08 +00005105CXXConstructorDecl *Sema::DeclareImplicitCopyConstructor(
5106 CXXRecordDecl *ClassDecl) {
Douglas Gregor54be3392010-07-01 17:57:27 +00005107 // C++ [class.copy]p4:
5108 // If the class definition does not explicitly declare a copy
5109 // constructor, one is declared implicitly.
5110
Douglas Gregor54be3392010-07-01 17:57:27 +00005111 // C++ [class.copy]p5:
5112 // The implicitly-declared copy constructor for a class X will
5113 // have the form
5114 //
5115 // X::X(const X&)
5116 //
5117 // if
5118 bool HasConstCopyConstructor = true;
5119
5120 // -- each direct or virtual base class B of X has a copy
5121 // constructor whose first parameter is of type const B& or
5122 // const volatile B&, and
5123 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
5124 BaseEnd = ClassDecl->bases_end();
5125 HasConstCopyConstructor && Base != BaseEnd;
5126 ++Base) {
Douglas Gregorcfe68222010-07-01 18:27:03 +00005127 // Virtual bases are handled below.
5128 if (Base->isVirtual())
5129 continue;
5130
Douglas Gregora6d69502010-07-02 23:41:54 +00005131 CXXRecordDecl *BaseClassDecl
Douglas Gregorcfe68222010-07-01 18:27:03 +00005132 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregora6d69502010-07-02 23:41:54 +00005133 if (!BaseClassDecl->hasDeclaredCopyConstructor())
5134 DeclareImplicitCopyConstructor(BaseClassDecl);
5135
Douglas Gregorcfe68222010-07-01 18:27:03 +00005136 HasConstCopyConstructor
5137 = BaseClassDecl->hasConstCopyConstructor(Context);
5138 }
5139
5140 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
5141 BaseEnd = ClassDecl->vbases_end();
5142 HasConstCopyConstructor && Base != BaseEnd;
5143 ++Base) {
Douglas Gregora6d69502010-07-02 23:41:54 +00005144 CXXRecordDecl *BaseClassDecl
Douglas Gregor54be3392010-07-01 17:57:27 +00005145 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregora6d69502010-07-02 23:41:54 +00005146 if (!BaseClassDecl->hasDeclaredCopyConstructor())
5147 DeclareImplicitCopyConstructor(BaseClassDecl);
5148
Douglas Gregor54be3392010-07-01 17:57:27 +00005149 HasConstCopyConstructor
5150 = BaseClassDecl->hasConstCopyConstructor(Context);
5151 }
5152
5153 // -- for all the nonstatic data members of X that are of a
5154 // class type M (or array thereof), each such class type
5155 // has a copy constructor whose first parameter is of type
5156 // const M& or const volatile M&.
5157 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
5158 FieldEnd = ClassDecl->field_end();
5159 HasConstCopyConstructor && Field != FieldEnd;
5160 ++Field) {
Douglas Gregorcfe68222010-07-01 18:27:03 +00005161 QualType FieldType = Context.getBaseElementType((*Field)->getType());
Douglas Gregor54be3392010-07-01 17:57:27 +00005162 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Douglas Gregora6d69502010-07-02 23:41:54 +00005163 CXXRecordDecl *FieldClassDecl
Douglas Gregorcfe68222010-07-01 18:27:03 +00005164 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Douglas Gregora6d69502010-07-02 23:41:54 +00005165 if (!FieldClassDecl->hasDeclaredCopyConstructor())
5166 DeclareImplicitCopyConstructor(FieldClassDecl);
5167
Douglas Gregor54be3392010-07-01 17:57:27 +00005168 HasConstCopyConstructor
Douglas Gregorcfe68222010-07-01 18:27:03 +00005169 = FieldClassDecl->hasConstCopyConstructor(Context);
Douglas Gregor54be3392010-07-01 17:57:27 +00005170 }
5171 }
5172
5173 // Otherwise, the implicitly declared copy constructor will have
5174 // the form
5175 //
5176 // X::X(X&)
5177 QualType ClassType = Context.getTypeDeclType(ClassDecl);
5178 QualType ArgType = ClassType;
5179 if (HasConstCopyConstructor)
5180 ArgType = ArgType.withConst();
5181 ArgType = Context.getLValueReferenceType(ArgType);
5182
Douglas Gregor8453ddb2010-07-01 20:59:04 +00005183 // C++ [except.spec]p14:
5184 // An implicitly declared special member function (Clause 12) shall have an
5185 // exception-specification. [...]
5186 ImplicitExceptionSpecification ExceptSpec(Context);
5187 unsigned Quals = HasConstCopyConstructor? Qualifiers::Const : 0;
5188 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
5189 BaseEnd = ClassDecl->bases_end();
5190 Base != BaseEnd;
5191 ++Base) {
5192 // Virtual bases are handled below.
5193 if (Base->isVirtual())
5194 continue;
5195
Douglas Gregora6d69502010-07-02 23:41:54 +00005196 CXXRecordDecl *BaseClassDecl
Douglas Gregor8453ddb2010-07-01 20:59:04 +00005197 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregora6d69502010-07-02 23:41:54 +00005198 if (!BaseClassDecl->hasDeclaredCopyConstructor())
5199 DeclareImplicitCopyConstructor(BaseClassDecl);
5200
Douglas Gregor8453ddb2010-07-01 20:59:04 +00005201 if (CXXConstructorDecl *CopyConstructor
5202 = BaseClassDecl->getCopyConstructor(Context, Quals))
5203 ExceptSpec.CalledDecl(CopyConstructor);
5204 }
5205 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
5206 BaseEnd = ClassDecl->vbases_end();
5207 Base != BaseEnd;
5208 ++Base) {
Douglas Gregora6d69502010-07-02 23:41:54 +00005209 CXXRecordDecl *BaseClassDecl
Douglas Gregor8453ddb2010-07-01 20:59:04 +00005210 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregora6d69502010-07-02 23:41:54 +00005211 if (!BaseClassDecl->hasDeclaredCopyConstructor())
5212 DeclareImplicitCopyConstructor(BaseClassDecl);
5213
Douglas Gregor8453ddb2010-07-01 20:59:04 +00005214 if (CXXConstructorDecl *CopyConstructor
5215 = BaseClassDecl->getCopyConstructor(Context, Quals))
5216 ExceptSpec.CalledDecl(CopyConstructor);
5217 }
5218 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
5219 FieldEnd = ClassDecl->field_end();
5220 Field != FieldEnd;
5221 ++Field) {
5222 QualType FieldType = Context.getBaseElementType((*Field)->getType());
5223 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Douglas Gregora6d69502010-07-02 23:41:54 +00005224 CXXRecordDecl *FieldClassDecl
Douglas Gregor8453ddb2010-07-01 20:59:04 +00005225 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Douglas Gregora6d69502010-07-02 23:41:54 +00005226 if (!FieldClassDecl->hasDeclaredCopyConstructor())
5227 DeclareImplicitCopyConstructor(FieldClassDecl);
5228
Douglas Gregor8453ddb2010-07-01 20:59:04 +00005229 if (CXXConstructorDecl *CopyConstructor
5230 = FieldClassDecl->getCopyConstructor(Context, Quals))
5231 ExceptSpec.CalledDecl(CopyConstructor);
5232 }
5233 }
5234
Douglas Gregor54be3392010-07-01 17:57:27 +00005235 // An implicitly-declared copy constructor is an inline public
5236 // member of its class.
5237 DeclarationName Name
5238 = Context.DeclarationNames.getCXXConstructorName(
5239 Context.getCanonicalType(ClassType));
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00005240 DeclarationNameInfo NameInfo(Name, ClassDecl->getLocation());
Douglas Gregor54be3392010-07-01 17:57:27 +00005241 CXXConstructorDecl *CopyConstructor
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00005242 = CXXConstructorDecl::Create(Context, ClassDecl, NameInfo,
Douglas Gregor54be3392010-07-01 17:57:27 +00005243 Context.getFunctionType(Context.VoidTy,
5244 &ArgType, 1,
5245 false, 0,
Douglas Gregor8453ddb2010-07-01 20:59:04 +00005246 ExceptSpec.hasExceptionSpecification(),
5247 ExceptSpec.hasAnyExceptionSpecification(),
5248 ExceptSpec.size(),
5249 ExceptSpec.data(),
Douglas Gregor54be3392010-07-01 17:57:27 +00005250 FunctionType::ExtInfo()),
5251 /*TInfo=*/0,
5252 /*isExplicit=*/false,
5253 /*isInline=*/true,
5254 /*isImplicitlyDeclared=*/true);
5255 CopyConstructor->setAccess(AS_public);
5256 CopyConstructor->setImplicit();
5257 CopyConstructor->setTrivial(ClassDecl->hasTrivialCopyConstructor());
5258
Douglas Gregora6d69502010-07-02 23:41:54 +00005259 // Note that we have declared this constructor.
5260 ClassDecl->setDeclaredCopyConstructor(true);
5261 ++ASTContext::NumImplicitCopyConstructorsDeclared;
5262
Douglas Gregor54be3392010-07-01 17:57:27 +00005263 // Add the parameter to the constructor.
5264 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyConstructor,
5265 ClassDecl->getLocation(),
5266 /*IdentifierInfo=*/0,
5267 ArgType, /*TInfo=*/0,
5268 VarDecl::None,
5269 VarDecl::None, 0);
5270 CopyConstructor->setParams(&FromParam, 1);
Douglas Gregor0be31a22010-07-02 17:43:08 +00005271 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregora6d69502010-07-02 23:41:54 +00005272 PushOnScopeChains(CopyConstructor, S, false);
5273 ClassDecl->addDecl(CopyConstructor);
Douglas Gregor54be3392010-07-01 17:57:27 +00005274
5275 return CopyConstructor;
5276}
5277
Fariborz Jahanian477d2422009-06-22 23:34:40 +00005278void Sema::DefineImplicitCopyConstructor(SourceLocation CurrentLocation,
5279 CXXConstructorDecl *CopyConstructor,
5280 unsigned TypeQuals) {
Mike Stump11289f42009-09-09 15:08:12 +00005281 assert((CopyConstructor->isImplicit() &&
Douglas Gregor507eb872009-12-22 00:34:07 +00005282 CopyConstructor->isCopyConstructor(TypeQuals) &&
Douglas Gregorebada0772010-06-17 23:14:26 +00005283 !CopyConstructor->isUsed(false)) &&
Fariborz Jahanian477d2422009-06-22 23:34:40 +00005284 "DefineImplicitCopyConstructor - call it for implicit copy ctor");
Mike Stump11289f42009-09-09 15:08:12 +00005285
Anders Carlsson7a0ffdb2010-04-23 16:24:12 +00005286 CXXRecordDecl *ClassDecl = CopyConstructor->getParent();
Fariborz Jahanian477d2422009-06-22 23:34:40 +00005287 assert(ClassDecl && "DefineImplicitCopyConstructor - invalid constructor");
Douglas Gregor7ae2d772010-01-31 09:12:51 +00005288
Douglas Gregora57478e2010-05-01 15:04:51 +00005289 ImplicitlyDefinedFunctionScope Scope(*this, CopyConstructor);
Douglas Gregor54818f02010-05-12 16:39:35 +00005290 ErrorTrap Trap(*this);
Douglas Gregor7ae2d772010-01-31 09:12:51 +00005291
Douglas Gregor54818f02010-05-12 16:39:35 +00005292 if (SetBaseOrMemberInitializers(CopyConstructor, 0, 0, /*AnyErrors=*/false) ||
5293 Trap.hasErrorOccurred()) {
Anders Carlsson79111502010-05-01 16:39:01 +00005294 Diag(CurrentLocation, diag::note_member_synthesized_at)
Douglas Gregor94f9a482010-05-05 05:51:00 +00005295 << CXXCopyConstructor << Context.getTagDeclType(ClassDecl);
Anders Carlsson79111502010-05-01 16:39:01 +00005296 CopyConstructor->setInvalidDecl();
Douglas Gregor94f9a482010-05-05 05:51:00 +00005297 } else {
5298 CopyConstructor->setBody(ActOnCompoundStmt(CopyConstructor->getLocation(),
5299 CopyConstructor->getLocation(),
5300 MultiStmtArg(*this, 0, 0),
5301 /*isStmtExpr=*/false)
5302 .takeAs<Stmt>());
Anders Carlsson53e1ba92010-04-25 00:52:09 +00005303 }
Douglas Gregor94f9a482010-05-05 05:51:00 +00005304
5305 CopyConstructor->setUsed();
Fariborz Jahanian477d2422009-06-22 23:34:40 +00005306}
5307
Anders Carlsson6eb55572009-08-25 05:12:04 +00005308Sema::OwningExprResult
Anders Carlsson1b4ebfa2009-09-05 07:40:38 +00005309Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
Mike Stump11289f42009-09-09 15:08:12 +00005310 CXXConstructorDecl *Constructor,
Douglas Gregor4f4b1862009-12-16 18:50:27 +00005311 MultiExprArg ExprArgs,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00005312 bool RequiresZeroInit,
Anders Carlssonbcc066b2010-05-02 22:54:08 +00005313 CXXConstructExpr::ConstructionKind ConstructKind) {
Anders Carlsson250aada2009-08-16 05:13:48 +00005314 bool Elidable = false;
Mike Stump11289f42009-09-09 15:08:12 +00005315
Douglas Gregor45cf7e32010-04-02 18:24:57 +00005316 // C++0x [class.copy]p34:
5317 // When certain criteria are met, an implementation is allowed to
5318 // omit the copy/move construction of a class object, even if the
5319 // copy/move constructor and/or destructor for the object have
5320 // side effects. [...]
5321 // - when a temporary class object that has not been bound to a
5322 // reference (12.2) would be copied/moved to a class object
5323 // with the same cv-unqualified type, the copy/move operation
5324 // can be omitted by constructing the temporary object
5325 // directly into the target of the omitted copy/move
5326 if (Constructor->isCopyConstructor() && ExprArgs.size() >= 1) {
5327 Expr *SubExpr = ((Expr **)ExprArgs.get())[0];
5328 Elidable = SubExpr->isTemporaryObject() &&
5329 Context.hasSameUnqualifiedType(SubExpr->getType(),
5330 Context.getTypeDeclType(Constructor->getParent()));
Anders Carlsson250aada2009-08-16 05:13:48 +00005331 }
Mike Stump11289f42009-09-09 15:08:12 +00005332
5333 return BuildCXXConstructExpr(ConstructLoc, DeclInitType, Constructor,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00005334 Elidable, move(ExprArgs), RequiresZeroInit,
Anders Carlssonbcc066b2010-05-02 22:54:08 +00005335 ConstructKind);
Anders Carlsson250aada2009-08-16 05:13:48 +00005336}
5337
Fariborz Jahanianaa890bf2009-08-05 17:03:54 +00005338/// BuildCXXConstructExpr - Creates a complete call to a constructor,
5339/// including handling of its default argument expressions.
Anders Carlsson6eb55572009-08-25 05:12:04 +00005340Sema::OwningExprResult
Anders Carlsson1b4ebfa2009-09-05 07:40:38 +00005341Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
5342 CXXConstructorDecl *Constructor, bool Elidable,
Douglas Gregor4f4b1862009-12-16 18:50:27 +00005343 MultiExprArg ExprArgs,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00005344 bool RequiresZeroInit,
Anders Carlssonbcc066b2010-05-02 22:54:08 +00005345 CXXConstructExpr::ConstructionKind ConstructKind) {
Anders Carlsson5995a3e2009-09-07 22:23:31 +00005346 unsigned NumExprs = ExprArgs.size();
5347 Expr **Exprs = (Expr **)ExprArgs.release();
Mike Stump11289f42009-09-09 15:08:12 +00005348
Douglas Gregor27381f32009-11-23 12:27:39 +00005349 MarkDeclarationReferenced(ConstructLoc, Constructor);
Douglas Gregor85dabae2009-12-16 01:38:02 +00005350 return Owned(CXXConstructExpr::Create(Context, DeclInitType, ConstructLoc,
Douglas Gregor4f4b1862009-12-16 18:50:27 +00005351 Constructor, Elidable, Exprs, NumExprs,
Anders Carlssonbcc066b2010-05-02 22:54:08 +00005352 RequiresZeroInit, ConstructKind));
Fariborz Jahanianaa890bf2009-08-05 17:03:54 +00005353}
5354
Mike Stump11289f42009-09-09 15:08:12 +00005355bool Sema::InitializeVarWithConstructor(VarDecl *VD,
Fariborz Jahanianaa890bf2009-08-05 17:03:54 +00005356 CXXConstructorDecl *Constructor,
Anders Carlsson5995a3e2009-09-07 22:23:31 +00005357 MultiExprArg Exprs) {
Mike Stump11289f42009-09-09 15:08:12 +00005358 OwningExprResult TempResult =
Fariborz Jahanian57277c52009-10-28 18:41:06 +00005359 BuildCXXConstructExpr(VD->getLocation(), VD->getType(), Constructor,
Anders Carlsson5995a3e2009-09-07 22:23:31 +00005360 move(Exprs));
Anders Carlssonc1eb79b2009-08-25 05:18:00 +00005361 if (TempResult.isInvalid())
5362 return true;
Mike Stump11289f42009-09-09 15:08:12 +00005363
Anders Carlsson6eb55572009-08-25 05:12:04 +00005364 Expr *Temp = TempResult.takeAs<Expr>();
Douglas Gregor77b50e12009-06-22 23:06:13 +00005365 MarkDeclarationReferenced(VD->getLocation(), Constructor);
Anders Carlsson6e997b22009-12-15 20:51:39 +00005366 Temp = MaybeCreateCXXExprWithTemporaries(Temp);
Douglas Gregord5058122010-02-11 01:19:42 +00005367 VD->setInit(Temp);
Mike Stump11289f42009-09-09 15:08:12 +00005368
Anders Carlssonc1eb79b2009-08-25 05:18:00 +00005369 return false;
Anders Carlssone6840d82009-04-16 23:50:50 +00005370}
5371
John McCall03c48482010-02-02 09:10:11 +00005372void Sema::FinalizeVarWithDestructor(VarDecl *VD, const RecordType *Record) {
5373 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Record->getDecl());
Douglas Gregor422f1552010-02-25 18:11:54 +00005374 if (!ClassDecl->isInvalidDecl() && !VD->isInvalidDecl() &&
Douglas Gregor024d80e2010-05-22 17:12:29 +00005375 !ClassDecl->hasTrivialDestructor() && !ClassDecl->isDependentContext()) {
Douglas Gregore71edda2010-07-01 22:47:18 +00005376 CXXDestructorDecl *Destructor = LookupDestructor(ClassDecl);
John McCall6781b052010-02-02 08:45:54 +00005377 MarkDeclarationReferenced(VD->getLocation(), Destructor);
John McCall1064d7e2010-03-16 05:22:47 +00005378 CheckDestructorAccess(VD->getLocation(), Destructor,
Douglas Gregor89336232010-03-29 23:34:08 +00005379 PDiag(diag::err_access_dtor_var)
John McCall1064d7e2010-03-16 05:22:47 +00005380 << VD->getDeclName()
5381 << VD->getType());
John McCall47e40932010-08-01 20:20:59 +00005382
5383 if (!VD->isInvalidDecl() && VD->hasGlobalStorage())
5384 Diag(VD->getLocation(), diag::warn_global_destructor);
John McCall6781b052010-02-02 08:45:54 +00005385 }
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00005386}
5387
Mike Stump11289f42009-09-09 15:08:12 +00005388/// AddCXXDirectInitializerToDecl - This action is called immediately after
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005389/// ActOnDeclarator, when a C++ direct initializer is present.
5390/// e.g: "int x(1);"
Chris Lattner83f095c2009-03-28 19:18:32 +00005391void Sema::AddCXXDirectInitializerToDecl(DeclPtrTy Dcl,
5392 SourceLocation LParenLoc,
Sebastian Redl6d4256c2009-03-15 17:47:39 +00005393 MultiExprArg Exprs,
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005394 SourceLocation *CommaLocs,
5395 SourceLocation RParenLoc) {
Daniel Dunbar2db411f2009-12-24 19:19:26 +00005396 assert(Exprs.size() != 0 && Exprs.get() && "missing expressions");
Chris Lattner83f095c2009-03-28 19:18:32 +00005397 Decl *RealDecl = Dcl.getAs<Decl>();
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005398
5399 // If there is no declaration, there was an error parsing it. Just ignore
5400 // the initializer.
Chris Lattner83f095c2009-03-28 19:18:32 +00005401 if (RealDecl == 0)
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005402 return;
Mike Stump11289f42009-09-09 15:08:12 +00005403
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005404 VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl);
5405 if (!VDecl) {
5406 Diag(RealDecl->getLocation(), diag::err_illegal_initializer);
5407 RealDecl->setInvalidDecl();
5408 return;
5409 }
5410
Douglas Gregor402250f2009-08-26 21:14:46 +00005411 // We will represent direct-initialization similarly to copy-initialization:
Argyrios Kyrtzidis997d00d2008-10-06 23:08:37 +00005412 // int x(1); -as-> int x = 1;
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005413 // ClassType x(a,b,c); -as-> ClassType x = ClassType(a,b,c);
5414 //
5415 // Clients that want to distinguish between the two forms, can check for
5416 // direct initializer using VarDecl::hasCXXDirectInitializer().
5417 // A major benefit is that clients that don't particularly care about which
5418 // exactly form was it (like the CodeGen) can handle both cases without
5419 // special case code.
Argyrios Kyrtzidis153d9672008-10-06 18:37:09 +00005420
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005421 // C++ 8.5p11:
5422 // The form of initialization (using parentheses or '=') is generally
5423 // insignificant, but does matter when the entity being initialized has a
Argyrios Kyrtzidis153d9672008-10-06 18:37:09 +00005424 // class type.
5425
Douglas Gregor50dc2192010-02-11 22:55:30 +00005426 if (!VDecl->getType()->isDependentType() &&
5427 RequireCompleteType(VDecl->getLocation(), VDecl->getType(),
Douglas Gregor4044d992009-03-24 16:43:20 +00005428 diag::err_typecheck_decl_incomplete_type)) {
5429 VDecl->setInvalidDecl();
5430 return;
5431 }
5432
Douglas Gregorb6ea6082009-12-22 22:17:25 +00005433 // The variable can not have an abstract class type.
5434 if (RequireNonAbstractType(VDecl->getLocation(), VDecl->getType(),
5435 diag::err_abstract_type_in_decl,
5436 AbstractVariableType))
5437 VDecl->setInvalidDecl();
5438
Sebastian Redl5ca79842010-02-01 20:16:42 +00005439 const VarDecl *Def;
5440 if ((Def = VDecl->getDefinition()) && Def != VDecl) {
Douglas Gregorb6ea6082009-12-22 22:17:25 +00005441 Diag(VDecl->getLocation(), diag::err_redefinition)
5442 << VDecl->getDeclName();
5443 Diag(Def->getLocation(), diag::note_previous_definition);
5444 VDecl->setInvalidDecl();
Argyrios Kyrtzidis153d9672008-10-06 18:37:09 +00005445 return;
5446 }
Douglas Gregor50dc2192010-02-11 22:55:30 +00005447
5448 // If either the declaration has a dependent type or if any of the
5449 // expressions is type-dependent, we represent the initialization
5450 // via a ParenListExpr for later use during template instantiation.
5451 if (VDecl->getType()->isDependentType() ||
5452 Expr::hasAnyTypeDependentArguments((Expr **)Exprs.get(), Exprs.size())) {
5453 // Let clients know that initialization was done with a direct initializer.
5454 VDecl->setCXXDirectInitializer(true);
5455
5456 // Store the initialization expressions as a ParenListExpr.
5457 unsigned NumExprs = Exprs.size();
5458 VDecl->setInit(new (Context) ParenListExpr(Context, LParenLoc,
5459 (Expr **)Exprs.release(),
5460 NumExprs, RParenLoc));
5461 return;
5462 }
Douglas Gregorb6ea6082009-12-22 22:17:25 +00005463
5464 // Capture the variable that is being initialized and the style of
5465 // initialization.
5466 InitializedEntity Entity = InitializedEntity::InitializeVariable(VDecl);
5467
5468 // FIXME: Poor source location information.
5469 InitializationKind Kind
5470 = InitializationKind::CreateDirect(VDecl->getLocation(),
5471 LParenLoc, RParenLoc);
5472
5473 InitializationSequence InitSeq(*this, Entity, Kind,
5474 (Expr**)Exprs.get(), Exprs.size());
5475 OwningExprResult Result = InitSeq.Perform(*this, Entity, Kind, move(Exprs));
5476 if (Result.isInvalid()) {
5477 VDecl->setInvalidDecl();
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005478 return;
5479 }
Douglas Gregorb6ea6082009-12-22 22:17:25 +00005480
5481 Result = MaybeCreateCXXExprWithTemporaries(move(Result));
Douglas Gregord5058122010-02-11 01:19:42 +00005482 VDecl->setInit(Result.takeAs<Expr>());
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005483 VDecl->setCXXDirectInitializer(true);
Argyrios Kyrtzidis997d00d2008-10-06 23:08:37 +00005484
John McCall8b0f4ff2010-08-02 21:13:48 +00005485 if (!VDecl->isInvalidDecl() &&
5486 !VDecl->getDeclContext()->isDependentContext() &&
5487 VDecl->hasGlobalStorage() &&
5488 !VDecl->getInit()->isConstantInitializer(Context,
5489 VDecl->getType()->isReferenceType()))
5490 Diag(VDecl->getLocation(), diag::warn_global_constructor)
5491 << VDecl->getInit()->getSourceRange();
5492
John McCall03c48482010-02-02 09:10:11 +00005493 if (const RecordType *Record = VDecl->getType()->getAs<RecordType>())
5494 FinalizeVarWithDestructor(VDecl, Record);
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00005495}
Douglas Gregor8e1cf602008-10-29 00:13:59 +00005496
Douglas Gregor5d3507d2009-09-09 23:08:42 +00005497/// \brief Given a constructor and the set of arguments provided for the
5498/// constructor, convert the arguments and add any required default arguments
5499/// to form a proper call to this constructor.
5500///
5501/// \returns true if an error occurred, false otherwise.
5502bool
5503Sema::CompleteConstructorCall(CXXConstructorDecl *Constructor,
5504 MultiExprArg ArgsPtr,
5505 SourceLocation Loc,
5506 ASTOwningVector<&ActionBase::DeleteExpr> &ConvertedArgs) {
5507 // FIXME: This duplicates a lot of code from Sema::ConvertArgumentsForCall.
5508 unsigned NumArgs = ArgsPtr.size();
5509 Expr **Args = (Expr **)ArgsPtr.get();
5510
5511 const FunctionProtoType *Proto
5512 = Constructor->getType()->getAs<FunctionProtoType>();
5513 assert(Proto && "Constructor without a prototype?");
5514 unsigned NumArgsInProto = Proto->getNumArgs();
Douglas Gregor5d3507d2009-09-09 23:08:42 +00005515
5516 // If too few arguments are available, we'll fill in the rest with defaults.
Fariborz Jahanian4fa66ce2009-11-24 21:37:28 +00005517 if (NumArgs < NumArgsInProto)
Douglas Gregor5d3507d2009-09-09 23:08:42 +00005518 ConvertedArgs.reserve(NumArgsInProto);
Fariborz Jahanian4fa66ce2009-11-24 21:37:28 +00005519 else
Douglas Gregor5d3507d2009-09-09 23:08:42 +00005520 ConvertedArgs.reserve(NumArgs);
Fariborz Jahanian4fa66ce2009-11-24 21:37:28 +00005521
5522 VariadicCallType CallType =
5523 Proto->isVariadic() ? VariadicConstructor : VariadicDoesNotApply;
5524 llvm::SmallVector<Expr *, 8> AllArgs;
5525 bool Invalid = GatherArgumentsForCall(Loc, Constructor,
5526 Proto, 0, Args, NumArgs, AllArgs,
5527 CallType);
5528 for (unsigned i =0, size = AllArgs.size(); i < size; i++)
5529 ConvertedArgs.push_back(AllArgs[i]);
5530 return Invalid;
Douglas Gregorc28b57d2008-11-03 20:45:27 +00005531}
5532
Anders Carlssone363c8e2009-12-12 00:32:00 +00005533static inline bool
5534CheckOperatorNewDeleteDeclarationScope(Sema &SemaRef,
5535 const FunctionDecl *FnDecl) {
5536 const DeclContext *DC = FnDecl->getDeclContext()->getLookupContext();
5537 if (isa<NamespaceDecl>(DC)) {
5538 return SemaRef.Diag(FnDecl->getLocation(),
5539 diag::err_operator_new_delete_declared_in_namespace)
5540 << FnDecl->getDeclName();
5541 }
5542
5543 if (isa<TranslationUnitDecl>(DC) &&
5544 FnDecl->getStorageClass() == FunctionDecl::Static) {
5545 return SemaRef.Diag(FnDecl->getLocation(),
5546 diag::err_operator_new_delete_declared_static)
5547 << FnDecl->getDeclName();
5548 }
5549
Anders Carlsson60659a82009-12-12 02:43:16 +00005550 return false;
Anders Carlssone363c8e2009-12-12 00:32:00 +00005551}
5552
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005553static inline bool
5554CheckOperatorNewDeleteTypes(Sema &SemaRef, const FunctionDecl *FnDecl,
5555 CanQualType ExpectedResultType,
5556 CanQualType ExpectedFirstParamType,
5557 unsigned DependentParamTypeDiag,
5558 unsigned InvalidParamTypeDiag) {
5559 QualType ResultType =
5560 FnDecl->getType()->getAs<FunctionType>()->getResultType();
5561
5562 // Check that the result type is not dependent.
5563 if (ResultType->isDependentType())
5564 return SemaRef.Diag(FnDecl->getLocation(),
5565 diag::err_operator_new_delete_dependent_result_type)
5566 << FnDecl->getDeclName() << ExpectedResultType;
5567
5568 // Check that the result type is what we expect.
5569 if (SemaRef.Context.getCanonicalType(ResultType) != ExpectedResultType)
5570 return SemaRef.Diag(FnDecl->getLocation(),
5571 diag::err_operator_new_delete_invalid_result_type)
5572 << FnDecl->getDeclName() << ExpectedResultType;
5573
5574 // A function template must have at least 2 parameters.
5575 if (FnDecl->getDescribedFunctionTemplate() && FnDecl->getNumParams() < 2)
5576 return SemaRef.Diag(FnDecl->getLocation(),
5577 diag::err_operator_new_delete_template_too_few_parameters)
5578 << FnDecl->getDeclName();
5579
5580 // The function decl must have at least 1 parameter.
5581 if (FnDecl->getNumParams() == 0)
5582 return SemaRef.Diag(FnDecl->getLocation(),
5583 diag::err_operator_new_delete_too_few_parameters)
5584 << FnDecl->getDeclName();
5585
5586 // Check the the first parameter type is not dependent.
5587 QualType FirstParamType = FnDecl->getParamDecl(0)->getType();
5588 if (FirstParamType->isDependentType())
5589 return SemaRef.Diag(FnDecl->getLocation(), DependentParamTypeDiag)
5590 << FnDecl->getDeclName() << ExpectedFirstParamType;
5591
5592 // Check that the first parameter type is what we expect.
Douglas Gregor684d7bd2009-12-22 23:42:49 +00005593 if (SemaRef.Context.getCanonicalType(FirstParamType).getUnqualifiedType() !=
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005594 ExpectedFirstParamType)
5595 return SemaRef.Diag(FnDecl->getLocation(), InvalidParamTypeDiag)
5596 << FnDecl->getDeclName() << ExpectedFirstParamType;
5597
5598 return false;
5599}
5600
Anders Carlsson12308f42009-12-11 23:23:22 +00005601static bool
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005602CheckOperatorNewDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
Anders Carlssone363c8e2009-12-12 00:32:00 +00005603 // C++ [basic.stc.dynamic.allocation]p1:
5604 // A program is ill-formed if an allocation function is declared in a
5605 // namespace scope other than global scope or declared static in global
5606 // scope.
5607 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
5608 return true;
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005609
5610 CanQualType SizeTy =
5611 SemaRef.Context.getCanonicalType(SemaRef.Context.getSizeType());
5612
5613 // C++ [basic.stc.dynamic.allocation]p1:
5614 // The return type shall be void*. The first parameter shall have type
5615 // std::size_t.
5616 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidPtrTy,
5617 SizeTy,
5618 diag::err_operator_new_dependent_param_type,
5619 diag::err_operator_new_param_type))
5620 return true;
5621
5622 // C++ [basic.stc.dynamic.allocation]p1:
5623 // The first parameter shall not have an associated default argument.
5624 if (FnDecl->getParamDecl(0)->hasDefaultArg())
Anders Carlsson22f443f2009-12-12 00:26:23 +00005625 return SemaRef.Diag(FnDecl->getLocation(),
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005626 diag::err_operator_new_default_arg)
5627 << FnDecl->getDeclName() << FnDecl->getParamDecl(0)->getDefaultArgRange();
5628
5629 return false;
Anders Carlsson22f443f2009-12-12 00:26:23 +00005630}
5631
5632static bool
Anders Carlsson12308f42009-12-11 23:23:22 +00005633CheckOperatorDeleteDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
5634 // C++ [basic.stc.dynamic.deallocation]p1:
5635 // A program is ill-formed if deallocation functions are declared in a
5636 // namespace scope other than global scope or declared static in global
5637 // scope.
Anders Carlssone363c8e2009-12-12 00:32:00 +00005638 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
5639 return true;
Anders Carlsson12308f42009-12-11 23:23:22 +00005640
5641 // C++ [basic.stc.dynamic.deallocation]p2:
5642 // Each deallocation function shall return void and its first parameter
5643 // shall be void*.
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005644 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidTy,
5645 SemaRef.Context.VoidPtrTy,
5646 diag::err_operator_delete_dependent_param_type,
5647 diag::err_operator_delete_param_type))
5648 return true;
Anders Carlsson12308f42009-12-11 23:23:22 +00005649
Anders Carlsson12308f42009-12-11 23:23:22 +00005650 return false;
5651}
5652
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005653/// CheckOverloadedOperatorDeclaration - Check whether the declaration
5654/// of this overloaded operator is well-formed. If so, returns false;
5655/// otherwise, emits appropriate diagnostics and returns true.
5656bool Sema::CheckOverloadedOperatorDeclaration(FunctionDecl *FnDecl) {
Douglas Gregord69246b2008-11-17 16:14:12 +00005657 assert(FnDecl && FnDecl->isOverloadedOperator() &&
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005658 "Expected an overloaded operator declaration");
5659
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005660 OverloadedOperatorKind Op = FnDecl->getOverloadedOperator();
5661
Mike Stump11289f42009-09-09 15:08:12 +00005662 // C++ [over.oper]p5:
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005663 // The allocation and deallocation functions, operator new,
5664 // operator new[], operator delete and operator delete[], are
5665 // described completely in 3.7.3. The attributes and restrictions
5666 // found in the rest of this subclause do not apply to them unless
5667 // explicitly stated in 3.7.3.
Anders Carlssonf1f46952009-12-11 23:31:21 +00005668 if (Op == OO_Delete || Op == OO_Array_Delete)
Anders Carlsson12308f42009-12-11 23:23:22 +00005669 return CheckOperatorDeleteDeclaration(*this, FnDecl);
Fariborz Jahanian4e088942009-11-10 23:47:18 +00005670
Anders Carlsson22f443f2009-12-12 00:26:23 +00005671 if (Op == OO_New || Op == OO_Array_New)
5672 return CheckOperatorNewDeclaration(*this, FnDecl);
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005673
5674 // C++ [over.oper]p6:
5675 // An operator function shall either be a non-static member
5676 // function or be a non-member function and have at least one
5677 // parameter whose type is a class, a reference to a class, an
5678 // enumeration, or a reference to an enumeration.
Douglas Gregord69246b2008-11-17 16:14:12 +00005679 if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(FnDecl)) {
5680 if (MethodDecl->isStatic())
5681 return Diag(FnDecl->getLocation(),
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00005682 diag::err_operator_overload_static) << FnDecl->getDeclName();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005683 } else {
5684 bool ClassOrEnumParam = false;
Douglas Gregord69246b2008-11-17 16:14:12 +00005685 for (FunctionDecl::param_iterator Param = FnDecl->param_begin(),
5686 ParamEnd = FnDecl->param_end();
5687 Param != ParamEnd; ++Param) {
5688 QualType ParamType = (*Param)->getType().getNonReferenceType();
Eli Friedman173e0b7a2009-06-27 05:59:59 +00005689 if (ParamType->isDependentType() || ParamType->isRecordType() ||
5690 ParamType->isEnumeralType()) {
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005691 ClassOrEnumParam = true;
5692 break;
5693 }
5694 }
5695
Douglas Gregord69246b2008-11-17 16:14:12 +00005696 if (!ClassOrEnumParam)
5697 return Diag(FnDecl->getLocation(),
Chris Lattner651d42d2008-11-20 06:38:18 +00005698 diag::err_operator_overload_needs_class_or_enum)
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00005699 << FnDecl->getDeclName();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005700 }
5701
5702 // C++ [over.oper]p8:
5703 // An operator function cannot have default arguments (8.3.6),
5704 // except where explicitly stated below.
5705 //
Mike Stump11289f42009-09-09 15:08:12 +00005706 // Only the function-call operator allows default arguments
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005707 // (C++ [over.call]p1).
5708 if (Op != OO_Call) {
5709 for (FunctionDecl::param_iterator Param = FnDecl->param_begin();
5710 Param != FnDecl->param_end(); ++Param) {
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005711 if ((*Param)->hasDefaultArg())
Mike Stump11289f42009-09-09 15:08:12 +00005712 return Diag((*Param)->getLocation(),
Douglas Gregor58354032008-12-24 00:01:03 +00005713 diag::err_operator_overload_default_arg)
Anders Carlsson7e0b2072009-12-13 17:53:43 +00005714 << FnDecl->getDeclName() << (*Param)->getDefaultArgRange();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005715 }
5716 }
5717
Douglas Gregor6cf08062008-11-10 13:38:07 +00005718 static const bool OperatorUses[NUM_OVERLOADED_OPERATORS][3] = {
5719 { false, false, false }
5720#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
5721 , { Unary, Binary, MemberOnly }
5722#include "clang/Basic/OperatorKinds.def"
5723 };
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005724
Douglas Gregor6cf08062008-11-10 13:38:07 +00005725 bool CanBeUnaryOperator = OperatorUses[Op][0];
5726 bool CanBeBinaryOperator = OperatorUses[Op][1];
5727 bool MustBeMemberOperator = OperatorUses[Op][2];
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005728
5729 // C++ [over.oper]p8:
5730 // [...] Operator functions cannot have more or fewer parameters
5731 // than the number required for the corresponding operator, as
5732 // described in the rest of this subclause.
Mike Stump11289f42009-09-09 15:08:12 +00005733 unsigned NumParams = FnDecl->getNumParams()
Douglas Gregord69246b2008-11-17 16:14:12 +00005734 + (isa<CXXMethodDecl>(FnDecl)? 1 : 0);
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005735 if (Op != OO_Call &&
5736 ((NumParams == 1 && !CanBeUnaryOperator) ||
5737 (NumParams == 2 && !CanBeBinaryOperator) ||
5738 (NumParams < 1) || (NumParams > 2))) {
5739 // We have the wrong number of parameters.
Chris Lattnerc5bab9f2008-11-21 07:57:12 +00005740 unsigned ErrorKind;
Douglas Gregor6cf08062008-11-10 13:38:07 +00005741 if (CanBeUnaryOperator && CanBeBinaryOperator) {
Chris Lattnerc5bab9f2008-11-21 07:57:12 +00005742 ErrorKind = 2; // 2 -> unary or binary.
Douglas Gregor6cf08062008-11-10 13:38:07 +00005743 } else if (CanBeUnaryOperator) {
Chris Lattnerc5bab9f2008-11-21 07:57:12 +00005744 ErrorKind = 0; // 0 -> unary
Douglas Gregor6cf08062008-11-10 13:38:07 +00005745 } else {
Chris Lattner2b786902008-11-21 07:50:02 +00005746 assert(CanBeBinaryOperator &&
5747 "All non-call overloaded operators are unary or binary!");
Chris Lattnerc5bab9f2008-11-21 07:57:12 +00005748 ErrorKind = 1; // 1 -> binary
Douglas Gregor6cf08062008-11-10 13:38:07 +00005749 }
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005750
Chris Lattnerc5bab9f2008-11-21 07:57:12 +00005751 return Diag(FnDecl->getLocation(), diag::err_operator_overload_must_be)
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00005752 << FnDecl->getDeclName() << NumParams << ErrorKind;
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005753 }
Sebastian Redlbaad4e72009-01-05 20:52:13 +00005754
Douglas Gregord69246b2008-11-17 16:14:12 +00005755 // Overloaded operators other than operator() cannot be variadic.
5756 if (Op != OO_Call &&
John McCall9dd450b2009-09-21 23:43:11 +00005757 FnDecl->getType()->getAs<FunctionProtoType>()->isVariadic()) {
Chris Lattner651d42d2008-11-20 06:38:18 +00005758 return Diag(FnDecl->getLocation(), diag::err_operator_overload_variadic)
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00005759 << FnDecl->getDeclName();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005760 }
5761
5762 // Some operators must be non-static member functions.
Douglas Gregord69246b2008-11-17 16:14:12 +00005763 if (MustBeMemberOperator && !isa<CXXMethodDecl>(FnDecl)) {
5764 return Diag(FnDecl->getLocation(),
Chris Lattner651d42d2008-11-20 06:38:18 +00005765 diag::err_operator_overload_must_be_member)
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00005766 << FnDecl->getDeclName();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005767 }
5768
5769 // C++ [over.inc]p1:
5770 // The user-defined function called operator++ implements the
5771 // prefix and postfix ++ operator. If this function is a member
5772 // function with no parameters, or a non-member function with one
5773 // parameter of class or enumeration type, it defines the prefix
5774 // increment operator ++ for objects of that type. If the function
5775 // is a member function with one parameter (which shall be of type
5776 // int) or a non-member function with two parameters (the second
5777 // of which shall be of type int), it defines the postfix
5778 // increment operator ++ for objects of that type.
5779 if ((Op == OO_PlusPlus || Op == OO_MinusMinus) && NumParams == 2) {
5780 ParmVarDecl *LastParam = FnDecl->getParamDecl(FnDecl->getNumParams() - 1);
5781 bool ParamIsInt = false;
John McCall9dd450b2009-09-21 23:43:11 +00005782 if (const BuiltinType *BT = LastParam->getType()->getAs<BuiltinType>())
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005783 ParamIsInt = BT->getKind() == BuiltinType::Int;
5784
Chris Lattner2b786902008-11-21 07:50:02 +00005785 if (!ParamIsInt)
5786 return Diag(LastParam->getLocation(),
Mike Stump11289f42009-09-09 15:08:12 +00005787 diag::err_operator_overload_post_incdec_must_be_int)
Chris Lattner1e5665e2008-11-24 06:25:27 +00005788 << LastParam->getType() << (Op == OO_MinusMinus);
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005789 }
5790
Sebastian Redlbaad4e72009-01-05 20:52:13 +00005791 // Notify the class if it got an assignment operator.
5792 if (Op == OO_Equal) {
5793 // Would have returned earlier otherwise.
5794 assert(isa<CXXMethodDecl>(FnDecl) &&
5795 "Overloaded = not member, but not filtered.");
5796 CXXMethodDecl *Method = cast<CXXMethodDecl>(FnDecl);
5797 Method->getParent()->addedAssignmentOperator(Context, Method);
5798 }
5799
Douglas Gregord69246b2008-11-17 16:14:12 +00005800 return false;
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00005801}
Chris Lattner3b024a32008-12-17 07:09:26 +00005802
Alexis Huntc88db062010-01-13 09:01:02 +00005803/// CheckLiteralOperatorDeclaration - Check whether the declaration
5804/// of this literal operator function is well-formed. If so, returns
5805/// false; otherwise, emits appropriate diagnostics and returns true.
5806bool Sema::CheckLiteralOperatorDeclaration(FunctionDecl *FnDecl) {
5807 DeclContext *DC = FnDecl->getDeclContext();
5808 Decl::Kind Kind = DC->getDeclKind();
5809 if (Kind != Decl::TranslationUnit && Kind != Decl::Namespace &&
5810 Kind != Decl::LinkageSpec) {
5811 Diag(FnDecl->getLocation(), diag::err_literal_operator_outside_namespace)
5812 << FnDecl->getDeclName();
5813 return true;
5814 }
5815
5816 bool Valid = false;
5817
Alexis Hunt7dd26172010-04-07 23:11:06 +00005818 // template <char...> type operator "" name() is the only valid template
5819 // signature, and the only valid signature with no parameters.
5820 if (FnDecl->param_size() == 0) {
5821 if (FunctionTemplateDecl *TpDecl = FnDecl->getDescribedFunctionTemplate()) {
5822 // Must have only one template parameter
5823 TemplateParameterList *Params = TpDecl->getTemplateParameters();
5824 if (Params->size() == 1) {
5825 NonTypeTemplateParmDecl *PmDecl =
5826 cast<NonTypeTemplateParmDecl>(Params->getParam(0));
Alexis Huntc88db062010-01-13 09:01:02 +00005827
Alexis Hunt7dd26172010-04-07 23:11:06 +00005828 // The template parameter must be a char parameter pack.
5829 // FIXME: This test will always fail because non-type parameter packs
5830 // have not been implemented.
5831 if (PmDecl && PmDecl->isTemplateParameterPack() &&
5832 Context.hasSameType(PmDecl->getType(), Context.CharTy))
5833 Valid = true;
5834 }
5835 }
5836 } else {
Alexis Huntc88db062010-01-13 09:01:02 +00005837 // Check the first parameter
Alexis Hunt7dd26172010-04-07 23:11:06 +00005838 FunctionDecl::param_iterator Param = FnDecl->param_begin();
5839
Alexis Huntc88db062010-01-13 09:01:02 +00005840 QualType T = (*Param)->getType();
5841
Alexis Hunt079a6f72010-04-07 22:57:35 +00005842 // unsigned long long int, long double, and any character type are allowed
5843 // as the only parameters.
Alexis Huntc88db062010-01-13 09:01:02 +00005844 if (Context.hasSameType(T, Context.UnsignedLongLongTy) ||
5845 Context.hasSameType(T, Context.LongDoubleTy) ||
5846 Context.hasSameType(T, Context.CharTy) ||
5847 Context.hasSameType(T, Context.WCharTy) ||
5848 Context.hasSameType(T, Context.Char16Ty) ||
5849 Context.hasSameType(T, Context.Char32Ty)) {
5850 if (++Param == FnDecl->param_end())
5851 Valid = true;
5852 goto FinishedParams;
5853 }
5854
Alexis Hunt079a6f72010-04-07 22:57:35 +00005855 // Otherwise it must be a pointer to const; let's strip those qualifiers.
Alexis Huntc88db062010-01-13 09:01:02 +00005856 const PointerType *PT = T->getAs<PointerType>();
5857 if (!PT)
5858 goto FinishedParams;
5859 T = PT->getPointeeType();
5860 if (!T.isConstQualified())
5861 goto FinishedParams;
5862 T = T.getUnqualifiedType();
5863
5864 // Move on to the second parameter;
5865 ++Param;
5866
5867 // If there is no second parameter, the first must be a const char *
5868 if (Param == FnDecl->param_end()) {
5869 if (Context.hasSameType(T, Context.CharTy))
5870 Valid = true;
5871 goto FinishedParams;
5872 }
5873
5874 // const char *, const wchar_t*, const char16_t*, and const char32_t*
5875 // are allowed as the first parameter to a two-parameter function
5876 if (!(Context.hasSameType(T, Context.CharTy) ||
5877 Context.hasSameType(T, Context.WCharTy) ||
5878 Context.hasSameType(T, Context.Char16Ty) ||
5879 Context.hasSameType(T, Context.Char32Ty)))
5880 goto FinishedParams;
5881
5882 // The second and final parameter must be an std::size_t
5883 T = (*Param)->getType().getUnqualifiedType();
5884 if (Context.hasSameType(T, Context.getSizeType()) &&
5885 ++Param == FnDecl->param_end())
5886 Valid = true;
5887 }
5888
5889 // FIXME: This diagnostic is absolutely terrible.
5890FinishedParams:
5891 if (!Valid) {
5892 Diag(FnDecl->getLocation(), diag::err_literal_operator_params)
5893 << FnDecl->getDeclName();
5894 return true;
5895 }
5896
5897 return false;
5898}
5899
Douglas Gregor07665a62009-01-05 19:45:36 +00005900/// ActOnStartLinkageSpecification - Parsed the beginning of a C++
5901/// linkage specification, including the language and (if present)
5902/// the '{'. ExternLoc is the location of the 'extern', LangLoc is
5903/// the location of the language string literal, which is provided
5904/// by Lang/StrSize. LBraceLoc, if valid, provides the location of
5905/// the '{' brace. Otherwise, this linkage specification does not
5906/// have any braces.
Chris Lattner83f095c2009-03-28 19:18:32 +00005907Sema::DeclPtrTy Sema::ActOnStartLinkageSpecification(Scope *S,
5908 SourceLocation ExternLoc,
5909 SourceLocation LangLoc,
Benjamin Kramerbebee842010-05-03 13:08:54 +00005910 llvm::StringRef Lang,
Chris Lattner83f095c2009-03-28 19:18:32 +00005911 SourceLocation LBraceLoc) {
Chris Lattner438e5012008-12-17 07:13:27 +00005912 LinkageSpecDecl::LanguageIDs Language;
Benjamin Kramerbebee842010-05-03 13:08:54 +00005913 if (Lang == "\"C\"")
Chris Lattner438e5012008-12-17 07:13:27 +00005914 Language = LinkageSpecDecl::lang_c;
Benjamin Kramerbebee842010-05-03 13:08:54 +00005915 else if (Lang == "\"C++\"")
Chris Lattner438e5012008-12-17 07:13:27 +00005916 Language = LinkageSpecDecl::lang_cxx;
5917 else {
Douglas Gregor07665a62009-01-05 19:45:36 +00005918 Diag(LangLoc, diag::err_bad_language);
Chris Lattner83f095c2009-03-28 19:18:32 +00005919 return DeclPtrTy();
Chris Lattner438e5012008-12-17 07:13:27 +00005920 }
Mike Stump11289f42009-09-09 15:08:12 +00005921
Chris Lattner438e5012008-12-17 07:13:27 +00005922 // FIXME: Add all the various semantics of linkage specifications
Mike Stump11289f42009-09-09 15:08:12 +00005923
Douglas Gregor07665a62009-01-05 19:45:36 +00005924 LinkageSpecDecl *D = LinkageSpecDecl::Create(Context, CurContext,
Mike Stump11289f42009-09-09 15:08:12 +00005925 LangLoc, Language,
Douglas Gregor07665a62009-01-05 19:45:36 +00005926 LBraceLoc.isValid());
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00005927 CurContext->addDecl(D);
Douglas Gregor07665a62009-01-05 19:45:36 +00005928 PushDeclContext(S, D);
Chris Lattner83f095c2009-03-28 19:18:32 +00005929 return DeclPtrTy::make(D);
Chris Lattner438e5012008-12-17 07:13:27 +00005930}
5931
Abramo Bagnaraed5b6892010-07-30 16:47:02 +00005932/// ActOnFinishLinkageSpecification - Complete the definition of
Douglas Gregor07665a62009-01-05 19:45:36 +00005933/// the C++ linkage specification LinkageSpec. If RBraceLoc is
5934/// valid, it's the position of the closing '}' brace in a linkage
5935/// specification that uses braces.
Chris Lattner83f095c2009-03-28 19:18:32 +00005936Sema::DeclPtrTy Sema::ActOnFinishLinkageSpecification(Scope *S,
5937 DeclPtrTy LinkageSpec,
5938 SourceLocation RBraceLoc) {
Douglas Gregor07665a62009-01-05 19:45:36 +00005939 if (LinkageSpec)
5940 PopDeclContext();
5941 return LinkageSpec;
Chris Lattner3b024a32008-12-17 07:09:26 +00005942}
5943
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00005944/// \brief Perform semantic analysis for the variable declaration that
5945/// occurs within a C++ catch clause, returning the newly-created
5946/// variable.
5947VarDecl *Sema::BuildExceptionDeclaration(Scope *S, QualType ExDeclType,
John McCallbcd03502009-12-07 02:54:59 +00005948 TypeSourceInfo *TInfo,
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00005949 IdentifierInfo *Name,
5950 SourceLocation Loc,
5951 SourceRange Range) {
5952 bool Invalid = false;
Sebastian Redl54c04d42008-12-22 19:15:10 +00005953
5954 // Arrays and functions decay.
5955 if (ExDeclType->isArrayType())
5956 ExDeclType = Context.getArrayDecayedType(ExDeclType);
5957 else if (ExDeclType->isFunctionType())
5958 ExDeclType = Context.getPointerType(ExDeclType);
5959
5960 // C++ 15.3p1: The exception-declaration shall not denote an incomplete type.
5961 // The exception-declaration shall not denote a pointer or reference to an
5962 // incomplete type, other than [cv] void*.
Sebastian Redlb28b4072009-03-22 23:49:27 +00005963 // N2844 forbids rvalue references.
Mike Stump11289f42009-09-09 15:08:12 +00005964 if (!ExDeclType->isDependentType() && ExDeclType->isRValueReferenceType()) {
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00005965 Diag(Loc, diag::err_catch_rvalue_ref) << Range;
Sebastian Redlb28b4072009-03-22 23:49:27 +00005966 Invalid = true;
5967 }
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00005968
Douglas Gregor104ee002010-03-08 01:47:36 +00005969 // GCC allows catching pointers and references to incomplete types
5970 // as an extension; so do we, but we warn by default.
5971
Sebastian Redl54c04d42008-12-22 19:15:10 +00005972 QualType BaseType = ExDeclType;
5973 int Mode = 0; // 0 for direct type, 1 for pointer, 2 for reference
Douglas Gregordd430f72009-01-19 19:26:10 +00005974 unsigned DK = diag::err_catch_incomplete;
Douglas Gregor104ee002010-03-08 01:47:36 +00005975 bool IncompleteCatchIsInvalid = true;
Ted Kremenekc23c7e62009-07-29 21:53:49 +00005976 if (const PointerType *Ptr = BaseType->getAs<PointerType>()) {
Sebastian Redl54c04d42008-12-22 19:15:10 +00005977 BaseType = Ptr->getPointeeType();
5978 Mode = 1;
Douglas Gregor104ee002010-03-08 01:47:36 +00005979 DK = diag::ext_catch_incomplete_ptr;
5980 IncompleteCatchIsInvalid = false;
Mike Stump11289f42009-09-09 15:08:12 +00005981 } else if (const ReferenceType *Ref = BaseType->getAs<ReferenceType>()) {
Sebastian Redlb28b4072009-03-22 23:49:27 +00005982 // For the purpose of error recovery, we treat rvalue refs like lvalue refs.
Sebastian Redl54c04d42008-12-22 19:15:10 +00005983 BaseType = Ref->getPointeeType();
5984 Mode = 2;
Douglas Gregor104ee002010-03-08 01:47:36 +00005985 DK = diag::ext_catch_incomplete_ref;
5986 IncompleteCatchIsInvalid = false;
Sebastian Redl54c04d42008-12-22 19:15:10 +00005987 }
Sebastian Redlb28b4072009-03-22 23:49:27 +00005988 if (!Invalid && (Mode == 0 || !BaseType->isVoidType()) &&
Douglas Gregor104ee002010-03-08 01:47:36 +00005989 !BaseType->isDependentType() && RequireCompleteType(Loc, BaseType, DK) &&
5990 IncompleteCatchIsInvalid)
Sebastian Redl54c04d42008-12-22 19:15:10 +00005991 Invalid = true;
Sebastian Redl54c04d42008-12-22 19:15:10 +00005992
Mike Stump11289f42009-09-09 15:08:12 +00005993 if (!Invalid && !ExDeclType->isDependentType() &&
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00005994 RequireNonAbstractType(Loc, ExDeclType,
5995 diag::err_abstract_type_in_decl,
5996 AbstractVariableType))
Sebastian Redl2f38ba52009-04-27 21:03:30 +00005997 Invalid = true;
5998
John McCall2ca705e2010-07-24 00:37:23 +00005999 // Only the non-fragile NeXT runtime currently supports C++ catches
6000 // of ObjC types, and no runtime supports catching ObjC types by value.
6001 if (!Invalid && getLangOptions().ObjC1) {
6002 QualType T = ExDeclType;
6003 if (const ReferenceType *RT = T->getAs<ReferenceType>())
6004 T = RT->getPointeeType();
6005
6006 if (T->isObjCObjectType()) {
6007 Diag(Loc, diag::err_objc_object_catch);
6008 Invalid = true;
6009 } else if (T->isObjCObjectPointerType()) {
6010 if (!getLangOptions().NeXTRuntime) {
6011 Diag(Loc, diag::err_objc_pointer_cxx_catch_gnu);
6012 Invalid = true;
6013 } else if (!getLangOptions().ObjCNonFragileABI) {
6014 Diag(Loc, diag::err_objc_pointer_cxx_catch_fragile);
6015 Invalid = true;
6016 }
6017 }
6018 }
6019
Mike Stump11289f42009-09-09 15:08:12 +00006020 VarDecl *ExDecl = VarDecl::Create(Context, CurContext, Loc,
Douglas Gregorc4df4072010-04-19 22:54:31 +00006021 Name, ExDeclType, TInfo, VarDecl::None,
6022 VarDecl::None);
Douglas Gregor3f324d562010-05-03 18:51:14 +00006023 ExDecl->setExceptionVariable(true);
6024
Douglas Gregor6de584c2010-03-05 23:38:39 +00006025 if (!Invalid) {
6026 if (const RecordType *RecordTy = ExDeclType->getAs<RecordType>()) {
6027 // C++ [except.handle]p16:
6028 // The object declared in an exception-declaration or, if the
6029 // exception-declaration does not specify a name, a temporary (12.2) is
6030 // copy-initialized (8.5) from the exception object. [...]
6031 // The object is destroyed when the handler exits, after the destruction
6032 // of any automatic objects initialized within the handler.
6033 //
6034 // We just pretend to initialize the object with itself, then make sure
6035 // it can be destroyed later.
6036 InitializedEntity Entity = InitializedEntity::InitializeVariable(ExDecl);
6037 Expr *ExDeclRef = DeclRefExpr::Create(Context, 0, SourceRange(), ExDecl,
6038 Loc, ExDeclType, 0);
6039 InitializationKind Kind = InitializationKind::CreateCopy(Loc,
6040 SourceLocation());
6041 InitializationSequence InitSeq(*this, Entity, Kind, &ExDeclRef, 1);
6042 OwningExprResult Result = InitSeq.Perform(*this, Entity, Kind,
6043 MultiExprArg(*this, (void**)&ExDeclRef, 1));
6044 if (Result.isInvalid())
6045 Invalid = true;
6046 else
6047 FinalizeVarWithDestructor(ExDecl, RecordTy);
6048 }
6049 }
6050
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00006051 if (Invalid)
6052 ExDecl->setInvalidDecl();
6053
6054 return ExDecl;
6055}
6056
6057/// ActOnExceptionDeclarator - Parsed the exception-declarator in a C++ catch
6058/// handler.
6059Sema::DeclPtrTy Sema::ActOnExceptionDeclarator(Scope *S, Declarator &D) {
John McCall8cb7bdf2010-06-04 23:28:52 +00006060 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
6061 QualType ExDeclType = TInfo->getType();
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00006062
6063 bool Invalid = D.isInvalidType();
Sebastian Redl54c04d42008-12-22 19:15:10 +00006064 IdentifierInfo *II = D.getIdentifier();
Douglas Gregorb2ccf012010-04-15 22:33:43 +00006065 if (NamedDecl *PrevDecl = LookupSingleName(S, II, D.getIdentifierLoc(),
Douglas Gregorb8eaf292010-04-15 23:40:53 +00006066 LookupOrdinaryName,
6067 ForRedeclaration)) {
Sebastian Redl54c04d42008-12-22 19:15:10 +00006068 // The scope should be freshly made just for us. There is just no way
6069 // it contains any previous declaration.
Chris Lattner83f095c2009-03-28 19:18:32 +00006070 assert(!S->isDeclScope(DeclPtrTy::make(PrevDecl)));
Sebastian Redl54c04d42008-12-22 19:15:10 +00006071 if (PrevDecl->isTemplateParameter()) {
6072 // Maybe we will complain about the shadowed template parameter.
6073 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
Sebastian Redl54c04d42008-12-22 19:15:10 +00006074 }
6075 }
6076
Chris Lattnerf6d1c9c2009-04-25 08:06:05 +00006077 if (D.getCXXScopeSpec().isSet() && !Invalid) {
Sebastian Redl54c04d42008-12-22 19:15:10 +00006078 Diag(D.getIdentifierLoc(), diag::err_qualified_catch_declarator)
6079 << D.getCXXScopeSpec().getRange();
Chris Lattnerf6d1c9c2009-04-25 08:06:05 +00006080 Invalid = true;
Sebastian Redl54c04d42008-12-22 19:15:10 +00006081 }
6082
John McCallbcd03502009-12-07 02:54:59 +00006083 VarDecl *ExDecl = BuildExceptionDeclaration(S, ExDeclType, TInfo,
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00006084 D.getIdentifier(),
6085 D.getIdentifierLoc(),
6086 D.getDeclSpec().getSourceRange());
6087
Chris Lattnerf6d1c9c2009-04-25 08:06:05 +00006088 if (Invalid)
6089 ExDecl->setInvalidDecl();
Mike Stump11289f42009-09-09 15:08:12 +00006090
Sebastian Redl54c04d42008-12-22 19:15:10 +00006091 // Add the exception declaration into this scope.
Sebastian Redl54c04d42008-12-22 19:15:10 +00006092 if (II)
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00006093 PushOnScopeChains(ExDecl, S);
6094 else
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00006095 CurContext->addDecl(ExDecl);
Sebastian Redl54c04d42008-12-22 19:15:10 +00006096
Douglas Gregor758a8692009-06-17 21:51:59 +00006097 ProcessDeclAttributes(S, ExDecl, D);
Chris Lattner83f095c2009-03-28 19:18:32 +00006098 return DeclPtrTy::make(ExDecl);
Sebastian Redl54c04d42008-12-22 19:15:10 +00006099}
Anders Carlsson5bbe1d72009-03-14 00:25:26 +00006100
Mike Stump11289f42009-09-09 15:08:12 +00006101Sema::DeclPtrTy Sema::ActOnStaticAssertDeclaration(SourceLocation AssertLoc,
Chris Lattner83f095c2009-03-28 19:18:32 +00006102 ExprArg assertexpr,
6103 ExprArg assertmessageexpr) {
Anders Carlsson5bbe1d72009-03-14 00:25:26 +00006104 Expr *AssertExpr = (Expr *)assertexpr.get();
Mike Stump11289f42009-09-09 15:08:12 +00006105 StringLiteral *AssertMessage =
Anders Carlsson5bbe1d72009-03-14 00:25:26 +00006106 cast<StringLiteral>((Expr *)assertmessageexpr.get());
6107
Anders Carlsson54b26982009-03-14 00:33:21 +00006108 if (!AssertExpr->isTypeDependent() && !AssertExpr->isValueDependent()) {
6109 llvm::APSInt Value(32);
6110 if (!AssertExpr->isIntegerConstantExpr(Value, Context)) {
6111 Diag(AssertLoc, diag::err_static_assert_expression_is_not_constant) <<
6112 AssertExpr->getSourceRange();
Chris Lattner83f095c2009-03-28 19:18:32 +00006113 return DeclPtrTy();
Anders Carlsson54b26982009-03-14 00:33:21 +00006114 }
Anders Carlsson5bbe1d72009-03-14 00:25:26 +00006115
Anders Carlsson54b26982009-03-14 00:33:21 +00006116 if (Value == 0) {
Mike Stump11289f42009-09-09 15:08:12 +00006117 Diag(AssertLoc, diag::err_static_assert_failed)
Benjamin Kramerb11118b2009-12-11 13:33:18 +00006118 << AssertMessage->getString() << AssertExpr->getSourceRange();
Anders Carlsson54b26982009-03-14 00:33:21 +00006119 }
6120 }
Mike Stump11289f42009-09-09 15:08:12 +00006121
Anders Carlsson78e2bc02009-03-15 17:35:16 +00006122 assertexpr.release();
6123 assertmessageexpr.release();
Mike Stump11289f42009-09-09 15:08:12 +00006124 Decl *Decl = StaticAssertDecl::Create(Context, CurContext, AssertLoc,
Anders Carlsson5bbe1d72009-03-14 00:25:26 +00006125 AssertExpr, AssertMessage);
Mike Stump11289f42009-09-09 15:08:12 +00006126
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00006127 CurContext->addDecl(Decl);
Chris Lattner83f095c2009-03-28 19:18:32 +00006128 return DeclPtrTy::make(Decl);
Anders Carlsson5bbe1d72009-03-14 00:25:26 +00006129}
Sebastian Redlf769df52009-03-24 22:27:57 +00006130
Douglas Gregorafb9bc12010-04-07 16:53:43 +00006131/// \brief Perform semantic analysis of the given friend type declaration.
6132///
6133/// \returns A friend declaration that.
6134FriendDecl *Sema::CheckFriendTypeDecl(SourceLocation FriendLoc,
6135 TypeSourceInfo *TSInfo) {
6136 assert(TSInfo && "NULL TypeSourceInfo for friend type declaration");
6137
6138 QualType T = TSInfo->getType();
Abramo Bagnara1108e7b2010-05-20 10:00:11 +00006139 SourceRange TypeRange = TSInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregorafb9bc12010-04-07 16:53:43 +00006140
Douglas Gregor3b4abb62010-04-07 17:57:12 +00006141 if (!getLangOptions().CPlusPlus0x) {
6142 // C++03 [class.friend]p2:
6143 // An elaborated-type-specifier shall be used in a friend declaration
6144 // for a class.*
6145 //
6146 // * The class-key of the elaborated-type-specifier is required.
6147 if (!ActiveTemplateInstantiations.empty()) {
6148 // Do not complain about the form of friend template types during
6149 // template instantiation; we will already have complained when the
6150 // template was declared.
6151 } else if (!T->isElaboratedTypeSpecifier()) {
6152 // If we evaluated the type to a record type, suggest putting
6153 // a tag in front.
6154 if (const RecordType *RT = T->getAs<RecordType>()) {
6155 RecordDecl *RD = RT->getDecl();
6156
6157 std::string InsertionText = std::string(" ") + RD->getKindName();
6158
6159 Diag(TypeRange.getBegin(), diag::ext_unelaborated_friend_type)
6160 << (unsigned) RD->getTagKind()
6161 << T
6162 << FixItHint::CreateInsertion(PP.getLocForEndOfToken(FriendLoc),
6163 InsertionText);
6164 } else {
6165 Diag(FriendLoc, diag::ext_nonclass_type_friend)
6166 << T
6167 << SourceRange(FriendLoc, TypeRange.getEnd());
6168 }
6169 } else if (T->getAs<EnumType>()) {
6170 Diag(FriendLoc, diag::ext_enum_friend)
Douglas Gregorafb9bc12010-04-07 16:53:43 +00006171 << T
Douglas Gregorafb9bc12010-04-07 16:53:43 +00006172 << SourceRange(FriendLoc, TypeRange.getEnd());
Douglas Gregorafb9bc12010-04-07 16:53:43 +00006173 }
6174 }
6175
Douglas Gregor3b4abb62010-04-07 17:57:12 +00006176 // C++0x [class.friend]p3:
6177 // If the type specifier in a friend declaration designates a (possibly
6178 // cv-qualified) class type, that class is declared as a friend; otherwise,
6179 // the friend declaration is ignored.
6180
6181 // FIXME: C++0x has some syntactic restrictions on friend type declarations
6182 // in [class.friend]p3 that we do not implement.
Douglas Gregorafb9bc12010-04-07 16:53:43 +00006183
6184 return FriendDecl::Create(Context, CurContext, FriendLoc, TSInfo, FriendLoc);
6185}
6186
John McCall11083da2009-09-16 22:47:08 +00006187/// Handle a friend type declaration. This works in tandem with
6188/// ActOnTag.
6189///
6190/// Notes on friend class templates:
6191///
6192/// We generally treat friend class declarations as if they were
6193/// declaring a class. So, for example, the elaborated type specifier
6194/// in a friend declaration is required to obey the restrictions of a
6195/// class-head (i.e. no typedefs in the scope chain), template
6196/// parameters are required to match up with simple template-ids, &c.
6197/// However, unlike when declaring a template specialization, it's
6198/// okay to refer to a template specialization without an empty
6199/// template parameter declaration, e.g.
6200/// friend class A<T>::B<unsigned>;
6201/// We permit this as a special case; if there are any template
6202/// parameters present at all, require proper matching, i.e.
6203/// template <> template <class T> friend class A<int>::B;
Chris Lattner1fb66f42009-10-25 17:47:27 +00006204Sema::DeclPtrTy Sema::ActOnFriendTypeDecl(Scope *S, const DeclSpec &DS,
John McCall11083da2009-09-16 22:47:08 +00006205 MultiTemplateParamsArg TempParams) {
John McCallaa74a0c2009-08-28 07:59:38 +00006206 SourceLocation Loc = DS.getSourceRange().getBegin();
John McCall07e91c02009-08-06 02:15:43 +00006207
6208 assert(DS.isFriendSpecified());
6209 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
6210
John McCall11083da2009-09-16 22:47:08 +00006211 // Try to convert the decl specifier to a type. This works for
6212 // friend templates because ActOnTag never produces a ClassTemplateDecl
6213 // for a TUK_Friend.
Chris Lattner1fb66f42009-10-25 17:47:27 +00006214 Declarator TheDeclarator(DS, Declarator::MemberContext);
John McCall8cb7bdf2010-06-04 23:28:52 +00006215 TypeSourceInfo *TSI = GetTypeForDeclarator(TheDeclarator, S);
6216 QualType T = TSI->getType();
Chris Lattner1fb66f42009-10-25 17:47:27 +00006217 if (TheDeclarator.isInvalidType())
6218 return DeclPtrTy();
John McCall07e91c02009-08-06 02:15:43 +00006219
John McCall11083da2009-09-16 22:47:08 +00006220 // This is definitely an error in C++98. It's probably meant to
6221 // be forbidden in C++0x, too, but the specification is just
6222 // poorly written.
6223 //
6224 // The problem is with declarations like the following:
6225 // template <T> friend A<T>::foo;
6226 // where deciding whether a class C is a friend or not now hinges
6227 // on whether there exists an instantiation of A that causes
6228 // 'foo' to equal C. There are restrictions on class-heads
6229 // (which we declare (by fiat) elaborated friend declarations to
6230 // be) that makes this tractable.
6231 //
6232 // FIXME: handle "template <> friend class A<T>;", which
6233 // is possibly well-formed? Who even knows?
Douglas Gregore677daf2010-03-31 22:19:08 +00006234 if (TempParams.size() && !T->isElaboratedTypeSpecifier()) {
John McCall11083da2009-09-16 22:47:08 +00006235 Diag(Loc, diag::err_tagless_friend_type_template)
6236 << DS.getSourceRange();
6237 return DeclPtrTy();
6238 }
Douglas Gregorafb9bc12010-04-07 16:53:43 +00006239
John McCallaa74a0c2009-08-28 07:59:38 +00006240 // C++98 [class.friend]p1: A friend of a class is a function
6241 // or class that is not a member of the class . . .
John McCall463e10c2009-12-22 00:59:39 +00006242 // This is fixed in DR77, which just barely didn't make the C++03
6243 // deadline. It's also a very silly restriction that seriously
6244 // affects inner classes and which nobody else seems to implement;
6245 // thus we never diagnose it, not even in -pedantic.
John McCall15ad0962010-03-25 18:04:51 +00006246 //
6247 // But note that we could warn about it: it's always useless to
6248 // friend one of your own members (it's not, however, worthless to
6249 // friend a member of an arbitrary specialization of your template).
John McCallaa74a0c2009-08-28 07:59:38 +00006250
John McCall11083da2009-09-16 22:47:08 +00006251 Decl *D;
Douglas Gregorafb9bc12010-04-07 16:53:43 +00006252 if (unsigned NumTempParamLists = TempParams.size())
John McCall11083da2009-09-16 22:47:08 +00006253 D = FriendTemplateDecl::Create(Context, CurContext, Loc,
Douglas Gregorafb9bc12010-04-07 16:53:43 +00006254 NumTempParamLists,
John McCall11083da2009-09-16 22:47:08 +00006255 (TemplateParameterList**) TempParams.release(),
John McCall15ad0962010-03-25 18:04:51 +00006256 TSI,
John McCall11083da2009-09-16 22:47:08 +00006257 DS.getFriendSpecLoc());
6258 else
Douglas Gregorafb9bc12010-04-07 16:53:43 +00006259 D = CheckFriendTypeDecl(DS.getFriendSpecLoc(), TSI);
6260
6261 if (!D)
6262 return DeclPtrTy();
6263
John McCall11083da2009-09-16 22:47:08 +00006264 D->setAccess(AS_public);
6265 CurContext->addDecl(D);
John McCallaa74a0c2009-08-28 07:59:38 +00006266
John McCall11083da2009-09-16 22:47:08 +00006267 return DeclPtrTy::make(D);
John McCallaa74a0c2009-08-28 07:59:38 +00006268}
6269
John McCall2f212b32009-09-11 21:02:39 +00006270Sema::DeclPtrTy
6271Sema::ActOnFriendFunctionDecl(Scope *S,
6272 Declarator &D,
6273 bool IsDefinition,
6274 MultiTemplateParamsArg TemplateParams) {
John McCallaa74a0c2009-08-28 07:59:38 +00006275 const DeclSpec &DS = D.getDeclSpec();
6276
6277 assert(DS.isFriendSpecified());
6278 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
6279
6280 SourceLocation Loc = D.getIdentifierLoc();
John McCall8cb7bdf2010-06-04 23:28:52 +00006281 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
6282 QualType T = TInfo->getType();
John McCall07e91c02009-08-06 02:15:43 +00006283
6284 // C++ [class.friend]p1
6285 // A friend of a class is a function or class....
6286 // Note that this sees through typedefs, which is intended.
John McCallaa74a0c2009-08-28 07:59:38 +00006287 // It *doesn't* see through dependent types, which is correct
6288 // according to [temp.arg.type]p3:
6289 // If a declaration acquires a function type through a
6290 // type dependent on a template-parameter and this causes
6291 // a declaration that does not use the syntactic form of a
6292 // function declarator to have a function type, the program
6293 // is ill-formed.
John McCall07e91c02009-08-06 02:15:43 +00006294 if (!T->isFunctionType()) {
6295 Diag(Loc, diag::err_unexpected_friend);
6296
6297 // It might be worthwhile to try to recover by creating an
6298 // appropriate declaration.
6299 return DeclPtrTy();
6300 }
6301
6302 // C++ [namespace.memdef]p3
6303 // - If a friend declaration in a non-local class first declares a
6304 // class or function, the friend class or function is a member
6305 // of the innermost enclosing namespace.
6306 // - The name of the friend is not found by simple name lookup
6307 // until a matching declaration is provided in that namespace
6308 // scope (either before or after the class declaration granting
6309 // friendship).
6310 // - If a friend function is called, its name may be found by the
6311 // name lookup that considers functions from namespaces and
6312 // classes associated with the types of the function arguments.
6313 // - When looking for a prior declaration of a class or a function
6314 // declared as a friend, scopes outside the innermost enclosing
6315 // namespace scope are not considered.
6316
John McCallaa74a0c2009-08-28 07:59:38 +00006317 CXXScopeSpec &ScopeQual = D.getCXXScopeSpec();
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00006318 DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
6319 DeclarationName Name = NameInfo.getName();
John McCall07e91c02009-08-06 02:15:43 +00006320 assert(Name);
6321
John McCall07e91c02009-08-06 02:15:43 +00006322 // The context we found the declaration in, or in which we should
6323 // create the declaration.
6324 DeclContext *DC;
6325
6326 // FIXME: handle local classes
6327
6328 // Recover from invalid scope qualifiers as if they just weren't there.
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00006329 LookupResult Previous(*this, NameInfo, LookupOrdinaryName,
John McCall1f82f242009-11-18 22:49:29 +00006330 ForRedeclaration);
John McCall07e91c02009-08-06 02:15:43 +00006331 if (!ScopeQual.isInvalid() && ScopeQual.isSet()) {
6332 DC = computeDeclContext(ScopeQual);
6333
6334 // FIXME: handle dependent contexts
6335 if (!DC) return DeclPtrTy();
John McCall0b66eb32010-05-01 00:40:08 +00006336 if (RequireCompleteDeclContext(ScopeQual, DC)) return DeclPtrTy();
John McCall07e91c02009-08-06 02:15:43 +00006337
John McCall1f82f242009-11-18 22:49:29 +00006338 LookupQualifiedName(Previous, DC);
John McCall07e91c02009-08-06 02:15:43 +00006339
John McCall45831862010-05-28 01:41:47 +00006340 // Ignore things found implicitly in the wrong scope.
John McCall07e91c02009-08-06 02:15:43 +00006341 // TODO: better diagnostics for this case. Suggesting the right
6342 // qualified scope would be nice...
John McCall45831862010-05-28 01:41:47 +00006343 LookupResult::Filter F = Previous.makeFilter();
6344 while (F.hasNext()) {
6345 NamedDecl *D = F.next();
6346 if (!D->getDeclContext()->getLookupContext()->Equals(DC))
6347 F.erase();
6348 }
6349 F.done();
6350
6351 if (Previous.empty()) {
John McCallaa74a0c2009-08-28 07:59:38 +00006352 D.setInvalidType();
John McCall07e91c02009-08-06 02:15:43 +00006353 Diag(Loc, diag::err_qualified_friend_not_found) << Name << T;
6354 return DeclPtrTy();
6355 }
6356
6357 // C++ [class.friend]p1: A friend of a class is a function or
6358 // class that is not a member of the class . . .
Douglas Gregora29a3ff2009-09-28 00:08:27 +00006359 if (DC->Equals(CurContext))
John McCall07e91c02009-08-06 02:15:43 +00006360 Diag(DS.getFriendSpecLoc(), diag::err_friend_is_member);
6361
John McCall07e91c02009-08-06 02:15:43 +00006362 // Otherwise walk out to the nearest namespace scope looking for matches.
6363 } else {
6364 // TODO: handle local class contexts.
6365
6366 DC = CurContext;
6367 while (true) {
6368 // Skip class contexts. If someone can cite chapter and verse
6369 // for this behavior, that would be nice --- it's what GCC and
6370 // EDG do, and it seems like a reasonable intent, but the spec
6371 // really only says that checks for unqualified existing
6372 // declarations should stop at the nearest enclosing namespace,
6373 // not that they should only consider the nearest enclosing
6374 // namespace.
Douglas Gregora29a3ff2009-09-28 00:08:27 +00006375 while (DC->isRecord())
6376 DC = DC->getParent();
John McCall07e91c02009-08-06 02:15:43 +00006377
John McCall1f82f242009-11-18 22:49:29 +00006378 LookupQualifiedName(Previous, DC);
John McCall07e91c02009-08-06 02:15:43 +00006379
6380 // TODO: decide what we think about using declarations.
John McCall1f82f242009-11-18 22:49:29 +00006381 if (!Previous.empty())
John McCall07e91c02009-08-06 02:15:43 +00006382 break;
Douglas Gregora29a3ff2009-09-28 00:08:27 +00006383
John McCall07e91c02009-08-06 02:15:43 +00006384 if (DC->isFileContext()) break;
6385 DC = DC->getParent();
6386 }
6387
6388 // C++ [class.friend]p1: A friend of a class is a function or
6389 // class that is not a member of the class . . .
John McCall93343b92009-08-06 20:49:32 +00006390 // C++0x changes this for both friend types and functions.
6391 // Most C++ 98 compilers do seem to give an error here, so
6392 // we do, too.
John McCall1f82f242009-11-18 22:49:29 +00006393 if (!Previous.empty() && DC->Equals(CurContext)
6394 && !getLangOptions().CPlusPlus0x)
John McCall07e91c02009-08-06 02:15:43 +00006395 Diag(DS.getFriendSpecLoc(), diag::err_friend_is_member);
6396 }
6397
Douglas Gregora29a3ff2009-09-28 00:08:27 +00006398 if (DC->isFileContext()) {
John McCall07e91c02009-08-06 02:15:43 +00006399 // This implies that it has to be an operator or function.
Douglas Gregor7861a802009-11-03 01:35:08 +00006400 if (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ||
6401 D.getName().getKind() == UnqualifiedId::IK_DestructorName ||
6402 D.getName().getKind() == UnqualifiedId::IK_ConversionFunctionId) {
John McCall07e91c02009-08-06 02:15:43 +00006403 Diag(Loc, diag::err_introducing_special_friend) <<
Douglas Gregor7861a802009-11-03 01:35:08 +00006404 (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ? 0 :
6405 D.getName().getKind() == UnqualifiedId::IK_DestructorName ? 1 : 2);
John McCall07e91c02009-08-06 02:15:43 +00006406 return DeclPtrTy();
6407 }
John McCall07e91c02009-08-06 02:15:43 +00006408 }
6409
Douglas Gregora29a3ff2009-09-28 00:08:27 +00006410 bool Redeclaration = false;
John McCallbcd03502009-12-07 02:54:59 +00006411 NamedDecl *ND = ActOnFunctionDeclarator(S, D, DC, T, TInfo, Previous,
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00006412 move(TemplateParams),
John McCalld1e9d832009-08-11 06:59:38 +00006413 IsDefinition,
6414 Redeclaration);
John McCallaa74a0c2009-08-28 07:59:38 +00006415 if (!ND) return DeclPtrTy();
John McCall759e32b2009-08-31 22:39:49 +00006416
Douglas Gregora29a3ff2009-09-28 00:08:27 +00006417 assert(ND->getDeclContext() == DC);
6418 assert(ND->getLexicalDeclContext() == CurContext);
John McCall5ed6e8f2009-08-18 00:00:49 +00006419
John McCall759e32b2009-08-31 22:39:49 +00006420 // Add the function declaration to the appropriate lookup tables,
6421 // adjusting the redeclarations list as necessary. We don't
6422 // want to do this yet if the friending class is dependent.
Mike Stump11289f42009-09-09 15:08:12 +00006423 //
John McCall759e32b2009-08-31 22:39:49 +00006424 // Also update the scope-based lookup if the target context's
6425 // lookup context is in lexical scope.
6426 if (!CurContext->isDependentContext()) {
6427 DC = DC->getLookupContext();
Douglas Gregora29a3ff2009-09-28 00:08:27 +00006428 DC->makeDeclVisibleInContext(ND, /* Recoverable=*/ false);
John McCall759e32b2009-08-31 22:39:49 +00006429 if (Scope *EnclosingScope = getScopeForDeclContext(S, DC))
Douglas Gregora29a3ff2009-09-28 00:08:27 +00006430 PushOnScopeChains(ND, EnclosingScope, /*AddToContext=*/ false);
John McCall759e32b2009-08-31 22:39:49 +00006431 }
John McCallaa74a0c2009-08-28 07:59:38 +00006432
6433 FriendDecl *FrD = FriendDecl::Create(Context, CurContext,
Douglas Gregora29a3ff2009-09-28 00:08:27 +00006434 D.getIdentifierLoc(), ND,
John McCallaa74a0c2009-08-28 07:59:38 +00006435 DS.getFriendSpecLoc());
John McCall75c03bb2009-08-29 03:50:18 +00006436 FrD->setAccess(AS_public);
John McCallaa74a0c2009-08-28 07:59:38 +00006437 CurContext->addDecl(FrD);
John McCall07e91c02009-08-06 02:15:43 +00006438
Douglas Gregora29a3ff2009-09-28 00:08:27 +00006439 return DeclPtrTy::make(ND);
Anders Carlsson38811702009-05-11 22:55:49 +00006440}
6441
Chris Lattner83f095c2009-03-28 19:18:32 +00006442void Sema::SetDeclDeleted(DeclPtrTy dcl, SourceLocation DelLoc) {
Douglas Gregorc8c277a2009-08-24 11:57:43 +00006443 AdjustDeclIfTemplate(dcl);
Mike Stump11289f42009-09-09 15:08:12 +00006444
Chris Lattner83f095c2009-03-28 19:18:32 +00006445 Decl *Dcl = dcl.getAs<Decl>();
Sebastian Redlf769df52009-03-24 22:27:57 +00006446 FunctionDecl *Fn = dyn_cast<FunctionDecl>(Dcl);
6447 if (!Fn) {
6448 Diag(DelLoc, diag::err_deleted_non_function);
6449 return;
6450 }
6451 if (const FunctionDecl *Prev = Fn->getPreviousDeclaration()) {
6452 Diag(DelLoc, diag::err_deleted_decl_not_first);
6453 Diag(Prev->getLocation(), diag::note_previous_declaration);
6454 // If the declaration wasn't the first, we delete the function anyway for
6455 // recovery.
6456 }
6457 Fn->setDeleted();
6458}
Sebastian Redl4c018662009-04-27 21:33:24 +00006459
6460static void SearchForReturnInStmt(Sema &Self, Stmt *S) {
6461 for (Stmt::child_iterator CI = S->child_begin(), E = S->child_end(); CI != E;
6462 ++CI) {
6463 Stmt *SubStmt = *CI;
6464 if (!SubStmt)
6465 continue;
6466 if (isa<ReturnStmt>(SubStmt))
6467 Self.Diag(SubStmt->getSourceRange().getBegin(),
6468 diag::err_return_in_constructor_handler);
6469 if (!isa<Expr>(SubStmt))
6470 SearchForReturnInStmt(Self, SubStmt);
6471 }
6472}
6473
6474void Sema::DiagnoseReturnInConstructorExceptionHandler(CXXTryStmt *TryBlock) {
6475 for (unsigned I = 0, E = TryBlock->getNumHandlers(); I != E; ++I) {
6476 CXXCatchStmt *Handler = TryBlock->getHandler(I);
6477 SearchForReturnInStmt(*this, Handler);
6478 }
6479}
Anders Carlssonf2a2e332009-05-14 01:09:04 +00006480
Mike Stump11289f42009-09-09 15:08:12 +00006481bool Sema::CheckOverridingFunctionReturnType(const CXXMethodDecl *New,
Anders Carlssonf2a2e332009-05-14 01:09:04 +00006482 const CXXMethodDecl *Old) {
John McCall9dd450b2009-09-21 23:43:11 +00006483 QualType NewTy = New->getType()->getAs<FunctionType>()->getResultType();
6484 QualType OldTy = Old->getType()->getAs<FunctionType>()->getResultType();
Anders Carlssonf2a2e332009-05-14 01:09:04 +00006485
Chandler Carruth284bb2e2010-02-15 11:53:20 +00006486 if (Context.hasSameType(NewTy, OldTy) ||
6487 NewTy->isDependentType() || OldTy->isDependentType())
Anders Carlssonf2a2e332009-05-14 01:09:04 +00006488 return false;
Mike Stump11289f42009-09-09 15:08:12 +00006489
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006490 // Check if the return types are covariant
6491 QualType NewClassTy, OldClassTy;
Mike Stump11289f42009-09-09 15:08:12 +00006492
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006493 /// Both types must be pointers or references to classes.
Anders Carlsson7caa4cb2010-01-22 17:37:20 +00006494 if (const PointerType *NewPT = NewTy->getAs<PointerType>()) {
6495 if (const PointerType *OldPT = OldTy->getAs<PointerType>()) {
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006496 NewClassTy = NewPT->getPointeeType();
6497 OldClassTy = OldPT->getPointeeType();
6498 }
Anders Carlsson7caa4cb2010-01-22 17:37:20 +00006499 } else if (const ReferenceType *NewRT = NewTy->getAs<ReferenceType>()) {
6500 if (const ReferenceType *OldRT = OldTy->getAs<ReferenceType>()) {
6501 if (NewRT->getTypeClass() == OldRT->getTypeClass()) {
6502 NewClassTy = NewRT->getPointeeType();
6503 OldClassTy = OldRT->getPointeeType();
6504 }
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006505 }
6506 }
Mike Stump11289f42009-09-09 15:08:12 +00006507
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006508 // The return types aren't either both pointers or references to a class type.
6509 if (NewClassTy.isNull()) {
Mike Stump11289f42009-09-09 15:08:12 +00006510 Diag(New->getLocation(),
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006511 diag::err_different_return_type_for_overriding_virtual_function)
6512 << New->getDeclName() << NewTy << OldTy;
6513 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
Mike Stump11289f42009-09-09 15:08:12 +00006514
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006515 return true;
6516 }
Anders Carlssonf2a2e332009-05-14 01:09:04 +00006517
Anders Carlssone60365b2009-12-31 18:34:24 +00006518 // C++ [class.virtual]p6:
6519 // If the return type of D::f differs from the return type of B::f, the
6520 // class type in the return type of D::f shall be complete at the point of
6521 // declaration of D::f or shall be the class type D.
Anders Carlsson0c9dd842009-12-31 18:54:35 +00006522 if (const RecordType *RT = NewClassTy->getAs<RecordType>()) {
6523 if (!RT->isBeingDefined() &&
6524 RequireCompleteType(New->getLocation(), NewClassTy,
6525 PDiag(diag::err_covariant_return_incomplete)
6526 << New->getDeclName()))
Anders Carlssone60365b2009-12-31 18:34:24 +00006527 return true;
Anders Carlsson0c9dd842009-12-31 18:54:35 +00006528 }
Anders Carlssone60365b2009-12-31 18:34:24 +00006529
Douglas Gregor1b8fe5b72009-11-16 21:35:15 +00006530 if (!Context.hasSameUnqualifiedType(NewClassTy, OldClassTy)) {
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006531 // Check if the new class derives from the old class.
6532 if (!IsDerivedFrom(NewClassTy, OldClassTy)) {
6533 Diag(New->getLocation(),
6534 diag::err_covariant_return_not_derived)
6535 << New->getDeclName() << NewTy << OldTy;
6536 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
6537 return true;
6538 }
Mike Stump11289f42009-09-09 15:08:12 +00006539
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006540 // Check if we the conversion from derived to base is valid.
John McCall1064d7e2010-03-16 05:22:47 +00006541 if (CheckDerivedToBaseConversion(NewClassTy, OldClassTy,
Anders Carlsson7afe4242010-04-24 17:11:09 +00006542 diag::err_covariant_return_inaccessible_base,
6543 diag::err_covariant_return_ambiguous_derived_to_base_conv,
6544 // FIXME: Should this point to the return type?
6545 New->getLocation(), SourceRange(), New->getDeclName(), 0)) {
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006546 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
6547 return true;
6548 }
6549 }
Mike Stump11289f42009-09-09 15:08:12 +00006550
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006551 // The qualifiers of the return types must be the same.
Anders Carlsson7caa4cb2010-01-22 17:37:20 +00006552 if (NewTy.getLocalCVRQualifiers() != OldTy.getLocalCVRQualifiers()) {
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006553 Diag(New->getLocation(),
6554 diag::err_covariant_return_type_different_qualifications)
Anders Carlssonf2a2e332009-05-14 01:09:04 +00006555 << New->getDeclName() << NewTy << OldTy;
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006556 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
6557 return true;
6558 };
Mike Stump11289f42009-09-09 15:08:12 +00006559
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006560
6561 // The new class type must have the same or less qualifiers as the old type.
6562 if (NewClassTy.isMoreQualifiedThan(OldClassTy)) {
6563 Diag(New->getLocation(),
6564 diag::err_covariant_return_type_class_type_more_qualified)
6565 << New->getDeclName() << NewTy << OldTy;
6566 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
6567 return true;
6568 };
Mike Stump11289f42009-09-09 15:08:12 +00006569
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00006570 return false;
Anders Carlssonf2a2e332009-05-14 01:09:04 +00006571}
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00006572
Alexis Hunt96d5c762009-11-21 08:43:09 +00006573bool Sema::CheckOverridingFunctionAttributes(const CXXMethodDecl *New,
6574 const CXXMethodDecl *Old)
6575{
6576 if (Old->hasAttr<FinalAttr>()) {
6577 Diag(New->getLocation(), diag::err_final_function_overridden)
6578 << New->getDeclName();
6579 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
6580 return true;
6581 }
6582
6583 return false;
6584}
6585
Douglas Gregor21920e372009-12-01 17:24:26 +00006586/// \brief Mark the given method pure.
6587///
6588/// \param Method the method to be marked pure.
6589///
6590/// \param InitRange the source range that covers the "0" initializer.
6591bool Sema::CheckPureMethod(CXXMethodDecl *Method, SourceRange InitRange) {
6592 if (Method->isVirtual() || Method->getParent()->isDependentContext()) {
6593 Method->setPure();
6594
6595 // A class is abstract if at least one function is pure virtual.
6596 Method->getParent()->setAbstract(true);
6597 return false;
6598 }
6599
6600 if (!Method->isInvalidDecl())
6601 Diag(Method->getLocation(), diag::err_non_virtual_pure)
6602 << Method->getDeclName() << InitRange;
6603 return true;
6604}
6605
John McCall1f4ee7b2009-12-19 09:28:58 +00006606/// ActOnCXXEnterDeclInitializer - Invoked when we are about to parse
6607/// an initializer for the out-of-line declaration 'Dcl'. The scope
6608/// is a fresh scope pushed for just this purpose.
6609///
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00006610/// After this method is called, according to [C++ 3.4.1p13], if 'Dcl' is a
6611/// static data member of class X, names should be looked up in the scope of
6612/// class X.
6613void Sema::ActOnCXXEnterDeclInitializer(Scope *S, DeclPtrTy Dcl) {
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00006614 // If there is no declaration, there was an error parsing it.
John McCall1f4ee7b2009-12-19 09:28:58 +00006615 Decl *D = Dcl.getAs<Decl>();
6616 if (D == 0) return;
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00006617
John McCall1f4ee7b2009-12-19 09:28:58 +00006618 // We should only get called for declarations with scope specifiers, like:
6619 // int foo::bar;
6620 assert(D->isOutOfLine());
John McCall6df5fef2009-12-19 10:49:29 +00006621 EnterDeclaratorContext(S, D->getDeclContext());
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00006622}
6623
6624/// ActOnCXXExitDeclInitializer - Invoked after we are finished parsing an
John McCall1f4ee7b2009-12-19 09:28:58 +00006625/// initializer for the out-of-line declaration 'Dcl'.
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00006626void Sema::ActOnCXXExitDeclInitializer(Scope *S, DeclPtrTy Dcl) {
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00006627 // If there is no declaration, there was an error parsing it.
John McCall1f4ee7b2009-12-19 09:28:58 +00006628 Decl *D = Dcl.getAs<Decl>();
6629 if (D == 0) return;
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00006630
John McCall1f4ee7b2009-12-19 09:28:58 +00006631 assert(D->isOutOfLine());
John McCall6df5fef2009-12-19 10:49:29 +00006632 ExitDeclaratorContext(S);
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00006633}
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00006634
6635/// ActOnCXXConditionDeclarationExpr - Parsed a condition declaration of a
6636/// C++ if/switch/while/for statement.
6637/// e.g: "if (int x = f()) {...}"
6638Action::DeclResult
6639Sema::ActOnCXXConditionDeclaration(Scope *S, Declarator &D) {
6640 // C++ 6.4p2:
6641 // The declarator shall not specify a function or an array.
6642 // The type-specifier-seq shall not contain typedef and shall not declare a
6643 // new class or enumeration.
6644 assert(D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef &&
6645 "Parser allowed 'typedef' as storage class of condition decl.");
6646
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00006647 TagDecl *OwnedTag = 0;
John McCall8cb7bdf2010-06-04 23:28:52 +00006648 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S, &OwnedTag);
6649 QualType Ty = TInfo->getType();
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00006650
6651 if (Ty->isFunctionType()) { // The declarator shall not specify a function...
6652 // We exit without creating a CXXConditionDeclExpr because a FunctionDecl
6653 // would be created and CXXConditionDeclExpr wants a VarDecl.
6654 Diag(D.getIdentifierLoc(), diag::err_invalid_use_of_function_type)
6655 << D.getSourceRange();
6656 return DeclResult();
6657 } else if (OwnedTag && OwnedTag->isDefinition()) {
6658 // The type-specifier-seq shall not declare a new class or enumeration.
6659 Diag(OwnedTag->getLocation(), diag::err_type_defined_in_condition);
6660 }
6661
6662 DeclPtrTy Dcl = ActOnDeclarator(S, D);
6663 if (!Dcl)
6664 return DeclResult();
6665
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00006666 return Dcl;
6667}
Anders Carlssonf98849e2009-12-02 17:15:43 +00006668
Douglas Gregor88d292c2010-05-13 16:44:06 +00006669void Sema::MarkVTableUsed(SourceLocation Loc, CXXRecordDecl *Class,
6670 bool DefinitionRequired) {
6671 // Ignore any vtable uses in unevaluated operands or for classes that do
6672 // not have a vtable.
6673 if (!Class->isDynamicClass() || Class->isDependentContext() ||
6674 CurContext->isDependentContext() ||
6675 ExprEvalContexts.back().Context == Unevaluated)
Rafael Espindolae7113ca2010-03-10 02:19:29 +00006676 return;
6677
Douglas Gregor88d292c2010-05-13 16:44:06 +00006678 // Try to insert this class into the map.
6679 Class = cast<CXXRecordDecl>(Class->getCanonicalDecl());
6680 std::pair<llvm::DenseMap<CXXRecordDecl *, bool>::iterator, bool>
6681 Pos = VTablesUsed.insert(std::make_pair(Class, DefinitionRequired));
6682 if (!Pos.second) {
Daniel Dunbar53217762010-05-25 00:33:13 +00006683 // If we already had an entry, check to see if we are promoting this vtable
6684 // to required a definition. If so, we need to reappend to the VTableUses
6685 // list, since we may have already processed the first entry.
6686 if (DefinitionRequired && !Pos.first->second) {
6687 Pos.first->second = true;
6688 } else {
6689 // Otherwise, we can early exit.
6690 return;
6691 }
Douglas Gregor88d292c2010-05-13 16:44:06 +00006692 }
6693
6694 // Local classes need to have their virtual members marked
6695 // immediately. For all other classes, we mark their virtual members
6696 // at the end of the translation unit.
6697 if (Class->isLocalClass())
6698 MarkVirtualMembersReferenced(Loc, Class);
Daniel Dunbar0547ad32010-05-11 21:32:35 +00006699 else
Douglas Gregor88d292c2010-05-13 16:44:06 +00006700 VTableUses.push_back(std::make_pair(Class, Loc));
Douglas Gregor0c4aad12010-05-11 20:24:17 +00006701}
6702
Douglas Gregor88d292c2010-05-13 16:44:06 +00006703bool Sema::DefineUsedVTables() {
6704 // If any dynamic classes have their key function defined within
6705 // this translation unit, then those vtables are considered "used" and must
6706 // be emitted.
6707 for (unsigned I = 0, N = DynamicClasses.size(); I != N; ++I) {
6708 if (const CXXMethodDecl *KeyFunction
6709 = Context.getKeyFunction(DynamicClasses[I])) {
6710 const FunctionDecl *Definition = 0;
Argyrios Kyrtzidis36ea3222010-07-07 11:31:19 +00006711 if (KeyFunction->hasBody(Definition))
Douglas Gregor88d292c2010-05-13 16:44:06 +00006712 MarkVTableUsed(Definition->getLocation(), DynamicClasses[I], true);
6713 }
6714 }
6715
6716 if (VTableUses.empty())
Anders Carlsson82fccd02009-12-07 08:24:59 +00006717 return false;
6718
Douglas Gregor88d292c2010-05-13 16:44:06 +00006719 // Note: The VTableUses vector could grow as a result of marking
6720 // the members of a class as "used", so we check the size each
6721 // time through the loop and prefer indices (with are stable) to
6722 // iterators (which are not).
6723 for (unsigned I = 0; I != VTableUses.size(); ++I) {
Daniel Dunbar105ce6d2010-05-25 00:32:58 +00006724 CXXRecordDecl *Class = VTableUses[I].first->getDefinition();
Douglas Gregor88d292c2010-05-13 16:44:06 +00006725 if (!Class)
6726 continue;
6727
6728 SourceLocation Loc = VTableUses[I].second;
6729
6730 // If this class has a key function, but that key function is
6731 // defined in another translation unit, we don't need to emit the
6732 // vtable even though we're using it.
6733 const CXXMethodDecl *KeyFunction = Context.getKeyFunction(Class);
Argyrios Kyrtzidis36ea3222010-07-07 11:31:19 +00006734 if (KeyFunction && !KeyFunction->hasBody()) {
Douglas Gregor88d292c2010-05-13 16:44:06 +00006735 switch (KeyFunction->getTemplateSpecializationKind()) {
6736 case TSK_Undeclared:
6737 case TSK_ExplicitSpecialization:
6738 case TSK_ExplicitInstantiationDeclaration:
6739 // The key function is in another translation unit.
6740 continue;
6741
6742 case TSK_ExplicitInstantiationDefinition:
6743 case TSK_ImplicitInstantiation:
6744 // We will be instantiating the key function.
6745 break;
6746 }
6747 } else if (!KeyFunction) {
6748 // If we have a class with no key function that is the subject
6749 // of an explicit instantiation declaration, suppress the
6750 // vtable; it will live with the explicit instantiation
6751 // definition.
6752 bool IsExplicitInstantiationDeclaration
6753 = Class->getTemplateSpecializationKind()
6754 == TSK_ExplicitInstantiationDeclaration;
6755 for (TagDecl::redecl_iterator R = Class->redecls_begin(),
6756 REnd = Class->redecls_end();
6757 R != REnd; ++R) {
6758 TemplateSpecializationKind TSK
6759 = cast<CXXRecordDecl>(*R)->getTemplateSpecializationKind();
6760 if (TSK == TSK_ExplicitInstantiationDeclaration)
6761 IsExplicitInstantiationDeclaration = true;
6762 else if (TSK == TSK_ExplicitInstantiationDefinition) {
6763 IsExplicitInstantiationDeclaration = false;
6764 break;
6765 }
6766 }
6767
6768 if (IsExplicitInstantiationDeclaration)
6769 continue;
6770 }
6771
6772 // Mark all of the virtual members of this class as referenced, so
6773 // that we can build a vtable. Then, tell the AST consumer that a
6774 // vtable for this class is required.
6775 MarkVirtualMembersReferenced(Loc, Class);
6776 CXXRecordDecl *Canonical = cast<CXXRecordDecl>(Class->getCanonicalDecl());
6777 Consumer.HandleVTable(Class, VTablesUsed[Canonical]);
6778
6779 // Optionally warn if we're emitting a weak vtable.
6780 if (Class->getLinkage() == ExternalLinkage &&
6781 Class->getTemplateSpecializationKind() != TSK_ImplicitInstantiation) {
Argyrios Kyrtzidis36ea3222010-07-07 11:31:19 +00006782 if (!KeyFunction || (KeyFunction->hasBody() && KeyFunction->isInlined()))
Douglas Gregor88d292c2010-05-13 16:44:06 +00006783 Diag(Class->getLocation(), diag::warn_weak_vtable) << Class;
6784 }
Anders Carlssonf98849e2009-12-02 17:15:43 +00006785 }
Douglas Gregor88d292c2010-05-13 16:44:06 +00006786 VTableUses.clear();
6787
Anders Carlsson82fccd02009-12-07 08:24:59 +00006788 return true;
Anders Carlssonf98849e2009-12-02 17:15:43 +00006789}
Anders Carlsson82fccd02009-12-07 08:24:59 +00006790
Rafael Espindola5b334082010-03-26 00:36:59 +00006791void Sema::MarkVirtualMembersReferenced(SourceLocation Loc,
6792 const CXXRecordDecl *RD) {
Anders Carlsson82fccd02009-12-07 08:24:59 +00006793 for (CXXRecordDecl::method_iterator i = RD->method_begin(),
6794 e = RD->method_end(); i != e; ++i) {
6795 CXXMethodDecl *MD = *i;
6796
6797 // C++ [basic.def.odr]p2:
6798 // [...] A virtual member function is used if it is not pure. [...]
6799 if (MD->isVirtual() && !MD->isPure())
6800 MarkDeclarationReferenced(Loc, MD);
6801 }
Rafael Espindola5b334082010-03-26 00:36:59 +00006802
6803 // Only classes that have virtual bases need a VTT.
6804 if (RD->getNumVBases() == 0)
6805 return;
6806
6807 for (CXXRecordDecl::base_class_const_iterator i = RD->bases_begin(),
6808 e = RD->bases_end(); i != e; ++i) {
6809 const CXXRecordDecl *Base =
6810 cast<CXXRecordDecl>(i->getType()->getAs<RecordType>()->getDecl());
Rafael Espindola5b334082010-03-26 00:36:59 +00006811 if (Base->getNumVBases() == 0)
6812 continue;
6813 MarkVirtualMembersReferenced(Loc, Base);
6814 }
Anders Carlsson82fccd02009-12-07 08:24:59 +00006815}
Fariborz Jahanianc83726e2010-04-28 16:11:27 +00006816
6817/// SetIvarInitializers - This routine builds initialization ASTs for the
6818/// Objective-C implementation whose ivars need be initialized.
6819void Sema::SetIvarInitializers(ObjCImplementationDecl *ObjCImplementation) {
6820 if (!getLangOptions().CPlusPlus)
6821 return;
6822 if (const ObjCInterfaceDecl *OID = ObjCImplementation->getClassInterface()) {
6823 llvm::SmallVector<ObjCIvarDecl*, 8> ivars;
6824 CollectIvarsToConstructOrDestruct(OID, ivars);
6825 if (ivars.empty())
6826 return;
6827 llvm::SmallVector<CXXBaseOrMemberInitializer*, 32> AllToInit;
6828 for (unsigned i = 0; i < ivars.size(); i++) {
6829 FieldDecl *Field = ivars[i];
Douglas Gregor527786e2010-05-20 02:24:22 +00006830 if (Field->isInvalidDecl())
6831 continue;
6832
Fariborz Jahanianc83726e2010-04-28 16:11:27 +00006833 CXXBaseOrMemberInitializer *Member;
6834 InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field);
6835 InitializationKind InitKind =
6836 InitializationKind::CreateDefault(ObjCImplementation->getLocation());
6837
6838 InitializationSequence InitSeq(*this, InitEntity, InitKind, 0, 0);
6839 Sema::OwningExprResult MemberInit =
6840 InitSeq.Perform(*this, InitEntity, InitKind,
6841 Sema::MultiExprArg(*this, 0, 0));
6842 MemberInit = MaybeCreateCXXExprWithTemporaries(move(MemberInit));
6843 // Note, MemberInit could actually come back empty if no initialization
6844 // is required (e.g., because it would call a trivial default constructor)
6845 if (!MemberInit.get() || MemberInit.isInvalid())
6846 continue;
6847
6848 Member =
6849 new (Context) CXXBaseOrMemberInitializer(Context,
6850 Field, SourceLocation(),
6851 SourceLocation(),
6852 MemberInit.takeAs<Expr>(),
6853 SourceLocation());
6854 AllToInit.push_back(Member);
Douglas Gregor527786e2010-05-20 02:24:22 +00006855
6856 // Be sure that the destructor is accessible and is marked as referenced.
6857 if (const RecordType *RecordTy
6858 = Context.getBaseElementType(Field->getType())
6859 ->getAs<RecordType>()) {
6860 CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl());
Douglas Gregore71edda2010-07-01 22:47:18 +00006861 if (CXXDestructorDecl *Destructor = LookupDestructor(RD)) {
Douglas Gregor527786e2010-05-20 02:24:22 +00006862 MarkDeclarationReferenced(Field->getLocation(), Destructor);
6863 CheckDestructorAccess(Field->getLocation(), Destructor,
6864 PDiag(diag::err_access_dtor_ivar)
6865 << Context.getBaseElementType(Field->getType()));
6866 }
6867 }
Fariborz Jahanianc83726e2010-04-28 16:11:27 +00006868 }
6869 ObjCImplementation->setIvarInitializers(Context,
6870 AllToInit.data(), AllToInit.size());
6871 }
6872}