blob: e8f2f57a220015300b1ab0dc427c575a734030a4 [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
John McCall83024632010-08-25 22:03:47 +000014#include "clang/Sema/SemaInternal.h"
John McCallcc14d1f2010-08-24 08:50:51 +000015#include "clang/Sema/CXXFieldCollector.h"
16#include "clang/Sema/Scope.h"
Douglas Gregorc3a6ade2010-08-12 20:07:10 +000017#include "clang/Sema/Initialization.h"
18#include "clang/Sema/Lookup.h"
Argyrios Kyrtzidis2f67f372008-08-09 00:58:37 +000019#include "clang/AST/ASTConsumer.h"
Douglas Gregor556877c2008-04-13 21:30:24 +000020#include "clang/AST/ASTContext.h"
Sebastian Redlab238a72011-04-24 16:28:06 +000021#include "clang/AST/ASTMutationListener.h"
Douglas Gregorb139cd52010-05-01 20:49:11 +000022#include "clang/AST/CharUnits.h"
Douglas Gregor36d1b142009-10-06 17:59:45 +000023#include "clang/AST/CXXInheritance.h"
Anders Carlssonb5a27b42009-03-24 01:19:16 +000024#include "clang/AST/DeclVisitor.h"
Alexis Huntc5575cc2011-02-26 19:13:13 +000025#include "clang/AST/ExprCXX.h"
Douglas Gregorb139cd52010-05-01 20:49:11 +000026#include "clang/AST/RecordLayout.h"
27#include "clang/AST/StmtVisitor.h"
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +000028#include "clang/AST/TypeLoc.h"
Douglas Gregordff6a8e2008-10-22 21:13:31 +000029#include "clang/AST/TypeOrdering.h"
John McCall8b0666c2010-08-20 18:27:03 +000030#include "clang/Sema/DeclSpec.h"
31#include "clang/Sema/ParsedTemplate.h"
Anders Carlssond624e162009-08-26 23:45:07 +000032#include "clang/Basic/PartialDiagnostic.h"
Argyrios Kyrtzidis153d9672008-10-06 18:37:09 +000033#include "clang/Lex/Preprocessor.h"
John McCalla1e130b2010-08-25 07:03:20 +000034#include "llvm/ADT/DenseSet.h"
Douglas Gregor55297ac2008-12-23 00:26:44 +000035#include "llvm/ADT/STLExtras.h"
Douglas Gregor29a92472008-10-22 17:49:05 +000036#include <map>
Douglas Gregor36d1b142009-10-06 17:59:45 +000037#include <set>
Chris Lattner199abbc2008-04-08 05:04:30 +000038
39using namespace clang;
40
Chris Lattner58258242008-04-10 02:22:51 +000041//===----------------------------------------------------------------------===//
42// CheckDefaultArgumentVisitor
43//===----------------------------------------------------------------------===//
44
Chris Lattnerb0d38442008-04-12 23:52:44 +000045namespace {
46 /// CheckDefaultArgumentVisitor - C++ [dcl.fct.default] Traverses
47 /// the default argument of a parameter to determine whether it
48 /// contains any ill-formed subexpressions. For example, this will
49 /// diagnose the use of local variables or parameters within the
50 /// default argument expression.
Benjamin Kramer337e3a52009-11-28 19:45:26 +000051 class CheckDefaultArgumentVisitor
Chris Lattner574dee62008-07-26 22:17:49 +000052 : public StmtVisitor<CheckDefaultArgumentVisitor, bool> {
Chris Lattnerb0d38442008-04-12 23:52:44 +000053 Expr *DefaultArg;
54 Sema *S;
Chris Lattner58258242008-04-10 02:22:51 +000055
Chris Lattnerb0d38442008-04-12 23:52:44 +000056 public:
Mike Stump11289f42009-09-09 15:08:12 +000057 CheckDefaultArgumentVisitor(Expr *defarg, Sema *s)
Chris Lattnerb0d38442008-04-12 23:52:44 +000058 : DefaultArg(defarg), S(s) {}
Chris Lattner58258242008-04-10 02:22:51 +000059
Chris Lattnerb0d38442008-04-12 23:52:44 +000060 bool VisitExpr(Expr *Node);
61 bool VisitDeclRefExpr(DeclRefExpr *DRE);
Douglas Gregor97a9c812008-11-04 14:32:21 +000062 bool VisitCXXThisExpr(CXXThisExpr *ThisE);
Chris Lattnerb0d38442008-04-12 23:52:44 +000063 };
Chris Lattner58258242008-04-10 02:22:51 +000064
Chris Lattnerb0d38442008-04-12 23:52:44 +000065 /// VisitExpr - Visit all of the children of this expression.
66 bool CheckDefaultArgumentVisitor::VisitExpr(Expr *Node) {
67 bool IsInvalid = false;
John McCall8322c3a2011-02-13 04:07:26 +000068 for (Stmt::child_range I = Node->children(); I; ++I)
Chris Lattner574dee62008-07-26 22:17:49 +000069 IsInvalid |= Visit(*I);
Chris Lattnerb0d38442008-04-12 23:52:44 +000070 return IsInvalid;
Chris Lattner58258242008-04-10 02:22:51 +000071 }
72
Chris Lattnerb0d38442008-04-12 23:52:44 +000073 /// VisitDeclRefExpr - Visit a reference to a declaration, to
74 /// determine whether this declaration can be used in the default
75 /// argument expression.
76 bool CheckDefaultArgumentVisitor::VisitDeclRefExpr(DeclRefExpr *DRE) {
Douglas Gregor5251f1b2008-10-21 16:13:35 +000077 NamedDecl *Decl = DRE->getDecl();
Chris Lattnerb0d38442008-04-12 23:52:44 +000078 if (ParmVarDecl *Param = dyn_cast<ParmVarDecl>(Decl)) {
79 // C++ [dcl.fct.default]p9
80 // Default arguments are evaluated each time the function is
81 // called. The order of evaluation of function arguments is
82 // unspecified. Consequently, parameters of a function shall not
83 // be used in default argument expressions, even if they are not
84 // evaluated. Parameters of a function declared before a default
85 // argument expression are in scope and can hide namespace and
86 // class member names.
Mike Stump11289f42009-09-09 15:08:12 +000087 return S->Diag(DRE->getSourceRange().getBegin(),
Chris Lattner3b054132008-11-19 05:08:23 +000088 diag::err_param_default_argument_references_param)
Chris Lattnere3d20d92008-11-23 21:45:46 +000089 << Param->getDeclName() << DefaultArg->getSourceRange();
Steve Naroff08899ff2008-04-15 22:42:06 +000090 } else if (VarDecl *VDecl = dyn_cast<VarDecl>(Decl)) {
Chris Lattnerb0d38442008-04-12 23:52:44 +000091 // C++ [dcl.fct.default]p7
92 // Local variables shall not be used in default argument
93 // expressions.
John McCall1c9c3fd2010-10-15 04:57:14 +000094 if (VDecl->isLocalVarDecl())
Mike Stump11289f42009-09-09 15:08:12 +000095 return S->Diag(DRE->getSourceRange().getBegin(),
Chris Lattner3b054132008-11-19 05:08:23 +000096 diag::err_param_default_argument_references_local)
Chris Lattnere3d20d92008-11-23 21:45:46 +000097 << VDecl->getDeclName() << DefaultArg->getSourceRange();
Chris Lattnerb0d38442008-04-12 23:52:44 +000098 }
Chris Lattner58258242008-04-10 02:22:51 +000099
Douglas Gregor8e12c382008-11-04 13:41:56 +0000100 return false;
101 }
Chris Lattnerb0d38442008-04-12 23:52:44 +0000102
Douglas Gregor97a9c812008-11-04 14:32:21 +0000103 /// VisitCXXThisExpr - Visit a C++ "this" expression.
104 bool CheckDefaultArgumentVisitor::VisitCXXThisExpr(CXXThisExpr *ThisE) {
105 // C++ [dcl.fct.default]p8:
106 // The keyword this shall not be used in a default argument of a
107 // member function.
108 return S->Diag(ThisE->getSourceRange().getBegin(),
Chris Lattner3b054132008-11-19 05:08:23 +0000109 diag::err_param_default_argument_references_this)
110 << ThisE->getSourceRange();
Chris Lattnerb0d38442008-04-12 23:52:44 +0000111 }
Chris Lattner58258242008-04-10 02:22:51 +0000112}
113
Alexis Hunt6d5b96c2011-05-10 00:49:42 +0000114void Sema::ImplicitExceptionSpecification::CalledDecl(CXXMethodDecl *Method) {
Alexis Hunt913820d2011-05-13 06:10:58 +0000115 assert(Context && "ImplicitExceptionSpecification without an ASTContext");
Alexis Hunt6d5b96c2011-05-10 00:49:42 +0000116 // If we have an MSAny spec already, don't bother.
117 if (!Method || ComputedEST == EST_MSAny)
118 return;
119
120 const FunctionProtoType *Proto
121 = Method->getType()->getAs<FunctionProtoType>();
122
123 ExceptionSpecificationType EST = Proto->getExceptionSpecType();
124
125 // If this function can throw any exceptions, make a note of that.
126 if (EST == EST_MSAny || EST == EST_None) {
127 ClearExceptions();
128 ComputedEST = EST;
129 return;
130 }
131
132 // If this function has a basic noexcept, it doesn't affect the outcome.
133 if (EST == EST_BasicNoexcept)
134 return;
135
136 // If we have a throw-all spec at this point, ignore the function.
137 if (ComputedEST == EST_None)
138 return;
139
140 // If we're still at noexcept(true) and there's a nothrow() callee,
141 // change to that specification.
142 if (EST == EST_DynamicNone) {
143 if (ComputedEST == EST_BasicNoexcept)
144 ComputedEST = EST_DynamicNone;
145 return;
146 }
147
148 // Check out noexcept specs.
149 if (EST == EST_ComputedNoexcept) {
Alexis Hunt913820d2011-05-13 06:10:58 +0000150 FunctionProtoType::NoexceptResult NR = Proto->getNoexceptSpec(*Context);
Alexis Hunt6d5b96c2011-05-10 00:49:42 +0000151 assert(NR != FunctionProtoType::NR_NoNoexcept &&
152 "Must have noexcept result for EST_ComputedNoexcept.");
153 assert(NR != FunctionProtoType::NR_Dependent &&
154 "Should not generate implicit declarations for dependent cases, "
155 "and don't know how to handle them anyway.");
156
157 // noexcept(false) -> no spec on the new function
158 if (NR == FunctionProtoType::NR_Throw) {
159 ClearExceptions();
160 ComputedEST = EST_None;
161 }
162 // noexcept(true) won't change anything either.
163 return;
164 }
165
166 assert(EST == EST_Dynamic && "EST case not considered earlier.");
167 assert(ComputedEST != EST_None &&
168 "Shouldn't collect exceptions when throw-all is guaranteed.");
169 ComputedEST = EST_Dynamic;
170 // Record the exceptions in this function's exception specification.
171 for (FunctionProtoType::exception_iterator E = Proto->exception_begin(),
172 EEnd = Proto->exception_end();
173 E != EEnd; ++E)
Alexis Hunt913820d2011-05-13 06:10:58 +0000174 if (ExceptionsSeen.insert(Context->getCanonicalType(*E)))
Alexis Hunt6d5b96c2011-05-10 00:49:42 +0000175 Exceptions.push_back(*E);
176}
177
Anders Carlssonc80a1272009-08-25 02:29:20 +0000178bool
John McCallb268a282010-08-23 23:25:46 +0000179Sema::SetParamDefaultArgument(ParmVarDecl *Param, Expr *Arg,
Mike Stump11289f42009-09-09 15:08:12 +0000180 SourceLocation EqualLoc) {
Anders Carlsson114056f2009-08-25 13:46:13 +0000181 if (RequireCompleteType(Param->getLocation(), Param->getType(),
182 diag::err_typecheck_decl_incomplete_type)) {
183 Param->setInvalidDecl();
184 return true;
185 }
186
Anders Carlssonc80a1272009-08-25 02:29:20 +0000187 // C++ [dcl.fct.default]p5
188 // A default argument expression is implicitly converted (clause
189 // 4) to the parameter type. The default argument expression has
190 // the same semantic constraints as the initializer expression in
191 // a declaration of a variable of the parameter type, using the
192 // copy-initialization semantics (8.5).
Fariborz Jahanian8fb87ae2010-09-24 17:30:16 +0000193 InitializedEntity Entity = InitializedEntity::InitializeParameter(Context,
194 Param);
Douglas Gregor85dabae2009-12-16 01:38:02 +0000195 InitializationKind Kind = InitializationKind::CreateCopy(Param->getLocation(),
196 EqualLoc);
Eli Friedman5f101b92009-12-22 02:46:13 +0000197 InitializationSequence InitSeq(*this, Entity, Kind, &Arg, 1);
John McCalldadc5752010-08-24 06:29:42 +0000198 ExprResult Result = InitSeq.Perform(*this, Entity, Kind,
Nico Weber20c9f1d2010-11-28 22:53:37 +0000199 MultiExprArg(*this, &Arg, 1));
Eli Friedman5f101b92009-12-22 02:46:13 +0000200 if (Result.isInvalid())
Anders Carlsson4562f1f2009-08-25 03:18:48 +0000201 return true;
Eli Friedman5f101b92009-12-22 02:46:13 +0000202 Arg = Result.takeAs<Expr>();
Anders Carlssonc80a1272009-08-25 02:29:20 +0000203
John McCallacf0ee52010-10-08 02:01:28 +0000204 CheckImplicitConversions(Arg, EqualLoc);
John McCall5d413782010-12-06 08:20:24 +0000205 Arg = MaybeCreateExprWithCleanups(Arg);
Mike Stump11289f42009-09-09 15:08:12 +0000206
Anders Carlssonc80a1272009-08-25 02:29:20 +0000207 // Okay: add the default argument to the parameter
208 Param->setDefaultArg(Arg);
Mike Stump11289f42009-09-09 15:08:12 +0000209
Douglas Gregor758cb672010-10-12 18:23:32 +0000210 // We have already instantiated this parameter; provide each of the
211 // instantiations with the uninstantiated default argument.
212 UnparsedDefaultArgInstantiationsMap::iterator InstPos
213 = UnparsedDefaultArgInstantiations.find(Param);
214 if (InstPos != UnparsedDefaultArgInstantiations.end()) {
215 for (unsigned I = 0, N = InstPos->second.size(); I != N; ++I)
216 InstPos->second[I]->setUninstantiatedDefaultArg(Arg);
217
218 // We're done tracking this parameter's instantiations.
219 UnparsedDefaultArgInstantiations.erase(InstPos);
220 }
221
Anders Carlsson4562f1f2009-08-25 03:18:48 +0000222 return false;
Anders Carlssonc80a1272009-08-25 02:29:20 +0000223}
224
Chris Lattner58258242008-04-10 02:22:51 +0000225/// ActOnParamDefaultArgument - Check whether the default argument
226/// provided for a function parameter is well-formed. If so, attach it
227/// to the parameter declaration.
Chris Lattner199abbc2008-04-08 05:04:30 +0000228void
John McCall48871652010-08-21 09:40:31 +0000229Sema::ActOnParamDefaultArgument(Decl *param, SourceLocation EqualLoc,
John McCallb268a282010-08-23 23:25:46 +0000230 Expr *DefaultArg) {
231 if (!param || !DefaultArg)
Douglas Gregor71a57182009-06-22 23:20:33 +0000232 return;
Mike Stump11289f42009-09-09 15:08:12 +0000233
John McCall48871652010-08-21 09:40:31 +0000234 ParmVarDecl *Param = cast<ParmVarDecl>(param);
Anders Carlsson84613c42009-06-12 16:51:40 +0000235 UnparsedDefaultArgLocs.erase(Param);
236
Chris Lattner199abbc2008-04-08 05:04:30 +0000237 // Default arguments are only permitted in C++
238 if (!getLangOptions().CPlusPlus) {
Chris Lattner3b054132008-11-19 05:08:23 +0000239 Diag(EqualLoc, diag::err_param_default_argument)
240 << DefaultArg->getSourceRange();
Douglas Gregor4d87df52008-12-16 21:30:33 +0000241 Param->setInvalidDecl();
Chris Lattner199abbc2008-04-08 05:04:30 +0000242 return;
243 }
244
Douglas Gregor6ff1fbf2010-12-16 08:48:57 +0000245 // Check for unexpanded parameter packs.
246 if (DiagnoseUnexpandedParameterPack(DefaultArg, UPPC_DefaultArgument)) {
247 Param->setInvalidDecl();
248 return;
249 }
250
Anders Carlssonf1c26952009-08-25 01:02:06 +0000251 // Check that the default argument is well-formed
John McCallb268a282010-08-23 23:25:46 +0000252 CheckDefaultArgumentVisitor DefaultArgChecker(DefaultArg, this);
253 if (DefaultArgChecker.Visit(DefaultArg)) {
Anders Carlssonf1c26952009-08-25 01:02:06 +0000254 Param->setInvalidDecl();
255 return;
256 }
Mike Stump11289f42009-09-09 15:08:12 +0000257
John McCallb268a282010-08-23 23:25:46 +0000258 SetParamDefaultArgument(Param, DefaultArg, EqualLoc);
Chris Lattner199abbc2008-04-08 05:04:30 +0000259}
260
Douglas Gregor58354032008-12-24 00:01:03 +0000261/// ActOnParamUnparsedDefaultArgument - We've seen a default
262/// argument for a function parameter, but we can't parse it yet
263/// because we're inside a class definition. Note that this default
264/// argument will be parsed later.
John McCall48871652010-08-21 09:40:31 +0000265void Sema::ActOnParamUnparsedDefaultArgument(Decl *param,
Anders Carlsson84613c42009-06-12 16:51:40 +0000266 SourceLocation EqualLoc,
267 SourceLocation ArgLoc) {
Douglas Gregor71a57182009-06-22 23:20:33 +0000268 if (!param)
269 return;
Mike Stump11289f42009-09-09 15:08:12 +0000270
John McCall48871652010-08-21 09:40:31 +0000271 ParmVarDecl *Param = cast<ParmVarDecl>(param);
Douglas Gregor58354032008-12-24 00:01:03 +0000272 if (Param)
273 Param->setUnparsedDefaultArg();
Mike Stump11289f42009-09-09 15:08:12 +0000274
Anders Carlsson84613c42009-06-12 16:51:40 +0000275 UnparsedDefaultArgLocs[Param] = ArgLoc;
Douglas Gregor58354032008-12-24 00:01:03 +0000276}
277
Douglas Gregor4d87df52008-12-16 21:30:33 +0000278/// ActOnParamDefaultArgumentError - Parsing or semantic analysis of
279/// the default argument for the parameter param failed.
John McCall48871652010-08-21 09:40:31 +0000280void Sema::ActOnParamDefaultArgumentError(Decl *param) {
Douglas Gregor71a57182009-06-22 23:20:33 +0000281 if (!param)
282 return;
Mike Stump11289f42009-09-09 15:08:12 +0000283
John McCall48871652010-08-21 09:40:31 +0000284 ParmVarDecl *Param = cast<ParmVarDecl>(param);
Mike Stump11289f42009-09-09 15:08:12 +0000285
Anders Carlsson84613c42009-06-12 16:51:40 +0000286 Param->setInvalidDecl();
Mike Stump11289f42009-09-09 15:08:12 +0000287
Anders Carlsson84613c42009-06-12 16:51:40 +0000288 UnparsedDefaultArgLocs.erase(Param);
Douglas Gregor4d87df52008-12-16 21:30:33 +0000289}
290
Douglas Gregorcaa8ace2008-05-07 04:49:29 +0000291/// CheckExtraCXXDefaultArguments - Check for any extra default
292/// arguments in the declarator, which is not a function declaration
293/// or definition and therefore is not permitted to have default
294/// arguments. This routine should be invoked for every declarator
295/// that is not a function declaration or definition.
296void Sema::CheckExtraCXXDefaultArguments(Declarator &D) {
297 // C++ [dcl.fct.default]p3
298 // A default argument expression shall be specified only in the
299 // parameter-declaration-clause of a function declaration or in a
300 // template-parameter (14.1). It shall not be specified for a
301 // parameter pack. If it is specified in a
302 // parameter-declaration-clause, it shall not occur within a
303 // declarator or abstract-declarator of a parameter-declaration.
Chris Lattner83f095c2009-03-28 19:18:32 +0000304 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i) {
Douglas Gregorcaa8ace2008-05-07 04:49:29 +0000305 DeclaratorChunk &chunk = D.getTypeObject(i);
306 if (chunk.Kind == DeclaratorChunk::Function) {
Chris Lattner83f095c2009-03-28 19:18:32 +0000307 for (unsigned argIdx = 0, e = chunk.Fun.NumArgs; argIdx != e; ++argIdx) {
308 ParmVarDecl *Param =
John McCall48871652010-08-21 09:40:31 +0000309 cast<ParmVarDecl>(chunk.Fun.ArgInfo[argIdx].Param);
Douglas Gregor58354032008-12-24 00:01:03 +0000310 if (Param->hasUnparsedDefaultArg()) {
311 CachedTokens *Toks = chunk.Fun.ArgInfo[argIdx].DefaultArgTokens;
Douglas Gregor4d87df52008-12-16 21:30:33 +0000312 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
313 << SourceRange((*Toks)[1].getLocation(), Toks->back().getLocation());
314 delete Toks;
315 chunk.Fun.ArgInfo[argIdx].DefaultArgTokens = 0;
Douglas Gregor58354032008-12-24 00:01:03 +0000316 } else if (Param->getDefaultArg()) {
317 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
318 << Param->getDefaultArg()->getSourceRange();
319 Param->setDefaultArg(0);
Douglas Gregorcaa8ace2008-05-07 04:49:29 +0000320 }
321 }
322 }
323 }
324}
325
Chris Lattner199abbc2008-04-08 05:04:30 +0000326// MergeCXXFunctionDecl - Merge two declarations of the same C++
327// function, once we already know that they have the same
Douglas Gregor75a45ba2009-02-16 17:45:42 +0000328// type. Subroutine of MergeFunctionDecl. Returns true if there was an
329// error, false otherwise.
330bool Sema::MergeCXXFunctionDecl(FunctionDecl *New, FunctionDecl *Old) {
331 bool Invalid = false;
332
Chris Lattner199abbc2008-04-08 05:04:30 +0000333 // C++ [dcl.fct.default]p4:
Chris Lattner199abbc2008-04-08 05:04:30 +0000334 // For non-template functions, default arguments can be added in
335 // later declarations of a function in the same
336 // scope. Declarations in different scopes have completely
337 // distinct sets of default arguments. That is, declarations in
338 // inner scopes do not acquire default arguments from
339 // declarations in outer scopes, and vice versa. In a given
340 // function declaration, all parameters subsequent to a
341 // parameter with a default argument shall have default
342 // arguments supplied in this or previous declarations. A
343 // default argument shall not be redefined by a later
344 // declaration (not even to the same value).
Douglas Gregorc732aba2009-09-11 18:44:32 +0000345 //
346 // C++ [dcl.fct.default]p6:
347 // Except for member functions of class templates, the default arguments
348 // in a member function definition that appears outside of the class
349 // definition are added to the set of default arguments provided by the
350 // member function declaration in the class definition.
Chris Lattner199abbc2008-04-08 05:04:30 +0000351 for (unsigned p = 0, NumParams = Old->getNumParams(); p < NumParams; ++p) {
352 ParmVarDecl *OldParam = Old->getParamDecl(p);
353 ParmVarDecl *NewParam = New->getParamDecl(p);
354
Douglas Gregorc732aba2009-09-11 18:44:32 +0000355 if (OldParam->hasDefaultArg() && NewParam->hasDefaultArg()) {
Francois Pichet8cb243a2011-04-10 04:58:30 +0000356
Francois Pichet53fe2bb2011-04-10 03:03:52 +0000357 unsigned DiagDefaultParamID =
358 diag::err_param_default_argument_redefinition;
359
360 // MSVC accepts that default parameters be redefined for member functions
361 // of template class. The new default parameter's value is ignored.
362 Invalid = true;
363 if (getLangOptions().Microsoft) {
364 CXXMethodDecl* MD = dyn_cast<CXXMethodDecl>(New);
365 if (MD && MD->getParent()->getDescribedClassTemplate()) {
Francois Pichet8cb243a2011-04-10 04:58:30 +0000366 // Merge the old default argument into the new parameter.
367 NewParam->setHasInheritedDefaultArg();
368 if (OldParam->hasUninstantiatedDefaultArg())
369 NewParam->setUninstantiatedDefaultArg(
370 OldParam->getUninstantiatedDefaultArg());
371 else
372 NewParam->setDefaultArg(OldParam->getInit());
Francois Pichet93921652011-04-22 08:25:24 +0000373 DiagDefaultParamID = diag::warn_param_default_argument_redefinition;
Francois Pichet53fe2bb2011-04-10 03:03:52 +0000374 Invalid = false;
375 }
376 }
Douglas Gregor08dc5842010-01-13 00:12:48 +0000377
Francois Pichet8cb243a2011-04-10 04:58:30 +0000378 // FIXME: If we knew where the '=' was, we could easily provide a fix-it
379 // hint here. Alternatively, we could walk the type-source information
380 // for NewParam to find the last source location in the type... but it
381 // isn't worth the effort right now. This is the kind of test case that
382 // is hard to get right:
Douglas Gregor08dc5842010-01-13 00:12:48 +0000383 // int f(int);
384 // void g(int (*fp)(int) = f);
385 // void g(int (*fp)(int) = &f);
Francois Pichet53fe2bb2011-04-10 03:03:52 +0000386 Diag(NewParam->getLocation(), DiagDefaultParamID)
Douglas Gregor08dc5842010-01-13 00:12:48 +0000387 << NewParam->getDefaultArgRange();
Douglas Gregorc732aba2009-09-11 18:44:32 +0000388
389 // Look for the function declaration where the default argument was
390 // actually written, which may be a declaration prior to Old.
391 for (FunctionDecl *Older = Old->getPreviousDeclaration();
392 Older; Older = Older->getPreviousDeclaration()) {
393 if (!Older->getParamDecl(p)->hasDefaultArg())
394 break;
395
396 OldParam = Older->getParamDecl(p);
397 }
398
399 Diag(OldParam->getLocation(), diag::note_previous_definition)
400 << OldParam->getDefaultArgRange();
Douglas Gregor4f15f4d2009-09-17 19:51:30 +0000401 } else if (OldParam->hasDefaultArg()) {
John McCalle61b02b2010-05-04 01:53:42 +0000402 // Merge the old default argument into the new parameter.
403 // It's important to use getInit() here; getDefaultArg()
John McCall5d413782010-12-06 08:20:24 +0000404 // strips off any top-level ExprWithCleanups.
John McCallf3cd6652010-03-12 18:31:32 +0000405 NewParam->setHasInheritedDefaultArg();
Douglas Gregor4f15f4d2009-09-17 19:51:30 +0000406 if (OldParam->hasUninstantiatedDefaultArg())
407 NewParam->setUninstantiatedDefaultArg(
408 OldParam->getUninstantiatedDefaultArg());
409 else
John McCalle61b02b2010-05-04 01:53:42 +0000410 NewParam->setDefaultArg(OldParam->getInit());
Douglas Gregorc732aba2009-09-11 18:44:32 +0000411 } else if (NewParam->hasDefaultArg()) {
412 if (New->getDescribedFunctionTemplate()) {
413 // Paragraph 4, quoted above, only applies to non-template functions.
414 Diag(NewParam->getLocation(),
415 diag::err_param_default_argument_template_redecl)
416 << NewParam->getDefaultArgRange();
417 Diag(Old->getLocation(), diag::note_template_prev_declaration)
418 << false;
Douglas Gregor62e10f02009-10-13 17:02:54 +0000419 } else if (New->getTemplateSpecializationKind()
420 != TSK_ImplicitInstantiation &&
421 New->getTemplateSpecializationKind() != TSK_Undeclared) {
422 // C++ [temp.expr.spec]p21:
423 // Default function arguments shall not be specified in a declaration
424 // or a definition for one of the following explicit specializations:
425 // - the explicit specialization of a function template;
Douglas Gregor3362bde2009-10-13 23:52:38 +0000426 // - the explicit specialization of a member function template;
427 // - the explicit specialization of a member function of a class
Douglas Gregor62e10f02009-10-13 17:02:54 +0000428 // template where the class template specialization to which the
429 // member function specialization belongs is implicitly
430 // instantiated.
431 Diag(NewParam->getLocation(), diag::err_template_spec_default_arg)
432 << (New->getTemplateSpecializationKind() ==TSK_ExplicitSpecialization)
433 << New->getDeclName()
434 << NewParam->getDefaultArgRange();
Douglas Gregorc732aba2009-09-11 18:44:32 +0000435 } else if (New->getDeclContext()->isDependentContext()) {
436 // C++ [dcl.fct.default]p6 (DR217):
437 // Default arguments for a member function of a class template shall
438 // be specified on the initial declaration of the member function
439 // within the class template.
440 //
441 // Reading the tea leaves a bit in DR217 and its reference to DR205
442 // leads me to the conclusion that one cannot add default function
443 // arguments for an out-of-line definition of a member function of a
444 // dependent type.
445 int WhichKind = 2;
446 if (CXXRecordDecl *Record
447 = dyn_cast<CXXRecordDecl>(New->getDeclContext())) {
448 if (Record->getDescribedClassTemplate())
449 WhichKind = 0;
450 else if (isa<ClassTemplatePartialSpecializationDecl>(Record))
451 WhichKind = 1;
452 else
453 WhichKind = 2;
454 }
455
456 Diag(NewParam->getLocation(),
457 diag::err_param_default_argument_member_template_redecl)
458 << WhichKind
459 << NewParam->getDefaultArgRange();
460 }
Chris Lattner199abbc2008-04-08 05:04:30 +0000461 }
462 }
463
Douglas Gregorf40863c2010-02-12 07:32:17 +0000464 if (CheckEquivalentExceptionSpec(Old, New))
Sebastian Redl4f4d7b52009-07-04 11:39:00 +0000465 Invalid = true;
Sebastian Redl4f4d7b52009-07-04 11:39:00 +0000466
Douglas Gregor75a45ba2009-02-16 17:45:42 +0000467 return Invalid;
Chris Lattner199abbc2008-04-08 05:04:30 +0000468}
469
Sebastian Redlfa453cf2011-03-12 11:50:43 +0000470/// \brief Merge the exception specifications of two variable declarations.
471///
472/// This is called when there's a redeclaration of a VarDecl. The function
473/// checks if the redeclaration might have an exception specification and
474/// validates compatibility and merges the specs if necessary.
475void Sema::MergeVarDeclExceptionSpecs(VarDecl *New, VarDecl *Old) {
476 // Shortcut if exceptions are disabled.
477 if (!getLangOptions().CXXExceptions)
478 return;
479
480 assert(Context.hasSameType(New->getType(), Old->getType()) &&
481 "Should only be called if types are otherwise the same.");
482
483 QualType NewType = New->getType();
484 QualType OldType = Old->getType();
485
486 // We're only interested in pointers and references to functions, as well
487 // as pointers to member functions.
488 if (const ReferenceType *R = NewType->getAs<ReferenceType>()) {
489 NewType = R->getPointeeType();
490 OldType = OldType->getAs<ReferenceType>()->getPointeeType();
491 } else if (const PointerType *P = NewType->getAs<PointerType>()) {
492 NewType = P->getPointeeType();
493 OldType = OldType->getAs<PointerType>()->getPointeeType();
494 } else if (const MemberPointerType *M = NewType->getAs<MemberPointerType>()) {
495 NewType = M->getPointeeType();
496 OldType = OldType->getAs<MemberPointerType>()->getPointeeType();
497 }
498
499 if (!NewType->isFunctionProtoType())
500 return;
501
502 // There's lots of special cases for functions. For function pointers, system
503 // libraries are hopefully not as broken so that we don't need these
504 // workarounds.
505 if (CheckEquivalentExceptionSpec(
506 OldType->getAs<FunctionProtoType>(), Old->getLocation(),
507 NewType->getAs<FunctionProtoType>(), New->getLocation())) {
508 New->setInvalidDecl();
509 }
510}
511
Chris Lattner199abbc2008-04-08 05:04:30 +0000512/// CheckCXXDefaultArguments - Verify that the default arguments for a
513/// function declaration are well-formed according to C++
514/// [dcl.fct.default].
515void Sema::CheckCXXDefaultArguments(FunctionDecl *FD) {
516 unsigned NumParams = FD->getNumParams();
517 unsigned p;
518
519 // Find first parameter with a default argument
520 for (p = 0; p < NumParams; ++p) {
521 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson5a532382009-08-25 01:23:32 +0000522 if (Param->hasDefaultArg())
Chris Lattner199abbc2008-04-08 05:04:30 +0000523 break;
524 }
525
526 // C++ [dcl.fct.default]p4:
527 // In a given function declaration, all parameters
528 // subsequent to a parameter with a default argument shall
529 // have default arguments supplied in this or previous
530 // declarations. A default argument shall not be redefined
531 // by a later declaration (not even to the same value).
532 unsigned LastMissingDefaultArg = 0;
Mike Stump11289f42009-09-09 15:08:12 +0000533 for (; p < NumParams; ++p) {
Chris Lattner199abbc2008-04-08 05:04:30 +0000534 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson5a532382009-08-25 01:23:32 +0000535 if (!Param->hasDefaultArg()) {
Douglas Gregor4d87df52008-12-16 21:30:33 +0000536 if (Param->isInvalidDecl())
537 /* We already complained about this parameter. */;
538 else if (Param->getIdentifier())
Mike Stump11289f42009-09-09 15:08:12 +0000539 Diag(Param->getLocation(),
Chris Lattner3b054132008-11-19 05:08:23 +0000540 diag::err_param_default_argument_missing_name)
Chris Lattnerb91fd172008-11-19 07:32:16 +0000541 << Param->getIdentifier();
Chris Lattner199abbc2008-04-08 05:04:30 +0000542 else
Mike Stump11289f42009-09-09 15:08:12 +0000543 Diag(Param->getLocation(),
Chris Lattner199abbc2008-04-08 05:04:30 +0000544 diag::err_param_default_argument_missing);
Mike Stump11289f42009-09-09 15:08:12 +0000545
Chris Lattner199abbc2008-04-08 05:04:30 +0000546 LastMissingDefaultArg = p;
547 }
548 }
549
550 if (LastMissingDefaultArg > 0) {
551 // Some default arguments were missing. Clear out all of the
552 // default arguments up to (and including) the last missing
553 // default argument, so that we leave the function parameters
554 // in a semantically valid state.
555 for (p = 0; p <= LastMissingDefaultArg; ++p) {
556 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson84613c42009-06-12 16:51:40 +0000557 if (Param->hasDefaultArg()) {
Chris Lattner199abbc2008-04-08 05:04:30 +0000558 Param->setDefaultArg(0);
559 }
560 }
561 }
562}
Douglas Gregor556877c2008-04-13 21:30:24 +0000563
Douglas Gregor61956c42008-10-31 09:07:45 +0000564/// isCurrentClassName - Determine whether the identifier II is the
565/// name of the class type currently being defined. In the case of
566/// nested classes, this will only return true if II is the name of
567/// the innermost class.
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +0000568bool Sema::isCurrentClassName(const IdentifierInfo &II, Scope *,
569 const CXXScopeSpec *SS) {
Douglas Gregor411e5ac2010-01-11 23:29:10 +0000570 assert(getLangOptions().CPlusPlus && "No class names in C!");
571
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +0000572 CXXRecordDecl *CurDecl;
Douglas Gregor52537682009-03-19 00:18:19 +0000573 if (SS && SS->isSet() && !SS->isInvalid()) {
Douglas Gregore5bbb7d2009-08-21 22:16:40 +0000574 DeclContext *DC = computeDeclContext(*SS, true);
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +0000575 CurDecl = dyn_cast_or_null<CXXRecordDecl>(DC);
576 } else
577 CurDecl = dyn_cast_or_null<CXXRecordDecl>(CurContext);
578
Douglas Gregor1aa3edb2010-02-05 06:12:42 +0000579 if (CurDecl && CurDecl->getIdentifier())
Douglas Gregor61956c42008-10-31 09:07:45 +0000580 return &II == CurDecl->getIdentifier();
581 else
582 return false;
583}
584
Mike Stump11289f42009-09-09 15:08:12 +0000585/// \brief Check the validity of a C++ base class specifier.
Douglas Gregor463421d2009-03-03 04:44:36 +0000586///
587/// \returns a new CXXBaseSpecifier if well-formed, emits diagnostics
588/// and returns NULL otherwise.
589CXXBaseSpecifier *
590Sema::CheckBaseSpecifier(CXXRecordDecl *Class,
591 SourceRange SpecifierRange,
592 bool Virtual, AccessSpecifier Access,
Douglas Gregor752a5952011-01-03 22:36:02 +0000593 TypeSourceInfo *TInfo,
594 SourceLocation EllipsisLoc) {
Nick Lewycky19b9f952010-07-26 16:56:01 +0000595 QualType BaseType = TInfo->getType();
596
Douglas Gregor463421d2009-03-03 04:44:36 +0000597 // C++ [class.union]p1:
598 // A union shall not have base classes.
599 if (Class->isUnion()) {
600 Diag(Class->getLocation(), diag::err_base_clause_on_union)
601 << SpecifierRange;
602 return 0;
603 }
604
Douglas Gregor752a5952011-01-03 22:36:02 +0000605 if (EllipsisLoc.isValid() &&
606 !TInfo->getType()->containsUnexpandedParameterPack()) {
607 Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs)
608 << TInfo->getTypeLoc().getSourceRange();
609 EllipsisLoc = SourceLocation();
610 }
611
Douglas Gregor463421d2009-03-03 04:44:36 +0000612 if (BaseType->isDependentType())
Mike Stump11289f42009-09-09 15:08:12 +0000613 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
Nick Lewycky19b9f952010-07-26 16:56:01 +0000614 Class->getTagKind() == TTK_Class,
Douglas Gregor752a5952011-01-03 22:36:02 +0000615 Access, TInfo, EllipsisLoc);
Nick Lewycky19b9f952010-07-26 16:56:01 +0000616
617 SourceLocation BaseLoc = TInfo->getTypeLoc().getBeginLoc();
Douglas Gregor463421d2009-03-03 04:44:36 +0000618
619 // Base specifiers must be record types.
620 if (!BaseType->isRecordType()) {
621 Diag(BaseLoc, diag::err_base_must_be_class) << SpecifierRange;
622 return 0;
623 }
624
625 // C++ [class.union]p1:
626 // A union shall not be used as a base class.
627 if (BaseType->isUnionType()) {
628 Diag(BaseLoc, diag::err_union_as_base_class) << SpecifierRange;
629 return 0;
630 }
631
632 // C++ [class.derived]p2:
633 // The class-name in a base-specifier shall not be an incompletely
634 // defined class.
Mike Stump11289f42009-09-09 15:08:12 +0000635 if (RequireCompleteType(BaseLoc, BaseType,
Anders Carlssond624e162009-08-26 23:45:07 +0000636 PDiag(diag::err_incomplete_base_class)
John McCall3696dcb2010-08-17 07:23:57 +0000637 << SpecifierRange)) {
638 Class->setInvalidDecl();
Douglas Gregor463421d2009-03-03 04:44:36 +0000639 return 0;
John McCall3696dcb2010-08-17 07:23:57 +0000640 }
Douglas Gregor463421d2009-03-03 04:44:36 +0000641
Eli Friedmanc96d4962009-08-15 21:55:26 +0000642 // If the base class is polymorphic or isn't empty, the new one is/isn't, too.
Ted Kremenekc23c7e62009-07-29 21:53:49 +0000643 RecordDecl *BaseDecl = BaseType->getAs<RecordType>()->getDecl();
Douglas Gregor463421d2009-03-03 04:44:36 +0000644 assert(BaseDecl && "Record type has no declaration");
Douglas Gregor0a5a2212010-02-11 01:04:33 +0000645 BaseDecl = BaseDecl->getDefinition();
Douglas Gregor463421d2009-03-03 04:44:36 +0000646 assert(BaseDecl && "Base type is not incomplete, but has no definition");
Eli Friedmanc96d4962009-08-15 21:55:26 +0000647 CXXRecordDecl * CXXBaseDecl = cast<CXXRecordDecl>(BaseDecl);
648 assert(CXXBaseDecl && "Base type is not a C++ type");
Eli Friedman89c038e2009-12-05 23:03:49 +0000649
Anders Carlsson65c76d32011-03-25 14:55:14 +0000650 // C++ [class]p3:
651 // If a class is marked final and it appears as a base-type-specifier in
652 // base-clause, the program is ill-formed.
Anders Carlsson1eb95962011-01-24 16:26:15 +0000653 if (CXXBaseDecl->hasAttr<FinalAttr>()) {
Anders Carlssonfc1eef42011-01-22 17:51:53 +0000654 Diag(BaseLoc, diag::err_class_marked_final_used_as_base)
655 << CXXBaseDecl->getDeclName();
656 Diag(CXXBaseDecl->getLocation(), diag::note_previous_decl)
657 << CXXBaseDecl->getDeclName();
658 return 0;
659 }
660
John McCall3696dcb2010-08-17 07:23:57 +0000661 if (BaseDecl->isInvalidDecl())
662 Class->setInvalidDecl();
Anders Carlssonae3c5cf2009-12-03 17:49:57 +0000663
664 // Create the base specifier.
Anders Carlssonae3c5cf2009-12-03 17:49:57 +0000665 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
Nick Lewycky19b9f952010-07-26 16:56:01 +0000666 Class->getTagKind() == TTK_Class,
Douglas Gregor752a5952011-01-03 22:36:02 +0000667 Access, TInfo, EllipsisLoc);
Anders Carlssonae3c5cf2009-12-03 17:49:57 +0000668}
669
Douglas Gregor556877c2008-04-13 21:30:24 +0000670/// ActOnBaseSpecifier - Parsed a base specifier. A base specifier is
671/// one entry in the base class list of a class specifier, for
Mike Stump11289f42009-09-09 15:08:12 +0000672/// example:
673/// class foo : public bar, virtual private baz {
Douglas Gregor556877c2008-04-13 21:30:24 +0000674/// 'public bar' and 'virtual private baz' are each base-specifiers.
John McCallfaf5fb42010-08-26 23:41:50 +0000675BaseResult
John McCall48871652010-08-21 09:40:31 +0000676Sema::ActOnBaseSpecifier(Decl *classdecl, SourceRange SpecifierRange,
Douglas Gregor29a92472008-10-22 17:49:05 +0000677 bool Virtual, AccessSpecifier Access,
Douglas Gregor752a5952011-01-03 22:36:02 +0000678 ParsedType basetype, SourceLocation BaseLoc,
679 SourceLocation EllipsisLoc) {
Douglas Gregor71a57182009-06-22 23:20:33 +0000680 if (!classdecl)
681 return true;
682
Douglas Gregorc40290e2009-03-09 23:48:35 +0000683 AdjustDeclIfTemplate(classdecl);
John McCall48871652010-08-21 09:40:31 +0000684 CXXRecordDecl *Class = dyn_cast<CXXRecordDecl>(classdecl);
Douglas Gregorbeab56e2010-02-27 00:25:28 +0000685 if (!Class)
686 return true;
687
Nick Lewycky19b9f952010-07-26 16:56:01 +0000688 TypeSourceInfo *TInfo = 0;
689 GetTypeFromParser(basetype, &TInfo);
Douglas Gregor506bd562010-12-13 22:49:22 +0000690
Douglas Gregor752a5952011-01-03 22:36:02 +0000691 if (EllipsisLoc.isInvalid() &&
692 DiagnoseUnexpandedParameterPack(SpecifierRange.getBegin(), TInfo,
Douglas Gregor506bd562010-12-13 22:49:22 +0000693 UPPC_BaseType))
694 return true;
Douglas Gregor752a5952011-01-03 22:36:02 +0000695
Douglas Gregor463421d2009-03-03 04:44:36 +0000696 if (CXXBaseSpecifier *BaseSpec = CheckBaseSpecifier(Class, SpecifierRange,
Douglas Gregor752a5952011-01-03 22:36:02 +0000697 Virtual, Access, TInfo,
698 EllipsisLoc))
Douglas Gregor463421d2009-03-03 04:44:36 +0000699 return BaseSpec;
Mike Stump11289f42009-09-09 15:08:12 +0000700
Douglas Gregor463421d2009-03-03 04:44:36 +0000701 return true;
Douglas Gregor29a92472008-10-22 17:49:05 +0000702}
Douglas Gregor556877c2008-04-13 21:30:24 +0000703
Douglas Gregor463421d2009-03-03 04:44:36 +0000704/// \brief Performs the actual work of attaching the given base class
705/// specifiers to a C++ class.
706bool Sema::AttachBaseSpecifiers(CXXRecordDecl *Class, CXXBaseSpecifier **Bases,
707 unsigned NumBases) {
708 if (NumBases == 0)
709 return false;
Douglas Gregor29a92472008-10-22 17:49:05 +0000710
711 // Used to keep track of which base types we have already seen, so
712 // that we can properly diagnose redundant direct base types. Note
Douglas Gregor9d6290b2008-10-23 18:13:27 +0000713 // that the key is always the unqualified canonical type of the base
714 // class.
Douglas Gregor29a92472008-10-22 17:49:05 +0000715 std::map<QualType, CXXBaseSpecifier*, QualTypeOrdering> KnownBaseTypes;
716
717 // Copy non-redundant base specifiers into permanent storage.
Douglas Gregor9d6290b2008-10-23 18:13:27 +0000718 unsigned NumGoodBases = 0;
Douglas Gregor463421d2009-03-03 04:44:36 +0000719 bool Invalid = false;
Douglas Gregor9d6290b2008-10-23 18:13:27 +0000720 for (unsigned idx = 0; idx < NumBases; ++idx) {
Mike Stump11289f42009-09-09 15:08:12 +0000721 QualType NewBaseType
Douglas Gregor463421d2009-03-03 04:44:36 +0000722 = Context.getCanonicalType(Bases[idx]->getType());
Douglas Gregor1b8fe5b72009-11-16 21:35:15 +0000723 NewBaseType = NewBaseType.getLocalUnqualifiedType();
Fariborz Jahanian2792f302010-05-20 23:34:56 +0000724 if (!Class->hasObjectMember()) {
725 if (const RecordType *FDTTy =
726 NewBaseType.getTypePtr()->getAs<RecordType>())
727 if (FDTTy->getDecl()->hasObjectMember())
728 Class->setHasObjectMember(true);
729 }
730
Douglas Gregor29a92472008-10-22 17:49:05 +0000731 if (KnownBaseTypes[NewBaseType]) {
732 // C++ [class.mi]p3:
733 // A class shall not be specified as a direct base class of a
734 // derived class more than once.
Douglas Gregor463421d2009-03-03 04:44:36 +0000735 Diag(Bases[idx]->getSourceRange().getBegin(),
Chris Lattner3b054132008-11-19 05:08:23 +0000736 diag::err_duplicate_base_class)
Chris Lattner1e5665e2008-11-24 06:25:27 +0000737 << KnownBaseTypes[NewBaseType]->getType()
Douglas Gregor463421d2009-03-03 04:44:36 +0000738 << Bases[idx]->getSourceRange();
Douglas Gregor9d6290b2008-10-23 18:13:27 +0000739
740 // Delete the duplicate base class specifier; we're going to
741 // overwrite its pointer later.
Douglas Gregorb77af8f2009-07-22 20:55:49 +0000742 Context.Deallocate(Bases[idx]);
Douglas Gregor463421d2009-03-03 04:44:36 +0000743
744 Invalid = true;
Douglas Gregor29a92472008-10-22 17:49:05 +0000745 } else {
746 // Okay, add this new base class.
Douglas Gregor463421d2009-03-03 04:44:36 +0000747 KnownBaseTypes[NewBaseType] = Bases[idx];
748 Bases[NumGoodBases++] = Bases[idx];
Douglas Gregor29a92472008-10-22 17:49:05 +0000749 }
750 }
751
752 // Attach the remaining base class specifiers to the derived class.
Douglas Gregor4a62bdf2010-02-11 01:30:34 +0000753 Class->setBases(Bases, NumGoodBases);
Douglas Gregor9d6290b2008-10-23 18:13:27 +0000754
755 // Delete the remaining (good) base class specifiers, since their
756 // data has been copied into the CXXRecordDecl.
757 for (unsigned idx = 0; idx < NumGoodBases; ++idx)
Douglas Gregorb77af8f2009-07-22 20:55:49 +0000758 Context.Deallocate(Bases[idx]);
Douglas Gregor463421d2009-03-03 04:44:36 +0000759
760 return Invalid;
761}
762
763/// ActOnBaseSpecifiers - Attach the given base specifiers to the
764/// class, after checking whether there are any duplicate base
765/// classes.
John McCall48871652010-08-21 09:40:31 +0000766void Sema::ActOnBaseSpecifiers(Decl *ClassDecl, BaseTy **Bases,
Douglas Gregor463421d2009-03-03 04:44:36 +0000767 unsigned NumBases) {
768 if (!ClassDecl || !Bases || !NumBases)
769 return;
770
771 AdjustDeclIfTemplate(ClassDecl);
John McCall48871652010-08-21 09:40:31 +0000772 AttachBaseSpecifiers(cast<CXXRecordDecl>(ClassDecl),
Douglas Gregor463421d2009-03-03 04:44:36 +0000773 (CXXBaseSpecifier**)(Bases), NumBases);
Douglas Gregor556877c2008-04-13 21:30:24 +0000774}
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +0000775
John McCalle78aac42010-03-10 03:28:59 +0000776static CXXRecordDecl *GetClassForType(QualType T) {
777 if (const RecordType *RT = T->getAs<RecordType>())
778 return cast<CXXRecordDecl>(RT->getDecl());
779 else if (const InjectedClassNameType *ICT = T->getAs<InjectedClassNameType>())
780 return ICT->getDecl();
781 else
782 return 0;
783}
784
Douglas Gregor36d1b142009-10-06 17:59:45 +0000785/// \brief Determine whether the type \p Derived is a C++ class that is
786/// derived from the type \p Base.
787bool Sema::IsDerivedFrom(QualType Derived, QualType Base) {
788 if (!getLangOptions().CPlusPlus)
789 return false;
John McCalle78aac42010-03-10 03:28:59 +0000790
791 CXXRecordDecl *DerivedRD = GetClassForType(Derived);
792 if (!DerivedRD)
Douglas Gregor36d1b142009-10-06 17:59:45 +0000793 return false;
794
John McCalle78aac42010-03-10 03:28:59 +0000795 CXXRecordDecl *BaseRD = GetClassForType(Base);
796 if (!BaseRD)
Douglas Gregor36d1b142009-10-06 17:59:45 +0000797 return false;
798
John McCall67da35c2010-02-04 22:26:26 +0000799 // FIXME: instantiate DerivedRD if necessary. We need a PoI for this.
800 return DerivedRD->hasDefinition() && DerivedRD->isDerivedFrom(BaseRD);
Douglas Gregor36d1b142009-10-06 17:59:45 +0000801}
802
803/// \brief Determine whether the type \p Derived is a C++ class that is
804/// derived from the type \p Base.
805bool Sema::IsDerivedFrom(QualType Derived, QualType Base, CXXBasePaths &Paths) {
806 if (!getLangOptions().CPlusPlus)
807 return false;
808
John McCalle78aac42010-03-10 03:28:59 +0000809 CXXRecordDecl *DerivedRD = GetClassForType(Derived);
810 if (!DerivedRD)
Douglas Gregor36d1b142009-10-06 17:59:45 +0000811 return false;
812
John McCalle78aac42010-03-10 03:28:59 +0000813 CXXRecordDecl *BaseRD = GetClassForType(Base);
814 if (!BaseRD)
Douglas Gregor36d1b142009-10-06 17:59:45 +0000815 return false;
816
Douglas Gregor36d1b142009-10-06 17:59:45 +0000817 return DerivedRD->isDerivedFrom(BaseRD, Paths);
818}
819
Anders Carlssona70cff62010-04-24 19:06:50 +0000820void Sema::BuildBasePathArray(const CXXBasePaths &Paths,
John McCallcf142162010-08-07 06:22:56 +0000821 CXXCastPath &BasePathArray) {
Anders Carlssona70cff62010-04-24 19:06:50 +0000822 assert(BasePathArray.empty() && "Base path array must be empty!");
823 assert(Paths.isRecordingPaths() && "Must record paths!");
824
825 const CXXBasePath &Path = Paths.front();
826
827 // We first go backward and check if we have a virtual base.
828 // FIXME: It would be better if CXXBasePath had the base specifier for
829 // the nearest virtual base.
830 unsigned Start = 0;
831 for (unsigned I = Path.size(); I != 0; --I) {
832 if (Path[I - 1].Base->isVirtual()) {
833 Start = I - 1;
834 break;
835 }
836 }
837
838 // Now add all bases.
839 for (unsigned I = Start, E = Path.size(); I != E; ++I)
John McCallcf142162010-08-07 06:22:56 +0000840 BasePathArray.push_back(const_cast<CXXBaseSpecifier*>(Path[I].Base));
Anders Carlssona70cff62010-04-24 19:06:50 +0000841}
842
Douglas Gregor88d292c2010-05-13 16:44:06 +0000843/// \brief Determine whether the given base path includes a virtual
844/// base class.
John McCallcf142162010-08-07 06:22:56 +0000845bool Sema::BasePathInvolvesVirtualBase(const CXXCastPath &BasePath) {
846 for (CXXCastPath::const_iterator B = BasePath.begin(),
847 BEnd = BasePath.end();
Douglas Gregor88d292c2010-05-13 16:44:06 +0000848 B != BEnd; ++B)
849 if ((*B)->isVirtual())
850 return true;
851
852 return false;
853}
854
Douglas Gregor36d1b142009-10-06 17:59:45 +0000855/// CheckDerivedToBaseConversion - Check whether the Derived-to-Base
856/// conversion (where Derived and Base are class types) is
857/// well-formed, meaning that the conversion is unambiguous (and
858/// that all of the base classes are accessible). Returns true
859/// and emits a diagnostic if the code is ill-formed, returns false
860/// otherwise. Loc is the location where this routine should point to
861/// if there is an error, and Range is the source range to highlight
862/// if there is an error.
863bool
864Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
John McCall1064d7e2010-03-16 05:22:47 +0000865 unsigned InaccessibleBaseID,
Douglas Gregor36d1b142009-10-06 17:59:45 +0000866 unsigned AmbigiousBaseConvID,
867 SourceLocation Loc, SourceRange Range,
Anders Carlsson7afe4242010-04-24 17:11:09 +0000868 DeclarationName Name,
John McCallcf142162010-08-07 06:22:56 +0000869 CXXCastPath *BasePath) {
Douglas Gregor36d1b142009-10-06 17:59:45 +0000870 // First, determine whether the path from Derived to Base is
871 // ambiguous. This is slightly more expensive than checking whether
872 // the Derived to Base conversion exists, because here we need to
873 // explore multiple paths to determine if there is an ambiguity.
874 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
875 /*DetectVirtual=*/false);
876 bool DerivationOkay = IsDerivedFrom(Derived, Base, Paths);
877 assert(DerivationOkay &&
878 "Can only be used with a derived-to-base conversion");
879 (void)DerivationOkay;
880
881 if (!Paths.isAmbiguous(Context.getCanonicalType(Base).getUnqualifiedType())) {
Anders Carlssona70cff62010-04-24 19:06:50 +0000882 if (InaccessibleBaseID) {
883 // Check that the base class can be accessed.
884 switch (CheckBaseClassAccess(Loc, Base, Derived, Paths.front(),
885 InaccessibleBaseID)) {
886 case AR_inaccessible:
887 return true;
888 case AR_accessible:
889 case AR_dependent:
890 case AR_delayed:
891 break;
Anders Carlsson7afe4242010-04-24 17:11:09 +0000892 }
John McCall5b0829a2010-02-10 09:31:12 +0000893 }
Anders Carlssona70cff62010-04-24 19:06:50 +0000894
895 // Build a base path if necessary.
896 if (BasePath)
897 BuildBasePathArray(Paths, *BasePath);
898 return false;
Douglas Gregor36d1b142009-10-06 17:59:45 +0000899 }
900
901 // We know that the derived-to-base conversion is ambiguous, and
902 // we're going to produce a diagnostic. Perform the derived-to-base
903 // search just one more time to compute all of the possible paths so
904 // that we can print them out. This is more expensive than any of
905 // the previous derived-to-base checks we've done, but at this point
906 // performance isn't as much of an issue.
907 Paths.clear();
908 Paths.setRecordingPaths(true);
909 bool StillOkay = IsDerivedFrom(Derived, Base, Paths);
910 assert(StillOkay && "Can only be used with a derived-to-base conversion");
911 (void)StillOkay;
912
913 // Build up a textual representation of the ambiguous paths, e.g.,
914 // D -> B -> A, that will be used to illustrate the ambiguous
915 // conversions in the diagnostic. We only print one of the paths
916 // to each base class subobject.
917 std::string PathDisplayStr = getAmbiguousPathsDisplayString(Paths);
918
919 Diag(Loc, AmbigiousBaseConvID)
920 << Derived << Base << PathDisplayStr << Range << Name;
921 return true;
922}
923
924bool
925Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
Sebastian Redl7c353682009-11-14 21:15:49 +0000926 SourceLocation Loc, SourceRange Range,
John McCallcf142162010-08-07 06:22:56 +0000927 CXXCastPath *BasePath,
Sebastian Redl7c353682009-11-14 21:15:49 +0000928 bool IgnoreAccess) {
Douglas Gregor36d1b142009-10-06 17:59:45 +0000929 return CheckDerivedToBaseConversion(Derived, Base,
John McCall1064d7e2010-03-16 05:22:47 +0000930 IgnoreAccess ? 0
931 : diag::err_upcast_to_inaccessible_base,
Douglas Gregor36d1b142009-10-06 17:59:45 +0000932 diag::err_ambiguous_derived_to_base_conv,
Anders Carlsson7afe4242010-04-24 17:11:09 +0000933 Loc, Range, DeclarationName(),
934 BasePath);
Douglas Gregor36d1b142009-10-06 17:59:45 +0000935}
936
937
938/// @brief Builds a string representing ambiguous paths from a
939/// specific derived class to different subobjects of the same base
940/// class.
941///
942/// This function builds a string that can be used in error messages
943/// to show the different paths that one can take through the
944/// inheritance hierarchy to go from the derived class to different
945/// subobjects of a base class. The result looks something like this:
946/// @code
947/// struct D -> struct B -> struct A
948/// struct D -> struct C -> struct A
949/// @endcode
950std::string Sema::getAmbiguousPathsDisplayString(CXXBasePaths &Paths) {
951 std::string PathDisplayStr;
952 std::set<unsigned> DisplayedPaths;
953 for (CXXBasePaths::paths_iterator Path = Paths.begin();
954 Path != Paths.end(); ++Path) {
955 if (DisplayedPaths.insert(Path->back().SubobjectNumber).second) {
956 // We haven't displayed a path to this particular base
957 // class subobject yet.
958 PathDisplayStr += "\n ";
959 PathDisplayStr += Context.getTypeDeclType(Paths.getOrigin()).getAsString();
960 for (CXXBasePath::const_iterator Element = Path->begin();
961 Element != Path->end(); ++Element)
962 PathDisplayStr += " -> " + Element->Base->getType().getAsString();
963 }
964 }
965
966 return PathDisplayStr;
967}
968
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000969//===----------------------------------------------------------------------===//
970// C++ class member Handling
971//===----------------------------------------------------------------------===//
972
Abramo Bagnarad7340582010-06-05 05:09:32 +0000973/// ActOnAccessSpecifier - Parsed an access specifier followed by a colon.
John McCall48871652010-08-21 09:40:31 +0000974Decl *Sema::ActOnAccessSpecifier(AccessSpecifier Access,
975 SourceLocation ASLoc,
976 SourceLocation ColonLoc) {
Abramo Bagnarad7340582010-06-05 05:09:32 +0000977 assert(Access != AS_none && "Invalid kind for syntactic access specifier!");
John McCall48871652010-08-21 09:40:31 +0000978 AccessSpecDecl *ASDecl = AccessSpecDecl::Create(Context, Access, CurContext,
Abramo Bagnarad7340582010-06-05 05:09:32 +0000979 ASLoc, ColonLoc);
980 CurContext->addHiddenDecl(ASDecl);
John McCall48871652010-08-21 09:40:31 +0000981 return ASDecl;
Abramo Bagnarad7340582010-06-05 05:09:32 +0000982}
983
Anders Carlssonfd835532011-01-20 05:57:14 +0000984/// CheckOverrideControl - Check C++0x override control semantics.
Anders Carlssonc87f8612011-01-20 06:29:02 +0000985void Sema::CheckOverrideControl(const Decl *D) {
Anders Carlssonfd835532011-01-20 05:57:14 +0000986 const CXXMethodDecl *MD = llvm::dyn_cast<CXXMethodDecl>(D);
987 if (!MD || !MD->isVirtual())
988 return;
989
Anders Carlssonfa8e5d32011-01-20 06:33:26 +0000990 if (MD->isDependentContext())
991 return;
992
Anders Carlssonfd835532011-01-20 05:57:14 +0000993 // C++0x [class.virtual]p3:
994 // If a virtual function is marked with the virt-specifier override and does
995 // not override a member function of a base class,
996 // the program is ill-formed.
997 bool HasOverriddenMethods =
998 MD->begin_overridden_methods() != MD->end_overridden_methods();
Anders Carlsson1eb95962011-01-24 16:26:15 +0000999 if (MD->hasAttr<OverrideAttr>() && !HasOverriddenMethods) {
Anders Carlssonc87f8612011-01-20 06:29:02 +00001000 Diag(MD->getLocation(),
Anders Carlssonfd835532011-01-20 05:57:14 +00001001 diag::err_function_marked_override_not_overriding)
1002 << MD->getDeclName();
1003 return;
1004 }
1005}
1006
Anders Carlsson3f610c72011-01-20 16:25:36 +00001007/// CheckIfOverriddenFunctionIsMarkedFinal - Checks whether a virtual member
1008/// function overrides a virtual member function marked 'final', according to
1009/// C++0x [class.virtual]p3.
1010bool Sema::CheckIfOverriddenFunctionIsMarkedFinal(const CXXMethodDecl *New,
1011 const CXXMethodDecl *Old) {
Anders Carlsson1eb95962011-01-24 16:26:15 +00001012 if (!Old->hasAttr<FinalAttr>())
Anders Carlsson19588aa2011-01-23 21:07:30 +00001013 return false;
1014
1015 Diag(New->getLocation(), diag::err_final_function_overridden)
1016 << New->getDeclName();
1017 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
1018 return true;
Anders Carlsson3f610c72011-01-20 16:25:36 +00001019}
1020
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001021/// ActOnCXXMemberDeclarator - This is invoked when a C++ class member
1022/// declarator is parsed. 'AS' is the access specifier, 'BW' specifies the
1023/// bitfield width if there is one and 'InitExpr' specifies the initializer if
Chris Lattnereb4373d2009-04-12 22:37:57 +00001024/// any.
John McCall48871652010-08-21 09:40:31 +00001025Decl *
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001026Sema::ActOnCXXMemberDeclarator(Scope *S, AccessSpecifier AS, Declarator &D,
Douglas Gregor3447e762009-08-20 22:52:58 +00001027 MultiTemplateParamsArg TemplateParameterLists,
Anders Carlssondb36b802011-01-20 03:57:25 +00001028 ExprTy *BW, const VirtSpecifiers &VS,
Alexis Hunt5a7fa252011-05-12 06:15:49 +00001029 ExprTy *InitExpr, bool IsDefinition) {
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001030 const DeclSpec &DS = D.getDeclSpec();
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00001031 DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
1032 DeclarationName Name = NameInfo.getName();
1033 SourceLocation Loc = NameInfo.getLoc();
Douglas Gregor23ab7452010-11-09 03:31:16 +00001034
1035 // For anonymous bitfields, the location should point to the type.
1036 if (Loc.isInvalid())
1037 Loc = D.getSourceRange().getBegin();
1038
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001039 Expr *BitWidth = static_cast<Expr*>(BW);
1040 Expr *Init = static_cast<Expr*>(InitExpr);
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001041
John McCallb1cd7da2010-06-04 08:34:12 +00001042 assert(isa<CXXRecordDecl>(CurContext));
John McCall07e91c02009-08-06 02:15:43 +00001043 assert(!DS.isFriendSpecified());
1044
John McCallb1cd7da2010-06-04 08:34:12 +00001045 bool isFunc = false;
1046 if (D.isFunctionDeclarator())
1047 isFunc = true;
1048 else if (D.getNumTypeObjects() == 0 &&
1049 D.getDeclSpec().getTypeSpecType() == DeclSpec::TST_typename) {
John McCallba7bf592010-08-24 05:47:05 +00001050 QualType TDType = GetTypeFromParser(DS.getRepAsType());
John McCallb1cd7da2010-06-04 08:34:12 +00001051 isFunc = TDType->isFunctionType();
1052 }
1053
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001054 // C++ 9.2p6: A member shall not be declared to have automatic storage
1055 // duration (auto, register) or with the extern storage-class-specifier.
Sebastian Redlccdfaba2008-11-14 23:42:31 +00001056 // C++ 7.1.1p8: The mutable specifier can be applied only to names of class
1057 // data members and cannot be applied to names declared const or static,
1058 // and cannot be applied to reference members.
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001059 switch (DS.getStorageClassSpec()) {
1060 case DeclSpec::SCS_unspecified:
1061 case DeclSpec::SCS_typedef:
1062 case DeclSpec::SCS_static:
1063 // FALL THROUGH.
1064 break;
Sebastian Redlccdfaba2008-11-14 23:42:31 +00001065 case DeclSpec::SCS_mutable:
1066 if (isFunc) {
1067 if (DS.getStorageClassSpecLoc().isValid())
Chris Lattner3b054132008-11-19 05:08:23 +00001068 Diag(DS.getStorageClassSpecLoc(), diag::err_mutable_function);
Sebastian Redlccdfaba2008-11-14 23:42:31 +00001069 else
Chris Lattner3b054132008-11-19 05:08:23 +00001070 Diag(DS.getThreadSpecLoc(), diag::err_mutable_function);
Mike Stump11289f42009-09-09 15:08:12 +00001071
Sebastian Redl8071edb2008-11-17 23:24:37 +00001072 // FIXME: It would be nicer if the keyword was ignored only for this
1073 // declarator. Otherwise we could get follow-up errors.
Sebastian Redlccdfaba2008-11-14 23:42:31 +00001074 D.getMutableDeclSpec().ClearStorageClassSpecs();
Sebastian Redlccdfaba2008-11-14 23:42:31 +00001075 }
1076 break;
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001077 default:
1078 if (DS.getStorageClassSpecLoc().isValid())
1079 Diag(DS.getStorageClassSpecLoc(),
1080 diag::err_storageclass_invalid_for_member);
1081 else
1082 Diag(DS.getThreadSpecLoc(), diag::err_storageclass_invalid_for_member);
1083 D.getMutableDeclSpec().ClearStorageClassSpecs();
1084 }
1085
Sebastian Redlccdfaba2008-11-14 23:42:31 +00001086 bool isInstField = ((DS.getStorageClassSpec() == DeclSpec::SCS_unspecified ||
1087 DS.getStorageClassSpec() == DeclSpec::SCS_mutable) &&
Argyrios Kyrtzidis1207d312008-10-08 22:20:31 +00001088 !isFunc);
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001089
1090 Decl *Member;
Chris Lattner73bf7b42009-03-05 22:45:59 +00001091 if (isInstField) {
Douglas Gregora007d362010-10-13 22:19:53 +00001092 CXXScopeSpec &SS = D.getCXXScopeSpec();
1093
Douglas Gregora007d362010-10-13 22:19:53 +00001094 if (SS.isSet() && !SS.isInvalid()) {
1095 // The user provided a superfluous scope specifier inside a class
1096 // definition:
1097 //
1098 // class X {
1099 // int X::member;
1100 // };
1101 DeclContext *DC = 0;
1102 if ((DC = computeDeclContext(SS, false)) && DC->Equals(CurContext))
1103 Diag(D.getIdentifierLoc(), diag::warn_member_extra_qualification)
1104 << Name << FixItHint::CreateRemoval(SS.getRange());
1105 else
1106 Diag(D.getIdentifierLoc(), diag::err_member_qualification)
1107 << Name << SS.getRange();
1108
1109 SS.clear();
1110 }
1111
Douglas Gregor3447e762009-08-20 22:52:58 +00001112 // FIXME: Check for template parameters!
Douglas Gregorc4356532010-12-16 00:46:58 +00001113 // FIXME: Check that the name is an identifier!
Douglas Gregor4261e4c2009-03-11 20:50:30 +00001114 Member = HandleField(S, cast<CXXRecordDecl>(CurContext), Loc, D, BitWidth,
1115 AS);
Chris Lattner97e277e2009-03-05 23:03:49 +00001116 assert(Member && "HandleField never returns null");
Chris Lattner73bf7b42009-03-05 22:45:59 +00001117 } else {
Alexis Hunt5a7fa252011-05-12 06:15:49 +00001118 Member = HandleDeclarator(S, D, move(TemplateParameterLists), IsDefinition);
Chris Lattner97e277e2009-03-05 23:03:49 +00001119 if (!Member) {
John McCall48871652010-08-21 09:40:31 +00001120 return 0;
Chris Lattner97e277e2009-03-05 23:03:49 +00001121 }
Chris Lattnerd26760a2009-03-05 23:01:03 +00001122
1123 // Non-instance-fields can't have a bitfield.
1124 if (BitWidth) {
1125 if (Member->isInvalidDecl()) {
1126 // don't emit another diagnostic.
Douglas Gregor212cab32009-03-11 20:22:50 +00001127 } else if (isa<VarDecl>(Member)) {
Chris Lattnerd26760a2009-03-05 23:01:03 +00001128 // C++ 9.6p3: A bit-field shall not be a static member.
1129 // "static member 'A' cannot be a bit-field"
1130 Diag(Loc, diag::err_static_not_bitfield)
1131 << Name << BitWidth->getSourceRange();
1132 } else if (isa<TypedefDecl>(Member)) {
1133 // "typedef member 'x' cannot be a bit-field"
1134 Diag(Loc, diag::err_typedef_not_bitfield)
1135 << Name << BitWidth->getSourceRange();
1136 } else {
1137 // A function typedef ("typedef int f(); f a;").
1138 // C++ 9.6p3: A bit-field shall have integral or enumeration type.
1139 Diag(Loc, diag::err_not_integral_type_bitfield)
Mike Stump11289f42009-09-09 15:08:12 +00001140 << Name << cast<ValueDecl>(Member)->getType()
Douglas Gregor1efa4372009-03-11 18:59:21 +00001141 << BitWidth->getSourceRange();
Chris Lattnerd26760a2009-03-05 23:01:03 +00001142 }
Mike Stump11289f42009-09-09 15:08:12 +00001143
Chris Lattnerd26760a2009-03-05 23:01:03 +00001144 BitWidth = 0;
1145 Member->setInvalidDecl();
1146 }
Douglas Gregor4261e4c2009-03-11 20:50:30 +00001147
1148 Member->setAccess(AS);
Mike Stump11289f42009-09-09 15:08:12 +00001149
Douglas Gregor3447e762009-08-20 22:52:58 +00001150 // If we have declared a member function template, set the access of the
1151 // templated declaration as well.
1152 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Member))
1153 FunTmpl->getTemplatedDecl()->setAccess(AS);
Chris Lattner73bf7b42009-03-05 22:45:59 +00001154 }
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001155
Anders Carlsson13a69102011-01-20 04:34:22 +00001156 if (VS.isOverrideSpecified()) {
1157 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Member);
1158 if (!MD || !MD->isVirtual()) {
1159 Diag(Member->getLocStart(),
1160 diag::override_keyword_only_allowed_on_virtual_member_functions)
1161 << "override" << FixItHint::CreateRemoval(VS.getOverrideLoc());
Anders Carlssonfd835532011-01-20 05:57:14 +00001162 } else
Anders Carlsson1eb95962011-01-24 16:26:15 +00001163 MD->addAttr(new (Context) OverrideAttr(VS.getOverrideLoc(), Context));
Anders Carlsson13a69102011-01-20 04:34:22 +00001164 }
1165 if (VS.isFinalSpecified()) {
1166 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Member);
1167 if (!MD || !MD->isVirtual()) {
1168 Diag(Member->getLocStart(),
1169 diag::override_keyword_only_allowed_on_virtual_member_functions)
1170 << "final" << FixItHint::CreateRemoval(VS.getFinalLoc());
Anders Carlssonfd835532011-01-20 05:57:14 +00001171 } else
Anders Carlsson1eb95962011-01-24 16:26:15 +00001172 MD->addAttr(new (Context) FinalAttr(VS.getFinalLoc(), Context));
Anders Carlsson13a69102011-01-20 04:34:22 +00001173 }
Anders Carlssonfd835532011-01-20 05:57:14 +00001174
Douglas Gregorf2f08062011-03-08 17:10:18 +00001175 if (VS.getLastLocation().isValid()) {
1176 // Update the end location of a method that has a virt-specifiers.
1177 if (CXXMethodDecl *MD = dyn_cast_or_null<CXXMethodDecl>(Member))
1178 MD->setRangeEnd(VS.getLastLocation());
1179 }
1180
Anders Carlssonc87f8612011-01-20 06:29:02 +00001181 CheckOverrideControl(Member);
Anders Carlssonfd835532011-01-20 05:57:14 +00001182
Douglas Gregor92751d42008-11-17 22:58:34 +00001183 assert((Name || isInstField) && "No identifier for non-field ?");
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001184
Douglas Gregor0c880302009-03-11 23:00:04 +00001185 if (Init)
Richard Smith30482bc2011-02-20 03:19:35 +00001186 AddInitializerToDecl(Member, Init, false,
1187 DS.getTypeSpecType() == DeclSpec::TST_auto);
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001188
Richard Smithb2bc2e62011-02-21 20:05:19 +00001189 FinalizeDeclaration(Member);
1190
John McCall25849ca2011-02-15 07:12:36 +00001191 if (isInstField)
Douglas Gregor91f84212008-12-11 16:49:14 +00001192 FieldCollector->Add(cast<FieldDecl>(Member));
John McCall48871652010-08-21 09:40:31 +00001193 return Member;
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001194}
1195
Douglas Gregor15e77a22009-12-31 09:10:24 +00001196/// \brief Find the direct and/or virtual base specifiers that
1197/// correspond to the given base type, for use in base initialization
1198/// within a constructor.
1199static bool FindBaseInitializer(Sema &SemaRef,
1200 CXXRecordDecl *ClassDecl,
1201 QualType BaseType,
1202 const CXXBaseSpecifier *&DirectBaseSpec,
1203 const CXXBaseSpecifier *&VirtualBaseSpec) {
1204 // First, check for a direct base class.
1205 DirectBaseSpec = 0;
1206 for (CXXRecordDecl::base_class_const_iterator Base
1207 = ClassDecl->bases_begin();
1208 Base != ClassDecl->bases_end(); ++Base) {
1209 if (SemaRef.Context.hasSameUnqualifiedType(BaseType, Base->getType())) {
1210 // We found a direct base of this type. That's what we're
1211 // initializing.
1212 DirectBaseSpec = &*Base;
1213 break;
1214 }
1215 }
1216
1217 // Check for a virtual base class.
1218 // FIXME: We might be able to short-circuit this if we know in advance that
1219 // there are no virtual bases.
1220 VirtualBaseSpec = 0;
1221 if (!DirectBaseSpec || !DirectBaseSpec->isVirtual()) {
1222 // We haven't found a base yet; search the class hierarchy for a
1223 // virtual base class.
1224 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
1225 /*DetectVirtual=*/false);
1226 if (SemaRef.IsDerivedFrom(SemaRef.Context.getTypeDeclType(ClassDecl),
1227 BaseType, Paths)) {
1228 for (CXXBasePaths::paths_iterator Path = Paths.begin();
1229 Path != Paths.end(); ++Path) {
1230 if (Path->back().Base->isVirtual()) {
1231 VirtualBaseSpec = Path->back().Base;
1232 break;
1233 }
1234 }
1235 }
1236 }
1237
1238 return DirectBaseSpec || VirtualBaseSpec;
1239}
1240
Douglas Gregore8381c02008-11-05 04:29:56 +00001241/// ActOnMemInitializer - Handle a C++ member initializer.
John McCallfaf5fb42010-08-26 23:41:50 +00001242MemInitResult
John McCall48871652010-08-21 09:40:31 +00001243Sema::ActOnMemInitializer(Decl *ConstructorD,
Douglas Gregore8381c02008-11-05 04:29:56 +00001244 Scope *S,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00001245 CXXScopeSpec &SS,
Douglas Gregore8381c02008-11-05 04:29:56 +00001246 IdentifierInfo *MemberOrBase,
John McCallba7bf592010-08-24 05:47:05 +00001247 ParsedType TemplateTypeTy,
Douglas Gregore8381c02008-11-05 04:29:56 +00001248 SourceLocation IdLoc,
1249 SourceLocation LParenLoc,
1250 ExprTy **Args, unsigned NumArgs,
Douglas Gregor44e7df62011-01-04 00:32:56 +00001251 SourceLocation RParenLoc,
1252 SourceLocation EllipsisLoc) {
Douglas Gregor71a57182009-06-22 23:20:33 +00001253 if (!ConstructorD)
1254 return true;
Mike Stump11289f42009-09-09 15:08:12 +00001255
Douglas Gregorc8c277a2009-08-24 11:57:43 +00001256 AdjustDeclIfTemplate(ConstructorD);
Mike Stump11289f42009-09-09 15:08:12 +00001257
1258 CXXConstructorDecl *Constructor
John McCall48871652010-08-21 09:40:31 +00001259 = dyn_cast<CXXConstructorDecl>(ConstructorD);
Douglas Gregore8381c02008-11-05 04:29:56 +00001260 if (!Constructor) {
1261 // The user wrote a constructor initializer on a function that is
1262 // not a C++ constructor. Ignore the error for now, because we may
1263 // have more member initializers coming; we'll diagnose it just
1264 // once in ActOnMemInitializers.
1265 return true;
1266 }
1267
1268 CXXRecordDecl *ClassDecl = Constructor->getParent();
1269
1270 // C++ [class.base.init]p2:
1271 // Names in a mem-initializer-id are looked up in the scope of the
Nick Lewycky9331ed82010-11-20 01:29:55 +00001272 // constructor's class and, if not found in that scope, are looked
1273 // up in the scope containing the constructor's definition.
1274 // [Note: if the constructor's class contains a member with the
1275 // same name as a direct or virtual base class of the class, a
1276 // mem-initializer-id naming the member or base class and composed
1277 // of a single identifier refers to the class member. A
Douglas Gregore8381c02008-11-05 04:29:56 +00001278 // mem-initializer-id for the hidden base class may be specified
1279 // using a qualified name. ]
Fariborz Jahanianc1fc3ec2009-07-01 19:21:19 +00001280 if (!SS.getScopeRep() && !TemplateTypeTy) {
Fariborz Jahanian302bb662009-06-30 23:26:25 +00001281 // Look for a member, first.
1282 FieldDecl *Member = 0;
Mike Stump11289f42009-09-09 15:08:12 +00001283 DeclContext::lookup_result Result
Fariborz Jahanian302bb662009-06-30 23:26:25 +00001284 = ClassDecl->lookup(MemberOrBase);
Francois Pichet783dd6e2010-11-21 06:08:52 +00001285 if (Result.first != Result.second) {
Fariborz Jahanian302bb662009-06-30 23:26:25 +00001286 Member = dyn_cast<FieldDecl>(*Result.first);
Francois Pichet783dd6e2010-11-21 06:08:52 +00001287
Douglas Gregor44e7df62011-01-04 00:32:56 +00001288 if (Member) {
1289 if (EllipsisLoc.isValid())
1290 Diag(EllipsisLoc, diag::err_pack_expansion_member_init)
1291 << MemberOrBase << SourceRange(IdLoc, RParenLoc);
1292
Francois Pichetd583da02010-12-04 09:14:42 +00001293 return BuildMemberInitializer(Member, (Expr**)Args, NumArgs, IdLoc,
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00001294 LParenLoc, RParenLoc);
Douglas Gregor44e7df62011-01-04 00:32:56 +00001295 }
1296
Francois Pichetd583da02010-12-04 09:14:42 +00001297 // Handle anonymous union case.
1298 if (IndirectFieldDecl* IndirectField
Douglas Gregor44e7df62011-01-04 00:32:56 +00001299 = dyn_cast<IndirectFieldDecl>(*Result.first)) {
1300 if (EllipsisLoc.isValid())
1301 Diag(EllipsisLoc, diag::err_pack_expansion_member_init)
1302 << MemberOrBase << SourceRange(IdLoc, RParenLoc);
1303
Francois Pichetd583da02010-12-04 09:14:42 +00001304 return BuildMemberInitializer(IndirectField, (Expr**)Args,
1305 NumArgs, IdLoc,
1306 LParenLoc, RParenLoc);
Douglas Gregor44e7df62011-01-04 00:32:56 +00001307 }
Francois Pichetd583da02010-12-04 09:14:42 +00001308 }
Douglas Gregore8381c02008-11-05 04:29:56 +00001309 }
Douglas Gregore8381c02008-11-05 04:29:56 +00001310 // It didn't name a member, so see if it names a class.
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00001311 QualType BaseType;
John McCallbcd03502009-12-07 02:54:59 +00001312 TypeSourceInfo *TInfo = 0;
John McCallb5a0d312009-12-21 10:41:20 +00001313
1314 if (TemplateTypeTy) {
John McCallbcd03502009-12-07 02:54:59 +00001315 BaseType = GetTypeFromParser(TemplateTypeTy, &TInfo);
John McCallb5a0d312009-12-21 10:41:20 +00001316 } else {
1317 LookupResult R(*this, MemberOrBase, IdLoc, LookupOrdinaryName);
1318 LookupParsedName(R, S, &SS);
1319
1320 TypeDecl *TyD = R.getAsSingle<TypeDecl>();
1321 if (!TyD) {
1322 if (R.isAmbiguous()) return true;
1323
John McCallda6841b2010-04-09 19:01:14 +00001324 // We don't want access-control diagnostics here.
1325 R.suppressDiagnostics();
1326
Douglas Gregora3b624a2010-01-19 06:46:48 +00001327 if (SS.isSet() && isDependentScopeSpecifier(SS)) {
1328 bool NotUnknownSpecialization = false;
1329 DeclContext *DC = computeDeclContext(SS, false);
1330 if (CXXRecordDecl *Record = dyn_cast_or_null<CXXRecordDecl>(DC))
1331 NotUnknownSpecialization = !Record->hasAnyDependentBases();
1332
1333 if (!NotUnknownSpecialization) {
1334 // When the scope specifier can refer to a member of an unknown
1335 // specialization, we take it as a type name.
Douglas Gregor9cbc22b2011-02-28 22:42:13 +00001336 BaseType = CheckTypenameType(ETK_None, SourceLocation(),
1337 SS.getWithLocInContext(Context),
1338 *MemberOrBase, IdLoc);
Douglas Gregor281c4862010-03-07 23:26:22 +00001339 if (BaseType.isNull())
1340 return true;
1341
Douglas Gregora3b624a2010-01-19 06:46:48 +00001342 R.clear();
Douglas Gregorc048c522010-06-29 19:27:42 +00001343 R.setLookupName(MemberOrBase);
Douglas Gregora3b624a2010-01-19 06:46:48 +00001344 }
1345 }
1346
Douglas Gregor15e77a22009-12-31 09:10:24 +00001347 // If no results were found, try to correct typos.
Douglas Gregora3b624a2010-01-19 06:46:48 +00001348 if (R.empty() && BaseType.isNull() &&
Douglas Gregor280e1ee2010-04-14 20:04:41 +00001349 CorrectTypo(R, S, &SS, ClassDecl, 0, CTC_NoKeywords) &&
1350 R.isSingleResult()) {
Douglas Gregor15e77a22009-12-31 09:10:24 +00001351 if (FieldDecl *Member = R.getAsSingle<FieldDecl>()) {
Sebastian Redl50c68252010-08-31 00:36:30 +00001352 if (Member->getDeclContext()->getRedeclContext()->Equals(ClassDecl)) {
Douglas Gregor15e77a22009-12-31 09:10:24 +00001353 // We have found a non-static data member with a similar
1354 // name to what was typed; complain and initialize that
1355 // member.
1356 Diag(R.getNameLoc(), diag::err_mem_init_not_member_or_class_suggest)
1357 << MemberOrBase << true << R.getLookupName()
Douglas Gregora771f462010-03-31 17:46:05 +00001358 << FixItHint::CreateReplacement(R.getNameLoc(),
1359 R.getLookupName().getAsString());
Douglas Gregor6da83622010-01-07 00:17:44 +00001360 Diag(Member->getLocation(), diag::note_previous_decl)
1361 << Member->getDeclName();
Douglas Gregor15e77a22009-12-31 09:10:24 +00001362
1363 return BuildMemberInitializer(Member, (Expr**)Args, NumArgs, IdLoc,
1364 LParenLoc, RParenLoc);
1365 }
1366 } else if (TypeDecl *Type = R.getAsSingle<TypeDecl>()) {
1367 const CXXBaseSpecifier *DirectBaseSpec;
1368 const CXXBaseSpecifier *VirtualBaseSpec;
1369 if (FindBaseInitializer(*this, ClassDecl,
1370 Context.getTypeDeclType(Type),
1371 DirectBaseSpec, VirtualBaseSpec)) {
1372 // We have found a direct or virtual base class with a
1373 // similar name to what was typed; complain and initialize
1374 // that base class.
1375 Diag(R.getNameLoc(), diag::err_mem_init_not_member_or_class_suggest)
1376 << MemberOrBase << false << R.getLookupName()
Douglas Gregora771f462010-03-31 17:46:05 +00001377 << FixItHint::CreateReplacement(R.getNameLoc(),
1378 R.getLookupName().getAsString());
Douglas Gregor43a08572010-01-07 00:26:25 +00001379
1380 const CXXBaseSpecifier *BaseSpec = DirectBaseSpec? DirectBaseSpec
1381 : VirtualBaseSpec;
1382 Diag(BaseSpec->getSourceRange().getBegin(),
1383 diag::note_base_class_specified_here)
1384 << BaseSpec->getType()
1385 << BaseSpec->getSourceRange();
1386
Douglas Gregor15e77a22009-12-31 09:10:24 +00001387 TyD = Type;
1388 }
1389 }
1390 }
1391
Douglas Gregora3b624a2010-01-19 06:46:48 +00001392 if (!TyD && BaseType.isNull()) {
Douglas Gregor15e77a22009-12-31 09:10:24 +00001393 Diag(IdLoc, diag::err_mem_init_not_member_or_class)
1394 << MemberOrBase << SourceRange(IdLoc, RParenLoc);
1395 return true;
1396 }
John McCallb5a0d312009-12-21 10:41:20 +00001397 }
1398
Douglas Gregora3b624a2010-01-19 06:46:48 +00001399 if (BaseType.isNull()) {
1400 BaseType = Context.getTypeDeclType(TyD);
1401 if (SS.isSet()) {
1402 NestedNameSpecifier *Qualifier =
1403 static_cast<NestedNameSpecifier*>(SS.getScopeRep());
John McCallb5a0d312009-12-21 10:41:20 +00001404
Douglas Gregora3b624a2010-01-19 06:46:48 +00001405 // FIXME: preserve source range information
Abramo Bagnara6150c882010-05-11 21:36:43 +00001406 BaseType = Context.getElaboratedType(ETK_None, Qualifier, BaseType);
Douglas Gregora3b624a2010-01-19 06:46:48 +00001407 }
John McCallb5a0d312009-12-21 10:41:20 +00001408 }
1409 }
Mike Stump11289f42009-09-09 15:08:12 +00001410
John McCallbcd03502009-12-07 02:54:59 +00001411 if (!TInfo)
1412 TInfo = Context.getTrivialTypeSourceInfo(BaseType, IdLoc);
Douglas Gregore8381c02008-11-05 04:29:56 +00001413
John McCallbcd03502009-12-07 02:54:59 +00001414 return BuildBaseInitializer(BaseType, TInfo, (Expr **)Args, NumArgs,
Douglas Gregor44e7df62011-01-04 00:32:56 +00001415 LParenLoc, RParenLoc, ClassDecl, EllipsisLoc);
Eli Friedman8e1433b2009-07-29 19:44:27 +00001416}
1417
John McCalle22a04a2009-11-04 23:02:40 +00001418/// Checks an initializer expression for use of uninitialized fields, such as
1419/// containing the field that is being initialized. Returns true if there is an
1420/// uninitialized field was used an updates the SourceLocation parameter; false
1421/// otherwise.
Nick Lewyckya2fb98b2010-06-15 07:32:55 +00001422static bool InitExprContainsUninitializedFields(const Stmt *S,
Francois Pichetd583da02010-12-04 09:14:42 +00001423 const ValueDecl *LhsField,
Nick Lewyckya2fb98b2010-06-15 07:32:55 +00001424 SourceLocation *L) {
Francois Pichetd583da02010-12-04 09:14:42 +00001425 assert(isa<FieldDecl>(LhsField) || isa<IndirectFieldDecl>(LhsField));
1426
Nick Lewyckya2fb98b2010-06-15 07:32:55 +00001427 if (isa<CallExpr>(S)) {
1428 // Do not descend into function calls or constructors, as the use
1429 // of an uninitialized field may be valid. One would have to inspect
1430 // the contents of the function/ctor to determine if it is safe or not.
1431 // i.e. Pass-by-value is never safe, but pass-by-reference and pointers
1432 // may be safe, depending on what the function/ctor does.
1433 return false;
1434 }
1435 if (const MemberExpr *ME = dyn_cast<MemberExpr>(S)) {
1436 const NamedDecl *RhsField = ME->getMemberDecl();
Anders Carlsson0f7e94f2010-10-06 02:43:25 +00001437
1438 if (const VarDecl *VD = dyn_cast<VarDecl>(RhsField)) {
1439 // The member expression points to a static data member.
1440 assert(VD->isStaticDataMember() &&
1441 "Member points to non-static data member!");
Nick Lewycky300524242010-10-06 18:37:39 +00001442 (void)VD;
Anders Carlsson0f7e94f2010-10-06 02:43:25 +00001443 return false;
1444 }
1445
1446 if (isa<EnumConstantDecl>(RhsField)) {
1447 // The member expression points to an enum.
1448 return false;
1449 }
1450
John McCalle22a04a2009-11-04 23:02:40 +00001451 if (RhsField == LhsField) {
1452 // Initializing a field with itself. Throw a warning.
1453 // But wait; there are exceptions!
1454 // Exception #1: The field may not belong to this record.
1455 // e.g. Foo(const Foo& rhs) : A(rhs.A) {}
Nick Lewyckya2fb98b2010-06-15 07:32:55 +00001456 const Expr *base = ME->getBase();
John McCalle22a04a2009-11-04 23:02:40 +00001457 if (base != NULL && !isa<CXXThisExpr>(base->IgnoreParenCasts())) {
1458 // Even though the field matches, it does not belong to this record.
1459 return false;
1460 }
1461 // None of the exceptions triggered; return true to indicate an
1462 // uninitialized field was used.
1463 *L = ME->getMemberLoc();
1464 return true;
1465 }
Peter Collingbournee190dee2011-03-11 19:24:49 +00001466 } else if (isa<UnaryExprOrTypeTraitExpr>(S)) {
Argyrios Kyrtzidis03f0e2b2010-09-21 10:47:20 +00001467 // sizeof/alignof doesn't reference contents, do not warn.
1468 return false;
1469 } else if (const UnaryOperator *UOE = dyn_cast<UnaryOperator>(S)) {
1470 // address-of doesn't reference contents (the pointer may be dereferenced
1471 // in the same expression but it would be rare; and weird).
1472 if (UOE->getOpcode() == UO_AddrOf)
1473 return false;
John McCalle22a04a2009-11-04 23:02:40 +00001474 }
John McCall8322c3a2011-02-13 04:07:26 +00001475 for (Stmt::const_child_range it = S->children(); it; ++it) {
Nick Lewyckya2fb98b2010-06-15 07:32:55 +00001476 if (!*it) {
1477 // An expression such as 'member(arg ?: "")' may trigger this.
John McCalle22a04a2009-11-04 23:02:40 +00001478 continue;
1479 }
Nick Lewyckya2fb98b2010-06-15 07:32:55 +00001480 if (InitExprContainsUninitializedFields(*it, LhsField, L))
1481 return true;
John McCalle22a04a2009-11-04 23:02:40 +00001482 }
Nick Lewyckya2fb98b2010-06-15 07:32:55 +00001483 return false;
John McCalle22a04a2009-11-04 23:02:40 +00001484}
1485
John McCallfaf5fb42010-08-26 23:41:50 +00001486MemInitResult
Chandler Carruthd44c3102010-12-06 09:23:57 +00001487Sema::BuildMemberInitializer(ValueDecl *Member, Expr **Args,
Eli Friedman8e1433b2009-07-29 19:44:27 +00001488 unsigned NumArgs, SourceLocation IdLoc,
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00001489 SourceLocation LParenLoc,
Eli Friedman8e1433b2009-07-29 19:44:27 +00001490 SourceLocation RParenLoc) {
Chandler Carruthd44c3102010-12-06 09:23:57 +00001491 FieldDecl *DirectMember = dyn_cast<FieldDecl>(Member);
1492 IndirectFieldDecl *IndirectMember = dyn_cast<IndirectFieldDecl>(Member);
1493 assert((DirectMember || IndirectMember) &&
Francois Pichetd583da02010-12-04 09:14:42 +00001494 "Member must be a FieldDecl or IndirectFieldDecl");
1495
Douglas Gregor266bb5f2010-11-05 22:21:31 +00001496 if (Member->isInvalidDecl())
1497 return true;
Chandler Carruthd44c3102010-12-06 09:23:57 +00001498
John McCalle22a04a2009-11-04 23:02:40 +00001499 // Diagnose value-uses of fields to initialize themselves, e.g.
1500 // foo(foo)
1501 // where foo is not also a parameter to the constructor.
John McCallc90f6d72009-11-04 23:13:52 +00001502 // TODO: implement -Wuninitialized and fold this into that framework.
John McCalle22a04a2009-11-04 23:02:40 +00001503 for (unsigned i = 0; i < NumArgs; ++i) {
1504 SourceLocation L;
1505 if (InitExprContainsUninitializedFields(Args[i], Member, &L)) {
1506 // FIXME: Return true in the case when other fields are used before being
1507 // uninitialized. For example, let this field be the i'th field. When
1508 // initializing the i'th field, throw a warning if any of the >= i'th
1509 // fields are used, as they are not yet initialized.
1510 // Right now we are only handling the case where the i'th field uses
1511 // itself in its initializer.
1512 Diag(L, diag::warn_field_is_uninit);
1513 }
1514 }
1515
Eli Friedman8e1433b2009-07-29 19:44:27 +00001516 bool HasDependentArg = false;
1517 for (unsigned i = 0; i < NumArgs; i++)
1518 HasDependentArg |= Args[i]->isTypeDependent();
1519
Chandler Carruthd44c3102010-12-06 09:23:57 +00001520 Expr *Init;
Eli Friedman9255adf2010-07-24 21:19:15 +00001521 if (Member->getType()->isDependentType() || HasDependentArg) {
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001522 // Can't check initialization for a member of dependent type or when
1523 // any of the arguments are type-dependent expressions.
Chandler Carruthd44c3102010-12-06 09:23:57 +00001524 Init = new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1525 RParenLoc);
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001526
1527 // Erase any temporaries within this evaluation context; we're not
1528 // going to track them in the AST, since we'll be rebuilding the
1529 // ASTs during template instantiation.
1530 ExprTemporaries.erase(
1531 ExprTemporaries.begin() + ExprEvalContexts.back().NumTemporaries,
1532 ExprTemporaries.end());
Chandler Carruthd44c3102010-12-06 09:23:57 +00001533 } else {
1534 // Initialize the member.
1535 InitializedEntity MemberEntity =
1536 DirectMember ? InitializedEntity::InitializeMember(DirectMember, 0)
1537 : InitializedEntity::InitializeMember(IndirectMember, 0);
1538 InitializationKind Kind =
1539 InitializationKind::CreateDirect(IdLoc, LParenLoc, RParenLoc);
John McCallacf0ee52010-10-08 02:01:28 +00001540
Chandler Carruthd44c3102010-12-06 09:23:57 +00001541 InitializationSequence InitSeq(*this, MemberEntity, Kind, Args, NumArgs);
1542
1543 ExprResult MemberInit =
1544 InitSeq.Perform(*this, MemberEntity, Kind,
1545 MultiExprArg(*this, Args, NumArgs), 0);
1546 if (MemberInit.isInvalid())
1547 return true;
1548
1549 CheckImplicitConversions(MemberInit.get(), LParenLoc);
1550
1551 // C++0x [class.base.init]p7:
1552 // The initialization of each base and member constitutes a
1553 // full-expression.
Douglas Gregora40433a2010-12-07 00:41:46 +00001554 MemberInit = MaybeCreateExprWithCleanups(MemberInit);
Chandler Carruthd44c3102010-12-06 09:23:57 +00001555 if (MemberInit.isInvalid())
1556 return true;
1557
1558 // If we are in a dependent context, template instantiation will
1559 // perform this type-checking again. Just save the arguments that we
1560 // received in a ParenListExpr.
1561 // FIXME: This isn't quite ideal, since our ASTs don't capture all
1562 // of the information that we have about the member
1563 // initializer. However, deconstructing the ASTs is a dicey process,
1564 // and this approach is far more likely to get the corner cases right.
1565 if (CurContext->isDependentContext())
1566 Init = new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1567 RParenLoc);
1568 else
1569 Init = MemberInit.get();
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001570 }
1571
Chandler Carruthd44c3102010-12-06 09:23:57 +00001572 if (DirectMember) {
Alexis Hunt1d792652011-01-08 20:30:50 +00001573 return new (Context) CXXCtorInitializer(Context, DirectMember,
Chandler Carruthd44c3102010-12-06 09:23:57 +00001574 IdLoc, LParenLoc, Init,
1575 RParenLoc);
1576 } else {
Alexis Hunt1d792652011-01-08 20:30:50 +00001577 return new (Context) CXXCtorInitializer(Context, IndirectMember,
Chandler Carruthd44c3102010-12-06 09:23:57 +00001578 IdLoc, LParenLoc, Init,
1579 RParenLoc);
1580 }
Eli Friedman8e1433b2009-07-29 19:44:27 +00001581}
1582
John McCallfaf5fb42010-08-26 23:41:50 +00001583MemInitResult
Alexis Hunt4049b8d2011-01-08 19:20:43 +00001584Sema::BuildDelegatingInitializer(TypeSourceInfo *TInfo,
1585 Expr **Args, unsigned NumArgs,
Alexis Huntc5575cc2011-02-26 19:13:13 +00001586 SourceLocation NameLoc,
Alexis Hunt4049b8d2011-01-08 19:20:43 +00001587 SourceLocation LParenLoc,
1588 SourceLocation RParenLoc,
Alexis Huntc5575cc2011-02-26 19:13:13 +00001589 CXXRecordDecl *ClassDecl) {
Alexis Hunt4049b8d2011-01-08 19:20:43 +00001590 SourceLocation Loc = TInfo->getTypeLoc().getLocalSourceRange().getBegin();
1591 if (!LangOpts.CPlusPlus0x)
1592 return Diag(Loc, diag::err_delegation_0x_only)
1593 << TInfo->getTypeLoc().getLocalSourceRange();
Sebastian Redl9cb4be22011-03-12 13:53:51 +00001594
Alexis Huntc5575cc2011-02-26 19:13:13 +00001595 // Initialize the object.
1596 InitializedEntity DelegationEntity = InitializedEntity::InitializeDelegation(
1597 QualType(ClassDecl->getTypeForDecl(), 0));
1598 InitializationKind Kind =
1599 InitializationKind::CreateDirect(NameLoc, LParenLoc, RParenLoc);
1600
1601 InitializationSequence InitSeq(*this, DelegationEntity, Kind, Args, NumArgs);
1602
1603 ExprResult DelegationInit =
1604 InitSeq.Perform(*this, DelegationEntity, Kind,
1605 MultiExprArg(*this, Args, NumArgs), 0);
1606 if (DelegationInit.isInvalid())
1607 return true;
1608
1609 CXXConstructExpr *ConExpr = cast<CXXConstructExpr>(DelegationInit.get());
Alexis Hunt6118d662011-05-04 05:57:24 +00001610 CXXConstructorDecl *Constructor
1611 = ConExpr->getConstructor();
Alexis Huntc5575cc2011-02-26 19:13:13 +00001612 assert(Constructor && "Delegating constructor with no target?");
1613
1614 CheckImplicitConversions(DelegationInit.get(), LParenLoc);
1615
1616 // C++0x [class.base.init]p7:
1617 // The initialization of each base and member constitutes a
1618 // full-expression.
1619 DelegationInit = MaybeCreateExprWithCleanups(DelegationInit);
1620 if (DelegationInit.isInvalid())
1621 return true;
1622
1623 // If we are in a dependent context, template instantiation will
1624 // perform this type-checking again. Just save the arguments that we
1625 // received in a ParenListExpr.
1626 // FIXME: This isn't quite ideal, since our ASTs don't capture all
1627 // of the information that we have about the base
1628 // initializer. However, deconstructing the ASTs is a dicey process,
1629 // and this approach is far more likely to get the corner cases right.
1630 if (CurContext->isDependentContext()) {
1631 ExprResult Init
1632 = Owned(new (Context) ParenListExpr(Context, LParenLoc, Args,
1633 NumArgs, RParenLoc));
1634 return new (Context) CXXCtorInitializer(Context, Loc, LParenLoc,
1635 Constructor, Init.takeAs<Expr>(),
1636 RParenLoc);
1637 }
1638
1639 return new (Context) CXXCtorInitializer(Context, Loc, LParenLoc, Constructor,
1640 DelegationInit.takeAs<Expr>(),
1641 RParenLoc);
Alexis Hunt4049b8d2011-01-08 19:20:43 +00001642}
1643
1644MemInitResult
John McCallbcd03502009-12-07 02:54:59 +00001645Sema::BuildBaseInitializer(QualType BaseType, TypeSourceInfo *BaseTInfo,
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00001646 Expr **Args, unsigned NumArgs,
1647 SourceLocation LParenLoc, SourceLocation RParenLoc,
Douglas Gregor44e7df62011-01-04 00:32:56 +00001648 CXXRecordDecl *ClassDecl,
1649 SourceLocation EllipsisLoc) {
Eli Friedman8e1433b2009-07-29 19:44:27 +00001650 bool HasDependentArg = false;
1651 for (unsigned i = 0; i < NumArgs; i++)
1652 HasDependentArg |= Args[i]->isTypeDependent();
1653
Douglas Gregor1c69bf02010-06-16 16:03:14 +00001654 SourceLocation BaseLoc
1655 = BaseTInfo->getTypeLoc().getLocalSourceRange().getBegin();
1656
1657 if (!BaseType->isDependentType() && !BaseType->isRecordType())
1658 return Diag(BaseLoc, diag::err_base_init_does_not_name_class)
1659 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
1660
1661 // C++ [class.base.init]p2:
1662 // [...] Unless the mem-initializer-id names a nonstatic data
Nick Lewycky9331ed82010-11-20 01:29:55 +00001663 // member of the constructor's class or a direct or virtual base
Douglas Gregor1c69bf02010-06-16 16:03:14 +00001664 // of that class, the mem-initializer is ill-formed. A
1665 // mem-initializer-list can initialize a base class using any
1666 // name that denotes that base class type.
1667 bool Dependent = BaseType->isDependentType() || HasDependentArg;
1668
Douglas Gregor44e7df62011-01-04 00:32:56 +00001669 if (EllipsisLoc.isValid()) {
1670 // This is a pack expansion.
1671 if (!BaseType->containsUnexpandedParameterPack()) {
1672 Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs)
1673 << SourceRange(BaseLoc, RParenLoc);
1674
1675 EllipsisLoc = SourceLocation();
1676 }
1677 } else {
1678 // Check for any unexpanded parameter packs.
1679 if (DiagnoseUnexpandedParameterPack(BaseLoc, BaseTInfo, UPPC_Initializer))
1680 return true;
1681
1682 for (unsigned I = 0; I != NumArgs; ++I)
1683 if (DiagnoseUnexpandedParameterPack(Args[I]))
1684 return true;
1685 }
1686
Douglas Gregor1c69bf02010-06-16 16:03:14 +00001687 // Check for direct and virtual base classes.
1688 const CXXBaseSpecifier *DirectBaseSpec = 0;
1689 const CXXBaseSpecifier *VirtualBaseSpec = 0;
1690 if (!Dependent) {
Alexis Hunt4049b8d2011-01-08 19:20:43 +00001691 if (Context.hasSameUnqualifiedType(QualType(ClassDecl->getTypeForDecl(),0),
1692 BaseType))
Alexis Huntc5575cc2011-02-26 19:13:13 +00001693 return BuildDelegatingInitializer(BaseTInfo, Args, NumArgs, BaseLoc,
1694 LParenLoc, RParenLoc, ClassDecl);
Alexis Hunt4049b8d2011-01-08 19:20:43 +00001695
Douglas Gregor1c69bf02010-06-16 16:03:14 +00001696 FindBaseInitializer(*this, ClassDecl, BaseType, DirectBaseSpec,
1697 VirtualBaseSpec);
1698
1699 // C++ [base.class.init]p2:
1700 // Unless the mem-initializer-id names a nonstatic data member of the
1701 // constructor's class or a direct or virtual base of that class, the
1702 // mem-initializer is ill-formed.
1703 if (!DirectBaseSpec && !VirtualBaseSpec) {
1704 // If the class has any dependent bases, then it's possible that
1705 // one of those types will resolve to the same type as
1706 // BaseType. Therefore, just treat this as a dependent base
1707 // class initialization. FIXME: Should we try to check the
1708 // initialization anyway? It seems odd.
1709 if (ClassDecl->hasAnyDependentBases())
1710 Dependent = true;
1711 else
1712 return Diag(BaseLoc, diag::err_not_direct_base_or_virtual)
1713 << BaseType << Context.getTypeDeclType(ClassDecl)
1714 << BaseTInfo->getTypeLoc().getLocalSourceRange();
1715 }
1716 }
1717
1718 if (Dependent) {
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001719 // Can't check initialization for a base of dependent type or when
1720 // any of the arguments are type-dependent expressions.
John McCalldadc5752010-08-24 06:29:42 +00001721 ExprResult BaseInit
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001722 = Owned(new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1723 RParenLoc));
Eli Friedman8e1433b2009-07-29 19:44:27 +00001724
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001725 // Erase any temporaries within this evaluation context; we're not
1726 // going to track them in the AST, since we'll be rebuilding the
1727 // ASTs during template instantiation.
1728 ExprTemporaries.erase(
1729 ExprTemporaries.begin() + ExprEvalContexts.back().NumTemporaries,
1730 ExprTemporaries.end());
Mike Stump11289f42009-09-09 15:08:12 +00001731
Alexis Hunt1d792652011-01-08 20:30:50 +00001732 return new (Context) CXXCtorInitializer(Context, BaseTInfo,
Anders Carlsson1c0f8bb2010-04-12 00:51:03 +00001733 /*IsVirtual=*/false,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001734 LParenLoc,
1735 BaseInit.takeAs<Expr>(),
Douglas Gregor44e7df62011-01-04 00:32:56 +00001736 RParenLoc,
1737 EllipsisLoc);
Douglas Gregore8381c02008-11-05 04:29:56 +00001738 }
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001739
1740 // C++ [base.class.init]p2:
1741 // If a mem-initializer-id is ambiguous because it designates both
1742 // a direct non-virtual base class and an inherited virtual base
1743 // class, the mem-initializer is ill-formed.
1744 if (DirectBaseSpec && VirtualBaseSpec)
1745 return Diag(BaseLoc, diag::err_base_init_direct_and_virtual)
Abramo Bagnara1108e7b2010-05-20 10:00:11 +00001746 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001747
1748 CXXBaseSpecifier *BaseSpec
1749 = const_cast<CXXBaseSpecifier *>(DirectBaseSpec);
1750 if (!BaseSpec)
1751 BaseSpec = const_cast<CXXBaseSpecifier *>(VirtualBaseSpec);
1752
1753 // Initialize the base.
1754 InitializedEntity BaseEntity =
Anders Carlsson43c64af2010-04-21 19:52:01 +00001755 InitializedEntity::InitializeBase(Context, BaseSpec, VirtualBaseSpec);
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001756 InitializationKind Kind =
1757 InitializationKind::CreateDirect(BaseLoc, LParenLoc, RParenLoc);
1758
1759 InitializationSequence InitSeq(*this, BaseEntity, Kind, Args, NumArgs);
1760
John McCalldadc5752010-08-24 06:29:42 +00001761 ExprResult BaseInit =
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001762 InitSeq.Perform(*this, BaseEntity, Kind,
John McCall37ad5512010-08-23 06:44:23 +00001763 MultiExprArg(*this, Args, NumArgs), 0);
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001764 if (BaseInit.isInvalid())
1765 return true;
John McCallacf0ee52010-10-08 02:01:28 +00001766
1767 CheckImplicitConversions(BaseInit.get(), LParenLoc);
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001768
1769 // C++0x [class.base.init]p7:
1770 // The initialization of each base and member constitutes a
1771 // full-expression.
Douglas Gregora40433a2010-12-07 00:41:46 +00001772 BaseInit = MaybeCreateExprWithCleanups(BaseInit);
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001773 if (BaseInit.isInvalid())
1774 return true;
1775
1776 // If we are in a dependent context, template instantiation will
1777 // perform this type-checking again. Just save the arguments that we
1778 // received in a ParenListExpr.
1779 // FIXME: This isn't quite ideal, since our ASTs don't capture all
1780 // of the information that we have about the base
1781 // initializer. However, deconstructing the ASTs is a dicey process,
1782 // and this approach is far more likely to get the corner cases right.
1783 if (CurContext->isDependentContext()) {
John McCalldadc5752010-08-24 06:29:42 +00001784 ExprResult Init
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001785 = Owned(new (Context) ParenListExpr(Context, LParenLoc, Args, NumArgs,
1786 RParenLoc));
Alexis Hunt1d792652011-01-08 20:30:50 +00001787 return new (Context) CXXCtorInitializer(Context, BaseTInfo,
Anders Carlsson1c0f8bb2010-04-12 00:51:03 +00001788 BaseSpec->isVirtual(),
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001789 LParenLoc,
1790 Init.takeAs<Expr>(),
Douglas Gregor44e7df62011-01-04 00:32:56 +00001791 RParenLoc,
1792 EllipsisLoc);
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001793 }
1794
Alexis Hunt1d792652011-01-08 20:30:50 +00001795 return new (Context) CXXCtorInitializer(Context, BaseTInfo,
Anders Carlsson1c0f8bb2010-04-12 00:51:03 +00001796 BaseSpec->isVirtual(),
Douglas Gregor7ae2d772010-01-31 09:12:51 +00001797 LParenLoc,
1798 BaseInit.takeAs<Expr>(),
Douglas Gregor44e7df62011-01-04 00:32:56 +00001799 RParenLoc,
1800 EllipsisLoc);
Douglas Gregore8381c02008-11-05 04:29:56 +00001801}
1802
Anders Carlsson1b00e242010-04-23 03:10:23 +00001803/// ImplicitInitializerKind - How an implicit base or member initializer should
1804/// initialize its base or member.
1805enum ImplicitInitializerKind {
1806 IIK_Default,
1807 IIK_Copy,
1808 IIK_Move
1809};
1810
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001811static bool
Anders Carlsson3c1db572010-04-23 02:15:47 +00001812BuildImplicitBaseInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlsson1b00e242010-04-23 03:10:23 +00001813 ImplicitInitializerKind ImplicitInitKind,
Anders Carlsson43c64af2010-04-21 19:52:01 +00001814 CXXBaseSpecifier *BaseSpec,
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001815 bool IsInheritedVirtualBase,
Alexis Hunt1d792652011-01-08 20:30:50 +00001816 CXXCtorInitializer *&CXXBaseInit) {
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001817 InitializedEntity InitEntity
Anders Carlsson43c64af2010-04-21 19:52:01 +00001818 = InitializedEntity::InitializeBase(SemaRef.Context, BaseSpec,
1819 IsInheritedVirtualBase);
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001820
John McCalldadc5752010-08-24 06:29:42 +00001821 ExprResult BaseInit;
Anders Carlsson1b00e242010-04-23 03:10:23 +00001822
1823 switch (ImplicitInitKind) {
1824 case IIK_Default: {
1825 InitializationKind InitKind
1826 = InitializationKind::CreateDefault(Constructor->getLocation());
1827 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, 0, 0);
1828 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind,
John McCallfaf5fb42010-08-26 23:41:50 +00001829 MultiExprArg(SemaRef, 0, 0));
Anders Carlsson1b00e242010-04-23 03:10:23 +00001830 break;
1831 }
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001832
Anders Carlsson1b00e242010-04-23 03:10:23 +00001833 case IIK_Copy: {
1834 ParmVarDecl *Param = Constructor->getParamDecl(0);
1835 QualType ParamType = Param->getType().getNonReferenceType();
1836
1837 Expr *CopyCtorArg =
Douglas Gregorea972d32011-02-28 21:54:11 +00001838 DeclRefExpr::Create(SemaRef.Context, NestedNameSpecifierLoc(), Param,
John McCall7decc9e2010-11-18 06:31:45 +00001839 Constructor->getLocation(), ParamType,
1840 VK_LValue, 0);
Anders Carlsson1b00e242010-04-23 03:10:23 +00001841
Anders Carlssonaf13c7b2010-04-24 22:02:54 +00001842 // Cast to the base class to avoid ambiguities.
Anders Carlsson79111502010-05-01 16:39:01 +00001843 QualType ArgTy =
1844 SemaRef.Context.getQualifiedType(BaseSpec->getType().getUnqualifiedType(),
1845 ParamType.getQualifiers());
John McCallcf142162010-08-07 06:22:56 +00001846
1847 CXXCastPath BasePath;
1848 BasePath.push_back(BaseSpec);
John Wiegley01296292011-04-08 18:41:53 +00001849 CopyCtorArg = SemaRef.ImpCastExprToType(CopyCtorArg, ArgTy,
1850 CK_UncheckedDerivedToBase,
1851 VK_LValue, &BasePath).take();
Anders Carlssonaf13c7b2010-04-24 22:02:54 +00001852
Anders Carlsson1b00e242010-04-23 03:10:23 +00001853 InitializationKind InitKind
1854 = InitializationKind::CreateDirect(Constructor->getLocation(),
1855 SourceLocation(), SourceLocation());
1856 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind,
1857 &CopyCtorArg, 1);
1858 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind,
John McCallfaf5fb42010-08-26 23:41:50 +00001859 MultiExprArg(&CopyCtorArg, 1));
Anders Carlsson1b00e242010-04-23 03:10:23 +00001860 break;
1861 }
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001862
Anders Carlsson1b00e242010-04-23 03:10:23 +00001863 case IIK_Move:
1864 assert(false && "Unhandled initializer kind!");
1865 }
John McCallb268a282010-08-23 23:25:46 +00001866
Douglas Gregora40433a2010-12-07 00:41:46 +00001867 BaseInit = SemaRef.MaybeCreateExprWithCleanups(BaseInit);
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001868 if (BaseInit.isInvalid())
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001869 return true;
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001870
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001871 CXXBaseInit =
Alexis Hunt1d792652011-01-08 20:30:50 +00001872 new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001873 SemaRef.Context.getTrivialTypeSourceInfo(BaseSpec->getType(),
1874 SourceLocation()),
1875 BaseSpec->isVirtual(),
1876 SourceLocation(),
1877 BaseInit.takeAs<Expr>(),
Douglas Gregor44e7df62011-01-04 00:32:56 +00001878 SourceLocation(),
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001879 SourceLocation());
1880
Anders Carlsson6bd91c32010-04-23 02:00:02 +00001881 return false;
Anders Carlssoncedc0a42010-04-20 23:11:20 +00001882}
1883
Anders Carlsson3c1db572010-04-23 02:15:47 +00001884static bool
1885BuildImplicitMemberInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlsson1b00e242010-04-23 03:10:23 +00001886 ImplicitInitializerKind ImplicitInitKind,
Anders Carlsson3c1db572010-04-23 02:15:47 +00001887 FieldDecl *Field,
Alexis Hunt1d792652011-01-08 20:30:50 +00001888 CXXCtorInitializer *&CXXMemberInit) {
Douglas Gregor3f4f03a2010-05-20 22:12:02 +00001889 if (Field->isInvalidDecl())
1890 return true;
1891
Chandler Carruth9c9286b2010-06-29 23:50:44 +00001892 SourceLocation Loc = Constructor->getLocation();
1893
Anders Carlsson423f5d82010-04-23 16:04:08 +00001894 if (ImplicitInitKind == IIK_Copy) {
1895 ParmVarDecl *Param = Constructor->getParamDecl(0);
1896 QualType ParamType = Param->getType().getNonReferenceType();
1897
1898 Expr *MemberExprBase =
Douglas Gregorea972d32011-02-28 21:54:11 +00001899 DeclRefExpr::Create(SemaRef.Context, NestedNameSpecifierLoc(), Param,
John McCall7decc9e2010-11-18 06:31:45 +00001900 Loc, ParamType, VK_LValue, 0);
Douglas Gregor94f9a482010-05-05 05:51:00 +00001901
1902 // Build a reference to this field within the parameter.
1903 CXXScopeSpec SS;
1904 LookupResult MemberLookup(SemaRef, Field->getDeclName(), Loc,
1905 Sema::LookupMemberName);
1906 MemberLookup.addDecl(Field, AS_public);
1907 MemberLookup.resolveKind();
John McCalldadc5752010-08-24 06:29:42 +00001908 ExprResult CopyCtorArg
John McCallb268a282010-08-23 23:25:46 +00001909 = SemaRef.BuildMemberReferenceExpr(MemberExprBase,
Douglas Gregor94f9a482010-05-05 05:51:00 +00001910 ParamType, Loc,
1911 /*IsArrow=*/false,
1912 SS,
1913 /*FirstQualifierInScope=*/0,
1914 MemberLookup,
1915 /*TemplateArgs=*/0);
1916 if (CopyCtorArg.isInvalid())
Anders Carlsson423f5d82010-04-23 16:04:08 +00001917 return true;
1918
Douglas Gregor94f9a482010-05-05 05:51:00 +00001919 // When the field we are copying is an array, create index variables for
1920 // each dimension of the array. We use these index variables to subscript
1921 // the source array, and other clients (e.g., CodeGen) will perform the
1922 // necessary iteration with these index variables.
1923 llvm::SmallVector<VarDecl *, 4> IndexVariables;
1924 QualType BaseType = Field->getType();
1925 QualType SizeType = SemaRef.Context.getSizeType();
1926 while (const ConstantArrayType *Array
1927 = SemaRef.Context.getAsConstantArrayType(BaseType)) {
1928 // Create the iteration variable for this array index.
1929 IdentifierInfo *IterationVarName = 0;
1930 {
1931 llvm::SmallString<8> Str;
1932 llvm::raw_svector_ostream OS(Str);
1933 OS << "__i" << IndexVariables.size();
1934 IterationVarName = &SemaRef.Context.Idents.get(OS.str());
1935 }
1936 VarDecl *IterationVar
Abramo Bagnaradff19302011-03-08 08:55:46 +00001937 = VarDecl::Create(SemaRef.Context, SemaRef.CurContext, Loc, Loc,
Douglas Gregor94f9a482010-05-05 05:51:00 +00001938 IterationVarName, SizeType,
1939 SemaRef.Context.getTrivialTypeSourceInfo(SizeType, Loc),
John McCall8e7d6562010-08-26 03:08:43 +00001940 SC_None, SC_None);
Douglas Gregor94f9a482010-05-05 05:51:00 +00001941 IndexVariables.push_back(IterationVar);
1942
1943 // Create a reference to the iteration variable.
John McCalldadc5752010-08-24 06:29:42 +00001944 ExprResult IterationVarRef
John McCall7decc9e2010-11-18 06:31:45 +00001945 = SemaRef.BuildDeclRefExpr(IterationVar, SizeType, VK_RValue, Loc);
Douglas Gregor94f9a482010-05-05 05:51:00 +00001946 assert(!IterationVarRef.isInvalid() &&
1947 "Reference to invented variable cannot fail!");
1948
1949 // Subscript the array with this iteration variable.
John McCallb268a282010-08-23 23:25:46 +00001950 CopyCtorArg = SemaRef.CreateBuiltinArraySubscriptExpr(CopyCtorArg.take(),
Douglas Gregor94f9a482010-05-05 05:51:00 +00001951 Loc,
John McCallb268a282010-08-23 23:25:46 +00001952 IterationVarRef.take(),
Douglas Gregor94f9a482010-05-05 05:51:00 +00001953 Loc);
1954 if (CopyCtorArg.isInvalid())
1955 return true;
1956
1957 BaseType = Array->getElementType();
1958 }
1959
1960 // Construct the entity that we will be initializing. For an array, this
1961 // will be first element in the array, which may require several levels
1962 // of array-subscript entities.
1963 llvm::SmallVector<InitializedEntity, 4> Entities;
1964 Entities.reserve(1 + IndexVariables.size());
1965 Entities.push_back(InitializedEntity::InitializeMember(Field));
1966 for (unsigned I = 0, N = IndexVariables.size(); I != N; ++I)
1967 Entities.push_back(InitializedEntity::InitializeElement(SemaRef.Context,
1968 0,
1969 Entities.back()));
1970
1971 // Direct-initialize to use the copy constructor.
1972 InitializationKind InitKind =
1973 InitializationKind::CreateDirect(Loc, SourceLocation(), SourceLocation());
1974
1975 Expr *CopyCtorArgE = CopyCtorArg.takeAs<Expr>();
1976 InitializationSequence InitSeq(SemaRef, Entities.back(), InitKind,
1977 &CopyCtorArgE, 1);
1978
John McCalldadc5752010-08-24 06:29:42 +00001979 ExprResult MemberInit
Douglas Gregor94f9a482010-05-05 05:51:00 +00001980 = InitSeq.Perform(SemaRef, Entities.back(), InitKind,
John McCallfaf5fb42010-08-26 23:41:50 +00001981 MultiExprArg(&CopyCtorArgE, 1));
Douglas Gregora40433a2010-12-07 00:41:46 +00001982 MemberInit = SemaRef.MaybeCreateExprWithCleanups(MemberInit);
Douglas Gregor94f9a482010-05-05 05:51:00 +00001983 if (MemberInit.isInvalid())
1984 return true;
1985
1986 CXXMemberInit
Alexis Hunt1d792652011-01-08 20:30:50 +00001987 = CXXCtorInitializer::Create(SemaRef.Context, Field, Loc, Loc,
Douglas Gregor94f9a482010-05-05 05:51:00 +00001988 MemberInit.takeAs<Expr>(), Loc,
1989 IndexVariables.data(),
1990 IndexVariables.size());
Anders Carlsson1b00e242010-04-23 03:10:23 +00001991 return false;
1992 }
1993
Anders Carlsson423f5d82010-04-23 16:04:08 +00001994 assert(ImplicitInitKind == IIK_Default && "Unhandled implicit init kind!");
1995
Anders Carlsson3c1db572010-04-23 02:15:47 +00001996 QualType FieldBaseElementType =
1997 SemaRef.Context.getBaseElementType(Field->getType());
1998
Anders Carlsson3c1db572010-04-23 02:15:47 +00001999 if (FieldBaseElementType->isRecordType()) {
2000 InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field);
Anders Carlsson423f5d82010-04-23 16:04:08 +00002001 InitializationKind InitKind =
Chandler Carruth9c9286b2010-06-29 23:50:44 +00002002 InitializationKind::CreateDefault(Loc);
Anders Carlsson3c1db572010-04-23 02:15:47 +00002003
2004 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, 0, 0);
John McCalldadc5752010-08-24 06:29:42 +00002005 ExprResult MemberInit =
John McCallfaf5fb42010-08-26 23:41:50 +00002006 InitSeq.Perform(SemaRef, InitEntity, InitKind, MultiExprArg());
John McCallb268a282010-08-23 23:25:46 +00002007
Douglas Gregora40433a2010-12-07 00:41:46 +00002008 MemberInit = SemaRef.MaybeCreateExprWithCleanups(MemberInit);
Anders Carlsson3c1db572010-04-23 02:15:47 +00002009 if (MemberInit.isInvalid())
2010 return true;
2011
2012 CXXMemberInit =
Alexis Hunt1d792652011-01-08 20:30:50 +00002013 new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
Chandler Carruth9c9286b2010-06-29 23:50:44 +00002014 Field, Loc, Loc,
John McCallb268a282010-08-23 23:25:46 +00002015 MemberInit.get(),
Chandler Carruth9c9286b2010-06-29 23:50:44 +00002016 Loc);
Anders Carlsson3c1db572010-04-23 02:15:47 +00002017 return false;
2018 }
Anders Carlssondca6be02010-04-23 03:07:47 +00002019
Alexis Hunt8b455182011-05-17 00:19:05 +00002020 if (!Field->getParent()->isUnion()) {
2021 if (FieldBaseElementType->isReferenceType()) {
2022 SemaRef.Diag(Constructor->getLocation(),
2023 diag::err_uninitialized_member_in_ctor)
2024 << (int)Constructor->isImplicit()
2025 << SemaRef.Context.getTagDeclType(Constructor->getParent())
2026 << 0 << Field->getDeclName();
2027 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
2028 return true;
2029 }
Anders Carlssondca6be02010-04-23 03:07:47 +00002030
Alexis Hunt8b455182011-05-17 00:19:05 +00002031 if (FieldBaseElementType.isConstQualified()) {
2032 SemaRef.Diag(Constructor->getLocation(),
2033 diag::err_uninitialized_member_in_ctor)
2034 << (int)Constructor->isImplicit()
2035 << SemaRef.Context.getTagDeclType(Constructor->getParent())
2036 << 1 << Field->getDeclName();
2037 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
2038 return true;
2039 }
Anders Carlssondca6be02010-04-23 03:07:47 +00002040 }
Anders Carlsson3c1db572010-04-23 02:15:47 +00002041
2042 // Nothing to initialize.
2043 CXXMemberInit = 0;
2044 return false;
2045}
John McCallbc83b3f2010-05-20 23:23:51 +00002046
2047namespace {
2048struct BaseAndFieldInfo {
2049 Sema &S;
2050 CXXConstructorDecl *Ctor;
2051 bool AnyErrorsInInits;
2052 ImplicitInitializerKind IIK;
Alexis Hunt1d792652011-01-08 20:30:50 +00002053 llvm::DenseMap<const void *, CXXCtorInitializer*> AllBaseFields;
2054 llvm::SmallVector<CXXCtorInitializer*, 8> AllToInit;
John McCallbc83b3f2010-05-20 23:23:51 +00002055
2056 BaseAndFieldInfo(Sema &S, CXXConstructorDecl *Ctor, bool ErrorsInInits)
2057 : S(S), Ctor(Ctor), AnyErrorsInInits(ErrorsInInits) {
2058 // FIXME: Handle implicit move constructors.
2059 if (Ctor->isImplicit() && Ctor->isCopyConstructor())
2060 IIK = IIK_Copy;
2061 else
2062 IIK = IIK_Default;
2063 }
2064};
2065}
2066
2067static bool CollectFieldInitializer(BaseAndFieldInfo &Info,
2068 FieldDecl *Top, FieldDecl *Field) {
2069
Chandler Carruth139e9622010-06-30 02:59:29 +00002070 // Overwhelmingly common case: we have a direct initializer for this field.
Alexis Hunt1d792652011-01-08 20:30:50 +00002071 if (CXXCtorInitializer *Init = Info.AllBaseFields.lookup(Field)) {
Francois Pichetd583da02010-12-04 09:14:42 +00002072 Info.AllToInit.push_back(Init);
John McCallbc83b3f2010-05-20 23:23:51 +00002073 return false;
2074 }
2075
2076 if (Info.IIK == IIK_Default && Field->isAnonymousStructOrUnion()) {
2077 const RecordType *FieldClassType = Field->getType()->getAs<RecordType>();
2078 assert(FieldClassType && "anonymous struct/union without record type");
John McCallbc83b3f2010-05-20 23:23:51 +00002079 CXXRecordDecl *FieldClassDecl
2080 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Chandler Carruth139e9622010-06-30 02:59:29 +00002081
2082 // Even though union members never have non-trivial default
2083 // constructions in C++03, we still build member initializers for aggregate
2084 // record types which can be union members, and C++0x allows non-trivial
2085 // default constructors for union members, so we ensure that only one
2086 // member is initialized for these.
2087 if (FieldClassDecl->isUnion()) {
2088 // First check for an explicit initializer for one field.
2089 for (RecordDecl::field_iterator FA = FieldClassDecl->field_begin(),
2090 EA = FieldClassDecl->field_end(); FA != EA; FA++) {
Alexis Hunt1d792652011-01-08 20:30:50 +00002091 if (CXXCtorInitializer *Init = Info.AllBaseFields.lookup(*FA)) {
Francois Pichetd583da02010-12-04 09:14:42 +00002092 Info.AllToInit.push_back(Init);
Chandler Carruth139e9622010-06-30 02:59:29 +00002093
2094 // Once we've initialized a field of an anonymous union, the union
2095 // field in the class is also initialized, so exit immediately.
2096 return false;
Argyrios Kyrtzidisa3ae3eb2010-08-16 17:27:13 +00002097 } else if ((*FA)->isAnonymousStructOrUnion()) {
2098 if (CollectFieldInitializer(Info, Top, *FA))
2099 return true;
Chandler Carruth139e9622010-06-30 02:59:29 +00002100 }
2101 }
2102
2103 // Fallthrough and construct a default initializer for the union as
2104 // a whole, which can call its default constructor if such a thing exists
2105 // (C++0x perhaps). FIXME: It's not clear that this is the correct
2106 // behavior going forward with C++0x, when anonymous unions there are
2107 // finalized, we should revisit this.
2108 } else {
2109 // For structs, we simply descend through to initialize all members where
2110 // necessary.
2111 for (RecordDecl::field_iterator FA = FieldClassDecl->field_begin(),
2112 EA = FieldClassDecl->field_end(); FA != EA; FA++) {
2113 if (CollectFieldInitializer(Info, Top, *FA))
2114 return true;
2115 }
2116 }
John McCallbc83b3f2010-05-20 23:23:51 +00002117 }
2118
2119 // Don't try to build an implicit initializer if there were semantic
2120 // errors in any of the initializers (and therefore we might be
2121 // missing some that the user actually wrote).
2122 if (Info.AnyErrorsInInits)
2123 return false;
2124
Alexis Hunt1d792652011-01-08 20:30:50 +00002125 CXXCtorInitializer *Init = 0;
John McCallbc83b3f2010-05-20 23:23:51 +00002126 if (BuildImplicitMemberInitializer(Info.S, Info.Ctor, Info.IIK, Field, Init))
2127 return true;
John McCallbc83b3f2010-05-20 23:23:51 +00002128
Francois Pichetd583da02010-12-04 09:14:42 +00002129 if (Init)
2130 Info.AllToInit.push_back(Init);
2131
John McCallbc83b3f2010-05-20 23:23:51 +00002132 return false;
2133}
Alexis Hunt61bc1732011-05-01 07:04:31 +00002134
2135bool
2136Sema::SetDelegatingInitializer(CXXConstructorDecl *Constructor,
2137 CXXCtorInitializer *Initializer) {
Alexis Hunt6118d662011-05-04 05:57:24 +00002138 assert(Initializer->isDelegatingInitializer());
Alexis Hunt5583d562011-05-03 20:43:02 +00002139 Constructor->setNumCtorInitializers(1);
2140 CXXCtorInitializer **initializer =
2141 new (Context) CXXCtorInitializer*[1];
2142 memcpy(initializer, &Initializer, sizeof (CXXCtorInitializer*));
2143 Constructor->setCtorInitializers(initializer);
2144
Alexis Hunt9d47faf2011-05-03 23:05:34 +00002145 if (CXXDestructorDecl *Dtor = LookupDestructor(Constructor->getParent())) {
2146 MarkDeclarationReferenced(Initializer->getSourceLocation(), Dtor);
2147 DiagnoseUseOfDecl(Dtor, Initializer->getSourceLocation());
2148 }
2149
Alexis Hunte2622992011-05-05 00:05:47 +00002150 DelegatingCtorDecls.push_back(Constructor);
Alexis Hunt6118d662011-05-04 05:57:24 +00002151
Alexis Hunt61bc1732011-05-01 07:04:31 +00002152 return false;
2153}
Anders Carlsson3c1db572010-04-23 02:15:47 +00002154
Eli Friedman9cf6b592009-11-09 19:20:36 +00002155bool
Alexis Hunt1d792652011-01-08 20:30:50 +00002156Sema::SetCtorInitializers(CXXConstructorDecl *Constructor,
2157 CXXCtorInitializer **Initializers,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00002158 unsigned NumInitializers,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00002159 bool AnyErrors) {
John McCallbb7b6582010-04-10 07:37:23 +00002160 if (Constructor->getDeclContext()->isDependentContext()) {
Anders Carlssondb0a9652010-04-02 06:26:44 +00002161 // Just store the initializers as written, they will be checked during
2162 // instantiation.
2163 if (NumInitializers > 0) {
Alexis Hunt1d792652011-01-08 20:30:50 +00002164 Constructor->setNumCtorInitializers(NumInitializers);
2165 CXXCtorInitializer **baseOrMemberInitializers =
2166 new (Context) CXXCtorInitializer*[NumInitializers];
Anders Carlssondb0a9652010-04-02 06:26:44 +00002167 memcpy(baseOrMemberInitializers, Initializers,
Alexis Hunt1d792652011-01-08 20:30:50 +00002168 NumInitializers * sizeof(CXXCtorInitializer*));
2169 Constructor->setCtorInitializers(baseOrMemberInitializers);
Anders Carlssondb0a9652010-04-02 06:26:44 +00002170 }
2171
2172 return false;
2173 }
2174
John McCallbc83b3f2010-05-20 23:23:51 +00002175 BaseAndFieldInfo Info(*this, Constructor, AnyErrors);
Anders Carlsson1b00e242010-04-23 03:10:23 +00002176
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00002177 // We need to build the initializer AST according to order of construction
2178 // and not what user specified in the Initializers list.
Anders Carlsson7b3f2782010-04-02 05:42:15 +00002179 CXXRecordDecl *ClassDecl = Constructor->getParent()->getDefinition();
Douglas Gregorc14922f2010-03-26 22:43:07 +00002180 if (!ClassDecl)
2181 return true;
2182
Eli Friedman9cf6b592009-11-09 19:20:36 +00002183 bool HadError = false;
Mike Stump11289f42009-09-09 15:08:12 +00002184
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00002185 for (unsigned i = 0; i < NumInitializers; i++) {
Alexis Hunt1d792652011-01-08 20:30:50 +00002186 CXXCtorInitializer *Member = Initializers[i];
Anders Carlssondb0a9652010-04-02 06:26:44 +00002187
2188 if (Member->isBaseInitializer())
John McCallbc83b3f2010-05-20 23:23:51 +00002189 Info.AllBaseFields[Member->getBaseClass()->getAs<RecordType>()] = Member;
Anders Carlssondb0a9652010-04-02 06:26:44 +00002190 else
Francois Pichetd583da02010-12-04 09:14:42 +00002191 Info.AllBaseFields[Member->getAnyMember()] = Member;
Anders Carlssondb0a9652010-04-02 06:26:44 +00002192 }
2193
Anders Carlsson43c64af2010-04-21 19:52:01 +00002194 // Keep track of the direct virtual bases.
2195 llvm::SmallPtrSet<CXXBaseSpecifier *, 16> DirectVBases;
2196 for (CXXRecordDecl::base_class_iterator I = ClassDecl->bases_begin(),
2197 E = ClassDecl->bases_end(); I != E; ++I) {
2198 if (I->isVirtual())
2199 DirectVBases.insert(I);
2200 }
2201
Anders Carlssondb0a9652010-04-02 06:26:44 +00002202 // Push virtual bases before others.
2203 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
2204 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
2205
Alexis Hunt1d792652011-01-08 20:30:50 +00002206 if (CXXCtorInitializer *Value
John McCallbc83b3f2010-05-20 23:23:51 +00002207 = Info.AllBaseFields.lookup(VBase->getType()->getAs<RecordType>())) {
2208 Info.AllToInit.push_back(Value);
Anders Carlssondb0a9652010-04-02 06:26:44 +00002209 } else if (!AnyErrors) {
Anders Carlsson43c64af2010-04-21 19:52:01 +00002210 bool IsInheritedVirtualBase = !DirectVBases.count(VBase);
Alexis Hunt1d792652011-01-08 20:30:50 +00002211 CXXCtorInitializer *CXXBaseInit;
John McCallbc83b3f2010-05-20 23:23:51 +00002212 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Anders Carlsson1b00e242010-04-23 03:10:23 +00002213 VBase, IsInheritedVirtualBase,
2214 CXXBaseInit)) {
Anders Carlssondb0a9652010-04-02 06:26:44 +00002215 HadError = true;
2216 continue;
2217 }
Anders Carlssoncedc0a42010-04-20 23:11:20 +00002218
John McCallbc83b3f2010-05-20 23:23:51 +00002219 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00002220 }
2221 }
Mike Stump11289f42009-09-09 15:08:12 +00002222
John McCallbc83b3f2010-05-20 23:23:51 +00002223 // Non-virtual bases.
Anders Carlssondb0a9652010-04-02 06:26:44 +00002224 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
2225 E = ClassDecl->bases_end(); Base != E; ++Base) {
2226 // Virtuals are in the virtual base list and already constructed.
2227 if (Base->isVirtual())
2228 continue;
Mike Stump11289f42009-09-09 15:08:12 +00002229
Alexis Hunt1d792652011-01-08 20:30:50 +00002230 if (CXXCtorInitializer *Value
John McCallbc83b3f2010-05-20 23:23:51 +00002231 = Info.AllBaseFields.lookup(Base->getType()->getAs<RecordType>())) {
2232 Info.AllToInit.push_back(Value);
Anders Carlssondb0a9652010-04-02 06:26:44 +00002233 } else if (!AnyErrors) {
Alexis Hunt1d792652011-01-08 20:30:50 +00002234 CXXCtorInitializer *CXXBaseInit;
John McCallbc83b3f2010-05-20 23:23:51 +00002235 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Anders Carlsson1b00e242010-04-23 03:10:23 +00002236 Base, /*IsInheritedVirtualBase=*/false,
Anders Carlsson6bd91c32010-04-23 02:00:02 +00002237 CXXBaseInit)) {
Anders Carlssondb0a9652010-04-02 06:26:44 +00002238 HadError = true;
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00002239 continue;
Anders Carlssondb0a9652010-04-02 06:26:44 +00002240 }
Fariborz Jahanian59a1cd42009-09-03 21:32:41 +00002241
John McCallbc83b3f2010-05-20 23:23:51 +00002242 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00002243 }
2244 }
Mike Stump11289f42009-09-09 15:08:12 +00002245
John McCallbc83b3f2010-05-20 23:23:51 +00002246 // Fields.
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00002247 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
Fariborz Jahanian1138ba62010-05-26 20:19:07 +00002248 E = ClassDecl->field_end(); Field != E; ++Field) {
2249 if ((*Field)->getType()->isIncompleteArrayType()) {
2250 assert(ClassDecl->hasFlexibleArrayMember() &&
2251 "Incomplete array type is not valid");
2252 continue;
2253 }
John McCallbc83b3f2010-05-20 23:23:51 +00002254 if (CollectFieldInitializer(Info, *Field, *Field))
Anders Carlsson3c1db572010-04-23 02:15:47 +00002255 HadError = true;
Fariborz Jahanian1138ba62010-05-26 20:19:07 +00002256 }
Mike Stump11289f42009-09-09 15:08:12 +00002257
John McCallbc83b3f2010-05-20 23:23:51 +00002258 NumInitializers = Info.AllToInit.size();
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00002259 if (NumInitializers > 0) {
Alexis Hunt1d792652011-01-08 20:30:50 +00002260 Constructor->setNumCtorInitializers(NumInitializers);
2261 CXXCtorInitializer **baseOrMemberInitializers =
2262 new (Context) CXXCtorInitializer*[NumInitializers];
John McCallbc83b3f2010-05-20 23:23:51 +00002263 memcpy(baseOrMemberInitializers, Info.AllToInit.data(),
Alexis Hunt1d792652011-01-08 20:30:50 +00002264 NumInitializers * sizeof(CXXCtorInitializer*));
2265 Constructor->setCtorInitializers(baseOrMemberInitializers);
Rafael Espindola13327bb2010-03-13 18:12:56 +00002266
John McCalla6309952010-03-16 21:39:52 +00002267 // Constructors implicitly reference the base and member
2268 // destructors.
2269 MarkBaseAndMemberDestructorsReferenced(Constructor->getLocation(),
2270 Constructor->getParent());
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00002271 }
Eli Friedman9cf6b592009-11-09 19:20:36 +00002272
2273 return HadError;
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00002274}
2275
Eli Friedman952c15d2009-07-21 19:28:10 +00002276static void *GetKeyForTopLevelField(FieldDecl *Field) {
2277 // For anonymous unions, use the class declaration as the key.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002278 if (const RecordType *RT = Field->getType()->getAs<RecordType>()) {
Eli Friedman952c15d2009-07-21 19:28:10 +00002279 if (RT->getDecl()->isAnonymousStructOrUnion())
2280 return static_cast<void *>(RT->getDecl());
2281 }
2282 return static_cast<void *>(Field);
2283}
2284
Anders Carlsson7b3f2782010-04-02 05:42:15 +00002285static void *GetKeyForBase(ASTContext &Context, QualType BaseType) {
John McCall424cec92011-01-19 06:33:43 +00002286 return const_cast<Type*>(Context.getCanonicalType(BaseType).getTypePtr());
Anders Carlssonbcec05c2009-09-01 06:22:14 +00002287}
2288
Anders Carlsson7b3f2782010-04-02 05:42:15 +00002289static void *GetKeyForMember(ASTContext &Context,
Alexis Hunt1d792652011-01-08 20:30:50 +00002290 CXXCtorInitializer *Member) {
Francois Pichetd583da02010-12-04 09:14:42 +00002291 if (!Member->isAnyMemberInitializer())
Anders Carlsson7b3f2782010-04-02 05:42:15 +00002292 return GetKeyForBase(Context, QualType(Member->getBaseClass(), 0));
Anders Carlssona942dcd2010-03-30 15:39:27 +00002293
Eli Friedman952c15d2009-07-21 19:28:10 +00002294 // For fields injected into the class via declaration of an anonymous union,
2295 // use its anonymous union class declaration as the unique key.
Francois Pichetd583da02010-12-04 09:14:42 +00002296 FieldDecl *Field = Member->getAnyMember();
2297
John McCall23eebd92010-04-10 09:28:51 +00002298 // If the field is a member of an anonymous struct or union, our key
2299 // is the anonymous record decl that's a direct child of the class.
Anders Carlsson83ac3122010-03-30 16:19:37 +00002300 RecordDecl *RD = Field->getParent();
John McCall23eebd92010-04-10 09:28:51 +00002301 if (RD->isAnonymousStructOrUnion()) {
2302 while (true) {
2303 RecordDecl *Parent = cast<RecordDecl>(RD->getDeclContext());
2304 if (Parent->isAnonymousStructOrUnion())
2305 RD = Parent;
2306 else
2307 break;
2308 }
2309
Anders Carlsson83ac3122010-03-30 16:19:37 +00002310 return static_cast<void *>(RD);
John McCall23eebd92010-04-10 09:28:51 +00002311 }
Mike Stump11289f42009-09-09 15:08:12 +00002312
Anders Carlssona942dcd2010-03-30 15:39:27 +00002313 return static_cast<void *>(Field);
Eli Friedman952c15d2009-07-21 19:28:10 +00002314}
2315
Anders Carlssone857b292010-04-02 03:37:03 +00002316static void
2317DiagnoseBaseOrMemInitializerOrder(Sema &SemaRef,
Anders Carlsson96b8fc62010-04-02 03:38:04 +00002318 const CXXConstructorDecl *Constructor,
Alexis Hunt1d792652011-01-08 20:30:50 +00002319 CXXCtorInitializer **Inits,
John McCallbb7b6582010-04-10 07:37:23 +00002320 unsigned NumInits) {
2321 if (Constructor->getDeclContext()->isDependentContext())
Anders Carlsson35d6e3e2009-08-27 05:57:30 +00002322 return;
Mike Stump11289f42009-09-09 15:08:12 +00002323
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +00002324 // Don't check initializers order unless the warning is enabled at the
2325 // location of at least one initializer.
2326 bool ShouldCheckOrder = false;
2327 for (unsigned InitIndex = 0; InitIndex != NumInits; ++InitIndex) {
Alexis Hunt1d792652011-01-08 20:30:50 +00002328 CXXCtorInitializer *Init = Inits[InitIndex];
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +00002329 if (SemaRef.Diags.getDiagnosticLevel(diag::warn_initializer_out_of_order,
2330 Init->getSourceLocation())
2331 != Diagnostic::Ignored) {
2332 ShouldCheckOrder = true;
2333 break;
2334 }
2335 }
2336 if (!ShouldCheckOrder)
Anders Carlssone0eebb32009-08-27 05:45:01 +00002337 return;
Anders Carlssone857b292010-04-02 03:37:03 +00002338
John McCallbb7b6582010-04-10 07:37:23 +00002339 // Build the list of bases and members in the order that they'll
2340 // actually be initialized. The explicit initializers should be in
2341 // this same order but may be missing things.
2342 llvm::SmallVector<const void*, 32> IdealInitKeys;
Mike Stump11289f42009-09-09 15:08:12 +00002343
Anders Carlsson96b8fc62010-04-02 03:38:04 +00002344 const CXXRecordDecl *ClassDecl = Constructor->getParent();
2345
John McCallbb7b6582010-04-10 07:37:23 +00002346 // 1. Virtual bases.
Anders Carlsson96b8fc62010-04-02 03:38:04 +00002347 for (CXXRecordDecl::base_class_const_iterator VBase =
Anders Carlssone0eebb32009-08-27 05:45:01 +00002348 ClassDecl->vbases_begin(),
2349 E = ClassDecl->vbases_end(); VBase != E; ++VBase)
John McCallbb7b6582010-04-10 07:37:23 +00002350 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, VBase->getType()));
Mike Stump11289f42009-09-09 15:08:12 +00002351
John McCallbb7b6582010-04-10 07:37:23 +00002352 // 2. Non-virtual bases.
Anders Carlsson96b8fc62010-04-02 03:38:04 +00002353 for (CXXRecordDecl::base_class_const_iterator Base = ClassDecl->bases_begin(),
Anders Carlssone0eebb32009-08-27 05:45:01 +00002354 E = ClassDecl->bases_end(); Base != E; ++Base) {
Anders Carlssone0eebb32009-08-27 05:45:01 +00002355 if (Base->isVirtual())
2356 continue;
John McCallbb7b6582010-04-10 07:37:23 +00002357 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, Base->getType()));
Anders Carlssone0eebb32009-08-27 05:45:01 +00002358 }
Mike Stump11289f42009-09-09 15:08:12 +00002359
John McCallbb7b6582010-04-10 07:37:23 +00002360 // 3. Direct fields.
Anders Carlssone0eebb32009-08-27 05:45:01 +00002361 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
2362 E = ClassDecl->field_end(); Field != E; ++Field)
John McCallbb7b6582010-04-10 07:37:23 +00002363 IdealInitKeys.push_back(GetKeyForTopLevelField(*Field));
Mike Stump11289f42009-09-09 15:08:12 +00002364
John McCallbb7b6582010-04-10 07:37:23 +00002365 unsigned NumIdealInits = IdealInitKeys.size();
2366 unsigned IdealIndex = 0;
Eli Friedman952c15d2009-07-21 19:28:10 +00002367
Alexis Hunt1d792652011-01-08 20:30:50 +00002368 CXXCtorInitializer *PrevInit = 0;
John McCallbb7b6582010-04-10 07:37:23 +00002369 for (unsigned InitIndex = 0; InitIndex != NumInits; ++InitIndex) {
Alexis Hunt1d792652011-01-08 20:30:50 +00002370 CXXCtorInitializer *Init = Inits[InitIndex];
Francois Pichetd583da02010-12-04 09:14:42 +00002371 void *InitKey = GetKeyForMember(SemaRef.Context, Init);
John McCallbb7b6582010-04-10 07:37:23 +00002372
2373 // Scan forward to try to find this initializer in the idealized
2374 // initializers list.
2375 for (; IdealIndex != NumIdealInits; ++IdealIndex)
2376 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlssone0eebb32009-08-27 05:45:01 +00002377 break;
John McCallbb7b6582010-04-10 07:37:23 +00002378
2379 // If we didn't find this initializer, it must be because we
2380 // scanned past it on a previous iteration. That can only
2381 // happen if we're out of order; emit a warning.
Douglas Gregoraabdfcb2010-05-20 23:49:34 +00002382 if (IdealIndex == NumIdealInits && PrevInit) {
John McCallbb7b6582010-04-10 07:37:23 +00002383 Sema::SemaDiagnosticBuilder D =
2384 SemaRef.Diag(PrevInit->getSourceLocation(),
2385 diag::warn_initializer_out_of_order);
2386
Francois Pichetd583da02010-12-04 09:14:42 +00002387 if (PrevInit->isAnyMemberInitializer())
2388 D << 0 << PrevInit->getAnyMember()->getDeclName();
John McCallbb7b6582010-04-10 07:37:23 +00002389 else
2390 D << 1 << PrevInit->getBaseClassInfo()->getType();
2391
Francois Pichetd583da02010-12-04 09:14:42 +00002392 if (Init->isAnyMemberInitializer())
2393 D << 0 << Init->getAnyMember()->getDeclName();
John McCallbb7b6582010-04-10 07:37:23 +00002394 else
2395 D << 1 << Init->getBaseClassInfo()->getType();
2396
2397 // Move back to the initializer's location in the ideal list.
2398 for (IdealIndex = 0; IdealIndex != NumIdealInits; ++IdealIndex)
2399 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlssone0eebb32009-08-27 05:45:01 +00002400 break;
John McCallbb7b6582010-04-10 07:37:23 +00002401
2402 assert(IdealIndex != NumIdealInits &&
2403 "initializer not found in initializer list");
Fariborz Jahanian341583c2009-07-09 19:59:47 +00002404 }
John McCallbb7b6582010-04-10 07:37:23 +00002405
2406 PrevInit = Init;
Fariborz Jahanian341583c2009-07-09 19:59:47 +00002407 }
Anders Carlsson75fdaa42009-03-25 02:58:17 +00002408}
2409
John McCall23eebd92010-04-10 09:28:51 +00002410namespace {
2411bool CheckRedundantInit(Sema &S,
Alexis Hunt1d792652011-01-08 20:30:50 +00002412 CXXCtorInitializer *Init,
2413 CXXCtorInitializer *&PrevInit) {
John McCall23eebd92010-04-10 09:28:51 +00002414 if (!PrevInit) {
2415 PrevInit = Init;
2416 return false;
2417 }
2418
2419 if (FieldDecl *Field = Init->getMember())
2420 S.Diag(Init->getSourceLocation(),
2421 diag::err_multiple_mem_initialization)
2422 << Field->getDeclName()
2423 << Init->getSourceRange();
2424 else {
John McCall424cec92011-01-19 06:33:43 +00002425 const Type *BaseClass = Init->getBaseClass();
John McCall23eebd92010-04-10 09:28:51 +00002426 assert(BaseClass && "neither field nor base");
2427 S.Diag(Init->getSourceLocation(),
2428 diag::err_multiple_base_initialization)
2429 << QualType(BaseClass, 0)
2430 << Init->getSourceRange();
2431 }
2432 S.Diag(PrevInit->getSourceLocation(), diag::note_previous_initializer)
2433 << 0 << PrevInit->getSourceRange();
2434
2435 return true;
2436}
2437
Alexis Hunt1d792652011-01-08 20:30:50 +00002438typedef std::pair<NamedDecl *, CXXCtorInitializer *> UnionEntry;
John McCall23eebd92010-04-10 09:28:51 +00002439typedef llvm::DenseMap<RecordDecl*, UnionEntry> RedundantUnionMap;
2440
2441bool CheckRedundantUnionInit(Sema &S,
Alexis Hunt1d792652011-01-08 20:30:50 +00002442 CXXCtorInitializer *Init,
John McCall23eebd92010-04-10 09:28:51 +00002443 RedundantUnionMap &Unions) {
Francois Pichetd583da02010-12-04 09:14:42 +00002444 FieldDecl *Field = Init->getAnyMember();
John McCall23eebd92010-04-10 09:28:51 +00002445 RecordDecl *Parent = Field->getParent();
2446 if (!Parent->isAnonymousStructOrUnion())
2447 return false;
2448
2449 NamedDecl *Child = Field;
2450 do {
2451 if (Parent->isUnion()) {
2452 UnionEntry &En = Unions[Parent];
2453 if (En.first && En.first != Child) {
2454 S.Diag(Init->getSourceLocation(),
2455 diag::err_multiple_mem_union_initialization)
2456 << Field->getDeclName()
2457 << Init->getSourceRange();
2458 S.Diag(En.second->getSourceLocation(), diag::note_previous_initializer)
2459 << 0 << En.second->getSourceRange();
2460 return true;
2461 } else if (!En.first) {
2462 En.first = Child;
2463 En.second = Init;
2464 }
2465 }
2466
2467 Child = Parent;
2468 Parent = cast<RecordDecl>(Parent->getDeclContext());
2469 } while (Parent->isAnonymousStructOrUnion());
2470
2471 return false;
2472}
2473}
2474
Anders Carlssone857b292010-04-02 03:37:03 +00002475/// ActOnMemInitializers - Handle the member initializers for a constructor.
John McCall48871652010-08-21 09:40:31 +00002476void Sema::ActOnMemInitializers(Decl *ConstructorDecl,
Anders Carlssone857b292010-04-02 03:37:03 +00002477 SourceLocation ColonLoc,
2478 MemInitTy **meminits, unsigned NumMemInits,
2479 bool AnyErrors) {
2480 if (!ConstructorDecl)
2481 return;
2482
2483 AdjustDeclIfTemplate(ConstructorDecl);
2484
2485 CXXConstructorDecl *Constructor
John McCall48871652010-08-21 09:40:31 +00002486 = dyn_cast<CXXConstructorDecl>(ConstructorDecl);
Anders Carlssone857b292010-04-02 03:37:03 +00002487
2488 if (!Constructor) {
2489 Diag(ColonLoc, diag::err_only_constructors_take_base_inits);
2490 return;
2491 }
2492
Alexis Hunt1d792652011-01-08 20:30:50 +00002493 CXXCtorInitializer **MemInits =
2494 reinterpret_cast<CXXCtorInitializer **>(meminits);
John McCall23eebd92010-04-10 09:28:51 +00002495
2496 // Mapping for the duplicate initializers check.
2497 // For member initializers, this is keyed with a FieldDecl*.
2498 // For base initializers, this is keyed with a Type*.
Alexis Hunt1d792652011-01-08 20:30:50 +00002499 llvm::DenseMap<void*, CXXCtorInitializer *> Members;
John McCall23eebd92010-04-10 09:28:51 +00002500
2501 // Mapping for the inconsistent anonymous-union initializers check.
2502 RedundantUnionMap MemberUnions;
2503
Anders Carlsson7b3f2782010-04-02 05:42:15 +00002504 bool HadError = false;
2505 for (unsigned i = 0; i < NumMemInits; i++) {
Alexis Hunt1d792652011-01-08 20:30:50 +00002506 CXXCtorInitializer *Init = MemInits[i];
Anders Carlssone857b292010-04-02 03:37:03 +00002507
Abramo Bagnara341d7832010-05-26 18:09:23 +00002508 // Set the source order index.
2509 Init->setSourceOrder(i);
2510
Francois Pichetd583da02010-12-04 09:14:42 +00002511 if (Init->isAnyMemberInitializer()) {
2512 FieldDecl *Field = Init->getAnyMember();
John McCall23eebd92010-04-10 09:28:51 +00002513 if (CheckRedundantInit(*this, Init, Members[Field]) ||
2514 CheckRedundantUnionInit(*this, Init, MemberUnions))
2515 HadError = true;
Alexis Huntc5575cc2011-02-26 19:13:13 +00002516 } else if (Init->isBaseInitializer()) {
John McCall23eebd92010-04-10 09:28:51 +00002517 void *Key = GetKeyForBase(Context, QualType(Init->getBaseClass(), 0));
2518 if (CheckRedundantInit(*this, Init, Members[Key]))
2519 HadError = true;
Alexis Huntc5575cc2011-02-26 19:13:13 +00002520 } else {
2521 assert(Init->isDelegatingInitializer());
2522 // This must be the only initializer
2523 if (i != 0 || NumMemInits > 1) {
2524 Diag(MemInits[0]->getSourceLocation(),
2525 diag::err_delegating_initializer_alone)
2526 << MemInits[0]->getSourceRange();
2527 HadError = true;
Alexis Hunt61bc1732011-05-01 07:04:31 +00002528 // We will treat this as being the only initializer.
Alexis Huntc5575cc2011-02-26 19:13:13 +00002529 }
Alexis Hunt6118d662011-05-04 05:57:24 +00002530 SetDelegatingInitializer(Constructor, MemInits[i]);
Alexis Hunt61bc1732011-05-01 07:04:31 +00002531 // Return immediately as the initializer is set.
2532 return;
Anders Carlssone857b292010-04-02 03:37:03 +00002533 }
Anders Carlssone857b292010-04-02 03:37:03 +00002534 }
2535
Anders Carlsson7b3f2782010-04-02 05:42:15 +00002536 if (HadError)
2537 return;
2538
Anders Carlssone857b292010-04-02 03:37:03 +00002539 DiagnoseBaseOrMemInitializerOrder(*this, Constructor, MemInits, NumMemInits);
Anders Carlsson4c8cb012010-04-02 03:43:34 +00002540
Alexis Hunt1d792652011-01-08 20:30:50 +00002541 SetCtorInitializers(Constructor, MemInits, NumMemInits, AnyErrors);
Anders Carlssone857b292010-04-02 03:37:03 +00002542}
2543
Fariborz Jahanian37d06562009-09-03 23:18:17 +00002544void
John McCalla6309952010-03-16 21:39:52 +00002545Sema::MarkBaseAndMemberDestructorsReferenced(SourceLocation Location,
2546 CXXRecordDecl *ClassDecl) {
2547 // Ignore dependent contexts.
2548 if (ClassDecl->isDependentContext())
Anders Carlssondee9a302009-11-17 04:44:12 +00002549 return;
John McCall1064d7e2010-03-16 05:22:47 +00002550
2551 // FIXME: all the access-control diagnostics are positioned on the
2552 // field/base declaration. That's probably good; that said, the
2553 // user might reasonably want to know why the destructor is being
2554 // emitted, and we currently don't say.
Anders Carlssondee9a302009-11-17 04:44:12 +00002555
Anders Carlssondee9a302009-11-17 04:44:12 +00002556 // Non-static data members.
2557 for (CXXRecordDecl::field_iterator I = ClassDecl->field_begin(),
2558 E = ClassDecl->field_end(); I != E; ++I) {
2559 FieldDecl *Field = *I;
Fariborz Jahanian16f94c62010-05-17 18:15:18 +00002560 if (Field->isInvalidDecl())
2561 continue;
Anders Carlssondee9a302009-11-17 04:44:12 +00002562 QualType FieldType = Context.getBaseElementType(Field->getType());
2563
2564 const RecordType* RT = FieldType->getAs<RecordType>();
2565 if (!RT)
2566 continue;
2567
2568 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Matt Beaumont-Gay93615d92011-03-28 01:39:13 +00002569 if (FieldClassDecl->isInvalidDecl())
2570 continue;
Anders Carlssondee9a302009-11-17 04:44:12 +00002571 if (FieldClassDecl->hasTrivialDestructor())
2572 continue;
2573
Douglas Gregore71edda2010-07-01 22:47:18 +00002574 CXXDestructorDecl *Dtor = LookupDestructor(FieldClassDecl);
Matt Beaumont-Gay93615d92011-03-28 01:39:13 +00002575 assert(Dtor && "No dtor found for FieldClassDecl!");
John McCall1064d7e2010-03-16 05:22:47 +00002576 CheckDestructorAccess(Field->getLocation(), Dtor,
Douglas Gregor89336232010-03-29 23:34:08 +00002577 PDiag(diag::err_access_dtor_field)
John McCall1064d7e2010-03-16 05:22:47 +00002578 << Field->getDeclName()
2579 << FieldType);
2580
John McCalla6309952010-03-16 21:39:52 +00002581 MarkDeclarationReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Anders Carlssondee9a302009-11-17 04:44:12 +00002582 }
2583
John McCall1064d7e2010-03-16 05:22:47 +00002584 llvm::SmallPtrSet<const RecordType *, 8> DirectVirtualBases;
2585
Anders Carlssondee9a302009-11-17 04:44:12 +00002586 // Bases.
2587 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
2588 E = ClassDecl->bases_end(); Base != E; ++Base) {
John McCall1064d7e2010-03-16 05:22:47 +00002589 // Bases are always records in a well-formed non-dependent class.
2590 const RecordType *RT = Base->getType()->getAs<RecordType>();
2591
2592 // Remember direct virtual bases.
Anders Carlssondee9a302009-11-17 04:44:12 +00002593 if (Base->isVirtual())
John McCall1064d7e2010-03-16 05:22:47 +00002594 DirectVirtualBases.insert(RT);
Anders Carlssondee9a302009-11-17 04:44:12 +00002595
John McCall1064d7e2010-03-16 05:22:47 +00002596 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Matt Beaumont-Gay93615d92011-03-28 01:39:13 +00002597 // If our base class is invalid, we probably can't get its dtor anyway.
2598 if (BaseClassDecl->isInvalidDecl())
2599 continue;
2600 // Ignore trivial destructors.
Anders Carlssondee9a302009-11-17 04:44:12 +00002601 if (BaseClassDecl->hasTrivialDestructor())
2602 continue;
John McCall1064d7e2010-03-16 05:22:47 +00002603
Douglas Gregore71edda2010-07-01 22:47:18 +00002604 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
Matt Beaumont-Gay93615d92011-03-28 01:39:13 +00002605 assert(Dtor && "No dtor found for BaseClassDecl!");
John McCall1064d7e2010-03-16 05:22:47 +00002606
2607 // FIXME: caret should be on the start of the class name
2608 CheckDestructorAccess(Base->getSourceRange().getBegin(), Dtor,
Douglas Gregor89336232010-03-29 23:34:08 +00002609 PDiag(diag::err_access_dtor_base)
John McCall1064d7e2010-03-16 05:22:47 +00002610 << Base->getType()
2611 << Base->getSourceRange());
Anders Carlssondee9a302009-11-17 04:44:12 +00002612
John McCalla6309952010-03-16 21:39:52 +00002613 MarkDeclarationReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Anders Carlssondee9a302009-11-17 04:44:12 +00002614 }
2615
2616 // Virtual bases.
Fariborz Jahanian37d06562009-09-03 23:18:17 +00002617 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
2618 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
John McCall1064d7e2010-03-16 05:22:47 +00002619
2620 // Bases are always records in a well-formed non-dependent class.
2621 const RecordType *RT = VBase->getType()->getAs<RecordType>();
2622
2623 // Ignore direct virtual bases.
2624 if (DirectVirtualBases.count(RT))
2625 continue;
2626
John McCall1064d7e2010-03-16 05:22:47 +00002627 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Matt Beaumont-Gay93615d92011-03-28 01:39:13 +00002628 // If our base class is invalid, we probably can't get its dtor anyway.
2629 if (BaseClassDecl->isInvalidDecl())
2630 continue;
2631 // Ignore trivial destructors.
Fariborz Jahanian37d06562009-09-03 23:18:17 +00002632 if (BaseClassDecl->hasTrivialDestructor())
2633 continue;
John McCall1064d7e2010-03-16 05:22:47 +00002634
Douglas Gregore71edda2010-07-01 22:47:18 +00002635 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
Matt Beaumont-Gay93615d92011-03-28 01:39:13 +00002636 assert(Dtor && "No dtor found for BaseClassDecl!");
John McCall1064d7e2010-03-16 05:22:47 +00002637 CheckDestructorAccess(ClassDecl->getLocation(), Dtor,
Douglas Gregor89336232010-03-29 23:34:08 +00002638 PDiag(diag::err_access_dtor_vbase)
John McCall1064d7e2010-03-16 05:22:47 +00002639 << VBase->getType());
2640
John McCalla6309952010-03-16 21:39:52 +00002641 MarkDeclarationReferenced(Location, const_cast<CXXDestructorDecl*>(Dtor));
Fariborz Jahanian37d06562009-09-03 23:18:17 +00002642 }
2643}
2644
John McCall48871652010-08-21 09:40:31 +00002645void Sema::ActOnDefaultCtorInitializers(Decl *CDtorDecl) {
Fariborz Jahanian16094c22009-07-15 22:34:08 +00002646 if (!CDtorDecl)
Fariborz Jahanian49c81792009-07-14 18:24:21 +00002647 return;
Mike Stump11289f42009-09-09 15:08:12 +00002648
Mike Stump11289f42009-09-09 15:08:12 +00002649 if (CXXConstructorDecl *Constructor
John McCall48871652010-08-21 09:40:31 +00002650 = dyn_cast<CXXConstructorDecl>(CDtorDecl))
Alexis Hunt1d792652011-01-08 20:30:50 +00002651 SetCtorInitializers(Constructor, 0, 0, /*AnyErrors=*/false);
Fariborz Jahanian49c81792009-07-14 18:24:21 +00002652}
2653
Mike Stump11289f42009-09-09 15:08:12 +00002654bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
John McCall02db245d2010-08-18 09:41:07 +00002655 unsigned DiagID, AbstractDiagSelID SelID) {
Anders Carlssoneabf7702009-08-27 00:13:57 +00002656 if (SelID == -1)
John McCall02db245d2010-08-18 09:41:07 +00002657 return RequireNonAbstractType(Loc, T, PDiag(DiagID));
Anders Carlssoneabf7702009-08-27 00:13:57 +00002658 else
John McCall02db245d2010-08-18 09:41:07 +00002659 return RequireNonAbstractType(Loc, T, PDiag(DiagID) << SelID);
Mike Stump11289f42009-09-09 15:08:12 +00002660}
2661
Anders Carlssoneabf7702009-08-27 00:13:57 +00002662bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
John McCall02db245d2010-08-18 09:41:07 +00002663 const PartialDiagnostic &PD) {
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002664 if (!getLangOptions().CPlusPlus)
2665 return false;
Mike Stump11289f42009-09-09 15:08:12 +00002666
Anders Carlssoneb0c5322009-03-23 19:10:31 +00002667 if (const ArrayType *AT = Context.getAsArrayType(T))
John McCall02db245d2010-08-18 09:41:07 +00002668 return RequireNonAbstractType(Loc, AT->getElementType(), PD);
Mike Stump11289f42009-09-09 15:08:12 +00002669
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002670 if (const PointerType *PT = T->getAs<PointerType>()) {
Anders Carlsson8f0d2182009-03-24 01:46:45 +00002671 // Find the innermost pointer type.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002672 while (const PointerType *T = PT->getPointeeType()->getAs<PointerType>())
Anders Carlsson8f0d2182009-03-24 01:46:45 +00002673 PT = T;
Mike Stump11289f42009-09-09 15:08:12 +00002674
Anders Carlsson8f0d2182009-03-24 01:46:45 +00002675 if (const ArrayType *AT = Context.getAsArrayType(PT->getPointeeType()))
John McCall02db245d2010-08-18 09:41:07 +00002676 return RequireNonAbstractType(Loc, AT->getElementType(), PD);
Anders Carlsson8f0d2182009-03-24 01:46:45 +00002677 }
Mike Stump11289f42009-09-09 15:08:12 +00002678
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002679 const RecordType *RT = T->getAs<RecordType>();
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002680 if (!RT)
2681 return false;
Mike Stump11289f42009-09-09 15:08:12 +00002682
John McCall67da35c2010-02-04 22:26:26 +00002683 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002684
John McCall02db245d2010-08-18 09:41:07 +00002685 // We can't answer whether something is abstract until it has a
2686 // definition. If it's currently being defined, we'll walk back
2687 // over all the declarations when we have a full definition.
2688 const CXXRecordDecl *Def = RD->getDefinition();
2689 if (!Def || Def->isBeingDefined())
John McCall67da35c2010-02-04 22:26:26 +00002690 return false;
2691
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002692 if (!RD->isAbstract())
2693 return false;
Mike Stump11289f42009-09-09 15:08:12 +00002694
Anders Carlssoneabf7702009-08-27 00:13:57 +00002695 Diag(Loc, PD) << RD->getDeclName();
John McCall02db245d2010-08-18 09:41:07 +00002696 DiagnoseAbstractType(RD);
Mike Stump11289f42009-09-09 15:08:12 +00002697
John McCall02db245d2010-08-18 09:41:07 +00002698 return true;
2699}
2700
2701void Sema::DiagnoseAbstractType(const CXXRecordDecl *RD) {
2702 // Check if we've already emitted the list of pure virtual functions
2703 // for this class.
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002704 if (PureVirtualClassDiagSet && PureVirtualClassDiagSet->count(RD))
John McCall02db245d2010-08-18 09:41:07 +00002705 return;
Mike Stump11289f42009-09-09 15:08:12 +00002706
Douglas Gregor4165bd62010-03-23 23:47:56 +00002707 CXXFinalOverriderMap FinalOverriders;
2708 RD->getFinalOverriders(FinalOverriders);
Mike Stump11289f42009-09-09 15:08:12 +00002709
Anders Carlssona2f74f32010-06-03 01:00:02 +00002710 // Keep a set of seen pure methods so we won't diagnose the same method
2711 // more than once.
2712 llvm::SmallPtrSet<const CXXMethodDecl *, 8> SeenPureMethods;
2713
Douglas Gregor4165bd62010-03-23 23:47:56 +00002714 for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(),
2715 MEnd = FinalOverriders.end();
2716 M != MEnd;
2717 ++M) {
2718 for (OverridingMethods::iterator SO = M->second.begin(),
2719 SOEnd = M->second.end();
2720 SO != SOEnd; ++SO) {
2721 // C++ [class.abstract]p4:
2722 // A class is abstract if it contains or inherits at least one
2723 // pure virtual function for which the final overrider is pure
2724 // virtual.
Mike Stump11289f42009-09-09 15:08:12 +00002725
Douglas Gregor4165bd62010-03-23 23:47:56 +00002726 //
2727 if (SO->second.size() != 1)
2728 continue;
2729
2730 if (!SO->second.front().Method->isPure())
2731 continue;
2732
Anders Carlssona2f74f32010-06-03 01:00:02 +00002733 if (!SeenPureMethods.insert(SO->second.front().Method))
2734 continue;
2735
Douglas Gregor4165bd62010-03-23 23:47:56 +00002736 Diag(SO->second.front().Method->getLocation(),
2737 diag::note_pure_virtual_function)
Chandler Carruth98e3c562011-02-18 23:59:51 +00002738 << SO->second.front().Method->getDeclName() << RD->getDeclName();
Douglas Gregor4165bd62010-03-23 23:47:56 +00002739 }
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002740 }
2741
2742 if (!PureVirtualClassDiagSet)
2743 PureVirtualClassDiagSet.reset(new RecordDeclSetTy);
2744 PureVirtualClassDiagSet->insert(RD);
Anders Carlsson576cc6f2009-03-22 20:18:17 +00002745}
2746
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002747namespace {
John McCall02db245d2010-08-18 09:41:07 +00002748struct AbstractUsageInfo {
2749 Sema &S;
2750 CXXRecordDecl *Record;
2751 CanQualType AbstractType;
2752 bool Invalid;
Mike Stump11289f42009-09-09 15:08:12 +00002753
John McCall02db245d2010-08-18 09:41:07 +00002754 AbstractUsageInfo(Sema &S, CXXRecordDecl *Record)
2755 : S(S), Record(Record),
2756 AbstractType(S.Context.getCanonicalType(
2757 S.Context.getTypeDeclType(Record))),
2758 Invalid(false) {}
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002759
John McCall02db245d2010-08-18 09:41:07 +00002760 void DiagnoseAbstractType() {
2761 if (Invalid) return;
2762 S.DiagnoseAbstractType(Record);
2763 Invalid = true;
2764 }
Anders Carlssonb57738b2009-03-24 17:23:42 +00002765
John McCall02db245d2010-08-18 09:41:07 +00002766 void CheckType(const NamedDecl *D, TypeLoc TL, Sema::AbstractDiagSelID Sel);
2767};
2768
2769struct CheckAbstractUsage {
2770 AbstractUsageInfo &Info;
2771 const NamedDecl *Ctx;
2772
2773 CheckAbstractUsage(AbstractUsageInfo &Info, const NamedDecl *Ctx)
2774 : Info(Info), Ctx(Ctx) {}
2775
2776 void Visit(TypeLoc TL, Sema::AbstractDiagSelID Sel) {
2777 switch (TL.getTypeLocClass()) {
2778#define ABSTRACT_TYPELOC(CLASS, PARENT)
2779#define TYPELOC(CLASS, PARENT) \
2780 case TypeLoc::CLASS: Check(cast<CLASS##TypeLoc>(TL), Sel); break;
2781#include "clang/AST/TypeLocNodes.def"
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002782 }
John McCall02db245d2010-08-18 09:41:07 +00002783 }
Mike Stump11289f42009-09-09 15:08:12 +00002784
John McCall02db245d2010-08-18 09:41:07 +00002785 void Check(FunctionProtoTypeLoc TL, Sema::AbstractDiagSelID Sel) {
2786 Visit(TL.getResultLoc(), Sema::AbstractReturnType);
2787 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) {
Douglas Gregor385d3fd2011-02-22 23:21:06 +00002788 if (!TL.getArg(I))
2789 continue;
2790
John McCall02db245d2010-08-18 09:41:07 +00002791 TypeSourceInfo *TSI = TL.getArg(I)->getTypeSourceInfo();
2792 if (TSI) Visit(TSI->getTypeLoc(), Sema::AbstractParamType);
Anders Carlssonb57738b2009-03-24 17:23:42 +00002793 }
John McCall02db245d2010-08-18 09:41:07 +00002794 }
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002795
John McCall02db245d2010-08-18 09:41:07 +00002796 void Check(ArrayTypeLoc TL, Sema::AbstractDiagSelID Sel) {
2797 Visit(TL.getElementLoc(), Sema::AbstractArrayType);
2798 }
Mike Stump11289f42009-09-09 15:08:12 +00002799
John McCall02db245d2010-08-18 09:41:07 +00002800 void Check(TemplateSpecializationTypeLoc TL, Sema::AbstractDiagSelID Sel) {
2801 // Visit the type parameters from a permissive context.
2802 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) {
2803 TemplateArgumentLoc TAL = TL.getArgLoc(I);
2804 if (TAL.getArgument().getKind() == TemplateArgument::Type)
2805 if (TypeSourceInfo *TSI = TAL.getTypeSourceInfo())
2806 Visit(TSI->getTypeLoc(), Sema::AbstractNone);
2807 // TODO: other template argument types?
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002808 }
John McCall02db245d2010-08-18 09:41:07 +00002809 }
Mike Stump11289f42009-09-09 15:08:12 +00002810
John McCall02db245d2010-08-18 09:41:07 +00002811 // Visit pointee types from a permissive context.
2812#define CheckPolymorphic(Type) \
2813 void Check(Type TL, Sema::AbstractDiagSelID Sel) { \
2814 Visit(TL.getNextTypeLoc(), Sema::AbstractNone); \
2815 }
2816 CheckPolymorphic(PointerTypeLoc)
2817 CheckPolymorphic(ReferenceTypeLoc)
2818 CheckPolymorphic(MemberPointerTypeLoc)
2819 CheckPolymorphic(BlockPointerTypeLoc)
Mike Stump11289f42009-09-09 15:08:12 +00002820
John McCall02db245d2010-08-18 09:41:07 +00002821 /// Handle all the types we haven't given a more specific
2822 /// implementation for above.
2823 void Check(TypeLoc TL, Sema::AbstractDiagSelID Sel) {
2824 // Every other kind of type that we haven't called out already
2825 // that has an inner type is either (1) sugar or (2) contains that
2826 // inner type in some way as a subobject.
2827 if (TypeLoc Next = TL.getNextTypeLoc())
2828 return Visit(Next, Sel);
2829
2830 // If there's no inner type and we're in a permissive context,
2831 // don't diagnose.
2832 if (Sel == Sema::AbstractNone) return;
2833
2834 // Check whether the type matches the abstract type.
2835 QualType T = TL.getType();
2836 if (T->isArrayType()) {
2837 Sel = Sema::AbstractArrayType;
2838 T = Info.S.Context.getBaseElementType(T);
Anders Carlssonb57738b2009-03-24 17:23:42 +00002839 }
John McCall02db245d2010-08-18 09:41:07 +00002840 CanQualType CT = T->getCanonicalTypeUnqualified().getUnqualifiedType();
2841 if (CT != Info.AbstractType) return;
2842
2843 // It matched; do some magic.
2844 if (Sel == Sema::AbstractArrayType) {
2845 Info.S.Diag(Ctx->getLocation(), diag::err_array_of_abstract_type)
2846 << T << TL.getSourceRange();
2847 } else {
2848 Info.S.Diag(Ctx->getLocation(), diag::err_abstract_type_in_decl)
2849 << Sel << T << TL.getSourceRange();
2850 }
2851 Info.DiagnoseAbstractType();
2852 }
2853};
2854
2855void AbstractUsageInfo::CheckType(const NamedDecl *D, TypeLoc TL,
2856 Sema::AbstractDiagSelID Sel) {
2857 CheckAbstractUsage(*this, D).Visit(TL, Sel);
2858}
2859
2860}
2861
2862/// Check for invalid uses of an abstract type in a method declaration.
2863static void CheckAbstractClassUsage(AbstractUsageInfo &Info,
2864 CXXMethodDecl *MD) {
2865 // No need to do the check on definitions, which require that
2866 // the return/param types be complete.
Alexis Hunt4a8ea102011-05-06 20:44:56 +00002867 if (MD->doesThisDeclarationHaveABody())
John McCall02db245d2010-08-18 09:41:07 +00002868 return;
2869
2870 // For safety's sake, just ignore it if we don't have type source
2871 // information. This should never happen for non-implicit methods,
2872 // but...
2873 if (TypeSourceInfo *TSI = MD->getTypeSourceInfo())
2874 Info.CheckType(MD, TSI->getTypeLoc(), Sema::AbstractNone);
2875}
2876
2877/// Check for invalid uses of an abstract type within a class definition.
2878static void CheckAbstractClassUsage(AbstractUsageInfo &Info,
2879 CXXRecordDecl *RD) {
2880 for (CXXRecordDecl::decl_iterator
2881 I = RD->decls_begin(), E = RD->decls_end(); I != E; ++I) {
2882 Decl *D = *I;
2883 if (D->isImplicit()) continue;
2884
2885 // Methods and method templates.
2886 if (isa<CXXMethodDecl>(D)) {
2887 CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(D));
2888 } else if (isa<FunctionTemplateDecl>(D)) {
2889 FunctionDecl *FD = cast<FunctionTemplateDecl>(D)->getTemplatedDecl();
2890 CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(FD));
2891
2892 // Fields and static variables.
2893 } else if (isa<FieldDecl>(D)) {
2894 FieldDecl *FD = cast<FieldDecl>(D);
2895 if (TypeSourceInfo *TSI = FD->getTypeSourceInfo())
2896 Info.CheckType(FD, TSI->getTypeLoc(), Sema::AbstractFieldType);
2897 } else if (isa<VarDecl>(D)) {
2898 VarDecl *VD = cast<VarDecl>(D);
2899 if (TypeSourceInfo *TSI = VD->getTypeSourceInfo())
2900 Info.CheckType(VD, TSI->getTypeLoc(), Sema::AbstractVariableType);
2901
2902 // Nested classes and class templates.
2903 } else if (isa<CXXRecordDecl>(D)) {
2904 CheckAbstractClassUsage(Info, cast<CXXRecordDecl>(D));
2905 } else if (isa<ClassTemplateDecl>(D)) {
2906 CheckAbstractClassUsage(Info,
2907 cast<ClassTemplateDecl>(D)->getTemplatedDecl());
2908 }
2909 }
Anders Carlssonb5a27b42009-03-24 01:19:16 +00002910}
2911
Douglas Gregorc99f1552009-12-03 18:33:45 +00002912/// \brief Perform semantic checks on a class definition that has been
2913/// completing, introducing implicitly-declared members, checking for
2914/// abstract types, etc.
Douglas Gregor0be31a22010-07-02 17:43:08 +00002915void Sema::CheckCompletedCXXClass(CXXRecordDecl *Record) {
Douglas Gregor8fb95122010-09-29 00:15:42 +00002916 if (!Record)
Douglas Gregorc99f1552009-12-03 18:33:45 +00002917 return;
2918
John McCall02db245d2010-08-18 09:41:07 +00002919 if (Record->isAbstract() && !Record->isInvalidDecl()) {
2920 AbstractUsageInfo Info(*this, Record);
2921 CheckAbstractClassUsage(Info, Record);
2922 }
Douglas Gregor454a5b62010-04-15 00:00:53 +00002923
2924 // If this is not an aggregate type and has no user-declared constructor,
2925 // complain about any non-static data members of reference or const scalar
2926 // type, since they will never get initializers.
2927 if (!Record->isInvalidDecl() && !Record->isDependentType() &&
2928 !Record->isAggregate() && !Record->hasUserDeclaredConstructor()) {
2929 bool Complained = false;
2930 for (RecordDecl::field_iterator F = Record->field_begin(),
2931 FEnd = Record->field_end();
2932 F != FEnd; ++F) {
2933 if (F->getType()->isReferenceType() ||
Benjamin Kramer659d7fc2010-04-16 17:43:15 +00002934 (F->getType().isConstQualified() && F->getType()->isScalarType())) {
Douglas Gregor454a5b62010-04-15 00:00:53 +00002935 if (!Complained) {
2936 Diag(Record->getLocation(), diag::warn_no_constructor_for_refconst)
2937 << Record->getTagKind() << Record;
2938 Complained = true;
2939 }
2940
2941 Diag(F->getLocation(), diag::note_refconst_member_not_initialized)
2942 << F->getType()->isReferenceType()
2943 << F->getDeclName();
2944 }
2945 }
2946 }
Douglas Gregor88d292c2010-05-13 16:44:06 +00002947
Anders Carlssone771e762011-01-25 18:08:22 +00002948 if (Record->isDynamicClass() && !Record->isDependentType())
Douglas Gregor88d292c2010-05-13 16:44:06 +00002949 DynamicClasses.push_back(Record);
Douglas Gregor36c22a22010-10-15 13:21:21 +00002950
2951 if (Record->getIdentifier()) {
2952 // C++ [class.mem]p13:
2953 // If T is the name of a class, then each of the following shall have a
2954 // name different from T:
2955 // - every member of every anonymous union that is a member of class T.
2956 //
2957 // C++ [class.mem]p14:
2958 // In addition, if class T has a user-declared constructor (12.1), every
2959 // non-static data member of class T shall have a name different from T.
2960 for (DeclContext::lookup_result R = Record->lookup(Record->getDeclName());
Francois Pichet783dd6e2010-11-21 06:08:52 +00002961 R.first != R.second; ++R.first) {
2962 NamedDecl *D = *R.first;
2963 if ((isa<FieldDecl>(D) && Record->hasUserDeclaredConstructor()) ||
2964 isa<IndirectFieldDecl>(D)) {
2965 Diag(D->getLocation(), diag::err_member_name_of_class)
2966 << D->getDeclName();
Douglas Gregor36c22a22010-10-15 13:21:21 +00002967 break;
2968 }
Francois Pichet783dd6e2010-11-21 06:08:52 +00002969 }
Douglas Gregor36c22a22010-10-15 13:21:21 +00002970 }
Argyrios Kyrtzidis7f3986d2011-01-31 07:05:00 +00002971
Argyrios Kyrtzidis33799ca2011-01-31 17:10:25 +00002972 // Warn if the class has virtual methods but non-virtual public destructor.
Douglas Gregor0cf82f62011-02-19 19:14:36 +00002973 if (Record->isPolymorphic() && !Record->isDependentType()) {
Argyrios Kyrtzidis7f3986d2011-01-31 07:05:00 +00002974 CXXDestructorDecl *dtor = Record->getDestructor();
Argyrios Kyrtzidis33799ca2011-01-31 17:10:25 +00002975 if (!dtor || (!dtor->isVirtual() && dtor->getAccess() == AS_public))
Argyrios Kyrtzidis7f3986d2011-01-31 07:05:00 +00002976 Diag(dtor ? dtor->getLocation() : Record->getLocation(),
2977 diag::warn_non_virtual_dtor) << Context.getRecordType(Record);
2978 }
Argyrios Kyrtzidis7272d9c2011-02-03 18:01:15 +00002979
2980 // See if a method overloads virtual methods in a base
2981 /// class without overriding any.
2982 if (!Record->isDependentType()) {
2983 for (CXXRecordDecl::method_iterator M = Record->method_begin(),
2984 MEnd = Record->method_end();
2985 M != MEnd; ++M) {
Argyrios Kyrtzidis7a1778e2011-03-03 22:58:57 +00002986 if (!(*M)->isStatic())
2987 DiagnoseHiddenVirtualMethods(Record, *M);
Argyrios Kyrtzidis7272d9c2011-02-03 18:01:15 +00002988 }
2989 }
Sebastian Redl08905022011-02-05 19:23:19 +00002990
2991 // Declare inherited constructors. We do this eagerly here because:
2992 // - The standard requires an eager diagnostic for conflicting inherited
2993 // constructors from different classes.
2994 // - The lazy declaration of the other implicit constructors is so as to not
2995 // waste space and performance on classes that are not meant to be
2996 // instantiated (e.g. meta-functions). This doesn't apply to classes that
2997 // have inherited constructors.
Sebastian Redlc1f8e492011-03-12 13:44:32 +00002998 DeclareInheritedConstructors(Record);
Alexis Hunt6d5b96c2011-05-10 00:49:42 +00002999
Alexis Hunt1fb4e762011-05-23 21:07:59 +00003000 if (!Record->isDependentType())
3001 CheckExplicitlyDefaultedMethods(Record);
Alexis Hunt6d5b96c2011-05-10 00:49:42 +00003002}
3003
3004void Sema::CheckExplicitlyDefaultedMethods(CXXRecordDecl *Record) {
Alexis Huntf91729462011-05-12 22:46:25 +00003005 for (CXXRecordDecl::method_iterator MI = Record->method_begin(),
3006 ME = Record->method_end();
3007 MI != ME; ++MI) {
3008 if (!MI->isInvalidDecl() && MI->isExplicitlyDefaulted()) {
3009 switch (getSpecialMember(*MI)) {
3010 case CXXDefaultConstructor:
3011 CheckExplicitlyDefaultedDefaultConstructor(
3012 cast<CXXConstructorDecl>(*MI));
3013 break;
Alexis Hunt6d5b96c2011-05-10 00:49:42 +00003014
Alexis Huntf91729462011-05-12 22:46:25 +00003015 case CXXDestructor:
3016 CheckExplicitlyDefaultedDestructor(cast<CXXDestructorDecl>(*MI));
3017 break;
3018
3019 case CXXCopyConstructor:
Alexis Hunt913820d2011-05-13 06:10:58 +00003020 CheckExplicitlyDefaultedCopyConstructor(cast<CXXConstructorDecl>(*MI));
3021 break;
3022
Alexis Huntf91729462011-05-12 22:46:25 +00003023 case CXXCopyAssignment:
Alexis Huntc9a55732011-05-14 05:23:28 +00003024 CheckExplicitlyDefaultedCopyAssignment(*MI);
Alexis Huntf91729462011-05-12 22:46:25 +00003025 break;
3026
3027 default:
Alexis Huntc9a55732011-05-14 05:23:28 +00003028 // FIXME: Do moves once they exist
Alexis Huntf91729462011-05-12 22:46:25 +00003029 llvm_unreachable("non-special member explicitly defaulted!");
3030 }
Alexis Hunt6d5b96c2011-05-10 00:49:42 +00003031 }
3032 }
3033
Alexis Hunt6d5b96c2011-05-10 00:49:42 +00003034}
3035
3036void Sema::CheckExplicitlyDefaultedDefaultConstructor(CXXConstructorDecl *CD) {
3037 assert(CD->isExplicitlyDefaulted() && CD->isDefaultConstructor());
3038
3039 // Whether this was the first-declared instance of the constructor.
3040 // This affects whether we implicitly add an exception spec (and, eventually,
3041 // constexpr). It is also ill-formed to explicitly default a constructor such
3042 // that it would be deleted. (C++0x [decl.fct.def.default])
3043 bool First = CD == CD->getCanonicalDecl();
3044
Alexis Hunt913820d2011-05-13 06:10:58 +00003045 bool HadError = false;
Alexis Hunt6d5b96c2011-05-10 00:49:42 +00003046 if (CD->getNumParams() != 0) {
3047 Diag(CD->getLocation(), diag::err_defaulted_default_ctor_params)
3048 << CD->getSourceRange();
Alexis Hunt913820d2011-05-13 06:10:58 +00003049 HadError = true;
Alexis Hunt6d5b96c2011-05-10 00:49:42 +00003050 }
3051
3052 ImplicitExceptionSpecification Spec
3053 = ComputeDefaultedDefaultCtorExceptionSpec(CD->getParent());
3054 FunctionProtoType::ExtProtoInfo EPI = Spec.getEPI();
3055 const FunctionProtoType *CtorType = CD->getType()->getAs<FunctionProtoType>(),
3056 *ExceptionType = Context.getFunctionType(
3057 Context.VoidTy, 0, 0, EPI)->getAs<FunctionProtoType>();
3058
3059 if (CtorType->hasExceptionSpec()) {
3060 if (CheckEquivalentExceptionSpec(
Alexis Huntf91729462011-05-12 22:46:25 +00003061 PDiag(diag::err_incorrect_defaulted_exception_spec)
3062 << 0 /* default constructor */,
Alexis Hunt6d5b96c2011-05-10 00:49:42 +00003063 PDiag(),
3064 ExceptionType, SourceLocation(),
3065 CtorType, CD->getLocation())) {
Alexis Hunt913820d2011-05-13 06:10:58 +00003066 HadError = true;
Alexis Hunt6d5b96c2011-05-10 00:49:42 +00003067 }
3068 } else if (First) {
3069 // We set the declaration to have the computed exception spec here.
3070 // We know there are no parameters.
Alexis Huntc9a55732011-05-14 05:23:28 +00003071 EPI.ExtInfo = CtorType->getExtInfo();
Alexis Hunt6d5b96c2011-05-10 00:49:42 +00003072 CD->setType(Context.getFunctionType(Context.VoidTy, 0, 0, EPI));
3073 }
Alexis Huntb3153022011-05-12 03:51:48 +00003074
Alexis Hunt913820d2011-05-13 06:10:58 +00003075 if (HadError) {
3076 CD->setInvalidDecl();
3077 return;
3078 }
3079
Alexis Huntb3153022011-05-12 03:51:48 +00003080 if (ShouldDeleteDefaultConstructor(CD)) {
Alexis Hunt913820d2011-05-13 06:10:58 +00003081 if (First) {
Alexis Huntb3153022011-05-12 03:51:48 +00003082 CD->setDeletedAsWritten();
Alexis Hunt913820d2011-05-13 06:10:58 +00003083 } else {
Alexis Huntb3153022011-05-12 03:51:48 +00003084 Diag(CD->getLocation(), diag::err_out_of_line_default_deletes)
Alexis Huntf91729462011-05-12 22:46:25 +00003085 << 0 /* default constructor */;
Alexis Hunt913820d2011-05-13 06:10:58 +00003086 CD->setInvalidDecl();
3087 }
3088 }
3089}
3090
3091void Sema::CheckExplicitlyDefaultedCopyConstructor(CXXConstructorDecl *CD) {
3092 assert(CD->isExplicitlyDefaulted() && CD->isCopyConstructor());
3093
3094 // Whether this was the first-declared instance of the constructor.
3095 bool First = CD == CD->getCanonicalDecl();
3096
3097 bool HadError = false;
3098 if (CD->getNumParams() != 1) {
3099 Diag(CD->getLocation(), diag::err_defaulted_copy_ctor_params)
3100 << CD->getSourceRange();
3101 HadError = true;
3102 }
3103
3104 ImplicitExceptionSpecification Spec(Context);
3105 bool Const;
3106 llvm::tie(Spec, Const) =
3107 ComputeDefaultedCopyCtorExceptionSpecAndConst(CD->getParent());
3108
3109 FunctionProtoType::ExtProtoInfo EPI = Spec.getEPI();
3110 const FunctionProtoType *CtorType = CD->getType()->getAs<FunctionProtoType>(),
3111 *ExceptionType = Context.getFunctionType(
3112 Context.VoidTy, 0, 0, EPI)->getAs<FunctionProtoType>();
3113
3114 // Check for parameter type matching.
3115 // This is a copy ctor so we know it's a cv-qualified reference to T.
3116 QualType ArgType = CtorType->getArgType(0);
3117 if (ArgType->getPointeeType().isVolatileQualified()) {
3118 Diag(CD->getLocation(), diag::err_defaulted_copy_ctor_volatile_param);
3119 HadError = true;
3120 }
3121 if (ArgType->getPointeeType().isConstQualified() && !Const) {
3122 Diag(CD->getLocation(), diag::err_defaulted_copy_ctor_const_param);
3123 HadError = true;
3124 }
3125
3126 if (CtorType->hasExceptionSpec()) {
3127 if (CheckEquivalentExceptionSpec(
3128 PDiag(diag::err_incorrect_defaulted_exception_spec)
3129 << 1 /* copy constructor */,
3130 PDiag(),
3131 ExceptionType, SourceLocation(),
3132 CtorType, CD->getLocation())) {
3133 HadError = true;
3134 }
3135 } else if (First) {
3136 // We set the declaration to have the computed exception spec here.
3137 // We duplicate the one parameter type.
Alexis Huntc9a55732011-05-14 05:23:28 +00003138 EPI.ExtInfo = CtorType->getExtInfo();
Alexis Hunt913820d2011-05-13 06:10:58 +00003139 CD->setType(Context.getFunctionType(Context.VoidTy, &ArgType, 1, EPI));
3140 }
3141
3142 if (HadError) {
3143 CD->setInvalidDecl();
3144 return;
3145 }
3146
3147 if (ShouldDeleteCopyConstructor(CD)) {
3148 if (First) {
3149 CD->setDeletedAsWritten();
3150 } else {
3151 Diag(CD->getLocation(), diag::err_out_of_line_default_deletes)
3152 << 1 /* copy constructor */;
3153 CD->setInvalidDecl();
3154 }
Alexis Huntb3153022011-05-12 03:51:48 +00003155 }
Alexis Huntea6f0322011-05-11 22:34:38 +00003156}
Alexis Hunt6d5b96c2011-05-10 00:49:42 +00003157
Alexis Huntc9a55732011-05-14 05:23:28 +00003158void Sema::CheckExplicitlyDefaultedCopyAssignment(CXXMethodDecl *MD) {
3159 assert(MD->isExplicitlyDefaulted());
3160
3161 // Whether this was the first-declared instance of the operator
3162 bool First = MD == MD->getCanonicalDecl();
3163
3164 bool HadError = false;
3165 if (MD->getNumParams() != 1) {
3166 Diag(MD->getLocation(), diag::err_defaulted_copy_assign_params)
3167 << MD->getSourceRange();
3168 HadError = true;
3169 }
3170
3171 QualType ReturnType =
3172 MD->getType()->getAs<FunctionType>()->getResultType();
3173 if (!ReturnType->isLValueReferenceType() ||
3174 !Context.hasSameType(
3175 Context.getCanonicalType(ReturnType->getPointeeType()),
3176 Context.getCanonicalType(Context.getTypeDeclType(MD->getParent())))) {
3177 Diag(MD->getLocation(), diag::err_defaulted_copy_assign_return_type);
3178 HadError = true;
3179 }
3180
3181 ImplicitExceptionSpecification Spec(Context);
3182 bool Const;
3183 llvm::tie(Spec, Const) =
3184 ComputeDefaultedCopyCtorExceptionSpecAndConst(MD->getParent());
3185
3186 FunctionProtoType::ExtProtoInfo EPI = Spec.getEPI();
3187 const FunctionProtoType *OperType = MD->getType()->getAs<FunctionProtoType>(),
3188 *ExceptionType = Context.getFunctionType(
3189 Context.VoidTy, 0, 0, EPI)->getAs<FunctionProtoType>();
3190
Alexis Huntc9a55732011-05-14 05:23:28 +00003191 QualType ArgType = OperType->getArgType(0);
Alexis Hunt604aeb32011-05-17 20:44:43 +00003192 if (!ArgType->isReferenceType()) {
3193 Diag(MD->getLocation(), diag::err_defaulted_copy_assign_not_ref);
Alexis Huntc9a55732011-05-14 05:23:28 +00003194 HadError = true;
Alexis Hunt604aeb32011-05-17 20:44:43 +00003195 } else {
3196 if (ArgType->getPointeeType().isVolatileQualified()) {
3197 Diag(MD->getLocation(), diag::err_defaulted_copy_assign_volatile_param);
3198 HadError = true;
3199 }
3200 if (ArgType->getPointeeType().isConstQualified() && !Const) {
3201 Diag(MD->getLocation(), diag::err_defaulted_copy_assign_const_param);
3202 HadError = true;
3203 }
Alexis Huntc9a55732011-05-14 05:23:28 +00003204 }
Alexis Hunt604aeb32011-05-17 20:44:43 +00003205
Alexis Huntc9a55732011-05-14 05:23:28 +00003206 if (OperType->getTypeQuals()) {
3207 Diag(MD->getLocation(), diag::err_defaulted_copy_assign_quals);
3208 HadError = true;
3209 }
3210
3211 if (OperType->hasExceptionSpec()) {
3212 if (CheckEquivalentExceptionSpec(
3213 PDiag(diag::err_incorrect_defaulted_exception_spec)
3214 << 2 /* copy assignment operator */,
3215 PDiag(),
3216 ExceptionType, SourceLocation(),
3217 OperType, MD->getLocation())) {
3218 HadError = true;
3219 }
3220 } else if (First) {
3221 // We set the declaration to have the computed exception spec here.
3222 // We duplicate the one parameter type.
3223 EPI.RefQualifier = OperType->getRefQualifier();
3224 EPI.ExtInfo = OperType->getExtInfo();
3225 MD->setType(Context.getFunctionType(ReturnType, &ArgType, 1, EPI));
3226 }
3227
3228 if (HadError) {
3229 MD->setInvalidDecl();
3230 return;
3231 }
3232
3233 if (ShouldDeleteCopyAssignmentOperator(MD)) {
3234 if (First) {
3235 MD->setDeletedAsWritten();
3236 } else {
3237 Diag(MD->getLocation(), diag::err_out_of_line_default_deletes)
3238 << 2 /* copy assignment operator */;
3239 MD->setInvalidDecl();
3240 }
3241 }
3242}
3243
Alexis Huntf91729462011-05-12 22:46:25 +00003244void Sema::CheckExplicitlyDefaultedDestructor(CXXDestructorDecl *DD) {
3245 assert(DD->isExplicitlyDefaulted());
3246
3247 // Whether this was the first-declared instance of the destructor.
3248 bool First = DD == DD->getCanonicalDecl();
3249
3250 ImplicitExceptionSpecification Spec
3251 = ComputeDefaultedDtorExceptionSpec(DD->getParent());
3252 FunctionProtoType::ExtProtoInfo EPI = Spec.getEPI();
3253 const FunctionProtoType *DtorType = DD->getType()->getAs<FunctionProtoType>(),
3254 *ExceptionType = Context.getFunctionType(
3255 Context.VoidTy, 0, 0, EPI)->getAs<FunctionProtoType>();
3256
3257 if (DtorType->hasExceptionSpec()) {
3258 if (CheckEquivalentExceptionSpec(
3259 PDiag(diag::err_incorrect_defaulted_exception_spec)
3260 << 3 /* destructor */,
3261 PDiag(),
3262 ExceptionType, SourceLocation(),
3263 DtorType, DD->getLocation())) {
3264 DD->setInvalidDecl();
3265 return;
3266 }
3267 } else if (First) {
3268 // We set the declaration to have the computed exception spec here.
3269 // There are no parameters.
Alexis Huntc9a55732011-05-14 05:23:28 +00003270 EPI.ExtInfo = DtorType->getExtInfo();
Alexis Huntf91729462011-05-12 22:46:25 +00003271 DD->setType(Context.getFunctionType(Context.VoidTy, 0, 0, EPI));
3272 }
3273
3274 if (ShouldDeleteDestructor(DD)) {
Alexis Hunt913820d2011-05-13 06:10:58 +00003275 if (First) {
Alexis Huntf91729462011-05-12 22:46:25 +00003276 DD->setDeletedAsWritten();
Alexis Hunt913820d2011-05-13 06:10:58 +00003277 } else {
Alexis Huntf91729462011-05-12 22:46:25 +00003278 Diag(DD->getLocation(), diag::err_out_of_line_default_deletes)
3279 << 3 /* destructor */;
Alexis Hunt913820d2011-05-13 06:10:58 +00003280 DD->setInvalidDecl();
3281 }
Alexis Huntf91729462011-05-12 22:46:25 +00003282 }
Alexis Huntf91729462011-05-12 22:46:25 +00003283}
3284
Alexis Huntea6f0322011-05-11 22:34:38 +00003285bool Sema::ShouldDeleteDefaultConstructor(CXXConstructorDecl *CD) {
3286 CXXRecordDecl *RD = CD->getParent();
3287 assert(!RD->isDependentType() && "do deletion after instantiation");
3288 if (!LangOpts.CPlusPlus0x)
3289 return false;
3290
Alexis Hunte77a28f2011-05-18 03:41:58 +00003291 SourceLocation Loc = CD->getLocation();
3292
Alexis Huntea6f0322011-05-11 22:34:38 +00003293 // Do access control from the constructor
3294 ContextRAII CtorContext(*this, CD);
3295
3296 bool Union = RD->isUnion();
3297 bool AllConst = true;
3298
Alexis Huntea6f0322011-05-11 22:34:38 +00003299 // We do this because we should never actually use an anonymous
3300 // union's constructor.
3301 if (Union && RD->isAnonymousStructOrUnion())
3302 return false;
3303
3304 // FIXME: We should put some diagnostic logic right into this function.
3305
3306 // C++0x [class.ctor]/5
3307 // A defaulted default constructor for class X is defined as delete if:
3308
3309 for (CXXRecordDecl::base_class_iterator BI = RD->bases_begin(),
3310 BE = RD->bases_end();
3311 BI != BE; ++BI) {
Alexis Huntf91729462011-05-12 22:46:25 +00003312 // We'll handle this one later
3313 if (BI->isVirtual())
3314 continue;
3315
Alexis Huntea6f0322011-05-11 22:34:38 +00003316 CXXRecordDecl *BaseDecl = BI->getType()->getAsCXXRecordDecl();
3317 assert(BaseDecl && "base isn't a CXXRecordDecl");
3318
3319 // -- any [direct base class] has a type with a destructor that is
3320 // delete or inaccessible from the defaulted default constructor
3321 CXXDestructorDecl *BaseDtor = LookupDestructor(BaseDecl);
3322 if (BaseDtor->isDeleted())
3323 return true;
Alexis Hunte77a28f2011-05-18 03:41:58 +00003324 if (CheckDestructorAccess(Loc, BaseDtor, PDiag()) !=
Alexis Huntea6f0322011-05-11 22:34:38 +00003325 AR_accessible)
3326 return true;
3327
Alexis Huntea6f0322011-05-11 22:34:38 +00003328 // -- any [direct base class either] has no default constructor or
3329 // overload resolution as applied to [its] default constructor
3330 // results in an ambiguity or in a function that is deleted or
3331 // inaccessible from the defaulted default constructor
3332 InitializedEntity BaseEntity =
3333 InitializedEntity::InitializeBase(Context, BI, 0);
3334 InitializationKind Kind =
Alexis Hunte77a28f2011-05-18 03:41:58 +00003335 InitializationKind::CreateDirect(Loc, Loc, Loc);
Alexis Huntea6f0322011-05-11 22:34:38 +00003336
3337 InitializationSequence InitSeq(*this, BaseEntity, Kind, 0, 0);
3338
3339 if (InitSeq.getKind() == InitializationSequence::FailedSequence)
3340 return true;
3341 }
3342
3343 for (CXXRecordDecl::base_class_iterator BI = RD->vbases_begin(),
3344 BE = RD->vbases_end();
3345 BI != BE; ++BI) {
3346 CXXRecordDecl *BaseDecl = BI->getType()->getAsCXXRecordDecl();
3347 assert(BaseDecl && "base isn't a CXXRecordDecl");
3348
3349 // -- any [virtual base class] has a type with a destructor that is
3350 // delete or inaccessible from the defaulted default constructor
3351 CXXDestructorDecl *BaseDtor = LookupDestructor(BaseDecl);
3352 if (BaseDtor->isDeleted())
3353 return true;
Alexis Hunte77a28f2011-05-18 03:41:58 +00003354 if (CheckDestructorAccess(Loc, BaseDtor, PDiag()) !=
Alexis Huntea6f0322011-05-11 22:34:38 +00003355 AR_accessible)
3356 return true;
3357
3358 // -- any [virtual base class either] has no default constructor or
3359 // overload resolution as applied to [its] default constructor
3360 // results in an ambiguity or in a function that is deleted or
3361 // inaccessible from the defaulted default constructor
3362 InitializedEntity BaseEntity =
3363 InitializedEntity::InitializeBase(Context, BI, BI);
3364 InitializationKind Kind =
Alexis Hunte77a28f2011-05-18 03:41:58 +00003365 InitializationKind::CreateDirect(Loc, Loc, Loc);
Alexis Huntea6f0322011-05-11 22:34:38 +00003366
3367 InitializationSequence InitSeq(*this, BaseEntity, Kind, 0, 0);
3368
3369 if (InitSeq.getKind() == InitializationSequence::FailedSequence)
3370 return true;
3371 }
3372
3373 for (CXXRecordDecl::field_iterator FI = RD->field_begin(),
3374 FE = RD->field_end();
3375 FI != FE; ++FI) {
3376 QualType FieldType = Context.getBaseElementType(FI->getType());
3377 CXXRecordDecl *FieldRecord = FieldType->getAsCXXRecordDecl();
3378
3379 // -- any non-static data member with no brace-or-equal-initializer is of
3380 // reference type
3381 if (FieldType->isReferenceType())
3382 return true;
3383
3384 // -- X is a union and all its variant members are of const-qualified type
3385 // (or array thereof)
3386 if (Union && !FieldType.isConstQualified())
3387 AllConst = false;
3388
3389 if (FieldRecord) {
3390 // -- X is a union-like class that has a variant member with a non-trivial
3391 // default constructor
3392 if (Union && !FieldRecord->hasTrivialDefaultConstructor())
3393 return true;
3394
3395 CXXDestructorDecl *FieldDtor = LookupDestructor(FieldRecord);
3396 if (FieldDtor->isDeleted())
3397 return true;
Alexis Hunte77a28f2011-05-18 03:41:58 +00003398 if (CheckDestructorAccess(Loc, FieldDtor, PDiag()) !=
Alexis Huntea6f0322011-05-11 22:34:38 +00003399 AR_accessible)
3400 return true;
3401
3402 // -- any non-variant non-static data member of const-qualified type (or
3403 // array thereof) with no brace-or-equal-initializer does not have a
3404 // user-provided default constructor
3405 if (FieldType.isConstQualified() &&
3406 !FieldRecord->hasUserProvidedDefaultConstructor())
3407 return true;
3408
3409 if (!Union && FieldRecord->isUnion() &&
3410 FieldRecord->isAnonymousStructOrUnion()) {
3411 // We're okay to reuse AllConst here since we only care about the
3412 // value otherwise if we're in a union.
3413 AllConst = true;
3414
3415 for (CXXRecordDecl::field_iterator UI = FieldRecord->field_begin(),
3416 UE = FieldRecord->field_end();
3417 UI != UE; ++UI) {
3418 QualType UnionFieldType = Context.getBaseElementType(UI->getType());
3419 CXXRecordDecl *UnionFieldRecord =
3420 UnionFieldType->getAsCXXRecordDecl();
3421
3422 if (!UnionFieldType.isConstQualified())
3423 AllConst = false;
3424
3425 if (UnionFieldRecord &&
3426 !UnionFieldRecord->hasTrivialDefaultConstructor())
3427 return true;
3428 }
Alexis Hunt1f69a022011-05-12 22:46:29 +00003429
Alexis Huntea6f0322011-05-11 22:34:38 +00003430 if (AllConst)
3431 return true;
3432
3433 // Don't try to initialize the anonymous union
Alexis Hunt466627c2011-05-11 22:50:12 +00003434 // This is technically non-conformant, but sanity demands it.
Alexis Huntea6f0322011-05-11 22:34:38 +00003435 continue;
3436 }
Alexis Hunta671bca2011-05-20 21:43:47 +00003437 } else if (!Union && FieldType.isConstQualified()) {
3438 // -- any non-variant non-static data member of const-qualified type (or
3439 // array thereof) with no brace-or-equal-initializer does not have a
3440 // user-provided default constructor
3441 return true;
Alexis Huntea6f0322011-05-11 22:34:38 +00003442 }
3443
3444 InitializedEntity MemberEntity =
3445 InitializedEntity::InitializeMember(*FI, 0);
3446 InitializationKind Kind =
Alexis Hunte77a28f2011-05-18 03:41:58 +00003447 InitializationKind::CreateDirect(Loc, Loc, Loc);
Alexis Huntea6f0322011-05-11 22:34:38 +00003448
3449 InitializationSequence InitSeq(*this, MemberEntity, Kind, 0, 0);
3450
3451 if (InitSeq.getKind() == InitializationSequence::FailedSequence)
3452 return true;
3453 }
3454
3455 if (Union && AllConst)
3456 return true;
3457
3458 return false;
Argyrios Kyrtzidis7272d9c2011-02-03 18:01:15 +00003459}
3460
Alexis Hunt913820d2011-05-13 06:10:58 +00003461bool Sema::ShouldDeleteCopyConstructor(CXXConstructorDecl *CD) {
Alexis Hunt16473542011-05-18 20:57:13 +00003462 CXXRecordDecl *RD = CD->getParent();
Alexis Hunt913820d2011-05-13 06:10:58 +00003463 assert(!RD->isDependentType() && "do deletion after instantiation");
3464 if (!LangOpts.CPlusPlus0x)
3465 return false;
3466
Alexis Hunte77a28f2011-05-18 03:41:58 +00003467 SourceLocation Loc = CD->getLocation();
3468
Alexis Hunt913820d2011-05-13 06:10:58 +00003469 // Do access control from the constructor
3470 ContextRAII CtorContext(*this, CD);
3471
Alexis Huntc9a55732011-05-14 05:23:28 +00003472 bool Union = RD->isUnion();
Alexis Hunt913820d2011-05-13 06:10:58 +00003473
Alexis Huntc9a55732011-05-14 05:23:28 +00003474 assert(!CD->getParamDecl(0)->getType()->getPointeeType().isNull() &&
3475 "copy assignment arg has no pointee type");
3476 bool ConstArg =
3477 CD->getParamDecl(0)->getType()->getPointeeType().isConstQualified();
Alexis Hunt913820d2011-05-13 06:10:58 +00003478
3479 // We do this because we should never actually use an anonymous
3480 // union's constructor.
3481 if (Union && RD->isAnonymousStructOrUnion())
3482 return false;
3483
3484 // FIXME: We should put some diagnostic logic right into this function.
3485
3486 // C++0x [class.copy]/11
3487 // A defaulted [copy] constructor for class X is defined as delete if X has:
3488
3489 for (CXXRecordDecl::base_class_iterator BI = RD->bases_begin(),
3490 BE = RD->bases_end();
3491 BI != BE; ++BI) {
3492 // We'll handle this one later
3493 if (BI->isVirtual())
3494 continue;
3495
3496 QualType BaseType = BI->getType();
3497 CXXRecordDecl *BaseDecl = BaseType->getAsCXXRecordDecl();
3498 assert(BaseDecl && "base isn't a CXXRecordDecl");
3499
3500 // -- any [direct base class] of a type with a destructor that is deleted or
3501 // inaccessible from the defaulted constructor
3502 CXXDestructorDecl *BaseDtor = LookupDestructor(BaseDecl);
3503 if (BaseDtor->isDeleted())
3504 return true;
Alexis Hunte77a28f2011-05-18 03:41:58 +00003505 if (CheckDestructorAccess(Loc, BaseDtor, PDiag()) !=
Alexis Hunt913820d2011-05-13 06:10:58 +00003506 AR_accessible)
3507 return true;
3508
3509 // -- a [direct base class] B that cannot be [copied] because overload
3510 // resolution, as applied to B's [copy] constructor, results in an
3511 // ambiguity or a function that is deleted or inaccessible from the
3512 // defaulted constructor
3513 InitializedEntity BaseEntity =
3514 InitializedEntity::InitializeBase(Context, BI, 0);
3515 InitializationKind Kind =
Alexis Hunte77a28f2011-05-18 03:41:58 +00003516 InitializationKind::CreateDirect(Loc, Loc, Loc);
Alexis Hunt913820d2011-05-13 06:10:58 +00003517
3518 // Construct a fake expression to perform the copy overloading.
3519 QualType ArgType = BaseType.getUnqualifiedType();
Alexis Hunt913820d2011-05-13 06:10:58 +00003520 if (ConstArg)
3521 ArgType.addConst();
Alexis Hunte77a28f2011-05-18 03:41:58 +00003522 Expr *Arg = new (Context) OpaqueValueExpr(Loc, ArgType, VK_LValue);
Alexis Hunt913820d2011-05-13 06:10:58 +00003523
3524 InitializationSequence InitSeq(*this, BaseEntity, Kind, &Arg, 1);
3525
3526 if (InitSeq.getKind() == InitializationSequence::FailedSequence)
3527 return true;
3528 }
3529
3530 for (CXXRecordDecl::base_class_iterator BI = RD->vbases_begin(),
3531 BE = RD->vbases_end();
3532 BI != BE; ++BI) {
3533 QualType BaseType = BI->getType();
3534 CXXRecordDecl *BaseDecl = BaseType->getAsCXXRecordDecl();
3535 assert(BaseDecl && "base isn't a CXXRecordDecl");
3536
3537 // -- any [direct base class] of a type with a destructor that is deleted or
3538 // inaccessible from the defaulted constructor
3539 CXXDestructorDecl *BaseDtor = LookupDestructor(BaseDecl);
3540 if (BaseDtor->isDeleted())
3541 return true;
Alexis Hunte77a28f2011-05-18 03:41:58 +00003542 if (CheckDestructorAccess(Loc, BaseDtor, PDiag()) !=
Alexis Hunt913820d2011-05-13 06:10:58 +00003543 AR_accessible)
3544 return true;
3545
3546 // -- a [virtual base class] B that cannot be [copied] because overload
3547 // resolution, as applied to B's [copy] constructor, results in an
3548 // ambiguity or a function that is deleted or inaccessible from the
3549 // defaulted constructor
3550 InitializedEntity BaseEntity =
3551 InitializedEntity::InitializeBase(Context, BI, BI);
3552 InitializationKind Kind =
Alexis Hunte77a28f2011-05-18 03:41:58 +00003553 InitializationKind::CreateDirect(Loc, Loc, Loc);
Alexis Hunt913820d2011-05-13 06:10:58 +00003554
3555 // Construct a fake expression to perform the copy overloading.
3556 QualType ArgType = BaseType.getUnqualifiedType();
Alexis Hunt913820d2011-05-13 06:10:58 +00003557 if (ConstArg)
3558 ArgType.addConst();
Alexis Hunte77a28f2011-05-18 03:41:58 +00003559 Expr *Arg = new (Context) OpaqueValueExpr(Loc, ArgType, VK_LValue);
Alexis Hunt913820d2011-05-13 06:10:58 +00003560
3561 InitializationSequence InitSeq(*this, BaseEntity, Kind, &Arg, 1);
3562
3563 if (InitSeq.getKind() == InitializationSequence::FailedSequence)
3564 return true;
3565 }
3566
3567 for (CXXRecordDecl::field_iterator FI = RD->field_begin(),
3568 FE = RD->field_end();
3569 FI != FE; ++FI) {
3570 QualType FieldType = Context.getBaseElementType(FI->getType());
3571
3572 // -- for a copy constructor, a non-static data member of rvalue reference
3573 // type
3574 if (FieldType->isRValueReferenceType())
3575 return true;
3576
3577 CXXRecordDecl *FieldRecord = FieldType->getAsCXXRecordDecl();
3578
3579 if (FieldRecord) {
3580 // This is an anonymous union
3581 if (FieldRecord->isUnion() && FieldRecord->isAnonymousStructOrUnion()) {
3582 // Anonymous unions inside unions do not variant members create
3583 if (!Union) {
3584 for (CXXRecordDecl::field_iterator UI = FieldRecord->field_begin(),
3585 UE = FieldRecord->field_end();
3586 UI != UE; ++UI) {
3587 QualType UnionFieldType = Context.getBaseElementType(UI->getType());
3588 CXXRecordDecl *UnionFieldRecord =
3589 UnionFieldType->getAsCXXRecordDecl();
3590
3591 // -- a variant member with a non-trivial [copy] constructor and X
3592 // is a union-like class
3593 if (UnionFieldRecord &&
3594 !UnionFieldRecord->hasTrivialCopyConstructor())
3595 return true;
3596 }
3597 }
3598
3599 // Don't try to initalize an anonymous union
3600 continue;
3601 } else {
3602 // -- a variant member with a non-trivial [copy] constructor and X is a
3603 // union-like class
3604 if (Union && !FieldRecord->hasTrivialCopyConstructor())
3605 return true;
3606
3607 // -- any [non-static data member] of a type with a destructor that is
3608 // deleted or inaccessible from the defaulted constructor
3609 CXXDestructorDecl *FieldDtor = LookupDestructor(FieldRecord);
3610 if (FieldDtor->isDeleted())
3611 return true;
Alexis Hunte77a28f2011-05-18 03:41:58 +00003612 if (CheckDestructorAccess(Loc, FieldDtor, PDiag()) !=
Alexis Hunt913820d2011-05-13 06:10:58 +00003613 AR_accessible)
3614 return true;
3615 }
3616 }
3617
Alexis Huntb5b14c82011-05-13 21:10:11 +00003618 llvm::SmallVector<InitializedEntity, 4> Entities;
3619 QualType CurType = FI->getType();
3620 Entities.push_back(InitializedEntity::InitializeMember(*FI, 0));
3621 while (CurType->isArrayType()) {
3622 Entities.push_back(InitializedEntity::InitializeElement(Context, 0,
3623 Entities.back()));
3624 CurType = Context.getAsArrayType(CurType)->getElementType();
3625 }
3626
Alexis Hunt913820d2011-05-13 06:10:58 +00003627 InitializationKind Kind =
Alexis Hunte77a28f2011-05-18 03:41:58 +00003628 InitializationKind::CreateDirect(Loc, Loc, Loc);
Alexis Hunt913820d2011-05-13 06:10:58 +00003629
3630 // Construct a fake expression to perform the copy overloading.
3631 QualType ArgType = FieldType;
3632 if (ArgType->isReferenceType())
3633 ArgType = ArgType->getPointeeType();
Alexis Huntc9a55732011-05-14 05:23:28 +00003634 else if (ConstArg)
Alexis Hunt913820d2011-05-13 06:10:58 +00003635 ArgType.addConst();
Alexis Hunte77a28f2011-05-18 03:41:58 +00003636 Expr *Arg = new (Context) OpaqueValueExpr(Loc, ArgType, VK_LValue);
Alexis Hunt913820d2011-05-13 06:10:58 +00003637
Alexis Huntb5b14c82011-05-13 21:10:11 +00003638 InitializationSequence InitSeq(*this, Entities.back(), Kind, &Arg, 1);
Alexis Hunt913820d2011-05-13 06:10:58 +00003639
3640 if (InitSeq.getKind() == InitializationSequence::FailedSequence)
3641 return true;
3642 }
3643
3644 return false;
3645}
3646
Alexis Huntb2f27802011-05-14 05:23:24 +00003647bool Sema::ShouldDeleteCopyAssignmentOperator(CXXMethodDecl *MD) {
3648 CXXRecordDecl *RD = MD->getParent();
3649 assert(!RD->isDependentType() && "do deletion after instantiation");
3650 if (!LangOpts.CPlusPlus0x)
3651 return false;
3652
Alexis Hunte77a28f2011-05-18 03:41:58 +00003653 SourceLocation Loc = MD->getLocation();
3654
Alexis Huntb2f27802011-05-14 05:23:24 +00003655 // Do access control from the constructor
3656 ContextRAII MethodContext(*this, MD);
3657
3658 bool Union = RD->isUnion();
3659
Alexis Huntc9a55732011-05-14 05:23:28 +00003660 bool ConstArg =
3661 MD->getParamDecl(0)->getType()->getPointeeType().isConstQualified();
Alexis Huntb2f27802011-05-14 05:23:24 +00003662
3663 // We do this because we should never actually use an anonymous
3664 // union's constructor.
3665 if (Union && RD->isAnonymousStructOrUnion())
3666 return false;
3667
3668 DeclarationName OperatorName =
3669 Context.DeclarationNames.getCXXOperatorName(OO_Equal);
Alexis Hunte77a28f2011-05-18 03:41:58 +00003670 LookupResult R(*this, OperatorName, Loc, LookupOrdinaryName);
Alexis Huntb2f27802011-05-14 05:23:24 +00003671 R.suppressDiagnostics();
3672
3673 // FIXME: We should put some diagnostic logic right into this function.
3674
3675 // C++0x [class.copy]/11
3676 // A defaulted [copy] assignment operator for class X is defined as deleted
3677 // if X has:
3678
3679 for (CXXRecordDecl::base_class_iterator BI = RD->bases_begin(),
3680 BE = RD->bases_end();
3681 BI != BE; ++BI) {
3682 // We'll handle this one later
3683 if (BI->isVirtual())
3684 continue;
3685
3686 QualType BaseType = BI->getType();
3687 CXXRecordDecl *BaseDecl = BaseType->getAsCXXRecordDecl();
3688 assert(BaseDecl && "base isn't a CXXRecordDecl");
3689
3690 // -- a [direct base class] B that cannot be [copied] because overload
3691 // resolution, as applied to B's [copy] assignment operator, results in
Alexis Huntc9a55732011-05-14 05:23:28 +00003692 // an ambiguity or a function that is deleted or inaccessible from the
Alexis Huntb2f27802011-05-14 05:23:24 +00003693 // assignment operator
3694
3695 LookupQualifiedName(R, BaseDecl, false);
3696
3697 // Filter out any result that isn't a copy-assignment operator.
3698 LookupResult::Filter F = R.makeFilter();
3699 while (F.hasNext()) {
3700 NamedDecl *D = F.next();
3701 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
3702 if (Method->isCopyAssignmentOperator())
3703 continue;
3704
3705 F.erase();
3706 }
3707 F.done();
3708
3709 // Build a fake argument expression
3710 QualType ArgType = BaseType;
Alexis Huntc9a55732011-05-14 05:23:28 +00003711 QualType ThisType = BaseType;
Alexis Huntb2f27802011-05-14 05:23:24 +00003712 if (ConstArg)
3713 ArgType.addConst();
Alexis Hunte77a28f2011-05-18 03:41:58 +00003714 Expr *Args[] = { new (Context) OpaqueValueExpr(Loc, ThisType, VK_LValue)
3715 , new (Context) OpaqueValueExpr(Loc, ArgType, VK_LValue)
Alexis Huntc9a55732011-05-14 05:23:28 +00003716 };
Alexis Huntb2f27802011-05-14 05:23:24 +00003717
Alexis Hunte77a28f2011-05-18 03:41:58 +00003718 OverloadCandidateSet OCS((Loc));
Alexis Huntb2f27802011-05-14 05:23:24 +00003719 OverloadCandidateSet::iterator Best;
3720
Alexis Huntc9a55732011-05-14 05:23:28 +00003721 AddFunctionCandidates(R.asUnresolvedSet(), Args, 2, OCS);
Alexis Huntb2f27802011-05-14 05:23:24 +00003722
Alexis Hunte77a28f2011-05-18 03:41:58 +00003723 if (OCS.BestViableFunction(*this, Loc, Best, false) !=
Alexis Huntb2f27802011-05-14 05:23:24 +00003724 OR_Success)
3725 return true;
3726 }
3727
3728 for (CXXRecordDecl::base_class_iterator BI = RD->vbases_begin(),
3729 BE = RD->vbases_end();
3730 BI != BE; ++BI) {
3731 QualType BaseType = BI->getType();
3732 CXXRecordDecl *BaseDecl = BaseType->getAsCXXRecordDecl();
3733 assert(BaseDecl && "base isn't a CXXRecordDecl");
3734
Alexis Huntb2f27802011-05-14 05:23:24 +00003735 // -- a [virtual base class] B that cannot be [copied] because overload
Alexis Huntc9a55732011-05-14 05:23:28 +00003736 // resolution, as applied to B's [copy] assignment operator, results in
3737 // an ambiguity or a function that is deleted or inaccessible from the
3738 // assignment operator
Alexis Huntb2f27802011-05-14 05:23:24 +00003739
Alexis Huntc9a55732011-05-14 05:23:28 +00003740 LookupQualifiedName(R, BaseDecl, false);
3741
3742 // Filter out any result that isn't a copy-assignment operator.
3743 LookupResult::Filter F = R.makeFilter();
3744 while (F.hasNext()) {
3745 NamedDecl *D = F.next();
3746 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
3747 if (Method->isCopyAssignmentOperator())
3748 continue;
3749
3750 F.erase();
3751 }
3752 F.done();
3753
3754 // Build a fake argument expression
3755 QualType ArgType = BaseType;
3756 QualType ThisType = BaseType;
Alexis Huntb2f27802011-05-14 05:23:24 +00003757 if (ConstArg)
3758 ArgType.addConst();
Alexis Hunte77a28f2011-05-18 03:41:58 +00003759 Expr *Args[] = { new (Context) OpaqueValueExpr(Loc, ThisType, VK_LValue)
3760 , new (Context) OpaqueValueExpr(Loc, ArgType, VK_LValue)
Alexis Huntc9a55732011-05-14 05:23:28 +00003761 };
Alexis Huntb2f27802011-05-14 05:23:24 +00003762
Alexis Hunte77a28f2011-05-18 03:41:58 +00003763 OverloadCandidateSet OCS((Loc));
Alexis Huntc9a55732011-05-14 05:23:28 +00003764 OverloadCandidateSet::iterator Best;
Alexis Huntb2f27802011-05-14 05:23:24 +00003765
Alexis Huntc9a55732011-05-14 05:23:28 +00003766 AddFunctionCandidates(R.asUnresolvedSet(), Args, 2, OCS);
3767
Alexis Hunte77a28f2011-05-18 03:41:58 +00003768 if (OCS.BestViableFunction(*this, Loc, Best, false) !=
Alexis Huntc9a55732011-05-14 05:23:28 +00003769 OR_Success)
Alexis Huntb2f27802011-05-14 05:23:24 +00003770 return true;
Alexis Huntb2f27802011-05-14 05:23:24 +00003771 }
3772
3773 for (CXXRecordDecl::field_iterator FI = RD->field_begin(),
3774 FE = RD->field_end();
3775 FI != FE; ++FI) {
3776 QualType FieldType = Context.getBaseElementType(FI->getType());
3777
3778 // -- a non-static data member of reference type
3779 if (FieldType->isReferenceType())
3780 return true;
3781
3782 // -- a non-static data member of const non-class type (or array thereof)
3783 if (FieldType.isConstQualified() && !FieldType->isRecordType())
3784 return true;
3785
3786 CXXRecordDecl *FieldRecord = FieldType->getAsCXXRecordDecl();
3787
3788 if (FieldRecord) {
3789 // This is an anonymous union
3790 if (FieldRecord->isUnion() && FieldRecord->isAnonymousStructOrUnion()) {
3791 // Anonymous unions inside unions do not variant members create
3792 if (!Union) {
3793 for (CXXRecordDecl::field_iterator UI = FieldRecord->field_begin(),
3794 UE = FieldRecord->field_end();
3795 UI != UE; ++UI) {
3796 QualType UnionFieldType = Context.getBaseElementType(UI->getType());
3797 CXXRecordDecl *UnionFieldRecord =
3798 UnionFieldType->getAsCXXRecordDecl();
3799
3800 // -- a variant member with a non-trivial [copy] assignment operator
3801 // and X is a union-like class
3802 if (UnionFieldRecord &&
3803 !UnionFieldRecord->hasTrivialCopyAssignment())
3804 return true;
3805 }
3806 }
3807
3808 // Don't try to initalize an anonymous union
3809 continue;
3810 // -- a variant member with a non-trivial [copy] assignment operator
3811 // and X is a union-like class
3812 } else if (Union && !FieldRecord->hasTrivialCopyAssignment()) {
3813 return true;
3814 }
Alexis Huntb2f27802011-05-14 05:23:24 +00003815
Alexis Huntc9a55732011-05-14 05:23:28 +00003816 LookupQualifiedName(R, FieldRecord, false);
Alexis Huntb2f27802011-05-14 05:23:24 +00003817
Alexis Huntc9a55732011-05-14 05:23:28 +00003818 // Filter out any result that isn't a copy-assignment operator.
3819 LookupResult::Filter F = R.makeFilter();
3820 while (F.hasNext()) {
3821 NamedDecl *D = F.next();
3822 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
3823 if (Method->isCopyAssignmentOperator())
3824 continue;
3825
3826 F.erase();
3827 }
3828 F.done();
Alexis Huntb2f27802011-05-14 05:23:24 +00003829
Alexis Huntc9a55732011-05-14 05:23:28 +00003830 // Build a fake argument expression
3831 QualType ArgType = FieldType;
3832 QualType ThisType = FieldType;
3833 if (ConstArg)
3834 ArgType.addConst();
Alexis Hunte77a28f2011-05-18 03:41:58 +00003835 Expr *Args[] = { new (Context) OpaqueValueExpr(Loc, ThisType, VK_LValue)
3836 , new (Context) OpaqueValueExpr(Loc, ArgType, VK_LValue)
Alexis Huntc9a55732011-05-14 05:23:28 +00003837 };
Alexis Huntb2f27802011-05-14 05:23:24 +00003838
Alexis Hunte77a28f2011-05-18 03:41:58 +00003839 OverloadCandidateSet OCS((Loc));
Alexis Huntc9a55732011-05-14 05:23:28 +00003840 OverloadCandidateSet::iterator Best;
3841
3842 AddFunctionCandidates(R.asUnresolvedSet(), Args, 2, OCS);
3843
Alexis Hunte77a28f2011-05-18 03:41:58 +00003844 if (OCS.BestViableFunction(*this, Loc, Best, false) !=
Alexis Huntc9a55732011-05-14 05:23:28 +00003845 OR_Success)
3846 return true;
3847 }
Alexis Huntb2f27802011-05-14 05:23:24 +00003848 }
3849
3850 return false;
3851}
3852
Alexis Huntf91729462011-05-12 22:46:25 +00003853bool Sema::ShouldDeleteDestructor(CXXDestructorDecl *DD) {
3854 CXXRecordDecl *RD = DD->getParent();
3855 assert(!RD->isDependentType() && "do deletion after instantiation");
3856 if (!LangOpts.CPlusPlus0x)
3857 return false;
3858
Alexis Hunte77a28f2011-05-18 03:41:58 +00003859 SourceLocation Loc = DD->getLocation();
3860
Alexis Huntf91729462011-05-12 22:46:25 +00003861 // Do access control from the destructor
3862 ContextRAII CtorContext(*this, DD);
3863
3864 bool Union = RD->isUnion();
3865
Alexis Hunt913820d2011-05-13 06:10:58 +00003866 // We do this because we should never actually use an anonymous
3867 // union's destructor.
3868 if (Union && RD->isAnonymousStructOrUnion())
3869 return false;
3870
Alexis Huntf91729462011-05-12 22:46:25 +00003871 // C++0x [class.dtor]p5
3872 // A defaulted destructor for a class X is defined as deleted if:
3873 for (CXXRecordDecl::base_class_iterator BI = RD->bases_begin(),
3874 BE = RD->bases_end();
3875 BI != BE; ++BI) {
3876 // We'll handle this one later
3877 if (BI->isVirtual())
3878 continue;
3879
3880 CXXRecordDecl *BaseDecl = BI->getType()->getAsCXXRecordDecl();
3881 CXXDestructorDecl *BaseDtor = LookupDestructor(BaseDecl);
3882 assert(BaseDtor && "base has no destructor");
3883
3884 // -- any direct or virtual base class has a deleted destructor or
3885 // a destructor that is inaccessible from the defaulted destructor
3886 if (BaseDtor->isDeleted())
3887 return true;
Alexis Hunte77a28f2011-05-18 03:41:58 +00003888 if (CheckDestructorAccess(Loc, BaseDtor, PDiag()) !=
Alexis Huntf91729462011-05-12 22:46:25 +00003889 AR_accessible)
3890 return true;
3891 }
3892
3893 for (CXXRecordDecl::base_class_iterator BI = RD->vbases_begin(),
3894 BE = RD->vbases_end();
3895 BI != BE; ++BI) {
3896 CXXRecordDecl *BaseDecl = BI->getType()->getAsCXXRecordDecl();
3897 CXXDestructorDecl *BaseDtor = LookupDestructor(BaseDecl);
3898 assert(BaseDtor && "base has no destructor");
3899
3900 // -- any direct or virtual base class has a deleted destructor or
3901 // a destructor that is inaccessible from the defaulted destructor
3902 if (BaseDtor->isDeleted())
3903 return true;
Alexis Hunte77a28f2011-05-18 03:41:58 +00003904 if (CheckDestructorAccess(Loc, BaseDtor, PDiag()) !=
Alexis Huntf91729462011-05-12 22:46:25 +00003905 AR_accessible)
3906 return true;
3907 }
3908
3909 for (CXXRecordDecl::field_iterator FI = RD->field_begin(),
3910 FE = RD->field_end();
3911 FI != FE; ++FI) {
3912 QualType FieldType = Context.getBaseElementType(FI->getType());
3913 CXXRecordDecl *FieldRecord = FieldType->getAsCXXRecordDecl();
3914 if (FieldRecord) {
3915 if (FieldRecord->isUnion() && FieldRecord->isAnonymousStructOrUnion()) {
3916 for (CXXRecordDecl::field_iterator UI = FieldRecord->field_begin(),
3917 UE = FieldRecord->field_end();
3918 UI != UE; ++UI) {
3919 QualType UnionFieldType = Context.getBaseElementType(FI->getType());
3920 CXXRecordDecl *UnionFieldRecord =
3921 UnionFieldType->getAsCXXRecordDecl();
3922
3923 // -- X is a union-like class that has a variant member with a non-
3924 // trivial destructor.
3925 if (UnionFieldRecord && !UnionFieldRecord->hasTrivialDestructor())
3926 return true;
3927 }
3928 // Technically we are supposed to do this next check unconditionally.
3929 // But that makes absolutely no sense.
3930 } else {
3931 CXXDestructorDecl *FieldDtor = LookupDestructor(FieldRecord);
3932
3933 // -- any of the non-static data members has class type M (or array
3934 // thereof) and M has a deleted destructor or a destructor that is
3935 // inaccessible from the defaulted destructor
3936 if (FieldDtor->isDeleted())
3937 return true;
Alexis Hunte77a28f2011-05-18 03:41:58 +00003938 if (CheckDestructorAccess(Loc, FieldDtor, PDiag()) !=
Alexis Huntf91729462011-05-12 22:46:25 +00003939 AR_accessible)
3940 return true;
3941
3942 // -- X is a union-like class that has a variant member with a non-
3943 // trivial destructor.
3944 if (Union && !FieldDtor->isTrivial())
3945 return true;
3946 }
3947 }
3948 }
3949
3950 if (DD->isVirtual()) {
3951 FunctionDecl *OperatorDelete = 0;
3952 DeclarationName Name =
3953 Context.DeclarationNames.getCXXOperatorName(OO_Delete);
Alexis Hunte77a28f2011-05-18 03:41:58 +00003954 if (FindDeallocationFunction(Loc, RD, Name, OperatorDelete,
Alexis Huntf91729462011-05-12 22:46:25 +00003955 false))
3956 return true;
3957 }
3958
3959
3960 return false;
3961}
3962
Argyrios Kyrtzidis7272d9c2011-02-03 18:01:15 +00003963/// \brief Data used with FindHiddenVirtualMethod
Benjamin Kramer024e6192011-03-04 13:12:48 +00003964namespace {
3965 struct FindHiddenVirtualMethodData {
3966 Sema *S;
3967 CXXMethodDecl *Method;
3968 llvm::SmallPtrSet<const CXXMethodDecl *, 8> OverridenAndUsingBaseMethods;
3969 llvm::SmallVector<CXXMethodDecl *, 8> OverloadedMethods;
3970 };
3971}
Argyrios Kyrtzidis7272d9c2011-02-03 18:01:15 +00003972
3973/// \brief Member lookup function that determines whether a given C++
3974/// method overloads virtual methods in a base class without overriding any,
3975/// to be used with CXXRecordDecl::lookupInBases().
3976static bool FindHiddenVirtualMethod(const CXXBaseSpecifier *Specifier,
3977 CXXBasePath &Path,
3978 void *UserData) {
3979 RecordDecl *BaseRecord = Specifier->getType()->getAs<RecordType>()->getDecl();
3980
3981 FindHiddenVirtualMethodData &Data
3982 = *static_cast<FindHiddenVirtualMethodData*>(UserData);
3983
3984 DeclarationName Name = Data.Method->getDeclName();
3985 assert(Name.getNameKind() == DeclarationName::Identifier);
3986
3987 bool foundSameNameMethod = false;
3988 llvm::SmallVector<CXXMethodDecl *, 8> overloadedMethods;
3989 for (Path.Decls = BaseRecord->lookup(Name);
3990 Path.Decls.first != Path.Decls.second;
3991 ++Path.Decls.first) {
3992 NamedDecl *D = *Path.Decls.first;
3993 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) {
Argyrios Kyrtzidis7dd856a2011-02-10 18:13:41 +00003994 MD = MD->getCanonicalDecl();
Argyrios Kyrtzidis7272d9c2011-02-03 18:01:15 +00003995 foundSameNameMethod = true;
3996 // Interested only in hidden virtual methods.
3997 if (!MD->isVirtual())
3998 continue;
3999 // If the method we are checking overrides a method from its base
4000 // don't warn about the other overloaded methods.
4001 if (!Data.S->IsOverload(Data.Method, MD, false))
4002 return true;
4003 // Collect the overload only if its hidden.
4004 if (!Data.OverridenAndUsingBaseMethods.count(MD))
4005 overloadedMethods.push_back(MD);
4006 }
4007 }
4008
4009 if (foundSameNameMethod)
4010 Data.OverloadedMethods.append(overloadedMethods.begin(),
4011 overloadedMethods.end());
4012 return foundSameNameMethod;
4013}
4014
4015/// \brief See if a method overloads virtual methods in a base class without
4016/// overriding any.
4017void Sema::DiagnoseHiddenVirtualMethods(CXXRecordDecl *DC, CXXMethodDecl *MD) {
4018 if (Diags.getDiagnosticLevel(diag::warn_overloaded_virtual,
4019 MD->getLocation()) == Diagnostic::Ignored)
4020 return;
4021 if (MD->getDeclName().getNameKind() != DeclarationName::Identifier)
4022 return;
4023
4024 CXXBasePaths Paths(/*FindAmbiguities=*/true, // true to look in all bases.
4025 /*bool RecordPaths=*/false,
4026 /*bool DetectVirtual=*/false);
4027 FindHiddenVirtualMethodData Data;
4028 Data.Method = MD;
4029 Data.S = this;
4030
4031 // Keep the base methods that were overriden or introduced in the subclass
4032 // by 'using' in a set. A base method not in this set is hidden.
4033 for (DeclContext::lookup_result res = DC->lookup(MD->getDeclName());
4034 res.first != res.second; ++res.first) {
4035 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(*res.first))
4036 for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(),
4037 E = MD->end_overridden_methods();
4038 I != E; ++I)
Argyrios Kyrtzidis7dd856a2011-02-10 18:13:41 +00004039 Data.OverridenAndUsingBaseMethods.insert((*I)->getCanonicalDecl());
Argyrios Kyrtzidis7272d9c2011-02-03 18:01:15 +00004040 if (UsingShadowDecl *shad = dyn_cast<UsingShadowDecl>(*res.first))
4041 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(shad->getTargetDecl()))
Argyrios Kyrtzidis7dd856a2011-02-10 18:13:41 +00004042 Data.OverridenAndUsingBaseMethods.insert(MD->getCanonicalDecl());
Argyrios Kyrtzidis7272d9c2011-02-03 18:01:15 +00004043 }
4044
4045 if (DC->lookupInBases(&FindHiddenVirtualMethod, &Data, Paths) &&
4046 !Data.OverloadedMethods.empty()) {
4047 Diag(MD->getLocation(), diag::warn_overloaded_virtual)
4048 << MD << (Data.OverloadedMethods.size() > 1);
4049
4050 for (unsigned i = 0, e = Data.OverloadedMethods.size(); i != e; ++i) {
4051 CXXMethodDecl *overloadedMD = Data.OverloadedMethods[i];
4052 Diag(overloadedMD->getLocation(),
4053 diag::note_hidden_overloaded_virtual_declared_here) << overloadedMD;
4054 }
4055 }
Douglas Gregorc99f1552009-12-03 18:33:45 +00004056}
4057
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00004058void Sema::ActOnFinishCXXMemberSpecification(Scope* S, SourceLocation RLoc,
John McCall48871652010-08-21 09:40:31 +00004059 Decl *TagDecl,
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00004060 SourceLocation LBrac,
Douglas Gregorc48a10d2010-03-29 14:42:08 +00004061 SourceLocation RBrac,
4062 AttributeList *AttrList) {
Douglas Gregor71a57182009-06-22 23:20:33 +00004063 if (!TagDecl)
4064 return;
Mike Stump11289f42009-09-09 15:08:12 +00004065
Douglas Gregorc9f9b862009-05-11 19:58:34 +00004066 AdjustDeclIfTemplate(TagDecl);
Douglas Gregorc99f1552009-12-03 18:33:45 +00004067
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00004068 ActOnFields(S, RLoc, TagDecl,
John McCall48871652010-08-21 09:40:31 +00004069 // strict aliasing violation!
4070 reinterpret_cast<Decl**>(FieldCollector->getCurFields()),
Douglas Gregorc48a10d2010-03-29 14:42:08 +00004071 FieldCollector->getCurNumFields(), LBrac, RBrac, AttrList);
Douglas Gregor463421d2009-03-03 04:44:36 +00004072
Douglas Gregor0be31a22010-07-02 17:43:08 +00004073 CheckCompletedCXXClass(
John McCall48871652010-08-21 09:40:31 +00004074 dyn_cast_or_null<CXXRecordDecl>(TagDecl));
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00004075}
4076
Douglas Gregor05379422008-11-03 17:51:48 +00004077/// AddImplicitlyDeclaredMembersToClass - Adds any implicitly-declared
4078/// special functions, such as the default constructor, copy
4079/// constructor, or destructor, to the given C++ class (C++
4080/// [special]p1). This routine can only be executed just before the
4081/// definition of the class is complete.
Douglas Gregor0be31a22010-07-02 17:43:08 +00004082void Sema::AddImplicitlyDeclaredMembersToClass(CXXRecordDecl *ClassDecl) {
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00004083 if (!ClassDecl->hasUserDeclaredConstructor())
Douglas Gregor9672f922010-07-03 00:47:00 +00004084 ++ASTContext::NumImplicitDefaultConstructors;
Douglas Gregor05379422008-11-03 17:51:48 +00004085
Douglas Gregor54be3392010-07-01 17:57:27 +00004086 if (!ClassDecl->hasUserDeclaredCopyConstructor())
Douglas Gregora6d69502010-07-02 23:41:54 +00004087 ++ASTContext::NumImplicitCopyConstructors;
Douglas Gregor05379422008-11-03 17:51:48 +00004088
Douglas Gregor330b9cf2010-07-02 21:50:04 +00004089 if (!ClassDecl->hasUserDeclaredCopyAssignment()) {
4090 ++ASTContext::NumImplicitCopyAssignmentOperators;
4091
4092 // If we have a dynamic class, then the copy assignment operator may be
4093 // virtual, so we have to declare it immediately. This ensures that, e.g.,
4094 // it shows up in the right place in the vtable and that we diagnose
4095 // problems with the implicit exception specification.
4096 if (ClassDecl->isDynamicClass())
4097 DeclareImplicitCopyAssignment(ClassDecl);
4098 }
Sebastian Redlbaad4e72009-01-05 20:52:13 +00004099
Douglas Gregor7454c562010-07-02 20:37:36 +00004100 if (!ClassDecl->hasUserDeclaredDestructor()) {
4101 ++ASTContext::NumImplicitDestructors;
4102
4103 // If we have a dynamic class, then the destructor may be virtual, so we
4104 // have to declare the destructor immediately. This ensures that, e.g., it
4105 // shows up in the right place in the vtable and that we diagnose problems
4106 // with the implicit exception specification.
4107 if (ClassDecl->isDynamicClass())
4108 DeclareImplicitDestructor(ClassDecl);
4109 }
Douglas Gregor05379422008-11-03 17:51:48 +00004110}
4111
Francois Pichet1c229c02011-04-22 22:18:13 +00004112void Sema::ActOnReenterDeclaratorTemplateScope(Scope *S, DeclaratorDecl *D) {
4113 if (!D)
4114 return;
4115
4116 int NumParamList = D->getNumTemplateParameterLists();
4117 for (int i = 0; i < NumParamList; i++) {
4118 TemplateParameterList* Params = D->getTemplateParameterList(i);
4119 for (TemplateParameterList::iterator Param = Params->begin(),
4120 ParamEnd = Params->end();
4121 Param != ParamEnd; ++Param) {
4122 NamedDecl *Named = cast<NamedDecl>(*Param);
4123 if (Named->getDeclName()) {
4124 S->AddDecl(Named);
4125 IdResolver.AddDecl(Named);
4126 }
4127 }
4128 }
4129}
4130
John McCall48871652010-08-21 09:40:31 +00004131void Sema::ActOnReenterTemplateScope(Scope *S, Decl *D) {
Douglas Gregore61ef622009-09-10 00:12:48 +00004132 if (!D)
4133 return;
4134
4135 TemplateParameterList *Params = 0;
4136 if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D))
4137 Params = Template->getTemplateParameters();
4138 else if (ClassTemplatePartialSpecializationDecl *PartialSpec
4139 = dyn_cast<ClassTemplatePartialSpecializationDecl>(D))
4140 Params = PartialSpec->getTemplateParameters();
4141 else
Douglas Gregore44a2ad2009-05-27 23:11:45 +00004142 return;
4143
Douglas Gregore44a2ad2009-05-27 23:11:45 +00004144 for (TemplateParameterList::iterator Param = Params->begin(),
4145 ParamEnd = Params->end();
4146 Param != ParamEnd; ++Param) {
4147 NamedDecl *Named = cast<NamedDecl>(*Param);
4148 if (Named->getDeclName()) {
John McCall48871652010-08-21 09:40:31 +00004149 S->AddDecl(Named);
Douglas Gregore44a2ad2009-05-27 23:11:45 +00004150 IdResolver.AddDecl(Named);
4151 }
4152 }
4153}
4154
John McCall48871652010-08-21 09:40:31 +00004155void Sema::ActOnStartDelayedMemberDeclarations(Scope *S, Decl *RecordD) {
John McCall6df5fef2009-12-19 10:49:29 +00004156 if (!RecordD) return;
4157 AdjustDeclIfTemplate(RecordD);
John McCall48871652010-08-21 09:40:31 +00004158 CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordD);
John McCall6df5fef2009-12-19 10:49:29 +00004159 PushDeclContext(S, Record);
4160}
4161
John McCall48871652010-08-21 09:40:31 +00004162void Sema::ActOnFinishDelayedMemberDeclarations(Scope *S, Decl *RecordD) {
John McCall6df5fef2009-12-19 10:49:29 +00004163 if (!RecordD) return;
4164 PopDeclContext();
4165}
4166
Douglas Gregor4d87df52008-12-16 21:30:33 +00004167/// ActOnStartDelayedCXXMethodDeclaration - We have completed
4168/// parsing a top-level (non-nested) C++ class, and we are now
4169/// parsing those parts of the given Method declaration that could
4170/// not be parsed earlier (C++ [class.mem]p2), such as default
4171/// arguments. This action should enter the scope of the given
4172/// Method declaration as if we had just parsed the qualified method
4173/// name. However, it should not bring the parameters into scope;
4174/// that will be performed by ActOnDelayedCXXMethodParameter.
John McCall48871652010-08-21 09:40:31 +00004175void Sema::ActOnStartDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) {
Douglas Gregor4d87df52008-12-16 21:30:33 +00004176}
4177
4178/// ActOnDelayedCXXMethodParameter - We've already started a delayed
4179/// C++ method declaration. We're (re-)introducing the given
4180/// function parameter into scope for use in parsing later parts of
4181/// the method declaration. For example, we could see an
4182/// ActOnParamDefaultArgument event for this parameter.
John McCall48871652010-08-21 09:40:31 +00004183void Sema::ActOnDelayedCXXMethodParameter(Scope *S, Decl *ParamD) {
Douglas Gregor71a57182009-06-22 23:20:33 +00004184 if (!ParamD)
4185 return;
Mike Stump11289f42009-09-09 15:08:12 +00004186
John McCall48871652010-08-21 09:40:31 +00004187 ParmVarDecl *Param = cast<ParmVarDecl>(ParamD);
Douglas Gregor58354032008-12-24 00:01:03 +00004188
4189 // If this parameter has an unparsed default argument, clear it out
4190 // to make way for the parsed default argument.
4191 if (Param->hasUnparsedDefaultArg())
4192 Param->setDefaultArg(0);
4193
John McCall48871652010-08-21 09:40:31 +00004194 S->AddDecl(Param);
Douglas Gregor4d87df52008-12-16 21:30:33 +00004195 if (Param->getDeclName())
4196 IdResolver.AddDecl(Param);
4197}
4198
4199/// ActOnFinishDelayedCXXMethodDeclaration - We have finished
4200/// processing the delayed method declaration for Method. The method
4201/// declaration is now considered finished. There may be a separate
4202/// ActOnStartOfFunctionDef action later (not necessarily
4203/// immediately!) for this method, if it was also defined inside the
4204/// class body.
John McCall48871652010-08-21 09:40:31 +00004205void Sema::ActOnFinishDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) {
Douglas Gregor71a57182009-06-22 23:20:33 +00004206 if (!MethodD)
4207 return;
Mike Stump11289f42009-09-09 15:08:12 +00004208
Douglas Gregorc8c277a2009-08-24 11:57:43 +00004209 AdjustDeclIfTemplate(MethodD);
Mike Stump11289f42009-09-09 15:08:12 +00004210
John McCall48871652010-08-21 09:40:31 +00004211 FunctionDecl *Method = cast<FunctionDecl>(MethodD);
Douglas Gregor4d87df52008-12-16 21:30:33 +00004212
4213 // Now that we have our default arguments, check the constructor
4214 // again. It could produce additional diagnostics or affect whether
4215 // the class has implicitly-declared destructors, among other
4216 // things.
Chris Lattnerb41df4f2009-04-25 08:35:12 +00004217 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Method))
4218 CheckConstructor(Constructor);
Douglas Gregor4d87df52008-12-16 21:30:33 +00004219
4220 // Check the default arguments, which we may have added.
4221 if (!Method->isInvalidDecl())
4222 CheckCXXDefaultArguments(Method);
4223}
4224
Douglas Gregor831c93f2008-11-05 20:51:48 +00004225/// CheckConstructorDeclarator - Called by ActOnDeclarator to check
Douglas Gregor4d87df52008-12-16 21:30:33 +00004226/// the well-formedness of the constructor declarator @p D with type @p
Douglas Gregor831c93f2008-11-05 20:51:48 +00004227/// R. If there are any errors in the declarator, this routine will
Chris Lattner38378bf2009-04-25 08:28:21 +00004228/// emit diagnostics and set the invalid bit to true. In any case, the type
4229/// will be updated to reflect a well-formed type for the constructor and
4230/// returned.
4231QualType Sema::CheckConstructorDeclarator(Declarator &D, QualType R,
John McCall8e7d6562010-08-26 03:08:43 +00004232 StorageClass &SC) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00004233 bool isVirtual = D.getDeclSpec().isVirtualSpecified();
Douglas Gregor831c93f2008-11-05 20:51:48 +00004234
4235 // C++ [class.ctor]p3:
4236 // A constructor shall not be virtual (10.3) or static (9.4). A
4237 // constructor can be invoked for a const, volatile or const
4238 // volatile object. A constructor shall not be declared const,
4239 // volatile, or const volatile (9.3.2).
4240 if (isVirtual) {
Chris Lattner38378bf2009-04-25 08:28:21 +00004241 if (!D.isInvalidType())
4242 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
4243 << "virtual" << SourceRange(D.getDeclSpec().getVirtualSpecLoc())
4244 << SourceRange(D.getIdentifierLoc());
4245 D.setInvalidType();
Douglas Gregor831c93f2008-11-05 20:51:48 +00004246 }
John McCall8e7d6562010-08-26 03:08:43 +00004247 if (SC == SC_Static) {
Chris Lattner38378bf2009-04-25 08:28:21 +00004248 if (!D.isInvalidType())
4249 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
4250 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
4251 << SourceRange(D.getIdentifierLoc());
4252 D.setInvalidType();
John McCall8e7d6562010-08-26 03:08:43 +00004253 SC = SC_None;
Douglas Gregor831c93f2008-11-05 20:51:48 +00004254 }
Mike Stump11289f42009-09-09 15:08:12 +00004255
Abramo Bagnara924a8f32010-12-10 16:29:40 +00004256 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
Chris Lattner38378bf2009-04-25 08:28:21 +00004257 if (FTI.TypeQuals != 0) {
John McCall8ccfcb52009-09-24 19:53:00 +00004258 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattner3b054132008-11-19 05:08:23 +00004259 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
4260 << "const" << SourceRange(D.getIdentifierLoc());
John McCall8ccfcb52009-09-24 19:53:00 +00004261 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattner3b054132008-11-19 05:08:23 +00004262 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
4263 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall8ccfcb52009-09-24 19:53:00 +00004264 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattner3b054132008-11-19 05:08:23 +00004265 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
4266 << "restrict" << SourceRange(D.getIdentifierLoc());
John McCalldb40c7f2010-12-14 08:05:40 +00004267 D.setInvalidType();
Douglas Gregor831c93f2008-11-05 20:51:48 +00004268 }
Mike Stump11289f42009-09-09 15:08:12 +00004269
Douglas Gregordb9d6642011-01-26 05:01:58 +00004270 // C++0x [class.ctor]p4:
4271 // A constructor shall not be declared with a ref-qualifier.
4272 if (FTI.hasRefQualifier()) {
4273 Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_constructor)
4274 << FTI.RefQualifierIsLValueRef
4275 << FixItHint::CreateRemoval(FTI.getRefQualifierLoc());
4276 D.setInvalidType();
4277 }
4278
Douglas Gregor831c93f2008-11-05 20:51:48 +00004279 // Rebuild the function type "R" without any type qualifiers (in
4280 // case any of the errors above fired) and with "void" as the
Douglas Gregor95755162010-07-01 05:10:53 +00004281 // return type, since constructors don't have return types.
John McCall9dd450b2009-09-21 23:43:11 +00004282 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
John McCalldb40c7f2010-12-14 08:05:40 +00004283 if (Proto->getResultType() == Context.VoidTy && !D.isInvalidType())
4284 return R;
4285
4286 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
4287 EPI.TypeQuals = 0;
Douglas Gregordb9d6642011-01-26 05:01:58 +00004288 EPI.RefQualifier = RQ_None;
4289
Chris Lattner38378bf2009-04-25 08:28:21 +00004290 return Context.getFunctionType(Context.VoidTy, Proto->arg_type_begin(),
John McCalldb40c7f2010-12-14 08:05:40 +00004291 Proto->getNumArgs(), EPI);
Douglas Gregor831c93f2008-11-05 20:51:48 +00004292}
4293
Douglas Gregor4d87df52008-12-16 21:30:33 +00004294/// CheckConstructor - Checks a fully-formed constructor for
4295/// well-formedness, issuing any diagnostics required. Returns true if
4296/// the constructor declarator is invalid.
Chris Lattnerb41df4f2009-04-25 08:35:12 +00004297void Sema::CheckConstructor(CXXConstructorDecl *Constructor) {
Mike Stump11289f42009-09-09 15:08:12 +00004298 CXXRecordDecl *ClassDecl
Douglas Gregorf4d17c42009-03-27 04:38:56 +00004299 = dyn_cast<CXXRecordDecl>(Constructor->getDeclContext());
4300 if (!ClassDecl)
Chris Lattnerb41df4f2009-04-25 08:35:12 +00004301 return Constructor->setInvalidDecl();
Douglas Gregor4d87df52008-12-16 21:30:33 +00004302
4303 // C++ [class.copy]p3:
4304 // A declaration of a constructor for a class X is ill-formed if
4305 // its first parameter is of type (optionally cv-qualified) X and
4306 // either there are no other parameters or else all other
4307 // parameters have default arguments.
Douglas Gregorf4d17c42009-03-27 04:38:56 +00004308 if (!Constructor->isInvalidDecl() &&
Mike Stump11289f42009-09-09 15:08:12 +00004309 ((Constructor->getNumParams() == 1) ||
4310 (Constructor->getNumParams() > 1 &&
Douglas Gregorffe14e32009-11-14 01:20:54 +00004311 Constructor->getParamDecl(1)->hasDefaultArg())) &&
4312 Constructor->getTemplateSpecializationKind()
4313 != TSK_ImplicitInstantiation) {
Douglas Gregor4d87df52008-12-16 21:30:33 +00004314 QualType ParamType = Constructor->getParamDecl(0)->getType();
4315 QualType ClassTy = Context.getTagDeclType(ClassDecl);
4316 if (Context.getCanonicalType(ParamType).getUnqualifiedType() == ClassTy) {
Douglas Gregor170512f2009-04-01 23:51:29 +00004317 SourceLocation ParamLoc = Constructor->getParamDecl(0)->getLocation();
Douglas Gregorfd42e952010-05-27 21:28:21 +00004318 const char *ConstRef
4319 = Constructor->getParamDecl(0)->getIdentifier() ? "const &"
4320 : " const &";
Douglas Gregor170512f2009-04-01 23:51:29 +00004321 Diag(ParamLoc, diag::err_constructor_byvalue_arg)
Douglas Gregorfd42e952010-05-27 21:28:21 +00004322 << FixItHint::CreateInsertion(ParamLoc, ConstRef);
Douglas Gregorffe14e32009-11-14 01:20:54 +00004323
4324 // FIXME: Rather that making the constructor invalid, we should endeavor
4325 // to fix the type.
Chris Lattnerb41df4f2009-04-25 08:35:12 +00004326 Constructor->setInvalidDecl();
Douglas Gregor4d87df52008-12-16 21:30:33 +00004327 }
4328 }
Douglas Gregor4d87df52008-12-16 21:30:33 +00004329}
4330
John McCalldeb646e2010-08-04 01:04:25 +00004331/// CheckDestructor - Checks a fully-formed destructor definition for
4332/// well-formedness, issuing any diagnostics required. Returns true
4333/// on error.
Anders Carlssonf98849e2009-12-02 17:15:43 +00004334bool Sema::CheckDestructor(CXXDestructorDecl *Destructor) {
Anders Carlsson2a50e952009-11-15 22:49:34 +00004335 CXXRecordDecl *RD = Destructor->getParent();
4336
4337 if (Destructor->isVirtual()) {
4338 SourceLocation Loc;
4339
4340 if (!Destructor->isImplicit())
4341 Loc = Destructor->getLocation();
4342 else
4343 Loc = RD->getLocation();
4344
4345 // If we have a virtual destructor, look up the deallocation function
4346 FunctionDecl *OperatorDelete = 0;
4347 DeclarationName Name =
4348 Context.DeclarationNames.getCXXOperatorName(OO_Delete);
Anders Carlssonf98849e2009-12-02 17:15:43 +00004349 if (FindDeallocationFunction(Loc, RD, Name, OperatorDelete))
Anders Carlsson26a807d2009-11-30 21:24:50 +00004350 return true;
John McCall1e5d75d2010-07-03 18:33:00 +00004351
4352 MarkDeclarationReferenced(Loc, OperatorDelete);
Anders Carlsson26a807d2009-11-30 21:24:50 +00004353
4354 Destructor->setOperatorDelete(OperatorDelete);
Anders Carlsson2a50e952009-11-15 22:49:34 +00004355 }
Anders Carlsson26a807d2009-11-30 21:24:50 +00004356
4357 return false;
Anders Carlsson2a50e952009-11-15 22:49:34 +00004358}
4359
Mike Stump11289f42009-09-09 15:08:12 +00004360static inline bool
Anders Carlsson5e965472009-04-30 23:18:11 +00004361FTIHasSingleVoidArgument(DeclaratorChunk::FunctionTypeInfo &FTI) {
4362 return (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
4363 FTI.ArgInfo[0].Param &&
John McCall48871652010-08-21 09:40:31 +00004364 cast<ParmVarDecl>(FTI.ArgInfo[0].Param)->getType()->isVoidType());
Anders Carlsson5e965472009-04-30 23:18:11 +00004365}
4366
Douglas Gregor831c93f2008-11-05 20:51:48 +00004367/// CheckDestructorDeclarator - Called by ActOnDeclarator to check
4368/// the well-formednes of the destructor declarator @p D with type @p
4369/// R. If there are any errors in the declarator, this routine will
Chris Lattner38378bf2009-04-25 08:28:21 +00004370/// emit diagnostics and set the declarator to invalid. Even if this happens,
4371/// will be updated to reflect a well-formed type for the destructor and
4372/// returned.
Douglas Gregor95755162010-07-01 05:10:53 +00004373QualType Sema::CheckDestructorDeclarator(Declarator &D, QualType R,
John McCall8e7d6562010-08-26 03:08:43 +00004374 StorageClass& SC) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00004375 // C++ [class.dtor]p1:
4376 // [...] A typedef-name that names a class is a class-name
4377 // (7.1.3); however, a typedef-name that names a class shall not
4378 // be used as the identifier in the declarator for a destructor
4379 // declaration.
Douglas Gregor7861a802009-11-03 01:35:08 +00004380 QualType DeclaratorType = GetTypeFromParser(D.getName().DestructorName);
Richard Smithdda56e42011-04-15 14:24:37 +00004381 if (const TypedefType *TT = DeclaratorType->getAs<TypedefType>())
Chris Lattner38378bf2009-04-25 08:28:21 +00004382 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
Richard Smithdda56e42011-04-15 14:24:37 +00004383 << DeclaratorType << isa<TypeAliasDecl>(TT->getDecl());
Richard Smith3f1b5d02011-05-05 21:57:07 +00004384 else if (const TemplateSpecializationType *TST =
4385 DeclaratorType->getAs<TemplateSpecializationType>())
4386 if (TST->isTypeAlias())
4387 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
4388 << DeclaratorType << 1;
Douglas Gregor831c93f2008-11-05 20:51:48 +00004389
4390 // C++ [class.dtor]p2:
4391 // A destructor is used to destroy objects of its class type. A
4392 // destructor takes no parameters, and no return type can be
4393 // specified for it (not even void). The address of a destructor
4394 // shall not be taken. A destructor shall not be static. A
4395 // destructor can be invoked for a const, volatile or const
4396 // volatile object. A destructor shall not be declared const,
4397 // volatile or const volatile (9.3.2).
John McCall8e7d6562010-08-26 03:08:43 +00004398 if (SC == SC_Static) {
Chris Lattner38378bf2009-04-25 08:28:21 +00004399 if (!D.isInvalidType())
4400 Diag(D.getIdentifierLoc(), diag::err_destructor_cannot_be)
4401 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
Douglas Gregor95755162010-07-01 05:10:53 +00004402 << SourceRange(D.getIdentifierLoc())
4403 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
4404
John McCall8e7d6562010-08-26 03:08:43 +00004405 SC = SC_None;
Douglas Gregor831c93f2008-11-05 20:51:48 +00004406 }
Chris Lattner38378bf2009-04-25 08:28:21 +00004407 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00004408 // Destructors don't have return types, but the parser will
4409 // happily parse something like:
4410 //
4411 // class X {
4412 // float ~X();
4413 // };
4414 //
4415 // The return type will be eliminated later.
Chris Lattner3b054132008-11-19 05:08:23 +00004416 Diag(D.getIdentifierLoc(), diag::err_destructor_return_type)
4417 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
4418 << SourceRange(D.getIdentifierLoc());
Douglas Gregor831c93f2008-11-05 20:51:48 +00004419 }
Mike Stump11289f42009-09-09 15:08:12 +00004420
Abramo Bagnara924a8f32010-12-10 16:29:40 +00004421 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
Chris Lattner38378bf2009-04-25 08:28:21 +00004422 if (FTI.TypeQuals != 0 && !D.isInvalidType()) {
John McCall8ccfcb52009-09-24 19:53:00 +00004423 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattner3b054132008-11-19 05:08:23 +00004424 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
4425 << "const" << SourceRange(D.getIdentifierLoc());
John McCall8ccfcb52009-09-24 19:53:00 +00004426 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattner3b054132008-11-19 05:08:23 +00004427 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
4428 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall8ccfcb52009-09-24 19:53:00 +00004429 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattner3b054132008-11-19 05:08:23 +00004430 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
4431 << "restrict" << SourceRange(D.getIdentifierLoc());
Chris Lattner38378bf2009-04-25 08:28:21 +00004432 D.setInvalidType();
Douglas Gregor831c93f2008-11-05 20:51:48 +00004433 }
4434
Douglas Gregordb9d6642011-01-26 05:01:58 +00004435 // C++0x [class.dtor]p2:
4436 // A destructor shall not be declared with a ref-qualifier.
4437 if (FTI.hasRefQualifier()) {
4438 Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_destructor)
4439 << FTI.RefQualifierIsLValueRef
4440 << FixItHint::CreateRemoval(FTI.getRefQualifierLoc());
4441 D.setInvalidType();
4442 }
4443
Douglas Gregor831c93f2008-11-05 20:51:48 +00004444 // Make sure we don't have any parameters.
Anders Carlsson5e965472009-04-30 23:18:11 +00004445 if (FTI.NumArgs > 0 && !FTIHasSingleVoidArgument(FTI)) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00004446 Diag(D.getIdentifierLoc(), diag::err_destructor_with_params);
4447
4448 // Delete the parameters.
Chris Lattner38378bf2009-04-25 08:28:21 +00004449 FTI.freeArgs();
4450 D.setInvalidType();
Douglas Gregor831c93f2008-11-05 20:51:48 +00004451 }
4452
Mike Stump11289f42009-09-09 15:08:12 +00004453 // Make sure the destructor isn't variadic.
Chris Lattner38378bf2009-04-25 08:28:21 +00004454 if (FTI.isVariadic) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00004455 Diag(D.getIdentifierLoc(), diag::err_destructor_variadic);
Chris Lattner38378bf2009-04-25 08:28:21 +00004456 D.setInvalidType();
4457 }
Douglas Gregor831c93f2008-11-05 20:51:48 +00004458
4459 // Rebuild the function type "R" without any type qualifiers or
4460 // parameters (in case any of the errors above fired) and with
4461 // "void" as the return type, since destructors don't have return
Douglas Gregor95755162010-07-01 05:10:53 +00004462 // types.
John McCalldb40c7f2010-12-14 08:05:40 +00004463 if (!D.isInvalidType())
4464 return R;
4465
Douglas Gregor95755162010-07-01 05:10:53 +00004466 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
John McCalldb40c7f2010-12-14 08:05:40 +00004467 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
4468 EPI.Variadic = false;
4469 EPI.TypeQuals = 0;
Douglas Gregordb9d6642011-01-26 05:01:58 +00004470 EPI.RefQualifier = RQ_None;
John McCalldb40c7f2010-12-14 08:05:40 +00004471 return Context.getFunctionType(Context.VoidTy, 0, 0, EPI);
Douglas Gregor831c93f2008-11-05 20:51:48 +00004472}
4473
Douglas Gregordbc5daf2008-11-07 20:08:42 +00004474/// CheckConversionDeclarator - Called by ActOnDeclarator to check the
4475/// well-formednes of the conversion function declarator @p D with
4476/// type @p R. If there are any errors in the declarator, this routine
4477/// will emit diagnostics and return true. Otherwise, it will return
4478/// false. Either way, the type @p R will be updated to reflect a
4479/// well-formed type for the conversion operator.
Chris Lattnerb41df4f2009-04-25 08:35:12 +00004480void Sema::CheckConversionDeclarator(Declarator &D, QualType &R,
John McCall8e7d6562010-08-26 03:08:43 +00004481 StorageClass& SC) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00004482 // C++ [class.conv.fct]p1:
4483 // Neither parameter types nor return type can be specified. The
Eli Friedman44b83ee2009-08-05 19:21:58 +00004484 // type of a conversion function (8.3.5) is "function taking no
Mike Stump11289f42009-09-09 15:08:12 +00004485 // parameter returning conversion-type-id."
John McCall8e7d6562010-08-26 03:08:43 +00004486 if (SC == SC_Static) {
Chris Lattnerb41df4f2009-04-25 08:35:12 +00004487 if (!D.isInvalidType())
4488 Diag(D.getIdentifierLoc(), diag::err_conv_function_not_member)
4489 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
4490 << SourceRange(D.getIdentifierLoc());
4491 D.setInvalidType();
John McCall8e7d6562010-08-26 03:08:43 +00004492 SC = SC_None;
Douglas Gregordbc5daf2008-11-07 20:08:42 +00004493 }
John McCall212fa2e2010-04-13 00:04:31 +00004494
4495 QualType ConvType = GetTypeFromParser(D.getName().ConversionFunctionId);
4496
Chris Lattnerb41df4f2009-04-25 08:35:12 +00004497 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00004498 // Conversion functions don't have return types, but the parser will
4499 // happily parse something like:
4500 //
4501 // class X {
4502 // float operator bool();
4503 // };
4504 //
4505 // The return type will be changed later anyway.
Chris Lattner3b054132008-11-19 05:08:23 +00004506 Diag(D.getIdentifierLoc(), diag::err_conv_function_return_type)
4507 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
4508 << SourceRange(D.getIdentifierLoc());
John McCall212fa2e2010-04-13 00:04:31 +00004509 D.setInvalidType();
Douglas Gregordbc5daf2008-11-07 20:08:42 +00004510 }
4511
John McCall212fa2e2010-04-13 00:04:31 +00004512 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
4513
Douglas Gregordbc5daf2008-11-07 20:08:42 +00004514 // Make sure we don't have any parameters.
John McCall212fa2e2010-04-13 00:04:31 +00004515 if (Proto->getNumArgs() > 0) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00004516 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_params);
4517
4518 // Delete the parameters.
Abramo Bagnara924a8f32010-12-10 16:29:40 +00004519 D.getFunctionTypeInfo().freeArgs();
Chris Lattnerb41df4f2009-04-25 08:35:12 +00004520 D.setInvalidType();
John McCall212fa2e2010-04-13 00:04:31 +00004521 } else if (Proto->isVariadic()) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00004522 Diag(D.getIdentifierLoc(), diag::err_conv_function_variadic);
Chris Lattnerb41df4f2009-04-25 08:35:12 +00004523 D.setInvalidType();
4524 }
Douglas Gregordbc5daf2008-11-07 20:08:42 +00004525
John McCall212fa2e2010-04-13 00:04:31 +00004526 // Diagnose "&operator bool()" and other such nonsense. This
4527 // is actually a gcc extension which we don't support.
4528 if (Proto->getResultType() != ConvType) {
4529 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_complex_decl)
4530 << Proto->getResultType();
4531 D.setInvalidType();
4532 ConvType = Proto->getResultType();
4533 }
4534
Douglas Gregordbc5daf2008-11-07 20:08:42 +00004535 // C++ [class.conv.fct]p4:
4536 // The conversion-type-id shall not represent a function type nor
4537 // an array type.
Douglas Gregordbc5daf2008-11-07 20:08:42 +00004538 if (ConvType->isArrayType()) {
4539 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_array);
4540 ConvType = Context.getPointerType(ConvType);
Chris Lattnerb41df4f2009-04-25 08:35:12 +00004541 D.setInvalidType();
Douglas Gregordbc5daf2008-11-07 20:08:42 +00004542 } else if (ConvType->isFunctionType()) {
4543 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_function);
4544 ConvType = Context.getPointerType(ConvType);
Chris Lattnerb41df4f2009-04-25 08:35:12 +00004545 D.setInvalidType();
Douglas Gregordbc5daf2008-11-07 20:08:42 +00004546 }
4547
4548 // Rebuild the function type "R" without any parameters (in case any
4549 // of the errors above fired) and with the conversion type as the
Mike Stump11289f42009-09-09 15:08:12 +00004550 // return type.
John McCalldb40c7f2010-12-14 08:05:40 +00004551 if (D.isInvalidType())
4552 R = Context.getFunctionType(ConvType, 0, 0, Proto->getExtProtoInfo());
Douglas Gregordbc5daf2008-11-07 20:08:42 +00004553
Douglas Gregor5fb53972009-01-14 15:45:31 +00004554 // C++0x explicit conversion operators.
4555 if (D.getDeclSpec().isExplicitSpecified() && !getLangOptions().CPlusPlus0x)
Mike Stump11289f42009-09-09 15:08:12 +00004556 Diag(D.getDeclSpec().getExplicitSpecLoc(),
Douglas Gregor5fb53972009-01-14 15:45:31 +00004557 diag::warn_explicit_conversion_functions)
4558 << SourceRange(D.getDeclSpec().getExplicitSpecLoc());
Douglas Gregordbc5daf2008-11-07 20:08:42 +00004559}
4560
Douglas Gregordbc5daf2008-11-07 20:08:42 +00004561/// ActOnConversionDeclarator - Called by ActOnDeclarator to complete
4562/// the declaration of the given C++ conversion function. This routine
4563/// is responsible for recording the conversion function in the C++
4564/// class, if possible.
John McCall48871652010-08-21 09:40:31 +00004565Decl *Sema::ActOnConversionDeclarator(CXXConversionDecl *Conversion) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00004566 assert(Conversion && "Expected to receive a conversion function declaration");
4567
Douglas Gregor4287b372008-12-12 08:25:50 +00004568 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Conversion->getDeclContext());
Douglas Gregordbc5daf2008-11-07 20:08:42 +00004569
4570 // Make sure we aren't redeclaring the conversion function.
4571 QualType ConvType = Context.getCanonicalType(Conversion->getConversionType());
Douglas Gregordbc5daf2008-11-07 20:08:42 +00004572
4573 // C++ [class.conv.fct]p1:
4574 // [...] A conversion function is never used to convert a
4575 // (possibly cv-qualified) object to the (possibly cv-qualified)
4576 // same object type (or a reference to it), to a (possibly
4577 // cv-qualified) base class of that type (or a reference to it),
4578 // or to (possibly cv-qualified) void.
Mike Stump87c57ac2009-05-16 07:39:55 +00004579 // FIXME: Suppress this warning if the conversion function ends up being a
4580 // virtual function that overrides a virtual function in a base class.
Mike Stump11289f42009-09-09 15:08:12 +00004581 QualType ClassType
Douglas Gregordbc5daf2008-11-07 20:08:42 +00004582 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Ted Kremenekc23c7e62009-07-29 21:53:49 +00004583 if (const ReferenceType *ConvTypeRef = ConvType->getAs<ReferenceType>())
Douglas Gregordbc5daf2008-11-07 20:08:42 +00004584 ConvType = ConvTypeRef->getPointeeType();
Douglas Gregor6309e3d2010-09-12 07:22:28 +00004585 if (Conversion->getTemplateSpecializationKind() != TSK_Undeclared &&
4586 Conversion->getTemplateSpecializationKind() != TSK_ExplicitSpecialization)
Douglas Gregore47191c2010-09-13 16:44:26 +00004587 /* Suppress diagnostics for instantiations. */;
Douglas Gregor6309e3d2010-09-12 07:22:28 +00004588 else if (ConvType->isRecordType()) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00004589 ConvType = Context.getCanonicalType(ConvType).getUnqualifiedType();
4590 if (ConvType == ClassType)
Chris Lattnerf7e3f6d2008-11-20 06:13:02 +00004591 Diag(Conversion->getLocation(), diag::warn_conv_to_self_not_used)
Chris Lattner1e5665e2008-11-24 06:25:27 +00004592 << ClassType;
Douglas Gregordbc5daf2008-11-07 20:08:42 +00004593 else if (IsDerivedFrom(ClassType, ConvType))
Chris Lattnerf7e3f6d2008-11-20 06:13:02 +00004594 Diag(Conversion->getLocation(), diag::warn_conv_to_base_not_used)
Chris Lattner1e5665e2008-11-24 06:25:27 +00004595 << ClassType << ConvType;
Douglas Gregordbc5daf2008-11-07 20:08:42 +00004596 } else if (ConvType->isVoidType()) {
Chris Lattnerf7e3f6d2008-11-20 06:13:02 +00004597 Diag(Conversion->getLocation(), diag::warn_conv_to_void_not_used)
Chris Lattner1e5665e2008-11-24 06:25:27 +00004598 << ClassType << ConvType;
Douglas Gregordbc5daf2008-11-07 20:08:42 +00004599 }
4600
Douglas Gregor457104e2010-09-29 04:25:11 +00004601 if (FunctionTemplateDecl *ConversionTemplate
4602 = Conversion->getDescribedFunctionTemplate())
4603 return ConversionTemplate;
4604
John McCall48871652010-08-21 09:40:31 +00004605 return Conversion;
Douglas Gregordbc5daf2008-11-07 20:08:42 +00004606}
4607
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00004608//===----------------------------------------------------------------------===//
4609// Namespace Handling
4610//===----------------------------------------------------------------------===//
4611
John McCallb1be5232010-08-26 09:15:37 +00004612
4613
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00004614/// ActOnStartNamespaceDef - This is called at the start of a namespace
4615/// definition.
John McCall48871652010-08-21 09:40:31 +00004616Decl *Sema::ActOnStartNamespaceDef(Scope *NamespcScope,
Sebastian Redl67667942010-08-27 23:12:46 +00004617 SourceLocation InlineLoc,
Abramo Bagnarab5545be2011-03-08 12:38:20 +00004618 SourceLocation NamespaceLoc,
John McCallb1be5232010-08-26 09:15:37 +00004619 SourceLocation IdentLoc,
4620 IdentifierInfo *II,
4621 SourceLocation LBrace,
4622 AttributeList *AttrList) {
Abramo Bagnarab5545be2011-03-08 12:38:20 +00004623 SourceLocation StartLoc = InlineLoc.isValid() ? InlineLoc : NamespaceLoc;
4624 // For anonymous namespace, take the location of the left brace.
4625 SourceLocation Loc = II ? IdentLoc : LBrace;
Douglas Gregor086cae62010-08-19 20:55:47 +00004626 NamespaceDecl *Namespc = NamespaceDecl::Create(Context, CurContext,
Abramo Bagnarab5545be2011-03-08 12:38:20 +00004627 StartLoc, Loc, II);
Sebastian Redlb5c2baa2010-08-31 00:36:36 +00004628 Namespc->setInline(InlineLoc.isValid());
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00004629
4630 Scope *DeclRegionScope = NamespcScope->getParent();
4631
Anders Carlssona7bcade2010-02-07 01:09:23 +00004632 ProcessDeclAttributeList(DeclRegionScope, Namespc, AttrList);
4633
John McCall2faf32c2010-12-10 02:59:44 +00004634 if (const VisibilityAttr *Attr = Namespc->getAttr<VisibilityAttr>())
4635 PushNamespaceVisibilityAttr(Attr);
Eli Friedman570024a2010-08-05 06:57:20 +00004636
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00004637 if (II) {
4638 // C++ [namespace.def]p2:
Douglas Gregor412c3622010-10-22 15:24:46 +00004639 // The identifier in an original-namespace-definition shall not
4640 // have been previously defined in the declarative region in
4641 // which the original-namespace-definition appears. The
4642 // identifier in an original-namespace-definition is the name of
4643 // the namespace. Subsequently in that declarative region, it is
4644 // treated as an original-namespace-name.
4645 //
4646 // Since namespace names are unique in their scope, and we don't
Douglas Gregorb578fbe2011-05-06 23:28:47 +00004647 // look through using directives, just look for any ordinary names.
4648
4649 const unsigned IDNS = Decl::IDNS_Ordinary | Decl::IDNS_Member |
4650 Decl::IDNS_Type | Decl::IDNS_Using | Decl::IDNS_Tag |
4651 Decl::IDNS_Namespace;
4652 NamedDecl *PrevDecl = 0;
4653 for (DeclContext::lookup_result R
4654 = CurContext->getRedeclContext()->lookup(II);
4655 R.first != R.second; ++R.first) {
4656 if ((*R.first)->getIdentifierNamespace() & IDNS) {
4657 PrevDecl = *R.first;
4658 break;
4659 }
4660 }
4661
Douglas Gregor91f84212008-12-11 16:49:14 +00004662 if (NamespaceDecl *OrigNS = dyn_cast_or_null<NamespaceDecl>(PrevDecl)) {
4663 // This is an extended namespace definition.
Sebastian Redlb5c2baa2010-08-31 00:36:36 +00004664 if (Namespc->isInline() != OrigNS->isInline()) {
4665 // inline-ness must match
Douglas Gregora9121972011-05-20 15:48:31 +00004666 if (OrigNS->isInline()) {
4667 // The user probably just forgot the 'inline', so suggest that it
4668 // be added back.
4669 Diag(Namespc->getLocation(),
4670 diag::warn_inline_namespace_reopened_noninline)
4671 << FixItHint::CreateInsertion(NamespaceLoc, "inline ");
4672 } else {
4673 Diag(Namespc->getLocation(), diag::err_inline_namespace_mismatch)
4674 << Namespc->isInline();
4675 }
Sebastian Redlb5c2baa2010-08-31 00:36:36 +00004676 Diag(OrigNS->getLocation(), diag::note_previous_definition);
Douglas Gregora9121972011-05-20 15:48:31 +00004677
Sebastian Redlb5c2baa2010-08-31 00:36:36 +00004678 // Recover by ignoring the new namespace's inline status.
4679 Namespc->setInline(OrigNS->isInline());
4680 }
4681
Douglas Gregor91f84212008-12-11 16:49:14 +00004682 // Attach this namespace decl to the chain of extended namespace
4683 // definitions.
4684 OrigNS->setNextNamespace(Namespc);
4685 Namespc->setOriginalNamespace(OrigNS->getOriginalNamespace());
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00004686
Mike Stump11289f42009-09-09 15:08:12 +00004687 // Remove the previous declaration from the scope.
John McCall48871652010-08-21 09:40:31 +00004688 if (DeclRegionScope->isDeclScope(OrigNS)) {
Douglas Gregor7a4fad12008-12-11 20:41:00 +00004689 IdResolver.RemoveDecl(OrigNS);
John McCall48871652010-08-21 09:40:31 +00004690 DeclRegionScope->RemoveDecl(OrigNS);
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00004691 }
Douglas Gregor91f84212008-12-11 16:49:14 +00004692 } else if (PrevDecl) {
4693 // This is an invalid name redefinition.
4694 Diag(Namespc->getLocation(), diag::err_redefinition_different_kind)
4695 << Namespc->getDeclName();
4696 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
4697 Namespc->setInvalidDecl();
4698 // Continue on to push Namespc as current DeclContext and return it.
Douglas Gregor87f54062009-09-15 22:30:29 +00004699 } else if (II->isStr("std") &&
Sebastian Redl50c68252010-08-31 00:36:30 +00004700 CurContext->getRedeclContext()->isTranslationUnit()) {
Douglas Gregor87f54062009-09-15 22:30:29 +00004701 // This is the first "real" definition of the namespace "std", so update
4702 // our cache of the "std" namespace to point at this definition.
Argyrios Kyrtzidis2d688102010-08-02 07:14:54 +00004703 if (NamespaceDecl *StdNS = getStdNamespace()) {
Douglas Gregor87f54062009-09-15 22:30:29 +00004704 // We had already defined a dummy namespace "std". Link this new
4705 // namespace definition to the dummy namespace "std".
Argyrios Kyrtzidis2d688102010-08-02 07:14:54 +00004706 StdNS->setNextNamespace(Namespc);
4707 StdNS->setLocation(IdentLoc);
4708 Namespc->setOriginalNamespace(StdNS->getOriginalNamespace());
Douglas Gregor87f54062009-09-15 22:30:29 +00004709 }
4710
4711 // Make our StdNamespace cache point at the first real definition of the
4712 // "std" namespace.
4713 StdNamespace = Namespc;
Mike Stump11289f42009-09-09 15:08:12 +00004714 }
Douglas Gregor91f84212008-12-11 16:49:14 +00004715
4716 PushOnScopeChains(Namespc, DeclRegionScope);
4717 } else {
John McCall4fa53422009-10-01 00:25:31 +00004718 // Anonymous namespaces.
John McCall0db42252009-12-16 02:06:49 +00004719 assert(Namespc->isAnonymousNamespace());
John McCall0db42252009-12-16 02:06:49 +00004720
4721 // Link the anonymous namespace into its parent.
4722 NamespaceDecl *PrevDecl;
Sebastian Redl50c68252010-08-31 00:36:30 +00004723 DeclContext *Parent = CurContext->getRedeclContext();
John McCall0db42252009-12-16 02:06:49 +00004724 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
4725 PrevDecl = TU->getAnonymousNamespace();
4726 TU->setAnonymousNamespace(Namespc);
4727 } else {
4728 NamespaceDecl *ND = cast<NamespaceDecl>(Parent);
4729 PrevDecl = ND->getAnonymousNamespace();
4730 ND->setAnonymousNamespace(Namespc);
4731 }
4732
4733 // Link the anonymous namespace with its previous declaration.
4734 if (PrevDecl) {
4735 assert(PrevDecl->isAnonymousNamespace());
4736 assert(!PrevDecl->getNextNamespace());
4737 Namespc->setOriginalNamespace(PrevDecl->getOriginalNamespace());
4738 PrevDecl->setNextNamespace(Namespc);
Sebastian Redlb5c2baa2010-08-31 00:36:36 +00004739
4740 if (Namespc->isInline() != PrevDecl->isInline()) {
4741 // inline-ness must match
4742 Diag(Namespc->getLocation(), diag::err_inline_namespace_mismatch)
4743 << Namespc->isInline();
4744 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
4745 Namespc->setInvalidDecl();
4746 // Recover by ignoring the new namespace's inline status.
4747 Namespc->setInline(PrevDecl->isInline());
4748 }
John McCall0db42252009-12-16 02:06:49 +00004749 }
John McCall4fa53422009-10-01 00:25:31 +00004750
Douglas Gregorf9f54ea2010-03-24 00:46:35 +00004751 CurContext->addDecl(Namespc);
4752
John McCall4fa53422009-10-01 00:25:31 +00004753 // C++ [namespace.unnamed]p1. An unnamed-namespace-definition
4754 // behaves as if it were replaced by
4755 // namespace unique { /* empty body */ }
4756 // using namespace unique;
4757 // namespace unique { namespace-body }
4758 // where all occurrences of 'unique' in a translation unit are
4759 // replaced by the same identifier and this identifier differs
4760 // from all other identifiers in the entire program.
4761
4762 // We just create the namespace with an empty name and then add an
4763 // implicit using declaration, just like the standard suggests.
4764 //
4765 // CodeGen enforces the "universally unique" aspect by giving all
4766 // declarations semantically contained within an anonymous
4767 // namespace internal linkage.
4768
John McCall0db42252009-12-16 02:06:49 +00004769 if (!PrevDecl) {
4770 UsingDirectiveDecl* UD
4771 = UsingDirectiveDecl::Create(Context, CurContext,
4772 /* 'using' */ LBrace,
4773 /* 'namespace' */ SourceLocation(),
Douglas Gregor12441b32011-02-25 16:33:46 +00004774 /* qualifier */ NestedNameSpecifierLoc(),
John McCall0db42252009-12-16 02:06:49 +00004775 /* identifier */ SourceLocation(),
4776 Namespc,
4777 /* Ancestor */ CurContext);
4778 UD->setImplicit();
4779 CurContext->addDecl(UD);
4780 }
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00004781 }
4782
4783 // Although we could have an invalid decl (i.e. the namespace name is a
4784 // redefinition), push it as current DeclContext and try to continue parsing.
Mike Stump87c57ac2009-05-16 07:39:55 +00004785 // FIXME: We should be able to push Namespc here, so that the each DeclContext
4786 // for the namespace has the declarations that showed up in that particular
4787 // namespace definition.
Douglas Gregor91f84212008-12-11 16:49:14 +00004788 PushDeclContext(NamespcScope, Namespc);
John McCall48871652010-08-21 09:40:31 +00004789 return Namespc;
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00004790}
4791
Sebastian Redla6602e92009-11-23 15:34:23 +00004792/// getNamespaceDecl - Returns the namespace a decl represents. If the decl
4793/// is a namespace alias, returns the namespace it points to.
4794static inline NamespaceDecl *getNamespaceDecl(NamedDecl *D) {
4795 if (NamespaceAliasDecl *AD = dyn_cast_or_null<NamespaceAliasDecl>(D))
4796 return AD->getNamespace();
4797 return dyn_cast_or_null<NamespaceDecl>(D);
4798}
4799
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00004800/// ActOnFinishNamespaceDef - This callback is called after a namespace is
4801/// exited. Decl is the DeclTy returned by ActOnStartNamespaceDef.
John McCall48871652010-08-21 09:40:31 +00004802void Sema::ActOnFinishNamespaceDef(Decl *Dcl, SourceLocation RBrace) {
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00004803 NamespaceDecl *Namespc = dyn_cast_or_null<NamespaceDecl>(Dcl);
4804 assert(Namespc && "Invalid parameter, expected NamespaceDecl");
Abramo Bagnarab5545be2011-03-08 12:38:20 +00004805 Namespc->setRBraceLoc(RBrace);
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00004806 PopDeclContext();
Eli Friedman570024a2010-08-05 06:57:20 +00004807 if (Namespc->hasAttr<VisibilityAttr>())
4808 PopPragmaVisibility();
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00004809}
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00004810
John McCall28a0cf72010-08-25 07:42:41 +00004811CXXRecordDecl *Sema::getStdBadAlloc() const {
4812 return cast_or_null<CXXRecordDecl>(
4813 StdBadAlloc.get(Context.getExternalSource()));
4814}
4815
4816NamespaceDecl *Sema::getStdNamespace() const {
4817 return cast_or_null<NamespaceDecl>(
4818 StdNamespace.get(Context.getExternalSource()));
4819}
4820
Douglas Gregorcdf87022010-06-29 17:53:46 +00004821/// \brief Retrieve the special "std" namespace, which may require us to
4822/// implicitly define the namespace.
Argyrios Kyrtzidis4f8e1732010-08-02 07:14:39 +00004823NamespaceDecl *Sema::getOrCreateStdNamespace() {
Douglas Gregorcdf87022010-06-29 17:53:46 +00004824 if (!StdNamespace) {
4825 // The "std" namespace has not yet been defined, so build one implicitly.
4826 StdNamespace = NamespaceDecl::Create(Context,
4827 Context.getTranslationUnitDecl(),
Abramo Bagnarab5545be2011-03-08 12:38:20 +00004828 SourceLocation(), SourceLocation(),
Douglas Gregorcdf87022010-06-29 17:53:46 +00004829 &PP.getIdentifierTable().get("std"));
Argyrios Kyrtzidis2d688102010-08-02 07:14:54 +00004830 getStdNamespace()->setImplicit(true);
Douglas Gregorcdf87022010-06-29 17:53:46 +00004831 }
4832
Argyrios Kyrtzidis2d688102010-08-02 07:14:54 +00004833 return getStdNamespace();
Douglas Gregorcdf87022010-06-29 17:53:46 +00004834}
4835
Douglas Gregora172e082011-03-26 22:25:30 +00004836/// \brief Determine whether a using statement is in a context where it will be
4837/// apply in all contexts.
4838static bool IsUsingDirectiveInToplevelContext(DeclContext *CurContext) {
4839 switch (CurContext->getDeclKind()) {
4840 case Decl::TranslationUnit:
4841 return true;
4842 case Decl::LinkageSpec:
4843 return IsUsingDirectiveInToplevelContext(CurContext->getParent());
4844 default:
4845 return false;
4846 }
4847}
4848
John McCall48871652010-08-21 09:40:31 +00004849Decl *Sema::ActOnUsingDirective(Scope *S,
Chris Lattner83f095c2009-03-28 19:18:32 +00004850 SourceLocation UsingLoc,
4851 SourceLocation NamespcLoc,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00004852 CXXScopeSpec &SS,
Chris Lattner83f095c2009-03-28 19:18:32 +00004853 SourceLocation IdentLoc,
4854 IdentifierInfo *NamespcName,
4855 AttributeList *AttrList) {
Douglas Gregord7c4d982008-12-30 03:27:21 +00004856 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
4857 assert(NamespcName && "Invalid NamespcName.");
4858 assert(IdentLoc.isValid() && "Invalid NamespceName location.");
John McCall9b72f892010-11-10 02:40:36 +00004859
4860 // This can only happen along a recovery path.
4861 while (S->getFlags() & Scope::TemplateParamScope)
4862 S = S->getParent();
Douglas Gregor889ceb72009-02-03 19:21:40 +00004863 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Douglas Gregord7c4d982008-12-30 03:27:21 +00004864
Douglas Gregor889ceb72009-02-03 19:21:40 +00004865 UsingDirectiveDecl *UDir = 0;
Douglas Gregorcdf87022010-06-29 17:53:46 +00004866 NestedNameSpecifier *Qualifier = 0;
4867 if (SS.isSet())
4868 Qualifier = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
4869
Douglas Gregor34074322009-01-14 22:20:51 +00004870 // Lookup namespace name.
John McCall27b18f82009-11-17 02:14:36 +00004871 LookupResult R(*this, NamespcName, IdentLoc, LookupNamespaceName);
4872 LookupParsedName(R, S, &SS);
4873 if (R.isAmbiguous())
John McCall48871652010-08-21 09:40:31 +00004874 return 0;
John McCall27b18f82009-11-17 02:14:36 +00004875
Douglas Gregorcdf87022010-06-29 17:53:46 +00004876 if (R.empty()) {
4877 // Allow "using namespace std;" or "using namespace ::std;" even if
4878 // "std" hasn't been defined yet, for GCC compatibility.
4879 if ((!Qualifier || Qualifier->getKind() == NestedNameSpecifier::Global) &&
4880 NamespcName->isStr("std")) {
4881 Diag(IdentLoc, diag::ext_using_undefined_std);
Argyrios Kyrtzidis4f8e1732010-08-02 07:14:39 +00004882 R.addDecl(getOrCreateStdNamespace());
Douglas Gregorcdf87022010-06-29 17:53:46 +00004883 R.resolveKind();
4884 }
4885 // Otherwise, attempt typo correction.
4886 else if (DeclarationName Corrected = CorrectTypo(R, S, &SS, 0, false,
4887 CTC_NoKeywords, 0)) {
4888 if (R.getAsSingle<NamespaceDecl>() ||
4889 R.getAsSingle<NamespaceAliasDecl>()) {
4890 if (DeclContext *DC = computeDeclContext(SS, false))
4891 Diag(IdentLoc, diag::err_using_directive_member_suggest)
4892 << NamespcName << DC << Corrected << SS.getRange()
4893 << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
4894 else
4895 Diag(IdentLoc, diag::err_using_directive_suggest)
4896 << NamespcName << Corrected
4897 << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
4898 Diag(R.getFoundDecl()->getLocation(), diag::note_namespace_defined_here)
4899 << Corrected;
4900
4901 NamespcName = Corrected.getAsIdentifierInfo();
Douglas Gregorc048c522010-06-29 19:27:42 +00004902 } else {
4903 R.clear();
4904 R.setLookupName(NamespcName);
Douglas Gregorcdf87022010-06-29 17:53:46 +00004905 }
4906 }
4907 }
4908
John McCall9f3059a2009-10-09 21:13:30 +00004909 if (!R.empty()) {
Sebastian Redla6602e92009-11-23 15:34:23 +00004910 NamedDecl *Named = R.getFoundDecl();
4911 assert((isa<NamespaceDecl>(Named) || isa<NamespaceAliasDecl>(Named))
4912 && "expected namespace decl");
Douglas Gregor889ceb72009-02-03 19:21:40 +00004913 // C++ [namespace.udir]p1:
4914 // A using-directive specifies that the names in the nominated
4915 // namespace can be used in the scope in which the
4916 // using-directive appears after the using-directive. During
4917 // unqualified name lookup (3.4.1), the names appear as if they
4918 // were declared in the nearest enclosing namespace which
4919 // contains both the using-directive and the nominated
Eli Friedman44b83ee2009-08-05 19:21:58 +00004920 // namespace. [Note: in this context, "contains" means "contains
4921 // directly or indirectly". ]
Douglas Gregor889ceb72009-02-03 19:21:40 +00004922
4923 // Find enclosing context containing both using-directive and
4924 // nominated namespace.
Sebastian Redla6602e92009-11-23 15:34:23 +00004925 NamespaceDecl *NS = getNamespaceDecl(Named);
Douglas Gregor889ceb72009-02-03 19:21:40 +00004926 DeclContext *CommonAncestor = cast<DeclContext>(NS);
4927 while (CommonAncestor && !CommonAncestor->Encloses(CurContext))
4928 CommonAncestor = CommonAncestor->getParent();
4929
Sebastian Redla6602e92009-11-23 15:34:23 +00004930 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc,
Douglas Gregor12441b32011-02-25 16:33:46 +00004931 SS.getWithLocInContext(Context),
Sebastian Redla6602e92009-11-23 15:34:23 +00004932 IdentLoc, Named, CommonAncestor);
Douglas Gregor96a4bdd2011-03-18 16:10:52 +00004933
Douglas Gregora172e082011-03-26 22:25:30 +00004934 if (IsUsingDirectiveInToplevelContext(CurContext) &&
Nico Webercc2b8712011-04-02 19:45:15 +00004935 !SourceMgr.isFromMainFile(SourceMgr.getInstantiationLoc(IdentLoc))) {
Douglas Gregor96a4bdd2011-03-18 16:10:52 +00004936 Diag(IdentLoc, diag::warn_using_directive_in_header);
4937 }
4938
Douglas Gregor889ceb72009-02-03 19:21:40 +00004939 PushUsingDirective(S, UDir);
Douglas Gregord7c4d982008-12-30 03:27:21 +00004940 } else {
Chris Lattner8dca2e92009-01-06 07:24:29 +00004941 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
Douglas Gregord7c4d982008-12-30 03:27:21 +00004942 }
4943
Douglas Gregor889ceb72009-02-03 19:21:40 +00004944 // FIXME: We ignore attributes for now.
John McCall48871652010-08-21 09:40:31 +00004945 return UDir;
Douglas Gregor889ceb72009-02-03 19:21:40 +00004946}
4947
4948void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) {
4949 // If scope has associated entity, then using directive is at namespace
4950 // or translation unit scope. We add UsingDirectiveDecls, into
4951 // it's lookup structure.
4952 if (DeclContext *Ctx = static_cast<DeclContext*>(S->getEntity()))
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00004953 Ctx->addDecl(UDir);
Douglas Gregor889ceb72009-02-03 19:21:40 +00004954 else
4955 // Otherwise it is block-sope. using-directives will affect lookup
4956 // only to the end of scope.
John McCall48871652010-08-21 09:40:31 +00004957 S->PushUsingDirective(UDir);
Douglas Gregord7c4d982008-12-30 03:27:21 +00004958}
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00004959
Douglas Gregorfec52632009-06-20 00:51:54 +00004960
John McCall48871652010-08-21 09:40:31 +00004961Decl *Sema::ActOnUsingDeclaration(Scope *S,
John McCall9b72f892010-11-10 02:40:36 +00004962 AccessSpecifier AS,
4963 bool HasUsingKeyword,
4964 SourceLocation UsingLoc,
4965 CXXScopeSpec &SS,
4966 UnqualifiedId &Name,
4967 AttributeList *AttrList,
4968 bool IsTypeName,
4969 SourceLocation TypenameLoc) {
Douglas Gregorfec52632009-06-20 00:51:54 +00004970 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Mike Stump11289f42009-09-09 15:08:12 +00004971
Douglas Gregor220f4272009-11-04 16:30:06 +00004972 switch (Name.getKind()) {
4973 case UnqualifiedId::IK_Identifier:
4974 case UnqualifiedId::IK_OperatorFunctionId:
Alexis Hunt34458502009-11-28 04:44:28 +00004975 case UnqualifiedId::IK_LiteralOperatorId:
Douglas Gregor220f4272009-11-04 16:30:06 +00004976 case UnqualifiedId::IK_ConversionFunctionId:
4977 break;
4978
4979 case UnqualifiedId::IK_ConstructorName:
Douglas Gregor9de54ea2010-01-13 17:31:36 +00004980 case UnqualifiedId::IK_ConstructorTemplateId:
John McCall3969e302009-12-08 07:46:18 +00004981 // C++0x inherited constructors.
4982 if (getLangOptions().CPlusPlus0x) break;
4983
Douglas Gregor220f4272009-11-04 16:30:06 +00004984 Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_constructor)
4985 << SS.getRange();
John McCall48871652010-08-21 09:40:31 +00004986 return 0;
Douglas Gregor220f4272009-11-04 16:30:06 +00004987
4988 case UnqualifiedId::IK_DestructorName:
4989 Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_destructor)
4990 << SS.getRange();
John McCall48871652010-08-21 09:40:31 +00004991 return 0;
Douglas Gregor220f4272009-11-04 16:30:06 +00004992
4993 case UnqualifiedId::IK_TemplateId:
4994 Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_template_id)
4995 << SourceRange(Name.TemplateId->LAngleLoc, Name.TemplateId->RAngleLoc);
John McCall48871652010-08-21 09:40:31 +00004996 return 0;
Douglas Gregor220f4272009-11-04 16:30:06 +00004997 }
Abramo Bagnara8de74e92010-08-12 11:46:03 +00004998
4999 DeclarationNameInfo TargetNameInfo = GetNameFromUnqualifiedId(Name);
5000 DeclarationName TargetName = TargetNameInfo.getName();
John McCall3969e302009-12-08 07:46:18 +00005001 if (!TargetName)
John McCall48871652010-08-21 09:40:31 +00005002 return 0;
John McCall3969e302009-12-08 07:46:18 +00005003
John McCalla0097262009-12-11 02:10:03 +00005004 // Warn about using declarations.
5005 // TODO: store that the declaration was written without 'using' and
5006 // talk about access decls instead of using decls in the
5007 // diagnostics.
5008 if (!HasUsingKeyword) {
5009 UsingLoc = Name.getSourceRange().getBegin();
5010
5011 Diag(UsingLoc, diag::warn_access_decl_deprecated)
Douglas Gregora771f462010-03-31 17:46:05 +00005012 << FixItHint::CreateInsertion(SS.getRange().getBegin(), "using ");
John McCalla0097262009-12-11 02:10:03 +00005013 }
5014
Douglas Gregorc4356532010-12-16 00:46:58 +00005015 if (DiagnoseUnexpandedParameterPack(SS, UPPC_UsingDeclaration) ||
5016 DiagnoseUnexpandedParameterPack(TargetNameInfo, UPPC_UsingDeclaration))
5017 return 0;
5018
John McCall3f746822009-11-17 05:59:44 +00005019 NamedDecl *UD = BuildUsingDeclaration(S, AS, UsingLoc, SS,
Abramo Bagnara8de74e92010-08-12 11:46:03 +00005020 TargetNameInfo, AttrList,
John McCalle61f2ba2009-11-18 02:36:19 +00005021 /* IsInstantiation */ false,
5022 IsTypeName, TypenameLoc);
John McCallb96ec562009-12-04 22:46:56 +00005023 if (UD)
5024 PushOnScopeChains(UD, S, /*AddToContext*/ false);
Mike Stump11289f42009-09-09 15:08:12 +00005025
John McCall48871652010-08-21 09:40:31 +00005026 return UD;
Anders Carlsson696a3f12009-08-28 05:40:36 +00005027}
5028
Douglas Gregor1d9ef842010-07-07 23:08:52 +00005029/// \brief Determine whether a using declaration considers the given
5030/// declarations as "equivalent", e.g., if they are redeclarations of
5031/// the same entity or are both typedefs of the same type.
5032static bool
5033IsEquivalentForUsingDecl(ASTContext &Context, NamedDecl *D1, NamedDecl *D2,
5034 bool &SuppressRedeclaration) {
5035 if (D1->getCanonicalDecl() == D2->getCanonicalDecl()) {
5036 SuppressRedeclaration = false;
5037 return true;
5038 }
5039
Richard Smithdda56e42011-04-15 14:24:37 +00005040 if (TypedefNameDecl *TD1 = dyn_cast<TypedefNameDecl>(D1))
5041 if (TypedefNameDecl *TD2 = dyn_cast<TypedefNameDecl>(D2)) {
Douglas Gregor1d9ef842010-07-07 23:08:52 +00005042 SuppressRedeclaration = true;
5043 return Context.hasSameType(TD1->getUnderlyingType(),
5044 TD2->getUnderlyingType());
5045 }
5046
5047 return false;
5048}
5049
5050
John McCall84d87672009-12-10 09:41:52 +00005051/// Determines whether to create a using shadow decl for a particular
5052/// decl, given the set of decls existing prior to this using lookup.
5053bool Sema::CheckUsingShadowDecl(UsingDecl *Using, NamedDecl *Orig,
5054 const LookupResult &Previous) {
5055 // Diagnose finding a decl which is not from a base class of the
5056 // current class. We do this now because there are cases where this
5057 // function will silently decide not to build a shadow decl, which
5058 // will pre-empt further diagnostics.
5059 //
5060 // We don't need to do this in C++0x because we do the check once on
5061 // the qualifier.
5062 //
5063 // FIXME: diagnose the following if we care enough:
5064 // struct A { int foo; };
5065 // struct B : A { using A::foo; };
5066 // template <class T> struct C : A {};
5067 // template <class T> struct D : C<T> { using B::foo; } // <---
5068 // This is invalid (during instantiation) in C++03 because B::foo
5069 // resolves to the using decl in B, which is not a base class of D<T>.
5070 // We can't diagnose it immediately because C<T> is an unknown
5071 // specialization. The UsingShadowDecl in D<T> then points directly
5072 // to A::foo, which will look well-formed when we instantiate.
5073 // The right solution is to not collapse the shadow-decl chain.
5074 if (!getLangOptions().CPlusPlus0x && CurContext->isRecord()) {
5075 DeclContext *OrigDC = Orig->getDeclContext();
5076
5077 // Handle enums and anonymous structs.
5078 if (isa<EnumDecl>(OrigDC)) OrigDC = OrigDC->getParent();
5079 CXXRecordDecl *OrigRec = cast<CXXRecordDecl>(OrigDC);
5080 while (OrigRec->isAnonymousStructOrUnion())
5081 OrigRec = cast<CXXRecordDecl>(OrigRec->getDeclContext());
5082
5083 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(OrigRec)) {
5084 if (OrigDC == CurContext) {
5085 Diag(Using->getLocation(),
5086 diag::err_using_decl_nested_name_specifier_is_current_class)
Douglas Gregora9d87bc2011-02-25 00:36:19 +00005087 << Using->getQualifierLoc().getSourceRange();
John McCall84d87672009-12-10 09:41:52 +00005088 Diag(Orig->getLocation(), diag::note_using_decl_target);
5089 return true;
5090 }
5091
Douglas Gregora9d87bc2011-02-25 00:36:19 +00005092 Diag(Using->getQualifierLoc().getBeginLoc(),
John McCall84d87672009-12-10 09:41:52 +00005093 diag::err_using_decl_nested_name_specifier_is_not_base_class)
Douglas Gregora9d87bc2011-02-25 00:36:19 +00005094 << Using->getQualifier()
John McCall84d87672009-12-10 09:41:52 +00005095 << cast<CXXRecordDecl>(CurContext)
Douglas Gregora9d87bc2011-02-25 00:36:19 +00005096 << Using->getQualifierLoc().getSourceRange();
John McCall84d87672009-12-10 09:41:52 +00005097 Diag(Orig->getLocation(), diag::note_using_decl_target);
5098 return true;
5099 }
5100 }
5101
5102 if (Previous.empty()) return false;
5103
5104 NamedDecl *Target = Orig;
5105 if (isa<UsingShadowDecl>(Target))
5106 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
5107
John McCalla17e83e2009-12-11 02:33:26 +00005108 // If the target happens to be one of the previous declarations, we
5109 // don't have a conflict.
5110 //
5111 // FIXME: but we might be increasing its access, in which case we
5112 // should redeclare it.
5113 NamedDecl *NonTag = 0, *Tag = 0;
5114 for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
5115 I != E; ++I) {
5116 NamedDecl *D = (*I)->getUnderlyingDecl();
Douglas Gregor1d9ef842010-07-07 23:08:52 +00005117 bool Result;
5118 if (IsEquivalentForUsingDecl(Context, D, Target, Result))
5119 return Result;
John McCalla17e83e2009-12-11 02:33:26 +00005120
5121 (isa<TagDecl>(D) ? Tag : NonTag) = D;
5122 }
5123
John McCall84d87672009-12-10 09:41:52 +00005124 if (Target->isFunctionOrFunctionTemplate()) {
5125 FunctionDecl *FD;
5126 if (isa<FunctionTemplateDecl>(Target))
5127 FD = cast<FunctionTemplateDecl>(Target)->getTemplatedDecl();
5128 else
5129 FD = cast<FunctionDecl>(Target);
5130
5131 NamedDecl *OldDecl = 0;
John McCalle9cccd82010-06-16 08:42:20 +00005132 switch (CheckOverload(0, FD, Previous, OldDecl, /*IsForUsingDecl*/ true)) {
John McCall84d87672009-12-10 09:41:52 +00005133 case Ovl_Overload:
5134 return false;
5135
5136 case Ovl_NonFunction:
John McCalle29c5cd2009-12-10 19:51:03 +00005137 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall84d87672009-12-10 09:41:52 +00005138 break;
5139
5140 // We found a decl with the exact signature.
5141 case Ovl_Match:
John McCall84d87672009-12-10 09:41:52 +00005142 // If we're in a record, we want to hide the target, so we
5143 // return true (without a diagnostic) to tell the caller not to
5144 // build a shadow decl.
5145 if (CurContext->isRecord())
5146 return true;
5147
5148 // If we're not in a record, this is an error.
John McCalle29c5cd2009-12-10 19:51:03 +00005149 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall84d87672009-12-10 09:41:52 +00005150 break;
5151 }
5152
5153 Diag(Target->getLocation(), diag::note_using_decl_target);
5154 Diag(OldDecl->getLocation(), diag::note_using_decl_conflict);
5155 return true;
5156 }
5157
5158 // Target is not a function.
5159
John McCall84d87672009-12-10 09:41:52 +00005160 if (isa<TagDecl>(Target)) {
5161 // No conflict between a tag and a non-tag.
5162 if (!Tag) return false;
5163
John McCalle29c5cd2009-12-10 19:51:03 +00005164 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall84d87672009-12-10 09:41:52 +00005165 Diag(Target->getLocation(), diag::note_using_decl_target);
5166 Diag(Tag->getLocation(), diag::note_using_decl_conflict);
5167 return true;
5168 }
5169
5170 // No conflict between a tag and a non-tag.
5171 if (!NonTag) return false;
5172
John McCalle29c5cd2009-12-10 19:51:03 +00005173 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall84d87672009-12-10 09:41:52 +00005174 Diag(Target->getLocation(), diag::note_using_decl_target);
5175 Diag(NonTag->getLocation(), diag::note_using_decl_conflict);
5176 return true;
5177}
5178
John McCall3f746822009-11-17 05:59:44 +00005179/// Builds a shadow declaration corresponding to a 'using' declaration.
John McCall3969e302009-12-08 07:46:18 +00005180UsingShadowDecl *Sema::BuildUsingShadowDecl(Scope *S,
John McCall3969e302009-12-08 07:46:18 +00005181 UsingDecl *UD,
5182 NamedDecl *Orig) {
John McCall3f746822009-11-17 05:59:44 +00005183
5184 // If we resolved to another shadow declaration, just coalesce them.
John McCall3969e302009-12-08 07:46:18 +00005185 NamedDecl *Target = Orig;
5186 if (isa<UsingShadowDecl>(Target)) {
5187 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
5188 assert(!isa<UsingShadowDecl>(Target) && "nested shadow declaration");
John McCall3f746822009-11-17 05:59:44 +00005189 }
5190
5191 UsingShadowDecl *Shadow
John McCall3969e302009-12-08 07:46:18 +00005192 = UsingShadowDecl::Create(Context, CurContext,
5193 UD->getLocation(), UD, Target);
John McCall3f746822009-11-17 05:59:44 +00005194 UD->addShadowDecl(Shadow);
Douglas Gregor457104e2010-09-29 04:25:11 +00005195
5196 Shadow->setAccess(UD->getAccess());
5197 if (Orig->isInvalidDecl() || UD->isInvalidDecl())
5198 Shadow->setInvalidDecl();
5199
John McCall3f746822009-11-17 05:59:44 +00005200 if (S)
John McCall3969e302009-12-08 07:46:18 +00005201 PushOnScopeChains(Shadow, S);
John McCall3f746822009-11-17 05:59:44 +00005202 else
John McCall3969e302009-12-08 07:46:18 +00005203 CurContext->addDecl(Shadow);
John McCall3f746822009-11-17 05:59:44 +00005204
John McCall3969e302009-12-08 07:46:18 +00005205
John McCall84d87672009-12-10 09:41:52 +00005206 return Shadow;
5207}
John McCall3969e302009-12-08 07:46:18 +00005208
John McCall84d87672009-12-10 09:41:52 +00005209/// Hides a using shadow declaration. This is required by the current
5210/// using-decl implementation when a resolvable using declaration in a
5211/// class is followed by a declaration which would hide or override
5212/// one or more of the using decl's targets; for example:
5213///
5214/// struct Base { void foo(int); };
5215/// struct Derived : Base {
5216/// using Base::foo;
5217/// void foo(int);
5218/// };
5219///
5220/// The governing language is C++03 [namespace.udecl]p12:
5221///
5222/// When a using-declaration brings names from a base class into a
5223/// derived class scope, member functions in the derived class
5224/// override and/or hide member functions with the same name and
5225/// parameter types in a base class (rather than conflicting).
5226///
5227/// There are two ways to implement this:
5228/// (1) optimistically create shadow decls when they're not hidden
5229/// by existing declarations, or
5230/// (2) don't create any shadow decls (or at least don't make them
5231/// visible) until we've fully parsed/instantiated the class.
5232/// The problem with (1) is that we might have to retroactively remove
5233/// a shadow decl, which requires several O(n) operations because the
5234/// decl structures are (very reasonably) not designed for removal.
5235/// (2) avoids this but is very fiddly and phase-dependent.
5236void Sema::HideUsingShadowDecl(Scope *S, UsingShadowDecl *Shadow) {
John McCallda4458e2010-03-31 01:36:47 +00005237 if (Shadow->getDeclName().getNameKind() ==
5238 DeclarationName::CXXConversionFunctionName)
5239 cast<CXXRecordDecl>(Shadow->getDeclContext())->removeConversion(Shadow);
5240
John McCall84d87672009-12-10 09:41:52 +00005241 // Remove it from the DeclContext...
5242 Shadow->getDeclContext()->removeDecl(Shadow);
John McCall3969e302009-12-08 07:46:18 +00005243
John McCall84d87672009-12-10 09:41:52 +00005244 // ...and the scope, if applicable...
5245 if (S) {
John McCall48871652010-08-21 09:40:31 +00005246 S->RemoveDecl(Shadow);
John McCall84d87672009-12-10 09:41:52 +00005247 IdResolver.RemoveDecl(Shadow);
John McCall3969e302009-12-08 07:46:18 +00005248 }
5249
John McCall84d87672009-12-10 09:41:52 +00005250 // ...and the using decl.
5251 Shadow->getUsingDecl()->removeShadowDecl(Shadow);
5252
5253 // TODO: complain somehow if Shadow was used. It shouldn't
John McCallda4458e2010-03-31 01:36:47 +00005254 // be possible for this to happen, because...?
John McCall3f746822009-11-17 05:59:44 +00005255}
5256
John McCalle61f2ba2009-11-18 02:36:19 +00005257/// Builds a using declaration.
5258///
5259/// \param IsInstantiation - Whether this call arises from an
5260/// instantiation of an unresolved using declaration. We treat
5261/// the lookup differently for these declarations.
John McCall3f746822009-11-17 05:59:44 +00005262NamedDecl *Sema::BuildUsingDeclaration(Scope *S, AccessSpecifier AS,
5263 SourceLocation UsingLoc,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00005264 CXXScopeSpec &SS,
Abramo Bagnara8de74e92010-08-12 11:46:03 +00005265 const DeclarationNameInfo &NameInfo,
Anders Carlsson696a3f12009-08-28 05:40:36 +00005266 AttributeList *AttrList,
John McCalle61f2ba2009-11-18 02:36:19 +00005267 bool IsInstantiation,
5268 bool IsTypeName,
5269 SourceLocation TypenameLoc) {
Anders Carlsson696a3f12009-08-28 05:40:36 +00005270 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
Abramo Bagnara8de74e92010-08-12 11:46:03 +00005271 SourceLocation IdentLoc = NameInfo.getLoc();
Anders Carlsson696a3f12009-08-28 05:40:36 +00005272 assert(IdentLoc.isValid() && "Invalid TargetName location.");
Eli Friedman561154d2009-08-27 05:09:36 +00005273
Anders Carlssonf038fc22009-08-28 05:49:21 +00005274 // FIXME: We ignore attributes for now.
Mike Stump11289f42009-09-09 15:08:12 +00005275
Anders Carlsson59140b32009-08-28 03:16:11 +00005276 if (SS.isEmpty()) {
5277 Diag(IdentLoc, diag::err_using_requires_qualname);
Anders Carlsson696a3f12009-08-28 05:40:36 +00005278 return 0;
Anders Carlsson59140b32009-08-28 03:16:11 +00005279 }
Mike Stump11289f42009-09-09 15:08:12 +00005280
John McCall84d87672009-12-10 09:41:52 +00005281 // Do the redeclaration lookup in the current scope.
Abramo Bagnara8de74e92010-08-12 11:46:03 +00005282 LookupResult Previous(*this, NameInfo, LookupUsingDeclName,
John McCall84d87672009-12-10 09:41:52 +00005283 ForRedeclaration);
5284 Previous.setHideTags(false);
5285 if (S) {
5286 LookupName(Previous, S);
5287
5288 // It is really dumb that we have to do this.
5289 LookupResult::Filter F = Previous.makeFilter();
5290 while (F.hasNext()) {
5291 NamedDecl *D = F.next();
5292 if (!isDeclInScope(D, CurContext, S))
5293 F.erase();
5294 }
5295 F.done();
5296 } else {
5297 assert(IsInstantiation && "no scope in non-instantiation");
5298 assert(CurContext->isRecord() && "scope not record in instantiation");
5299 LookupQualifiedName(Previous, CurContext);
5300 }
5301
John McCall84d87672009-12-10 09:41:52 +00005302 // Check for invalid redeclarations.
5303 if (CheckUsingDeclRedeclaration(UsingLoc, IsTypeName, SS, IdentLoc, Previous))
5304 return 0;
5305
5306 // Check for bad qualifiers.
John McCallb96ec562009-12-04 22:46:56 +00005307 if (CheckUsingDeclQualifier(UsingLoc, SS, IdentLoc))
5308 return 0;
5309
John McCall84c16cf2009-11-12 03:15:40 +00005310 DeclContext *LookupContext = computeDeclContext(SS);
John McCallb96ec562009-12-04 22:46:56 +00005311 NamedDecl *D;
Douglas Gregora9d87bc2011-02-25 00:36:19 +00005312 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
John McCall84c16cf2009-11-12 03:15:40 +00005313 if (!LookupContext) {
John McCalle61f2ba2009-11-18 02:36:19 +00005314 if (IsTypeName) {
John McCallb96ec562009-12-04 22:46:56 +00005315 // FIXME: not all declaration name kinds are legal here
5316 D = UnresolvedUsingTypenameDecl::Create(Context, CurContext,
5317 UsingLoc, TypenameLoc,
Douglas Gregora9d87bc2011-02-25 00:36:19 +00005318 QualifierLoc,
Abramo Bagnara8de74e92010-08-12 11:46:03 +00005319 IdentLoc, NameInfo.getName());
John McCallb96ec562009-12-04 22:46:56 +00005320 } else {
Douglas Gregora9d87bc2011-02-25 00:36:19 +00005321 D = UnresolvedUsingValueDecl::Create(Context, CurContext, UsingLoc,
5322 QualifierLoc, NameInfo);
John McCalle61f2ba2009-11-18 02:36:19 +00005323 }
John McCallb96ec562009-12-04 22:46:56 +00005324 } else {
Douglas Gregora9d87bc2011-02-25 00:36:19 +00005325 D = UsingDecl::Create(Context, CurContext, UsingLoc, QualifierLoc,
5326 NameInfo, IsTypeName);
Anders Carlssonf038fc22009-08-28 05:49:21 +00005327 }
John McCallb96ec562009-12-04 22:46:56 +00005328 D->setAccess(AS);
5329 CurContext->addDecl(D);
5330
5331 if (!LookupContext) return D;
5332 UsingDecl *UD = cast<UsingDecl>(D);
Mike Stump11289f42009-09-09 15:08:12 +00005333
John McCall0b66eb32010-05-01 00:40:08 +00005334 if (RequireCompleteDeclContext(SS, LookupContext)) {
John McCall3969e302009-12-08 07:46:18 +00005335 UD->setInvalidDecl();
5336 return UD;
Anders Carlsson59140b32009-08-28 03:16:11 +00005337 }
5338
Sebastian Redl08905022011-02-05 19:23:19 +00005339 // Constructor inheriting using decls get special treatment.
5340 if (NameInfo.getName().getNameKind() == DeclarationName::CXXConstructorName) {
Sebastian Redlc1f8e492011-03-12 13:44:32 +00005341 if (CheckInheritedConstructorUsingDecl(UD))
5342 UD->setInvalidDecl();
Sebastian Redl08905022011-02-05 19:23:19 +00005343 return UD;
5344 }
5345
5346 // Otherwise, look up the target name.
John McCall3969e302009-12-08 07:46:18 +00005347
Abramo Bagnara8de74e92010-08-12 11:46:03 +00005348 LookupResult R(*this, NameInfo, LookupOrdinaryName);
Francois Pichetefb1af92011-05-23 03:43:44 +00005349 R.setUsingDeclaration(true);
John McCalle61f2ba2009-11-18 02:36:19 +00005350
John McCall3969e302009-12-08 07:46:18 +00005351 // Unlike most lookups, we don't always want to hide tag
5352 // declarations: tag names are visible through the using declaration
5353 // even if hidden by ordinary names, *except* in a dependent context
5354 // where it's important for the sanity of two-phase lookup.
John McCalle61f2ba2009-11-18 02:36:19 +00005355 if (!IsInstantiation)
5356 R.setHideTags(false);
John McCall3f746822009-11-17 05:59:44 +00005357
John McCall27b18f82009-11-17 02:14:36 +00005358 LookupQualifiedName(R, LookupContext);
Mike Stump11289f42009-09-09 15:08:12 +00005359
John McCall9f3059a2009-10-09 21:13:30 +00005360 if (R.empty()) {
Douglas Gregore40876a2009-10-13 21:16:44 +00005361 Diag(IdentLoc, diag::err_no_member)
Abramo Bagnara8de74e92010-08-12 11:46:03 +00005362 << NameInfo.getName() << LookupContext << SS.getRange();
John McCallb96ec562009-12-04 22:46:56 +00005363 UD->setInvalidDecl();
5364 return UD;
Douglas Gregorfec52632009-06-20 00:51:54 +00005365 }
5366
John McCallb96ec562009-12-04 22:46:56 +00005367 if (R.isAmbiguous()) {
5368 UD->setInvalidDecl();
5369 return UD;
5370 }
Mike Stump11289f42009-09-09 15:08:12 +00005371
John McCalle61f2ba2009-11-18 02:36:19 +00005372 if (IsTypeName) {
5373 // If we asked for a typename and got a non-type decl, error out.
John McCallb96ec562009-12-04 22:46:56 +00005374 if (!R.getAsSingle<TypeDecl>()) {
John McCalle61f2ba2009-11-18 02:36:19 +00005375 Diag(IdentLoc, diag::err_using_typename_non_type);
5376 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I)
5377 Diag((*I)->getUnderlyingDecl()->getLocation(),
5378 diag::note_using_decl_target);
John McCallb96ec562009-12-04 22:46:56 +00005379 UD->setInvalidDecl();
5380 return UD;
John McCalle61f2ba2009-11-18 02:36:19 +00005381 }
5382 } else {
5383 // If we asked for a non-typename and we got a type, error out,
5384 // but only if this is an instantiation of an unresolved using
5385 // decl. Otherwise just silently find the type name.
John McCallb96ec562009-12-04 22:46:56 +00005386 if (IsInstantiation && R.getAsSingle<TypeDecl>()) {
John McCalle61f2ba2009-11-18 02:36:19 +00005387 Diag(IdentLoc, diag::err_using_dependent_value_is_type);
5388 Diag(R.getFoundDecl()->getLocation(), diag::note_using_decl_target);
John McCallb96ec562009-12-04 22:46:56 +00005389 UD->setInvalidDecl();
5390 return UD;
John McCalle61f2ba2009-11-18 02:36:19 +00005391 }
Anders Carlsson59140b32009-08-28 03:16:11 +00005392 }
5393
Anders Carlsson5a9c5ac2009-08-28 03:35:18 +00005394 // C++0x N2914 [namespace.udecl]p6:
5395 // A using-declaration shall not name a namespace.
John McCallb96ec562009-12-04 22:46:56 +00005396 if (R.getAsSingle<NamespaceDecl>()) {
Anders Carlsson5a9c5ac2009-08-28 03:35:18 +00005397 Diag(IdentLoc, diag::err_using_decl_can_not_refer_to_namespace)
5398 << SS.getRange();
John McCallb96ec562009-12-04 22:46:56 +00005399 UD->setInvalidDecl();
5400 return UD;
Anders Carlsson5a9c5ac2009-08-28 03:35:18 +00005401 }
Mike Stump11289f42009-09-09 15:08:12 +00005402
John McCall84d87672009-12-10 09:41:52 +00005403 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) {
5404 if (!CheckUsingShadowDecl(UD, *I, Previous))
5405 BuildUsingShadowDecl(S, UD, *I);
5406 }
John McCall3f746822009-11-17 05:59:44 +00005407
5408 return UD;
Douglas Gregorfec52632009-06-20 00:51:54 +00005409}
5410
Sebastian Redl08905022011-02-05 19:23:19 +00005411/// Additional checks for a using declaration referring to a constructor name.
5412bool Sema::CheckInheritedConstructorUsingDecl(UsingDecl *UD) {
5413 if (UD->isTypeName()) {
5414 // FIXME: Cannot specify typename when specifying constructor
5415 return true;
5416 }
5417
Douglas Gregora9d87bc2011-02-25 00:36:19 +00005418 const Type *SourceType = UD->getQualifier()->getAsType();
Sebastian Redl08905022011-02-05 19:23:19 +00005419 assert(SourceType &&
5420 "Using decl naming constructor doesn't have type in scope spec.");
5421 CXXRecordDecl *TargetClass = cast<CXXRecordDecl>(CurContext);
5422
5423 // Check whether the named type is a direct base class.
5424 CanQualType CanonicalSourceType = SourceType->getCanonicalTypeUnqualified();
5425 CXXRecordDecl::base_class_iterator BaseIt, BaseE;
5426 for (BaseIt = TargetClass->bases_begin(), BaseE = TargetClass->bases_end();
5427 BaseIt != BaseE; ++BaseIt) {
5428 CanQualType BaseType = BaseIt->getType()->getCanonicalTypeUnqualified();
5429 if (CanonicalSourceType == BaseType)
5430 break;
5431 }
5432
5433 if (BaseIt == BaseE) {
5434 // Did not find SourceType in the bases.
5435 Diag(UD->getUsingLocation(),
5436 diag::err_using_decl_constructor_not_in_direct_base)
5437 << UD->getNameInfo().getSourceRange()
5438 << QualType(SourceType, 0) << TargetClass;
5439 return true;
5440 }
5441
5442 BaseIt->setInheritConstructors();
5443
5444 return false;
5445}
5446
John McCall84d87672009-12-10 09:41:52 +00005447/// Checks that the given using declaration is not an invalid
5448/// redeclaration. Note that this is checking only for the using decl
5449/// itself, not for any ill-formedness among the UsingShadowDecls.
5450bool Sema::CheckUsingDeclRedeclaration(SourceLocation UsingLoc,
5451 bool isTypeName,
5452 const CXXScopeSpec &SS,
5453 SourceLocation NameLoc,
5454 const LookupResult &Prev) {
5455 // C++03 [namespace.udecl]p8:
5456 // C++0x [namespace.udecl]p10:
5457 // A using-declaration is a declaration and can therefore be used
5458 // repeatedly where (and only where) multiple declarations are
5459 // allowed.
Douglas Gregor4b718ee2010-05-06 23:31:27 +00005460 //
John McCall032092f2010-11-29 18:01:58 +00005461 // That's in non-member contexts.
5462 if (!CurContext->getRedeclContext()->isRecord())
John McCall84d87672009-12-10 09:41:52 +00005463 return false;
5464
5465 NestedNameSpecifier *Qual
5466 = static_cast<NestedNameSpecifier*>(SS.getScopeRep());
5467
5468 for (LookupResult::iterator I = Prev.begin(), E = Prev.end(); I != E; ++I) {
5469 NamedDecl *D = *I;
5470
5471 bool DTypename;
5472 NestedNameSpecifier *DQual;
5473 if (UsingDecl *UD = dyn_cast<UsingDecl>(D)) {
5474 DTypename = UD->isTypeName();
Douglas Gregora9d87bc2011-02-25 00:36:19 +00005475 DQual = UD->getQualifier();
John McCall84d87672009-12-10 09:41:52 +00005476 } else if (UnresolvedUsingValueDecl *UD
5477 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
5478 DTypename = false;
Douglas Gregora9d87bc2011-02-25 00:36:19 +00005479 DQual = UD->getQualifier();
John McCall84d87672009-12-10 09:41:52 +00005480 } else if (UnresolvedUsingTypenameDecl *UD
5481 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
5482 DTypename = true;
Douglas Gregora9d87bc2011-02-25 00:36:19 +00005483 DQual = UD->getQualifier();
John McCall84d87672009-12-10 09:41:52 +00005484 } else continue;
5485
5486 // using decls differ if one says 'typename' and the other doesn't.
5487 // FIXME: non-dependent using decls?
5488 if (isTypeName != DTypename) continue;
5489
5490 // using decls differ if they name different scopes (but note that
5491 // template instantiation can cause this check to trigger when it
5492 // didn't before instantiation).
5493 if (Context.getCanonicalNestedNameSpecifier(Qual) !=
5494 Context.getCanonicalNestedNameSpecifier(DQual))
5495 continue;
5496
5497 Diag(NameLoc, diag::err_using_decl_redeclaration) << SS.getRange();
John McCalle29c5cd2009-12-10 19:51:03 +00005498 Diag(D->getLocation(), diag::note_using_decl) << 1;
John McCall84d87672009-12-10 09:41:52 +00005499 return true;
5500 }
5501
5502 return false;
5503}
5504
John McCall3969e302009-12-08 07:46:18 +00005505
John McCallb96ec562009-12-04 22:46:56 +00005506/// Checks that the given nested-name qualifier used in a using decl
5507/// in the current context is appropriately related to the current
5508/// scope. If an error is found, diagnoses it and returns true.
5509bool Sema::CheckUsingDeclQualifier(SourceLocation UsingLoc,
5510 const CXXScopeSpec &SS,
5511 SourceLocation NameLoc) {
John McCall3969e302009-12-08 07:46:18 +00005512 DeclContext *NamedContext = computeDeclContext(SS);
John McCallb96ec562009-12-04 22:46:56 +00005513
John McCall3969e302009-12-08 07:46:18 +00005514 if (!CurContext->isRecord()) {
5515 // C++03 [namespace.udecl]p3:
5516 // C++0x [namespace.udecl]p8:
5517 // A using-declaration for a class member shall be a member-declaration.
5518
5519 // If we weren't able to compute a valid scope, it must be a
5520 // dependent class scope.
5521 if (!NamedContext || NamedContext->isRecord()) {
5522 Diag(NameLoc, diag::err_using_decl_can_not_refer_to_class_member)
5523 << SS.getRange();
5524 return true;
5525 }
5526
5527 // Otherwise, everything is known to be fine.
5528 return false;
5529 }
5530
5531 // The current scope is a record.
5532
5533 // If the named context is dependent, we can't decide much.
5534 if (!NamedContext) {
5535 // FIXME: in C++0x, we can diagnose if we can prove that the
5536 // nested-name-specifier does not refer to a base class, which is
5537 // still possible in some cases.
5538
5539 // Otherwise we have to conservatively report that things might be
5540 // okay.
5541 return false;
5542 }
5543
5544 if (!NamedContext->isRecord()) {
5545 // Ideally this would point at the last name in the specifier,
5546 // but we don't have that level of source info.
5547 Diag(SS.getRange().getBegin(),
5548 diag::err_using_decl_nested_name_specifier_is_not_class)
5549 << (NestedNameSpecifier*) SS.getScopeRep() << SS.getRange();
5550 return true;
5551 }
5552
Douglas Gregor7c842292010-12-21 07:41:49 +00005553 if (!NamedContext->isDependentContext() &&
5554 RequireCompleteDeclContext(const_cast<CXXScopeSpec&>(SS), NamedContext))
5555 return true;
5556
John McCall3969e302009-12-08 07:46:18 +00005557 if (getLangOptions().CPlusPlus0x) {
5558 // C++0x [namespace.udecl]p3:
5559 // In a using-declaration used as a member-declaration, the
5560 // nested-name-specifier shall name a base class of the class
5561 // being defined.
5562
5563 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(
5564 cast<CXXRecordDecl>(NamedContext))) {
5565 if (CurContext == NamedContext) {
5566 Diag(NameLoc,
5567 diag::err_using_decl_nested_name_specifier_is_current_class)
5568 << SS.getRange();
5569 return true;
5570 }
5571
5572 Diag(SS.getRange().getBegin(),
5573 diag::err_using_decl_nested_name_specifier_is_not_base_class)
5574 << (NestedNameSpecifier*) SS.getScopeRep()
5575 << cast<CXXRecordDecl>(CurContext)
5576 << SS.getRange();
5577 return true;
5578 }
5579
5580 return false;
5581 }
5582
5583 // C++03 [namespace.udecl]p4:
5584 // A using-declaration used as a member-declaration shall refer
5585 // to a member of a base class of the class being defined [etc.].
5586
5587 // Salient point: SS doesn't have to name a base class as long as
5588 // lookup only finds members from base classes. Therefore we can
5589 // diagnose here only if we can prove that that can't happen,
5590 // i.e. if the class hierarchies provably don't intersect.
5591
5592 // TODO: it would be nice if "definitely valid" results were cached
5593 // in the UsingDecl and UsingShadowDecl so that these checks didn't
5594 // need to be repeated.
5595
5596 struct UserData {
5597 llvm::DenseSet<const CXXRecordDecl*> Bases;
5598
5599 static bool collect(const CXXRecordDecl *Base, void *OpaqueData) {
5600 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
5601 Data->Bases.insert(Base);
5602 return true;
5603 }
5604
5605 bool hasDependentBases(const CXXRecordDecl *Class) {
5606 return !Class->forallBases(collect, this);
5607 }
5608
5609 /// Returns true if the base is dependent or is one of the
5610 /// accumulated base classes.
5611 static bool doesNotContain(const CXXRecordDecl *Base, void *OpaqueData) {
5612 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
5613 return !Data->Bases.count(Base);
5614 }
5615
5616 bool mightShareBases(const CXXRecordDecl *Class) {
5617 return Bases.count(Class) || !Class->forallBases(doesNotContain, this);
5618 }
5619 };
5620
5621 UserData Data;
5622
5623 // Returns false if we find a dependent base.
5624 if (Data.hasDependentBases(cast<CXXRecordDecl>(CurContext)))
5625 return false;
5626
5627 // Returns false if the class has a dependent base or if it or one
5628 // of its bases is present in the base set of the current context.
5629 if (Data.mightShareBases(cast<CXXRecordDecl>(NamedContext)))
5630 return false;
5631
5632 Diag(SS.getRange().getBegin(),
5633 diag::err_using_decl_nested_name_specifier_is_not_base_class)
5634 << (NestedNameSpecifier*) SS.getScopeRep()
5635 << cast<CXXRecordDecl>(CurContext)
5636 << SS.getRange();
5637
5638 return true;
John McCallb96ec562009-12-04 22:46:56 +00005639}
5640
Richard Smithdda56e42011-04-15 14:24:37 +00005641Decl *Sema::ActOnAliasDeclaration(Scope *S,
5642 AccessSpecifier AS,
Richard Smith3f1b5d02011-05-05 21:57:07 +00005643 MultiTemplateParamsArg TemplateParamLists,
Richard Smithdda56e42011-04-15 14:24:37 +00005644 SourceLocation UsingLoc,
5645 UnqualifiedId &Name,
5646 TypeResult Type) {
Richard Smith3f1b5d02011-05-05 21:57:07 +00005647 // Skip up to the relevant declaration scope.
5648 while (S->getFlags() & Scope::TemplateParamScope)
5649 S = S->getParent();
Richard Smithdda56e42011-04-15 14:24:37 +00005650 assert((S->getFlags() & Scope::DeclScope) &&
5651 "got alias-declaration outside of declaration scope");
5652
5653 if (Type.isInvalid())
5654 return 0;
5655
5656 bool Invalid = false;
5657 DeclarationNameInfo NameInfo = GetNameFromUnqualifiedId(Name);
5658 TypeSourceInfo *TInfo = 0;
Nick Lewycky82e47802011-05-02 01:07:19 +00005659 GetTypeFromParser(Type.get(), &TInfo);
Richard Smithdda56e42011-04-15 14:24:37 +00005660
5661 if (DiagnoseClassNameShadow(CurContext, NameInfo))
5662 return 0;
5663
5664 if (DiagnoseUnexpandedParameterPack(Name.StartLocation, TInfo,
Richard Smith3f1b5d02011-05-05 21:57:07 +00005665 UPPC_DeclarationType)) {
Richard Smithdda56e42011-04-15 14:24:37 +00005666 Invalid = true;
Richard Smith3f1b5d02011-05-05 21:57:07 +00005667 TInfo = Context.getTrivialTypeSourceInfo(Context.IntTy,
5668 TInfo->getTypeLoc().getBeginLoc());
5669 }
Richard Smithdda56e42011-04-15 14:24:37 +00005670
5671 LookupResult Previous(*this, NameInfo, LookupOrdinaryName, ForRedeclaration);
5672 LookupName(Previous, S);
5673
5674 // Warn about shadowing the name of a template parameter.
5675 if (Previous.isSingleResult() &&
5676 Previous.getFoundDecl()->isTemplateParameter()) {
5677 if (DiagnoseTemplateParameterShadow(Name.StartLocation,
5678 Previous.getFoundDecl()))
5679 Invalid = true;
5680 Previous.clear();
5681 }
5682
5683 assert(Name.Kind == UnqualifiedId::IK_Identifier &&
5684 "name in alias declaration must be an identifier");
5685 TypeAliasDecl *NewTD = TypeAliasDecl::Create(Context, CurContext, UsingLoc,
5686 Name.StartLocation,
5687 Name.Identifier, TInfo);
5688
5689 NewTD->setAccess(AS);
5690
5691 if (Invalid)
5692 NewTD->setInvalidDecl();
5693
Richard Smith3f1b5d02011-05-05 21:57:07 +00005694 CheckTypedefForVariablyModifiedType(S, NewTD);
5695 Invalid |= NewTD->isInvalidDecl();
5696
Richard Smithdda56e42011-04-15 14:24:37 +00005697 bool Redeclaration = false;
Richard Smith3f1b5d02011-05-05 21:57:07 +00005698
5699 NamedDecl *NewND;
5700 if (TemplateParamLists.size()) {
5701 TypeAliasTemplateDecl *OldDecl = 0;
5702 TemplateParameterList *OldTemplateParams = 0;
5703
5704 if (TemplateParamLists.size() != 1) {
5705 Diag(UsingLoc, diag::err_alias_template_extra_headers)
5706 << SourceRange(TemplateParamLists.get()[1]->getTemplateLoc(),
5707 TemplateParamLists.get()[TemplateParamLists.size()-1]->getRAngleLoc());
5708 }
5709 TemplateParameterList *TemplateParams = TemplateParamLists.get()[0];
5710
5711 // Only consider previous declarations in the same scope.
5712 FilterLookupForScope(Previous, CurContext, S, /*ConsiderLinkage*/false,
5713 /*ExplicitInstantiationOrSpecialization*/false);
5714 if (!Previous.empty()) {
5715 Redeclaration = true;
5716
5717 OldDecl = Previous.getAsSingle<TypeAliasTemplateDecl>();
5718 if (!OldDecl && !Invalid) {
5719 Diag(UsingLoc, diag::err_redefinition_different_kind)
5720 << Name.Identifier;
5721
5722 NamedDecl *OldD = Previous.getRepresentativeDecl();
5723 if (OldD->getLocation().isValid())
5724 Diag(OldD->getLocation(), diag::note_previous_definition);
5725
5726 Invalid = true;
5727 }
5728
5729 if (!Invalid && OldDecl && !OldDecl->isInvalidDecl()) {
5730 if (TemplateParameterListsAreEqual(TemplateParams,
5731 OldDecl->getTemplateParameters(),
5732 /*Complain=*/true,
5733 TPL_TemplateMatch))
5734 OldTemplateParams = OldDecl->getTemplateParameters();
5735 else
5736 Invalid = true;
5737
5738 TypeAliasDecl *OldTD = OldDecl->getTemplatedDecl();
5739 if (!Invalid &&
5740 !Context.hasSameType(OldTD->getUnderlyingType(),
5741 NewTD->getUnderlyingType())) {
5742 // FIXME: The C++0x standard does not clearly say this is ill-formed,
5743 // but we can't reasonably accept it.
5744 Diag(NewTD->getLocation(), diag::err_redefinition_different_typedef)
5745 << 2 << NewTD->getUnderlyingType() << OldTD->getUnderlyingType();
5746 if (OldTD->getLocation().isValid())
5747 Diag(OldTD->getLocation(), diag::note_previous_definition);
5748 Invalid = true;
5749 }
5750 }
5751 }
5752
5753 // Merge any previous default template arguments into our parameters,
5754 // and check the parameter list.
5755 if (CheckTemplateParameterList(TemplateParams, OldTemplateParams,
5756 TPC_TypeAliasTemplate))
5757 return 0;
5758
5759 TypeAliasTemplateDecl *NewDecl =
5760 TypeAliasTemplateDecl::Create(Context, CurContext, UsingLoc,
5761 Name.Identifier, TemplateParams,
5762 NewTD);
5763
5764 NewDecl->setAccess(AS);
5765
5766 if (Invalid)
5767 NewDecl->setInvalidDecl();
5768 else if (OldDecl)
5769 NewDecl->setPreviousDeclaration(OldDecl);
5770
5771 NewND = NewDecl;
5772 } else {
5773 ActOnTypedefNameDecl(S, CurContext, NewTD, Previous, Redeclaration);
5774 NewND = NewTD;
5775 }
Richard Smithdda56e42011-04-15 14:24:37 +00005776
5777 if (!Redeclaration)
Richard Smith3f1b5d02011-05-05 21:57:07 +00005778 PushOnScopeChains(NewND, S);
Richard Smithdda56e42011-04-15 14:24:37 +00005779
Richard Smith3f1b5d02011-05-05 21:57:07 +00005780 return NewND;
Richard Smithdda56e42011-04-15 14:24:37 +00005781}
5782
John McCall48871652010-08-21 09:40:31 +00005783Decl *Sema::ActOnNamespaceAliasDef(Scope *S,
Anders Carlsson47952ae2009-03-28 22:53:22 +00005784 SourceLocation NamespaceLoc,
Chris Lattner83f095c2009-03-28 19:18:32 +00005785 SourceLocation AliasLoc,
5786 IdentifierInfo *Alias,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00005787 CXXScopeSpec &SS,
Anders Carlsson47952ae2009-03-28 22:53:22 +00005788 SourceLocation IdentLoc,
5789 IdentifierInfo *Ident) {
Mike Stump11289f42009-09-09 15:08:12 +00005790
Anders Carlssonbb1e4722009-03-28 23:53:49 +00005791 // Lookup the namespace name.
John McCall27b18f82009-11-17 02:14:36 +00005792 LookupResult R(*this, Ident, IdentLoc, LookupNamespaceName);
5793 LookupParsedName(R, S, &SS);
Anders Carlssonbb1e4722009-03-28 23:53:49 +00005794
Anders Carlssondca83c42009-03-28 06:23:46 +00005795 // Check if we have a previous declaration with the same name.
Douglas Gregor5cf8d672010-05-03 15:37:31 +00005796 NamedDecl *PrevDecl
5797 = LookupSingleName(S, Alias, AliasLoc, LookupOrdinaryName,
5798 ForRedeclaration);
5799 if (PrevDecl && !isDeclInScope(PrevDecl, CurContext, S))
5800 PrevDecl = 0;
5801
5802 if (PrevDecl) {
Anders Carlssonbb1e4722009-03-28 23:53:49 +00005803 if (NamespaceAliasDecl *AD = dyn_cast<NamespaceAliasDecl>(PrevDecl)) {
Mike Stump11289f42009-09-09 15:08:12 +00005804 // We already have an alias with the same name that points to the same
Anders Carlssonbb1e4722009-03-28 23:53:49 +00005805 // namespace, so don't create a new one.
Douglas Gregor4667eff2010-03-26 22:59:39 +00005806 // FIXME: At some point, we'll want to create the (redundant)
5807 // declaration to maintain better source information.
John McCall9f3059a2009-10-09 21:13:30 +00005808 if (!R.isAmbiguous() && !R.empty() &&
Douglas Gregor4667eff2010-03-26 22:59:39 +00005809 AD->getNamespace()->Equals(getNamespaceDecl(R.getFoundDecl())))
John McCall48871652010-08-21 09:40:31 +00005810 return 0;
Anders Carlssonbb1e4722009-03-28 23:53:49 +00005811 }
Mike Stump11289f42009-09-09 15:08:12 +00005812
Anders Carlssondca83c42009-03-28 06:23:46 +00005813 unsigned DiagID = isa<NamespaceDecl>(PrevDecl) ? diag::err_redefinition :
5814 diag::err_redefinition_different_kind;
5815 Diag(AliasLoc, DiagID) << Alias;
5816 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
John McCall48871652010-08-21 09:40:31 +00005817 return 0;
Anders Carlssondca83c42009-03-28 06:23:46 +00005818 }
5819
John McCall27b18f82009-11-17 02:14:36 +00005820 if (R.isAmbiguous())
John McCall48871652010-08-21 09:40:31 +00005821 return 0;
Mike Stump11289f42009-09-09 15:08:12 +00005822
John McCall9f3059a2009-10-09 21:13:30 +00005823 if (R.empty()) {
Douglas Gregor9629e9a2010-06-29 18:55:19 +00005824 if (DeclarationName Corrected = CorrectTypo(R, S, &SS, 0, false,
5825 CTC_NoKeywords, 0)) {
5826 if (R.getAsSingle<NamespaceDecl>() ||
5827 R.getAsSingle<NamespaceAliasDecl>()) {
5828 if (DeclContext *DC = computeDeclContext(SS, false))
5829 Diag(IdentLoc, diag::err_using_directive_member_suggest)
5830 << Ident << DC << Corrected << SS.getRange()
5831 << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
5832 else
5833 Diag(IdentLoc, diag::err_using_directive_suggest)
5834 << Ident << Corrected
5835 << FixItHint::CreateReplacement(IdentLoc, Corrected.getAsString());
5836
5837 Diag(R.getFoundDecl()->getLocation(), diag::note_namespace_defined_here)
5838 << Corrected;
5839
5840 Ident = Corrected.getAsIdentifierInfo();
Douglas Gregorc048c522010-06-29 19:27:42 +00005841 } else {
5842 R.clear();
5843 R.setLookupName(Ident);
Douglas Gregor9629e9a2010-06-29 18:55:19 +00005844 }
5845 }
5846
5847 if (R.empty()) {
5848 Diag(NamespaceLoc, diag::err_expected_namespace_name) << SS.getRange();
John McCall48871652010-08-21 09:40:31 +00005849 return 0;
Douglas Gregor9629e9a2010-06-29 18:55:19 +00005850 }
Anders Carlssonac2c9652009-03-28 06:42:02 +00005851 }
Mike Stump11289f42009-09-09 15:08:12 +00005852
Fariborz Jahanian423a81f2009-06-19 19:55:27 +00005853 NamespaceAliasDecl *AliasDecl =
Mike Stump11289f42009-09-09 15:08:12 +00005854 NamespaceAliasDecl::Create(Context, CurContext, NamespaceLoc, AliasLoc,
Douglas Gregorc05ba2e2011-02-25 17:08:07 +00005855 Alias, SS.getWithLocInContext(Context),
John McCall9f3059a2009-10-09 21:13:30 +00005856 IdentLoc, R.getFoundDecl());
Mike Stump11289f42009-09-09 15:08:12 +00005857
John McCalld8d0d432010-02-16 06:53:13 +00005858 PushOnScopeChains(AliasDecl, S);
John McCall48871652010-08-21 09:40:31 +00005859 return AliasDecl;
Anders Carlsson9205d552009-03-28 05:27:17 +00005860}
5861
Douglas Gregora57478e2010-05-01 15:04:51 +00005862namespace {
5863 /// \brief Scoped object used to handle the state changes required in Sema
5864 /// to implicitly define the body of a C++ member function;
5865 class ImplicitlyDefinedFunctionScope {
5866 Sema &S;
John McCallc1465822011-02-14 07:13:47 +00005867 Sema::ContextRAII SavedContext;
Douglas Gregora57478e2010-05-01 15:04:51 +00005868
5869 public:
5870 ImplicitlyDefinedFunctionScope(Sema &S, CXXMethodDecl *Method)
John McCallc1465822011-02-14 07:13:47 +00005871 : S(S), SavedContext(S, Method)
Douglas Gregora57478e2010-05-01 15:04:51 +00005872 {
Douglas Gregora57478e2010-05-01 15:04:51 +00005873 S.PushFunctionScope();
5874 S.PushExpressionEvaluationContext(Sema::PotentiallyEvaluated);
5875 }
5876
5877 ~ImplicitlyDefinedFunctionScope() {
5878 S.PopExpressionEvaluationContext();
5879 S.PopFunctionOrBlockScope();
Douglas Gregora57478e2010-05-01 15:04:51 +00005880 }
5881 };
5882}
5883
Sebastian Redlc15c3262010-09-13 22:02:47 +00005884static CXXConstructorDecl *getDefaultConstructorUnsafe(Sema &Self,
5885 CXXRecordDecl *D) {
5886 ASTContext &Context = Self.Context;
5887 QualType ClassType = Context.getTypeDeclType(D);
5888 DeclarationName ConstructorName
5889 = Context.DeclarationNames.getCXXConstructorName(
5890 Context.getCanonicalType(ClassType.getUnqualifiedType()));
5891
5892 DeclContext::lookup_const_iterator Con, ConEnd;
5893 for (llvm::tie(Con, ConEnd) = D->lookup(ConstructorName);
5894 Con != ConEnd; ++Con) {
5895 // FIXME: In C++0x, a constructor template can be a default constructor.
5896 if (isa<FunctionTemplateDecl>(*Con))
5897 continue;
5898
5899 CXXConstructorDecl *Constructor = cast<CXXConstructorDecl>(*Con);
5900 if (Constructor->isDefaultConstructor())
5901 return Constructor;
5902 }
5903 return 0;
5904}
5905
Alexis Hunt6d5b96c2011-05-10 00:49:42 +00005906Sema::ImplicitExceptionSpecification
5907Sema::ComputeDefaultedDefaultCtorExceptionSpec(CXXRecordDecl *ClassDecl) {
Douglas Gregor6d880b12010-07-01 22:31:05 +00005908 // C++ [except.spec]p14:
5909 // An implicitly declared special member function (Clause 12) shall have an
5910 // exception-specification. [...]
5911 ImplicitExceptionSpecification ExceptSpec(Context);
5912
Sebastian Redlfa453cf2011-03-12 11:50:43 +00005913 // Direct base-class constructors.
Douglas Gregor6d880b12010-07-01 22:31:05 +00005914 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
5915 BEnd = ClassDecl->bases_end();
5916 B != BEnd; ++B) {
5917 if (B->isVirtual()) // Handled below.
5918 continue;
5919
Douglas Gregor9672f922010-07-03 00:47:00 +00005920 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
5921 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Alexis Huntea6f0322011-05-11 22:34:38 +00005922 if (BaseClassDecl->needsImplicitDefaultConstructor())
Douglas Gregor9672f922010-07-03 00:47:00 +00005923 ExceptSpec.CalledDecl(DeclareImplicitDefaultConstructor(BaseClassDecl));
Sebastian Redlc15c3262010-09-13 22:02:47 +00005924 else if (CXXConstructorDecl *Constructor
5925 = getDefaultConstructorUnsafe(*this, BaseClassDecl))
Douglas Gregor6d880b12010-07-01 22:31:05 +00005926 ExceptSpec.CalledDecl(Constructor);
Douglas Gregor9672f922010-07-03 00:47:00 +00005927 }
Douglas Gregor6d880b12010-07-01 22:31:05 +00005928 }
Sebastian Redlfa453cf2011-03-12 11:50:43 +00005929
5930 // Virtual base-class constructors.
Douglas Gregor6d880b12010-07-01 22:31:05 +00005931 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
5932 BEnd = ClassDecl->vbases_end();
5933 B != BEnd; ++B) {
Douglas Gregor9672f922010-07-03 00:47:00 +00005934 if (const RecordType *BaseType = B->getType()->getAs<RecordType>()) {
5935 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Alexis Huntea6f0322011-05-11 22:34:38 +00005936 if (BaseClassDecl->needsImplicitDefaultConstructor())
Douglas Gregor9672f922010-07-03 00:47:00 +00005937 ExceptSpec.CalledDecl(DeclareImplicitDefaultConstructor(BaseClassDecl));
5938 else if (CXXConstructorDecl *Constructor
Sebastian Redlc15c3262010-09-13 22:02:47 +00005939 = getDefaultConstructorUnsafe(*this, BaseClassDecl))
Douglas Gregor6d880b12010-07-01 22:31:05 +00005940 ExceptSpec.CalledDecl(Constructor);
Douglas Gregor9672f922010-07-03 00:47:00 +00005941 }
Douglas Gregor6d880b12010-07-01 22:31:05 +00005942 }
Sebastian Redlfa453cf2011-03-12 11:50:43 +00005943
5944 // Field constructors.
Douglas Gregor6d880b12010-07-01 22:31:05 +00005945 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
5946 FEnd = ClassDecl->field_end();
5947 F != FEnd; ++F) {
5948 if (const RecordType *RecordTy
Douglas Gregor9672f922010-07-03 00:47:00 +00005949 = Context.getBaseElementType(F->getType())->getAs<RecordType>()) {
5950 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
Alexis Huntea6f0322011-05-11 22:34:38 +00005951 if (FieldClassDecl->needsImplicitDefaultConstructor())
Douglas Gregor9672f922010-07-03 00:47:00 +00005952 ExceptSpec.CalledDecl(
5953 DeclareImplicitDefaultConstructor(FieldClassDecl));
5954 else if (CXXConstructorDecl *Constructor
Sebastian Redlc15c3262010-09-13 22:02:47 +00005955 = getDefaultConstructorUnsafe(*this, FieldClassDecl))
Douglas Gregor6d880b12010-07-01 22:31:05 +00005956 ExceptSpec.CalledDecl(Constructor);
Douglas Gregor9672f922010-07-03 00:47:00 +00005957 }
Douglas Gregor6d880b12010-07-01 22:31:05 +00005958 }
John McCalldb40c7f2010-12-14 08:05:40 +00005959
Alexis Hunt6d5b96c2011-05-10 00:49:42 +00005960 return ExceptSpec;
5961}
5962
5963CXXConstructorDecl *Sema::DeclareImplicitDefaultConstructor(
5964 CXXRecordDecl *ClassDecl) {
5965 // C++ [class.ctor]p5:
5966 // A default constructor for a class X is a constructor of class X
5967 // that can be called without an argument. If there is no
5968 // user-declared constructor for class X, a default constructor is
5969 // implicitly declared. An implicitly-declared default constructor
5970 // is an inline public member of its class.
5971 assert(!ClassDecl->hasUserDeclaredConstructor() &&
5972 "Should not build implicit default constructor!");
5973
5974 ImplicitExceptionSpecification Spec =
5975 ComputeDefaultedDefaultCtorExceptionSpec(ClassDecl);
5976 FunctionProtoType::ExtProtoInfo EPI = Spec.getEPI();
Sebastian Redl7c6c9e92011-03-06 10:52:04 +00005977
Douglas Gregor6d880b12010-07-01 22:31:05 +00005978 // Create the actual constructor declaration.
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00005979 CanQualType ClassType
5980 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Abramo Bagnaradff19302011-03-08 08:55:46 +00005981 SourceLocation ClassLoc = ClassDecl->getLocation();
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00005982 DeclarationName Name
5983 = Context.DeclarationNames.getCXXConstructorName(ClassType);
Abramo Bagnaradff19302011-03-08 08:55:46 +00005984 DeclarationNameInfo NameInfo(Name, ClassLoc);
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00005985 CXXConstructorDecl *DefaultCon
Abramo Bagnaradff19302011-03-08 08:55:46 +00005986 = CXXConstructorDecl::Create(Context, ClassDecl, ClassLoc, NameInfo,
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00005987 Context.getFunctionType(Context.VoidTy,
John McCalldb40c7f2010-12-14 08:05:40 +00005988 0, 0, EPI),
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00005989 /*TInfo=*/0,
5990 /*isExplicit=*/false,
5991 /*isInline=*/true,
Alexis Hunt58dad7d2011-05-06 00:11:07 +00005992 /*isImplicitlyDeclared=*/true);
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00005993 DefaultCon->setAccess(AS_public);
Alexis Huntf92197c2011-05-12 03:51:51 +00005994 DefaultCon->setDefaulted();
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00005995 DefaultCon->setImplicit();
Alexis Huntf479f1b2011-05-09 18:22:59 +00005996 DefaultCon->setTrivial(ClassDecl->hasTrivialDefaultConstructor());
Douglas Gregor9672f922010-07-03 00:47:00 +00005997
5998 // Note that we have declared this constructor.
Douglas Gregor9672f922010-07-03 00:47:00 +00005999 ++ASTContext::NumImplicitDefaultConstructorsDeclared;
6000
Douglas Gregor0be31a22010-07-02 17:43:08 +00006001 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor9672f922010-07-03 00:47:00 +00006002 PushOnScopeChains(DefaultCon, S, false);
6003 ClassDecl->addDecl(DefaultCon);
Alexis Hunte77a28f2011-05-18 03:41:58 +00006004
6005 if (ShouldDeleteDefaultConstructor(DefaultCon))
6006 DefaultCon->setDeletedAsWritten();
Douglas Gregor9672f922010-07-03 00:47:00 +00006007
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00006008 return DefaultCon;
6009}
6010
Fariborz Jahanian423a81f2009-06-19 19:55:27 +00006011void Sema::DefineImplicitDefaultConstructor(SourceLocation CurrentLocation,
6012 CXXConstructorDecl *Constructor) {
Alexis Huntf92197c2011-05-12 03:51:51 +00006013 assert((Constructor->isDefaulted() && Constructor->isDefaultConstructor() &&
Alexis Hunt61ae8d32011-05-23 23:14:04 +00006014 !Constructor->doesThisDeclarationHaveABody() &&
6015 !Constructor->isDeleted()) &&
Fariborz Jahanian18eb69a2009-06-22 20:37:23 +00006016 "DefineImplicitDefaultConstructor - call it for implicit default ctor");
Mike Stump11289f42009-09-09 15:08:12 +00006017
Anders Carlsson423f5d82010-04-23 16:04:08 +00006018 CXXRecordDecl *ClassDecl = Constructor->getParent();
Eli Friedman9cf6b592009-11-09 19:20:36 +00006019 assert(ClassDecl && "DefineImplicitDefaultConstructor - invalid constructor");
Eli Friedmand7686ef2009-11-09 01:05:47 +00006020
Douglas Gregora57478e2010-05-01 15:04:51 +00006021 ImplicitlyDefinedFunctionScope Scope(*this, Constructor);
Argyrios Kyrtzidis18653422010-11-19 00:19:12 +00006022 DiagnosticErrorTrap Trap(Diags);
Alexis Hunt1d792652011-01-08 20:30:50 +00006023 if (SetCtorInitializers(Constructor, 0, 0, /*AnyErrors=*/false) ||
Douglas Gregor54818f02010-05-12 16:39:35 +00006024 Trap.hasErrorOccurred()) {
Anders Carlsson26a807d2009-11-30 21:24:50 +00006025 Diag(CurrentLocation, diag::note_member_synthesized_at)
Alexis Hunt80f00ff2011-05-10 19:08:14 +00006026 << CXXDefaultConstructor << Context.getTagDeclType(ClassDecl);
Eli Friedman9cf6b592009-11-09 19:20:36 +00006027 Constructor->setInvalidDecl();
Douglas Gregor73193272010-09-20 16:48:21 +00006028 return;
Eli Friedman9cf6b592009-11-09 19:20:36 +00006029 }
Douglas Gregor73193272010-09-20 16:48:21 +00006030
6031 SourceLocation Loc = Constructor->getLocation();
6032 Constructor->setBody(new (Context) CompoundStmt(Context, 0, 0, Loc, Loc));
6033
6034 Constructor->setUsed();
6035 MarkVTableUsed(CurrentLocation, ClassDecl);
Sebastian Redlab238a72011-04-24 16:28:06 +00006036
6037 if (ASTMutationListener *L = getASTMutationListener()) {
6038 L->CompletedImplicitDefinition(Constructor);
6039 }
Fariborz Jahanian423a81f2009-06-19 19:55:27 +00006040}
6041
Sebastian Redl08905022011-02-05 19:23:19 +00006042void Sema::DeclareInheritedConstructors(CXXRecordDecl *ClassDecl) {
6043 // We start with an initial pass over the base classes to collect those that
6044 // inherit constructors from. If there are none, we can forgo all further
6045 // processing.
6046 typedef llvm::SmallVector<const RecordType *, 4> BasesVector;
6047 BasesVector BasesToInheritFrom;
6048 for (CXXRecordDecl::base_class_iterator BaseIt = ClassDecl->bases_begin(),
6049 BaseE = ClassDecl->bases_end();
6050 BaseIt != BaseE; ++BaseIt) {
6051 if (BaseIt->getInheritConstructors()) {
6052 QualType Base = BaseIt->getType();
6053 if (Base->isDependentType()) {
6054 // If we inherit constructors from anything that is dependent, just
6055 // abort processing altogether. We'll get another chance for the
6056 // instantiations.
6057 return;
6058 }
6059 BasesToInheritFrom.push_back(Base->castAs<RecordType>());
6060 }
6061 }
6062 if (BasesToInheritFrom.empty())
6063 return;
6064
6065 // Now collect the constructors that we already have in the current class.
6066 // Those take precedence over inherited constructors.
6067 // C++0x [class.inhctor]p3: [...] a constructor is implicitly declared [...]
6068 // unless there is a user-declared constructor with the same signature in
6069 // the class where the using-declaration appears.
6070 llvm::SmallSet<const Type *, 8> ExistingConstructors;
6071 for (CXXRecordDecl::ctor_iterator CtorIt = ClassDecl->ctor_begin(),
6072 CtorE = ClassDecl->ctor_end();
6073 CtorIt != CtorE; ++CtorIt) {
6074 ExistingConstructors.insert(
6075 Context.getCanonicalType(CtorIt->getType()).getTypePtr());
6076 }
6077
6078 Scope *S = getScopeForContext(ClassDecl);
6079 DeclarationName CreatedCtorName =
6080 Context.DeclarationNames.getCXXConstructorName(
6081 ClassDecl->getTypeForDecl()->getCanonicalTypeUnqualified());
6082
6083 // Now comes the true work.
6084 // First, we keep a map from constructor types to the base that introduced
6085 // them. Needed for finding conflicting constructors. We also keep the
6086 // actually inserted declarations in there, for pretty diagnostics.
6087 typedef std::pair<CanQualType, CXXConstructorDecl *> ConstructorInfo;
6088 typedef llvm::DenseMap<const Type *, ConstructorInfo> ConstructorToSourceMap;
6089 ConstructorToSourceMap InheritedConstructors;
6090 for (BasesVector::iterator BaseIt = BasesToInheritFrom.begin(),
6091 BaseE = BasesToInheritFrom.end();
6092 BaseIt != BaseE; ++BaseIt) {
6093 const RecordType *Base = *BaseIt;
6094 CanQualType CanonicalBase = Base->getCanonicalTypeUnqualified();
6095 CXXRecordDecl *BaseDecl = cast<CXXRecordDecl>(Base->getDecl());
6096 for (CXXRecordDecl::ctor_iterator CtorIt = BaseDecl->ctor_begin(),
6097 CtorE = BaseDecl->ctor_end();
6098 CtorIt != CtorE; ++CtorIt) {
6099 // Find the using declaration for inheriting this base's constructors.
6100 DeclarationName Name =
6101 Context.DeclarationNames.getCXXConstructorName(CanonicalBase);
6102 UsingDecl *UD = dyn_cast_or_null<UsingDecl>(
6103 LookupSingleName(S, Name,SourceLocation(), LookupUsingDeclName));
6104 SourceLocation UsingLoc = UD ? UD->getLocation() :
6105 ClassDecl->getLocation();
6106
6107 // C++0x [class.inhctor]p1: The candidate set of inherited constructors
6108 // from the class X named in the using-declaration consists of actual
6109 // constructors and notional constructors that result from the
6110 // transformation of defaulted parameters as follows:
6111 // - all non-template default constructors of X, and
6112 // - for each non-template constructor of X that has at least one
6113 // parameter with a default argument, the set of constructors that
6114 // results from omitting any ellipsis parameter specification and
6115 // successively omitting parameters with a default argument from the
6116 // end of the parameter-type-list.
6117 CXXConstructorDecl *BaseCtor = *CtorIt;
6118 bool CanBeCopyOrMove = BaseCtor->isCopyOrMoveConstructor();
6119 const FunctionProtoType *BaseCtorType =
6120 BaseCtor->getType()->getAs<FunctionProtoType>();
6121
6122 for (unsigned params = BaseCtor->getMinRequiredArguments(),
6123 maxParams = BaseCtor->getNumParams();
6124 params <= maxParams; ++params) {
6125 // Skip default constructors. They're never inherited.
6126 if (params == 0)
6127 continue;
6128 // Skip copy and move constructors for the same reason.
6129 if (CanBeCopyOrMove && params == 1)
6130 continue;
6131
6132 // Build up a function type for this particular constructor.
6133 // FIXME: The working paper does not consider that the exception spec
6134 // for the inheriting constructor might be larger than that of the
6135 // source. This code doesn't yet, either.
6136 const Type *NewCtorType;
6137 if (params == maxParams)
6138 NewCtorType = BaseCtorType;
6139 else {
6140 llvm::SmallVector<QualType, 16> Args;
6141 for (unsigned i = 0; i < params; ++i) {
6142 Args.push_back(BaseCtorType->getArgType(i));
6143 }
6144 FunctionProtoType::ExtProtoInfo ExtInfo =
6145 BaseCtorType->getExtProtoInfo();
6146 ExtInfo.Variadic = false;
6147 NewCtorType = Context.getFunctionType(BaseCtorType->getResultType(),
6148 Args.data(), params, ExtInfo)
6149 .getTypePtr();
6150 }
6151 const Type *CanonicalNewCtorType =
6152 Context.getCanonicalType(NewCtorType);
6153
6154 // Now that we have the type, first check if the class already has a
6155 // constructor with this signature.
6156 if (ExistingConstructors.count(CanonicalNewCtorType))
6157 continue;
6158
6159 // Then we check if we have already declared an inherited constructor
6160 // with this signature.
6161 std::pair<ConstructorToSourceMap::iterator, bool> result =
6162 InheritedConstructors.insert(std::make_pair(
6163 CanonicalNewCtorType,
6164 std::make_pair(CanonicalBase, (CXXConstructorDecl*)0)));
6165 if (!result.second) {
6166 // Already in the map. If it came from a different class, that's an
6167 // error. Not if it's from the same.
6168 CanQualType PreviousBase = result.first->second.first;
6169 if (CanonicalBase != PreviousBase) {
6170 const CXXConstructorDecl *PrevCtor = result.first->second.second;
6171 const CXXConstructorDecl *PrevBaseCtor =
6172 PrevCtor->getInheritedConstructor();
6173 assert(PrevBaseCtor && "Conflicting constructor was not inherited");
6174
6175 Diag(UsingLoc, diag::err_using_decl_constructor_conflict);
6176 Diag(BaseCtor->getLocation(),
6177 diag::note_using_decl_constructor_conflict_current_ctor);
6178 Diag(PrevBaseCtor->getLocation(),
6179 diag::note_using_decl_constructor_conflict_previous_ctor);
6180 Diag(PrevCtor->getLocation(),
6181 diag::note_using_decl_constructor_conflict_previous_using);
6182 }
6183 continue;
6184 }
6185
6186 // OK, we're there, now add the constructor.
6187 // C++0x [class.inhctor]p8: [...] that would be performed by a
6188 // user-writtern inline constructor [...]
6189 DeclarationNameInfo DNI(CreatedCtorName, UsingLoc);
6190 CXXConstructorDecl *NewCtor = CXXConstructorDecl::Create(
Abramo Bagnaradff19302011-03-08 08:55:46 +00006191 Context, ClassDecl, UsingLoc, DNI, QualType(NewCtorType, 0),
6192 /*TInfo=*/0, BaseCtor->isExplicit(), /*Inline=*/true,
Alexis Hunt58dad7d2011-05-06 00:11:07 +00006193 /*ImplicitlyDeclared=*/true);
Sebastian Redl08905022011-02-05 19:23:19 +00006194 NewCtor->setAccess(BaseCtor->getAccess());
6195
6196 // Build up the parameter decls and add them.
6197 llvm::SmallVector<ParmVarDecl *, 16> ParamDecls;
6198 for (unsigned i = 0; i < params; ++i) {
Abramo Bagnaradff19302011-03-08 08:55:46 +00006199 ParamDecls.push_back(ParmVarDecl::Create(Context, NewCtor,
6200 UsingLoc, UsingLoc,
Sebastian Redl08905022011-02-05 19:23:19 +00006201 /*IdentifierInfo=*/0,
6202 BaseCtorType->getArgType(i),
6203 /*TInfo=*/0, SC_None,
6204 SC_None, /*DefaultArg=*/0));
6205 }
6206 NewCtor->setParams(ParamDecls.data(), ParamDecls.size());
6207 NewCtor->setInheritedConstructor(BaseCtor);
6208
6209 PushOnScopeChains(NewCtor, S, false);
6210 ClassDecl->addDecl(NewCtor);
6211 result.first->second.second = NewCtor;
6212 }
6213 }
6214 }
6215}
6216
Alexis Huntf91729462011-05-12 22:46:25 +00006217Sema::ImplicitExceptionSpecification
6218Sema::ComputeDefaultedDtorExceptionSpec(CXXRecordDecl *ClassDecl) {
Douglas Gregorf1203042010-07-01 19:09:28 +00006219 // C++ [except.spec]p14:
6220 // An implicitly declared special member function (Clause 12) shall have
6221 // an exception-specification.
6222 ImplicitExceptionSpecification ExceptSpec(Context);
6223
6224 // Direct base-class destructors.
6225 for (CXXRecordDecl::base_class_iterator B = ClassDecl->bases_begin(),
6226 BEnd = ClassDecl->bases_end();
6227 B != BEnd; ++B) {
6228 if (B->isVirtual()) // Handled below.
6229 continue;
6230
6231 if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
6232 ExceptSpec.CalledDecl(
Sebastian Redl623ea822011-05-19 05:13:44 +00006233 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorf1203042010-07-01 19:09:28 +00006234 }
Sebastian Redl623ea822011-05-19 05:13:44 +00006235
Douglas Gregorf1203042010-07-01 19:09:28 +00006236 // Virtual base-class destructors.
6237 for (CXXRecordDecl::base_class_iterator B = ClassDecl->vbases_begin(),
6238 BEnd = ClassDecl->vbases_end();
6239 B != BEnd; ++B) {
6240 if (const RecordType *BaseType = B->getType()->getAs<RecordType>())
6241 ExceptSpec.CalledDecl(
Sebastian Redl623ea822011-05-19 05:13:44 +00006242 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorf1203042010-07-01 19:09:28 +00006243 }
Sebastian Redl623ea822011-05-19 05:13:44 +00006244
Douglas Gregorf1203042010-07-01 19:09:28 +00006245 // Field destructors.
6246 for (RecordDecl::field_iterator F = ClassDecl->field_begin(),
6247 FEnd = ClassDecl->field_end();
6248 F != FEnd; ++F) {
6249 if (const RecordType *RecordTy
6250 = Context.getBaseElementType(F->getType())->getAs<RecordType>())
6251 ExceptSpec.CalledDecl(
Sebastian Redl623ea822011-05-19 05:13:44 +00006252 LookupDestructor(cast<CXXRecordDecl>(RecordTy->getDecl())));
Douglas Gregorf1203042010-07-01 19:09:28 +00006253 }
Sebastian Redlfa453cf2011-03-12 11:50:43 +00006254
Alexis Huntf91729462011-05-12 22:46:25 +00006255 return ExceptSpec;
6256}
6257
6258CXXDestructorDecl *Sema::DeclareImplicitDestructor(CXXRecordDecl *ClassDecl) {
6259 // C++ [class.dtor]p2:
6260 // If a class has no user-declared destructor, a destructor is
6261 // declared implicitly. An implicitly-declared destructor is an
6262 // inline public member of its class.
6263
6264 ImplicitExceptionSpecification Spec =
Sebastian Redl623ea822011-05-19 05:13:44 +00006265 ComputeDefaultedDtorExceptionSpec(ClassDecl);
Alexis Huntf91729462011-05-12 22:46:25 +00006266 FunctionProtoType::ExtProtoInfo EPI = Spec.getEPI();
6267
Douglas Gregor7454c562010-07-02 20:37:36 +00006268 // Create the actual destructor declaration.
John McCalldb40c7f2010-12-14 08:05:40 +00006269 QualType Ty = Context.getFunctionType(Context.VoidTy, 0, 0, EPI);
Sebastian Redlfa453cf2011-03-12 11:50:43 +00006270
Douglas Gregorf1203042010-07-01 19:09:28 +00006271 CanQualType ClassType
6272 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Abramo Bagnaradff19302011-03-08 08:55:46 +00006273 SourceLocation ClassLoc = ClassDecl->getLocation();
Douglas Gregorf1203042010-07-01 19:09:28 +00006274 DeclarationName Name
6275 = Context.DeclarationNames.getCXXDestructorName(ClassType);
Abramo Bagnaradff19302011-03-08 08:55:46 +00006276 DeclarationNameInfo NameInfo(Name, ClassLoc);
Douglas Gregorf1203042010-07-01 19:09:28 +00006277 CXXDestructorDecl *Destructor
Sebastian Redlfa453cf2011-03-12 11:50:43 +00006278 = CXXDestructorDecl::Create(Context, ClassDecl, ClassLoc, NameInfo, Ty, 0,
6279 /*isInline=*/true,
6280 /*isImplicitlyDeclared=*/true);
Douglas Gregorf1203042010-07-01 19:09:28 +00006281 Destructor->setAccess(AS_public);
Alexis Huntf91729462011-05-12 22:46:25 +00006282 Destructor->setDefaulted();
Douglas Gregorf1203042010-07-01 19:09:28 +00006283 Destructor->setImplicit();
6284 Destructor->setTrivial(ClassDecl->hasTrivialDestructor());
Douglas Gregor7454c562010-07-02 20:37:36 +00006285
6286 // Note that we have declared this destructor.
Douglas Gregor7454c562010-07-02 20:37:36 +00006287 ++ASTContext::NumImplicitDestructorsDeclared;
6288
6289 // Introduce this destructor into its scope.
Douglas Gregor0be31a22010-07-02 17:43:08 +00006290 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor7454c562010-07-02 20:37:36 +00006291 PushOnScopeChains(Destructor, S, false);
6292 ClassDecl->addDecl(Destructor);
Douglas Gregorf1203042010-07-01 19:09:28 +00006293
6294 // This could be uniqued if it ever proves significant.
6295 Destructor->setTypeSourceInfo(Context.getTrivialTypeSourceInfo(Ty));
Alexis Huntf91729462011-05-12 22:46:25 +00006296
6297 if (ShouldDeleteDestructor(Destructor))
6298 Destructor->setDeletedAsWritten();
Douglas Gregorf1203042010-07-01 19:09:28 +00006299
6300 AddOverriddenMethods(ClassDecl, Destructor);
Douglas Gregor7454c562010-07-02 20:37:36 +00006301
Douglas Gregorf1203042010-07-01 19:09:28 +00006302 return Destructor;
6303}
6304
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00006305void Sema::DefineImplicitDestructor(SourceLocation CurrentLocation,
Douglas Gregord94105a2009-09-04 19:04:08 +00006306 CXXDestructorDecl *Destructor) {
Alexis Hunt61ae8d32011-05-23 23:14:04 +00006307 assert((Destructor->isDefaulted() &&
6308 !Destructor->doesThisDeclarationHaveABody()) &&
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00006309 "DefineImplicitDestructor - call it for implicit default dtor");
Anders Carlsson2a50e952009-11-15 22:49:34 +00006310 CXXRecordDecl *ClassDecl = Destructor->getParent();
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00006311 assert(ClassDecl && "DefineImplicitDestructor - invalid destructor");
Douglas Gregor7ae2d772010-01-31 09:12:51 +00006312
Douglas Gregor54818f02010-05-12 16:39:35 +00006313 if (Destructor->isInvalidDecl())
6314 return;
6315
Douglas Gregora57478e2010-05-01 15:04:51 +00006316 ImplicitlyDefinedFunctionScope Scope(*this, Destructor);
Douglas Gregor7ae2d772010-01-31 09:12:51 +00006317
Argyrios Kyrtzidis18653422010-11-19 00:19:12 +00006318 DiagnosticErrorTrap Trap(Diags);
John McCalla6309952010-03-16 21:39:52 +00006319 MarkBaseAndMemberDestructorsReferenced(Destructor->getLocation(),
6320 Destructor->getParent());
Mike Stump11289f42009-09-09 15:08:12 +00006321
Douglas Gregor54818f02010-05-12 16:39:35 +00006322 if (CheckDestructor(Destructor) || Trap.hasErrorOccurred()) {
Anders Carlsson26a807d2009-11-30 21:24:50 +00006323 Diag(CurrentLocation, diag::note_member_synthesized_at)
6324 << CXXDestructor << Context.getTagDeclType(ClassDecl);
6325
6326 Destructor->setInvalidDecl();
6327 return;
6328 }
6329
Douglas Gregor73193272010-09-20 16:48:21 +00006330 SourceLocation Loc = Destructor->getLocation();
6331 Destructor->setBody(new (Context) CompoundStmt(Context, 0, 0, Loc, Loc));
6332
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00006333 Destructor->setUsed();
Douglas Gregor88d292c2010-05-13 16:44:06 +00006334 MarkVTableUsed(CurrentLocation, ClassDecl);
Sebastian Redlab238a72011-04-24 16:28:06 +00006335
6336 if (ASTMutationListener *L = getASTMutationListener()) {
6337 L->CompletedImplicitDefinition(Destructor);
6338 }
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00006339}
6340
Sebastian Redl623ea822011-05-19 05:13:44 +00006341void Sema::AdjustDestructorExceptionSpec(CXXRecordDecl *classDecl,
6342 CXXDestructorDecl *destructor) {
6343 // C++11 [class.dtor]p3:
6344 // A declaration of a destructor that does not have an exception-
6345 // specification is implicitly considered to have the same exception-
6346 // specification as an implicit declaration.
6347 const FunctionProtoType *dtorType = destructor->getType()->
6348 getAs<FunctionProtoType>();
6349 if (dtorType->hasExceptionSpec())
6350 return;
6351
6352 ImplicitExceptionSpecification exceptSpec =
6353 ComputeDefaultedDtorExceptionSpec(classDecl);
6354
6355 // Replace the destructor's type.
6356 FunctionProtoType::ExtProtoInfo epi;
6357 epi.ExceptionSpecType = exceptSpec.getExceptionSpecType();
6358 epi.NumExceptions = exceptSpec.size();
6359 epi.Exceptions = exceptSpec.data();
6360 QualType ty = Context.getFunctionType(Context.VoidTy, 0, 0, epi);
6361
6362 destructor->setType(ty);
6363
6364 // FIXME: If the destructor has a body that could throw, and the newly created
6365 // spec doesn't allow exceptions, we should emit a warning, because this
6366 // change in behavior can break conforming C++03 programs at runtime.
6367 // However, we don't have a body yet, so it needs to be done somewhere else.
6368}
6369
Douglas Gregorb139cd52010-05-01 20:49:11 +00006370/// \brief Builds a statement that copies the given entity from \p From to
6371/// \c To.
6372///
6373/// This routine is used to copy the members of a class with an
6374/// implicitly-declared copy assignment operator. When the entities being
6375/// copied are arrays, this routine builds for loops to copy them.
6376///
6377/// \param S The Sema object used for type-checking.
6378///
6379/// \param Loc The location where the implicit copy is being generated.
6380///
6381/// \param T The type of the expressions being copied. Both expressions must
6382/// have this type.
6383///
6384/// \param To The expression we are copying to.
6385///
6386/// \param From The expression we are copying from.
6387///
Douglas Gregor40c92bb2010-05-04 15:20:55 +00006388/// \param CopyingBaseSubobject Whether we're copying a base subobject.
6389/// Otherwise, it's a non-static member subobject.
6390///
Douglas Gregorb139cd52010-05-01 20:49:11 +00006391/// \param Depth Internal parameter recording the depth of the recursion.
6392///
6393/// \returns A statement or a loop that copies the expressions.
John McCalldadc5752010-08-24 06:29:42 +00006394static StmtResult
Douglas Gregorb139cd52010-05-01 20:49:11 +00006395BuildSingleCopyAssign(Sema &S, SourceLocation Loc, QualType T,
John McCallb268a282010-08-23 23:25:46 +00006396 Expr *To, Expr *From,
Douglas Gregor40c92bb2010-05-04 15:20:55 +00006397 bool CopyingBaseSubobject, unsigned Depth = 0) {
Douglas Gregorb139cd52010-05-01 20:49:11 +00006398 // C++0x [class.copy]p30:
6399 // Each subobject is assigned in the manner appropriate to its type:
6400 //
6401 // - if the subobject is of class type, the copy assignment operator
6402 // for the class is used (as if by explicit qualification; that is,
6403 // ignoring any possible virtual overriding functions in more derived
6404 // classes);
6405 if (const RecordType *RecordTy = T->getAs<RecordType>()) {
6406 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
6407
6408 // Look for operator=.
6409 DeclarationName Name
6410 = S.Context.DeclarationNames.getCXXOperatorName(OO_Equal);
6411 LookupResult OpLookup(S, Name, Loc, Sema::LookupOrdinaryName);
6412 S.LookupQualifiedName(OpLookup, ClassDecl, false);
6413
6414 // Filter out any result that isn't a copy-assignment operator.
6415 LookupResult::Filter F = OpLookup.makeFilter();
6416 while (F.hasNext()) {
6417 NamedDecl *D = F.next();
6418 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
6419 if (Method->isCopyAssignmentOperator())
6420 continue;
6421
6422 F.erase();
John McCallab8c2732010-03-16 06:11:48 +00006423 }
Douglas Gregorb139cd52010-05-01 20:49:11 +00006424 F.done();
6425
Douglas Gregor40c92bb2010-05-04 15:20:55 +00006426 // Suppress the protected check (C++ [class.protected]) for each of the
6427 // assignment operators we found. This strange dance is required when
6428 // we're assigning via a base classes's copy-assignment operator. To
6429 // ensure that we're getting the right base class subobject (without
6430 // ambiguities), we need to cast "this" to that subobject type; to
6431 // ensure that we don't go through the virtual call mechanism, we need
6432 // to qualify the operator= name with the base class (see below). However,
6433 // this means that if the base class has a protected copy assignment
6434 // operator, the protected member access check will fail. So, we
6435 // rewrite "protected" access to "public" access in this case, since we
6436 // know by construction that we're calling from a derived class.
6437 if (CopyingBaseSubobject) {
6438 for (LookupResult::iterator L = OpLookup.begin(), LEnd = OpLookup.end();
6439 L != LEnd; ++L) {
6440 if (L.getAccess() == AS_protected)
6441 L.setAccess(AS_public);
6442 }
6443 }
6444
Douglas Gregorb139cd52010-05-01 20:49:11 +00006445 // Create the nested-name-specifier that will be used to qualify the
6446 // reference to operator=; this is required to suppress the virtual
6447 // call mechanism.
6448 CXXScopeSpec SS;
Douglas Gregor869ad452011-02-24 17:54:50 +00006449 SS.MakeTrivial(S.Context,
6450 NestedNameSpecifier::Create(S.Context, 0, false,
6451 T.getTypePtr()),
6452 Loc);
Douglas Gregorb139cd52010-05-01 20:49:11 +00006453
6454 // Create the reference to operator=.
John McCalldadc5752010-08-24 06:29:42 +00006455 ExprResult OpEqualRef
John McCallb268a282010-08-23 23:25:46 +00006456 = S.BuildMemberReferenceExpr(To, T, Loc, /*isArrow=*/false, SS,
Douglas Gregorb139cd52010-05-01 20:49:11 +00006457 /*FirstQualifierInScope=*/0, OpLookup,
6458 /*TemplateArgs=*/0,
6459 /*SuppressQualifierCheck=*/true);
6460 if (OpEqualRef.isInvalid())
John McCallfaf5fb42010-08-26 23:41:50 +00006461 return StmtError();
Douglas Gregorb139cd52010-05-01 20:49:11 +00006462
6463 // Build the call to the assignment operator.
John McCallb268a282010-08-23 23:25:46 +00006464
John McCalldadc5752010-08-24 06:29:42 +00006465 ExprResult Call = S.BuildCallToMemberFunction(/*Scope=*/0,
Douglas Gregorce5aa332010-09-09 16:33:13 +00006466 OpEqualRef.takeAs<Expr>(),
6467 Loc, &From, 1, Loc);
Douglas Gregorb139cd52010-05-01 20:49:11 +00006468 if (Call.isInvalid())
John McCallfaf5fb42010-08-26 23:41:50 +00006469 return StmtError();
Douglas Gregorb139cd52010-05-01 20:49:11 +00006470
6471 return S.Owned(Call.takeAs<Stmt>());
Fariborz Jahanian41f79272009-06-25 21:45:19 +00006472 }
John McCallab8c2732010-03-16 06:11:48 +00006473
Douglas Gregorb139cd52010-05-01 20:49:11 +00006474 // - if the subobject is of scalar type, the built-in assignment
6475 // operator is used.
6476 const ConstantArrayType *ArrayTy = S.Context.getAsConstantArrayType(T);
6477 if (!ArrayTy) {
John McCalle3027922010-08-25 11:45:40 +00006478 ExprResult Assignment = S.CreateBuiltinBinOp(Loc, BO_Assign, To, From);
Douglas Gregorb139cd52010-05-01 20:49:11 +00006479 if (Assignment.isInvalid())
John McCallfaf5fb42010-08-26 23:41:50 +00006480 return StmtError();
Douglas Gregorb139cd52010-05-01 20:49:11 +00006481
6482 return S.Owned(Assignment.takeAs<Stmt>());
Fariborz Jahanian41f79272009-06-25 21:45:19 +00006483 }
Douglas Gregorb139cd52010-05-01 20:49:11 +00006484
6485 // - if the subobject is an array, each element is assigned, in the
6486 // manner appropriate to the element type;
6487
6488 // Construct a loop over the array bounds, e.g.,
6489 //
6490 // for (__SIZE_TYPE__ i0 = 0; i0 != array-size; ++i0)
6491 //
6492 // that will copy each of the array elements.
6493 QualType SizeType = S.Context.getSizeType();
6494
6495 // Create the iteration variable.
6496 IdentifierInfo *IterationVarName = 0;
6497 {
6498 llvm::SmallString<8> Str;
6499 llvm::raw_svector_ostream OS(Str);
6500 OS << "__i" << Depth;
6501 IterationVarName = &S.Context.Idents.get(OS.str());
6502 }
Abramo Bagnaradff19302011-03-08 08:55:46 +00006503 VarDecl *IterationVar = VarDecl::Create(S.Context, S.CurContext, Loc, Loc,
Douglas Gregorb139cd52010-05-01 20:49:11 +00006504 IterationVarName, SizeType,
6505 S.Context.getTrivialTypeSourceInfo(SizeType, Loc),
John McCall8e7d6562010-08-26 03:08:43 +00006506 SC_None, SC_None);
Douglas Gregorb139cd52010-05-01 20:49:11 +00006507
6508 // Initialize the iteration variable to zero.
6509 llvm::APInt Zero(S.Context.getTypeSize(SizeType), 0);
Argyrios Kyrtzidis43b20572010-08-28 09:06:06 +00006510 IterationVar->setInit(IntegerLiteral::Create(S.Context, Zero, SizeType, Loc));
Douglas Gregorb139cd52010-05-01 20:49:11 +00006511
6512 // Create a reference to the iteration variable; we'll use this several
6513 // times throughout.
6514 Expr *IterationVarRef
John McCall7decc9e2010-11-18 06:31:45 +00006515 = S.BuildDeclRefExpr(IterationVar, SizeType, VK_RValue, Loc).take();
Douglas Gregorb139cd52010-05-01 20:49:11 +00006516 assert(IterationVarRef && "Reference to invented variable cannot fail!");
6517
6518 // Create the DeclStmt that holds the iteration variable.
6519 Stmt *InitStmt = new (S.Context) DeclStmt(DeclGroupRef(IterationVar),Loc,Loc);
6520
6521 // Create the comparison against the array bound.
Jay Foad6d4db0c2010-12-07 08:25:34 +00006522 llvm::APInt Upper
6523 = ArrayTy->getSize().zextOrTrunc(S.Context.getTypeSize(SizeType));
John McCallb268a282010-08-23 23:25:46 +00006524 Expr *Comparison
John McCallc3007a22010-10-26 07:05:15 +00006525 = new (S.Context) BinaryOperator(IterationVarRef,
John McCall7decc9e2010-11-18 06:31:45 +00006526 IntegerLiteral::Create(S.Context, Upper, SizeType, Loc),
6527 BO_NE, S.Context.BoolTy,
6528 VK_RValue, OK_Ordinary, Loc);
Douglas Gregorb139cd52010-05-01 20:49:11 +00006529
6530 // Create the pre-increment of the iteration variable.
John McCallb268a282010-08-23 23:25:46 +00006531 Expr *Increment
John McCall7decc9e2010-11-18 06:31:45 +00006532 = new (S.Context) UnaryOperator(IterationVarRef, UO_PreInc, SizeType,
6533 VK_LValue, OK_Ordinary, Loc);
Douglas Gregorb139cd52010-05-01 20:49:11 +00006534
6535 // Subscript the "from" and "to" expressions with the iteration variable.
John McCallb268a282010-08-23 23:25:46 +00006536 From = AssertSuccess(S.CreateBuiltinArraySubscriptExpr(From, Loc,
6537 IterationVarRef, Loc));
6538 To = AssertSuccess(S.CreateBuiltinArraySubscriptExpr(To, Loc,
6539 IterationVarRef, Loc));
Douglas Gregorb139cd52010-05-01 20:49:11 +00006540
6541 // Build the copy for an individual element of the array.
John McCall7decc9e2010-11-18 06:31:45 +00006542 StmtResult Copy = BuildSingleCopyAssign(S, Loc, ArrayTy->getElementType(),
6543 To, From, CopyingBaseSubobject,
6544 Depth + 1);
Douglas Gregorb412e172010-07-25 18:17:45 +00006545 if (Copy.isInvalid())
John McCallfaf5fb42010-08-26 23:41:50 +00006546 return StmtError();
Douglas Gregorb139cd52010-05-01 20:49:11 +00006547
6548 // Construct the loop that copies all elements of this array.
John McCallb268a282010-08-23 23:25:46 +00006549 return S.ActOnForStmt(Loc, Loc, InitStmt,
Douglas Gregorb139cd52010-05-01 20:49:11 +00006550 S.MakeFullExpr(Comparison),
John McCall48871652010-08-21 09:40:31 +00006551 0, S.MakeFullExpr(Increment),
John McCallb268a282010-08-23 23:25:46 +00006552 Loc, Copy.take());
Fariborz Jahanian41f79272009-06-25 21:45:19 +00006553}
6554
Douglas Gregor330b9cf2010-07-02 21:50:04 +00006555/// \brief Determine whether the given class has a copy assignment operator
6556/// that accepts a const-qualified argument.
6557static bool hasConstCopyAssignment(Sema &S, const CXXRecordDecl *CClass) {
6558 CXXRecordDecl *Class = const_cast<CXXRecordDecl *>(CClass);
6559
6560 if (!Class->hasDeclaredCopyAssignment())
6561 S.DeclareImplicitCopyAssignment(Class);
6562
6563 QualType ClassType = S.Context.getCanonicalType(S.Context.getTypeDeclType(Class));
6564 DeclarationName OpName
6565 = S.Context.DeclarationNames.getCXXOperatorName(OO_Equal);
6566
6567 DeclContext::lookup_const_iterator Op, OpEnd;
6568 for (llvm::tie(Op, OpEnd) = Class->lookup(OpName); Op != OpEnd; ++Op) {
6569 // C++ [class.copy]p9:
6570 // A user-declared copy assignment operator is a non-static non-template
6571 // member function of class X with exactly one parameter of type X, X&,
6572 // const X&, volatile X& or const volatile X&.
6573 const CXXMethodDecl* Method = dyn_cast<CXXMethodDecl>(*Op);
6574 if (!Method)
6575 continue;
6576
6577 if (Method->isStatic())
6578 continue;
6579 if (Method->getPrimaryTemplate())
6580 continue;
6581 const FunctionProtoType *FnType =
6582 Method->getType()->getAs<FunctionProtoType>();
6583 assert(FnType && "Overloaded operator has no prototype.");
6584 // Don't assert on this; an invalid decl might have been left in the AST.
6585 if (FnType->getNumArgs() != 1 || FnType->isVariadic())
6586 continue;
6587 bool AcceptsConst = true;
6588 QualType ArgType = FnType->getArgType(0);
6589 if (const LValueReferenceType *Ref = ArgType->getAs<LValueReferenceType>()){
6590 ArgType = Ref->getPointeeType();
6591 // Is it a non-const lvalue reference?
6592 if (!ArgType.isConstQualified())
6593 AcceptsConst = false;
6594 }
6595 if (!S.Context.hasSameUnqualifiedType(ArgType, ClassType))
6596 continue;
6597
6598 // We have a single argument of type cv X or cv X&, i.e. we've found the
6599 // copy assignment operator. Return whether it accepts const arguments.
6600 return AcceptsConst;
6601 }
6602 assert(Class->isInvalidDecl() &&
6603 "No copy assignment operator declared in valid code.");
6604 return false;
6605}
6606
Alexis Hunt119f3652011-05-14 05:23:20 +00006607std::pair<Sema::ImplicitExceptionSpecification, bool>
6608Sema::ComputeDefaultedCopyAssignmentExceptionSpecAndConst(
6609 CXXRecordDecl *ClassDecl) {
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00006610 // C++ [class.copy]p10:
6611 // If the class definition does not explicitly declare a copy
6612 // assignment operator, one is declared implicitly.
6613 // The implicitly-defined copy assignment operator for a class X
6614 // will have the form
6615 //
6616 // X& X::operator=(const X&)
6617 //
6618 // if
6619 bool HasConstCopyAssignment = true;
6620
6621 // -- each direct base class B of X has a copy assignment operator
6622 // whose parameter is of type const B&, const volatile B& or B,
6623 // and
6624 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
6625 BaseEnd = ClassDecl->bases_end();
6626 HasConstCopyAssignment && Base != BaseEnd; ++Base) {
6627 assert(!Base->getType()->isDependentType() &&
6628 "Cannot generate implicit members for class with dependent bases.");
6629 const CXXRecordDecl *BaseClassDecl
6630 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregor330b9cf2010-07-02 21:50:04 +00006631 HasConstCopyAssignment = hasConstCopyAssignment(*this, BaseClassDecl);
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00006632 }
6633
6634 // -- for all the nonstatic data members of X that are of a class
6635 // type M (or array thereof), each such class type has a copy
6636 // assignment operator whose parameter is of type const M&,
6637 // const volatile M& or M.
6638 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
6639 FieldEnd = ClassDecl->field_end();
6640 HasConstCopyAssignment && Field != FieldEnd;
6641 ++Field) {
6642 QualType FieldType = Context.getBaseElementType((*Field)->getType());
6643 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
6644 const CXXRecordDecl *FieldClassDecl
6645 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Douglas Gregor330b9cf2010-07-02 21:50:04 +00006646 HasConstCopyAssignment = hasConstCopyAssignment(*this, FieldClassDecl);
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00006647 }
6648 }
6649
6650 // Otherwise, the implicitly declared copy assignment operator will
6651 // have the form
6652 //
6653 // X& X::operator=(X&)
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00006654
Douglas Gregor68e11362010-07-01 17:48:08 +00006655 // C++ [except.spec]p14:
6656 // An implicitly declared special member function (Clause 12) shall have an
6657 // exception-specification. [...]
6658 ImplicitExceptionSpecification ExceptSpec(Context);
6659 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
6660 BaseEnd = ClassDecl->bases_end();
6661 Base != BaseEnd; ++Base) {
Douglas Gregor330b9cf2010-07-02 21:50:04 +00006662 CXXRecordDecl *BaseClassDecl
Douglas Gregor68e11362010-07-01 17:48:08 +00006663 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregor330b9cf2010-07-02 21:50:04 +00006664
6665 if (!BaseClassDecl->hasDeclaredCopyAssignment())
6666 DeclareImplicitCopyAssignment(BaseClassDecl);
6667
Douglas Gregor68e11362010-07-01 17:48:08 +00006668 if (CXXMethodDecl *CopyAssign
6669 = BaseClassDecl->getCopyAssignmentOperator(HasConstCopyAssignment))
6670 ExceptSpec.CalledDecl(CopyAssign);
6671 }
6672 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
6673 FieldEnd = ClassDecl->field_end();
6674 Field != FieldEnd;
6675 ++Field) {
6676 QualType FieldType = Context.getBaseElementType((*Field)->getType());
6677 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Douglas Gregor330b9cf2010-07-02 21:50:04 +00006678 CXXRecordDecl *FieldClassDecl
Douglas Gregor68e11362010-07-01 17:48:08 +00006679 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Douglas Gregor330b9cf2010-07-02 21:50:04 +00006680
6681 if (!FieldClassDecl->hasDeclaredCopyAssignment())
6682 DeclareImplicitCopyAssignment(FieldClassDecl);
6683
Douglas Gregor68e11362010-07-01 17:48:08 +00006684 if (CXXMethodDecl *CopyAssign
6685 = FieldClassDecl->getCopyAssignmentOperator(HasConstCopyAssignment))
6686 ExceptSpec.CalledDecl(CopyAssign);
6687 }
6688 }
Sebastian Redlfa453cf2011-03-12 11:50:43 +00006689
Alexis Hunt119f3652011-05-14 05:23:20 +00006690 return std::make_pair(ExceptSpec, HasConstCopyAssignment);
6691}
6692
6693CXXMethodDecl *Sema::DeclareImplicitCopyAssignment(CXXRecordDecl *ClassDecl) {
6694 // Note: The following rules are largely analoguous to the copy
6695 // constructor rules. Note that virtual bases are not taken into account
6696 // for determining the argument type of the operator. Note also that
6697 // operators taking an object instead of a reference are allowed.
6698
6699 ImplicitExceptionSpecification Spec(Context);
6700 bool Const;
6701 llvm::tie(Spec, Const) =
6702 ComputeDefaultedCopyAssignmentExceptionSpecAndConst(ClassDecl);
6703
6704 QualType ArgType = Context.getTypeDeclType(ClassDecl);
6705 QualType RetType = Context.getLValueReferenceType(ArgType);
6706 if (Const)
6707 ArgType = ArgType.withConst();
6708 ArgType = Context.getLValueReferenceType(ArgType);
6709
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00006710 // An implicitly-declared copy assignment operator is an inline public
6711 // member of its class.
Alexis Hunt119f3652011-05-14 05:23:20 +00006712 FunctionProtoType::ExtProtoInfo EPI = Spec.getEPI();
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00006713 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
Abramo Bagnaradff19302011-03-08 08:55:46 +00006714 SourceLocation ClassLoc = ClassDecl->getLocation();
6715 DeclarationNameInfo NameInfo(Name, ClassLoc);
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00006716 CXXMethodDecl *CopyAssignment
Abramo Bagnaradff19302011-03-08 08:55:46 +00006717 = CXXMethodDecl::Create(Context, ClassDecl, ClassLoc, NameInfo,
John McCalldb40c7f2010-12-14 08:05:40 +00006718 Context.getFunctionType(RetType, &ArgType, 1, EPI),
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00006719 /*TInfo=*/0, /*isStatic=*/false,
John McCall8e7d6562010-08-26 03:08:43 +00006720 /*StorageClassAsWritten=*/SC_None,
Douglas Gregorf2f08062011-03-08 17:10:18 +00006721 /*isInline=*/true,
6722 SourceLocation());
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00006723 CopyAssignment->setAccess(AS_public);
Alexis Huntb2f27802011-05-14 05:23:24 +00006724 CopyAssignment->setDefaulted();
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00006725 CopyAssignment->setImplicit();
6726 CopyAssignment->setTrivial(ClassDecl->hasTrivialCopyAssignment());
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00006727
6728 // Add the parameter to the operator.
6729 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyAssignment,
Abramo Bagnaradff19302011-03-08 08:55:46 +00006730 ClassLoc, ClassLoc, /*Id=*/0,
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00006731 ArgType, /*TInfo=*/0,
John McCall8e7d6562010-08-26 03:08:43 +00006732 SC_None,
6733 SC_None, 0);
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00006734 CopyAssignment->setParams(&FromParam, 1);
6735
Douglas Gregor330b9cf2010-07-02 21:50:04 +00006736 // Note that we have added this copy-assignment operator.
Douglas Gregor330b9cf2010-07-02 21:50:04 +00006737 ++ASTContext::NumImplicitCopyAssignmentOperatorsDeclared;
Alexis Huntb2f27802011-05-14 05:23:24 +00006738
Douglas Gregor0be31a22010-07-02 17:43:08 +00006739 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor330b9cf2010-07-02 21:50:04 +00006740 PushOnScopeChains(CopyAssignment, S, false);
6741 ClassDecl->addDecl(CopyAssignment);
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00006742
Alexis Hunte77a28f2011-05-18 03:41:58 +00006743 if (ShouldDeleteCopyAssignmentOperator(CopyAssignment))
6744 CopyAssignment->setDeletedAsWritten();
6745
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00006746 AddOverriddenMethods(ClassDecl, CopyAssignment);
6747 return CopyAssignment;
6748}
6749
Douglas Gregorb139cd52010-05-01 20:49:11 +00006750void Sema::DefineImplicitCopyAssignment(SourceLocation CurrentLocation,
6751 CXXMethodDecl *CopyAssignOperator) {
Alexis Huntb2f27802011-05-14 05:23:24 +00006752 assert((CopyAssignOperator->isDefaulted() &&
Douglas Gregorb139cd52010-05-01 20:49:11 +00006753 CopyAssignOperator->isOverloadedOperator() &&
6754 CopyAssignOperator->getOverloadedOperator() == OO_Equal &&
Alexis Hunt61ae8d32011-05-23 23:14:04 +00006755 !CopyAssignOperator->doesThisDeclarationHaveABody()) &&
Douglas Gregorb139cd52010-05-01 20:49:11 +00006756 "DefineImplicitCopyAssignment called for wrong function");
6757
6758 CXXRecordDecl *ClassDecl = CopyAssignOperator->getParent();
6759
6760 if (ClassDecl->isInvalidDecl() || CopyAssignOperator->isInvalidDecl()) {
6761 CopyAssignOperator->setInvalidDecl();
6762 return;
6763 }
6764
6765 CopyAssignOperator->setUsed();
6766
6767 ImplicitlyDefinedFunctionScope Scope(*this, CopyAssignOperator);
Argyrios Kyrtzidis18653422010-11-19 00:19:12 +00006768 DiagnosticErrorTrap Trap(Diags);
Douglas Gregorb139cd52010-05-01 20:49:11 +00006769
6770 // C++0x [class.copy]p30:
6771 // The implicitly-defined or explicitly-defaulted copy assignment operator
6772 // for a non-union class X performs memberwise copy assignment of its
6773 // subobjects. The direct base classes of X are assigned first, in the
6774 // order of their declaration in the base-specifier-list, and then the
6775 // immediate non-static data members of X are assigned, in the order in
6776 // which they were declared in the class definition.
6777
6778 // The statements that form the synthesized function body.
John McCall37ad5512010-08-23 06:44:23 +00006779 ASTOwningVector<Stmt*> Statements(*this);
Douglas Gregorb139cd52010-05-01 20:49:11 +00006780
6781 // The parameter for the "other" object, which we are copying from.
6782 ParmVarDecl *Other = CopyAssignOperator->getParamDecl(0);
6783 Qualifiers OtherQuals = Other->getType().getQualifiers();
6784 QualType OtherRefType = Other->getType();
6785 if (const LValueReferenceType *OtherRef
6786 = OtherRefType->getAs<LValueReferenceType>()) {
6787 OtherRefType = OtherRef->getPointeeType();
6788 OtherQuals = OtherRefType.getQualifiers();
6789 }
6790
6791 // Our location for everything implicitly-generated.
6792 SourceLocation Loc = CopyAssignOperator->getLocation();
6793
6794 // Construct a reference to the "other" object. We'll be using this
6795 // throughout the generated ASTs.
John McCall4bc41ae2010-11-18 19:01:18 +00006796 Expr *OtherRef = BuildDeclRefExpr(Other, OtherRefType, VK_LValue, Loc).take();
Douglas Gregorb139cd52010-05-01 20:49:11 +00006797 assert(OtherRef && "Reference to parameter cannot fail!");
6798
6799 // Construct the "this" pointer. We'll be using this throughout the generated
6800 // ASTs.
6801 Expr *This = ActOnCXXThis(Loc).takeAs<Expr>();
6802 assert(This && "Reference to this cannot fail!");
6803
6804 // Assign base classes.
6805 bool Invalid = false;
6806 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
6807 E = ClassDecl->bases_end(); Base != E; ++Base) {
6808 // Form the assignment:
6809 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&>(other));
6810 QualType BaseType = Base->getType().getUnqualifiedType();
Jeffrey Yasskin8dfa5f12011-01-18 02:00:16 +00006811 if (!BaseType->isRecordType()) {
Douglas Gregorb139cd52010-05-01 20:49:11 +00006812 Invalid = true;
6813 continue;
6814 }
6815
John McCallcf142162010-08-07 06:22:56 +00006816 CXXCastPath BasePath;
6817 BasePath.push_back(Base);
6818
Douglas Gregorb139cd52010-05-01 20:49:11 +00006819 // Construct the "from" expression, which is an implicit cast to the
6820 // appropriately-qualified base type.
John McCallc3007a22010-10-26 07:05:15 +00006821 Expr *From = OtherRef;
John Wiegley01296292011-04-08 18:41:53 +00006822 From = ImpCastExprToType(From, Context.getQualifiedType(BaseType, OtherQuals),
6823 CK_UncheckedDerivedToBase,
6824 VK_LValue, &BasePath).take();
Douglas Gregorb139cd52010-05-01 20:49:11 +00006825
6826 // Dereference "this".
John McCall2536c6d2010-08-25 10:28:54 +00006827 ExprResult To = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
Douglas Gregorb139cd52010-05-01 20:49:11 +00006828
6829 // Implicitly cast "this" to the appropriately-qualified base type.
John Wiegley01296292011-04-08 18:41:53 +00006830 To = ImpCastExprToType(To.take(),
6831 Context.getCVRQualifiedType(BaseType,
6832 CopyAssignOperator->getTypeQualifiers()),
6833 CK_UncheckedDerivedToBase,
6834 VK_LValue, &BasePath);
Douglas Gregorb139cd52010-05-01 20:49:11 +00006835
6836 // Build the copy.
John McCalldadc5752010-08-24 06:29:42 +00006837 StmtResult Copy = BuildSingleCopyAssign(*this, Loc, BaseType,
John McCall2536c6d2010-08-25 10:28:54 +00006838 To.get(), From,
6839 /*CopyingBaseSubobject=*/true);
Douglas Gregorb139cd52010-05-01 20:49:11 +00006840 if (Copy.isInvalid()) {
Douglas Gregorbf1fb442010-05-05 22:38:15 +00006841 Diag(CurrentLocation, diag::note_member_synthesized_at)
6842 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
6843 CopyAssignOperator->setInvalidDecl();
6844 return;
Douglas Gregorb139cd52010-05-01 20:49:11 +00006845 }
6846
6847 // Success! Record the copy.
6848 Statements.push_back(Copy.takeAs<Expr>());
6849 }
6850
6851 // \brief Reference to the __builtin_memcpy function.
6852 Expr *BuiltinMemCpyRef = 0;
Fariborz Jahanian4a303072010-06-16 16:22:04 +00006853 // \brief Reference to the __builtin_objc_memmove_collectable function.
Fariborz Jahanian021510e2010-06-15 22:44:06 +00006854 Expr *CollectableMemCpyRef = 0;
Douglas Gregorb139cd52010-05-01 20:49:11 +00006855
6856 // Assign non-static members.
6857 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
6858 FieldEnd = ClassDecl->field_end();
6859 Field != FieldEnd; ++Field) {
6860 // Check for members of reference type; we can't copy those.
6861 if (Field->getType()->isReferenceType()) {
6862 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
6863 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
6864 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregorbf1fb442010-05-05 22:38:15 +00006865 Diag(CurrentLocation, diag::note_member_synthesized_at)
6866 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregorb139cd52010-05-01 20:49:11 +00006867 Invalid = true;
6868 continue;
6869 }
6870
6871 // Check for members of const-qualified, non-class type.
6872 QualType BaseType = Context.getBaseElementType(Field->getType());
6873 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) {
6874 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
6875 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
6876 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregorbf1fb442010-05-05 22:38:15 +00006877 Diag(CurrentLocation, diag::note_member_synthesized_at)
6878 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregorb139cd52010-05-01 20:49:11 +00006879 Invalid = true;
6880 continue;
6881 }
6882
6883 QualType FieldType = Field->getType().getNonReferenceType();
Fariborz Jahanian1138ba62010-05-26 20:19:07 +00006884 if (FieldType->isIncompleteArrayType()) {
6885 assert(ClassDecl->hasFlexibleArrayMember() &&
6886 "Incomplete array type is not valid");
6887 continue;
6888 }
Douglas Gregorb139cd52010-05-01 20:49:11 +00006889
6890 // Build references to the field in the object we're copying from and to.
6891 CXXScopeSpec SS; // Intentionally empty
6892 LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
6893 LookupMemberName);
6894 MemberLookup.addDecl(*Field);
6895 MemberLookup.resolveKind();
John McCalldadc5752010-08-24 06:29:42 +00006896 ExprResult From = BuildMemberReferenceExpr(OtherRef, OtherRefType,
John McCall4bc41ae2010-11-18 19:01:18 +00006897 Loc, /*IsArrow=*/false,
6898 SS, 0, MemberLookup, 0);
John McCalldadc5752010-08-24 06:29:42 +00006899 ExprResult To = BuildMemberReferenceExpr(This, This->getType(),
John McCall4bc41ae2010-11-18 19:01:18 +00006900 Loc, /*IsArrow=*/true,
6901 SS, 0, MemberLookup, 0);
Douglas Gregorb139cd52010-05-01 20:49:11 +00006902 assert(!From.isInvalid() && "Implicit field reference cannot fail");
6903 assert(!To.isInvalid() && "Implicit field reference cannot fail");
6904
6905 // If the field should be copied with __builtin_memcpy rather than via
6906 // explicit assignments, do so. This optimization only applies for arrays
6907 // of scalars and arrays of class type with trivial copy-assignment
6908 // operators.
6909 if (FieldType->isArrayType() &&
6910 (!BaseType->isRecordType() ||
6911 cast<CXXRecordDecl>(BaseType->getAs<RecordType>()->getDecl())
6912 ->hasTrivialCopyAssignment())) {
6913 // Compute the size of the memory buffer to be copied.
6914 QualType SizeType = Context.getSizeType();
6915 llvm::APInt Size(Context.getTypeSize(SizeType),
6916 Context.getTypeSizeInChars(BaseType).getQuantity());
6917 for (const ConstantArrayType *Array
6918 = Context.getAsConstantArrayType(FieldType);
6919 Array;
6920 Array = Context.getAsConstantArrayType(Array->getElementType())) {
Jay Foad6d4db0c2010-12-07 08:25:34 +00006921 llvm::APInt ArraySize
6922 = Array->getSize().zextOrTrunc(Size.getBitWidth());
Douglas Gregorb139cd52010-05-01 20:49:11 +00006923 Size *= ArraySize;
6924 }
6925
6926 // Take the address of the field references for "from" and "to".
John McCalle3027922010-08-25 11:45:40 +00006927 From = CreateBuiltinUnaryOp(Loc, UO_AddrOf, From.get());
6928 To = CreateBuiltinUnaryOp(Loc, UO_AddrOf, To.get());
Fariborz Jahanian021510e2010-06-15 22:44:06 +00006929
6930 bool NeedsCollectableMemCpy =
6931 (BaseType->isRecordType() &&
6932 BaseType->getAs<RecordType>()->getDecl()->hasObjectMember());
6933
6934 if (NeedsCollectableMemCpy) {
6935 if (!CollectableMemCpyRef) {
Fariborz Jahanian4a303072010-06-16 16:22:04 +00006936 // Create a reference to the __builtin_objc_memmove_collectable function.
6937 LookupResult R(*this,
6938 &Context.Idents.get("__builtin_objc_memmove_collectable"),
Fariborz Jahanian021510e2010-06-15 22:44:06 +00006939 Loc, LookupOrdinaryName);
6940 LookupName(R, TUScope, true);
6941
6942 FunctionDecl *CollectableMemCpy = R.getAsSingle<FunctionDecl>();
6943 if (!CollectableMemCpy) {
6944 // Something went horribly wrong earlier, and we will have
6945 // complained about it.
6946 Invalid = true;
6947 continue;
6948 }
6949
6950 CollectableMemCpyRef = BuildDeclRefExpr(CollectableMemCpy,
6951 CollectableMemCpy->getType(),
John McCall7decc9e2010-11-18 06:31:45 +00006952 VK_LValue, Loc, 0).take();
Fariborz Jahanian021510e2010-06-15 22:44:06 +00006953 assert(CollectableMemCpyRef && "Builtin reference cannot fail");
6954 }
6955 }
Douglas Gregorb139cd52010-05-01 20:49:11 +00006956 // Create a reference to the __builtin_memcpy builtin function.
Fariborz Jahanian021510e2010-06-15 22:44:06 +00006957 else if (!BuiltinMemCpyRef) {
Douglas Gregorb139cd52010-05-01 20:49:11 +00006958 LookupResult R(*this, &Context.Idents.get("__builtin_memcpy"), Loc,
6959 LookupOrdinaryName);
6960 LookupName(R, TUScope, true);
6961
6962 FunctionDecl *BuiltinMemCpy = R.getAsSingle<FunctionDecl>();
6963 if (!BuiltinMemCpy) {
6964 // Something went horribly wrong earlier, and we will have complained
6965 // about it.
6966 Invalid = true;
6967 continue;
6968 }
6969
6970 BuiltinMemCpyRef = BuildDeclRefExpr(BuiltinMemCpy,
6971 BuiltinMemCpy->getType(),
John McCall7decc9e2010-11-18 06:31:45 +00006972 VK_LValue, Loc, 0).take();
Douglas Gregorb139cd52010-05-01 20:49:11 +00006973 assert(BuiltinMemCpyRef && "Builtin reference cannot fail");
6974 }
6975
John McCall37ad5512010-08-23 06:44:23 +00006976 ASTOwningVector<Expr*> CallArgs(*this);
Douglas Gregorb139cd52010-05-01 20:49:11 +00006977 CallArgs.push_back(To.takeAs<Expr>());
6978 CallArgs.push_back(From.takeAs<Expr>());
Argyrios Kyrtzidis43b20572010-08-28 09:06:06 +00006979 CallArgs.push_back(IntegerLiteral::Create(Context, Size, SizeType, Loc));
John McCalldadc5752010-08-24 06:29:42 +00006980 ExprResult Call = ExprError();
Fariborz Jahanian00bdca52010-06-16 00:16:38 +00006981 if (NeedsCollectableMemCpy)
6982 Call = ActOnCallExpr(/*Scope=*/0,
John McCallb268a282010-08-23 23:25:46 +00006983 CollectableMemCpyRef,
Fariborz Jahanian00bdca52010-06-16 00:16:38 +00006984 Loc, move_arg(CallArgs),
Douglas Gregorce5aa332010-09-09 16:33:13 +00006985 Loc);
Fariborz Jahanian00bdca52010-06-16 00:16:38 +00006986 else
6987 Call = ActOnCallExpr(/*Scope=*/0,
John McCallb268a282010-08-23 23:25:46 +00006988 BuiltinMemCpyRef,
Fariborz Jahanian00bdca52010-06-16 00:16:38 +00006989 Loc, move_arg(CallArgs),
Douglas Gregorce5aa332010-09-09 16:33:13 +00006990 Loc);
Fariborz Jahanian00bdca52010-06-16 00:16:38 +00006991
Douglas Gregorb139cd52010-05-01 20:49:11 +00006992 assert(!Call.isInvalid() && "Call to __builtin_memcpy cannot fail!");
6993 Statements.push_back(Call.takeAs<Expr>());
6994 continue;
6995 }
6996
6997 // Build the copy of this field.
John McCalldadc5752010-08-24 06:29:42 +00006998 StmtResult Copy = BuildSingleCopyAssign(*this, Loc, FieldType,
John McCallb268a282010-08-23 23:25:46 +00006999 To.get(), From.get(),
Douglas Gregor40c92bb2010-05-04 15:20:55 +00007000 /*CopyingBaseSubobject=*/false);
Douglas Gregorb139cd52010-05-01 20:49:11 +00007001 if (Copy.isInvalid()) {
Douglas Gregorbf1fb442010-05-05 22:38:15 +00007002 Diag(CurrentLocation, diag::note_member_synthesized_at)
7003 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
7004 CopyAssignOperator->setInvalidDecl();
7005 return;
Douglas Gregorb139cd52010-05-01 20:49:11 +00007006 }
7007
7008 // Success! Record the copy.
7009 Statements.push_back(Copy.takeAs<Stmt>());
7010 }
7011
7012 if (!Invalid) {
7013 // Add a "return *this;"
John McCalle3027922010-08-25 11:45:40 +00007014 ExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UO_Deref, This);
Douglas Gregorb139cd52010-05-01 20:49:11 +00007015
John McCalldadc5752010-08-24 06:29:42 +00007016 StmtResult Return = ActOnReturnStmt(Loc, ThisObj.get());
Douglas Gregorb139cd52010-05-01 20:49:11 +00007017 if (Return.isInvalid())
7018 Invalid = true;
7019 else {
7020 Statements.push_back(Return.takeAs<Stmt>());
Douglas Gregor54818f02010-05-12 16:39:35 +00007021
7022 if (Trap.hasErrorOccurred()) {
7023 Diag(CurrentLocation, diag::note_member_synthesized_at)
7024 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
7025 Invalid = true;
7026 }
Douglas Gregorb139cd52010-05-01 20:49:11 +00007027 }
7028 }
7029
7030 if (Invalid) {
7031 CopyAssignOperator->setInvalidDecl();
7032 return;
7033 }
7034
John McCalldadc5752010-08-24 06:29:42 +00007035 StmtResult Body = ActOnCompoundStmt(Loc, Loc, move_arg(Statements),
Douglas Gregorb139cd52010-05-01 20:49:11 +00007036 /*isStmtExpr=*/false);
7037 assert(!Body.isInvalid() && "Compound statement creation cannot fail");
7038 CopyAssignOperator->setBody(Body.takeAs<Stmt>());
Sebastian Redlab238a72011-04-24 16:28:06 +00007039
7040 if (ASTMutationListener *L = getASTMutationListener()) {
7041 L->CompletedImplicitDefinition(CopyAssignOperator);
7042 }
Fariborz Jahanian41f79272009-06-25 21:45:19 +00007043}
7044
Alexis Hunt913820d2011-05-13 06:10:58 +00007045std::pair<Sema::ImplicitExceptionSpecification, bool>
7046Sema::ComputeDefaultedCopyCtorExceptionSpecAndConst(CXXRecordDecl *ClassDecl) {
Douglas Gregor54be3392010-07-01 17:57:27 +00007047 // C++ [class.copy]p5:
7048 // The implicitly-declared copy constructor for a class X will
7049 // have the form
7050 //
7051 // X::X(const X&)
7052 //
7053 // if
7054 bool HasConstCopyConstructor = true;
7055
7056 // -- each direct or virtual base class B of X has a copy
7057 // constructor whose first parameter is of type const B& or
7058 // const volatile B&, and
7059 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
7060 BaseEnd = ClassDecl->bases_end();
7061 HasConstCopyConstructor && Base != BaseEnd;
7062 ++Base) {
Douglas Gregorcfe68222010-07-01 18:27:03 +00007063 // Virtual bases are handled below.
7064 if (Base->isVirtual())
7065 continue;
7066
Douglas Gregora6d69502010-07-02 23:41:54 +00007067 CXXRecordDecl *BaseClassDecl
Douglas Gregorcfe68222010-07-01 18:27:03 +00007068 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregora6d69502010-07-02 23:41:54 +00007069 if (!BaseClassDecl->hasDeclaredCopyConstructor())
7070 DeclareImplicitCopyConstructor(BaseClassDecl);
7071
Douglas Gregorcfe68222010-07-01 18:27:03 +00007072 HasConstCopyConstructor
7073 = BaseClassDecl->hasConstCopyConstructor(Context);
7074 }
7075
7076 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
7077 BaseEnd = ClassDecl->vbases_end();
7078 HasConstCopyConstructor && Base != BaseEnd;
7079 ++Base) {
Douglas Gregora6d69502010-07-02 23:41:54 +00007080 CXXRecordDecl *BaseClassDecl
Douglas Gregor54be3392010-07-01 17:57:27 +00007081 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregora6d69502010-07-02 23:41:54 +00007082 if (!BaseClassDecl->hasDeclaredCopyConstructor())
7083 DeclareImplicitCopyConstructor(BaseClassDecl);
7084
Douglas Gregor54be3392010-07-01 17:57:27 +00007085 HasConstCopyConstructor
7086 = BaseClassDecl->hasConstCopyConstructor(Context);
7087 }
7088
7089 // -- for all the nonstatic data members of X that are of a
7090 // class type M (or array thereof), each such class type
7091 // has a copy constructor whose first parameter is of type
7092 // const M& or const volatile M&.
7093 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
7094 FieldEnd = ClassDecl->field_end();
7095 HasConstCopyConstructor && Field != FieldEnd;
7096 ++Field) {
Douglas Gregorcfe68222010-07-01 18:27:03 +00007097 QualType FieldType = Context.getBaseElementType((*Field)->getType());
Douglas Gregor54be3392010-07-01 17:57:27 +00007098 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Douglas Gregora6d69502010-07-02 23:41:54 +00007099 CXXRecordDecl *FieldClassDecl
Douglas Gregorcfe68222010-07-01 18:27:03 +00007100 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Douglas Gregora6d69502010-07-02 23:41:54 +00007101 if (!FieldClassDecl->hasDeclaredCopyConstructor())
7102 DeclareImplicitCopyConstructor(FieldClassDecl);
7103
Douglas Gregor54be3392010-07-01 17:57:27 +00007104 HasConstCopyConstructor
Douglas Gregorcfe68222010-07-01 18:27:03 +00007105 = FieldClassDecl->hasConstCopyConstructor(Context);
Douglas Gregor54be3392010-07-01 17:57:27 +00007106 }
7107 }
Douglas Gregor54be3392010-07-01 17:57:27 +00007108 // Otherwise, the implicitly declared copy constructor will have
7109 // the form
7110 //
7111 // X::X(X&)
Alexis Hunt913820d2011-05-13 06:10:58 +00007112
Douglas Gregor8453ddb2010-07-01 20:59:04 +00007113 // C++ [except.spec]p14:
7114 // An implicitly declared special member function (Clause 12) shall have an
7115 // exception-specification. [...]
7116 ImplicitExceptionSpecification ExceptSpec(Context);
7117 unsigned Quals = HasConstCopyConstructor? Qualifiers::Const : 0;
7118 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
7119 BaseEnd = ClassDecl->bases_end();
7120 Base != BaseEnd;
7121 ++Base) {
7122 // Virtual bases are handled below.
7123 if (Base->isVirtual())
7124 continue;
7125
Douglas Gregora6d69502010-07-02 23:41:54 +00007126 CXXRecordDecl *BaseClassDecl
Douglas Gregor8453ddb2010-07-01 20:59:04 +00007127 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregora6d69502010-07-02 23:41:54 +00007128 if (!BaseClassDecl->hasDeclaredCopyConstructor())
7129 DeclareImplicitCopyConstructor(BaseClassDecl);
7130
Douglas Gregor8453ddb2010-07-01 20:59:04 +00007131 if (CXXConstructorDecl *CopyConstructor
7132 = BaseClassDecl->getCopyConstructor(Context, Quals))
7133 ExceptSpec.CalledDecl(CopyConstructor);
7134 }
7135 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
7136 BaseEnd = ClassDecl->vbases_end();
7137 Base != BaseEnd;
7138 ++Base) {
Douglas Gregora6d69502010-07-02 23:41:54 +00007139 CXXRecordDecl *BaseClassDecl
Douglas Gregor8453ddb2010-07-01 20:59:04 +00007140 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregora6d69502010-07-02 23:41:54 +00007141 if (!BaseClassDecl->hasDeclaredCopyConstructor())
7142 DeclareImplicitCopyConstructor(BaseClassDecl);
7143
Douglas Gregor8453ddb2010-07-01 20:59:04 +00007144 if (CXXConstructorDecl *CopyConstructor
7145 = BaseClassDecl->getCopyConstructor(Context, Quals))
7146 ExceptSpec.CalledDecl(CopyConstructor);
7147 }
7148 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
7149 FieldEnd = ClassDecl->field_end();
7150 Field != FieldEnd;
7151 ++Field) {
7152 QualType FieldType = Context.getBaseElementType((*Field)->getType());
7153 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Douglas Gregora6d69502010-07-02 23:41:54 +00007154 CXXRecordDecl *FieldClassDecl
Douglas Gregor8453ddb2010-07-01 20:59:04 +00007155 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Douglas Gregora6d69502010-07-02 23:41:54 +00007156 if (!FieldClassDecl->hasDeclaredCopyConstructor())
7157 DeclareImplicitCopyConstructor(FieldClassDecl);
7158
Douglas Gregor8453ddb2010-07-01 20:59:04 +00007159 if (CXXConstructorDecl *CopyConstructor
7160 = FieldClassDecl->getCopyConstructor(Context, Quals))
7161 ExceptSpec.CalledDecl(CopyConstructor);
7162 }
7163 }
Sebastian Redlfa453cf2011-03-12 11:50:43 +00007164
Alexis Hunt913820d2011-05-13 06:10:58 +00007165 return std::make_pair(ExceptSpec, HasConstCopyConstructor);
7166}
7167
7168CXXConstructorDecl *Sema::DeclareImplicitCopyConstructor(
7169 CXXRecordDecl *ClassDecl) {
7170 // C++ [class.copy]p4:
7171 // If the class definition does not explicitly declare a copy
7172 // constructor, one is declared implicitly.
7173
7174 ImplicitExceptionSpecification Spec(Context);
7175 bool Const;
7176 llvm::tie(Spec, Const) =
7177 ComputeDefaultedCopyCtorExceptionSpecAndConst(ClassDecl);
7178
7179 QualType ClassType = Context.getTypeDeclType(ClassDecl);
7180 QualType ArgType = ClassType;
7181 if (Const)
7182 ArgType = ArgType.withConst();
7183 ArgType = Context.getLValueReferenceType(ArgType);
7184
7185 FunctionProtoType::ExtProtoInfo EPI = Spec.getEPI();
7186
Douglas Gregor54be3392010-07-01 17:57:27 +00007187 DeclarationName Name
7188 = Context.DeclarationNames.getCXXConstructorName(
7189 Context.getCanonicalType(ClassType));
Abramo Bagnaradff19302011-03-08 08:55:46 +00007190 SourceLocation ClassLoc = ClassDecl->getLocation();
7191 DeclarationNameInfo NameInfo(Name, ClassLoc);
Alexis Hunt913820d2011-05-13 06:10:58 +00007192
7193 // An implicitly-declared copy constructor is an inline public
7194 // member of its class.
Douglas Gregor54be3392010-07-01 17:57:27 +00007195 CXXConstructorDecl *CopyConstructor
Abramo Bagnaradff19302011-03-08 08:55:46 +00007196 = CXXConstructorDecl::Create(Context, ClassDecl, ClassLoc, NameInfo,
Douglas Gregor54be3392010-07-01 17:57:27 +00007197 Context.getFunctionType(Context.VoidTy,
John McCalldb40c7f2010-12-14 08:05:40 +00007198 &ArgType, 1, EPI),
Douglas Gregor54be3392010-07-01 17:57:27 +00007199 /*TInfo=*/0,
7200 /*isExplicit=*/false,
7201 /*isInline=*/true,
Alexis Hunt58dad7d2011-05-06 00:11:07 +00007202 /*isImplicitlyDeclared=*/true);
Douglas Gregor54be3392010-07-01 17:57:27 +00007203 CopyConstructor->setAccess(AS_public);
Alexis Hunt913820d2011-05-13 06:10:58 +00007204 CopyConstructor->setDefaulted();
Douglas Gregor54be3392010-07-01 17:57:27 +00007205 CopyConstructor->setTrivial(ClassDecl->hasTrivialCopyConstructor());
7206
Douglas Gregora6d69502010-07-02 23:41:54 +00007207 // Note that we have declared this constructor.
Douglas Gregora6d69502010-07-02 23:41:54 +00007208 ++ASTContext::NumImplicitCopyConstructorsDeclared;
7209
Douglas Gregor54be3392010-07-01 17:57:27 +00007210 // Add the parameter to the constructor.
7211 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyConstructor,
Abramo Bagnaradff19302011-03-08 08:55:46 +00007212 ClassLoc, ClassLoc,
Douglas Gregor54be3392010-07-01 17:57:27 +00007213 /*IdentifierInfo=*/0,
7214 ArgType, /*TInfo=*/0,
John McCall8e7d6562010-08-26 03:08:43 +00007215 SC_None,
7216 SC_None, 0);
Douglas Gregor54be3392010-07-01 17:57:27 +00007217 CopyConstructor->setParams(&FromParam, 1);
Alexis Hunt913820d2011-05-13 06:10:58 +00007218
Douglas Gregor0be31a22010-07-02 17:43:08 +00007219 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregora6d69502010-07-02 23:41:54 +00007220 PushOnScopeChains(CopyConstructor, S, false);
7221 ClassDecl->addDecl(CopyConstructor);
Alexis Hunte77a28f2011-05-18 03:41:58 +00007222
7223 if (ShouldDeleteCopyConstructor(CopyConstructor))
7224 CopyConstructor->setDeletedAsWritten();
Douglas Gregor54be3392010-07-01 17:57:27 +00007225
7226 return CopyConstructor;
7227}
7228
Fariborz Jahanian477d2422009-06-22 23:34:40 +00007229void Sema::DefineImplicitCopyConstructor(SourceLocation CurrentLocation,
Alexis Hunt913820d2011-05-13 06:10:58 +00007230 CXXConstructorDecl *CopyConstructor) {
7231 assert((CopyConstructor->isDefaulted() &&
7232 CopyConstructor->isCopyConstructor() &&
Alexis Hunt61ae8d32011-05-23 23:14:04 +00007233 !CopyConstructor->doesThisDeclarationHaveABody()) &&
Fariborz Jahanian477d2422009-06-22 23:34:40 +00007234 "DefineImplicitCopyConstructor - call it for implicit copy ctor");
Mike Stump11289f42009-09-09 15:08:12 +00007235
Anders Carlsson7a0ffdb2010-04-23 16:24:12 +00007236 CXXRecordDecl *ClassDecl = CopyConstructor->getParent();
Fariborz Jahanian477d2422009-06-22 23:34:40 +00007237 assert(ClassDecl && "DefineImplicitCopyConstructor - invalid constructor");
Douglas Gregor7ae2d772010-01-31 09:12:51 +00007238
Douglas Gregora57478e2010-05-01 15:04:51 +00007239 ImplicitlyDefinedFunctionScope Scope(*this, CopyConstructor);
Argyrios Kyrtzidis18653422010-11-19 00:19:12 +00007240 DiagnosticErrorTrap Trap(Diags);
Douglas Gregor7ae2d772010-01-31 09:12:51 +00007241
Alexis Hunt1d792652011-01-08 20:30:50 +00007242 if (SetCtorInitializers(CopyConstructor, 0, 0, /*AnyErrors=*/false) ||
Douglas Gregor54818f02010-05-12 16:39:35 +00007243 Trap.hasErrorOccurred()) {
Anders Carlsson79111502010-05-01 16:39:01 +00007244 Diag(CurrentLocation, diag::note_member_synthesized_at)
Douglas Gregor94f9a482010-05-05 05:51:00 +00007245 << CXXCopyConstructor << Context.getTagDeclType(ClassDecl);
Anders Carlsson79111502010-05-01 16:39:01 +00007246 CopyConstructor->setInvalidDecl();
Douglas Gregor94f9a482010-05-05 05:51:00 +00007247 } else {
7248 CopyConstructor->setBody(ActOnCompoundStmt(CopyConstructor->getLocation(),
7249 CopyConstructor->getLocation(),
7250 MultiStmtArg(*this, 0, 0),
7251 /*isStmtExpr=*/false)
7252 .takeAs<Stmt>());
Anders Carlsson53e1ba92010-04-25 00:52:09 +00007253 }
Douglas Gregor94f9a482010-05-05 05:51:00 +00007254
7255 CopyConstructor->setUsed();
Sebastian Redlab238a72011-04-24 16:28:06 +00007256
7257 if (ASTMutationListener *L = getASTMutationListener()) {
7258 L->CompletedImplicitDefinition(CopyConstructor);
7259 }
Fariborz Jahanian477d2422009-06-22 23:34:40 +00007260}
7261
John McCalldadc5752010-08-24 06:29:42 +00007262ExprResult
Anders Carlsson1b4ebfa2009-09-05 07:40:38 +00007263Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
Mike Stump11289f42009-09-09 15:08:12 +00007264 CXXConstructorDecl *Constructor,
Douglas Gregor4f4b1862009-12-16 18:50:27 +00007265 MultiExprArg ExprArgs,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00007266 bool RequiresZeroInit,
Chandler Carruth01718152010-10-25 08:47:36 +00007267 unsigned ConstructKind,
7268 SourceRange ParenRange) {
Anders Carlsson250aada2009-08-16 05:13:48 +00007269 bool Elidable = false;
Mike Stump11289f42009-09-09 15:08:12 +00007270
Douglas Gregor45cf7e32010-04-02 18:24:57 +00007271 // C++0x [class.copy]p34:
7272 // When certain criteria are met, an implementation is allowed to
7273 // omit the copy/move construction of a class object, even if the
7274 // copy/move constructor and/or destructor for the object have
7275 // side effects. [...]
7276 // - when a temporary class object that has not been bound to a
7277 // reference (12.2) would be copied/moved to a class object
7278 // with the same cv-unqualified type, the copy/move operation
7279 // can be omitted by constructing the temporary object
7280 // directly into the target of the omitted copy/move
John McCall7a626f62010-09-15 10:14:12 +00007281 if (ConstructKind == CXXConstructExpr::CK_Complete &&
Douglas Gregor3fb22ba2011-01-27 23:24:55 +00007282 Constructor->isCopyOrMoveConstructor() && ExprArgs.size() >= 1) {
Douglas Gregor45cf7e32010-04-02 18:24:57 +00007283 Expr *SubExpr = ((Expr **)ExprArgs.get())[0];
John McCall7a626f62010-09-15 10:14:12 +00007284 Elidable = SubExpr->isTemporaryObject(Context, Constructor->getParent());
Anders Carlsson250aada2009-08-16 05:13:48 +00007285 }
Mike Stump11289f42009-09-09 15:08:12 +00007286
7287 return BuildCXXConstructExpr(ConstructLoc, DeclInitType, Constructor,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00007288 Elidable, move(ExprArgs), RequiresZeroInit,
Chandler Carruth01718152010-10-25 08:47:36 +00007289 ConstructKind, ParenRange);
Anders Carlsson250aada2009-08-16 05:13:48 +00007290}
7291
Fariborz Jahanianaa890bf2009-08-05 17:03:54 +00007292/// BuildCXXConstructExpr - Creates a complete call to a constructor,
7293/// including handling of its default argument expressions.
John McCalldadc5752010-08-24 06:29:42 +00007294ExprResult
Anders Carlsson1b4ebfa2009-09-05 07:40:38 +00007295Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
7296 CXXConstructorDecl *Constructor, bool Elidable,
Douglas Gregor4f4b1862009-12-16 18:50:27 +00007297 MultiExprArg ExprArgs,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00007298 bool RequiresZeroInit,
Chandler Carruth01718152010-10-25 08:47:36 +00007299 unsigned ConstructKind,
7300 SourceRange ParenRange) {
Anders Carlsson5995a3e2009-09-07 22:23:31 +00007301 unsigned NumExprs = ExprArgs.size();
7302 Expr **Exprs = (Expr **)ExprArgs.release();
Mike Stump11289f42009-09-09 15:08:12 +00007303
Nick Lewyckyd4693212011-03-25 01:44:32 +00007304 for (specific_attr_iterator<NonNullAttr>
7305 i = Constructor->specific_attr_begin<NonNullAttr>(),
7306 e = Constructor->specific_attr_end<NonNullAttr>(); i != e; ++i) {
7307 const NonNullAttr *NonNull = *i;
7308 CheckNonNullArguments(NonNull, ExprArgs.get(), ConstructLoc);
7309 }
7310
Douglas Gregor27381f32009-11-23 12:27:39 +00007311 MarkDeclarationReferenced(ConstructLoc, Constructor);
Douglas Gregor85dabae2009-12-16 01:38:02 +00007312 return Owned(CXXConstructExpr::Create(Context, DeclInitType, ConstructLoc,
Douglas Gregor4f4b1862009-12-16 18:50:27 +00007313 Constructor, Elidable, Exprs, NumExprs,
John McCallbfd822c2010-08-24 07:32:53 +00007314 RequiresZeroInit,
Chandler Carruth01718152010-10-25 08:47:36 +00007315 static_cast<CXXConstructExpr::ConstructionKind>(ConstructKind),
7316 ParenRange));
Fariborz Jahanianaa890bf2009-08-05 17:03:54 +00007317}
7318
Mike Stump11289f42009-09-09 15:08:12 +00007319bool Sema::InitializeVarWithConstructor(VarDecl *VD,
Fariborz Jahanianaa890bf2009-08-05 17:03:54 +00007320 CXXConstructorDecl *Constructor,
Anders Carlsson5995a3e2009-09-07 22:23:31 +00007321 MultiExprArg Exprs) {
Chandler Carruth01718152010-10-25 08:47:36 +00007322 // FIXME: Provide the correct paren SourceRange when available.
John McCalldadc5752010-08-24 06:29:42 +00007323 ExprResult TempResult =
Fariborz Jahanian57277c52009-10-28 18:41:06 +00007324 BuildCXXConstructExpr(VD->getLocation(), VD->getType(), Constructor,
Chandler Carruth01718152010-10-25 08:47:36 +00007325 move(Exprs), false, CXXConstructExpr::CK_Complete,
7326 SourceRange());
Anders Carlssonc1eb79b2009-08-25 05:18:00 +00007327 if (TempResult.isInvalid())
7328 return true;
Mike Stump11289f42009-09-09 15:08:12 +00007329
Anders Carlsson6eb55572009-08-25 05:12:04 +00007330 Expr *Temp = TempResult.takeAs<Expr>();
John McCallacf0ee52010-10-08 02:01:28 +00007331 CheckImplicitConversions(Temp, VD->getLocation());
Douglas Gregor77b50e12009-06-22 23:06:13 +00007332 MarkDeclarationReferenced(VD->getLocation(), Constructor);
John McCall5d413782010-12-06 08:20:24 +00007333 Temp = MaybeCreateExprWithCleanups(Temp);
Douglas Gregord5058122010-02-11 01:19:42 +00007334 VD->setInit(Temp);
Mike Stump11289f42009-09-09 15:08:12 +00007335
Anders Carlssonc1eb79b2009-08-25 05:18:00 +00007336 return false;
Anders Carlssone6840d82009-04-16 23:50:50 +00007337}
7338
John McCall03c48482010-02-02 09:10:11 +00007339void Sema::FinalizeVarWithDestructor(VarDecl *VD, const RecordType *Record) {
Chandler Carruth86d17d32011-03-27 21:26:48 +00007340 if (VD->isInvalidDecl()) return;
7341
John McCall03c48482010-02-02 09:10:11 +00007342 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Record->getDecl());
Chandler Carruth86d17d32011-03-27 21:26:48 +00007343 if (ClassDecl->isInvalidDecl()) return;
7344 if (ClassDecl->hasTrivialDestructor()) return;
7345 if (ClassDecl->isDependentContext()) return;
John McCall47e40932010-08-01 20:20:59 +00007346
Chandler Carruth86d17d32011-03-27 21:26:48 +00007347 CXXDestructorDecl *Destructor = LookupDestructor(ClassDecl);
7348 MarkDeclarationReferenced(VD->getLocation(), Destructor);
7349 CheckDestructorAccess(VD->getLocation(), Destructor,
7350 PDiag(diag::err_access_dtor_var)
7351 << VD->getDeclName()
7352 << VD->getType());
Anders Carlsson98766db2011-03-24 01:01:41 +00007353
Chandler Carruth86d17d32011-03-27 21:26:48 +00007354 if (!VD->hasGlobalStorage()) return;
7355
7356 // Emit warning for non-trivial dtor in global scope (a real global,
7357 // class-static, function-static).
7358 Diag(VD->getLocation(), diag::warn_exit_time_destructor);
7359
7360 // TODO: this should be re-enabled for static locals by !CXAAtExit
7361 if (!VD->isStaticLocal())
7362 Diag(VD->getLocation(), diag::warn_global_destructor);
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00007363}
7364
Mike Stump11289f42009-09-09 15:08:12 +00007365/// AddCXXDirectInitializerToDecl - This action is called immediately after
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00007366/// ActOnDeclarator, when a C++ direct initializer is present.
7367/// e.g: "int x(1);"
John McCall48871652010-08-21 09:40:31 +00007368void Sema::AddCXXDirectInitializerToDecl(Decl *RealDecl,
Chris Lattner83f095c2009-03-28 19:18:32 +00007369 SourceLocation LParenLoc,
Sebastian Redl6d4256c2009-03-15 17:47:39 +00007370 MultiExprArg Exprs,
Richard Smith30482bc2011-02-20 03:19:35 +00007371 SourceLocation RParenLoc,
7372 bool TypeMayContainAuto) {
Daniel Dunbar2db411f2009-12-24 19:19:26 +00007373 assert(Exprs.size() != 0 && Exprs.get() && "missing expressions");
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00007374
7375 // If there is no declaration, there was an error parsing it. Just ignore
7376 // the initializer.
Chris Lattner83f095c2009-03-28 19:18:32 +00007377 if (RealDecl == 0)
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00007378 return;
Mike Stump11289f42009-09-09 15:08:12 +00007379
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00007380 VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl);
7381 if (!VDecl) {
7382 Diag(RealDecl->getLocation(), diag::err_illegal_initializer);
7383 RealDecl->setInvalidDecl();
7384 return;
7385 }
7386
Richard Smith30482bc2011-02-20 03:19:35 +00007387 // C++0x [decl.spec.auto]p6. Deduce the type which 'auto' stands in for.
7388 if (TypeMayContainAuto && VDecl->getType()->getContainedAutoType()) {
Richard Smith30482bc2011-02-20 03:19:35 +00007389 // FIXME: n3225 doesn't actually seem to indicate this is ill-formed
7390 if (Exprs.size() > 1) {
7391 Diag(Exprs.get()[1]->getSourceRange().getBegin(),
7392 diag::err_auto_var_init_multiple_expressions)
7393 << VDecl->getDeclName() << VDecl->getType()
7394 << VDecl->getSourceRange();
7395 RealDecl->setInvalidDecl();
7396 return;
7397 }
7398
7399 Expr *Init = Exprs.get()[0];
Richard Smith9647d3c2011-03-17 16:11:59 +00007400 TypeSourceInfo *DeducedType = 0;
7401 if (!DeduceAutoType(VDecl->getTypeSourceInfo(), Init, DeducedType))
Richard Smith30482bc2011-02-20 03:19:35 +00007402 Diag(VDecl->getLocation(), diag::err_auto_var_deduction_failure)
7403 << VDecl->getDeclName() << VDecl->getType() << Init->getType()
7404 << Init->getSourceRange();
Richard Smith9647d3c2011-03-17 16:11:59 +00007405 if (!DeducedType) {
Richard Smith30482bc2011-02-20 03:19:35 +00007406 RealDecl->setInvalidDecl();
7407 return;
7408 }
Richard Smith9647d3c2011-03-17 16:11:59 +00007409 VDecl->setTypeSourceInfo(DeducedType);
7410 VDecl->setType(DeducedType->getType());
Richard Smith30482bc2011-02-20 03:19:35 +00007411
7412 // If this is a redeclaration, check that the type we just deduced matches
7413 // the previously declared type.
7414 if (VarDecl *Old = VDecl->getPreviousDeclaration())
7415 MergeVarDeclTypes(VDecl, Old);
7416 }
7417
Douglas Gregor402250f2009-08-26 21:14:46 +00007418 // We will represent direct-initialization similarly to copy-initialization:
Argyrios Kyrtzidis997d00d2008-10-06 23:08:37 +00007419 // int x(1); -as-> int x = 1;
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00007420 // ClassType x(a,b,c); -as-> ClassType x = ClassType(a,b,c);
7421 //
7422 // Clients that want to distinguish between the two forms, can check for
7423 // direct initializer using VarDecl::hasCXXDirectInitializer().
7424 // A major benefit is that clients that don't particularly care about which
7425 // exactly form was it (like the CodeGen) can handle both cases without
7426 // special case code.
Argyrios Kyrtzidis153d9672008-10-06 18:37:09 +00007427
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00007428 // C++ 8.5p11:
7429 // The form of initialization (using parentheses or '=') is generally
7430 // insignificant, but does matter when the entity being initialized has a
Argyrios Kyrtzidis153d9672008-10-06 18:37:09 +00007431 // class type.
7432
Douglas Gregor50dc2192010-02-11 22:55:30 +00007433 if (!VDecl->getType()->isDependentType() &&
7434 RequireCompleteType(VDecl->getLocation(), VDecl->getType(),
Douglas Gregor4044d992009-03-24 16:43:20 +00007435 diag::err_typecheck_decl_incomplete_type)) {
7436 VDecl->setInvalidDecl();
7437 return;
7438 }
7439
Douglas Gregorb6ea6082009-12-22 22:17:25 +00007440 // The variable can not have an abstract class type.
7441 if (RequireNonAbstractType(VDecl->getLocation(), VDecl->getType(),
7442 diag::err_abstract_type_in_decl,
7443 AbstractVariableType))
7444 VDecl->setInvalidDecl();
7445
Sebastian Redl5ca79842010-02-01 20:16:42 +00007446 const VarDecl *Def;
7447 if ((Def = VDecl->getDefinition()) && Def != VDecl) {
Douglas Gregorb6ea6082009-12-22 22:17:25 +00007448 Diag(VDecl->getLocation(), diag::err_redefinition)
7449 << VDecl->getDeclName();
7450 Diag(Def->getLocation(), diag::note_previous_definition);
7451 VDecl->setInvalidDecl();
Argyrios Kyrtzidis153d9672008-10-06 18:37:09 +00007452 return;
7453 }
Douglas Gregor50dc2192010-02-11 22:55:30 +00007454
Douglas Gregorf0f83692010-08-24 05:27:49 +00007455 // C++ [class.static.data]p4
7456 // If a static data member is of const integral or const
7457 // enumeration type, its declaration in the class definition can
7458 // specify a constant-initializer which shall be an integral
7459 // constant expression (5.19). In that case, the member can appear
7460 // in integral constant expressions. The member shall still be
7461 // defined in a namespace scope if it is used in the program and the
7462 // namespace scope definition shall not contain an initializer.
7463 //
7464 // We already performed a redefinition check above, but for static
7465 // data members we also need to check whether there was an in-class
7466 // declaration with an initializer.
7467 const VarDecl* PrevInit = 0;
7468 if (VDecl->isStaticDataMember() && VDecl->getAnyInitializer(PrevInit)) {
7469 Diag(VDecl->getLocation(), diag::err_redefinition) << VDecl->getDeclName();
7470 Diag(PrevInit->getLocation(), diag::note_previous_definition);
7471 return;
7472 }
7473
Douglas Gregor71f39c92010-12-16 01:31:22 +00007474 bool IsDependent = false;
7475 for (unsigned I = 0, N = Exprs.size(); I != N; ++I) {
7476 if (DiagnoseUnexpandedParameterPack(Exprs.get()[I], UPPC_Expression)) {
7477 VDecl->setInvalidDecl();
7478 return;
7479 }
7480
7481 if (Exprs.get()[I]->isTypeDependent())
7482 IsDependent = true;
7483 }
7484
Douglas Gregor50dc2192010-02-11 22:55:30 +00007485 // If either the declaration has a dependent type or if any of the
7486 // expressions is type-dependent, we represent the initialization
7487 // via a ParenListExpr for later use during template instantiation.
Douglas Gregor71f39c92010-12-16 01:31:22 +00007488 if (VDecl->getType()->isDependentType() || IsDependent) {
Douglas Gregor50dc2192010-02-11 22:55:30 +00007489 // Let clients know that initialization was done with a direct initializer.
7490 VDecl->setCXXDirectInitializer(true);
7491
7492 // Store the initialization expressions as a ParenListExpr.
7493 unsigned NumExprs = Exprs.size();
7494 VDecl->setInit(new (Context) ParenListExpr(Context, LParenLoc,
7495 (Expr **)Exprs.release(),
7496 NumExprs, RParenLoc));
7497 return;
7498 }
Douglas Gregorb6ea6082009-12-22 22:17:25 +00007499
7500 // Capture the variable that is being initialized and the style of
7501 // initialization.
7502 InitializedEntity Entity = InitializedEntity::InitializeVariable(VDecl);
7503
7504 // FIXME: Poor source location information.
7505 InitializationKind Kind
7506 = InitializationKind::CreateDirect(VDecl->getLocation(),
7507 LParenLoc, RParenLoc);
7508
7509 InitializationSequence InitSeq(*this, Entity, Kind,
John McCallb268a282010-08-23 23:25:46 +00007510 Exprs.get(), Exprs.size());
John McCalldadc5752010-08-24 06:29:42 +00007511 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, move(Exprs));
Douglas Gregorb6ea6082009-12-22 22:17:25 +00007512 if (Result.isInvalid()) {
7513 VDecl->setInvalidDecl();
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00007514 return;
7515 }
John McCallacf0ee52010-10-08 02:01:28 +00007516
7517 CheckImplicitConversions(Result.get(), LParenLoc);
Douglas Gregorb6ea6082009-12-22 22:17:25 +00007518
Douglas Gregora40433a2010-12-07 00:41:46 +00007519 Result = MaybeCreateExprWithCleanups(Result);
Douglas Gregord5058122010-02-11 01:19:42 +00007520 VDecl->setInit(Result.takeAs<Expr>());
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00007521 VDecl->setCXXDirectInitializer(true);
Argyrios Kyrtzidis997d00d2008-10-06 23:08:37 +00007522
John McCall8b7fd8f12011-01-19 11:48:09 +00007523 CheckCompleteVariableDeclaration(VDecl);
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00007524}
Douglas Gregor8e1cf602008-10-29 00:13:59 +00007525
Douglas Gregor5d3507d2009-09-09 23:08:42 +00007526/// \brief Given a constructor and the set of arguments provided for the
7527/// constructor, convert the arguments and add any required default arguments
7528/// to form a proper call to this constructor.
7529///
7530/// \returns true if an error occurred, false otherwise.
7531bool
7532Sema::CompleteConstructorCall(CXXConstructorDecl *Constructor,
7533 MultiExprArg ArgsPtr,
7534 SourceLocation Loc,
John McCall37ad5512010-08-23 06:44:23 +00007535 ASTOwningVector<Expr*> &ConvertedArgs) {
Douglas Gregor5d3507d2009-09-09 23:08:42 +00007536 // FIXME: This duplicates a lot of code from Sema::ConvertArgumentsForCall.
7537 unsigned NumArgs = ArgsPtr.size();
7538 Expr **Args = (Expr **)ArgsPtr.get();
7539
7540 const FunctionProtoType *Proto
7541 = Constructor->getType()->getAs<FunctionProtoType>();
7542 assert(Proto && "Constructor without a prototype?");
7543 unsigned NumArgsInProto = Proto->getNumArgs();
Douglas Gregor5d3507d2009-09-09 23:08:42 +00007544
7545 // If too few arguments are available, we'll fill in the rest with defaults.
Fariborz Jahanian4fa66ce2009-11-24 21:37:28 +00007546 if (NumArgs < NumArgsInProto)
Douglas Gregor5d3507d2009-09-09 23:08:42 +00007547 ConvertedArgs.reserve(NumArgsInProto);
Fariborz Jahanian4fa66ce2009-11-24 21:37:28 +00007548 else
Douglas Gregor5d3507d2009-09-09 23:08:42 +00007549 ConvertedArgs.reserve(NumArgs);
Fariborz Jahanian4fa66ce2009-11-24 21:37:28 +00007550
7551 VariadicCallType CallType =
7552 Proto->isVariadic() ? VariadicConstructor : VariadicDoesNotApply;
7553 llvm::SmallVector<Expr *, 8> AllArgs;
7554 bool Invalid = GatherArgumentsForCall(Loc, Constructor,
7555 Proto, 0, Args, NumArgs, AllArgs,
7556 CallType);
7557 for (unsigned i =0, size = AllArgs.size(); i < size; i++)
7558 ConvertedArgs.push_back(AllArgs[i]);
7559 return Invalid;
Douglas Gregorc28b57d2008-11-03 20:45:27 +00007560}
7561
Anders Carlssone363c8e2009-12-12 00:32:00 +00007562static inline bool
7563CheckOperatorNewDeleteDeclarationScope(Sema &SemaRef,
7564 const FunctionDecl *FnDecl) {
Sebastian Redl50c68252010-08-31 00:36:30 +00007565 const DeclContext *DC = FnDecl->getDeclContext()->getRedeclContext();
Anders Carlssone363c8e2009-12-12 00:32:00 +00007566 if (isa<NamespaceDecl>(DC)) {
7567 return SemaRef.Diag(FnDecl->getLocation(),
7568 diag::err_operator_new_delete_declared_in_namespace)
7569 << FnDecl->getDeclName();
7570 }
7571
7572 if (isa<TranslationUnitDecl>(DC) &&
John McCall8e7d6562010-08-26 03:08:43 +00007573 FnDecl->getStorageClass() == SC_Static) {
Anders Carlssone363c8e2009-12-12 00:32:00 +00007574 return SemaRef.Diag(FnDecl->getLocation(),
7575 diag::err_operator_new_delete_declared_static)
7576 << FnDecl->getDeclName();
7577 }
7578
Anders Carlsson60659a82009-12-12 02:43:16 +00007579 return false;
Anders Carlssone363c8e2009-12-12 00:32:00 +00007580}
7581
Anders Carlsson7e0b2072009-12-13 17:53:43 +00007582static inline bool
7583CheckOperatorNewDeleteTypes(Sema &SemaRef, const FunctionDecl *FnDecl,
7584 CanQualType ExpectedResultType,
7585 CanQualType ExpectedFirstParamType,
7586 unsigned DependentParamTypeDiag,
7587 unsigned InvalidParamTypeDiag) {
7588 QualType ResultType =
7589 FnDecl->getType()->getAs<FunctionType>()->getResultType();
7590
7591 // Check that the result type is not dependent.
7592 if (ResultType->isDependentType())
7593 return SemaRef.Diag(FnDecl->getLocation(),
7594 diag::err_operator_new_delete_dependent_result_type)
7595 << FnDecl->getDeclName() << ExpectedResultType;
7596
7597 // Check that the result type is what we expect.
7598 if (SemaRef.Context.getCanonicalType(ResultType) != ExpectedResultType)
7599 return SemaRef.Diag(FnDecl->getLocation(),
7600 diag::err_operator_new_delete_invalid_result_type)
7601 << FnDecl->getDeclName() << ExpectedResultType;
7602
7603 // A function template must have at least 2 parameters.
7604 if (FnDecl->getDescribedFunctionTemplate() && FnDecl->getNumParams() < 2)
7605 return SemaRef.Diag(FnDecl->getLocation(),
7606 diag::err_operator_new_delete_template_too_few_parameters)
7607 << FnDecl->getDeclName();
7608
7609 // The function decl must have at least 1 parameter.
7610 if (FnDecl->getNumParams() == 0)
7611 return SemaRef.Diag(FnDecl->getLocation(),
7612 diag::err_operator_new_delete_too_few_parameters)
7613 << FnDecl->getDeclName();
7614
7615 // Check the the first parameter type is not dependent.
7616 QualType FirstParamType = FnDecl->getParamDecl(0)->getType();
7617 if (FirstParamType->isDependentType())
7618 return SemaRef.Diag(FnDecl->getLocation(), DependentParamTypeDiag)
7619 << FnDecl->getDeclName() << ExpectedFirstParamType;
7620
7621 // Check that the first parameter type is what we expect.
Douglas Gregor684d7bd2009-12-22 23:42:49 +00007622 if (SemaRef.Context.getCanonicalType(FirstParamType).getUnqualifiedType() !=
Anders Carlsson7e0b2072009-12-13 17:53:43 +00007623 ExpectedFirstParamType)
7624 return SemaRef.Diag(FnDecl->getLocation(), InvalidParamTypeDiag)
7625 << FnDecl->getDeclName() << ExpectedFirstParamType;
7626
7627 return false;
7628}
7629
Anders Carlsson12308f42009-12-11 23:23:22 +00007630static bool
Anders Carlsson7e0b2072009-12-13 17:53:43 +00007631CheckOperatorNewDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
Anders Carlssone363c8e2009-12-12 00:32:00 +00007632 // C++ [basic.stc.dynamic.allocation]p1:
7633 // A program is ill-formed if an allocation function is declared in a
7634 // namespace scope other than global scope or declared static in global
7635 // scope.
7636 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
7637 return true;
Anders Carlsson7e0b2072009-12-13 17:53:43 +00007638
7639 CanQualType SizeTy =
7640 SemaRef.Context.getCanonicalType(SemaRef.Context.getSizeType());
7641
7642 // C++ [basic.stc.dynamic.allocation]p1:
7643 // The return type shall be void*. The first parameter shall have type
7644 // std::size_t.
7645 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidPtrTy,
7646 SizeTy,
7647 diag::err_operator_new_dependent_param_type,
7648 diag::err_operator_new_param_type))
7649 return true;
7650
7651 // C++ [basic.stc.dynamic.allocation]p1:
7652 // The first parameter shall not have an associated default argument.
7653 if (FnDecl->getParamDecl(0)->hasDefaultArg())
Anders Carlsson22f443f2009-12-12 00:26:23 +00007654 return SemaRef.Diag(FnDecl->getLocation(),
Anders Carlsson7e0b2072009-12-13 17:53:43 +00007655 diag::err_operator_new_default_arg)
7656 << FnDecl->getDeclName() << FnDecl->getParamDecl(0)->getDefaultArgRange();
7657
7658 return false;
Anders Carlsson22f443f2009-12-12 00:26:23 +00007659}
7660
7661static bool
Anders Carlsson12308f42009-12-11 23:23:22 +00007662CheckOperatorDeleteDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
7663 // C++ [basic.stc.dynamic.deallocation]p1:
7664 // A program is ill-formed if deallocation functions are declared in a
7665 // namespace scope other than global scope or declared static in global
7666 // scope.
Anders Carlssone363c8e2009-12-12 00:32:00 +00007667 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
7668 return true;
Anders Carlsson12308f42009-12-11 23:23:22 +00007669
7670 // C++ [basic.stc.dynamic.deallocation]p2:
7671 // Each deallocation function shall return void and its first parameter
7672 // shall be void*.
Anders Carlsson7e0b2072009-12-13 17:53:43 +00007673 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidTy,
7674 SemaRef.Context.VoidPtrTy,
7675 diag::err_operator_delete_dependent_param_type,
7676 diag::err_operator_delete_param_type))
7677 return true;
Anders Carlsson12308f42009-12-11 23:23:22 +00007678
Anders Carlsson12308f42009-12-11 23:23:22 +00007679 return false;
7680}
7681
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00007682/// CheckOverloadedOperatorDeclaration - Check whether the declaration
7683/// of this overloaded operator is well-formed. If so, returns false;
7684/// otherwise, emits appropriate diagnostics and returns true.
7685bool Sema::CheckOverloadedOperatorDeclaration(FunctionDecl *FnDecl) {
Douglas Gregord69246b2008-11-17 16:14:12 +00007686 assert(FnDecl && FnDecl->isOverloadedOperator() &&
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00007687 "Expected an overloaded operator declaration");
7688
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00007689 OverloadedOperatorKind Op = FnDecl->getOverloadedOperator();
7690
Mike Stump11289f42009-09-09 15:08:12 +00007691 // C++ [over.oper]p5:
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00007692 // The allocation and deallocation functions, operator new,
7693 // operator new[], operator delete and operator delete[], are
7694 // described completely in 3.7.3. The attributes and restrictions
7695 // found in the rest of this subclause do not apply to them unless
7696 // explicitly stated in 3.7.3.
Anders Carlssonf1f46952009-12-11 23:31:21 +00007697 if (Op == OO_Delete || Op == OO_Array_Delete)
Anders Carlsson12308f42009-12-11 23:23:22 +00007698 return CheckOperatorDeleteDeclaration(*this, FnDecl);
Fariborz Jahanian4e088942009-11-10 23:47:18 +00007699
Anders Carlsson22f443f2009-12-12 00:26:23 +00007700 if (Op == OO_New || Op == OO_Array_New)
7701 return CheckOperatorNewDeclaration(*this, FnDecl);
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00007702
7703 // C++ [over.oper]p6:
7704 // An operator function shall either be a non-static member
7705 // function or be a non-member function and have at least one
7706 // parameter whose type is a class, a reference to a class, an
7707 // enumeration, or a reference to an enumeration.
Douglas Gregord69246b2008-11-17 16:14:12 +00007708 if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(FnDecl)) {
7709 if (MethodDecl->isStatic())
7710 return Diag(FnDecl->getLocation(),
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00007711 diag::err_operator_overload_static) << FnDecl->getDeclName();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00007712 } else {
7713 bool ClassOrEnumParam = false;
Douglas Gregord69246b2008-11-17 16:14:12 +00007714 for (FunctionDecl::param_iterator Param = FnDecl->param_begin(),
7715 ParamEnd = FnDecl->param_end();
7716 Param != ParamEnd; ++Param) {
7717 QualType ParamType = (*Param)->getType().getNonReferenceType();
Eli Friedman173e0b7a2009-06-27 05:59:59 +00007718 if (ParamType->isDependentType() || ParamType->isRecordType() ||
7719 ParamType->isEnumeralType()) {
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00007720 ClassOrEnumParam = true;
7721 break;
7722 }
7723 }
7724
Douglas Gregord69246b2008-11-17 16:14:12 +00007725 if (!ClassOrEnumParam)
7726 return Diag(FnDecl->getLocation(),
Chris Lattner651d42d2008-11-20 06:38:18 +00007727 diag::err_operator_overload_needs_class_or_enum)
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00007728 << FnDecl->getDeclName();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00007729 }
7730
7731 // C++ [over.oper]p8:
7732 // An operator function cannot have default arguments (8.3.6),
7733 // except where explicitly stated below.
7734 //
Mike Stump11289f42009-09-09 15:08:12 +00007735 // Only the function-call operator allows default arguments
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00007736 // (C++ [over.call]p1).
7737 if (Op != OO_Call) {
7738 for (FunctionDecl::param_iterator Param = FnDecl->param_begin();
7739 Param != FnDecl->param_end(); ++Param) {
Anders Carlsson7e0b2072009-12-13 17:53:43 +00007740 if ((*Param)->hasDefaultArg())
Mike Stump11289f42009-09-09 15:08:12 +00007741 return Diag((*Param)->getLocation(),
Douglas Gregor58354032008-12-24 00:01:03 +00007742 diag::err_operator_overload_default_arg)
Anders Carlsson7e0b2072009-12-13 17:53:43 +00007743 << FnDecl->getDeclName() << (*Param)->getDefaultArgRange();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00007744 }
7745 }
7746
Douglas Gregor6cf08062008-11-10 13:38:07 +00007747 static const bool OperatorUses[NUM_OVERLOADED_OPERATORS][3] = {
7748 { false, false, false }
7749#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
7750 , { Unary, Binary, MemberOnly }
7751#include "clang/Basic/OperatorKinds.def"
7752 };
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00007753
Douglas Gregor6cf08062008-11-10 13:38:07 +00007754 bool CanBeUnaryOperator = OperatorUses[Op][0];
7755 bool CanBeBinaryOperator = OperatorUses[Op][1];
7756 bool MustBeMemberOperator = OperatorUses[Op][2];
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00007757
7758 // C++ [over.oper]p8:
7759 // [...] Operator functions cannot have more or fewer parameters
7760 // than the number required for the corresponding operator, as
7761 // described in the rest of this subclause.
Mike Stump11289f42009-09-09 15:08:12 +00007762 unsigned NumParams = FnDecl->getNumParams()
Douglas Gregord69246b2008-11-17 16:14:12 +00007763 + (isa<CXXMethodDecl>(FnDecl)? 1 : 0);
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00007764 if (Op != OO_Call &&
7765 ((NumParams == 1 && !CanBeUnaryOperator) ||
7766 (NumParams == 2 && !CanBeBinaryOperator) ||
7767 (NumParams < 1) || (NumParams > 2))) {
7768 // We have the wrong number of parameters.
Chris Lattnerc5bab9f2008-11-21 07:57:12 +00007769 unsigned ErrorKind;
Douglas Gregor6cf08062008-11-10 13:38:07 +00007770 if (CanBeUnaryOperator && CanBeBinaryOperator) {
Chris Lattnerc5bab9f2008-11-21 07:57:12 +00007771 ErrorKind = 2; // 2 -> unary or binary.
Douglas Gregor6cf08062008-11-10 13:38:07 +00007772 } else if (CanBeUnaryOperator) {
Chris Lattnerc5bab9f2008-11-21 07:57:12 +00007773 ErrorKind = 0; // 0 -> unary
Douglas Gregor6cf08062008-11-10 13:38:07 +00007774 } else {
Chris Lattner2b786902008-11-21 07:50:02 +00007775 assert(CanBeBinaryOperator &&
7776 "All non-call overloaded operators are unary or binary!");
Chris Lattnerc5bab9f2008-11-21 07:57:12 +00007777 ErrorKind = 1; // 1 -> binary
Douglas Gregor6cf08062008-11-10 13:38:07 +00007778 }
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00007779
Chris Lattnerc5bab9f2008-11-21 07:57:12 +00007780 return Diag(FnDecl->getLocation(), diag::err_operator_overload_must_be)
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00007781 << FnDecl->getDeclName() << NumParams << ErrorKind;
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00007782 }
Sebastian Redlbaad4e72009-01-05 20:52:13 +00007783
Douglas Gregord69246b2008-11-17 16:14:12 +00007784 // Overloaded operators other than operator() cannot be variadic.
7785 if (Op != OO_Call &&
John McCall9dd450b2009-09-21 23:43:11 +00007786 FnDecl->getType()->getAs<FunctionProtoType>()->isVariadic()) {
Chris Lattner651d42d2008-11-20 06:38:18 +00007787 return Diag(FnDecl->getLocation(), diag::err_operator_overload_variadic)
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00007788 << FnDecl->getDeclName();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00007789 }
7790
7791 // Some operators must be non-static member functions.
Douglas Gregord69246b2008-11-17 16:14:12 +00007792 if (MustBeMemberOperator && !isa<CXXMethodDecl>(FnDecl)) {
7793 return Diag(FnDecl->getLocation(),
Chris Lattner651d42d2008-11-20 06:38:18 +00007794 diag::err_operator_overload_must_be_member)
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00007795 << FnDecl->getDeclName();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00007796 }
7797
7798 // C++ [over.inc]p1:
7799 // The user-defined function called operator++ implements the
7800 // prefix and postfix ++ operator. If this function is a member
7801 // function with no parameters, or a non-member function with one
7802 // parameter of class or enumeration type, it defines the prefix
7803 // increment operator ++ for objects of that type. If the function
7804 // is a member function with one parameter (which shall be of type
7805 // int) or a non-member function with two parameters (the second
7806 // of which shall be of type int), it defines the postfix
7807 // increment operator ++ for objects of that type.
7808 if ((Op == OO_PlusPlus || Op == OO_MinusMinus) && NumParams == 2) {
7809 ParmVarDecl *LastParam = FnDecl->getParamDecl(FnDecl->getNumParams() - 1);
7810 bool ParamIsInt = false;
John McCall9dd450b2009-09-21 23:43:11 +00007811 if (const BuiltinType *BT = LastParam->getType()->getAs<BuiltinType>())
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00007812 ParamIsInt = BT->getKind() == BuiltinType::Int;
7813
Chris Lattner2b786902008-11-21 07:50:02 +00007814 if (!ParamIsInt)
7815 return Diag(LastParam->getLocation(),
Mike Stump11289f42009-09-09 15:08:12 +00007816 diag::err_operator_overload_post_incdec_must_be_int)
Chris Lattner1e5665e2008-11-24 06:25:27 +00007817 << LastParam->getType() << (Op == OO_MinusMinus);
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00007818 }
7819
Douglas Gregord69246b2008-11-17 16:14:12 +00007820 return false;
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00007821}
Chris Lattner3b024a32008-12-17 07:09:26 +00007822
Alexis Huntc88db062010-01-13 09:01:02 +00007823/// CheckLiteralOperatorDeclaration - Check whether the declaration
7824/// of this literal operator function is well-formed. If so, returns
7825/// false; otherwise, emits appropriate diagnostics and returns true.
7826bool Sema::CheckLiteralOperatorDeclaration(FunctionDecl *FnDecl) {
7827 DeclContext *DC = FnDecl->getDeclContext();
7828 Decl::Kind Kind = DC->getDeclKind();
7829 if (Kind != Decl::TranslationUnit && Kind != Decl::Namespace &&
7830 Kind != Decl::LinkageSpec) {
7831 Diag(FnDecl->getLocation(), diag::err_literal_operator_outside_namespace)
7832 << FnDecl->getDeclName();
7833 return true;
7834 }
7835
7836 bool Valid = false;
7837
Alexis Hunt7dd26172010-04-07 23:11:06 +00007838 // template <char...> type operator "" name() is the only valid template
7839 // signature, and the only valid signature with no parameters.
7840 if (FnDecl->param_size() == 0) {
7841 if (FunctionTemplateDecl *TpDecl = FnDecl->getDescribedFunctionTemplate()) {
7842 // Must have only one template parameter
7843 TemplateParameterList *Params = TpDecl->getTemplateParameters();
7844 if (Params->size() == 1) {
7845 NonTypeTemplateParmDecl *PmDecl =
7846 cast<NonTypeTemplateParmDecl>(Params->getParam(0));
Alexis Huntc88db062010-01-13 09:01:02 +00007847
Alexis Hunt7dd26172010-04-07 23:11:06 +00007848 // The template parameter must be a char parameter pack.
Alexis Hunt7dd26172010-04-07 23:11:06 +00007849 if (PmDecl && PmDecl->isTemplateParameterPack() &&
7850 Context.hasSameType(PmDecl->getType(), Context.CharTy))
7851 Valid = true;
7852 }
7853 }
7854 } else {
Alexis Huntc88db062010-01-13 09:01:02 +00007855 // Check the first parameter
Alexis Hunt7dd26172010-04-07 23:11:06 +00007856 FunctionDecl::param_iterator Param = FnDecl->param_begin();
7857
Alexis Huntc88db062010-01-13 09:01:02 +00007858 QualType T = (*Param)->getType();
7859
Alexis Hunt079a6f72010-04-07 22:57:35 +00007860 // unsigned long long int, long double, and any character type are allowed
7861 // as the only parameters.
Alexis Huntc88db062010-01-13 09:01:02 +00007862 if (Context.hasSameType(T, Context.UnsignedLongLongTy) ||
7863 Context.hasSameType(T, Context.LongDoubleTy) ||
7864 Context.hasSameType(T, Context.CharTy) ||
7865 Context.hasSameType(T, Context.WCharTy) ||
7866 Context.hasSameType(T, Context.Char16Ty) ||
7867 Context.hasSameType(T, Context.Char32Ty)) {
7868 if (++Param == FnDecl->param_end())
7869 Valid = true;
7870 goto FinishedParams;
7871 }
7872
Alexis Hunt079a6f72010-04-07 22:57:35 +00007873 // Otherwise it must be a pointer to const; let's strip those qualifiers.
Alexis Huntc88db062010-01-13 09:01:02 +00007874 const PointerType *PT = T->getAs<PointerType>();
7875 if (!PT)
7876 goto FinishedParams;
7877 T = PT->getPointeeType();
7878 if (!T.isConstQualified())
7879 goto FinishedParams;
7880 T = T.getUnqualifiedType();
7881
7882 // Move on to the second parameter;
7883 ++Param;
7884
7885 // If there is no second parameter, the first must be a const char *
7886 if (Param == FnDecl->param_end()) {
7887 if (Context.hasSameType(T, Context.CharTy))
7888 Valid = true;
7889 goto FinishedParams;
7890 }
7891
7892 // const char *, const wchar_t*, const char16_t*, and const char32_t*
7893 // are allowed as the first parameter to a two-parameter function
7894 if (!(Context.hasSameType(T, Context.CharTy) ||
7895 Context.hasSameType(T, Context.WCharTy) ||
7896 Context.hasSameType(T, Context.Char16Ty) ||
7897 Context.hasSameType(T, Context.Char32Ty)))
7898 goto FinishedParams;
7899
7900 // The second and final parameter must be an std::size_t
7901 T = (*Param)->getType().getUnqualifiedType();
7902 if (Context.hasSameType(T, Context.getSizeType()) &&
7903 ++Param == FnDecl->param_end())
7904 Valid = true;
7905 }
7906
7907 // FIXME: This diagnostic is absolutely terrible.
7908FinishedParams:
7909 if (!Valid) {
7910 Diag(FnDecl->getLocation(), diag::err_literal_operator_params)
7911 << FnDecl->getDeclName();
7912 return true;
7913 }
7914
7915 return false;
7916}
7917
Douglas Gregor07665a62009-01-05 19:45:36 +00007918/// ActOnStartLinkageSpecification - Parsed the beginning of a C++
7919/// linkage specification, including the language and (if present)
7920/// the '{'. ExternLoc is the location of the 'extern', LangLoc is
7921/// the location of the language string literal, which is provided
7922/// by Lang/StrSize. LBraceLoc, if valid, provides the location of
7923/// the '{' brace. Otherwise, this linkage specification does not
7924/// have any braces.
Chris Lattner8ea64422010-11-09 20:15:55 +00007925Decl *Sema::ActOnStartLinkageSpecification(Scope *S, SourceLocation ExternLoc,
7926 SourceLocation LangLoc,
7927 llvm::StringRef Lang,
7928 SourceLocation LBraceLoc) {
Chris Lattner438e5012008-12-17 07:13:27 +00007929 LinkageSpecDecl::LanguageIDs Language;
Benjamin Kramerbebee842010-05-03 13:08:54 +00007930 if (Lang == "\"C\"")
Chris Lattner438e5012008-12-17 07:13:27 +00007931 Language = LinkageSpecDecl::lang_c;
Benjamin Kramerbebee842010-05-03 13:08:54 +00007932 else if (Lang == "\"C++\"")
Chris Lattner438e5012008-12-17 07:13:27 +00007933 Language = LinkageSpecDecl::lang_cxx;
7934 else {
Douglas Gregor07665a62009-01-05 19:45:36 +00007935 Diag(LangLoc, diag::err_bad_language);
John McCall48871652010-08-21 09:40:31 +00007936 return 0;
Chris Lattner438e5012008-12-17 07:13:27 +00007937 }
Mike Stump11289f42009-09-09 15:08:12 +00007938
Chris Lattner438e5012008-12-17 07:13:27 +00007939 // FIXME: Add all the various semantics of linkage specifications
Mike Stump11289f42009-09-09 15:08:12 +00007940
Douglas Gregor07665a62009-01-05 19:45:36 +00007941 LinkageSpecDecl *D = LinkageSpecDecl::Create(Context, CurContext,
Abramo Bagnaraea947882011-03-08 16:41:52 +00007942 ExternLoc, LangLoc, Language);
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00007943 CurContext->addDecl(D);
Douglas Gregor07665a62009-01-05 19:45:36 +00007944 PushDeclContext(S, D);
John McCall48871652010-08-21 09:40:31 +00007945 return D;
Chris Lattner438e5012008-12-17 07:13:27 +00007946}
7947
Abramo Bagnaraed5b6892010-07-30 16:47:02 +00007948/// ActOnFinishLinkageSpecification - Complete the definition of
Douglas Gregor07665a62009-01-05 19:45:36 +00007949/// the C++ linkage specification LinkageSpec. If RBraceLoc is
7950/// valid, it's the position of the closing '}' brace in a linkage
7951/// specification that uses braces.
John McCall48871652010-08-21 09:40:31 +00007952Decl *Sema::ActOnFinishLinkageSpecification(Scope *S,
Abramo Bagnara4a8cda82011-03-03 14:52:38 +00007953 Decl *LinkageSpec,
7954 SourceLocation RBraceLoc) {
7955 if (LinkageSpec) {
7956 if (RBraceLoc.isValid()) {
7957 LinkageSpecDecl* LSDecl = cast<LinkageSpecDecl>(LinkageSpec);
7958 LSDecl->setRBraceLoc(RBraceLoc);
7959 }
Douglas Gregor07665a62009-01-05 19:45:36 +00007960 PopDeclContext();
Abramo Bagnara4a8cda82011-03-03 14:52:38 +00007961 }
Douglas Gregor07665a62009-01-05 19:45:36 +00007962 return LinkageSpec;
Chris Lattner3b024a32008-12-17 07:09:26 +00007963}
7964
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00007965/// \brief Perform semantic analysis for the variable declaration that
7966/// occurs within a C++ catch clause, returning the newly-created
7967/// variable.
Abramo Bagnaradff19302011-03-08 08:55:46 +00007968VarDecl *Sema::BuildExceptionDeclaration(Scope *S,
John McCallbcd03502009-12-07 02:54:59 +00007969 TypeSourceInfo *TInfo,
Abramo Bagnaradff19302011-03-08 08:55:46 +00007970 SourceLocation StartLoc,
7971 SourceLocation Loc,
7972 IdentifierInfo *Name) {
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00007973 bool Invalid = false;
Douglas Gregor9f0e1aa2010-09-09 17:09:21 +00007974 QualType ExDeclType = TInfo->getType();
7975
Sebastian Redl54c04d42008-12-22 19:15:10 +00007976 // Arrays and functions decay.
7977 if (ExDeclType->isArrayType())
7978 ExDeclType = Context.getArrayDecayedType(ExDeclType);
7979 else if (ExDeclType->isFunctionType())
7980 ExDeclType = Context.getPointerType(ExDeclType);
7981
7982 // C++ 15.3p1: The exception-declaration shall not denote an incomplete type.
7983 // The exception-declaration shall not denote a pointer or reference to an
7984 // incomplete type, other than [cv] void*.
Sebastian Redlb28b4072009-03-22 23:49:27 +00007985 // N2844 forbids rvalue references.
Mike Stump11289f42009-09-09 15:08:12 +00007986 if (!ExDeclType->isDependentType() && ExDeclType->isRValueReferenceType()) {
Douglas Gregor9f0e1aa2010-09-09 17:09:21 +00007987 Diag(Loc, diag::err_catch_rvalue_ref);
Sebastian Redlb28b4072009-03-22 23:49:27 +00007988 Invalid = true;
7989 }
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00007990
Douglas Gregor104ee002010-03-08 01:47:36 +00007991 // GCC allows catching pointers and references to incomplete types
7992 // as an extension; so do we, but we warn by default.
7993
Sebastian Redl54c04d42008-12-22 19:15:10 +00007994 QualType BaseType = ExDeclType;
7995 int Mode = 0; // 0 for direct type, 1 for pointer, 2 for reference
Douglas Gregordd430f72009-01-19 19:26:10 +00007996 unsigned DK = diag::err_catch_incomplete;
Douglas Gregor104ee002010-03-08 01:47:36 +00007997 bool IncompleteCatchIsInvalid = true;
Ted Kremenekc23c7e62009-07-29 21:53:49 +00007998 if (const PointerType *Ptr = BaseType->getAs<PointerType>()) {
Sebastian Redl54c04d42008-12-22 19:15:10 +00007999 BaseType = Ptr->getPointeeType();
8000 Mode = 1;
Douglas Gregor104ee002010-03-08 01:47:36 +00008001 DK = diag::ext_catch_incomplete_ptr;
8002 IncompleteCatchIsInvalid = false;
Mike Stump11289f42009-09-09 15:08:12 +00008003 } else if (const ReferenceType *Ref = BaseType->getAs<ReferenceType>()) {
Sebastian Redlb28b4072009-03-22 23:49:27 +00008004 // For the purpose of error recovery, we treat rvalue refs like lvalue refs.
Sebastian Redl54c04d42008-12-22 19:15:10 +00008005 BaseType = Ref->getPointeeType();
8006 Mode = 2;
Douglas Gregor104ee002010-03-08 01:47:36 +00008007 DK = diag::ext_catch_incomplete_ref;
8008 IncompleteCatchIsInvalid = false;
Sebastian Redl54c04d42008-12-22 19:15:10 +00008009 }
Sebastian Redlb28b4072009-03-22 23:49:27 +00008010 if (!Invalid && (Mode == 0 || !BaseType->isVoidType()) &&
Douglas Gregor104ee002010-03-08 01:47:36 +00008011 !BaseType->isDependentType() && RequireCompleteType(Loc, BaseType, DK) &&
8012 IncompleteCatchIsInvalid)
Sebastian Redl54c04d42008-12-22 19:15:10 +00008013 Invalid = true;
Sebastian Redl54c04d42008-12-22 19:15:10 +00008014
Mike Stump11289f42009-09-09 15:08:12 +00008015 if (!Invalid && !ExDeclType->isDependentType() &&
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00008016 RequireNonAbstractType(Loc, ExDeclType,
8017 diag::err_abstract_type_in_decl,
8018 AbstractVariableType))
Sebastian Redl2f38ba52009-04-27 21:03:30 +00008019 Invalid = true;
8020
John McCall2ca705e2010-07-24 00:37:23 +00008021 // Only the non-fragile NeXT runtime currently supports C++ catches
8022 // of ObjC types, and no runtime supports catching ObjC types by value.
8023 if (!Invalid && getLangOptions().ObjC1) {
8024 QualType T = ExDeclType;
8025 if (const ReferenceType *RT = T->getAs<ReferenceType>())
8026 T = RT->getPointeeType();
8027
8028 if (T->isObjCObjectType()) {
8029 Diag(Loc, diag::err_objc_object_catch);
8030 Invalid = true;
8031 } else if (T->isObjCObjectPointerType()) {
David Chisnalle1d2584d2011-03-20 21:35:39 +00008032 if (!getLangOptions().ObjCNonFragileABI) {
John McCall2ca705e2010-07-24 00:37:23 +00008033 Diag(Loc, diag::err_objc_pointer_cxx_catch_fragile);
8034 Invalid = true;
8035 }
8036 }
8037 }
8038
Abramo Bagnaradff19302011-03-08 08:55:46 +00008039 VarDecl *ExDecl = VarDecl::Create(Context, CurContext, StartLoc, Loc, Name,
8040 ExDeclType, TInfo, SC_None, SC_None);
Douglas Gregor3f324d562010-05-03 18:51:14 +00008041 ExDecl->setExceptionVariable(true);
8042
Douglas Gregor6de584c2010-03-05 23:38:39 +00008043 if (!Invalid) {
John McCall1bf58462011-02-16 08:02:54 +00008044 if (const RecordType *recordType = ExDeclType->getAs<RecordType>()) {
Douglas Gregor6de584c2010-03-05 23:38:39 +00008045 // C++ [except.handle]p16:
8046 // The object declared in an exception-declaration or, if the
8047 // exception-declaration does not specify a name, a temporary (12.2) is
8048 // copy-initialized (8.5) from the exception object. [...]
8049 // The object is destroyed when the handler exits, after the destruction
8050 // of any automatic objects initialized within the handler.
8051 //
8052 // We just pretend to initialize the object with itself, then make sure
8053 // it can be destroyed later.
John McCall1bf58462011-02-16 08:02:54 +00008054 QualType initType = ExDeclType;
8055
8056 InitializedEntity entity =
8057 InitializedEntity::InitializeVariable(ExDecl);
8058 InitializationKind initKind =
8059 InitializationKind::CreateCopy(Loc, SourceLocation());
8060
8061 Expr *opaqueValue =
8062 new (Context) OpaqueValueExpr(Loc, initType, VK_LValue, OK_Ordinary);
8063 InitializationSequence sequence(*this, entity, initKind, &opaqueValue, 1);
8064 ExprResult result = sequence.Perform(*this, entity, initKind,
8065 MultiExprArg(&opaqueValue, 1));
8066 if (result.isInvalid())
Douglas Gregor6de584c2010-03-05 23:38:39 +00008067 Invalid = true;
John McCall1bf58462011-02-16 08:02:54 +00008068 else {
8069 // If the constructor used was non-trivial, set this as the
8070 // "initializer".
8071 CXXConstructExpr *construct = cast<CXXConstructExpr>(result.take());
8072 if (!construct->getConstructor()->isTrivial()) {
8073 Expr *init = MaybeCreateExprWithCleanups(construct);
8074 ExDecl->setInit(init);
8075 }
8076
8077 // And make sure it's destructable.
8078 FinalizeVarWithDestructor(ExDecl, recordType);
8079 }
Douglas Gregor6de584c2010-03-05 23:38:39 +00008080 }
8081 }
8082
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00008083 if (Invalid)
8084 ExDecl->setInvalidDecl();
8085
8086 return ExDecl;
8087}
8088
8089/// ActOnExceptionDeclarator - Parsed the exception-declarator in a C++ catch
8090/// handler.
John McCall48871652010-08-21 09:40:31 +00008091Decl *Sema::ActOnExceptionDeclarator(Scope *S, Declarator &D) {
John McCall8cb7bdf2010-06-04 23:28:52 +00008092 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
Douglas Gregor72772f62010-12-16 17:48:04 +00008093 bool Invalid = D.isInvalidType();
8094
8095 // Check for unexpanded parameter packs.
8096 if (TInfo && DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo,
8097 UPPC_ExceptionType)) {
8098 TInfo = Context.getTrivialTypeSourceInfo(Context.IntTy,
8099 D.getIdentifierLoc());
8100 Invalid = true;
8101 }
8102
Sebastian Redl54c04d42008-12-22 19:15:10 +00008103 IdentifierInfo *II = D.getIdentifier();
Douglas Gregorb2ccf012010-04-15 22:33:43 +00008104 if (NamedDecl *PrevDecl = LookupSingleName(S, II, D.getIdentifierLoc(),
Douglas Gregorb8eaf292010-04-15 23:40:53 +00008105 LookupOrdinaryName,
8106 ForRedeclaration)) {
Sebastian Redl54c04d42008-12-22 19:15:10 +00008107 // The scope should be freshly made just for us. There is just no way
8108 // it contains any previous declaration.
John McCall48871652010-08-21 09:40:31 +00008109 assert(!S->isDeclScope(PrevDecl));
Sebastian Redl54c04d42008-12-22 19:15:10 +00008110 if (PrevDecl->isTemplateParameter()) {
8111 // Maybe we will complain about the shadowed template parameter.
8112 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
Sebastian Redl54c04d42008-12-22 19:15:10 +00008113 }
8114 }
8115
Chris Lattnerf6d1c9c2009-04-25 08:06:05 +00008116 if (D.getCXXScopeSpec().isSet() && !Invalid) {
Sebastian Redl54c04d42008-12-22 19:15:10 +00008117 Diag(D.getIdentifierLoc(), diag::err_qualified_catch_declarator)
8118 << D.getCXXScopeSpec().getRange();
Chris Lattnerf6d1c9c2009-04-25 08:06:05 +00008119 Invalid = true;
Sebastian Redl54c04d42008-12-22 19:15:10 +00008120 }
8121
Douglas Gregor9f0e1aa2010-09-09 17:09:21 +00008122 VarDecl *ExDecl = BuildExceptionDeclaration(S, TInfo,
Abramo Bagnaradff19302011-03-08 08:55:46 +00008123 D.getSourceRange().getBegin(),
8124 D.getIdentifierLoc(),
8125 D.getIdentifier());
Chris Lattnerf6d1c9c2009-04-25 08:06:05 +00008126 if (Invalid)
8127 ExDecl->setInvalidDecl();
Mike Stump11289f42009-09-09 15:08:12 +00008128
Sebastian Redl54c04d42008-12-22 19:15:10 +00008129 // Add the exception declaration into this scope.
Sebastian Redl54c04d42008-12-22 19:15:10 +00008130 if (II)
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00008131 PushOnScopeChains(ExDecl, S);
8132 else
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00008133 CurContext->addDecl(ExDecl);
Sebastian Redl54c04d42008-12-22 19:15:10 +00008134
Douglas Gregor758a8692009-06-17 21:51:59 +00008135 ProcessDeclAttributes(S, ExDecl, D);
John McCall48871652010-08-21 09:40:31 +00008136 return ExDecl;
Sebastian Redl54c04d42008-12-22 19:15:10 +00008137}
Anders Carlsson5bbe1d72009-03-14 00:25:26 +00008138
Abramo Bagnaraea947882011-03-08 16:41:52 +00008139Decl *Sema::ActOnStaticAssertDeclaration(SourceLocation StaticAssertLoc,
John McCallb268a282010-08-23 23:25:46 +00008140 Expr *AssertExpr,
Abramo Bagnaraea947882011-03-08 16:41:52 +00008141 Expr *AssertMessageExpr_,
8142 SourceLocation RParenLoc) {
John McCallb268a282010-08-23 23:25:46 +00008143 StringLiteral *AssertMessage = cast<StringLiteral>(AssertMessageExpr_);
Anders Carlsson5bbe1d72009-03-14 00:25:26 +00008144
Anders Carlsson54b26982009-03-14 00:33:21 +00008145 if (!AssertExpr->isTypeDependent() && !AssertExpr->isValueDependent()) {
8146 llvm::APSInt Value(32);
8147 if (!AssertExpr->isIntegerConstantExpr(Value, Context)) {
Abramo Bagnaraea947882011-03-08 16:41:52 +00008148 Diag(StaticAssertLoc,
8149 diag::err_static_assert_expression_is_not_constant) <<
Anders Carlsson54b26982009-03-14 00:33:21 +00008150 AssertExpr->getSourceRange();
John McCall48871652010-08-21 09:40:31 +00008151 return 0;
Anders Carlsson54b26982009-03-14 00:33:21 +00008152 }
Anders Carlsson5bbe1d72009-03-14 00:25:26 +00008153
Anders Carlsson54b26982009-03-14 00:33:21 +00008154 if (Value == 0) {
Abramo Bagnaraea947882011-03-08 16:41:52 +00008155 Diag(StaticAssertLoc, diag::err_static_assert_failed)
Benjamin Kramerb11118b2009-12-11 13:33:18 +00008156 << AssertMessage->getString() << AssertExpr->getSourceRange();
Anders Carlsson54b26982009-03-14 00:33:21 +00008157 }
8158 }
Mike Stump11289f42009-09-09 15:08:12 +00008159
Douglas Gregoref68fee2010-12-15 23:55:21 +00008160 if (DiagnoseUnexpandedParameterPack(AssertExpr, UPPC_StaticAssertExpression))
8161 return 0;
8162
Abramo Bagnaraea947882011-03-08 16:41:52 +00008163 Decl *Decl = StaticAssertDecl::Create(Context, CurContext, StaticAssertLoc,
8164 AssertExpr, AssertMessage, RParenLoc);
Mike Stump11289f42009-09-09 15:08:12 +00008165
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00008166 CurContext->addDecl(Decl);
John McCall48871652010-08-21 09:40:31 +00008167 return Decl;
Anders Carlsson5bbe1d72009-03-14 00:25:26 +00008168}
Sebastian Redlf769df52009-03-24 22:27:57 +00008169
Douglas Gregorafb9bc12010-04-07 16:53:43 +00008170/// \brief Perform semantic analysis of the given friend type declaration.
8171///
8172/// \returns A friend declaration that.
8173FriendDecl *Sema::CheckFriendTypeDecl(SourceLocation FriendLoc,
8174 TypeSourceInfo *TSInfo) {
8175 assert(TSInfo && "NULL TypeSourceInfo for friend type declaration");
8176
8177 QualType T = TSInfo->getType();
Abramo Bagnara1108e7b2010-05-20 10:00:11 +00008178 SourceRange TypeRange = TSInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregorafb9bc12010-04-07 16:53:43 +00008179
Douglas Gregor3b4abb62010-04-07 17:57:12 +00008180 if (!getLangOptions().CPlusPlus0x) {
8181 // C++03 [class.friend]p2:
8182 // An elaborated-type-specifier shall be used in a friend declaration
8183 // for a class.*
8184 //
8185 // * The class-key of the elaborated-type-specifier is required.
8186 if (!ActiveTemplateInstantiations.empty()) {
8187 // Do not complain about the form of friend template types during
8188 // template instantiation; we will already have complained when the
8189 // template was declared.
8190 } else if (!T->isElaboratedTypeSpecifier()) {
8191 // If we evaluated the type to a record type, suggest putting
8192 // a tag in front.
8193 if (const RecordType *RT = T->getAs<RecordType>()) {
8194 RecordDecl *RD = RT->getDecl();
8195
8196 std::string InsertionText = std::string(" ") + RD->getKindName();
8197
8198 Diag(TypeRange.getBegin(), diag::ext_unelaborated_friend_type)
8199 << (unsigned) RD->getTagKind()
8200 << T
8201 << FixItHint::CreateInsertion(PP.getLocForEndOfToken(FriendLoc),
8202 InsertionText);
8203 } else {
8204 Diag(FriendLoc, diag::ext_nonclass_type_friend)
8205 << T
8206 << SourceRange(FriendLoc, TypeRange.getEnd());
8207 }
8208 } else if (T->getAs<EnumType>()) {
8209 Diag(FriendLoc, diag::ext_enum_friend)
Douglas Gregorafb9bc12010-04-07 16:53:43 +00008210 << T
Douglas Gregorafb9bc12010-04-07 16:53:43 +00008211 << SourceRange(FriendLoc, TypeRange.getEnd());
Douglas Gregorafb9bc12010-04-07 16:53:43 +00008212 }
8213 }
8214
Douglas Gregor3b4abb62010-04-07 17:57:12 +00008215 // C++0x [class.friend]p3:
8216 // If the type specifier in a friend declaration designates a (possibly
8217 // cv-qualified) class type, that class is declared as a friend; otherwise,
8218 // the friend declaration is ignored.
8219
8220 // FIXME: C++0x has some syntactic restrictions on friend type declarations
8221 // in [class.friend]p3 that we do not implement.
Douglas Gregorafb9bc12010-04-07 16:53:43 +00008222
8223 return FriendDecl::Create(Context, CurContext, FriendLoc, TSInfo, FriendLoc);
8224}
8225
John McCallace48cd2010-10-19 01:40:49 +00008226/// Handle a friend tag declaration where the scope specifier was
8227/// templated.
8228Decl *Sema::ActOnTemplatedFriendTag(Scope *S, SourceLocation FriendLoc,
8229 unsigned TagSpec, SourceLocation TagLoc,
8230 CXXScopeSpec &SS,
8231 IdentifierInfo *Name, SourceLocation NameLoc,
8232 AttributeList *Attr,
8233 MultiTemplateParamsArg TempParamLists) {
8234 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
8235
8236 bool isExplicitSpecialization = false;
John McCallace48cd2010-10-19 01:40:49 +00008237 bool Invalid = false;
8238
8239 if (TemplateParameterList *TemplateParams
Douglas Gregor972fe532011-05-10 18:27:06 +00008240 = MatchTemplateParametersToScopeSpecifier(TagLoc, NameLoc, SS,
John McCallace48cd2010-10-19 01:40:49 +00008241 TempParamLists.get(),
8242 TempParamLists.size(),
8243 /*friend*/ true,
8244 isExplicitSpecialization,
8245 Invalid)) {
John McCallace48cd2010-10-19 01:40:49 +00008246 if (TemplateParams->size() > 0) {
8247 // This is a declaration of a class template.
8248 if (Invalid)
8249 return 0;
Abramo Bagnara0adf29a2011-03-10 13:28:31 +00008250
John McCallace48cd2010-10-19 01:40:49 +00008251 return CheckClassTemplate(S, TagSpec, TUK_Friend, TagLoc,
8252 SS, Name, NameLoc, Attr,
Abramo Bagnara0adf29a2011-03-10 13:28:31 +00008253 TemplateParams, AS_public,
Abramo Bagnara60804e12011-03-18 15:16:37 +00008254 TempParamLists.size() - 1,
Abramo Bagnara0adf29a2011-03-10 13:28:31 +00008255 (TemplateParameterList**) TempParamLists.release()).take();
John McCallace48cd2010-10-19 01:40:49 +00008256 } else {
8257 // The "template<>" header is extraneous.
8258 Diag(TemplateParams->getTemplateLoc(), diag::err_template_tag_noparams)
8259 << TypeWithKeyword::getTagTypeKindName(Kind) << Name;
8260 isExplicitSpecialization = true;
8261 }
8262 }
8263
8264 if (Invalid) return 0;
8265
8266 assert(SS.isNotEmpty() && "valid templated tag with no SS and no direct?");
8267
8268 bool isAllExplicitSpecializations = true;
Abramo Bagnara60804e12011-03-18 15:16:37 +00008269 for (unsigned I = TempParamLists.size(); I-- > 0; ) {
John McCallace48cd2010-10-19 01:40:49 +00008270 if (TempParamLists.get()[I]->size()) {
8271 isAllExplicitSpecializations = false;
8272 break;
8273 }
8274 }
8275
8276 // FIXME: don't ignore attributes.
8277
8278 // If it's explicit specializations all the way down, just forget
8279 // about the template header and build an appropriate non-templated
8280 // friend. TODO: for source fidelity, remember the headers.
8281 if (isAllExplicitSpecializations) {
Douglas Gregor3d0da5f2011-03-01 01:34:45 +00008282 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
John McCallace48cd2010-10-19 01:40:49 +00008283 ElaboratedTypeKeyword Keyword
8284 = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
Douglas Gregor3d0da5f2011-03-01 01:34:45 +00008285 QualType T = CheckTypenameType(Keyword, TagLoc, QualifierLoc,
Douglas Gregor9cbc22b2011-02-28 22:42:13 +00008286 *Name, NameLoc);
John McCallace48cd2010-10-19 01:40:49 +00008287 if (T.isNull())
8288 return 0;
8289
8290 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
8291 if (isa<DependentNameType>(T)) {
8292 DependentNameTypeLoc TL = cast<DependentNameTypeLoc>(TSI->getTypeLoc());
8293 TL.setKeywordLoc(TagLoc);
Douglas Gregor3d0da5f2011-03-01 01:34:45 +00008294 TL.setQualifierLoc(QualifierLoc);
John McCallace48cd2010-10-19 01:40:49 +00008295 TL.setNameLoc(NameLoc);
8296 } else {
8297 ElaboratedTypeLoc TL = cast<ElaboratedTypeLoc>(TSI->getTypeLoc());
8298 TL.setKeywordLoc(TagLoc);
Douglas Gregor844cb502011-03-01 18:12:44 +00008299 TL.setQualifierLoc(QualifierLoc);
John McCallace48cd2010-10-19 01:40:49 +00008300 cast<TypeSpecTypeLoc>(TL.getNamedTypeLoc()).setNameLoc(NameLoc);
8301 }
8302
8303 FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc,
8304 TSI, FriendLoc);
8305 Friend->setAccess(AS_public);
8306 CurContext->addDecl(Friend);
8307 return Friend;
8308 }
8309
8310 // Handle the case of a templated-scope friend class. e.g.
8311 // template <class T> class A<T>::B;
8312 // FIXME: we don't support these right now.
8313 ElaboratedTypeKeyword ETK = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
8314 QualType T = Context.getDependentNameType(ETK, SS.getScopeRep(), Name);
8315 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
8316 DependentNameTypeLoc TL = cast<DependentNameTypeLoc>(TSI->getTypeLoc());
8317 TL.setKeywordLoc(TagLoc);
Douglas Gregor3d0da5f2011-03-01 01:34:45 +00008318 TL.setQualifierLoc(SS.getWithLocInContext(Context));
John McCallace48cd2010-10-19 01:40:49 +00008319 TL.setNameLoc(NameLoc);
8320
8321 FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc,
8322 TSI, FriendLoc);
8323 Friend->setAccess(AS_public);
8324 Friend->setUnsupportedFriend(true);
8325 CurContext->addDecl(Friend);
8326 return Friend;
8327}
8328
8329
John McCall11083da2009-09-16 22:47:08 +00008330/// Handle a friend type declaration. This works in tandem with
8331/// ActOnTag.
8332///
8333/// Notes on friend class templates:
8334///
8335/// We generally treat friend class declarations as if they were
8336/// declaring a class. So, for example, the elaborated type specifier
8337/// in a friend declaration is required to obey the restrictions of a
8338/// class-head (i.e. no typedefs in the scope chain), template
8339/// parameters are required to match up with simple template-ids, &c.
8340/// However, unlike when declaring a template specialization, it's
8341/// okay to refer to a template specialization without an empty
8342/// template parameter declaration, e.g.
8343/// friend class A<T>::B<unsigned>;
8344/// We permit this as a special case; if there are any template
8345/// parameters present at all, require proper matching, i.e.
8346/// template <> template <class T> friend class A<int>::B;
John McCall48871652010-08-21 09:40:31 +00008347Decl *Sema::ActOnFriendTypeDecl(Scope *S, const DeclSpec &DS,
John McCallc9739e32010-10-16 07:23:36 +00008348 MultiTemplateParamsArg TempParams) {
John McCallaa74a0c2009-08-28 07:59:38 +00008349 SourceLocation Loc = DS.getSourceRange().getBegin();
John McCall07e91c02009-08-06 02:15:43 +00008350
8351 assert(DS.isFriendSpecified());
8352 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
8353
John McCall11083da2009-09-16 22:47:08 +00008354 // Try to convert the decl specifier to a type. This works for
8355 // friend templates because ActOnTag never produces a ClassTemplateDecl
8356 // for a TUK_Friend.
Chris Lattner1fb66f42009-10-25 17:47:27 +00008357 Declarator TheDeclarator(DS, Declarator::MemberContext);
John McCall8cb7bdf2010-06-04 23:28:52 +00008358 TypeSourceInfo *TSI = GetTypeForDeclarator(TheDeclarator, S);
8359 QualType T = TSI->getType();
Chris Lattner1fb66f42009-10-25 17:47:27 +00008360 if (TheDeclarator.isInvalidType())
John McCall48871652010-08-21 09:40:31 +00008361 return 0;
John McCall07e91c02009-08-06 02:15:43 +00008362
Douglas Gregor6c110f32010-12-16 01:14:37 +00008363 if (DiagnoseUnexpandedParameterPack(Loc, TSI, UPPC_FriendDeclaration))
8364 return 0;
8365
John McCall11083da2009-09-16 22:47:08 +00008366 // This is definitely an error in C++98. It's probably meant to
8367 // be forbidden in C++0x, too, but the specification is just
8368 // poorly written.
8369 //
8370 // The problem is with declarations like the following:
8371 // template <T> friend A<T>::foo;
8372 // where deciding whether a class C is a friend or not now hinges
8373 // on whether there exists an instantiation of A that causes
8374 // 'foo' to equal C. There are restrictions on class-heads
8375 // (which we declare (by fiat) elaborated friend declarations to
8376 // be) that makes this tractable.
8377 //
8378 // FIXME: handle "template <> friend class A<T>;", which
8379 // is possibly well-formed? Who even knows?
Douglas Gregore677daf2010-03-31 22:19:08 +00008380 if (TempParams.size() && !T->isElaboratedTypeSpecifier()) {
John McCall11083da2009-09-16 22:47:08 +00008381 Diag(Loc, diag::err_tagless_friend_type_template)
8382 << DS.getSourceRange();
John McCall48871652010-08-21 09:40:31 +00008383 return 0;
John McCall11083da2009-09-16 22:47:08 +00008384 }
Douglas Gregorafb9bc12010-04-07 16:53:43 +00008385
John McCallaa74a0c2009-08-28 07:59:38 +00008386 // C++98 [class.friend]p1: A friend of a class is a function
8387 // or class that is not a member of the class . . .
John McCall463e10c2009-12-22 00:59:39 +00008388 // This is fixed in DR77, which just barely didn't make the C++03
8389 // deadline. It's also a very silly restriction that seriously
8390 // affects inner classes and which nobody else seems to implement;
8391 // thus we never diagnose it, not even in -pedantic.
John McCall15ad0962010-03-25 18:04:51 +00008392 //
8393 // But note that we could warn about it: it's always useless to
8394 // friend one of your own members (it's not, however, worthless to
8395 // friend a member of an arbitrary specialization of your template).
John McCallaa74a0c2009-08-28 07:59:38 +00008396
John McCall11083da2009-09-16 22:47:08 +00008397 Decl *D;
Douglas Gregorafb9bc12010-04-07 16:53:43 +00008398 if (unsigned NumTempParamLists = TempParams.size())
John McCall11083da2009-09-16 22:47:08 +00008399 D = FriendTemplateDecl::Create(Context, CurContext, Loc,
Douglas Gregorafb9bc12010-04-07 16:53:43 +00008400 NumTempParamLists,
John McCallc9739e32010-10-16 07:23:36 +00008401 TempParams.release(),
John McCall15ad0962010-03-25 18:04:51 +00008402 TSI,
John McCall11083da2009-09-16 22:47:08 +00008403 DS.getFriendSpecLoc());
8404 else
Douglas Gregorafb9bc12010-04-07 16:53:43 +00008405 D = CheckFriendTypeDecl(DS.getFriendSpecLoc(), TSI);
8406
8407 if (!D)
John McCall48871652010-08-21 09:40:31 +00008408 return 0;
Douglas Gregorafb9bc12010-04-07 16:53:43 +00008409
John McCall11083da2009-09-16 22:47:08 +00008410 D->setAccess(AS_public);
8411 CurContext->addDecl(D);
John McCallaa74a0c2009-08-28 07:59:38 +00008412
John McCall48871652010-08-21 09:40:31 +00008413 return D;
John McCallaa74a0c2009-08-28 07:59:38 +00008414}
8415
John McCallde3fd222010-10-12 23:13:28 +00008416Decl *Sema::ActOnFriendFunctionDecl(Scope *S, Declarator &D, bool IsDefinition,
8417 MultiTemplateParamsArg TemplateParams) {
John McCallaa74a0c2009-08-28 07:59:38 +00008418 const DeclSpec &DS = D.getDeclSpec();
8419
8420 assert(DS.isFriendSpecified());
8421 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
8422
8423 SourceLocation Loc = D.getIdentifierLoc();
John McCall8cb7bdf2010-06-04 23:28:52 +00008424 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
8425 QualType T = TInfo->getType();
John McCall07e91c02009-08-06 02:15:43 +00008426
8427 // C++ [class.friend]p1
8428 // A friend of a class is a function or class....
8429 // Note that this sees through typedefs, which is intended.
John McCallaa74a0c2009-08-28 07:59:38 +00008430 // It *doesn't* see through dependent types, which is correct
8431 // according to [temp.arg.type]p3:
8432 // If a declaration acquires a function type through a
8433 // type dependent on a template-parameter and this causes
8434 // a declaration that does not use the syntactic form of a
8435 // function declarator to have a function type, the program
8436 // is ill-formed.
John McCall07e91c02009-08-06 02:15:43 +00008437 if (!T->isFunctionType()) {
8438 Diag(Loc, diag::err_unexpected_friend);
8439
8440 // It might be worthwhile to try to recover by creating an
8441 // appropriate declaration.
John McCall48871652010-08-21 09:40:31 +00008442 return 0;
John McCall07e91c02009-08-06 02:15:43 +00008443 }
8444
8445 // C++ [namespace.memdef]p3
8446 // - If a friend declaration in a non-local class first declares a
8447 // class or function, the friend class or function is a member
8448 // of the innermost enclosing namespace.
8449 // - The name of the friend is not found by simple name lookup
8450 // until a matching declaration is provided in that namespace
8451 // scope (either before or after the class declaration granting
8452 // friendship).
8453 // - If a friend function is called, its name may be found by the
8454 // name lookup that considers functions from namespaces and
8455 // classes associated with the types of the function arguments.
8456 // - When looking for a prior declaration of a class or a function
8457 // declared as a friend, scopes outside the innermost enclosing
8458 // namespace scope are not considered.
8459
John McCallde3fd222010-10-12 23:13:28 +00008460 CXXScopeSpec &SS = D.getCXXScopeSpec();
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00008461 DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
8462 DeclarationName Name = NameInfo.getName();
John McCall07e91c02009-08-06 02:15:43 +00008463 assert(Name);
8464
Douglas Gregor6c110f32010-12-16 01:14:37 +00008465 // Check for unexpanded parameter packs.
8466 if (DiagnoseUnexpandedParameterPack(Loc, TInfo, UPPC_FriendDeclaration) ||
8467 DiagnoseUnexpandedParameterPack(NameInfo, UPPC_FriendDeclaration) ||
8468 DiagnoseUnexpandedParameterPack(SS, UPPC_FriendDeclaration))
8469 return 0;
8470
John McCall07e91c02009-08-06 02:15:43 +00008471 // The context we found the declaration in, or in which we should
8472 // create the declaration.
8473 DeclContext *DC;
John McCallccbc0322010-10-13 06:22:15 +00008474 Scope *DCScope = S;
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00008475 LookupResult Previous(*this, NameInfo, LookupOrdinaryName,
John McCall1f82f242009-11-18 22:49:29 +00008476 ForRedeclaration);
John McCall07e91c02009-08-06 02:15:43 +00008477
John McCallde3fd222010-10-12 23:13:28 +00008478 // FIXME: there are different rules in local classes
John McCall07e91c02009-08-06 02:15:43 +00008479
John McCallde3fd222010-10-12 23:13:28 +00008480 // There are four cases here.
8481 // - There's no scope specifier, in which case we just go to the
John McCallf7cfb222010-10-13 05:45:15 +00008482 // appropriate scope and look for a function or function template
John McCallde3fd222010-10-12 23:13:28 +00008483 // there as appropriate.
8484 // Recover from invalid scope qualifiers as if they just weren't there.
8485 if (SS.isInvalid() || !SS.isSet()) {
John McCallf7cfb222010-10-13 05:45:15 +00008486 // C++0x [namespace.memdef]p3:
8487 // If the name in a friend declaration is neither qualified nor
8488 // a template-id and the declaration is a function or an
8489 // elaborated-type-specifier, the lookup to determine whether
8490 // the entity has been previously declared shall not consider
8491 // any scopes outside the innermost enclosing namespace.
8492 // C++0x [class.friend]p11:
8493 // If a friend declaration appears in a local class and the name
8494 // specified is an unqualified name, a prior declaration is
8495 // looked up without considering scopes that are outside the
8496 // innermost enclosing non-class scope. For a friend function
8497 // declaration, if there is no prior declaration, the program is
8498 // ill-formed.
8499 bool isLocal = cast<CXXRecordDecl>(CurContext)->isLocalClass();
John McCallf4776592010-10-14 22:22:28 +00008500 bool isTemplateId = D.getName().getKind() == UnqualifiedId::IK_TemplateId;
John McCall07e91c02009-08-06 02:15:43 +00008501
John McCallf7cfb222010-10-13 05:45:15 +00008502 // Find the appropriate context according to the above.
John McCall07e91c02009-08-06 02:15:43 +00008503 DC = CurContext;
8504 while (true) {
8505 // Skip class contexts. If someone can cite chapter and verse
8506 // for this behavior, that would be nice --- it's what GCC and
8507 // EDG do, and it seems like a reasonable intent, but the spec
8508 // really only says that checks for unqualified existing
8509 // declarations should stop at the nearest enclosing namespace,
8510 // not that they should only consider the nearest enclosing
8511 // namespace.
Douglas Gregora29a3ff2009-09-28 00:08:27 +00008512 while (DC->isRecord())
8513 DC = DC->getParent();
John McCall07e91c02009-08-06 02:15:43 +00008514
John McCall1f82f242009-11-18 22:49:29 +00008515 LookupQualifiedName(Previous, DC);
John McCall07e91c02009-08-06 02:15:43 +00008516
8517 // TODO: decide what we think about using declarations.
John McCallf7cfb222010-10-13 05:45:15 +00008518 if (isLocal || !Previous.empty())
John McCall07e91c02009-08-06 02:15:43 +00008519 break;
John McCallf7cfb222010-10-13 05:45:15 +00008520
John McCallf4776592010-10-14 22:22:28 +00008521 if (isTemplateId) {
8522 if (isa<TranslationUnitDecl>(DC)) break;
8523 } else {
8524 if (DC->isFileContext()) break;
8525 }
John McCall07e91c02009-08-06 02:15:43 +00008526 DC = DC->getParent();
8527 }
8528
8529 // C++ [class.friend]p1: A friend of a class is a function or
8530 // class that is not a member of the class . . .
John McCall93343b92009-08-06 20:49:32 +00008531 // C++0x changes this for both friend types and functions.
8532 // Most C++ 98 compilers do seem to give an error here, so
8533 // we do, too.
John McCall1f82f242009-11-18 22:49:29 +00008534 if (!Previous.empty() && DC->Equals(CurContext)
8535 && !getLangOptions().CPlusPlus0x)
John McCall07e91c02009-08-06 02:15:43 +00008536 Diag(DS.getFriendSpecLoc(), diag::err_friend_is_member);
John McCallde3fd222010-10-12 23:13:28 +00008537
John McCallccbc0322010-10-13 06:22:15 +00008538 DCScope = getScopeForDeclContext(S, DC);
John McCallf7cfb222010-10-13 05:45:15 +00008539
John McCallde3fd222010-10-12 23:13:28 +00008540 // - There's a non-dependent scope specifier, in which case we
8541 // compute it and do a previous lookup there for a function
8542 // or function template.
8543 } else if (!SS.getScopeRep()->isDependent()) {
8544 DC = computeDeclContext(SS);
8545 if (!DC) return 0;
8546
8547 if (RequireCompleteDeclContext(SS, DC)) return 0;
8548
8549 LookupQualifiedName(Previous, DC);
8550
8551 // Ignore things found implicitly in the wrong scope.
8552 // TODO: better diagnostics for this case. Suggesting the right
8553 // qualified scope would be nice...
8554 LookupResult::Filter F = Previous.makeFilter();
8555 while (F.hasNext()) {
8556 NamedDecl *D = F.next();
8557 if (!DC->InEnclosingNamespaceSetOf(
8558 D->getDeclContext()->getRedeclContext()))
8559 F.erase();
8560 }
8561 F.done();
8562
8563 if (Previous.empty()) {
8564 D.setInvalidType();
8565 Diag(Loc, diag::err_qualified_friend_not_found) << Name << T;
8566 return 0;
8567 }
8568
8569 // C++ [class.friend]p1: A friend of a class is a function or
8570 // class that is not a member of the class . . .
8571 if (DC->Equals(CurContext))
8572 Diag(DS.getFriendSpecLoc(), diag::err_friend_is_member);
8573
8574 // - There's a scope specifier that does not match any template
8575 // parameter lists, in which case we use some arbitrary context,
8576 // create a method or method template, and wait for instantiation.
8577 // - There's a scope specifier that does match some template
8578 // parameter lists, which we don't handle right now.
8579 } else {
8580 DC = CurContext;
8581 assert(isa<CXXRecordDecl>(DC) && "friend declaration not in class?");
John McCall07e91c02009-08-06 02:15:43 +00008582 }
8583
John McCallf7cfb222010-10-13 05:45:15 +00008584 if (!DC->isRecord()) {
John McCall07e91c02009-08-06 02:15:43 +00008585 // This implies that it has to be an operator or function.
Douglas Gregor7861a802009-11-03 01:35:08 +00008586 if (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ||
8587 D.getName().getKind() == UnqualifiedId::IK_DestructorName ||
8588 D.getName().getKind() == UnqualifiedId::IK_ConversionFunctionId) {
John McCall07e91c02009-08-06 02:15:43 +00008589 Diag(Loc, diag::err_introducing_special_friend) <<
Douglas Gregor7861a802009-11-03 01:35:08 +00008590 (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ? 0 :
8591 D.getName().getKind() == UnqualifiedId::IK_DestructorName ? 1 : 2);
John McCall48871652010-08-21 09:40:31 +00008592 return 0;
John McCall07e91c02009-08-06 02:15:43 +00008593 }
John McCall07e91c02009-08-06 02:15:43 +00008594 }
8595
Douglas Gregora29a3ff2009-09-28 00:08:27 +00008596 bool Redeclaration = false;
John McCallccbc0322010-10-13 06:22:15 +00008597 NamedDecl *ND = ActOnFunctionDeclarator(DCScope, D, DC, T, TInfo, Previous,
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00008598 move(TemplateParams),
John McCalld1e9d832009-08-11 06:59:38 +00008599 IsDefinition,
8600 Redeclaration);
John McCall48871652010-08-21 09:40:31 +00008601 if (!ND) return 0;
John McCall759e32b2009-08-31 22:39:49 +00008602
Douglas Gregora29a3ff2009-09-28 00:08:27 +00008603 assert(ND->getDeclContext() == DC);
8604 assert(ND->getLexicalDeclContext() == CurContext);
John McCall5ed6e8f2009-08-18 00:00:49 +00008605
John McCall759e32b2009-08-31 22:39:49 +00008606 // Add the function declaration to the appropriate lookup tables,
8607 // adjusting the redeclarations list as necessary. We don't
8608 // want to do this yet if the friending class is dependent.
Mike Stump11289f42009-09-09 15:08:12 +00008609 //
John McCall759e32b2009-08-31 22:39:49 +00008610 // Also update the scope-based lookup if the target context's
8611 // lookup context is in lexical scope.
8612 if (!CurContext->isDependentContext()) {
Sebastian Redl50c68252010-08-31 00:36:30 +00008613 DC = DC->getRedeclContext();
Douglas Gregora29a3ff2009-09-28 00:08:27 +00008614 DC->makeDeclVisibleInContext(ND, /* Recoverable=*/ false);
John McCall759e32b2009-08-31 22:39:49 +00008615 if (Scope *EnclosingScope = getScopeForDeclContext(S, DC))
Douglas Gregora29a3ff2009-09-28 00:08:27 +00008616 PushOnScopeChains(ND, EnclosingScope, /*AddToContext=*/ false);
John McCall759e32b2009-08-31 22:39:49 +00008617 }
John McCallaa74a0c2009-08-28 07:59:38 +00008618
8619 FriendDecl *FrD = FriendDecl::Create(Context, CurContext,
Douglas Gregora29a3ff2009-09-28 00:08:27 +00008620 D.getIdentifierLoc(), ND,
John McCallaa74a0c2009-08-28 07:59:38 +00008621 DS.getFriendSpecLoc());
John McCall75c03bb2009-08-29 03:50:18 +00008622 FrD->setAccess(AS_public);
John McCallaa74a0c2009-08-28 07:59:38 +00008623 CurContext->addDecl(FrD);
John McCall07e91c02009-08-06 02:15:43 +00008624
John McCallde3fd222010-10-12 23:13:28 +00008625 if (ND->isInvalidDecl())
8626 FrD->setInvalidDecl();
John McCall2c2eb122010-10-16 06:59:13 +00008627 else {
8628 FunctionDecl *FD;
8629 if (FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(ND))
8630 FD = FTD->getTemplatedDecl();
8631 else
8632 FD = cast<FunctionDecl>(ND);
8633
8634 // Mark templated-scope function declarations as unsupported.
8635 if (FD->getNumTemplateParameterLists())
8636 FrD->setUnsupportedFriend(true);
8637 }
John McCallde3fd222010-10-12 23:13:28 +00008638
John McCall48871652010-08-21 09:40:31 +00008639 return ND;
Anders Carlsson38811702009-05-11 22:55:49 +00008640}
8641
John McCall48871652010-08-21 09:40:31 +00008642void Sema::SetDeclDeleted(Decl *Dcl, SourceLocation DelLoc) {
8643 AdjustDeclIfTemplate(Dcl);
Mike Stump11289f42009-09-09 15:08:12 +00008644
Sebastian Redlf769df52009-03-24 22:27:57 +00008645 FunctionDecl *Fn = dyn_cast<FunctionDecl>(Dcl);
8646 if (!Fn) {
8647 Diag(DelLoc, diag::err_deleted_non_function);
8648 return;
8649 }
8650 if (const FunctionDecl *Prev = Fn->getPreviousDeclaration()) {
8651 Diag(DelLoc, diag::err_deleted_decl_not_first);
8652 Diag(Prev->getLocation(), diag::note_previous_declaration);
8653 // If the declaration wasn't the first, we delete the function anyway for
8654 // recovery.
8655 }
Alexis Hunt4a8ea102011-05-06 20:44:56 +00008656 Fn->setDeletedAsWritten();
Sebastian Redlf769df52009-03-24 22:27:57 +00008657}
Sebastian Redl4c018662009-04-27 21:33:24 +00008658
Alexis Hunt5a7fa252011-05-12 06:15:49 +00008659void Sema::SetDeclDefaulted(Decl *Dcl, SourceLocation DefaultLoc) {
8660 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Dcl);
8661
8662 if (MD) {
Alexis Hunt1fb4e762011-05-23 21:07:59 +00008663 if (MD->getParent()->isDependentType()) {
8664 MD->setDefaulted();
8665 MD->setExplicitlyDefaulted();
8666 return;
8667 }
8668
Alexis Hunt5a7fa252011-05-12 06:15:49 +00008669 CXXSpecialMember Member = getSpecialMember(MD);
8670 if (Member == CXXInvalid) {
8671 Diag(DefaultLoc, diag::err_default_special_members);
8672 return;
8673 }
8674
8675 MD->setDefaulted();
8676 MD->setExplicitlyDefaulted();
8677
Alexis Hunt61ae8d32011-05-23 23:14:04 +00008678 // If this definition appears within the record, do the checking when
8679 // the record is complete.
8680 const FunctionDecl *Primary = MD;
8681 if (MD->getTemplatedKind() != FunctionDecl::TK_NonTemplate)
8682 // Find the uninstantiated declaration that actually had the '= default'
8683 // on it.
8684 MD->getTemplateInstantiationPattern()->isDefined(Primary);
8685
8686 if (Primary == Primary->getCanonicalDecl())
Alexis Hunt5a7fa252011-05-12 06:15:49 +00008687 return;
8688
8689 switch (Member) {
8690 case CXXDefaultConstructor: {
8691 CXXConstructorDecl *CD = cast<CXXConstructorDecl>(MD);
8692 CheckExplicitlyDefaultedDefaultConstructor(CD);
Alexis Hunt913820d2011-05-13 06:10:58 +00008693 if (!CD->isInvalidDecl())
8694 DefineImplicitDefaultConstructor(DefaultLoc, CD);
8695 break;
8696 }
8697
8698 case CXXCopyConstructor: {
8699 CXXConstructorDecl *CD = cast<CXXConstructorDecl>(MD);
8700 CheckExplicitlyDefaultedCopyConstructor(CD);
8701 if (!CD->isInvalidDecl())
8702 DefineImplicitCopyConstructor(DefaultLoc, CD);
Alexis Hunt5a7fa252011-05-12 06:15:49 +00008703 break;
8704 }
Alexis Huntf91729462011-05-12 22:46:25 +00008705
Alexis Huntc9a55732011-05-14 05:23:28 +00008706 case CXXCopyAssignment: {
8707 CheckExplicitlyDefaultedCopyAssignment(MD);
8708 if (!MD->isInvalidDecl())
8709 DefineImplicitCopyAssignment(DefaultLoc, MD);
8710 break;
8711 }
8712
Alexis Huntf91729462011-05-12 22:46:25 +00008713 case CXXDestructor: {
8714 CXXDestructorDecl *DD = cast<CXXDestructorDecl>(MD);
8715 CheckExplicitlyDefaultedDestructor(DD);
Alexis Hunt913820d2011-05-13 06:10:58 +00008716 if (!DD->isInvalidDecl())
8717 DefineImplicitDestructor(DefaultLoc, DD);
Alexis Huntf91729462011-05-12 22:46:25 +00008718 break;
8719 }
8720
Alexis Hunt5a7fa252011-05-12 06:15:49 +00008721 default:
Alexis Huntc9a55732011-05-14 05:23:28 +00008722 // FIXME: Do the rest once we have move functions
Alexis Hunt5a7fa252011-05-12 06:15:49 +00008723 break;
8724 }
8725 } else {
8726 Diag(DefaultLoc, diag::err_default_special_members);
8727 }
8728}
8729
Sebastian Redl4c018662009-04-27 21:33:24 +00008730static void SearchForReturnInStmt(Sema &Self, Stmt *S) {
John McCall8322c3a2011-02-13 04:07:26 +00008731 for (Stmt::child_range CI = S->children(); CI; ++CI) {
Sebastian Redl4c018662009-04-27 21:33:24 +00008732 Stmt *SubStmt = *CI;
8733 if (!SubStmt)
8734 continue;
8735 if (isa<ReturnStmt>(SubStmt))
8736 Self.Diag(SubStmt->getSourceRange().getBegin(),
8737 diag::err_return_in_constructor_handler);
8738 if (!isa<Expr>(SubStmt))
8739 SearchForReturnInStmt(Self, SubStmt);
8740 }
8741}
8742
8743void Sema::DiagnoseReturnInConstructorExceptionHandler(CXXTryStmt *TryBlock) {
8744 for (unsigned I = 0, E = TryBlock->getNumHandlers(); I != E; ++I) {
8745 CXXCatchStmt *Handler = TryBlock->getHandler(I);
8746 SearchForReturnInStmt(*this, Handler);
8747 }
8748}
Anders Carlssonf2a2e332009-05-14 01:09:04 +00008749
Mike Stump11289f42009-09-09 15:08:12 +00008750bool Sema::CheckOverridingFunctionReturnType(const CXXMethodDecl *New,
Anders Carlssonf2a2e332009-05-14 01:09:04 +00008751 const CXXMethodDecl *Old) {
John McCall9dd450b2009-09-21 23:43:11 +00008752 QualType NewTy = New->getType()->getAs<FunctionType>()->getResultType();
8753 QualType OldTy = Old->getType()->getAs<FunctionType>()->getResultType();
Anders Carlssonf2a2e332009-05-14 01:09:04 +00008754
Chandler Carruth284bb2e2010-02-15 11:53:20 +00008755 if (Context.hasSameType(NewTy, OldTy) ||
8756 NewTy->isDependentType() || OldTy->isDependentType())
Anders Carlssonf2a2e332009-05-14 01:09:04 +00008757 return false;
Mike Stump11289f42009-09-09 15:08:12 +00008758
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00008759 // Check if the return types are covariant
8760 QualType NewClassTy, OldClassTy;
Mike Stump11289f42009-09-09 15:08:12 +00008761
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00008762 /// Both types must be pointers or references to classes.
Anders Carlsson7caa4cb2010-01-22 17:37:20 +00008763 if (const PointerType *NewPT = NewTy->getAs<PointerType>()) {
8764 if (const PointerType *OldPT = OldTy->getAs<PointerType>()) {
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00008765 NewClassTy = NewPT->getPointeeType();
8766 OldClassTy = OldPT->getPointeeType();
8767 }
Anders Carlsson7caa4cb2010-01-22 17:37:20 +00008768 } else if (const ReferenceType *NewRT = NewTy->getAs<ReferenceType>()) {
8769 if (const ReferenceType *OldRT = OldTy->getAs<ReferenceType>()) {
8770 if (NewRT->getTypeClass() == OldRT->getTypeClass()) {
8771 NewClassTy = NewRT->getPointeeType();
8772 OldClassTy = OldRT->getPointeeType();
8773 }
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00008774 }
8775 }
Mike Stump11289f42009-09-09 15:08:12 +00008776
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00008777 // The return types aren't either both pointers or references to a class type.
8778 if (NewClassTy.isNull()) {
Mike Stump11289f42009-09-09 15:08:12 +00008779 Diag(New->getLocation(),
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00008780 diag::err_different_return_type_for_overriding_virtual_function)
8781 << New->getDeclName() << NewTy << OldTy;
8782 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
Mike Stump11289f42009-09-09 15:08:12 +00008783
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00008784 return true;
8785 }
Anders Carlssonf2a2e332009-05-14 01:09:04 +00008786
Anders Carlssone60365b2009-12-31 18:34:24 +00008787 // C++ [class.virtual]p6:
8788 // If the return type of D::f differs from the return type of B::f, the
8789 // class type in the return type of D::f shall be complete at the point of
8790 // declaration of D::f or shall be the class type D.
Anders Carlsson0c9dd842009-12-31 18:54:35 +00008791 if (const RecordType *RT = NewClassTy->getAs<RecordType>()) {
8792 if (!RT->isBeingDefined() &&
8793 RequireCompleteType(New->getLocation(), NewClassTy,
8794 PDiag(diag::err_covariant_return_incomplete)
8795 << New->getDeclName()))
Anders Carlssone60365b2009-12-31 18:34:24 +00008796 return true;
Anders Carlsson0c9dd842009-12-31 18:54:35 +00008797 }
Anders Carlssone60365b2009-12-31 18:34:24 +00008798
Douglas Gregor1b8fe5b72009-11-16 21:35:15 +00008799 if (!Context.hasSameUnqualifiedType(NewClassTy, OldClassTy)) {
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00008800 // Check if the new class derives from the old class.
8801 if (!IsDerivedFrom(NewClassTy, OldClassTy)) {
8802 Diag(New->getLocation(),
8803 diag::err_covariant_return_not_derived)
8804 << New->getDeclName() << NewTy << OldTy;
8805 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
8806 return true;
8807 }
Mike Stump11289f42009-09-09 15:08:12 +00008808
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00008809 // Check if we the conversion from derived to base is valid.
John McCall1064d7e2010-03-16 05:22:47 +00008810 if (CheckDerivedToBaseConversion(NewClassTy, OldClassTy,
Anders Carlsson7afe4242010-04-24 17:11:09 +00008811 diag::err_covariant_return_inaccessible_base,
8812 diag::err_covariant_return_ambiguous_derived_to_base_conv,
8813 // FIXME: Should this point to the return type?
8814 New->getLocation(), SourceRange(), New->getDeclName(), 0)) {
John McCallc1465822011-02-14 07:13:47 +00008815 // FIXME: this note won't trigger for delayed access control
8816 // diagnostics, and it's impossible to get an undelayed error
8817 // here from access control during the original parse because
8818 // the ParsingDeclSpec/ParsingDeclarator are still in scope.
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00008819 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
8820 return true;
8821 }
8822 }
Mike Stump11289f42009-09-09 15:08:12 +00008823
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00008824 // The qualifiers of the return types must be the same.
Anders Carlsson7caa4cb2010-01-22 17:37:20 +00008825 if (NewTy.getLocalCVRQualifiers() != OldTy.getLocalCVRQualifiers()) {
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00008826 Diag(New->getLocation(),
8827 diag::err_covariant_return_type_different_qualifications)
Anders Carlssonf2a2e332009-05-14 01:09:04 +00008828 << New->getDeclName() << NewTy << OldTy;
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00008829 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
8830 return true;
8831 };
Mike Stump11289f42009-09-09 15:08:12 +00008832
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00008833
8834 // The new class type must have the same or less qualifiers as the old type.
8835 if (NewClassTy.isMoreQualifiedThan(OldClassTy)) {
8836 Diag(New->getLocation(),
8837 diag::err_covariant_return_type_class_type_more_qualified)
8838 << New->getDeclName() << NewTy << OldTy;
8839 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
8840 return true;
8841 };
Mike Stump11289f42009-09-09 15:08:12 +00008842
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00008843 return false;
Anders Carlssonf2a2e332009-05-14 01:09:04 +00008844}
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00008845
Douglas Gregor21920e372009-12-01 17:24:26 +00008846/// \brief Mark the given method pure.
8847///
8848/// \param Method the method to be marked pure.
8849///
8850/// \param InitRange the source range that covers the "0" initializer.
8851bool Sema::CheckPureMethod(CXXMethodDecl *Method, SourceRange InitRange) {
Abramo Bagnaraf2a79d92011-03-12 11:17:06 +00008852 SourceLocation EndLoc = InitRange.getEnd();
8853 if (EndLoc.isValid())
8854 Method->setRangeEnd(EndLoc);
8855
Douglas Gregor21920e372009-12-01 17:24:26 +00008856 if (Method->isVirtual() || Method->getParent()->isDependentContext()) {
8857 Method->setPure();
Douglas Gregor21920e372009-12-01 17:24:26 +00008858 return false;
Abramo Bagnaraf2a79d92011-03-12 11:17:06 +00008859 }
Douglas Gregor21920e372009-12-01 17:24:26 +00008860
8861 if (!Method->isInvalidDecl())
8862 Diag(Method->getLocation(), diag::err_non_virtual_pure)
8863 << Method->getDeclName() << InitRange;
8864 return true;
8865}
8866
John McCall1f4ee7b2009-12-19 09:28:58 +00008867/// ActOnCXXEnterDeclInitializer - Invoked when we are about to parse
8868/// an initializer for the out-of-line declaration 'Dcl'. The scope
8869/// is a fresh scope pushed for just this purpose.
8870///
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00008871/// After this method is called, according to [C++ 3.4.1p13], if 'Dcl' is a
8872/// static data member of class X, names should be looked up in the scope of
8873/// class X.
John McCall48871652010-08-21 09:40:31 +00008874void Sema::ActOnCXXEnterDeclInitializer(Scope *S, Decl *D) {
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00008875 // If there is no declaration, there was an error parsing it.
Argyrios Kyrtzidis8e4be0b2011-04-22 18:52:25 +00008876 if (D == 0 || D->isInvalidDecl()) return;
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00008877
John McCall1f4ee7b2009-12-19 09:28:58 +00008878 // We should only get called for declarations with scope specifiers, like:
8879 // int foo::bar;
8880 assert(D->isOutOfLine());
John McCall6df5fef2009-12-19 10:49:29 +00008881 EnterDeclaratorContext(S, D->getDeclContext());
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00008882}
8883
8884/// ActOnCXXExitDeclInitializer - Invoked after we are finished parsing an
John McCall48871652010-08-21 09:40:31 +00008885/// initializer for the out-of-line declaration 'D'.
8886void Sema::ActOnCXXExitDeclInitializer(Scope *S, Decl *D) {
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00008887 // If there is no declaration, there was an error parsing it.
Argyrios Kyrtzidis8e4be0b2011-04-22 18:52:25 +00008888 if (D == 0 || D->isInvalidDecl()) return;
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00008889
John McCall1f4ee7b2009-12-19 09:28:58 +00008890 assert(D->isOutOfLine());
John McCall6df5fef2009-12-19 10:49:29 +00008891 ExitDeclaratorContext(S);
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00008892}
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00008893
8894/// ActOnCXXConditionDeclarationExpr - Parsed a condition declaration of a
8895/// C++ if/switch/while/for statement.
8896/// e.g: "if (int x = f()) {...}"
John McCall48871652010-08-21 09:40:31 +00008897DeclResult Sema::ActOnCXXConditionDeclaration(Scope *S, Declarator &D) {
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00008898 // C++ 6.4p2:
8899 // The declarator shall not specify a function or an array.
8900 // The type-specifier-seq shall not contain typedef and shall not declare a
8901 // new class or enumeration.
8902 assert(D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef &&
8903 "Parser allowed 'typedef' as storage class of condition decl.");
8904
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00008905 TagDecl *OwnedTag = 0;
John McCall8cb7bdf2010-06-04 23:28:52 +00008906 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S, &OwnedTag);
8907 QualType Ty = TInfo->getType();
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00008908
8909 if (Ty->isFunctionType()) { // The declarator shall not specify a function...
8910 // We exit without creating a CXXConditionDeclExpr because a FunctionDecl
8911 // would be created and CXXConditionDeclExpr wants a VarDecl.
8912 Diag(D.getIdentifierLoc(), diag::err_invalid_use_of_function_type)
8913 << D.getSourceRange();
8914 return DeclResult();
8915 } else if (OwnedTag && OwnedTag->isDefinition()) {
8916 // The type-specifier-seq shall not declare a new class or enumeration.
8917 Diag(OwnedTag->getLocation(), diag::err_type_defined_in_condition);
8918 }
8919
John McCall48871652010-08-21 09:40:31 +00008920 Decl *Dcl = ActOnDeclarator(S, D);
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00008921 if (!Dcl)
8922 return DeclResult();
8923
Douglas Gregor7bab5ff2009-11-25 00:27:52 +00008924 return Dcl;
8925}
Anders Carlssonf98849e2009-12-02 17:15:43 +00008926
Douglas Gregor88d292c2010-05-13 16:44:06 +00008927void Sema::MarkVTableUsed(SourceLocation Loc, CXXRecordDecl *Class,
8928 bool DefinitionRequired) {
8929 // Ignore any vtable uses in unevaluated operands or for classes that do
8930 // not have a vtable.
8931 if (!Class->isDynamicClass() || Class->isDependentContext() ||
8932 CurContext->isDependentContext() ||
8933 ExprEvalContexts.back().Context == Unevaluated)
Rafael Espindolae7113ca2010-03-10 02:19:29 +00008934 return;
8935
Douglas Gregor88d292c2010-05-13 16:44:06 +00008936 // Try to insert this class into the map.
8937 Class = cast<CXXRecordDecl>(Class->getCanonicalDecl());
8938 std::pair<llvm::DenseMap<CXXRecordDecl *, bool>::iterator, bool>
8939 Pos = VTablesUsed.insert(std::make_pair(Class, DefinitionRequired));
8940 if (!Pos.second) {
Daniel Dunbar53217762010-05-25 00:33:13 +00008941 // If we already had an entry, check to see if we are promoting this vtable
8942 // to required a definition. If so, we need to reappend to the VTableUses
8943 // list, since we may have already processed the first entry.
8944 if (DefinitionRequired && !Pos.first->second) {
8945 Pos.first->second = true;
8946 } else {
8947 // Otherwise, we can early exit.
8948 return;
8949 }
Douglas Gregor88d292c2010-05-13 16:44:06 +00008950 }
8951
8952 // Local classes need to have their virtual members marked
8953 // immediately. For all other classes, we mark their virtual members
8954 // at the end of the translation unit.
8955 if (Class->isLocalClass())
8956 MarkVirtualMembersReferenced(Loc, Class);
Daniel Dunbar0547ad32010-05-11 21:32:35 +00008957 else
Douglas Gregor88d292c2010-05-13 16:44:06 +00008958 VTableUses.push_back(std::make_pair(Class, Loc));
Douglas Gregor0c4aad12010-05-11 20:24:17 +00008959}
8960
Douglas Gregor88d292c2010-05-13 16:44:06 +00008961bool Sema::DefineUsedVTables() {
Douglas Gregor88d292c2010-05-13 16:44:06 +00008962 if (VTableUses.empty())
Anders Carlsson82fccd02009-12-07 08:24:59 +00008963 return false;
Chandler Carruth88bfa5e2010-12-12 21:36:11 +00008964
Douglas Gregor88d292c2010-05-13 16:44:06 +00008965 // Note: The VTableUses vector could grow as a result of marking
8966 // the members of a class as "used", so we check the size each
8967 // time through the loop and prefer indices (with are stable) to
8968 // iterators (which are not).
Douglas Gregor97509692011-04-22 22:25:37 +00008969 bool DefinedAnything = false;
Douglas Gregor88d292c2010-05-13 16:44:06 +00008970 for (unsigned I = 0; I != VTableUses.size(); ++I) {
Daniel Dunbar105ce6d2010-05-25 00:32:58 +00008971 CXXRecordDecl *Class = VTableUses[I].first->getDefinition();
Douglas Gregor88d292c2010-05-13 16:44:06 +00008972 if (!Class)
8973 continue;
8974
8975 SourceLocation Loc = VTableUses[I].second;
8976
8977 // If this class has a key function, but that key function is
8978 // defined in another translation unit, we don't need to emit the
8979 // vtable even though we're using it.
8980 const CXXMethodDecl *KeyFunction = Context.getKeyFunction(Class);
Argyrios Kyrtzidis36ea3222010-07-07 11:31:19 +00008981 if (KeyFunction && !KeyFunction->hasBody()) {
Douglas Gregor88d292c2010-05-13 16:44:06 +00008982 switch (KeyFunction->getTemplateSpecializationKind()) {
8983 case TSK_Undeclared:
8984 case TSK_ExplicitSpecialization:
8985 case TSK_ExplicitInstantiationDeclaration:
8986 // The key function is in another translation unit.
8987 continue;
8988
8989 case TSK_ExplicitInstantiationDefinition:
8990 case TSK_ImplicitInstantiation:
8991 // We will be instantiating the key function.
8992 break;
8993 }
8994 } else if (!KeyFunction) {
8995 // If we have a class with no key function that is the subject
8996 // of an explicit instantiation declaration, suppress the
8997 // vtable; it will live with the explicit instantiation
8998 // definition.
8999 bool IsExplicitInstantiationDeclaration
9000 = Class->getTemplateSpecializationKind()
9001 == TSK_ExplicitInstantiationDeclaration;
9002 for (TagDecl::redecl_iterator R = Class->redecls_begin(),
9003 REnd = Class->redecls_end();
9004 R != REnd; ++R) {
9005 TemplateSpecializationKind TSK
9006 = cast<CXXRecordDecl>(*R)->getTemplateSpecializationKind();
9007 if (TSK == TSK_ExplicitInstantiationDeclaration)
9008 IsExplicitInstantiationDeclaration = true;
9009 else if (TSK == TSK_ExplicitInstantiationDefinition) {
9010 IsExplicitInstantiationDeclaration = false;
9011 break;
9012 }
9013 }
9014
9015 if (IsExplicitInstantiationDeclaration)
9016 continue;
9017 }
9018
9019 // Mark all of the virtual members of this class as referenced, so
9020 // that we can build a vtable. Then, tell the AST consumer that a
9021 // vtable for this class is required.
Douglas Gregor97509692011-04-22 22:25:37 +00009022 DefinedAnything = true;
Douglas Gregor88d292c2010-05-13 16:44:06 +00009023 MarkVirtualMembersReferenced(Loc, Class);
9024 CXXRecordDecl *Canonical = cast<CXXRecordDecl>(Class->getCanonicalDecl());
9025 Consumer.HandleVTable(Class, VTablesUsed[Canonical]);
9026
9027 // Optionally warn if we're emitting a weak vtable.
9028 if (Class->getLinkage() == ExternalLinkage &&
9029 Class->getTemplateSpecializationKind() != TSK_ImplicitInstantiation) {
Argyrios Kyrtzidis36ea3222010-07-07 11:31:19 +00009030 if (!KeyFunction || (KeyFunction->hasBody() && KeyFunction->isInlined()))
Douglas Gregor88d292c2010-05-13 16:44:06 +00009031 Diag(Class->getLocation(), diag::warn_weak_vtable) << Class;
9032 }
Anders Carlssonf98849e2009-12-02 17:15:43 +00009033 }
Douglas Gregor88d292c2010-05-13 16:44:06 +00009034 VTableUses.clear();
9035
Douglas Gregor97509692011-04-22 22:25:37 +00009036 return DefinedAnything;
Anders Carlssonf98849e2009-12-02 17:15:43 +00009037}
Anders Carlsson82fccd02009-12-07 08:24:59 +00009038
Rafael Espindola5b334082010-03-26 00:36:59 +00009039void Sema::MarkVirtualMembersReferenced(SourceLocation Loc,
9040 const CXXRecordDecl *RD) {
Anders Carlsson82fccd02009-12-07 08:24:59 +00009041 for (CXXRecordDecl::method_iterator i = RD->method_begin(),
9042 e = RD->method_end(); i != e; ++i) {
9043 CXXMethodDecl *MD = *i;
9044
9045 // C++ [basic.def.odr]p2:
9046 // [...] A virtual member function is used if it is not pure. [...]
9047 if (MD->isVirtual() && !MD->isPure())
9048 MarkDeclarationReferenced(Loc, MD);
9049 }
Rafael Espindola5b334082010-03-26 00:36:59 +00009050
9051 // Only classes that have virtual bases need a VTT.
9052 if (RD->getNumVBases() == 0)
9053 return;
9054
9055 for (CXXRecordDecl::base_class_const_iterator i = RD->bases_begin(),
9056 e = RD->bases_end(); i != e; ++i) {
9057 const CXXRecordDecl *Base =
9058 cast<CXXRecordDecl>(i->getType()->getAs<RecordType>()->getDecl());
Rafael Espindola5b334082010-03-26 00:36:59 +00009059 if (Base->getNumVBases() == 0)
9060 continue;
9061 MarkVirtualMembersReferenced(Loc, Base);
9062 }
Anders Carlsson82fccd02009-12-07 08:24:59 +00009063}
Fariborz Jahanianc83726e2010-04-28 16:11:27 +00009064
9065/// SetIvarInitializers - This routine builds initialization ASTs for the
9066/// Objective-C implementation whose ivars need be initialized.
9067void Sema::SetIvarInitializers(ObjCImplementationDecl *ObjCImplementation) {
9068 if (!getLangOptions().CPlusPlus)
9069 return;
Fariborz Jahaniana50b3a22010-08-20 21:21:08 +00009070 if (ObjCInterfaceDecl *OID = ObjCImplementation->getClassInterface()) {
Fariborz Jahanianc83726e2010-04-28 16:11:27 +00009071 llvm::SmallVector<ObjCIvarDecl*, 8> ivars;
9072 CollectIvarsToConstructOrDestruct(OID, ivars);
9073 if (ivars.empty())
9074 return;
Alexis Hunt1d792652011-01-08 20:30:50 +00009075 llvm::SmallVector<CXXCtorInitializer*, 32> AllToInit;
Fariborz Jahanianc83726e2010-04-28 16:11:27 +00009076 for (unsigned i = 0; i < ivars.size(); i++) {
9077 FieldDecl *Field = ivars[i];
Douglas Gregor527786e2010-05-20 02:24:22 +00009078 if (Field->isInvalidDecl())
9079 continue;
9080
Alexis Hunt1d792652011-01-08 20:30:50 +00009081 CXXCtorInitializer *Member;
Fariborz Jahanianc83726e2010-04-28 16:11:27 +00009082 InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field);
9083 InitializationKind InitKind =
9084 InitializationKind::CreateDefault(ObjCImplementation->getLocation());
9085
9086 InitializationSequence InitSeq(*this, InitEntity, InitKind, 0, 0);
John McCalldadc5752010-08-24 06:29:42 +00009087 ExprResult MemberInit =
John McCallfaf5fb42010-08-26 23:41:50 +00009088 InitSeq.Perform(*this, InitEntity, InitKind, MultiExprArg());
Douglas Gregora40433a2010-12-07 00:41:46 +00009089 MemberInit = MaybeCreateExprWithCleanups(MemberInit);
Fariborz Jahanianc83726e2010-04-28 16:11:27 +00009090 // Note, MemberInit could actually come back empty if no initialization
9091 // is required (e.g., because it would call a trivial default constructor)
9092 if (!MemberInit.get() || MemberInit.isInvalid())
9093 continue;
John McCallacf0ee52010-10-08 02:01:28 +00009094
Fariborz Jahanianc83726e2010-04-28 16:11:27 +00009095 Member =
Alexis Hunt1d792652011-01-08 20:30:50 +00009096 new (Context) CXXCtorInitializer(Context, Field, SourceLocation(),
9097 SourceLocation(),
9098 MemberInit.takeAs<Expr>(),
9099 SourceLocation());
Fariborz Jahanianc83726e2010-04-28 16:11:27 +00009100 AllToInit.push_back(Member);
Douglas Gregor527786e2010-05-20 02:24:22 +00009101
9102 // Be sure that the destructor is accessible and is marked as referenced.
9103 if (const RecordType *RecordTy
9104 = Context.getBaseElementType(Field->getType())
9105 ->getAs<RecordType>()) {
9106 CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl());
Douglas Gregore71edda2010-07-01 22:47:18 +00009107 if (CXXDestructorDecl *Destructor = LookupDestructor(RD)) {
Douglas Gregor527786e2010-05-20 02:24:22 +00009108 MarkDeclarationReferenced(Field->getLocation(), Destructor);
9109 CheckDestructorAccess(Field->getLocation(), Destructor,
9110 PDiag(diag::err_access_dtor_ivar)
9111 << Context.getBaseElementType(Field->getType()));
9112 }
9113 }
Fariborz Jahanianc83726e2010-04-28 16:11:27 +00009114 }
9115 ObjCImplementation->setIvarInitializers(Context,
9116 AllToInit.data(), AllToInit.size());
9117 }
9118}
Alexis Hunt6118d662011-05-04 05:57:24 +00009119
Alexis Hunt27a761d2011-05-04 23:29:54 +00009120static
9121void DelegatingCycleHelper(CXXConstructorDecl* Ctor,
9122 llvm::SmallSet<CXXConstructorDecl*, 4> &Valid,
9123 llvm::SmallSet<CXXConstructorDecl*, 4> &Invalid,
9124 llvm::SmallSet<CXXConstructorDecl*, 4> &Current,
9125 Sema &S) {
9126 llvm::SmallSet<CXXConstructorDecl*, 4>::iterator CI = Current.begin(),
9127 CE = Current.end();
9128 if (Ctor->isInvalidDecl())
9129 return;
9130
9131 const FunctionDecl *FNTarget = 0;
9132 CXXConstructorDecl *Target;
9133
9134 // We ignore the result here since if we don't have a body, Target will be
9135 // null below.
9136 (void)Ctor->getTargetConstructor()->hasBody(FNTarget);
9137 Target
9138= const_cast<CXXConstructorDecl*>(cast_or_null<CXXConstructorDecl>(FNTarget));
9139
9140 CXXConstructorDecl *Canonical = Ctor->getCanonicalDecl(),
9141 // Avoid dereferencing a null pointer here.
9142 *TCanonical = Target ? Target->getCanonicalDecl() : 0;
9143
9144 if (!Current.insert(Canonical))
9145 return;
9146
9147 // We know that beyond here, we aren't chaining into a cycle.
9148 if (!Target || !Target->isDelegatingConstructor() ||
9149 Target->isInvalidDecl() || Valid.count(TCanonical)) {
9150 for (CI = Current.begin(), CE = Current.end(); CI != CE; ++CI)
9151 Valid.insert(*CI);
9152 Current.clear();
9153 // We've hit a cycle.
9154 } else if (TCanonical == Canonical || Invalid.count(TCanonical) ||
9155 Current.count(TCanonical)) {
9156 // If we haven't diagnosed this cycle yet, do so now.
9157 if (!Invalid.count(TCanonical)) {
9158 S.Diag((*Ctor->init_begin())->getSourceLocation(),
Alexis Hunte2622992011-05-05 00:05:47 +00009159 diag::warn_delegating_ctor_cycle)
Alexis Hunt27a761d2011-05-04 23:29:54 +00009160 << Ctor;
9161
9162 // Don't add a note for a function delegating directo to itself.
9163 if (TCanonical != Canonical)
9164 S.Diag(Target->getLocation(), diag::note_it_delegates_to);
9165
9166 CXXConstructorDecl *C = Target;
9167 while (C->getCanonicalDecl() != Canonical) {
9168 (void)C->getTargetConstructor()->hasBody(FNTarget);
9169 assert(FNTarget && "Ctor cycle through bodiless function");
9170
9171 C
9172 = const_cast<CXXConstructorDecl*>(cast<CXXConstructorDecl>(FNTarget));
9173 S.Diag(C->getLocation(), diag::note_which_delegates_to);
9174 }
9175 }
9176
9177 for (CI = Current.begin(), CE = Current.end(); CI != CE; ++CI)
9178 Invalid.insert(*CI);
9179 Current.clear();
9180 } else {
9181 DelegatingCycleHelper(Target, Valid, Invalid, Current, S);
9182 }
9183}
9184
9185
Alexis Hunt6118d662011-05-04 05:57:24 +00009186void Sema::CheckDelegatingCtorCycles() {
9187 llvm::SmallSet<CXXConstructorDecl*, 4> Valid, Invalid, Current;
9188
Alexis Hunt27a761d2011-05-04 23:29:54 +00009189 llvm::SmallSet<CXXConstructorDecl*, 4>::iterator CI = Current.begin(),
9190 CE = Current.end();
Alexis Hunt6118d662011-05-04 05:57:24 +00009191
9192 for (llvm::SmallVector<CXXConstructorDecl*, 4>::iterator
Alexis Hunt27a761d2011-05-04 23:29:54 +00009193 I = DelegatingCtorDecls.begin(),
9194 E = DelegatingCtorDecls.end();
9195 I != E; ++I) {
9196 DelegatingCycleHelper(*I, Valid, Invalid, Current, *this);
Alexis Hunt6118d662011-05-04 05:57:24 +00009197 }
Alexis Hunt27a761d2011-05-04 23:29:54 +00009198
9199 for (CI = Invalid.begin(), CE = Invalid.end(); CI != CE; ++CI)
9200 (*CI)->setInvalidDecl();
Alexis Hunt6118d662011-05-04 05:57:24 +00009201}