blob: 8e009e91565ad6e1d3bf1c948dde6e391c5c4c4e [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"
Argyrios Kyrtzidis2f67f372008-08-09 00:58:37 +000015#include "clang/AST/ASTConsumer.h"
Douglas Gregor556877c2008-04-13 21:30:24 +000016#include "clang/AST/ASTContext.h"
Faisal Vali2b391ab2013-09-26 19:54:12 +000017#include "clang/AST/ASTLambda.h"
Sebastian Redlab238a72011-04-24 16:28:06 +000018#include "clang/AST/ASTMutationListener.h"
Douglas Gregor36d1b142009-10-06 17:59:45 +000019#include "clang/AST/CXXInheritance.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000020#include "clang/AST/CharUnits.h"
Richard Trieu4fc85362012-06-14 23:11:34 +000021#include "clang/AST/EvaluatedExprVisitor.h"
Alexis Huntc5575cc2011-02-26 19:13:13 +000022#include "clang/AST/ExprCXX.h"
Douglas Gregorb139cd52010-05-01 20:49:11 +000023#include "clang/AST/RecordLayout.h"
Douglas Gregor3024f072012-04-16 07:05:22 +000024#include "clang/AST/RecursiveASTVisitor.h"
Douglas Gregorb139cd52010-05-01 20:49:11 +000025#include "clang/AST/StmtVisitor.h"
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +000026#include "clang/AST/TypeLoc.h"
Douglas Gregordff6a8e2008-10-22 21:13:31 +000027#include "clang/AST/TypeOrdering.h"
Anders Carlssond624e162009-08-26 23:45:07 +000028#include "clang/Basic/PartialDiagnostic.h"
Aaron Ballman02df2e02012-12-09 17:45:41 +000029#include "clang/Basic/TargetInfo.h"
Richard Smithf4198b72013-07-23 08:14:48 +000030#include "clang/Lex/LiteralSupport.h"
Argyrios Kyrtzidis153d9672008-10-06 18:37:09 +000031#include "clang/Lex/Preprocessor.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000032#include "clang/Sema/CXXFieldCollector.h"
33#include "clang/Sema/DeclSpec.h"
34#include "clang/Sema/Initialization.h"
35#include "clang/Sema/Lookup.h"
36#include "clang/Sema/ParsedTemplate.h"
37#include "clang/Sema/Scope.h"
38#include "clang/Sema/ScopeInfo.h"
Douglas Gregor55297ac2008-12-23 00:26:44 +000039#include "llvm/ADT/STLExtras.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000040#include "llvm/ADT/SmallString.h"
Douglas Gregor29a92472008-10-22 17:49:05 +000041#include <map>
Douglas Gregor36d1b142009-10-06 17:59:45 +000042#include <set>
Chris Lattner199abbc2008-04-08 05:04:30 +000043
44using namespace clang;
45
Chris Lattner58258242008-04-10 02:22:51 +000046//===----------------------------------------------------------------------===//
47// CheckDefaultArgumentVisitor
48//===----------------------------------------------------------------------===//
49
Chris Lattnerb0d38442008-04-12 23:52:44 +000050namespace {
51 /// CheckDefaultArgumentVisitor - C++ [dcl.fct.default] Traverses
52 /// the default argument of a parameter to determine whether it
53 /// contains any ill-formed subexpressions. For example, this will
54 /// diagnose the use of local variables or parameters within the
55 /// default argument expression.
Benjamin Kramer337e3a52009-11-28 19:45:26 +000056 class CheckDefaultArgumentVisitor
Chris Lattner574dee62008-07-26 22:17:49 +000057 : public StmtVisitor<CheckDefaultArgumentVisitor, bool> {
Chris Lattnerb0d38442008-04-12 23:52:44 +000058 Expr *DefaultArg;
59 Sema *S;
Chris Lattner58258242008-04-10 02:22:51 +000060
Chris Lattnerb0d38442008-04-12 23:52:44 +000061 public:
Mike Stump11289f42009-09-09 15:08:12 +000062 CheckDefaultArgumentVisitor(Expr *defarg, Sema *s)
Chris Lattnerb0d38442008-04-12 23:52:44 +000063 : DefaultArg(defarg), S(s) {}
Chris Lattner58258242008-04-10 02:22:51 +000064
Chris Lattnerb0d38442008-04-12 23:52:44 +000065 bool VisitExpr(Expr *Node);
66 bool VisitDeclRefExpr(DeclRefExpr *DRE);
Douglas Gregor97a9c812008-11-04 14:32:21 +000067 bool VisitCXXThisExpr(CXXThisExpr *ThisE);
Douglas Gregorf0d49512012-02-10 23:30:22 +000068 bool VisitLambdaExpr(LambdaExpr *Lambda);
John McCall7353c862013-04-09 01:56:28 +000069 bool VisitPseudoObjectExpr(PseudoObjectExpr *POE);
Chris Lattnerb0d38442008-04-12 23:52:44 +000070 };
Chris Lattner58258242008-04-10 02:22:51 +000071
Chris Lattnerb0d38442008-04-12 23:52:44 +000072 /// VisitExpr - Visit all of the children of this expression.
73 bool CheckDefaultArgumentVisitor::VisitExpr(Expr *Node) {
74 bool IsInvalid = false;
John McCall8322c3a2011-02-13 04:07:26 +000075 for (Stmt::child_range I = Node->children(); I; ++I)
Chris Lattner574dee62008-07-26 22:17:49 +000076 IsInvalid |= Visit(*I);
Chris Lattnerb0d38442008-04-12 23:52:44 +000077 return IsInvalid;
Chris Lattner58258242008-04-10 02:22:51 +000078 }
79
Chris Lattnerb0d38442008-04-12 23:52:44 +000080 /// VisitDeclRefExpr - Visit a reference to a declaration, to
81 /// determine whether this declaration can be used in the default
82 /// argument expression.
83 bool CheckDefaultArgumentVisitor::VisitDeclRefExpr(DeclRefExpr *DRE) {
Douglas Gregor5251f1b2008-10-21 16:13:35 +000084 NamedDecl *Decl = DRE->getDecl();
Chris Lattnerb0d38442008-04-12 23:52:44 +000085 if (ParmVarDecl *Param = dyn_cast<ParmVarDecl>(Decl)) {
86 // C++ [dcl.fct.default]p9
87 // Default arguments are evaluated each time the function is
88 // called. The order of evaluation of function arguments is
89 // unspecified. Consequently, parameters of a function shall not
90 // be used in default argument expressions, even if they are not
91 // evaluated. Parameters of a function declared before a default
92 // argument expression are in scope and can hide namespace and
93 // class member names.
Daniel Dunbar62ee6412012-03-09 18:35:03 +000094 return S->Diag(DRE->getLocStart(),
Chris Lattner3b054132008-11-19 05:08:23 +000095 diag::err_param_default_argument_references_param)
Chris Lattnere3d20d92008-11-23 21:45:46 +000096 << Param->getDeclName() << DefaultArg->getSourceRange();
Steve Naroff08899ff2008-04-15 22:42:06 +000097 } else if (VarDecl *VDecl = dyn_cast<VarDecl>(Decl)) {
Chris Lattnerb0d38442008-04-12 23:52:44 +000098 // C++ [dcl.fct.default]p7
99 // Local variables shall not be used in default argument
100 // expressions.
John McCall1c9c3fd2010-10-15 04:57:14 +0000101 if (VDecl->isLocalVarDecl())
Daniel Dunbar62ee6412012-03-09 18:35:03 +0000102 return S->Diag(DRE->getLocStart(),
Chris Lattner3b054132008-11-19 05:08:23 +0000103 diag::err_param_default_argument_references_local)
Chris Lattnere3d20d92008-11-23 21:45:46 +0000104 << VDecl->getDeclName() << DefaultArg->getSourceRange();
Chris Lattnerb0d38442008-04-12 23:52:44 +0000105 }
Chris Lattner58258242008-04-10 02:22:51 +0000106
Douglas Gregor8e12c382008-11-04 13:41:56 +0000107 return false;
108 }
Chris Lattnerb0d38442008-04-12 23:52:44 +0000109
Douglas Gregor97a9c812008-11-04 14:32:21 +0000110 /// VisitCXXThisExpr - Visit a C++ "this" expression.
111 bool CheckDefaultArgumentVisitor::VisitCXXThisExpr(CXXThisExpr *ThisE) {
112 // C++ [dcl.fct.default]p8:
113 // The keyword this shall not be used in a default argument of a
114 // member function.
Daniel Dunbar62ee6412012-03-09 18:35:03 +0000115 return S->Diag(ThisE->getLocStart(),
Chris Lattner3b054132008-11-19 05:08:23 +0000116 diag::err_param_default_argument_references_this)
117 << ThisE->getSourceRange();
Chris Lattnerb0d38442008-04-12 23:52:44 +0000118 }
Douglas Gregorf0d49512012-02-10 23:30:22 +0000119
John McCall7353c862013-04-09 01:56:28 +0000120 bool CheckDefaultArgumentVisitor::VisitPseudoObjectExpr(PseudoObjectExpr *POE) {
121 bool Invalid = false;
122 for (PseudoObjectExpr::semantics_iterator
123 i = POE->semantics_begin(), e = POE->semantics_end(); i != e; ++i) {
124 Expr *E = *i;
125
126 // Look through bindings.
127 if (OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(E)) {
128 E = OVE->getSourceExpr();
129 assert(E && "pseudo-object binding without source expression?");
130 }
131
132 Invalid |= Visit(E);
133 }
134 return Invalid;
135 }
136
Douglas Gregorf0d49512012-02-10 23:30:22 +0000137 bool CheckDefaultArgumentVisitor::VisitLambdaExpr(LambdaExpr *Lambda) {
138 // C++11 [expr.lambda.prim]p13:
139 // A lambda-expression appearing in a default argument shall not
140 // implicitly or explicitly capture any entity.
141 if (Lambda->capture_begin() == Lambda->capture_end())
142 return false;
143
144 return S->Diag(Lambda->getLocStart(),
145 diag::err_lambda_capture_default_arg);
146 }
Chris Lattner58258242008-04-10 02:22:51 +0000147}
148
Richard Smithb7151b92013-04-10 06:11:48 +0000149void
150Sema::ImplicitExceptionSpecification::CalledDecl(SourceLocation CallLoc,
151 const CXXMethodDecl *Method) {
Richard Smithd3b5c9082012-07-27 04:22:15 +0000152 // If we have an MSAny spec already, don't bother.
153 if (!Method || ComputedEST == EST_MSAny)
Alexis Hunt6d5b96c2011-05-10 00:49:42 +0000154 return;
155
156 const FunctionProtoType *Proto
157 = Method->getType()->getAs<FunctionProtoType>();
Richard Smithf623c962012-04-17 00:58:00 +0000158 Proto = Self->ResolveExceptionSpec(CallLoc, Proto);
159 if (!Proto)
160 return;
Alexis Hunt6d5b96c2011-05-10 00:49:42 +0000161
162 ExceptionSpecificationType EST = Proto->getExceptionSpecType();
163
164 // If this function can throw any exceptions, make a note of that.
Richard Smithd3b5c9082012-07-27 04:22:15 +0000165 if (EST == EST_MSAny || EST == EST_None) {
Alexis Hunt6d5b96c2011-05-10 00:49:42 +0000166 ClearExceptions();
167 ComputedEST = EST;
168 return;
169 }
170
Richard Smith938f40b2011-06-11 17:19:42 +0000171 // FIXME: If the call to this decl is using any of its default arguments, we
172 // need to search them for potentially-throwing calls.
173
Alexis Hunt6d5b96c2011-05-10 00:49:42 +0000174 // If this function has a basic noexcept, it doesn't affect the outcome.
175 if (EST == EST_BasicNoexcept)
176 return;
177
178 // If we have a throw-all spec at this point, ignore the function.
179 if (ComputedEST == EST_None)
180 return;
181
182 // If we're still at noexcept(true) and there's a nothrow() callee,
183 // change to that specification.
184 if (EST == EST_DynamicNone) {
185 if (ComputedEST == EST_BasicNoexcept)
186 ComputedEST = EST_DynamicNone;
187 return;
188 }
189
190 // Check out noexcept specs.
191 if (EST == EST_ComputedNoexcept) {
Richard Smithf623c962012-04-17 00:58:00 +0000192 FunctionProtoType::NoexceptResult NR =
193 Proto->getNoexceptSpec(Self->Context);
Alexis Hunt6d5b96c2011-05-10 00:49:42 +0000194 assert(NR != FunctionProtoType::NR_NoNoexcept &&
195 "Must have noexcept result for EST_ComputedNoexcept.");
196 assert(NR != FunctionProtoType::NR_Dependent &&
197 "Should not generate implicit declarations for dependent cases, "
198 "and don't know how to handle them anyway.");
199
200 // noexcept(false) -> no spec on the new function
201 if (NR == FunctionProtoType::NR_Throw) {
202 ClearExceptions();
203 ComputedEST = EST_None;
204 }
205 // noexcept(true) won't change anything either.
206 return;
207 }
208
209 assert(EST == EST_Dynamic && "EST case not considered earlier.");
210 assert(ComputedEST != EST_None &&
211 "Shouldn't collect exceptions when throw-all is guaranteed.");
212 ComputedEST = EST_Dynamic;
213 // Record the exceptions in this function's exception specification.
Aaron Ballmanb088fbe2014-03-17 15:38:09 +0000214 for (const auto &E : Proto->exceptions())
215 if (ExceptionsSeen.insert(Self->Context.getCanonicalType(E)))
216 Exceptions.push_back(E);
Alexis Hunt6d5b96c2011-05-10 00:49:42 +0000217}
218
Richard Smith938f40b2011-06-11 17:19:42 +0000219void Sema::ImplicitExceptionSpecification::CalledExpr(Expr *E) {
Richard Smithd3b5c9082012-07-27 04:22:15 +0000220 if (!E || ComputedEST == EST_MSAny)
Richard Smith938f40b2011-06-11 17:19:42 +0000221 return;
222
223 // FIXME:
224 //
225 // C++0x [except.spec]p14:
NAKAMURA Takumi53648472011-06-21 03:19:28 +0000226 // [An] implicit exception-specification specifies the type-id T if and
227 // only if T is allowed by the exception-specification of a function directly
228 // invoked by f's implicit definition; f shall allow all exceptions if any
Richard Smith938f40b2011-06-11 17:19:42 +0000229 // function it directly invokes allows all exceptions, and f shall allow no
230 // exceptions if every function it directly invokes allows no exceptions.
231 //
232 // Note in particular that if an implicit exception-specification is generated
233 // for a function containing a throw-expression, that specification can still
234 // be noexcept(true).
235 //
236 // Note also that 'directly invoked' is not defined in the standard, and there
237 // is no indication that we should only consider potentially-evaluated calls.
238 //
239 // Ultimately we should implement the intent of the standard: the exception
240 // specification should be the set of exceptions which can be thrown by the
241 // implicit definition. For now, we assume that any non-nothrow expression can
242 // throw any exception.
243
Richard Smithf623c962012-04-17 00:58:00 +0000244 if (Self->canThrow(E))
Richard Smith938f40b2011-06-11 17:19:42 +0000245 ComputedEST = EST_None;
246}
247
Anders Carlssonc80a1272009-08-25 02:29:20 +0000248bool
John McCallb268a282010-08-23 23:25:46 +0000249Sema::SetParamDefaultArgument(ParmVarDecl *Param, Expr *Arg,
Mike Stump11289f42009-09-09 15:08:12 +0000250 SourceLocation EqualLoc) {
Anders Carlsson114056f2009-08-25 13:46:13 +0000251 if (RequireCompleteType(Param->getLocation(), Param->getType(),
252 diag::err_typecheck_decl_incomplete_type)) {
253 Param->setInvalidDecl();
254 return true;
255 }
256
Anders Carlssonc80a1272009-08-25 02:29:20 +0000257 // C++ [dcl.fct.default]p5
258 // A default argument expression is implicitly converted (clause
259 // 4) to the parameter type. The default argument expression has
260 // the same semantic constraints as the initializer expression in
261 // a declaration of a variable of the parameter type, using the
262 // copy-initialization semantics (8.5).
Fariborz Jahanian8fb87ae2010-09-24 17:30:16 +0000263 InitializedEntity Entity = InitializedEntity::InitializeParameter(Context,
264 Param);
Douglas Gregor85dabae2009-12-16 01:38:02 +0000265 InitializationKind Kind = InitializationKind::CreateCopy(Param->getLocation(),
266 EqualLoc);
Dmitri Gribenko8f8930f2013-05-03 15:05:50 +0000267 InitializationSequence InitSeq(*this, Entity, Kind, Arg);
Benjamin Kramercc4c49d2012-08-23 23:38:35 +0000268 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, Arg);
Eli Friedman5f101b92009-12-22 02:46:13 +0000269 if (Result.isInvalid())
Anders Carlsson4562f1f2009-08-25 03:18:48 +0000270 return true;
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000271 Arg = Result.getAs<Expr>();
Anders Carlssonc80a1272009-08-25 02:29:20 +0000272
Richard Smithc406cb72013-01-17 01:17:56 +0000273 CheckCompletedExpr(Arg, EqualLoc);
John McCall5d413782010-12-06 08:20:24 +0000274 Arg = MaybeCreateExprWithCleanups(Arg);
Mike Stump11289f42009-09-09 15:08:12 +0000275
Anders Carlssonc80a1272009-08-25 02:29:20 +0000276 // Okay: add the default argument to the parameter
277 Param->setDefaultArg(Arg);
Mike Stump11289f42009-09-09 15:08:12 +0000278
Douglas Gregor758cb672010-10-12 18:23:32 +0000279 // We have already instantiated this parameter; provide each of the
280 // instantiations with the uninstantiated default argument.
281 UnparsedDefaultArgInstantiationsMap::iterator InstPos
282 = UnparsedDefaultArgInstantiations.find(Param);
283 if (InstPos != UnparsedDefaultArgInstantiations.end()) {
284 for (unsigned I = 0, N = InstPos->second.size(); I != N; ++I)
285 InstPos->second[I]->setUninstantiatedDefaultArg(Arg);
286
287 // We're done tracking this parameter's instantiations.
288 UnparsedDefaultArgInstantiations.erase(InstPos);
289 }
290
Anders Carlsson4562f1f2009-08-25 03:18:48 +0000291 return false;
Anders Carlssonc80a1272009-08-25 02:29:20 +0000292}
293
Chris Lattner58258242008-04-10 02:22:51 +0000294/// ActOnParamDefaultArgument - Check whether the default argument
295/// provided for a function parameter is well-formed. If so, attach it
296/// to the parameter declaration.
Chris Lattner199abbc2008-04-08 05:04:30 +0000297void
John McCall48871652010-08-21 09:40:31 +0000298Sema::ActOnParamDefaultArgument(Decl *param, SourceLocation EqualLoc,
John McCallb268a282010-08-23 23:25:46 +0000299 Expr *DefaultArg) {
300 if (!param || !DefaultArg)
Douglas Gregor71a57182009-06-22 23:20:33 +0000301 return;
Mike Stump11289f42009-09-09 15:08:12 +0000302
John McCall48871652010-08-21 09:40:31 +0000303 ParmVarDecl *Param = cast<ParmVarDecl>(param);
Anders Carlsson84613c42009-06-12 16:51:40 +0000304 UnparsedDefaultArgLocs.erase(Param);
305
Chris Lattner199abbc2008-04-08 05:04:30 +0000306 // Default arguments are only permitted in C++
David Blaikiebbafb8a2012-03-11 07:00:24 +0000307 if (!getLangOpts().CPlusPlus) {
Chris Lattner3b054132008-11-19 05:08:23 +0000308 Diag(EqualLoc, diag::err_param_default_argument)
309 << DefaultArg->getSourceRange();
Douglas Gregor4d87df52008-12-16 21:30:33 +0000310 Param->setInvalidDecl();
Chris Lattner199abbc2008-04-08 05:04:30 +0000311 return;
312 }
313
Douglas Gregor6ff1fbf2010-12-16 08:48:57 +0000314 // Check for unexpanded parameter packs.
315 if (DiagnoseUnexpandedParameterPack(DefaultArg, UPPC_DefaultArgument)) {
316 Param->setInvalidDecl();
317 return;
318 }
319
Anders Carlssonf1c26952009-08-25 01:02:06 +0000320 // Check that the default argument is well-formed
John McCallb268a282010-08-23 23:25:46 +0000321 CheckDefaultArgumentVisitor DefaultArgChecker(DefaultArg, this);
322 if (DefaultArgChecker.Visit(DefaultArg)) {
Anders Carlssonf1c26952009-08-25 01:02:06 +0000323 Param->setInvalidDecl();
324 return;
325 }
Mike Stump11289f42009-09-09 15:08:12 +0000326
John McCallb268a282010-08-23 23:25:46 +0000327 SetParamDefaultArgument(Param, DefaultArg, EqualLoc);
Chris Lattner199abbc2008-04-08 05:04:30 +0000328}
329
Douglas Gregor58354032008-12-24 00:01:03 +0000330/// ActOnParamUnparsedDefaultArgument - We've seen a default
331/// argument for a function parameter, but we can't parse it yet
332/// because we're inside a class definition. Note that this default
333/// argument will be parsed later.
John McCall48871652010-08-21 09:40:31 +0000334void Sema::ActOnParamUnparsedDefaultArgument(Decl *param,
Anders Carlsson84613c42009-06-12 16:51:40 +0000335 SourceLocation EqualLoc,
336 SourceLocation ArgLoc) {
Douglas Gregor71a57182009-06-22 23:20:33 +0000337 if (!param)
338 return;
Mike Stump11289f42009-09-09 15:08:12 +0000339
John McCall48871652010-08-21 09:40:31 +0000340 ParmVarDecl *Param = cast<ParmVarDecl>(param);
Nick Lewycky0f292892013-09-22 10:06:57 +0000341 Param->setUnparsedDefaultArg();
Anders Carlsson84613c42009-06-12 16:51:40 +0000342 UnparsedDefaultArgLocs[Param] = ArgLoc;
Douglas Gregor58354032008-12-24 00:01:03 +0000343}
344
Douglas Gregor4d87df52008-12-16 21:30:33 +0000345/// ActOnParamDefaultArgumentError - Parsing or semantic analysis of
346/// the default argument for the parameter param failed.
Serge Pavlovb4b35782014-07-22 01:54:49 +0000347void Sema::ActOnParamDefaultArgumentError(Decl *param,
348 SourceLocation EqualLoc) {
Douglas Gregor71a57182009-06-22 23:20:33 +0000349 if (!param)
350 return;
Mike Stump11289f42009-09-09 15:08:12 +0000351
John McCall48871652010-08-21 09:40:31 +0000352 ParmVarDecl *Param = cast<ParmVarDecl>(param);
Anders Carlsson84613c42009-06-12 16:51:40 +0000353 Param->setInvalidDecl();
Anders Carlsson84613c42009-06-12 16:51:40 +0000354 UnparsedDefaultArgLocs.erase(Param);
Serge Pavlovb4b35782014-07-22 01:54:49 +0000355 Param->setDefaultArg(new(Context)
356 OpaqueValueExpr(EqualLoc, Param->getType(), VK_RValue));
Douglas Gregor4d87df52008-12-16 21:30:33 +0000357}
358
Douglas Gregorcaa8ace2008-05-07 04:49:29 +0000359/// CheckExtraCXXDefaultArguments - Check for any extra default
360/// arguments in the declarator, which is not a function declaration
361/// or definition and therefore is not permitted to have default
362/// arguments. This routine should be invoked for every declarator
363/// that is not a function declaration or definition.
364void Sema::CheckExtraCXXDefaultArguments(Declarator &D) {
365 // C++ [dcl.fct.default]p3
366 // A default argument expression shall be specified only in the
367 // parameter-declaration-clause of a function declaration or in a
368 // template-parameter (14.1). It shall not be specified for a
369 // parameter pack. If it is specified in a
370 // parameter-declaration-clause, it shall not occur within a
371 // declarator or abstract-declarator of a parameter-declaration.
Richard Smith5afcdf3f2013-03-06 01:37:38 +0000372 bool MightBeFunction = D.isFunctionDeclarationContext();
Chris Lattner83f095c2009-03-28 19:18:32 +0000373 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i) {
Douglas Gregorcaa8ace2008-05-07 04:49:29 +0000374 DeclaratorChunk &chunk = D.getTypeObject(i);
375 if (chunk.Kind == DeclaratorChunk::Function) {
Richard Smith5afcdf3f2013-03-06 01:37:38 +0000376 if (MightBeFunction) {
377 // This is a function declaration. It can have default arguments, but
378 // keep looking in case its return type is a function type with default
379 // arguments.
380 MightBeFunction = false;
381 continue;
382 }
Alp Tokerc5350722014-02-26 22:27:52 +0000383 for (unsigned argIdx = 0, e = chunk.Fun.NumParams; argIdx != e;
384 ++argIdx) {
385 ParmVarDecl *Param = cast<ParmVarDecl>(chunk.Fun.Params[argIdx].Param);
Douglas Gregor58354032008-12-24 00:01:03 +0000386 if (Param->hasUnparsedDefaultArg()) {
Alp Tokerc5350722014-02-26 22:27:52 +0000387 CachedTokens *Toks = chunk.Fun.Params[argIdx].DefaultArgTokens;
Douglas Gregor4d87df52008-12-16 21:30:33 +0000388 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
Richard Smith5afcdf3f2013-03-06 01:37:38 +0000389 << SourceRange((*Toks)[1].getLocation(),
390 Toks->back().getLocation());
Douglas Gregor4d87df52008-12-16 21:30:33 +0000391 delete Toks;
Craig Topperc3ec1492014-05-26 06:22:03 +0000392 chunk.Fun.Params[argIdx].DefaultArgTokens = nullptr;
Douglas Gregor58354032008-12-24 00:01:03 +0000393 } else if (Param->getDefaultArg()) {
394 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
395 << Param->getDefaultArg()->getSourceRange();
Craig Topperc3ec1492014-05-26 06:22:03 +0000396 Param->setDefaultArg(nullptr);
Douglas Gregorcaa8ace2008-05-07 04:49:29 +0000397 }
398 }
Richard Smith5afcdf3f2013-03-06 01:37:38 +0000399 } else if (chunk.Kind != DeclaratorChunk::Paren) {
400 MightBeFunction = false;
Douglas Gregorcaa8ace2008-05-07 04:49:29 +0000401 }
402 }
403}
404
David Majnemer502b0ed2013-06-25 23:09:30 +0000405static bool functionDeclHasDefaultArgument(const FunctionDecl *FD) {
406 for (unsigned NumParams = FD->getNumParams(); NumParams > 0; --NumParams) {
407 const ParmVarDecl *PVD = FD->getParamDecl(NumParams-1);
408 if (!PVD->hasDefaultArg())
409 return false;
410 if (!PVD->hasInheritedDefaultArg())
411 return true;
412 }
413 return false;
414}
415
Craig Toppere4794282012-09-21 04:33:26 +0000416/// MergeCXXFunctionDecl - Merge two declarations of the same C++
417/// function, once we already know that they have the same
418/// type. Subroutine of MergeFunctionDecl. Returns true if there was an
419/// error, false otherwise.
James Molloye9430032012-03-13 08:55:35 +0000420bool Sema::MergeCXXFunctionDecl(FunctionDecl *New, FunctionDecl *Old,
421 Scope *S) {
Douglas Gregor75a45ba2009-02-16 17:45:42 +0000422 bool Invalid = false;
423
Chris Lattner199abbc2008-04-08 05:04:30 +0000424 // C++ [dcl.fct.default]p4:
Chris Lattner199abbc2008-04-08 05:04:30 +0000425 // For non-template functions, default arguments can be added in
426 // later declarations of a function in the same
427 // scope. Declarations in different scopes have completely
428 // distinct sets of default arguments. That is, declarations in
429 // inner scopes do not acquire default arguments from
430 // declarations in outer scopes, and vice versa. In a given
431 // function declaration, all parameters subsequent to a
432 // parameter with a default argument shall have default
433 // arguments supplied in this or previous declarations. A
434 // default argument shall not be redefined by a later
435 // declaration (not even to the same value).
Douglas Gregorc732aba2009-09-11 18:44:32 +0000436 //
437 // C++ [dcl.fct.default]p6:
Richard Smith541b38b2013-09-20 01:15:31 +0000438 // Except for member functions of class templates, the default arguments
439 // in a member function definition that appears outside of the class
440 // definition are added to the set of default arguments provided by the
Douglas Gregorc732aba2009-09-11 18:44:32 +0000441 // member function declaration in the class definition.
Chris Lattner199abbc2008-04-08 05:04:30 +0000442 for (unsigned p = 0, NumParams = Old->getNumParams(); p < NumParams; ++p) {
443 ParmVarDecl *OldParam = Old->getParamDecl(p);
444 ParmVarDecl *NewParam = New->getParamDecl(p);
445
James Molloye9430032012-03-13 08:55:35 +0000446 bool OldParamHasDfl = OldParam->hasDefaultArg();
447 bool NewParamHasDfl = NewParam->hasDefaultArg();
448
Richard Smith541b38b2013-09-20 01:15:31 +0000449 // The declaration context corresponding to the scope is the semantic
450 // parent, unless this is a local function declaration, in which case
451 // it is that surrounding function.
Richard Smith5971e8c2014-08-27 22:31:34 +0000452 DeclContext *ScopeDC = New->isLocalExternDecl()
453 ? New->getLexicalDeclContext()
454 : New->getDeclContext();
455 if (S && !isDeclInScope(Old, ScopeDC, S) &&
Richard Smith541b38b2013-09-20 01:15:31 +0000456 !New->getDeclContext()->isRecord())
James Molloye9430032012-03-13 08:55:35 +0000457 // Ignore default parameters of old decl if they are not in
Richard Smith541b38b2013-09-20 01:15:31 +0000458 // the same scope and this is not an out-of-line definition of
459 // a member function.
James Molloye9430032012-03-13 08:55:35 +0000460 OldParamHasDfl = false;
Richard Smith5971e8c2014-08-27 22:31:34 +0000461 if (New->isLocalExternDecl() != Old->isLocalExternDecl())
462 // If only one of these is a local function declaration, then they are
463 // declared in different scopes, even though isDeclInScope may think
464 // they're in the same scope. (If both are local, the scope check is
465 // sufficent, and if neither is local, then they are in the same scope.)
466 OldParamHasDfl = false;
James Molloye9430032012-03-13 08:55:35 +0000467
468 if (OldParamHasDfl && NewParamHasDfl) {
Francois Pichet8cb243a2011-04-10 04:58:30 +0000469
Francois Pichet53fe2bb2011-04-10 03:03:52 +0000470 unsigned DiagDefaultParamID =
471 diag::err_param_default_argument_redefinition;
472
473 // MSVC accepts that default parameters be redefined for member functions
474 // of template class. The new default parameter's value is ignored.
475 Invalid = true;
David Blaikiebbafb8a2012-03-11 07:00:24 +0000476 if (getLangOpts().MicrosoftExt) {
Francois Pichet53fe2bb2011-04-10 03:03:52 +0000477 CXXMethodDecl* MD = dyn_cast<CXXMethodDecl>(New);
478 if (MD && MD->getParent()->getDescribedClassTemplate()) {
Francois Pichet8cb243a2011-04-10 04:58:30 +0000479 // Merge the old default argument into the new parameter.
480 NewParam->setHasInheritedDefaultArg();
481 if (OldParam->hasUninstantiatedDefaultArg())
482 NewParam->setUninstantiatedDefaultArg(
483 OldParam->getUninstantiatedDefaultArg());
484 else
485 NewParam->setDefaultArg(OldParam->getInit());
Richard Smith1b98ccc2014-07-19 01:39:17 +0000486 DiagDefaultParamID = diag::ext_param_default_argument_redefinition;
Francois Pichet53fe2bb2011-04-10 03:03:52 +0000487 Invalid = false;
488 }
489 }
Douglas Gregor08dc5842010-01-13 00:12:48 +0000490
Francois Pichet8cb243a2011-04-10 04:58:30 +0000491 // FIXME: If we knew where the '=' was, we could easily provide a fix-it
492 // hint here. Alternatively, we could walk the type-source information
493 // for NewParam to find the last source location in the type... but it
494 // isn't worth the effort right now. This is the kind of test case that
495 // is hard to get right:
Douglas Gregor08dc5842010-01-13 00:12:48 +0000496 // int f(int);
497 // void g(int (*fp)(int) = f);
498 // void g(int (*fp)(int) = &f);
Francois Pichet53fe2bb2011-04-10 03:03:52 +0000499 Diag(NewParam->getLocation(), DiagDefaultParamID)
Douglas Gregor08dc5842010-01-13 00:12:48 +0000500 << NewParam->getDefaultArgRange();
Douglas Gregorc732aba2009-09-11 18:44:32 +0000501
502 // Look for the function declaration where the default argument was
503 // actually written, which may be a declaration prior to Old.
Douglas Gregorec9fd132012-01-14 16:38:05 +0000504 for (FunctionDecl *Older = Old->getPreviousDecl();
505 Older; Older = Older->getPreviousDecl()) {
Douglas Gregorc732aba2009-09-11 18:44:32 +0000506 if (!Older->getParamDecl(p)->hasDefaultArg())
507 break;
508
509 OldParam = Older->getParamDecl(p);
510 }
511
512 Diag(OldParam->getLocation(), diag::note_previous_definition)
513 << OldParam->getDefaultArgRange();
James Molloye9430032012-03-13 08:55:35 +0000514 } else if (OldParamHasDfl) {
John McCalle61b02b2010-05-04 01:53:42 +0000515 // Merge the old default argument into the new parameter.
516 // It's important to use getInit() here; getDefaultArg()
John McCall5d413782010-12-06 08:20:24 +0000517 // strips off any top-level ExprWithCleanups.
John McCallf3cd6652010-03-12 18:31:32 +0000518 NewParam->setHasInheritedDefaultArg();
Douglas Gregor4f15f4d2009-09-17 19:51:30 +0000519 if (OldParam->hasUninstantiatedDefaultArg())
520 NewParam->setUninstantiatedDefaultArg(
521 OldParam->getUninstantiatedDefaultArg());
522 else
John McCalle61b02b2010-05-04 01:53:42 +0000523 NewParam->setDefaultArg(OldParam->getInit());
James Molloye9430032012-03-13 08:55:35 +0000524 } else if (NewParamHasDfl) {
Douglas Gregorc732aba2009-09-11 18:44:32 +0000525 if (New->getDescribedFunctionTemplate()) {
526 // Paragraph 4, quoted above, only applies to non-template functions.
527 Diag(NewParam->getLocation(),
528 diag::err_param_default_argument_template_redecl)
529 << NewParam->getDefaultArgRange();
530 Diag(Old->getLocation(), diag::note_template_prev_declaration)
531 << false;
Douglas Gregor62e10f02009-10-13 17:02:54 +0000532 } else if (New->getTemplateSpecializationKind()
533 != TSK_ImplicitInstantiation &&
534 New->getTemplateSpecializationKind() != TSK_Undeclared) {
535 // C++ [temp.expr.spec]p21:
536 // Default function arguments shall not be specified in a declaration
537 // or a definition for one of the following explicit specializations:
538 // - the explicit specialization of a function template;
Douglas Gregor3362bde2009-10-13 23:52:38 +0000539 // - the explicit specialization of a member function template;
540 // - the explicit specialization of a member function of a class
Douglas Gregor62e10f02009-10-13 17:02:54 +0000541 // template where the class template specialization to which the
542 // member function specialization belongs is implicitly
543 // instantiated.
544 Diag(NewParam->getLocation(), diag::err_template_spec_default_arg)
545 << (New->getTemplateSpecializationKind() ==TSK_ExplicitSpecialization)
546 << New->getDeclName()
547 << NewParam->getDefaultArgRange();
Douglas Gregorc732aba2009-09-11 18:44:32 +0000548 } else if (New->getDeclContext()->isDependentContext()) {
549 // C++ [dcl.fct.default]p6 (DR217):
550 // Default arguments for a member function of a class template shall
551 // be specified on the initial declaration of the member function
552 // within the class template.
553 //
554 // Reading the tea leaves a bit in DR217 and its reference to DR205
555 // leads me to the conclusion that one cannot add default function
556 // arguments for an out-of-line definition of a member function of a
557 // dependent type.
558 int WhichKind = 2;
559 if (CXXRecordDecl *Record
560 = dyn_cast<CXXRecordDecl>(New->getDeclContext())) {
561 if (Record->getDescribedClassTemplate())
562 WhichKind = 0;
563 else if (isa<ClassTemplatePartialSpecializationDecl>(Record))
564 WhichKind = 1;
565 else
566 WhichKind = 2;
567 }
568
569 Diag(NewParam->getLocation(),
570 diag::err_param_default_argument_member_template_redecl)
571 << WhichKind
572 << NewParam->getDefaultArgRange();
573 }
Chris Lattner199abbc2008-04-08 05:04:30 +0000574 }
575 }
576
Richard Smith58c3cc12012-11-28 03:45:24 +0000577 // DR1344: If a default argument is added outside a class definition and that
578 // default argument makes the function a special member function, the program
579 // is ill-formed. This can only happen for constructors.
580 if (isa<CXXConstructorDecl>(New) &&
581 New->getMinRequiredArguments() < Old->getMinRequiredArguments()) {
582 CXXSpecialMember NewSM = getSpecialMember(cast<CXXMethodDecl>(New)),
583 OldSM = getSpecialMember(cast<CXXMethodDecl>(Old));
584 if (NewSM != OldSM) {
585 ParmVarDecl *NewParam = New->getParamDecl(New->getMinRequiredArguments());
586 assert(NewParam->hasDefaultArg());
587 Diag(NewParam->getLocation(), diag::err_default_arg_makes_ctor_special)
588 << NewParam->getDefaultArgRange() << NewSM;
589 Diag(Old->getLocation(), diag::note_previous_declaration);
590 }
591 }
592
David Majnemeree4f4022014-03-30 06:44:54 +0000593 const FunctionDecl *Def;
Richard Smith5b8b3db2012-02-20 23:28:05 +0000594 // C++11 [dcl.constexpr]p1: If any declaration of a function or function
Richard Smitheb3c10c2011-10-01 02:31:28 +0000595 // template has a constexpr specifier then all its declarations shall
Richard Smith5b8b3db2012-02-20 23:28:05 +0000596 // contain the constexpr specifier.
Richard Smitheb3c10c2011-10-01 02:31:28 +0000597 if (New->isConstexpr() != Old->isConstexpr()) {
598 Diag(New->getLocation(), diag::err_constexpr_redecl_mismatch)
599 << New << New->isConstexpr();
600 Diag(Old->getLocation(), diag::note_previous_declaration);
601 Invalid = true;
David Majnemeree4f4022014-03-30 06:44:54 +0000602 } else if (!Old->isInlined() && New->isInlined() && Old->isDefined(Def)) {
603 // C++11 [dcl.fcn.spec]p4:
604 // If the definition of a function appears in a translation unit before its
605 // first declaration as inline, the program is ill-formed.
606 Diag(New->getLocation(), diag::err_inline_decl_follows_def) << New;
607 Diag(Def->getLocation(), diag::note_previous_definition);
608 Invalid = true;
Richard Smitheb3c10c2011-10-01 02:31:28 +0000609 }
610
David Majnemer502b0ed2013-06-25 23:09:30 +0000611 // C++11 [dcl.fct.default]p4: If a friend declaration specifies a default
NAKAMURA Takumi3e7db842013-07-17 17:57:52 +0000612 // argument expression, that declaration shall be a definition and shall be
David Majnemer502b0ed2013-06-25 23:09:30 +0000613 // the only declaration of the function or function template in the
614 // translation unit.
615 if (Old->getFriendObjectKind() == Decl::FOK_Undeclared &&
616 functionDeclHasDefaultArgument(Old)) {
617 Diag(New->getLocation(), diag::err_friend_decl_with_def_arg_redeclared);
618 Diag(Old->getLocation(), diag::note_previous_declaration);
619 Invalid = true;
620 }
621
Douglas Gregorf40863c2010-02-12 07:32:17 +0000622 if (CheckEquivalentExceptionSpec(Old, New))
Sebastian Redl4f4d7b52009-07-04 11:39:00 +0000623 Invalid = true;
Sebastian Redl4f4d7b52009-07-04 11:39:00 +0000624
Douglas Gregor75a45ba2009-02-16 17:45:42 +0000625 return Invalid;
Chris Lattner199abbc2008-04-08 05:04:30 +0000626}
627
Sebastian Redlfa453cf2011-03-12 11:50:43 +0000628/// \brief Merge the exception specifications of two variable declarations.
629///
630/// This is called when there's a redeclaration of a VarDecl. The function
631/// checks if the redeclaration might have an exception specification and
632/// validates compatibility and merges the specs if necessary.
633void Sema::MergeVarDeclExceptionSpecs(VarDecl *New, VarDecl *Old) {
634 // Shortcut if exceptions are disabled.
David Blaikiebbafb8a2012-03-11 07:00:24 +0000635 if (!getLangOpts().CXXExceptions)
Sebastian Redlfa453cf2011-03-12 11:50:43 +0000636 return;
637
638 assert(Context.hasSameType(New->getType(), Old->getType()) &&
639 "Should only be called if types are otherwise the same.");
640
641 QualType NewType = New->getType();
642 QualType OldType = Old->getType();
643
644 // We're only interested in pointers and references to functions, as well
645 // as pointers to member functions.
646 if (const ReferenceType *R = NewType->getAs<ReferenceType>()) {
647 NewType = R->getPointeeType();
648 OldType = OldType->getAs<ReferenceType>()->getPointeeType();
649 } else if (const PointerType *P = NewType->getAs<PointerType>()) {
650 NewType = P->getPointeeType();
651 OldType = OldType->getAs<PointerType>()->getPointeeType();
652 } else if (const MemberPointerType *M = NewType->getAs<MemberPointerType>()) {
653 NewType = M->getPointeeType();
654 OldType = OldType->getAs<MemberPointerType>()->getPointeeType();
655 }
656
657 if (!NewType->isFunctionProtoType())
658 return;
659
660 // There's lots of special cases for functions. For function pointers, system
661 // libraries are hopefully not as broken so that we don't need these
662 // workarounds.
663 if (CheckEquivalentExceptionSpec(
664 OldType->getAs<FunctionProtoType>(), Old->getLocation(),
665 NewType->getAs<FunctionProtoType>(), New->getLocation())) {
666 New->setInvalidDecl();
667 }
668}
669
Chris Lattner199abbc2008-04-08 05:04:30 +0000670/// CheckCXXDefaultArguments - Verify that the default arguments for a
671/// function declaration are well-formed according to C++
672/// [dcl.fct.default].
673void Sema::CheckCXXDefaultArguments(FunctionDecl *FD) {
674 unsigned NumParams = FD->getNumParams();
675 unsigned p;
676
677 // Find first parameter with a default argument
678 for (p = 0; p < NumParams; ++p) {
679 ParmVarDecl *Param = FD->getParamDecl(p);
Richard Smith3cb4c632013-04-17 16:25:20 +0000680 if (Param->hasDefaultArg())
Chris Lattner199abbc2008-04-08 05:04:30 +0000681 break;
682 }
683
684 // C++ [dcl.fct.default]p4:
685 // In a given function declaration, all parameters
686 // subsequent to a parameter with a default argument shall
687 // have default arguments supplied in this or previous
688 // declarations. A default argument shall not be redefined
689 // by a later declaration (not even to the same value).
690 unsigned LastMissingDefaultArg = 0;
Mike Stump11289f42009-09-09 15:08:12 +0000691 for (; p < NumParams; ++p) {
Chris Lattner199abbc2008-04-08 05:04:30 +0000692 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson5a532382009-08-25 01:23:32 +0000693 if (!Param->hasDefaultArg()) {
Douglas Gregor4d87df52008-12-16 21:30:33 +0000694 if (Param->isInvalidDecl())
695 /* We already complained about this parameter. */;
696 else if (Param->getIdentifier())
Mike Stump11289f42009-09-09 15:08:12 +0000697 Diag(Param->getLocation(),
Chris Lattner3b054132008-11-19 05:08:23 +0000698 diag::err_param_default_argument_missing_name)
Chris Lattnerb91fd172008-11-19 07:32:16 +0000699 << Param->getIdentifier();
Chris Lattner199abbc2008-04-08 05:04:30 +0000700 else
Mike Stump11289f42009-09-09 15:08:12 +0000701 Diag(Param->getLocation(),
Chris Lattner199abbc2008-04-08 05:04:30 +0000702 diag::err_param_default_argument_missing);
Mike Stump11289f42009-09-09 15:08:12 +0000703
Chris Lattner199abbc2008-04-08 05:04:30 +0000704 LastMissingDefaultArg = p;
705 }
706 }
707
708 if (LastMissingDefaultArg > 0) {
709 // Some default arguments were missing. Clear out all of the
710 // default arguments up to (and including) the last missing
711 // default argument, so that we leave the function parameters
712 // in a semantically valid state.
713 for (p = 0; p <= LastMissingDefaultArg; ++p) {
714 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson84613c42009-06-12 16:51:40 +0000715 if (Param->hasDefaultArg()) {
Craig Topperc3ec1492014-05-26 06:22:03 +0000716 Param->setDefaultArg(nullptr);
Chris Lattner199abbc2008-04-08 05:04:30 +0000717 }
718 }
719 }
720}
Douglas Gregor556877c2008-04-13 21:30:24 +0000721
Richard Smitheb3c10c2011-10-01 02:31:28 +0000722// CheckConstexprParameterTypes - Check whether a function's parameter types
723// are all literal types. If so, return true. If not, produce a suitable
Richard Smith3607ffe2012-02-13 03:54:03 +0000724// diagnostic and return false.
725static bool CheckConstexprParameterTypes(Sema &SemaRef,
726 const FunctionDecl *FD) {
Richard Smitheb3c10c2011-10-01 02:31:28 +0000727 unsigned ArgIndex = 0;
728 const FunctionProtoType *FT = FD->getType()->getAs<FunctionProtoType>();
Alp Toker9cacbab2014-01-20 20:26:09 +0000729 for (FunctionProtoType::param_type_iterator i = FT->param_type_begin(),
730 e = FT->param_type_end();
731 i != e; ++i, ++ArgIndex) {
Richard Smitheb3c10c2011-10-01 02:31:28 +0000732 const ParmVarDecl *PD = FD->getParamDecl(ArgIndex);
733 SourceLocation ParamLoc = PD->getLocation();
734 if (!(*i)->isDependentType() &&
Richard Smith3607ffe2012-02-13 03:54:03 +0000735 SemaRef.RequireLiteralType(ParamLoc, *i,
Douglas Gregora6c5abb2012-05-04 16:48:41 +0000736 diag::err_constexpr_non_literal_param,
737 ArgIndex+1, PD->getSourceRange(),
738 isa<CXXConstructorDecl>(FD)))
Richard Smitheb3c10c2011-10-01 02:31:28 +0000739 return false;
Richard Smitheb3c10c2011-10-01 02:31:28 +0000740 }
Joao Matose9a3ed42012-08-31 22:18:20 +0000741 return true;
742}
743
744/// \brief Get diagnostic %select index for tag kind for
745/// record diagnostic message.
746/// WARNING: Indexes apply to particular diagnostics only!
747///
748/// \returns diagnostic %select index.
Joao Matosa5c42e92012-09-01 00:13:24 +0000749static unsigned getRecordDiagFromTagKind(TagTypeKind Tag) {
Joao Matose9a3ed42012-08-31 22:18:20 +0000750 switch (Tag) {
Joao Matosa5c42e92012-09-01 00:13:24 +0000751 case TTK_Struct: return 0;
752 case TTK_Interface: return 1;
753 case TTK_Class: return 2;
754 default: llvm_unreachable("Invalid tag kind for record diagnostic!");
Joao Matose9a3ed42012-08-31 22:18:20 +0000755 }
Joao Matose9a3ed42012-08-31 22:18:20 +0000756}
757
758// CheckConstexprFunctionDecl - Check whether a function declaration satisfies
759// the requirements of a constexpr function definition or a constexpr
760// constructor definition. If so, return true. If not, produce appropriate
Richard Smith3607ffe2012-02-13 03:54:03 +0000761// diagnostics and return false.
Richard Smitheb3c10c2011-10-01 02:31:28 +0000762//
Richard Smith3607ffe2012-02-13 03:54:03 +0000763// This implements C++11 [dcl.constexpr]p3,4, as amended by DR1360.
764bool Sema::CheckConstexprFunctionDecl(const FunctionDecl *NewFD) {
Richard Smith7971b692012-01-13 04:54:00 +0000765 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewFD);
766 if (MD && MD->isInstance()) {
Richard Smith3607ffe2012-02-13 03:54:03 +0000767 // C++11 [dcl.constexpr]p4:
768 // The definition of a constexpr constructor shall satisfy the following
769 // constraints:
Richard Smitheb3c10c2011-10-01 02:31:28 +0000770 // - the class shall not have any virtual base classes;
Joao Matose9a3ed42012-08-31 22:18:20 +0000771 const CXXRecordDecl *RD = MD->getParent();
772 if (RD->getNumVBases()) {
773 Diag(NewFD->getLocation(), diag::err_constexpr_virtual_base)
774 << isa<CXXConstructorDecl>(NewFD)
775 << getRecordDiagFromTagKind(RD->getTagKind()) << RD->getNumVBases();
Aaron Ballman445a9392014-03-13 16:15:17 +0000776 for (const auto &I : RD->vbases())
777 Diag(I.getLocStart(),
778 diag::note_constexpr_virtual_base_here) << I.getSourceRange();
Richard Smitheb3c10c2011-10-01 02:31:28 +0000779 return false;
780 }
Richard Smith7971b692012-01-13 04:54:00 +0000781 }
782
783 if (!isa<CXXConstructorDecl>(NewFD)) {
784 // C++11 [dcl.constexpr]p3:
Richard Smitheb3c10c2011-10-01 02:31:28 +0000785 // The definition of a constexpr function shall satisfy the following
786 // constraints:
787 // - it shall not be virtual;
788 const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(NewFD);
789 if (Method && Method->isVirtual()) {
Richard Smith3607ffe2012-02-13 03:54:03 +0000790 Diag(NewFD->getLocation(), diag::err_constexpr_virtual);
Richard Smitheb3c10c2011-10-01 02:31:28 +0000791
Richard Smith3607ffe2012-02-13 03:54:03 +0000792 // If it's not obvious why this function is virtual, find an overridden
793 // function which uses the 'virtual' keyword.
794 const CXXMethodDecl *WrittenVirtual = Method;
795 while (!WrittenVirtual->isVirtualAsWritten())
796 WrittenVirtual = *WrittenVirtual->begin_overridden_methods();
797 if (WrittenVirtual != Method)
798 Diag(WrittenVirtual->getLocation(),
799 diag::note_overridden_virtual_function);
Richard Smitheb3c10c2011-10-01 02:31:28 +0000800 return false;
801 }
802
803 // - its return type shall be a literal type;
Alp Toker314cc812014-01-25 16:55:45 +0000804 QualType RT = NewFD->getReturnType();
Richard Smitheb3c10c2011-10-01 02:31:28 +0000805 if (!RT->isDependentType() &&
Richard Smith3607ffe2012-02-13 03:54:03 +0000806 RequireLiteralType(NewFD->getLocation(), RT,
Douglas Gregora6c5abb2012-05-04 16:48:41 +0000807 diag::err_constexpr_non_literal_return))
Richard Smitheb3c10c2011-10-01 02:31:28 +0000808 return false;
Richard Smitheb3c10c2011-10-01 02:31:28 +0000809 }
810
Richard Smith7971b692012-01-13 04:54:00 +0000811 // - each of its parameter types shall be a literal type;
Richard Smith3607ffe2012-02-13 03:54:03 +0000812 if (!CheckConstexprParameterTypes(*this, NewFD))
Richard Smith7971b692012-01-13 04:54:00 +0000813 return false;
814
Richard Smitheb3c10c2011-10-01 02:31:28 +0000815 return true;
816}
817
818/// Check the given declaration statement is legal within a constexpr function
Richard Smithd9f663b2013-04-22 15:31:51 +0000819/// body. C++11 [dcl.constexpr]p3,p4, and C++1y [dcl.constexpr]p3.
Richard Smitheb3c10c2011-10-01 02:31:28 +0000820///
Richard Smithd9f663b2013-04-22 15:31:51 +0000821/// \return true if the body is OK (maybe only as an extension), false if we
822/// have diagnosed a problem.
Richard Smitheb3c10c2011-10-01 02:31:28 +0000823static bool CheckConstexprDeclStmt(Sema &SemaRef, const FunctionDecl *Dcl,
Richard Smithd9f663b2013-04-22 15:31:51 +0000824 DeclStmt *DS, SourceLocation &Cxx1yLoc) {
825 // C++11 [dcl.constexpr]p3 and p4:
Richard Smitheb3c10c2011-10-01 02:31:28 +0000826 // The definition of a constexpr function(p3) or constructor(p4) [...] shall
827 // contain only
Aaron Ballman535bbcc2014-03-14 17:01:24 +0000828 for (const auto *DclIt : DS->decls()) {
829 switch (DclIt->getKind()) {
Richard Smitheb3c10c2011-10-01 02:31:28 +0000830 case Decl::StaticAssert:
831 case Decl::Using:
832 case Decl::UsingShadow:
833 case Decl::UsingDirective:
834 case Decl::UnresolvedUsingTypename:
Richard Smithd9f663b2013-04-22 15:31:51 +0000835 case Decl::UnresolvedUsingValue:
Richard Smitheb3c10c2011-10-01 02:31:28 +0000836 // - static_assert-declarations
837 // - using-declarations,
838 // - using-directives,
839 continue;
840
841 case Decl::Typedef:
842 case Decl::TypeAlias: {
843 // - typedef declarations and alias-declarations that do not define
844 // classes or enumerations,
Aaron Ballman535bbcc2014-03-14 17:01:24 +0000845 const auto *TN = cast<TypedefNameDecl>(DclIt);
Richard Smitheb3c10c2011-10-01 02:31:28 +0000846 if (TN->getUnderlyingType()->isVariablyModifiedType()) {
847 // Don't allow variably-modified types in constexpr functions.
848 TypeLoc TL = TN->getTypeSourceInfo()->getTypeLoc();
849 SemaRef.Diag(TL.getBeginLoc(), diag::err_constexpr_vla)
850 << TL.getSourceRange() << TL.getType()
851 << isa<CXXConstructorDecl>(Dcl);
852 return false;
853 }
854 continue;
855 }
856
857 case Decl::Enum:
858 case Decl::CXXRecord:
Richard Smithd9f663b2013-04-22 15:31:51 +0000859 // C++1y allows types to be defined, not just declared.
Aaron Ballman535bbcc2014-03-14 17:01:24 +0000860 if (cast<TagDecl>(DclIt)->isThisDeclarationADefinition())
Richard Smithd9f663b2013-04-22 15:31:51 +0000861 SemaRef.Diag(DS->getLocStart(),
Aaron Ballmandd69ef32014-08-19 15:55:55 +0000862 SemaRef.getLangOpts().CPlusPlus14
Richard Smithd9f663b2013-04-22 15:31:51 +0000863 ? diag::warn_cxx11_compat_constexpr_type_definition
864 : diag::ext_constexpr_type_definition)
Richard Smitheb3c10c2011-10-01 02:31:28 +0000865 << isa<CXXConstructorDecl>(Dcl);
Richard Smitheb3c10c2011-10-01 02:31:28 +0000866 continue;
867
Richard Smithd9f663b2013-04-22 15:31:51 +0000868 case Decl::EnumConstant:
869 case Decl::IndirectField:
870 case Decl::ParmVar:
871 // These can only appear with other declarations which are banned in
872 // C++11 and permitted in C++1y, so ignore them.
873 continue;
874
875 case Decl::Var: {
876 // C++1y [dcl.constexpr]p3 allows anything except:
877 // a definition of a variable of non-literal type or of static or
878 // thread storage duration or for which no initialization is performed.
Aaron Ballman535bbcc2014-03-14 17:01:24 +0000879 const auto *VD = cast<VarDecl>(DclIt);
Richard Smithd9f663b2013-04-22 15:31:51 +0000880 if (VD->isThisDeclarationADefinition()) {
881 if (VD->isStaticLocal()) {
882 SemaRef.Diag(VD->getLocation(),
883 diag::err_constexpr_local_var_static)
884 << isa<CXXConstructorDecl>(Dcl)
885 << (VD->getTLSKind() == VarDecl::TLS_Dynamic);
886 return false;
887 }
Richard Smith3da88fa2013-04-26 14:36:30 +0000888 if (!VD->getType()->isDependentType() &&
889 SemaRef.RequireLiteralType(
Richard Smithd9f663b2013-04-22 15:31:51 +0000890 VD->getLocation(), VD->getType(),
891 diag::err_constexpr_local_var_non_literal_type,
892 isa<CXXConstructorDecl>(Dcl)))
893 return false;
Richard Smithab44d5b2013-12-10 08:25:00 +0000894 if (!VD->getType()->isDependentType() &&
895 !VD->hasInit() && !VD->isCXXForRangeDecl()) {
Richard Smithd9f663b2013-04-22 15:31:51 +0000896 SemaRef.Diag(VD->getLocation(),
897 diag::err_constexpr_local_var_no_init)
898 << isa<CXXConstructorDecl>(Dcl);
899 return false;
900 }
901 }
902 SemaRef.Diag(VD->getLocation(),
Aaron Ballmandd69ef32014-08-19 15:55:55 +0000903 SemaRef.getLangOpts().CPlusPlus14
Richard Smithd9f663b2013-04-22 15:31:51 +0000904 ? diag::warn_cxx11_compat_constexpr_local_var
905 : diag::ext_constexpr_local_var)
Richard Smitheb3c10c2011-10-01 02:31:28 +0000906 << isa<CXXConstructorDecl>(Dcl);
Richard Smithd9f663b2013-04-22 15:31:51 +0000907 continue;
908 }
909
910 case Decl::NamespaceAlias:
911 case Decl::Function:
912 // These are disallowed in C++11 and permitted in C++1y. Allow them
913 // everywhere as an extension.
914 if (!Cxx1yLoc.isValid())
915 Cxx1yLoc = DS->getLocStart();
916 continue;
Richard Smitheb3c10c2011-10-01 02:31:28 +0000917
918 default:
919 SemaRef.Diag(DS->getLocStart(), diag::err_constexpr_body_invalid_stmt)
920 << isa<CXXConstructorDecl>(Dcl);
921 return false;
922 }
923 }
924
925 return true;
926}
927
928/// Check that the given field is initialized within a constexpr constructor.
929///
930/// \param Dcl The constexpr constructor being checked.
931/// \param Field The field being checked. This may be a member of an anonymous
932/// struct or union nested within the class being checked.
933/// \param Inits All declarations, including anonymous struct/union members and
934/// indirect members, for which any initialization was provided.
935/// \param Diagnosed Set to true if an error is produced.
936static void CheckConstexprCtorInitializer(Sema &SemaRef,
937 const FunctionDecl *Dcl,
938 FieldDecl *Field,
939 llvm::SmallSet<Decl*, 16> &Inits,
940 bool &Diagnosed) {
Eli Friedmanb13e64e2013-06-28 21:07:41 +0000941 if (Field->isInvalidDecl())
942 return;
943
Douglas Gregor556e5862011-10-10 17:22:13 +0000944 if (Field->isUnnamedBitfield())
945 return;
Richard Smith4d59eeb2012-02-09 06:40:58 +0000946
Richard Smithab44d5b2013-12-10 08:25:00 +0000947 // Anonymous unions with no variant members and empty anonymous structs do not
948 // need to be explicitly initialized. FIXME: Anonymous structs that contain no
949 // indirect fields don't need initializing.
Richard Smith4d59eeb2012-02-09 06:40:58 +0000950 if (Field->isAnonymousStructOrUnion() &&
Richard Smithab44d5b2013-12-10 08:25:00 +0000951 (Field->getType()->isUnionType()
952 ? !Field->getType()->getAsCXXRecordDecl()->hasVariantMembers()
953 : Field->getType()->getAsCXXRecordDecl()->isEmpty()))
Richard Smith4d59eeb2012-02-09 06:40:58 +0000954 return;
955
Richard Smitheb3c10c2011-10-01 02:31:28 +0000956 if (!Inits.count(Field)) {
957 if (!Diagnosed) {
958 SemaRef.Diag(Dcl->getLocation(), diag::err_constexpr_ctor_missing_init);
959 Diagnosed = true;
960 }
961 SemaRef.Diag(Field->getLocation(), diag::note_constexpr_ctor_missing_init);
962 } else if (Field->isAnonymousStructOrUnion()) {
963 const RecordDecl *RD = Field->getType()->castAs<RecordType>()->getDecl();
Aaron Ballmane8a8bae2014-03-08 20:12:42 +0000964 for (auto *I : RD->fields())
Richard Smitheb3c10c2011-10-01 02:31:28 +0000965 // If an anonymous union contains an anonymous struct of which any member
966 // is initialized, all members must be initialized.
Aaron Ballmane8a8bae2014-03-08 20:12:42 +0000967 if (!RD->isUnion() || Inits.count(I))
968 CheckConstexprCtorInitializer(SemaRef, Dcl, I, Inits, Diagnosed);
Richard Smitheb3c10c2011-10-01 02:31:28 +0000969 }
970}
971
Richard Smithd9f663b2013-04-22 15:31:51 +0000972/// Check the provided statement is allowed in a constexpr function
973/// definition.
974static bool
975CheckConstexprFunctionStmt(Sema &SemaRef, const FunctionDecl *Dcl, Stmt *S,
Robert Wilhelmb869a8f2013-08-10 12:33:24 +0000976 SmallVectorImpl<SourceLocation> &ReturnStmts,
Richard Smithd9f663b2013-04-22 15:31:51 +0000977 SourceLocation &Cxx1yLoc) {
978 // - its function-body shall be [...] a compound-statement that contains only
979 switch (S->getStmtClass()) {
980 case Stmt::NullStmtClass:
981 // - null statements,
982 return true;
983
984 case Stmt::DeclStmtClass:
985 // - static_assert-declarations
986 // - using-declarations,
987 // - using-directives,
988 // - typedef declarations and alias-declarations that do not define
989 // classes or enumerations,
990 if (!CheckConstexprDeclStmt(SemaRef, Dcl, cast<DeclStmt>(S), Cxx1yLoc))
991 return false;
992 return true;
993
994 case Stmt::ReturnStmtClass:
995 // - and exactly one return statement;
996 if (isa<CXXConstructorDecl>(Dcl)) {
997 // C++1y allows return statements in constexpr constructors.
998 if (!Cxx1yLoc.isValid())
999 Cxx1yLoc = S->getLocStart();
1000 return true;
1001 }
1002
1003 ReturnStmts.push_back(S->getLocStart());
1004 return true;
1005
1006 case Stmt::CompoundStmtClass: {
1007 // C++1y allows compound-statements.
1008 if (!Cxx1yLoc.isValid())
1009 Cxx1yLoc = S->getLocStart();
1010
1011 CompoundStmt *CompStmt = cast<CompoundStmt>(S);
Aaron Ballmanc7e4e212014-03-17 14:19:37 +00001012 for (auto *BodyIt : CompStmt->body()) {
1013 if (!CheckConstexprFunctionStmt(SemaRef, Dcl, BodyIt, ReturnStmts,
Richard Smithd9f663b2013-04-22 15:31:51 +00001014 Cxx1yLoc))
1015 return false;
1016 }
1017 return true;
1018 }
1019
1020 case Stmt::AttributedStmtClass:
1021 if (!Cxx1yLoc.isValid())
1022 Cxx1yLoc = S->getLocStart();
1023 return true;
1024
1025 case Stmt::IfStmtClass: {
1026 // C++1y allows if-statements.
1027 if (!Cxx1yLoc.isValid())
1028 Cxx1yLoc = S->getLocStart();
1029
1030 IfStmt *If = cast<IfStmt>(S);
1031 if (!CheckConstexprFunctionStmt(SemaRef, Dcl, If->getThen(), ReturnStmts,
1032 Cxx1yLoc))
1033 return false;
1034 if (If->getElse() &&
1035 !CheckConstexprFunctionStmt(SemaRef, Dcl, If->getElse(), ReturnStmts,
1036 Cxx1yLoc))
1037 return false;
1038 return true;
1039 }
1040
1041 case Stmt::WhileStmtClass:
1042 case Stmt::DoStmtClass:
1043 case Stmt::ForStmtClass:
1044 case Stmt::CXXForRangeStmtClass:
1045 case Stmt::ContinueStmtClass:
1046 // C++1y allows all of these. We don't allow them as extensions in C++11,
1047 // because they don't make sense without variable mutation.
Aaron Ballmandd69ef32014-08-19 15:55:55 +00001048 if (!SemaRef.getLangOpts().CPlusPlus14)
Richard Smithd9f663b2013-04-22 15:31:51 +00001049 break;
1050 if (!Cxx1yLoc.isValid())
1051 Cxx1yLoc = S->getLocStart();
1052 for (Stmt::child_range Children = S->children(); Children; ++Children)
1053 if (*Children &&
1054 !CheckConstexprFunctionStmt(SemaRef, Dcl, *Children, ReturnStmts,
1055 Cxx1yLoc))
1056 return false;
1057 return true;
1058
1059 case Stmt::SwitchStmtClass:
1060 case Stmt::CaseStmtClass:
1061 case Stmt::DefaultStmtClass:
1062 case Stmt::BreakStmtClass:
1063 // C++1y allows switch-statements, and since they don't need variable
1064 // mutation, we can reasonably allow them in C++11 as an extension.
1065 if (!Cxx1yLoc.isValid())
1066 Cxx1yLoc = S->getLocStart();
1067 for (Stmt::child_range Children = S->children(); Children; ++Children)
1068 if (*Children &&
1069 !CheckConstexprFunctionStmt(SemaRef, Dcl, *Children, ReturnStmts,
1070 Cxx1yLoc))
1071 return false;
1072 return true;
1073
1074 default:
1075 if (!isa<Expr>(S))
1076 break;
1077
1078 // C++1y allows expression-statements.
1079 if (!Cxx1yLoc.isValid())
1080 Cxx1yLoc = S->getLocStart();
1081 return true;
1082 }
1083
1084 SemaRef.Diag(S->getLocStart(), diag::err_constexpr_body_invalid_stmt)
1085 << isa<CXXConstructorDecl>(Dcl);
1086 return false;
1087}
1088
Richard Smitheb3c10c2011-10-01 02:31:28 +00001089/// Check the body for the given constexpr function declaration only contains
1090/// the permitted types of statement. C++11 [dcl.constexpr]p3,p4.
1091///
1092/// \return true if the body is OK, false if we have diagnosed a problem.
Richard Smith3607ffe2012-02-13 03:54:03 +00001093bool Sema::CheckConstexprFunctionBody(const FunctionDecl *Dcl, Stmt *Body) {
Richard Smitheb3c10c2011-10-01 02:31:28 +00001094 if (isa<CXXTryStmt>(Body)) {
Richard Smith74388b42012-02-04 00:33:54 +00001095 // C++11 [dcl.constexpr]p3:
Richard Smitheb3c10c2011-10-01 02:31:28 +00001096 // The definition of a constexpr function shall satisfy the following
1097 // constraints: [...]
1098 // - its function-body shall be = delete, = default, or a
1099 // compound-statement
1100 //
Richard Smith74388b42012-02-04 00:33:54 +00001101 // C++11 [dcl.constexpr]p4:
Richard Smitheb3c10c2011-10-01 02:31:28 +00001102 // In the definition of a constexpr constructor, [...]
1103 // - its function-body shall not be a function-try-block;
1104 Diag(Body->getLocStart(), diag::err_constexpr_function_try_block)
1105 << isa<CXXConstructorDecl>(Dcl);
1106 return false;
1107 }
1108
Dmitri Gribenkof8579502013-01-12 19:30:44 +00001109 SmallVector<SourceLocation, 4> ReturnStmts;
Richard Smithd9f663b2013-04-22 15:31:51 +00001110
1111 // - its function-body shall be [...] a compound-statement that contains only
1112 // [... list of cases ...]
1113 CompoundStmt *CompBody = cast<CompoundStmt>(Body);
1114 SourceLocation Cxx1yLoc;
Aaron Ballmanc7e4e212014-03-17 14:19:37 +00001115 for (auto *BodyIt : CompBody->body()) {
1116 if (!CheckConstexprFunctionStmt(*this, Dcl, BodyIt, ReturnStmts, Cxx1yLoc))
Richard Smithd9f663b2013-04-22 15:31:51 +00001117 return false;
Richard Smitheb3c10c2011-10-01 02:31:28 +00001118 }
1119
Richard Smithd9f663b2013-04-22 15:31:51 +00001120 if (Cxx1yLoc.isValid())
1121 Diag(Cxx1yLoc,
Aaron Ballmandd69ef32014-08-19 15:55:55 +00001122 getLangOpts().CPlusPlus14
Richard Smithd9f663b2013-04-22 15:31:51 +00001123 ? diag::warn_cxx11_compat_constexpr_body_invalid_stmt
1124 : diag::ext_constexpr_body_invalid_stmt)
1125 << isa<CXXConstructorDecl>(Dcl);
1126
Richard Smitheb3c10c2011-10-01 02:31:28 +00001127 if (const CXXConstructorDecl *Constructor
1128 = dyn_cast<CXXConstructorDecl>(Dcl)) {
1129 const CXXRecordDecl *RD = Constructor->getParent();
Richard Smith4d59eeb2012-02-09 06:40:58 +00001130 // DR1359:
1131 // - every non-variant non-static data member and base class sub-object
1132 // shall be initialized;
Richard Smithab44d5b2013-12-10 08:25:00 +00001133 // DR1460:
1134 // - if the class is a union having variant members, exactly one of them
Richard Smith4d59eeb2012-02-09 06:40:58 +00001135 // shall be initialized;
Richard Smitheb3c10c2011-10-01 02:31:28 +00001136 if (RD->isUnion()) {
Richard Smithab44d5b2013-12-10 08:25:00 +00001137 if (Constructor->getNumCtorInitializers() == 0 &&
1138 RD->hasVariantMembers()) {
Richard Smitheb3c10c2011-10-01 02:31:28 +00001139 Diag(Dcl->getLocation(), diag::err_constexpr_union_ctor_no_init);
1140 return false;
1141 }
Richard Smithf368fb42011-10-10 16:38:04 +00001142 } else if (!Constructor->isDependentContext() &&
1143 !Constructor->isDelegatingConstructor()) {
Richard Smitheb3c10c2011-10-01 02:31:28 +00001144 assert(RD->getNumVBases() == 0 && "constexpr ctor with virtual bases");
1145
1146 // Skip detailed checking if we have enough initializers, and we would
1147 // allow at most one initializer per member.
1148 bool AnyAnonStructUnionMembers = false;
1149 unsigned Fields = 0;
1150 for (CXXRecordDecl::field_iterator I = RD->field_begin(),
1151 E = RD->field_end(); I != E; ++I, ++Fields) {
David Blaikie2d7c57e2012-04-30 02:36:29 +00001152 if (I->isAnonymousStructOrUnion()) {
Richard Smitheb3c10c2011-10-01 02:31:28 +00001153 AnyAnonStructUnionMembers = true;
1154 break;
1155 }
1156 }
Richard Smithab44d5b2013-12-10 08:25:00 +00001157 // DR1460:
1158 // - if the class is a union-like class, but is not a union, for each of
1159 // its anonymous union members having variant members, exactly one of
1160 // them shall be initialized;
Richard Smitheb3c10c2011-10-01 02:31:28 +00001161 if (AnyAnonStructUnionMembers ||
1162 Constructor->getNumCtorInitializers() != RD->getNumBases() + Fields) {
1163 // Check initialization of non-static data members. Base classes are
1164 // always initialized so do not need to be checked. Dependent bases
1165 // might not have initializers in the member initializer list.
1166 llvm::SmallSet<Decl*, 16> Inits;
Aaron Ballman0ad78302014-03-13 17:34:31 +00001167 for (const auto *I: Constructor->inits()) {
1168 if (FieldDecl *FD = I->getMember())
Richard Smitheb3c10c2011-10-01 02:31:28 +00001169 Inits.insert(FD);
Aaron Ballman0ad78302014-03-13 17:34:31 +00001170 else if (IndirectFieldDecl *ID = I->getIndirectMember())
Richard Smitheb3c10c2011-10-01 02:31:28 +00001171 Inits.insert(ID->chain_begin(), ID->chain_end());
1172 }
1173
1174 bool Diagnosed = false;
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00001175 for (auto *I : RD->fields())
1176 CheckConstexprCtorInitializer(*this, Dcl, I, Inits, Diagnosed);
Richard Smitheb3c10c2011-10-01 02:31:28 +00001177 if (Diagnosed)
1178 return false;
1179 }
1180 }
Richard Smitheb3c10c2011-10-01 02:31:28 +00001181 } else {
1182 if (ReturnStmts.empty()) {
Richard Smithd9f663b2013-04-22 15:31:51 +00001183 // C++1y doesn't require constexpr functions to contain a 'return'
Richard Smith06ffb452014-04-22 23:14:23 +00001184 // statement. We still do, unless the return type might be void, because
Richard Smithd9f663b2013-04-22 15:31:51 +00001185 // otherwise if there's no return statement, the function cannot
1186 // be used in a core constant expression.
Aaron Ballmandd69ef32014-08-19 15:55:55 +00001187 bool OK = getLangOpts().CPlusPlus14 &&
Richard Smith06ffb452014-04-22 23:14:23 +00001188 (Dcl->getReturnType()->isVoidType() ||
1189 Dcl->getReturnType()->isDependentType());
Richard Smithd9f663b2013-04-22 15:31:51 +00001190 Diag(Dcl->getLocation(),
Richard Smith3da88fa2013-04-26 14:36:30 +00001191 OK ? diag::warn_cxx11_compat_constexpr_body_no_return
1192 : diag::err_constexpr_body_no_return);
1193 return OK;
Richard Smitheb3c10c2011-10-01 02:31:28 +00001194 }
1195 if (ReturnStmts.size() > 1) {
Richard Smithd9f663b2013-04-22 15:31:51 +00001196 Diag(ReturnStmts.back(),
Aaron Ballmandd69ef32014-08-19 15:55:55 +00001197 getLangOpts().CPlusPlus14
Richard Smithd9f663b2013-04-22 15:31:51 +00001198 ? diag::warn_cxx11_compat_constexpr_body_multiple_return
1199 : diag::ext_constexpr_body_multiple_return);
Richard Smitheb3c10c2011-10-01 02:31:28 +00001200 for (unsigned I = 0; I < ReturnStmts.size() - 1; ++I)
1201 Diag(ReturnStmts[I], diag::note_constexpr_body_previous_return);
Richard Smitheb3c10c2011-10-01 02:31:28 +00001202 }
1203 }
1204
Richard Smith74388b42012-02-04 00:33:54 +00001205 // C++11 [dcl.constexpr]p5:
1206 // if no function argument values exist such that the function invocation
1207 // substitution would produce a constant expression, the program is
1208 // ill-formed; no diagnostic required.
1209 // C++11 [dcl.constexpr]p3:
1210 // - every constructor call and implicit conversion used in initializing the
1211 // return value shall be one of those allowed in a constant expression.
1212 // C++11 [dcl.constexpr]p4:
1213 // - every constructor involved in initializing non-static data members and
1214 // base class sub-objects shall be a constexpr constructor.
Dmitri Gribenkof8579502013-01-12 19:30:44 +00001215 SmallVector<PartialDiagnosticAt, 8> Diags;
Richard Smith3607ffe2012-02-13 03:54:03 +00001216 if (!Expr::isPotentialConstantExpr(Dcl, Diags)) {
Richard Smithf86b5dc2012-12-09 05:55:43 +00001217 Diag(Dcl->getLocation(), diag::ext_constexpr_function_never_constant_expr)
Richard Smith253c2a32012-01-27 01:14:48 +00001218 << isa<CXXConstructorDecl>(Dcl);
1219 for (size_t I = 0, N = Diags.size(); I != N; ++I)
1220 Diag(Diags[I].first, Diags[I].second);
Richard Smithf86b5dc2012-12-09 05:55:43 +00001221 // Don't return false here: we allow this for compatibility in
1222 // system headers.
Richard Smith253c2a32012-01-27 01:14:48 +00001223 }
1224
Richard Smitheb3c10c2011-10-01 02:31:28 +00001225 return true;
1226}
1227
Douglas Gregor61956c42008-10-31 09:07:45 +00001228/// isCurrentClassName - Determine whether the identifier II is the
1229/// name of the class type currently being defined. In the case of
1230/// nested classes, this will only return true if II is the name of
1231/// the innermost class.
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00001232bool Sema::isCurrentClassName(const IdentifierInfo &II, Scope *,
1233 const CXXScopeSpec *SS) {
David Blaikiebbafb8a2012-03-11 07:00:24 +00001234 assert(getLangOpts().CPlusPlus && "No class names in C!");
Douglas Gregor411e5ac2010-01-11 23:29:10 +00001235
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +00001236 CXXRecordDecl *CurDecl;
Douglas Gregor52537682009-03-19 00:18:19 +00001237 if (SS && SS->isSet() && !SS->isInvalid()) {
Douglas Gregore5bbb7d2009-08-21 22:16:40 +00001238 DeclContext *DC = computeDeclContext(*SS, true);
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +00001239 CurDecl = dyn_cast_or_null<CXXRecordDecl>(DC);
1240 } else
1241 CurDecl = dyn_cast_or_null<CXXRecordDecl>(CurContext);
1242
Douglas Gregor1aa3edb2010-02-05 06:12:42 +00001243 if (CurDecl && CurDecl->getIdentifier())
Douglas Gregor61956c42008-10-31 09:07:45 +00001244 return &II == CurDecl->getIdentifier();
Benjamin Kramer8bf44352013-07-24 15:28:33 +00001245 return false;
Douglas Gregor61956c42008-10-31 09:07:45 +00001246}
1247
Richard Smithfb8b7b92013-10-15 00:00:26 +00001248/// \brief Determine whether the identifier II is a typo for the name of
1249/// the class type currently being defined. If so, update it to the identifier
1250/// that should have been used.
1251bool Sema::isCurrentClassNameTypo(IdentifierInfo *&II, const CXXScopeSpec *SS) {
1252 assert(getLangOpts().CPlusPlus && "No class names in C!");
1253
1254 if (!getLangOpts().SpellChecking)
1255 return false;
1256
1257 CXXRecordDecl *CurDecl;
1258 if (SS && SS->isSet() && !SS->isInvalid()) {
1259 DeclContext *DC = computeDeclContext(*SS, true);
1260 CurDecl = dyn_cast_or_null<CXXRecordDecl>(DC);
1261 } else
1262 CurDecl = dyn_cast_or_null<CXXRecordDecl>(CurContext);
1263
1264 if (CurDecl && CurDecl->getIdentifier() && II != CurDecl->getIdentifier() &&
1265 3 * II->getName().edit_distance(CurDecl->getIdentifier()->getName())
1266 < II->getLength()) {
1267 II = CurDecl->getIdentifier();
1268 return true;
1269 }
1270
1271 return false;
1272}
1273
Douglas Gregordc974572012-11-10 07:24:09 +00001274/// \brief Determine whether the given class is a base class of the given
1275/// class, including looking at dependent bases.
1276static bool findCircularInheritance(const CXXRecordDecl *Class,
1277 const CXXRecordDecl *Current) {
1278 SmallVector<const CXXRecordDecl*, 8> Queue;
1279
1280 Class = Class->getCanonicalDecl();
1281 while (true) {
Aaron Ballman574705e2014-03-13 15:41:46 +00001282 for (const auto &I : Current->bases()) {
1283 CXXRecordDecl *Base = I.getType()->getAsCXXRecordDecl();
Douglas Gregordc974572012-11-10 07:24:09 +00001284 if (!Base)
1285 continue;
1286
1287 Base = Base->getDefinition();
1288 if (!Base)
1289 continue;
1290
1291 if (Base->getCanonicalDecl() == Class)
1292 return true;
1293
1294 Queue.push_back(Base);
1295 }
1296
1297 if (Queue.empty())
1298 return false;
1299
Robert Wilhelm25284cc2013-08-23 16:11:15 +00001300 Current = Queue.pop_back_val();
Douglas Gregordc974572012-11-10 07:24:09 +00001301 }
1302
1303 return false;
Douglas Gregor62004702012-11-10 01:18:17 +00001304}
1305
Hans Wennborg9bea9cc2014-06-25 18:25:57 +00001306/// \brief Perform propagation of DLL attributes from a derived class to a
1307/// templated base class for MS compatibility.
1308static void propagateDLLAttrToBaseClassTemplate(
1309 Sema &S, CXXRecordDecl *Class, Attr *ClassAttr,
1310 ClassTemplateSpecializationDecl *BaseTemplateSpec, SourceLocation BaseLoc) {
1311 if (getDLLAttr(
1312 BaseTemplateSpec->getSpecializedTemplate()->getTemplatedDecl())) {
1313 // If the base class template has a DLL attribute, don't try to change it.
1314 return;
1315 }
1316
1317 if (BaseTemplateSpec->getSpecializationKind() == TSK_Undeclared) {
1318 // If the base class is not already specialized, we can do the propagation.
1319 auto *NewAttr = cast<InheritableAttr>(ClassAttr->clone(S.getASTContext()));
1320 NewAttr->setInherited(true);
1321 BaseTemplateSpec->addAttr(NewAttr);
1322 return;
1323 }
1324
1325 bool DifferentAttribute = false;
1326 if (Attr *SpecializationAttr = getDLLAttr(BaseTemplateSpec)) {
1327 if (!SpecializationAttr->isInherited()) {
1328 // The template has previously been specialized or instantiated with an
1329 // explicit attribute. We should not try to change it.
1330 return;
1331 }
1332 if (SpecializationAttr->getKind() == ClassAttr->getKind()) {
1333 // The specialization already has the right attribute.
1334 return;
1335 }
1336 DifferentAttribute = true;
1337 }
1338
1339 // The template was previously instantiated or explicitly specialized without
1340 // a dll attribute, or the template was previously instantiated with a
1341 // different inherited attribute. It's too late for us to change the
1342 // attribute, so warn that this is unsupported.
1343 S.Diag(BaseLoc, diag::warn_attribute_dll_instantiated_base_class)
1344 << BaseTemplateSpec->isExplicitSpecialization() << DifferentAttribute;
1345 S.Diag(ClassAttr->getLocation(), diag::note_attribute);
1346 if (BaseTemplateSpec->isExplicitSpecialization()) {
1347 S.Diag(BaseTemplateSpec->getLocation(),
1348 diag::note_template_class_explicit_specialization_was_here)
1349 << BaseTemplateSpec;
1350 } else {
1351 S.Diag(BaseTemplateSpec->getPointOfInstantiation(),
1352 diag::note_template_class_instantiation_was_here)
1353 << BaseTemplateSpec;
1354 }
1355}
1356
Mike Stump11289f42009-09-09 15:08:12 +00001357/// \brief Check the validity of a C++ base class specifier.
Douglas Gregor463421d2009-03-03 04:44:36 +00001358///
1359/// \returns a new CXXBaseSpecifier if well-formed, emits diagnostics
1360/// and returns NULL otherwise.
1361CXXBaseSpecifier *
1362Sema::CheckBaseSpecifier(CXXRecordDecl *Class,
1363 SourceRange SpecifierRange,
1364 bool Virtual, AccessSpecifier Access,
Douglas Gregor752a5952011-01-03 22:36:02 +00001365 TypeSourceInfo *TInfo,
1366 SourceLocation EllipsisLoc) {
Nick Lewycky19b9f952010-07-26 16:56:01 +00001367 QualType BaseType = TInfo->getType();
1368
Douglas Gregor463421d2009-03-03 04:44:36 +00001369 // C++ [class.union]p1:
1370 // A union shall not have base classes.
1371 if (Class->isUnion()) {
1372 Diag(Class->getLocation(), diag::err_base_clause_on_union)
1373 << SpecifierRange;
Craig Topperc3ec1492014-05-26 06:22:03 +00001374 return nullptr;
Douglas Gregor463421d2009-03-03 04:44:36 +00001375 }
1376
Douglas Gregor752a5952011-01-03 22:36:02 +00001377 if (EllipsisLoc.isValid() &&
1378 !TInfo->getType()->containsUnexpandedParameterPack()) {
1379 Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs)
1380 << TInfo->getTypeLoc().getSourceRange();
1381 EllipsisLoc = SourceLocation();
1382 }
Douglas Gregor62004702012-11-10 01:18:17 +00001383
1384 SourceLocation BaseLoc = TInfo->getTypeLoc().getBeginLoc();
1385
1386 if (BaseType->isDependentType()) {
1387 // Make sure that we don't have circular inheritance among our dependent
1388 // bases. For non-dependent bases, the check for completeness below handles
1389 // this.
1390 if (CXXRecordDecl *BaseDecl = BaseType->getAsCXXRecordDecl()) {
1391 if (BaseDecl->getCanonicalDecl() == Class->getCanonicalDecl() ||
1392 ((BaseDecl = BaseDecl->getDefinition()) &&
Douglas Gregordc974572012-11-10 07:24:09 +00001393 findCircularInheritance(Class, BaseDecl))) {
Douglas Gregor62004702012-11-10 01:18:17 +00001394 Diag(BaseLoc, diag::err_circular_inheritance)
1395 << BaseType << Context.getTypeDeclType(Class);
1396
1397 if (BaseDecl->getCanonicalDecl() != Class->getCanonicalDecl())
1398 Diag(BaseDecl->getLocation(), diag::note_previous_decl)
1399 << BaseType;
Craig Topperc3ec1492014-05-26 06:22:03 +00001400
1401 return nullptr;
Douglas Gregor62004702012-11-10 01:18:17 +00001402 }
1403 }
1404
Mike Stump11289f42009-09-09 15:08:12 +00001405 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
Nick Lewycky19b9f952010-07-26 16:56:01 +00001406 Class->getTagKind() == TTK_Class,
Douglas Gregor752a5952011-01-03 22:36:02 +00001407 Access, TInfo, EllipsisLoc);
Douglas Gregor62004702012-11-10 01:18:17 +00001408 }
Douglas Gregor463421d2009-03-03 04:44:36 +00001409
1410 // Base specifiers must be record types.
1411 if (!BaseType->isRecordType()) {
1412 Diag(BaseLoc, diag::err_base_must_be_class) << SpecifierRange;
Craig Topperc3ec1492014-05-26 06:22:03 +00001413 return nullptr;
Douglas Gregor463421d2009-03-03 04:44:36 +00001414 }
1415
1416 // C++ [class.union]p1:
1417 // A union shall not be used as a base class.
1418 if (BaseType->isUnionType()) {
1419 Diag(BaseLoc, diag::err_union_as_base_class) << SpecifierRange;
Craig Topperc3ec1492014-05-26 06:22:03 +00001420 return nullptr;
Douglas Gregor463421d2009-03-03 04:44:36 +00001421 }
1422
Hans Wennborg9bea9cc2014-06-25 18:25:57 +00001423 // For the MS ABI, propagate DLL attributes to base class templates.
1424 if (Context.getTargetInfo().getCXXABI().isMicrosoft()) {
1425 if (Attr *ClassAttr = getDLLAttr(Class)) {
1426 if (auto *BaseTemplate = dyn_cast_or_null<ClassTemplateSpecializationDecl>(
1427 BaseType->getAsCXXRecordDecl())) {
1428 propagateDLLAttrToBaseClassTemplate(*this, Class, ClassAttr,
1429 BaseTemplate, BaseLoc);
1430 }
1431 }
1432 }
1433
Douglas Gregor463421d2009-03-03 04:44:36 +00001434 // C++ [class.derived]p2:
1435 // The class-name in a base-specifier shall not be an incompletely
1436 // defined class.
Mike Stump11289f42009-09-09 15:08:12 +00001437 if (RequireCompleteType(BaseLoc, BaseType,
Douglas Gregor7bfb2d02012-05-04 16:32:21 +00001438 diag::err_incomplete_base_class, SpecifierRange)) {
John McCall3696dcb2010-08-17 07:23:57 +00001439 Class->setInvalidDecl();
Craig Topperc3ec1492014-05-26 06:22:03 +00001440 return nullptr;
John McCall3696dcb2010-08-17 07:23:57 +00001441 }
Douglas Gregor463421d2009-03-03 04:44:36 +00001442
Eli Friedmanc96d4962009-08-15 21:55:26 +00001443 // If the base class is polymorphic or isn't empty, the new one is/isn't, too.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001444 RecordDecl *BaseDecl = BaseType->getAs<RecordType>()->getDecl();
Douglas Gregor463421d2009-03-03 04:44:36 +00001445 assert(BaseDecl && "Record type has no declaration");
Douglas Gregor0a5a2212010-02-11 01:04:33 +00001446 BaseDecl = BaseDecl->getDefinition();
Douglas Gregor463421d2009-03-03 04:44:36 +00001447 assert(BaseDecl && "Base type is not incomplete, but has no definition");
David Majnemer626032f2013-06-22 06:43:58 +00001448 CXXRecordDecl *CXXBaseDecl = cast<CXXRecordDecl>(BaseDecl);
Eli Friedmanc96d4962009-08-15 21:55:26 +00001449 assert(CXXBaseDecl && "Base type is not a C++ type");
Eli Friedman89c038e2009-12-05 23:03:49 +00001450
David Majnemer9b1754d2013-11-02 12:00:36 +00001451 // A class which contains a flexible array member is not suitable for use as a
1452 // base class:
1453 // - If the layout determines that a base comes before another base,
1454 // the flexible array member would index into the subsequent base.
1455 // - If the layout determines that base comes before the derived class,
1456 // the flexible array member would index into the derived class.
1457 if (CXXBaseDecl->hasFlexibleArrayMember()) {
1458 Diag(BaseLoc, diag::err_base_class_has_flexible_array_member)
1459 << CXXBaseDecl->getDeclName();
Craig Topperc3ec1492014-05-26 06:22:03 +00001460 return nullptr;
David Majnemer9b1754d2013-11-02 12:00:36 +00001461 }
1462
Anders Carlsson65c76d32011-03-25 14:55:14 +00001463 // C++ [class]p3:
David Majnemer45897602013-11-02 11:24:41 +00001464 // If a class is marked final and it appears as a base-type-specifier in
Anders Carlsson65c76d32011-03-25 14:55:14 +00001465 // base-clause, the program is ill-formed.
David Majnemera5433082013-10-18 00:33:31 +00001466 if (FinalAttr *FA = CXXBaseDecl->getAttr<FinalAttr>()) {
David Majnemer45897602013-11-02 11:24:41 +00001467 Diag(BaseLoc, diag::err_class_marked_final_used_as_base)
David Majnemera5433082013-10-18 00:33:31 +00001468 << CXXBaseDecl->getDeclName()
1469 << FA->isSpelledAsSealed();
Alp Toker2afa8782014-05-28 12:20:14 +00001470 Diag(CXXBaseDecl->getLocation(), diag::note_entity_declared_at)
1471 << CXXBaseDecl->getDeclName() << FA->getRange();
Craig Topperc3ec1492014-05-26 06:22:03 +00001472 return nullptr;
Anders Carlssonfc1eef42011-01-22 17:51:53 +00001473 }
1474
John McCall3696dcb2010-08-17 07:23:57 +00001475 if (BaseDecl->isInvalidDecl())
1476 Class->setInvalidDecl();
David Majnemer45897602013-11-02 11:24:41 +00001477
Anders Carlssonae3c5cf2009-12-03 17:49:57 +00001478 // Create the base specifier.
Anders Carlssonae3c5cf2009-12-03 17:49:57 +00001479 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
Nick Lewycky19b9f952010-07-26 16:56:01 +00001480 Class->getTagKind() == TTK_Class,
Douglas Gregor752a5952011-01-03 22:36:02 +00001481 Access, TInfo, EllipsisLoc);
Anders Carlssonae3c5cf2009-12-03 17:49:57 +00001482}
1483
Douglas Gregor556877c2008-04-13 21:30:24 +00001484/// ActOnBaseSpecifier - Parsed a base specifier. A base specifier is
1485/// one entry in the base class list of a class specifier, for
Mike Stump11289f42009-09-09 15:08:12 +00001486/// example:
1487/// class foo : public bar, virtual private baz {
Douglas Gregor556877c2008-04-13 21:30:24 +00001488/// 'public bar' and 'virtual private baz' are each base-specifiers.
John McCallfaf5fb42010-08-26 23:41:50 +00001489BaseResult
John McCall48871652010-08-21 09:40:31 +00001490Sema::ActOnBaseSpecifier(Decl *classdecl, SourceRange SpecifierRange,
Richard Smith4c96e992013-02-19 23:47:15 +00001491 ParsedAttributes &Attributes,
Douglas Gregor29a92472008-10-22 17:49:05 +00001492 bool Virtual, AccessSpecifier Access,
Douglas Gregor752a5952011-01-03 22:36:02 +00001493 ParsedType basetype, SourceLocation BaseLoc,
1494 SourceLocation EllipsisLoc) {
Douglas Gregor71a57182009-06-22 23:20:33 +00001495 if (!classdecl)
1496 return true;
1497
Douglas Gregorc40290e2009-03-09 23:48:35 +00001498 AdjustDeclIfTemplate(classdecl);
John McCall48871652010-08-21 09:40:31 +00001499 CXXRecordDecl *Class = dyn_cast<CXXRecordDecl>(classdecl);
Douglas Gregorbeab56e2010-02-27 00:25:28 +00001500 if (!Class)
1501 return true;
1502
David Majnemer5ef4fe72014-06-13 06:43:46 +00001503 // We haven't yet attached the base specifiers.
1504 Class->setIsParsingBaseSpecifiers();
1505
Richard Smith4c96e992013-02-19 23:47:15 +00001506 // We do not support any C++11 attributes on base-specifiers yet.
1507 // Diagnose any attributes we see.
1508 if (!Attributes.empty()) {
1509 for (AttributeList *Attr = Attributes.getList(); Attr;
1510 Attr = Attr->getNext()) {
1511 if (Attr->isInvalid() ||
1512 Attr->getKind() == AttributeList::IgnoredAttribute)
1513 continue;
1514 Diag(Attr->getLoc(),
1515 Attr->getKind() == AttributeList::UnknownAttribute
1516 ? diag::warn_unknown_attribute_ignored
1517 : diag::err_base_specifier_attribute)
1518 << Attr->getName();
1519 }
1520 }
1521
Craig Topperc3ec1492014-05-26 06:22:03 +00001522 TypeSourceInfo *TInfo = nullptr;
Nick Lewycky19b9f952010-07-26 16:56:01 +00001523 GetTypeFromParser(basetype, &TInfo);
Douglas Gregor506bd562010-12-13 22:49:22 +00001524
Douglas Gregor752a5952011-01-03 22:36:02 +00001525 if (EllipsisLoc.isInvalid() &&
1526 DiagnoseUnexpandedParameterPack(SpecifierRange.getBegin(), TInfo,
Douglas Gregor506bd562010-12-13 22:49:22 +00001527 UPPC_BaseType))
1528 return true;
Douglas Gregor752a5952011-01-03 22:36:02 +00001529
Douglas Gregor463421d2009-03-03 04:44:36 +00001530 if (CXXBaseSpecifier *BaseSpec = CheckBaseSpecifier(Class, SpecifierRange,
Douglas Gregor752a5952011-01-03 22:36:02 +00001531 Virtual, Access, TInfo,
1532 EllipsisLoc))
Douglas Gregor463421d2009-03-03 04:44:36 +00001533 return BaseSpec;
Douglas Gregorb9b8b812012-07-02 21:00:41 +00001534 else
1535 Class->setInvalidDecl();
Mike Stump11289f42009-09-09 15:08:12 +00001536
Douglas Gregor463421d2009-03-03 04:44:36 +00001537 return true;
Douglas Gregor29a92472008-10-22 17:49:05 +00001538}
Douglas Gregor556877c2008-04-13 21:30:24 +00001539
Douglas Gregor463421d2009-03-03 04:44:36 +00001540/// \brief Performs the actual work of attaching the given base class
1541/// specifiers to a C++ class.
1542bool Sema::AttachBaseSpecifiers(CXXRecordDecl *Class, CXXBaseSpecifier **Bases,
1543 unsigned NumBases) {
1544 if (NumBases == 0)
1545 return false;
Douglas Gregor29a92472008-10-22 17:49:05 +00001546
1547 // Used to keep track of which base types we have already seen, so
1548 // that we can properly diagnose redundant direct base types. Note
Douglas Gregor9d6290b2008-10-23 18:13:27 +00001549 // that the key is always the unqualified canonical type of the base
1550 // class.
Douglas Gregor29a92472008-10-22 17:49:05 +00001551 std::map<QualType, CXXBaseSpecifier*, QualTypeOrdering> KnownBaseTypes;
1552
1553 // Copy non-redundant base specifiers into permanent storage.
Douglas Gregor9d6290b2008-10-23 18:13:27 +00001554 unsigned NumGoodBases = 0;
Douglas Gregor463421d2009-03-03 04:44:36 +00001555 bool Invalid = false;
Douglas Gregor9d6290b2008-10-23 18:13:27 +00001556 for (unsigned idx = 0; idx < NumBases; ++idx) {
Mike Stump11289f42009-09-09 15:08:12 +00001557 QualType NewBaseType
Douglas Gregor463421d2009-03-03 04:44:36 +00001558 = Context.getCanonicalType(Bases[idx]->getType());
Douglas Gregor1b8fe5b72009-11-16 21:35:15 +00001559 NewBaseType = NewBaseType.getLocalUnqualifiedType();
Benjamin Kramer73ecd702012-03-05 17:20:04 +00001560
1561 CXXBaseSpecifier *&KnownBase = KnownBaseTypes[NewBaseType];
1562 if (KnownBase) {
Douglas Gregor29a92472008-10-22 17:49:05 +00001563 // C++ [class.mi]p3:
1564 // A class shall not be specified as a direct base class of a
1565 // derived class more than once.
Daniel Dunbar62ee6412012-03-09 18:35:03 +00001566 Diag(Bases[idx]->getLocStart(),
Chris Lattner3b054132008-11-19 05:08:23 +00001567 diag::err_duplicate_base_class)
Benjamin Kramer73ecd702012-03-05 17:20:04 +00001568 << KnownBase->getType()
Douglas Gregor463421d2009-03-03 04:44:36 +00001569 << Bases[idx]->getSourceRange();
Douglas Gregor9d6290b2008-10-23 18:13:27 +00001570
1571 // Delete the duplicate base class specifier; we're going to
1572 // overwrite its pointer later.
Douglas Gregorb77af8f2009-07-22 20:55:49 +00001573 Context.Deallocate(Bases[idx]);
Douglas Gregor463421d2009-03-03 04:44:36 +00001574
1575 Invalid = true;
Douglas Gregor29a92472008-10-22 17:49:05 +00001576 } else {
1577 // Okay, add this new base class.
Benjamin Kramer73ecd702012-03-05 17:20:04 +00001578 KnownBase = Bases[idx];
Douglas Gregor463421d2009-03-03 04:44:36 +00001579 Bases[NumGoodBases++] = Bases[idx];
John McCalldb632ac2012-09-25 07:32:39 +00001580 if (const RecordType *Record = NewBaseType->getAs<RecordType>()) {
1581 const CXXRecordDecl *RD = cast<CXXRecordDecl>(Record->getDecl());
1582 if (Class->isInterface() &&
1583 (!RD->isInterface() ||
1584 KnownBase->getAccessSpecifier() != AS_public)) {
1585 // The Microsoft extension __interface does not permit bases that
1586 // are not themselves public interfaces.
1587 Diag(KnownBase->getLocStart(), diag::err_invalid_base_in_interface)
1588 << getRecordDiagFromTagKind(RD->getTagKind()) << RD->getName()
1589 << RD->getSourceRange();
1590 Invalid = true;
1591 }
1592 if (RD->hasAttr<WeakAttr>())
Aaron Ballman36a53502014-01-16 13:03:14 +00001593 Class->addAttr(WeakAttr::CreateImplicit(Context));
John McCalldb632ac2012-09-25 07:32:39 +00001594 }
Douglas Gregor29a92472008-10-22 17:49:05 +00001595 }
1596 }
1597
1598 // Attach the remaining base class specifiers to the derived class.
Douglas Gregor4a62bdf2010-02-11 01:30:34 +00001599 Class->setBases(Bases, NumGoodBases);
Douglas Gregor9d6290b2008-10-23 18:13:27 +00001600
1601 // Delete the remaining (good) base class specifiers, since their
1602 // data has been copied into the CXXRecordDecl.
1603 for (unsigned idx = 0; idx < NumGoodBases; ++idx)
Douglas Gregorb77af8f2009-07-22 20:55:49 +00001604 Context.Deallocate(Bases[idx]);
Douglas Gregor463421d2009-03-03 04:44:36 +00001605
1606 return Invalid;
1607}
1608
1609/// ActOnBaseSpecifiers - Attach the given base specifiers to the
1610/// class, after checking whether there are any duplicate base
1611/// classes.
Richard Trieu9becef62011-09-09 03:18:59 +00001612void Sema::ActOnBaseSpecifiers(Decl *ClassDecl, CXXBaseSpecifier **Bases,
Douglas Gregor463421d2009-03-03 04:44:36 +00001613 unsigned NumBases) {
1614 if (!ClassDecl || !Bases || !NumBases)
1615 return;
1616
1617 AdjustDeclIfTemplate(ClassDecl);
Robert Wilhelme3cea802013-07-22 05:04:01 +00001618 AttachBaseSpecifiers(cast<CXXRecordDecl>(ClassDecl), Bases, NumBases);
Douglas Gregor556877c2008-04-13 21:30:24 +00001619}
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00001620
Douglas Gregor36d1b142009-10-06 17:59:45 +00001621/// \brief Determine whether the type \p Derived is a C++ class that is
1622/// derived from the type \p Base.
1623bool Sema::IsDerivedFrom(QualType Derived, QualType Base) {
David Blaikiebbafb8a2012-03-11 07:00:24 +00001624 if (!getLangOpts().CPlusPlus)
Douglas Gregor36d1b142009-10-06 17:59:45 +00001625 return false;
John McCalle78aac42010-03-10 03:28:59 +00001626
Douglas Gregor45bb4832013-03-26 23:36:30 +00001627 CXXRecordDecl *DerivedRD = Derived->getAsCXXRecordDecl();
John McCalle78aac42010-03-10 03:28:59 +00001628 if (!DerivedRD)
Douglas Gregor36d1b142009-10-06 17:59:45 +00001629 return false;
1630
Douglas Gregor45bb4832013-03-26 23:36:30 +00001631 CXXRecordDecl *BaseRD = Base->getAsCXXRecordDecl();
John McCalle78aac42010-03-10 03:28:59 +00001632 if (!BaseRD)
Douglas Gregor36d1b142009-10-06 17:59:45 +00001633 return false;
Douglas Gregor45bb4832013-03-26 23:36:30 +00001634
1635 // If either the base or the derived type is invalid, don't try to
1636 // check whether one is derived from the other.
1637 if (BaseRD->isInvalidDecl() || DerivedRD->isInvalidDecl())
1638 return false;
1639
John McCall67da35c2010-02-04 22:26:26 +00001640 // FIXME: instantiate DerivedRD if necessary. We need a PoI for this.
1641 return DerivedRD->hasDefinition() && DerivedRD->isDerivedFrom(BaseRD);
Douglas Gregor36d1b142009-10-06 17:59:45 +00001642}
1643
1644/// \brief Determine whether the type \p Derived is a C++ class that is
1645/// derived from the type \p Base.
1646bool Sema::IsDerivedFrom(QualType Derived, QualType Base, CXXBasePaths &Paths) {
David Blaikiebbafb8a2012-03-11 07:00:24 +00001647 if (!getLangOpts().CPlusPlus)
Douglas Gregor36d1b142009-10-06 17:59:45 +00001648 return false;
1649
Douglas Gregor45bb4832013-03-26 23:36:30 +00001650 CXXRecordDecl *DerivedRD = Derived->getAsCXXRecordDecl();
John McCalle78aac42010-03-10 03:28:59 +00001651 if (!DerivedRD)
Douglas Gregor36d1b142009-10-06 17:59:45 +00001652 return false;
1653
Douglas Gregor45bb4832013-03-26 23:36:30 +00001654 CXXRecordDecl *BaseRD = Base->getAsCXXRecordDecl();
John McCalle78aac42010-03-10 03:28:59 +00001655 if (!BaseRD)
Douglas Gregor36d1b142009-10-06 17:59:45 +00001656 return false;
1657
Douglas Gregor36d1b142009-10-06 17:59:45 +00001658 return DerivedRD->isDerivedFrom(BaseRD, Paths);
1659}
1660
Anders Carlssona70cff62010-04-24 19:06:50 +00001661void Sema::BuildBasePathArray(const CXXBasePaths &Paths,
John McCallcf142162010-08-07 06:22:56 +00001662 CXXCastPath &BasePathArray) {
Anders Carlssona70cff62010-04-24 19:06:50 +00001663 assert(BasePathArray.empty() && "Base path array must be empty!");
1664 assert(Paths.isRecordingPaths() && "Must record paths!");
1665
1666 const CXXBasePath &Path = Paths.front();
1667
1668 // We first go backward and check if we have a virtual base.
1669 // FIXME: It would be better if CXXBasePath had the base specifier for
1670 // the nearest virtual base.
1671 unsigned Start = 0;
1672 for (unsigned I = Path.size(); I != 0; --I) {
1673 if (Path[I - 1].Base->isVirtual()) {
1674 Start = I - 1;
1675 break;
1676 }
1677 }
1678
1679 // Now add all bases.
1680 for (unsigned I = Start, E = Path.size(); I != E; ++I)
John McCallcf142162010-08-07 06:22:56 +00001681 BasePathArray.push_back(const_cast<CXXBaseSpecifier*>(Path[I].Base));
Anders Carlssona70cff62010-04-24 19:06:50 +00001682}
1683
Douglas Gregor88d292c2010-05-13 16:44:06 +00001684/// \brief Determine whether the given base path includes a virtual
1685/// base class.
John McCallcf142162010-08-07 06:22:56 +00001686bool Sema::BasePathInvolvesVirtualBase(const CXXCastPath &BasePath) {
1687 for (CXXCastPath::const_iterator B = BasePath.begin(),
1688 BEnd = BasePath.end();
Douglas Gregor88d292c2010-05-13 16:44:06 +00001689 B != BEnd; ++B)
1690 if ((*B)->isVirtual())
1691 return true;
1692
1693 return false;
1694}
1695
Douglas Gregor36d1b142009-10-06 17:59:45 +00001696/// CheckDerivedToBaseConversion - Check whether the Derived-to-Base
1697/// conversion (where Derived and Base are class types) is
1698/// well-formed, meaning that the conversion is unambiguous (and
1699/// that all of the base classes are accessible). Returns true
1700/// and emits a diagnostic if the code is ill-formed, returns false
1701/// otherwise. Loc is the location where this routine should point to
1702/// if there is an error, and Range is the source range to highlight
1703/// if there is an error.
1704bool
1705Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
John McCall1064d7e2010-03-16 05:22:47 +00001706 unsigned InaccessibleBaseID,
Douglas Gregor36d1b142009-10-06 17:59:45 +00001707 unsigned AmbigiousBaseConvID,
1708 SourceLocation Loc, SourceRange Range,
Anders Carlsson7afe4242010-04-24 17:11:09 +00001709 DeclarationName Name,
John McCallcf142162010-08-07 06:22:56 +00001710 CXXCastPath *BasePath) {
Douglas Gregor36d1b142009-10-06 17:59:45 +00001711 // First, determine whether the path from Derived to Base is
1712 // ambiguous. This is slightly more expensive than checking whether
1713 // the Derived to Base conversion exists, because here we need to
1714 // explore multiple paths to determine if there is an ambiguity.
1715 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
1716 /*DetectVirtual=*/false);
1717 bool DerivationOkay = IsDerivedFrom(Derived, Base, Paths);
1718 assert(DerivationOkay &&
1719 "Can only be used with a derived-to-base conversion");
1720 (void)DerivationOkay;
1721
1722 if (!Paths.isAmbiguous(Context.getCanonicalType(Base).getUnqualifiedType())) {
Anders Carlssona70cff62010-04-24 19:06:50 +00001723 if (InaccessibleBaseID) {
1724 // Check that the base class can be accessed.
1725 switch (CheckBaseClassAccess(Loc, Base, Derived, Paths.front(),
1726 InaccessibleBaseID)) {
1727 case AR_inaccessible:
1728 return true;
1729 case AR_accessible:
1730 case AR_dependent:
1731 case AR_delayed:
1732 break;
Anders Carlsson7afe4242010-04-24 17:11:09 +00001733 }
John McCall5b0829a2010-02-10 09:31:12 +00001734 }
Anders Carlssona70cff62010-04-24 19:06:50 +00001735
1736 // Build a base path if necessary.
1737 if (BasePath)
1738 BuildBasePathArray(Paths, *BasePath);
1739 return false;
Douglas Gregor36d1b142009-10-06 17:59:45 +00001740 }
1741
David Majnemer626032f2013-06-22 06:43:58 +00001742 if (AmbigiousBaseConvID) {
1743 // We know that the derived-to-base conversion is ambiguous, and
1744 // we're going to produce a diagnostic. Perform the derived-to-base
1745 // search just one more time to compute all of the possible paths so
1746 // that we can print them out. This is more expensive than any of
1747 // the previous derived-to-base checks we've done, but at this point
1748 // performance isn't as much of an issue.
1749 Paths.clear();
1750 Paths.setRecordingPaths(true);
1751 bool StillOkay = IsDerivedFrom(Derived, Base, Paths);
1752 assert(StillOkay && "Can only be used with a derived-to-base conversion");
1753 (void)StillOkay;
1754
1755 // Build up a textual representation of the ambiguous paths, e.g.,
1756 // D -> B -> A, that will be used to illustrate the ambiguous
1757 // conversions in the diagnostic. We only print one of the paths
1758 // to each base class subobject.
1759 std::string PathDisplayStr = getAmbiguousPathsDisplayString(Paths);
1760
1761 Diag(Loc, AmbigiousBaseConvID)
1762 << Derived << Base << PathDisplayStr << Range << Name;
1763 }
Douglas Gregor36d1b142009-10-06 17:59:45 +00001764 return true;
1765}
1766
1767bool
1768Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
Sebastian Redl7c353682009-11-14 21:15:49 +00001769 SourceLocation Loc, SourceRange Range,
John McCallcf142162010-08-07 06:22:56 +00001770 CXXCastPath *BasePath,
Sebastian Redl7c353682009-11-14 21:15:49 +00001771 bool IgnoreAccess) {
Douglas Gregor36d1b142009-10-06 17:59:45 +00001772 return CheckDerivedToBaseConversion(Derived, Base,
John McCall1064d7e2010-03-16 05:22:47 +00001773 IgnoreAccess ? 0
1774 : diag::err_upcast_to_inaccessible_base,
Douglas Gregor36d1b142009-10-06 17:59:45 +00001775 diag::err_ambiguous_derived_to_base_conv,
Anders Carlsson7afe4242010-04-24 17:11:09 +00001776 Loc, Range, DeclarationName(),
1777 BasePath);
Douglas Gregor36d1b142009-10-06 17:59:45 +00001778}
1779
1780
1781/// @brief Builds a string representing ambiguous paths from a
1782/// specific derived class to different subobjects of the same base
1783/// class.
1784///
1785/// This function builds a string that can be used in error messages
1786/// to show the different paths that one can take through the
1787/// inheritance hierarchy to go from the derived class to different
1788/// subobjects of a base class. The result looks something like this:
1789/// @code
1790/// struct D -> struct B -> struct A
1791/// struct D -> struct C -> struct A
1792/// @endcode
1793std::string Sema::getAmbiguousPathsDisplayString(CXXBasePaths &Paths) {
1794 std::string PathDisplayStr;
1795 std::set<unsigned> DisplayedPaths;
1796 for (CXXBasePaths::paths_iterator Path = Paths.begin();
1797 Path != Paths.end(); ++Path) {
1798 if (DisplayedPaths.insert(Path->back().SubobjectNumber).second) {
1799 // We haven't displayed a path to this particular base
1800 // class subobject yet.
1801 PathDisplayStr += "\n ";
1802 PathDisplayStr += Context.getTypeDeclType(Paths.getOrigin()).getAsString();
1803 for (CXXBasePath::const_iterator Element = Path->begin();
1804 Element != Path->end(); ++Element)
1805 PathDisplayStr += " -> " + Element->Base->getType().getAsString();
1806 }
1807 }
1808
1809 return PathDisplayStr;
1810}
1811
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001812//===----------------------------------------------------------------------===//
1813// C++ class member Handling
1814//===----------------------------------------------------------------------===//
1815
Abramo Bagnarad7340582010-06-05 05:09:32 +00001816/// ActOnAccessSpecifier - Parsed an access specifier followed by a colon.
Erik Verbruggenca98f2a2011-10-13 09:41:32 +00001817bool Sema::ActOnAccessSpecifier(AccessSpecifier Access,
1818 SourceLocation ASLoc,
1819 SourceLocation ColonLoc,
1820 AttributeList *Attrs) {
Abramo Bagnarad7340582010-06-05 05:09:32 +00001821 assert(Access != AS_none && "Invalid kind for syntactic access specifier!");
John McCall48871652010-08-21 09:40:31 +00001822 AccessSpecDecl *ASDecl = AccessSpecDecl::Create(Context, Access, CurContext,
Abramo Bagnarad7340582010-06-05 05:09:32 +00001823 ASLoc, ColonLoc);
1824 CurContext->addHiddenDecl(ASDecl);
Erik Verbruggenca98f2a2011-10-13 09:41:32 +00001825 return ProcessAccessDeclAttributeList(ASDecl, Attrs);
Abramo Bagnarad7340582010-06-05 05:09:32 +00001826}
1827
Richard Smith18f07db2012-08-06 03:25:17 +00001828/// CheckOverrideControl - Check C++11 override control semantics.
Eli Friedmanaf65120b2013-09-05 23:51:03 +00001829void Sema::CheckOverrideControl(NamedDecl *D) {
Richard Smith09b031f2012-09-06 18:32:18 +00001830 if (D->isInvalidDecl())
1831 return;
1832
Eli Friedmanaf65120b2013-09-05 23:51:03 +00001833 // We only care about "override" and "final" declarations.
1834 if (!D->hasAttr<OverrideAttr>() && !D->hasAttr<FinalAttr>())
1835 return;
Anders Carlssonfd835532011-01-20 05:57:14 +00001836
Eli Friedmanaf65120b2013-09-05 23:51:03 +00001837 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D);
Anders Carlssonfa8e5d32011-01-20 06:33:26 +00001838
Eli Friedmanaf65120b2013-09-05 23:51:03 +00001839 // We can't check dependent instance methods.
1840 if (MD && MD->isInstance() &&
1841 (MD->getParent()->hasAnyDependentBases() ||
1842 MD->getType()->isDependentType()))
1843 return;
1844
1845 if (MD && !MD->isVirtual()) {
1846 // If we have a non-virtual method, check if if hides a virtual method.
1847 // (In that case, it's most likely the method has the wrong type.)
1848 SmallVector<CXXMethodDecl *, 8> OverloadedMethods;
1849 FindHiddenVirtualMethods(MD, OverloadedMethods);
1850
1851 if (!OverloadedMethods.empty()) {
Richard Smith18f07db2012-08-06 03:25:17 +00001852 if (OverrideAttr *OA = D->getAttr<OverrideAttr>()) {
1853 Diag(OA->getLocation(),
Eli Friedmanaf65120b2013-09-05 23:51:03 +00001854 diag::override_keyword_hides_virtual_member_function)
1855 << "override" << (OverloadedMethods.size() > 1);
1856 } else if (FinalAttr *FA = D->getAttr<FinalAttr>()) {
Richard Smith18f07db2012-08-06 03:25:17 +00001857 Diag(FA->getLocation(),
Eli Friedmanaf65120b2013-09-05 23:51:03 +00001858 diag::override_keyword_hides_virtual_member_function)
David Majnemera5433082013-10-18 00:33:31 +00001859 << (FA->isSpelledAsSealed() ? "sealed" : "final")
1860 << (OverloadedMethods.size() > 1);
Richard Smith18f07db2012-08-06 03:25:17 +00001861 }
Eli Friedmanaf65120b2013-09-05 23:51:03 +00001862 NoteHiddenVirtualMethods(MD, OverloadedMethods);
1863 MD->setInvalidDecl();
1864 return;
1865 }
1866 // Fall through into the general case diagnostic.
1867 // FIXME: We might want to attempt typo correction here.
1868 }
1869
1870 if (!MD || !MD->isVirtual()) {
1871 if (OverrideAttr *OA = D->getAttr<OverrideAttr>()) {
1872 Diag(OA->getLocation(),
1873 diag::override_keyword_only_allowed_on_virtual_member_functions)
1874 << "override" << FixItHint::CreateRemoval(OA->getLocation());
1875 D->dropAttr<OverrideAttr>();
1876 }
1877 if (FinalAttr *FA = D->getAttr<FinalAttr>()) {
1878 Diag(FA->getLocation(),
1879 diag::override_keyword_only_allowed_on_virtual_member_functions)
David Majnemera5433082013-10-18 00:33:31 +00001880 << (FA->isSpelledAsSealed() ? "sealed" : "final")
1881 << FixItHint::CreateRemoval(FA->getLocation());
Eli Friedmanaf65120b2013-09-05 23:51:03 +00001882 D->dropAttr<FinalAttr>();
Richard Smith18f07db2012-08-06 03:25:17 +00001883 }
Anders Carlssonfd835532011-01-20 05:57:14 +00001884 return;
1885 }
Richard Smith18f07db2012-08-06 03:25:17 +00001886
Richard Smith18f07db2012-08-06 03:25:17 +00001887 // C++11 [class.virtual]p5:
1888 // If a virtual function is marked with the virt-specifier override and
1889 // does not override a member function of a base class, the program is
1890 // ill-formed.
1891 bool HasOverriddenMethods =
1892 MD->begin_overridden_methods() != MD->end_overridden_methods();
1893 if (MD->hasAttr<OverrideAttr>() && !HasOverriddenMethods)
1894 Diag(MD->getLocation(), diag::err_function_marked_override_not_overriding)
1895 << MD->getDeclName();
Anders Carlssonfd835532011-01-20 05:57:14 +00001896}
1897
Richard Smith18f07db2012-08-06 03:25:17 +00001898/// CheckIfOverriddenFunctionIsMarkedFinal - Checks whether a virtual member
Anders Carlsson3f610c72011-01-20 16:25:36 +00001899/// function overrides a virtual member function marked 'final', according to
Richard Smith18f07db2012-08-06 03:25:17 +00001900/// C++11 [class.virtual]p4.
Anders Carlsson3f610c72011-01-20 16:25:36 +00001901bool Sema::CheckIfOverriddenFunctionIsMarkedFinal(const CXXMethodDecl *New,
1902 const CXXMethodDecl *Old) {
David Majnemera5433082013-10-18 00:33:31 +00001903 FinalAttr *FA = Old->getAttr<FinalAttr>();
1904 if (!FA)
Anders Carlsson19588aa2011-01-23 21:07:30 +00001905 return false;
1906
1907 Diag(New->getLocation(), diag::err_final_function_overridden)
David Majnemera5433082013-10-18 00:33:31 +00001908 << New->getDeclName()
1909 << FA->isSpelledAsSealed();
Anders Carlsson19588aa2011-01-23 21:07:30 +00001910 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
1911 return true;
Anders Carlsson3f610c72011-01-20 16:25:36 +00001912}
1913
Daniel Jasper0baec5492012-06-06 08:32:04 +00001914static bool InitializationHasSideEffects(const FieldDecl &FD) {
Richard Smith0a8cfc72012-08-07 21:30:42 +00001915 const Type *T = FD.getType()->getBaseElementTypeUnsafe();
1916 // FIXME: Destruction of ObjC lifetime types has side-effects.
1917 if (const CXXRecordDecl *RD = T->getAsCXXRecordDecl())
1918 return !RD->isCompleteDefinition() ||
1919 !RD->hasTrivialDefaultConstructor() ||
1920 !RD->hasTrivialDestructor();
Daniel Jasper0baec5492012-06-06 08:32:04 +00001921 return false;
1922}
1923
John McCall5e77d762013-04-16 07:28:30 +00001924static AttributeList *getMSPropertyAttr(AttributeList *list) {
Craig Topperc3ec1492014-05-26 06:22:03 +00001925 for (AttributeList *it = list; it != nullptr; it = it->getNext())
John McCall5e77d762013-04-16 07:28:30 +00001926 if (it->isDeclspecPropertyAttribute())
1927 return it;
Craig Topperc3ec1492014-05-26 06:22:03 +00001928 return nullptr;
John McCall5e77d762013-04-16 07:28:30 +00001929}
1930
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001931/// ActOnCXXMemberDeclarator - This is invoked when a C++ class member
1932/// declarator is parsed. 'AS' is the access specifier, 'BW' specifies the
Richard Smith938f40b2011-06-11 17:19:42 +00001933/// bitfield width if there is one, 'InitExpr' specifies the initializer if
Richard Smith2b013182012-06-10 03:12:00 +00001934/// one has been parsed, and 'InitStyle' is set if an in-class initializer is
1935/// present (but parsing it has been deferred).
Rafael Espindola0a67e2f2013-01-08 20:44:06 +00001936NamedDecl *
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001937Sema::ActOnCXXMemberDeclarator(Scope *S, AccessSpecifier AS, Declarator &D,
Douglas Gregor3447e762009-08-20 22:52:58 +00001938 MultiTemplateParamsArg TemplateParameterLists,
Richard Trieu2bd04012011-09-09 02:00:50 +00001939 Expr *BW, const VirtSpecifiers &VS,
Richard Smith2b013182012-06-10 03:12:00 +00001940 InClassInitStyle InitStyle) {
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001941 const DeclSpec &DS = D.getDeclSpec();
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00001942 DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
1943 DeclarationName Name = NameInfo.getName();
1944 SourceLocation Loc = NameInfo.getLoc();
Douglas Gregor23ab7452010-11-09 03:31:16 +00001945
1946 // For anonymous bitfields, the location should point to the type.
1947 if (Loc.isInvalid())
Daniel Dunbar62ee6412012-03-09 18:35:03 +00001948 Loc = D.getLocStart();
Douglas Gregor23ab7452010-11-09 03:31:16 +00001949
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001950 Expr *BitWidth = static_cast<Expr*>(BW);
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001951
John McCallb1cd7da2010-06-04 08:34:12 +00001952 assert(isa<CXXRecordDecl>(CurContext));
John McCall07e91c02009-08-06 02:15:43 +00001953 assert(!DS.isFriendSpecified());
1954
Richard Smithcfcdf3a2011-06-25 02:28:38 +00001955 bool isFunc = D.isDeclarationOfFunction();
John McCallb1cd7da2010-06-04 08:34:12 +00001956
John McCalldb632ac2012-09-25 07:32:39 +00001957 if (cast<CXXRecordDecl>(CurContext)->isInterface()) {
1958 // The Microsoft extension __interface only permits public member functions
1959 // and prohibits constructors, destructors, operators, non-public member
1960 // functions, static methods and data members.
1961 unsigned InvalidDecl;
1962 bool ShowDeclName = true;
1963 if (!isFunc)
1964 InvalidDecl = (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) ? 0 : 1;
1965 else if (AS != AS_public)
1966 InvalidDecl = 2;
1967 else if (DS.getStorageClassSpec() == DeclSpec::SCS_static)
1968 InvalidDecl = 3;
1969 else switch (Name.getNameKind()) {
1970 case DeclarationName::CXXConstructorName:
1971 InvalidDecl = 4;
1972 ShowDeclName = false;
1973 break;
1974
1975 case DeclarationName::CXXDestructorName:
1976 InvalidDecl = 5;
1977 ShowDeclName = false;
1978 break;
1979
1980 case DeclarationName::CXXOperatorName:
1981 case DeclarationName::CXXConversionFunctionName:
1982 InvalidDecl = 6;
1983 break;
1984
1985 default:
1986 InvalidDecl = 0;
1987 break;
1988 }
1989
1990 if (InvalidDecl) {
1991 if (ShowDeclName)
1992 Diag(Loc, diag::err_invalid_member_in_interface)
1993 << (InvalidDecl-1) << Name;
1994 else
1995 Diag(Loc, diag::err_invalid_member_in_interface)
1996 << (InvalidDecl-1) << "";
Craig Topperc3ec1492014-05-26 06:22:03 +00001997 return nullptr;
John McCalldb632ac2012-09-25 07:32:39 +00001998 }
1999 }
2000
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00002001 // C++ 9.2p6: A member shall not be declared to have automatic storage
2002 // duration (auto, register) or with the extern storage-class-specifier.
Sebastian Redlccdfaba2008-11-14 23:42:31 +00002003 // C++ 7.1.1p8: The mutable specifier can be applied only to names of class
2004 // data members and cannot be applied to names declared const or static,
2005 // and cannot be applied to reference members.
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00002006 switch (DS.getStorageClassSpec()) {
Richard Smithb4a9e862013-04-12 22:46:28 +00002007 case DeclSpec::SCS_unspecified:
2008 case DeclSpec::SCS_typedef:
2009 case DeclSpec::SCS_static:
2010 break;
2011 case DeclSpec::SCS_mutable:
2012 if (isFunc) {
2013 Diag(DS.getStorageClassSpecLoc(), diag::err_mutable_function);
Mike Stump11289f42009-09-09 15:08:12 +00002014
Richard Smithb4a9e862013-04-12 22:46:28 +00002015 // FIXME: It would be nicer if the keyword was ignored only for this
2016 // declarator. Otherwise we could get follow-up errors.
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00002017 D.getMutableDeclSpec().ClearStorageClassSpecs();
Richard Smithb4a9e862013-04-12 22:46:28 +00002018 }
2019 break;
2020 default:
2021 Diag(DS.getStorageClassSpecLoc(),
2022 diag::err_storageclass_invalid_for_member);
2023 D.getMutableDeclSpec().ClearStorageClassSpecs();
2024 break;
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00002025 }
2026
Sebastian Redlccdfaba2008-11-14 23:42:31 +00002027 bool isInstField = ((DS.getStorageClassSpec() == DeclSpec::SCS_unspecified ||
2028 DS.getStorageClassSpec() == DeclSpec::SCS_mutable) &&
Argyrios Kyrtzidis1207d312008-10-08 22:20:31 +00002029 !isFunc);
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00002030
David Blaikie35506f82013-01-30 01:22:18 +00002031 if (DS.isConstexprSpecified() && isInstField) {
2032 SemaDiagnosticBuilder B =
2033 Diag(DS.getConstexprSpecLoc(), diag::err_invalid_constexpr_member);
2034 SourceLocation ConstexprLoc = DS.getConstexprSpecLoc();
2035 if (InitStyle == ICIS_NoInit) {
Richard Smith82dce552014-04-14 21:00:40 +00002036 B << 0 << 0;
2037 if (D.getDeclSpec().getTypeQualifiers() & DeclSpec::TQ_const)
2038 B << FixItHint::CreateRemoval(ConstexprLoc);
2039 else {
2040 B << FixItHint::CreateReplacement(ConstexprLoc, "const");
2041 D.getMutableDeclSpec().ClearConstexprSpec();
2042 const char *PrevSpec;
2043 unsigned DiagID;
2044 bool Failed = D.getMutableDeclSpec().SetTypeQual(
2045 DeclSpec::TQ_const, ConstexprLoc, PrevSpec, DiagID, getLangOpts());
2046 (void)Failed;
2047 assert(!Failed && "Making a constexpr member const shouldn't fail");
2048 }
David Blaikie35506f82013-01-30 01:22:18 +00002049 } else {
2050 B << 1;
2051 const char *PrevSpec;
2052 unsigned DiagID;
David Blaikie35506f82013-01-30 01:22:18 +00002053 if (D.getMutableDeclSpec().SetStorageClassSpec(
Erik Verbruggen888d52a2014-01-15 09:15:43 +00002054 *this, DeclSpec::SCS_static, ConstexprLoc, PrevSpec, DiagID,
2055 Context.getPrintingPolicy())) {
Matt Beaumont-Gayefc270d2013-01-31 00:08:03 +00002056 assert(DS.getStorageClassSpec() == DeclSpec::SCS_mutable &&
David Blaikie35506f82013-01-30 01:22:18 +00002057 "This is the only DeclSpec that should fail to be applied");
2058 B << 1;
2059 } else {
2060 B << 0 << FixItHint::CreateInsertion(ConstexprLoc, "static ");
2061 isInstField = false;
2062 }
2063 }
2064 }
2065
Rafael Espindola0a67e2f2013-01-08 20:44:06 +00002066 NamedDecl *Member;
Chris Lattner73bf7b42009-03-05 22:45:59 +00002067 if (isInstField) {
Douglas Gregora007d362010-10-13 22:19:53 +00002068 CXXScopeSpec &SS = D.getCXXScopeSpec();
Douglas Gregorbb64afc2011-10-09 18:55:59 +00002069
2070 // Data members must have identifiers for names.
Benjamin Kramer365082d2012-05-19 16:34:46 +00002071 if (!Name.isIdentifier()) {
Douglas Gregorbb64afc2011-10-09 18:55:59 +00002072 Diag(Loc, diag::err_bad_variable_name)
2073 << Name;
Craig Topperc3ec1492014-05-26 06:22:03 +00002074 return nullptr;
Douglas Gregorbb64afc2011-10-09 18:55:59 +00002075 }
Douglas Gregor7c26c042011-09-21 14:40:46 +00002076
Benjamin Kramer365082d2012-05-19 16:34:46 +00002077 IdentifierInfo *II = Name.getAsIdentifierInfo();
2078
Douglas Gregor7c26c042011-09-21 14:40:46 +00002079 // Member field could not be with "template" keyword.
2080 // So TemplateParameterLists should be empty in this case.
2081 if (TemplateParameterLists.size()) {
Benjamin Kramer62b95d82012-08-23 21:35:17 +00002082 TemplateParameterList* TemplateParams = TemplateParameterLists[0];
Douglas Gregor7c26c042011-09-21 14:40:46 +00002083 if (TemplateParams->size()) {
2084 // There is no such thing as a member field template.
2085 Diag(D.getIdentifierLoc(), diag::err_template_member)
2086 << II
2087 << SourceRange(TemplateParams->getTemplateLoc(),
2088 TemplateParams->getRAngleLoc());
2089 } else {
2090 // There is an extraneous 'template<>' for this member.
2091 Diag(TemplateParams->getTemplateLoc(),
2092 diag::err_template_member_noparams)
2093 << II
2094 << SourceRange(TemplateParams->getTemplateLoc(),
2095 TemplateParams->getRAngleLoc());
2096 }
Craig Topperc3ec1492014-05-26 06:22:03 +00002097 return nullptr;
Douglas Gregor7c26c042011-09-21 14:40:46 +00002098 }
2099
Douglas Gregora007d362010-10-13 22:19:53 +00002100 if (SS.isSet() && !SS.isInvalid()) {
2101 // The user provided a superfluous scope specifier inside a class
2102 // definition:
2103 //
2104 // class X {
2105 // int X::member;
2106 // };
Douglas Gregorb7d17dd2012-03-28 16:01:27 +00002107 if (DeclContext *DC = computeDeclContext(SS, false))
2108 diagnoseQualifiedDeclaration(SS, DC, Name, D.getIdentifierLoc());
Douglas Gregora007d362010-10-13 22:19:53 +00002109 else
2110 Diag(D.getIdentifierLoc(), diag::err_member_qualification)
2111 << Name << SS.getRange();
Douglas Gregorc3ae7c32011-11-01 22:13:30 +00002112
Douglas Gregora007d362010-10-13 22:19:53 +00002113 SS.clear();
2114 }
Douglas Gregor7c26c042011-09-21 14:40:46 +00002115
John McCall5e77d762013-04-16 07:28:30 +00002116 AttributeList *MSPropertyAttr =
2117 getMSPropertyAttr(D.getDeclSpec().getAttributes().getList());
Eli Friedmanc37dbf72013-06-28 20:48:34 +00002118 if (MSPropertyAttr) {
2119 Member = HandleMSProperty(S, cast<CXXRecordDecl>(CurContext), Loc, D,
2120 BitWidth, InitStyle, AS, MSPropertyAttr);
2121 if (!Member)
Craig Topperc3ec1492014-05-26 06:22:03 +00002122 return nullptr;
Eli Friedmanc37dbf72013-06-28 20:48:34 +00002123 isInstField = false;
2124 } else {
2125 Member = HandleField(S, cast<CXXRecordDecl>(CurContext), Loc, D,
2126 BitWidth, InitStyle, AS);
2127 assert(Member && "HandleField never returns null");
2128 }
2129 } else {
2130 assert(InitStyle == ICIS_NoInit || D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_static);
2131
2132 Member = HandleDeclarator(S, D, TemplateParameterLists);
2133 if (!Member)
Craig Topperc3ec1492014-05-26 06:22:03 +00002134 return nullptr;
Eli Friedmanc37dbf72013-06-28 20:48:34 +00002135
2136 // Non-instance-fields can't have a bitfield.
2137 if (BitWidth) {
Chris Lattnerd26760a2009-03-05 23:01:03 +00002138 if (Member->isInvalidDecl()) {
2139 // don't emit another diagnostic.
Douglas Gregor212cab32009-03-11 20:22:50 +00002140 } else if (isa<VarDecl>(Member)) {
Chris Lattnerd26760a2009-03-05 23:01:03 +00002141 // C++ 9.6p3: A bit-field shall not be a static member.
2142 // "static member 'A' cannot be a bit-field"
2143 Diag(Loc, diag::err_static_not_bitfield)
2144 << Name << BitWidth->getSourceRange();
2145 } else if (isa<TypedefDecl>(Member)) {
2146 // "typedef member 'x' cannot be a bit-field"
2147 Diag(Loc, diag::err_typedef_not_bitfield)
2148 << Name << BitWidth->getSourceRange();
2149 } else {
2150 // A function typedef ("typedef int f(); f a;").
2151 // C++ 9.6p3: A bit-field shall have integral or enumeration type.
2152 Diag(Loc, diag::err_not_integral_type_bitfield)
Mike Stump11289f42009-09-09 15:08:12 +00002153 << Name << cast<ValueDecl>(Member)->getType()
Douglas Gregor1efa4372009-03-11 18:59:21 +00002154 << BitWidth->getSourceRange();
Chris Lattnerd26760a2009-03-05 23:01:03 +00002155 }
Mike Stump11289f42009-09-09 15:08:12 +00002156
Craig Topperc3ec1492014-05-26 06:22:03 +00002157 BitWidth = nullptr;
Chris Lattnerd26760a2009-03-05 23:01:03 +00002158 Member->setInvalidDecl();
2159 }
Douglas Gregor4261e4c2009-03-11 20:50:30 +00002160
2161 Member->setAccess(AS);
Mike Stump11289f42009-09-09 15:08:12 +00002162
Larisse Voufo39a1e502013-08-06 01:03:05 +00002163 // If we have declared a member function template or static data member
2164 // template, set the access of the templated declaration as well.
Douglas Gregor3447e762009-08-20 22:52:58 +00002165 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Member))
2166 FunTmpl->getTemplatedDecl()->setAccess(AS);
Larisse Voufo39a1e502013-08-06 01:03:05 +00002167 else if (VarTemplateDecl *VarTmpl = dyn_cast<VarTemplateDecl>(Member))
2168 VarTmpl->getTemplatedDecl()->setAccess(AS);
Chris Lattner73bf7b42009-03-05 22:45:59 +00002169 }
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00002170
Richard Smith18f07db2012-08-06 03:25:17 +00002171 if (VS.isOverrideSpecified())
Aaron Ballman36a53502014-01-16 13:03:14 +00002172 Member->addAttr(new (Context) OverrideAttr(VS.getOverrideLoc(), Context, 0));
Richard Smith18f07db2012-08-06 03:25:17 +00002173 if (VS.isFinalSpecified())
David Majnemera5433082013-10-18 00:33:31 +00002174 Member->addAttr(new (Context) FinalAttr(VS.getFinalLoc(), Context,
2175 VS.isFinalSpelledSealed()));
Anders Carlssonfd835532011-01-20 05:57:14 +00002176
Douglas Gregorf2f08062011-03-08 17:10:18 +00002177 if (VS.getLastLocation().isValid()) {
2178 // Update the end location of a method that has a virt-specifiers.
2179 if (CXXMethodDecl *MD = dyn_cast_or_null<CXXMethodDecl>(Member))
2180 MD->setRangeEnd(VS.getLastLocation());
2181 }
Richard Smith18f07db2012-08-06 03:25:17 +00002182
Anders Carlssonc87f8612011-01-20 06:29:02 +00002183 CheckOverrideControl(Member);
Anders Carlssonfd835532011-01-20 05:57:14 +00002184
Douglas Gregor92751d42008-11-17 22:58:34 +00002185 assert((Name || isInstField) && "No identifier for non-field ?");
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00002186
Daniel Jasper0baec5492012-06-06 08:32:04 +00002187 if (isInstField) {
2188 FieldDecl *FD = cast<FieldDecl>(Member);
2189 FieldCollector->Add(FD);
2190
Alp Tokerd4a3f0e2014-06-15 23:30:39 +00002191 if (!Diags.isIgnored(diag::warn_unused_private_field, FD->getLocation())) {
Daniel Jasper0baec5492012-06-06 08:32:04 +00002192 // Remember all explicit private FieldDecls that have a name, no side
2193 // effects and are not part of a dependent type declaration.
2194 if (!FD->isImplicit() && FD->getDeclName() &&
2195 FD->getAccess() == AS_private &&
Daniel Jasper429c1342012-06-13 18:31:09 +00002196 !FD->hasAttr<UnusedAttr>() &&
Richard Smith0a8cfc72012-08-07 21:30:42 +00002197 !FD->getParent()->isDependentContext() &&
Daniel Jasper0baec5492012-06-06 08:32:04 +00002198 !InitializationHasSideEffects(*FD))
2199 UnusedPrivateFields.insert(FD);
2200 }
2201 }
2202
John McCall48871652010-08-21 09:40:31 +00002203 return Member;
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00002204}
2205
Hans Wennborg44fd70a2012-09-18 15:58:06 +00002206namespace {
2207 class UninitializedFieldVisitor
2208 : public EvaluatedExprVisitor<UninitializedFieldVisitor> {
2209 Sema &S;
Richard Trieuef64e942013-10-25 00:56:00 +00002210 // List of Decls to generate a warning on. Also remove Decls that become
2211 // initialized.
Craig Topper4dd9b432014-08-17 23:49:53 +00002212 llvm::SmallPtrSetImpl<ValueDecl*> &Decls;
Richard Trieu8d08a272014-08-28 03:23:47 +00002213 // Vector of decls to be removed from the Decl set prior to visiting the
2214 // nodes. These Decls may have been initialized in the prior initializer.
2215 llvm::SmallVector<ValueDecl*, 4> DeclsToRemove;
Richard Trieu406e65c2013-09-20 03:03:06 +00002216 // If non-null, add a note to the warning pointing back to the constructor.
2217 const CXXConstructorDecl *Constructor;
Hans Wennborg44fd70a2012-09-18 15:58:06 +00002218 public:
2219 typedef EvaluatedExprVisitor<UninitializedFieldVisitor> Inherited;
Richard Trieuef64e942013-10-25 00:56:00 +00002220 UninitializedFieldVisitor(Sema &S,
Richard Trieu8d08a272014-08-28 03:23:47 +00002221 llvm::SmallPtrSetImpl<ValueDecl*> &Decls)
2222 : Inherited(S.Context), S(S), Decls(Decls) { }
Hans Wennborg44fd70a2012-09-18 15:58:06 +00002223
Richard Trieufd687772013-09-16 20:46:50 +00002224 void HandleMemberExpr(MemberExpr *ME, bool CheckReferenceOnly) {
Richard Trieu1bc22c12013-09-13 03:20:53 +00002225 if (isa<EnumConstantDecl>(ME->getMemberDecl()))
2226 return;
Hans Wennborg44fd70a2012-09-18 15:58:06 +00002227
Richard Trieu1bc22c12013-09-13 03:20:53 +00002228 // FieldME is the inner-most MemberExpr that is not an anonymous struct
2229 // or union.
2230 MemberExpr *FieldME = ME;
2231
2232 Expr *Base = ME;
2233 while (isa<MemberExpr>(Base)) {
2234 ME = cast<MemberExpr>(Base);
2235
2236 if (isa<VarDecl>(ME->getMemberDecl()))
2237 return;
2238
2239 if (FieldDecl *FD = dyn_cast<FieldDecl>(ME->getMemberDecl()))
2240 if (!FD->isAnonymousStructOrUnion())
2241 FieldME = ME;
2242
2243 Base = ME->getBase();
2244 }
2245
Richard Trieufd687772013-09-16 20:46:50 +00002246 if (!isa<CXXThisExpr>(Base))
2247 return;
2248
Richard Trieu406e65c2013-09-20 03:03:06 +00002249 ValueDecl* FoundVD = FieldME->getMemberDecl();
2250
Richard Trieuef64e942013-10-25 00:56:00 +00002251 if (!Decls.count(FoundVD))
Richard Trieu406e65c2013-09-20 03:03:06 +00002252 return;
2253
Richard Trieuef64e942013-10-25 00:56:00 +00002254 const bool IsReference = FoundVD->getType()->isReferenceType();
Richard Trieu406e65c2013-09-20 03:03:06 +00002255
Richard Trieuef64e942013-10-25 00:56:00 +00002256 // Prevent double warnings on use of unbounded references.
2257 if (IsReference != CheckReferenceOnly)
2258 return;
2259
2260 unsigned diag = IsReference
2261 ? diag::warn_reference_field_is_uninit
2262 : diag::warn_field_is_uninit;
2263 S.Diag(FieldME->getExprLoc(), diag) << FoundVD;
2264 if (Constructor)
2265 S.Diag(Constructor->getLocation(),
2266 diag::note_uninit_in_this_constructor)
2267 << (Constructor->isDefaultConstructor() && Constructor->isImplicit());
2268
Hans Wennborg44fd70a2012-09-18 15:58:06 +00002269 }
2270
2271 void HandleValue(Expr *E) {
2272 E = E->IgnoreParens();
2273
2274 if (MemberExpr *ME = dyn_cast<MemberExpr>(E)) {
Richard Trieufd687772013-09-16 20:46:50 +00002275 HandleMemberExpr(ME, false /*CheckReferenceOnly*/);
Nick Lewyckyc363afb2012-11-15 08:19:20 +00002276 return;
Hans Wennborg44fd70a2012-09-18 15:58:06 +00002277 }
2278
2279 if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) {
2280 HandleValue(CO->getTrueExpr());
2281 HandleValue(CO->getFalseExpr());
2282 return;
2283 }
2284
2285 if (BinaryConditionalOperator *BCO =
2286 dyn_cast<BinaryConditionalOperator>(E)) {
Hans Wennborg44fd70a2012-09-18 15:58:06 +00002287 HandleValue(BCO->getFalseExpr());
2288 return;
2289 }
2290
Richard Trieuabf6ec42014-08-27 22:15:10 +00002291 if (OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(E)) {
2292 HandleValue(OVE->getSourceExpr());
2293 return;
2294 }
2295
Hans Wennborg44fd70a2012-09-18 15:58:06 +00002296 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
2297 switch (BO->getOpcode()) {
2298 default:
2299 return;
2300 case(BO_PtrMemD):
2301 case(BO_PtrMemI):
2302 HandleValue(BO->getLHS());
2303 return;
2304 case(BO_Comma):
2305 HandleValue(BO->getRHS());
2306 return;
2307 }
2308 }
2309 }
2310
Richard Trieu8d08a272014-08-28 03:23:47 +00002311 void CheckInitializer(Expr *E, const CXXConstructorDecl *FieldConstructor,
2312 FieldDecl *Field) {
2313 // Remove Decls that may have been initialized in the previous
2314 // initializer.
2315 for (ValueDecl* VD : DeclsToRemove)
2316 Decls.erase(VD);
2317
2318 DeclsToRemove.clear();
2319 Constructor = FieldConstructor;
2320 Visit(E);
2321 if (Field)
2322 Decls.erase(Field);
2323 }
2324
Richard Trieu1bc22c12013-09-13 03:20:53 +00002325 void VisitMemberExpr(MemberExpr *ME) {
Richard Trieuef64e942013-10-25 00:56:00 +00002326 // All uses of unbounded reference fields will warn.
Richard Trieufd687772013-09-16 20:46:50 +00002327 HandleMemberExpr(ME, true /*CheckReferenceOnly*/);
Richard Trieu1bc22c12013-09-13 03:20:53 +00002328
2329 Inherited::VisitMemberExpr(ME);
2330 }
2331
Hans Wennborg44fd70a2012-09-18 15:58:06 +00002332 void VisitImplicitCastExpr(ImplicitCastExpr *E) {
2333 if (E->getCastKind() == CK_LValueToRValue)
2334 HandleValue(E->getSubExpr());
2335
2336 Inherited::VisitImplicitCastExpr(E);
2337 }
2338
Richard Trieu1bc22c12013-09-13 03:20:53 +00002339 void VisitCXXConstructExpr(CXXConstructExpr *E) {
Richard Trieu4834ad22014-08-12 21:05:04 +00002340 if (E->getConstructor()->isCopyConstructor()) {
2341 Expr *ArgExpr = E->getArg(0);
2342 if (ImplicitCastExpr* ICE = dyn_cast<ImplicitCastExpr>(ArgExpr)) {
2343 if (ICE->getCastKind() == CK_NoOp) {
2344 ArgExpr = ICE->getSubExpr();
2345 }
2346 }
2347
2348 if (MemberExpr *ME = dyn_cast<MemberExpr>(ArgExpr)) {
2349 HandleMemberExpr(ME, false /*CheckReferenceOnly*/);
2350 }
2351 }
Richard Trieu1bc22c12013-09-13 03:20:53 +00002352 Inherited::VisitCXXConstructExpr(E);
2353 }
2354
Hans Wennborg44fd70a2012-09-18 15:58:06 +00002355 void VisitCXXMemberCallExpr(CXXMemberCallExpr *E) {
2356 Expr *Callee = E->getCallee();
2357 if (isa<MemberExpr>(Callee))
2358 HandleValue(Callee);
2359
2360 Inherited::VisitCXXMemberCallExpr(E);
2361 }
Richard Trieu406e65c2013-09-20 03:03:06 +00002362
Richard Trieu11fd0792014-08-26 04:30:55 +00002363 void VisitCallExpr(CallExpr *E) {
2364 // Treat std::move as a use.
2365 if (E->getNumArgs() == 1) {
2366 if (FunctionDecl *FD = E->getDirectCallee()) {
2367 if (FD->getIdentifier() && FD->getIdentifier()->isStr("move")) {
Richard Trieuabf6ec42014-08-27 22:15:10 +00002368 HandleValue(E->getArg(0));
Richard Trieu11fd0792014-08-26 04:30:55 +00002369 }
2370 }
2371 }
2372
2373 Inherited::VisitCallExpr(E);
2374 }
2375
Richard Trieu406e65c2013-09-20 03:03:06 +00002376 void VisitBinaryOperator(BinaryOperator *E) {
2377 // If a field assignment is detected, remove the field from the
2378 // uninitiailized field set.
2379 if (E->getOpcode() == BO_Assign)
2380 if (MemberExpr *ME = dyn_cast<MemberExpr>(E->getLHS()))
2381 if (FieldDecl *FD = dyn_cast<FieldDecl>(ME->getMemberDecl()))
Richard Trieuef64e942013-10-25 00:56:00 +00002382 if (!FD->getType()->isReferenceType())
Richard Trieu8d08a272014-08-28 03:23:47 +00002383 DeclsToRemove.push_back(FD);
Richard Trieu406e65c2013-09-20 03:03:06 +00002384
2385 Inherited::VisitBinaryOperator(E);
2386 }
Hans Wennborg44fd70a2012-09-18 15:58:06 +00002387 };
Richard Trieuef64e942013-10-25 00:56:00 +00002388
2389 // Diagnose value-uses of fields to initialize themselves, e.g.
2390 // foo(foo)
2391 // where foo is not also a parameter to the constructor.
2392 // Also diagnose across field uninitialized use such as
2393 // x(y), y(x)
2394 // TODO: implement -Wuninitialized and fold this into that framework.
2395 static void DiagnoseUninitializedFields(
2396 Sema &SemaRef, const CXXConstructorDecl *Constructor) {
2397
Alp Tokerd4a3f0e2014-06-15 23:30:39 +00002398 if (SemaRef.getDiagnostics().isIgnored(diag::warn_field_is_uninit,
2399 Constructor->getLocation())) {
Richard Trieuef64e942013-10-25 00:56:00 +00002400 return;
2401 }
2402
2403 if (Constructor->isInvalidDecl())
2404 return;
2405
2406 const CXXRecordDecl *RD = Constructor->getParent();
2407
2408 // Holds fields that are uninitialized.
2409 llvm::SmallPtrSet<ValueDecl*, 4> UninitializedFields;
2410
2411 // At the beginning, all fields are uninitialized.
Aaron Ballman629afae2014-03-07 19:56:05 +00002412 for (auto *I : RD->decls()) {
2413 if (auto *FD = dyn_cast<FieldDecl>(I)) {
Richard Trieuef64e942013-10-25 00:56:00 +00002414 UninitializedFields.insert(FD);
Aaron Ballman629afae2014-03-07 19:56:05 +00002415 } else if (auto *IFD = dyn_cast<IndirectFieldDecl>(I)) {
Richard Trieuef64e942013-10-25 00:56:00 +00002416 UninitializedFields.insert(IFD->getAnonField());
2417 }
2418 }
2419
Richard Trieu8d08a272014-08-28 03:23:47 +00002420 if (UninitializedFields.empty())
2421 return;
2422
2423 UninitializedFieldVisitor UninitializedChecker(SemaRef,
2424 UninitializedFields);
2425
Aaron Ballman0ad78302014-03-13 17:34:31 +00002426 for (const auto *FieldInit : Constructor->inits()) {
Richard Trieu8d08a272014-08-28 03:23:47 +00002427 if (UninitializedFields.empty())
2428 break;
2429
Aaron Ballman0ad78302014-03-13 17:34:31 +00002430 Expr *InitExpr = FieldInit->getInit();
Richard Trieu8d08a272014-08-28 03:23:47 +00002431 if (!InitExpr)
2432 continue;
Richard Trieuef64e942013-10-25 00:56:00 +00002433
Richard Trieu8d08a272014-08-28 03:23:47 +00002434 if (CXXDefaultInitExpr *Default =
2435 dyn_cast<CXXDefaultInitExpr>(InitExpr)) {
2436 InitExpr = Default->getExpr();
2437 if (!InitExpr)
2438 continue;
2439 // In class initializers will point to the constructor.
2440 UninitializedChecker.CheckInitializer(InitExpr, Constructor,
2441 FieldInit->getAnyMember());
2442 } else {
2443 UninitializedChecker.CheckInitializer(InitExpr, nullptr,
2444 FieldInit->getAnyMember());
2445 }
Richard Trieuef64e942013-10-25 00:56:00 +00002446 }
Hans Wennborg44fd70a2012-09-18 15:58:06 +00002447 }
2448} // namespace
2449
Richard Smith74108172014-01-17 03:11:34 +00002450/// \brief Enter a new C++ default initializer scope. After calling this, the
2451/// caller must call \ref ActOnFinishCXXInClassMemberInitializer, even if
2452/// parsing or instantiating the initializer failed.
2453void Sema::ActOnStartCXXInClassMemberInitializer() {
2454 // Create a synthetic function scope to represent the call to the constructor
2455 // that notionally surrounds a use of this initializer.
2456 PushFunctionScope();
2457}
2458
2459/// \brief This is invoked after parsing an in-class initializer for a
2460/// non-static C++ class member, and after instantiating an in-class initializer
2461/// in a class template. Such actions are deferred until the class is complete.
2462void Sema::ActOnFinishCXXInClassMemberInitializer(Decl *D,
2463 SourceLocation InitLoc,
2464 Expr *InitExpr) {
2465 // Pop the notional constructor scope we created earlier.
Craig Topperc3ec1492014-05-26 06:22:03 +00002466 PopFunctionScopeInfo(nullptr, D);
Richard Smith74108172014-01-17 03:11:34 +00002467
Richard Smith938f40b2011-06-11 17:19:42 +00002468 FieldDecl *FD = cast<FieldDecl>(D);
Richard Smith2b013182012-06-10 03:12:00 +00002469 assert(FD->getInClassInitStyle() != ICIS_NoInit &&
2470 "must set init style when field is created");
Richard Smith938f40b2011-06-11 17:19:42 +00002471
2472 if (!InitExpr) {
2473 FD->setInvalidDecl();
2474 FD->removeInClassInitializer();
2475 return;
2476 }
2477
Peter Collingbourne9f58d7b2011-10-23 18:59:44 +00002478 if (DiagnoseUnexpandedParameterPack(InitExpr, UPPC_Initializer)) {
2479 FD->setInvalidDecl();
2480 FD->removeInClassInitializer();
2481 return;
2482 }
2483
Richard Smith938f40b2011-06-11 17:19:42 +00002484 ExprResult Init = InitExpr;
Richard Smithd59b8322012-12-19 01:39:02 +00002485 if (!FD->getType()->isDependentType() && !InitExpr->isTypeDependent()) {
Sebastian Redleef474c2012-02-22 10:50:08 +00002486 InitializedEntity Entity = InitializedEntity::InitializeMember(FD);
Richard Smith2b013182012-06-10 03:12:00 +00002487 InitializationKind Kind = FD->getInClassInitStyle() == ICIS_ListInit
Sebastian Redleef474c2012-02-22 10:50:08 +00002488 ? InitializationKind::CreateDirectList(InitExpr->getLocStart())
Richard Smith2b013182012-06-10 03:12:00 +00002489 : InitializationKind::CreateCopy(InitExpr->getLocStart(), InitLoc);
Dmitri Gribenko8f8930f2013-05-03 15:05:50 +00002490 InitializationSequence Seq(*this, Entity, Kind, InitExpr);
2491 Init = Seq.Perform(*this, Entity, Kind, InitExpr);
Richard Smith938f40b2011-06-11 17:19:42 +00002492 if (Init.isInvalid()) {
2493 FD->setInvalidDecl();
2494 return;
2495 }
Richard Smith938f40b2011-06-11 17:19:42 +00002496 }
2497
Richard Smith945f8d32013-01-14 22:39:08 +00002498 // C++11 [class.base.init]p7:
Richard Smith938f40b2011-06-11 17:19:42 +00002499 // The initialization of each base and member constitutes a
2500 // full-expression.
Nikola Smiljanic01a75982014-05-29 10:55:11 +00002501 Init = ActOnFinishFullExpr(Init.get(), InitLoc);
Richard Smith938f40b2011-06-11 17:19:42 +00002502 if (Init.isInvalid()) {
2503 FD->setInvalidDecl();
2504 return;
2505 }
2506
Nikola Smiljanic01a75982014-05-29 10:55:11 +00002507 InitExpr = Init.get();
Richard Smith938f40b2011-06-11 17:19:42 +00002508
2509 FD->setInClassInitializer(InitExpr);
2510}
2511
Douglas Gregor15e77a22009-12-31 09:10:24 +00002512/// \brief Find the direct and/or virtual base specifiers that
2513/// correspond to the given base type, for use in base initialization
2514/// within a constructor.
2515static bool FindBaseInitializer(Sema &SemaRef,
2516 CXXRecordDecl *ClassDecl,
2517 QualType BaseType,
2518 const CXXBaseSpecifier *&DirectBaseSpec,
2519 const CXXBaseSpecifier *&VirtualBaseSpec) {
2520 // First, check for a direct base class.
Craig Topperc3ec1492014-05-26 06:22:03 +00002521 DirectBaseSpec = nullptr;
Aaron Ballman574705e2014-03-13 15:41:46 +00002522 for (const auto &Base : ClassDecl->bases()) {
2523 if (SemaRef.Context.hasSameUnqualifiedType(BaseType, Base.getType())) {
Douglas Gregor15e77a22009-12-31 09:10:24 +00002524 // We found a direct base of this type. That's what we're
2525 // initializing.
Aaron Ballman574705e2014-03-13 15:41:46 +00002526 DirectBaseSpec = &Base;
Douglas Gregor15e77a22009-12-31 09:10:24 +00002527 break;
2528 }
2529 }
2530
2531 // Check for a virtual base class.
2532 // FIXME: We might be able to short-circuit this if we know in advance that
2533 // there are no virtual bases.
Craig Topperc3ec1492014-05-26 06:22:03 +00002534 VirtualBaseSpec = nullptr;
Douglas Gregor15e77a22009-12-31 09:10:24 +00002535 if (!DirectBaseSpec || !DirectBaseSpec->isVirtual()) {
2536 // We haven't found a base yet; search the class hierarchy for a
2537 // virtual base class.
2538 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
2539 /*DetectVirtual=*/false);
2540 if (SemaRef.IsDerivedFrom(SemaRef.Context.getTypeDeclType(ClassDecl),
2541 BaseType, Paths)) {
2542 for (CXXBasePaths::paths_iterator Path = Paths.begin();
2543 Path != Paths.end(); ++Path) {
2544 if (Path->back().Base->isVirtual()) {
2545 VirtualBaseSpec = Path->back().Base;
2546 break;
2547 }
2548 }
2549 }
2550 }
2551
2552 return DirectBaseSpec || VirtualBaseSpec;
2553}
2554
Sebastian Redla74948d2011-09-24 17:48:25 +00002555/// \brief Handle a C++ member initializer using braced-init-list syntax.
2556MemInitResult
2557Sema::ActOnMemInitializer(Decl *ConstructorD,
2558 Scope *S,
2559 CXXScopeSpec &SS,
2560 IdentifierInfo *MemberOrBase,
2561 ParsedType TemplateTypeTy,
David Blaikie186a8892012-01-24 06:03:59 +00002562 const DeclSpec &DS,
Sebastian Redla74948d2011-09-24 17:48:25 +00002563 SourceLocation IdLoc,
2564 Expr *InitList,
2565 SourceLocation EllipsisLoc) {
2566 return BuildMemInitializer(ConstructorD, S, SS, MemberOrBase, TemplateTypeTy,
Sebastian Redla9351792012-02-11 23:51:47 +00002567 DS, IdLoc, InitList,
David Blaikie186a8892012-01-24 06:03:59 +00002568 EllipsisLoc);
Sebastian Redla74948d2011-09-24 17:48:25 +00002569}
2570
2571/// \brief Handle a C++ member initializer using parentheses syntax.
John McCallfaf5fb42010-08-26 23:41:50 +00002572MemInitResult
John McCall48871652010-08-21 09:40:31 +00002573Sema::ActOnMemInitializer(Decl *ConstructorD,
Douglas Gregore8381c02008-11-05 04:29:56 +00002574 Scope *S,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00002575 CXXScopeSpec &SS,
Douglas Gregore8381c02008-11-05 04:29:56 +00002576 IdentifierInfo *MemberOrBase,
John McCallba7bf592010-08-24 05:47:05 +00002577 ParsedType TemplateTypeTy,
David Blaikie186a8892012-01-24 06:03:59 +00002578 const DeclSpec &DS,
Douglas Gregore8381c02008-11-05 04:29:56 +00002579 SourceLocation IdLoc,
2580 SourceLocation LParenLoc,
Dmitri Gribenko139474d2013-05-09 23:51:52 +00002581 ArrayRef<Expr *> Args,
Douglas Gregor44e7df62011-01-04 00:32:56 +00002582 SourceLocation RParenLoc,
2583 SourceLocation EllipsisLoc) {
Benjamin Kramerc215e762012-08-24 11:54:20 +00002584 Expr *List = new (Context) ParenListExpr(Context, LParenLoc,
Dmitri Gribenko139474d2013-05-09 23:51:52 +00002585 Args, RParenLoc);
Sebastian Redla74948d2011-09-24 17:48:25 +00002586 return BuildMemInitializer(ConstructorD, S, SS, MemberOrBase, TemplateTypeTy,
Sebastian Redla9351792012-02-11 23:51:47 +00002587 DS, IdLoc, List, EllipsisLoc);
Sebastian Redla74948d2011-09-24 17:48:25 +00002588}
2589
Kaelyn Uhrain2d317ed2012-01-11 19:37:46 +00002590namespace {
2591
Kaelyn Uhrain8811b392012-01-11 21:17:51 +00002592// Callback to only accept typo corrections that can be a valid C++ member
2593// intializer: either a non-static field member or a base class.
Kaelyn Uhrain2d317ed2012-01-11 19:37:46 +00002594class MemInitializerValidatorCCC : public CorrectionCandidateCallback {
Benjamin Kramer8bf44352013-07-24 15:28:33 +00002595public:
Kaelyn Uhrain2d317ed2012-01-11 19:37:46 +00002596 explicit MemInitializerValidatorCCC(CXXRecordDecl *ClassDecl)
2597 : ClassDecl(ClassDecl) {}
2598
Craig Toppera798a9d2014-03-02 09:32:10 +00002599 bool ValidateCandidate(const TypoCorrection &candidate) override {
Kaelyn Uhrain2d317ed2012-01-11 19:37:46 +00002600 if (NamedDecl *ND = candidate.getCorrectionDecl()) {
2601 if (FieldDecl *Member = dyn_cast<FieldDecl>(ND))
2602 return Member->getDeclContext()->getRedeclContext()->Equals(ClassDecl);
Benjamin Kramer8bf44352013-07-24 15:28:33 +00002603 return isa<TypeDecl>(ND);
Kaelyn Uhrain2d317ed2012-01-11 19:37:46 +00002604 }
2605 return false;
2606 }
2607
Benjamin Kramer8bf44352013-07-24 15:28:33 +00002608private:
Kaelyn Uhrain2d317ed2012-01-11 19:37:46 +00002609 CXXRecordDecl *ClassDecl;
2610};
2611
2612}
2613
Sebastian Redla74948d2011-09-24 17:48:25 +00002614/// \brief Handle a C++ member initializer.
2615MemInitResult
2616Sema::BuildMemInitializer(Decl *ConstructorD,
2617 Scope *S,
2618 CXXScopeSpec &SS,
2619 IdentifierInfo *MemberOrBase,
2620 ParsedType TemplateTypeTy,
David Blaikie186a8892012-01-24 06:03:59 +00002621 const DeclSpec &DS,
Sebastian Redla74948d2011-09-24 17:48:25 +00002622 SourceLocation IdLoc,
Sebastian Redla9351792012-02-11 23:51:47 +00002623 Expr *Init,
Sebastian Redla74948d2011-09-24 17:48:25 +00002624 SourceLocation EllipsisLoc) {
Douglas Gregor71a57182009-06-22 23:20:33 +00002625 if (!ConstructorD)
2626 return true;
Mike Stump11289f42009-09-09 15:08:12 +00002627
Douglas Gregorc8c277a2009-08-24 11:57:43 +00002628 AdjustDeclIfTemplate(ConstructorD);
Mike Stump11289f42009-09-09 15:08:12 +00002629
2630 CXXConstructorDecl *Constructor
John McCall48871652010-08-21 09:40:31 +00002631 = dyn_cast<CXXConstructorDecl>(ConstructorD);
Douglas Gregore8381c02008-11-05 04:29:56 +00002632 if (!Constructor) {
2633 // The user wrote a constructor initializer on a function that is
2634 // not a C++ constructor. Ignore the error for now, because we may
2635 // have more member initializers coming; we'll diagnose it just
2636 // once in ActOnMemInitializers.
2637 return true;
2638 }
2639
2640 CXXRecordDecl *ClassDecl = Constructor->getParent();
2641
2642 // C++ [class.base.init]p2:
2643 // Names in a mem-initializer-id are looked up in the scope of the
Nick Lewycky9331ed82010-11-20 01:29:55 +00002644 // constructor's class and, if not found in that scope, are looked
2645 // up in the scope containing the constructor's definition.
2646 // [Note: if the constructor's class contains a member with the
2647 // same name as a direct or virtual base class of the class, a
2648 // mem-initializer-id naming the member or base class and composed
2649 // of a single identifier refers to the class member. A
Douglas Gregore8381c02008-11-05 04:29:56 +00002650 // mem-initializer-id for the hidden base class may be specified
2651 // using a qualified name. ]
Fariborz Jahanianc1fc3ec2009-07-01 19:21:19 +00002652 if (!SS.getScopeRep() && !TemplateTypeTy) {
Fariborz Jahanian302bb662009-06-30 23:26:25 +00002653 // Look for a member, first.
Mike Stump11289f42009-09-09 15:08:12 +00002654 DeclContext::lookup_result Result
Fariborz Jahanian302bb662009-06-30 23:26:25 +00002655 = ClassDecl->lookup(MemberOrBase);
David Blaikieff7d47a2012-12-19 00:45:41 +00002656 if (!Result.empty()) {
Peter Collingbourne05156e32011-10-23 18:59:37 +00002657 ValueDecl *Member;
David Blaikieff7d47a2012-12-19 00:45:41 +00002658 if ((Member = dyn_cast<FieldDecl>(Result.front())) ||
2659 (Member = dyn_cast<IndirectFieldDecl>(Result.front()))) {
Douglas Gregor44e7df62011-01-04 00:32:56 +00002660 if (EllipsisLoc.isValid())
2661 Diag(EllipsisLoc, diag::err_pack_expansion_member_init)
Sebastian Redla9351792012-02-11 23:51:47 +00002662 << MemberOrBase
2663 << SourceRange(IdLoc, Init->getSourceRange().getEnd());
Sebastian Redla74948d2011-09-24 17:48:25 +00002664
Sebastian Redla9351792012-02-11 23:51:47 +00002665 return BuildMemberInitializer(Member, Init, IdLoc);
Douglas Gregor44e7df62011-01-04 00:32:56 +00002666 }
Francois Pichetd583da02010-12-04 09:14:42 +00002667 }
Douglas Gregore8381c02008-11-05 04:29:56 +00002668 }
Douglas Gregore8381c02008-11-05 04:29:56 +00002669 // It didn't name a member, so see if it names a class.
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00002670 QualType BaseType;
Craig Topperc3ec1492014-05-26 06:22:03 +00002671 TypeSourceInfo *TInfo = nullptr;
John McCallb5a0d312009-12-21 10:41:20 +00002672
2673 if (TemplateTypeTy) {
John McCallbcd03502009-12-07 02:54:59 +00002674 BaseType = GetTypeFromParser(TemplateTypeTy, &TInfo);
David Blaikie186a8892012-01-24 06:03:59 +00002675 } else if (DS.getTypeSpecType() == TST_decltype) {
2676 BaseType = BuildDecltypeType(DS.getRepAsExpr(), DS.getTypeSpecTypeLoc());
John McCallb5a0d312009-12-21 10:41:20 +00002677 } else {
2678 LookupResult R(*this, MemberOrBase, IdLoc, LookupOrdinaryName);
2679 LookupParsedName(R, S, &SS);
2680
2681 TypeDecl *TyD = R.getAsSingle<TypeDecl>();
2682 if (!TyD) {
2683 if (R.isAmbiguous()) return true;
2684
John McCallda6841b2010-04-09 19:01:14 +00002685 // We don't want access-control diagnostics here.
2686 R.suppressDiagnostics();
2687
Douglas Gregora3b624a2010-01-19 06:46:48 +00002688 if (SS.isSet() && isDependentScopeSpecifier(SS)) {
2689 bool NotUnknownSpecialization = false;
2690 DeclContext *DC = computeDeclContext(SS, false);
2691 if (CXXRecordDecl *Record = dyn_cast_or_null<CXXRecordDecl>(DC))
2692 NotUnknownSpecialization = !Record->hasAnyDependentBases();
2693
2694 if (!NotUnknownSpecialization) {
2695 // When the scope specifier can refer to a member of an unknown
2696 // specialization, we take it as a type name.
Douglas Gregor9cbc22b2011-02-28 22:42:13 +00002697 BaseType = CheckTypenameType(ETK_None, SourceLocation(),
2698 SS.getWithLocInContext(Context),
2699 *MemberOrBase, IdLoc);
Douglas Gregor281c4862010-03-07 23:26:22 +00002700 if (BaseType.isNull())
2701 return true;
2702
Douglas Gregora3b624a2010-01-19 06:46:48 +00002703 R.clear();
Douglas Gregorc048c522010-06-29 19:27:42 +00002704 R.setLookupName(MemberOrBase);
Douglas Gregora3b624a2010-01-19 06:46:48 +00002705 }
2706 }
2707
Douglas Gregor15e77a22009-12-31 09:10:24 +00002708 // If no results were found, try to correct typos.
Douglas Gregorc2fa1692011-06-28 16:20:02 +00002709 TypoCorrection Corr;
Kaelyn Uhrain2d317ed2012-01-11 19:37:46 +00002710 MemInitializerValidatorCCC Validator(ClassDecl);
Douglas Gregora3b624a2010-01-19 06:46:48 +00002711 if (R.empty() && BaseType.isNull() &&
Douglas Gregorc2fa1692011-06-28 16:20:02 +00002712 (Corr = CorrectTypo(R.getLookupNameInfo(), R.getLookupKind(), S, &SS,
John Thompson2255f2c2014-04-23 12:57:01 +00002713 Validator, CTK_ErrorRecovery, ClassDecl))) {
Douglas Gregorc2fa1692011-06-28 16:20:02 +00002714 if (FieldDecl *Member = Corr.getCorrectionDeclAs<FieldDecl>()) {
Kaelyn Uhrain2d317ed2012-01-11 19:37:46 +00002715 // We have found a non-static data member with a similar
2716 // name to what was typed; complain and initialize that
2717 // member.
Richard Smithf9b15102013-08-17 00:46:16 +00002718 diagnoseTypo(Corr,
2719 PDiag(diag::err_mem_init_not_member_or_class_suggest)
2720 << MemberOrBase << true);
Sebastian Redla9351792012-02-11 23:51:47 +00002721 return BuildMemberInitializer(Member, Init, IdLoc);
Douglas Gregorc2fa1692011-06-28 16:20:02 +00002722 } else if (TypeDecl *Type = Corr.getCorrectionDeclAs<TypeDecl>()) {
Douglas Gregor15e77a22009-12-31 09:10:24 +00002723 const CXXBaseSpecifier *DirectBaseSpec;
2724 const CXXBaseSpecifier *VirtualBaseSpec;
2725 if (FindBaseInitializer(*this, ClassDecl,
2726 Context.getTypeDeclType(Type),
2727 DirectBaseSpec, VirtualBaseSpec)) {
2728 // We have found a direct or virtual base class with a
2729 // similar name to what was typed; complain and initialize
2730 // that base class.
Richard Smithf9b15102013-08-17 00:46:16 +00002731 diagnoseTypo(Corr,
2732 PDiag(diag::err_mem_init_not_member_or_class_suggest)
2733 << MemberOrBase << false,
2734 PDiag() /*Suppress note, we provide our own.*/);
Douglas Gregor43a08572010-01-07 00:26:25 +00002735
Richard Smithf9b15102013-08-17 00:46:16 +00002736 const CXXBaseSpecifier *BaseSpec = DirectBaseSpec ? DirectBaseSpec
2737 : VirtualBaseSpec;
Daniel Dunbar62ee6412012-03-09 18:35:03 +00002738 Diag(BaseSpec->getLocStart(),
Douglas Gregor43a08572010-01-07 00:26:25 +00002739 diag::note_base_class_specified_here)
2740 << BaseSpec->getType()
2741 << BaseSpec->getSourceRange();
2742
Douglas Gregor15e77a22009-12-31 09:10:24 +00002743 TyD = Type;
2744 }
2745 }
2746 }
2747
Douglas Gregora3b624a2010-01-19 06:46:48 +00002748 if (!TyD && BaseType.isNull()) {
Douglas Gregor15e77a22009-12-31 09:10:24 +00002749 Diag(IdLoc, diag::err_mem_init_not_member_or_class)
Sebastian Redla9351792012-02-11 23:51:47 +00002750 << MemberOrBase << SourceRange(IdLoc,Init->getSourceRange().getEnd());
Douglas Gregor15e77a22009-12-31 09:10:24 +00002751 return true;
2752 }
John McCallb5a0d312009-12-21 10:41:20 +00002753 }
2754
Douglas Gregora3b624a2010-01-19 06:46:48 +00002755 if (BaseType.isNull()) {
2756 BaseType = Context.getTypeDeclType(TyD);
Aaron Ballman4a979672014-01-03 13:56:08 +00002757 if (SS.isSet())
Douglas Gregora3b624a2010-01-19 06:46:48 +00002758 // FIXME: preserve source range information
Aaron Ballman4a979672014-01-03 13:56:08 +00002759 BaseType = Context.getElaboratedType(ETK_None, SS.getScopeRep(),
2760 BaseType);
John McCallb5a0d312009-12-21 10:41:20 +00002761 }
2762 }
Mike Stump11289f42009-09-09 15:08:12 +00002763
John McCallbcd03502009-12-07 02:54:59 +00002764 if (!TInfo)
2765 TInfo = Context.getTrivialTypeSourceInfo(BaseType, IdLoc);
Douglas Gregore8381c02008-11-05 04:29:56 +00002766
Sebastian Redla9351792012-02-11 23:51:47 +00002767 return BuildBaseInitializer(BaseType, TInfo, Init, ClassDecl, EllipsisLoc);
Eli Friedman8e1433b2009-07-29 19:44:27 +00002768}
2769
Chandler Carruth599deef2011-09-03 01:14:15 +00002770/// Checks a member initializer expression for cases where reference (or
2771/// pointer) members are bound to by-value parameters (or their addresses).
Chandler Carruth599deef2011-09-03 01:14:15 +00002772static void CheckForDanglingReferenceOrPointer(Sema &S, ValueDecl *Member,
2773 Expr *Init,
2774 SourceLocation IdLoc) {
2775 QualType MemberTy = Member->getType();
2776
2777 // We only handle pointers and references currently.
2778 // FIXME: Would this be relevant for ObjC object pointers? Or block pointers?
2779 if (!MemberTy->isReferenceType() && !MemberTy->isPointerType())
2780 return;
2781
2782 const bool IsPointer = MemberTy->isPointerType();
2783 if (IsPointer) {
2784 if (const UnaryOperator *Op
2785 = dyn_cast<UnaryOperator>(Init->IgnoreParenImpCasts())) {
2786 // The only case we're worried about with pointers requires taking the
2787 // address.
2788 if (Op->getOpcode() != UO_AddrOf)
2789 return;
2790
2791 Init = Op->getSubExpr();
2792 } else {
2793 // We only handle address-of expression initializers for pointers.
2794 return;
2795 }
2796 }
2797
Richard Smithe3b28bc2013-06-12 21:51:50 +00002798 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Init->IgnoreParens())) {
Chandler Carruthd551d4e2011-09-03 02:21:57 +00002799 // We only warn when referring to a non-reference parameter declaration.
2800 const ParmVarDecl *Parameter = dyn_cast<ParmVarDecl>(DRE->getDecl());
2801 if (!Parameter || Parameter->getType()->isReferenceType())
Chandler Carruth599deef2011-09-03 01:14:15 +00002802 return;
2803
2804 S.Diag(Init->getExprLoc(),
2805 IsPointer ? diag::warn_init_ptr_member_to_parameter_addr
2806 : diag::warn_bind_ref_member_to_parameter)
2807 << Member << Parameter << Init->getSourceRange();
Chandler Carruthd551d4e2011-09-03 02:21:57 +00002808 } else {
2809 // Other initializers are fine.
2810 return;
Chandler Carruth599deef2011-09-03 01:14:15 +00002811 }
Chandler Carruthd551d4e2011-09-03 02:21:57 +00002812
2813 S.Diag(Member->getLocation(), diag::note_ref_or_ptr_member_declared_here)
2814 << (unsigned)IsPointer;
Chandler Carruth599deef2011-09-03 01:14:15 +00002815}
2816
John McCallfaf5fb42010-08-26 23:41:50 +00002817MemInitResult
Sebastian Redla9351792012-02-11 23:51:47 +00002818Sema::BuildMemberInitializer(ValueDecl *Member, Expr *Init,
Sebastian Redla74948d2011-09-24 17:48:25 +00002819 SourceLocation IdLoc) {
Chandler Carruthd44c3102010-12-06 09:23:57 +00002820 FieldDecl *DirectMember = dyn_cast<FieldDecl>(Member);
2821 IndirectFieldDecl *IndirectMember = dyn_cast<IndirectFieldDecl>(Member);
2822 assert((DirectMember || IndirectMember) &&
Francois Pichetd583da02010-12-04 09:14:42 +00002823 "Member must be a FieldDecl or IndirectFieldDecl");
2824
Sebastian Redla9351792012-02-11 23:51:47 +00002825 if (DiagnoseUnexpandedParameterPack(Init, UPPC_Initializer))
Peter Collingbourne9f58d7b2011-10-23 18:59:44 +00002826 return true;
2827
Douglas Gregor266bb5f2010-11-05 22:21:31 +00002828 if (Member->isInvalidDecl())
2829 return true;
Chandler Carruthd44c3102010-12-06 09:23:57 +00002830
Dmitri Gribenko8f8930f2013-05-03 15:05:50 +00002831 MultiExprArg Args;
Sebastian Redla9351792012-02-11 23:51:47 +00002832 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
Dmitri Gribenko8f8930f2013-05-03 15:05:50 +00002833 Args = MultiExprArg(ParenList->getExprs(), ParenList->getNumExprs());
Richard Smithd59b8322012-12-19 01:39:02 +00002834 } else if (InitListExpr *InitList = dyn_cast<InitListExpr>(Init)) {
Dmitri Gribenko8f8930f2013-05-03 15:05:50 +00002835 Args = MultiExprArg(InitList->getInits(), InitList->getNumInits());
Richard Smithd59b8322012-12-19 01:39:02 +00002836 } else {
2837 // Template instantiation doesn't reconstruct ParenListExprs for us.
Dmitri Gribenko8f8930f2013-05-03 15:05:50 +00002838 Args = Init;
Sebastian Redla9351792012-02-11 23:51:47 +00002839 }
Daniel Jasper0baec5492012-06-06 08:32:04 +00002840
Sebastian Redla9351792012-02-11 23:51:47 +00002841 SourceRange InitRange = Init->getSourceRange();
Eli Friedman8e1433b2009-07-29 19:44:27 +00002842
Sebastian Redla9351792012-02-11 23:51:47 +00002843 if (Member->getType()->isDependentType() || Init->isTypeDependent()) {
Douglas Gregor7ae2d772010-01-31 09:12:51 +00002844 // Can't check initialization for a member of dependent type or when
2845 // any of the arguments are type-dependent expressions.
John McCall31168b02011-06-15 23:02:42 +00002846 DiscardCleanupsInEvaluationContext();
Chandler Carruthd44c3102010-12-06 09:23:57 +00002847 } else {
Sebastian Redl0501c632012-02-12 16:37:36 +00002848 bool InitList = false;
2849 if (isa<InitListExpr>(Init)) {
2850 InitList = true;
Dmitri Gribenko8f8930f2013-05-03 15:05:50 +00002851 Args = Init;
Sebastian Redl0501c632012-02-12 16:37:36 +00002852 }
2853
Chandler Carruthd44c3102010-12-06 09:23:57 +00002854 // Initialize the member.
2855 InitializedEntity MemberEntity =
Craig Topperc3ec1492014-05-26 06:22:03 +00002856 DirectMember ? InitializedEntity::InitializeMember(DirectMember, nullptr)
2857 : InitializedEntity::InitializeMember(IndirectMember,
2858 nullptr);
Chandler Carruthd44c3102010-12-06 09:23:57 +00002859 InitializationKind Kind =
Sebastian Redl0501c632012-02-12 16:37:36 +00002860 InitList ? InitializationKind::CreateDirectList(IdLoc)
2861 : InitializationKind::CreateDirect(IdLoc, InitRange.getBegin(),
2862 InitRange.getEnd());
John McCallacf0ee52010-10-08 02:01:28 +00002863
Dmitri Gribenko8f8930f2013-05-03 15:05:50 +00002864 InitializationSequence InitSeq(*this, MemberEntity, Kind, Args);
Craig Topperc3ec1492014-05-26 06:22:03 +00002865 ExprResult MemberInit = InitSeq.Perform(*this, MemberEntity, Kind, Args,
2866 nullptr);
Chandler Carruthd44c3102010-12-06 09:23:57 +00002867 if (MemberInit.isInvalid())
2868 return true;
2869
Richard Smith736a9472013-06-12 20:42:33 +00002870 CheckForDanglingReferenceOrPointer(*this, Member, MemberInit.get(), IdLoc);
2871
Richard Smith945f8d32013-01-14 22:39:08 +00002872 // C++11 [class.base.init]p7:
Chandler Carruthd44c3102010-12-06 09:23:57 +00002873 // The initialization of each base and member constitutes a
2874 // full-expression.
Richard Smith945f8d32013-01-14 22:39:08 +00002875 MemberInit = ActOnFinishFullExpr(MemberInit.get(), InitRange.getBegin());
Chandler Carruthd44c3102010-12-06 09:23:57 +00002876 if (MemberInit.isInvalid())
2877 return true;
2878
Richard Smithd59b8322012-12-19 01:39:02 +00002879 Init = MemberInit.get();
Douglas Gregor7ae2d772010-01-31 09:12:51 +00002880 }
2881
Chandler Carruthd44c3102010-12-06 09:23:57 +00002882 if (DirectMember) {
Sebastian Redla9351792012-02-11 23:51:47 +00002883 return new (Context) CXXCtorInitializer(Context, DirectMember, IdLoc,
2884 InitRange.getBegin(), Init,
2885 InitRange.getEnd());
Chandler Carruthd44c3102010-12-06 09:23:57 +00002886 } else {
Sebastian Redla9351792012-02-11 23:51:47 +00002887 return new (Context) CXXCtorInitializer(Context, IndirectMember, IdLoc,
2888 InitRange.getBegin(), Init,
2889 InitRange.getEnd());
Chandler Carruthd44c3102010-12-06 09:23:57 +00002890 }
Eli Friedman8e1433b2009-07-29 19:44:27 +00002891}
2892
John McCallfaf5fb42010-08-26 23:41:50 +00002893MemInitResult
Sebastian Redla9351792012-02-11 23:51:47 +00002894Sema::BuildDelegatingInitializer(TypeSourceInfo *TInfo, Expr *Init,
Alexis Huntc5575cc2011-02-26 19:13:13 +00002895 CXXRecordDecl *ClassDecl) {
Douglas Gregord73f3dd2011-11-01 01:16:03 +00002896 SourceLocation NameLoc = TInfo->getTypeLoc().getLocalSourceRange().getBegin();
Richard Smith2bf7fdb2013-01-02 11:42:31 +00002897 if (!LangOpts.CPlusPlus11)
Douglas Gregord73f3dd2011-11-01 01:16:03 +00002898 return Diag(NameLoc, diag::err_delegating_ctor)
Alexis Hunt4049b8d2011-01-08 19:20:43 +00002899 << TInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregord73f3dd2011-11-01 01:16:03 +00002900 Diag(NameLoc, diag::warn_cxx98_compat_delegating_ctor);
Sebastian Redl9cb4be22011-03-12 13:53:51 +00002901
Sebastian Redl0501c632012-02-12 16:37:36 +00002902 bool InitList = true;
Dmitri Gribenko8f8930f2013-05-03 15:05:50 +00002903 MultiExprArg Args = Init;
Sebastian Redl0501c632012-02-12 16:37:36 +00002904 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
2905 InitList = false;
Dmitri Gribenko8f8930f2013-05-03 15:05:50 +00002906 Args = MultiExprArg(ParenList->getExprs(), ParenList->getNumExprs());
Sebastian Redl0501c632012-02-12 16:37:36 +00002907 }
2908
Sebastian Redla9351792012-02-11 23:51:47 +00002909 SourceRange InitRange = Init->getSourceRange();
Alexis Huntc5575cc2011-02-26 19:13:13 +00002910 // Initialize the object.
2911 InitializedEntity DelegationEntity = InitializedEntity::InitializeDelegation(
2912 QualType(ClassDecl->getTypeForDecl(), 0));
2913 InitializationKind Kind =
Sebastian Redl0501c632012-02-12 16:37:36 +00002914 InitList ? InitializationKind::CreateDirectList(NameLoc)
2915 : InitializationKind::CreateDirect(NameLoc, InitRange.getBegin(),
2916 InitRange.getEnd());
Dmitri Gribenko8f8930f2013-05-03 15:05:50 +00002917 InitializationSequence InitSeq(*this, DelegationEntity, Kind, Args);
Sebastian Redla9351792012-02-11 23:51:47 +00002918 ExprResult DelegationInit = InitSeq.Perform(*this, DelegationEntity, Kind,
Craig Topperc3ec1492014-05-26 06:22:03 +00002919 Args, nullptr);
Alexis Huntc5575cc2011-02-26 19:13:13 +00002920 if (DelegationInit.isInvalid())
2921 return true;
2922
Matt Beaumont-Gay3e59fac2011-11-01 18:10:22 +00002923 assert(cast<CXXConstructExpr>(DelegationInit.get())->getConstructor() &&
2924 "Delegating constructor with no target?");
Alexis Huntc5575cc2011-02-26 19:13:13 +00002925
Richard Smith945f8d32013-01-14 22:39:08 +00002926 // C++11 [class.base.init]p7:
Alexis Huntc5575cc2011-02-26 19:13:13 +00002927 // The initialization of each base and member constitutes a
2928 // full-expression.
Richard Smith945f8d32013-01-14 22:39:08 +00002929 DelegationInit = ActOnFinishFullExpr(DelegationInit.get(),
2930 InitRange.getBegin());
Alexis Huntc5575cc2011-02-26 19:13:13 +00002931 if (DelegationInit.isInvalid())
2932 return true;
2933
Eli Friedmana9e9ebc2012-05-19 23:35:23 +00002934 // If we are in a dependent context, template instantiation will
2935 // perform this type-checking again. Just save the arguments that we
2936 // received in a ParenListExpr.
2937 // FIXME: This isn't quite ideal, since our ASTs don't capture all
2938 // of the information that we have about the base
2939 // initializer. However, deconstructing the ASTs is a dicey process,
2940 // and this approach is far more likely to get the corner cases right.
2941 if (CurContext->isDependentContext())
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00002942 DelegationInit = Init;
Eli Friedmana9e9ebc2012-05-19 23:35:23 +00002943
Sebastian Redla9351792012-02-11 23:51:47 +00002944 return new (Context) CXXCtorInitializer(Context, TInfo, InitRange.getBegin(),
Nikola Smiljanic01a75982014-05-29 10:55:11 +00002945 DelegationInit.getAs<Expr>(),
Sebastian Redla9351792012-02-11 23:51:47 +00002946 InitRange.getEnd());
Alexis Hunt4049b8d2011-01-08 19:20:43 +00002947}
2948
2949MemInitResult
John McCallbcd03502009-12-07 02:54:59 +00002950Sema::BuildBaseInitializer(QualType BaseType, TypeSourceInfo *BaseTInfo,
Sebastian Redla9351792012-02-11 23:51:47 +00002951 Expr *Init, CXXRecordDecl *ClassDecl,
Douglas Gregor44e7df62011-01-04 00:32:56 +00002952 SourceLocation EllipsisLoc) {
Douglas Gregor1c69bf02010-06-16 16:03:14 +00002953 SourceLocation BaseLoc
2954 = BaseTInfo->getTypeLoc().getLocalSourceRange().getBegin();
Sebastian Redla74948d2011-09-24 17:48:25 +00002955
Douglas Gregor1c69bf02010-06-16 16:03:14 +00002956 if (!BaseType->isDependentType() && !BaseType->isRecordType())
2957 return Diag(BaseLoc, diag::err_base_init_does_not_name_class)
2958 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
2959
2960 // C++ [class.base.init]p2:
2961 // [...] Unless the mem-initializer-id names a nonstatic data
Nick Lewycky9331ed82010-11-20 01:29:55 +00002962 // member of the constructor's class or a direct or virtual base
Douglas Gregor1c69bf02010-06-16 16:03:14 +00002963 // of that class, the mem-initializer is ill-formed. A
2964 // mem-initializer-list can initialize a base class using any
2965 // name that denotes that base class type.
Sebastian Redla9351792012-02-11 23:51:47 +00002966 bool Dependent = BaseType->isDependentType() || Init->isTypeDependent();
Douglas Gregor1c69bf02010-06-16 16:03:14 +00002967
Sebastian Redla9351792012-02-11 23:51:47 +00002968 SourceRange InitRange = Init->getSourceRange();
Douglas Gregor44e7df62011-01-04 00:32:56 +00002969 if (EllipsisLoc.isValid()) {
2970 // This is a pack expansion.
2971 if (!BaseType->containsUnexpandedParameterPack()) {
2972 Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs)
Sebastian Redla9351792012-02-11 23:51:47 +00002973 << SourceRange(BaseLoc, InitRange.getEnd());
Sebastian Redla74948d2011-09-24 17:48:25 +00002974
Douglas Gregor44e7df62011-01-04 00:32:56 +00002975 EllipsisLoc = SourceLocation();
2976 }
2977 } else {
2978 // Check for any unexpanded parameter packs.
2979 if (DiagnoseUnexpandedParameterPack(BaseLoc, BaseTInfo, UPPC_Initializer))
2980 return true;
Sebastian Redla74948d2011-09-24 17:48:25 +00002981
Sebastian Redla9351792012-02-11 23:51:47 +00002982 if (DiagnoseUnexpandedParameterPack(Init, UPPC_Initializer))
Sebastian Redla74948d2011-09-24 17:48:25 +00002983 return true;
Douglas Gregor44e7df62011-01-04 00:32:56 +00002984 }
Sebastian Redla74948d2011-09-24 17:48:25 +00002985
Douglas Gregor1c69bf02010-06-16 16:03:14 +00002986 // Check for direct and virtual base classes.
Craig Topperc3ec1492014-05-26 06:22:03 +00002987 const CXXBaseSpecifier *DirectBaseSpec = nullptr;
2988 const CXXBaseSpecifier *VirtualBaseSpec = nullptr;
Douglas Gregor1c69bf02010-06-16 16:03:14 +00002989 if (!Dependent) {
Alexis Hunt4049b8d2011-01-08 19:20:43 +00002990 if (Context.hasSameUnqualifiedType(QualType(ClassDecl->getTypeForDecl(),0),
2991 BaseType))
Sebastian Redla9351792012-02-11 23:51:47 +00002992 return BuildDelegatingInitializer(BaseTInfo, Init, ClassDecl);
Alexis Hunt4049b8d2011-01-08 19:20:43 +00002993
Douglas Gregor1c69bf02010-06-16 16:03:14 +00002994 FindBaseInitializer(*this, ClassDecl, BaseType, DirectBaseSpec,
2995 VirtualBaseSpec);
2996
2997 // C++ [base.class.init]p2:
2998 // Unless the mem-initializer-id names a nonstatic data member of the
2999 // constructor's class or a direct or virtual base of that class, the
3000 // mem-initializer is ill-formed.
3001 if (!DirectBaseSpec && !VirtualBaseSpec) {
3002 // If the class has any dependent bases, then it's possible that
3003 // one of those types will resolve to the same type as
3004 // BaseType. Therefore, just treat this as a dependent base
3005 // class initialization. FIXME: Should we try to check the
3006 // initialization anyway? It seems odd.
3007 if (ClassDecl->hasAnyDependentBases())
3008 Dependent = true;
3009 else
3010 return Diag(BaseLoc, diag::err_not_direct_base_or_virtual)
3011 << BaseType << Context.getTypeDeclType(ClassDecl)
3012 << BaseTInfo->getTypeLoc().getLocalSourceRange();
3013 }
3014 }
3015
3016 if (Dependent) {
John McCall31168b02011-06-15 23:02:42 +00003017 DiscardCleanupsInEvaluationContext();
Mike Stump11289f42009-09-09 15:08:12 +00003018
Sebastian Redla74948d2011-09-24 17:48:25 +00003019 return new (Context) CXXCtorInitializer(Context, BaseTInfo,
3020 /*IsVirtual=*/false,
Sebastian Redla9351792012-02-11 23:51:47 +00003021 InitRange.getBegin(), Init,
3022 InitRange.getEnd(), EllipsisLoc);
Douglas Gregore8381c02008-11-05 04:29:56 +00003023 }
Douglas Gregor7ae2d772010-01-31 09:12:51 +00003024
3025 // C++ [base.class.init]p2:
3026 // If a mem-initializer-id is ambiguous because it designates both
3027 // a direct non-virtual base class and an inherited virtual base
3028 // class, the mem-initializer is ill-formed.
3029 if (DirectBaseSpec && VirtualBaseSpec)
3030 return Diag(BaseLoc, diag::err_base_init_direct_and_virtual)
Abramo Bagnara1108e7b2010-05-20 10:00:11 +00003031 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor7ae2d772010-01-31 09:12:51 +00003032
Benjamin Kramer8bf44352013-07-24 15:28:33 +00003033 const CXXBaseSpecifier *BaseSpec = DirectBaseSpec;
Douglas Gregor7ae2d772010-01-31 09:12:51 +00003034 if (!BaseSpec)
Benjamin Kramer8bf44352013-07-24 15:28:33 +00003035 BaseSpec = VirtualBaseSpec;
Douglas Gregor7ae2d772010-01-31 09:12:51 +00003036
3037 // Initialize the base.
Sebastian Redl0501c632012-02-12 16:37:36 +00003038 bool InitList = true;
Dmitri Gribenko8f8930f2013-05-03 15:05:50 +00003039 MultiExprArg Args = Init;
Sebastian Redla9351792012-02-11 23:51:47 +00003040 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
Sebastian Redl0501c632012-02-12 16:37:36 +00003041 InitList = false;
Dmitri Gribenko8f8930f2013-05-03 15:05:50 +00003042 Args = MultiExprArg(ParenList->getExprs(), ParenList->getNumExprs());
Sebastian Redla9351792012-02-11 23:51:47 +00003043 }
Sebastian Redl0501c632012-02-12 16:37:36 +00003044
3045 InitializedEntity BaseEntity =
3046 InitializedEntity::InitializeBase(Context, BaseSpec, VirtualBaseSpec);
3047 InitializationKind Kind =
3048 InitList ? InitializationKind::CreateDirectList(BaseLoc)
3049 : InitializationKind::CreateDirect(BaseLoc, InitRange.getBegin(),
3050 InitRange.getEnd());
Dmitri Gribenko8f8930f2013-05-03 15:05:50 +00003051 InitializationSequence InitSeq(*this, BaseEntity, Kind, Args);
Craig Topperc3ec1492014-05-26 06:22:03 +00003052 ExprResult BaseInit = InitSeq.Perform(*this, BaseEntity, Kind, Args, nullptr);
Douglas Gregor7ae2d772010-01-31 09:12:51 +00003053 if (BaseInit.isInvalid())
3054 return true;
John McCallacf0ee52010-10-08 02:01:28 +00003055
Richard Smith945f8d32013-01-14 22:39:08 +00003056 // C++11 [class.base.init]p7:
3057 // The initialization of each base and member constitutes a
Douglas Gregor7ae2d772010-01-31 09:12:51 +00003058 // full-expression.
Richard Smith945f8d32013-01-14 22:39:08 +00003059 BaseInit = ActOnFinishFullExpr(BaseInit.get(), InitRange.getBegin());
Douglas Gregor7ae2d772010-01-31 09:12:51 +00003060 if (BaseInit.isInvalid())
3061 return true;
3062
3063 // If we are in a dependent context, template instantiation will
3064 // perform this type-checking again. Just save the arguments that we
3065 // received in a ParenListExpr.
3066 // FIXME: This isn't quite ideal, since our ASTs don't capture all
3067 // of the information that we have about the base
3068 // initializer. However, deconstructing the ASTs is a dicey process,
3069 // and this approach is far more likely to get the corner cases right.
Sebastian Redla74948d2011-09-24 17:48:25 +00003070 if (CurContext->isDependentContext())
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00003071 BaseInit = Init;
Douglas Gregor7ae2d772010-01-31 09:12:51 +00003072
Alexis Hunt1d792652011-01-08 20:30:50 +00003073 return new (Context) CXXCtorInitializer(Context, BaseTInfo,
Sebastian Redla74948d2011-09-24 17:48:25 +00003074 BaseSpec->isVirtual(),
Sebastian Redla9351792012-02-11 23:51:47 +00003075 InitRange.getBegin(),
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003076 BaseInit.getAs<Expr>(),
Sebastian Redla9351792012-02-11 23:51:47 +00003077 InitRange.getEnd(), EllipsisLoc);
Douglas Gregore8381c02008-11-05 04:29:56 +00003078}
3079
Sebastian Redl22653ba2011-08-30 19:58:05 +00003080// Create a static_cast\<T&&>(expr).
Richard Smithc2bc61b2013-03-18 21:12:30 +00003081static Expr *CastForMoving(Sema &SemaRef, Expr *E, QualType T = QualType()) {
3082 if (T.isNull()) T = E->getType();
3083 QualType TargetType = SemaRef.BuildReferenceType(
3084 T, /*SpelledAsLValue*/false, SourceLocation(), DeclarationName());
Sebastian Redl22653ba2011-08-30 19:58:05 +00003085 SourceLocation ExprLoc = E->getLocStart();
3086 TypeSourceInfo *TargetLoc = SemaRef.Context.getTrivialTypeSourceInfo(
3087 TargetType, ExprLoc);
3088
3089 return SemaRef.BuildCXXNamedCast(ExprLoc, tok::kw_static_cast, TargetLoc, E,
3090 SourceRange(ExprLoc, ExprLoc),
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003091 E->getSourceRange()).get();
Sebastian Redl22653ba2011-08-30 19:58:05 +00003092}
3093
Anders Carlsson1b00e242010-04-23 03:10:23 +00003094/// ImplicitInitializerKind - How an implicit base or member initializer should
3095/// initialize its base or member.
3096enum ImplicitInitializerKind {
3097 IIK_Default,
3098 IIK_Copy,
Richard Smithc2bc61b2013-03-18 21:12:30 +00003099 IIK_Move,
3100 IIK_Inherit
Anders Carlsson1b00e242010-04-23 03:10:23 +00003101};
3102
Anders Carlsson6bd91c32010-04-23 02:00:02 +00003103static bool
Anders Carlsson3c1db572010-04-23 02:15:47 +00003104BuildImplicitBaseInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlsson1b00e242010-04-23 03:10:23 +00003105 ImplicitInitializerKind ImplicitInitKind,
Anders Carlsson43c64af2010-04-21 19:52:01 +00003106 CXXBaseSpecifier *BaseSpec,
Anders Carlsson6bd91c32010-04-23 02:00:02 +00003107 bool IsInheritedVirtualBase,
Alexis Hunt1d792652011-01-08 20:30:50 +00003108 CXXCtorInitializer *&CXXBaseInit) {
Anders Carlssoncedc0a42010-04-20 23:11:20 +00003109 InitializedEntity InitEntity
Anders Carlsson43c64af2010-04-21 19:52:01 +00003110 = InitializedEntity::InitializeBase(SemaRef.Context, BaseSpec,
3111 IsInheritedVirtualBase);
Anders Carlssoncedc0a42010-04-20 23:11:20 +00003112
John McCalldadc5752010-08-24 06:29:42 +00003113 ExprResult BaseInit;
Anders Carlsson1b00e242010-04-23 03:10:23 +00003114
3115 switch (ImplicitInitKind) {
Richard Smithc2bc61b2013-03-18 21:12:30 +00003116 case IIK_Inherit: {
3117 const CXXRecordDecl *Inherited =
3118 Constructor->getInheritedConstructor()->getParent();
3119 const CXXRecordDecl *Base = BaseSpec->getType()->getAsCXXRecordDecl();
3120 if (Base && Inherited->getCanonicalDecl() == Base->getCanonicalDecl()) {
3121 // C++11 [class.inhctor]p8:
3122 // Each expression in the expression-list is of the form
3123 // static_cast<T&&>(p), where p is the name of the corresponding
3124 // constructor parameter and T is the declared type of p.
3125 SmallVector<Expr*, 16> Args;
3126 for (unsigned I = 0, E = Constructor->getNumParams(); I != E; ++I) {
3127 ParmVarDecl *PD = Constructor->getParamDecl(I);
3128 ExprResult ArgExpr =
3129 SemaRef.BuildDeclRefExpr(PD, PD->getType().getNonReferenceType(),
3130 VK_LValue, SourceLocation());
3131 if (ArgExpr.isInvalid())
3132 return true;
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003133 Args.push_back(CastForMoving(SemaRef, ArgExpr.get(), PD->getType()));
Richard Smithc2bc61b2013-03-18 21:12:30 +00003134 }
3135
3136 InitializationKind InitKind = InitializationKind::CreateDirect(
3137 Constructor->getLocation(), SourceLocation(), SourceLocation());
Dmitri Gribenko8f8930f2013-05-03 15:05:50 +00003138 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, Args);
Richard Smithc2bc61b2013-03-18 21:12:30 +00003139 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind, Args);
3140 break;
3141 }
3142 }
3143 // Fall through.
Anders Carlsson1b00e242010-04-23 03:10:23 +00003144 case IIK_Default: {
3145 InitializationKind InitKind
3146 = InitializationKind::CreateDefault(Constructor->getLocation());
Dmitri Gribenko78852e92013-05-05 20:40:26 +00003147 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, None);
3148 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind, None);
Anders Carlsson1b00e242010-04-23 03:10:23 +00003149 break;
3150 }
Anders Carlssoncedc0a42010-04-20 23:11:20 +00003151
Sebastian Redl22653ba2011-08-30 19:58:05 +00003152 case IIK_Move:
Anders Carlsson1b00e242010-04-23 03:10:23 +00003153 case IIK_Copy: {
Sebastian Redl22653ba2011-08-30 19:58:05 +00003154 bool Moving = ImplicitInitKind == IIK_Move;
Anders Carlsson1b00e242010-04-23 03:10:23 +00003155 ParmVarDecl *Param = Constructor->getParamDecl(0);
3156 QualType ParamType = Param->getType().getNonReferenceType();
Eli Friedman2dfa7932012-01-16 21:00:51 +00003157
Anders Carlsson1b00e242010-04-23 03:10:23 +00003158 Expr *CopyCtorArg =
Abramo Bagnara7945c982012-01-27 09:46:47 +00003159 DeclRefExpr::Create(SemaRef.Context, NestedNameSpecifierLoc(),
John McCall113bee02012-03-10 09:33:50 +00003160 SourceLocation(), Param, false,
John McCall7decc9e2010-11-18 06:31:45 +00003161 Constructor->getLocation(), ParamType,
Craig Topperc3ec1492014-05-26 06:22:03 +00003162 VK_LValue, nullptr);
Sebastian Redl22653ba2011-08-30 19:58:05 +00003163
Eli Friedmanfa0df832012-02-02 03:46:19 +00003164 SemaRef.MarkDeclRefReferenced(cast<DeclRefExpr>(CopyCtorArg));
3165
Anders Carlssonaf13c7b2010-04-24 22:02:54 +00003166 // Cast to the base class to avoid ambiguities.
Anders Carlsson79111502010-05-01 16:39:01 +00003167 QualType ArgTy =
3168 SemaRef.Context.getQualifiedType(BaseSpec->getType().getUnqualifiedType(),
3169 ParamType.getQualifiers());
John McCallcf142162010-08-07 06:22:56 +00003170
Sebastian Redl22653ba2011-08-30 19:58:05 +00003171 if (Moving) {
3172 CopyCtorArg = CastForMoving(SemaRef, CopyCtorArg);
3173 }
3174
John McCallcf142162010-08-07 06:22:56 +00003175 CXXCastPath BasePath;
3176 BasePath.push_back(BaseSpec);
John Wiegley01296292011-04-08 18:41:53 +00003177 CopyCtorArg = SemaRef.ImpCastExprToType(CopyCtorArg, ArgTy,
3178 CK_UncheckedDerivedToBase,
Sebastian Redle9c4e842011-09-04 18:14:28 +00003179 Moving ? VK_XValue : VK_LValue,
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003180 &BasePath).get();
Anders Carlssonaf13c7b2010-04-24 22:02:54 +00003181
Anders Carlsson1b00e242010-04-23 03:10:23 +00003182 InitializationKind InitKind
3183 = InitializationKind::CreateDirect(Constructor->getLocation(),
3184 SourceLocation(), SourceLocation());
Dmitri Gribenko8f8930f2013-05-03 15:05:50 +00003185 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, CopyCtorArg);
3186 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind, CopyCtorArg);
Anders Carlsson1b00e242010-04-23 03:10:23 +00003187 break;
3188 }
Anders Carlsson1b00e242010-04-23 03:10:23 +00003189 }
John McCallb268a282010-08-23 23:25:46 +00003190
Douglas Gregora40433a2010-12-07 00:41:46 +00003191 BaseInit = SemaRef.MaybeCreateExprWithCleanups(BaseInit);
Anders Carlssoncedc0a42010-04-20 23:11:20 +00003192 if (BaseInit.isInvalid())
Anders Carlsson6bd91c32010-04-23 02:00:02 +00003193 return true;
Anders Carlssoncedc0a42010-04-20 23:11:20 +00003194
Anders Carlsson6bd91c32010-04-23 02:00:02 +00003195 CXXBaseInit =
Alexis Hunt1d792652011-01-08 20:30:50 +00003196 new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
Anders Carlssoncedc0a42010-04-20 23:11:20 +00003197 SemaRef.Context.getTrivialTypeSourceInfo(BaseSpec->getType(),
3198 SourceLocation()),
3199 BaseSpec->isVirtual(),
3200 SourceLocation(),
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003201 BaseInit.getAs<Expr>(),
Douglas Gregor44e7df62011-01-04 00:32:56 +00003202 SourceLocation(),
Anders Carlssoncedc0a42010-04-20 23:11:20 +00003203 SourceLocation());
3204
Anders Carlsson6bd91c32010-04-23 02:00:02 +00003205 return false;
Anders Carlssoncedc0a42010-04-20 23:11:20 +00003206}
3207
Sebastian Redl22653ba2011-08-30 19:58:05 +00003208static bool RefersToRValueRef(Expr *MemRef) {
3209 ValueDecl *Referenced = cast<MemberExpr>(MemRef)->getMemberDecl();
3210 return Referenced->getType()->isRValueReferenceType();
3211}
3212
Anders Carlsson3c1db572010-04-23 02:15:47 +00003213static bool
3214BuildImplicitMemberInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor,
Anders Carlsson1b00e242010-04-23 03:10:23 +00003215 ImplicitInitializerKind ImplicitInitKind,
Douglas Gregor493627b2011-08-10 15:22:55 +00003216 FieldDecl *Field, IndirectFieldDecl *Indirect,
Alexis Hunt1d792652011-01-08 20:30:50 +00003217 CXXCtorInitializer *&CXXMemberInit) {
Douglas Gregor3f4f03a2010-05-20 22:12:02 +00003218 if (Field->isInvalidDecl())
3219 return true;
3220
Chandler Carruth9c9286b2010-06-29 23:50:44 +00003221 SourceLocation Loc = Constructor->getLocation();
3222
Sebastian Redl22653ba2011-08-30 19:58:05 +00003223 if (ImplicitInitKind == IIK_Copy || ImplicitInitKind == IIK_Move) {
3224 bool Moving = ImplicitInitKind == IIK_Move;
Anders Carlsson423f5d82010-04-23 16:04:08 +00003225 ParmVarDecl *Param = Constructor->getParamDecl(0);
3226 QualType ParamType = Param->getType().getNonReferenceType();
John McCall1b1a1db2011-06-17 00:18:42 +00003227
3228 // Suppress copying zero-width bitfields.
Richard Smithcaf33902011-10-10 18:28:20 +00003229 if (Field->isBitField() && Field->getBitWidthValue(SemaRef.Context) == 0)
3230 return false;
Douglas Gregor10f939c2011-11-02 23:04:16 +00003231
Anders Carlsson423f5d82010-04-23 16:04:08 +00003232 Expr *MemberExprBase =
Abramo Bagnara7945c982012-01-27 09:46:47 +00003233 DeclRefExpr::Create(SemaRef.Context, NestedNameSpecifierLoc(),
John McCall113bee02012-03-10 09:33:50 +00003234 SourceLocation(), Param, false,
Craig Topperc3ec1492014-05-26 06:22:03 +00003235 Loc, ParamType, VK_LValue, nullptr);
Douglas Gregor94f9a482010-05-05 05:51:00 +00003236
Eli Friedmanfa0df832012-02-02 03:46:19 +00003237 SemaRef.MarkDeclRefReferenced(cast<DeclRefExpr>(MemberExprBase));
3238
Sebastian Redl22653ba2011-08-30 19:58:05 +00003239 if (Moving) {
3240 MemberExprBase = CastForMoving(SemaRef, MemberExprBase);
3241 }
3242
Douglas Gregor94f9a482010-05-05 05:51:00 +00003243 // Build a reference to this field within the parameter.
3244 CXXScopeSpec SS;
3245 LookupResult MemberLookup(SemaRef, Field->getDeclName(), Loc,
3246 Sema::LookupMemberName);
Sebastian Redl22653ba2011-08-30 19:58:05 +00003247 MemberLookup.addDecl(Indirect ? cast<ValueDecl>(Indirect)
3248 : cast<ValueDecl>(Field), AS_public);
Douglas Gregor94f9a482010-05-05 05:51:00 +00003249 MemberLookup.resolveKind();
Sebastian Redle9c4e842011-09-04 18:14:28 +00003250 ExprResult CtorArg
John McCallb268a282010-08-23 23:25:46 +00003251 = SemaRef.BuildMemberReferenceExpr(MemberExprBase,
Douglas Gregor94f9a482010-05-05 05:51:00 +00003252 ParamType, Loc,
3253 /*IsArrow=*/false,
3254 SS,
Abramo Bagnara7945c982012-01-27 09:46:47 +00003255 /*TemplateKWLoc=*/SourceLocation(),
Craig Topperc3ec1492014-05-26 06:22:03 +00003256 /*FirstQualifierInScope=*/nullptr,
Douglas Gregor94f9a482010-05-05 05:51:00 +00003257 MemberLookup,
Craig Topperc3ec1492014-05-26 06:22:03 +00003258 /*TemplateArgs=*/nullptr);
Sebastian Redle9c4e842011-09-04 18:14:28 +00003259 if (CtorArg.isInvalid())
Anders Carlsson423f5d82010-04-23 16:04:08 +00003260 return true;
Sebastian Redl22653ba2011-08-30 19:58:05 +00003261
3262 // C++11 [class.copy]p15:
3263 // - if a member m has rvalue reference type T&&, it is direct-initialized
3264 // with static_cast<T&&>(x.m);
Sebastian Redle9c4e842011-09-04 18:14:28 +00003265 if (RefersToRValueRef(CtorArg.get())) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003266 CtorArg = CastForMoving(SemaRef, CtorArg.get());
Sebastian Redl22653ba2011-08-30 19:58:05 +00003267 }
3268
Douglas Gregor94f9a482010-05-05 05:51:00 +00003269 // When the field we are copying is an array, create index variables for
3270 // each dimension of the array. We use these index variables to subscript
3271 // the source array, and other clients (e.g., CodeGen) will perform the
3272 // necessary iteration with these index variables.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003273 SmallVector<VarDecl *, 4> IndexVariables;
Douglas Gregor94f9a482010-05-05 05:51:00 +00003274 QualType BaseType = Field->getType();
3275 QualType SizeType = SemaRef.Context.getSizeType();
Sebastian Redl22653ba2011-08-30 19:58:05 +00003276 bool InitializingArray = false;
Douglas Gregor94f9a482010-05-05 05:51:00 +00003277 while (const ConstantArrayType *Array
3278 = SemaRef.Context.getAsConstantArrayType(BaseType)) {
Sebastian Redl22653ba2011-08-30 19:58:05 +00003279 InitializingArray = true;
Douglas Gregor94f9a482010-05-05 05:51:00 +00003280 // Create the iteration variable for this array index.
Craig Topperc3ec1492014-05-26 06:22:03 +00003281 IdentifierInfo *IterationVarName = nullptr;
Douglas Gregor94f9a482010-05-05 05:51:00 +00003282 {
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +00003283 SmallString<8> Str;
Douglas Gregor94f9a482010-05-05 05:51:00 +00003284 llvm::raw_svector_ostream OS(Str);
3285 OS << "__i" << IndexVariables.size();
3286 IterationVarName = &SemaRef.Context.Idents.get(OS.str());
3287 }
3288 VarDecl *IterationVar
Abramo Bagnaradff19302011-03-08 08:55:46 +00003289 = VarDecl::Create(SemaRef.Context, SemaRef.CurContext, Loc, Loc,
Douglas Gregor94f9a482010-05-05 05:51:00 +00003290 IterationVarName, SizeType,
3291 SemaRef.Context.getTrivialTypeSourceInfo(SizeType, Loc),
Rafael Espindola6ae7e502013-04-03 19:27:57 +00003292 SC_None);
Douglas Gregor94f9a482010-05-05 05:51:00 +00003293 IndexVariables.push_back(IterationVar);
3294
3295 // Create a reference to the iteration variable.
John McCalldadc5752010-08-24 06:29:42 +00003296 ExprResult IterationVarRef
Eli Friedman844f9452012-01-23 02:35:22 +00003297 = SemaRef.BuildDeclRefExpr(IterationVar, SizeType, VK_LValue, Loc);
Douglas Gregor94f9a482010-05-05 05:51:00 +00003298 assert(!IterationVarRef.isInvalid() &&
3299 "Reference to invented variable cannot fail!");
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003300 IterationVarRef = SemaRef.DefaultLvalueConversion(IterationVarRef.get());
Eli Friedman844f9452012-01-23 02:35:22 +00003301 assert(!IterationVarRef.isInvalid() &&
3302 "Conversion of invented variable cannot fail!");
Sebastian Redle9c4e842011-09-04 18:14:28 +00003303
Douglas Gregor94f9a482010-05-05 05:51:00 +00003304 // Subscript the array with this iteration variable.
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003305 CtorArg = SemaRef.CreateBuiltinArraySubscriptExpr(CtorArg.get(), Loc,
3306 IterationVarRef.get(),
Sebastian Redle9c4e842011-09-04 18:14:28 +00003307 Loc);
3308 if (CtorArg.isInvalid())
Douglas Gregor94f9a482010-05-05 05:51:00 +00003309 return true;
Sebastian Redl22653ba2011-08-30 19:58:05 +00003310
Douglas Gregor94f9a482010-05-05 05:51:00 +00003311 BaseType = Array->getElementType();
3312 }
Sebastian Redl22653ba2011-08-30 19:58:05 +00003313
3314 // The array subscript expression is an lvalue, which is wrong for moving.
3315 if (Moving && InitializingArray)
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003316 CtorArg = CastForMoving(SemaRef, CtorArg.get());
Sebastian Redl22653ba2011-08-30 19:58:05 +00003317
Douglas Gregor94f9a482010-05-05 05:51:00 +00003318 // Construct the entity that we will be initializing. For an array, this
3319 // will be first element in the array, which may require several levels
3320 // of array-subscript entities.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003321 SmallVector<InitializedEntity, 4> Entities;
Douglas Gregor94f9a482010-05-05 05:51:00 +00003322 Entities.reserve(1 + IndexVariables.size());
Douglas Gregor493627b2011-08-10 15:22:55 +00003323 if (Indirect)
3324 Entities.push_back(InitializedEntity::InitializeMember(Indirect));
3325 else
3326 Entities.push_back(InitializedEntity::InitializeMember(Field));
Douglas Gregor94f9a482010-05-05 05:51:00 +00003327 for (unsigned I = 0, N = IndexVariables.size(); I != N; ++I)
3328 Entities.push_back(InitializedEntity::InitializeElement(SemaRef.Context,
3329 0,
3330 Entities.back()));
3331
3332 // Direct-initialize to use the copy constructor.
3333 InitializationKind InitKind =
3334 InitializationKind::CreateDirect(Loc, SourceLocation(), SourceLocation());
3335
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003336 Expr *CtorArgE = CtorArg.getAs<Expr>();
Dmitri Gribenko8f8930f2013-05-03 15:05:50 +00003337 InitializationSequence InitSeq(SemaRef, Entities.back(), InitKind, CtorArgE);
Douglas Gregor94f9a482010-05-05 05:51:00 +00003338
John McCalldadc5752010-08-24 06:29:42 +00003339 ExprResult MemberInit
Douglas Gregor94f9a482010-05-05 05:51:00 +00003340 = InitSeq.Perform(SemaRef, Entities.back(), InitKind,
Sebastian Redle9c4e842011-09-04 18:14:28 +00003341 MultiExprArg(&CtorArgE, 1));
Douglas Gregora40433a2010-12-07 00:41:46 +00003342 MemberInit = SemaRef.MaybeCreateExprWithCleanups(MemberInit);
Douglas Gregor94f9a482010-05-05 05:51:00 +00003343 if (MemberInit.isInvalid())
3344 return true;
3345
Douglas Gregor493627b2011-08-10 15:22:55 +00003346 if (Indirect) {
3347 assert(IndexVariables.size() == 0 &&
3348 "Indirect field improperly initialized");
3349 CXXMemberInit
3350 = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Indirect,
3351 Loc, Loc,
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003352 MemberInit.getAs<Expr>(),
Douglas Gregor493627b2011-08-10 15:22:55 +00003353 Loc);
3354 } else
3355 CXXMemberInit = CXXCtorInitializer::Create(SemaRef.Context, Field, Loc,
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003356 Loc, MemberInit.getAs<Expr>(),
Douglas Gregor493627b2011-08-10 15:22:55 +00003357 Loc,
3358 IndexVariables.data(),
3359 IndexVariables.size());
Anders Carlsson1b00e242010-04-23 03:10:23 +00003360 return false;
3361 }
3362
Richard Smithc2bc61b2013-03-18 21:12:30 +00003363 assert((ImplicitInitKind == IIK_Default || ImplicitInitKind == IIK_Inherit) &&
3364 "Unhandled implicit init kind!");
Anders Carlsson423f5d82010-04-23 16:04:08 +00003365
Anders Carlsson3c1db572010-04-23 02:15:47 +00003366 QualType FieldBaseElementType =
3367 SemaRef.Context.getBaseElementType(Field->getType());
3368
Anders Carlsson3c1db572010-04-23 02:15:47 +00003369 if (FieldBaseElementType->isRecordType()) {
Douglas Gregor493627b2011-08-10 15:22:55 +00003370 InitializedEntity InitEntity
3371 = Indirect? InitializedEntity::InitializeMember(Indirect)
3372 : InitializedEntity::InitializeMember(Field);
Anders Carlsson423f5d82010-04-23 16:04:08 +00003373 InitializationKind InitKind =
Chandler Carruth9c9286b2010-06-29 23:50:44 +00003374 InitializationKind::CreateDefault(Loc);
Dmitri Gribenko78852e92013-05-05 20:40:26 +00003375
3376 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, None);
3377 ExprResult MemberInit =
3378 InitSeq.Perform(SemaRef, InitEntity, InitKind, None);
John McCallb268a282010-08-23 23:25:46 +00003379
Douglas Gregora40433a2010-12-07 00:41:46 +00003380 MemberInit = SemaRef.MaybeCreateExprWithCleanups(MemberInit);
Anders Carlsson3c1db572010-04-23 02:15:47 +00003381 if (MemberInit.isInvalid())
3382 return true;
3383
Douglas Gregor493627b2011-08-10 15:22:55 +00003384 if (Indirect)
3385 CXXMemberInit = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
3386 Indirect, Loc,
3387 Loc,
3388 MemberInit.get(),
3389 Loc);
3390 else
3391 CXXMemberInit = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context,
3392 Field, Loc, Loc,
3393 MemberInit.get(),
3394 Loc);
Anders Carlsson3c1db572010-04-23 02:15:47 +00003395 return false;
3396 }
Anders Carlssondca6be02010-04-23 03:07:47 +00003397
Alexis Hunt8b455182011-05-17 00:19:05 +00003398 if (!Field->getParent()->isUnion()) {
3399 if (FieldBaseElementType->isReferenceType()) {
3400 SemaRef.Diag(Constructor->getLocation(),
3401 diag::err_uninitialized_member_in_ctor)
3402 << (int)Constructor->isImplicit()
3403 << SemaRef.Context.getTagDeclType(Constructor->getParent())
3404 << 0 << Field->getDeclName();
3405 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
3406 return true;
3407 }
Anders Carlssondca6be02010-04-23 03:07:47 +00003408
Alexis Hunt8b455182011-05-17 00:19:05 +00003409 if (FieldBaseElementType.isConstQualified()) {
3410 SemaRef.Diag(Constructor->getLocation(),
3411 diag::err_uninitialized_member_in_ctor)
3412 << (int)Constructor->isImplicit()
3413 << SemaRef.Context.getTagDeclType(Constructor->getParent())
3414 << 1 << Field->getDeclName();
3415 SemaRef.Diag(Field->getLocation(), diag::note_declared_at);
3416 return true;
3417 }
Anders Carlssondca6be02010-04-23 03:07:47 +00003418 }
Anders Carlsson3c1db572010-04-23 02:15:47 +00003419
David Blaikiebbafb8a2012-03-11 07:00:24 +00003420 if (SemaRef.getLangOpts().ObjCAutoRefCount &&
John McCall31168b02011-06-15 23:02:42 +00003421 FieldBaseElementType->isObjCRetainableType() &&
3422 FieldBaseElementType.getObjCLifetime() != Qualifiers::OCL_None &&
3423 FieldBaseElementType.getObjCLifetime() != Qualifiers::OCL_ExplicitNone) {
Douglas Gregor6fa69422012-07-23 04:23:39 +00003424 // ARC:
John McCall31168b02011-06-15 23:02:42 +00003425 // Default-initialize Objective-C pointers to NULL.
3426 CXXMemberInit
3427 = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Field,
3428 Loc, Loc,
3429 new (SemaRef.Context) ImplicitValueInitExpr(Field->getType()),
3430 Loc);
3431 return false;
3432 }
3433
Anders Carlsson3c1db572010-04-23 02:15:47 +00003434 // Nothing to initialize.
Craig Topperc3ec1492014-05-26 06:22:03 +00003435 CXXMemberInit = nullptr;
Anders Carlsson3c1db572010-04-23 02:15:47 +00003436 return false;
3437}
John McCallbc83b3f2010-05-20 23:23:51 +00003438
3439namespace {
3440struct BaseAndFieldInfo {
3441 Sema &S;
3442 CXXConstructorDecl *Ctor;
3443 bool AnyErrorsInInits;
3444 ImplicitInitializerKind IIK;
Alexis Hunt1d792652011-01-08 20:30:50 +00003445 llvm::DenseMap<const void *, CXXCtorInitializer*> AllBaseFields;
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003446 SmallVector<CXXCtorInitializer*, 8> AllToInit;
Richard Smithab44d5b2013-12-10 08:25:00 +00003447 llvm::DenseMap<TagDecl*, FieldDecl*> ActiveUnionMember;
John McCallbc83b3f2010-05-20 23:23:51 +00003448
3449 BaseAndFieldInfo(Sema &S, CXXConstructorDecl *Ctor, bool ErrorsInInits)
3450 : S(S), Ctor(Ctor), AnyErrorsInInits(ErrorsInInits) {
Sebastian Redl22653ba2011-08-30 19:58:05 +00003451 bool Generated = Ctor->isImplicit() || Ctor->isDefaulted();
3452 if (Generated && Ctor->isCopyConstructor())
John McCallbc83b3f2010-05-20 23:23:51 +00003453 IIK = IIK_Copy;
Sebastian Redl22653ba2011-08-30 19:58:05 +00003454 else if (Generated && Ctor->isMoveConstructor())
3455 IIK = IIK_Move;
Richard Smithc2bc61b2013-03-18 21:12:30 +00003456 else if (Ctor->getInheritedConstructor())
3457 IIK = IIK_Inherit;
John McCallbc83b3f2010-05-20 23:23:51 +00003458 else
3459 IIK = IIK_Default;
3460 }
Douglas Gregor7db3e952011-11-28 20:03:15 +00003461
3462 bool isImplicitCopyOrMove() const {
3463 switch (IIK) {
3464 case IIK_Copy:
3465 case IIK_Move:
3466 return true;
3467
3468 case IIK_Default:
Richard Smithc2bc61b2013-03-18 21:12:30 +00003469 case IIK_Inherit:
Douglas Gregor7db3e952011-11-28 20:03:15 +00003470 return false;
3471 }
David Blaikiee4d798f2012-01-20 21:50:17 +00003472
3473 llvm_unreachable("Invalid ImplicitInitializerKind!");
Douglas Gregor7db3e952011-11-28 20:03:15 +00003474 }
Richard Smith0a8cfc72012-08-07 21:30:42 +00003475
3476 bool addFieldInitializer(CXXCtorInitializer *Init) {
3477 AllToInit.push_back(Init);
3478
3479 // Check whether this initializer makes the field "used".
Richard Smith852c9db2013-04-20 22:23:05 +00003480 if (Init->getInit()->HasSideEffects(S.Context))
Richard Smith0a8cfc72012-08-07 21:30:42 +00003481 S.UnusedPrivateFields.remove(Init->getAnyMember());
3482
3483 return false;
3484 }
John McCallbc83b3f2010-05-20 23:23:51 +00003485
Richard Smithab44d5b2013-12-10 08:25:00 +00003486 bool isInactiveUnionMember(FieldDecl *Field) {
3487 RecordDecl *Record = Field->getParent();
3488 if (!Record->isUnion())
3489 return false;
3490
Richard Smith8d183852013-12-10 20:56:03 +00003491 if (FieldDecl *Active =
3492 ActiveUnionMember.lookup(Record->getCanonicalDecl()))
Richard Smithab44d5b2013-12-10 08:25:00 +00003493 return Active != Field->getCanonicalDecl();
3494
3495 // In an implicit copy or move constructor, ignore any in-class initializer.
3496 if (isImplicitCopyOrMove())
3497 return true;
3498
3499 // If there's no explicit initialization, the field is active only if it
3500 // has an in-class initializer...
3501 if (Field->hasInClassInitializer())
3502 return false;
3503 // ... or it's an anonymous struct or union whose class has an in-class
3504 // initializer.
3505 if (!Field->isAnonymousStructOrUnion())
3506 return true;
3507 CXXRecordDecl *FieldRD = Field->getType()->getAsCXXRecordDecl();
3508 return !FieldRD->hasInClassInitializer();
3509 }
3510
3511 /// \brief Determine whether the given field is, or is within, a union member
3512 /// that is inactive (because there was an initializer given for a different
3513 /// member of the union, or because the union was not initialized at all).
3514 bool isWithinInactiveUnionMember(FieldDecl *Field,
3515 IndirectFieldDecl *Indirect) {
3516 if (!Indirect)
3517 return isInactiveUnionMember(Field);
3518
Aaron Ballman29c94602014-03-07 18:36:15 +00003519 for (auto *C : Indirect->chain()) {
Aaron Ballman13916082014-03-07 18:11:58 +00003520 FieldDecl *Field = dyn_cast<FieldDecl>(C);
Richard Smithab44d5b2013-12-10 08:25:00 +00003521 if (Field && isInactiveUnionMember(Field))
Richard Smithc94ec842011-09-19 13:34:43 +00003522 return true;
Richard Smithab44d5b2013-12-10 08:25:00 +00003523 }
3524 return false;
3525 }
3526};
Richard Smithc94ec842011-09-19 13:34:43 +00003527}
3528
Douglas Gregor10f939c2011-11-02 23:04:16 +00003529/// \brief Determine whether the given type is an incomplete or zero-lenfgth
3530/// array type.
3531static bool isIncompleteOrZeroLengthArrayType(ASTContext &Context, QualType T) {
3532 if (T->isIncompleteArrayType())
3533 return true;
3534
3535 while (const ConstantArrayType *ArrayT = Context.getAsConstantArrayType(T)) {
3536 if (!ArrayT->getSize())
3537 return true;
3538
3539 T = ArrayT->getElementType();
3540 }
3541
3542 return false;
3543}
3544
Richard Smith938f40b2011-06-11 17:19:42 +00003545static bool CollectFieldInitializer(Sema &SemaRef, BaseAndFieldInfo &Info,
Douglas Gregor493627b2011-08-10 15:22:55 +00003546 FieldDecl *Field,
Craig Topperc3ec1492014-05-26 06:22:03 +00003547 IndirectFieldDecl *Indirect = nullptr) {
Eli Friedmanb13e64e2013-06-28 21:07:41 +00003548 if (Field->isInvalidDecl())
3549 return false;
John McCallbc83b3f2010-05-20 23:23:51 +00003550
Chandler Carruth139e9622010-06-30 02:59:29 +00003551 // Overwhelmingly common case: we have a direct initializer for this field.
Richard Smithcd45dbc2014-04-19 03:48:30 +00003552 if (CXXCtorInitializer *Init =
3553 Info.AllBaseFields.lookup(Field->getCanonicalDecl()))
Richard Smith0a8cfc72012-08-07 21:30:42 +00003554 return Info.addFieldInitializer(Init);
John McCallbc83b3f2010-05-20 23:23:51 +00003555
Richard Smithab44d5b2013-12-10 08:25:00 +00003556 // C++11 [class.base.init]p8:
3557 // if the entity is a non-static data member that has a
3558 // brace-or-equal-initializer and either
3559 // -- the constructor's class is a union and no other variant member of that
3560 // union is designated by a mem-initializer-id or
3561 // -- the constructor's class is not a union, and, if the entity is a member
3562 // of an anonymous union, no other member of that union is designated by
3563 // a mem-initializer-id,
3564 // the entity is initialized as specified in [dcl.init].
3565 //
3566 // We also apply the same rules to handle anonymous structs within anonymous
3567 // unions.
3568 if (Info.isWithinInactiveUnionMember(Field, Indirect))
3569 return false;
3570
Douglas Gregor7db3e952011-11-28 20:03:15 +00003571 if (Field->hasInClassInitializer() && !Info.isImplicitCopyOrMove()) {
Richard Smith852c9db2013-04-20 22:23:05 +00003572 Expr *DIE = CXXDefaultInitExpr::Create(SemaRef.Context,
3573 Info.Ctor->getLocation(), Field);
Douglas Gregor493627b2011-08-10 15:22:55 +00003574 CXXCtorInitializer *Init;
3575 if (Indirect)
3576 Init = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Indirect,
3577 SourceLocation(),
Richard Smith852c9db2013-04-20 22:23:05 +00003578 SourceLocation(), DIE,
Douglas Gregor493627b2011-08-10 15:22:55 +00003579 SourceLocation());
3580 else
3581 Init = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Field,
3582 SourceLocation(),
Richard Smith852c9db2013-04-20 22:23:05 +00003583 SourceLocation(), DIE,
Douglas Gregor493627b2011-08-10 15:22:55 +00003584 SourceLocation());
Richard Smith0a8cfc72012-08-07 21:30:42 +00003585 return Info.addFieldInitializer(Init);
Richard Smith938f40b2011-06-11 17:19:42 +00003586 }
3587
Douglas Gregor10f939c2011-11-02 23:04:16 +00003588 // Don't initialize incomplete or zero-length arrays.
3589 if (isIncompleteOrZeroLengthArrayType(SemaRef.Context, Field->getType()))
3590 return false;
3591
John McCallbc83b3f2010-05-20 23:23:51 +00003592 // Don't try to build an implicit initializer if there were semantic
3593 // errors in any of the initializers (and therefore we might be
3594 // missing some that the user actually wrote).
Eli Friedmanb13e64e2013-06-28 21:07:41 +00003595 if (Info.AnyErrorsInInits)
John McCallbc83b3f2010-05-20 23:23:51 +00003596 return false;
3597
Craig Topperc3ec1492014-05-26 06:22:03 +00003598 CXXCtorInitializer *Init = nullptr;
Douglas Gregor493627b2011-08-10 15:22:55 +00003599 if (BuildImplicitMemberInitializer(Info.S, Info.Ctor, Info.IIK, Field,
3600 Indirect, Init))
John McCallbc83b3f2010-05-20 23:23:51 +00003601 return true;
John McCallbc83b3f2010-05-20 23:23:51 +00003602
Richard Smith0a8cfc72012-08-07 21:30:42 +00003603 if (!Init)
3604 return false;
Francois Pichetd583da02010-12-04 09:14:42 +00003605
Richard Smith0a8cfc72012-08-07 21:30:42 +00003606 return Info.addFieldInitializer(Init);
John McCallbc83b3f2010-05-20 23:23:51 +00003607}
Alexis Hunt61bc1732011-05-01 07:04:31 +00003608
3609bool
3610Sema::SetDelegatingInitializer(CXXConstructorDecl *Constructor,
3611 CXXCtorInitializer *Initializer) {
Alexis Hunt6118d662011-05-04 05:57:24 +00003612 assert(Initializer->isDelegatingInitializer());
Alexis Hunt5583d562011-05-03 20:43:02 +00003613 Constructor->setNumCtorInitializers(1);
3614 CXXCtorInitializer **initializer =
3615 new (Context) CXXCtorInitializer*[1];
3616 memcpy(initializer, &Initializer, sizeof (CXXCtorInitializer*));
3617 Constructor->setCtorInitializers(initializer);
3618
Alexis Hunt9d47faf2011-05-03 23:05:34 +00003619 if (CXXDestructorDecl *Dtor = LookupDestructor(Constructor->getParent())) {
Eli Friedmanfa0df832012-02-02 03:46:19 +00003620 MarkFunctionReferenced(Initializer->getSourceLocation(), Dtor);
Alexis Hunt9d47faf2011-05-03 23:05:34 +00003621 DiagnoseUseOfDecl(Dtor, Initializer->getSourceLocation());
3622 }
3623
Alexis Hunte2622992011-05-05 00:05:47 +00003624 DelegatingCtorDecls.push_back(Constructor);
Alexis Hunt6118d662011-05-04 05:57:24 +00003625
Alexis Hunt61bc1732011-05-01 07:04:31 +00003626 return false;
3627}
Douglas Gregor493627b2011-08-10 15:22:55 +00003628
David Blaikie3fc2f912013-01-17 05:26:25 +00003629bool Sema::SetCtorInitializers(CXXConstructorDecl *Constructor, bool AnyErrors,
3630 ArrayRef<CXXCtorInitializer *> Initializers) {
Douglas Gregor52235292011-09-22 23:04:35 +00003631 if (Constructor->isDependentContext()) {
Anders Carlssondb0a9652010-04-02 06:26:44 +00003632 // Just store the initializers as written, they will be checked during
3633 // instantiation.
David Blaikie3fc2f912013-01-17 05:26:25 +00003634 if (!Initializers.empty()) {
3635 Constructor->setNumCtorInitializers(Initializers.size());
Alexis Hunt1d792652011-01-08 20:30:50 +00003636 CXXCtorInitializer **baseOrMemberInitializers =
David Blaikie3fc2f912013-01-17 05:26:25 +00003637 new (Context) CXXCtorInitializer*[Initializers.size()];
3638 memcpy(baseOrMemberInitializers, Initializers.data(),
3639 Initializers.size() * sizeof(CXXCtorInitializer*));
Alexis Hunt1d792652011-01-08 20:30:50 +00003640 Constructor->setCtorInitializers(baseOrMemberInitializers);
Anders Carlssondb0a9652010-04-02 06:26:44 +00003641 }
Richard Smith60f2e1e2012-09-25 00:23:05 +00003642
3643 // Let template instantiation know whether we had errors.
3644 if (AnyErrors)
3645 Constructor->setInvalidDecl();
3646
Anders Carlssondb0a9652010-04-02 06:26:44 +00003647 return false;
3648 }
3649
John McCallbc83b3f2010-05-20 23:23:51 +00003650 BaseAndFieldInfo Info(*this, Constructor, AnyErrors);
Anders Carlsson1b00e242010-04-23 03:10:23 +00003651
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00003652 // We need to build the initializer AST according to order of construction
3653 // and not what user specified in the Initializers list.
Anders Carlsson7b3f2782010-04-02 05:42:15 +00003654 CXXRecordDecl *ClassDecl = Constructor->getParent()->getDefinition();
Douglas Gregorc14922f2010-03-26 22:43:07 +00003655 if (!ClassDecl)
3656 return true;
3657
Eli Friedman9cf6b592009-11-09 19:20:36 +00003658 bool HadError = false;
Mike Stump11289f42009-09-09 15:08:12 +00003659
David Blaikie3fc2f912013-01-17 05:26:25 +00003660 for (unsigned i = 0; i < Initializers.size(); i++) {
Alexis Hunt1d792652011-01-08 20:30:50 +00003661 CXXCtorInitializer *Member = Initializers[i];
Richard Smithbc46e432013-07-22 02:56:56 +00003662
Anders Carlssondb0a9652010-04-02 06:26:44 +00003663 if (Member->isBaseInitializer())
John McCallbc83b3f2010-05-20 23:23:51 +00003664 Info.AllBaseFields[Member->getBaseClass()->getAs<RecordType>()] = Member;
Richard Smithab44d5b2013-12-10 08:25:00 +00003665 else {
Richard Smithcd45dbc2014-04-19 03:48:30 +00003666 Info.AllBaseFields[Member->getAnyMember()->getCanonicalDecl()] = Member;
Richard Smithab44d5b2013-12-10 08:25:00 +00003667
3668 if (IndirectFieldDecl *F = Member->getIndirectMember()) {
Aaron Ballman29c94602014-03-07 18:36:15 +00003669 for (auto *C : F->chain()) {
Aaron Ballman13916082014-03-07 18:11:58 +00003670 FieldDecl *FD = dyn_cast<FieldDecl>(C);
Richard Smithab44d5b2013-12-10 08:25:00 +00003671 if (FD && FD->getParent()->isUnion())
3672 Info.ActiveUnionMember.insert(std::make_pair(
3673 FD->getParent()->getCanonicalDecl(), FD->getCanonicalDecl()));
3674 }
3675 } else if (FieldDecl *FD = Member->getMember()) {
3676 if (FD->getParent()->isUnion())
3677 Info.ActiveUnionMember.insert(std::make_pair(
3678 FD->getParent()->getCanonicalDecl(), FD->getCanonicalDecl()));
3679 }
3680 }
Anders Carlssondb0a9652010-04-02 06:26:44 +00003681 }
3682
Anders Carlsson43c64af2010-04-21 19:52:01 +00003683 // Keep track of the direct virtual bases.
3684 llvm::SmallPtrSet<CXXBaseSpecifier *, 16> DirectVBases;
Aaron Ballman574705e2014-03-13 15:41:46 +00003685 for (auto &I : ClassDecl->bases()) {
3686 if (I.isVirtual())
3687 DirectVBases.insert(&I);
Anders Carlsson43c64af2010-04-21 19:52:01 +00003688 }
3689
Anders Carlssondb0a9652010-04-02 06:26:44 +00003690 // Push virtual bases before others.
Aaron Ballman445a9392014-03-13 16:15:17 +00003691 for (auto &VBase : ClassDecl->vbases()) {
Alexis Hunt1d792652011-01-08 20:30:50 +00003692 if (CXXCtorInitializer *Value
Aaron Ballman445a9392014-03-13 16:15:17 +00003693 = Info.AllBaseFields.lookup(VBase.getType()->getAs<RecordType>())) {
Richard Smithbc46e432013-07-22 02:56:56 +00003694 // [class.base.init]p7, per DR257:
3695 // A mem-initializer where the mem-initializer-id names a virtual base
3696 // class is ignored during execution of a constructor of any class that
3697 // is not the most derived class.
3698 if (ClassDecl->isAbstract()) {
3699 // FIXME: Provide a fixit to remove the base specifier. This requires
3700 // tracking the location of the associated comma for a base specifier.
3701 Diag(Value->getSourceLocation(), diag::warn_abstract_vbase_init_ignored)
Aaron Ballman445a9392014-03-13 16:15:17 +00003702 << VBase.getType() << ClassDecl;
Richard Smithbc46e432013-07-22 02:56:56 +00003703 DiagnoseAbstractType(ClassDecl);
3704 }
3705
John McCallbc83b3f2010-05-20 23:23:51 +00003706 Info.AllToInit.push_back(Value);
Richard Smithbc46e432013-07-22 02:56:56 +00003707 } else if (!AnyErrors && !ClassDecl->isAbstract()) {
3708 // [class.base.init]p8, per DR257:
3709 // If a given [...] base class is not named by a mem-initializer-id
3710 // [...] and the entity is not a virtual base class of an abstract
3711 // class, then [...] the entity is default-initialized.
Aaron Ballman445a9392014-03-13 16:15:17 +00003712 bool IsInheritedVirtualBase = !DirectVBases.count(&VBase);
Alexis Hunt1d792652011-01-08 20:30:50 +00003713 CXXCtorInitializer *CXXBaseInit;
John McCallbc83b3f2010-05-20 23:23:51 +00003714 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Aaron Ballman445a9392014-03-13 16:15:17 +00003715 &VBase, IsInheritedVirtualBase,
Anders Carlsson1b00e242010-04-23 03:10:23 +00003716 CXXBaseInit)) {
Anders Carlssondb0a9652010-04-02 06:26:44 +00003717 HadError = true;
3718 continue;
3719 }
Anders Carlssoncedc0a42010-04-20 23:11:20 +00003720
John McCallbc83b3f2010-05-20 23:23:51 +00003721 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00003722 }
3723 }
Mike Stump11289f42009-09-09 15:08:12 +00003724
John McCallbc83b3f2010-05-20 23:23:51 +00003725 // Non-virtual bases.
Aaron Ballman574705e2014-03-13 15:41:46 +00003726 for (auto &Base : ClassDecl->bases()) {
Anders Carlssondb0a9652010-04-02 06:26:44 +00003727 // Virtuals are in the virtual base list and already constructed.
Aaron Ballman574705e2014-03-13 15:41:46 +00003728 if (Base.isVirtual())
Anders Carlssondb0a9652010-04-02 06:26:44 +00003729 continue;
Mike Stump11289f42009-09-09 15:08:12 +00003730
Alexis Hunt1d792652011-01-08 20:30:50 +00003731 if (CXXCtorInitializer *Value
Aaron Ballman574705e2014-03-13 15:41:46 +00003732 = Info.AllBaseFields.lookup(Base.getType()->getAs<RecordType>())) {
John McCallbc83b3f2010-05-20 23:23:51 +00003733 Info.AllToInit.push_back(Value);
Anders Carlssondb0a9652010-04-02 06:26:44 +00003734 } else if (!AnyErrors) {
Alexis Hunt1d792652011-01-08 20:30:50 +00003735 CXXCtorInitializer *CXXBaseInit;
John McCallbc83b3f2010-05-20 23:23:51 +00003736 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK,
Aaron Ballman574705e2014-03-13 15:41:46 +00003737 &Base, /*IsInheritedVirtualBase=*/false,
Anders Carlsson6bd91c32010-04-23 02:00:02 +00003738 CXXBaseInit)) {
Anders Carlssondb0a9652010-04-02 06:26:44 +00003739 HadError = true;
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00003740 continue;
Anders Carlssondb0a9652010-04-02 06:26:44 +00003741 }
Fariborz Jahanian59a1cd42009-09-03 21:32:41 +00003742
John McCallbc83b3f2010-05-20 23:23:51 +00003743 Info.AllToInit.push_back(CXXBaseInit);
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00003744 }
3745 }
Mike Stump11289f42009-09-09 15:08:12 +00003746
John McCallbc83b3f2010-05-20 23:23:51 +00003747 // Fields.
Aaron Ballman629afae2014-03-07 19:56:05 +00003748 for (auto *Mem : ClassDecl->decls()) {
3749 if (auto *F = dyn_cast<FieldDecl>(Mem)) {
Douglas Gregor556e5862011-10-10 17:22:13 +00003750 // C++ [class.bit]p2:
3751 // A declaration for a bit-field that omits the identifier declares an
3752 // unnamed bit-field. Unnamed bit-fields are not members and cannot be
3753 // initialized.
3754 if (F->isUnnamedBitfield())
3755 continue;
Douglas Gregor10f939c2011-11-02 23:04:16 +00003756
Sebastian Redl22653ba2011-08-30 19:58:05 +00003757 // If we're not generating the implicit copy/move constructor, then we'll
Douglas Gregor493627b2011-08-10 15:22:55 +00003758 // handle anonymous struct/union fields based on their individual
3759 // indirect fields.
Richard Smithc2bc61b2013-03-18 21:12:30 +00003760 if (F->isAnonymousStructOrUnion() && !Info.isImplicitCopyOrMove())
Douglas Gregor493627b2011-08-10 15:22:55 +00003761 continue;
3762
3763 if (CollectFieldInitializer(*this, Info, F))
3764 HadError = true;
Fariborz Jahanian1138ba62010-05-26 20:19:07 +00003765 continue;
3766 }
Douglas Gregor493627b2011-08-10 15:22:55 +00003767
3768 // Beyond this point, we only consider default initialization.
Richard Smithc2bc61b2013-03-18 21:12:30 +00003769 if (Info.isImplicitCopyOrMove())
Douglas Gregor493627b2011-08-10 15:22:55 +00003770 continue;
3771
Aaron Ballman629afae2014-03-07 19:56:05 +00003772 if (auto *F = dyn_cast<IndirectFieldDecl>(Mem)) {
Douglas Gregor493627b2011-08-10 15:22:55 +00003773 if (F->getType()->isIncompleteArrayType()) {
3774 assert(ClassDecl->hasFlexibleArrayMember() &&
3775 "Incomplete array type is not valid");
3776 continue;
3777 }
3778
Douglas Gregor493627b2011-08-10 15:22:55 +00003779 // Initialize each field of an anonymous struct individually.
3780 if (CollectFieldInitializer(*this, Info, F->getAnonField(), F))
3781 HadError = true;
3782
3783 continue;
3784 }
Fariborz Jahanian1138ba62010-05-26 20:19:07 +00003785 }
Mike Stump11289f42009-09-09 15:08:12 +00003786
David Blaikie3fc2f912013-01-17 05:26:25 +00003787 unsigned NumInitializers = Info.AllToInit.size();
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00003788 if (NumInitializers > 0) {
Alexis Hunt1d792652011-01-08 20:30:50 +00003789 Constructor->setNumCtorInitializers(NumInitializers);
3790 CXXCtorInitializer **baseOrMemberInitializers =
3791 new (Context) CXXCtorInitializer*[NumInitializers];
John McCallbc83b3f2010-05-20 23:23:51 +00003792 memcpy(baseOrMemberInitializers, Info.AllToInit.data(),
Alexis Hunt1d792652011-01-08 20:30:50 +00003793 NumInitializers * sizeof(CXXCtorInitializer*));
3794 Constructor->setCtorInitializers(baseOrMemberInitializers);
Rafael Espindola13327bb2010-03-13 18:12:56 +00003795
John McCalla6309952010-03-16 21:39:52 +00003796 // Constructors implicitly reference the base and member
3797 // destructors.
3798 MarkBaseAndMemberDestructorsReferenced(Constructor->getLocation(),
3799 Constructor->getParent());
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00003800 }
Eli Friedman9cf6b592009-11-09 19:20:36 +00003801
3802 return HadError;
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00003803}
3804
David Blaikieb61b8152013-01-17 08:49:22 +00003805static void PopulateKeysForFields(FieldDecl *Field, SmallVectorImpl<const void*> &IdealInits) {
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003806 if (const RecordType *RT = Field->getType()->getAs<RecordType>()) {
David Blaikieb61b8152013-01-17 08:49:22 +00003807 const RecordDecl *RD = RT->getDecl();
3808 if (RD->isAnonymousStructOrUnion()) {
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00003809 for (auto *Field : RD->fields())
3810 PopulateKeysForFields(Field, IdealInits);
David Blaikieb61b8152013-01-17 08:49:22 +00003811 return;
3812 }
Eli Friedman952c15d2009-07-21 19:28:10 +00003813 }
Richard Smithcd45dbc2014-04-19 03:48:30 +00003814 IdealInits.push_back(Field->getCanonicalDecl());
Eli Friedman952c15d2009-07-21 19:28:10 +00003815}
3816
Benjamin Kramer8bf44352013-07-24 15:28:33 +00003817static const void *GetKeyForBase(ASTContext &Context, QualType BaseType) {
3818 return Context.getCanonicalType(BaseType).getTypePtr();
Anders Carlssonbcec05c2009-09-01 06:22:14 +00003819}
3820
Benjamin Kramer8bf44352013-07-24 15:28:33 +00003821static const void *GetKeyForMember(ASTContext &Context,
3822 CXXCtorInitializer *Member) {
Francois Pichetd583da02010-12-04 09:14:42 +00003823 if (!Member->isAnyMemberInitializer())
Anders Carlsson7b3f2782010-04-02 05:42:15 +00003824 return GetKeyForBase(Context, QualType(Member->getBaseClass(), 0));
Anders Carlssona942dcd2010-03-30 15:39:27 +00003825
Richard Smithcd45dbc2014-04-19 03:48:30 +00003826 return Member->getAnyMember()->getCanonicalDecl();
Eli Friedman952c15d2009-07-21 19:28:10 +00003827}
3828
David Blaikie3fc2f912013-01-17 05:26:25 +00003829static void DiagnoseBaseOrMemInitializerOrder(
3830 Sema &SemaRef, const CXXConstructorDecl *Constructor,
3831 ArrayRef<CXXCtorInitializer *> Inits) {
John McCallbb7b6582010-04-10 07:37:23 +00003832 if (Constructor->getDeclContext()->isDependentContext())
Anders Carlsson35d6e3e2009-08-27 05:57:30 +00003833 return;
Mike Stump11289f42009-09-09 15:08:12 +00003834
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +00003835 // Don't check initializers order unless the warning is enabled at the
3836 // location of at least one initializer.
3837 bool ShouldCheckOrder = false;
David Blaikie3fc2f912013-01-17 05:26:25 +00003838 for (unsigned InitIndex = 0; InitIndex != Inits.size(); ++InitIndex) {
Alexis Hunt1d792652011-01-08 20:30:50 +00003839 CXXCtorInitializer *Init = Inits[InitIndex];
Alp Tokerd4a3f0e2014-06-15 23:30:39 +00003840 if (!SemaRef.Diags.isIgnored(diag::warn_initializer_out_of_order,
3841 Init->getSourceLocation())) {
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +00003842 ShouldCheckOrder = true;
3843 break;
3844 }
3845 }
3846 if (!ShouldCheckOrder)
Anders Carlssone0eebb32009-08-27 05:45:01 +00003847 return;
Anders Carlssone857b292010-04-02 03:37:03 +00003848
John McCallbb7b6582010-04-10 07:37:23 +00003849 // Build the list of bases and members in the order that they'll
3850 // actually be initialized. The explicit initializers should be in
3851 // this same order but may be missing things.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003852 SmallVector<const void*, 32> IdealInitKeys;
Mike Stump11289f42009-09-09 15:08:12 +00003853
Anders Carlsson96b8fc62010-04-02 03:38:04 +00003854 const CXXRecordDecl *ClassDecl = Constructor->getParent();
3855
John McCallbb7b6582010-04-10 07:37:23 +00003856 // 1. Virtual bases.
Aaron Ballman445a9392014-03-13 16:15:17 +00003857 for (const auto &VBase : ClassDecl->vbases())
3858 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, VBase.getType()));
Mike Stump11289f42009-09-09 15:08:12 +00003859
John McCallbb7b6582010-04-10 07:37:23 +00003860 // 2. Non-virtual bases.
Aaron Ballman574705e2014-03-13 15:41:46 +00003861 for (const auto &Base : ClassDecl->bases()) {
3862 if (Base.isVirtual())
Anders Carlssone0eebb32009-08-27 05:45:01 +00003863 continue;
Aaron Ballman574705e2014-03-13 15:41:46 +00003864 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, Base.getType()));
Anders Carlssone0eebb32009-08-27 05:45:01 +00003865 }
Mike Stump11289f42009-09-09 15:08:12 +00003866
John McCallbb7b6582010-04-10 07:37:23 +00003867 // 3. Direct fields.
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00003868 for (auto *Field : ClassDecl->fields()) {
Douglas Gregor556e5862011-10-10 17:22:13 +00003869 if (Field->isUnnamedBitfield())
3870 continue;
3871
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00003872 PopulateKeysForFields(Field, IdealInitKeys);
Douglas Gregor556e5862011-10-10 17:22:13 +00003873 }
3874
John McCallbb7b6582010-04-10 07:37:23 +00003875 unsigned NumIdealInits = IdealInitKeys.size();
3876 unsigned IdealIndex = 0;
Eli Friedman952c15d2009-07-21 19:28:10 +00003877
Craig Topperc3ec1492014-05-26 06:22:03 +00003878 CXXCtorInitializer *PrevInit = nullptr;
David Blaikie3fc2f912013-01-17 05:26:25 +00003879 for (unsigned InitIndex = 0; InitIndex != Inits.size(); ++InitIndex) {
Alexis Hunt1d792652011-01-08 20:30:50 +00003880 CXXCtorInitializer *Init = Inits[InitIndex];
Benjamin Kramer8bf44352013-07-24 15:28:33 +00003881 const void *InitKey = GetKeyForMember(SemaRef.Context, Init);
John McCallbb7b6582010-04-10 07:37:23 +00003882
3883 // Scan forward to try to find this initializer in the idealized
3884 // initializers list.
3885 for (; IdealIndex != NumIdealInits; ++IdealIndex)
3886 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlssone0eebb32009-08-27 05:45:01 +00003887 break;
John McCallbb7b6582010-04-10 07:37:23 +00003888
3889 // If we didn't find this initializer, it must be because we
3890 // scanned past it on a previous iteration. That can only
3891 // happen if we're out of order; emit a warning.
Douglas Gregoraabdfcb2010-05-20 23:49:34 +00003892 if (IdealIndex == NumIdealInits && PrevInit) {
John McCallbb7b6582010-04-10 07:37:23 +00003893 Sema::SemaDiagnosticBuilder D =
3894 SemaRef.Diag(PrevInit->getSourceLocation(),
3895 diag::warn_initializer_out_of_order);
3896
Francois Pichetd583da02010-12-04 09:14:42 +00003897 if (PrevInit->isAnyMemberInitializer())
3898 D << 0 << PrevInit->getAnyMember()->getDeclName();
John McCallbb7b6582010-04-10 07:37:23 +00003899 else
Douglas Gregord73f3dd2011-11-01 01:16:03 +00003900 D << 1 << PrevInit->getTypeSourceInfo()->getType();
John McCallbb7b6582010-04-10 07:37:23 +00003901
Francois Pichetd583da02010-12-04 09:14:42 +00003902 if (Init->isAnyMemberInitializer())
3903 D << 0 << Init->getAnyMember()->getDeclName();
John McCallbb7b6582010-04-10 07:37:23 +00003904 else
Douglas Gregord73f3dd2011-11-01 01:16:03 +00003905 D << 1 << Init->getTypeSourceInfo()->getType();
John McCallbb7b6582010-04-10 07:37:23 +00003906
3907 // Move back to the initializer's location in the ideal list.
3908 for (IdealIndex = 0; IdealIndex != NumIdealInits; ++IdealIndex)
3909 if (InitKey == IdealInitKeys[IdealIndex])
Anders Carlssone0eebb32009-08-27 05:45:01 +00003910 break;
John McCallbb7b6582010-04-10 07:37:23 +00003911
3912 assert(IdealIndex != NumIdealInits &&
3913 "initializer not found in initializer list");
Fariborz Jahanian341583c2009-07-09 19:59:47 +00003914 }
John McCallbb7b6582010-04-10 07:37:23 +00003915
3916 PrevInit = Init;
Fariborz Jahanian341583c2009-07-09 19:59:47 +00003917 }
Anders Carlsson75fdaa42009-03-25 02:58:17 +00003918}
3919
John McCall23eebd92010-04-10 09:28:51 +00003920namespace {
3921bool CheckRedundantInit(Sema &S,
Alexis Hunt1d792652011-01-08 20:30:50 +00003922 CXXCtorInitializer *Init,
3923 CXXCtorInitializer *&PrevInit) {
John McCall23eebd92010-04-10 09:28:51 +00003924 if (!PrevInit) {
3925 PrevInit = Init;
3926 return false;
3927 }
3928
Douglas Gregorea306a12013-03-25 23:28:23 +00003929 if (FieldDecl *Field = Init->getAnyMember())
John McCall23eebd92010-04-10 09:28:51 +00003930 S.Diag(Init->getSourceLocation(),
3931 diag::err_multiple_mem_initialization)
3932 << Field->getDeclName()
3933 << Init->getSourceRange();
3934 else {
John McCall424cec92011-01-19 06:33:43 +00003935 const Type *BaseClass = Init->getBaseClass();
John McCall23eebd92010-04-10 09:28:51 +00003936 assert(BaseClass && "neither field nor base");
3937 S.Diag(Init->getSourceLocation(),
3938 diag::err_multiple_base_initialization)
3939 << QualType(BaseClass, 0)
3940 << Init->getSourceRange();
3941 }
3942 S.Diag(PrevInit->getSourceLocation(), diag::note_previous_initializer)
3943 << 0 << PrevInit->getSourceRange();
3944
3945 return true;
3946}
3947
Alexis Hunt1d792652011-01-08 20:30:50 +00003948typedef std::pair<NamedDecl *, CXXCtorInitializer *> UnionEntry;
John McCall23eebd92010-04-10 09:28:51 +00003949typedef llvm::DenseMap<RecordDecl*, UnionEntry> RedundantUnionMap;
3950
3951bool CheckRedundantUnionInit(Sema &S,
Alexis Hunt1d792652011-01-08 20:30:50 +00003952 CXXCtorInitializer *Init,
John McCall23eebd92010-04-10 09:28:51 +00003953 RedundantUnionMap &Unions) {
Francois Pichetd583da02010-12-04 09:14:42 +00003954 FieldDecl *Field = Init->getAnyMember();
John McCall23eebd92010-04-10 09:28:51 +00003955 RecordDecl *Parent = Field->getParent();
John McCall23eebd92010-04-10 09:28:51 +00003956 NamedDecl *Child = Field;
David Blaikie0f65d592011-11-17 06:01:57 +00003957
3958 while (Parent->isAnonymousStructOrUnion() || Parent->isUnion()) {
John McCall23eebd92010-04-10 09:28:51 +00003959 if (Parent->isUnion()) {
3960 UnionEntry &En = Unions[Parent];
3961 if (En.first && En.first != Child) {
3962 S.Diag(Init->getSourceLocation(),
3963 diag::err_multiple_mem_union_initialization)
3964 << Field->getDeclName()
3965 << Init->getSourceRange();
3966 S.Diag(En.second->getSourceLocation(), diag::note_previous_initializer)
3967 << 0 << En.second->getSourceRange();
3968 return true;
David Blaikie256ee192011-11-12 20:54:14 +00003969 }
3970 if (!En.first) {
John McCall23eebd92010-04-10 09:28:51 +00003971 En.first = Child;
3972 En.second = Init;
3973 }
David Blaikie0f65d592011-11-17 06:01:57 +00003974 if (!Parent->isAnonymousStructOrUnion())
3975 return false;
John McCall23eebd92010-04-10 09:28:51 +00003976 }
3977
3978 Child = Parent;
3979 Parent = cast<RecordDecl>(Parent->getDeclContext());
David Blaikie0f65d592011-11-17 06:01:57 +00003980 }
John McCall23eebd92010-04-10 09:28:51 +00003981
3982 return false;
3983}
3984}
3985
Anders Carlssone857b292010-04-02 03:37:03 +00003986/// ActOnMemInitializers - Handle the member initializers for a constructor.
John McCall48871652010-08-21 09:40:31 +00003987void Sema::ActOnMemInitializers(Decl *ConstructorDecl,
Anders Carlssone857b292010-04-02 03:37:03 +00003988 SourceLocation ColonLoc,
David Blaikie3fc2f912013-01-17 05:26:25 +00003989 ArrayRef<CXXCtorInitializer*> MemInits,
Anders Carlssone857b292010-04-02 03:37:03 +00003990 bool AnyErrors) {
3991 if (!ConstructorDecl)
3992 return;
3993
3994 AdjustDeclIfTemplate(ConstructorDecl);
3995
3996 CXXConstructorDecl *Constructor
John McCall48871652010-08-21 09:40:31 +00003997 = dyn_cast<CXXConstructorDecl>(ConstructorDecl);
Anders Carlssone857b292010-04-02 03:37:03 +00003998
3999 if (!Constructor) {
4000 Diag(ColonLoc, diag::err_only_constructors_take_base_inits);
4001 return;
4002 }
4003
John McCall23eebd92010-04-10 09:28:51 +00004004 // Mapping for the duplicate initializers check.
4005 // For member initializers, this is keyed with a FieldDecl*.
4006 // For base initializers, this is keyed with a Type*.
Benjamin Kramer8bf44352013-07-24 15:28:33 +00004007 llvm::DenseMap<const void *, CXXCtorInitializer *> Members;
John McCall23eebd92010-04-10 09:28:51 +00004008
4009 // Mapping for the inconsistent anonymous-union initializers check.
4010 RedundantUnionMap MemberUnions;
4011
Anders Carlsson7b3f2782010-04-02 05:42:15 +00004012 bool HadError = false;
David Blaikie3fc2f912013-01-17 05:26:25 +00004013 for (unsigned i = 0; i < MemInits.size(); i++) {
Alexis Hunt1d792652011-01-08 20:30:50 +00004014 CXXCtorInitializer *Init = MemInits[i];
Anders Carlssone857b292010-04-02 03:37:03 +00004015
Abramo Bagnara341d7832010-05-26 18:09:23 +00004016 // Set the source order index.
4017 Init->setSourceOrder(i);
4018
Francois Pichetd583da02010-12-04 09:14:42 +00004019 if (Init->isAnyMemberInitializer()) {
Richard Smithcd45dbc2014-04-19 03:48:30 +00004020 const void *Key = GetKeyForMember(Context, Init);
4021 if (CheckRedundantInit(*this, Init, Members[Key]) ||
John McCall23eebd92010-04-10 09:28:51 +00004022 CheckRedundantUnionInit(*this, Init, MemberUnions))
4023 HadError = true;
Alexis Huntc5575cc2011-02-26 19:13:13 +00004024 } else if (Init->isBaseInitializer()) {
Richard Smithcd45dbc2014-04-19 03:48:30 +00004025 const void *Key = GetKeyForMember(Context, Init);
John McCall23eebd92010-04-10 09:28:51 +00004026 if (CheckRedundantInit(*this, Init, Members[Key]))
4027 HadError = true;
Alexis Huntc5575cc2011-02-26 19:13:13 +00004028 } else {
4029 assert(Init->isDelegatingInitializer());
4030 // This must be the only initializer
David Blaikie3fc2f912013-01-17 05:26:25 +00004031 if (MemInits.size() != 1) {
Richard Smith21f06f02012-09-14 18:21:10 +00004032 Diag(Init->getSourceLocation(),
Alexis Huntc5575cc2011-02-26 19:13:13 +00004033 diag::err_delegating_initializer_alone)
Richard Smith21f06f02012-09-14 18:21:10 +00004034 << Init->getSourceRange() << MemInits[i ? 0 : 1]->getSourceRange();
Alexis Hunt61bc1732011-05-01 07:04:31 +00004035 // We will treat this as being the only initializer.
Alexis Huntc5575cc2011-02-26 19:13:13 +00004036 }
Alexis Hunt6118d662011-05-04 05:57:24 +00004037 SetDelegatingInitializer(Constructor, MemInits[i]);
Alexis Hunt61bc1732011-05-01 07:04:31 +00004038 // Return immediately as the initializer is set.
4039 return;
Anders Carlssone857b292010-04-02 03:37:03 +00004040 }
Anders Carlssone857b292010-04-02 03:37:03 +00004041 }
4042
Anders Carlsson7b3f2782010-04-02 05:42:15 +00004043 if (HadError)
4044 return;
4045
David Blaikie3fc2f912013-01-17 05:26:25 +00004046 DiagnoseBaseOrMemInitializerOrder(*this, Constructor, MemInits);
Anders Carlsson4c8cb012010-04-02 03:43:34 +00004047
David Blaikie3fc2f912013-01-17 05:26:25 +00004048 SetCtorInitializers(Constructor, AnyErrors, MemInits);
Richard Trieu3a446ff2013-09-16 21:54:53 +00004049
Richard Trieuef64e942013-10-25 00:56:00 +00004050 DiagnoseUninitializedFields(*this, Constructor);
Anders Carlssone857b292010-04-02 03:37:03 +00004051}
4052
Fariborz Jahanian37d06562009-09-03 23:18:17 +00004053void
John McCalla6309952010-03-16 21:39:52 +00004054Sema::MarkBaseAndMemberDestructorsReferenced(SourceLocation Location,
4055 CXXRecordDecl *ClassDecl) {
Richard Smith20104042011-09-18 12:11:43 +00004056 // Ignore dependent contexts. Also ignore unions, since their members never
4057 // have destructors implicitly called.
4058 if (ClassDecl->isDependentContext() || ClassDecl->isUnion())
Anders Carlssondee9a302009-11-17 04:44:12 +00004059 return;
John McCall1064d7e2010-03-16 05:22:47 +00004060
4061 // FIXME: all the access-control diagnostics are positioned on the
4062 // field/base declaration. That's probably good; that said, the
4063 // user might reasonably want to know why the destructor is being
4064 // emitted, and we currently don't say.
Anders Carlssondee9a302009-11-17 04:44:12 +00004065
Anders Carlssondee9a302009-11-17 04:44:12 +00004066 // Non-static data members.
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00004067 for (auto *Field : ClassDecl->fields()) {
Fariborz Jahanian16f94c62010-05-17 18:15:18 +00004068 if (Field->isInvalidDecl())
4069 continue;
Douglas Gregor10f939c2011-11-02 23:04:16 +00004070
4071 // Don't destroy incomplete or zero-length arrays.
4072 if (isIncompleteOrZeroLengthArrayType(Context, Field->getType()))
4073 continue;
4074
Anders Carlssondee9a302009-11-17 04:44:12 +00004075 QualType FieldType = Context.getBaseElementType(Field->getType());
4076
4077 const RecordType* RT = FieldType->getAs<RecordType>();
4078 if (!RT)
4079 continue;
4080
4081 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Matt Beaumont-Gay93615d92011-03-28 01:39:13 +00004082 if (FieldClassDecl->isInvalidDecl())
4083 continue;
Richard Smitheec915d62012-02-18 04:13:32 +00004084 if (FieldClassDecl->hasIrrelevantDestructor())
Anders Carlssondee9a302009-11-17 04:44:12 +00004085 continue;
Richard Smith921bd202012-02-26 09:11:52 +00004086 // The destructor for an implicit anonymous union member is never invoked.
4087 if (FieldClassDecl->isUnion() && FieldClassDecl->isAnonymousStructOrUnion())
4088 continue;
Anders Carlssondee9a302009-11-17 04:44:12 +00004089
Douglas Gregore71edda2010-07-01 22:47:18 +00004090 CXXDestructorDecl *Dtor = LookupDestructor(FieldClassDecl);
Matt Beaumont-Gay93615d92011-03-28 01:39:13 +00004091 assert(Dtor && "No dtor found for FieldClassDecl!");
John McCall1064d7e2010-03-16 05:22:47 +00004092 CheckDestructorAccess(Field->getLocation(), Dtor,
Douglas Gregor89336232010-03-29 23:34:08 +00004093 PDiag(diag::err_access_dtor_field)
John McCall1064d7e2010-03-16 05:22:47 +00004094 << Field->getDeclName()
4095 << FieldType);
4096
Benjamin Kramer8bf44352013-07-24 15:28:33 +00004097 MarkFunctionReferenced(Location, Dtor);
Richard Smitheec915d62012-02-18 04:13:32 +00004098 DiagnoseUseOfDecl(Dtor, Location);
Anders Carlssondee9a302009-11-17 04:44:12 +00004099 }
4100
John McCall1064d7e2010-03-16 05:22:47 +00004101 llvm::SmallPtrSet<const RecordType *, 8> DirectVirtualBases;
4102
Anders Carlssondee9a302009-11-17 04:44:12 +00004103 // Bases.
Aaron Ballman574705e2014-03-13 15:41:46 +00004104 for (const auto &Base : ClassDecl->bases()) {
John McCall1064d7e2010-03-16 05:22:47 +00004105 // Bases are always records in a well-formed non-dependent class.
Aaron Ballman574705e2014-03-13 15:41:46 +00004106 const RecordType *RT = Base.getType()->getAs<RecordType>();
John McCall1064d7e2010-03-16 05:22:47 +00004107
4108 // Remember direct virtual bases.
Aaron Ballman574705e2014-03-13 15:41:46 +00004109 if (Base.isVirtual())
John McCall1064d7e2010-03-16 05:22:47 +00004110 DirectVirtualBases.insert(RT);
Anders Carlssondee9a302009-11-17 04:44:12 +00004111
John McCall1064d7e2010-03-16 05:22:47 +00004112 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Matt Beaumont-Gay93615d92011-03-28 01:39:13 +00004113 // If our base class is invalid, we probably can't get its dtor anyway.
4114 if (BaseClassDecl->isInvalidDecl())
4115 continue;
Richard Smitheec915d62012-02-18 04:13:32 +00004116 if (BaseClassDecl->hasIrrelevantDestructor())
Anders Carlssondee9a302009-11-17 04:44:12 +00004117 continue;
John McCall1064d7e2010-03-16 05:22:47 +00004118
Douglas Gregore71edda2010-07-01 22:47:18 +00004119 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
Matt Beaumont-Gay93615d92011-03-28 01:39:13 +00004120 assert(Dtor && "No dtor found for BaseClassDecl!");
John McCall1064d7e2010-03-16 05:22:47 +00004121
4122 // FIXME: caret should be on the start of the class name
Aaron Ballman574705e2014-03-13 15:41:46 +00004123 CheckDestructorAccess(Base.getLocStart(), Dtor,
Douglas Gregor89336232010-03-29 23:34:08 +00004124 PDiag(diag::err_access_dtor_base)
Aaron Ballman574705e2014-03-13 15:41:46 +00004125 << Base.getType()
4126 << Base.getSourceRange(),
John McCall5dadb652012-04-07 03:04:20 +00004127 Context.getTypeDeclType(ClassDecl));
Anders Carlssondee9a302009-11-17 04:44:12 +00004128
Benjamin Kramer8bf44352013-07-24 15:28:33 +00004129 MarkFunctionReferenced(Location, Dtor);
Richard Smitheec915d62012-02-18 04:13:32 +00004130 DiagnoseUseOfDecl(Dtor, Location);
Anders Carlssondee9a302009-11-17 04:44:12 +00004131 }
4132
4133 // Virtual bases.
Aaron Ballman445a9392014-03-13 16:15:17 +00004134 for (const auto &VBase : ClassDecl->vbases()) {
John McCall1064d7e2010-03-16 05:22:47 +00004135 // Bases are always records in a well-formed non-dependent class.
Aaron Ballman445a9392014-03-13 16:15:17 +00004136 const RecordType *RT = VBase.getType()->castAs<RecordType>();
John McCall1064d7e2010-03-16 05:22:47 +00004137
4138 // Ignore direct virtual bases.
4139 if (DirectVirtualBases.count(RT))
4140 continue;
4141
John McCall1064d7e2010-03-16 05:22:47 +00004142 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
Matt Beaumont-Gay93615d92011-03-28 01:39:13 +00004143 // If our base class is invalid, we probably can't get its dtor anyway.
4144 if (BaseClassDecl->isInvalidDecl())
4145 continue;
Richard Smitheec915d62012-02-18 04:13:32 +00004146 if (BaseClassDecl->hasIrrelevantDestructor())
Fariborz Jahanian37d06562009-09-03 23:18:17 +00004147 continue;
John McCall1064d7e2010-03-16 05:22:47 +00004148
Douglas Gregore71edda2010-07-01 22:47:18 +00004149 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl);
Matt Beaumont-Gay93615d92011-03-28 01:39:13 +00004150 assert(Dtor && "No dtor found for BaseClassDecl!");
David Majnemer626032f2013-06-22 06:43:58 +00004151 if (CheckDestructorAccess(
4152 ClassDecl->getLocation(), Dtor,
4153 PDiag(diag::err_access_dtor_vbase)
Aaron Ballman445a9392014-03-13 16:15:17 +00004154 << Context.getTypeDeclType(ClassDecl) << VBase.getType(),
David Majnemer626032f2013-06-22 06:43:58 +00004155 Context.getTypeDeclType(ClassDecl)) ==
4156 AR_accessible) {
4157 CheckDerivedToBaseConversion(
Aaron Ballman445a9392014-03-13 16:15:17 +00004158 Context.getTypeDeclType(ClassDecl), VBase.getType(),
David Majnemer626032f2013-06-22 06:43:58 +00004159 diag::err_access_dtor_vbase, 0, ClassDecl->getLocation(),
Craig Topperc3ec1492014-05-26 06:22:03 +00004160 SourceRange(), DeclarationName(), nullptr);
David Majnemer626032f2013-06-22 06:43:58 +00004161 }
John McCall1064d7e2010-03-16 05:22:47 +00004162
Benjamin Kramer8bf44352013-07-24 15:28:33 +00004163 MarkFunctionReferenced(Location, Dtor);
Richard Smitheec915d62012-02-18 04:13:32 +00004164 DiagnoseUseOfDecl(Dtor, Location);
Fariborz Jahanian37d06562009-09-03 23:18:17 +00004165 }
4166}
4167
John McCall48871652010-08-21 09:40:31 +00004168void Sema::ActOnDefaultCtorInitializers(Decl *CDtorDecl) {
Fariborz Jahanian16094c22009-07-15 22:34:08 +00004169 if (!CDtorDecl)
Fariborz Jahanian49c81792009-07-14 18:24:21 +00004170 return;
Mike Stump11289f42009-09-09 15:08:12 +00004171
Mike Stump11289f42009-09-09 15:08:12 +00004172 if (CXXConstructorDecl *Constructor
Richard Trieuef64e942013-10-25 00:56:00 +00004173 = dyn_cast<CXXConstructorDecl>(CDtorDecl)) {
David Blaikie3fc2f912013-01-17 05:26:25 +00004174 SetCtorInitializers(Constructor, /*AnyErrors=*/false);
Richard Trieuef64e942013-10-25 00:56:00 +00004175 DiagnoseUninitializedFields(*this, Constructor);
4176 }
Fariborz Jahanian49c81792009-07-14 18:24:21 +00004177}
4178
Mike Stump11289f42009-09-09 15:08:12 +00004179bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
John McCall02db245d2010-08-18 09:41:07 +00004180 unsigned DiagID, AbstractDiagSelID SelID) {
Douglas Gregorae298422012-05-04 17:09:59 +00004181 class NonAbstractTypeDiagnoser : public TypeDiagnoser {
4182 unsigned DiagID;
4183 AbstractDiagSelID SelID;
4184
4185 public:
4186 NonAbstractTypeDiagnoser(unsigned DiagID, AbstractDiagSelID SelID)
4187 : TypeDiagnoser(DiagID == 0), DiagID(DiagID), SelID(SelID) { }
Benjamin Kramer8bf44352013-07-24 15:28:33 +00004188
Craig Toppera798a9d2014-03-02 09:32:10 +00004189 void diagnose(Sema &S, SourceLocation Loc, QualType T) override {
Eli Friedman1d4c3cf2012-08-14 02:06:07 +00004190 if (Suppressed) return;
Douglas Gregorae298422012-05-04 17:09:59 +00004191 if (SelID == -1)
4192 S.Diag(Loc, DiagID) << T;
4193 else
4194 S.Diag(Loc, DiagID) << SelID << T;
4195 }
4196 } Diagnoser(DiagID, SelID);
4197
4198 return RequireNonAbstractType(Loc, T, Diagnoser);
Mike Stump11289f42009-09-09 15:08:12 +00004199}
4200
Anders Carlssoneabf7702009-08-27 00:13:57 +00004201bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
Douglas Gregorae298422012-05-04 17:09:59 +00004202 TypeDiagnoser &Diagnoser) {
David Blaikiebbafb8a2012-03-11 07:00:24 +00004203 if (!getLangOpts().CPlusPlus)
Anders Carlsson576cc6f2009-03-22 20:18:17 +00004204 return false;
Mike Stump11289f42009-09-09 15:08:12 +00004205
Anders Carlssoneb0c5322009-03-23 19:10:31 +00004206 if (const ArrayType *AT = Context.getAsArrayType(T))
Douglas Gregorae298422012-05-04 17:09:59 +00004207 return RequireNonAbstractType(Loc, AT->getElementType(), Diagnoser);
Mike Stump11289f42009-09-09 15:08:12 +00004208
Ted Kremenekc23c7e62009-07-29 21:53:49 +00004209 if (const PointerType *PT = T->getAs<PointerType>()) {
Anders Carlsson8f0d2182009-03-24 01:46:45 +00004210 // Find the innermost pointer type.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00004211 while (const PointerType *T = PT->getPointeeType()->getAs<PointerType>())
Anders Carlsson8f0d2182009-03-24 01:46:45 +00004212 PT = T;
Mike Stump11289f42009-09-09 15:08:12 +00004213
Anders Carlsson8f0d2182009-03-24 01:46:45 +00004214 if (const ArrayType *AT = Context.getAsArrayType(PT->getPointeeType()))
Douglas Gregorae298422012-05-04 17:09:59 +00004215 return RequireNonAbstractType(Loc, AT->getElementType(), Diagnoser);
Anders Carlsson8f0d2182009-03-24 01:46:45 +00004216 }
Mike Stump11289f42009-09-09 15:08:12 +00004217
Ted Kremenekc23c7e62009-07-29 21:53:49 +00004218 const RecordType *RT = T->getAs<RecordType>();
Anders Carlsson576cc6f2009-03-22 20:18:17 +00004219 if (!RT)
4220 return false;
Mike Stump11289f42009-09-09 15:08:12 +00004221
John McCall67da35c2010-02-04 22:26:26 +00004222 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
Anders Carlsson576cc6f2009-03-22 20:18:17 +00004223
John McCall02db245d2010-08-18 09:41:07 +00004224 // We can't answer whether something is abstract until it has a
4225 // definition. If it's currently being defined, we'll walk back
4226 // over all the declarations when we have a full definition.
4227 const CXXRecordDecl *Def = RD->getDefinition();
4228 if (!Def || Def->isBeingDefined())
John McCall67da35c2010-02-04 22:26:26 +00004229 return false;
4230
Anders Carlsson576cc6f2009-03-22 20:18:17 +00004231 if (!RD->isAbstract())
4232 return false;
Mike Stump11289f42009-09-09 15:08:12 +00004233
Douglas Gregorae298422012-05-04 17:09:59 +00004234 Diagnoser.diagnose(*this, Loc, T);
John McCall02db245d2010-08-18 09:41:07 +00004235 DiagnoseAbstractType(RD);
Mike Stump11289f42009-09-09 15:08:12 +00004236
John McCall02db245d2010-08-18 09:41:07 +00004237 return true;
4238}
4239
4240void Sema::DiagnoseAbstractType(const CXXRecordDecl *RD) {
4241 // Check if we've already emitted the list of pure virtual functions
4242 // for this class.
Anders Carlsson576cc6f2009-03-22 20:18:17 +00004243 if (PureVirtualClassDiagSet && PureVirtualClassDiagSet->count(RD))
John McCall02db245d2010-08-18 09:41:07 +00004244 return;
Mike Stump11289f42009-09-09 15:08:12 +00004245
Richard Smithbc46e432013-07-22 02:56:56 +00004246 // If the diagnostic is suppressed, don't emit the notes. We're only
4247 // going to emit them once, so try to attach them to a diagnostic we're
4248 // actually going to show.
4249 if (Diags.isLastDiagnosticIgnored())
4250 return;
4251
Douglas Gregor4165bd62010-03-23 23:47:56 +00004252 CXXFinalOverriderMap FinalOverriders;
4253 RD->getFinalOverriders(FinalOverriders);
Mike Stump11289f42009-09-09 15:08:12 +00004254
Anders Carlssona2f74f32010-06-03 01:00:02 +00004255 // Keep a set of seen pure methods so we won't diagnose the same method
4256 // more than once.
4257 llvm::SmallPtrSet<const CXXMethodDecl *, 8> SeenPureMethods;
4258
Douglas Gregor4165bd62010-03-23 23:47:56 +00004259 for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(),
4260 MEnd = FinalOverriders.end();
4261 M != MEnd;
4262 ++M) {
4263 for (OverridingMethods::iterator SO = M->second.begin(),
4264 SOEnd = M->second.end();
4265 SO != SOEnd; ++SO) {
4266 // C++ [class.abstract]p4:
4267 // A class is abstract if it contains or inherits at least one
4268 // pure virtual function for which the final overrider is pure
4269 // virtual.
Mike Stump11289f42009-09-09 15:08:12 +00004270
Douglas Gregor4165bd62010-03-23 23:47:56 +00004271 //
4272 if (SO->second.size() != 1)
4273 continue;
4274
4275 if (!SO->second.front().Method->isPure())
4276 continue;
4277
Anders Carlssona2f74f32010-06-03 01:00:02 +00004278 if (!SeenPureMethods.insert(SO->second.front().Method))
4279 continue;
4280
Douglas Gregor4165bd62010-03-23 23:47:56 +00004281 Diag(SO->second.front().Method->getLocation(),
4282 diag::note_pure_virtual_function)
Chandler Carruth98e3c562011-02-18 23:59:51 +00004283 << SO->second.front().Method->getDeclName() << RD->getDeclName();
Douglas Gregor4165bd62010-03-23 23:47:56 +00004284 }
Anders Carlsson576cc6f2009-03-22 20:18:17 +00004285 }
4286
4287 if (!PureVirtualClassDiagSet)
4288 PureVirtualClassDiagSet.reset(new RecordDeclSetTy);
4289 PureVirtualClassDiagSet->insert(RD);
Anders Carlsson576cc6f2009-03-22 20:18:17 +00004290}
4291
Anders Carlssonb5a27b42009-03-24 01:19:16 +00004292namespace {
John McCall02db245d2010-08-18 09:41:07 +00004293struct AbstractUsageInfo {
4294 Sema &S;
4295 CXXRecordDecl *Record;
4296 CanQualType AbstractType;
4297 bool Invalid;
Mike Stump11289f42009-09-09 15:08:12 +00004298
John McCall02db245d2010-08-18 09:41:07 +00004299 AbstractUsageInfo(Sema &S, CXXRecordDecl *Record)
4300 : S(S), Record(Record),
4301 AbstractType(S.Context.getCanonicalType(
4302 S.Context.getTypeDeclType(Record))),
4303 Invalid(false) {}
Anders Carlssonb5a27b42009-03-24 01:19:16 +00004304
John McCall02db245d2010-08-18 09:41:07 +00004305 void DiagnoseAbstractType() {
4306 if (Invalid) return;
4307 S.DiagnoseAbstractType(Record);
4308 Invalid = true;
4309 }
Anders Carlssonb57738b2009-03-24 17:23:42 +00004310
John McCall02db245d2010-08-18 09:41:07 +00004311 void CheckType(const NamedDecl *D, TypeLoc TL, Sema::AbstractDiagSelID Sel);
4312};
4313
4314struct CheckAbstractUsage {
4315 AbstractUsageInfo &Info;
4316 const NamedDecl *Ctx;
4317
4318 CheckAbstractUsage(AbstractUsageInfo &Info, const NamedDecl *Ctx)
4319 : Info(Info), Ctx(Ctx) {}
4320
4321 void Visit(TypeLoc TL, Sema::AbstractDiagSelID Sel) {
4322 switch (TL.getTypeLocClass()) {
4323#define ABSTRACT_TYPELOC(CLASS, PARENT)
4324#define TYPELOC(CLASS, PARENT) \
David Blaikie6adc78e2013-02-18 22:06:02 +00004325 case TypeLoc::CLASS: Check(TL.castAs<CLASS##TypeLoc>(), Sel); break;
John McCall02db245d2010-08-18 09:41:07 +00004326#include "clang/AST/TypeLocNodes.def"
Anders Carlssonb5a27b42009-03-24 01:19:16 +00004327 }
John McCall02db245d2010-08-18 09:41:07 +00004328 }
Mike Stump11289f42009-09-09 15:08:12 +00004329
John McCall02db245d2010-08-18 09:41:07 +00004330 void Check(FunctionProtoTypeLoc TL, Sema::AbstractDiagSelID Sel) {
Alp Toker42a16a62014-01-25 23:51:36 +00004331 Visit(TL.getReturnLoc(), Sema::AbstractReturnType);
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00004332 for (unsigned I = 0, E = TL.getNumParams(); I != E; ++I) {
4333 if (!TL.getParam(I))
Douglas Gregor385d3fd2011-02-22 23:21:06 +00004334 continue;
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00004335
4336 TypeSourceInfo *TSI = TL.getParam(I)->getTypeSourceInfo();
John McCall02db245d2010-08-18 09:41:07 +00004337 if (TSI) Visit(TSI->getTypeLoc(), Sema::AbstractParamType);
Anders Carlssonb57738b2009-03-24 17:23:42 +00004338 }
John McCall02db245d2010-08-18 09:41:07 +00004339 }
Anders Carlssonb5a27b42009-03-24 01:19:16 +00004340
John McCall02db245d2010-08-18 09:41:07 +00004341 void Check(ArrayTypeLoc TL, Sema::AbstractDiagSelID Sel) {
4342 Visit(TL.getElementLoc(), Sema::AbstractArrayType);
4343 }
Mike Stump11289f42009-09-09 15:08:12 +00004344
John McCall02db245d2010-08-18 09:41:07 +00004345 void Check(TemplateSpecializationTypeLoc TL, Sema::AbstractDiagSelID Sel) {
4346 // Visit the type parameters from a permissive context.
4347 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) {
4348 TemplateArgumentLoc TAL = TL.getArgLoc(I);
4349 if (TAL.getArgument().getKind() == TemplateArgument::Type)
4350 if (TypeSourceInfo *TSI = TAL.getTypeSourceInfo())
4351 Visit(TSI->getTypeLoc(), Sema::AbstractNone);
4352 // TODO: other template argument types?
Anders Carlssonb5a27b42009-03-24 01:19:16 +00004353 }
John McCall02db245d2010-08-18 09:41:07 +00004354 }
Mike Stump11289f42009-09-09 15:08:12 +00004355
John McCall02db245d2010-08-18 09:41:07 +00004356 // Visit pointee types from a permissive context.
4357#define CheckPolymorphic(Type) \
4358 void Check(Type TL, Sema::AbstractDiagSelID Sel) { \
4359 Visit(TL.getNextTypeLoc(), Sema::AbstractNone); \
4360 }
4361 CheckPolymorphic(PointerTypeLoc)
4362 CheckPolymorphic(ReferenceTypeLoc)
4363 CheckPolymorphic(MemberPointerTypeLoc)
4364 CheckPolymorphic(BlockPointerTypeLoc)
Eli Friedman0dfb8892011-10-06 23:00:33 +00004365 CheckPolymorphic(AtomicTypeLoc)
Mike Stump11289f42009-09-09 15:08:12 +00004366
John McCall02db245d2010-08-18 09:41:07 +00004367 /// Handle all the types we haven't given a more specific
4368 /// implementation for above.
4369 void Check(TypeLoc TL, Sema::AbstractDiagSelID Sel) {
4370 // Every other kind of type that we haven't called out already
4371 // that has an inner type is either (1) sugar or (2) contains that
4372 // inner type in some way as a subobject.
4373 if (TypeLoc Next = TL.getNextTypeLoc())
4374 return Visit(Next, Sel);
4375
4376 // If there's no inner type and we're in a permissive context,
4377 // don't diagnose.
4378 if (Sel == Sema::AbstractNone) return;
4379
4380 // Check whether the type matches the abstract type.
4381 QualType T = TL.getType();
4382 if (T->isArrayType()) {
4383 Sel = Sema::AbstractArrayType;
4384 T = Info.S.Context.getBaseElementType(T);
Anders Carlssonb57738b2009-03-24 17:23:42 +00004385 }
John McCall02db245d2010-08-18 09:41:07 +00004386 CanQualType CT = T->getCanonicalTypeUnqualified().getUnqualifiedType();
4387 if (CT != Info.AbstractType) return;
4388
4389 // It matched; do some magic.
4390 if (Sel == Sema::AbstractArrayType) {
4391 Info.S.Diag(Ctx->getLocation(), diag::err_array_of_abstract_type)
4392 << T << TL.getSourceRange();
4393 } else {
4394 Info.S.Diag(Ctx->getLocation(), diag::err_abstract_type_in_decl)
4395 << Sel << T << TL.getSourceRange();
4396 }
4397 Info.DiagnoseAbstractType();
4398 }
4399};
4400
4401void AbstractUsageInfo::CheckType(const NamedDecl *D, TypeLoc TL,
4402 Sema::AbstractDiagSelID Sel) {
4403 CheckAbstractUsage(*this, D).Visit(TL, Sel);
4404}
4405
4406}
4407
4408/// Check for invalid uses of an abstract type in a method declaration.
4409static void CheckAbstractClassUsage(AbstractUsageInfo &Info,
4410 CXXMethodDecl *MD) {
4411 // No need to do the check on definitions, which require that
4412 // the return/param types be complete.
Alexis Hunt4a8ea102011-05-06 20:44:56 +00004413 if (MD->doesThisDeclarationHaveABody())
John McCall02db245d2010-08-18 09:41:07 +00004414 return;
4415
4416 // For safety's sake, just ignore it if we don't have type source
4417 // information. This should never happen for non-implicit methods,
4418 // but...
4419 if (TypeSourceInfo *TSI = MD->getTypeSourceInfo())
4420 Info.CheckType(MD, TSI->getTypeLoc(), Sema::AbstractNone);
4421}
4422
4423/// Check for invalid uses of an abstract type within a class definition.
4424static void CheckAbstractClassUsage(AbstractUsageInfo &Info,
4425 CXXRecordDecl *RD) {
Aaron Ballman629afae2014-03-07 19:56:05 +00004426 for (auto *D : RD->decls()) {
John McCall02db245d2010-08-18 09:41:07 +00004427 if (D->isImplicit()) continue;
4428
4429 // Methods and method templates.
4430 if (isa<CXXMethodDecl>(D)) {
4431 CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(D));
4432 } else if (isa<FunctionTemplateDecl>(D)) {
4433 FunctionDecl *FD = cast<FunctionTemplateDecl>(D)->getTemplatedDecl();
4434 CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(FD));
4435
4436 // Fields and static variables.
4437 } else if (isa<FieldDecl>(D)) {
4438 FieldDecl *FD = cast<FieldDecl>(D);
4439 if (TypeSourceInfo *TSI = FD->getTypeSourceInfo())
4440 Info.CheckType(FD, TSI->getTypeLoc(), Sema::AbstractFieldType);
4441 } else if (isa<VarDecl>(D)) {
4442 VarDecl *VD = cast<VarDecl>(D);
4443 if (TypeSourceInfo *TSI = VD->getTypeSourceInfo())
4444 Info.CheckType(VD, TSI->getTypeLoc(), Sema::AbstractVariableType);
4445
4446 // Nested classes and class templates.
4447 } else if (isa<CXXRecordDecl>(D)) {
4448 CheckAbstractClassUsage(Info, cast<CXXRecordDecl>(D));
4449 } else if (isa<ClassTemplateDecl>(D)) {
4450 CheckAbstractClassUsage(Info,
4451 cast<ClassTemplateDecl>(D)->getTemplatedDecl());
4452 }
4453 }
Anders Carlssonb5a27b42009-03-24 01:19:16 +00004454}
4455
Hans Wennborg853ae942014-05-30 16:59:42 +00004456/// \brief Check class-level dllimport/dllexport attribute.
4457static void checkDLLAttribute(Sema &S, CXXRecordDecl *Class) {
4458 Attr *ClassAttr = getDLLAttr(Class);
Hans Wennborg205c39b2014-08-23 22:34:43 +00004459
4460 // MSVC inherits DLL attributes to partial class template specializations.
4461 if (S.Context.getTargetInfo().getCXXABI().isMicrosoft() && !ClassAttr) {
4462 if (auto *Spec = dyn_cast<ClassTemplatePartialSpecializationDecl>(Class)) {
4463 if (Attr *TemplateAttr =
4464 getDLLAttr(Spec->getSpecializedTemplate()->getTemplatedDecl())) {
4465 auto *A = cast<InheritableAttr>(TemplateAttr->clone(S.getASTContext()));
4466 A->setInherited(true);
4467 ClassAttr = A;
4468 }
4469 }
4470 }
4471
Hans Wennborg853ae942014-05-30 16:59:42 +00004472 if (!ClassAttr)
4473 return;
4474
Hans Wennborgc2b7f7a2014-08-24 00:12:36 +00004475 if (S.Context.getTargetInfo().getCXXABI().isMicrosoft() &&
4476 !ClassAttr->isInherited()) {
4477 // Diagnose dll attributes on members of class with dll attribute.
4478 for (Decl *Member : Class->decls()) {
4479 if (!isa<VarDecl>(Member) && !isa<CXXMethodDecl>(Member))
4480 continue;
4481 InheritableAttr *MemberAttr = getDLLAttr(Member);
4482 if (!MemberAttr || MemberAttr->isInherited() || Member->isInvalidDecl())
4483 continue;
4484
4485 S.Diag(MemberAttr->getLocation(),
4486 diag::err_attribute_dll_member_of_dll_class)
4487 << MemberAttr << ClassAttr;
4488 S.Diag(ClassAttr->getLocation(), diag::note_previous_attribute);
4489 Member->setInvalidDecl();
4490 }
4491 }
4492
4493 if (Class->getDescribedClassTemplate())
4494 // Don't inherit dll attribute until the template is instantiated.
4495 return;
4496
Hans Wennborg853ae942014-05-30 16:59:42 +00004497 bool ClassExported = ClassAttr->getKind() == attr::DLLExport;
4498
4499 // Force declaration of implicit members so they can inherit the attribute.
4500 S.ForceDeclarationOfImplicitMembers(Class);
4501
4502 // FIXME: MSVC's docs say all bases must be exportable, but this doesn't
4503 // seem to be true in practice?
4504
Hans Wennborg334e4ff2014-08-21 01:14:01 +00004505 TemplateSpecializationKind TSK =
4506 Class->getTemplateSpecializationKind();
4507
Hans Wennborg853ae942014-05-30 16:59:42 +00004508 for (Decl *Member : Class->decls()) {
Hans Wennborge8ad3832014-06-11 22:44:39 +00004509 VarDecl *VD = dyn_cast<VarDecl>(Member);
4510 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Member);
4511
4512 // Only methods and static fields inherit the attributes.
4513 if (!VD && !MD)
Hans Wennborg853ae942014-05-30 16:59:42 +00004514 continue;
Hans Wennborge8ad3832014-06-11 22:44:39 +00004515
4516 // Don't process deleted methods.
4517 if (MD && MD->isDeleted())
Hans Wennborg9d06a8d2014-06-10 17:53:23 +00004518 continue;
Hans Wennborg853ae942014-05-30 16:59:42 +00004519
Hans Wennborge8ad3832014-06-11 22:44:39 +00004520 if (MD && MD->isMoveAssignmentOperator() && !ClassExported &&
4521 MD->isInlined()) {
4522 // Current MSVC versions don't export the move assignment operators, so
4523 // don't attempt to import them if we have a definition.
4524 continue;
4525 }
4526
Hans Wennborgc2b7f7a2014-08-24 00:12:36 +00004527 if (!getDLLAttr(Member)) {
Hans Wennborg496524b2014-05-31 02:08:49 +00004528 auto *NewAttr =
4529 cast<InheritableAttr>(ClassAttr->clone(S.getASTContext()));
4530 NewAttr->setInherited(true);
4531 Member->addAttr(NewAttr);
4532 }
Hans Wennborg853ae942014-05-30 16:59:42 +00004533
Hans Wennborg2f9e2932014-08-23 21:10:39 +00004534 if (MD && ClassExported) {
4535 if (MD->isUserProvided()) {
4536 // Instantiate non-default methods..
Hans Wennborg334e4ff2014-08-21 01:14:01 +00004537
Hans Wennborg2f9e2932014-08-23 21:10:39 +00004538 // .. except for certain kinds of template specializations.
4539 if (TSK == TSK_ExplicitInstantiationDeclaration)
4540 continue;
4541 if (TSK == TSK_ImplicitInstantiation && !ClassAttr->isInherited())
4542 continue;
Hans Wennborg334e4ff2014-08-21 01:14:01 +00004543
Hans Wennborg2f9e2932014-08-23 21:10:39 +00004544 S.MarkFunctionReferenced(Class->getLocation(), MD);
4545 } else if (!MD->isTrivial() || MD->isExplicitlyDefaulted() ||
4546 MD->isCopyAssignmentOperator() ||
4547 MD->isMoveAssignmentOperator()) {
4548 // Instantiate non-trivial or explicitly defaulted methods, and the
4549 // copy assignment / move assignment operators.
4550 S.MarkFunctionReferenced(Class->getLocation(), MD);
4551 // Resolve its exception specification; CodeGen needs it.
4552 auto *FPT = MD->getType()->getAs<FunctionProtoType>();
4553 S.ResolveExceptionSpec(Class->getLocation(), FPT);
4554 S.ActOnFinishInlineMethodDef(MD);
Hans Wennborg853ae942014-05-30 16:59:42 +00004555 }
4556 }
4557 }
4558}
4559
Douglas Gregorc99f1552009-12-03 18:33:45 +00004560/// \brief Perform semantic checks on a class definition that has been
4561/// completing, introducing implicitly-declared members, checking for
4562/// abstract types, etc.
Douglas Gregor0be31a22010-07-02 17:43:08 +00004563void Sema::CheckCompletedCXXClass(CXXRecordDecl *Record) {
Douglas Gregor8fb95122010-09-29 00:15:42 +00004564 if (!Record)
Douglas Gregorc99f1552009-12-03 18:33:45 +00004565 return;
4566
John McCall02db245d2010-08-18 09:41:07 +00004567 if (Record->isAbstract() && !Record->isInvalidDecl()) {
4568 AbstractUsageInfo Info(*this, Record);
4569 CheckAbstractClassUsage(Info, Record);
4570 }
Douglas Gregor454a5b62010-04-15 00:00:53 +00004571
4572 // If this is not an aggregate type and has no user-declared constructor,
4573 // complain about any non-static data members of reference or const scalar
4574 // type, since they will never get initializers.
4575 if (!Record->isInvalidDecl() && !Record->isDependentType() &&
Douglas Gregorfbf19a02012-02-09 02:20:38 +00004576 !Record->isAggregate() && !Record->hasUserDeclaredConstructor() &&
4577 !Record->isLambda()) {
Douglas Gregor454a5b62010-04-15 00:00:53 +00004578 bool Complained = false;
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00004579 for (const auto *F : Record->fields()) {
Douglas Gregor556e5862011-10-10 17:22:13 +00004580 if (F->hasInClassInitializer() || F->isUnnamedBitfield())
Richard Smith938f40b2011-06-11 17:19:42 +00004581 continue;
4582
Douglas Gregor454a5b62010-04-15 00:00:53 +00004583 if (F->getType()->isReferenceType() ||
Benjamin Kramer659d7fc2010-04-16 17:43:15 +00004584 (F->getType().isConstQualified() && F->getType()->isScalarType())) {
Douglas Gregor454a5b62010-04-15 00:00:53 +00004585 if (!Complained) {
4586 Diag(Record->getLocation(), diag::warn_no_constructor_for_refconst)
4587 << Record->getTagKind() << Record;
4588 Complained = true;
4589 }
4590
4591 Diag(F->getLocation(), diag::note_refconst_member_not_initialized)
4592 << F->getType()->isReferenceType()
4593 << F->getDeclName();
4594 }
4595 }
4596 }
Douglas Gregor88d292c2010-05-13 16:44:06 +00004597
Anders Carlssone771e762011-01-25 18:08:22 +00004598 if (Record->isDynamicClass() && !Record->isDependentType())
Douglas Gregor88d292c2010-05-13 16:44:06 +00004599 DynamicClasses.push_back(Record);
Douglas Gregor36c22a22010-10-15 13:21:21 +00004600
4601 if (Record->getIdentifier()) {
4602 // C++ [class.mem]p13:
4603 // If T is the name of a class, then each of the following shall have a
4604 // name different from T:
4605 // - every member of every anonymous union that is a member of class T.
4606 //
4607 // C++ [class.mem]p14:
4608 // In addition, if class T has a user-declared constructor (12.1), every
4609 // non-static data member of class T shall have a name different from T.
David Blaikieff7d47a2012-12-19 00:45:41 +00004610 DeclContext::lookup_result R = Record->lookup(Record->getDeclName());
4611 for (DeclContext::lookup_iterator I = R.begin(), E = R.end(); I != E;
4612 ++I) {
4613 NamedDecl *D = *I;
Francois Pichet783dd6e2010-11-21 06:08:52 +00004614 if ((isa<FieldDecl>(D) && Record->hasUserDeclaredConstructor()) ||
4615 isa<IndirectFieldDecl>(D)) {
4616 Diag(D->getLocation(), diag::err_member_name_of_class)
4617 << D->getDeclName();
Douglas Gregor36c22a22010-10-15 13:21:21 +00004618 break;
4619 }
Francois Pichet783dd6e2010-11-21 06:08:52 +00004620 }
Douglas Gregor36c22a22010-10-15 13:21:21 +00004621 }
Argyrios Kyrtzidis7f3986d2011-01-31 07:05:00 +00004622
Argyrios Kyrtzidis33799ca2011-01-31 17:10:25 +00004623 // Warn if the class has virtual methods but non-virtual public destructor.
Douglas Gregor0cf82f62011-02-19 19:14:36 +00004624 if (Record->isPolymorphic() && !Record->isDependentType()) {
Argyrios Kyrtzidis7f3986d2011-01-31 07:05:00 +00004625 CXXDestructorDecl *dtor = Record->getDestructor();
David Blaikie04e2e662014-05-09 22:02:28 +00004626 if ((!dtor || (!dtor->isVirtual() && dtor->getAccess() == AS_public)) &&
4627 !Record->hasAttr<FinalAttr>())
Argyrios Kyrtzidis7f3986d2011-01-31 07:05:00 +00004628 Diag(dtor ? dtor->getLocation() : Record->getLocation(),
4629 diag::warn_non_virtual_dtor) << Context.getRecordType(Record);
4630 }
Argyrios Kyrtzidis7272d9c2011-02-03 18:01:15 +00004631
David Majnemera5433082013-10-18 00:33:31 +00004632 if (Record->isAbstract()) {
4633 if (FinalAttr *FA = Record->getAttr<FinalAttr>()) {
4634 Diag(Record->getLocation(), diag::warn_abstract_final_class)
4635 << FA->isSpelledAsSealed();
4636 DiagnoseAbstractType(Record);
4637 }
David Blaikie348df502012-09-21 03:21:07 +00004638 }
4639
Argyrios Kyrtzidis7272d9c2011-02-03 18:01:15 +00004640 if (!Record->isDependentType()) {
Aaron Ballman2b124d12014-03-13 16:36:16 +00004641 for (auto *M : Record->methods()) {
Richard Smithbd305122012-12-11 01:14:52 +00004642 // See if a method overloads virtual methods in a base
4643 // class without overriding any.
David Blaikie2d7c57e2012-04-30 02:36:29 +00004644 if (!M->isStatic())
Aaron Ballman2b124d12014-03-13 16:36:16 +00004645 DiagnoseHiddenVirtualMethods(M);
Richard Smithbd305122012-12-11 01:14:52 +00004646
4647 // Check whether the explicitly-defaulted special members are valid.
4648 if (!M->isInvalidDecl() && M->isExplicitlyDefaulted())
Aaron Ballman2b124d12014-03-13 16:36:16 +00004649 CheckExplicitlyDefaultedSpecialMember(M);
Richard Smithbd305122012-12-11 01:14:52 +00004650
4651 // For an explicitly defaulted or deleted special member, we defer
4652 // determining triviality until the class is complete. That time is now!
4653 if (!M->isImplicit() && !M->isUserProvided()) {
Aaron Ballman2b124d12014-03-13 16:36:16 +00004654 CXXSpecialMember CSM = getSpecialMember(M);
Richard Smithbd305122012-12-11 01:14:52 +00004655 if (CSM != CXXInvalid) {
Aaron Ballman2b124d12014-03-13 16:36:16 +00004656 M->setTrivial(SpecialMemberIsTrivial(M, CSM));
Richard Smithbd305122012-12-11 01:14:52 +00004657
4658 // Inform the class that we've finished declaring this member.
Aaron Ballman2b124d12014-03-13 16:36:16 +00004659 Record->finishedDefaultedOrDeletedMember(M);
Richard Smithbd305122012-12-11 01:14:52 +00004660 }
4661 }
4662 }
4663 }
4664
4665 // C++11 [dcl.constexpr]p8: A constexpr specifier for a non-static member
4666 // function that is not a constructor declares that member function to be
4667 // const. [...] The class of which that function is a member shall be
4668 // a literal type.
4669 //
4670 // If the class has virtual bases, any constexpr members will already have
4671 // been diagnosed by the checks performed on the member declaration, so
4672 // suppress this (less useful) diagnostic.
4673 //
4674 // We delay this until we know whether an explicitly-defaulted (or deleted)
4675 // destructor for the class is trivial.
Richard Smith2bf7fdb2013-01-02 11:42:31 +00004676 if (LangOpts.CPlusPlus11 && !Record->isDependentType() &&
Richard Smithbd305122012-12-11 01:14:52 +00004677 !Record->isLiteral() && !Record->getNumVBases()) {
Aaron Ballman2b124d12014-03-13 16:36:16 +00004678 for (const auto *M : Record->methods()) {
4679 if (M->isConstexpr() && M->isInstance() && !isa<CXXConstructorDecl>(M)) {
Richard Smithbd305122012-12-11 01:14:52 +00004680 switch (Record->getTemplateSpecializationKind()) {
4681 case TSK_ImplicitInstantiation:
4682 case TSK_ExplicitInstantiationDeclaration:
4683 case TSK_ExplicitInstantiationDefinition:
4684 // If a template instantiates to a non-literal type, but its members
4685 // instantiate to constexpr functions, the template is technically
4686 // ill-formed, but we allow it for sanity.
4687 continue;
4688
4689 case TSK_Undeclared:
4690 case TSK_ExplicitSpecialization:
4691 RequireLiteralType(M->getLocation(), Context.getRecordType(Record),
4692 diag::err_constexpr_method_non_literal);
4693 break;
4694 }
4695
4696 // Only produce one error per class.
4697 break;
4698 }
Argyrios Kyrtzidis7272d9c2011-02-03 18:01:15 +00004699 }
4700 }
Sebastian Redl08905022011-02-05 19:23:19 +00004701
John McCall95833f32014-02-27 20:30:49 +00004702 // ms_struct is a request to use the same ABI rules as MSVC. Check
4703 // whether this class uses any C++ features that are implemented
4704 // completely differently in MSVC, and if so, emit a diagnostic.
4705 // That diagnostic defaults to an error, but we allow projects to
4706 // map it down to a warning (or ignore it). It's a fairly common
4707 // practice among users of the ms_struct pragma to mass-annotate
4708 // headers, sweeping up a bunch of types that the project doesn't
4709 // really rely on MSVC-compatible layout for. We must therefore
4710 // support "ms_struct except for C++ stuff" as a secondary ABI.
4711 if (Record->isMsStruct(Context) &&
4712 (Record->isPolymorphic() || Record->getNumBases())) {
4713 Diag(Record->getLocation(), diag::warn_cxx_ms_struct);
Warren Hunt8f8bad72013-10-11 20:19:00 +00004714 }
4715
Richard Smithc2bc61b2013-03-18 21:12:30 +00004716 // Declare inheriting constructors. We do this eagerly here because:
4717 // - The standard requires an eager diagnostic for conflicting inheriting
Sebastian Redl08905022011-02-05 19:23:19 +00004718 // constructors from different classes.
4719 // - The lazy declaration of the other implicit constructors is so as to not
4720 // waste space and performance on classes that are not meant to be
4721 // instantiated (e.g. meta-functions). This doesn't apply to classes that
Richard Smithc2bc61b2013-03-18 21:12:30 +00004722 // have inheriting constructors.
4723 DeclareInheritingConstructors(Record);
Hans Wennborg853ae942014-05-30 16:59:42 +00004724
4725 checkDLLAttribute(*this, Record);
Alexis Hunt6d5b96c2011-05-10 00:49:42 +00004726}
4727
Richard Smith41c35d62013-11-27 03:39:20 +00004728/// Look up the special member function that would be called by a special
4729/// member function for a subobject of class type.
4730///
4731/// \param Class The class type of the subobject.
4732/// \param CSM The kind of special member function.
4733/// \param FieldQuals If the subobject is a field, its cv-qualifiers.
4734/// \param ConstRHS True if this is a copy operation with a const object
4735/// on its RHS, that is, if the argument to the outer special member
4736/// function is 'const' and this is not a field marked 'mutable'.
4737static Sema::SpecialMemberOverloadResult *lookupCallFromSpecialMember(
4738 Sema &S, CXXRecordDecl *Class, Sema::CXXSpecialMember CSM,
4739 unsigned FieldQuals, bool ConstRHS) {
4740 unsigned LHSQuals = 0;
4741 if (CSM == Sema::CXXCopyAssignment || CSM == Sema::CXXMoveAssignment)
4742 LHSQuals = FieldQuals;
4743
4744 unsigned RHSQuals = FieldQuals;
4745 if (CSM == Sema::CXXDefaultConstructor || CSM == Sema::CXXDestructor)
4746 RHSQuals = 0;
4747 else if (ConstRHS)
4748 RHSQuals |= Qualifiers::Const;
4749
4750 return S.LookupSpecialMember(Class, CSM,
4751 RHSQuals & Qualifiers::Const,
4752 RHSQuals & Qualifiers::Volatile,
4753 false,
4754 LHSQuals & Qualifiers::Const,
4755 LHSQuals & Qualifiers::Volatile);
4756}
4757
Richard Smithb5800092012-06-10 05:43:50 +00004758/// Is the special member function which would be selected to perform the
4759/// specified operation on the specified class type a constexpr constructor?
4760static bool specialMemberIsConstexpr(Sema &S, CXXRecordDecl *ClassDecl,
4761 Sema::CXXSpecialMember CSM,
Richard Smith41c35d62013-11-27 03:39:20 +00004762 unsigned Quals, bool ConstRHS) {
Richard Smithb5800092012-06-10 05:43:50 +00004763 Sema::SpecialMemberOverloadResult *SMOR =
Richard Smith41c35d62013-11-27 03:39:20 +00004764 lookupCallFromSpecialMember(S, ClassDecl, CSM, Quals, ConstRHS);
Richard Smithb5800092012-06-10 05:43:50 +00004765 if (!SMOR || !SMOR->getMethod())
4766 // A constructor we wouldn't select can't be "involved in initializing"
4767 // anything.
4768 return true;
4769 return SMOR->getMethod()->isConstexpr();
4770}
4771
4772/// Determine whether the specified special member function would be constexpr
4773/// if it were implicitly defined.
4774static bool defaultedSpecialMemberIsConstexpr(Sema &S, CXXRecordDecl *ClassDecl,
4775 Sema::CXXSpecialMember CSM,
4776 bool ConstArg) {
Richard Smith2bf7fdb2013-01-02 11:42:31 +00004777 if (!S.getLangOpts().CPlusPlus11)
Richard Smithb5800092012-06-10 05:43:50 +00004778 return false;
4779
4780 // C++11 [dcl.constexpr]p4:
4781 // In the definition of a constexpr constructor [...]
Richard Smith99005e62013-05-07 03:19:20 +00004782 bool Ctor = true;
Richard Smithb5800092012-06-10 05:43:50 +00004783 switch (CSM) {
4784 case Sema::CXXDefaultConstructor:
Richard Smith4086a132012-06-10 07:07:24 +00004785 // Since default constructor lookup is essentially trivial (and cannot
4786 // involve, for instance, template instantiation), we compute whether a
4787 // defaulted default constructor is constexpr directly within CXXRecordDecl.
4788 //
4789 // This is important for performance; we need to know whether the default
4790 // constructor is constexpr to determine whether the type is a literal type.
4791 return ClassDecl->defaultedDefaultConstructorIsConstexpr();
4792
Richard Smithb5800092012-06-10 05:43:50 +00004793 case Sema::CXXCopyConstructor:
4794 case Sema::CXXMoveConstructor:
Richard Smith4086a132012-06-10 07:07:24 +00004795 // For copy or move constructors, we need to perform overload resolution.
Richard Smithb5800092012-06-10 05:43:50 +00004796 break;
4797
4798 case Sema::CXXCopyAssignment:
4799 case Sema::CXXMoveAssignment:
Aaron Ballmandd69ef32014-08-19 15:55:55 +00004800 if (!S.getLangOpts().CPlusPlus14)
Richard Smith99005e62013-05-07 03:19:20 +00004801 return false;
4802 // In C++1y, we need to perform overload resolution.
4803 Ctor = false;
4804 break;
4805
Richard Smithb5800092012-06-10 05:43:50 +00004806 case Sema::CXXDestructor:
4807 case Sema::CXXInvalid:
4808 return false;
4809 }
4810
4811 // -- if the class is a non-empty union, or for each non-empty anonymous
4812 // union member of a non-union class, exactly one non-static data member
4813 // shall be initialized; [DR1359]
Richard Smith4086a132012-06-10 07:07:24 +00004814 //
4815 // If we squint, this is guaranteed, since exactly one non-static data member
4816 // will be initialized (if the constructor isn't deleted), we just don't know
4817 // which one.
Richard Smith99005e62013-05-07 03:19:20 +00004818 if (Ctor && ClassDecl->isUnion())
Richard Smith4086a132012-06-10 07:07:24 +00004819 return true;
Richard Smithb5800092012-06-10 05:43:50 +00004820
4821 // -- the class shall not have any virtual base classes;
Richard Smith99005e62013-05-07 03:19:20 +00004822 if (Ctor && ClassDecl->getNumVBases())
4823 return false;
4824
4825 // C++1y [class.copy]p26:
4826 // -- [the class] is a literal type, and
4827 if (!Ctor && !ClassDecl->isLiteral())
Richard Smithb5800092012-06-10 05:43:50 +00004828 return false;
4829
4830 // -- every constructor involved in initializing [...] base class
4831 // sub-objects shall be a constexpr constructor;
Richard Smith99005e62013-05-07 03:19:20 +00004832 // -- the assignment operator selected to copy/move each direct base
4833 // class is a constexpr function, and
Aaron Ballman574705e2014-03-13 15:41:46 +00004834 for (const auto &B : ClassDecl->bases()) {
4835 const RecordType *BaseType = B.getType()->getAs<RecordType>();
Richard Smithb5800092012-06-10 05:43:50 +00004836 if (!BaseType) continue;
4837
4838 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Richard Smith41c35d62013-11-27 03:39:20 +00004839 if (!specialMemberIsConstexpr(S, BaseClassDecl, CSM, 0, ConstArg))
Richard Smithb5800092012-06-10 05:43:50 +00004840 return false;
4841 }
4842
4843 // -- every constructor involved in initializing non-static data members
4844 // [...] shall be a constexpr constructor;
4845 // -- every non-static data member and base class sub-object shall be
4846 // initialized
Richard Smith41c35d62013-11-27 03:39:20 +00004847 // -- for each non-static data member of X that is of class type (or array
Richard Smith99005e62013-05-07 03:19:20 +00004848 // thereof), the assignment operator selected to copy/move that member is
4849 // a constexpr function
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00004850 for (const auto *F : ClassDecl->fields()) {
Richard Smithb5800092012-06-10 05:43:50 +00004851 if (F->isInvalidDecl())
4852 continue;
Richard Smith41c35d62013-11-27 03:39:20 +00004853 QualType BaseType = S.Context.getBaseElementType(F->getType());
4854 if (const RecordType *RecordTy = BaseType->getAs<RecordType>()) {
Richard Smithb5800092012-06-10 05:43:50 +00004855 CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
Richard Smith41c35d62013-11-27 03:39:20 +00004856 if (!specialMemberIsConstexpr(S, FieldRecDecl, CSM,
4857 BaseType.getCVRQualifiers(),
4858 ConstArg && !F->isMutable()))
Richard Smithb5800092012-06-10 05:43:50 +00004859 return false;
Richard Smithb5800092012-06-10 05:43:50 +00004860 }
4861 }
4862
4863 // All OK, it's constexpr!
4864 return true;
4865}
4866
Richard Smithd3b5c9082012-07-27 04:22:15 +00004867static Sema::ImplicitExceptionSpecification
4868computeImplicitExceptionSpec(Sema &S, SourceLocation Loc, CXXMethodDecl *MD) {
4869 switch (S.getSpecialMember(MD)) {
4870 case Sema::CXXDefaultConstructor:
4871 return S.ComputeDefaultedDefaultCtorExceptionSpec(Loc, MD);
4872 case Sema::CXXCopyConstructor:
4873 return S.ComputeDefaultedCopyCtorExceptionSpec(MD);
4874 case Sema::CXXCopyAssignment:
4875 return S.ComputeDefaultedCopyAssignmentExceptionSpec(MD);
4876 case Sema::CXXMoveConstructor:
4877 return S.ComputeDefaultedMoveCtorExceptionSpec(MD);
4878 case Sema::CXXMoveAssignment:
4879 return S.ComputeDefaultedMoveAssignmentExceptionSpec(MD);
4880 case Sema::CXXDestructor:
4881 return S.ComputeDefaultedDtorExceptionSpec(MD);
4882 case Sema::CXXInvalid:
4883 break;
4884 }
Richard Smithc2bc61b2013-03-18 21:12:30 +00004885 assert(cast<CXXConstructorDecl>(MD)->getInheritedConstructor() &&
4886 "only special members have implicit exception specs");
4887 return S.ComputeInheritingCtorExceptionSpec(cast<CXXConstructorDecl>(MD));
Richard Smithd3b5c9082012-07-27 04:22:15 +00004888}
4889
Reid Kleckner78af0702013-08-27 23:08:25 +00004890static FunctionProtoType::ExtProtoInfo getImplicitMethodEPI(Sema &S,
4891 CXXMethodDecl *MD) {
4892 FunctionProtoType::ExtProtoInfo EPI;
4893
4894 // Build an exception specification pointing back at this member.
Richard Smith8acb4282014-07-31 21:57:55 +00004895 EPI.ExceptionSpec.Type = EST_Unevaluated;
4896 EPI.ExceptionSpec.SourceDecl = MD;
Reid Kleckner78af0702013-08-27 23:08:25 +00004897
4898 // Set the calling convention to the default for C++ instance methods.
4899 EPI.ExtInfo = EPI.ExtInfo.withCallingConv(
4900 S.Context.getDefaultCallingConvention(/*IsVariadic=*/false,
4901 /*IsCXXMethod=*/true));
4902 return EPI;
4903}
4904
Richard Smithd3b5c9082012-07-27 04:22:15 +00004905void Sema::EvaluateImplicitExceptionSpec(SourceLocation Loc, CXXMethodDecl *MD) {
4906 const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>();
4907 if (FPT->getExceptionSpecType() != EST_Unevaluated)
4908 return;
4909
Richard Smith7f782272012-07-30 23:48:14 +00004910 // Evaluate the exception specification.
Richard Smith8acb4282014-07-31 21:57:55 +00004911 auto ESI = computeImplicitExceptionSpec(*this, Loc, MD).getExceptionSpec();
Richard Smith564417a2014-03-20 21:47:22 +00004912
Richard Smith7f782272012-07-30 23:48:14 +00004913 // Update the type of the special member to use it.
Richard Smith8acb4282014-07-31 21:57:55 +00004914 UpdateExceptionSpec(MD, ESI);
Richard Smith7f782272012-07-30 23:48:14 +00004915
4916 // A user-provided destructor can be defined outside the class. When that
4917 // happens, be sure to update the exception specification on both
4918 // declarations.
4919 const FunctionProtoType *CanonicalFPT =
4920 MD->getCanonicalDecl()->getType()->castAs<FunctionProtoType>();
4921 if (CanonicalFPT->getExceptionSpecType() == EST_Unevaluated)
Richard Smith8acb4282014-07-31 21:57:55 +00004922 UpdateExceptionSpec(MD->getCanonicalDecl(), ESI);
Richard Smithd3b5c9082012-07-27 04:22:15 +00004923}
4924
Richard Smithb9e90b12012-05-15 04:39:51 +00004925void Sema::CheckExplicitlyDefaultedSpecialMember(CXXMethodDecl *MD) {
4926 CXXRecordDecl *RD = MD->getParent();
4927 CXXSpecialMember CSM = getSpecialMember(MD);
Alexis Hunt6d5b96c2011-05-10 00:49:42 +00004928
Richard Smithb9e90b12012-05-15 04:39:51 +00004929 assert(MD->isExplicitlyDefaulted() && CSM != CXXInvalid &&
4930 "not an explicitly-defaulted special member");
Alexis Hunt913820d2011-05-13 06:10:58 +00004931
4932 // Whether this was the first-declared instance of the constructor.
Richard Smithb9e90b12012-05-15 04:39:51 +00004933 // This affects whether we implicitly add an exception spec and constexpr.
Alexis Huntc9a55732011-05-14 05:23:28 +00004934 bool First = MD == MD->getCanonicalDecl();
4935
4936 bool HadError = false;
Richard Smithb9e90b12012-05-15 04:39:51 +00004937
4938 // C++11 [dcl.fct.def.default]p1:
4939 // A function that is explicitly defaulted shall
4940 // -- be a special member function (checked elsewhere),
4941 // -- have the same type (except for ref-qualifiers, and except that a
4942 // copy operation can take a non-const reference) as an implicit
4943 // declaration, and
4944 // -- not have default arguments.
4945 unsigned ExpectedParams = 1;
4946 if (CSM == CXXDefaultConstructor || CSM == CXXDestructor)
4947 ExpectedParams = 0;
4948 if (MD->getNumParams() != ExpectedParams) {
4949 // This also checks for default arguments: a copy or move constructor with a
4950 // default argument is classified as a default constructor, and assignment
4951 // operations and destructors can't have default arguments.
4952 Diag(MD->getLocation(), diag::err_defaulted_special_member_params)
4953 << CSM << MD->getSourceRange();
Alexis Huntc9a55732011-05-14 05:23:28 +00004954 HadError = true;
Richard Smith50d705b2012-12-07 02:10:28 +00004955 } else if (MD->isVariadic()) {
4956 Diag(MD->getLocation(), diag::err_defaulted_special_member_variadic)
4957 << CSM << MD->getSourceRange();
4958 HadError = true;
Alexis Huntc9a55732011-05-14 05:23:28 +00004959 }
4960
Richard Smithb9e90b12012-05-15 04:39:51 +00004961 const FunctionProtoType *Type = MD->getType()->getAs<FunctionProtoType>();
Alexis Huntc9a55732011-05-14 05:23:28 +00004962
Richard Smithb5800092012-06-10 05:43:50 +00004963 bool CanHaveConstParam = false;
Richard Smith92f241f2012-12-08 02:53:02 +00004964 if (CSM == CXXCopyConstructor)
Richard Smith1c33fe82012-11-28 06:23:12 +00004965 CanHaveConstParam = RD->implicitCopyConstructorHasConstParam();
Richard Smith92f241f2012-12-08 02:53:02 +00004966 else if (CSM == CXXCopyAssignment)
Richard Smith1c33fe82012-11-28 06:23:12 +00004967 CanHaveConstParam = RD->implicitCopyAssignmentHasConstParam();
Alexis Huntc9a55732011-05-14 05:23:28 +00004968
Richard Smithb9e90b12012-05-15 04:39:51 +00004969 QualType ReturnType = Context.VoidTy;
4970 if (CSM == CXXCopyAssignment || CSM == CXXMoveAssignment) {
4971 // Check for return type matching.
Alp Toker314cc812014-01-25 16:55:45 +00004972 ReturnType = Type->getReturnType();
Richard Smithb9e90b12012-05-15 04:39:51 +00004973 QualType ExpectedReturnType =
4974 Context.getLValueReferenceType(Context.getTypeDeclType(RD));
4975 if (!Context.hasSameType(ReturnType, ExpectedReturnType)) {
4976 Diag(MD->getLocation(), diag::err_defaulted_special_member_return_type)
4977 << (CSM == CXXMoveAssignment) << ExpectedReturnType;
4978 HadError = true;
4979 }
4980
4981 // A defaulted special member cannot have cv-qualifiers.
4982 if (Type->getTypeQuals()) {
4983 Diag(MD->getLocation(), diag::err_defaulted_special_member_quals)
Aaron Ballmandd69ef32014-08-19 15:55:55 +00004984 << (CSM == CXXMoveAssignment) << getLangOpts().CPlusPlus14;
Richard Smithb9e90b12012-05-15 04:39:51 +00004985 HadError = true;
4986 }
4987 }
4988
4989 // Check for parameter type matching.
Alp Toker9cacbab2014-01-20 20:26:09 +00004990 QualType ArgType = ExpectedParams ? Type->getParamType(0) : QualType();
Richard Smithb5800092012-06-10 05:43:50 +00004991 bool HasConstParam = false;
Richard Smithb9e90b12012-05-15 04:39:51 +00004992 if (ExpectedParams && ArgType->isReferenceType()) {
4993 // Argument must be reference to possibly-const T.
4994 QualType ReferentType = ArgType->getPointeeType();
Richard Smithb5800092012-06-10 05:43:50 +00004995 HasConstParam = ReferentType.isConstQualified();
Richard Smithb9e90b12012-05-15 04:39:51 +00004996
4997 if (ReferentType.isVolatileQualified()) {
4998 Diag(MD->getLocation(),
4999 diag::err_defaulted_special_member_volatile_param) << CSM;
5000 HadError = true;
5001 }
5002
Richard Smithb5800092012-06-10 05:43:50 +00005003 if (HasConstParam && !CanHaveConstParam) {
Richard Smithb9e90b12012-05-15 04:39:51 +00005004 if (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment) {
5005 Diag(MD->getLocation(),
5006 diag::err_defaulted_special_member_copy_const_param)
5007 << (CSM == CXXCopyAssignment);
5008 // FIXME: Explain why this special member can't be const.
5009 } else {
5010 Diag(MD->getLocation(),
5011 diag::err_defaulted_special_member_move_const_param)
5012 << (CSM == CXXMoveAssignment);
5013 }
5014 HadError = true;
5015 }
Richard Smithb9e90b12012-05-15 04:39:51 +00005016 } else if (ExpectedParams) {
5017 // A copy assignment operator can take its argument by value, but a
5018 // defaulted one cannot.
5019 assert(CSM == CXXCopyAssignment && "unexpected non-ref argument");
Alexis Hunt604aeb32011-05-17 20:44:43 +00005020 Diag(MD->getLocation(), diag::err_defaulted_copy_assign_not_ref);
Alexis Huntc9a55732011-05-14 05:23:28 +00005021 HadError = true;
5022 }
Alexis Hunt604aeb32011-05-17 20:44:43 +00005023
Richard Smithcc36f692011-12-22 02:22:31 +00005024 // C++11 [dcl.fct.def.default]p2:
5025 // An explicitly-defaulted function may be declared constexpr only if it
5026 // would have been implicitly declared as constexpr,
Richard Smithb9e90b12012-05-15 04:39:51 +00005027 // Do not apply this rule to members of class templates, since core issue 1358
5028 // makes such functions always instantiate to constexpr functions. For
Richard Smith99005e62013-05-07 03:19:20 +00005029 // functions which cannot be constexpr (for non-constructors in C++11 and for
5030 // destructors in C++1y), this is checked elsewhere.
Richard Smithb5800092012-06-10 05:43:50 +00005031 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, RD, CSM,
5032 HasConstParam);
Aaron Ballmandd69ef32014-08-19 15:55:55 +00005033 if ((getLangOpts().CPlusPlus14 ? !isa<CXXDestructorDecl>(MD)
Richard Smith99005e62013-05-07 03:19:20 +00005034 : isa<CXXConstructorDecl>(MD)) &&
5035 MD->isConstexpr() && !Constexpr &&
Richard Smithb9e90b12012-05-15 04:39:51 +00005036 MD->getTemplatedKind() == FunctionDecl::TK_NonTemplate) {
5037 Diag(MD->getLocStart(), diag::err_incorrect_defaulted_constexpr) << CSM;
Richard Smith99005e62013-05-07 03:19:20 +00005038 // FIXME: Explain why the special member can't be constexpr.
Richard Smithb9e90b12012-05-15 04:39:51 +00005039 HadError = true;
Richard Smithcc36f692011-12-22 02:22:31 +00005040 }
Richard Smithbd305122012-12-11 01:14:52 +00005041
Richard Smithcc36f692011-12-22 02:22:31 +00005042 // and may have an explicit exception-specification only if it is compatible
5043 // with the exception-specification on the implicit declaration.
Richard Smithbd305122012-12-11 01:14:52 +00005044 if (Type->hasExceptionSpec()) {
5045 // Delay the check if this is the first declaration of the special member,
5046 // since we may not have parsed some necessary in-class initializers yet.
Richard Smith3901dfe2013-03-27 00:22:47 +00005047 if (First) {
5048 // If the exception specification needs to be instantiated, do so now,
5049 // before we clobber it with an EST_Unevaluated specification below.
5050 if (Type->getExceptionSpecType() == EST_Uninstantiated) {
5051 InstantiateExceptionSpec(MD->getLocStart(), MD);
5052 Type = MD->getType()->getAs<FunctionProtoType>();
5053 }
Richard Smithbd305122012-12-11 01:14:52 +00005054 DelayedDefaultedMemberExceptionSpecs.push_back(std::make_pair(MD, Type));
Richard Smith3901dfe2013-03-27 00:22:47 +00005055 } else
Richard Smithbd305122012-12-11 01:14:52 +00005056 CheckExplicitlyDefaultedMemberExceptionSpec(MD, Type);
5057 }
Richard Smithcc36f692011-12-22 02:22:31 +00005058
5059 // If a function is explicitly defaulted on its first declaration,
5060 if (First) {
5061 // -- it is implicitly considered to be constexpr if the implicit
5062 // definition would be,
Richard Smithb9e90b12012-05-15 04:39:51 +00005063 MD->setConstexpr(Constexpr);
Richard Smithcc36f692011-12-22 02:22:31 +00005064
Richard Smithb9e90b12012-05-15 04:39:51 +00005065 // -- it is implicitly considered to have the same exception-specification
5066 // as if it had been implicitly declared,
Richard Smithbd305122012-12-11 01:14:52 +00005067 FunctionProtoType::ExtProtoInfo EPI = Type->getExtProtoInfo();
Richard Smith8acb4282014-07-31 21:57:55 +00005068 EPI.ExceptionSpec.Type = EST_Unevaluated;
5069 EPI.ExceptionSpec.SourceDecl = MD;
Jordan Rose5c382722013-03-08 21:51:21 +00005070 MD->setType(Context.getFunctionType(ReturnType,
Craig Topper5fc8fc22014-08-27 06:28:36 +00005071 llvm::makeArrayRef(&ArgType,
Jordan Rose5c382722013-03-08 21:51:21 +00005072 ExpectedParams),
5073 EPI));
Sebastian Redl22653ba2011-08-30 19:58:05 +00005074 }
5075
Richard Smithb9e90b12012-05-15 04:39:51 +00005076 if (ShouldDeleteSpecialMember(MD, CSM)) {
Sebastian Redl22653ba2011-08-30 19:58:05 +00005077 if (First) {
Richard Smithb4d2a152013-04-02 19:38:47 +00005078 SetDeclDeleted(MD, MD->getLocation());
Sebastian Redl22653ba2011-08-30 19:58:05 +00005079 } else {
Richard Smithb9e90b12012-05-15 04:39:51 +00005080 // C++11 [dcl.fct.def.default]p4:
5081 // [For a] user-provided explicitly-defaulted function [...] if such a
5082 // function is implicitly defined as deleted, the program is ill-formed.
5083 Diag(MD->getLocation(), diag::err_out_of_line_default_deletes) << CSM;
Richard Smith566184a2014-01-22 20:09:10 +00005084 ShouldDeleteSpecialMember(MD, CSM, /*Diagnose*/true);
Richard Smithb9e90b12012-05-15 04:39:51 +00005085 HadError = true;
Sebastian Redl22653ba2011-08-30 19:58:05 +00005086 }
5087 }
Sebastian Redl22653ba2011-08-30 19:58:05 +00005088
Richard Smithb9e90b12012-05-15 04:39:51 +00005089 if (HadError)
5090 MD->setInvalidDecl();
Alexis Huntf91729462011-05-12 22:46:25 +00005091}
5092
Richard Smithbd305122012-12-11 01:14:52 +00005093/// Check whether the exception specification provided for an
5094/// explicitly-defaulted special member matches the exception specification
5095/// that would have been generated for an implicit special member, per
5096/// C++11 [dcl.fct.def.default]p2.
5097void Sema::CheckExplicitlyDefaultedMemberExceptionSpec(
5098 CXXMethodDecl *MD, const FunctionProtoType *SpecifiedType) {
5099 // Compute the implicit exception specification.
Reid Kleckner78af0702013-08-27 23:08:25 +00005100 CallingConv CC = Context.getDefaultCallingConvention(/*IsVariadic=*/false,
5101 /*IsCXXMethod=*/true);
5102 FunctionProtoType::ExtProtoInfo EPI(CC);
Richard Smith8acb4282014-07-31 21:57:55 +00005103 EPI.ExceptionSpec = computeImplicitExceptionSpec(*this, MD->getLocation(), MD)
5104 .getExceptionSpec();
Richard Smithbd305122012-12-11 01:14:52 +00005105 const FunctionProtoType *ImplicitType = cast<FunctionProtoType>(
Dmitri Gribenko44ebbd52013-05-05 00:41:58 +00005106 Context.getFunctionType(Context.VoidTy, None, EPI));
Richard Smithbd305122012-12-11 01:14:52 +00005107
5108 // Ensure that it matches.
5109 CheckEquivalentExceptionSpec(
5110 PDiag(diag::err_incorrect_defaulted_exception_spec)
5111 << getSpecialMember(MD), PDiag(),
5112 ImplicitType, SourceLocation(),
5113 SpecifiedType, MD->getLocation());
5114}
5115
Alp Tokerae3a9442013-10-18 05:54:19 +00005116void Sema::CheckDelayedMemberExceptionSpecs() {
5117 SmallVector<std::pair<const CXXDestructorDecl *, const CXXDestructorDecl *>,
5118 2> Checks;
5119 SmallVector<std::pair<CXXMethodDecl *, const FunctionProtoType *>, 2> Specs;
Richard Smithbd305122012-12-11 01:14:52 +00005120
Alp Tokerae3a9442013-10-18 05:54:19 +00005121 std::swap(Checks, DelayedDestructorExceptionSpecChecks);
5122 std::swap(Specs, DelayedDefaultedMemberExceptionSpecs);
5123
5124 // Perform any deferred checking of exception specifications for virtual
5125 // destructors.
5126 for (unsigned i = 0, e = Checks.size(); i != e; ++i) {
5127 const CXXDestructorDecl *Dtor = Checks[i].first;
5128 assert(!Dtor->getParent()->isDependentType() &&
5129 "Should not ever add destructors of templates into the list.");
5130 CheckOverridingFunctionExceptionSpec(Dtor, Checks[i].second);
5131 }
5132
5133 // Check that any explicitly-defaulted methods have exception specifications
5134 // compatible with their implicit exception specifications.
5135 for (unsigned I = 0, N = Specs.size(); I != N; ++I)
5136 CheckExplicitlyDefaultedMemberExceptionSpec(Specs[I].first,
5137 Specs[I].second);
Richard Smithbd305122012-12-11 01:14:52 +00005138}
5139
Richard Smithd951a1d2012-02-18 02:02:13 +00005140namespace {
5141struct SpecialMemberDeletionInfo {
5142 Sema &S;
5143 CXXMethodDecl *MD;
5144 Sema::CXXSpecialMember CSM;
Richard Smith852265f2012-03-30 20:53:28 +00005145 bool Diagnose;
Richard Smithd951a1d2012-02-18 02:02:13 +00005146
5147 // Properties of the special member, computed for convenience.
Richard Smith41c35d62013-11-27 03:39:20 +00005148 bool IsConstructor, IsAssignment, IsMove, ConstArg;
Richard Smithd951a1d2012-02-18 02:02:13 +00005149 SourceLocation Loc;
5150
5151 bool AllFieldsAreConst;
5152
5153 SpecialMemberDeletionInfo(Sema &S, CXXMethodDecl *MD,
Richard Smith852265f2012-03-30 20:53:28 +00005154 Sema::CXXSpecialMember CSM, bool Diagnose)
5155 : S(S), MD(MD), CSM(CSM), Diagnose(Diagnose),
Richard Smithd951a1d2012-02-18 02:02:13 +00005156 IsConstructor(false), IsAssignment(false), IsMove(false),
Richard Smith41c35d62013-11-27 03:39:20 +00005157 ConstArg(false), Loc(MD->getLocation()),
Richard Smithd951a1d2012-02-18 02:02:13 +00005158 AllFieldsAreConst(true) {
5159 switch (CSM) {
5160 case Sema::CXXDefaultConstructor:
5161 case Sema::CXXCopyConstructor:
5162 IsConstructor = true;
5163 break;
5164 case Sema::CXXMoveConstructor:
5165 IsConstructor = true;
5166 IsMove = true;
5167 break;
5168 case Sema::CXXCopyAssignment:
5169 IsAssignment = true;
5170 break;
5171 case Sema::CXXMoveAssignment:
5172 IsAssignment = true;
5173 IsMove = true;
5174 break;
5175 case Sema::CXXDestructor:
5176 break;
5177 case Sema::CXXInvalid:
5178 llvm_unreachable("invalid special member kind");
5179 }
5180
5181 if (MD->getNumParams()) {
Richard Smith41c35d62013-11-27 03:39:20 +00005182 if (const ReferenceType *RT =
5183 MD->getParamDecl(0)->getType()->getAs<ReferenceType>())
5184 ConstArg = RT->getPointeeType().isConstQualified();
Richard Smithd951a1d2012-02-18 02:02:13 +00005185 }
5186 }
5187
5188 bool inUnion() const { return MD->getParent()->isUnion(); }
5189
5190 /// Look up the corresponding special member in the given class.
Richard Smithaf136f82012-07-18 03:51:16 +00005191 Sema::SpecialMemberOverloadResult *lookupIn(CXXRecordDecl *Class,
Richard Smith41c35d62013-11-27 03:39:20 +00005192 unsigned Quals, bool IsMutable) {
5193 return lookupCallFromSpecialMember(S, Class, CSM, Quals,
5194 ConstArg && !IsMutable);
Richard Smithd951a1d2012-02-18 02:02:13 +00005195 }
5196
Richard Smith852265f2012-03-30 20:53:28 +00005197 typedef llvm::PointerUnion<CXXBaseSpecifier*, FieldDecl*> Subobject;
Richard Smith921bd202012-02-26 09:11:52 +00005198
Richard Smith852265f2012-03-30 20:53:28 +00005199 bool shouldDeleteForBase(CXXBaseSpecifier *Base);
Richard Smithd951a1d2012-02-18 02:02:13 +00005200 bool shouldDeleteForField(FieldDecl *FD);
5201 bool shouldDeleteForAllConstMembers();
Richard Smith852265f2012-03-30 20:53:28 +00005202
Richard Smithaf136f82012-07-18 03:51:16 +00005203 bool shouldDeleteForClassSubobject(CXXRecordDecl *Class, Subobject Subobj,
5204 unsigned Quals);
Richard Smith852265f2012-03-30 20:53:28 +00005205 bool shouldDeleteForSubobjectCall(Subobject Subobj,
5206 Sema::SpecialMemberOverloadResult *SMOR,
5207 bool IsDtorCallInCtor);
John McCalld4274212012-04-09 20:53:23 +00005208
5209 bool isAccessible(Subobject Subobj, CXXMethodDecl *D);
Richard Smithd951a1d2012-02-18 02:02:13 +00005210};
5211}
5212
John McCalld4274212012-04-09 20:53:23 +00005213/// Is the given special member inaccessible when used on the given
5214/// sub-object.
5215bool SpecialMemberDeletionInfo::isAccessible(Subobject Subobj,
5216 CXXMethodDecl *target) {
5217 /// If we're operating on a base class, the object type is the
5218 /// type of this special member.
5219 QualType objectTy;
Dmitri Gribenko76bb5cabfa2012-09-10 21:20:09 +00005220 AccessSpecifier access = target->getAccess();
John McCalld4274212012-04-09 20:53:23 +00005221 if (CXXBaseSpecifier *base = Subobj.dyn_cast<CXXBaseSpecifier*>()) {
5222 objectTy = S.Context.getTypeDeclType(MD->getParent());
5223 access = CXXRecordDecl::MergeAccess(base->getAccessSpecifier(), access);
5224
5225 // If we're operating on a field, the object type is the type of the field.
5226 } else {
5227 objectTy = S.Context.getTypeDeclType(target->getParent());
5228 }
5229
5230 return S.isSpecialMemberAccessibleForDeletion(target, access, objectTy);
5231}
5232
Richard Smith852265f2012-03-30 20:53:28 +00005233/// Check whether we should delete a special member due to the implicit
5234/// definition containing a call to a special member of a subobject.
5235bool SpecialMemberDeletionInfo::shouldDeleteForSubobjectCall(
5236 Subobject Subobj, Sema::SpecialMemberOverloadResult *SMOR,
5237 bool IsDtorCallInCtor) {
5238 CXXMethodDecl *Decl = SMOR->getMethod();
5239 FieldDecl *Field = Subobj.dyn_cast<FieldDecl*>();
5240
5241 int DiagKind = -1;
5242
5243 if (SMOR->getKind() == Sema::SpecialMemberOverloadResult::NoMemberOrDeleted)
5244 DiagKind = !Decl ? 0 : 1;
5245 else if (SMOR->getKind() == Sema::SpecialMemberOverloadResult::Ambiguous)
5246 DiagKind = 2;
John McCalld4274212012-04-09 20:53:23 +00005247 else if (!isAccessible(Subobj, Decl))
Richard Smith852265f2012-03-30 20:53:28 +00005248 DiagKind = 3;
5249 else if (!IsDtorCallInCtor && Field && Field->getParent()->isUnion() &&
5250 !Decl->isTrivial()) {
5251 // A member of a union must have a trivial corresponding special member.
5252 // As a weird special case, a destructor call from a union's constructor
5253 // must be accessible and non-deleted, but need not be trivial. Such a
5254 // destructor is never actually called, but is semantically checked as
5255 // if it were.
5256 DiagKind = 4;
5257 }
5258
5259 if (DiagKind == -1)
5260 return false;
5261
5262 if (Diagnose) {
5263 if (Field) {
5264 S.Diag(Field->getLocation(),
5265 diag::note_deleted_special_member_class_subobject)
5266 << CSM << MD->getParent() << /*IsField*/true
5267 << Field << DiagKind << IsDtorCallInCtor;
5268 } else {
5269 CXXBaseSpecifier *Base = Subobj.get<CXXBaseSpecifier*>();
5270 S.Diag(Base->getLocStart(),
5271 diag::note_deleted_special_member_class_subobject)
5272 << CSM << MD->getParent() << /*IsField*/false
5273 << Base->getType() << DiagKind << IsDtorCallInCtor;
5274 }
5275
5276 if (DiagKind == 1)
5277 S.NoteDeletedFunction(Decl);
5278 // FIXME: Explain inaccessibility if DiagKind == 3.
5279 }
5280
5281 return true;
5282}
5283
Richard Smith921bd202012-02-26 09:11:52 +00005284/// Check whether we should delete a special member function due to having a
Richard Smithaf136f82012-07-18 03:51:16 +00005285/// direct or virtual base class or non-static data member of class type M.
Richard Smith921bd202012-02-26 09:11:52 +00005286bool SpecialMemberDeletionInfo::shouldDeleteForClassSubobject(
Richard Smithaf136f82012-07-18 03:51:16 +00005287 CXXRecordDecl *Class, Subobject Subobj, unsigned Quals) {
Richard Smith852265f2012-03-30 20:53:28 +00005288 FieldDecl *Field = Subobj.dyn_cast<FieldDecl*>();
Richard Smith41c35d62013-11-27 03:39:20 +00005289 bool IsMutable = Field && Field->isMutable();
Richard Smithd951a1d2012-02-18 02:02:13 +00005290
5291 // C++11 [class.ctor]p5:
Richard Smith5704fe82012-03-29 19:00:10 +00005292 // -- any direct or virtual base class, or non-static data member with no
5293 // brace-or-equal-initializer, has class type M (or array thereof) and
Richard Smithd951a1d2012-02-18 02:02:13 +00005294 // either M has no default constructor or overload resolution as applied
5295 // to M's default constructor results in an ambiguity or in a function
5296 // that is deleted or inaccessible
5297 // C++11 [class.copy]p11, C++11 [class.copy]p23:
5298 // -- a direct or virtual base class B that cannot be copied/moved because
5299 // overload resolution, as applied to B's corresponding special member,
5300 // results in an ambiguity or a function that is deleted or inaccessible
5301 // from the defaulted special member
Richard Smith852265f2012-03-30 20:53:28 +00005302 // C++11 [class.dtor]p5:
5303 // -- any direct or virtual base class [...] has a type with a destructor
5304 // that is deleted or inaccessible
5305 if (!(CSM == Sema::CXXDefaultConstructor &&
Richard Smithcf8ec8d2012-04-02 18:40:40 +00005306 Field && Field->hasInClassInitializer()) &&
Richard Smith41c35d62013-11-27 03:39:20 +00005307 shouldDeleteForSubobjectCall(Subobj, lookupIn(Class, Quals, IsMutable),
5308 false))
Richard Smithcf8ec8d2012-04-02 18:40:40 +00005309 return true;
Richard Smithd951a1d2012-02-18 02:02:13 +00005310
Richard Smith852265f2012-03-30 20:53:28 +00005311 // C++11 [class.ctor]p5, C++11 [class.copy]p11:
5312 // -- any direct or virtual base class or non-static data member has a
5313 // type with a destructor that is deleted or inaccessible
5314 if (IsConstructor) {
5315 Sema::SpecialMemberOverloadResult *SMOR =
5316 S.LookupSpecialMember(Class, Sema::CXXDestructor,
5317 false, false, false, false, false);
5318 if (shouldDeleteForSubobjectCall(Subobj, SMOR, true))
5319 return true;
5320 }
5321
Richard Smith921bd202012-02-26 09:11:52 +00005322 return false;
5323}
5324
5325/// Check whether we should delete a special member function due to the class
5326/// having a particular direct or virtual base class.
Richard Smith852265f2012-03-30 20:53:28 +00005327bool SpecialMemberDeletionInfo::shouldDeleteForBase(CXXBaseSpecifier *Base) {
Richard Smithcf8ec8d2012-04-02 18:40:40 +00005328 CXXRecordDecl *BaseClass = Base->getType()->getAsCXXRecordDecl();
Richard Smithaf136f82012-07-18 03:51:16 +00005329 return shouldDeleteForClassSubobject(BaseClass, Base, 0);
Richard Smithd951a1d2012-02-18 02:02:13 +00005330}
5331
5332/// Check whether we should delete a special member function due to the class
5333/// having a particular non-static data member.
5334bool SpecialMemberDeletionInfo::shouldDeleteForField(FieldDecl *FD) {
5335 QualType FieldType = S.Context.getBaseElementType(FD->getType());
5336 CXXRecordDecl *FieldRecord = FieldType->getAsCXXRecordDecl();
5337
5338 if (CSM == Sema::CXXDefaultConstructor) {
5339 // For a default constructor, all references must be initialized in-class
5340 // and, if a union, it must have a non-const member.
Richard Smith852265f2012-03-30 20:53:28 +00005341 if (FieldType->isReferenceType() && !FD->hasInClassInitializer()) {
5342 if (Diagnose)
5343 S.Diag(FD->getLocation(), diag::note_deleted_default_ctor_uninit_field)
5344 << MD->getParent() << FD << FieldType << /*Reference*/0;
Richard Smithd951a1d2012-02-18 02:02:13 +00005345 return true;
Richard Smith852265f2012-03-30 20:53:28 +00005346 }
Richard Smith619ecdc2012-02-27 06:07:25 +00005347 // C++11 [class.ctor]p5: any non-variant non-static data member of
5348 // const-qualified type (or array thereof) with no
5349 // brace-or-equal-initializer does not have a user-provided default
5350 // constructor.
5351 if (!inUnion() && FieldType.isConstQualified() &&
5352 !FD->hasInClassInitializer() &&
Richard Smith852265f2012-03-30 20:53:28 +00005353 (!FieldRecord || !FieldRecord->hasUserProvidedDefaultConstructor())) {
5354 if (Diagnose)
5355 S.Diag(FD->getLocation(), diag::note_deleted_default_ctor_uninit_field)
Richard Smithc5f98f32012-04-29 06:32:34 +00005356 << MD->getParent() << FD << FD->getType() << /*Const*/1;
Richard Smith619ecdc2012-02-27 06:07:25 +00005357 return true;
Richard Smith852265f2012-03-30 20:53:28 +00005358 }
5359
5360 if (inUnion() && !FieldType.isConstQualified())
5361 AllFieldsAreConst = false;
Richard Smithd951a1d2012-02-18 02:02:13 +00005362 } else if (CSM == Sema::CXXCopyConstructor) {
5363 // For a copy constructor, data members must not be of rvalue reference
5364 // type.
Richard Smith852265f2012-03-30 20:53:28 +00005365 if (FieldType->isRValueReferenceType()) {
5366 if (Diagnose)
5367 S.Diag(FD->getLocation(), diag::note_deleted_copy_ctor_rvalue_reference)
5368 << MD->getParent() << FD << FieldType;
Richard Smithd951a1d2012-02-18 02:02:13 +00005369 return true;
Richard Smith852265f2012-03-30 20:53:28 +00005370 }
Richard Smithd951a1d2012-02-18 02:02:13 +00005371 } else if (IsAssignment) {
5372 // For an assignment operator, data members must not be of reference type.
Richard Smith852265f2012-03-30 20:53:28 +00005373 if (FieldType->isReferenceType()) {
5374 if (Diagnose)
5375 S.Diag(FD->getLocation(), diag::note_deleted_assign_field)
5376 << IsMove << MD->getParent() << FD << FieldType << /*Reference*/0;
Richard Smithd951a1d2012-02-18 02:02:13 +00005377 return true;
Richard Smith852265f2012-03-30 20:53:28 +00005378 }
5379 if (!FieldRecord && FieldType.isConstQualified()) {
5380 // C++11 [class.copy]p23:
5381 // -- a non-static data member of const non-class type (or array thereof)
5382 if (Diagnose)
5383 S.Diag(FD->getLocation(), diag::note_deleted_assign_field)
Richard Smithc5f98f32012-04-29 06:32:34 +00005384 << IsMove << MD->getParent() << FD << FD->getType() << /*Const*/1;
Richard Smith852265f2012-03-30 20:53:28 +00005385 return true;
5386 }
Richard Smithd951a1d2012-02-18 02:02:13 +00005387 }
5388
5389 if (FieldRecord) {
Richard Smithd951a1d2012-02-18 02:02:13 +00005390 // Some additional restrictions exist on the variant members.
5391 if (!inUnion() && FieldRecord->isUnion() &&
5392 FieldRecord->isAnonymousStructOrUnion()) {
5393 bool AllVariantFieldsAreConst = true;
5394
Richard Smith5704fe82012-03-29 19:00:10 +00005395 // FIXME: Handle anonymous unions declared within anonymous unions.
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00005396 for (auto *UI : FieldRecord->fields()) {
Richard Smithd951a1d2012-02-18 02:02:13 +00005397 QualType UnionFieldType = S.Context.getBaseElementType(UI->getType());
Richard Smithd951a1d2012-02-18 02:02:13 +00005398
5399 if (!UnionFieldType.isConstQualified())
5400 AllVariantFieldsAreConst = false;
5401
Richard Smith921bd202012-02-26 09:11:52 +00005402 CXXRecordDecl *UnionFieldRecord = UnionFieldType->getAsCXXRecordDecl();
5403 if (UnionFieldRecord &&
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00005404 shouldDeleteForClassSubobject(UnionFieldRecord, UI,
Richard Smithaf136f82012-07-18 03:51:16 +00005405 UnionFieldType.getCVRQualifiers()))
Richard Smith921bd202012-02-26 09:11:52 +00005406 return true;
Richard Smithd951a1d2012-02-18 02:02:13 +00005407 }
5408
5409 // At least one member in each anonymous union must be non-const
Douglas Gregor232ee492012-02-24 21:25:53 +00005410 if (CSM == Sema::CXXDefaultConstructor && AllVariantFieldsAreConst &&
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00005411 !FieldRecord->field_empty()) {
Richard Smith852265f2012-03-30 20:53:28 +00005412 if (Diagnose)
5413 S.Diag(FieldRecord->getLocation(),
5414 diag::note_deleted_default_ctor_all_const)
5415 << MD->getParent() << /*anonymous union*/1;
Richard Smithd951a1d2012-02-18 02:02:13 +00005416 return true;
Richard Smith852265f2012-03-30 20:53:28 +00005417 }
Richard Smithd951a1d2012-02-18 02:02:13 +00005418
Richard Smith5704fe82012-03-29 19:00:10 +00005419 // Don't check the implicit member of the anonymous union type.
Richard Smithd951a1d2012-02-18 02:02:13 +00005420 // This is technically non-conformant, but sanity demands it.
5421 return false;
5422 }
5423
Richard Smithaf136f82012-07-18 03:51:16 +00005424 if (shouldDeleteForClassSubobject(FieldRecord, FD,
5425 FieldType.getCVRQualifiers()))
Richard Smith5704fe82012-03-29 19:00:10 +00005426 return true;
Richard Smithd951a1d2012-02-18 02:02:13 +00005427 }
5428
5429 return false;
5430}
5431
5432/// C++11 [class.ctor] p5:
5433/// A defaulted default constructor for a class X is defined as deleted if
5434/// X is a union and all of its variant members are of const-qualified type.
5435bool SpecialMemberDeletionInfo::shouldDeleteForAllConstMembers() {
Douglas Gregor232ee492012-02-24 21:25:53 +00005436 // This is a silly definition, because it gives an empty union a deleted
5437 // default constructor. Don't do that.
Richard Smith852265f2012-03-30 20:53:28 +00005438 if (CSM == Sema::CXXDefaultConstructor && inUnion() && AllFieldsAreConst &&
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00005439 !MD->getParent()->field_empty()) {
Richard Smith852265f2012-03-30 20:53:28 +00005440 if (Diagnose)
5441 S.Diag(MD->getParent()->getLocation(),
5442 diag::note_deleted_default_ctor_all_const)
5443 << MD->getParent() << /*not anonymous union*/0;
5444 return true;
5445 }
5446 return false;
Richard Smithd951a1d2012-02-18 02:02:13 +00005447}
5448
5449/// Determine whether a defaulted special member function should be defined as
5450/// deleted, as specified in C++11 [class.ctor]p5, C++11 [class.copy]p11,
5451/// C++11 [class.copy]p23, and C++11 [class.dtor]p5.
Richard Smith852265f2012-03-30 20:53:28 +00005452bool Sema::ShouldDeleteSpecialMember(CXXMethodDecl *MD, CXXSpecialMember CSM,
5453 bool Diagnose) {
Richard Smithf716bb82012-08-06 02:25:10 +00005454 if (MD->isInvalidDecl())
5455 return false;
Alexis Huntd6da8762011-10-10 06:18:57 +00005456 CXXRecordDecl *RD = MD->getParent();
Alexis Huntea6f0322011-05-11 22:34:38 +00005457 assert(!RD->isDependentType() && "do deletion after instantiation");
Richard Smith2bf7fdb2013-01-02 11:42:31 +00005458 if (!LangOpts.CPlusPlus11 || RD->isInvalidDecl())
Alexis Huntea6f0322011-05-11 22:34:38 +00005459 return false;
5460
Richard Smithd951a1d2012-02-18 02:02:13 +00005461 // C++11 [expr.lambda.prim]p19:
5462 // The closure type associated with a lambda-expression has a
5463 // deleted (8.4.3) default constructor and a deleted copy
5464 // assignment operator.
5465 if (RD->isLambda() &&
Richard Smith852265f2012-03-30 20:53:28 +00005466 (CSM == CXXDefaultConstructor || CSM == CXXCopyAssignment)) {
5467 if (Diagnose)
5468 Diag(RD->getLocation(), diag::note_lambda_decl);
Richard Smithd951a1d2012-02-18 02:02:13 +00005469 return true;
Richard Smith852265f2012-03-30 20:53:28 +00005470 }
5471
Richard Smith6f1e2c62012-04-02 20:59:25 +00005472 // For an anonymous struct or union, the copy and assignment special members
5473 // will never be used, so skip the check. For an anonymous union declared at
5474 // namespace scope, the constructor and destructor are used.
5475 if (CSM != CXXDefaultConstructor && CSM != CXXDestructor &&
5476 RD->isAnonymousStructOrUnion())
5477 return false;
5478
Richard Smith852265f2012-03-30 20:53:28 +00005479 // C++11 [class.copy]p7, p18:
5480 // If the class definition declares a move constructor or move assignment
5481 // operator, an implicitly declared copy constructor or copy assignment
5482 // operator is defined as deleted.
5483 if (MD->isImplicit() &&
5484 (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment)) {
Craig Topperc3ec1492014-05-26 06:22:03 +00005485 CXXMethodDecl *UserDeclaredMove = nullptr;
Richard Smith852265f2012-03-30 20:53:28 +00005486
5487 // In Microsoft mode, a user-declared move only causes the deletion of the
5488 // corresponding copy operation, not both copy operations.
5489 if (RD->hasUserDeclaredMoveConstructor() &&
Alp Tokerbfa39342014-01-14 12:51:41 +00005490 (!getLangOpts().MSVCCompat || CSM == CXXCopyConstructor)) {
Richard Smith852265f2012-03-30 20:53:28 +00005491 if (!Diagnose) return true;
Richard Smith1a2532b2012-12-08 04:10:18 +00005492
5493 // Find any user-declared move constructor.
Aaron Ballman2a4bd6d2014-03-13 16:51:27 +00005494 for (auto *I : RD->ctors()) {
Richard Smith1a2532b2012-12-08 04:10:18 +00005495 if (I->isMoveConstructor()) {
Aaron Ballman2a4bd6d2014-03-13 16:51:27 +00005496 UserDeclaredMove = I;
Richard Smith1a2532b2012-12-08 04:10:18 +00005497 break;
5498 }
5499 }
Richard Smithcf8ec8d2012-04-02 18:40:40 +00005500 assert(UserDeclaredMove);
Richard Smith852265f2012-03-30 20:53:28 +00005501 } else if (RD->hasUserDeclaredMoveAssignment() &&
Alp Tokerbfa39342014-01-14 12:51:41 +00005502 (!getLangOpts().MSVCCompat || CSM == CXXCopyAssignment)) {
Richard Smith852265f2012-03-30 20:53:28 +00005503 if (!Diagnose) return true;
Richard Smith1a2532b2012-12-08 04:10:18 +00005504
5505 // Find any user-declared move assignment operator.
Aaron Ballman2b124d12014-03-13 16:36:16 +00005506 for (auto *I : RD->methods()) {
Richard Smith1a2532b2012-12-08 04:10:18 +00005507 if (I->isMoveAssignmentOperator()) {
Aaron Ballman2b124d12014-03-13 16:36:16 +00005508 UserDeclaredMove = I;
Richard Smith1a2532b2012-12-08 04:10:18 +00005509 break;
5510 }
5511 }
Richard Smithcf8ec8d2012-04-02 18:40:40 +00005512 assert(UserDeclaredMove);
Richard Smith852265f2012-03-30 20:53:28 +00005513 }
5514
5515 if (UserDeclaredMove) {
5516 Diag(UserDeclaredMove->getLocation(),
5517 diag::note_deleted_copy_user_declared_move)
Richard Smithf989e512012-04-02 21:07:48 +00005518 << (CSM == CXXCopyAssignment) << RD
Richard Smith852265f2012-03-30 20:53:28 +00005519 << UserDeclaredMove->isMoveAssignmentOperator();
5520 return true;
5521 }
5522 }
Alexis Huntd6da8762011-10-10 06:18:57 +00005523
Richard Smith6f1e2c62012-04-02 20:59:25 +00005524 // Do access control from the special member function
5525 ContextRAII MethodContext(*this, MD);
5526
Richard Smith921bd202012-02-26 09:11:52 +00005527 // C++11 [class.dtor]p5:
5528 // -- for a virtual destructor, lookup of the non-array deallocation function
5529 // results in an ambiguity or in a function that is deleted or inaccessible
Richard Smith852265f2012-03-30 20:53:28 +00005530 if (CSM == CXXDestructor && MD->isVirtual()) {
Craig Topperc3ec1492014-05-26 06:22:03 +00005531 FunctionDecl *OperatorDelete = nullptr;
Richard Smith921bd202012-02-26 09:11:52 +00005532 DeclarationName Name =
5533 Context.DeclarationNames.getCXXOperatorName(OO_Delete);
5534 if (FindDeallocationFunction(MD->getLocation(), MD->getParent(), Name,
Richard Smith852265f2012-03-30 20:53:28 +00005535 OperatorDelete, false)) {
5536 if (Diagnose)
5537 Diag(RD->getLocation(), diag::note_deleted_dtor_no_operator_delete);
Richard Smith921bd202012-02-26 09:11:52 +00005538 return true;
Richard Smith852265f2012-03-30 20:53:28 +00005539 }
Richard Smith921bd202012-02-26 09:11:52 +00005540 }
5541
Richard Smith852265f2012-03-30 20:53:28 +00005542 SpecialMemberDeletionInfo SMI(*this, MD, CSM, Diagnose);
Alexis Huntea6f0322011-05-11 22:34:38 +00005543
Aaron Ballman574705e2014-03-13 15:41:46 +00005544 for (auto &BI : RD->bases())
5545 if (!BI.isVirtual() &&
5546 SMI.shouldDeleteForBase(&BI))
Richard Smithd951a1d2012-02-18 02:02:13 +00005547 return true;
Alexis Huntea6f0322011-05-11 22:34:38 +00005548
Richard Smithd1627032013-07-22 18:06:23 +00005549 // Per DR1611, do not consider virtual bases of constructors of abstract
5550 // classes, since we are not going to construct them.
Richard Smithbc46e432013-07-22 02:56:56 +00005551 if (!RD->isAbstract() || !SMI.IsConstructor) {
Aaron Ballman445a9392014-03-13 16:15:17 +00005552 for (auto &BI : RD->vbases())
5553 if (SMI.shouldDeleteForBase(&BI))
Richard Smithbc46e432013-07-22 02:56:56 +00005554 return true;
5555 }
Alexis Huntea6f0322011-05-11 22:34:38 +00005556
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00005557 for (auto *FI : RD->fields())
Richard Smithd951a1d2012-02-18 02:02:13 +00005558 if (!FI->isInvalidDecl() && !FI->isUnnamedBitfield() &&
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00005559 SMI.shouldDeleteForField(FI))
Alexis Hunta671bca2011-05-20 21:43:47 +00005560 return true;
Alexis Huntea6f0322011-05-11 22:34:38 +00005561
Richard Smithd951a1d2012-02-18 02:02:13 +00005562 if (SMI.shouldDeleteForAllConstMembers())
Alexis Huntea6f0322011-05-11 22:34:38 +00005563 return true;
5564
5565 return false;
Argyrios Kyrtzidis7272d9c2011-02-03 18:01:15 +00005566}
5567
Richard Smith92f241f2012-12-08 02:53:02 +00005568/// Perform lookup for a special member of the specified kind, and determine
5569/// whether it is trivial. If the triviality can be determined without the
5570/// lookup, skip it. This is intended for use when determining whether a
5571/// special member of a containing object is trivial, and thus does not ever
5572/// perform overload resolution for default constructors.
5573///
5574/// If \p Selected is not \c NULL, \c *Selected will be filled in with the
5575/// member that was most likely to be intended to be trivial, if any.
5576static bool findTrivialSpecialMember(Sema &S, CXXRecordDecl *RD,
5577 Sema::CXXSpecialMember CSM, unsigned Quals,
Richard Smith41c35d62013-11-27 03:39:20 +00005578 bool ConstRHS, CXXMethodDecl **Selected) {
Richard Smith92f241f2012-12-08 02:53:02 +00005579 if (Selected)
Craig Topperc3ec1492014-05-26 06:22:03 +00005580 *Selected = nullptr;
Richard Smith92f241f2012-12-08 02:53:02 +00005581
5582 switch (CSM) {
5583 case Sema::CXXInvalid:
5584 llvm_unreachable("not a special member");
5585
5586 case Sema::CXXDefaultConstructor:
5587 // C++11 [class.ctor]p5:
5588 // A default constructor is trivial if:
5589 // - all the [direct subobjects] have trivial default constructors
5590 //
5591 // Note, no overload resolution is performed in this case.
5592 if (RD->hasTrivialDefaultConstructor())
5593 return true;
5594
5595 if (Selected) {
5596 // If there's a default constructor which could have been trivial, dig it
5597 // out. Otherwise, if there's any user-provided default constructor, point
5598 // to that as an example of why there's not a trivial one.
Craig Topperc3ec1492014-05-26 06:22:03 +00005599 CXXConstructorDecl *DefCtor = nullptr;
Richard Smith92f241f2012-12-08 02:53:02 +00005600 if (RD->needsImplicitDefaultConstructor())
5601 S.DeclareImplicitDefaultConstructor(RD);
Aaron Ballman2a4bd6d2014-03-13 16:51:27 +00005602 for (auto *CI : RD->ctors()) {
Richard Smith92f241f2012-12-08 02:53:02 +00005603 if (!CI->isDefaultConstructor())
5604 continue;
Aaron Ballman2a4bd6d2014-03-13 16:51:27 +00005605 DefCtor = CI;
Richard Smith92f241f2012-12-08 02:53:02 +00005606 if (!DefCtor->isUserProvided())
5607 break;
5608 }
5609
5610 *Selected = DefCtor;
5611 }
5612
5613 return false;
5614
5615 case Sema::CXXDestructor:
5616 // C++11 [class.dtor]p5:
5617 // A destructor is trivial if:
5618 // - all the direct [subobjects] have trivial destructors
5619 if (RD->hasTrivialDestructor())
5620 return true;
5621
5622 if (Selected) {
5623 if (RD->needsImplicitDestructor())
5624 S.DeclareImplicitDestructor(RD);
5625 *Selected = RD->getDestructor();
5626 }
5627
5628 return false;
5629
5630 case Sema::CXXCopyConstructor:
5631 // C++11 [class.copy]p12:
5632 // A copy constructor is trivial if:
5633 // - the constructor selected to copy each direct [subobject] is trivial
5634 if (RD->hasTrivialCopyConstructor()) {
5635 if (Quals == Qualifiers::Const)
5636 // We must either select the trivial copy constructor or reach an
5637 // ambiguity; no need to actually perform overload resolution.
5638 return true;
5639 } else if (!Selected) {
5640 return false;
5641 }
5642 // In C++98, we are not supposed to perform overload resolution here, but we
5643 // treat that as a language defect, as suggested on cxx-abi-dev, to treat
5644 // cases like B as having a non-trivial copy constructor:
5645 // struct A { template<typename T> A(T&); };
5646 // struct B { mutable A a; };
5647 goto NeedOverloadResolution;
5648
5649 case Sema::CXXCopyAssignment:
5650 // C++11 [class.copy]p25:
5651 // A copy assignment operator is trivial if:
5652 // - the assignment operator selected to copy each direct [subobject] is
5653 // trivial
5654 if (RD->hasTrivialCopyAssignment()) {
5655 if (Quals == Qualifiers::Const)
5656 return true;
5657 } else if (!Selected) {
5658 return false;
5659 }
5660 // In C++98, we are not supposed to perform overload resolution here, but we
5661 // treat that as a language defect.
5662 goto NeedOverloadResolution;
5663
5664 case Sema::CXXMoveConstructor:
5665 case Sema::CXXMoveAssignment:
5666 NeedOverloadResolution:
5667 Sema::SpecialMemberOverloadResult *SMOR =
Richard Smith41c35d62013-11-27 03:39:20 +00005668 lookupCallFromSpecialMember(S, RD, CSM, Quals, ConstRHS);
Richard Smith92f241f2012-12-08 02:53:02 +00005669
5670 // The standard doesn't describe how to behave if the lookup is ambiguous.
5671 // We treat it as not making the member non-trivial, just like the standard
5672 // mandates for the default constructor. This should rarely matter, because
5673 // the member will also be deleted.
5674 if (SMOR->getKind() == Sema::SpecialMemberOverloadResult::Ambiguous)
5675 return true;
5676
5677 if (!SMOR->getMethod()) {
5678 assert(SMOR->getKind() ==
5679 Sema::SpecialMemberOverloadResult::NoMemberOrDeleted);
5680 return false;
5681 }
5682
5683 // We deliberately don't check if we found a deleted special member. We're
5684 // not supposed to!
5685 if (Selected)
5686 *Selected = SMOR->getMethod();
5687 return SMOR->getMethod()->isTrivial();
5688 }
5689
5690 llvm_unreachable("unknown special method kind");
5691}
5692
Benjamin Kramer3e350262013-02-15 12:30:38 +00005693static CXXConstructorDecl *findUserDeclaredCtor(CXXRecordDecl *RD) {
Aaron Ballman2a4bd6d2014-03-13 16:51:27 +00005694 for (auto *CI : RD->ctors())
Richard Smith92f241f2012-12-08 02:53:02 +00005695 if (!CI->isImplicit())
Aaron Ballman2a4bd6d2014-03-13 16:51:27 +00005696 return CI;
Richard Smith92f241f2012-12-08 02:53:02 +00005697
5698 // Look for constructor templates.
5699 typedef CXXRecordDecl::specific_decl_iterator<FunctionTemplateDecl> tmpl_iter;
5700 for (tmpl_iter TI(RD->decls_begin()), TE(RD->decls_end()); TI != TE; ++TI) {
5701 if (CXXConstructorDecl *CD =
5702 dyn_cast<CXXConstructorDecl>(TI->getTemplatedDecl()))
5703 return CD;
5704 }
5705
Craig Topperc3ec1492014-05-26 06:22:03 +00005706 return nullptr;
Richard Smith92f241f2012-12-08 02:53:02 +00005707}
5708
5709/// The kind of subobject we are checking for triviality. The values of this
5710/// enumeration are used in diagnostics.
5711enum TrivialSubobjectKind {
5712 /// The subobject is a base class.
5713 TSK_BaseClass,
5714 /// The subobject is a non-static data member.
5715 TSK_Field,
5716 /// The object is actually the complete object.
5717 TSK_CompleteObject
5718};
5719
5720/// Check whether the special member selected for a given type would be trivial.
5721static bool checkTrivialSubobjectCall(Sema &S, SourceLocation SubobjLoc,
Richard Smith41c35d62013-11-27 03:39:20 +00005722 QualType SubType, bool ConstRHS,
Richard Smith92f241f2012-12-08 02:53:02 +00005723 Sema::CXXSpecialMember CSM,
5724 TrivialSubobjectKind Kind,
5725 bool Diagnose) {
5726 CXXRecordDecl *SubRD = SubType->getAsCXXRecordDecl();
5727 if (!SubRD)
5728 return true;
5729
5730 CXXMethodDecl *Selected;
5731 if (findTrivialSpecialMember(S, SubRD, CSM, SubType.getCVRQualifiers(),
Craig Topperc3ec1492014-05-26 06:22:03 +00005732 ConstRHS, Diagnose ? &Selected : nullptr))
Richard Smith92f241f2012-12-08 02:53:02 +00005733 return true;
5734
5735 if (Diagnose) {
Richard Smith41c35d62013-11-27 03:39:20 +00005736 if (ConstRHS)
5737 SubType.addConst();
5738
Richard Smith92f241f2012-12-08 02:53:02 +00005739 if (!Selected && CSM == Sema::CXXDefaultConstructor) {
5740 S.Diag(SubobjLoc, diag::note_nontrivial_no_def_ctor)
5741 << Kind << SubType.getUnqualifiedType();
5742 if (CXXConstructorDecl *CD = findUserDeclaredCtor(SubRD))
5743 S.Diag(CD->getLocation(), diag::note_user_declared_ctor);
5744 } else if (!Selected)
5745 S.Diag(SubobjLoc, diag::note_nontrivial_no_copy)
5746 << Kind << SubType.getUnqualifiedType() << CSM << SubType;
5747 else if (Selected->isUserProvided()) {
5748 if (Kind == TSK_CompleteObject)
5749 S.Diag(Selected->getLocation(), diag::note_nontrivial_user_provided)
5750 << Kind << SubType.getUnqualifiedType() << CSM;
5751 else {
5752 S.Diag(SubobjLoc, diag::note_nontrivial_user_provided)
5753 << Kind << SubType.getUnqualifiedType() << CSM;
5754 S.Diag(Selected->getLocation(), diag::note_declared_at);
5755 }
5756 } else {
5757 if (Kind != TSK_CompleteObject)
5758 S.Diag(SubobjLoc, diag::note_nontrivial_subobject)
5759 << Kind << SubType.getUnqualifiedType() << CSM;
5760
5761 // Explain why the defaulted or deleted special member isn't trivial.
5762 S.SpecialMemberIsTrivial(Selected, CSM, Diagnose);
5763 }
5764 }
5765
5766 return false;
5767}
5768
5769/// Check whether the members of a class type allow a special member to be
5770/// trivial.
5771static bool checkTrivialClassMembers(Sema &S, CXXRecordDecl *RD,
5772 Sema::CXXSpecialMember CSM,
5773 bool ConstArg, bool Diagnose) {
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00005774 for (const auto *FI : RD->fields()) {
Richard Smith92f241f2012-12-08 02:53:02 +00005775 if (FI->isInvalidDecl() || FI->isUnnamedBitfield())
5776 continue;
5777
5778 QualType FieldType = S.Context.getBaseElementType(FI->getType());
5779
5780 // Pretend anonymous struct or union members are members of this class.
5781 if (FI->isAnonymousStructOrUnion()) {
5782 if (!checkTrivialClassMembers(S, FieldType->getAsCXXRecordDecl(),
5783 CSM, ConstArg, Diagnose))
5784 return false;
5785 continue;
5786 }
5787
5788 // C++11 [class.ctor]p5:
5789 // A default constructor is trivial if [...]
5790 // -- no non-static data member of its class has a
5791 // brace-or-equal-initializer
5792 if (CSM == Sema::CXXDefaultConstructor && FI->hasInClassInitializer()) {
5793 if (Diagnose)
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00005794 S.Diag(FI->getLocation(), diag::note_nontrivial_in_class_init) << FI;
Richard Smith92f241f2012-12-08 02:53:02 +00005795 return false;
5796 }
5797
5798 // Objective C ARC 4.3.5:
5799 // [...] nontrivally ownership-qualified types are [...] not trivially
5800 // default constructible, copy constructible, move constructible, copy
5801 // assignable, move assignable, or destructible [...]
5802 if (S.getLangOpts().ObjCAutoRefCount &&
5803 FieldType.hasNonTrivialObjCLifetime()) {
5804 if (Diagnose)
5805 S.Diag(FI->getLocation(), diag::note_nontrivial_objc_ownership)
5806 << RD << FieldType.getObjCLifetime();
5807 return false;
5808 }
5809
Richard Smith41c35d62013-11-27 03:39:20 +00005810 bool ConstRHS = ConstArg && !FI->isMutable();
5811 if (!checkTrivialSubobjectCall(S, FI->getLocation(), FieldType, ConstRHS,
5812 CSM, TSK_Field, Diagnose))
Richard Smith92f241f2012-12-08 02:53:02 +00005813 return false;
5814 }
5815
5816 return true;
5817}
5818
5819/// Diagnose why the specified class does not have a trivial special member of
5820/// the given kind.
5821void Sema::DiagnoseNontrivial(const CXXRecordDecl *RD, CXXSpecialMember CSM) {
5822 QualType Ty = Context.getRecordType(RD);
Richard Smith92f241f2012-12-08 02:53:02 +00005823
Richard Smith41c35d62013-11-27 03:39:20 +00005824 bool ConstArg = (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment);
5825 checkTrivialSubobjectCall(*this, RD->getLocation(), Ty, ConstArg, CSM,
Richard Smith92f241f2012-12-08 02:53:02 +00005826 TSK_CompleteObject, /*Diagnose*/true);
5827}
5828
5829/// Determine whether a defaulted or deleted special member function is trivial,
5830/// as specified in C++11 [class.ctor]p5, C++11 [class.copy]p12,
5831/// C++11 [class.copy]p25, and C++11 [class.dtor]p5.
5832bool Sema::SpecialMemberIsTrivial(CXXMethodDecl *MD, CXXSpecialMember CSM,
5833 bool Diagnose) {
Richard Smith92f241f2012-12-08 02:53:02 +00005834 assert(!MD->isUserProvided() && CSM != CXXInvalid && "not special enough");
5835
5836 CXXRecordDecl *RD = MD->getParent();
5837
5838 bool ConstArg = false;
Richard Smith92f241f2012-12-08 02:53:02 +00005839
Richard Smith2002bfe2013-11-04 02:02:27 +00005840 // C++11 [class.copy]p12, p25: [DR1593]
5841 // A [special member] is trivial if [...] its parameter-type-list is
5842 // equivalent to the parameter-type-list of an implicit declaration [...]
Richard Smith92f241f2012-12-08 02:53:02 +00005843 switch (CSM) {
5844 case CXXDefaultConstructor:
5845 case CXXDestructor:
5846 // Trivial default constructors and destructors cannot have parameters.
5847 break;
5848
5849 case CXXCopyConstructor:
5850 case CXXCopyAssignment: {
5851 // Trivial copy operations always have const, non-volatile parameter types.
5852 ConstArg = true;
Jordan Rosed03d99d2013-03-05 01:27:54 +00005853 const ParmVarDecl *Param0 = MD->getParamDecl(0);
Richard Smith92f241f2012-12-08 02:53:02 +00005854 const ReferenceType *RT = Param0->getType()->getAs<ReferenceType>();
5855 if (!RT || RT->getPointeeType().getCVRQualifiers() != Qualifiers::Const) {
5856 if (Diagnose)
5857 Diag(Param0->getLocation(), diag::note_nontrivial_param_type)
5858 << Param0->getSourceRange() << Param0->getType()
5859 << Context.getLValueReferenceType(
5860 Context.getRecordType(RD).withConst());
5861 return false;
5862 }
5863 break;
5864 }
5865
5866 case CXXMoveConstructor:
5867 case CXXMoveAssignment: {
5868 // Trivial move operations always have non-cv-qualified parameters.
Jordan Rosed03d99d2013-03-05 01:27:54 +00005869 const ParmVarDecl *Param0 = MD->getParamDecl(0);
Richard Smith92f241f2012-12-08 02:53:02 +00005870 const RValueReferenceType *RT =
5871 Param0->getType()->getAs<RValueReferenceType>();
5872 if (!RT || RT->getPointeeType().getCVRQualifiers()) {
5873 if (Diagnose)
5874 Diag(Param0->getLocation(), diag::note_nontrivial_param_type)
5875 << Param0->getSourceRange() << Param0->getType()
5876 << Context.getRValueReferenceType(Context.getRecordType(RD));
5877 return false;
5878 }
5879 break;
5880 }
5881
5882 case CXXInvalid:
5883 llvm_unreachable("not a special member");
5884 }
5885
Richard Smith92f241f2012-12-08 02:53:02 +00005886 if (MD->getMinRequiredArguments() < MD->getNumParams()) {
5887 if (Diagnose)
5888 Diag(MD->getParamDecl(MD->getMinRequiredArguments())->getLocation(),
5889 diag::note_nontrivial_default_arg)
5890 << MD->getParamDecl(MD->getMinRequiredArguments())->getSourceRange();
5891 return false;
5892 }
5893 if (MD->isVariadic()) {
5894 if (Diagnose)
5895 Diag(MD->getLocation(), diag::note_nontrivial_variadic);
5896 return false;
5897 }
5898
5899 // C++11 [class.ctor]p5, C++11 [class.dtor]p5:
5900 // A copy/move [constructor or assignment operator] is trivial if
5901 // -- the [member] selected to copy/move each direct base class subobject
5902 // is trivial
5903 //
5904 // C++11 [class.copy]p12, C++11 [class.copy]p25:
5905 // A [default constructor or destructor] is trivial if
5906 // -- all the direct base classes have trivial [default constructors or
5907 // destructors]
Aaron Ballman574705e2014-03-13 15:41:46 +00005908 for (const auto &BI : RD->bases())
5909 if (!checkTrivialSubobjectCall(*this, BI.getLocStart(), BI.getType(),
Richard Smith41c35d62013-11-27 03:39:20 +00005910 ConstArg, CSM, TSK_BaseClass, Diagnose))
Richard Smith92f241f2012-12-08 02:53:02 +00005911 return false;
5912
5913 // C++11 [class.ctor]p5, C++11 [class.dtor]p5:
5914 // A copy/move [constructor or assignment operator] for a class X is
5915 // trivial if
5916 // -- for each non-static data member of X that is of class type (or array
5917 // thereof), the constructor selected to copy/move that member is
5918 // trivial
5919 //
5920 // C++11 [class.copy]p12, C++11 [class.copy]p25:
5921 // A [default constructor or destructor] is trivial if
5922 // -- for all of the non-static data members of its class that are of class
5923 // type (or array thereof), each such class has a trivial [default
5924 // constructor or destructor]
5925 if (!checkTrivialClassMembers(*this, RD, CSM, ConstArg, Diagnose))
5926 return false;
5927
5928 // C++11 [class.dtor]p5:
5929 // A destructor is trivial if [...]
5930 // -- the destructor is not virtual
5931 if (CSM == CXXDestructor && MD->isVirtual()) {
5932 if (Diagnose)
5933 Diag(MD->getLocation(), diag::note_nontrivial_virtual_dtor) << RD;
5934 return false;
5935 }
5936
5937 // C++11 [class.ctor]p5, C++11 [class.copy]p12, C++11 [class.copy]p25:
5938 // A [special member] for class X is trivial if [...]
5939 // -- class X has no virtual functions and no virtual base classes
5940 if (CSM != CXXDestructor && MD->getParent()->isDynamicClass()) {
5941 if (!Diagnose)
5942 return false;
5943
5944 if (RD->getNumVBases()) {
5945 // Check for virtual bases. We already know that the corresponding
5946 // member in all bases is trivial, so vbases must all be direct.
5947 CXXBaseSpecifier &BS = *RD->vbases_begin();
5948 assert(BS.isVirtual());
5949 Diag(BS.getLocStart(), diag::note_nontrivial_has_virtual) << RD << 1;
5950 return false;
5951 }
5952
5953 // Must have a virtual method.
Aaron Ballman2b124d12014-03-13 16:36:16 +00005954 for (const auto *MI : RD->methods()) {
Richard Smith92f241f2012-12-08 02:53:02 +00005955 if (MI->isVirtual()) {
5956 SourceLocation MLoc = MI->getLocStart();
5957 Diag(MLoc, diag::note_nontrivial_has_virtual) << RD << 0;
5958 return false;
5959 }
5960 }
5961
5962 llvm_unreachable("dynamic class with no vbases and no virtual functions");
5963 }
5964
5965 // Looks like it's trivial!
5966 return true;
5967}
5968
Argyrios Kyrtzidis7272d9c2011-02-03 18:01:15 +00005969/// \brief Data used with FindHiddenVirtualMethod
Benjamin Kramer024e6192011-03-04 13:12:48 +00005970namespace {
5971 struct FindHiddenVirtualMethodData {
5972 Sema *S;
5973 CXXMethodDecl *Method;
5974 llvm::SmallPtrSet<const CXXMethodDecl *, 8> OverridenAndUsingBaseMethods;
Chris Lattner0e62c1c2011-07-23 10:55:15 +00005975 SmallVector<CXXMethodDecl *, 8> OverloadedMethods;
Benjamin Kramer024e6192011-03-04 13:12:48 +00005976 };
5977}
Argyrios Kyrtzidis7272d9c2011-02-03 18:01:15 +00005978
David Blaikie282c92a2012-10-19 00:53:08 +00005979/// \brief Check whether any most overriden method from MD in Methods
5980static bool CheckMostOverridenMethods(const CXXMethodDecl *MD,
Craig Topper4dd9b432014-08-17 23:49:53 +00005981 const llvm::SmallPtrSetImpl<const CXXMethodDecl *>& Methods) {
David Blaikie282c92a2012-10-19 00:53:08 +00005982 if (MD->size_overridden_methods() == 0)
5983 return Methods.count(MD->getCanonicalDecl());
5984 for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(),
5985 E = MD->end_overridden_methods();
5986 I != E; ++I)
5987 if (CheckMostOverridenMethods(*I, Methods))
5988 return true;
5989 return false;
5990}
5991
Argyrios Kyrtzidis7272d9c2011-02-03 18:01:15 +00005992/// \brief Member lookup function that determines whether a given C++
5993/// method overloads virtual methods in a base class without overriding any,
5994/// to be used with CXXRecordDecl::lookupInBases().
5995static bool FindHiddenVirtualMethod(const CXXBaseSpecifier *Specifier,
5996 CXXBasePath &Path,
5997 void *UserData) {
5998 RecordDecl *BaseRecord = Specifier->getType()->getAs<RecordType>()->getDecl();
5999
6000 FindHiddenVirtualMethodData &Data
6001 = *static_cast<FindHiddenVirtualMethodData*>(UserData);
6002
6003 DeclarationName Name = Data.Method->getDeclName();
6004 assert(Name.getNameKind() == DeclarationName::Identifier);
6005
6006 bool foundSameNameMethod = false;
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006007 SmallVector<CXXMethodDecl *, 8> overloadedMethods;
Argyrios Kyrtzidis7272d9c2011-02-03 18:01:15 +00006008 for (Path.Decls = BaseRecord->lookup(Name);
David Blaikieff7d47a2012-12-19 00:45:41 +00006009 !Path.Decls.empty();
6010 Path.Decls = Path.Decls.slice(1)) {
6011 NamedDecl *D = Path.Decls.front();
Argyrios Kyrtzidis7272d9c2011-02-03 18:01:15 +00006012 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) {
Argyrios Kyrtzidis7dd856a2011-02-10 18:13:41 +00006013 MD = MD->getCanonicalDecl();
Argyrios Kyrtzidis7272d9c2011-02-03 18:01:15 +00006014 foundSameNameMethod = true;
6015 // Interested only in hidden virtual methods.
6016 if (!MD->isVirtual())
6017 continue;
6018 // If the method we are checking overrides a method from its base
Aaron Ballman04559a72014-07-30 23:50:53 +00006019 // don't warn about the other overloaded methods. Clang deviates from GCC
6020 // by only diagnosing overloads of inherited virtual functions that do not
6021 // override any other virtual functions in the base. GCC's
6022 // -Woverloaded-virtual diagnoses any derived function hiding a virtual
6023 // function from a base class. These cases may be better served by a
6024 // warning (not specific to virtual functions) on call sites when the call
6025 // would select a different function from the base class, were it visible.
6026 // See FIXME in test/SemaCXX/warn-overload-virtual.cpp for an example.
Argyrios Kyrtzidis7272d9c2011-02-03 18:01:15 +00006027 if (!Data.S->IsOverload(Data.Method, MD, false))
6028 return true;
6029 // Collect the overload only if its hidden.
David Blaikie282c92a2012-10-19 00:53:08 +00006030 if (!CheckMostOverridenMethods(MD, Data.OverridenAndUsingBaseMethods))
Argyrios Kyrtzidis7272d9c2011-02-03 18:01:15 +00006031 overloadedMethods.push_back(MD);
6032 }
6033 }
6034
6035 if (foundSameNameMethod)
6036 Data.OverloadedMethods.append(overloadedMethods.begin(),
6037 overloadedMethods.end());
6038 return foundSameNameMethod;
6039}
6040
David Blaikie282c92a2012-10-19 00:53:08 +00006041/// \brief Add the most overriden methods from MD to Methods
6042static void AddMostOverridenMethods(const CXXMethodDecl *MD,
Craig Topper4dd9b432014-08-17 23:49:53 +00006043 llvm::SmallPtrSetImpl<const CXXMethodDecl *>& Methods) {
David Blaikie282c92a2012-10-19 00:53:08 +00006044 if (MD->size_overridden_methods() == 0)
6045 Methods.insert(MD->getCanonicalDecl());
6046 for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(),
6047 E = MD->end_overridden_methods();
6048 I != E; ++I)
6049 AddMostOverridenMethods(*I, Methods);
6050}
6051
Eli Friedmanaf65120b2013-09-05 23:51:03 +00006052/// \brief Check if a method overloads virtual methods in a base class without
Argyrios Kyrtzidis7272d9c2011-02-03 18:01:15 +00006053/// overriding any.
Eli Friedmanaf65120b2013-09-05 23:51:03 +00006054void Sema::FindHiddenVirtualMethods(CXXMethodDecl *MD,
6055 SmallVectorImpl<CXXMethodDecl*> &OverloadedMethods) {
Benjamin Kramer1458c1c2012-05-19 16:03:58 +00006056 if (!MD->getDeclName().isIdentifier())
Argyrios Kyrtzidis7272d9c2011-02-03 18:01:15 +00006057 return;
6058
6059 CXXBasePaths Paths(/*FindAmbiguities=*/true, // true to look in all bases.
6060 /*bool RecordPaths=*/false,
6061 /*bool DetectVirtual=*/false);
6062 FindHiddenVirtualMethodData Data;
6063 Data.Method = MD;
6064 Data.S = this;
6065
6066 // Keep the base methods that were overriden or introduced in the subclass
6067 // by 'using' in a set. A base method not in this set is hidden.
Eli Friedmanaf65120b2013-09-05 23:51:03 +00006068 CXXRecordDecl *DC = MD->getParent();
David Blaikieff7d47a2012-12-19 00:45:41 +00006069 DeclContext::lookup_result R = DC->lookup(MD->getDeclName());
6070 for (DeclContext::lookup_iterator I = R.begin(), E = R.end(); I != E; ++I) {
6071 NamedDecl *ND = *I;
6072 if (UsingShadowDecl *shad = dyn_cast<UsingShadowDecl>(*I))
David Blaikie282c92a2012-10-19 00:53:08 +00006073 ND = shad->getTargetDecl();
6074 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(ND))
6075 AddMostOverridenMethods(MD, Data.OverridenAndUsingBaseMethods);
Argyrios Kyrtzidis7272d9c2011-02-03 18:01:15 +00006076 }
6077
Eli Friedmanaf65120b2013-09-05 23:51:03 +00006078 if (DC->lookupInBases(&FindHiddenVirtualMethod, &Data, Paths))
6079 OverloadedMethods = Data.OverloadedMethods;
6080}
Argyrios Kyrtzidis7272d9c2011-02-03 18:01:15 +00006081
Eli Friedmanaf65120b2013-09-05 23:51:03 +00006082void Sema::NoteHiddenVirtualMethods(CXXMethodDecl *MD,
6083 SmallVectorImpl<CXXMethodDecl*> &OverloadedMethods) {
6084 for (unsigned i = 0, e = OverloadedMethods.size(); i != e; ++i) {
6085 CXXMethodDecl *overloadedMD = OverloadedMethods[i];
6086 PartialDiagnostic PD = PDiag(
6087 diag::note_hidden_overloaded_virtual_declared_here) << overloadedMD;
6088 HandleFunctionTypeMismatch(PD, MD->getType(), overloadedMD->getType());
6089 Diag(overloadedMD->getLocation(), PD);
6090 }
6091}
6092
6093/// \brief Diagnose methods which overload virtual methods in a base class
6094/// without overriding any.
6095void Sema::DiagnoseHiddenVirtualMethods(CXXMethodDecl *MD) {
6096 if (MD->isInvalidDecl())
6097 return;
6098
Alp Tokerd4a3f0e2014-06-15 23:30:39 +00006099 if (Diags.isIgnored(diag::warn_overloaded_virtual, MD->getLocation()))
Eli Friedmanaf65120b2013-09-05 23:51:03 +00006100 return;
6101
6102 SmallVector<CXXMethodDecl *, 8> OverloadedMethods;
6103 FindHiddenVirtualMethods(MD, OverloadedMethods);
6104 if (!OverloadedMethods.empty()) {
6105 Diag(MD->getLocation(), diag::warn_overloaded_virtual)
6106 << MD << (OverloadedMethods.size() > 1);
6107
6108 NoteHiddenVirtualMethods(MD, OverloadedMethods);
Argyrios Kyrtzidis7272d9c2011-02-03 18:01:15 +00006109 }
Douglas Gregorc99f1552009-12-03 18:33:45 +00006110}
6111
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00006112void Sema::ActOnFinishCXXMemberSpecification(Scope* S, SourceLocation RLoc,
John McCall48871652010-08-21 09:40:31 +00006113 Decl *TagDecl,
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00006114 SourceLocation LBrac,
Douglas Gregorc48a10d2010-03-29 14:42:08 +00006115 SourceLocation RBrac,
6116 AttributeList *AttrList) {
Douglas Gregor71a57182009-06-22 23:20:33 +00006117 if (!TagDecl)
6118 return;
Mike Stump11289f42009-09-09 15:08:12 +00006119
Douglas Gregorc9f9b862009-05-11 19:58:34 +00006120 AdjustDeclIfTemplate(TagDecl);
Douglas Gregorc99f1552009-12-03 18:33:45 +00006121
Rafael Espindola06e1b132012-07-12 04:32:30 +00006122 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
6123 if (l->getKind() != AttributeList::AT_Visibility)
6124 continue;
6125 l->setInvalid();
6126 Diag(l->getLoc(), diag::warn_attribute_after_definition_ignored) <<
6127 l->getName();
6128 }
6129
David Blaikie751c5582011-09-22 02:58:26 +00006130 ActOnFields(S, RLoc, TagDecl, llvm::makeArrayRef(
John McCall48871652010-08-21 09:40:31 +00006131 // strict aliasing violation!
6132 reinterpret_cast<Decl**>(FieldCollector->getCurFields()),
David Blaikie751c5582011-09-22 02:58:26 +00006133 FieldCollector->getCurNumFields()), LBrac, RBrac, AttrList);
Douglas Gregor463421d2009-03-03 04:44:36 +00006134
Douglas Gregor0be31a22010-07-02 17:43:08 +00006135 CheckCompletedCXXClass(
John McCall48871652010-08-21 09:40:31 +00006136 dyn_cast_or_null<CXXRecordDecl>(TagDecl));
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00006137}
6138
Douglas Gregor05379422008-11-03 17:51:48 +00006139/// AddImplicitlyDeclaredMembersToClass - Adds any implicitly-declared
6140/// special functions, such as the default constructor, copy
6141/// constructor, or destructor, to the given C++ class (C++
6142/// [special]p1). This routine can only be executed just before the
6143/// definition of the class is complete.
Douglas Gregor0be31a22010-07-02 17:43:08 +00006144void Sema::AddImplicitlyDeclaredMembersToClass(CXXRecordDecl *ClassDecl) {
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00006145 if (!ClassDecl->hasUserDeclaredConstructor())
Douglas Gregor9672f922010-07-03 00:47:00 +00006146 ++ASTContext::NumImplicitDefaultConstructors;
Douglas Gregor05379422008-11-03 17:51:48 +00006147
Richard Smith6b02d462012-12-08 08:32:28 +00006148 if (!ClassDecl->hasUserDeclaredCopyConstructor()) {
Douglas Gregora6d69502010-07-02 23:41:54 +00006149 ++ASTContext::NumImplicitCopyConstructors;
Douglas Gregor05379422008-11-03 17:51:48 +00006150
Richard Smith6b02d462012-12-08 08:32:28 +00006151 // If the properties or semantics of the copy constructor couldn't be
6152 // determined while the class was being declared, force a declaration
6153 // of it now.
6154 if (ClassDecl->needsOverloadResolutionForCopyConstructor())
6155 DeclareImplicitCopyConstructor(ClassDecl);
6156 }
6157
Richard Smith2bf7fdb2013-01-02 11:42:31 +00006158 if (getLangOpts().CPlusPlus11 && ClassDecl->needsImplicitMoveConstructor()) {
Richard Smith966c1fb2011-12-24 21:56:24 +00006159 ++ASTContext::NumImplicitMoveConstructors;
6160
Richard Smith6b02d462012-12-08 08:32:28 +00006161 if (ClassDecl->needsOverloadResolutionForMoveConstructor())
6162 DeclareImplicitMoveConstructor(ClassDecl);
6163 }
6164
Douglas Gregor330b9cf2010-07-02 21:50:04 +00006165 if (!ClassDecl->hasUserDeclaredCopyAssignment()) {
6166 ++ASTContext::NumImplicitCopyAssignmentOperators;
Richard Smith6b02d462012-12-08 08:32:28 +00006167
6168 // If we have a dynamic class, then the copy assignment operator may be
Douglas Gregor330b9cf2010-07-02 21:50:04 +00006169 // virtual, so we have to declare it immediately. This ensures that, e.g.,
Richard Smith6b02d462012-12-08 08:32:28 +00006170 // it shows up in the right place in the vtable and that we diagnose
6171 // problems with the implicit exception specification.
6172 if (ClassDecl->isDynamicClass() ||
6173 ClassDecl->needsOverloadResolutionForCopyAssignment())
Douglas Gregor330b9cf2010-07-02 21:50:04 +00006174 DeclareImplicitCopyAssignment(ClassDecl);
6175 }
Sebastian Redlbaad4e72009-01-05 20:52:13 +00006176
Richard Smith2bf7fdb2013-01-02 11:42:31 +00006177 if (getLangOpts().CPlusPlus11 && ClassDecl->needsImplicitMoveAssignment()) {
Richard Smith966c1fb2011-12-24 21:56:24 +00006178 ++ASTContext::NumImplicitMoveAssignmentOperators;
6179
6180 // Likewise for the move assignment operator.
Richard Smith6b02d462012-12-08 08:32:28 +00006181 if (ClassDecl->isDynamicClass() ||
6182 ClassDecl->needsOverloadResolutionForMoveAssignment())
Richard Smith966c1fb2011-12-24 21:56:24 +00006183 DeclareImplicitMoveAssignment(ClassDecl);
6184 }
6185
Douglas Gregor7454c562010-07-02 20:37:36 +00006186 if (!ClassDecl->hasUserDeclaredDestructor()) {
6187 ++ASTContext::NumImplicitDestructors;
Richard Smith6b02d462012-12-08 08:32:28 +00006188
6189 // If we have a dynamic class, then the destructor may be virtual, so we
Douglas Gregor7454c562010-07-02 20:37:36 +00006190 // have to declare the destructor immediately. This ensures that, e.g., it
6191 // shows up in the right place in the vtable and that we diagnose problems
6192 // with the implicit exception specification.
Richard Smith6b02d462012-12-08 08:32:28 +00006193 if (ClassDecl->isDynamicClass() ||
6194 ClassDecl->needsOverloadResolutionForDestructor())
Douglas Gregor7454c562010-07-02 20:37:36 +00006195 DeclareImplicitDestructor(ClassDecl);
6196 }
Douglas Gregor05379422008-11-03 17:51:48 +00006197}
6198
Hans Wennborgb6d4e8c2014-05-02 02:01:07 +00006199unsigned Sema::ActOnReenterTemplateScope(Scope *S, Decl *D) {
Francois Pichet1c229c02011-04-22 22:18:13 +00006200 if (!D)
Hans Wennborgb6d4e8c2014-05-02 02:01:07 +00006201 return 0;
Francois Pichet1c229c02011-04-22 22:18:13 +00006202
Hans Wennborgb6d4e8c2014-05-02 02:01:07 +00006203 // The order of template parameters is not important here. All names
6204 // get added to the same scope.
6205 SmallVector<TemplateParameterList *, 4> ParameterLists;
6206
6207 if (TemplateDecl *TD = dyn_cast<TemplateDecl>(D))
6208 D = TD->getTemplatedDecl();
6209
6210 if (auto *PSD = dyn_cast<ClassTemplatePartialSpecializationDecl>(D))
6211 ParameterLists.push_back(PSD->getTemplateParameters());
6212
6213 if (DeclaratorDecl *DD = dyn_cast<DeclaratorDecl>(D)) {
6214 for (unsigned i = 0; i < DD->getNumTemplateParameterLists(); ++i)
6215 ParameterLists.push_back(DD->getTemplateParameterList(i));
6216
6217 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
6218 if (FunctionTemplateDecl *FTD = FD->getDescribedFunctionTemplate())
6219 ParameterLists.push_back(FTD->getTemplateParameters());
6220 }
6221 }
6222
6223 if (TagDecl *TD = dyn_cast<TagDecl>(D)) {
6224 for (unsigned i = 0; i < TD->getNumTemplateParameterLists(); ++i)
6225 ParameterLists.push_back(TD->getTemplateParameterList(i));
6226
6227 if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(TD)) {
6228 if (ClassTemplateDecl *CTD = RD->getDescribedClassTemplate())
6229 ParameterLists.push_back(CTD->getTemplateParameters());
6230 }
6231 }
6232
6233 unsigned Count = 0;
6234 for (TemplateParameterList *Params : ParameterLists) {
6235 if (Params->size() > 0)
6236 // Ignore explicit specializations; they don't contribute to the template
6237 // depth.
6238 ++Count;
6239 for (NamedDecl *Param : *Params) {
6240 if (Param->getDeclName()) {
6241 S->AddDecl(Param);
6242 IdResolver.AddDecl(Param);
Francois Pichet1c229c02011-04-22 22:18:13 +00006243 }
6244 }
6245 }
Francois Pichet1c229c02011-04-22 22:18:13 +00006246
Hans Wennborgb6d4e8c2014-05-02 02:01:07 +00006247 return Count;
Douglas Gregore44a2ad2009-05-27 23:11:45 +00006248}
6249
John McCall48871652010-08-21 09:40:31 +00006250void Sema::ActOnStartDelayedMemberDeclarations(Scope *S, Decl *RecordD) {
John McCall6df5fef2009-12-19 10:49:29 +00006251 if (!RecordD) return;
6252 AdjustDeclIfTemplate(RecordD);
John McCall48871652010-08-21 09:40:31 +00006253 CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordD);
John McCall6df5fef2009-12-19 10:49:29 +00006254 PushDeclContext(S, Record);
6255}
6256
John McCall48871652010-08-21 09:40:31 +00006257void Sema::ActOnFinishDelayedMemberDeclarations(Scope *S, Decl *RecordD) {
John McCall6df5fef2009-12-19 10:49:29 +00006258 if (!RecordD) return;
6259 PopDeclContext();
6260}
6261
Nick Lewycky35a6ef42014-01-11 02:50:57 +00006262/// This is used to implement the constant expression evaluation part of the
6263/// attribute enable_if extension. There is nothing in standard C++ which would
6264/// require reentering parameters.
6265void Sema::ActOnReenterCXXMethodParameter(Scope *S, ParmVarDecl *Param) {
6266 if (!Param)
6267 return;
6268
6269 S->AddDecl(Param);
6270 if (Param->getDeclName())
6271 IdResolver.AddDecl(Param);
6272}
6273
Douglas Gregor4d87df52008-12-16 21:30:33 +00006274/// ActOnStartDelayedCXXMethodDeclaration - We have completed
6275/// parsing a top-level (non-nested) C++ class, and we are now
6276/// parsing those parts of the given Method declaration that could
6277/// not be parsed earlier (C++ [class.mem]p2), such as default
6278/// arguments. This action should enter the scope of the given
6279/// Method declaration as if we had just parsed the qualified method
6280/// name. However, it should not bring the parameters into scope;
6281/// that will be performed by ActOnDelayedCXXMethodParameter.
John McCall48871652010-08-21 09:40:31 +00006282void Sema::ActOnStartDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) {
Douglas Gregor4d87df52008-12-16 21:30:33 +00006283}
6284
6285/// ActOnDelayedCXXMethodParameter - We've already started a delayed
6286/// C++ method declaration. We're (re-)introducing the given
6287/// function parameter into scope for use in parsing later parts of
6288/// the method declaration. For example, we could see an
6289/// ActOnParamDefaultArgument event for this parameter.
John McCall48871652010-08-21 09:40:31 +00006290void Sema::ActOnDelayedCXXMethodParameter(Scope *S, Decl *ParamD) {
Douglas Gregor71a57182009-06-22 23:20:33 +00006291 if (!ParamD)
6292 return;
Mike Stump11289f42009-09-09 15:08:12 +00006293
John McCall48871652010-08-21 09:40:31 +00006294 ParmVarDecl *Param = cast<ParmVarDecl>(ParamD);
Douglas Gregor58354032008-12-24 00:01:03 +00006295
6296 // If this parameter has an unparsed default argument, clear it out
6297 // to make way for the parsed default argument.
6298 if (Param->hasUnparsedDefaultArg())
Craig Topperc3ec1492014-05-26 06:22:03 +00006299 Param->setDefaultArg(nullptr);
Douglas Gregor58354032008-12-24 00:01:03 +00006300
John McCall48871652010-08-21 09:40:31 +00006301 S->AddDecl(Param);
Douglas Gregor4d87df52008-12-16 21:30:33 +00006302 if (Param->getDeclName())
6303 IdResolver.AddDecl(Param);
6304}
6305
6306/// ActOnFinishDelayedCXXMethodDeclaration - We have finished
6307/// processing the delayed method declaration for Method. The method
6308/// declaration is now considered finished. There may be a separate
6309/// ActOnStartOfFunctionDef action later (not necessarily
6310/// immediately!) for this method, if it was also defined inside the
6311/// class body.
John McCall48871652010-08-21 09:40:31 +00006312void Sema::ActOnFinishDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) {
Douglas Gregor71a57182009-06-22 23:20:33 +00006313 if (!MethodD)
6314 return;
Mike Stump11289f42009-09-09 15:08:12 +00006315
Douglas Gregorc8c277a2009-08-24 11:57:43 +00006316 AdjustDeclIfTemplate(MethodD);
Mike Stump11289f42009-09-09 15:08:12 +00006317
John McCall48871652010-08-21 09:40:31 +00006318 FunctionDecl *Method = cast<FunctionDecl>(MethodD);
Douglas Gregor4d87df52008-12-16 21:30:33 +00006319
6320 // Now that we have our default arguments, check the constructor
6321 // again. It could produce additional diagnostics or affect whether
6322 // the class has implicitly-declared destructors, among other
6323 // things.
Chris Lattnerb41df4f2009-04-25 08:35:12 +00006324 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Method))
6325 CheckConstructor(Constructor);
Douglas Gregor4d87df52008-12-16 21:30:33 +00006326
6327 // Check the default arguments, which we may have added.
6328 if (!Method->isInvalidDecl())
6329 CheckCXXDefaultArguments(Method);
6330}
6331
Douglas Gregor831c93f2008-11-05 20:51:48 +00006332/// CheckConstructorDeclarator - Called by ActOnDeclarator to check
Douglas Gregor4d87df52008-12-16 21:30:33 +00006333/// the well-formedness of the constructor declarator @p D with type @p
Douglas Gregor831c93f2008-11-05 20:51:48 +00006334/// R. If there are any errors in the declarator, this routine will
Chris Lattner38378bf2009-04-25 08:28:21 +00006335/// emit diagnostics and set the invalid bit to true. In any case, the type
6336/// will be updated to reflect a well-formed type for the constructor and
6337/// returned.
6338QualType Sema::CheckConstructorDeclarator(Declarator &D, QualType R,
John McCall8e7d6562010-08-26 03:08:43 +00006339 StorageClass &SC) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00006340 bool isVirtual = D.getDeclSpec().isVirtualSpecified();
Douglas Gregor831c93f2008-11-05 20:51:48 +00006341
6342 // C++ [class.ctor]p3:
6343 // A constructor shall not be virtual (10.3) or static (9.4). A
6344 // constructor can be invoked for a const, volatile or const
6345 // volatile object. A constructor shall not be declared const,
6346 // volatile, or const volatile (9.3.2).
6347 if (isVirtual) {
Chris Lattner38378bf2009-04-25 08:28:21 +00006348 if (!D.isInvalidType())
6349 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
6350 << "virtual" << SourceRange(D.getDeclSpec().getVirtualSpecLoc())
6351 << SourceRange(D.getIdentifierLoc());
6352 D.setInvalidType();
Douglas Gregor831c93f2008-11-05 20:51:48 +00006353 }
John McCall8e7d6562010-08-26 03:08:43 +00006354 if (SC == SC_Static) {
Chris Lattner38378bf2009-04-25 08:28:21 +00006355 if (!D.isInvalidType())
6356 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
6357 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
6358 << SourceRange(D.getIdentifierLoc());
6359 D.setInvalidType();
John McCall8e7d6562010-08-26 03:08:43 +00006360 SC = SC_None;
Douglas Gregor831c93f2008-11-05 20:51:48 +00006361 }
Mike Stump11289f42009-09-09 15:08:12 +00006362
David Majnemer03f705f2014-07-08 18:18:04 +00006363 if (unsigned TypeQuals = D.getDeclSpec().getTypeQualifiers()) {
6364 diagnoseIgnoredQualifiers(
6365 diag::err_constructor_return_type, TypeQuals, SourceLocation(),
6366 D.getDeclSpec().getConstSpecLoc(), D.getDeclSpec().getVolatileSpecLoc(),
6367 D.getDeclSpec().getRestrictSpecLoc(),
6368 D.getDeclSpec().getAtomicSpecLoc());
6369 D.setInvalidType();
6370 }
6371
Abramo Bagnara924a8f32010-12-10 16:29:40 +00006372 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
Chris Lattner38378bf2009-04-25 08:28:21 +00006373 if (FTI.TypeQuals != 0) {
John McCall8ccfcb52009-09-24 19:53:00 +00006374 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattner3b054132008-11-19 05:08:23 +00006375 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
6376 << "const" << SourceRange(D.getIdentifierLoc());
John McCall8ccfcb52009-09-24 19:53:00 +00006377 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattner3b054132008-11-19 05:08:23 +00006378 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
6379 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall8ccfcb52009-09-24 19:53:00 +00006380 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattner3b054132008-11-19 05:08:23 +00006381 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
6382 << "restrict" << SourceRange(D.getIdentifierLoc());
John McCalldb40c7f2010-12-14 08:05:40 +00006383 D.setInvalidType();
Douglas Gregor831c93f2008-11-05 20:51:48 +00006384 }
Mike Stump11289f42009-09-09 15:08:12 +00006385
Douglas Gregordb9d6642011-01-26 05:01:58 +00006386 // C++0x [class.ctor]p4:
6387 // A constructor shall not be declared with a ref-qualifier.
6388 if (FTI.hasRefQualifier()) {
6389 Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_constructor)
6390 << FTI.RefQualifierIsLValueRef
6391 << FixItHint::CreateRemoval(FTI.getRefQualifierLoc());
6392 D.setInvalidType();
6393 }
6394
Douglas Gregor831c93f2008-11-05 20:51:48 +00006395 // Rebuild the function type "R" without any type qualifiers (in
6396 // case any of the errors above fired) and with "void" as the
Douglas Gregor95755162010-07-01 05:10:53 +00006397 // return type, since constructors don't have return types.
John McCall9dd450b2009-09-21 23:43:11 +00006398 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
Alp Toker314cc812014-01-25 16:55:45 +00006399 if (Proto->getReturnType() == Context.VoidTy && !D.isInvalidType())
John McCalldb40c7f2010-12-14 08:05:40 +00006400 return R;
6401
6402 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
6403 EPI.TypeQuals = 0;
Douglas Gregordb9d6642011-01-26 05:01:58 +00006404 EPI.RefQualifier = RQ_None;
Alp Toker9cacbab2014-01-20 20:26:09 +00006405
6406 return Context.getFunctionType(Context.VoidTy, Proto->getParamTypes(), EPI);
Douglas Gregor831c93f2008-11-05 20:51:48 +00006407}
6408
Douglas Gregor4d87df52008-12-16 21:30:33 +00006409/// CheckConstructor - Checks a fully-formed constructor for
6410/// well-formedness, issuing any diagnostics required. Returns true if
6411/// the constructor declarator is invalid.
Chris Lattnerb41df4f2009-04-25 08:35:12 +00006412void Sema::CheckConstructor(CXXConstructorDecl *Constructor) {
Mike Stump11289f42009-09-09 15:08:12 +00006413 CXXRecordDecl *ClassDecl
Douglas Gregorf4d17c42009-03-27 04:38:56 +00006414 = dyn_cast<CXXRecordDecl>(Constructor->getDeclContext());
6415 if (!ClassDecl)
Chris Lattnerb41df4f2009-04-25 08:35:12 +00006416 return Constructor->setInvalidDecl();
Douglas Gregor4d87df52008-12-16 21:30:33 +00006417
6418 // C++ [class.copy]p3:
6419 // A declaration of a constructor for a class X is ill-formed if
6420 // its first parameter is of type (optionally cv-qualified) X and
6421 // either there are no other parameters or else all other
6422 // parameters have default arguments.
Douglas Gregorf4d17c42009-03-27 04:38:56 +00006423 if (!Constructor->isInvalidDecl() &&
Mike Stump11289f42009-09-09 15:08:12 +00006424 ((Constructor->getNumParams() == 1) ||
6425 (Constructor->getNumParams() > 1 &&
Douglas Gregorffe14e32009-11-14 01:20:54 +00006426 Constructor->getParamDecl(1)->hasDefaultArg())) &&
6427 Constructor->getTemplateSpecializationKind()
6428 != TSK_ImplicitInstantiation) {
Douglas Gregor4d87df52008-12-16 21:30:33 +00006429 QualType ParamType = Constructor->getParamDecl(0)->getType();
6430 QualType ClassTy = Context.getTagDeclType(ClassDecl);
6431 if (Context.getCanonicalType(ParamType).getUnqualifiedType() == ClassTy) {
Douglas Gregor170512f2009-04-01 23:51:29 +00006432 SourceLocation ParamLoc = Constructor->getParamDecl(0)->getLocation();
Douglas Gregorfd42e952010-05-27 21:28:21 +00006433 const char *ConstRef
6434 = Constructor->getParamDecl(0)->getIdentifier() ? "const &"
6435 : " const &";
Douglas Gregor170512f2009-04-01 23:51:29 +00006436 Diag(ParamLoc, diag::err_constructor_byvalue_arg)
Douglas Gregorfd42e952010-05-27 21:28:21 +00006437 << FixItHint::CreateInsertion(ParamLoc, ConstRef);
Douglas Gregorffe14e32009-11-14 01:20:54 +00006438
6439 // FIXME: Rather that making the constructor invalid, we should endeavor
6440 // to fix the type.
Chris Lattnerb41df4f2009-04-25 08:35:12 +00006441 Constructor->setInvalidDecl();
Douglas Gregor4d87df52008-12-16 21:30:33 +00006442 }
6443 }
Douglas Gregor4d87df52008-12-16 21:30:33 +00006444}
6445
John McCalldeb646e2010-08-04 01:04:25 +00006446/// CheckDestructor - Checks a fully-formed destructor definition for
6447/// well-formedness, issuing any diagnostics required. Returns true
6448/// on error.
Anders Carlssonf98849e2009-12-02 17:15:43 +00006449bool Sema::CheckDestructor(CXXDestructorDecl *Destructor) {
Anders Carlsson2a50e952009-11-15 22:49:34 +00006450 CXXRecordDecl *RD = Destructor->getParent();
6451
Peter Collingbourneb289fe62013-05-20 14:12:25 +00006452 if (!Destructor->getOperatorDelete() && Destructor->isVirtual()) {
Anders Carlsson2a50e952009-11-15 22:49:34 +00006453 SourceLocation Loc;
6454
6455 if (!Destructor->isImplicit())
6456 Loc = Destructor->getLocation();
6457 else
6458 Loc = RD->getLocation();
6459
6460 // If we have a virtual destructor, look up the deallocation function
Craig Topperc3ec1492014-05-26 06:22:03 +00006461 FunctionDecl *OperatorDelete = nullptr;
Anders Carlsson2a50e952009-11-15 22:49:34 +00006462 DeclarationName Name =
6463 Context.DeclarationNames.getCXXOperatorName(OO_Delete);
Anders Carlssonf98849e2009-12-02 17:15:43 +00006464 if (FindDeallocationFunction(Loc, RD, Name, OperatorDelete))
Anders Carlsson26a807d2009-11-30 21:24:50 +00006465 return true;
Richard Smithf03bd302013-12-05 08:30:59 +00006466 // If there's no class-specific operator delete, look up the global
6467 // non-array delete.
6468 if (!OperatorDelete)
6469 OperatorDelete = FindUsualDeallocationFunction(Loc, true, Name);
John McCall1e5d75d2010-07-03 18:33:00 +00006470
Eli Friedmanfa0df832012-02-02 03:46:19 +00006471 MarkFunctionReferenced(Loc, OperatorDelete);
Anders Carlsson26a807d2009-11-30 21:24:50 +00006472
6473 Destructor->setOperatorDelete(OperatorDelete);
Anders Carlsson2a50e952009-11-15 22:49:34 +00006474 }
Anders Carlsson26a807d2009-11-30 21:24:50 +00006475
6476 return false;
Anders Carlsson2a50e952009-11-15 22:49:34 +00006477}
6478
Douglas Gregor831c93f2008-11-05 20:51:48 +00006479/// CheckDestructorDeclarator - Called by ActOnDeclarator to check
6480/// the well-formednes of the destructor declarator @p D with type @p
6481/// R. If there are any errors in the declarator, this routine will
Chris Lattner38378bf2009-04-25 08:28:21 +00006482/// emit diagnostics and set the declarator to invalid. Even if this happens,
6483/// will be updated to reflect a well-formed type for the destructor and
6484/// returned.
Douglas Gregor95755162010-07-01 05:10:53 +00006485QualType Sema::CheckDestructorDeclarator(Declarator &D, QualType R,
John McCall8e7d6562010-08-26 03:08:43 +00006486 StorageClass& SC) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00006487 // C++ [class.dtor]p1:
6488 // [...] A typedef-name that names a class is a class-name
6489 // (7.1.3); however, a typedef-name that names a class shall not
6490 // be used as the identifier in the declarator for a destructor
6491 // declaration.
Douglas Gregor7861a802009-11-03 01:35:08 +00006492 QualType DeclaratorType = GetTypeFromParser(D.getName().DestructorName);
Richard Smithdda56e42011-04-15 14:24:37 +00006493 if (const TypedefType *TT = DeclaratorType->getAs<TypedefType>())
Chris Lattner38378bf2009-04-25 08:28:21 +00006494 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
Richard Smithdda56e42011-04-15 14:24:37 +00006495 << DeclaratorType << isa<TypeAliasDecl>(TT->getDecl());
Richard Smith3f1b5d02011-05-05 21:57:07 +00006496 else if (const TemplateSpecializationType *TST =
6497 DeclaratorType->getAs<TemplateSpecializationType>())
6498 if (TST->isTypeAlias())
6499 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
6500 << DeclaratorType << 1;
Douglas Gregor831c93f2008-11-05 20:51:48 +00006501
6502 // C++ [class.dtor]p2:
6503 // A destructor is used to destroy objects of its class type. A
6504 // destructor takes no parameters, and no return type can be
6505 // specified for it (not even void). The address of a destructor
6506 // shall not be taken. A destructor shall not be static. A
6507 // destructor can be invoked for a const, volatile or const
6508 // volatile object. A destructor shall not be declared const,
6509 // volatile or const volatile (9.3.2).
John McCall8e7d6562010-08-26 03:08:43 +00006510 if (SC == SC_Static) {
Chris Lattner38378bf2009-04-25 08:28:21 +00006511 if (!D.isInvalidType())
6512 Diag(D.getIdentifierLoc(), diag::err_destructor_cannot_be)
6513 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
Douglas Gregor95755162010-07-01 05:10:53 +00006514 << SourceRange(D.getIdentifierLoc())
6515 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
6516
John McCall8e7d6562010-08-26 03:08:43 +00006517 SC = SC_None;
Douglas Gregor831c93f2008-11-05 20:51:48 +00006518 }
David Majnemer03f705f2014-07-08 18:18:04 +00006519 if (!D.isInvalidType()) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00006520 // Destructors don't have return types, but the parser will
6521 // happily parse something like:
6522 //
6523 // class X {
6524 // float ~X();
6525 // };
6526 //
6527 // The return type will be eliminated later.
David Majnemer03f705f2014-07-08 18:18:04 +00006528 if (D.getDeclSpec().hasTypeSpecifier())
6529 Diag(D.getIdentifierLoc(), diag::err_destructor_return_type)
6530 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
6531 << SourceRange(D.getIdentifierLoc());
6532 else if (unsigned TypeQuals = D.getDeclSpec().getTypeQualifiers()) {
6533 diagnoseIgnoredQualifiers(diag::err_destructor_return_type, TypeQuals,
6534 SourceLocation(),
6535 D.getDeclSpec().getConstSpecLoc(),
6536 D.getDeclSpec().getVolatileSpecLoc(),
6537 D.getDeclSpec().getRestrictSpecLoc(),
6538 D.getDeclSpec().getAtomicSpecLoc());
6539 D.setInvalidType();
6540 }
Douglas Gregor831c93f2008-11-05 20:51:48 +00006541 }
Mike Stump11289f42009-09-09 15:08:12 +00006542
Abramo Bagnara924a8f32010-12-10 16:29:40 +00006543 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
Chris Lattner38378bf2009-04-25 08:28:21 +00006544 if (FTI.TypeQuals != 0 && !D.isInvalidType()) {
John McCall8ccfcb52009-09-24 19:53:00 +00006545 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattner3b054132008-11-19 05:08:23 +00006546 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
6547 << "const" << SourceRange(D.getIdentifierLoc());
John McCall8ccfcb52009-09-24 19:53:00 +00006548 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattner3b054132008-11-19 05:08:23 +00006549 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
6550 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall8ccfcb52009-09-24 19:53:00 +00006551 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattner3b054132008-11-19 05:08:23 +00006552 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
6553 << "restrict" << SourceRange(D.getIdentifierLoc());
Chris Lattner38378bf2009-04-25 08:28:21 +00006554 D.setInvalidType();
Douglas Gregor831c93f2008-11-05 20:51:48 +00006555 }
6556
Douglas Gregordb9d6642011-01-26 05:01:58 +00006557 // C++0x [class.dtor]p2:
6558 // A destructor shall not be declared with a ref-qualifier.
6559 if (FTI.hasRefQualifier()) {
6560 Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_destructor)
6561 << FTI.RefQualifierIsLValueRef
6562 << FixItHint::CreateRemoval(FTI.getRefQualifierLoc());
6563 D.setInvalidType();
6564 }
6565
Douglas Gregor831c93f2008-11-05 20:51:48 +00006566 // Make sure we don't have any parameters.
Alp Toker4284c6e2014-05-11 16:05:55 +00006567 if (FTIHasNonVoidParameters(FTI)) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00006568 Diag(D.getIdentifierLoc(), diag::err_destructor_with_params);
6569
6570 // Delete the parameters.
Alp Tokerc5350722014-02-26 22:27:52 +00006571 FTI.freeParams();
Chris Lattner38378bf2009-04-25 08:28:21 +00006572 D.setInvalidType();
Douglas Gregor831c93f2008-11-05 20:51:48 +00006573 }
6574
Mike Stump11289f42009-09-09 15:08:12 +00006575 // Make sure the destructor isn't variadic.
Chris Lattner38378bf2009-04-25 08:28:21 +00006576 if (FTI.isVariadic) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00006577 Diag(D.getIdentifierLoc(), diag::err_destructor_variadic);
Chris Lattner38378bf2009-04-25 08:28:21 +00006578 D.setInvalidType();
6579 }
Douglas Gregor831c93f2008-11-05 20:51:48 +00006580
6581 // Rebuild the function type "R" without any type qualifiers or
6582 // parameters (in case any of the errors above fired) and with
6583 // "void" as the return type, since destructors don't have return
Douglas Gregor95755162010-07-01 05:10:53 +00006584 // types.
John McCalldb40c7f2010-12-14 08:05:40 +00006585 if (!D.isInvalidType())
6586 return R;
6587
Douglas Gregor95755162010-07-01 05:10:53 +00006588 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
John McCalldb40c7f2010-12-14 08:05:40 +00006589 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
6590 EPI.Variadic = false;
6591 EPI.TypeQuals = 0;
Douglas Gregordb9d6642011-01-26 05:01:58 +00006592 EPI.RefQualifier = RQ_None;
Dmitri Gribenko44ebbd52013-05-05 00:41:58 +00006593 return Context.getFunctionType(Context.VoidTy, None, EPI);
Douglas Gregor831c93f2008-11-05 20:51:48 +00006594}
6595
Douglas Gregordbc5daf2008-11-07 20:08:42 +00006596/// CheckConversionDeclarator - Called by ActOnDeclarator to check the
6597/// well-formednes of the conversion function declarator @p D with
6598/// type @p R. If there are any errors in the declarator, this routine
6599/// will emit diagnostics and return true. Otherwise, it will return
6600/// false. Either way, the type @p R will be updated to reflect a
6601/// well-formed type for the conversion operator.
Chris Lattnerb41df4f2009-04-25 08:35:12 +00006602void Sema::CheckConversionDeclarator(Declarator &D, QualType &R,
John McCall8e7d6562010-08-26 03:08:43 +00006603 StorageClass& SC) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00006604 // C++ [class.conv.fct]p1:
6605 // Neither parameter types nor return type can be specified. The
Eli Friedman44b83ee2009-08-05 19:21:58 +00006606 // type of a conversion function (8.3.5) is "function taking no
Mike Stump11289f42009-09-09 15:08:12 +00006607 // parameter returning conversion-type-id."
John McCall8e7d6562010-08-26 03:08:43 +00006608 if (SC == SC_Static) {
Chris Lattnerb41df4f2009-04-25 08:35:12 +00006609 if (!D.isInvalidType())
6610 Diag(D.getIdentifierLoc(), diag::err_conv_function_not_member)
Eli Friedman600bc242013-06-20 20:58:02 +00006611 << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
6612 << D.getName().getSourceRange();
Chris Lattnerb41df4f2009-04-25 08:35:12 +00006613 D.setInvalidType();
John McCall8e7d6562010-08-26 03:08:43 +00006614 SC = SC_None;
Douglas Gregordbc5daf2008-11-07 20:08:42 +00006615 }
John McCall212fa2e2010-04-13 00:04:31 +00006616
6617 QualType ConvType = GetTypeFromParser(D.getName().ConversionFunctionId);
6618
Chris Lattnerb41df4f2009-04-25 08:35:12 +00006619 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00006620 // Conversion functions don't have return types, but the parser will
6621 // happily parse something like:
6622 //
6623 // class X {
6624 // float operator bool();
6625 // };
6626 //
6627 // The return type will be changed later anyway.
Chris Lattner3b054132008-11-19 05:08:23 +00006628 Diag(D.getIdentifierLoc(), diag::err_conv_function_return_type)
6629 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
6630 << SourceRange(D.getIdentifierLoc());
John McCall212fa2e2010-04-13 00:04:31 +00006631 D.setInvalidType();
Douglas Gregordbc5daf2008-11-07 20:08:42 +00006632 }
6633
John McCall212fa2e2010-04-13 00:04:31 +00006634 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
6635
Douglas Gregordbc5daf2008-11-07 20:08:42 +00006636 // Make sure we don't have any parameters.
Alp Toker9cacbab2014-01-20 20:26:09 +00006637 if (Proto->getNumParams() > 0) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00006638 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_params);
6639
6640 // Delete the parameters.
Alp Tokerc5350722014-02-26 22:27:52 +00006641 D.getFunctionTypeInfo().freeParams();
Chris Lattnerb41df4f2009-04-25 08:35:12 +00006642 D.setInvalidType();
John McCall212fa2e2010-04-13 00:04:31 +00006643 } else if (Proto->isVariadic()) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00006644 Diag(D.getIdentifierLoc(), diag::err_conv_function_variadic);
Chris Lattnerb41df4f2009-04-25 08:35:12 +00006645 D.setInvalidType();
6646 }
Douglas Gregordbc5daf2008-11-07 20:08:42 +00006647
John McCall212fa2e2010-04-13 00:04:31 +00006648 // Diagnose "&operator bool()" and other such nonsense. This
6649 // is actually a gcc extension which we don't support.
Alp Toker314cc812014-01-25 16:55:45 +00006650 if (Proto->getReturnType() != ConvType) {
John McCall212fa2e2010-04-13 00:04:31 +00006651 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_complex_decl)
Alp Toker314cc812014-01-25 16:55:45 +00006652 << Proto->getReturnType();
John McCall212fa2e2010-04-13 00:04:31 +00006653 D.setInvalidType();
Alp Toker314cc812014-01-25 16:55:45 +00006654 ConvType = Proto->getReturnType();
John McCall212fa2e2010-04-13 00:04:31 +00006655 }
6656
Douglas Gregordbc5daf2008-11-07 20:08:42 +00006657 // C++ [class.conv.fct]p4:
6658 // The conversion-type-id shall not represent a function type nor
6659 // an array type.
Douglas Gregordbc5daf2008-11-07 20:08:42 +00006660 if (ConvType->isArrayType()) {
6661 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_array);
6662 ConvType = Context.getPointerType(ConvType);
Chris Lattnerb41df4f2009-04-25 08:35:12 +00006663 D.setInvalidType();
Douglas Gregordbc5daf2008-11-07 20:08:42 +00006664 } else if (ConvType->isFunctionType()) {
6665 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_function);
6666 ConvType = Context.getPointerType(ConvType);
Chris Lattnerb41df4f2009-04-25 08:35:12 +00006667 D.setInvalidType();
Douglas Gregordbc5daf2008-11-07 20:08:42 +00006668 }
6669
6670 // Rebuild the function type "R" without any parameters (in case any
6671 // of the errors above fired) and with the conversion type as the
Mike Stump11289f42009-09-09 15:08:12 +00006672 // return type.
John McCalldb40c7f2010-12-14 08:05:40 +00006673 if (D.isInvalidType())
Dmitri Gribenko44ebbd52013-05-05 00:41:58 +00006674 R = Context.getFunctionType(ConvType, None, Proto->getExtProtoInfo());
Douglas Gregordbc5daf2008-11-07 20:08:42 +00006675
Douglas Gregor5fb53972009-01-14 15:45:31 +00006676 // C++0x explicit conversion operators.
Richard Smith0bf8a4922011-10-18 20:49:44 +00006677 if (D.getDeclSpec().isExplicitSpecified())
Mike Stump11289f42009-09-09 15:08:12 +00006678 Diag(D.getDeclSpec().getExplicitSpecLoc(),
Richard Smith2bf7fdb2013-01-02 11:42:31 +00006679 getLangOpts().CPlusPlus11 ?
Richard Smith0bf8a4922011-10-18 20:49:44 +00006680 diag::warn_cxx98_compat_explicit_conversion_functions :
6681 diag::ext_explicit_conversion_functions)
Douglas Gregor5fb53972009-01-14 15:45:31 +00006682 << SourceRange(D.getDeclSpec().getExplicitSpecLoc());
Douglas Gregordbc5daf2008-11-07 20:08:42 +00006683}
6684
Douglas Gregordbc5daf2008-11-07 20:08:42 +00006685/// ActOnConversionDeclarator - Called by ActOnDeclarator to complete
6686/// the declaration of the given C++ conversion function. This routine
6687/// is responsible for recording the conversion function in the C++
6688/// class, if possible.
John McCall48871652010-08-21 09:40:31 +00006689Decl *Sema::ActOnConversionDeclarator(CXXConversionDecl *Conversion) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00006690 assert(Conversion && "Expected to receive a conversion function declaration");
6691
Douglas Gregor4287b372008-12-12 08:25:50 +00006692 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Conversion->getDeclContext());
Douglas Gregordbc5daf2008-11-07 20:08:42 +00006693
6694 // Make sure we aren't redeclaring the conversion function.
6695 QualType ConvType = Context.getCanonicalType(Conversion->getConversionType());
Douglas Gregordbc5daf2008-11-07 20:08:42 +00006696
6697 // C++ [class.conv.fct]p1:
6698 // [...] A conversion function is never used to convert a
6699 // (possibly cv-qualified) object to the (possibly cv-qualified)
6700 // same object type (or a reference to it), to a (possibly
6701 // cv-qualified) base class of that type (or a reference to it),
6702 // or to (possibly cv-qualified) void.
Mike Stump87c57ac2009-05-16 07:39:55 +00006703 // FIXME: Suppress this warning if the conversion function ends up being a
6704 // virtual function that overrides a virtual function in a base class.
Mike Stump11289f42009-09-09 15:08:12 +00006705 QualType ClassType
Douglas Gregordbc5daf2008-11-07 20:08:42 +00006706 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Ted Kremenekc23c7e62009-07-29 21:53:49 +00006707 if (const ReferenceType *ConvTypeRef = ConvType->getAs<ReferenceType>())
Douglas Gregordbc5daf2008-11-07 20:08:42 +00006708 ConvType = ConvTypeRef->getPointeeType();
Douglas Gregor6309e3d2010-09-12 07:22:28 +00006709 if (Conversion->getTemplateSpecializationKind() != TSK_Undeclared &&
6710 Conversion->getTemplateSpecializationKind() != TSK_ExplicitSpecialization)
Douglas Gregore47191c2010-09-13 16:44:26 +00006711 /* Suppress diagnostics for instantiations. */;
Douglas Gregor6309e3d2010-09-12 07:22:28 +00006712 else if (ConvType->isRecordType()) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00006713 ConvType = Context.getCanonicalType(ConvType).getUnqualifiedType();
6714 if (ConvType == ClassType)
Chris Lattnerf7e3f6d2008-11-20 06:13:02 +00006715 Diag(Conversion->getLocation(), diag::warn_conv_to_self_not_used)
Chris Lattner1e5665e2008-11-24 06:25:27 +00006716 << ClassType;
Douglas Gregordbc5daf2008-11-07 20:08:42 +00006717 else if (IsDerivedFrom(ClassType, ConvType))
Chris Lattnerf7e3f6d2008-11-20 06:13:02 +00006718 Diag(Conversion->getLocation(), diag::warn_conv_to_base_not_used)
Chris Lattner1e5665e2008-11-24 06:25:27 +00006719 << ClassType << ConvType;
Douglas Gregordbc5daf2008-11-07 20:08:42 +00006720 } else if (ConvType->isVoidType()) {
Chris Lattnerf7e3f6d2008-11-20 06:13:02 +00006721 Diag(Conversion->getLocation(), diag::warn_conv_to_void_not_used)
Chris Lattner1e5665e2008-11-24 06:25:27 +00006722 << ClassType << ConvType;
Douglas Gregordbc5daf2008-11-07 20:08:42 +00006723 }
6724
Douglas Gregor457104e2010-09-29 04:25:11 +00006725 if (FunctionTemplateDecl *ConversionTemplate
6726 = Conversion->getDescribedFunctionTemplate())
6727 return ConversionTemplate;
6728
John McCall48871652010-08-21 09:40:31 +00006729 return Conversion;
Douglas Gregordbc5daf2008-11-07 20:08:42 +00006730}
6731
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00006732//===----------------------------------------------------------------------===//
6733// Namespace Handling
6734//===----------------------------------------------------------------------===//
6735
Richard Smith45bb8852012-10-04 22:13:39 +00006736/// \brief Diagnose a mismatch in 'inline' qualifiers when a namespace is
6737/// reopened.
6738static void DiagnoseNamespaceInlineMismatch(Sema &S, SourceLocation KeywordLoc,
6739 SourceLocation Loc,
6740 IdentifierInfo *II, bool *IsInline,
6741 NamespaceDecl *PrevNS) {
6742 assert(*IsInline != PrevNS->isInline());
John McCallb1be5232010-08-26 09:15:37 +00006743
Richard Smithf501cc32012-10-05 01:46:25 +00006744 // HACK: Work around a bug in libstdc++4.6's <atomic>, where
6745 // std::__atomic[0,1,2] are defined as non-inline namespaces, then reopened as
6746 // inline namespaces, with the intention of bringing names into namespace std.
6747 //
6748 // We support this just well enough to get that case working; this is not
6749 // sufficient to support reopening namespaces as inline in general.
Richard Smith45bb8852012-10-04 22:13:39 +00006750 if (*IsInline && II && II->getName().startswith("__atomic") &&
6751 S.getSourceManager().isInSystemHeader(Loc)) {
Richard Smithf501cc32012-10-05 01:46:25 +00006752 // Mark all prior declarations of the namespace as inline.
Richard Smith45bb8852012-10-04 22:13:39 +00006753 for (NamespaceDecl *NS = PrevNS->getMostRecentDecl(); NS;
6754 NS = NS->getPreviousDecl())
6755 NS->setInline(*IsInline);
6756 // Patch up the lookup table for the containing namespace. This isn't really
6757 // correct, but it's good enough for this particular case.
Aaron Ballman629afae2014-03-07 19:56:05 +00006758 for (auto *I : PrevNS->decls())
6759 if (auto *ND = dyn_cast<NamedDecl>(I))
Richard Smith45bb8852012-10-04 22:13:39 +00006760 PrevNS->getParent()->makeDeclVisibleInContext(ND);
6761 return;
6762 }
6763
6764 if (PrevNS->isInline())
6765 // The user probably just forgot the 'inline', so suggest that it
6766 // be added back.
6767 S.Diag(Loc, diag::warn_inline_namespace_reopened_noninline)
6768 << FixItHint::CreateInsertion(KeywordLoc, "inline ");
6769 else
Richard Smith5b5d21e2014-03-12 23:36:42 +00006770 S.Diag(Loc, diag::err_inline_namespace_mismatch) << *IsInline;
Richard Smith45bb8852012-10-04 22:13:39 +00006771
6772 S.Diag(PrevNS->getLocation(), diag::note_previous_definition);
6773 *IsInline = PrevNS->isInline();
6774}
John McCallb1be5232010-08-26 09:15:37 +00006775
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00006776/// ActOnStartNamespaceDef - This is called at the start of a namespace
6777/// definition.
John McCall48871652010-08-21 09:40:31 +00006778Decl *Sema::ActOnStartNamespaceDef(Scope *NamespcScope,
Sebastian Redl67667942010-08-27 23:12:46 +00006779 SourceLocation InlineLoc,
Abramo Bagnarab5545be2011-03-08 12:38:20 +00006780 SourceLocation NamespaceLoc,
John McCallb1be5232010-08-26 09:15:37 +00006781 SourceLocation IdentLoc,
6782 IdentifierInfo *II,
6783 SourceLocation LBrace,
6784 AttributeList *AttrList) {
Abramo Bagnarab5545be2011-03-08 12:38:20 +00006785 SourceLocation StartLoc = InlineLoc.isValid() ? InlineLoc : NamespaceLoc;
6786 // For anonymous namespace, take the location of the left brace.
6787 SourceLocation Loc = II ? IdentLoc : LBrace;
Douglas Gregore57e7522012-01-07 09:11:48 +00006788 bool IsInline = InlineLoc.isValid();
Douglas Gregor21b3b292012-01-10 22:14:10 +00006789 bool IsInvalid = false;
Douglas Gregore57e7522012-01-07 09:11:48 +00006790 bool IsStd = false;
6791 bool AddToKnown = false;
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00006792 Scope *DeclRegionScope = NamespcScope->getParent();
6793
Craig Topperc3ec1492014-05-26 06:22:03 +00006794 NamespaceDecl *PrevNS = nullptr;
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00006795 if (II) {
6796 // C++ [namespace.def]p2:
Douglas Gregor412c3622010-10-22 15:24:46 +00006797 // The identifier in an original-namespace-definition shall not
6798 // have been previously defined in the declarative region in
6799 // which the original-namespace-definition appears. The
6800 // identifier in an original-namespace-definition is the name of
6801 // the namespace. Subsequently in that declarative region, it is
6802 // treated as an original-namespace-name.
6803 //
6804 // Since namespace names are unique in their scope, and we don't
Douglas Gregorb578fbe2011-05-06 23:28:47 +00006805 // look through using directives, just look for any ordinary names.
6806
6807 const unsigned IDNS = Decl::IDNS_Ordinary | Decl::IDNS_Member |
Douglas Gregore57e7522012-01-07 09:11:48 +00006808 Decl::IDNS_Type | Decl::IDNS_Using | Decl::IDNS_Tag |
6809 Decl::IDNS_Namespace;
Craig Topperc3ec1492014-05-26 06:22:03 +00006810 NamedDecl *PrevDecl = nullptr;
David Blaikieff7d47a2012-12-19 00:45:41 +00006811 DeclContext::lookup_result R = CurContext->getRedeclContext()->lookup(II);
6812 for (DeclContext::lookup_iterator I = R.begin(), E = R.end(); I != E;
6813 ++I) {
6814 if ((*I)->getIdentifierNamespace() & IDNS) {
6815 PrevDecl = *I;
Douglas Gregorb578fbe2011-05-06 23:28:47 +00006816 break;
6817 }
6818 }
6819
Douglas Gregore57e7522012-01-07 09:11:48 +00006820 PrevNS = dyn_cast_or_null<NamespaceDecl>(PrevDecl);
6821
6822 if (PrevNS) {
Douglas Gregor91f84212008-12-11 16:49:14 +00006823 // This is an extended namespace definition.
Richard Smith45bb8852012-10-04 22:13:39 +00006824 if (IsInline != PrevNS->isInline())
6825 DiagnoseNamespaceInlineMismatch(*this, NamespaceLoc, Loc, II,
6826 &IsInline, PrevNS);
Douglas Gregor91f84212008-12-11 16:49:14 +00006827 } else if (PrevDecl) {
6828 // This is an invalid name redefinition.
Douglas Gregore57e7522012-01-07 09:11:48 +00006829 Diag(Loc, diag::err_redefinition_different_kind)
6830 << II;
Douglas Gregor91f84212008-12-11 16:49:14 +00006831 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Douglas Gregor21b3b292012-01-10 22:14:10 +00006832 IsInvalid = true;
Douglas Gregor91f84212008-12-11 16:49:14 +00006833 // Continue on to push Namespc as current DeclContext and return it.
Douglas Gregore57e7522012-01-07 09:11:48 +00006834 } else if (II->isStr("std") &&
Sebastian Redl50c68252010-08-31 00:36:30 +00006835 CurContext->getRedeclContext()->isTranslationUnit()) {
Douglas Gregor87f54062009-09-15 22:30:29 +00006836 // This is the first "real" definition of the namespace "std", so update
6837 // our cache of the "std" namespace to point at this definition.
Douglas Gregore57e7522012-01-07 09:11:48 +00006838 PrevNS = getStdNamespace();
6839 IsStd = true;
6840 AddToKnown = !IsInline;
6841 } else {
6842 // We've seen this namespace for the first time.
6843 AddToKnown = !IsInline;
Mike Stump11289f42009-09-09 15:08:12 +00006844 }
Douglas Gregor91f84212008-12-11 16:49:14 +00006845 } else {
John McCall4fa53422009-10-01 00:25:31 +00006846 // Anonymous namespaces.
Douglas Gregore57e7522012-01-07 09:11:48 +00006847
6848 // Determine whether the parent already has an anonymous namespace.
Sebastian Redl50c68252010-08-31 00:36:30 +00006849 DeclContext *Parent = CurContext->getRedeclContext();
John McCall0db42252009-12-16 02:06:49 +00006850 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
Douglas Gregore57e7522012-01-07 09:11:48 +00006851 PrevNS = TU->getAnonymousNamespace();
John McCall0db42252009-12-16 02:06:49 +00006852 } else {
6853 NamespaceDecl *ND = cast<NamespaceDecl>(Parent);
Douglas Gregore57e7522012-01-07 09:11:48 +00006854 PrevNS = ND->getAnonymousNamespace();
John McCall0db42252009-12-16 02:06:49 +00006855 }
6856
Richard Smith45bb8852012-10-04 22:13:39 +00006857 if (PrevNS && IsInline != PrevNS->isInline())
6858 DiagnoseNamespaceInlineMismatch(*this, NamespaceLoc, NamespaceLoc, II,
6859 &IsInline, PrevNS);
Douglas Gregore57e7522012-01-07 09:11:48 +00006860 }
6861
6862 NamespaceDecl *Namespc = NamespaceDecl::Create(Context, CurContext, IsInline,
6863 StartLoc, Loc, II, PrevNS);
Douglas Gregor21b3b292012-01-10 22:14:10 +00006864 if (IsInvalid)
6865 Namespc->setInvalidDecl();
Douglas Gregore57e7522012-01-07 09:11:48 +00006866
6867 ProcessDeclAttributeList(DeclRegionScope, Namespc, AttrList);
Sebastian Redlb5c2baa2010-08-31 00:36:36 +00006868
Douglas Gregore57e7522012-01-07 09:11:48 +00006869 // FIXME: Should we be merging attributes?
6870 if (const VisibilityAttr *Attr = Namespc->getAttr<VisibilityAttr>())
Rafael Espindola6d65d7b2012-02-01 23:24:59 +00006871 PushNamespaceVisibilityAttr(Attr, Loc);
Douglas Gregore57e7522012-01-07 09:11:48 +00006872
6873 if (IsStd)
6874 StdNamespace = Namespc;
6875 if (AddToKnown)
6876 KnownNamespaces[Namespc] = false;
6877
6878 if (II) {
6879 PushOnScopeChains(Namespc, DeclRegionScope);
6880 } else {
6881 // Link the anonymous namespace into its parent.
6882 DeclContext *Parent = CurContext->getRedeclContext();
6883 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) {
6884 TU->setAnonymousNamespace(Namespc);
6885 } else {
6886 cast<NamespaceDecl>(Parent)->setAnonymousNamespace(Namespc);
John McCall0db42252009-12-16 02:06:49 +00006887 }
John McCall4fa53422009-10-01 00:25:31 +00006888
Douglas Gregorf9f54ea2010-03-24 00:46:35 +00006889 CurContext->addDecl(Namespc);
6890
John McCall4fa53422009-10-01 00:25:31 +00006891 // C++ [namespace.unnamed]p1. An unnamed-namespace-definition
6892 // behaves as if it were replaced by
6893 // namespace unique { /* empty body */ }
6894 // using namespace unique;
6895 // namespace unique { namespace-body }
6896 // where all occurrences of 'unique' in a translation unit are
6897 // replaced by the same identifier and this identifier differs
6898 // from all other identifiers in the entire program.
6899
6900 // We just create the namespace with an empty name and then add an
6901 // implicit using declaration, just like the standard suggests.
6902 //
6903 // CodeGen enforces the "universally unique" aspect by giving all
6904 // declarations semantically contained within an anonymous
6905 // namespace internal linkage.
6906
Douglas Gregore57e7522012-01-07 09:11:48 +00006907 if (!PrevNS) {
John McCall0db42252009-12-16 02:06:49 +00006908 UsingDirectiveDecl* UD
Nick Lewycky38115822012-11-04 20:21:54 +00006909 = UsingDirectiveDecl::Create(Context, Parent,
John McCall0db42252009-12-16 02:06:49 +00006910 /* 'using' */ LBrace,
6911 /* 'namespace' */ SourceLocation(),
Douglas Gregor12441b32011-02-25 16:33:46 +00006912 /* qualifier */ NestedNameSpecifierLoc(),
John McCall0db42252009-12-16 02:06:49 +00006913 /* identifier */ SourceLocation(),
6914 Namespc,
Nick Lewycky38115822012-11-04 20:21:54 +00006915 /* Ancestor */ Parent);
John McCall0db42252009-12-16 02:06:49 +00006916 UD->setImplicit();
Nick Lewycky38115822012-11-04 20:21:54 +00006917 Parent->addDecl(UD);
John McCall0db42252009-12-16 02:06:49 +00006918 }
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00006919 }
6920
Dmitri Gribenkof26054f2012-07-11 21:38:39 +00006921 ActOnDocumentableDecl(Namespc);
6922
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00006923 // Although we could have an invalid decl (i.e. the namespace name is a
6924 // redefinition), push it as current DeclContext and try to continue parsing.
Mike Stump87c57ac2009-05-16 07:39:55 +00006925 // FIXME: We should be able to push Namespc here, so that the each DeclContext
6926 // for the namespace has the declarations that showed up in that particular
6927 // namespace definition.
Douglas Gregor91f84212008-12-11 16:49:14 +00006928 PushDeclContext(NamespcScope, Namespc);
John McCall48871652010-08-21 09:40:31 +00006929 return Namespc;
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00006930}
6931
Sebastian Redla6602e92009-11-23 15:34:23 +00006932/// getNamespaceDecl - Returns the namespace a decl represents. If the decl
6933/// is a namespace alias, returns the namespace it points to.
6934static inline NamespaceDecl *getNamespaceDecl(NamedDecl *D) {
6935 if (NamespaceAliasDecl *AD = dyn_cast_or_null<NamespaceAliasDecl>(D))
6936 return AD->getNamespace();
6937 return dyn_cast_or_null<NamespaceDecl>(D);
6938}
6939
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00006940/// ActOnFinishNamespaceDef - This callback is called after a namespace is
6941/// exited. Decl is the DeclTy returned by ActOnStartNamespaceDef.
John McCall48871652010-08-21 09:40:31 +00006942void Sema::ActOnFinishNamespaceDef(Decl *Dcl, SourceLocation RBrace) {
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00006943 NamespaceDecl *Namespc = dyn_cast_or_null<NamespaceDecl>(Dcl);
6944 assert(Namespc && "Invalid parameter, expected NamespaceDecl");
Abramo Bagnarab5545be2011-03-08 12:38:20 +00006945 Namespc->setRBraceLoc(RBrace);
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00006946 PopDeclContext();
Eli Friedman570024a2010-08-05 06:57:20 +00006947 if (Namespc->hasAttr<VisibilityAttr>())
Rafael Espindola6d65d7b2012-02-01 23:24:59 +00006948 PopPragmaVisibility(true, RBrace);
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00006949}
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00006950
John McCall28a0cf72010-08-25 07:42:41 +00006951CXXRecordDecl *Sema::getStdBadAlloc() const {
6952 return cast_or_null<CXXRecordDecl>(
6953 StdBadAlloc.get(Context.getExternalSource()));
6954}
6955
6956NamespaceDecl *Sema::getStdNamespace() const {
6957 return cast_or_null<NamespaceDecl>(
6958 StdNamespace.get(Context.getExternalSource()));
6959}
6960
Douglas Gregorcdf87022010-06-29 17:53:46 +00006961/// \brief Retrieve the special "std" namespace, which may require us to
6962/// implicitly define the namespace.
Argyrios Kyrtzidis4f8e1732010-08-02 07:14:39 +00006963NamespaceDecl *Sema::getOrCreateStdNamespace() {
Douglas Gregorcdf87022010-06-29 17:53:46 +00006964 if (!StdNamespace) {
6965 // The "std" namespace has not yet been defined, so build one implicitly.
6966 StdNamespace = NamespaceDecl::Create(Context,
6967 Context.getTranslationUnitDecl(),
Douglas Gregore57e7522012-01-07 09:11:48 +00006968 /*Inline=*/false,
Abramo Bagnarab5545be2011-03-08 12:38:20 +00006969 SourceLocation(), SourceLocation(),
Douglas Gregore57e7522012-01-07 09:11:48 +00006970 &PP.getIdentifierTable().get("std"),
Craig Topperc3ec1492014-05-26 06:22:03 +00006971 /*PrevDecl=*/nullptr);
Argyrios Kyrtzidis2d688102010-08-02 07:14:54 +00006972 getStdNamespace()->setImplicit(true);
Douglas Gregorcdf87022010-06-29 17:53:46 +00006973 }
6974
Argyrios Kyrtzidis2d688102010-08-02 07:14:54 +00006975 return getStdNamespace();
Douglas Gregorcdf87022010-06-29 17:53:46 +00006976}
6977
Sebastian Redl2bfa1042012-01-17 22:49:33 +00006978bool Sema::isStdInitializerList(QualType Ty, QualType *Element) {
David Blaikiebbafb8a2012-03-11 07:00:24 +00006979 assert(getLangOpts().CPlusPlus &&
Sebastian Redl2bfa1042012-01-17 22:49:33 +00006980 "Looking for std::initializer_list outside of C++.");
6981
6982 // We're looking for implicit instantiations of
6983 // template <typename E> class std::initializer_list.
6984
6985 if (!StdNamespace) // If we haven't seen namespace std yet, this can't be it.
6986 return false;
6987
Craig Topperc3ec1492014-05-26 06:22:03 +00006988 ClassTemplateDecl *Template = nullptr;
6989 const TemplateArgument *Arguments = nullptr;
Sebastian Redl2bfa1042012-01-17 22:49:33 +00006990
Sebastian Redl43144e72012-01-17 22:49:58 +00006991 if (const RecordType *RT = Ty->getAs<RecordType>()) {
Sebastian Redl2bfa1042012-01-17 22:49:33 +00006992
Sebastian Redl43144e72012-01-17 22:49:58 +00006993 ClassTemplateSpecializationDecl *Specialization =
6994 dyn_cast<ClassTemplateSpecializationDecl>(RT->getDecl());
6995 if (!Specialization)
6996 return false;
Sebastian Redl2bfa1042012-01-17 22:49:33 +00006997
Sebastian Redl43144e72012-01-17 22:49:58 +00006998 Template = Specialization->getSpecializedTemplate();
6999 Arguments = Specialization->getTemplateArgs().data();
7000 } else if (const TemplateSpecializationType *TST =
7001 Ty->getAs<TemplateSpecializationType>()) {
7002 Template = dyn_cast_or_null<ClassTemplateDecl>(
7003 TST->getTemplateName().getAsTemplateDecl());
7004 Arguments = TST->getArgs();
7005 }
7006 if (!Template)
7007 return false;
Sebastian Redl2bfa1042012-01-17 22:49:33 +00007008
7009 if (!StdInitializerList) {
7010 // Haven't recognized std::initializer_list yet, maybe this is it.
7011 CXXRecordDecl *TemplateClass = Template->getTemplatedDecl();
7012 if (TemplateClass->getIdentifier() !=
7013 &PP.getIdentifierTable().get("initializer_list") ||
Sebastian Redl09edce02012-01-23 22:09:39 +00007014 !getStdNamespace()->InEnclosingNamespaceSetOf(
7015 TemplateClass->getDeclContext()))
Sebastian Redl2bfa1042012-01-17 22:49:33 +00007016 return false;
7017 // This is a template called std::initializer_list, but is it the right
7018 // template?
7019 TemplateParameterList *Params = Template->getTemplateParameters();
Sebastian Redl09edce02012-01-23 22:09:39 +00007020 if (Params->getMinRequiredArguments() != 1)
Sebastian Redl2bfa1042012-01-17 22:49:33 +00007021 return false;
7022 if (!isa<TemplateTypeParmDecl>(Params->getParam(0)))
7023 return false;
7024
7025 // It's the right template.
7026 StdInitializerList = Template;
7027 }
7028
7029 if (Template != StdInitializerList)
7030 return false;
7031
7032 // This is an instance of std::initializer_list. Find the argument type.
Sebastian Redl43144e72012-01-17 22:49:58 +00007033 if (Element)
7034 *Element = Arguments[0].getAsType();
Sebastian Redl2bfa1042012-01-17 22:49:33 +00007035 return true;
7036}
7037
Sebastian Redl42acd4a2012-01-17 22:50:08 +00007038static ClassTemplateDecl *LookupStdInitializerList(Sema &S, SourceLocation Loc){
7039 NamespaceDecl *Std = S.getStdNamespace();
7040 if (!Std) {
7041 S.Diag(Loc, diag::err_implied_std_initializer_list_not_found);
Craig Topperc3ec1492014-05-26 06:22:03 +00007042 return nullptr;
Sebastian Redl42acd4a2012-01-17 22:50:08 +00007043 }
7044
7045 LookupResult Result(S, &S.PP.getIdentifierTable().get("initializer_list"),
7046 Loc, Sema::LookupOrdinaryName);
7047 if (!S.LookupQualifiedName(Result, Std)) {
7048 S.Diag(Loc, diag::err_implied_std_initializer_list_not_found);
Craig Topperc3ec1492014-05-26 06:22:03 +00007049 return nullptr;
Sebastian Redl42acd4a2012-01-17 22:50:08 +00007050 }
7051 ClassTemplateDecl *Template = Result.getAsSingle<ClassTemplateDecl>();
7052 if (!Template) {
7053 Result.suppressDiagnostics();
7054 // We found something weird. Complain about the first thing we found.
7055 NamedDecl *Found = *Result.begin();
7056 S.Diag(Found->getLocation(), diag::err_malformed_std_initializer_list);
Craig Topperc3ec1492014-05-26 06:22:03 +00007057 return nullptr;
Sebastian Redl42acd4a2012-01-17 22:50:08 +00007058 }
7059
7060 // We found some template called std::initializer_list. Now verify that it's
7061 // correct.
7062 TemplateParameterList *Params = Template->getTemplateParameters();
Sebastian Redl09edce02012-01-23 22:09:39 +00007063 if (Params->getMinRequiredArguments() != 1 ||
7064 !isa<TemplateTypeParmDecl>(Params->getParam(0))) {
Sebastian Redl42acd4a2012-01-17 22:50:08 +00007065 S.Diag(Template->getLocation(), diag::err_malformed_std_initializer_list);
Craig Topperc3ec1492014-05-26 06:22:03 +00007066 return nullptr;
Sebastian Redl42acd4a2012-01-17 22:50:08 +00007067 }
7068
7069 return Template;
7070}
7071
7072QualType Sema::BuildStdInitializerList(QualType Element, SourceLocation Loc) {
7073 if (!StdInitializerList) {
7074 StdInitializerList = LookupStdInitializerList(*this, Loc);
7075 if (!StdInitializerList)
7076 return QualType();
7077 }
7078
7079 TemplateArgumentListInfo Args(Loc, Loc);
7080 Args.addArgument(TemplateArgumentLoc(TemplateArgument(Element),
7081 Context.getTrivialTypeSourceInfo(Element,
7082 Loc)));
7083 return Context.getCanonicalType(
7084 CheckTemplateIdType(TemplateName(StdInitializerList), Loc, Args));
7085}
7086
Sebastian Redlbe24ec22012-01-17 22:50:14 +00007087bool Sema::isInitListConstructor(const CXXConstructorDecl* Ctor) {
7088 // C++ [dcl.init.list]p2:
7089 // A constructor is an initializer-list constructor if its first parameter
7090 // is of type std::initializer_list<E> or reference to possibly cv-qualified
7091 // std::initializer_list<E> for some type E, and either there are no other
7092 // parameters or else all other parameters have default arguments.
7093 if (Ctor->getNumParams() < 1 ||
7094 (Ctor->getNumParams() > 1 && !Ctor->getParamDecl(1)->hasDefaultArg()))
7095 return false;
7096
7097 QualType ArgType = Ctor->getParamDecl(0)->getType();
7098 if (const ReferenceType *RT = ArgType->getAs<ReferenceType>())
7099 ArgType = RT->getPointeeType().getUnqualifiedType();
7100
Craig Topperc3ec1492014-05-26 06:22:03 +00007101 return isStdInitializerList(ArgType, nullptr);
Sebastian Redlbe24ec22012-01-17 22:50:14 +00007102}
7103
Douglas Gregora172e082011-03-26 22:25:30 +00007104/// \brief Determine whether a using statement is in a context where it will be
7105/// apply in all contexts.
7106static bool IsUsingDirectiveInToplevelContext(DeclContext *CurContext) {
7107 switch (CurContext->getDeclKind()) {
7108 case Decl::TranslationUnit:
7109 return true;
7110 case Decl::LinkageSpec:
7111 return IsUsingDirectiveInToplevelContext(CurContext->getParent());
7112 default:
7113 return false;
7114 }
7115}
7116
Kaelyn Uhrain2d317ed2012-01-11 19:37:46 +00007117namespace {
7118
7119// Callback to only accept typo corrections that are namespaces.
7120class NamespaceValidatorCCC : public CorrectionCandidateCallback {
Benjamin Kramer8bf44352013-07-24 15:28:33 +00007121public:
Craig Toppera798a9d2014-03-02 09:32:10 +00007122 bool ValidateCandidate(const TypoCorrection &candidate) override {
Benjamin Kramer8bf44352013-07-24 15:28:33 +00007123 if (NamedDecl *ND = candidate.getCorrectionDecl())
Kaelyn Uhrain2d317ed2012-01-11 19:37:46 +00007124 return isa<NamespaceDecl>(ND) || isa<NamespaceAliasDecl>(ND);
Kaelyn Uhrain2d317ed2012-01-11 19:37:46 +00007125 return false;
7126 }
7127};
7128
7129}
7130
Douglas Gregorc2fa1692011-06-28 16:20:02 +00007131static bool TryNamespaceTypoCorrection(Sema &S, LookupResult &R, Scope *Sc,
7132 CXXScopeSpec &SS,
7133 SourceLocation IdentLoc,
7134 IdentifierInfo *Ident) {
Kaelyn Uhrain2d317ed2012-01-11 19:37:46 +00007135 NamespaceValidatorCCC Validator;
Douglas Gregorc2fa1692011-06-28 16:20:02 +00007136 R.clear();
7137 if (TypoCorrection Corrected = S.CorrectTypo(R.getLookupNameInfo(),
Kaelyn Uhrain2d317ed2012-01-11 19:37:46 +00007138 R.getLookupKind(), Sc, &SS,
John Thompson2255f2c2014-04-23 12:57:01 +00007139 Validator,
7140 Sema::CTK_ErrorRecovery)) {
Kaelyn Uhrain10413a42013-07-02 23:47:44 +00007141 if (DeclContext *DC = S.computeDeclContext(SS, false)) {
Richard Smithf9b15102013-08-17 00:46:16 +00007142 std::string CorrectedStr(Corrected.getAsString(S.getLangOpts()));
7143 bool DroppedSpecifier = Corrected.WillReplaceSpecifier() &&
Kaelyn Uhrain10413a42013-07-02 23:47:44 +00007144 Ident->getName().equals(CorrectedStr);
Richard Smithf9b15102013-08-17 00:46:16 +00007145 S.diagnoseTypo(Corrected,
7146 S.PDiag(diag::err_using_directive_member_suggest)
7147 << Ident << DC << DroppedSpecifier << SS.getRange(),
7148 S.PDiag(diag::note_namespace_defined_here));
Kaelyn Uhrain10413a42013-07-02 23:47:44 +00007149 } else {
Richard Smithf9b15102013-08-17 00:46:16 +00007150 S.diagnoseTypo(Corrected,
7151 S.PDiag(diag::err_using_directive_suggest) << Ident,
7152 S.PDiag(diag::note_namespace_defined_here));
Kaelyn Uhrain10413a42013-07-02 23:47:44 +00007153 }
Kaelyn Uhrain2d317ed2012-01-11 19:37:46 +00007154 R.addDecl(Corrected.getCorrectionDecl());
7155 return true;
Douglas Gregorc2fa1692011-06-28 16:20:02 +00007156 }
7157 return false;
7158}
7159
John McCall48871652010-08-21 09:40:31 +00007160Decl *Sema::ActOnUsingDirective(Scope *S,
Chris Lattner83f095c2009-03-28 19:18:32 +00007161 SourceLocation UsingLoc,
7162 SourceLocation NamespcLoc,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00007163 CXXScopeSpec &SS,
Chris Lattner83f095c2009-03-28 19:18:32 +00007164 SourceLocation IdentLoc,
7165 IdentifierInfo *NamespcName,
7166 AttributeList *AttrList) {
Douglas Gregord7c4d982008-12-30 03:27:21 +00007167 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
7168 assert(NamespcName && "Invalid NamespcName.");
7169 assert(IdentLoc.isValid() && "Invalid NamespceName location.");
John McCall9b72f892010-11-10 02:40:36 +00007170
7171 // This can only happen along a recovery path.
7172 while (S->getFlags() & Scope::TemplateParamScope)
7173 S = S->getParent();
Douglas Gregor889ceb72009-02-03 19:21:40 +00007174 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Douglas Gregord7c4d982008-12-30 03:27:21 +00007175
Craig Topperc3ec1492014-05-26 06:22:03 +00007176 UsingDirectiveDecl *UDir = nullptr;
7177 NestedNameSpecifier *Qualifier = nullptr;
Douglas Gregorcdf87022010-06-29 17:53:46 +00007178 if (SS.isSet())
Aaron Ballman4a979672014-01-03 13:56:08 +00007179 Qualifier = SS.getScopeRep();
Douglas Gregorcdf87022010-06-29 17:53:46 +00007180
Douglas Gregor34074322009-01-14 22:20:51 +00007181 // Lookup namespace name.
John McCall27b18f82009-11-17 02:14:36 +00007182 LookupResult R(*this, NamespcName, IdentLoc, LookupNamespaceName);
7183 LookupParsedName(R, S, &SS);
7184 if (R.isAmbiguous())
Craig Topperc3ec1492014-05-26 06:22:03 +00007185 return nullptr;
John McCall27b18f82009-11-17 02:14:36 +00007186
Douglas Gregorcdf87022010-06-29 17:53:46 +00007187 if (R.empty()) {
Douglas Gregorc2fa1692011-06-28 16:20:02 +00007188 R.clear();
Douglas Gregorcdf87022010-06-29 17:53:46 +00007189 // Allow "using namespace std;" or "using namespace ::std;" even if
7190 // "std" hasn't been defined yet, for GCC compatibility.
7191 if ((!Qualifier || Qualifier->getKind() == NestedNameSpecifier::Global) &&
7192 NamespcName->isStr("std")) {
7193 Diag(IdentLoc, diag::ext_using_undefined_std);
Argyrios Kyrtzidis4f8e1732010-08-02 07:14:39 +00007194 R.addDecl(getOrCreateStdNamespace());
Douglas Gregorcdf87022010-06-29 17:53:46 +00007195 R.resolveKind();
7196 }
7197 // Otherwise, attempt typo correction.
Douglas Gregorc2fa1692011-06-28 16:20:02 +00007198 else TryNamespaceTypoCorrection(*this, R, S, SS, IdentLoc, NamespcName);
Douglas Gregorcdf87022010-06-29 17:53:46 +00007199 }
7200
John McCall9f3059a2009-10-09 21:13:30 +00007201 if (!R.empty()) {
Sebastian Redla6602e92009-11-23 15:34:23 +00007202 NamedDecl *Named = R.getFoundDecl();
7203 assert((isa<NamespaceDecl>(Named) || isa<NamespaceAliasDecl>(Named))
7204 && "expected namespace decl");
Douglas Gregor889ceb72009-02-03 19:21:40 +00007205 // C++ [namespace.udir]p1:
7206 // A using-directive specifies that the names in the nominated
7207 // namespace can be used in the scope in which the
7208 // using-directive appears after the using-directive. During
7209 // unqualified name lookup (3.4.1), the names appear as if they
7210 // were declared in the nearest enclosing namespace which
7211 // contains both the using-directive and the nominated
Eli Friedman44b83ee2009-08-05 19:21:58 +00007212 // namespace. [Note: in this context, "contains" means "contains
7213 // directly or indirectly". ]
Douglas Gregor889ceb72009-02-03 19:21:40 +00007214
7215 // Find enclosing context containing both using-directive and
7216 // nominated namespace.
Sebastian Redla6602e92009-11-23 15:34:23 +00007217 NamespaceDecl *NS = getNamespaceDecl(Named);
Douglas Gregor889ceb72009-02-03 19:21:40 +00007218 DeclContext *CommonAncestor = cast<DeclContext>(NS);
7219 while (CommonAncestor && !CommonAncestor->Encloses(CurContext))
7220 CommonAncestor = CommonAncestor->getParent();
7221
Sebastian Redla6602e92009-11-23 15:34:23 +00007222 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc,
Douglas Gregor12441b32011-02-25 16:33:46 +00007223 SS.getWithLocInContext(Context),
Sebastian Redla6602e92009-11-23 15:34:23 +00007224 IdentLoc, Named, CommonAncestor);
Douglas Gregor96a4bdd2011-03-18 16:10:52 +00007225
Douglas Gregora172e082011-03-26 22:25:30 +00007226 if (IsUsingDirectiveInToplevelContext(CurContext) &&
Eli Friedman5ba37d52013-08-22 00:27:10 +00007227 !SourceMgr.isInMainFile(SourceMgr.getExpansionLoc(IdentLoc))) {
Douglas Gregor96a4bdd2011-03-18 16:10:52 +00007228 Diag(IdentLoc, diag::warn_using_directive_in_header);
7229 }
7230
Douglas Gregor889ceb72009-02-03 19:21:40 +00007231 PushUsingDirective(S, UDir);
Douglas Gregord7c4d982008-12-30 03:27:21 +00007232 } else {
Chris Lattner8dca2e92009-01-06 07:24:29 +00007233 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
Douglas Gregord7c4d982008-12-30 03:27:21 +00007234 }
7235
Richard Smith54ecd982013-02-20 19:22:51 +00007236 if (UDir)
7237 ProcessDeclAttributeList(S, UDir, AttrList);
7238
John McCall48871652010-08-21 09:40:31 +00007239 return UDir;
Douglas Gregor889ceb72009-02-03 19:21:40 +00007240}
7241
7242void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) {
Richard Smith05afe5e2012-03-13 03:12:56 +00007243 // If the scope has an associated entity and the using directive is at
7244 // namespace or translation unit scope, add the UsingDirectiveDecl into
7245 // its lookup structure so qualified name lookup can find it.
Ted Kremenekc37877d2013-10-08 17:08:03 +00007246 DeclContext *Ctx = S->getEntity();
Richard Smith05afe5e2012-03-13 03:12:56 +00007247 if (Ctx && !Ctx->isFunctionOrMethod())
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00007248 Ctx->addDecl(UDir);
Douglas Gregor889ceb72009-02-03 19:21:40 +00007249 else
Yaron Keren065da7c2014-05-20 18:23:05 +00007250 // Otherwise, it is at block scope. The using-directives will affect lookup
Richard Smith05afe5e2012-03-13 03:12:56 +00007251 // only to the end of the scope.
John McCall48871652010-08-21 09:40:31 +00007252 S->PushUsingDirective(UDir);
Douglas Gregord7c4d982008-12-30 03:27:21 +00007253}
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00007254
Douglas Gregorfec52632009-06-20 00:51:54 +00007255
John McCall48871652010-08-21 09:40:31 +00007256Decl *Sema::ActOnUsingDeclaration(Scope *S,
John McCall9b72f892010-11-10 02:40:36 +00007257 AccessSpecifier AS,
7258 bool HasUsingKeyword,
7259 SourceLocation UsingLoc,
7260 CXXScopeSpec &SS,
7261 UnqualifiedId &Name,
7262 AttributeList *AttrList,
Enea Zaffanellae05a3cf2013-07-22 10:54:09 +00007263 bool HasTypenameKeyword,
John McCall9b72f892010-11-10 02:40:36 +00007264 SourceLocation TypenameLoc) {
Douglas Gregorfec52632009-06-20 00:51:54 +00007265 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Mike Stump11289f42009-09-09 15:08:12 +00007266
Douglas Gregor220f4272009-11-04 16:30:06 +00007267 switch (Name.getKind()) {
Fariborz Jahanian7f4427f2011-07-12 17:16:56 +00007268 case UnqualifiedId::IK_ImplicitSelfParam:
Douglas Gregor220f4272009-11-04 16:30:06 +00007269 case UnqualifiedId::IK_Identifier:
7270 case UnqualifiedId::IK_OperatorFunctionId:
Alexis Hunt34458502009-11-28 04:44:28 +00007271 case UnqualifiedId::IK_LiteralOperatorId:
Douglas Gregor220f4272009-11-04 16:30:06 +00007272 case UnqualifiedId::IK_ConversionFunctionId:
7273 break;
7274
7275 case UnqualifiedId::IK_ConstructorName:
Douglas Gregor9de54ea2010-01-13 17:31:36 +00007276 case UnqualifiedId::IK_ConstructorTemplateId:
Richard Smithd494c502012-04-27 19:33:05 +00007277 // C++11 inheriting constructors.
Daniel Dunbar62ee6412012-03-09 18:35:03 +00007278 Diag(Name.getLocStart(),
Richard Smith2bf7fdb2013-01-02 11:42:31 +00007279 getLangOpts().CPlusPlus11 ?
Richard Smithc2bc61b2013-03-18 21:12:30 +00007280 diag::warn_cxx98_compat_using_decl_constructor :
Richard Smith0bf8a4922011-10-18 20:49:44 +00007281 diag::err_using_decl_constructor)
7282 << SS.getRange();
7283
Richard Smith2bf7fdb2013-01-02 11:42:31 +00007284 if (getLangOpts().CPlusPlus11) break;
John McCall3969e302009-12-08 07:46:18 +00007285
Craig Topperc3ec1492014-05-26 06:22:03 +00007286 return nullptr;
7287
Douglas Gregor220f4272009-11-04 16:30:06 +00007288 case UnqualifiedId::IK_DestructorName:
Daniel Dunbar62ee6412012-03-09 18:35:03 +00007289 Diag(Name.getLocStart(), diag::err_using_decl_destructor)
Douglas Gregor220f4272009-11-04 16:30:06 +00007290 << SS.getRange();
Craig Topperc3ec1492014-05-26 06:22:03 +00007291 return nullptr;
7292
Douglas Gregor220f4272009-11-04 16:30:06 +00007293 case UnqualifiedId::IK_TemplateId:
Daniel Dunbar62ee6412012-03-09 18:35:03 +00007294 Diag(Name.getLocStart(), diag::err_using_decl_template_id)
Douglas Gregor220f4272009-11-04 16:30:06 +00007295 << SourceRange(Name.TemplateId->LAngleLoc, Name.TemplateId->RAngleLoc);
Craig Topperc3ec1492014-05-26 06:22:03 +00007296 return nullptr;
Douglas Gregor220f4272009-11-04 16:30:06 +00007297 }
Abramo Bagnara8de74e92010-08-12 11:46:03 +00007298
7299 DeclarationNameInfo TargetNameInfo = GetNameFromUnqualifiedId(Name);
7300 DeclarationName TargetName = TargetNameInfo.getName();
John McCall3969e302009-12-08 07:46:18 +00007301 if (!TargetName)
Craig Topperc3ec1492014-05-26 06:22:03 +00007302 return nullptr;
John McCall3969e302009-12-08 07:46:18 +00007303
Richard Smithc2bc61b2013-03-18 21:12:30 +00007304 // Warn about access declarations.
John McCalla0097262009-12-11 02:10:03 +00007305 if (!HasUsingKeyword) {
Enea Zaffanellac70b2512013-07-17 17:28:56 +00007306 Diag(Name.getLocStart(),
Richard Smithf026b602013-06-13 02:12:17 +00007307 getLangOpts().CPlusPlus11 ? diag::err_access_decl
7308 : diag::warn_access_decl_deprecated)
Douglas Gregora771f462010-03-31 17:46:05 +00007309 << FixItHint::CreateInsertion(SS.getRange().getBegin(), "using ");
John McCalla0097262009-12-11 02:10:03 +00007310 }
7311
Douglas Gregorc4356532010-12-16 00:46:58 +00007312 if (DiagnoseUnexpandedParameterPack(SS, UPPC_UsingDeclaration) ||
7313 DiagnoseUnexpandedParameterPack(TargetNameInfo, UPPC_UsingDeclaration))
Craig Topperc3ec1492014-05-26 06:22:03 +00007314 return nullptr;
Douglas Gregorc4356532010-12-16 00:46:58 +00007315
John McCall3f746822009-11-17 05:59:44 +00007316 NamedDecl *UD = BuildUsingDeclaration(S, AS, UsingLoc, SS,
Abramo Bagnara8de74e92010-08-12 11:46:03 +00007317 TargetNameInfo, AttrList,
John McCalle61f2ba2009-11-18 02:36:19 +00007318 /* IsInstantiation */ false,
Enea Zaffanellae05a3cf2013-07-22 10:54:09 +00007319 HasTypenameKeyword, TypenameLoc);
John McCallb96ec562009-12-04 22:46:56 +00007320 if (UD)
7321 PushOnScopeChains(UD, S, /*AddToContext*/ false);
Mike Stump11289f42009-09-09 15:08:12 +00007322
John McCall48871652010-08-21 09:40:31 +00007323 return UD;
Anders Carlsson696a3f12009-08-28 05:40:36 +00007324}
7325
Douglas Gregor1d9ef842010-07-07 23:08:52 +00007326/// \brief Determine whether a using declaration considers the given
7327/// declarations as "equivalent", e.g., if they are redeclarations of
7328/// the same entity or are both typedefs of the same type.
Richard Smithfd8634a2013-10-23 02:17:46 +00007329static bool
7330IsEquivalentForUsingDecl(ASTContext &Context, NamedDecl *D1, NamedDecl *D2) {
7331 if (D1->getCanonicalDecl() == D2->getCanonicalDecl())
Douglas Gregor1d9ef842010-07-07 23:08:52 +00007332 return true;
Douglas Gregor1d9ef842010-07-07 23:08:52 +00007333
Richard Smithdda56e42011-04-15 14:24:37 +00007334 if (TypedefNameDecl *TD1 = dyn_cast<TypedefNameDecl>(D1))
Richard Smithfd8634a2013-10-23 02:17:46 +00007335 if (TypedefNameDecl *TD2 = dyn_cast<TypedefNameDecl>(D2))
Douglas Gregor1d9ef842010-07-07 23:08:52 +00007336 return Context.hasSameType(TD1->getUnderlyingType(),
7337 TD2->getUnderlyingType());
Douglas Gregor1d9ef842010-07-07 23:08:52 +00007338
7339 return false;
7340}
7341
7342
John McCall84d87672009-12-10 09:41:52 +00007343/// Determines whether to create a using shadow decl for a particular
7344/// decl, given the set of decls existing prior to this using lookup.
7345bool Sema::CheckUsingShadowDecl(UsingDecl *Using, NamedDecl *Orig,
Richard Smithfd8634a2013-10-23 02:17:46 +00007346 const LookupResult &Previous,
7347 UsingShadowDecl *&PrevShadow) {
John McCall84d87672009-12-10 09:41:52 +00007348 // Diagnose finding a decl which is not from a base class of the
7349 // current class. We do this now because there are cases where this
7350 // function will silently decide not to build a shadow decl, which
7351 // will pre-empt further diagnostics.
7352 //
7353 // We don't need to do this in C++0x because we do the check once on
7354 // the qualifier.
7355 //
7356 // FIXME: diagnose the following if we care enough:
7357 // struct A { int foo; };
7358 // struct B : A { using A::foo; };
7359 // template <class T> struct C : A {};
7360 // template <class T> struct D : C<T> { using B::foo; } // <---
7361 // This is invalid (during instantiation) in C++03 because B::foo
7362 // resolves to the using decl in B, which is not a base class of D<T>.
7363 // We can't diagnose it immediately because C<T> is an unknown
7364 // specialization. The UsingShadowDecl in D<T> then points directly
7365 // to A::foo, which will look well-formed when we instantiate.
7366 // The right solution is to not collapse the shadow-decl chain.
Richard Smith2bf7fdb2013-01-02 11:42:31 +00007367 if (!getLangOpts().CPlusPlus11 && CurContext->isRecord()) {
John McCall84d87672009-12-10 09:41:52 +00007368 DeclContext *OrigDC = Orig->getDeclContext();
7369
7370 // Handle enums and anonymous structs.
7371 if (isa<EnumDecl>(OrigDC)) OrigDC = OrigDC->getParent();
7372 CXXRecordDecl *OrigRec = cast<CXXRecordDecl>(OrigDC);
7373 while (OrigRec->isAnonymousStructOrUnion())
7374 OrigRec = cast<CXXRecordDecl>(OrigRec->getDeclContext());
7375
7376 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(OrigRec)) {
7377 if (OrigDC == CurContext) {
7378 Diag(Using->getLocation(),
7379 diag::err_using_decl_nested_name_specifier_is_current_class)
Douglas Gregora9d87bc2011-02-25 00:36:19 +00007380 << Using->getQualifierLoc().getSourceRange();
John McCall84d87672009-12-10 09:41:52 +00007381 Diag(Orig->getLocation(), diag::note_using_decl_target);
7382 return true;
7383 }
7384
Douglas Gregora9d87bc2011-02-25 00:36:19 +00007385 Diag(Using->getQualifierLoc().getBeginLoc(),
John McCall84d87672009-12-10 09:41:52 +00007386 diag::err_using_decl_nested_name_specifier_is_not_base_class)
Douglas Gregora9d87bc2011-02-25 00:36:19 +00007387 << Using->getQualifier()
John McCall84d87672009-12-10 09:41:52 +00007388 << cast<CXXRecordDecl>(CurContext)
Douglas Gregora9d87bc2011-02-25 00:36:19 +00007389 << Using->getQualifierLoc().getSourceRange();
John McCall84d87672009-12-10 09:41:52 +00007390 Diag(Orig->getLocation(), diag::note_using_decl_target);
7391 return true;
7392 }
7393 }
7394
7395 if (Previous.empty()) return false;
7396
7397 NamedDecl *Target = Orig;
7398 if (isa<UsingShadowDecl>(Target))
7399 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
7400
John McCalla17e83e2009-12-11 02:33:26 +00007401 // If the target happens to be one of the previous declarations, we
7402 // don't have a conflict.
7403 //
7404 // FIXME: but we might be increasing its access, in which case we
7405 // should redeclare it.
Craig Topperc3ec1492014-05-26 06:22:03 +00007406 NamedDecl *NonTag = nullptr, *Tag = nullptr;
Richard Smithfd8634a2013-10-23 02:17:46 +00007407 bool FoundEquivalentDecl = false;
John McCalla17e83e2009-12-11 02:33:26 +00007408 for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
7409 I != E; ++I) {
7410 NamedDecl *D = (*I)->getUnderlyingDecl();
Richard Smithfd8634a2013-10-23 02:17:46 +00007411 if (IsEquivalentForUsingDecl(Context, D, Target)) {
7412 if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(*I))
7413 PrevShadow = Shadow;
7414 FoundEquivalentDecl = true;
7415 }
John McCalla17e83e2009-12-11 02:33:26 +00007416
7417 (isa<TagDecl>(D) ? Tag : NonTag) = D;
7418 }
7419
Richard Smithfd8634a2013-10-23 02:17:46 +00007420 if (FoundEquivalentDecl)
7421 return false;
7422
Alp Tokera2794f92014-01-22 07:29:52 +00007423 if (FunctionDecl *FD = Target->getAsFunction()) {
Craig Topperc3ec1492014-05-26 06:22:03 +00007424 NamedDecl *OldDecl = nullptr;
7425 switch (CheckOverload(nullptr, FD, Previous, OldDecl,
7426 /*IsForUsingDecl*/ true)) {
John McCall84d87672009-12-10 09:41:52 +00007427 case Ovl_Overload:
7428 return false;
7429
7430 case Ovl_NonFunction:
John McCalle29c5cd2009-12-10 19:51:03 +00007431 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall84d87672009-12-10 09:41:52 +00007432 break;
Richard Smith18819302014-02-06 01:31:33 +00007433
John McCall84d87672009-12-10 09:41:52 +00007434 // We found a decl with the exact signature.
7435 case Ovl_Match:
John McCall84d87672009-12-10 09:41:52 +00007436 // If we're in a record, we want to hide the target, so we
7437 // return true (without a diagnostic) to tell the caller not to
7438 // build a shadow decl.
7439 if (CurContext->isRecord())
7440 return true;
7441
7442 // If we're not in a record, this is an error.
John McCalle29c5cd2009-12-10 19:51:03 +00007443 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall84d87672009-12-10 09:41:52 +00007444 break;
7445 }
7446
7447 Diag(Target->getLocation(), diag::note_using_decl_target);
7448 Diag(OldDecl->getLocation(), diag::note_using_decl_conflict);
7449 return true;
7450 }
7451
7452 // Target is not a function.
7453
John McCall84d87672009-12-10 09:41:52 +00007454 if (isa<TagDecl>(Target)) {
7455 // No conflict between a tag and a non-tag.
7456 if (!Tag) return false;
7457
John McCalle29c5cd2009-12-10 19:51:03 +00007458 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall84d87672009-12-10 09:41:52 +00007459 Diag(Target->getLocation(), diag::note_using_decl_target);
7460 Diag(Tag->getLocation(), diag::note_using_decl_conflict);
7461 return true;
7462 }
7463
7464 // No conflict between a tag and a non-tag.
7465 if (!NonTag) return false;
7466
John McCalle29c5cd2009-12-10 19:51:03 +00007467 Diag(Using->getLocation(), diag::err_using_decl_conflict);
John McCall84d87672009-12-10 09:41:52 +00007468 Diag(Target->getLocation(), diag::note_using_decl_target);
7469 Diag(NonTag->getLocation(), diag::note_using_decl_conflict);
7470 return true;
7471}
7472
John McCall3f746822009-11-17 05:59:44 +00007473/// Builds a shadow declaration corresponding to a 'using' declaration.
John McCall3969e302009-12-08 07:46:18 +00007474UsingShadowDecl *Sema::BuildUsingShadowDecl(Scope *S,
John McCall3969e302009-12-08 07:46:18 +00007475 UsingDecl *UD,
Richard Smithfd8634a2013-10-23 02:17:46 +00007476 NamedDecl *Orig,
7477 UsingShadowDecl *PrevDecl) {
John McCall3f746822009-11-17 05:59:44 +00007478
7479 // If we resolved to another shadow declaration, just coalesce them.
John McCall3969e302009-12-08 07:46:18 +00007480 NamedDecl *Target = Orig;
7481 if (isa<UsingShadowDecl>(Target)) {
7482 Target = cast<UsingShadowDecl>(Target)->getTargetDecl();
7483 assert(!isa<UsingShadowDecl>(Target) && "nested shadow declaration");
John McCall3f746822009-11-17 05:59:44 +00007484 }
Richard Smithfd8634a2013-10-23 02:17:46 +00007485
John McCall3f746822009-11-17 05:59:44 +00007486 UsingShadowDecl *Shadow
John McCall3969e302009-12-08 07:46:18 +00007487 = UsingShadowDecl::Create(Context, CurContext,
7488 UD->getLocation(), UD, Target);
John McCall3f746822009-11-17 05:59:44 +00007489 UD->addShadowDecl(Shadow);
Richard Smithfd8634a2013-10-23 02:17:46 +00007490
Douglas Gregor457104e2010-09-29 04:25:11 +00007491 Shadow->setAccess(UD->getAccess());
7492 if (Orig->isInvalidDecl() || UD->isInvalidDecl())
7493 Shadow->setInvalidDecl();
Richard Smithfd8634a2013-10-23 02:17:46 +00007494
7495 Shadow->setPreviousDecl(PrevDecl);
7496
John McCall3f746822009-11-17 05:59:44 +00007497 if (S)
John McCall3969e302009-12-08 07:46:18 +00007498 PushOnScopeChains(Shadow, S);
John McCall3f746822009-11-17 05:59:44 +00007499 else
John McCall3969e302009-12-08 07:46:18 +00007500 CurContext->addDecl(Shadow);
John McCall3f746822009-11-17 05:59:44 +00007501
John McCall3969e302009-12-08 07:46:18 +00007502
John McCall84d87672009-12-10 09:41:52 +00007503 return Shadow;
7504}
John McCall3969e302009-12-08 07:46:18 +00007505
John McCall84d87672009-12-10 09:41:52 +00007506/// Hides a using shadow declaration. This is required by the current
7507/// using-decl implementation when a resolvable using declaration in a
7508/// class is followed by a declaration which would hide or override
7509/// one or more of the using decl's targets; for example:
7510///
7511/// struct Base { void foo(int); };
7512/// struct Derived : Base {
7513/// using Base::foo;
7514/// void foo(int);
7515/// };
7516///
7517/// The governing language is C++03 [namespace.udecl]p12:
7518///
7519/// When a using-declaration brings names from a base class into a
7520/// derived class scope, member functions in the derived class
7521/// override and/or hide member functions with the same name and
7522/// parameter types in a base class (rather than conflicting).
7523///
7524/// There are two ways to implement this:
7525/// (1) optimistically create shadow decls when they're not hidden
7526/// by existing declarations, or
7527/// (2) don't create any shadow decls (or at least don't make them
7528/// visible) until we've fully parsed/instantiated the class.
7529/// The problem with (1) is that we might have to retroactively remove
7530/// a shadow decl, which requires several O(n) operations because the
7531/// decl structures are (very reasonably) not designed for removal.
7532/// (2) avoids this but is very fiddly and phase-dependent.
7533void Sema::HideUsingShadowDecl(Scope *S, UsingShadowDecl *Shadow) {
John McCallda4458e2010-03-31 01:36:47 +00007534 if (Shadow->getDeclName().getNameKind() ==
7535 DeclarationName::CXXConversionFunctionName)
7536 cast<CXXRecordDecl>(Shadow->getDeclContext())->removeConversion(Shadow);
7537
John McCall84d87672009-12-10 09:41:52 +00007538 // Remove it from the DeclContext...
7539 Shadow->getDeclContext()->removeDecl(Shadow);
John McCall3969e302009-12-08 07:46:18 +00007540
John McCall84d87672009-12-10 09:41:52 +00007541 // ...and the scope, if applicable...
7542 if (S) {
John McCall48871652010-08-21 09:40:31 +00007543 S->RemoveDecl(Shadow);
John McCall84d87672009-12-10 09:41:52 +00007544 IdResolver.RemoveDecl(Shadow);
John McCall3969e302009-12-08 07:46:18 +00007545 }
7546
John McCall84d87672009-12-10 09:41:52 +00007547 // ...and the using decl.
7548 Shadow->getUsingDecl()->removeShadowDecl(Shadow);
7549
7550 // TODO: complain somehow if Shadow was used. It shouldn't
John McCallda4458e2010-03-31 01:36:47 +00007551 // be possible for this to happen, because...?
John McCall3f746822009-11-17 05:59:44 +00007552}
7553
Richard Smith09d5b3a2014-05-01 00:35:04 +00007554/// Find the base specifier for a base class with the given type.
7555static CXXBaseSpecifier *findDirectBaseWithType(CXXRecordDecl *Derived,
7556 QualType DesiredBase,
7557 bool &AnyDependentBases) {
7558 // Check whether the named type is a direct base class.
7559 CanQualType CanonicalDesiredBase = DesiredBase->getCanonicalTypeUnqualified();
7560 for (auto &Base : Derived->bases()) {
7561 CanQualType BaseType = Base.getType()->getCanonicalTypeUnqualified();
7562 if (CanonicalDesiredBase == BaseType)
7563 return &Base;
7564 if (BaseType->isDependentType())
7565 AnyDependentBases = true;
7566 }
Craig Topperc3ec1492014-05-26 06:22:03 +00007567 return nullptr;
Richard Smith09d5b3a2014-05-01 00:35:04 +00007568}
7569
Benjamin Kramer8bf44352013-07-24 15:28:33 +00007570namespace {
Kaelyn Uhrain8ec9f5f2013-07-10 17:34:22 +00007571class UsingValidatorCCC : public CorrectionCandidateCallback {
7572public:
Kaelyn Uhrain8aa8da82013-10-19 00:05:00 +00007573 UsingValidatorCCC(bool HasTypenameKeyword, bool IsInstantiation,
Richard Smith09d5b3a2014-05-01 00:35:04 +00007574 NestedNameSpecifier *NNS, CXXRecordDecl *RequireMemberOf)
Enea Zaffanellae05a3cf2013-07-22 10:54:09 +00007575 : HasTypenameKeyword(HasTypenameKeyword),
Richard Smith09d5b3a2014-05-01 00:35:04 +00007576 IsInstantiation(IsInstantiation), OldNNS(NNS),
7577 RequireMemberOf(RequireMemberOf) {}
Enea Zaffanellae05a3cf2013-07-22 10:54:09 +00007578
Craig Toppera798a9d2014-03-02 09:32:10 +00007579 bool ValidateCandidate(const TypoCorrection &Candidate) override {
Benjamin Kramer8bf44352013-07-24 15:28:33 +00007580 NamedDecl *ND = Candidate.getCorrectionDecl();
7581
7582 // Keywords are not valid here.
7583 if (!ND || isa<NamespaceDecl>(ND))
Kaelyn Uhrain8ec9f5f2013-07-10 17:34:22 +00007584 return false;
Benjamin Kramer8bf44352013-07-24 15:28:33 +00007585
7586 // Completely unqualified names are invalid for a 'using' declaration.
7587 if (Candidate.WillReplaceSpecifier() && !Candidate.getCorrectionSpecifier())
7588 return false;
7589
Richard Smith09d5b3a2014-05-01 00:35:04 +00007590 if (RequireMemberOf) {
7591 auto *FoundRecord = dyn_cast<CXXRecordDecl>(ND);
7592 if (FoundRecord && FoundRecord->isInjectedClassName()) {
7593 // No-one ever wants a using-declaration to name an injected-class-name
7594 // of a base class, unless they're declaring an inheriting constructor.
7595 ASTContext &Ctx = ND->getASTContext();
7596 if (!Ctx.getLangOpts().CPlusPlus11)
7597 return false;
7598 QualType FoundType = Ctx.getRecordType(FoundRecord);
7599
7600 // Check that the injected-class-name is named as a member of its own
7601 // type; we don't want to suggest 'using Derived::Base;', since that
7602 // means something else.
7603 NestedNameSpecifier *Specifier =
7604 Candidate.WillReplaceSpecifier()
7605 ? Candidate.getCorrectionSpecifier()
7606 : OldNNS;
7607 if (!Specifier->getAsType() ||
7608 !Ctx.hasSameType(QualType(Specifier->getAsType(), 0), FoundType))
7609 return false;
7610
7611 // Check that this inheriting constructor declaration actually names a
7612 // direct base class of the current class.
7613 bool AnyDependentBases = false;
7614 if (!findDirectBaseWithType(RequireMemberOf,
7615 Ctx.getRecordType(FoundRecord),
7616 AnyDependentBases) &&
7617 !AnyDependentBases)
7618 return false;
7619 } else {
7620 auto *RD = dyn_cast<CXXRecordDecl>(ND->getDeclContext());
7621 if (!RD || RequireMemberOf->isProvablyNotDerivedFrom(RD))
7622 return false;
7623
7624 // FIXME: Check that the base class member is accessible?
7625 }
7626 }
7627
Benjamin Kramer8bf44352013-07-24 15:28:33 +00007628 if (isa<TypeDecl>(ND))
7629 return HasTypenameKeyword || !IsInstantiation;
7630
7631 return !HasTypenameKeyword;
Kaelyn Uhrain8ec9f5f2013-07-10 17:34:22 +00007632 }
7633
7634private:
Enea Zaffanellae05a3cf2013-07-22 10:54:09 +00007635 bool HasTypenameKeyword;
Kaelyn Uhrain8ec9f5f2013-07-10 17:34:22 +00007636 bool IsInstantiation;
Richard Smith09d5b3a2014-05-01 00:35:04 +00007637 NestedNameSpecifier *OldNNS;
Richard Smith21866c32014-04-30 18:03:21 +00007638 CXXRecordDecl *RequireMemberOf;
Kaelyn Uhrain8ec9f5f2013-07-10 17:34:22 +00007639};
Benjamin Kramer8bf44352013-07-24 15:28:33 +00007640} // end anonymous namespace
Kaelyn Uhrain8ec9f5f2013-07-10 17:34:22 +00007641
John McCalle61f2ba2009-11-18 02:36:19 +00007642/// Builds a using declaration.
7643///
7644/// \param IsInstantiation - Whether this call arises from an
7645/// instantiation of an unresolved using declaration. We treat
7646/// the lookup differently for these declarations.
John McCall3f746822009-11-17 05:59:44 +00007647NamedDecl *Sema::BuildUsingDeclaration(Scope *S, AccessSpecifier AS,
7648 SourceLocation UsingLoc,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00007649 CXXScopeSpec &SS,
Richard Smith09d5b3a2014-05-01 00:35:04 +00007650 DeclarationNameInfo NameInfo,
Anders Carlsson696a3f12009-08-28 05:40:36 +00007651 AttributeList *AttrList,
John McCalle61f2ba2009-11-18 02:36:19 +00007652 bool IsInstantiation,
Enea Zaffanellae05a3cf2013-07-22 10:54:09 +00007653 bool HasTypenameKeyword,
John McCalle61f2ba2009-11-18 02:36:19 +00007654 SourceLocation TypenameLoc) {
Anders Carlsson696a3f12009-08-28 05:40:36 +00007655 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
Abramo Bagnara8de74e92010-08-12 11:46:03 +00007656 SourceLocation IdentLoc = NameInfo.getLoc();
Anders Carlsson696a3f12009-08-28 05:40:36 +00007657 assert(IdentLoc.isValid() && "Invalid TargetName location.");
Eli Friedman561154d2009-08-27 05:09:36 +00007658
Anders Carlssonf038fc22009-08-28 05:49:21 +00007659 // FIXME: We ignore attributes for now.
Mike Stump11289f42009-09-09 15:08:12 +00007660
Anders Carlsson59140b32009-08-28 03:16:11 +00007661 if (SS.isEmpty()) {
7662 Diag(IdentLoc, diag::err_using_requires_qualname);
Craig Topperc3ec1492014-05-26 06:22:03 +00007663 return nullptr;
Anders Carlsson59140b32009-08-28 03:16:11 +00007664 }
Mike Stump11289f42009-09-09 15:08:12 +00007665
John McCall84d87672009-12-10 09:41:52 +00007666 // Do the redeclaration lookup in the current scope.
Abramo Bagnara8de74e92010-08-12 11:46:03 +00007667 LookupResult Previous(*this, NameInfo, LookupUsingDeclName,
John McCall84d87672009-12-10 09:41:52 +00007668 ForRedeclaration);
7669 Previous.setHideTags(false);
7670 if (S) {
7671 LookupName(Previous, S);
7672
7673 // It is really dumb that we have to do this.
7674 LookupResult::Filter F = Previous.makeFilter();
7675 while (F.hasNext()) {
7676 NamedDecl *D = F.next();
7677 if (!isDeclInScope(D, CurContext, S))
7678 F.erase();
Richard Smith83e78f52014-04-11 01:03:38 +00007679 // If we found a local extern declaration that's not ordinarily visible,
7680 // and this declaration is being added to a non-block scope, ignore it.
7681 // We're only checking for scope conflicts here, not also for violations
7682 // of the linkage rules.
7683 else if (!CurContext->isFunctionOrMethod() && D->isLocalExternDecl() &&
7684 !(D->getIdentifierNamespace() & Decl::IDNS_Ordinary))
7685 F.erase();
John McCall84d87672009-12-10 09:41:52 +00007686 }
7687 F.done();
7688 } else {
7689 assert(IsInstantiation && "no scope in non-instantiation");
7690 assert(CurContext->isRecord() && "scope not record in instantiation");
7691 LookupQualifiedName(Previous, CurContext);
7692 }
7693
John McCall84d87672009-12-10 09:41:52 +00007694 // Check for invalid redeclarations.
Enea Zaffanellae05a3cf2013-07-22 10:54:09 +00007695 if (CheckUsingDeclRedeclaration(UsingLoc, HasTypenameKeyword,
7696 SS, IdentLoc, Previous))
Craig Topperc3ec1492014-05-26 06:22:03 +00007697 return nullptr;
John McCall84d87672009-12-10 09:41:52 +00007698
7699 // Check for bad qualifiers.
Richard Smith7ad0b882014-04-02 21:44:35 +00007700 if (CheckUsingDeclQualifier(UsingLoc, SS, NameInfo, IdentLoc))
Craig Topperc3ec1492014-05-26 06:22:03 +00007701 return nullptr;
John McCallb96ec562009-12-04 22:46:56 +00007702
John McCall84c16cf2009-11-12 03:15:40 +00007703 DeclContext *LookupContext = computeDeclContext(SS);
John McCallb96ec562009-12-04 22:46:56 +00007704 NamedDecl *D;
Douglas Gregora9d87bc2011-02-25 00:36:19 +00007705 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
John McCall84c16cf2009-11-12 03:15:40 +00007706 if (!LookupContext) {
Enea Zaffanellae05a3cf2013-07-22 10:54:09 +00007707 if (HasTypenameKeyword) {
John McCallb96ec562009-12-04 22:46:56 +00007708 // FIXME: not all declaration name kinds are legal here
7709 D = UnresolvedUsingTypenameDecl::Create(Context, CurContext,
7710 UsingLoc, TypenameLoc,
Douglas Gregora9d87bc2011-02-25 00:36:19 +00007711 QualifierLoc,
Abramo Bagnara8de74e92010-08-12 11:46:03 +00007712 IdentLoc, NameInfo.getName());
John McCallb96ec562009-12-04 22:46:56 +00007713 } else {
Douglas Gregora9d87bc2011-02-25 00:36:19 +00007714 D = UnresolvedUsingValueDecl::Create(Context, CurContext, UsingLoc,
7715 QualifierLoc, NameInfo);
John McCalle61f2ba2009-11-18 02:36:19 +00007716 }
Richard Smith09d5b3a2014-05-01 00:35:04 +00007717 D->setAccess(AS);
7718 CurContext->addDecl(D);
7719 return D;
Anders Carlssonf038fc22009-08-28 05:49:21 +00007720 }
John McCallb96ec562009-12-04 22:46:56 +00007721
Richard Smith09d5b3a2014-05-01 00:35:04 +00007722 auto Build = [&](bool Invalid) {
7723 UsingDecl *UD =
7724 UsingDecl::Create(Context, CurContext, UsingLoc, QualifierLoc, NameInfo,
7725 HasTypenameKeyword);
7726 UD->setAccess(AS);
7727 CurContext->addDecl(UD);
7728 UD->setInvalidDecl(Invalid);
John McCall3969e302009-12-08 07:46:18 +00007729 return UD;
Richard Smith09d5b3a2014-05-01 00:35:04 +00007730 };
7731 auto BuildInvalid = [&]{ return Build(true); };
7732 auto BuildValid = [&]{ return Build(false); };
7733
7734 if (RequireCompleteDeclContext(SS, LookupContext))
7735 return BuildInvalid();
Anders Carlsson59140b32009-08-28 03:16:11 +00007736
Richard Smith23d55872012-04-02 01:30:27 +00007737 // The normal rules do not apply to inheriting constructor declarations.
Sebastian Redl08905022011-02-05 19:23:19 +00007738 if (NameInfo.getName().getNameKind() == DeclarationName::CXXConstructorName) {
Richard Smith09d5b3a2014-05-01 00:35:04 +00007739 UsingDecl *UD = BuildValid();
7740 CheckInheritingConstructorUsingDecl(UD);
Sebastian Redl08905022011-02-05 19:23:19 +00007741 return UD;
7742 }
7743
7744 // Otherwise, look up the target name.
John McCall3969e302009-12-08 07:46:18 +00007745
Abramo Bagnara8de74e92010-08-12 11:46:03 +00007746 LookupResult R(*this, NameInfo, LookupOrdinaryName);
John McCalle61f2ba2009-11-18 02:36:19 +00007747
John McCall3969e302009-12-08 07:46:18 +00007748 // Unlike most lookups, we don't always want to hide tag
7749 // declarations: tag names are visible through the using declaration
7750 // even if hidden by ordinary names, *except* in a dependent context
7751 // where it's important for the sanity of two-phase lookup.
John McCalle61f2ba2009-11-18 02:36:19 +00007752 if (!IsInstantiation)
7753 R.setHideTags(false);
John McCall3f746822009-11-17 05:59:44 +00007754
John McCall5dadb652012-04-07 03:04:20 +00007755 // For the purposes of this lookup, we have a base object type
7756 // equal to that of the current context.
7757 if (CurContext->isRecord()) {
7758 R.setBaseObjectType(
7759 Context.getTypeDeclType(cast<CXXRecordDecl>(CurContext)));
7760 }
7761
John McCall27b18f82009-11-17 02:14:36 +00007762 LookupQualifiedName(R, LookupContext);
Mike Stump11289f42009-09-09 15:08:12 +00007763
Kaelyn Uhrain8ec9f5f2013-07-10 17:34:22 +00007764 // Try to correct typos if possible.
John McCall9f3059a2009-10-09 21:13:30 +00007765 if (R.empty()) {
Richard Smith09d5b3a2014-05-01 00:35:04 +00007766 UsingValidatorCCC CCC(HasTypenameKeyword, IsInstantiation, SS.getScopeRep(),
Richard Smith21866c32014-04-30 18:03:21 +00007767 dyn_cast<CXXRecordDecl>(CurContext));
Kaelyn Uhrain8ec9f5f2013-07-10 17:34:22 +00007768 if (TypoCorrection Corrected = CorrectTypo(R.getLookupNameInfo(),
John Thompson2255f2c2014-04-23 12:57:01 +00007769 R.getLookupKind(), S, &SS, CCC,
7770 CTK_ErrorRecovery)){
Kaelyn Uhrain8ec9f5f2013-07-10 17:34:22 +00007771 // We reject any correction for which ND would be NULL.
7772 NamedDecl *ND = Corrected.getCorrectionDecl();
Richard Smith09d5b3a2014-05-01 00:35:04 +00007773
Richard Smithf9b15102013-08-17 00:46:16 +00007774 // We reject candidates where DroppedSpecifier == true, hence the
Kaelyn Uhrain8ec9f5f2013-07-10 17:34:22 +00007775 // literal '0' below.
Richard Smithf9b15102013-08-17 00:46:16 +00007776 diagnoseTypo(Corrected, PDiag(diag::err_no_member_suggest)
7777 << NameInfo.getName() << LookupContext << 0
7778 << SS.getRange());
Richard Smith09d5b3a2014-05-01 00:35:04 +00007779
7780 // If we corrected to an inheriting constructor, handle it as one.
7781 auto *RD = dyn_cast<CXXRecordDecl>(ND);
7782 if (RD && RD->isInjectedClassName()) {
7783 // Fix up the information we'll use to build the using declaration.
7784 if (Corrected.WillReplaceSpecifier()) {
7785 NestedNameSpecifierLocBuilder Builder;
7786 Builder.MakeTrivial(Context, Corrected.getCorrectionSpecifier(),
7787 QualifierLoc.getSourceRange());
7788 QualifierLoc = Builder.getWithLocInContext(Context);
7789 }
7790
7791 NameInfo.setName(Context.DeclarationNames.getCXXConstructorName(
7792 Context.getCanonicalType(Context.getRecordType(RD))));
Craig Topperc3ec1492014-05-26 06:22:03 +00007793 NameInfo.setNamedTypeInfo(nullptr);
Richard Smith09d5b3a2014-05-01 00:35:04 +00007794
7795 // Build it and process it as an inheriting constructor.
7796 UsingDecl *UD = BuildValid();
7797 CheckInheritingConstructorUsingDecl(UD);
7798 return UD;
7799 }
7800
7801 // FIXME: Pick up all the declarations if we found an overloaded function.
7802 R.setLookupName(Corrected.getCorrection());
7803 R.addDecl(ND);
Kaelyn Uhrain8ec9f5f2013-07-10 17:34:22 +00007804 } else {
Richard Smithf9b15102013-08-17 00:46:16 +00007805 Diag(IdentLoc, diag::err_no_member)
Kaelyn Uhrain8ec9f5f2013-07-10 17:34:22 +00007806 << NameInfo.getName() << LookupContext << SS.getRange();
Richard Smith09d5b3a2014-05-01 00:35:04 +00007807 return BuildInvalid();
Kaelyn Uhrain8ec9f5f2013-07-10 17:34:22 +00007808 }
Douglas Gregorfec52632009-06-20 00:51:54 +00007809 }
7810
Richard Smith09d5b3a2014-05-01 00:35:04 +00007811 if (R.isAmbiguous())
7812 return BuildInvalid();
Mike Stump11289f42009-09-09 15:08:12 +00007813
Enea Zaffanellae05a3cf2013-07-22 10:54:09 +00007814 if (HasTypenameKeyword) {
John McCalle61f2ba2009-11-18 02:36:19 +00007815 // If we asked for a typename and got a non-type decl, error out.
John McCallb96ec562009-12-04 22:46:56 +00007816 if (!R.getAsSingle<TypeDecl>()) {
John McCalle61f2ba2009-11-18 02:36:19 +00007817 Diag(IdentLoc, diag::err_using_typename_non_type);
7818 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I)
7819 Diag((*I)->getUnderlyingDecl()->getLocation(),
7820 diag::note_using_decl_target);
Richard Smith09d5b3a2014-05-01 00:35:04 +00007821 return BuildInvalid();
John McCalle61f2ba2009-11-18 02:36:19 +00007822 }
7823 } else {
7824 // If we asked for a non-typename and we got a type, error out,
7825 // but only if this is an instantiation of an unresolved using
7826 // decl. Otherwise just silently find the type name.
John McCallb96ec562009-12-04 22:46:56 +00007827 if (IsInstantiation && R.getAsSingle<TypeDecl>()) {
John McCalle61f2ba2009-11-18 02:36:19 +00007828 Diag(IdentLoc, diag::err_using_dependent_value_is_type);
7829 Diag(R.getFoundDecl()->getLocation(), diag::note_using_decl_target);
Richard Smith09d5b3a2014-05-01 00:35:04 +00007830 return BuildInvalid();
John McCalle61f2ba2009-11-18 02:36:19 +00007831 }
Anders Carlsson59140b32009-08-28 03:16:11 +00007832 }
7833
Anders Carlsson5a9c5ac2009-08-28 03:35:18 +00007834 // C++0x N2914 [namespace.udecl]p6:
7835 // A using-declaration shall not name a namespace.
John McCallb96ec562009-12-04 22:46:56 +00007836 if (R.getAsSingle<NamespaceDecl>()) {
Anders Carlsson5a9c5ac2009-08-28 03:35:18 +00007837 Diag(IdentLoc, diag::err_using_decl_can_not_refer_to_namespace)
7838 << SS.getRange();
Richard Smith09d5b3a2014-05-01 00:35:04 +00007839 return BuildInvalid();
Anders Carlsson5a9c5ac2009-08-28 03:35:18 +00007840 }
Mike Stump11289f42009-09-09 15:08:12 +00007841
Richard Smith09d5b3a2014-05-01 00:35:04 +00007842 UsingDecl *UD = BuildValid();
John McCall84d87672009-12-10 09:41:52 +00007843 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) {
Craig Topperc3ec1492014-05-26 06:22:03 +00007844 UsingShadowDecl *PrevDecl = nullptr;
Richard Smithfd8634a2013-10-23 02:17:46 +00007845 if (!CheckUsingShadowDecl(UD, *I, Previous, PrevDecl))
7846 BuildUsingShadowDecl(S, UD, *I, PrevDecl);
John McCall84d87672009-12-10 09:41:52 +00007847 }
John McCall3f746822009-11-17 05:59:44 +00007848
7849 return UD;
Douglas Gregorfec52632009-06-20 00:51:54 +00007850}
7851
Sebastian Redl08905022011-02-05 19:23:19 +00007852/// Additional checks for a using declaration referring to a constructor name.
Richard Smith23d55872012-04-02 01:30:27 +00007853bool Sema::CheckInheritingConstructorUsingDecl(UsingDecl *UD) {
Enea Zaffanellae05a3cf2013-07-22 10:54:09 +00007854 assert(!UD->hasTypename() && "expecting a constructor name");
Sebastian Redl08905022011-02-05 19:23:19 +00007855
Douglas Gregora9d87bc2011-02-25 00:36:19 +00007856 const Type *SourceType = UD->getQualifier()->getAsType();
Sebastian Redl08905022011-02-05 19:23:19 +00007857 assert(SourceType &&
7858 "Using decl naming constructor doesn't have type in scope spec.");
7859 CXXRecordDecl *TargetClass = cast<CXXRecordDecl>(CurContext);
7860
7861 // Check whether the named type is a direct base class.
Richard Smith09d5b3a2014-05-01 00:35:04 +00007862 bool AnyDependentBases = false;
7863 auto *Base = findDirectBaseWithType(TargetClass, QualType(SourceType, 0),
7864 AnyDependentBases);
7865 if (!Base && !AnyDependentBases) {
Enea Zaffanellae05a3cf2013-07-22 10:54:09 +00007866 Diag(UD->getUsingLoc(),
Sebastian Redl08905022011-02-05 19:23:19 +00007867 diag::err_using_decl_constructor_not_in_direct_base)
7868 << UD->getNameInfo().getSourceRange()
7869 << QualType(SourceType, 0) << TargetClass;
Richard Smith09d5b3a2014-05-01 00:35:04 +00007870 UD->setInvalidDecl();
Sebastian Redl08905022011-02-05 19:23:19 +00007871 return true;
7872 }
7873
Richard Smith09d5b3a2014-05-01 00:35:04 +00007874 if (Base)
7875 Base->setInheritConstructors();
Sebastian Redl08905022011-02-05 19:23:19 +00007876
7877 return false;
7878}
7879
John McCall84d87672009-12-10 09:41:52 +00007880/// Checks that the given using declaration is not an invalid
7881/// redeclaration. Note that this is checking only for the using decl
7882/// itself, not for any ill-formedness among the UsingShadowDecls.
7883bool Sema::CheckUsingDeclRedeclaration(SourceLocation UsingLoc,
Enea Zaffanellae05a3cf2013-07-22 10:54:09 +00007884 bool HasTypenameKeyword,
John McCall84d87672009-12-10 09:41:52 +00007885 const CXXScopeSpec &SS,
7886 SourceLocation NameLoc,
7887 const LookupResult &Prev) {
7888 // C++03 [namespace.udecl]p8:
7889 // C++0x [namespace.udecl]p10:
7890 // A using-declaration is a declaration and can therefore be used
7891 // repeatedly where (and only where) multiple declarations are
7892 // allowed.
Douglas Gregor4b718ee2010-05-06 23:31:27 +00007893 //
John McCall032092f2010-11-29 18:01:58 +00007894 // That's in non-member contexts.
7895 if (!CurContext->getRedeclContext()->isRecord())
John McCall84d87672009-12-10 09:41:52 +00007896 return false;
7897
Aaron Ballman4a979672014-01-03 13:56:08 +00007898 NestedNameSpecifier *Qual = SS.getScopeRep();
John McCall84d87672009-12-10 09:41:52 +00007899
7900 for (LookupResult::iterator I = Prev.begin(), E = Prev.end(); I != E; ++I) {
7901 NamedDecl *D = *I;
7902
7903 bool DTypename;
7904 NestedNameSpecifier *DQual;
7905 if (UsingDecl *UD = dyn_cast<UsingDecl>(D)) {
Enea Zaffanellae05a3cf2013-07-22 10:54:09 +00007906 DTypename = UD->hasTypename();
Douglas Gregora9d87bc2011-02-25 00:36:19 +00007907 DQual = UD->getQualifier();
John McCall84d87672009-12-10 09:41:52 +00007908 } else if (UnresolvedUsingValueDecl *UD
7909 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
7910 DTypename = false;
Douglas Gregora9d87bc2011-02-25 00:36:19 +00007911 DQual = UD->getQualifier();
John McCall84d87672009-12-10 09:41:52 +00007912 } else if (UnresolvedUsingTypenameDecl *UD
7913 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
7914 DTypename = true;
Douglas Gregora9d87bc2011-02-25 00:36:19 +00007915 DQual = UD->getQualifier();
John McCall84d87672009-12-10 09:41:52 +00007916 } else continue;
7917
7918 // using decls differ if one says 'typename' and the other doesn't.
7919 // FIXME: non-dependent using decls?
Enea Zaffanellae05a3cf2013-07-22 10:54:09 +00007920 if (HasTypenameKeyword != DTypename) continue;
John McCall84d87672009-12-10 09:41:52 +00007921
7922 // using decls differ if they name different scopes (but note that
7923 // template instantiation can cause this check to trigger when it
7924 // didn't before instantiation).
7925 if (Context.getCanonicalNestedNameSpecifier(Qual) !=
7926 Context.getCanonicalNestedNameSpecifier(DQual))
7927 continue;
7928
7929 Diag(NameLoc, diag::err_using_decl_redeclaration) << SS.getRange();
John McCalle29c5cd2009-12-10 19:51:03 +00007930 Diag(D->getLocation(), diag::note_using_decl) << 1;
John McCall84d87672009-12-10 09:41:52 +00007931 return true;
7932 }
7933
7934 return false;
7935}
7936
John McCall3969e302009-12-08 07:46:18 +00007937
John McCallb96ec562009-12-04 22:46:56 +00007938/// Checks that the given nested-name qualifier used in a using decl
7939/// in the current context is appropriately related to the current
7940/// scope. If an error is found, diagnoses it and returns true.
7941bool Sema::CheckUsingDeclQualifier(SourceLocation UsingLoc,
7942 const CXXScopeSpec &SS,
Richard Smith7ad0b882014-04-02 21:44:35 +00007943 const DeclarationNameInfo &NameInfo,
John McCallb96ec562009-12-04 22:46:56 +00007944 SourceLocation NameLoc) {
John McCall3969e302009-12-08 07:46:18 +00007945 DeclContext *NamedContext = computeDeclContext(SS);
John McCallb96ec562009-12-04 22:46:56 +00007946
John McCall3969e302009-12-08 07:46:18 +00007947 if (!CurContext->isRecord()) {
7948 // C++03 [namespace.udecl]p3:
7949 // C++0x [namespace.udecl]p8:
7950 // A using-declaration for a class member shall be a member-declaration.
7951
7952 // If we weren't able to compute a valid scope, it must be a
7953 // dependent class scope.
7954 if (!NamedContext || NamedContext->isRecord()) {
Richard Smith7ad0b882014-04-02 21:44:35 +00007955 auto *RD = dyn_cast<CXXRecordDecl>(NamedContext);
7956 if (RD && RequireCompleteDeclContext(const_cast<CXXScopeSpec&>(SS), RD))
Craig Topperc3ec1492014-05-26 06:22:03 +00007957 RD = nullptr;
Richard Smith7ad0b882014-04-02 21:44:35 +00007958
John McCall3969e302009-12-08 07:46:18 +00007959 Diag(NameLoc, diag::err_using_decl_can_not_refer_to_class_member)
7960 << SS.getRange();
Richard Smith7ad0b882014-04-02 21:44:35 +00007961
7962 // If we have a complete, non-dependent source type, try to suggest a
7963 // way to get the same effect.
7964 if (!RD)
7965 return true;
7966
7967 // Find what this using-declaration was referring to.
7968 LookupResult R(*this, NameInfo, LookupOrdinaryName);
7969 R.setHideTags(false);
7970 R.suppressDiagnostics();
7971 LookupQualifiedName(R, RD);
7972
7973 if (R.getAsSingle<TypeDecl>()) {
7974 if (getLangOpts().CPlusPlus11) {
7975 // Convert 'using X::Y;' to 'using Y = X::Y;'.
7976 Diag(SS.getBeginLoc(), diag::note_using_decl_class_member_workaround)
7977 << 0 // alias declaration
7978 << FixItHint::CreateInsertion(SS.getBeginLoc(),
7979 NameInfo.getName().getAsString() +
7980 " = ");
7981 } else {
7982 // Convert 'using X::Y;' to 'typedef X::Y Y;'.
7983 SourceLocation InsertLoc =
7984 PP.getLocForEndOfToken(NameInfo.getLocEnd());
7985 Diag(InsertLoc, diag::note_using_decl_class_member_workaround)
7986 << 1 // typedef declaration
7987 << FixItHint::CreateReplacement(UsingLoc, "typedef")
7988 << FixItHint::CreateInsertion(
7989 InsertLoc, " " + NameInfo.getName().getAsString());
7990 }
7991 } else if (R.getAsSingle<VarDecl>()) {
7992 // Don't provide a fixit outside C++11 mode; we don't want to suggest
7993 // repeating the type of the static data member here.
7994 FixItHint FixIt;
7995 if (getLangOpts().CPlusPlus11) {
7996 // Convert 'using X::Y;' to 'auto &Y = X::Y;'.
7997 FixIt = FixItHint::CreateReplacement(
7998 UsingLoc, "auto &" + NameInfo.getName().getAsString() + " = ");
7999 }
8000
8001 Diag(UsingLoc, diag::note_using_decl_class_member_workaround)
8002 << 2 // reference declaration
8003 << FixIt;
8004 }
John McCall3969e302009-12-08 07:46:18 +00008005 return true;
8006 }
8007
8008 // Otherwise, everything is known to be fine.
8009 return false;
8010 }
8011
8012 // The current scope is a record.
8013
8014 // If the named context is dependent, we can't decide much.
8015 if (!NamedContext) {
8016 // FIXME: in C++0x, we can diagnose if we can prove that the
8017 // nested-name-specifier does not refer to a base class, which is
8018 // still possible in some cases.
8019
8020 // Otherwise we have to conservatively report that things might be
8021 // okay.
8022 return false;
8023 }
8024
8025 if (!NamedContext->isRecord()) {
8026 // Ideally this would point at the last name in the specifier,
8027 // but we don't have that level of source info.
8028 Diag(SS.getRange().getBegin(),
8029 diag::err_using_decl_nested_name_specifier_is_not_class)
Aaron Ballman5fe6c802014-01-03 13:45:46 +00008030 << SS.getScopeRep() << SS.getRange();
John McCall3969e302009-12-08 07:46:18 +00008031 return true;
8032 }
8033
Douglas Gregor7c842292010-12-21 07:41:49 +00008034 if (!NamedContext->isDependentContext() &&
8035 RequireCompleteDeclContext(const_cast<CXXScopeSpec&>(SS), NamedContext))
8036 return true;
8037
Richard Smith2bf7fdb2013-01-02 11:42:31 +00008038 if (getLangOpts().CPlusPlus11) {
John McCall3969e302009-12-08 07:46:18 +00008039 // C++0x [namespace.udecl]p3:
8040 // In a using-declaration used as a member-declaration, the
8041 // nested-name-specifier shall name a base class of the class
8042 // being defined.
8043
8044 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(
8045 cast<CXXRecordDecl>(NamedContext))) {
8046 if (CurContext == NamedContext) {
8047 Diag(NameLoc,
8048 diag::err_using_decl_nested_name_specifier_is_current_class)
8049 << SS.getRange();
8050 return true;
8051 }
8052
8053 Diag(SS.getRange().getBegin(),
8054 diag::err_using_decl_nested_name_specifier_is_not_base_class)
Aaron Ballman4a979672014-01-03 13:56:08 +00008055 << SS.getScopeRep()
John McCall3969e302009-12-08 07:46:18 +00008056 << cast<CXXRecordDecl>(CurContext)
8057 << SS.getRange();
8058 return true;
8059 }
8060
8061 return false;
8062 }
8063
8064 // C++03 [namespace.udecl]p4:
8065 // A using-declaration used as a member-declaration shall refer
8066 // to a member of a base class of the class being defined [etc.].
8067
8068 // Salient point: SS doesn't have to name a base class as long as
8069 // lookup only finds members from base classes. Therefore we can
8070 // diagnose here only if we can prove that that can't happen,
8071 // i.e. if the class hierarchies provably don't intersect.
8072
8073 // TODO: it would be nice if "definitely valid" results were cached
8074 // in the UsingDecl and UsingShadowDecl so that these checks didn't
8075 // need to be repeated.
8076
8077 struct UserData {
Benjamin Kramer3adbe1c2012-02-23 16:06:01 +00008078 llvm::SmallPtrSet<const CXXRecordDecl*, 4> Bases;
John McCall3969e302009-12-08 07:46:18 +00008079
8080 static bool collect(const CXXRecordDecl *Base, void *OpaqueData) {
8081 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
8082 Data->Bases.insert(Base);
8083 return true;
8084 }
8085
8086 bool hasDependentBases(const CXXRecordDecl *Class) {
8087 return !Class->forallBases(collect, this);
8088 }
8089
8090 /// Returns true if the base is dependent or is one of the
8091 /// accumulated base classes.
8092 static bool doesNotContain(const CXXRecordDecl *Base, void *OpaqueData) {
8093 UserData *Data = reinterpret_cast<UserData*>(OpaqueData);
8094 return !Data->Bases.count(Base);
8095 }
8096
8097 bool mightShareBases(const CXXRecordDecl *Class) {
8098 return Bases.count(Class) || !Class->forallBases(doesNotContain, this);
8099 }
8100 };
8101
8102 UserData Data;
8103
8104 // Returns false if we find a dependent base.
8105 if (Data.hasDependentBases(cast<CXXRecordDecl>(CurContext)))
8106 return false;
8107
8108 // Returns false if the class has a dependent base or if it or one
8109 // of its bases is present in the base set of the current context.
8110 if (Data.mightShareBases(cast<CXXRecordDecl>(NamedContext)))
8111 return false;
8112
8113 Diag(SS.getRange().getBegin(),
8114 diag::err_using_decl_nested_name_specifier_is_not_base_class)
Aaron Ballman4a979672014-01-03 13:56:08 +00008115 << SS.getScopeRep()
John McCall3969e302009-12-08 07:46:18 +00008116 << cast<CXXRecordDecl>(CurContext)
8117 << SS.getRange();
8118
8119 return true;
John McCallb96ec562009-12-04 22:46:56 +00008120}
8121
Richard Smithdda56e42011-04-15 14:24:37 +00008122Decl *Sema::ActOnAliasDeclaration(Scope *S,
8123 AccessSpecifier AS,
Richard Smith3f1b5d02011-05-05 21:57:07 +00008124 MultiTemplateParamsArg TemplateParamLists,
Richard Smithdda56e42011-04-15 14:24:37 +00008125 SourceLocation UsingLoc,
8126 UnqualifiedId &Name,
Richard Smith54ecd982013-02-20 19:22:51 +00008127 AttributeList *AttrList,
Richard Smithdda56e42011-04-15 14:24:37 +00008128 TypeResult Type) {
Richard Smith3f1b5d02011-05-05 21:57:07 +00008129 // Skip up to the relevant declaration scope.
8130 while (S->getFlags() & Scope::TemplateParamScope)
8131 S = S->getParent();
Richard Smithdda56e42011-04-15 14:24:37 +00008132 assert((S->getFlags() & Scope::DeclScope) &&
8133 "got alias-declaration outside of declaration scope");
8134
8135 if (Type.isInvalid())
Craig Topperc3ec1492014-05-26 06:22:03 +00008136 return nullptr;
Richard Smithdda56e42011-04-15 14:24:37 +00008137
8138 bool Invalid = false;
8139 DeclarationNameInfo NameInfo = GetNameFromUnqualifiedId(Name);
Craig Topperc3ec1492014-05-26 06:22:03 +00008140 TypeSourceInfo *TInfo = nullptr;
Nick Lewycky82e47802011-05-02 01:07:19 +00008141 GetTypeFromParser(Type.get(), &TInfo);
Richard Smithdda56e42011-04-15 14:24:37 +00008142
8143 if (DiagnoseClassNameShadow(CurContext, NameInfo))
Craig Topperc3ec1492014-05-26 06:22:03 +00008144 return nullptr;
Richard Smithdda56e42011-04-15 14:24:37 +00008145
8146 if (DiagnoseUnexpandedParameterPack(Name.StartLocation, TInfo,
Richard Smith3f1b5d02011-05-05 21:57:07 +00008147 UPPC_DeclarationType)) {
Richard Smithdda56e42011-04-15 14:24:37 +00008148 Invalid = true;
Richard Smith3f1b5d02011-05-05 21:57:07 +00008149 TInfo = Context.getTrivialTypeSourceInfo(Context.IntTy,
8150 TInfo->getTypeLoc().getBeginLoc());
8151 }
Richard Smithdda56e42011-04-15 14:24:37 +00008152
8153 LookupResult Previous(*this, NameInfo, LookupOrdinaryName, ForRedeclaration);
8154 LookupName(Previous, S);
8155
8156 // Warn about shadowing the name of a template parameter.
8157 if (Previous.isSingleResult() &&
8158 Previous.getFoundDecl()->isTemplateParameter()) {
Douglas Gregorf4ef4d22011-10-20 17:58:49 +00008159 DiagnoseTemplateParameterShadow(Name.StartLocation,Previous.getFoundDecl());
Richard Smithdda56e42011-04-15 14:24:37 +00008160 Previous.clear();
8161 }
8162
8163 assert(Name.Kind == UnqualifiedId::IK_Identifier &&
8164 "name in alias declaration must be an identifier");
8165 TypeAliasDecl *NewTD = TypeAliasDecl::Create(Context, CurContext, UsingLoc,
8166 Name.StartLocation,
8167 Name.Identifier, TInfo);
8168
8169 NewTD->setAccess(AS);
8170
8171 if (Invalid)
8172 NewTD->setInvalidDecl();
8173
Richard Smith54ecd982013-02-20 19:22:51 +00008174 ProcessDeclAttributeList(S, NewTD, AttrList);
8175
Richard Smith3f1b5d02011-05-05 21:57:07 +00008176 CheckTypedefForVariablyModifiedType(S, NewTD);
8177 Invalid |= NewTD->isInvalidDecl();
8178
Richard Smithdda56e42011-04-15 14:24:37 +00008179 bool Redeclaration = false;
Richard Smith3f1b5d02011-05-05 21:57:07 +00008180
8181 NamedDecl *NewND;
8182 if (TemplateParamLists.size()) {
Craig Topperc3ec1492014-05-26 06:22:03 +00008183 TypeAliasTemplateDecl *OldDecl = nullptr;
8184 TemplateParameterList *OldTemplateParams = nullptr;
Richard Smith3f1b5d02011-05-05 21:57:07 +00008185
8186 if (TemplateParamLists.size() != 1) {
8187 Diag(UsingLoc, diag::err_alias_template_extra_headers)
Benjamin Kramer62b95d82012-08-23 21:35:17 +00008188 << SourceRange(TemplateParamLists[1]->getTemplateLoc(),
8189 TemplateParamLists[TemplateParamLists.size()-1]->getRAngleLoc());
Richard Smith3f1b5d02011-05-05 21:57:07 +00008190 }
Benjamin Kramer62b95d82012-08-23 21:35:17 +00008191 TemplateParameterList *TemplateParams = TemplateParamLists[0];
Richard Smith3f1b5d02011-05-05 21:57:07 +00008192
8193 // Only consider previous declarations in the same scope.
8194 FilterLookupForScope(Previous, CurContext, S, /*ConsiderLinkage*/false,
8195 /*ExplicitInstantiationOrSpecialization*/false);
8196 if (!Previous.empty()) {
8197 Redeclaration = true;
8198
8199 OldDecl = Previous.getAsSingle<TypeAliasTemplateDecl>();
8200 if (!OldDecl && !Invalid) {
8201 Diag(UsingLoc, diag::err_redefinition_different_kind)
8202 << Name.Identifier;
8203
8204 NamedDecl *OldD = Previous.getRepresentativeDecl();
8205 if (OldD->getLocation().isValid())
8206 Diag(OldD->getLocation(), diag::note_previous_definition);
8207
8208 Invalid = true;
8209 }
8210
8211 if (!Invalid && OldDecl && !OldDecl->isInvalidDecl()) {
8212 if (TemplateParameterListsAreEqual(TemplateParams,
8213 OldDecl->getTemplateParameters(),
8214 /*Complain=*/true,
8215 TPL_TemplateMatch))
8216 OldTemplateParams = OldDecl->getTemplateParameters();
8217 else
8218 Invalid = true;
8219
8220 TypeAliasDecl *OldTD = OldDecl->getTemplatedDecl();
8221 if (!Invalid &&
8222 !Context.hasSameType(OldTD->getUnderlyingType(),
8223 NewTD->getUnderlyingType())) {
8224 // FIXME: The C++0x standard does not clearly say this is ill-formed,
8225 // but we can't reasonably accept it.
8226 Diag(NewTD->getLocation(), diag::err_redefinition_different_typedef)
8227 << 2 << NewTD->getUnderlyingType() << OldTD->getUnderlyingType();
8228 if (OldTD->getLocation().isValid())
8229 Diag(OldTD->getLocation(), diag::note_previous_definition);
8230 Invalid = true;
8231 }
8232 }
8233 }
8234
8235 // Merge any previous default template arguments into our parameters,
8236 // and check the parameter list.
8237 if (CheckTemplateParameterList(TemplateParams, OldTemplateParams,
8238 TPC_TypeAliasTemplate))
Craig Topperc3ec1492014-05-26 06:22:03 +00008239 return nullptr;
Richard Smith3f1b5d02011-05-05 21:57:07 +00008240
8241 TypeAliasTemplateDecl *NewDecl =
8242 TypeAliasTemplateDecl::Create(Context, CurContext, UsingLoc,
8243 Name.Identifier, TemplateParams,
8244 NewTD);
Richard Smith43ccec8e2014-08-26 03:52:16 +00008245 NewTD->setDescribedAliasTemplate(NewDecl);
Richard Smith3f1b5d02011-05-05 21:57:07 +00008246
8247 NewDecl->setAccess(AS);
8248
8249 if (Invalid)
8250 NewDecl->setInvalidDecl();
8251 else if (OldDecl)
Rafael Espindola8db352d2013-10-17 15:37:26 +00008252 NewDecl->setPreviousDecl(OldDecl);
Richard Smith3f1b5d02011-05-05 21:57:07 +00008253
8254 NewND = NewDecl;
8255 } else {
8256 ActOnTypedefNameDecl(S, CurContext, NewTD, Previous, Redeclaration);
8257 NewND = NewTD;
8258 }
Richard Smithdda56e42011-04-15 14:24:37 +00008259
8260 if (!Redeclaration)
Richard Smith3f1b5d02011-05-05 21:57:07 +00008261 PushOnScopeChains(NewND, S);
Richard Smithdda56e42011-04-15 14:24:37 +00008262
Dmitri Gribenko7f4b3772012-08-02 20:49:51 +00008263 ActOnDocumentableDecl(NewND);
Richard Smith3f1b5d02011-05-05 21:57:07 +00008264 return NewND;
Richard Smithdda56e42011-04-15 14:24:37 +00008265}
8266
John McCall48871652010-08-21 09:40:31 +00008267Decl *Sema::ActOnNamespaceAliasDef(Scope *S,
Anders Carlsson47952ae2009-03-28 22:53:22 +00008268 SourceLocation NamespaceLoc,
Chris Lattner83f095c2009-03-28 19:18:32 +00008269 SourceLocation AliasLoc,
8270 IdentifierInfo *Alias,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00008271 CXXScopeSpec &SS,
Anders Carlsson47952ae2009-03-28 22:53:22 +00008272 SourceLocation IdentLoc,
8273 IdentifierInfo *Ident) {
Mike Stump11289f42009-09-09 15:08:12 +00008274
Anders Carlssonbb1e4722009-03-28 23:53:49 +00008275 // Lookup the namespace name.
John McCall27b18f82009-11-17 02:14:36 +00008276 LookupResult R(*this, Ident, IdentLoc, LookupNamespaceName);
8277 LookupParsedName(R, S, &SS);
Anders Carlssonbb1e4722009-03-28 23:53:49 +00008278
Anders Carlssondca83c42009-03-28 06:23:46 +00008279 // Check if we have a previous declaration with the same name.
Douglas Gregor5cf8d672010-05-03 15:37:31 +00008280 NamedDecl *PrevDecl
8281 = LookupSingleName(S, Alias, AliasLoc, LookupOrdinaryName,
8282 ForRedeclaration);
8283 if (PrevDecl && !isDeclInScope(PrevDecl, CurContext, S))
Craig Topperc3ec1492014-05-26 06:22:03 +00008284 PrevDecl = nullptr;
Douglas Gregor5cf8d672010-05-03 15:37:31 +00008285
8286 if (PrevDecl) {
Anders Carlssonbb1e4722009-03-28 23:53:49 +00008287 if (NamespaceAliasDecl *AD = dyn_cast<NamespaceAliasDecl>(PrevDecl)) {
Mike Stump11289f42009-09-09 15:08:12 +00008288 // We already have an alias with the same name that points to the same
Anders Carlssonbb1e4722009-03-28 23:53:49 +00008289 // namespace, so don't create a new one.
Douglas Gregor4667eff2010-03-26 22:59:39 +00008290 // FIXME: At some point, we'll want to create the (redundant)
8291 // declaration to maintain better source information.
John McCall9f3059a2009-10-09 21:13:30 +00008292 if (!R.isAmbiguous() && !R.empty() &&
Douglas Gregor4667eff2010-03-26 22:59:39 +00008293 AD->getNamespace()->Equals(getNamespaceDecl(R.getFoundDecl())))
Craig Topperc3ec1492014-05-26 06:22:03 +00008294 return nullptr;
Anders Carlssonbb1e4722009-03-28 23:53:49 +00008295 }
Mike Stump11289f42009-09-09 15:08:12 +00008296
Anders Carlssondca83c42009-03-28 06:23:46 +00008297 unsigned DiagID = isa<NamespaceDecl>(PrevDecl) ? diag::err_redefinition :
8298 diag::err_redefinition_different_kind;
8299 Diag(AliasLoc, DiagID) << Alias;
8300 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Craig Topperc3ec1492014-05-26 06:22:03 +00008301 return nullptr;
Anders Carlssondca83c42009-03-28 06:23:46 +00008302 }
8303
John McCall27b18f82009-11-17 02:14:36 +00008304 if (R.isAmbiguous())
Craig Topperc3ec1492014-05-26 06:22:03 +00008305 return nullptr;
Mike Stump11289f42009-09-09 15:08:12 +00008306
John McCall9f3059a2009-10-09 21:13:30 +00008307 if (R.empty()) {
Douglas Gregorc2fa1692011-06-28 16:20:02 +00008308 if (!TryNamespaceTypoCorrection(*this, R, S, SS, IdentLoc, Ident)) {
Richard Smitha9746882012-04-05 23:13:23 +00008309 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
Craig Topperc3ec1492014-05-26 06:22:03 +00008310 return nullptr;
Douglas Gregor9629e9a2010-06-29 18:55:19 +00008311 }
Anders Carlssonac2c9652009-03-28 06:42:02 +00008312 }
Mike Stump11289f42009-09-09 15:08:12 +00008313
Fariborz Jahanian423a81f2009-06-19 19:55:27 +00008314 NamespaceAliasDecl *AliasDecl =
Mike Stump11289f42009-09-09 15:08:12 +00008315 NamespaceAliasDecl::Create(Context, CurContext, NamespaceLoc, AliasLoc,
Douglas Gregorc05ba2e2011-02-25 17:08:07 +00008316 Alias, SS.getWithLocInContext(Context),
John McCall9f3059a2009-10-09 21:13:30 +00008317 IdentLoc, R.getFoundDecl());
Mike Stump11289f42009-09-09 15:08:12 +00008318
John McCalld8d0d432010-02-16 06:53:13 +00008319 PushOnScopeChains(AliasDecl, S);
John McCall48871652010-08-21 09:40:31 +00008320 return AliasDecl;
Anders Carlsson9205d552009-03-28 05:27:17 +00008321}
8322
Alexis Hunt6d5b96c2011-05-10 00:49:42 +00008323Sema::ImplicitExceptionSpecification
Richard Smithd3b5c9082012-07-27 04:22:15 +00008324Sema::ComputeDefaultedDefaultCtorExceptionSpec(SourceLocation Loc,
8325 CXXMethodDecl *MD) {
8326 CXXRecordDecl *ClassDecl = MD->getParent();
8327
Douglas Gregor6d880b12010-07-01 22:31:05 +00008328 // C++ [except.spec]p14:
8329 // An implicitly declared special member function (Clause 12) shall have an
8330 // exception-specification. [...]
Richard Smithf623c962012-04-17 00:58:00 +00008331 ImplicitExceptionSpecification ExceptSpec(*this);
Abramo Bagnaradd8fc042011-07-11 08:52:40 +00008332 if (ClassDecl->isInvalidDecl())
8333 return ExceptSpec;
Douglas Gregor6d880b12010-07-01 22:31:05 +00008334
Sebastian Redlfa453cf2011-03-12 11:50:43 +00008335 // Direct base-class constructors.
Aaron Ballman574705e2014-03-13 15:41:46 +00008336 for (const auto &B : ClassDecl->bases()) {
8337 if (B.isVirtual()) // Handled below.
Douglas Gregor6d880b12010-07-01 22:31:05 +00008338 continue;
8339
Aaron Ballman574705e2014-03-13 15:41:46 +00008340 if (const RecordType *BaseType = B.getType()->getAs<RecordType>()) {
Douglas Gregor9672f922010-07-03 00:47:00 +00008341 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Alexis Hunteef8ee02011-06-10 03:50:41 +00008342 CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl);
8343 // If this is a deleted function, add it anyway. This might be conformant
8344 // with the standard. This might not. I'm not sure. It might not matter.
8345 if (Constructor)
Aaron Ballman574705e2014-03-13 15:41:46 +00008346 ExceptSpec.CalledDecl(B.getLocStart(), Constructor);
Douglas Gregor9672f922010-07-03 00:47:00 +00008347 }
Douglas Gregor6d880b12010-07-01 22:31:05 +00008348 }
Sebastian Redlfa453cf2011-03-12 11:50:43 +00008349
8350 // Virtual base-class constructors.
Aaron Ballman445a9392014-03-13 16:15:17 +00008351 for (const auto &B : ClassDecl->vbases()) {
8352 if (const RecordType *BaseType = B.getType()->getAs<RecordType>()) {
Douglas Gregor9672f922010-07-03 00:47:00 +00008353 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Alexis Hunteef8ee02011-06-10 03:50:41 +00008354 CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl);
8355 // If this is a deleted function, add it anyway. This might be conformant
8356 // with the standard. This might not. I'm not sure. It might not matter.
8357 if (Constructor)
Aaron Ballman445a9392014-03-13 16:15:17 +00008358 ExceptSpec.CalledDecl(B.getLocStart(), Constructor);
Douglas Gregor9672f922010-07-03 00:47:00 +00008359 }
Douglas Gregor6d880b12010-07-01 22:31:05 +00008360 }
Sebastian Redlfa453cf2011-03-12 11:50:43 +00008361
8362 // Field constructors.
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00008363 for (const auto *F : ClassDecl->fields()) {
Richard Smith938f40b2011-06-11 17:19:42 +00008364 if (F->hasInClassInitializer()) {
8365 if (Expr *E = F->getInClassInitializer())
8366 ExceptSpec.CalledExpr(E);
8367 else if (!F->isInvalidDecl())
Richard Smithd3b5c9082012-07-27 04:22:15 +00008368 // DR1351:
8369 // If the brace-or-equal-initializer of a non-static data member
8370 // invokes a defaulted default constructor of its class or of an
8371 // enclosing class in a potentially evaluated subexpression, the
8372 // program is ill-formed.
8373 //
8374 // This resolution is unworkable: the exception specification of the
8375 // default constructor can be needed in an unevaluated context, in
8376 // particular, in the operand of a noexcept-expression, and we can be
8377 // unable to compute an exception specification for an enclosed class.
8378 //
8379 // We do not allow an in-class initializer to require the evaluation
8380 // of the exception specification for any in-class initializer whose
8381 // definition is not lexically complete.
8382 Diag(Loc, diag::err_in_class_initializer_references_def_ctor) << MD;
Richard Smith938f40b2011-06-11 17:19:42 +00008383 } else if (const RecordType *RecordTy
Douglas Gregor9672f922010-07-03 00:47:00 +00008384 = Context.getBaseElementType(F->getType())->getAs<RecordType>()) {
Alexis Hunteef8ee02011-06-10 03:50:41 +00008385 CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
8386 CXXConstructorDecl *Constructor = LookupDefaultConstructor(FieldRecDecl);
8387 // If this is a deleted function, add it anyway. This might be conformant
8388 // with the standard. This might not. I'm not sure. It might not matter.
8389 // In particular, the problem is that this function never gets called. It
8390 // might just be ill-formed because this function attempts to refer to
8391 // a deleted function here.
8392 if (Constructor)
Richard Smithf623c962012-04-17 00:58:00 +00008393 ExceptSpec.CalledDecl(F->getLocation(), Constructor);
Douglas Gregor9672f922010-07-03 00:47:00 +00008394 }
Douglas Gregor6d880b12010-07-01 22:31:05 +00008395 }
John McCalldb40c7f2010-12-14 08:05:40 +00008396
Alexis Hunt6d5b96c2011-05-10 00:49:42 +00008397 return ExceptSpec;
8398}
8399
Richard Smithc2bc61b2013-03-18 21:12:30 +00008400Sema::ImplicitExceptionSpecification
Richard Smithb7151b92013-04-10 06:11:48 +00008401Sema::ComputeInheritingCtorExceptionSpec(CXXConstructorDecl *CD) {
8402 CXXRecordDecl *ClassDecl = CD->getParent();
8403
8404 // C++ [except.spec]p14:
8405 // An inheriting constructor [...] shall have an exception-specification. [...]
Richard Smithc2bc61b2013-03-18 21:12:30 +00008406 ImplicitExceptionSpecification ExceptSpec(*this);
Richard Smithb7151b92013-04-10 06:11:48 +00008407 if (ClassDecl->isInvalidDecl())
8408 return ExceptSpec;
8409
8410 // Inherited constructor.
8411 const CXXConstructorDecl *InheritedCD = CD->getInheritedConstructor();
8412 const CXXRecordDecl *InheritedDecl = InheritedCD->getParent();
8413 // FIXME: Copying or moving the parameters could add extra exceptions to the
8414 // set, as could the default arguments for the inherited constructor. This
8415 // will be addressed when we implement the resolution of core issue 1351.
8416 ExceptSpec.CalledDecl(CD->getLocStart(), InheritedCD);
8417
8418 // Direct base-class constructors.
Aaron Ballman574705e2014-03-13 15:41:46 +00008419 for (const auto &B : ClassDecl->bases()) {
8420 if (B.isVirtual()) // Handled below.
Richard Smithb7151b92013-04-10 06:11:48 +00008421 continue;
8422
Aaron Ballman574705e2014-03-13 15:41:46 +00008423 if (const RecordType *BaseType = B.getType()->getAs<RecordType>()) {
Richard Smithb7151b92013-04-10 06:11:48 +00008424 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
8425 if (BaseClassDecl == InheritedDecl)
8426 continue;
8427 CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl);
8428 if (Constructor)
Aaron Ballman574705e2014-03-13 15:41:46 +00008429 ExceptSpec.CalledDecl(B.getLocStart(), Constructor);
Richard Smithb7151b92013-04-10 06:11:48 +00008430 }
8431 }
8432
8433 // Virtual base-class constructors.
Aaron Ballman445a9392014-03-13 16:15:17 +00008434 for (const auto &B : ClassDecl->vbases()) {
8435 if (const RecordType *BaseType = B.getType()->getAs<RecordType>()) {
Richard Smithb7151b92013-04-10 06:11:48 +00008436 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
8437 if (BaseClassDecl == InheritedDecl)
8438 continue;
8439 CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl);
8440 if (Constructor)
Aaron Ballman445a9392014-03-13 16:15:17 +00008441 ExceptSpec.CalledDecl(B.getLocStart(), Constructor);
Richard Smithb7151b92013-04-10 06:11:48 +00008442 }
8443 }
8444
8445 // Field constructors.
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00008446 for (const auto *F : ClassDecl->fields()) {
Richard Smithb7151b92013-04-10 06:11:48 +00008447 if (F->hasInClassInitializer()) {
8448 if (Expr *E = F->getInClassInitializer())
8449 ExceptSpec.CalledExpr(E);
8450 else if (!F->isInvalidDecl())
8451 Diag(CD->getLocation(),
8452 diag::err_in_class_initializer_references_def_ctor) << CD;
8453 } else if (const RecordType *RecordTy
8454 = Context.getBaseElementType(F->getType())->getAs<RecordType>()) {
8455 CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
8456 CXXConstructorDecl *Constructor = LookupDefaultConstructor(FieldRecDecl);
8457 if (Constructor)
8458 ExceptSpec.CalledDecl(F->getLocation(), Constructor);
8459 }
8460 }
8461
Richard Smithc2bc61b2013-03-18 21:12:30 +00008462 return ExceptSpec;
8463}
8464
Richard Smith8bf22e52012-11-29 01:34:07 +00008465namespace {
8466/// RAII object to register a special member as being currently declared.
8467struct DeclaringSpecialMember {
8468 Sema &S;
8469 Sema::SpecialMemberDecl D;
8470 bool WasAlreadyBeingDeclared;
8471
8472 DeclaringSpecialMember(Sema &S, CXXRecordDecl *RD, Sema::CXXSpecialMember CSM)
8473 : S(S), D(RD, CSM) {
8474 WasAlreadyBeingDeclared = !S.SpecialMembersBeingDeclared.insert(D);
8475 if (WasAlreadyBeingDeclared)
8476 // This almost never happens, but if it does, ensure that our cache
8477 // doesn't contain a stale result.
8478 S.SpecialMemberCache.clear();
8479
8480 // FIXME: Register a note to be produced if we encounter an error while
8481 // declaring the special member.
8482 }
8483 ~DeclaringSpecialMember() {
8484 if (!WasAlreadyBeingDeclared)
8485 S.SpecialMembersBeingDeclared.erase(D);
8486 }
8487
8488 /// \brief Are we already trying to declare this special member?
8489 bool isAlreadyBeingDeclared() const {
8490 return WasAlreadyBeingDeclared;
8491 }
8492};
8493}
8494
Alexis Hunt6d5b96c2011-05-10 00:49:42 +00008495CXXConstructorDecl *Sema::DeclareImplicitDefaultConstructor(
8496 CXXRecordDecl *ClassDecl) {
8497 // C++ [class.ctor]p5:
8498 // A default constructor for a class X is a constructor of class X
8499 // that can be called without an argument. If there is no
8500 // user-declared constructor for class X, a default constructor is
8501 // implicitly declared. An implicitly-declared default constructor
8502 // is an inline public member of its class.
Richard Smith7d125a12012-11-27 21:20:31 +00008503 assert(ClassDecl->needsImplicitDefaultConstructor() &&
Alexis Hunt6d5b96c2011-05-10 00:49:42 +00008504 "Should not build implicit default constructor!");
8505
Richard Smith8bf22e52012-11-29 01:34:07 +00008506 DeclaringSpecialMember DSM(*this, ClassDecl, CXXDefaultConstructor);
8507 if (DSM.isAlreadyBeingDeclared())
Craig Topperc3ec1492014-05-26 06:22:03 +00008508 return nullptr;
Richard Smith8bf22e52012-11-29 01:34:07 +00008509
Richard Smithb5800092012-06-10 05:43:50 +00008510 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
8511 CXXDefaultConstructor,
8512 false);
8513
Douglas Gregor6d880b12010-07-01 22:31:05 +00008514 // Create the actual constructor declaration.
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00008515 CanQualType ClassType
8516 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Abramo Bagnaradff19302011-03-08 08:55:46 +00008517 SourceLocation ClassLoc = ClassDecl->getLocation();
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00008518 DeclarationName Name
8519 = Context.DeclarationNames.getCXXConstructorName(ClassType);
Abramo Bagnaradff19302011-03-08 08:55:46 +00008520 DeclarationNameInfo NameInfo(Name, ClassLoc);
Richard Smithcc36f692011-12-22 02:22:31 +00008521 CXXConstructorDecl *DefaultCon = CXXConstructorDecl::Create(
Craig Topperc3ec1492014-05-26 06:22:03 +00008522 Context, ClassDecl, ClassLoc, NameInfo, /*Type*/QualType(),
8523 /*TInfo=*/nullptr, /*isExplicit=*/false, /*isInline=*/true,
8524 /*isImplicitlyDeclared=*/true, Constexpr);
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00008525 DefaultCon->setAccess(AS_public);
Alexis Huntf92197c2011-05-12 03:51:51 +00008526 DefaultCon->setDefaulted();
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00008527 DefaultCon->setImplicit();
Richard Smithd3b5c9082012-07-27 04:22:15 +00008528
8529 // Build an exception specification pointing back at this constructor.
Reid Kleckner78af0702013-08-27 23:08:25 +00008530 FunctionProtoType::ExtProtoInfo EPI = getImplicitMethodEPI(*this, DefaultCon);
Dmitri Gribenko44ebbd52013-05-05 00:41:58 +00008531 DefaultCon->setType(Context.getFunctionType(Context.VoidTy, None, EPI));
Richard Smithd3b5c9082012-07-27 04:22:15 +00008532
Richard Smith6b02d462012-12-08 08:32:28 +00008533 // We don't need to use SpecialMemberIsTrivial here; triviality for default
8534 // constructors is easy to compute.
8535 DefaultCon->setTrivial(ClassDecl->hasTrivialDefaultConstructor());
8536
8537 if (ShouldDeleteSpecialMember(DefaultCon, CXXDefaultConstructor))
Richard Smithb4d2a152013-04-02 19:38:47 +00008538 SetDeclDeleted(DefaultCon, ClassLoc);
Richard Smith6b02d462012-12-08 08:32:28 +00008539
Douglas Gregor9672f922010-07-03 00:47:00 +00008540 // Note that we have declared this constructor.
Douglas Gregor9672f922010-07-03 00:47:00 +00008541 ++ASTContext::NumImplicitDefaultConstructorsDeclared;
Richard Smith6b02d462012-12-08 08:32:28 +00008542
Douglas Gregor0be31a22010-07-02 17:43:08 +00008543 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor9672f922010-07-03 00:47:00 +00008544 PushOnScopeChains(DefaultCon, S, false);
8545 ClassDecl->addDecl(DefaultCon);
Alexis Hunte77a28f2011-05-18 03:41:58 +00008546
Douglas Gregor4e8b5fb2010-07-01 22:02:46 +00008547 return DefaultCon;
8548}
8549
Fariborz Jahanian423a81f2009-06-19 19:55:27 +00008550void Sema::DefineImplicitDefaultConstructor(SourceLocation CurrentLocation,
8551 CXXConstructorDecl *Constructor) {
Alexis Huntf92197c2011-05-12 03:51:51 +00008552 assert((Constructor->isDefaulted() && Constructor->isDefaultConstructor() &&
Alexis Hunt61ae8d32011-05-23 23:14:04 +00008553 !Constructor->doesThisDeclarationHaveABody() &&
8554 !Constructor->isDeleted()) &&
Fariborz Jahanian18eb69a2009-06-22 20:37:23 +00008555 "DefineImplicitDefaultConstructor - call it for implicit default ctor");
Mike Stump11289f42009-09-09 15:08:12 +00008556
Anders Carlsson423f5d82010-04-23 16:04:08 +00008557 CXXRecordDecl *ClassDecl = Constructor->getParent();
Eli Friedman9cf6b592009-11-09 19:20:36 +00008558 assert(ClassDecl && "DefineImplicitDefaultConstructor - invalid constructor");
Eli Friedmand7686ef2009-11-09 01:05:47 +00008559
Eli Friedmaneaf34142012-10-18 20:14:08 +00008560 SynthesizedFunctionScope Scope(*this, Constructor);
Argyrios Kyrtzidis18653422010-11-19 00:19:12 +00008561 DiagnosticErrorTrap Trap(Diags);
David Blaikie3fc2f912013-01-17 05:26:25 +00008562 if (SetCtorInitializers(Constructor, /*AnyErrors=*/false) ||
Douglas Gregor54818f02010-05-12 16:39:35 +00008563 Trap.hasErrorOccurred()) {
Anders Carlsson26a807d2009-11-30 21:24:50 +00008564 Diag(CurrentLocation, diag::note_member_synthesized_at)
Alexis Hunt80f00ff2011-05-10 19:08:14 +00008565 << CXXDefaultConstructor << Context.getTagDeclType(ClassDecl);
Eli Friedman9cf6b592009-11-09 19:20:36 +00008566 Constructor->setInvalidDecl();
Douglas Gregor73193272010-09-20 16:48:21 +00008567 return;
Eli Friedman9cf6b592009-11-09 19:20:36 +00008568 }
Douglas Gregor73193272010-09-20 16:48:21 +00008569
Daniel Jasperb3b0b802014-06-20 08:44:22 +00008570 SourceLocation Loc = Constructor->getLocEnd().isValid()
8571 ? Constructor->getLocEnd()
8572 : Constructor->getLocation();
Benjamin Kramere2a929d2012-07-04 17:03:41 +00008573 Constructor->setBody(new (Context) CompoundStmt(Loc));
Douglas Gregor73193272010-09-20 16:48:21 +00008574
Eli Friedman276dd182013-09-05 00:02:25 +00008575 Constructor->markUsed(Context);
Douglas Gregor73193272010-09-20 16:48:21 +00008576 MarkVTableUsed(CurrentLocation, ClassDecl);
Sebastian Redlab238a72011-04-24 16:28:06 +00008577
8578 if (ASTMutationListener *L = getASTMutationListener()) {
8579 L->CompletedImplicitDefinition(Constructor);
8580 }
Richard Trieuef64e942013-10-25 00:56:00 +00008581
8582 DiagnoseUninitializedFields(*this, Constructor);
Fariborz Jahanian423a81f2009-06-19 19:55:27 +00008583}
8584
Richard Smith938f40b2011-06-11 17:19:42 +00008585void Sema::ActOnFinishDelayedMemberInitializers(Decl *D) {
Alp Tokerae3a9442013-10-18 05:54:19 +00008586 // Perform any delayed checks on exception specifications.
8587 CheckDelayedMemberExceptionSpecs();
Richard Smith938f40b2011-06-11 17:19:42 +00008588}
8589
Richard Smith185be182013-04-10 05:48:59 +00008590namespace {
8591/// Information on inheriting constructors to declare.
8592class InheritingConstructorInfo {
8593public:
8594 InheritingConstructorInfo(Sema &SemaRef, CXXRecordDecl *Derived)
8595 : SemaRef(SemaRef), Derived(Derived) {
8596 // Mark the constructors that we already have in the derived class.
8597 //
8598 // C++11 [class.inhctor]p3: [...] a constructor is implicitly declared [...]
8599 // unless there is a user-declared constructor with the same signature in
8600 // the class where the using-declaration appears.
8601 visitAll(Derived, &InheritingConstructorInfo::noteDeclaredInDerived);
8602 }
8603
8604 void inheritAll(CXXRecordDecl *RD) {
8605 visitAll(RD, &InheritingConstructorInfo::inherit);
8606 }
8607
8608private:
8609 /// Information about an inheriting constructor.
8610 struct InheritingConstructor {
8611 InheritingConstructor()
Craig Topperc3ec1492014-05-26 06:22:03 +00008612 : DeclaredInDerived(false), BaseCtor(nullptr), DerivedCtor(nullptr) {}
Richard Smith185be182013-04-10 05:48:59 +00008613
8614 /// If \c true, a constructor with this signature is already declared
8615 /// in the derived class.
8616 bool DeclaredInDerived;
8617
8618 /// The constructor which is inherited.
8619 const CXXConstructorDecl *BaseCtor;
8620
8621 /// The derived constructor we declared.
8622 CXXConstructorDecl *DerivedCtor;
8623 };
8624
8625 /// Inheriting constructors with a given canonical type. There can be at
8626 /// most one such non-template constructor, and any number of templated
8627 /// constructors.
8628 struct InheritingConstructorsForType {
8629 InheritingConstructor NonTemplate;
Robert Wilhelmb869a8f2013-08-10 12:33:24 +00008630 SmallVector<std::pair<TemplateParameterList *, InheritingConstructor>, 4>
8631 Templates;
Richard Smith185be182013-04-10 05:48:59 +00008632
8633 InheritingConstructor &getEntry(Sema &S, const CXXConstructorDecl *Ctor) {
8634 if (FunctionTemplateDecl *FTD = Ctor->getDescribedFunctionTemplate()) {
8635 TemplateParameterList *ParamList = FTD->getTemplateParameters();
8636 for (unsigned I = 0, N = Templates.size(); I != N; ++I)
8637 if (S.TemplateParameterListsAreEqual(ParamList, Templates[I].first,
8638 false, S.TPL_TemplateMatch))
8639 return Templates[I].second;
8640 Templates.push_back(std::make_pair(ParamList, InheritingConstructor()));
8641 return Templates.back().second;
Sebastian Redl08905022011-02-05 19:23:19 +00008642 }
Richard Smith185be182013-04-10 05:48:59 +00008643
8644 return NonTemplate;
8645 }
8646 };
8647
8648 /// Get or create the inheriting constructor record for a constructor.
8649 InheritingConstructor &getEntry(const CXXConstructorDecl *Ctor,
8650 QualType CtorType) {
8651 return Map[CtorType.getCanonicalType()->castAs<FunctionProtoType>()]
8652 .getEntry(SemaRef, Ctor);
8653 }
8654
8655 typedef void (InheritingConstructorInfo::*VisitFn)(const CXXConstructorDecl*);
8656
8657 /// Process all constructors for a class.
8658 void visitAll(const CXXRecordDecl *RD, VisitFn Callback) {
Aaron Ballman2a4bd6d2014-03-13 16:51:27 +00008659 for (const auto *Ctor : RD->ctors())
8660 (this->*Callback)(Ctor);
Richard Smith185be182013-04-10 05:48:59 +00008661 for (CXXRecordDecl::specific_decl_iterator<FunctionTemplateDecl>
8662 I(RD->decls_begin()), E(RD->decls_end());
8663 I != E; ++I) {
8664 const FunctionDecl *FD = (*I)->getTemplatedDecl();
8665 if (const CXXConstructorDecl *CD = dyn_cast<CXXConstructorDecl>(FD))
8666 (this->*Callback)(CD);
Sebastian Redl08905022011-02-05 19:23:19 +00008667 }
8668 }
Richard Smith185be182013-04-10 05:48:59 +00008669
8670 /// Note that a constructor (or constructor template) was declared in Derived.
8671 void noteDeclaredInDerived(const CXXConstructorDecl *Ctor) {
8672 getEntry(Ctor, Ctor->getType()).DeclaredInDerived = true;
8673 }
8674
8675 /// Inherit a single constructor.
8676 void inherit(const CXXConstructorDecl *Ctor) {
8677 const FunctionProtoType *CtorType =
8678 Ctor->getType()->castAs<FunctionProtoType>();
Craig Topper5fc8fc22014-08-27 06:28:36 +00008679 ArrayRef<QualType> ArgTypes = CtorType->getParamTypes();
Richard Smith185be182013-04-10 05:48:59 +00008680 FunctionProtoType::ExtProtoInfo EPI = CtorType->getExtProtoInfo();
8681
8682 SourceLocation UsingLoc = getUsingLoc(Ctor->getParent());
8683
8684 // Core issue (no number yet): the ellipsis is always discarded.
8685 if (EPI.Variadic) {
8686 SemaRef.Diag(UsingLoc, diag::warn_using_decl_constructor_ellipsis);
8687 SemaRef.Diag(Ctor->getLocation(),
8688 diag::note_using_decl_constructor_ellipsis);
8689 EPI.Variadic = false;
8690 }
8691
8692 // Declare a constructor for each number of parameters.
8693 //
8694 // C++11 [class.inhctor]p1:
8695 // The candidate set of inherited constructors from the class X named in
8696 // the using-declaration consists of [... modulo defects ...] for each
8697 // constructor or constructor template of X, the set of constructors or
8698 // constructor templates that results from omitting any ellipsis parameter
8699 // specification and successively omitting parameters with a default
8700 // argument from the end of the parameter-type-list
Richard Smith3c626ed2013-04-17 19:00:52 +00008701 unsigned MinParams = minParamsToInherit(Ctor);
8702 unsigned Params = Ctor->getNumParams();
8703 if (Params >= MinParams) {
8704 do
8705 declareCtor(UsingLoc, Ctor,
8706 SemaRef.Context.getFunctionType(
Alp Toker314cc812014-01-25 16:55:45 +00008707 Ctor->getReturnType(), ArgTypes.slice(0, Params), EPI));
Richard Smith3c626ed2013-04-17 19:00:52 +00008708 while (Params > MinParams &&
8709 Ctor->getParamDecl(--Params)->hasDefaultArg());
8710 }
Richard Smith185be182013-04-10 05:48:59 +00008711 }
8712
8713 /// Find the using-declaration which specified that we should inherit the
8714 /// constructors of \p Base.
8715 SourceLocation getUsingLoc(const CXXRecordDecl *Base) {
8716 // No fancy lookup required; just look for the base constructor name
8717 // directly within the derived class.
8718 ASTContext &Context = SemaRef.Context;
8719 DeclarationName Name = Context.DeclarationNames.getCXXConstructorName(
8720 Context.getCanonicalType(Context.getRecordType(Base)));
8721 DeclContext::lookup_const_result Decls = Derived->lookup(Name);
8722 return Decls.empty() ? Derived->getLocation() : Decls[0]->getLocation();
8723 }
8724
8725 unsigned minParamsToInherit(const CXXConstructorDecl *Ctor) {
8726 // C++11 [class.inhctor]p3:
8727 // [F]or each constructor template in the candidate set of inherited
8728 // constructors, a constructor template is implicitly declared
8729 if (Ctor->getDescribedFunctionTemplate())
8730 return 0;
8731
8732 // For each non-template constructor in the candidate set of inherited
8733 // constructors other than a constructor having no parameters or a
8734 // copy/move constructor having a single parameter, a constructor is
8735 // implicitly declared [...]
8736 if (Ctor->getNumParams() == 0)
8737 return 1;
8738 if (Ctor->isCopyOrMoveConstructor())
8739 return 2;
8740
8741 // Per discussion on core reflector, never inherit a constructor which
8742 // would become a default, copy, or move constructor of Derived either.
8743 const ParmVarDecl *PD = Ctor->getParamDecl(0);
8744 const ReferenceType *RT = PD->getType()->getAs<ReferenceType>();
8745 return (RT && RT->getPointeeCXXRecordDecl() == Derived) ? 2 : 1;
8746 }
8747
8748 /// Declare a single inheriting constructor, inheriting the specified
8749 /// constructor, with the given type.
8750 void declareCtor(SourceLocation UsingLoc, const CXXConstructorDecl *BaseCtor,
8751 QualType DerivedType) {
8752 InheritingConstructor &Entry = getEntry(BaseCtor, DerivedType);
8753
8754 // C++11 [class.inhctor]p3:
8755 // ... a constructor is implicitly declared with the same constructor
8756 // characteristics unless there is a user-declared constructor with
8757 // the same signature in the class where the using-declaration appears
8758 if (Entry.DeclaredInDerived)
8759 return;
8760
8761 // C++11 [class.inhctor]p7:
8762 // If two using-declarations declare inheriting constructors with the
8763 // same signature, the program is ill-formed
8764 if (Entry.DerivedCtor) {
8765 if (BaseCtor->getParent() != Entry.BaseCtor->getParent()) {
8766 // Only diagnose this once per constructor.
8767 if (Entry.DerivedCtor->isInvalidDecl())
8768 return;
8769 Entry.DerivedCtor->setInvalidDecl();
8770
8771 SemaRef.Diag(UsingLoc, diag::err_using_decl_constructor_conflict);
8772 SemaRef.Diag(BaseCtor->getLocation(),
8773 diag::note_using_decl_constructor_conflict_current_ctor);
8774 SemaRef.Diag(Entry.BaseCtor->getLocation(),
8775 diag::note_using_decl_constructor_conflict_previous_ctor);
8776 SemaRef.Diag(Entry.DerivedCtor->getLocation(),
8777 diag::note_using_decl_constructor_conflict_previous_using);
8778 } else {
8779 // Core issue (no number): if the same inheriting constructor is
8780 // produced by multiple base class constructors from the same base
8781 // class, the inheriting constructor is defined as deleted.
8782 SemaRef.SetDeclDeleted(Entry.DerivedCtor, UsingLoc);
8783 }
8784
8785 return;
8786 }
8787
8788 ASTContext &Context = SemaRef.Context;
8789 DeclarationName Name = Context.DeclarationNames.getCXXConstructorName(
8790 Context.getCanonicalType(Context.getRecordType(Derived)));
8791 DeclarationNameInfo NameInfo(Name, UsingLoc);
8792
Craig Topperc3ec1492014-05-26 06:22:03 +00008793 TemplateParameterList *TemplateParams = nullptr;
Richard Smith185be182013-04-10 05:48:59 +00008794 if (const FunctionTemplateDecl *FTD =
8795 BaseCtor->getDescribedFunctionTemplate()) {
8796 TemplateParams = FTD->getTemplateParameters();
8797 // We're reusing template parameters from a different DeclContext. This
8798 // is questionable at best, but works out because the template depth in
8799 // both places is guaranteed to be 0.
8800 // FIXME: Rebuild the template parameters in the new context, and
8801 // transform the function type to refer to them.
8802 }
8803
8804 // Build type source info pointing at the using-declaration. This is
8805 // required by template instantiation.
8806 TypeSourceInfo *TInfo =
8807 Context.getTrivialTypeSourceInfo(DerivedType, UsingLoc);
8808 FunctionProtoTypeLoc ProtoLoc =
8809 TInfo->getTypeLoc().IgnoreParens().castAs<FunctionProtoTypeLoc>();
8810
8811 CXXConstructorDecl *DerivedCtor = CXXConstructorDecl::Create(
8812 Context, Derived, UsingLoc, NameInfo, DerivedType,
8813 TInfo, BaseCtor->isExplicit(), /*Inline=*/true,
8814 /*ImplicitlyDeclared=*/true, /*Constexpr=*/BaseCtor->isConstexpr());
8815
8816 // Build an unevaluated exception specification for this constructor.
8817 const FunctionProtoType *FPT = DerivedType->castAs<FunctionProtoType>();
8818 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
Richard Smith8acb4282014-07-31 21:57:55 +00008819 EPI.ExceptionSpec.Type = EST_Unevaluated;
8820 EPI.ExceptionSpec.SourceDecl = DerivedCtor;
Alp Toker314cc812014-01-25 16:55:45 +00008821 DerivedCtor->setType(Context.getFunctionType(FPT->getReturnType(),
Alp Toker9cacbab2014-01-20 20:26:09 +00008822 FPT->getParamTypes(), EPI));
Richard Smith185be182013-04-10 05:48:59 +00008823
8824 // Build the parameter declarations.
8825 SmallVector<ParmVarDecl *, 16> ParamDecls;
Alp Toker9cacbab2014-01-20 20:26:09 +00008826 for (unsigned I = 0, N = FPT->getNumParams(); I != N; ++I) {
Richard Smith185be182013-04-10 05:48:59 +00008827 TypeSourceInfo *TInfo =
Alp Toker9cacbab2014-01-20 20:26:09 +00008828 Context.getTrivialTypeSourceInfo(FPT->getParamType(I), UsingLoc);
Richard Smith185be182013-04-10 05:48:59 +00008829 ParmVarDecl *PD = ParmVarDecl::Create(
Craig Topperc3ec1492014-05-26 06:22:03 +00008830 Context, DerivedCtor, UsingLoc, UsingLoc, /*IdentifierInfo=*/nullptr,
8831 FPT->getParamType(I), TInfo, SC_None, /*DefaultArg=*/nullptr);
Richard Smith185be182013-04-10 05:48:59 +00008832 PD->setScopeInfo(0, I);
8833 PD->setImplicit();
8834 ParamDecls.push_back(PD);
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00008835 ProtoLoc.setParam(I, PD);
Richard Smith185be182013-04-10 05:48:59 +00008836 }
8837
8838 // Set up the new constructor.
8839 DerivedCtor->setAccess(BaseCtor->getAccess());
8840 DerivedCtor->setParams(ParamDecls);
8841 DerivedCtor->setInheritedConstructor(BaseCtor);
8842 if (BaseCtor->isDeleted())
8843 SemaRef.SetDeclDeleted(DerivedCtor, UsingLoc);
8844
8845 // If this is a constructor template, build the template declaration.
8846 if (TemplateParams) {
8847 FunctionTemplateDecl *DerivedTemplate =
8848 FunctionTemplateDecl::Create(SemaRef.Context, Derived, UsingLoc, Name,
8849 TemplateParams, DerivedCtor);
8850 DerivedTemplate->setAccess(BaseCtor->getAccess());
8851 DerivedCtor->setDescribedFunctionTemplate(DerivedTemplate);
8852 Derived->addDecl(DerivedTemplate);
8853 } else {
8854 Derived->addDecl(DerivedCtor);
8855 }
8856
8857 Entry.BaseCtor = BaseCtor;
8858 Entry.DerivedCtor = DerivedCtor;
8859 }
8860
8861 Sema &SemaRef;
8862 CXXRecordDecl *Derived;
8863 typedef llvm::DenseMap<const Type *, InheritingConstructorsForType> MapType;
8864 MapType Map;
8865};
8866}
8867
8868void Sema::DeclareInheritingConstructors(CXXRecordDecl *ClassDecl) {
8869 // Defer declaring the inheriting constructors until the class is
8870 // instantiated.
8871 if (ClassDecl->isDependentContext())
Sebastian Redl08905022011-02-05 19:23:19 +00008872 return;
8873
Richard Smith185be182013-04-10 05:48:59 +00008874 // Find base classes from which we might inherit constructors.
8875 SmallVector<CXXRecordDecl*, 4> InheritedBases;
Aaron Ballman574705e2014-03-13 15:41:46 +00008876 for (const auto &BaseIt : ClassDecl->bases())
8877 if (BaseIt.getInheritConstructors())
8878 InheritedBases.push_back(BaseIt.getType()->getAsCXXRecordDecl());
Richard Smithc2bc61b2013-03-18 21:12:30 +00008879
Richard Smith185be182013-04-10 05:48:59 +00008880 // Go no further if we're not inheriting any constructors.
8881 if (InheritedBases.empty())
8882 return;
Sebastian Redl08905022011-02-05 19:23:19 +00008883
Richard Smith185be182013-04-10 05:48:59 +00008884 // Declare the inherited constructors.
8885 InheritingConstructorInfo ICI(*this, ClassDecl);
8886 for (unsigned I = 0, N = InheritedBases.size(); I != N; ++I)
8887 ICI.inheritAll(InheritedBases[I]);
Sebastian Redl08905022011-02-05 19:23:19 +00008888}
8889
Richard Smithc2bc61b2013-03-18 21:12:30 +00008890void Sema::DefineInheritingConstructor(SourceLocation CurrentLocation,
8891 CXXConstructorDecl *Constructor) {
8892 CXXRecordDecl *ClassDecl = Constructor->getParent();
8893 assert(Constructor->getInheritedConstructor() &&
8894 !Constructor->doesThisDeclarationHaveABody() &&
8895 !Constructor->isDeleted());
8896
8897 SynthesizedFunctionScope Scope(*this, Constructor);
8898 DiagnosticErrorTrap Trap(Diags);
8899 if (SetCtorInitializers(Constructor, /*AnyErrors=*/false) ||
8900 Trap.hasErrorOccurred()) {
8901 Diag(CurrentLocation, diag::note_inhctor_synthesized_at)
8902 << Context.getTagDeclType(ClassDecl);
8903 Constructor->setInvalidDecl();
8904 return;
8905 }
8906
8907 SourceLocation Loc = Constructor->getLocation();
8908 Constructor->setBody(new (Context) CompoundStmt(Loc));
8909
Eli Friedman276dd182013-09-05 00:02:25 +00008910 Constructor->markUsed(Context);
Richard Smithc2bc61b2013-03-18 21:12:30 +00008911 MarkVTableUsed(CurrentLocation, ClassDecl);
8912
8913 if (ASTMutationListener *L = getASTMutationListener()) {
8914 L->CompletedImplicitDefinition(Constructor);
8915 }
8916}
8917
8918
Alexis Huntf91729462011-05-12 22:46:25 +00008919Sema::ImplicitExceptionSpecification
Richard Smithd3b5c9082012-07-27 04:22:15 +00008920Sema::ComputeDefaultedDtorExceptionSpec(CXXMethodDecl *MD) {
8921 CXXRecordDecl *ClassDecl = MD->getParent();
8922
Douglas Gregorf1203042010-07-01 19:09:28 +00008923 // C++ [except.spec]p14:
8924 // An implicitly declared special member function (Clause 12) shall have
8925 // an exception-specification.
Richard Smithf623c962012-04-17 00:58:00 +00008926 ImplicitExceptionSpecification ExceptSpec(*this);
Abramo Bagnaradd8fc042011-07-11 08:52:40 +00008927 if (ClassDecl->isInvalidDecl())
8928 return ExceptSpec;
8929
Douglas Gregorf1203042010-07-01 19:09:28 +00008930 // Direct base-class destructors.
Aaron Ballman574705e2014-03-13 15:41:46 +00008931 for (const auto &B : ClassDecl->bases()) {
8932 if (B.isVirtual()) // Handled below.
Douglas Gregorf1203042010-07-01 19:09:28 +00008933 continue;
8934
Aaron Ballman574705e2014-03-13 15:41:46 +00008935 if (const RecordType *BaseType = B.getType()->getAs<RecordType>())
8936 ExceptSpec.CalledDecl(B.getLocStart(),
Sebastian Redl623ea822011-05-19 05:13:44 +00008937 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorf1203042010-07-01 19:09:28 +00008938 }
Sebastian Redl623ea822011-05-19 05:13:44 +00008939
Douglas Gregorf1203042010-07-01 19:09:28 +00008940 // Virtual base-class destructors.
Aaron Ballman445a9392014-03-13 16:15:17 +00008941 for (const auto &B : ClassDecl->vbases()) {
8942 if (const RecordType *BaseType = B.getType()->getAs<RecordType>())
8943 ExceptSpec.CalledDecl(B.getLocStart(),
Sebastian Redl623ea822011-05-19 05:13:44 +00008944 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl())));
Douglas Gregorf1203042010-07-01 19:09:28 +00008945 }
Sebastian Redl623ea822011-05-19 05:13:44 +00008946
Douglas Gregorf1203042010-07-01 19:09:28 +00008947 // Field destructors.
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00008948 for (const auto *F : ClassDecl->fields()) {
Douglas Gregorf1203042010-07-01 19:09:28 +00008949 if (const RecordType *RecordTy
8950 = Context.getBaseElementType(F->getType())->getAs<RecordType>())
Richard Smithf623c962012-04-17 00:58:00 +00008951 ExceptSpec.CalledDecl(F->getLocation(),
Sebastian Redl623ea822011-05-19 05:13:44 +00008952 LookupDestructor(cast<CXXRecordDecl>(RecordTy->getDecl())));
Douglas Gregorf1203042010-07-01 19:09:28 +00008953 }
Sebastian Redlfa453cf2011-03-12 11:50:43 +00008954
Alexis Huntf91729462011-05-12 22:46:25 +00008955 return ExceptSpec;
8956}
8957
8958CXXDestructorDecl *Sema::DeclareImplicitDestructor(CXXRecordDecl *ClassDecl) {
8959 // C++ [class.dtor]p2:
8960 // If a class has no user-declared destructor, a destructor is
8961 // declared implicitly. An implicitly-declared destructor is an
8962 // inline public member of its class.
Richard Smith2be35f52012-12-01 02:35:44 +00008963 assert(ClassDecl->needsImplicitDestructor());
Alexis Huntf91729462011-05-12 22:46:25 +00008964
Richard Smith8bf22e52012-11-29 01:34:07 +00008965 DeclaringSpecialMember DSM(*this, ClassDecl, CXXDestructor);
8966 if (DSM.isAlreadyBeingDeclared())
Craig Topperc3ec1492014-05-26 06:22:03 +00008967 return nullptr;
Richard Smith8bf22e52012-11-29 01:34:07 +00008968
Douglas Gregor7454c562010-07-02 20:37:36 +00008969 // Create the actual destructor declaration.
Douglas Gregorf1203042010-07-01 19:09:28 +00008970 CanQualType ClassType
8971 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Abramo Bagnaradff19302011-03-08 08:55:46 +00008972 SourceLocation ClassLoc = ClassDecl->getLocation();
Douglas Gregorf1203042010-07-01 19:09:28 +00008973 DeclarationName Name
8974 = Context.DeclarationNames.getCXXDestructorName(ClassType);
Abramo Bagnaradff19302011-03-08 08:55:46 +00008975 DeclarationNameInfo NameInfo(Name, ClassLoc);
Douglas Gregorf1203042010-07-01 19:09:28 +00008976 CXXDestructorDecl *Destructor
Richard Smithd3b5c9082012-07-27 04:22:15 +00008977 = CXXDestructorDecl::Create(Context, ClassDecl, ClassLoc, NameInfo,
Craig Topperc3ec1492014-05-26 06:22:03 +00008978 QualType(), nullptr, /*isInline=*/true,
Sebastian Redlfa453cf2011-03-12 11:50:43 +00008979 /*isImplicitlyDeclared=*/true);
Douglas Gregorf1203042010-07-01 19:09:28 +00008980 Destructor->setAccess(AS_public);
Alexis Huntf91729462011-05-12 22:46:25 +00008981 Destructor->setDefaulted();
Douglas Gregorf1203042010-07-01 19:09:28 +00008982 Destructor->setImplicit();
Richard Smithd3b5c9082012-07-27 04:22:15 +00008983
8984 // Build an exception specification pointing back at this destructor.
Reid Kleckner78af0702013-08-27 23:08:25 +00008985 FunctionProtoType::ExtProtoInfo EPI = getImplicitMethodEPI(*this, Destructor);
Dmitri Gribenko44ebbd52013-05-05 00:41:58 +00008986 Destructor->setType(Context.getFunctionType(Context.VoidTy, None, EPI));
Richard Smithd3b5c9082012-07-27 04:22:15 +00008987
Richard Smith6b02d462012-12-08 08:32:28 +00008988 AddOverriddenMethods(ClassDecl, Destructor);
8989
8990 // We don't need to use SpecialMemberIsTrivial here; triviality for
8991 // destructors is easy to compute.
8992 Destructor->setTrivial(ClassDecl->hasTrivialDestructor());
8993
8994 if (ShouldDeleteSpecialMember(Destructor, CXXDestructor))
Richard Smithb4d2a152013-04-02 19:38:47 +00008995 SetDeclDeleted(Destructor, ClassLoc);
Richard Smith6b02d462012-12-08 08:32:28 +00008996
Douglas Gregor7454c562010-07-02 20:37:36 +00008997 // Note that we have declared this destructor.
Douglas Gregor7454c562010-07-02 20:37:36 +00008998 ++ASTContext::NumImplicitDestructorsDeclared;
Richard Smithd3b5c9082012-07-27 04:22:15 +00008999
Douglas Gregor7454c562010-07-02 20:37:36 +00009000 // Introduce this destructor into its scope.
Douglas Gregor0be31a22010-07-02 17:43:08 +00009001 if (Scope *S = getScopeForContext(ClassDecl))
Douglas Gregor7454c562010-07-02 20:37:36 +00009002 PushOnScopeChains(Destructor, S, false);
9003 ClassDecl->addDecl(Destructor);
Alexis Huntf91729462011-05-12 22:46:25 +00009004
Douglas Gregorf1203042010-07-01 19:09:28 +00009005 return Destructor;
9006}
9007
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00009008void Sema::DefineImplicitDestructor(SourceLocation CurrentLocation,
Douglas Gregord94105a2009-09-04 19:04:08 +00009009 CXXDestructorDecl *Destructor) {
Alexis Hunt61ae8d32011-05-23 23:14:04 +00009010 assert((Destructor->isDefaulted() &&
Richard Smith273c4e92012-02-26 07:51:39 +00009011 !Destructor->doesThisDeclarationHaveABody() &&
9012 !Destructor->isDeleted()) &&
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00009013 "DefineImplicitDestructor - call it for implicit default dtor");
Anders Carlsson2a50e952009-11-15 22:49:34 +00009014 CXXRecordDecl *ClassDecl = Destructor->getParent();
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00009015 assert(ClassDecl && "DefineImplicitDestructor - invalid destructor");
Douglas Gregor7ae2d772010-01-31 09:12:51 +00009016
Douglas Gregor54818f02010-05-12 16:39:35 +00009017 if (Destructor->isInvalidDecl())
9018 return;
9019
Eli Friedmaneaf34142012-10-18 20:14:08 +00009020 SynthesizedFunctionScope Scope(*this, Destructor);
Douglas Gregor7ae2d772010-01-31 09:12:51 +00009021
Argyrios Kyrtzidis18653422010-11-19 00:19:12 +00009022 DiagnosticErrorTrap Trap(Diags);
John McCalla6309952010-03-16 21:39:52 +00009023 MarkBaseAndMemberDestructorsReferenced(Destructor->getLocation(),
9024 Destructor->getParent());
Mike Stump11289f42009-09-09 15:08:12 +00009025
Douglas Gregor54818f02010-05-12 16:39:35 +00009026 if (CheckDestructor(Destructor) || Trap.hasErrorOccurred()) {
Anders Carlsson26a807d2009-11-30 21:24:50 +00009027 Diag(CurrentLocation, diag::note_member_synthesized_at)
9028 << CXXDestructor << Context.getTagDeclType(ClassDecl);
9029
9030 Destructor->setInvalidDecl();
9031 return;
9032 }
9033
Daniel Jasperb3b0b802014-06-20 08:44:22 +00009034 SourceLocation Loc = Destructor->getLocEnd().isValid()
9035 ? Destructor->getLocEnd()
9036 : Destructor->getLocation();
Benjamin Kramere2a929d2012-07-04 17:03:41 +00009037 Destructor->setBody(new (Context) CompoundStmt(Loc));
Eli Friedman276dd182013-09-05 00:02:25 +00009038 Destructor->markUsed(Context);
Douglas Gregor88d292c2010-05-13 16:44:06 +00009039 MarkVTableUsed(CurrentLocation, ClassDecl);
Sebastian Redlab238a72011-04-24 16:28:06 +00009040
9041 if (ASTMutationListener *L = getASTMutationListener()) {
9042 L->CompletedImplicitDefinition(Destructor);
9043 }
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00009044}
9045
Richard Smith84973e52012-04-21 18:42:51 +00009046/// \brief Perform any semantic analysis which needs to be delayed until all
9047/// pending class member declarations have been parsed.
9048void Sema::ActOnFinishCXXMemberDecls() {
Douglas Gregorbc0e5c02013-02-01 04:49:10 +00009049 // If the context is an invalid C++ class, just suppress these checks.
9050 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(CurContext)) {
9051 if (Record->isInvalidDecl()) {
Alp Tokerae3a9442013-10-18 05:54:19 +00009052 DelayedDefaultedMemberExceptionSpecs.clear();
Douglas Gregorbc0e5c02013-02-01 04:49:10 +00009053 DelayedDestructorExceptionSpecChecks.clear();
9054 return;
9055 }
9056 }
Richard Smith84973e52012-04-21 18:42:51 +00009057}
9058
Richard Smithd3b5c9082012-07-27 04:22:15 +00009059void Sema::AdjustDestructorExceptionSpec(CXXRecordDecl *ClassDecl,
9060 CXXDestructorDecl *Destructor) {
Richard Smith2bf7fdb2013-01-02 11:42:31 +00009061 assert(getLangOpts().CPlusPlus11 &&
Richard Smithd3b5c9082012-07-27 04:22:15 +00009062 "adjusting dtor exception specs was introduced in c++11");
9063
Sebastian Redl623ea822011-05-19 05:13:44 +00009064 // C++11 [class.dtor]p3:
9065 // A declaration of a destructor that does not have an exception-
9066 // specification is implicitly considered to have the same exception-
9067 // specification as an implicit declaration.
Richard Smithd3b5c9082012-07-27 04:22:15 +00009068 const FunctionProtoType *DtorType = Destructor->getType()->
Sebastian Redl623ea822011-05-19 05:13:44 +00009069 getAs<FunctionProtoType>();
Richard Smithd3b5c9082012-07-27 04:22:15 +00009070 if (DtorType->hasExceptionSpec())
Sebastian Redl623ea822011-05-19 05:13:44 +00009071 return;
9072
Chandler Carruth9a797572011-09-20 04:55:26 +00009073 // Replace the destructor's type, building off the existing one. Fortunately,
9074 // the only thing of interest in the destructor type is its extended info.
9075 // The return and arguments are fixed.
Richard Smithd3b5c9082012-07-27 04:22:15 +00009076 FunctionProtoType::ExtProtoInfo EPI = DtorType->getExtProtoInfo();
Richard Smith8acb4282014-07-31 21:57:55 +00009077 EPI.ExceptionSpec.Type = EST_Unevaluated;
9078 EPI.ExceptionSpec.SourceDecl = Destructor;
Dmitri Gribenko44ebbd52013-05-05 00:41:58 +00009079 Destructor->setType(Context.getFunctionType(Context.VoidTy, None, EPI));
Richard Smith84973e52012-04-21 18:42:51 +00009080
Sebastian Redl623ea822011-05-19 05:13:44 +00009081 // FIXME: If the destructor has a body that could throw, and the newly created
9082 // spec doesn't allow exceptions, we should emit a warning, because this
9083 // change in behavior can break conforming C++03 programs at runtime.
Richard Smithd3b5c9082012-07-27 04:22:15 +00009084 // However, we don't have a body or an exception specification yet, so it
9085 // needs to be done somewhere else.
Sebastian Redl623ea822011-05-19 05:13:44 +00009086}
9087
Pavel Labath58934982013-08-30 08:52:28 +00009088namespace {
9089/// \brief An abstract base class for all helper classes used in building the
9090// copy/move operators. These classes serve as factory functions and help us
9091// avoid using the same Expr* in the AST twice.
9092class ExprBuilder {
9093 ExprBuilder(const ExprBuilder&) LLVM_DELETED_FUNCTION;
9094 ExprBuilder &operator=(const ExprBuilder&) LLVM_DELETED_FUNCTION;
9095
9096protected:
9097 static Expr *assertNotNull(Expr *E) {
9098 assert(E && "Expression construction must not fail.");
9099 return E;
9100 }
9101
9102public:
9103 ExprBuilder() {}
9104 virtual ~ExprBuilder() {}
9105
9106 virtual Expr *build(Sema &S, SourceLocation Loc) const = 0;
9107};
9108
9109class RefBuilder: public ExprBuilder {
9110 VarDecl *Var;
9111 QualType VarType;
9112
9113public:
Craig Toppera798a9d2014-03-02 09:32:10 +00009114 virtual Expr *build(Sema &S, SourceLocation Loc) const override {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00009115 return assertNotNull(S.BuildDeclRefExpr(Var, VarType, VK_LValue, Loc).get());
Pavel Labath58934982013-08-30 08:52:28 +00009116 }
9117
9118 RefBuilder(VarDecl *Var, QualType VarType)
9119 : Var(Var), VarType(VarType) {}
9120};
9121
9122class ThisBuilder: public ExprBuilder {
9123public:
Craig Toppera798a9d2014-03-02 09:32:10 +00009124 virtual Expr *build(Sema &S, SourceLocation Loc) const override {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00009125 return assertNotNull(S.ActOnCXXThis(Loc).getAs<Expr>());
Pavel Labath58934982013-08-30 08:52:28 +00009126 }
9127};
9128
9129class CastBuilder: public ExprBuilder {
9130 const ExprBuilder &Builder;
9131 QualType Type;
9132 ExprValueKind Kind;
9133 const CXXCastPath &Path;
9134
9135public:
Craig Toppera798a9d2014-03-02 09:32:10 +00009136 virtual Expr *build(Sema &S, SourceLocation Loc) const override {
Pavel Labath58934982013-08-30 08:52:28 +00009137 return assertNotNull(S.ImpCastExprToType(Builder.build(S, Loc), Type,
9138 CK_UncheckedDerivedToBase, Kind,
Nikola Smiljanic01a75982014-05-29 10:55:11 +00009139 &Path).get());
Pavel Labath58934982013-08-30 08:52:28 +00009140 }
9141
9142 CastBuilder(const ExprBuilder &Builder, QualType Type, ExprValueKind Kind,
9143 const CXXCastPath &Path)
9144 : Builder(Builder), Type(Type), Kind(Kind), Path(Path) {}
9145};
9146
9147class DerefBuilder: public ExprBuilder {
9148 const ExprBuilder &Builder;
9149
9150public:
Craig Toppera798a9d2014-03-02 09:32:10 +00009151 virtual Expr *build(Sema &S, SourceLocation Loc) const override {
Pavel Labath58934982013-08-30 08:52:28 +00009152 return assertNotNull(
Nikola Smiljanic01a75982014-05-29 10:55:11 +00009153 S.CreateBuiltinUnaryOp(Loc, UO_Deref, Builder.build(S, Loc)).get());
Pavel Labath58934982013-08-30 08:52:28 +00009154 }
9155
9156 DerefBuilder(const ExprBuilder &Builder) : Builder(Builder) {}
9157};
9158
9159class MemberBuilder: public ExprBuilder {
9160 const ExprBuilder &Builder;
9161 QualType Type;
9162 CXXScopeSpec SS;
9163 bool IsArrow;
9164 LookupResult &MemberLookup;
9165
9166public:
Craig Toppera798a9d2014-03-02 09:32:10 +00009167 virtual Expr *build(Sema &S, SourceLocation Loc) const override {
Pavel Labath58934982013-08-30 08:52:28 +00009168 return assertNotNull(S.BuildMemberReferenceExpr(
Craig Topperc3ec1492014-05-26 06:22:03 +00009169 Builder.build(S, Loc), Type, Loc, IsArrow, SS, SourceLocation(),
Nikola Smiljanic01a75982014-05-29 10:55:11 +00009170 nullptr, MemberLookup, nullptr).get());
Pavel Labath58934982013-08-30 08:52:28 +00009171 }
9172
9173 MemberBuilder(const ExprBuilder &Builder, QualType Type, bool IsArrow,
9174 LookupResult &MemberLookup)
9175 : Builder(Builder), Type(Type), IsArrow(IsArrow),
9176 MemberLookup(MemberLookup) {}
9177};
9178
9179class MoveCastBuilder: public ExprBuilder {
9180 const ExprBuilder &Builder;
9181
9182public:
Craig Toppera798a9d2014-03-02 09:32:10 +00009183 virtual Expr *build(Sema &S, SourceLocation Loc) const override {
Pavel Labath58934982013-08-30 08:52:28 +00009184 return assertNotNull(CastForMoving(S, Builder.build(S, Loc)));
9185 }
9186
9187 MoveCastBuilder(const ExprBuilder &Builder) : Builder(Builder) {}
9188};
9189
9190class LvalueConvBuilder: public ExprBuilder {
9191 const ExprBuilder &Builder;
9192
9193public:
Craig Toppera798a9d2014-03-02 09:32:10 +00009194 virtual Expr *build(Sema &S, SourceLocation Loc) const override {
Pavel Labath58934982013-08-30 08:52:28 +00009195 return assertNotNull(
Nikola Smiljanic01a75982014-05-29 10:55:11 +00009196 S.DefaultLvalueConversion(Builder.build(S, Loc)).get());
Pavel Labath58934982013-08-30 08:52:28 +00009197 }
9198
9199 LvalueConvBuilder(const ExprBuilder &Builder) : Builder(Builder) {}
9200};
9201
9202class SubscriptBuilder: public ExprBuilder {
9203 const ExprBuilder &Base;
9204 const ExprBuilder &Index;
9205
9206public:
Craig Toppera798a9d2014-03-02 09:32:10 +00009207 virtual Expr *build(Sema &S, SourceLocation Loc) const override {
Pavel Labath58934982013-08-30 08:52:28 +00009208 return assertNotNull(S.CreateBuiltinArraySubscriptExpr(
Nikola Smiljanic01a75982014-05-29 10:55:11 +00009209 Base.build(S, Loc), Loc, Index.build(S, Loc), Loc).get());
Pavel Labath58934982013-08-30 08:52:28 +00009210 }
9211
9212 SubscriptBuilder(const ExprBuilder &Base, const ExprBuilder &Index)
9213 : Base(Base), Index(Index) {}
9214};
9215
9216} // end anonymous namespace
9217
Richard Smith41ae3282012-11-14 00:50:40 +00009218/// When generating a defaulted copy or move assignment operator, if a field
9219/// should be copied with __builtin_memcpy rather than via explicit assignments,
9220/// do so. This optimization only applies for arrays of scalars, and for arrays
9221/// of class type where the selected copy/move-assignment operator is trivial.
9222static StmtResult
9223buildMemcpyForAssignmentOp(Sema &S, SourceLocation Loc, QualType T,
Pavel Labath58934982013-08-30 08:52:28 +00009224 const ExprBuilder &ToB, const ExprBuilder &FromB) {
Richard Smith41ae3282012-11-14 00:50:40 +00009225 // Compute the size of the memory buffer to be copied.
9226 QualType SizeType = S.Context.getSizeType();
9227 llvm::APInt Size(S.Context.getTypeSize(SizeType),
9228 S.Context.getTypeSizeInChars(T).getQuantity());
9229
9230 // Take the address of the field references for "from" and "to". We
9231 // directly construct UnaryOperators here because semantic analysis
9232 // does not permit us to take the address of an xvalue.
Pavel Labath58934982013-08-30 08:52:28 +00009233 Expr *From = FromB.build(S, Loc);
Richard Smith41ae3282012-11-14 00:50:40 +00009234 From = new (S.Context) UnaryOperator(From, UO_AddrOf,
9235 S.Context.getPointerType(From->getType()),
9236 VK_RValue, OK_Ordinary, Loc);
Pavel Labath58934982013-08-30 08:52:28 +00009237 Expr *To = ToB.build(S, Loc);
Richard Smith41ae3282012-11-14 00:50:40 +00009238 To = new (S.Context) UnaryOperator(To, UO_AddrOf,
9239 S.Context.getPointerType(To->getType()),
9240 VK_RValue, OK_Ordinary, Loc);
9241
9242 const Type *E = T->getBaseElementTypeUnsafe();
9243 bool NeedsCollectableMemCpy =
9244 E->isRecordType() && E->getAs<RecordType>()->getDecl()->hasObjectMember();
9245
9246 // Create a reference to the __builtin_objc_memmove_collectable function
9247 StringRef MemCpyName = NeedsCollectableMemCpy ?
9248 "__builtin_objc_memmove_collectable" :
9249 "__builtin_memcpy";
9250 LookupResult R(S, &S.Context.Idents.get(MemCpyName), Loc,
9251 Sema::LookupOrdinaryName);
9252 S.LookupName(R, S.TUScope, true);
9253
9254 FunctionDecl *MemCpy = R.getAsSingle<FunctionDecl>();
9255 if (!MemCpy)
9256 // Something went horribly wrong earlier, and we will have complained
9257 // about it.
9258 return StmtError();
9259
9260 ExprResult MemCpyRef = S.BuildDeclRefExpr(MemCpy, S.Context.BuiltinFnTy,
Craig Topperc3ec1492014-05-26 06:22:03 +00009261 VK_RValue, Loc, nullptr);
Richard Smith41ae3282012-11-14 00:50:40 +00009262 assert(MemCpyRef.isUsable() && "Builtin reference cannot fail");
9263
9264 Expr *CallArgs[] = {
9265 To, From, IntegerLiteral::Create(S.Context, Size, SizeType, Loc)
9266 };
Nikola Smiljanic01a75982014-05-29 10:55:11 +00009267 ExprResult Call = S.ActOnCallExpr(/*Scope=*/nullptr, MemCpyRef.get(),
Richard Smith41ae3282012-11-14 00:50:40 +00009268 Loc, CallArgs, Loc);
9269
9270 assert(!Call.isInvalid() && "Call to __builtin_memcpy cannot fail!");
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00009271 return Call.getAs<Stmt>();
Richard Smith41ae3282012-11-14 00:50:40 +00009272}
9273
Sebastian Redl22653ba2011-08-30 19:58:05 +00009274/// \brief Builds a statement that copies/moves the given entity from \p From to
Douglas Gregorb139cd52010-05-01 20:49:11 +00009275/// \c To.
9276///
Sebastian Redl22653ba2011-08-30 19:58:05 +00009277/// This routine is used to copy/move the members of a class with an
9278/// implicitly-declared copy/move assignment operator. When the entities being
Douglas Gregorb139cd52010-05-01 20:49:11 +00009279/// copied are arrays, this routine builds for loops to copy them.
9280///
9281/// \param S The Sema object used for type-checking.
9282///
Sebastian Redl22653ba2011-08-30 19:58:05 +00009283/// \param Loc The location where the implicit copy/move is being generated.
Douglas Gregorb139cd52010-05-01 20:49:11 +00009284///
Sebastian Redl22653ba2011-08-30 19:58:05 +00009285/// \param T The type of the expressions being copied/moved. Both expressions
9286/// must have this type.
Douglas Gregorb139cd52010-05-01 20:49:11 +00009287///
Sebastian Redl22653ba2011-08-30 19:58:05 +00009288/// \param To The expression we are copying/moving to.
Douglas Gregorb139cd52010-05-01 20:49:11 +00009289///
Sebastian Redl22653ba2011-08-30 19:58:05 +00009290/// \param From The expression we are copying/moving from.
Douglas Gregorb139cd52010-05-01 20:49:11 +00009291///
Sebastian Redl22653ba2011-08-30 19:58:05 +00009292/// \param CopyingBaseSubobject Whether we're copying/moving a base subobject.
Douglas Gregor40c92bb2010-05-04 15:20:55 +00009293/// Otherwise, it's a non-static member subobject.
9294///
Sebastian Redl22653ba2011-08-30 19:58:05 +00009295/// \param Copying Whether we're copying or moving.
9296///
Douglas Gregorb139cd52010-05-01 20:49:11 +00009297/// \param Depth Internal parameter recording the depth of the recursion.
9298///
Richard Smith41ae3282012-11-14 00:50:40 +00009299/// \returns A statement or a loop that copies the expressions, or StmtResult(0)
9300/// if a memcpy should be used instead.
John McCalldadc5752010-08-24 06:29:42 +00009301static StmtResult
Richard Smith41ae3282012-11-14 00:50:40 +00009302buildSingleCopyAssignRecursively(Sema &S, SourceLocation Loc, QualType T,
Pavel Labath58934982013-08-30 08:52:28 +00009303 const ExprBuilder &To, const ExprBuilder &From,
Richard Smith41ae3282012-11-14 00:50:40 +00009304 bool CopyingBaseSubobject, bool Copying,
9305 unsigned Depth = 0) {
Richard Smith52c0b582012-11-13 00:54:12 +00009306 // C++11 [class.copy]p28:
Douglas Gregorb139cd52010-05-01 20:49:11 +00009307 // Each subobject is assigned in the manner appropriate to its type:
9308 //
Sebastian Redl22653ba2011-08-30 19:58:05 +00009309 // - if the subobject is of class type, as if by a call to operator= with
9310 // the subobject as the object expression and the corresponding
9311 // subobject of x as a single function argument (as if by explicit
9312 // qualification; that is, ignoring any possible virtual overriding
9313 // functions in more derived classes);
Richard Smith52c0b582012-11-13 00:54:12 +00009314 //
9315 // C++03 [class.copy]p13:
9316 // - if the subobject is of class type, the copy assignment operator for
9317 // the class is used (as if by explicit qualification; that is,
9318 // ignoring any possible virtual overriding functions in more derived
9319 // classes);
Douglas Gregorb139cd52010-05-01 20:49:11 +00009320 if (const RecordType *RecordTy = T->getAs<RecordType>()) {
9321 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(RecordTy->getDecl());
Richard Smith52c0b582012-11-13 00:54:12 +00009322
Douglas Gregorb139cd52010-05-01 20:49:11 +00009323 // Look for operator=.
9324 DeclarationName Name
9325 = S.Context.DeclarationNames.getCXXOperatorName(OO_Equal);
9326 LookupResult OpLookup(S, Name, Loc, Sema::LookupOrdinaryName);
9327 S.LookupQualifiedName(OpLookup, ClassDecl, false);
Sebastian Redl22653ba2011-08-30 19:58:05 +00009328
Richard Smith52c0b582012-11-13 00:54:12 +00009329 // Prior to C++11, filter out any result that isn't a copy/move-assignment
9330 // operator.
Richard Smith2bf7fdb2013-01-02 11:42:31 +00009331 if (!S.getLangOpts().CPlusPlus11) {
Richard Smith52c0b582012-11-13 00:54:12 +00009332 LookupResult::Filter F = OpLookup.makeFilter();
9333 while (F.hasNext()) {
9334 NamedDecl *D = F.next();
9335 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
9336 if (Method->isCopyAssignmentOperator() ||
9337 (!Copying && Method->isMoveAssignmentOperator()))
9338 continue;
9339
9340 F.erase();
9341 }
9342 F.done();
John McCallab8c2732010-03-16 06:11:48 +00009343 }
Richard Smith52c0b582012-11-13 00:54:12 +00009344
Douglas Gregor40c92bb2010-05-04 15:20:55 +00009345 // Suppress the protected check (C++ [class.protected]) for each of the
Richard Smith52c0b582012-11-13 00:54:12 +00009346 // assignment operators we found. This strange dance is required when
Douglas Gregor40c92bb2010-05-04 15:20:55 +00009347 // we're assigning via a base classes's copy-assignment operator. To
Richard Smith52c0b582012-11-13 00:54:12 +00009348 // ensure that we're getting the right base class subobject (without
Douglas Gregor40c92bb2010-05-04 15:20:55 +00009349 // ambiguities), we need to cast "this" to that subobject type; to
9350 // ensure that we don't go through the virtual call mechanism, we need
9351 // to qualify the operator= name with the base class (see below). However,
9352 // this means that if the base class has a protected copy assignment
9353 // operator, the protected member access check will fail. So, we
9354 // rewrite "protected" access to "public" access in this case, since we
9355 // know by construction that we're calling from a derived class.
9356 if (CopyingBaseSubobject) {
9357 for (LookupResult::iterator L = OpLookup.begin(), LEnd = OpLookup.end();
9358 L != LEnd; ++L) {
9359 if (L.getAccess() == AS_protected)
9360 L.setAccess(AS_public);
9361 }
9362 }
Richard Smith52c0b582012-11-13 00:54:12 +00009363
Douglas Gregorb139cd52010-05-01 20:49:11 +00009364 // Create the nested-name-specifier that will be used to qualify the
9365 // reference to operator=; this is required to suppress the virtual
9366 // call mechanism.
9367 CXXScopeSpec SS;
Manuel Klimeke7167412012-02-06 21:51:39 +00009368 const Type *CanonicalT = S.Context.getCanonicalType(T.getTypePtr());
Richard Smith52c0b582012-11-13 00:54:12 +00009369 SS.MakeTrivial(S.Context,
Craig Topperc3ec1492014-05-26 06:22:03 +00009370 NestedNameSpecifier::Create(S.Context, nullptr, false,
Manuel Klimeke7167412012-02-06 21:51:39 +00009371 CanonicalT),
Douglas Gregor869ad452011-02-24 17:54:50 +00009372 Loc);
Richard Smith52c0b582012-11-13 00:54:12 +00009373
Douglas Gregorb139cd52010-05-01 20:49:11 +00009374 // Create the reference to operator=.
John McCalldadc5752010-08-24 06:29:42 +00009375 ExprResult OpEqualRef
Pavel Labath58934982013-08-30 08:52:28 +00009376 = S.BuildMemberReferenceExpr(To.build(S, Loc), T, Loc, /*isArrow=*/false,
9377 SS, /*TemplateKWLoc=*/SourceLocation(),
Craig Topperc3ec1492014-05-26 06:22:03 +00009378 /*FirstQualifierInScope=*/nullptr,
Abramo Bagnara7945c982012-01-27 09:46:47 +00009379 OpLookup,
Craig Topperc3ec1492014-05-26 06:22:03 +00009380 /*TemplateArgs=*/nullptr,
Douglas Gregorb139cd52010-05-01 20:49:11 +00009381 /*SuppressQualifierCheck=*/true);
9382 if (OpEqualRef.isInvalid())
John McCallfaf5fb42010-08-26 23:41:50 +00009383 return StmtError();
Richard Smith52c0b582012-11-13 00:54:12 +00009384
Douglas Gregorb139cd52010-05-01 20:49:11 +00009385 // Build the call to the assignment operator.
John McCallb268a282010-08-23 23:25:46 +00009386
Pavel Labath58934982013-08-30 08:52:28 +00009387 Expr *FromInst = From.build(S, Loc);
Craig Topperc3ec1492014-05-26 06:22:03 +00009388 ExprResult Call = S.BuildCallToMemberFunction(/*Scope=*/nullptr,
Nikola Smiljanic01a75982014-05-29 10:55:11 +00009389 OpEqualRef.getAs<Expr>(),
Pavel Labath58934982013-08-30 08:52:28 +00009390 Loc, FromInst, Loc);
Douglas Gregorb139cd52010-05-01 20:49:11 +00009391 if (Call.isInvalid())
John McCallfaf5fb42010-08-26 23:41:50 +00009392 return StmtError();
Richard Smith52c0b582012-11-13 00:54:12 +00009393
Richard Smith41ae3282012-11-14 00:50:40 +00009394 // If we built a call to a trivial 'operator=' while copying an array,
9395 // bail out. We'll replace the whole shebang with a memcpy.
9396 CXXMemberCallExpr *CE = dyn_cast<CXXMemberCallExpr>(Call.get());
9397 if (CE && CE->getMethodDecl()->isTrivial() && Depth)
Craig Topperc3ec1492014-05-26 06:22:03 +00009398 return StmtResult((Stmt*)nullptr);
Richard Smith41ae3282012-11-14 00:50:40 +00009399
Richard Smith52c0b582012-11-13 00:54:12 +00009400 // Convert to an expression-statement, and clean up any produced
9401 // temporaries.
Richard Smith945f8d32013-01-14 22:39:08 +00009402 return S.ActOnExprStmt(Call);
Fariborz Jahanian41f79272009-06-25 21:45:19 +00009403 }
John McCallab8c2732010-03-16 06:11:48 +00009404
Richard Smith52c0b582012-11-13 00:54:12 +00009405 // - if the subobject is of scalar type, the built-in assignment
Douglas Gregorb139cd52010-05-01 20:49:11 +00009406 // operator is used.
Richard Smith52c0b582012-11-13 00:54:12 +00009407 const ConstantArrayType *ArrayTy = S.Context.getAsConstantArrayType(T);
Douglas Gregorb139cd52010-05-01 20:49:11 +00009408 if (!ArrayTy) {
Pavel Labath58934982013-08-30 08:52:28 +00009409 ExprResult Assignment = S.CreateBuiltinBinOp(
9410 Loc, BO_Assign, To.build(S, Loc), From.build(S, Loc));
Douglas Gregorb139cd52010-05-01 20:49:11 +00009411 if (Assignment.isInvalid())
John McCallfaf5fb42010-08-26 23:41:50 +00009412 return StmtError();
Richard Smith945f8d32013-01-14 22:39:08 +00009413 return S.ActOnExprStmt(Assignment);
Fariborz Jahanian41f79272009-06-25 21:45:19 +00009414 }
Richard Smith52c0b582012-11-13 00:54:12 +00009415
9416 // - if the subobject is an array, each element is assigned, in the
Douglas Gregorb139cd52010-05-01 20:49:11 +00009417 // manner appropriate to the element type;
Richard Smith52c0b582012-11-13 00:54:12 +00009418
Douglas Gregorb139cd52010-05-01 20:49:11 +00009419 // Construct a loop over the array bounds, e.g.,
9420 //
9421 // for (__SIZE_TYPE__ i0 = 0; i0 != array-size; ++i0)
9422 //
9423 // that will copy each of the array elements.
9424 QualType SizeType = S.Context.getSizeType();
Richard Smith41ae3282012-11-14 00:50:40 +00009425
Douglas Gregorb139cd52010-05-01 20:49:11 +00009426 // Create the iteration variable.
Craig Topperc3ec1492014-05-26 06:22:03 +00009427 IdentifierInfo *IterationVarName = nullptr;
Douglas Gregorb139cd52010-05-01 20:49:11 +00009428 {
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +00009429 SmallString<8> Str;
Douglas Gregorb139cd52010-05-01 20:49:11 +00009430 llvm::raw_svector_ostream OS(Str);
9431 OS << "__i" << Depth;
9432 IterationVarName = &S.Context.Idents.get(OS.str());
9433 }
Abramo Bagnaradff19302011-03-08 08:55:46 +00009434 VarDecl *IterationVar = VarDecl::Create(S.Context, S.CurContext, Loc, Loc,
Douglas Gregorb139cd52010-05-01 20:49:11 +00009435 IterationVarName, SizeType,
9436 S.Context.getTrivialTypeSourceInfo(SizeType, Loc),
Rafael Espindola6ae7e502013-04-03 19:27:57 +00009437 SC_None);
Richard Smith41ae3282012-11-14 00:50:40 +00009438
Douglas Gregorb139cd52010-05-01 20:49:11 +00009439 // Initialize the iteration variable to zero.
9440 llvm::APInt Zero(S.Context.getTypeSize(SizeType), 0);
Argyrios Kyrtzidis43b20572010-08-28 09:06:06 +00009441 IterationVar->setInit(IntegerLiteral::Create(S.Context, Zero, SizeType, Loc));
Douglas Gregorb139cd52010-05-01 20:49:11 +00009442
Pavel Labath58934982013-08-30 08:52:28 +00009443 // Creates a reference to the iteration variable.
9444 RefBuilder IterationVarRef(IterationVar, SizeType);
9445 LvalueConvBuilder IterationVarRefRVal(IterationVarRef);
Eli Friedman844f9452012-01-23 02:35:22 +00009446
Douglas Gregorb139cd52010-05-01 20:49:11 +00009447 // Create the DeclStmt that holds the iteration variable.
9448 Stmt *InitStmt = new (S.Context) DeclStmt(DeclGroupRef(IterationVar),Loc,Loc);
Richard Smith41ae3282012-11-14 00:50:40 +00009449
Douglas Gregorb139cd52010-05-01 20:49:11 +00009450 // Subscript the "from" and "to" expressions with the iteration variable.
Pavel Labath58934982013-08-30 08:52:28 +00009451 SubscriptBuilder FromIndexCopy(From, IterationVarRefRVal);
9452 MoveCastBuilder FromIndexMove(FromIndexCopy);
9453 const ExprBuilder *FromIndex;
9454 if (Copying)
9455 FromIndex = &FromIndexCopy;
9456 else
9457 FromIndex = &FromIndexMove;
9458
9459 SubscriptBuilder ToIndex(To, IterationVarRefRVal);
Sebastian Redl22653ba2011-08-30 19:58:05 +00009460
9461 // Build the copy/move for an individual element of the array.
Richard Smith41ae3282012-11-14 00:50:40 +00009462 StmtResult Copy =
9463 buildSingleCopyAssignRecursively(S, Loc, ArrayTy->getElementType(),
Pavel Labath58934982013-08-30 08:52:28 +00009464 ToIndex, *FromIndex, CopyingBaseSubobject,
Richard Smith41ae3282012-11-14 00:50:40 +00009465 Copying, Depth + 1);
9466 // Bail out if copying fails or if we determined that we should use memcpy.
9467 if (Copy.isInvalid() || !Copy.get())
9468 return Copy;
9469
9470 // Create the comparison against the array bound.
9471 llvm::APInt Upper
9472 = ArrayTy->getSize().zextOrTrunc(S.Context.getTypeSize(SizeType));
9473 Expr *Comparison
Pavel Labath58934982013-08-30 08:52:28 +00009474 = new (S.Context) BinaryOperator(IterationVarRefRVal.build(S, Loc),
Richard Smith41ae3282012-11-14 00:50:40 +00009475 IntegerLiteral::Create(S.Context, Upper, SizeType, Loc),
9476 BO_NE, S.Context.BoolTy,
9477 VK_RValue, OK_Ordinary, Loc, false);
9478
9479 // Create the pre-increment of the iteration variable.
9480 Expr *Increment
Pavel Labath58934982013-08-30 08:52:28 +00009481 = new (S.Context) UnaryOperator(IterationVarRef.build(S, Loc), UO_PreInc,
9482 SizeType, VK_LValue, OK_Ordinary, Loc);
Richard Smith41ae3282012-11-14 00:50:40 +00009483
Douglas Gregorb139cd52010-05-01 20:49:11 +00009484 // Construct the loop that copies all elements of this array.
John McCallb268a282010-08-23 23:25:46 +00009485 return S.ActOnForStmt(Loc, Loc, InitStmt,
Douglas Gregorb139cd52010-05-01 20:49:11 +00009486 S.MakeFullExpr(Comparison),
Craig Topperc3ec1492014-05-26 06:22:03 +00009487 nullptr, S.MakeFullDiscardedValueExpr(Increment),
Nikola Smiljanic01a75982014-05-29 10:55:11 +00009488 Loc, Copy.get());
Fariborz Jahanian41f79272009-06-25 21:45:19 +00009489}
9490
Richard Smith41ae3282012-11-14 00:50:40 +00009491static StmtResult
9492buildSingleCopyAssign(Sema &S, SourceLocation Loc, QualType T,
Pavel Labath58934982013-08-30 08:52:28 +00009493 const ExprBuilder &To, const ExprBuilder &From,
Richard Smith41ae3282012-11-14 00:50:40 +00009494 bool CopyingBaseSubobject, bool Copying) {
9495 // Maybe we should use a memcpy?
9496 if (T->isArrayType() && !T.isConstQualified() && !T.isVolatileQualified() &&
9497 T.isTriviallyCopyableType(S.Context))
9498 return buildMemcpyForAssignmentOp(S, Loc, T, To, From);
9499
9500 StmtResult Result(buildSingleCopyAssignRecursively(S, Loc, T, To, From,
9501 CopyingBaseSubobject,
9502 Copying, 0));
9503
9504 // If we ended up picking a trivial assignment operator for an array of a
9505 // non-trivially-copyable class type, just emit a memcpy.
9506 if (!Result.isInvalid() && !Result.get())
9507 return buildMemcpyForAssignmentOp(S, Loc, T, To, From);
9508
9509 return Result;
9510}
9511
Richard Smithd3b5c9082012-07-27 04:22:15 +00009512Sema::ImplicitExceptionSpecification
9513Sema::ComputeDefaultedCopyAssignmentExceptionSpec(CXXMethodDecl *MD) {
9514 CXXRecordDecl *ClassDecl = MD->getParent();
9515
9516 ImplicitExceptionSpecification ExceptSpec(*this);
9517 if (ClassDecl->isInvalidDecl())
9518 return ExceptSpec;
9519
9520 const FunctionProtoType *T = MD->getType()->castAs<FunctionProtoType>();
Alp Toker9cacbab2014-01-20 20:26:09 +00009521 assert(T->getNumParams() == 1 && "not a copy assignment op");
9522 unsigned ArgQuals =
9523 T->getParamType(0).getNonReferenceType().getCVRQualifiers();
Richard Smithd3b5c9082012-07-27 04:22:15 +00009524
Douglas Gregor68e11362010-07-01 17:48:08 +00009525 // C++ [except.spec]p14:
Richard Smithd3b5c9082012-07-27 04:22:15 +00009526 // An implicitly declared special member function (Clause 12) shall have an
Douglas Gregor68e11362010-07-01 17:48:08 +00009527 // exception-specification. [...]
Alexis Hunt491ec602011-06-21 23:42:56 +00009528
9529 // It is unspecified whether or not an implicit copy assignment operator
9530 // attempts to deduplicate calls to assignment operators of virtual bases are
9531 // made. As such, this exception specification is effectively unspecified.
9532 // Based on a similar decision made for constness in C++0x, we're erring on
9533 // the side of assuming such calls to be made regardless of whether they
9534 // actually happen.
Aaron Ballman574705e2014-03-13 15:41:46 +00009535 for (const auto &Base : ClassDecl->bases()) {
9536 if (Base.isVirtual())
Alexis Hunt491ec602011-06-21 23:42:56 +00009537 continue;
9538
Douglas Gregor330b9cf2010-07-02 21:50:04 +00009539 CXXRecordDecl *BaseClassDecl
Aaron Ballman574705e2014-03-13 15:41:46 +00009540 = cast<CXXRecordDecl>(Base.getType()->getAs<RecordType>()->getDecl());
Alexis Hunt491ec602011-06-21 23:42:56 +00009541 if (CXXMethodDecl *CopyAssign = LookupCopyingAssignment(BaseClassDecl,
9542 ArgQuals, false, 0))
Aaron Ballman574705e2014-03-13 15:41:46 +00009543 ExceptSpec.CalledDecl(Base.getLocStart(), CopyAssign);
Douglas Gregor68e11362010-07-01 17:48:08 +00009544 }
Alexis Hunt491ec602011-06-21 23:42:56 +00009545
Aaron Ballman445a9392014-03-13 16:15:17 +00009546 for (const auto &Base : ClassDecl->vbases()) {
Alexis Hunt491ec602011-06-21 23:42:56 +00009547 CXXRecordDecl *BaseClassDecl
Aaron Ballman445a9392014-03-13 16:15:17 +00009548 = cast<CXXRecordDecl>(Base.getType()->getAs<RecordType>()->getDecl());
Alexis Hunt491ec602011-06-21 23:42:56 +00009549 if (CXXMethodDecl *CopyAssign = LookupCopyingAssignment(BaseClassDecl,
9550 ArgQuals, false, 0))
Aaron Ballman445a9392014-03-13 16:15:17 +00009551 ExceptSpec.CalledDecl(Base.getLocStart(), CopyAssign);
Alexis Hunt491ec602011-06-21 23:42:56 +00009552 }
9553
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00009554 for (const auto *Field : ClassDecl->fields()) {
David Blaikie2d7c57e2012-04-30 02:36:29 +00009555 QualType FieldType = Context.getBaseElementType(Field->getType());
Alexis Hunt491ec602011-06-21 23:42:56 +00009556 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
9557 if (CXXMethodDecl *CopyAssign =
Richard Smith1c6461e2012-07-18 03:36:00 +00009558 LookupCopyingAssignment(FieldClassDecl,
9559 ArgQuals | FieldType.getCVRQualifiers(),
9560 false, 0))
Richard Smithf623c962012-04-17 00:58:00 +00009561 ExceptSpec.CalledDecl(Field->getLocation(), CopyAssign);
Abramo Bagnaradd8fc042011-07-11 08:52:40 +00009562 }
Douglas Gregor68e11362010-07-01 17:48:08 +00009563 }
Sebastian Redlfa453cf2011-03-12 11:50:43 +00009564
Richard Smithd3b5c9082012-07-27 04:22:15 +00009565 return ExceptSpec;
Alexis Hunt119f3652011-05-14 05:23:20 +00009566}
9567
9568CXXMethodDecl *Sema::DeclareImplicitCopyAssignment(CXXRecordDecl *ClassDecl) {
9569 // Note: The following rules are largely analoguous to the copy
9570 // constructor rules. Note that virtual bases are not taken into account
9571 // for determining the argument type of the operator. Note also that
9572 // operators taking an object instead of a reference are allowed.
Richard Smith2be35f52012-12-01 02:35:44 +00009573 assert(ClassDecl->needsImplicitCopyAssignment());
Alexis Hunt119f3652011-05-14 05:23:20 +00009574
Richard Smith8bf22e52012-11-29 01:34:07 +00009575 DeclaringSpecialMember DSM(*this, ClassDecl, CXXCopyAssignment);
9576 if (DSM.isAlreadyBeingDeclared())
Craig Topperc3ec1492014-05-26 06:22:03 +00009577 return nullptr;
Richard Smith8bf22e52012-11-29 01:34:07 +00009578
Alexis Hunt119f3652011-05-14 05:23:20 +00009579 QualType ArgType = Context.getTypeDeclType(ClassDecl);
9580 QualType RetType = Context.getLValueReferenceType(ArgType);
Richard Smith99005e62013-05-07 03:19:20 +00009581 bool Const = ClassDecl->implicitCopyAssignmentHasConstParam();
9582 if (Const)
Alexis Hunt119f3652011-05-14 05:23:20 +00009583 ArgType = ArgType.withConst();
9584 ArgType = Context.getLValueReferenceType(ArgType);
9585
Richard Smith99005e62013-05-07 03:19:20 +00009586 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
9587 CXXCopyAssignment,
9588 Const);
9589
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00009590 // An implicitly-declared copy assignment operator is an inline public
9591 // member of its class.
9592 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
Abramo Bagnaradff19302011-03-08 08:55:46 +00009593 SourceLocation ClassLoc = ClassDecl->getLocation();
9594 DeclarationNameInfo NameInfo(Name, ClassLoc);
Richard Smith99005e62013-05-07 03:19:20 +00009595 CXXMethodDecl *CopyAssignment =
9596 CXXMethodDecl::Create(Context, ClassDecl, ClassLoc, NameInfo, QualType(),
Craig Topperc3ec1492014-05-26 06:22:03 +00009597 /*TInfo=*/nullptr, /*StorageClass=*/SC_None,
9598 /*isInline=*/true, Constexpr, SourceLocation());
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00009599 CopyAssignment->setAccess(AS_public);
Alexis Huntb2f27802011-05-14 05:23:24 +00009600 CopyAssignment->setDefaulted();
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00009601 CopyAssignment->setImplicit();
Richard Smithd3b5c9082012-07-27 04:22:15 +00009602
9603 // Build an exception specification pointing back at this member.
Reid Kleckner78af0702013-08-27 23:08:25 +00009604 FunctionProtoType::ExtProtoInfo EPI =
9605 getImplicitMethodEPI(*this, CopyAssignment);
Jordan Rose5c382722013-03-08 21:51:21 +00009606 CopyAssignment->setType(Context.getFunctionType(RetType, ArgType, EPI));
Richard Smithd3b5c9082012-07-27 04:22:15 +00009607
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00009608 // Add the parameter to the operator.
9609 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyAssignment,
Craig Topperc3ec1492014-05-26 06:22:03 +00009610 ClassLoc, ClassLoc,
9611 /*Id=*/nullptr, ArgType,
9612 /*TInfo=*/nullptr, SC_None,
9613 nullptr);
David Blaikie9c70e042011-09-21 18:16:56 +00009614 CopyAssignment->setParams(FromParam);
Alexis Huntb2f27802011-05-14 05:23:24 +00009615
Richard Smith6b02d462012-12-08 08:32:28 +00009616 AddOverriddenMethods(ClassDecl, CopyAssignment);
9617
9618 CopyAssignment->setTrivial(
9619 ClassDecl->needsOverloadResolutionForCopyAssignment()
9620 ? SpecialMemberIsTrivial(CopyAssignment, CXXCopyAssignment)
9621 : ClassDecl->hasTrivialCopyAssignment());
9622
Richard Smith852265f2012-03-30 20:53:28 +00009623 if (ShouldDeleteSpecialMember(CopyAssignment, CXXCopyAssignment))
Richard Smithb4d2a152013-04-02 19:38:47 +00009624 SetDeclDeleted(CopyAssignment, ClassLoc);
Richard Smith852265f2012-03-30 20:53:28 +00009625
Richard Smith6b02d462012-12-08 08:32:28 +00009626 // Note that we have added this copy-assignment operator.
9627 ++ASTContext::NumImplicitCopyAssignmentOperatorsDeclared;
9628
9629 if (Scope *S = getScopeForContext(ClassDecl))
9630 PushOnScopeChains(CopyAssignment, S, false);
9631 ClassDecl->addDecl(CopyAssignment);
9632
Douglas Gregorf56ab7b2010-07-01 16:36:15 +00009633 return CopyAssignment;
9634}
9635
Richard Smithd577fbb2013-06-13 03:23:42 +00009636/// Diagnose an implicit copy operation for a class which is odr-used, but
9637/// which is deprecated because the class has a user-declared copy constructor,
9638/// copy assignment operator, or destructor.
9639static void diagnoseDeprecatedCopyOperation(Sema &S, CXXMethodDecl *CopyOp,
9640 SourceLocation UseLoc) {
9641 assert(CopyOp->isImplicit());
9642
9643 CXXRecordDecl *RD = CopyOp->getParent();
Craig Topperc3ec1492014-05-26 06:22:03 +00009644 CXXMethodDecl *UserDeclaredOperation = nullptr;
Richard Smithd577fbb2013-06-13 03:23:42 +00009645
9646 // In Microsoft mode, assignment operations don't affect constructors and
9647 // vice versa.
9648 if (RD->hasUserDeclaredDestructor()) {
9649 UserDeclaredOperation = RD->getDestructor();
9650 } else if (!isa<CXXConstructorDecl>(CopyOp) &&
9651 RD->hasUserDeclaredCopyConstructor() &&
Alp Tokerbfa39342014-01-14 12:51:41 +00009652 !S.getLangOpts().MSVCCompat) {
Richard Smithd577fbb2013-06-13 03:23:42 +00009653 // Find any user-declared copy constructor.
Aaron Ballman2a4bd6d2014-03-13 16:51:27 +00009654 for (auto *I : RD->ctors()) {
Richard Smithd577fbb2013-06-13 03:23:42 +00009655 if (I->isCopyConstructor()) {
Aaron Ballman2a4bd6d2014-03-13 16:51:27 +00009656 UserDeclaredOperation = I;
Richard Smithd577fbb2013-06-13 03:23:42 +00009657 break;
9658 }
9659 }
9660 assert(UserDeclaredOperation);
9661 } else if (isa<CXXConstructorDecl>(CopyOp) &&
9662 RD->hasUserDeclaredCopyAssignment() &&
Alp Tokerbfa39342014-01-14 12:51:41 +00009663 !S.getLangOpts().MSVCCompat) {
Richard Smithd577fbb2013-06-13 03:23:42 +00009664 // Find any user-declared move assignment operator.
Aaron Ballman2b124d12014-03-13 16:36:16 +00009665 for (auto *I : RD->methods()) {
Richard Smithd577fbb2013-06-13 03:23:42 +00009666 if (I->isCopyAssignmentOperator()) {
Aaron Ballman2b124d12014-03-13 16:36:16 +00009667 UserDeclaredOperation = I;
Richard Smithd577fbb2013-06-13 03:23:42 +00009668 break;
9669 }
9670 }
9671 assert(UserDeclaredOperation);
9672 }
9673
9674 if (UserDeclaredOperation) {
9675 S.Diag(UserDeclaredOperation->getLocation(),
9676 diag::warn_deprecated_copy_operation)
9677 << RD << /*copy assignment*/!isa<CXXConstructorDecl>(CopyOp)
9678 << /*destructor*/isa<CXXDestructorDecl>(UserDeclaredOperation);
9679 S.Diag(UseLoc, diag::note_member_synthesized_at)
9680 << (isa<CXXConstructorDecl>(CopyOp) ? Sema::CXXCopyConstructor
9681 : Sema::CXXCopyAssignment)
9682 << RD;
9683 }
9684}
9685
Douglas Gregorb139cd52010-05-01 20:49:11 +00009686void Sema::DefineImplicitCopyAssignment(SourceLocation CurrentLocation,
9687 CXXMethodDecl *CopyAssignOperator) {
Alexis Huntb2f27802011-05-14 05:23:24 +00009688 assert((CopyAssignOperator->isDefaulted() &&
Douglas Gregorb139cd52010-05-01 20:49:11 +00009689 CopyAssignOperator->isOverloadedOperator() &&
9690 CopyAssignOperator->getOverloadedOperator() == OO_Equal &&
Richard Smith273c4e92012-02-26 07:51:39 +00009691 !CopyAssignOperator->doesThisDeclarationHaveABody() &&
9692 !CopyAssignOperator->isDeleted()) &&
Douglas Gregorb139cd52010-05-01 20:49:11 +00009693 "DefineImplicitCopyAssignment called for wrong function");
9694
9695 CXXRecordDecl *ClassDecl = CopyAssignOperator->getParent();
9696
9697 if (ClassDecl->isInvalidDecl() || CopyAssignOperator->isInvalidDecl()) {
9698 CopyAssignOperator->setInvalidDecl();
9699 return;
9700 }
Richard Smithd577fbb2013-06-13 03:23:42 +00009701
9702 // C++11 [class.copy]p18:
9703 // The [definition of an implicitly declared copy assignment operator] is
9704 // deprecated if the class has a user-declared copy constructor or a
9705 // user-declared destructor.
9706 if (getLangOpts().CPlusPlus11 && CopyAssignOperator->isImplicit())
9707 diagnoseDeprecatedCopyOperation(*this, CopyAssignOperator, CurrentLocation);
9708
Eli Friedman276dd182013-09-05 00:02:25 +00009709 CopyAssignOperator->markUsed(Context);
Douglas Gregorb139cd52010-05-01 20:49:11 +00009710
Eli Friedmaneaf34142012-10-18 20:14:08 +00009711 SynthesizedFunctionScope Scope(*this, CopyAssignOperator);
Argyrios Kyrtzidis18653422010-11-19 00:19:12 +00009712 DiagnosticErrorTrap Trap(Diags);
Douglas Gregorb139cd52010-05-01 20:49:11 +00009713
9714 // C++0x [class.copy]p30:
9715 // The implicitly-defined or explicitly-defaulted copy assignment operator
9716 // for a non-union class X performs memberwise copy assignment of its
9717 // subobjects. The direct base classes of X are assigned first, in the
9718 // order of their declaration in the base-specifier-list, and then the
9719 // immediate non-static data members of X are assigned, in the order in
9720 // which they were declared in the class definition.
9721
9722 // The statements that form the synthesized function body.
Benjamin Kramerf0623432012-08-23 22:51:59 +00009723 SmallVector<Stmt*, 8> Statements;
Douglas Gregorb139cd52010-05-01 20:49:11 +00009724
9725 // The parameter for the "other" object, which we are copying from.
9726 ParmVarDecl *Other = CopyAssignOperator->getParamDecl(0);
9727 Qualifiers OtherQuals = Other->getType().getQualifiers();
9728 QualType OtherRefType = Other->getType();
9729 if (const LValueReferenceType *OtherRef
9730 = OtherRefType->getAs<LValueReferenceType>()) {
9731 OtherRefType = OtherRef->getPointeeType();
9732 OtherQuals = OtherRefType.getQualifiers();
9733 }
9734
9735 // Our location for everything implicitly-generated.
Daniel Jasperb3b0b802014-06-20 08:44:22 +00009736 SourceLocation Loc = CopyAssignOperator->getLocEnd().isValid()
9737 ? CopyAssignOperator->getLocEnd()
9738 : CopyAssignOperator->getLocation();
9739
Pavel Labath58934982013-08-30 08:52:28 +00009740 // Builds a DeclRefExpr for the "other" object.
9741 RefBuilder OtherRef(Other, OtherRefType);
9742
9743 // Builds the "this" pointer.
9744 ThisBuilder This;
Douglas Gregorb139cd52010-05-01 20:49:11 +00009745
9746 // Assign base classes.
9747 bool Invalid = false;
Aaron Ballman574705e2014-03-13 15:41:46 +00009748 for (auto &Base : ClassDecl->bases()) {
Douglas Gregorb139cd52010-05-01 20:49:11 +00009749 // Form the assignment:
9750 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&>(other));
Aaron Ballman574705e2014-03-13 15:41:46 +00009751 QualType BaseType = Base.getType().getUnqualifiedType();
Jeffrey Yasskin8dfa5f12011-01-18 02:00:16 +00009752 if (!BaseType->isRecordType()) {
Douglas Gregorb139cd52010-05-01 20:49:11 +00009753 Invalid = true;
9754 continue;
9755 }
9756
John McCallcf142162010-08-07 06:22:56 +00009757 CXXCastPath BasePath;
Aaron Ballman574705e2014-03-13 15:41:46 +00009758 BasePath.push_back(&Base);
John McCallcf142162010-08-07 06:22:56 +00009759
Douglas Gregorb139cd52010-05-01 20:49:11 +00009760 // Construct the "from" expression, which is an implicit cast to the
9761 // appropriately-qualified base type.
Pavel Labath58934982013-08-30 08:52:28 +00009762 CastBuilder From(OtherRef, Context.getQualifiedType(BaseType, OtherQuals),
9763 VK_LValue, BasePath);
Douglas Gregorb139cd52010-05-01 20:49:11 +00009764
9765 // Dereference "this".
Pavel Labath58934982013-08-30 08:52:28 +00009766 DerefBuilder DerefThis(This);
9767 CastBuilder To(DerefThis,
9768 Context.getCVRQualifiedType(
9769 BaseType, CopyAssignOperator->getTypeQualifiers()),
9770 VK_LValue, BasePath);
Douglas Gregorb139cd52010-05-01 20:49:11 +00009771
9772 // Build the copy.
Richard Smith41ae3282012-11-14 00:50:40 +00009773 StmtResult Copy = buildSingleCopyAssign(*this, Loc, BaseType,
Pavel Labath58934982013-08-30 08:52:28 +00009774 To, From,
Sebastian Redl22653ba2011-08-30 19:58:05 +00009775 /*CopyingBaseSubobject=*/true,
9776 /*Copying=*/true);
Douglas Gregorb139cd52010-05-01 20:49:11 +00009777 if (Copy.isInvalid()) {
Douglas Gregorbf1fb442010-05-05 22:38:15 +00009778 Diag(CurrentLocation, diag::note_member_synthesized_at)
9779 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
9780 CopyAssignOperator->setInvalidDecl();
9781 return;
Douglas Gregorb139cd52010-05-01 20:49:11 +00009782 }
9783
9784 // Success! Record the copy.
Nikola Smiljanic01a75982014-05-29 10:55:11 +00009785 Statements.push_back(Copy.getAs<Expr>());
Douglas Gregorb139cd52010-05-01 20:49:11 +00009786 }
9787
Douglas Gregorb139cd52010-05-01 20:49:11 +00009788 // Assign non-static members.
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00009789 for (auto *Field : ClassDecl->fields()) {
Douglas Gregor556e5862011-10-10 17:22:13 +00009790 if (Field->isUnnamedBitfield())
9791 continue;
Eli Friedmanc9817fd2013-06-07 01:48:56 +00009792
9793 if (Field->isInvalidDecl()) {
9794 Invalid = true;
9795 continue;
9796 }
9797
Douglas Gregorb139cd52010-05-01 20:49:11 +00009798 // Check for members of reference type; we can't copy those.
9799 if (Field->getType()->isReferenceType()) {
9800 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
9801 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
9802 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregorbf1fb442010-05-05 22:38:15 +00009803 Diag(CurrentLocation, diag::note_member_synthesized_at)
9804 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregorb139cd52010-05-01 20:49:11 +00009805 Invalid = true;
9806 continue;
9807 }
9808
9809 // Check for members of const-qualified, non-class type.
9810 QualType BaseType = Context.getBaseElementType(Field->getType());
9811 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) {
9812 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
9813 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
9814 Diag(Field->getLocation(), diag::note_declared_at);
Douglas Gregorbf1fb442010-05-05 22:38:15 +00009815 Diag(CurrentLocation, diag::note_member_synthesized_at)
9816 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
Douglas Gregorb139cd52010-05-01 20:49:11 +00009817 Invalid = true;
9818 continue;
9819 }
John McCall1b1a1db2011-06-17 00:18:42 +00009820
9821 // Suppress assigning zero-width bitfields.
Richard Smithcaf33902011-10-10 18:28:20 +00009822 if (Field->isBitField() && Field->getBitWidthValue(Context) == 0)
9823 continue;
Douglas Gregorb139cd52010-05-01 20:49:11 +00009824
9825 QualType FieldType = Field->getType().getNonReferenceType();
Fariborz Jahanian1138ba62010-05-26 20:19:07 +00009826 if (FieldType->isIncompleteArrayType()) {
9827 assert(ClassDecl->hasFlexibleArrayMember() &&
9828 "Incomplete array type is not valid");
9829 continue;
9830 }
Douglas Gregorb139cd52010-05-01 20:49:11 +00009831
9832 // Build references to the field in the object we're copying from and to.
9833 CXXScopeSpec SS; // Intentionally empty
9834 LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
9835 LookupMemberName);
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00009836 MemberLookup.addDecl(Field);
Douglas Gregorb139cd52010-05-01 20:49:11 +00009837 MemberLookup.resolveKind();
Pavel Labath58934982013-08-30 08:52:28 +00009838
9839 MemberBuilder From(OtherRef, OtherRefType, /*IsArrow=*/false, MemberLookup);
9840
9841 MemberBuilder To(This, getCurrentThisType(), /*IsArrow=*/true, MemberLookup);
Douglas Gregorb139cd52010-05-01 20:49:11 +00009842
Douglas Gregorb139cd52010-05-01 20:49:11 +00009843 // Build the copy of this field.
Richard Smith41ae3282012-11-14 00:50:40 +00009844 StmtResult Copy = buildSingleCopyAssign(*this, Loc, FieldType,
Pavel Labath58934982013-08-30 08:52:28 +00009845 To, From,
Sebastian Redl22653ba2011-08-30 19:58:05 +00009846 /*CopyingBaseSubobject=*/false,
9847 /*Copying=*/true);
Douglas Gregorb139cd52010-05-01 20:49:11 +00009848 if (Copy.isInvalid()) {
Douglas Gregorbf1fb442010-05-05 22:38:15 +00009849 Diag(CurrentLocation, diag::note_member_synthesized_at)
9850 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
9851 CopyAssignOperator->setInvalidDecl();
9852 return;
Douglas Gregorb139cd52010-05-01 20:49:11 +00009853 }
9854
9855 // Success! Record the copy.
Nikola Smiljanic01a75982014-05-29 10:55:11 +00009856 Statements.push_back(Copy.getAs<Stmt>());
Douglas Gregorb139cd52010-05-01 20:49:11 +00009857 }
9858
9859 if (!Invalid) {
9860 // Add a "return *this;"
Pavel Labath58934982013-08-30 08:52:28 +00009861 ExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UO_Deref, This.build(*this, Loc));
Douglas Gregorb139cd52010-05-01 20:49:11 +00009862
Nick Lewyckyd78f92f2014-05-03 00:41:18 +00009863 StmtResult Return = BuildReturnStmt(Loc, ThisObj.get());
Douglas Gregorb139cd52010-05-01 20:49:11 +00009864 if (Return.isInvalid())
9865 Invalid = true;
9866 else {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00009867 Statements.push_back(Return.getAs<Stmt>());
Douglas Gregor54818f02010-05-12 16:39:35 +00009868
9869 if (Trap.hasErrorOccurred()) {
9870 Diag(CurrentLocation, diag::note_member_synthesized_at)
9871 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl);
9872 Invalid = true;
9873 }
Douglas Gregorb139cd52010-05-01 20:49:11 +00009874 }
9875 }
9876
9877 if (Invalid) {
9878 CopyAssignOperator->setInvalidDecl();
9879 return;
9880 }
Dmitri Gribenko800ddf32012-02-14 22:14:32 +00009881
9882 StmtResult Body;
9883 {
9884 CompoundScopeRAII CompoundScope(*this);
Benjamin Kramer62b95d82012-08-23 21:35:17 +00009885 Body = ActOnCompoundStmt(Loc, Loc, Statements,
Dmitri Gribenko800ddf32012-02-14 22:14:32 +00009886 /*isStmtExpr=*/false);
9887 assert(!Body.isInvalid() && "Compound statement creation cannot fail");
9888 }
Nikola Smiljanic01a75982014-05-29 10:55:11 +00009889 CopyAssignOperator->setBody(Body.getAs<Stmt>());
Sebastian Redlab238a72011-04-24 16:28:06 +00009890
9891 if (ASTMutationListener *L = getASTMutationListener()) {
9892 L->CompletedImplicitDefinition(CopyAssignOperator);
9893 }
Fariborz Jahanian41f79272009-06-25 21:45:19 +00009894}
9895
Sebastian Redl22653ba2011-08-30 19:58:05 +00009896Sema::ImplicitExceptionSpecification
Richard Smithd3b5c9082012-07-27 04:22:15 +00009897Sema::ComputeDefaultedMoveAssignmentExceptionSpec(CXXMethodDecl *MD) {
9898 CXXRecordDecl *ClassDecl = MD->getParent();
Sebastian Redl22653ba2011-08-30 19:58:05 +00009899
Richard Smithd3b5c9082012-07-27 04:22:15 +00009900 ImplicitExceptionSpecification ExceptSpec(*this);
Sebastian Redl22653ba2011-08-30 19:58:05 +00009901 if (ClassDecl->isInvalidDecl())
9902 return ExceptSpec;
9903
9904 // C++0x [except.spec]p14:
9905 // An implicitly declared special member function (Clause 12) shall have an
9906 // exception-specification. [...]
9907
9908 // It is unspecified whether or not an implicit move assignment operator
9909 // attempts to deduplicate calls to assignment operators of virtual bases are
9910 // made. As such, this exception specification is effectively unspecified.
9911 // Based on a similar decision made for constness in C++0x, we're erring on
9912 // the side of assuming such calls to be made regardless of whether they
9913 // actually happen.
9914 // Note that a move constructor is not implicitly declared when there are
9915 // virtual bases, but it can still be user-declared and explicitly defaulted.
Aaron Ballman574705e2014-03-13 15:41:46 +00009916 for (const auto &Base : ClassDecl->bases()) {
9917 if (Base.isVirtual())
Sebastian Redl22653ba2011-08-30 19:58:05 +00009918 continue;
9919
9920 CXXRecordDecl *BaseClassDecl
Aaron Ballman574705e2014-03-13 15:41:46 +00009921 = cast<CXXRecordDecl>(Base.getType()->getAs<RecordType>()->getDecl());
Sebastian Redl22653ba2011-08-30 19:58:05 +00009922 if (CXXMethodDecl *MoveAssign = LookupMovingAssignment(BaseClassDecl,
Richard Smith1c6461e2012-07-18 03:36:00 +00009923 0, false, 0))
Aaron Ballman574705e2014-03-13 15:41:46 +00009924 ExceptSpec.CalledDecl(Base.getLocStart(), MoveAssign);
Sebastian Redl22653ba2011-08-30 19:58:05 +00009925 }
9926
Aaron Ballman445a9392014-03-13 16:15:17 +00009927 for (const auto &Base : ClassDecl->vbases()) {
Sebastian Redl22653ba2011-08-30 19:58:05 +00009928 CXXRecordDecl *BaseClassDecl
Aaron Ballman445a9392014-03-13 16:15:17 +00009929 = cast<CXXRecordDecl>(Base.getType()->getAs<RecordType>()->getDecl());
Sebastian Redl22653ba2011-08-30 19:58:05 +00009930 if (CXXMethodDecl *MoveAssign = LookupMovingAssignment(BaseClassDecl,
Richard Smith1c6461e2012-07-18 03:36:00 +00009931 0, false, 0))
Aaron Ballman445a9392014-03-13 16:15:17 +00009932 ExceptSpec.CalledDecl(Base.getLocStart(), MoveAssign);
Sebastian Redl22653ba2011-08-30 19:58:05 +00009933 }
9934
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00009935 for (const auto *Field : ClassDecl->fields()) {
David Blaikie2d7c57e2012-04-30 02:36:29 +00009936 QualType FieldType = Context.getBaseElementType(Field->getType());
Sebastian Redl22653ba2011-08-30 19:58:05 +00009937 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
Richard Smith1c6461e2012-07-18 03:36:00 +00009938 if (CXXMethodDecl *MoveAssign =
9939 LookupMovingAssignment(FieldClassDecl,
9940 FieldType.getCVRQualifiers(),
9941 false, 0))
Richard Smithf623c962012-04-17 00:58:00 +00009942 ExceptSpec.CalledDecl(Field->getLocation(), MoveAssign);
Sebastian Redl22653ba2011-08-30 19:58:05 +00009943 }
9944 }
9945
9946 return ExceptSpec;
9947}
9948
9949CXXMethodDecl *Sema::DeclareImplicitMoveAssignment(CXXRecordDecl *ClassDecl) {
Richard Smithcf8ec8d2012-04-02 18:40:40 +00009950 assert(ClassDecl->needsImplicitMoveAssignment());
9951
Richard Smith8bf22e52012-11-29 01:34:07 +00009952 DeclaringSpecialMember DSM(*this, ClassDecl, CXXMoveAssignment);
9953 if (DSM.isAlreadyBeingDeclared())
Craig Topperc3ec1492014-05-26 06:22:03 +00009954 return nullptr;
Richard Smith8bf22e52012-11-29 01:34:07 +00009955
Sebastian Redl22653ba2011-08-30 19:58:05 +00009956 // Note: The following rules are largely analoguous to the move
9957 // constructor rules.
9958
Sebastian Redl22653ba2011-08-30 19:58:05 +00009959 QualType ArgType = Context.getTypeDeclType(ClassDecl);
9960 QualType RetType = Context.getLValueReferenceType(ArgType);
9961 ArgType = Context.getRValueReferenceType(ArgType);
9962
Richard Smith99005e62013-05-07 03:19:20 +00009963 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
9964 CXXMoveAssignment,
9965 false);
9966
Sebastian Redl22653ba2011-08-30 19:58:05 +00009967 // An implicitly-declared move assignment operator is an inline public
9968 // member of its class.
Sebastian Redl22653ba2011-08-30 19:58:05 +00009969 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
9970 SourceLocation ClassLoc = ClassDecl->getLocation();
9971 DeclarationNameInfo NameInfo(Name, ClassLoc);
Richard Smith99005e62013-05-07 03:19:20 +00009972 CXXMethodDecl *MoveAssignment =
9973 CXXMethodDecl::Create(Context, ClassDecl, ClassLoc, NameInfo, QualType(),
Craig Topperc3ec1492014-05-26 06:22:03 +00009974 /*TInfo=*/nullptr, /*StorageClass=*/SC_None,
Richard Smith99005e62013-05-07 03:19:20 +00009975 /*isInline=*/true, Constexpr, SourceLocation());
Sebastian Redl22653ba2011-08-30 19:58:05 +00009976 MoveAssignment->setAccess(AS_public);
9977 MoveAssignment->setDefaulted();
9978 MoveAssignment->setImplicit();
Sebastian Redl22653ba2011-08-30 19:58:05 +00009979
Richard Smithd3b5c9082012-07-27 04:22:15 +00009980 // Build an exception specification pointing back at this member.
Reid Kleckner78af0702013-08-27 23:08:25 +00009981 FunctionProtoType::ExtProtoInfo EPI =
9982 getImplicitMethodEPI(*this, MoveAssignment);
Jordan Rose5c382722013-03-08 21:51:21 +00009983 MoveAssignment->setType(Context.getFunctionType(RetType, ArgType, EPI));
Richard Smithd3b5c9082012-07-27 04:22:15 +00009984
Sebastian Redl22653ba2011-08-30 19:58:05 +00009985 // Add the parameter to the operator.
9986 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, MoveAssignment,
Craig Topperc3ec1492014-05-26 06:22:03 +00009987 ClassLoc, ClassLoc,
9988 /*Id=*/nullptr, ArgType,
9989 /*TInfo=*/nullptr, SC_None,
9990 nullptr);
David Blaikie9c70e042011-09-21 18:16:56 +00009991 MoveAssignment->setParams(FromParam);
Sebastian Redl22653ba2011-08-30 19:58:05 +00009992
Richard Smith6b02d462012-12-08 08:32:28 +00009993 AddOverriddenMethods(ClassDecl, MoveAssignment);
9994
9995 MoveAssignment->setTrivial(
9996 ClassDecl->needsOverloadResolutionForMoveAssignment()
9997 ? SpecialMemberIsTrivial(MoveAssignment, CXXMoveAssignment)
9998 : ClassDecl->hasTrivialMoveAssignment());
Sebastian Redl22653ba2011-08-30 19:58:05 +00009999
Richard Smithd951a1d2012-02-18 02:02:13 +000010000 if (ShouldDeleteSpecialMember(MoveAssignment, CXXMoveAssignment)) {
Richard Smith8b86f2d2013-11-04 01:48:18 +000010001 ClassDecl->setImplicitMoveAssignmentIsDeleted();
10002 SetDeclDeleted(MoveAssignment, ClassLoc);
Sebastian Redl22653ba2011-08-30 19:58:05 +000010003 }
10004
Richard Smith6b02d462012-12-08 08:32:28 +000010005 // Note that we have added this copy-assignment operator.
10006 ++ASTContext::NumImplicitMoveAssignmentOperatorsDeclared;
10007
Sebastian Redl22653ba2011-08-30 19:58:05 +000010008 if (Scope *S = getScopeForContext(ClassDecl))
10009 PushOnScopeChains(MoveAssignment, S, false);
10010 ClassDecl->addDecl(MoveAssignment);
10011
Sebastian Redl22653ba2011-08-30 19:58:05 +000010012 return MoveAssignment;
10013}
10014
Richard Smithb2504bd2013-11-04 04:26:14 +000010015/// Check if we're implicitly defining a move assignment operator for a class
10016/// with virtual bases. Such a move assignment might move-assign the virtual
10017/// base multiple times.
10018static void checkMoveAssignmentForRepeatedMove(Sema &S, CXXRecordDecl *Class,
10019 SourceLocation CurrentLocation) {
10020 assert(!Class->isDependentContext() && "should not define dependent move");
10021
10022 // Only a virtual base could get implicitly move-assigned multiple times.
10023 // Only a non-trivial move assignment can observe this. We only want to
10024 // diagnose if we implicitly define an assignment operator that assigns
10025 // two base classes, both of which move-assign the same virtual base.
10026 if (Class->getNumVBases() == 0 || Class->hasTrivialMoveAssignment() ||
10027 Class->getNumBases() < 2)
10028 return;
10029
10030 llvm::SmallVector<CXXBaseSpecifier *, 16> Worklist;
10031 typedef llvm::DenseMap<CXXRecordDecl*, CXXBaseSpecifier*> VBaseMap;
10032 VBaseMap VBases;
10033
Aaron Ballman574705e2014-03-13 15:41:46 +000010034 for (auto &BI : Class->bases()) {
10035 Worklist.push_back(&BI);
Richard Smithb2504bd2013-11-04 04:26:14 +000010036 while (!Worklist.empty()) {
10037 CXXBaseSpecifier *BaseSpec = Worklist.pop_back_val();
10038 CXXRecordDecl *Base = BaseSpec->getType()->getAsCXXRecordDecl();
10039
10040 // If the base has no non-trivial move assignment operators,
10041 // we don't care about moves from it.
10042 if (!Base->hasNonTrivialMoveAssignment())
10043 continue;
10044
10045 // If there's nothing virtual here, skip it.
10046 if (!BaseSpec->isVirtual() && !Base->getNumVBases())
10047 continue;
10048
10049 // If we're not actually going to call a move assignment for this base,
10050 // or the selected move assignment is trivial, skip it.
10051 Sema::SpecialMemberOverloadResult *SMOR =
10052 S.LookupSpecialMember(Base, Sema::CXXMoveAssignment,
10053 /*ConstArg*/false, /*VolatileArg*/false,
10054 /*RValueThis*/true, /*ConstThis*/false,
10055 /*VolatileThis*/false);
10056 if (!SMOR->getMethod() || SMOR->getMethod()->isTrivial() ||
10057 !SMOR->getMethod()->isMoveAssignmentOperator())
10058 continue;
10059
10060 if (BaseSpec->isVirtual()) {
10061 // We're going to move-assign this virtual base, and its move
10062 // assignment operator is not trivial. If this can happen for
10063 // multiple distinct direct bases of Class, diagnose it. (If it
10064 // only happens in one base, we'll diagnose it when synthesizing
10065 // that base class's move assignment operator.)
10066 CXXBaseSpecifier *&Existing =
Aaron Ballman574705e2014-03-13 15:41:46 +000010067 VBases.insert(std::make_pair(Base->getCanonicalDecl(), &BI))
Richard Smithb2504bd2013-11-04 04:26:14 +000010068 .first->second;
Aaron Ballman574705e2014-03-13 15:41:46 +000010069 if (Existing && Existing != &BI) {
Richard Smithb2504bd2013-11-04 04:26:14 +000010070 S.Diag(CurrentLocation, diag::warn_vbase_moved_multiple_times)
10071 << Class << Base;
10072 S.Diag(Existing->getLocStart(), diag::note_vbase_moved_here)
10073 << (Base->getCanonicalDecl() ==
10074 Existing->getType()->getAsCXXRecordDecl()->getCanonicalDecl())
10075 << Base << Existing->getType() << Existing->getSourceRange();
Aaron Ballman574705e2014-03-13 15:41:46 +000010076 S.Diag(BI.getLocStart(), diag::note_vbase_moved_here)
Richard Smithb2504bd2013-11-04 04:26:14 +000010077 << (Base->getCanonicalDecl() ==
Aaron Ballman574705e2014-03-13 15:41:46 +000010078 BI.getType()->getAsCXXRecordDecl()->getCanonicalDecl())
10079 << Base << BI.getType() << BaseSpec->getSourceRange();
Richard Smithb2504bd2013-11-04 04:26:14 +000010080
10081 // Only diagnose each vbase once.
Craig Topperc3ec1492014-05-26 06:22:03 +000010082 Existing = nullptr;
Richard Smithb2504bd2013-11-04 04:26:14 +000010083 }
10084 } else {
10085 // Only walk over bases that have defaulted move assignment operators.
10086 // We assume that any user-provided move assignment operator handles
10087 // the multiple-moves-of-vbase case itself somehow.
10088 if (!SMOR->getMethod()->isDefaulted())
10089 continue;
10090
10091 // We're going to move the base classes of Base. Add them to the list.
Aaron Ballman574705e2014-03-13 15:41:46 +000010092 for (auto &BI : Base->bases())
10093 Worklist.push_back(&BI);
Richard Smithb2504bd2013-11-04 04:26:14 +000010094 }
10095 }
10096 }
10097}
10098
Sebastian Redl22653ba2011-08-30 19:58:05 +000010099void Sema::DefineImplicitMoveAssignment(SourceLocation CurrentLocation,
10100 CXXMethodDecl *MoveAssignOperator) {
10101 assert((MoveAssignOperator->isDefaulted() &&
10102 MoveAssignOperator->isOverloadedOperator() &&
10103 MoveAssignOperator->getOverloadedOperator() == OO_Equal &&
Richard Smith273c4e92012-02-26 07:51:39 +000010104 !MoveAssignOperator->doesThisDeclarationHaveABody() &&
10105 !MoveAssignOperator->isDeleted()) &&
Sebastian Redl22653ba2011-08-30 19:58:05 +000010106 "DefineImplicitMoveAssignment called for wrong function");
10107
10108 CXXRecordDecl *ClassDecl = MoveAssignOperator->getParent();
10109
10110 if (ClassDecl->isInvalidDecl() || MoveAssignOperator->isInvalidDecl()) {
10111 MoveAssignOperator->setInvalidDecl();
10112 return;
10113 }
10114
Eli Friedman276dd182013-09-05 00:02:25 +000010115 MoveAssignOperator->markUsed(Context);
Sebastian Redl22653ba2011-08-30 19:58:05 +000010116
Eli Friedmaneaf34142012-10-18 20:14:08 +000010117 SynthesizedFunctionScope Scope(*this, MoveAssignOperator);
Sebastian Redl22653ba2011-08-30 19:58:05 +000010118 DiagnosticErrorTrap Trap(Diags);
10119
10120 // C++0x [class.copy]p28:
10121 // The implicitly-defined or move assignment operator for a non-union class
10122 // X performs memberwise move assignment of its subobjects. The direct base
10123 // classes of X are assigned first, in the order of their declaration in the
10124 // base-specifier-list, and then the immediate non-static data members of X
10125 // are assigned, in the order in which they were declared in the class
10126 // definition.
10127
Richard Smithb2504bd2013-11-04 04:26:14 +000010128 // Issue a warning if our implicit move assignment operator will move
10129 // from a virtual base more than once.
10130 checkMoveAssignmentForRepeatedMove(*this, ClassDecl, CurrentLocation);
Richard Smith8b86f2d2013-11-04 01:48:18 +000010131
Sebastian Redl22653ba2011-08-30 19:58:05 +000010132 // The statements that form the synthesized function body.
Benjamin Kramerf0623432012-08-23 22:51:59 +000010133 SmallVector<Stmt*, 8> Statements;
Sebastian Redl22653ba2011-08-30 19:58:05 +000010134
10135 // The parameter for the "other" object, which we are move from.
10136 ParmVarDecl *Other = MoveAssignOperator->getParamDecl(0);
10137 QualType OtherRefType = Other->getType()->
10138 getAs<RValueReferenceType>()->getPointeeType();
David Blaikie7d170102013-05-15 07:37:26 +000010139 assert(!OtherRefType.getQualifiers() &&
Sebastian Redl22653ba2011-08-30 19:58:05 +000010140 "Bad argument type of defaulted move assignment");
10141
10142 // Our location for everything implicitly-generated.
Daniel Jasperb3b0b802014-06-20 08:44:22 +000010143 SourceLocation Loc = MoveAssignOperator->getLocEnd().isValid()
10144 ? MoveAssignOperator->getLocEnd()
10145 : MoveAssignOperator->getLocation();
Sebastian Redl22653ba2011-08-30 19:58:05 +000010146
Pavel Labath58934982013-08-30 08:52:28 +000010147 // Builds a reference to the "other" object.
10148 RefBuilder OtherRef(Other, OtherRefType);
Sebastian Redl22653ba2011-08-30 19:58:05 +000010149 // Cast to rvalue.
Pavel Labath58934982013-08-30 08:52:28 +000010150 MoveCastBuilder MoveOther(OtherRef);
Sebastian Redl22653ba2011-08-30 19:58:05 +000010151
Pavel Labath58934982013-08-30 08:52:28 +000010152 // Builds the "this" pointer.
10153 ThisBuilder This;
Richard Smithcf8ec8d2012-04-02 18:40:40 +000010154
Sebastian Redl22653ba2011-08-30 19:58:05 +000010155 // Assign base classes.
10156 bool Invalid = false;
Aaron Ballman574705e2014-03-13 15:41:46 +000010157 for (auto &Base : ClassDecl->bases()) {
Richard Smithb2504bd2013-11-04 04:26:14 +000010158 // C++11 [class.copy]p28:
10159 // It is unspecified whether subobjects representing virtual base classes
10160 // are assigned more than once by the implicitly-defined copy assignment
10161 // operator.
10162 // FIXME: Do not assign to a vbase that will be assigned by some other base
10163 // class. For a move-assignment, this can result in the vbase being moved
10164 // multiple times.
10165
Sebastian Redl22653ba2011-08-30 19:58:05 +000010166 // Form the assignment:
10167 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&&>(other));
Aaron Ballman574705e2014-03-13 15:41:46 +000010168 QualType BaseType = Base.getType().getUnqualifiedType();
Sebastian Redl22653ba2011-08-30 19:58:05 +000010169 if (!BaseType->isRecordType()) {
10170 Invalid = true;
10171 continue;
10172 }
10173
10174 CXXCastPath BasePath;
Aaron Ballman574705e2014-03-13 15:41:46 +000010175 BasePath.push_back(&Base);
Sebastian Redl22653ba2011-08-30 19:58:05 +000010176
10177 // Construct the "from" expression, which is an implicit cast to the
10178 // appropriately-qualified base type.
Pavel Labath58934982013-08-30 08:52:28 +000010179 CastBuilder From(OtherRef, BaseType, VK_XValue, BasePath);
Sebastian Redl22653ba2011-08-30 19:58:05 +000010180
10181 // Dereference "this".
Pavel Labath58934982013-08-30 08:52:28 +000010182 DerefBuilder DerefThis(This);
Sebastian Redl22653ba2011-08-30 19:58:05 +000010183
10184 // Implicitly cast "this" to the appropriately-qualified base type.
Pavel Labath58934982013-08-30 08:52:28 +000010185 CastBuilder To(DerefThis,
10186 Context.getCVRQualifiedType(
10187 BaseType, MoveAssignOperator->getTypeQualifiers()),
10188 VK_LValue, BasePath);
Sebastian Redl22653ba2011-08-30 19:58:05 +000010189
10190 // Build the move.
Richard Smith41ae3282012-11-14 00:50:40 +000010191 StmtResult Move = buildSingleCopyAssign(*this, Loc, BaseType,
Pavel Labath58934982013-08-30 08:52:28 +000010192 To, From,
Sebastian Redl22653ba2011-08-30 19:58:05 +000010193 /*CopyingBaseSubobject=*/true,
10194 /*Copying=*/false);
10195 if (Move.isInvalid()) {
10196 Diag(CurrentLocation, diag::note_member_synthesized_at)
10197 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
10198 MoveAssignOperator->setInvalidDecl();
10199 return;
10200 }
10201
10202 // Success! Record the move.
Nikola Smiljanic01a75982014-05-29 10:55:11 +000010203 Statements.push_back(Move.getAs<Expr>());
Sebastian Redl22653ba2011-08-30 19:58:05 +000010204 }
10205
Sebastian Redl22653ba2011-08-30 19:58:05 +000010206 // Assign non-static members.
Aaron Ballmane8a8bae2014-03-08 20:12:42 +000010207 for (auto *Field : ClassDecl->fields()) {
Douglas Gregor556e5862011-10-10 17:22:13 +000010208 if (Field->isUnnamedBitfield())
10209 continue;
10210
Eli Friedmanc9817fd2013-06-07 01:48:56 +000010211 if (Field->isInvalidDecl()) {
10212 Invalid = true;
10213 continue;
10214 }
10215
Sebastian Redl22653ba2011-08-30 19:58:05 +000010216 // Check for members of reference type; we can't move those.
10217 if (Field->getType()->isReferenceType()) {
10218 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
10219 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
10220 Diag(Field->getLocation(), diag::note_declared_at);
10221 Diag(CurrentLocation, diag::note_member_synthesized_at)
10222 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
10223 Invalid = true;
10224 continue;
10225 }
10226
10227 // Check for members of const-qualified, non-class type.
10228 QualType BaseType = Context.getBaseElementType(Field->getType());
10229 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) {
10230 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
10231 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
10232 Diag(Field->getLocation(), diag::note_declared_at);
10233 Diag(CurrentLocation, diag::note_member_synthesized_at)
10234 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
10235 Invalid = true;
10236 continue;
10237 }
10238
10239 // Suppress assigning zero-width bitfields.
Richard Smithcaf33902011-10-10 18:28:20 +000010240 if (Field->isBitField() && Field->getBitWidthValue(Context) == 0)
10241 continue;
Sebastian Redl22653ba2011-08-30 19:58:05 +000010242
10243 QualType FieldType = Field->getType().getNonReferenceType();
10244 if (FieldType->isIncompleteArrayType()) {
10245 assert(ClassDecl->hasFlexibleArrayMember() &&
10246 "Incomplete array type is not valid");
10247 continue;
10248 }
10249
10250 // Build references to the field in the object we're copying from and to.
Sebastian Redl22653ba2011-08-30 19:58:05 +000010251 LookupResult MemberLookup(*this, Field->getDeclName(), Loc,
10252 LookupMemberName);
Aaron Ballmane8a8bae2014-03-08 20:12:42 +000010253 MemberLookup.addDecl(Field);
Sebastian Redl22653ba2011-08-30 19:58:05 +000010254 MemberLookup.resolveKind();
Pavel Labath58934982013-08-30 08:52:28 +000010255 MemberBuilder From(MoveOther, OtherRefType,
10256 /*IsArrow=*/false, MemberLookup);
10257 MemberBuilder To(This, getCurrentThisType(),
10258 /*IsArrow=*/true, MemberLookup);
Sebastian Redl22653ba2011-08-30 19:58:05 +000010259
Pavel Labath58934982013-08-30 08:52:28 +000010260 assert(!From.build(*this, Loc)->isLValue() && // could be xvalue or prvalue
Sebastian Redl22653ba2011-08-30 19:58:05 +000010261 "Member reference with rvalue base must be rvalue except for reference "
10262 "members, which aren't allowed for move assignment.");
10263
Sebastian Redl22653ba2011-08-30 19:58:05 +000010264 // Build the move of this field.
Richard Smith41ae3282012-11-14 00:50:40 +000010265 StmtResult Move = buildSingleCopyAssign(*this, Loc, FieldType,
Pavel Labath58934982013-08-30 08:52:28 +000010266 To, From,
Sebastian Redl22653ba2011-08-30 19:58:05 +000010267 /*CopyingBaseSubobject=*/false,
10268 /*Copying=*/false);
10269 if (Move.isInvalid()) {
10270 Diag(CurrentLocation, diag::note_member_synthesized_at)
10271 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
10272 MoveAssignOperator->setInvalidDecl();
10273 return;
10274 }
Richard Smith11d19592012-11-12 23:33:00 +000010275
Sebastian Redl22653ba2011-08-30 19:58:05 +000010276 // Success! Record the copy.
Nikola Smiljanic01a75982014-05-29 10:55:11 +000010277 Statements.push_back(Move.getAs<Stmt>());
Sebastian Redl22653ba2011-08-30 19:58:05 +000010278 }
10279
10280 if (!Invalid) {
10281 // Add a "return *this;"
Daniel Jasperb3b0b802014-06-20 08:44:22 +000010282 ExprResult ThisObj =
10283 CreateBuiltinUnaryOp(Loc, UO_Deref, This.build(*this, Loc));
10284
Nick Lewyckyd78f92f2014-05-03 00:41:18 +000010285 StmtResult Return = BuildReturnStmt(Loc, ThisObj.get());
Sebastian Redl22653ba2011-08-30 19:58:05 +000010286 if (Return.isInvalid())
10287 Invalid = true;
10288 else {
Nikola Smiljanic01a75982014-05-29 10:55:11 +000010289 Statements.push_back(Return.getAs<Stmt>());
Sebastian Redl22653ba2011-08-30 19:58:05 +000010290
10291 if (Trap.hasErrorOccurred()) {
10292 Diag(CurrentLocation, diag::note_member_synthesized_at)
10293 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl);
10294 Invalid = true;
10295 }
10296 }
10297 }
10298
10299 if (Invalid) {
10300 MoveAssignOperator->setInvalidDecl();
10301 return;
10302 }
Dmitri Gribenko800ddf32012-02-14 22:14:32 +000010303
10304 StmtResult Body;
10305 {
10306 CompoundScopeRAII CompoundScope(*this);
Benjamin Kramer62b95d82012-08-23 21:35:17 +000010307 Body = ActOnCompoundStmt(Loc, Loc, Statements,
Dmitri Gribenko800ddf32012-02-14 22:14:32 +000010308 /*isStmtExpr=*/false);
10309 assert(!Body.isInvalid() && "Compound statement creation cannot fail");
10310 }
Nikola Smiljanic01a75982014-05-29 10:55:11 +000010311 MoveAssignOperator->setBody(Body.getAs<Stmt>());
Sebastian Redl22653ba2011-08-30 19:58:05 +000010312
10313 if (ASTMutationListener *L = getASTMutationListener()) {
10314 L->CompletedImplicitDefinition(MoveAssignOperator);
10315 }
10316}
10317
Richard Smithd3b5c9082012-07-27 04:22:15 +000010318Sema::ImplicitExceptionSpecification
10319Sema::ComputeDefaultedCopyCtorExceptionSpec(CXXMethodDecl *MD) {
10320 CXXRecordDecl *ClassDecl = MD->getParent();
10321
10322 ImplicitExceptionSpecification ExceptSpec(*this);
10323 if (ClassDecl->isInvalidDecl())
10324 return ExceptSpec;
10325
10326 const FunctionProtoType *T = MD->getType()->castAs<FunctionProtoType>();
Alp Toker9cacbab2014-01-20 20:26:09 +000010327 assert(T->getNumParams() >= 1 && "not a copy ctor");
10328 unsigned Quals = T->getParamType(0).getNonReferenceType().getCVRQualifiers();
Richard Smithd3b5c9082012-07-27 04:22:15 +000010329
Douglas Gregor8453ddb2010-07-01 20:59:04 +000010330 // C++ [except.spec]p14:
10331 // An implicitly declared special member function (Clause 12) shall have an
10332 // exception-specification. [...]
Aaron Ballman574705e2014-03-13 15:41:46 +000010333 for (const auto &Base : ClassDecl->bases()) {
Douglas Gregor8453ddb2010-07-01 20:59:04 +000010334 // Virtual bases are handled below.
Aaron Ballman574705e2014-03-13 15:41:46 +000010335 if (Base.isVirtual())
Douglas Gregor8453ddb2010-07-01 20:59:04 +000010336 continue;
10337
Douglas Gregora6d69502010-07-02 23:41:54 +000010338 CXXRecordDecl *BaseClassDecl
Aaron Ballman574705e2014-03-13 15:41:46 +000010339 = cast<CXXRecordDecl>(Base.getType()->getAs<RecordType>()->getDecl());
Alexis Hunt899bd442011-06-10 04:44:37 +000010340 if (CXXConstructorDecl *CopyConstructor =
Alexis Hunt491ec602011-06-21 23:42:56 +000010341 LookupCopyingConstructor(BaseClassDecl, Quals))
Aaron Ballman574705e2014-03-13 15:41:46 +000010342 ExceptSpec.CalledDecl(Base.getLocStart(), CopyConstructor);
Douglas Gregor8453ddb2010-07-01 20:59:04 +000010343 }
Aaron Ballman445a9392014-03-13 16:15:17 +000010344 for (const auto &Base : ClassDecl->vbases()) {
Douglas Gregora6d69502010-07-02 23:41:54 +000010345 CXXRecordDecl *BaseClassDecl
Aaron Ballman445a9392014-03-13 16:15:17 +000010346 = cast<CXXRecordDecl>(Base.getType()->getAs<RecordType>()->getDecl());
Alexis Hunt899bd442011-06-10 04:44:37 +000010347 if (CXXConstructorDecl *CopyConstructor =
Alexis Hunt491ec602011-06-21 23:42:56 +000010348 LookupCopyingConstructor(BaseClassDecl, Quals))
Aaron Ballman445a9392014-03-13 16:15:17 +000010349 ExceptSpec.CalledDecl(Base.getLocStart(), CopyConstructor);
Douglas Gregor8453ddb2010-07-01 20:59:04 +000010350 }
Aaron Ballmane8a8bae2014-03-08 20:12:42 +000010351 for (const auto *Field : ClassDecl->fields()) {
David Blaikie2d7c57e2012-04-30 02:36:29 +000010352 QualType FieldType = Context.getBaseElementType(Field->getType());
Alexis Hunt899bd442011-06-10 04:44:37 +000010353 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) {
10354 if (CXXConstructorDecl *CopyConstructor =
Richard Smith1c6461e2012-07-18 03:36:00 +000010355 LookupCopyingConstructor(FieldClassDecl,
10356 Quals | FieldType.getCVRQualifiers()))
Richard Smithf623c962012-04-17 00:58:00 +000010357 ExceptSpec.CalledDecl(Field->getLocation(), CopyConstructor);
Douglas Gregor8453ddb2010-07-01 20:59:04 +000010358 }
10359 }
Sebastian Redlfa453cf2011-03-12 11:50:43 +000010360
Richard Smithd3b5c9082012-07-27 04:22:15 +000010361 return ExceptSpec;
Alexis Hunt913820d2011-05-13 06:10:58 +000010362}
10363
10364CXXConstructorDecl *Sema::DeclareImplicitCopyConstructor(
10365 CXXRecordDecl *ClassDecl) {
10366 // C++ [class.copy]p4:
10367 // If the class definition does not explicitly declare a copy
10368 // constructor, one is declared implicitly.
Richard Smith2be35f52012-12-01 02:35:44 +000010369 assert(ClassDecl->needsImplicitCopyConstructor());
Alexis Hunt913820d2011-05-13 06:10:58 +000010370
Richard Smith8bf22e52012-11-29 01:34:07 +000010371 DeclaringSpecialMember DSM(*this, ClassDecl, CXXCopyConstructor);
10372 if (DSM.isAlreadyBeingDeclared())
Craig Topperc3ec1492014-05-26 06:22:03 +000010373 return nullptr;
Richard Smith8bf22e52012-11-29 01:34:07 +000010374
Alexis Hunt913820d2011-05-13 06:10:58 +000010375 QualType ClassType = Context.getTypeDeclType(ClassDecl);
10376 QualType ArgType = ClassType;
Richard Smith1c33fe82012-11-28 06:23:12 +000010377 bool Const = ClassDecl->implicitCopyConstructorHasConstParam();
Alexis Hunt913820d2011-05-13 06:10:58 +000010378 if (Const)
10379 ArgType = ArgType.withConst();
10380 ArgType = Context.getLValueReferenceType(ArgType);
Alexis Hunt913820d2011-05-13 06:10:58 +000010381
Richard Smithb5800092012-06-10 05:43:50 +000010382 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
10383 CXXCopyConstructor,
10384 Const);
10385
Douglas Gregor54be3392010-07-01 17:57:27 +000010386 DeclarationName Name
10387 = Context.DeclarationNames.getCXXConstructorName(
10388 Context.getCanonicalType(ClassType));
Abramo Bagnaradff19302011-03-08 08:55:46 +000010389 SourceLocation ClassLoc = ClassDecl->getLocation();
10390 DeclarationNameInfo NameInfo(Name, ClassLoc);
Alexis Hunt913820d2011-05-13 06:10:58 +000010391
10392 // An implicitly-declared copy constructor is an inline public
Richard Smithcc36f692011-12-22 02:22:31 +000010393 // member of its class.
10394 CXXConstructorDecl *CopyConstructor = CXXConstructorDecl::Create(
Craig Topperc3ec1492014-05-26 06:22:03 +000010395 Context, ClassDecl, ClassLoc, NameInfo, QualType(), /*TInfo=*/nullptr,
Richard Smithcc36f692011-12-22 02:22:31 +000010396 /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true,
Richard Smithb5800092012-06-10 05:43:50 +000010397 Constexpr);
Douglas Gregor54be3392010-07-01 17:57:27 +000010398 CopyConstructor->setAccess(AS_public);
Alexis Hunt913820d2011-05-13 06:10:58 +000010399 CopyConstructor->setDefaulted();
Richard Smithcc36f692011-12-22 02:22:31 +000010400
Richard Smithd3b5c9082012-07-27 04:22:15 +000010401 // Build an exception specification pointing back at this member.
Reid Kleckner78af0702013-08-27 23:08:25 +000010402 FunctionProtoType::ExtProtoInfo EPI =
10403 getImplicitMethodEPI(*this, CopyConstructor);
Richard Smithd3b5c9082012-07-27 04:22:15 +000010404 CopyConstructor->setType(
Jordan Rose5c382722013-03-08 21:51:21 +000010405 Context.getFunctionType(Context.VoidTy, ArgType, EPI));
Richard Smithd3b5c9082012-07-27 04:22:15 +000010406
Douglas Gregor54be3392010-07-01 17:57:27 +000010407 // Add the parameter to the constructor.
10408 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyConstructor,
Abramo Bagnaradff19302011-03-08 08:55:46 +000010409 ClassLoc, ClassLoc,
Craig Topperc3ec1492014-05-26 06:22:03 +000010410 /*IdentifierInfo=*/nullptr,
10411 ArgType, /*TInfo=*/nullptr,
10412 SC_None, nullptr);
David Blaikie9c70e042011-09-21 18:16:56 +000010413 CopyConstructor->setParams(FromParam);
Alexis Hunt913820d2011-05-13 06:10:58 +000010414
Richard Smith6b02d462012-12-08 08:32:28 +000010415 CopyConstructor->setTrivial(
10416 ClassDecl->needsOverloadResolutionForCopyConstructor()
10417 ? SpecialMemberIsTrivial(CopyConstructor, CXXCopyConstructor)
10418 : ClassDecl->hasTrivialCopyConstructor());
Alexis Hunte77a28f2011-05-18 03:41:58 +000010419
Richard Smith852265f2012-03-30 20:53:28 +000010420 if (ShouldDeleteSpecialMember(CopyConstructor, CXXCopyConstructor))
Richard Smithb4d2a152013-04-02 19:38:47 +000010421 SetDeclDeleted(CopyConstructor, ClassLoc);
Richard Smith852265f2012-03-30 20:53:28 +000010422
Richard Smith6b02d462012-12-08 08:32:28 +000010423 // Note that we have declared this constructor.
10424 ++ASTContext::NumImplicitCopyConstructorsDeclared;
10425
10426 if (Scope *S = getScopeForContext(ClassDecl))
10427 PushOnScopeChains(CopyConstructor, S, false);
10428 ClassDecl->addDecl(CopyConstructor);
10429
Douglas Gregor54be3392010-07-01 17:57:27 +000010430 return CopyConstructor;
10431}
10432
Fariborz Jahanian477d2422009-06-22 23:34:40 +000010433void Sema::DefineImplicitCopyConstructor(SourceLocation CurrentLocation,
Alexis Hunt913820d2011-05-13 06:10:58 +000010434 CXXConstructorDecl *CopyConstructor) {
10435 assert((CopyConstructor->isDefaulted() &&
10436 CopyConstructor->isCopyConstructor() &&
Richard Smith273c4e92012-02-26 07:51:39 +000010437 !CopyConstructor->doesThisDeclarationHaveABody() &&
10438 !CopyConstructor->isDeleted()) &&
Fariborz Jahanian477d2422009-06-22 23:34:40 +000010439 "DefineImplicitCopyConstructor - call it for implicit copy ctor");
Mike Stump11289f42009-09-09 15:08:12 +000010440
Anders Carlsson7a0ffdb2010-04-23 16:24:12 +000010441 CXXRecordDecl *ClassDecl = CopyConstructor->getParent();
Fariborz Jahanian477d2422009-06-22 23:34:40 +000010442 assert(ClassDecl && "DefineImplicitCopyConstructor - invalid constructor");
Douglas Gregor7ae2d772010-01-31 09:12:51 +000010443
Richard Smithd577fbb2013-06-13 03:23:42 +000010444 // C++11 [class.copy]p7:
Benjamin Kramer60509af2013-09-09 14:48:42 +000010445 // The [definition of an implicitly declared copy constructor] is
Richard Smithd577fbb2013-06-13 03:23:42 +000010446 // deprecated if the class has a user-declared copy assignment operator
10447 // or a user-declared destructor.
10448 if (getLangOpts().CPlusPlus11 && CopyConstructor->isImplicit())
10449 diagnoseDeprecatedCopyOperation(*this, CopyConstructor, CurrentLocation);
10450
Eli Friedmaneaf34142012-10-18 20:14:08 +000010451 SynthesizedFunctionScope Scope(*this, CopyConstructor);
Argyrios Kyrtzidis18653422010-11-19 00:19:12 +000010452 DiagnosticErrorTrap Trap(Diags);
Douglas Gregor7ae2d772010-01-31 09:12:51 +000010453
David Blaikie3fc2f912013-01-17 05:26:25 +000010454 if (SetCtorInitializers(CopyConstructor, /*AnyErrors=*/false) ||
Douglas Gregor54818f02010-05-12 16:39:35 +000010455 Trap.hasErrorOccurred()) {
Anders Carlsson79111502010-05-01 16:39:01 +000010456 Diag(CurrentLocation, diag::note_member_synthesized_at)
Douglas Gregor94f9a482010-05-05 05:51:00 +000010457 << CXXCopyConstructor << Context.getTagDeclType(ClassDecl);
Anders Carlsson79111502010-05-01 16:39:01 +000010458 CopyConstructor->setInvalidDecl();
Douglas Gregor94f9a482010-05-05 05:51:00 +000010459 } else {
Daniel Jasperb3b0b802014-06-20 08:44:22 +000010460 SourceLocation Loc = CopyConstructor->getLocEnd().isValid()
10461 ? CopyConstructor->getLocEnd()
10462 : CopyConstructor->getLocation();
Dmitri Gribenko800ddf32012-02-14 22:14:32 +000010463 Sema::CompoundScopeRAII CompoundScope(*this);
Daniel Jasperb3b0b802014-06-20 08:44:22 +000010464 CopyConstructor->setBody(
10465 ActOnCompoundStmt(Loc, Loc, None, /*isStmtExpr=*/false).getAs<Stmt>());
Anders Carlsson53e1ba92010-04-25 00:52:09 +000010466 }
Robert Wilhelm27b2c9a32013-08-19 20:51:20 +000010467
Eli Friedman276dd182013-09-05 00:02:25 +000010468 CopyConstructor->markUsed(Context);
Reid Kleckner3be586f2014-07-18 01:48:10 +000010469 MarkVTableUsed(CurrentLocation, ClassDecl);
10470
Sebastian Redlab238a72011-04-24 16:28:06 +000010471 if (ASTMutationListener *L = getASTMutationListener()) {
10472 L->CompletedImplicitDefinition(CopyConstructor);
10473 }
Fariborz Jahanian477d2422009-06-22 23:34:40 +000010474}
10475
Sebastian Redl22653ba2011-08-30 19:58:05 +000010476Sema::ImplicitExceptionSpecification
Richard Smithd3b5c9082012-07-27 04:22:15 +000010477Sema::ComputeDefaultedMoveCtorExceptionSpec(CXXMethodDecl *MD) {
10478 CXXRecordDecl *ClassDecl = MD->getParent();
10479
Sebastian Redl22653ba2011-08-30 19:58:05 +000010480 // C++ [except.spec]p14:
10481 // An implicitly declared special member function (Clause 12) shall have an
10482 // exception-specification. [...]
Richard Smithf623c962012-04-17 00:58:00 +000010483 ImplicitExceptionSpecification ExceptSpec(*this);
Sebastian Redl22653ba2011-08-30 19:58:05 +000010484 if (ClassDecl->isInvalidDecl())
10485 return ExceptSpec;
10486
10487 // Direct base-class constructors.
Aaron Ballman574705e2014-03-13 15:41:46 +000010488 for (const auto &B : ClassDecl->bases()) {
10489 if (B.isVirtual()) // Handled below.
Sebastian Redl22653ba2011-08-30 19:58:05 +000010490 continue;
10491
Aaron Ballman574705e2014-03-13 15:41:46 +000010492 if (const RecordType *BaseType = B.getType()->getAs<RecordType>()) {
Sebastian Redl22653ba2011-08-30 19:58:05 +000010493 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Richard Smith1c6461e2012-07-18 03:36:00 +000010494 CXXConstructorDecl *Constructor =
10495 LookupMovingConstructor(BaseClassDecl, 0);
Sebastian Redl22653ba2011-08-30 19:58:05 +000010496 // If this is a deleted function, add it anyway. This might be conformant
10497 // with the standard. This might not. I'm not sure. It might not matter.
10498 if (Constructor)
Aaron Ballman574705e2014-03-13 15:41:46 +000010499 ExceptSpec.CalledDecl(B.getLocStart(), Constructor);
Sebastian Redl22653ba2011-08-30 19:58:05 +000010500 }
10501 }
10502
10503 // Virtual base-class constructors.
Aaron Ballman445a9392014-03-13 16:15:17 +000010504 for (const auto &B : ClassDecl->vbases()) {
10505 if (const RecordType *BaseType = B.getType()->getAs<RecordType>()) {
Sebastian Redl22653ba2011-08-30 19:58:05 +000010506 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Richard Smith1c6461e2012-07-18 03:36:00 +000010507 CXXConstructorDecl *Constructor =
10508 LookupMovingConstructor(BaseClassDecl, 0);
Sebastian Redl22653ba2011-08-30 19:58:05 +000010509 // If this is a deleted function, add it anyway. This might be conformant
10510 // with the standard. This might not. I'm not sure. It might not matter.
10511 if (Constructor)
Aaron Ballman445a9392014-03-13 16:15:17 +000010512 ExceptSpec.CalledDecl(B.getLocStart(), Constructor);
Sebastian Redl22653ba2011-08-30 19:58:05 +000010513 }
10514 }
10515
10516 // Field constructors.
Aaron Ballmane8a8bae2014-03-08 20:12:42 +000010517 for (const auto *F : ClassDecl->fields()) {
Richard Smith1c6461e2012-07-18 03:36:00 +000010518 QualType FieldType = Context.getBaseElementType(F->getType());
10519 if (CXXRecordDecl *FieldRecDecl = FieldType->getAsCXXRecordDecl()) {
10520 CXXConstructorDecl *Constructor =
10521 LookupMovingConstructor(FieldRecDecl, FieldType.getCVRQualifiers());
Sebastian Redl22653ba2011-08-30 19:58:05 +000010522 // If this is a deleted function, add it anyway. This might be conformant
10523 // with the standard. This might not. I'm not sure. It might not matter.
10524 // In particular, the problem is that this function never gets called. It
10525 // might just be ill-formed because this function attempts to refer to
10526 // a deleted function here.
10527 if (Constructor)
Richard Smithf623c962012-04-17 00:58:00 +000010528 ExceptSpec.CalledDecl(F->getLocation(), Constructor);
Sebastian Redl22653ba2011-08-30 19:58:05 +000010529 }
10530 }
10531
10532 return ExceptSpec;
10533}
10534
10535CXXConstructorDecl *Sema::DeclareImplicitMoveConstructor(
10536 CXXRecordDecl *ClassDecl) {
Richard Smithcf8ec8d2012-04-02 18:40:40 +000010537 assert(ClassDecl->needsImplicitMoveConstructor());
10538
Richard Smith8bf22e52012-11-29 01:34:07 +000010539 DeclaringSpecialMember DSM(*this, ClassDecl, CXXMoveConstructor);
10540 if (DSM.isAlreadyBeingDeclared())
Craig Topperc3ec1492014-05-26 06:22:03 +000010541 return nullptr;
Richard Smith8bf22e52012-11-29 01:34:07 +000010542
Sebastian Redl22653ba2011-08-30 19:58:05 +000010543 QualType ClassType = Context.getTypeDeclType(ClassDecl);
10544 QualType ArgType = Context.getRValueReferenceType(ClassType);
Sebastian Redl22653ba2011-08-30 19:58:05 +000010545
Richard Smithb5800092012-06-10 05:43:50 +000010546 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl,
10547 CXXMoveConstructor,
10548 false);
10549
Sebastian Redl22653ba2011-08-30 19:58:05 +000010550 DeclarationName Name
10551 = Context.DeclarationNames.getCXXConstructorName(
10552 Context.getCanonicalType(ClassType));
10553 SourceLocation ClassLoc = ClassDecl->getLocation();
10554 DeclarationNameInfo NameInfo(Name, ClassLoc);
10555
Richard Smith99005e62013-05-07 03:19:20 +000010556 // C++11 [class.copy]p11:
Sebastian Redl22653ba2011-08-30 19:58:05 +000010557 // An implicitly-declared copy/move constructor is an inline public
Richard Smithcc36f692011-12-22 02:22:31 +000010558 // member of its class.
10559 CXXConstructorDecl *MoveConstructor = CXXConstructorDecl::Create(
Craig Topperc3ec1492014-05-26 06:22:03 +000010560 Context, ClassDecl, ClassLoc, NameInfo, QualType(), /*TInfo=*/nullptr,
Richard Smithcc36f692011-12-22 02:22:31 +000010561 /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true,
Richard Smithb5800092012-06-10 05:43:50 +000010562 Constexpr);
Sebastian Redl22653ba2011-08-30 19:58:05 +000010563 MoveConstructor->setAccess(AS_public);
10564 MoveConstructor->setDefaulted();
Richard Smithcc36f692011-12-22 02:22:31 +000010565
Richard Smithd3b5c9082012-07-27 04:22:15 +000010566 // Build an exception specification pointing back at this member.
Reid Kleckner78af0702013-08-27 23:08:25 +000010567 FunctionProtoType::ExtProtoInfo EPI =
10568 getImplicitMethodEPI(*this, MoveConstructor);
Richard Smithd3b5c9082012-07-27 04:22:15 +000010569 MoveConstructor->setType(
Jordan Rose5c382722013-03-08 21:51:21 +000010570 Context.getFunctionType(Context.VoidTy, ArgType, EPI));
Richard Smithd3b5c9082012-07-27 04:22:15 +000010571
Sebastian Redl22653ba2011-08-30 19:58:05 +000010572 // Add the parameter to the constructor.
10573 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, MoveConstructor,
10574 ClassLoc, ClassLoc,
Craig Topperc3ec1492014-05-26 06:22:03 +000010575 /*IdentifierInfo=*/nullptr,
10576 ArgType, /*TInfo=*/nullptr,
10577 SC_None, nullptr);
David Blaikie9c70e042011-09-21 18:16:56 +000010578 MoveConstructor->setParams(FromParam);
Sebastian Redl22653ba2011-08-30 19:58:05 +000010579
Richard Smith6b02d462012-12-08 08:32:28 +000010580 MoveConstructor->setTrivial(
10581 ClassDecl->needsOverloadResolutionForMoveConstructor()
10582 ? SpecialMemberIsTrivial(MoveConstructor, CXXMoveConstructor)
10583 : ClassDecl->hasTrivialMoveConstructor());
10584
Alexis Hunt77c1f9f2011-10-11 06:43:29 +000010585 if (ShouldDeleteSpecialMember(MoveConstructor, CXXMoveConstructor)) {
Richard Smith8b86f2d2013-11-04 01:48:18 +000010586 ClassDecl->setImplicitMoveConstructorIsDeleted();
10587 SetDeclDeleted(MoveConstructor, ClassLoc);
Sebastian Redl22653ba2011-08-30 19:58:05 +000010588 }
10589
10590 // Note that we have declared this constructor.
10591 ++ASTContext::NumImplicitMoveConstructorsDeclared;
10592
10593 if (Scope *S = getScopeForContext(ClassDecl))
10594 PushOnScopeChains(MoveConstructor, S, false);
10595 ClassDecl->addDecl(MoveConstructor);
10596
10597 return MoveConstructor;
10598}
10599
10600void Sema::DefineImplicitMoveConstructor(SourceLocation CurrentLocation,
10601 CXXConstructorDecl *MoveConstructor) {
10602 assert((MoveConstructor->isDefaulted() &&
10603 MoveConstructor->isMoveConstructor() &&
Richard Smith273c4e92012-02-26 07:51:39 +000010604 !MoveConstructor->doesThisDeclarationHaveABody() &&
10605 !MoveConstructor->isDeleted()) &&
Sebastian Redl22653ba2011-08-30 19:58:05 +000010606 "DefineImplicitMoveConstructor - call it for implicit move ctor");
10607
10608 CXXRecordDecl *ClassDecl = MoveConstructor->getParent();
10609 assert(ClassDecl && "DefineImplicitMoveConstructor - invalid constructor");
10610
Eli Friedmaneaf34142012-10-18 20:14:08 +000010611 SynthesizedFunctionScope Scope(*this, MoveConstructor);
Sebastian Redl22653ba2011-08-30 19:58:05 +000010612 DiagnosticErrorTrap Trap(Diags);
10613
David Blaikie3fc2f912013-01-17 05:26:25 +000010614 if (SetCtorInitializers(MoveConstructor, /*AnyErrors=*/false) ||
Sebastian Redl22653ba2011-08-30 19:58:05 +000010615 Trap.hasErrorOccurred()) {
10616 Diag(CurrentLocation, diag::note_member_synthesized_at)
10617 << CXXMoveConstructor << Context.getTagDeclType(ClassDecl);
10618 MoveConstructor->setInvalidDecl();
10619 } else {
Daniel Jasperb3b0b802014-06-20 08:44:22 +000010620 SourceLocation Loc = MoveConstructor->getLocEnd().isValid()
10621 ? MoveConstructor->getLocEnd()
10622 : MoveConstructor->getLocation();
Dmitri Gribenko800ddf32012-02-14 22:14:32 +000010623 Sema::CompoundScopeRAII CompoundScope(*this);
Robert Wilhelm27b2c9a32013-08-19 20:51:20 +000010624 MoveConstructor->setBody(ActOnCompoundStmt(
Daniel Jasperb3b0b802014-06-20 08:44:22 +000010625 Loc, Loc, None, /*isStmtExpr=*/ false).getAs<Stmt>());
Sebastian Redl22653ba2011-08-30 19:58:05 +000010626 }
10627
Eli Friedman276dd182013-09-05 00:02:25 +000010628 MoveConstructor->markUsed(Context);
Reid Kleckner3be586f2014-07-18 01:48:10 +000010629 MarkVTableUsed(CurrentLocation, ClassDecl);
Sebastian Redl22653ba2011-08-30 19:58:05 +000010630
10631 if (ASTMutationListener *L = getASTMutationListener()) {
10632 L->CompletedImplicitDefinition(MoveConstructor);
10633 }
10634}
10635
Douglas Gregor74f7d502012-02-15 19:33:52 +000010636bool Sema::isImplicitlyDeleted(FunctionDecl *FD) {
Eli Friedmanebea0f22013-07-18 23:29:14 +000010637 return FD->isDeleted() && FD->isDefaulted() && isa<CXXMethodDecl>(FD);
Douglas Gregor74f7d502012-02-15 19:33:52 +000010638}
Douglas Gregord3b672c2012-02-16 01:06:16 +000010639
10640void Sema::DefineImplicitLambdaToFunctionPointerConversion(
Faisal Vali571df122013-09-29 08:45:24 +000010641 SourceLocation CurrentLocation,
10642 CXXConversionDecl *Conv) {
10643 CXXRecordDecl *Lambda = Conv->getParent();
10644 CXXMethodDecl *CallOp = Lambda->getLambdaCallOperator();
10645 // If we are defining a specialization of a conversion to function-ptr
10646 // cache the deduced template arguments for this specialization
10647 // so that we can use them to retrieve the corresponding call-operator
10648 // and static-invoker.
Craig Topperc3ec1492014-05-26 06:22:03 +000010649 const TemplateArgumentList *DeducedTemplateArgs = nullptr;
10650
Faisal Vali571df122013-09-29 08:45:24 +000010651 // Retrieve the corresponding call-operator specialization.
10652 if (Lambda->isGenericLambda()) {
10653 assert(Conv->isFunctionTemplateSpecialization());
10654 FunctionTemplateDecl *CallOpTemplate =
10655 CallOp->getDescribedFunctionTemplate();
10656 DeducedTemplateArgs = Conv->getTemplateSpecializationArgs();
Craig Topperc3ec1492014-05-26 06:22:03 +000010657 void *InsertPos = nullptr;
Faisal Vali571df122013-09-29 08:45:24 +000010658 FunctionDecl *CallOpSpec = CallOpTemplate->findSpecialization(
Craig Topper7e0daca2014-06-26 04:58:53 +000010659 DeducedTemplateArgs->asArray(),
Faisal Vali571df122013-09-29 08:45:24 +000010660 InsertPos);
10661 assert(CallOpSpec &&
10662 "Conversion operator must have a corresponding call operator");
10663 CallOp = cast<CXXMethodDecl>(CallOpSpec);
10664 }
10665 // Mark the call operator referenced (and add to pending instantiations
10666 // if necessary).
10667 // For both the conversion and static-invoker template specializations
10668 // we construct their body's in this function, so no need to add them
10669 // to the PendingInstantiations.
10670 MarkFunctionReferenced(CurrentLocation, CallOp);
10671
Eli Friedmaneaf34142012-10-18 20:14:08 +000010672 SynthesizedFunctionScope Scope(*this, Conv);
Douglas Gregord3b672c2012-02-16 01:06:16 +000010673 DiagnosticErrorTrap Trap(Diags);
Faisal Vali571df122013-09-29 08:45:24 +000010674
Alp Tokerf6a24ce2013-12-05 16:25:25 +000010675 // Retrieve the static invoker...
Faisal Vali571df122013-09-29 08:45:24 +000010676 CXXMethodDecl *Invoker = Lambda->getLambdaStaticInvoker();
10677 // ... and get the corresponding specialization for a generic lambda.
10678 if (Lambda->isGenericLambda()) {
10679 assert(DeducedTemplateArgs &&
10680 "Must have deduced template arguments from Conversion Operator");
10681 FunctionTemplateDecl *InvokeTemplate =
10682 Invoker->getDescribedFunctionTemplate();
Craig Topperc3ec1492014-05-26 06:22:03 +000010683 void *InsertPos = nullptr;
Faisal Vali571df122013-09-29 08:45:24 +000010684 FunctionDecl *InvokeSpec = InvokeTemplate->findSpecialization(
Craig Topper7e0daca2014-06-26 04:58:53 +000010685 DeducedTemplateArgs->asArray(),
Faisal Vali571df122013-09-29 08:45:24 +000010686 InsertPos);
10687 assert(InvokeSpec &&
10688 "Must have a corresponding static invoker specialization");
10689 Invoker = cast<CXXMethodDecl>(InvokeSpec);
10690 }
10691 // Construct the body of the conversion function { return __invoke; }.
10692 Expr *FunctionRef = BuildDeclRefExpr(Invoker, Invoker->getType(),
Nikola Smiljanic01a75982014-05-29 10:55:11 +000010693 VK_LValue, Conv->getLocation()).get();
Faisal Vali571df122013-09-29 08:45:24 +000010694 assert(FunctionRef && "Can't refer to __invoke function?");
Nikola Smiljanic01a75982014-05-29 10:55:11 +000010695 Stmt *Return = BuildReturnStmt(Conv->getLocation(), FunctionRef).get();
Faisal Vali571df122013-09-29 08:45:24 +000010696 Conv->setBody(new (Context) CompoundStmt(Context, Return,
10697 Conv->getLocation(),
10698 Conv->getLocation()));
10699
10700 Conv->markUsed(Context);
10701 Conv->setReferenced();
Douglas Gregord3b672c2012-02-16 01:06:16 +000010702
Faisal Vali571df122013-09-29 08:45:24 +000010703 // Fill in the __invoke function with a dummy implementation. IR generation
10704 // will fill in the actual details.
10705 Invoker->markUsed(Context);
10706 Invoker->setReferenced();
10707 Invoker->setBody(new (Context) CompoundStmt(Conv->getLocation()));
10708
Douglas Gregord3b672c2012-02-16 01:06:16 +000010709 if (ASTMutationListener *L = getASTMutationListener()) {
10710 L->CompletedImplicitDefinition(Conv);
Faisal Vali571df122013-09-29 08:45:24 +000010711 L->CompletedImplicitDefinition(Invoker);
10712 }
Douglas Gregord3b672c2012-02-16 01:06:16 +000010713}
10714
Faisal Vali571df122013-09-29 08:45:24 +000010715
10716
Douglas Gregord3b672c2012-02-16 01:06:16 +000010717void Sema::DefineImplicitLambdaToBlockPointerConversion(
10718 SourceLocation CurrentLocation,
10719 CXXConversionDecl *Conv)
10720{
Faisal Vali850da1a2013-09-29 17:08:32 +000010721 assert(!Conv->getParent()->isGenericLambda());
Faisal Vali571df122013-09-29 08:45:24 +000010722
Eli Friedman276dd182013-09-05 00:02:25 +000010723 Conv->markUsed(Context);
Douglas Gregord3b672c2012-02-16 01:06:16 +000010724
Eli Friedmaneaf34142012-10-18 20:14:08 +000010725 SynthesizedFunctionScope Scope(*this, Conv);
Douglas Gregord3b672c2012-02-16 01:06:16 +000010726 DiagnosticErrorTrap Trap(Diags);
10727
Douglas Gregored90df32012-02-22 05:02:47 +000010728 // Copy-initialize the lambda object as needed to capture it.
Nikola Smiljanic01a75982014-05-29 10:55:11 +000010729 Expr *This = ActOnCXXThis(CurrentLocation).get();
10730 Expr *DerefThis =CreateBuiltinUnaryOp(CurrentLocation, UO_Deref, This).get();
Douglas Gregord3b672c2012-02-16 01:06:16 +000010731
Eli Friedman98b01ed2012-03-01 04:01:32 +000010732 ExprResult BuildBlock = BuildBlockForLambdaConversion(CurrentLocation,
10733 Conv->getLocation(),
10734 Conv, DerefThis);
10735
10736 // If we're not under ARC, make sure we still get the _Block_copy/autorelease
10737 // behavior. Note that only the general conversion function does this
10738 // (since it's unusable otherwise); in the case where we inline the
10739 // block literal, it has block literal lifetime semantics.
David Blaikiebbafb8a2012-03-11 07:00:24 +000010740 if (!BuildBlock.isInvalid() && !getLangOpts().ObjCAutoRefCount)
Eli Friedman98b01ed2012-03-01 04:01:32 +000010741 BuildBlock = ImplicitCastExpr::Create(Context, BuildBlock.get()->getType(),
10742 CK_CopyAndAutoreleaseBlockObject,
Craig Topperc3ec1492014-05-26 06:22:03 +000010743 BuildBlock.get(), nullptr, VK_RValue);
Eli Friedman98b01ed2012-03-01 04:01:32 +000010744
10745 if (BuildBlock.isInvalid()) {
Douglas Gregord3b672c2012-02-16 01:06:16 +000010746 Diag(CurrentLocation, diag::note_lambda_to_block_conv);
Douglas Gregored90df32012-02-22 05:02:47 +000010747 Conv->setInvalidDecl();
10748 return;
Douglas Gregord3b672c2012-02-16 01:06:16 +000010749 }
Douglas Gregored90df32012-02-22 05:02:47 +000010750
Douglas Gregored90df32012-02-22 05:02:47 +000010751 // Create the return statement that returns the block from the conversion
10752 // function.
Nick Lewyckyd78f92f2014-05-03 00:41:18 +000010753 StmtResult Return = BuildReturnStmt(Conv->getLocation(), BuildBlock.get());
Douglas Gregored90df32012-02-22 05:02:47 +000010754 if (Return.isInvalid()) {
10755 Diag(CurrentLocation, diag::note_lambda_to_block_conv);
10756 Conv->setInvalidDecl();
10757 return;
10758 }
10759
10760 // Set the body of the conversion function.
Nikola Smiljanic01a75982014-05-29 10:55:11 +000010761 Stmt *ReturnS = Return.get();
Nico Webera2a0eb92012-12-29 20:03:39 +000010762 Conv->setBody(new (Context) CompoundStmt(Context, ReturnS,
Douglas Gregored90df32012-02-22 05:02:47 +000010763 Conv->getLocation(),
Douglas Gregord3b672c2012-02-16 01:06:16 +000010764 Conv->getLocation()));
10765
Douglas Gregored90df32012-02-22 05:02:47 +000010766 // We're done; notify the mutation listener, if any.
Douglas Gregord3b672c2012-02-16 01:06:16 +000010767 if (ASTMutationListener *L = getASTMutationListener()) {
10768 L->CompletedImplicitDefinition(Conv);
10769 }
10770}
10771
Douglas Gregord2f70072012-03-10 06:53:13 +000010772/// \brief Determine whether the given list arguments contains exactly one
10773/// "real" (non-default) argument.
10774static bool hasOneRealArgument(MultiExprArg Args) {
10775 switch (Args.size()) {
10776 case 0:
10777 return false;
10778
10779 default:
Benjamin Kramer62b95d82012-08-23 21:35:17 +000010780 if (!Args[1]->isDefaultArgument())
Douglas Gregord2f70072012-03-10 06:53:13 +000010781 return false;
10782
10783 // fall through
10784 case 1:
Benjamin Kramer62b95d82012-08-23 21:35:17 +000010785 return !Args[0]->isDefaultArgument();
Douglas Gregord2f70072012-03-10 06:53:13 +000010786 }
10787
10788 return false;
10789}
10790
John McCalldadc5752010-08-24 06:29:42 +000010791ExprResult
Anders Carlsson1b4ebfa2009-09-05 07:40:38 +000010792Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
Mike Stump11289f42009-09-09 15:08:12 +000010793 CXXConstructorDecl *Constructor,
Douglas Gregor4f4b1862009-12-16 18:50:27 +000010794 MultiExprArg ExprArgs,
Abramo Bagnara635ed24e2011-10-05 07:56:41 +000010795 bool HadMultipleCandidates,
Richard Smithd59b8322012-12-19 01:39:02 +000010796 bool IsListInitialization,
Richard Smithf8adcdc2014-07-17 05:12:35 +000010797 bool IsStdInitListInitialization,
Douglas Gregor7ae2d772010-01-31 09:12:51 +000010798 bool RequiresZeroInit,
Chandler Carruth01718152010-10-25 08:47:36 +000010799 unsigned ConstructKind,
10800 SourceRange ParenRange) {
Anders Carlsson250aada2009-08-16 05:13:48 +000010801 bool Elidable = false;
Mike Stump11289f42009-09-09 15:08:12 +000010802
Douglas Gregor45cf7e32010-04-02 18:24:57 +000010803 // C++0x [class.copy]p34:
10804 // When certain criteria are met, an implementation is allowed to
10805 // omit the copy/move construction of a class object, even if the
10806 // copy/move constructor and/or destructor for the object have
10807 // side effects. [...]
10808 // - when a temporary class object that has not been bound to a
10809 // reference (12.2) would be copied/moved to a class object
10810 // with the same cv-unqualified type, the copy/move operation
10811 // can be omitted by constructing the temporary object
10812 // directly into the target of the omitted copy/move
John McCall7a626f62010-09-15 10:14:12 +000010813 if (ConstructKind == CXXConstructExpr::CK_Complete &&
Douglas Gregord2f70072012-03-10 06:53:13 +000010814 Constructor->isCopyOrMoveConstructor() && hasOneRealArgument(ExprArgs)) {
Benjamin Kramercc4c49d2012-08-23 23:38:35 +000010815 Expr *SubExpr = ExprArgs[0];
John McCall7a626f62010-09-15 10:14:12 +000010816 Elidable = SubExpr->isTemporaryObject(Context, Constructor->getParent());
Anders Carlsson250aada2009-08-16 05:13:48 +000010817 }
Mike Stump11289f42009-09-09 15:08:12 +000010818
10819 return BuildCXXConstructExpr(ConstructLoc, DeclInitType, Constructor,
Benjamin Kramer62b95d82012-08-23 21:35:17 +000010820 Elidable, ExprArgs, HadMultipleCandidates,
Richard Smithf8adcdc2014-07-17 05:12:35 +000010821 IsListInitialization,
10822 IsStdInitListInitialization, RequiresZeroInit,
Richard Smithd59b8322012-12-19 01:39:02 +000010823 ConstructKind, ParenRange);
Anders Carlsson250aada2009-08-16 05:13:48 +000010824}
10825
Fariborz Jahanianaa890bf2009-08-05 17:03:54 +000010826/// BuildCXXConstructExpr - Creates a complete call to a constructor,
10827/// including handling of its default argument expressions.
John McCalldadc5752010-08-24 06:29:42 +000010828ExprResult
Anders Carlsson1b4ebfa2009-09-05 07:40:38 +000010829Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
10830 CXXConstructorDecl *Constructor, bool Elidable,
Douglas Gregor4f4b1862009-12-16 18:50:27 +000010831 MultiExprArg ExprArgs,
Abramo Bagnara635ed24e2011-10-05 07:56:41 +000010832 bool HadMultipleCandidates,
Richard Smithd59b8322012-12-19 01:39:02 +000010833 bool IsListInitialization,
Richard Smithf8adcdc2014-07-17 05:12:35 +000010834 bool IsStdInitListInitialization,
Douglas Gregor7ae2d772010-01-31 09:12:51 +000010835 bool RequiresZeroInit,
Chandler Carruth01718152010-10-25 08:47:36 +000010836 unsigned ConstructKind,
10837 SourceRange ParenRange) {
Eli Friedmanfa0df832012-02-02 03:46:19 +000010838 MarkFunctionReferenced(ConstructLoc, Constructor);
Nikola Smiljanic03ff2592014-05-29 14:05:12 +000010839 return CXXConstructExpr::Create(
10840 Context, DeclInitType, ConstructLoc, Constructor, Elidable, ExprArgs,
Richard Smithf8adcdc2014-07-17 05:12:35 +000010841 HadMultipleCandidates, IsListInitialization, IsStdInitListInitialization,
10842 RequiresZeroInit,
Nikola Smiljanic03ff2592014-05-29 14:05:12 +000010843 static_cast<CXXConstructExpr::ConstructionKind>(ConstructKind),
10844 ParenRange);
Fariborz Jahanianaa890bf2009-08-05 17:03:54 +000010845}
10846
John McCall03c48482010-02-02 09:10:11 +000010847void Sema::FinalizeVarWithDestructor(VarDecl *VD, const RecordType *Record) {
Chandler Carruth86d17d32011-03-27 21:26:48 +000010848 if (VD->isInvalidDecl()) return;
10849
John McCall03c48482010-02-02 09:10:11 +000010850 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Record->getDecl());
Chandler Carruth86d17d32011-03-27 21:26:48 +000010851 if (ClassDecl->isInvalidDecl()) return;
Richard Smitheec915d62012-02-18 04:13:32 +000010852 if (ClassDecl->hasIrrelevantDestructor()) return;
Chandler Carruth86d17d32011-03-27 21:26:48 +000010853 if (ClassDecl->isDependentContext()) return;
John McCall47e40932010-08-01 20:20:59 +000010854
Chandler Carruth86d17d32011-03-27 21:26:48 +000010855 CXXDestructorDecl *Destructor = LookupDestructor(ClassDecl);
Eli Friedmanfa0df832012-02-02 03:46:19 +000010856 MarkFunctionReferenced(VD->getLocation(), Destructor);
Chandler Carruth86d17d32011-03-27 21:26:48 +000010857 CheckDestructorAccess(VD->getLocation(), Destructor,
10858 PDiag(diag::err_access_dtor_var)
10859 << VD->getDeclName()
10860 << VD->getType());
Richard Smitheec915d62012-02-18 04:13:32 +000010861 DiagnoseUseOfDecl(Destructor, VD->getLocation());
Anders Carlsson98766db2011-03-24 01:01:41 +000010862
Stephan Tolksdorf5604a272014-03-27 20:23:36 +000010863 if (Destructor->isTrivial()) return;
Chandler Carruth86d17d32011-03-27 21:26:48 +000010864 if (!VD->hasGlobalStorage()) return;
10865
10866 // Emit warning for non-trivial dtor in global scope (a real global,
10867 // class-static, function-static).
10868 Diag(VD->getLocation(), diag::warn_exit_time_destructor);
10869
10870 // TODO: this should be re-enabled for static locals by !CXAAtExit
Stephan Tolksdorf5604a272014-03-27 20:23:36 +000010871 if (!VD->isStaticLocal())
Chandler Carruth86d17d32011-03-27 21:26:48 +000010872 Diag(VD->getLocation(), diag::warn_global_destructor);
Fariborz Jahanian24a175b2009-06-26 23:49:16 +000010873}
10874
Douglas Gregor5d3507d2009-09-09 23:08:42 +000010875/// \brief Given a constructor and the set of arguments provided for the
10876/// constructor, convert the arguments and add any required default arguments
10877/// to form a proper call to this constructor.
10878///
10879/// \returns true if an error occurred, false otherwise.
10880bool
10881Sema::CompleteConstructorCall(CXXConstructorDecl *Constructor,
10882 MultiExprArg ArgsPtr,
Richard Smith55ce3522012-06-25 20:30:08 +000010883 SourceLocation Loc,
Benjamin Kramerf0623432012-08-23 22:51:59 +000010884 SmallVectorImpl<Expr*> &ConvertedArgs,
Richard Smith6b216962013-02-05 05:52:24 +000010885 bool AllowExplicit,
10886 bool IsListInitialization) {
Douglas Gregor5d3507d2009-09-09 23:08:42 +000010887 // FIXME: This duplicates a lot of code from Sema::ConvertArgumentsForCall.
10888 unsigned NumArgs = ArgsPtr.size();
Benjamin Kramercc4c49d2012-08-23 23:38:35 +000010889 Expr **Args = ArgsPtr.data();
Douglas Gregor5d3507d2009-09-09 23:08:42 +000010890
10891 const FunctionProtoType *Proto
10892 = Constructor->getType()->getAs<FunctionProtoType>();
10893 assert(Proto && "Constructor without a prototype?");
Alp Tokerb3fd5cf2014-01-21 00:32:38 +000010894 unsigned NumParams = Proto->getNumParams();
Alp Toker9cacbab2014-01-20 20:26:09 +000010895
Douglas Gregor5d3507d2009-09-09 23:08:42 +000010896 // If too few arguments are available, we'll fill in the rest with defaults.
Alp Tokerb3fd5cf2014-01-21 00:32:38 +000010897 if (NumArgs < NumParams)
10898 ConvertedArgs.reserve(NumParams);
Fariborz Jahanian4fa66ce2009-11-24 21:37:28 +000010899 else
Douglas Gregor5d3507d2009-09-09 23:08:42 +000010900 ConvertedArgs.reserve(NumArgs);
Fariborz Jahanian4fa66ce2009-11-24 21:37:28 +000010901
10902 VariadicCallType CallType =
10903 Proto->isVariadic() ? VariadicConstructor : VariadicDoesNotApply;
Chris Lattner0e62c1c2011-07-23 10:55:15 +000010904 SmallVector<Expr *, 8> AllArgs;
Fariborz Jahanian4fa66ce2009-11-24 21:37:28 +000010905 bool Invalid = GatherArgumentsForCall(Loc, Constructor,
Dmitri Gribenko9c785c22013-05-09 21:02:07 +000010906 Proto, 0,
10907 llvm::makeArrayRef(Args, NumArgs),
10908 AllArgs,
Richard Smith6b216962013-02-05 05:52:24 +000010909 CallType, AllowExplicit,
10910 IsListInitialization);
Benjamin Kramer8001f742012-02-14 12:06:21 +000010911 ConvertedArgs.append(AllArgs.begin(), AllArgs.end());
Eli Friedmanff4b4072012-02-18 04:48:30 +000010912
Dmitri Gribenko9c785c22013-05-09 21:02:07 +000010913 DiagnoseSentinelCalls(Constructor, Loc, AllArgs);
Eli Friedmanff4b4072012-02-18 04:48:30 +000010914
Dmitri Gribenko765396f2013-01-13 20:46:02 +000010915 CheckConstructorCall(Constructor,
10916 llvm::makeArrayRef<const Expr *>(AllArgs.data(),
10917 AllArgs.size()),
Richard Smith55ce3522012-06-25 20:30:08 +000010918 Proto, Loc);
Eli Friedmanff4b4072012-02-18 04:48:30 +000010919
Fariborz Jahanian4fa66ce2009-11-24 21:37:28 +000010920 return Invalid;
Douglas Gregorc28b57d2008-11-03 20:45:27 +000010921}
10922
Anders Carlssone363c8e2009-12-12 00:32:00 +000010923static inline bool
10924CheckOperatorNewDeleteDeclarationScope(Sema &SemaRef,
10925 const FunctionDecl *FnDecl) {
Sebastian Redl50c68252010-08-31 00:36:30 +000010926 const DeclContext *DC = FnDecl->getDeclContext()->getRedeclContext();
Anders Carlssone363c8e2009-12-12 00:32:00 +000010927 if (isa<NamespaceDecl>(DC)) {
10928 return SemaRef.Diag(FnDecl->getLocation(),
10929 diag::err_operator_new_delete_declared_in_namespace)
10930 << FnDecl->getDeclName();
10931 }
10932
10933 if (isa<TranslationUnitDecl>(DC) &&
John McCall8e7d6562010-08-26 03:08:43 +000010934 FnDecl->getStorageClass() == SC_Static) {
Anders Carlssone363c8e2009-12-12 00:32:00 +000010935 return SemaRef.Diag(FnDecl->getLocation(),
10936 diag::err_operator_new_delete_declared_static)
10937 << FnDecl->getDeclName();
10938 }
10939
Anders Carlsson60659a82009-12-12 02:43:16 +000010940 return false;
Anders Carlssone363c8e2009-12-12 00:32:00 +000010941}
10942
Anders Carlsson7e0b2072009-12-13 17:53:43 +000010943static inline bool
10944CheckOperatorNewDeleteTypes(Sema &SemaRef, const FunctionDecl *FnDecl,
10945 CanQualType ExpectedResultType,
10946 CanQualType ExpectedFirstParamType,
10947 unsigned DependentParamTypeDiag,
10948 unsigned InvalidParamTypeDiag) {
Alp Toker314cc812014-01-25 16:55:45 +000010949 QualType ResultType =
10950 FnDecl->getType()->getAs<FunctionType>()->getReturnType();
Anders Carlsson7e0b2072009-12-13 17:53:43 +000010951
10952 // Check that the result type is not dependent.
10953 if (ResultType->isDependentType())
10954 return SemaRef.Diag(FnDecl->getLocation(),
10955 diag::err_operator_new_delete_dependent_result_type)
10956 << FnDecl->getDeclName() << ExpectedResultType;
10957
10958 // Check that the result type is what we expect.
10959 if (SemaRef.Context.getCanonicalType(ResultType) != ExpectedResultType)
10960 return SemaRef.Diag(FnDecl->getLocation(),
10961 diag::err_operator_new_delete_invalid_result_type)
10962 << FnDecl->getDeclName() << ExpectedResultType;
10963
10964 // A function template must have at least 2 parameters.
10965 if (FnDecl->getDescribedFunctionTemplate() && FnDecl->getNumParams() < 2)
10966 return SemaRef.Diag(FnDecl->getLocation(),
10967 diag::err_operator_new_delete_template_too_few_parameters)
10968 << FnDecl->getDeclName();
10969
10970 // The function decl must have at least 1 parameter.
10971 if (FnDecl->getNumParams() == 0)
10972 return SemaRef.Diag(FnDecl->getLocation(),
10973 diag::err_operator_new_delete_too_few_parameters)
10974 << FnDecl->getDeclName();
10975
Sylvestre Ledru830885c2012-07-23 08:59:39 +000010976 // Check the first parameter type is not dependent.
Anders Carlsson7e0b2072009-12-13 17:53:43 +000010977 QualType FirstParamType = FnDecl->getParamDecl(0)->getType();
10978 if (FirstParamType->isDependentType())
10979 return SemaRef.Diag(FnDecl->getLocation(), DependentParamTypeDiag)
10980 << FnDecl->getDeclName() << ExpectedFirstParamType;
10981
10982 // Check that the first parameter type is what we expect.
Douglas Gregor684d7bd2009-12-22 23:42:49 +000010983 if (SemaRef.Context.getCanonicalType(FirstParamType).getUnqualifiedType() !=
Anders Carlsson7e0b2072009-12-13 17:53:43 +000010984 ExpectedFirstParamType)
10985 return SemaRef.Diag(FnDecl->getLocation(), InvalidParamTypeDiag)
10986 << FnDecl->getDeclName() << ExpectedFirstParamType;
10987
10988 return false;
10989}
10990
Anders Carlsson12308f42009-12-11 23:23:22 +000010991static bool
Anders Carlsson7e0b2072009-12-13 17:53:43 +000010992CheckOperatorNewDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) {
Anders Carlssone363c8e2009-12-12 00:32:00 +000010993 // C++ [basic.stc.dynamic.allocation]p1:
10994 // A program is ill-formed if an allocation function is declared in a
10995 // namespace scope other than global scope or declared static in global
10996 // scope.
10997 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
10998 return true;
Anders Carlsson7e0b2072009-12-13 17:53:43 +000010999
11000 CanQualType SizeTy =
11001 SemaRef.Context.getCanonicalType(SemaRef.Context.getSizeType());
11002
11003 // C++ [basic.stc.dynamic.allocation]p1:
11004 // The return type shall be void*. The first parameter shall have type
11005 // std::size_t.
11006 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidPtrTy,
11007 SizeTy,
11008 diag::err_operator_new_dependent_param_type,
11009 diag::err_operator_new_param_type))
11010 return true;
11011
11012 // C++ [basic.stc.dynamic.allocation]p1:
11013 // The first parameter shall not have an associated default argument.
11014 if (FnDecl->getParamDecl(0)->hasDefaultArg())
Anders Carlsson22f443f2009-12-12 00:26:23 +000011015 return SemaRef.Diag(FnDecl->getLocation(),
Anders Carlsson7e0b2072009-12-13 17:53:43 +000011016 diag::err_operator_new_default_arg)
11017 << FnDecl->getDeclName() << FnDecl->getParamDecl(0)->getDefaultArgRange();
11018
11019 return false;
Anders Carlsson22f443f2009-12-12 00:26:23 +000011020}
11021
11022static bool
Richard Smith66f3ac92012-10-20 08:26:51 +000011023CheckOperatorDeleteDeclaration(Sema &SemaRef, FunctionDecl *FnDecl) {
Anders Carlsson12308f42009-12-11 23:23:22 +000011024 // C++ [basic.stc.dynamic.deallocation]p1:
11025 // A program is ill-formed if deallocation functions are declared in a
11026 // namespace scope other than global scope or declared static in global
11027 // scope.
Anders Carlssone363c8e2009-12-12 00:32:00 +000011028 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl))
11029 return true;
Anders Carlsson12308f42009-12-11 23:23:22 +000011030
11031 // C++ [basic.stc.dynamic.deallocation]p2:
11032 // Each deallocation function shall return void and its first parameter
11033 // shall be void*.
Anders Carlsson7e0b2072009-12-13 17:53:43 +000011034 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidTy,
11035 SemaRef.Context.VoidPtrTy,
11036 diag::err_operator_delete_dependent_param_type,
11037 diag::err_operator_delete_param_type))
11038 return true;
Anders Carlsson12308f42009-12-11 23:23:22 +000011039
Anders Carlsson12308f42009-12-11 23:23:22 +000011040 return false;
11041}
11042
Douglas Gregor11d0c4c2008-11-06 22:13:31 +000011043/// CheckOverloadedOperatorDeclaration - Check whether the declaration
11044/// of this overloaded operator is well-formed. If so, returns false;
11045/// otherwise, emits appropriate diagnostics and returns true.
11046bool Sema::CheckOverloadedOperatorDeclaration(FunctionDecl *FnDecl) {
Douglas Gregord69246b2008-11-17 16:14:12 +000011047 assert(FnDecl && FnDecl->isOverloadedOperator() &&
Douglas Gregor11d0c4c2008-11-06 22:13:31 +000011048 "Expected an overloaded operator declaration");
11049
Douglas Gregor11d0c4c2008-11-06 22:13:31 +000011050 OverloadedOperatorKind Op = FnDecl->getOverloadedOperator();
11051
Mike Stump11289f42009-09-09 15:08:12 +000011052 // C++ [over.oper]p5:
Douglas Gregor11d0c4c2008-11-06 22:13:31 +000011053 // The allocation and deallocation functions, operator new,
11054 // operator new[], operator delete and operator delete[], are
11055 // described completely in 3.7.3. The attributes and restrictions
11056 // found in the rest of this subclause do not apply to them unless
11057 // explicitly stated in 3.7.3.
Anders Carlssonf1f46952009-12-11 23:31:21 +000011058 if (Op == OO_Delete || Op == OO_Array_Delete)
Anders Carlsson12308f42009-12-11 23:23:22 +000011059 return CheckOperatorDeleteDeclaration(*this, FnDecl);
Fariborz Jahanian4e088942009-11-10 23:47:18 +000011060
Anders Carlsson22f443f2009-12-12 00:26:23 +000011061 if (Op == OO_New || Op == OO_Array_New)
11062 return CheckOperatorNewDeclaration(*this, FnDecl);
Douglas Gregor11d0c4c2008-11-06 22:13:31 +000011063
11064 // C++ [over.oper]p6:
11065 // An operator function shall either be a non-static member
11066 // function or be a non-member function and have at least one
11067 // parameter whose type is a class, a reference to a class, an
11068 // enumeration, or a reference to an enumeration.
Douglas Gregord69246b2008-11-17 16:14:12 +000011069 if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(FnDecl)) {
11070 if (MethodDecl->isStatic())
11071 return Diag(FnDecl->getLocation(),
Chris Lattnerf3d3fae2008-11-24 05:29:24 +000011072 diag::err_operator_overload_static) << FnDecl->getDeclName();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +000011073 } else {
11074 bool ClassOrEnumParam = false;
Aaron Ballmanf6bf62e2014-03-07 15:12:56 +000011075 for (auto Param : FnDecl->params()) {
11076 QualType ParamType = Param->getType().getNonReferenceType();
Eli Friedman173e0b7a2009-06-27 05:59:59 +000011077 if (ParamType->isDependentType() || ParamType->isRecordType() ||
11078 ParamType->isEnumeralType()) {
Douglas Gregor11d0c4c2008-11-06 22:13:31 +000011079 ClassOrEnumParam = true;
11080 break;
11081 }
11082 }
11083
Douglas Gregord69246b2008-11-17 16:14:12 +000011084 if (!ClassOrEnumParam)
11085 return Diag(FnDecl->getLocation(),
Chris Lattner651d42d2008-11-20 06:38:18 +000011086 diag::err_operator_overload_needs_class_or_enum)
Chris Lattnerf3d3fae2008-11-24 05:29:24 +000011087 << FnDecl->getDeclName();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +000011088 }
11089
11090 // C++ [over.oper]p8:
11091 // An operator function cannot have default arguments (8.3.6),
11092 // except where explicitly stated below.
11093 //
Mike Stump11289f42009-09-09 15:08:12 +000011094 // Only the function-call operator allows default arguments
Douglas Gregor11d0c4c2008-11-06 22:13:31 +000011095 // (C++ [over.call]p1).
11096 if (Op != OO_Call) {
Aaron Ballmanf6bf62e2014-03-07 15:12:56 +000011097 for (auto Param : FnDecl->params()) {
11098 if (Param->hasDefaultArg())
11099 return Diag(Param->getLocation(),
Douglas Gregor58354032008-12-24 00:01:03 +000011100 diag::err_operator_overload_default_arg)
Aaron Ballmanf6bf62e2014-03-07 15:12:56 +000011101 << FnDecl->getDeclName() << Param->getDefaultArgRange();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +000011102 }
11103 }
11104
Douglas Gregor6cf08062008-11-10 13:38:07 +000011105 static const bool OperatorUses[NUM_OVERLOADED_OPERATORS][3] = {
11106 { false, false, false }
11107#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
11108 , { Unary, Binary, MemberOnly }
11109#include "clang/Basic/OperatorKinds.def"
11110 };
Douglas Gregor11d0c4c2008-11-06 22:13:31 +000011111
Douglas Gregor6cf08062008-11-10 13:38:07 +000011112 bool CanBeUnaryOperator = OperatorUses[Op][0];
11113 bool CanBeBinaryOperator = OperatorUses[Op][1];
11114 bool MustBeMemberOperator = OperatorUses[Op][2];
Douglas Gregor11d0c4c2008-11-06 22:13:31 +000011115
11116 // C++ [over.oper]p8:
11117 // [...] Operator functions cannot have more or fewer parameters
11118 // than the number required for the corresponding operator, as
11119 // described in the rest of this subclause.
Mike Stump11289f42009-09-09 15:08:12 +000011120 unsigned NumParams = FnDecl->getNumParams()
Douglas Gregord69246b2008-11-17 16:14:12 +000011121 + (isa<CXXMethodDecl>(FnDecl)? 1 : 0);
Douglas Gregor11d0c4c2008-11-06 22:13:31 +000011122 if (Op != OO_Call &&
11123 ((NumParams == 1 && !CanBeUnaryOperator) ||
11124 (NumParams == 2 && !CanBeBinaryOperator) ||
11125 (NumParams < 1) || (NumParams > 2))) {
11126 // We have the wrong number of parameters.
Chris Lattnerc5bab9f2008-11-21 07:57:12 +000011127 unsigned ErrorKind;
Douglas Gregor6cf08062008-11-10 13:38:07 +000011128 if (CanBeUnaryOperator && CanBeBinaryOperator) {
Chris Lattnerc5bab9f2008-11-21 07:57:12 +000011129 ErrorKind = 2; // 2 -> unary or binary.
Douglas Gregor6cf08062008-11-10 13:38:07 +000011130 } else if (CanBeUnaryOperator) {
Chris Lattnerc5bab9f2008-11-21 07:57:12 +000011131 ErrorKind = 0; // 0 -> unary
Douglas Gregor6cf08062008-11-10 13:38:07 +000011132 } else {
Chris Lattner2b786902008-11-21 07:50:02 +000011133 assert(CanBeBinaryOperator &&
11134 "All non-call overloaded operators are unary or binary!");
Chris Lattnerc5bab9f2008-11-21 07:57:12 +000011135 ErrorKind = 1; // 1 -> binary
Douglas Gregor6cf08062008-11-10 13:38:07 +000011136 }
Douglas Gregor11d0c4c2008-11-06 22:13:31 +000011137
Chris Lattnerc5bab9f2008-11-21 07:57:12 +000011138 return Diag(FnDecl->getLocation(), diag::err_operator_overload_must_be)
Chris Lattnerf3d3fae2008-11-24 05:29:24 +000011139 << FnDecl->getDeclName() << NumParams << ErrorKind;
Douglas Gregor11d0c4c2008-11-06 22:13:31 +000011140 }
Sebastian Redlbaad4e72009-01-05 20:52:13 +000011141
Douglas Gregord69246b2008-11-17 16:14:12 +000011142 // Overloaded operators other than operator() cannot be variadic.
11143 if (Op != OO_Call &&
John McCall9dd450b2009-09-21 23:43:11 +000011144 FnDecl->getType()->getAs<FunctionProtoType>()->isVariadic()) {
Chris Lattner651d42d2008-11-20 06:38:18 +000011145 return Diag(FnDecl->getLocation(), diag::err_operator_overload_variadic)
Chris Lattnerf3d3fae2008-11-24 05:29:24 +000011146 << FnDecl->getDeclName();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +000011147 }
11148
11149 // Some operators must be non-static member functions.
Douglas Gregord69246b2008-11-17 16:14:12 +000011150 if (MustBeMemberOperator && !isa<CXXMethodDecl>(FnDecl)) {
11151 return Diag(FnDecl->getLocation(),
Chris Lattner651d42d2008-11-20 06:38:18 +000011152 diag::err_operator_overload_must_be_member)
Chris Lattnerf3d3fae2008-11-24 05:29:24 +000011153 << FnDecl->getDeclName();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +000011154 }
11155
11156 // C++ [over.inc]p1:
11157 // The user-defined function called operator++ implements the
11158 // prefix and postfix ++ operator. If this function is a member
11159 // function with no parameters, or a non-member function with one
11160 // parameter of class or enumeration type, it defines the prefix
11161 // increment operator ++ for objects of that type. If the function
11162 // is a member function with one parameter (which shall be of type
11163 // int) or a non-member function with two parameters (the second
11164 // of which shall be of type int), it defines the postfix
11165 // increment operator ++ for objects of that type.
11166 if ((Op == OO_PlusPlus || Op == OO_MinusMinus) && NumParams == 2) {
11167 ParmVarDecl *LastParam = FnDecl->getParamDecl(FnDecl->getNumParams() - 1);
Richard Smith538b52a2014-01-30 22:24:05 +000011168 QualType ParamType = LastParam->getType();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +000011169
Richard Smith538b52a2014-01-30 22:24:05 +000011170 if (!ParamType->isSpecificBuiltinType(BuiltinType::Int) &&
11171 !ParamType->isDependentType())
Chris Lattner2b786902008-11-21 07:50:02 +000011172 return Diag(LastParam->getLocation(),
Mike Stump11289f42009-09-09 15:08:12 +000011173 diag::err_operator_overload_post_incdec_must_be_int)
Chris Lattner1e5665e2008-11-24 06:25:27 +000011174 << LastParam->getType() << (Op == OO_MinusMinus);
Douglas Gregor11d0c4c2008-11-06 22:13:31 +000011175 }
11176
Douglas Gregord69246b2008-11-17 16:14:12 +000011177 return false;
Douglas Gregor11d0c4c2008-11-06 22:13:31 +000011178}
Chris Lattner3b024a32008-12-17 07:09:26 +000011179
Alexis Huntc88db062010-01-13 09:01:02 +000011180/// CheckLiteralOperatorDeclaration - Check whether the declaration
11181/// of this literal operator function is well-formed. If so, returns
11182/// false; otherwise, emits appropriate diagnostics and returns true.
11183bool Sema::CheckLiteralOperatorDeclaration(FunctionDecl *FnDecl) {
Richard Smith5731c752012-03-10 22:18:57 +000011184 if (isa<CXXMethodDecl>(FnDecl)) {
Alexis Huntc88db062010-01-13 09:01:02 +000011185 Diag(FnDecl->getLocation(), diag::err_literal_operator_outside_namespace)
11186 << FnDecl->getDeclName();
11187 return true;
11188 }
11189
Richard Smith72eebee2012-03-04 09:41:16 +000011190 if (FnDecl->isExternC()) {
11191 Diag(FnDecl->getLocation(), diag::err_literal_operator_extern_c);
11192 return true;
11193 }
11194
Alexis Huntc88db062010-01-13 09:01:02 +000011195 bool Valid = false;
11196
Richard Smithbcc22fc2012-03-09 08:00:36 +000011197 // This might be the definition of a literal operator template.
11198 FunctionTemplateDecl *TpDecl = FnDecl->getDescribedFunctionTemplate();
11199 // This might be a specialization of a literal operator template.
11200 if (!TpDecl)
11201 TpDecl = FnDecl->getPrimaryTemplate();
11202
Richard Smithb8b41d32013-10-07 19:57:58 +000011203 // template <char...> type operator "" name() and
11204 // template <class T, T...> type operator "" name() are the only valid
11205 // template signatures, and the only valid signatures with no parameters.
Richard Smithbcc22fc2012-03-09 08:00:36 +000011206 if (TpDecl) {
Richard Smith72eebee2012-03-04 09:41:16 +000011207 if (FnDecl->param_size() == 0) {
Richard Smithb8b41d32013-10-07 19:57:58 +000011208 // Must have one or two template parameters
Alexis Hunt7dd26172010-04-07 23:11:06 +000011209 TemplateParameterList *Params = TpDecl->getTemplateParameters();
11210 if (Params->size() == 1) {
11211 NonTypeTemplateParmDecl *PmDecl =
Richard Smithed943022012-08-03 21:14:57 +000011212 dyn_cast<NonTypeTemplateParmDecl>(Params->getParam(0));
Alexis Huntc88db062010-01-13 09:01:02 +000011213
Alexis Hunt7dd26172010-04-07 23:11:06 +000011214 // The template parameter must be a char parameter pack.
Alexis Hunt7dd26172010-04-07 23:11:06 +000011215 if (PmDecl && PmDecl->isTemplateParameterPack() &&
11216 Context.hasSameType(PmDecl->getType(), Context.CharTy))
11217 Valid = true;
Richard Smithb8b41d32013-10-07 19:57:58 +000011218 } else if (Params->size() == 2) {
11219 TemplateTypeParmDecl *PmType =
11220 dyn_cast<TemplateTypeParmDecl>(Params->getParam(0));
11221 NonTypeTemplateParmDecl *PmArgs =
11222 dyn_cast<NonTypeTemplateParmDecl>(Params->getParam(1));
11223
11224 // The second template parameter must be a parameter pack with the
11225 // first template parameter as its type.
11226 if (PmType && PmArgs &&
11227 !PmType->isTemplateParameterPack() &&
11228 PmArgs->isTemplateParameterPack()) {
11229 const TemplateTypeParmType *TArgs =
11230 PmArgs->getType()->getAs<TemplateTypeParmType>();
11231 if (TArgs && TArgs->getDepth() == PmType->getDepth() &&
11232 TArgs->getIndex() == PmType->getIndex()) {
11233 Valid = true;
11234 if (ActiveTemplateInstantiations.empty())
11235 Diag(FnDecl->getLocation(),
11236 diag::ext_string_literal_operator_template);
11237 }
11238 }
Alexis Hunt7dd26172010-04-07 23:11:06 +000011239 }
11240 }
Richard Smith72eebee2012-03-04 09:41:16 +000011241 } else if (FnDecl->param_size()) {
Alexis Huntc88db062010-01-13 09:01:02 +000011242 // Check the first parameter
Alexis Hunt7dd26172010-04-07 23:11:06 +000011243 FunctionDecl::param_iterator Param = FnDecl->param_begin();
11244
Richard Smith72eebee2012-03-04 09:41:16 +000011245 QualType T = (*Param)->getType().getUnqualifiedType();
Alexis Huntc88db062010-01-13 09:01:02 +000011246
Alexis Hunt079a6f72010-04-07 22:57:35 +000011247 // unsigned long long int, long double, and any character type are allowed
11248 // as the only parameters.
Alexis Huntc88db062010-01-13 09:01:02 +000011249 if (Context.hasSameType(T, Context.UnsignedLongLongTy) ||
11250 Context.hasSameType(T, Context.LongDoubleTy) ||
11251 Context.hasSameType(T, Context.CharTy) ||
Hans Wennborg0d81e012013-05-10 10:08:40 +000011252 Context.hasSameType(T, Context.WideCharTy) ||
Alexis Huntc88db062010-01-13 09:01:02 +000011253 Context.hasSameType(T, Context.Char16Ty) ||
11254 Context.hasSameType(T, Context.Char32Ty)) {
11255 if (++Param == FnDecl->param_end())
11256 Valid = true;
11257 goto FinishedParams;
11258 }
11259
Alexis Hunt079a6f72010-04-07 22:57:35 +000011260 // Otherwise it must be a pointer to const; let's strip those qualifiers.
Alexis Huntc88db062010-01-13 09:01:02 +000011261 const PointerType *PT = T->getAs<PointerType>();
11262 if (!PT)
11263 goto FinishedParams;
11264 T = PT->getPointeeType();
Richard Smith72eebee2012-03-04 09:41:16 +000011265 if (!T.isConstQualified() || T.isVolatileQualified())
Alexis Huntc88db062010-01-13 09:01:02 +000011266 goto FinishedParams;
11267 T = T.getUnqualifiedType();
11268
11269 // Move on to the second parameter;
11270 ++Param;
11271
11272 // If there is no second parameter, the first must be a const char *
11273 if (Param == FnDecl->param_end()) {
11274 if (Context.hasSameType(T, Context.CharTy))
11275 Valid = true;
11276 goto FinishedParams;
11277 }
11278
11279 // const char *, const wchar_t*, const char16_t*, and const char32_t*
11280 // are allowed as the first parameter to a two-parameter function
11281 if (!(Context.hasSameType(T, Context.CharTy) ||
Hans Wennborg0d81e012013-05-10 10:08:40 +000011282 Context.hasSameType(T, Context.WideCharTy) ||
Alexis Huntc88db062010-01-13 09:01:02 +000011283 Context.hasSameType(T, Context.Char16Ty) ||
11284 Context.hasSameType(T, Context.Char32Ty)))
11285 goto FinishedParams;
11286
11287 // The second and final parameter must be an std::size_t
11288 T = (*Param)->getType().getUnqualifiedType();
11289 if (Context.hasSameType(T, Context.getSizeType()) &&
11290 ++Param == FnDecl->param_end())
11291 Valid = true;
11292 }
11293
11294 // FIXME: This diagnostic is absolutely terrible.
11295FinishedParams:
11296 if (!Valid) {
11297 Diag(FnDecl->getLocation(), diag::err_literal_operator_params)
11298 << FnDecl->getDeclName();
11299 return true;
11300 }
11301
Richard Smith768cecc2012-03-09 08:16:22 +000011302 // A parameter-declaration-clause containing a default argument is not
11303 // equivalent to any of the permitted forms.
Aaron Ballmanf6bf62e2014-03-07 15:12:56 +000011304 for (auto Param : FnDecl->params()) {
11305 if (Param->hasDefaultArg()) {
11306 Diag(Param->getDefaultArgRange().getBegin(),
Richard Smith768cecc2012-03-09 08:16:22 +000011307 diag::err_literal_operator_default_argument)
Aaron Ballmanf6bf62e2014-03-07 15:12:56 +000011308 << Param->getDefaultArgRange();
Richard Smith768cecc2012-03-09 08:16:22 +000011309 break;
11310 }
11311 }
11312
Richard Smith0df56f42012-03-08 02:39:21 +000011313 StringRef LiteralName
Douglas Gregor86325ad2011-08-30 22:40:35 +000011314 = FnDecl->getDeclName().getCXXLiteralIdentifier()->getName();
11315 if (LiteralName[0] != '_') {
Richard Smith0df56f42012-03-08 02:39:21 +000011316 // C++11 [usrlit.suffix]p1:
11317 // Literal suffix identifiers that do not start with an underscore
11318 // are reserved for future standardization.
Richard Smithf4198b72013-07-23 08:14:48 +000011319 Diag(FnDecl->getLocation(), diag::warn_user_literal_reserved)
11320 << NumericLiteralParser::isValidUDSuffix(getLangOpts(), LiteralName);
Douglas Gregor86325ad2011-08-30 22:40:35 +000011321 }
Richard Smith0df56f42012-03-08 02:39:21 +000011322
Alexis Huntc88db062010-01-13 09:01:02 +000011323 return false;
11324}
11325
Douglas Gregor07665a62009-01-05 19:45:36 +000011326/// ActOnStartLinkageSpecification - Parsed the beginning of a C++
11327/// linkage specification, including the language and (if present)
Richard Smith4ee696d2014-02-17 23:25:27 +000011328/// the '{'. ExternLoc is the location of the 'extern', Lang is the
11329/// language string literal. LBraceLoc, if valid, provides the location of
Douglas Gregor07665a62009-01-05 19:45:36 +000011330/// the '{' brace. Otherwise, this linkage specification does not
11331/// have any braces.
Chris Lattner8ea64422010-11-09 20:15:55 +000011332Decl *Sema::ActOnStartLinkageSpecification(Scope *S, SourceLocation ExternLoc,
Richard Smith4ee696d2014-02-17 23:25:27 +000011333 Expr *LangStr,
Chris Lattner8ea64422010-11-09 20:15:55 +000011334 SourceLocation LBraceLoc) {
Richard Smith4ee696d2014-02-17 23:25:27 +000011335 StringLiteral *Lit = cast<StringLiteral>(LangStr);
11336 if (!Lit->isAscii()) {
11337 Diag(LangStr->getExprLoc(), diag::err_language_linkage_spec_not_ascii)
11338 << LangStr->getSourceRange();
Craig Topperc3ec1492014-05-26 06:22:03 +000011339 return nullptr;
Richard Smith4ee696d2014-02-17 23:25:27 +000011340 }
11341
11342 StringRef Lang = Lit->getString();
Chris Lattner438e5012008-12-17 07:13:27 +000011343 LinkageSpecDecl::LanguageIDs Language;
Richard Smith4ee696d2014-02-17 23:25:27 +000011344 if (Lang == "C")
Chris Lattner438e5012008-12-17 07:13:27 +000011345 Language = LinkageSpecDecl::lang_c;
Richard Smith4ee696d2014-02-17 23:25:27 +000011346 else if (Lang == "C++")
Chris Lattner438e5012008-12-17 07:13:27 +000011347 Language = LinkageSpecDecl::lang_cxx;
11348 else {
Richard Smith4ee696d2014-02-17 23:25:27 +000011349 Diag(LangStr->getExprLoc(), diag::err_language_linkage_spec_unknown)
11350 << LangStr->getSourceRange();
Craig Topperc3ec1492014-05-26 06:22:03 +000011351 return nullptr;
Chris Lattner438e5012008-12-17 07:13:27 +000011352 }
Mike Stump11289f42009-09-09 15:08:12 +000011353
Chris Lattner438e5012008-12-17 07:13:27 +000011354 // FIXME: Add all the various semantics of linkage specifications
Mike Stump11289f42009-09-09 15:08:12 +000011355
Richard Smith4ee696d2014-02-17 23:25:27 +000011356 LinkageSpecDecl *D = LinkageSpecDecl::Create(Context, CurContext, ExternLoc,
11357 LangStr->getExprLoc(), Language,
Rafael Espindola327be3c2013-04-26 01:30:23 +000011358 LBraceLoc.isValid());
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +000011359 CurContext->addDecl(D);
Douglas Gregor07665a62009-01-05 19:45:36 +000011360 PushDeclContext(S, D);
John McCall48871652010-08-21 09:40:31 +000011361 return D;
Chris Lattner438e5012008-12-17 07:13:27 +000011362}
11363
Abramo Bagnaraed5b6892010-07-30 16:47:02 +000011364/// ActOnFinishLinkageSpecification - Complete the definition of
Douglas Gregor07665a62009-01-05 19:45:36 +000011365/// the C++ linkage specification LinkageSpec. If RBraceLoc is
11366/// valid, it's the position of the closing '}' brace in a linkage
11367/// specification that uses braces.
John McCall48871652010-08-21 09:40:31 +000011368Decl *Sema::ActOnFinishLinkageSpecification(Scope *S,
Abramo Bagnara4a8cda82011-03-03 14:52:38 +000011369 Decl *LinkageSpec,
11370 SourceLocation RBraceLoc) {
Richard Smith4ee696d2014-02-17 23:25:27 +000011371 if (RBraceLoc.isValid()) {
11372 LinkageSpecDecl* LSDecl = cast<LinkageSpecDecl>(LinkageSpec);
11373 LSDecl->setRBraceLoc(RBraceLoc);
Abramo Bagnara4a8cda82011-03-03 14:52:38 +000011374 }
Richard Smith4ee696d2014-02-17 23:25:27 +000011375 PopDeclContext();
Douglas Gregor07665a62009-01-05 19:45:36 +000011376 return LinkageSpec;
Chris Lattner3b024a32008-12-17 07:09:26 +000011377}
11378
Michael Han84324352013-02-22 17:15:32 +000011379Decl *Sema::ActOnEmptyDeclaration(Scope *S,
11380 AttributeList *AttrList,
11381 SourceLocation SemiLoc) {
11382 Decl *ED = EmptyDecl::Create(Context, CurContext, SemiLoc);
11383 // Attribute declarations appertain to empty declaration so we handle
11384 // them here.
11385 if (AttrList)
11386 ProcessDeclAttributeList(S, ED, AttrList);
Richard Smith54ecd982013-02-20 19:22:51 +000011387
Michael Han84324352013-02-22 17:15:32 +000011388 CurContext->addDecl(ED);
11389 return ED;
Richard Smith54ecd982013-02-20 19:22:51 +000011390}
11391
Douglas Gregor5e16fbe2009-05-18 20:51:54 +000011392/// \brief Perform semantic analysis for the variable declaration that
11393/// occurs within a C++ catch clause, returning the newly-created
11394/// variable.
Abramo Bagnaradff19302011-03-08 08:55:46 +000011395VarDecl *Sema::BuildExceptionDeclaration(Scope *S,
John McCallbcd03502009-12-07 02:54:59 +000011396 TypeSourceInfo *TInfo,
Abramo Bagnaradff19302011-03-08 08:55:46 +000011397 SourceLocation StartLoc,
11398 SourceLocation Loc,
11399 IdentifierInfo *Name) {
Douglas Gregor5e16fbe2009-05-18 20:51:54 +000011400 bool Invalid = false;
Douglas Gregor9f0e1aa2010-09-09 17:09:21 +000011401 QualType ExDeclType = TInfo->getType();
11402
Sebastian Redl54c04d42008-12-22 19:15:10 +000011403 // Arrays and functions decay.
11404 if (ExDeclType->isArrayType())
11405 ExDeclType = Context.getArrayDecayedType(ExDeclType);
11406 else if (ExDeclType->isFunctionType())
11407 ExDeclType = Context.getPointerType(ExDeclType);
11408
11409 // C++ 15.3p1: The exception-declaration shall not denote an incomplete type.
11410 // The exception-declaration shall not denote a pointer or reference to an
11411 // incomplete type, other than [cv] void*.
Sebastian Redlb28b4072009-03-22 23:49:27 +000011412 // N2844 forbids rvalue references.
Mike Stump11289f42009-09-09 15:08:12 +000011413 if (!ExDeclType->isDependentType() && ExDeclType->isRValueReferenceType()) {
Douglas Gregor9f0e1aa2010-09-09 17:09:21 +000011414 Diag(Loc, diag::err_catch_rvalue_ref);
Sebastian Redlb28b4072009-03-22 23:49:27 +000011415 Invalid = true;
11416 }
Douglas Gregor5e16fbe2009-05-18 20:51:54 +000011417
Sebastian Redl54c04d42008-12-22 19:15:10 +000011418 QualType BaseType = ExDeclType;
11419 int Mode = 0; // 0 for direct type, 1 for pointer, 2 for reference
Douglas Gregordd430f72009-01-19 19:26:10 +000011420 unsigned DK = diag::err_catch_incomplete;
Ted Kremenekc23c7e62009-07-29 21:53:49 +000011421 if (const PointerType *Ptr = BaseType->getAs<PointerType>()) {
Sebastian Redl54c04d42008-12-22 19:15:10 +000011422 BaseType = Ptr->getPointeeType();
11423 Mode = 1;
Douglas Gregor3ecbc3d2012-01-24 19:01:26 +000011424 DK = diag::err_catch_incomplete_ptr;
Mike Stump11289f42009-09-09 15:08:12 +000011425 } else if (const ReferenceType *Ref = BaseType->getAs<ReferenceType>()) {
Sebastian Redlb28b4072009-03-22 23:49:27 +000011426 // For the purpose of error recovery, we treat rvalue refs like lvalue refs.
Sebastian Redl54c04d42008-12-22 19:15:10 +000011427 BaseType = Ref->getPointeeType();
11428 Mode = 2;
Douglas Gregor3ecbc3d2012-01-24 19:01:26 +000011429 DK = diag::err_catch_incomplete_ref;
Sebastian Redl54c04d42008-12-22 19:15:10 +000011430 }
Sebastian Redlb28b4072009-03-22 23:49:27 +000011431 if (!Invalid && (Mode == 0 || !BaseType->isVoidType()) &&
Douglas Gregor3ecbc3d2012-01-24 19:01:26 +000011432 !BaseType->isDependentType() && RequireCompleteType(Loc, BaseType, DK))
Sebastian Redl54c04d42008-12-22 19:15:10 +000011433 Invalid = true;
Sebastian Redl54c04d42008-12-22 19:15:10 +000011434
Mike Stump11289f42009-09-09 15:08:12 +000011435 if (!Invalid && !ExDeclType->isDependentType() &&
Douglas Gregor5e16fbe2009-05-18 20:51:54 +000011436 RequireNonAbstractType(Loc, ExDeclType,
11437 diag::err_abstract_type_in_decl,
11438 AbstractVariableType))
Sebastian Redl2f38ba52009-04-27 21:03:30 +000011439 Invalid = true;
11440
John McCall2ca705e2010-07-24 00:37:23 +000011441 // Only the non-fragile NeXT runtime currently supports C++ catches
11442 // of ObjC types, and no runtime supports catching ObjC types by value.
David Blaikiebbafb8a2012-03-11 07:00:24 +000011443 if (!Invalid && getLangOpts().ObjC1) {
John McCall2ca705e2010-07-24 00:37:23 +000011444 QualType T = ExDeclType;
11445 if (const ReferenceType *RT = T->getAs<ReferenceType>())
11446 T = RT->getPointeeType();
11447
11448 if (T->isObjCObjectType()) {
11449 Diag(Loc, diag::err_objc_object_catch);
11450 Invalid = true;
11451 } else if (T->isObjCObjectPointerType()) {
John McCall5fb5df92012-06-20 06:18:46 +000011452 // FIXME: should this be a test for macosx-fragile specifically?
11453 if (getLangOpts().ObjCRuntime.isFragile())
Fariborz Jahanian831f0fc2011-06-23 19:00:08 +000011454 Diag(Loc, diag::warn_objc_pointer_cxx_catch_fragile);
John McCall2ca705e2010-07-24 00:37:23 +000011455 }
11456 }
11457
Abramo Bagnaradff19302011-03-08 08:55:46 +000011458 VarDecl *ExDecl = VarDecl::Create(Context, CurContext, StartLoc, Loc, Name,
Rafael Espindola6ae7e502013-04-03 19:27:57 +000011459 ExDeclType, TInfo, SC_None);
Douglas Gregor3f324d562010-05-03 18:51:14 +000011460 ExDecl->setExceptionVariable(true);
11461
Douglas Gregor8ca0c642011-12-10 01:22:52 +000011462 // In ARC, infer 'retaining' for variables of retainable type.
David Blaikiebbafb8a2012-03-11 07:00:24 +000011463 if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(ExDecl))
Douglas Gregor8ca0c642011-12-10 01:22:52 +000011464 Invalid = true;
11465
Douglas Gregor750734c2011-07-06 18:14:43 +000011466 if (!Invalid && !ExDeclType->isDependentType()) {
John McCall1bf58462011-02-16 08:02:54 +000011467 if (const RecordType *recordType = ExDeclType->getAs<RecordType>()) {
John McCalleaef89b2013-03-22 02:10:40 +000011468 // Insulate this from anything else we might currently be parsing.
11469 EnterExpressionEvaluationContext scope(*this, PotentiallyEvaluated);
11470
Douglas Gregor6de584c2010-03-05 23:38:39 +000011471 // C++ [except.handle]p16:
Nick Lewycky0f292892013-09-22 10:06:57 +000011472 // The object declared in an exception-declaration or, if the
11473 // exception-declaration does not specify a name, a temporary (12.2) is
Douglas Gregor6de584c2010-03-05 23:38:39 +000011474 // copy-initialized (8.5) from the exception object. [...]
11475 // The object is destroyed when the handler exits, after the destruction
11476 // of any automatic objects initialized within the handler.
11477 //
Nick Lewycky0f292892013-09-22 10:06:57 +000011478 // We just pretend to initialize the object with itself, then make sure
Douglas Gregor6de584c2010-03-05 23:38:39 +000011479 // it can be destroyed later.
John McCall1bf58462011-02-16 08:02:54 +000011480 QualType initType = ExDeclType;
11481
11482 InitializedEntity entity =
11483 InitializedEntity::InitializeVariable(ExDecl);
11484 InitializationKind initKind =
11485 InitializationKind::CreateCopy(Loc, SourceLocation());
11486
11487 Expr *opaqueValue =
11488 new (Context) OpaqueValueExpr(Loc, initType, VK_LValue, OK_Ordinary);
Dmitri Gribenko8f8930f2013-05-03 15:05:50 +000011489 InitializationSequence sequence(*this, entity, initKind, opaqueValue);
11490 ExprResult result = sequence.Perform(*this, entity, initKind, opaqueValue);
John McCall1bf58462011-02-16 08:02:54 +000011491 if (result.isInvalid())
Douglas Gregor6de584c2010-03-05 23:38:39 +000011492 Invalid = true;
John McCall1bf58462011-02-16 08:02:54 +000011493 else {
11494 // If the constructor used was non-trivial, set this as the
11495 // "initializer".
Nikola Smiljanic01a75982014-05-29 10:55:11 +000011496 CXXConstructExpr *construct = result.getAs<CXXConstructExpr>();
John McCall1bf58462011-02-16 08:02:54 +000011497 if (!construct->getConstructor()->isTrivial()) {
11498 Expr *init = MaybeCreateExprWithCleanups(construct);
11499 ExDecl->setInit(init);
11500 }
11501
11502 // And make sure it's destructable.
11503 FinalizeVarWithDestructor(ExDecl, recordType);
11504 }
Douglas Gregor6de584c2010-03-05 23:38:39 +000011505 }
11506 }
11507
Douglas Gregor5e16fbe2009-05-18 20:51:54 +000011508 if (Invalid)
11509 ExDecl->setInvalidDecl();
11510
11511 return ExDecl;
11512}
11513
11514/// ActOnExceptionDeclarator - Parsed the exception-declarator in a C++ catch
11515/// handler.
John McCall48871652010-08-21 09:40:31 +000011516Decl *Sema::ActOnExceptionDeclarator(Scope *S, Declarator &D) {
John McCall8cb7bdf2010-06-04 23:28:52 +000011517 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
Douglas Gregor72772f62010-12-16 17:48:04 +000011518 bool Invalid = D.isInvalidType();
11519
11520 // Check for unexpanded parameter packs.
Jordan Rosed03d99d2013-03-05 01:27:54 +000011521 if (DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo,
11522 UPPC_ExceptionType)) {
Douglas Gregor72772f62010-12-16 17:48:04 +000011523 TInfo = Context.getTrivialTypeSourceInfo(Context.IntTy,
11524 D.getIdentifierLoc());
11525 Invalid = true;
11526 }
11527
Sebastian Redl54c04d42008-12-22 19:15:10 +000011528 IdentifierInfo *II = D.getIdentifier();
Douglas Gregorb2ccf012010-04-15 22:33:43 +000011529 if (NamedDecl *PrevDecl = LookupSingleName(S, II, D.getIdentifierLoc(),
Douglas Gregorb8eaf292010-04-15 23:40:53 +000011530 LookupOrdinaryName,
11531 ForRedeclaration)) {
Sebastian Redl54c04d42008-12-22 19:15:10 +000011532 // The scope should be freshly made just for us. There is just no way
Aaron Ballman9ef622e2014-06-02 13:10:07 +000011533 // it contains any previous declaration, except for function parameters in
11534 // a function-try-block's catch statement.
John McCall48871652010-08-21 09:40:31 +000011535 assert(!S->isDeclScope(PrevDecl));
Aaron Ballman9ef622e2014-06-02 13:10:07 +000011536 if (isDeclInScope(PrevDecl, CurContext, S)) {
11537 Diag(D.getIdentifierLoc(), diag::err_redefinition)
11538 << D.getIdentifier();
11539 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
11540 Invalid = true;
11541 } else if (PrevDecl->isTemplateParameter())
Sebastian Redl54c04d42008-12-22 19:15:10 +000011542 // Maybe we will complain about the shadowed template parameter.
11543 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
Sebastian Redl54c04d42008-12-22 19:15:10 +000011544 }
11545
Chris Lattnerf6d1c9c2009-04-25 08:06:05 +000011546 if (D.getCXXScopeSpec().isSet() && !Invalid) {
Sebastian Redl54c04d42008-12-22 19:15:10 +000011547 Diag(D.getIdentifierLoc(), diag::err_qualified_catch_declarator)
11548 << D.getCXXScopeSpec().getRange();
Chris Lattnerf6d1c9c2009-04-25 08:06:05 +000011549 Invalid = true;
Sebastian Redl54c04d42008-12-22 19:15:10 +000011550 }
11551
Douglas Gregor9f0e1aa2010-09-09 17:09:21 +000011552 VarDecl *ExDecl = BuildExceptionDeclaration(S, TInfo,
Daniel Dunbar62ee6412012-03-09 18:35:03 +000011553 D.getLocStart(),
Abramo Bagnaradff19302011-03-08 08:55:46 +000011554 D.getIdentifierLoc(),
11555 D.getIdentifier());
Chris Lattnerf6d1c9c2009-04-25 08:06:05 +000011556 if (Invalid)
11557 ExDecl->setInvalidDecl();
Mike Stump11289f42009-09-09 15:08:12 +000011558
Sebastian Redl54c04d42008-12-22 19:15:10 +000011559 // Add the exception declaration into this scope.
Sebastian Redl54c04d42008-12-22 19:15:10 +000011560 if (II)
Douglas Gregor5e16fbe2009-05-18 20:51:54 +000011561 PushOnScopeChains(ExDecl, S);
11562 else
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +000011563 CurContext->addDecl(ExDecl);
Sebastian Redl54c04d42008-12-22 19:15:10 +000011564
Douglas Gregor758a8692009-06-17 21:51:59 +000011565 ProcessDeclAttributes(S, ExDecl, D);
John McCall48871652010-08-21 09:40:31 +000011566 return ExDecl;
Sebastian Redl54c04d42008-12-22 19:15:10 +000011567}
Anders Carlsson5bbe1d72009-03-14 00:25:26 +000011568
Abramo Bagnaraea947882011-03-08 16:41:52 +000011569Decl *Sema::ActOnStaticAssertDeclaration(SourceLocation StaticAssertLoc,
John McCallb268a282010-08-23 23:25:46 +000011570 Expr *AssertExpr,
Richard Smithded9c2e2012-07-11 22:37:56 +000011571 Expr *AssertMessageExpr,
Abramo Bagnaraea947882011-03-08 16:41:52 +000011572 SourceLocation RParenLoc) {
Richard Smith085a64f2014-06-20 19:57:12 +000011573 StringLiteral *AssertMessage =
11574 AssertMessageExpr ? cast<StringLiteral>(AssertMessageExpr) : nullptr;
Anders Carlsson5bbe1d72009-03-14 00:25:26 +000011575
Richard Smithded9c2e2012-07-11 22:37:56 +000011576 if (DiagnoseUnexpandedParameterPack(AssertExpr, UPPC_StaticAssertExpression))
Craig Topperc3ec1492014-05-26 06:22:03 +000011577 return nullptr;
Richard Smithded9c2e2012-07-11 22:37:56 +000011578
11579 return BuildStaticAssertDeclaration(StaticAssertLoc, AssertExpr,
11580 AssertMessage, RParenLoc, false);
11581}
11582
11583Decl *Sema::BuildStaticAssertDeclaration(SourceLocation StaticAssertLoc,
11584 Expr *AssertExpr,
11585 StringLiteral *AssertMessage,
11586 SourceLocation RParenLoc,
11587 bool Failed) {
Richard Smith085a64f2014-06-20 19:57:12 +000011588 assert(AssertExpr != nullptr && "Expected non-null condition");
Richard Smithded9c2e2012-07-11 22:37:56 +000011589 if (!AssertExpr->isTypeDependent() && !AssertExpr->isValueDependent() &&
11590 !Failed) {
Richard Smithf4c51d92012-02-04 09:53:13 +000011591 // In a static_assert-declaration, the constant-expression shall be a
11592 // constant expression that can be contextually converted to bool.
11593 ExprResult Converted = PerformContextuallyConvertToBool(AssertExpr);
11594 if (Converted.isInvalid())
Richard Smithded9c2e2012-07-11 22:37:56 +000011595 Failed = true;
Richard Smithf4c51d92012-02-04 09:53:13 +000011596
Richard Smith902ca212011-12-14 23:32:26 +000011597 llvm::APSInt Cond;
Richard Smithded9c2e2012-07-11 22:37:56 +000011598 if (!Failed && VerifyIntegerConstantExpression(Converted.get(), &Cond,
Douglas Gregore2b37442012-05-04 22:38:52 +000011599 diag::err_static_assert_expression_is_not_constant,
Richard Smithf4c51d92012-02-04 09:53:13 +000011600 /*AllowFold=*/false).isInvalid())
Richard Smithded9c2e2012-07-11 22:37:56 +000011601 Failed = true;
Anders Carlsson5bbe1d72009-03-14 00:25:26 +000011602
Richard Smithded9c2e2012-07-11 22:37:56 +000011603 if (!Failed && !Cond) {
Dmitri Gribenkof8579502013-01-12 19:30:44 +000011604 SmallString<256> MsgBuffer;
Richard Smithf506eaf2012-03-05 23:20:05 +000011605 llvm::raw_svector_ostream Msg(MsgBuffer);
Richard Smith085a64f2014-06-20 19:57:12 +000011606 if (AssertMessage)
11607 AssertMessage->printPretty(Msg, nullptr, getPrintingPolicy());
Abramo Bagnaraea947882011-03-08 16:41:52 +000011608 Diag(StaticAssertLoc, diag::err_static_assert_failed)
Richard Smith085a64f2014-06-20 19:57:12 +000011609 << !AssertMessage << Msg.str() << AssertExpr->getSourceRange();
Richard Smithded9c2e2012-07-11 22:37:56 +000011610 Failed = true;
Richard Smithf506eaf2012-03-05 23:20:05 +000011611 }
Anders Carlsson54b26982009-03-14 00:33:21 +000011612 }
Mike Stump11289f42009-09-09 15:08:12 +000011613
Abramo Bagnaraea947882011-03-08 16:41:52 +000011614 Decl *Decl = StaticAssertDecl::Create(Context, CurContext, StaticAssertLoc,
Richard Smithded9c2e2012-07-11 22:37:56 +000011615 AssertExpr, AssertMessage, RParenLoc,
11616 Failed);
Mike Stump11289f42009-09-09 15:08:12 +000011617
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +000011618 CurContext->addDecl(Decl);
John McCall48871652010-08-21 09:40:31 +000011619 return Decl;
Anders Carlsson5bbe1d72009-03-14 00:25:26 +000011620}
Sebastian Redlf769df52009-03-24 22:27:57 +000011621
Douglas Gregorafb9bc12010-04-07 16:53:43 +000011622/// \brief Perform semantic analysis of the given friend type declaration.
11623///
11624/// \returns A friend declaration that.
Richard Smitha31a89a2012-09-20 01:31:00 +000011625FriendDecl *Sema::CheckFriendTypeDecl(SourceLocation LocStart,
Abramo Bagnara254b6302011-10-29 20:52:52 +000011626 SourceLocation FriendLoc,
Douglas Gregorafb9bc12010-04-07 16:53:43 +000011627 TypeSourceInfo *TSInfo) {
11628 assert(TSInfo && "NULL TypeSourceInfo for friend type declaration");
11629
11630 QualType T = TSInfo->getType();
Abramo Bagnara1108e7b2010-05-20 10:00:11 +000011631 SourceRange TypeRange = TSInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregorafb9bc12010-04-07 16:53:43 +000011632
Richard Smithc8239732011-10-18 21:39:00 +000011633 // C++03 [class.friend]p2:
11634 // An elaborated-type-specifier shall be used in a friend declaration
11635 // for a class.*
11636 //
11637 // * The class-key of the elaborated-type-specifier is required.
11638 if (!ActiveTemplateInstantiations.empty()) {
11639 // Do not complain about the form of friend template types during
11640 // template instantiation; we will already have complained when the
11641 // template was declared.
Nick Lewycky36722d22013-02-06 05:59:33 +000011642 } else {
11643 if (!T->isElaboratedTypeSpecifier()) {
11644 // If we evaluated the type to a record type, suggest putting
11645 // a tag in front.
11646 if (const RecordType *RT = T->getAs<RecordType>()) {
11647 RecordDecl *RD = RT->getDecl();
Alp Tokera030cd02014-05-05 12:38:48 +000011648
11649 SmallString<16> InsertionText(" ");
11650 InsertionText += RD->getKindName();
11651
Nick Lewycky36722d22013-02-06 05:59:33 +000011652 Diag(TypeRange.getBegin(),
11653 getLangOpts().CPlusPlus11 ?
11654 diag::warn_cxx98_compat_unelaborated_friend_type :
11655 diag::ext_unelaborated_friend_type)
11656 << (unsigned) RD->getTagKind()
11657 << T
11658 << FixItHint::CreateInsertion(PP.getLocForEndOfToken(FriendLoc),
11659 InsertionText);
11660 } else {
11661 Diag(FriendLoc,
11662 getLangOpts().CPlusPlus11 ?
11663 diag::warn_cxx98_compat_nonclass_type_friend :
11664 diag::ext_nonclass_type_friend)
11665 << T
11666 << TypeRange;
11667 }
11668 } else if (T->getAs<EnumType>()) {
Richard Smithc8239732011-10-18 21:39:00 +000011669 Diag(FriendLoc,
Richard Smith2bf7fdb2013-01-02 11:42:31 +000011670 getLangOpts().CPlusPlus11 ?
Nick Lewycky36722d22013-02-06 05:59:33 +000011671 diag::warn_cxx98_compat_enum_friend :
11672 diag::ext_enum_friend)
Douglas Gregorafb9bc12010-04-07 16:53:43 +000011673 << T
Richard Smitha31a89a2012-09-20 01:31:00 +000011674 << TypeRange;
Douglas Gregorafb9bc12010-04-07 16:53:43 +000011675 }
Douglas Gregorafb9bc12010-04-07 16:53:43 +000011676
Nick Lewycky36722d22013-02-06 05:59:33 +000011677 // C++11 [class.friend]p3:
11678 // A friend declaration that does not declare a function shall have one
11679 // of the following forms:
11680 // friend elaborated-type-specifier ;
11681 // friend simple-type-specifier ;
11682 // friend typename-specifier ;
11683 if (getLangOpts().CPlusPlus11 && LocStart != FriendLoc)
11684 Diag(FriendLoc, diag::err_friend_not_first_in_declaration) << T;
11685 }
Richard Smitha31a89a2012-09-20 01:31:00 +000011686
Douglas Gregor3b4abb62010-04-07 17:57:12 +000011687 // If the type specifier in a friend declaration designates a (possibly
Richard Smitha31a89a2012-09-20 01:31:00 +000011688 // cv-qualified) class type, that class is declared as a friend; otherwise,
Douglas Gregor3b4abb62010-04-07 17:57:12 +000011689 // the friend declaration is ignored.
Nikola Smiljanic3a01af02014-05-23 12:48:27 +000011690 return FriendDecl::Create(Context, CurContext,
11691 TSInfo->getTypeLoc().getLocStart(), TSInfo,
11692 FriendLoc);
Douglas Gregorafb9bc12010-04-07 16:53:43 +000011693}
11694
John McCallace48cd2010-10-19 01:40:49 +000011695/// Handle a friend tag declaration where the scope specifier was
11696/// templated.
11697Decl *Sema::ActOnTemplatedFriendTag(Scope *S, SourceLocation FriendLoc,
11698 unsigned TagSpec, SourceLocation TagLoc,
11699 CXXScopeSpec &SS,
Enea Zaffanellaeb22c872013-01-31 09:54:08 +000011700 IdentifierInfo *Name,
11701 SourceLocation NameLoc,
John McCallace48cd2010-10-19 01:40:49 +000011702 AttributeList *Attr,
11703 MultiTemplateParamsArg TempParamLists) {
11704 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
11705
11706 bool isExplicitSpecialization = false;
John McCallace48cd2010-10-19 01:40:49 +000011707 bool Invalid = false;
11708
Robert Wilhelmf2d2e8f2013-07-21 15:20:44 +000011709 if (TemplateParameterList *TemplateParams =
11710 MatchTemplateParametersToScopeSpecifier(
Craig Topperc3ec1492014-05-26 06:22:03 +000011711 TagLoc, NameLoc, SS, nullptr, TempParamLists, /*friend*/ true,
Robert Wilhelmf2d2e8f2013-07-21 15:20:44 +000011712 isExplicitSpecialization, Invalid)) {
John McCallace48cd2010-10-19 01:40:49 +000011713 if (TemplateParams->size() > 0) {
11714 // This is a declaration of a class template.
11715 if (Invalid)
Craig Topperc3ec1492014-05-26 06:22:03 +000011716 return nullptr;
Abramo Bagnara0adf29a2011-03-10 13:28:31 +000011717
Nikola Smiljanic4fc91532014-07-17 01:59:34 +000011718 return CheckClassTemplate(S, TagSpec, TUK_Friend, TagLoc, SS, Name,
11719 NameLoc, Attr, TemplateParams, AS_public,
Douglas Gregor2820e692011-09-09 19:05:14 +000011720 /*ModulePrivateLoc=*/SourceLocation(),
Nikola Smiljanic4fc91532014-07-17 01:59:34 +000011721 FriendLoc, TempParamLists.size() - 1,
Nikola Smiljanic01a75982014-05-29 10:55:11 +000011722 TempParamLists.data()).get();
John McCallace48cd2010-10-19 01:40:49 +000011723 } else {
11724 // The "template<>" header is extraneous.
11725 Diag(TemplateParams->getTemplateLoc(), diag::err_template_tag_noparams)
11726 << TypeWithKeyword::getTagTypeKindName(Kind) << Name;
11727 isExplicitSpecialization = true;
11728 }
11729 }
11730
Craig Topperc3ec1492014-05-26 06:22:03 +000011731 if (Invalid) return nullptr;
John McCallace48cd2010-10-19 01:40:49 +000011732
John McCallace48cd2010-10-19 01:40:49 +000011733 bool isAllExplicitSpecializations = true;
Abramo Bagnara60804e12011-03-18 15:16:37 +000011734 for (unsigned I = TempParamLists.size(); I-- > 0; ) {
Benjamin Kramer62b95d82012-08-23 21:35:17 +000011735 if (TempParamLists[I]->size()) {
John McCallace48cd2010-10-19 01:40:49 +000011736 isAllExplicitSpecializations = false;
11737 break;
11738 }
11739 }
11740
11741 // FIXME: don't ignore attributes.
11742
11743 // If it's explicit specializations all the way down, just forget
11744 // about the template header and build an appropriate non-templated
11745 // friend. TODO: for source fidelity, remember the headers.
11746 if (isAllExplicitSpecializations) {
Douglas Gregorf65d8ff2011-10-20 15:58:54 +000011747 if (SS.isEmpty()) {
11748 bool Owned = false;
11749 bool IsDependent = false;
11750 return ActOnTag(S, TagSpec, TUK_Friend, TagLoc, SS, Name, NameLoc,
Richard Smith649c7b062014-01-08 00:56:48 +000011751 Attr, AS_public,
Douglas Gregorf65d8ff2011-10-20 15:58:54 +000011752 /*ModulePrivateLoc=*/SourceLocation(),
Richard Smith649c7b062014-01-08 00:56:48 +000011753 MultiTemplateParamsArg(), Owned, IsDependent,
Richard Smith0f8ee222012-01-10 01:33:14 +000011754 /*ScopedEnumKWLoc=*/SourceLocation(),
Douglas Gregorf65d8ff2011-10-20 15:58:54 +000011755 /*ScopedEnumUsesClassTag=*/false,
Richard Smith649c7b062014-01-08 00:56:48 +000011756 /*UnderlyingType=*/TypeResult(),
11757 /*IsTypeSpecifier=*/false);
Douglas Gregorf65d8ff2011-10-20 15:58:54 +000011758 }
Richard Smith649c7b062014-01-08 00:56:48 +000011759
Douglas Gregor3d0da5f2011-03-01 01:34:45 +000011760 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
John McCallace48cd2010-10-19 01:40:49 +000011761 ElaboratedTypeKeyword Keyword
11762 = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
Douglas Gregor3d0da5f2011-03-01 01:34:45 +000011763 QualType T = CheckTypenameType(Keyword, TagLoc, QualifierLoc,
Douglas Gregor9cbc22b2011-02-28 22:42:13 +000011764 *Name, NameLoc);
John McCallace48cd2010-10-19 01:40:49 +000011765 if (T.isNull())
Craig Topperc3ec1492014-05-26 06:22:03 +000011766 return nullptr;
John McCallace48cd2010-10-19 01:40:49 +000011767
11768 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
11769 if (isa<DependentNameType>(T)) {
David Blaikie6adc78e2013-02-18 22:06:02 +000011770 DependentNameTypeLoc TL =
11771 TSI->getTypeLoc().castAs<DependentNameTypeLoc>();
Abramo Bagnara9033e2b2012-02-06 19:09:27 +000011772 TL.setElaboratedKeywordLoc(TagLoc);
Douglas Gregor3d0da5f2011-03-01 01:34:45 +000011773 TL.setQualifierLoc(QualifierLoc);
John McCallace48cd2010-10-19 01:40:49 +000011774 TL.setNameLoc(NameLoc);
11775 } else {
David Blaikie6adc78e2013-02-18 22:06:02 +000011776 ElaboratedTypeLoc TL = TSI->getTypeLoc().castAs<ElaboratedTypeLoc>();
Abramo Bagnara9033e2b2012-02-06 19:09:27 +000011777 TL.setElaboratedKeywordLoc(TagLoc);
Douglas Gregor844cb502011-03-01 18:12:44 +000011778 TL.setQualifierLoc(QualifierLoc);
David Blaikie6adc78e2013-02-18 22:06:02 +000011779 TL.getNamedTypeLoc().castAs<TypeSpecTypeLoc>().setNameLoc(NameLoc);
John McCallace48cd2010-10-19 01:40:49 +000011780 }
11781
11782 FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc,
Enea Zaffanellaeb22c872013-01-31 09:54:08 +000011783 TSI, FriendLoc, TempParamLists);
John McCallace48cd2010-10-19 01:40:49 +000011784 Friend->setAccess(AS_public);
11785 CurContext->addDecl(Friend);
11786 return Friend;
11787 }
Douglas Gregorf65d8ff2011-10-20 15:58:54 +000011788
11789 assert(SS.isNotEmpty() && "valid templated tag with no SS and no direct?");
11790
11791
John McCallace48cd2010-10-19 01:40:49 +000011792
11793 // Handle the case of a templated-scope friend class. e.g.
11794 // template <class T> class A<T>::B;
11795 // FIXME: we don't support these right now.
Richard Smithcd556eb2013-11-08 18:59:56 +000011796 Diag(NameLoc, diag::warn_template_qualified_friend_unsupported)
11797 << SS.getScopeRep() << SS.getRange() << cast<CXXRecordDecl>(CurContext);
John McCallace48cd2010-10-19 01:40:49 +000011798 ElaboratedTypeKeyword ETK = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
11799 QualType T = Context.getDependentNameType(ETK, SS.getScopeRep(), Name);
11800 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
David Blaikie6adc78e2013-02-18 22:06:02 +000011801 DependentNameTypeLoc TL = TSI->getTypeLoc().castAs<DependentNameTypeLoc>();
Abramo Bagnara9033e2b2012-02-06 19:09:27 +000011802 TL.setElaboratedKeywordLoc(TagLoc);
Douglas Gregor3d0da5f2011-03-01 01:34:45 +000011803 TL.setQualifierLoc(SS.getWithLocInContext(Context));
John McCallace48cd2010-10-19 01:40:49 +000011804 TL.setNameLoc(NameLoc);
11805
11806 FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc,
Enea Zaffanellaeb22c872013-01-31 09:54:08 +000011807 TSI, FriendLoc, TempParamLists);
John McCallace48cd2010-10-19 01:40:49 +000011808 Friend->setAccess(AS_public);
11809 Friend->setUnsupportedFriend(true);
11810 CurContext->addDecl(Friend);
11811 return Friend;
11812}
11813
11814
John McCall11083da2009-09-16 22:47:08 +000011815/// Handle a friend type declaration. This works in tandem with
11816/// ActOnTag.
11817///
11818/// Notes on friend class templates:
11819///
11820/// We generally treat friend class declarations as if they were
11821/// declaring a class. So, for example, the elaborated type specifier
11822/// in a friend declaration is required to obey the restrictions of a
11823/// class-head (i.e. no typedefs in the scope chain), template
11824/// parameters are required to match up with simple template-ids, &c.
11825/// However, unlike when declaring a template specialization, it's
11826/// okay to refer to a template specialization without an empty
11827/// template parameter declaration, e.g.
11828/// friend class A<T>::B<unsigned>;
11829/// We permit this as a special case; if there are any template
11830/// parameters present at all, require proper matching, i.e.
James Dennettf14a6e52012-06-15 22:23:43 +000011831/// template <> template \<class T> friend class A<int>::B;
John McCall48871652010-08-21 09:40:31 +000011832Decl *Sema::ActOnFriendTypeDecl(Scope *S, const DeclSpec &DS,
John McCallc9739e32010-10-16 07:23:36 +000011833 MultiTemplateParamsArg TempParams) {
Daniel Dunbar62ee6412012-03-09 18:35:03 +000011834 SourceLocation Loc = DS.getLocStart();
John McCall07e91c02009-08-06 02:15:43 +000011835
11836 assert(DS.isFriendSpecified());
11837 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
11838
John McCall11083da2009-09-16 22:47:08 +000011839 // Try to convert the decl specifier to a type. This works for
11840 // friend templates because ActOnTag never produces a ClassTemplateDecl
11841 // for a TUK_Friend.
Chris Lattner1fb66f42009-10-25 17:47:27 +000011842 Declarator TheDeclarator(DS, Declarator::MemberContext);
John McCall8cb7bdf2010-06-04 23:28:52 +000011843 TypeSourceInfo *TSI = GetTypeForDeclarator(TheDeclarator, S);
11844 QualType T = TSI->getType();
Chris Lattner1fb66f42009-10-25 17:47:27 +000011845 if (TheDeclarator.isInvalidType())
Craig Topperc3ec1492014-05-26 06:22:03 +000011846 return nullptr;
John McCall07e91c02009-08-06 02:15:43 +000011847
Douglas Gregor6c110f32010-12-16 01:14:37 +000011848 if (DiagnoseUnexpandedParameterPack(Loc, TSI, UPPC_FriendDeclaration))
Craig Topperc3ec1492014-05-26 06:22:03 +000011849 return nullptr;
Douglas Gregor6c110f32010-12-16 01:14:37 +000011850
John McCall11083da2009-09-16 22:47:08 +000011851 // This is definitely an error in C++98. It's probably meant to
11852 // be forbidden in C++0x, too, but the specification is just
11853 // poorly written.
11854 //
11855 // The problem is with declarations like the following:
11856 // template <T> friend A<T>::foo;
11857 // where deciding whether a class C is a friend or not now hinges
11858 // on whether there exists an instantiation of A that causes
11859 // 'foo' to equal C. There are restrictions on class-heads
11860 // (which we declare (by fiat) elaborated friend declarations to
11861 // be) that makes this tractable.
11862 //
11863 // FIXME: handle "template <> friend class A<T>;", which
11864 // is possibly well-formed? Who even knows?
Douglas Gregore677daf2010-03-31 22:19:08 +000011865 if (TempParams.size() && !T->isElaboratedTypeSpecifier()) {
John McCall11083da2009-09-16 22:47:08 +000011866 Diag(Loc, diag::err_tagless_friend_type_template)
11867 << DS.getSourceRange();
Craig Topperc3ec1492014-05-26 06:22:03 +000011868 return nullptr;
John McCall11083da2009-09-16 22:47:08 +000011869 }
Douglas Gregorafb9bc12010-04-07 16:53:43 +000011870
John McCallaa74a0c2009-08-28 07:59:38 +000011871 // C++98 [class.friend]p1: A friend of a class is a function
11872 // or class that is not a member of the class . . .
John McCall463e10c2009-12-22 00:59:39 +000011873 // This is fixed in DR77, which just barely didn't make the C++03
11874 // deadline. It's also a very silly restriction that seriously
11875 // affects inner classes and which nobody else seems to implement;
11876 // thus we never diagnose it, not even in -pedantic.
John McCall15ad0962010-03-25 18:04:51 +000011877 //
11878 // But note that we could warn about it: it's always useless to
11879 // friend one of your own members (it's not, however, worthless to
11880 // friend a member of an arbitrary specialization of your template).
John McCallaa74a0c2009-08-28 07:59:38 +000011881
John McCall11083da2009-09-16 22:47:08 +000011882 Decl *D;
Douglas Gregorafb9bc12010-04-07 16:53:43 +000011883 if (unsigned NumTempParamLists = TempParams.size())
John McCall11083da2009-09-16 22:47:08 +000011884 D = FriendTemplateDecl::Create(Context, CurContext, Loc,
Douglas Gregorafb9bc12010-04-07 16:53:43 +000011885 NumTempParamLists,
Benjamin Kramercc4c49d2012-08-23 23:38:35 +000011886 TempParams.data(),
John McCall15ad0962010-03-25 18:04:51 +000011887 TSI,
John McCall11083da2009-09-16 22:47:08 +000011888 DS.getFriendSpecLoc());
11889 else
Abramo Bagnara254b6302011-10-29 20:52:52 +000011890 D = CheckFriendTypeDecl(Loc, DS.getFriendSpecLoc(), TSI);
Douglas Gregorafb9bc12010-04-07 16:53:43 +000011891
11892 if (!D)
Craig Topperc3ec1492014-05-26 06:22:03 +000011893 return nullptr;
11894
John McCall11083da2009-09-16 22:47:08 +000011895 D->setAccess(AS_public);
11896 CurContext->addDecl(D);
John McCallaa74a0c2009-08-28 07:59:38 +000011897
John McCall48871652010-08-21 09:40:31 +000011898 return D;
John McCallaa74a0c2009-08-28 07:59:38 +000011899}
11900
Rafael Espindola0a67e2f2013-01-08 20:44:06 +000011901NamedDecl *Sema::ActOnFriendFunctionDecl(Scope *S, Declarator &D,
11902 MultiTemplateParamsArg TemplateParams) {
John McCallaa74a0c2009-08-28 07:59:38 +000011903 const DeclSpec &DS = D.getDeclSpec();
11904
11905 assert(DS.isFriendSpecified());
11906 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
11907
11908 SourceLocation Loc = D.getIdentifierLoc();
John McCall8cb7bdf2010-06-04 23:28:52 +000011909 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
John McCall07e91c02009-08-06 02:15:43 +000011910
11911 // C++ [class.friend]p1
11912 // A friend of a class is a function or class....
11913 // Note that this sees through typedefs, which is intended.
John McCallaa74a0c2009-08-28 07:59:38 +000011914 // It *doesn't* see through dependent types, which is correct
11915 // according to [temp.arg.type]p3:
11916 // If a declaration acquires a function type through a
11917 // type dependent on a template-parameter and this causes
11918 // a declaration that does not use the syntactic form of a
11919 // function declarator to have a function type, the program
11920 // is ill-formed.
Kaelyn Uhrain4dc695d2011-10-11 00:28:45 +000011921 if (!TInfo->getType()->isFunctionType()) {
John McCall07e91c02009-08-06 02:15:43 +000011922 Diag(Loc, diag::err_unexpected_friend);
11923
11924 // It might be worthwhile to try to recover by creating an
11925 // appropriate declaration.
Craig Topperc3ec1492014-05-26 06:22:03 +000011926 return nullptr;
John McCall07e91c02009-08-06 02:15:43 +000011927 }
11928
11929 // C++ [namespace.memdef]p3
11930 // - If a friend declaration in a non-local class first declares a
11931 // class or function, the friend class or function is a member
11932 // of the innermost enclosing namespace.
11933 // - The name of the friend is not found by simple name lookup
11934 // until a matching declaration is provided in that namespace
11935 // scope (either before or after the class declaration granting
11936 // friendship).
11937 // - If a friend function is called, its name may be found by the
11938 // name lookup that considers functions from namespaces and
11939 // classes associated with the types of the function arguments.
11940 // - When looking for a prior declaration of a class or a function
11941 // declared as a friend, scopes outside the innermost enclosing
11942 // namespace scope are not considered.
11943
John McCallde3fd222010-10-12 23:13:28 +000011944 CXXScopeSpec &SS = D.getCXXScopeSpec();
Abramo Bagnarad6d2f182010-08-11 22:01:17 +000011945 DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
11946 DeclarationName Name = NameInfo.getName();
John McCall07e91c02009-08-06 02:15:43 +000011947 assert(Name);
11948
Douglas Gregor6c110f32010-12-16 01:14:37 +000011949 // Check for unexpanded parameter packs.
11950 if (DiagnoseUnexpandedParameterPack(Loc, TInfo, UPPC_FriendDeclaration) ||
11951 DiagnoseUnexpandedParameterPack(NameInfo, UPPC_FriendDeclaration) ||
11952 DiagnoseUnexpandedParameterPack(SS, UPPC_FriendDeclaration))
Craig Topperc3ec1492014-05-26 06:22:03 +000011953 return nullptr;
Douglas Gregor6c110f32010-12-16 01:14:37 +000011954
John McCall07e91c02009-08-06 02:15:43 +000011955 // The context we found the declaration in, or in which we should
11956 // create the declaration.
11957 DeclContext *DC;
John McCallccbc0322010-10-13 06:22:15 +000011958 Scope *DCScope = S;
Abramo Bagnarad6d2f182010-08-11 22:01:17 +000011959 LookupResult Previous(*this, NameInfo, LookupOrdinaryName,
John McCall1f82f242009-11-18 22:49:29 +000011960 ForRedeclaration);
John McCall07e91c02009-08-06 02:15:43 +000011961
Richard Smith114394f2013-08-09 04:35:01 +000011962 // There are five cases here.
11963 // - There's no scope specifier and we're in a local class. Only look
11964 // for functions declared in the immediately-enclosing block scope.
11965 // We recover from invalid scope qualifiers as if they just weren't there.
Craig Topperc3ec1492014-05-26 06:22:03 +000011966 FunctionDecl *FunctionContainingLocalClass = nullptr;
Richard Smith114394f2013-08-09 04:35:01 +000011967 if ((SS.isInvalid() || !SS.isSet()) &&
11968 (FunctionContainingLocalClass =
11969 cast<CXXRecordDecl>(CurContext)->isLocalClass())) {
11970 // C++11 [class.friend]p11:
John McCallf7cfb222010-10-13 05:45:15 +000011971 // If a friend declaration appears in a local class and the name
11972 // specified is an unqualified name, a prior declaration is
11973 // looked up without considering scopes that are outside the
11974 // innermost enclosing non-class scope. For a friend function
11975 // declaration, if there is no prior declaration, the program is
11976 // ill-formed.
Richard Smith114394f2013-08-09 04:35:01 +000011977
11978 // Find the innermost enclosing non-class scope. This is the block
11979 // scope containing the local class definition (or for a nested class,
11980 // the outer local class).
11981 DCScope = S->getFnParent();
11982
11983 // Look up the function name in the scope.
11984 Previous.clear(LookupLocalFriendName);
11985 LookupName(Previous, S, /*AllowBuiltinCreation*/false);
11986
11987 if (!Previous.empty()) {
11988 // All possible previous declarations must have the same context:
11989 // either they were declared at block scope or they are members of
11990 // one of the enclosing local classes.
11991 DC = Previous.getRepresentativeDecl()->getDeclContext();
11992 } else {
11993 // This is ill-formed, but provide the context that we would have
11994 // declared the function in, if we were permitted to, for error recovery.
11995 DC = FunctionContainingLocalClass;
11996 }
Richard Smith541b38b2013-09-20 01:15:31 +000011997 adjustContextForLocalExternDecl(DC);
Richard Smith114394f2013-08-09 04:35:01 +000011998
11999 // C++ [class.friend]p6:
12000 // A function can be defined in a friend declaration of a class if and
12001 // only if the class is a non-local class (9.8), the function name is
12002 // unqualified, and the function has namespace scope.
12003 if (D.isFunctionDefinition()) {
12004 Diag(NameInfo.getBeginLoc(), diag::err_friend_def_in_local_class);
12005 }
12006
12007 // - There's no scope specifier, in which case we just go to the
12008 // appropriate scope and look for a function or function template
12009 // there as appropriate.
12010 } else if (SS.isInvalid() || !SS.isSet()) {
12011 // C++11 [namespace.memdef]p3:
12012 // If the name in a friend declaration is neither qualified nor
12013 // a template-id and the declaration is a function or an
12014 // elaborated-type-specifier, the lookup to determine whether
12015 // the entity has been previously declared shall not consider
12016 // any scopes outside the innermost enclosing namespace.
John McCallf4776592010-10-14 22:22:28 +000012017 bool isTemplateId = D.getName().getKind() == UnqualifiedId::IK_TemplateId;
John McCall07e91c02009-08-06 02:15:43 +000012018
John McCallf7cfb222010-10-13 05:45:15 +000012019 // Find the appropriate context according to the above.
John McCall07e91c02009-08-06 02:15:43 +000012020 DC = CurContext;
John McCall07e91c02009-08-06 02:15:43 +000012021
Rafael Espindola3626b7e2013-04-25 20:12:36 +000012022 // Skip class contexts. If someone can cite chapter and verse
12023 // for this behavior, that would be nice --- it's what GCC and
12024 // EDG do, and it seems like a reasonable intent, but the spec
12025 // really only says that checks for unqualified existing
12026 // declarations should stop at the nearest enclosing namespace,
12027 // not that they should only consider the nearest enclosing
12028 // namespace.
12029 while (DC->isRecord())
12030 DC = DC->getParent();
12031
12032 DeclContext *LookupDC = DC;
12033 while (LookupDC->isTransparentContext())
12034 LookupDC = LookupDC->getParent();
12035
12036 while (true) {
12037 LookupQualifiedName(Previous, LookupDC);
John McCall07e91c02009-08-06 02:15:43 +000012038
Rafael Espindola3626b7e2013-04-25 20:12:36 +000012039 if (!Previous.empty()) {
12040 DC = LookupDC;
12041 break;
John McCallf4776592010-10-14 22:22:28 +000012042 }
Rafael Espindola3626b7e2013-04-25 20:12:36 +000012043
12044 if (isTemplateId) {
12045 if (isa<TranslationUnitDecl>(LookupDC)) break;
12046 } else {
12047 if (LookupDC->isFileContext()) break;
12048 }
12049 LookupDC = LookupDC->getParent();
John McCall07e91c02009-08-06 02:15:43 +000012050 }
12051
John McCallccbc0322010-10-13 06:22:15 +000012052 DCScope = getScopeForDeclContext(S, DC);
Richard Smith114394f2013-08-09 04:35:01 +000012053
John McCallde3fd222010-10-12 23:13:28 +000012054 // - There's a non-dependent scope specifier, in which case we
12055 // compute it and do a previous lookup there for a function
12056 // or function template.
12057 } else if (!SS.getScopeRep()->isDependent()) {
12058 DC = computeDeclContext(SS);
Craig Topperc3ec1492014-05-26 06:22:03 +000012059 if (!DC) return nullptr;
John McCallde3fd222010-10-12 23:13:28 +000012060
Craig Topperc3ec1492014-05-26 06:22:03 +000012061 if (RequireCompleteDeclContext(SS, DC)) return nullptr;
John McCallde3fd222010-10-12 23:13:28 +000012062
12063 LookupQualifiedName(Previous, DC);
12064
12065 // Ignore things found implicitly in the wrong scope.
12066 // TODO: better diagnostics for this case. Suggesting the right
12067 // qualified scope would be nice...
12068 LookupResult::Filter F = Previous.makeFilter();
12069 while (F.hasNext()) {
12070 NamedDecl *D = F.next();
12071 if (!DC->InEnclosingNamespaceSetOf(
12072 D->getDeclContext()->getRedeclContext()))
12073 F.erase();
12074 }
12075 F.done();
12076
12077 if (Previous.empty()) {
12078 D.setInvalidType();
Kaelyn Uhrain4dc695d2011-10-11 00:28:45 +000012079 Diag(Loc, diag::err_qualified_friend_not_found)
12080 << Name << TInfo->getType();
Craig Topperc3ec1492014-05-26 06:22:03 +000012081 return nullptr;
John McCallde3fd222010-10-12 23:13:28 +000012082 }
12083
12084 // C++ [class.friend]p1: A friend of a class is a function or
12085 // class that is not a member of the class . . .
Richard Smith0bf8a4922011-10-18 20:49:44 +000012086 if (DC->Equals(CurContext))
12087 Diag(DS.getFriendSpecLoc(),
Richard Smith2bf7fdb2013-01-02 11:42:31 +000012088 getLangOpts().CPlusPlus11 ?
Richard Smith0bf8a4922011-10-18 20:49:44 +000012089 diag::warn_cxx98_compat_friend_is_member :
12090 diag::err_friend_is_member);
Douglas Gregor16e65612011-10-10 01:11:59 +000012091
Kaelyn Uhrain4dc695d2011-10-11 00:28:45 +000012092 if (D.isFunctionDefinition()) {
Douglas Gregor16e65612011-10-10 01:11:59 +000012093 // C++ [class.friend]p6:
12094 // A function can be defined in a friend declaration of a class if and
12095 // only if the class is a non-local class (9.8), the function name is
12096 // unqualified, and the function has namespace scope.
12097 SemaDiagnosticBuilder DB
12098 = Diag(SS.getRange().getBegin(), diag::err_qualified_friend_def);
12099
12100 DB << SS.getScopeRep();
12101 if (DC->isFileContext())
12102 DB << FixItHint::CreateRemoval(SS.getRange());
12103 SS.clear();
12104 }
John McCallde3fd222010-10-12 23:13:28 +000012105
12106 // - There's a scope specifier that does not match any template
12107 // parameter lists, in which case we use some arbitrary context,
12108 // create a method or method template, and wait for instantiation.
12109 // - There's a scope specifier that does match some template
12110 // parameter lists, which we don't handle right now.
12111 } else {
Kaelyn Uhrain4dc695d2011-10-11 00:28:45 +000012112 if (D.isFunctionDefinition()) {
Douglas Gregor16e65612011-10-10 01:11:59 +000012113 // C++ [class.friend]p6:
12114 // A function can be defined in a friend declaration of a class if and
12115 // only if the class is a non-local class (9.8), the function name is
12116 // unqualified, and the function has namespace scope.
12117 Diag(SS.getRange().getBegin(), diag::err_qualified_friend_def)
12118 << SS.getScopeRep();
12119 }
12120
John McCallde3fd222010-10-12 23:13:28 +000012121 DC = CurContext;
12122 assert(isa<CXXRecordDecl>(DC) && "friend declaration not in class?");
John McCall07e91c02009-08-06 02:15:43 +000012123 }
Douglas Gregor16e65612011-10-10 01:11:59 +000012124
John McCallf7cfb222010-10-13 05:45:15 +000012125 if (!DC->isRecord()) {
John McCall07e91c02009-08-06 02:15:43 +000012126 // This implies that it has to be an operator or function.
Douglas Gregor7861a802009-11-03 01:35:08 +000012127 if (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ||
12128 D.getName().getKind() == UnqualifiedId::IK_DestructorName ||
12129 D.getName().getKind() == UnqualifiedId::IK_ConversionFunctionId) {
John McCall07e91c02009-08-06 02:15:43 +000012130 Diag(Loc, diag::err_introducing_special_friend) <<
Douglas Gregor7861a802009-11-03 01:35:08 +000012131 (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ? 0 :
12132 D.getName().getKind() == UnqualifiedId::IK_DestructorName ? 1 : 2);
Craig Topperc3ec1492014-05-26 06:22:03 +000012133 return nullptr;
John McCall07e91c02009-08-06 02:15:43 +000012134 }
John McCall07e91c02009-08-06 02:15:43 +000012135 }
Kaelyn Uhrain4dc695d2011-10-11 00:28:45 +000012136
Douglas Gregordd847ba2011-11-03 16:37:14 +000012137 // FIXME: This is an egregious hack to cope with cases where the scope stack
12138 // does not contain the declaration context, i.e., in an out-of-line
12139 // definition of a class.
12140 Scope FakeDCScope(S, Scope::DeclScope, Diags);
12141 if (!DCScope) {
12142 FakeDCScope.setEntity(DC);
12143 DCScope = &FakeDCScope;
12144 }
Richard Smith114394f2013-08-09 04:35:01 +000012145
Francois Pichet00c7e6c2011-08-14 03:52:19 +000012146 bool AddToScope = true;
Kaelyn Uhrain4dc695d2011-10-11 00:28:45 +000012147 NamedDecl *ND = ActOnFunctionDeclarator(DCScope, D, DC, TInfo, Previous,
Benjamin Kramer62b95d82012-08-23 21:35:17 +000012148 TemplateParams, AddToScope);
Craig Topperc3ec1492014-05-26 06:22:03 +000012149 if (!ND) return nullptr;
John McCall759e32b2009-08-31 22:39:49 +000012150
Douglas Gregora29a3ff2009-09-28 00:08:27 +000012151 assert(ND->getLexicalDeclContext() == CurContext);
John McCall5ed6e8f2009-08-18 00:00:49 +000012152
Richard Smith114394f2013-08-09 04:35:01 +000012153 // If we performed typo correction, we might have added a scope specifier
12154 // and changed the decl context.
12155 DC = ND->getDeclContext();
12156
John McCall759e32b2009-08-31 22:39:49 +000012157 // Add the function declaration to the appropriate lookup tables,
12158 // adjusting the redeclarations list as necessary. We don't
12159 // want to do this yet if the friending class is dependent.
Mike Stump11289f42009-09-09 15:08:12 +000012160 //
John McCall759e32b2009-08-31 22:39:49 +000012161 // Also update the scope-based lookup if the target context's
12162 // lookup context is in lexical scope.
12163 if (!CurContext->isDependentContext()) {
Sebastian Redl50c68252010-08-31 00:36:30 +000012164 DC = DC->getRedeclContext();
Richard Smith05afe5e2012-03-13 03:12:56 +000012165 DC->makeDeclVisibleInContext(ND);
John McCall759e32b2009-08-31 22:39:49 +000012166 if (Scope *EnclosingScope = getScopeForDeclContext(S, DC))
Douglas Gregora29a3ff2009-09-28 00:08:27 +000012167 PushOnScopeChains(ND, EnclosingScope, /*AddToContext=*/ false);
John McCall759e32b2009-08-31 22:39:49 +000012168 }
John McCallaa74a0c2009-08-28 07:59:38 +000012169
12170 FriendDecl *FrD = FriendDecl::Create(Context, CurContext,
Douglas Gregora29a3ff2009-09-28 00:08:27 +000012171 D.getIdentifierLoc(), ND,
John McCallaa74a0c2009-08-28 07:59:38 +000012172 DS.getFriendSpecLoc());
John McCall75c03bb2009-08-29 03:50:18 +000012173 FrD->setAccess(AS_public);
John McCallaa74a0c2009-08-28 07:59:38 +000012174 CurContext->addDecl(FrD);
John McCall07e91c02009-08-06 02:15:43 +000012175
John McCalla0a96892012-08-10 03:15:35 +000012176 if (ND->isInvalidDecl()) {
John McCallde3fd222010-10-12 23:13:28 +000012177 FrD->setInvalidDecl();
John McCalla0a96892012-08-10 03:15:35 +000012178 } else {
12179 if (DC->isRecord()) CheckFriendAccess(ND);
12180
John McCall2c2eb122010-10-16 06:59:13 +000012181 FunctionDecl *FD;
12182 if (FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(ND))
12183 FD = FTD->getTemplatedDecl();
12184 else
12185 FD = cast<FunctionDecl>(ND);
12186
David Majnemer502b0ed2013-06-25 23:09:30 +000012187 // C++11 [dcl.fct.default]p4: If a friend declaration specifies a
12188 // default argument expression, that declaration shall be a definition
12189 // and shall be the only declaration of the function or function
12190 // template in the translation unit.
12191 if (functionDeclHasDefaultArgument(FD)) {
12192 if (FunctionDecl *OldFD = FD->getPreviousDecl()) {
12193 Diag(FD->getLocation(), diag::err_friend_decl_with_def_arg_redeclared);
12194 Diag(OldFD->getLocation(), diag::note_previous_declaration);
12195 } else if (!D.isFunctionDefinition())
12196 Diag(FD->getLocation(), diag::err_friend_decl_with_def_arg_must_be_def);
12197 }
12198
John McCall2c2eb122010-10-16 06:59:13 +000012199 // Mark templated-scope function declarations as unsupported.
12200 if (FD->getNumTemplateParameterLists())
12201 FrD->setUnsupportedFriend(true);
12202 }
John McCallde3fd222010-10-12 23:13:28 +000012203
John McCall48871652010-08-21 09:40:31 +000012204 return ND;
Anders Carlsson38811702009-05-11 22:55:49 +000012205}
12206
John McCall48871652010-08-21 09:40:31 +000012207void Sema::SetDeclDeleted(Decl *Dcl, SourceLocation DelLoc) {
12208 AdjustDeclIfTemplate(Dcl);
Mike Stump11289f42009-09-09 15:08:12 +000012209
Aaron Ballmanf96361e2013-01-16 23:39:10 +000012210 FunctionDecl *Fn = dyn_cast_or_null<FunctionDecl>(Dcl);
Sebastian Redlf769df52009-03-24 22:27:57 +000012211 if (!Fn) {
12212 Diag(DelLoc, diag::err_deleted_non_function);
12213 return;
12214 }
Richard Smithb4d2a152013-04-02 19:38:47 +000012215
Douglas Gregorec9fd132012-01-14 16:38:05 +000012216 if (const FunctionDecl *Prev = Fn->getPreviousDecl()) {
David Blaikie36805522012-06-25 21:55:30 +000012217 // Don't consider the implicit declaration we generate for explicit
12218 // specializations. FIXME: Do not generate these implicit declarations.
Richard Smithbdd14642014-02-04 01:14:30 +000012219 if ((Prev->getTemplateSpecializationKind() != TSK_ExplicitSpecialization ||
12220 Prev->getPreviousDecl()) &&
12221 !Prev->isDefined()) {
David Blaikie36805522012-06-25 21:55:30 +000012222 Diag(DelLoc, diag::err_deleted_decl_not_first);
Richard Smithbdd14642014-02-04 01:14:30 +000012223 Diag(Prev->getLocation().isInvalid() ? DelLoc : Prev->getLocation(),
12224 Prev->isImplicit() ? diag::note_previous_implicit_declaration
12225 : diag::note_previous_declaration);
David Blaikie36805522012-06-25 21:55:30 +000012226 }
Sebastian Redlf769df52009-03-24 22:27:57 +000012227 // If the declaration wasn't the first, we delete the function anyway for
12228 // recovery.
Richard Smithb4d2a152013-04-02 19:38:47 +000012229 Fn = Fn->getCanonicalDecl();
Sebastian Redlf769df52009-03-24 22:27:57 +000012230 }
Richard Smithb4d2a152013-04-02 19:38:47 +000012231
Nico Rieck9de0a572014-05-29 16:51:19 +000012232 // dllimport/dllexport cannot be deleted.
12233 if (const InheritableAttr *DLLAttr = getDLLAttr(Fn)) {
12234 Diag(Fn->getLocation(), diag::err_attribute_dll_deleted) << DLLAttr;
12235 Fn->setInvalidDecl();
12236 }
12237
Richard Smithb4d2a152013-04-02 19:38:47 +000012238 if (Fn->isDeleted())
12239 return;
12240
12241 // See if we're deleting a function which is already known to override a
12242 // non-deleted virtual function.
12243 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Fn)) {
12244 bool IssuedDiagnostic = false;
12245 for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(),
12246 E = MD->end_overridden_methods();
12247 I != E; ++I) {
12248 if (!(*MD->begin_overridden_methods())->isDeleted()) {
12249 if (!IssuedDiagnostic) {
12250 Diag(DelLoc, diag::err_deleted_override) << MD->getDeclName();
12251 IssuedDiagnostic = true;
12252 }
12253 Diag((*I)->getLocation(), diag::note_overridden_virtual_function);
12254 }
12255 }
12256 }
12257
Richard Smithb63b6ee2014-01-22 01:43:19 +000012258 // C++11 [basic.start.main]p3:
12259 // A program that defines main as deleted [...] is ill-formed.
12260 if (Fn->isMain())
12261 Diag(DelLoc, diag::err_deleted_main);
12262
Alexis Hunt4a8ea102011-05-06 20:44:56 +000012263 Fn->setDeletedAsWritten();
Sebastian Redlf769df52009-03-24 22:27:57 +000012264}
Sebastian Redl4c018662009-04-27 21:33:24 +000012265
Alexis Hunt5a7fa252011-05-12 06:15:49 +000012266void Sema::SetDeclDefaulted(Decl *Dcl, SourceLocation DefaultLoc) {
Aaron Ballmanf96361e2013-01-16 23:39:10 +000012267 CXXMethodDecl *MD = dyn_cast_or_null<CXXMethodDecl>(Dcl);
Alexis Hunt5a7fa252011-05-12 06:15:49 +000012268
12269 if (MD) {
Alexis Hunt1fb4e762011-05-23 21:07:59 +000012270 if (MD->getParent()->isDependentType()) {
12271 MD->setDefaulted();
12272 MD->setExplicitlyDefaulted();
12273 return;
12274 }
12275
Alexis Hunt5a7fa252011-05-12 06:15:49 +000012276 CXXSpecialMember Member = getSpecialMember(MD);
12277 if (Member == CXXInvalid) {
Eli Friedman84c0143e2013-07-11 23:55:07 +000012278 if (!MD->isInvalidDecl())
12279 Diag(DefaultLoc, diag::err_default_special_members);
Alexis Hunt5a7fa252011-05-12 06:15:49 +000012280 return;
12281 }
12282
12283 MD->setDefaulted();
12284 MD->setExplicitlyDefaulted();
12285
Alexis Hunt61ae8d32011-05-23 23:14:04 +000012286 // If this definition appears within the record, do the checking when
12287 // the record is complete.
12288 const FunctionDecl *Primary = MD;
Richard Smith802c4b72012-08-23 06:16:52 +000012289 if (const FunctionDecl *Pattern = MD->getTemplateInstantiationPattern())
Alexis Hunt61ae8d32011-05-23 23:14:04 +000012290 // Find the uninstantiated declaration that actually had the '= default'
12291 // on it.
Richard Smith802c4b72012-08-23 06:16:52 +000012292 Pattern->isDefined(Primary);
Alexis Hunt61ae8d32011-05-23 23:14:04 +000012293
Richard Smith3901dfe2013-03-27 00:22:47 +000012294 // If the method was defaulted on its first declaration, we will have
12295 // already performed the checking in CheckCompletedCXXClass. Such a
12296 // declaration doesn't trigger an implicit definition.
Alexis Hunt61ae8d32011-05-23 23:14:04 +000012297 if (Primary == Primary->getCanonicalDecl())
Alexis Hunt5a7fa252011-05-12 06:15:49 +000012298 return;
12299
Richard Smithd3b5c9082012-07-27 04:22:15 +000012300 CheckExplicitlyDefaultedSpecialMember(MD);
12301
Richard Smithbd305122012-12-11 01:14:52 +000012302 // The exception specification is needed because we are defining the
12303 // function.
12304 ResolveExceptionSpec(DefaultLoc,
12305 MD->getType()->castAs<FunctionProtoType>());
12306
Benjamin Kramer8bf44352013-07-24 15:28:33 +000012307 if (MD->isInvalidDecl())
12308 return;
12309
Alexis Hunt5a7fa252011-05-12 06:15:49 +000012310 switch (Member) {
Benjamin Kramer8bf44352013-07-24 15:28:33 +000012311 case CXXDefaultConstructor:
12312 DefineImplicitDefaultConstructor(DefaultLoc,
12313 cast<CXXConstructorDecl>(MD));
Alexis Hunt913820d2011-05-13 06:10:58 +000012314 break;
Benjamin Kramer8bf44352013-07-24 15:28:33 +000012315 case CXXCopyConstructor:
12316 DefineImplicitCopyConstructor(DefaultLoc, cast<CXXConstructorDecl>(MD));
Alexis Hunt5a7fa252011-05-12 06:15:49 +000012317 break;
Benjamin Kramer8bf44352013-07-24 15:28:33 +000012318 case CXXCopyAssignment:
12319 DefineImplicitCopyAssignment(DefaultLoc, MD);
Alexis Huntc9a55732011-05-14 05:23:28 +000012320 break;
Benjamin Kramer8bf44352013-07-24 15:28:33 +000012321 case CXXDestructor:
12322 DefineImplicitDestructor(DefaultLoc, cast<CXXDestructorDecl>(MD));
Alexis Huntf91729462011-05-12 22:46:25 +000012323 break;
Benjamin Kramer8bf44352013-07-24 15:28:33 +000012324 case CXXMoveConstructor:
12325 DefineImplicitMoveConstructor(DefaultLoc, cast<CXXConstructorDecl>(MD));
Alexis Hunt119c10e2011-05-25 23:16:36 +000012326 break;
Benjamin Kramer8bf44352013-07-24 15:28:33 +000012327 case CXXMoveAssignment:
12328 DefineImplicitMoveAssignment(DefaultLoc, MD);
Sebastian Redl22653ba2011-08-30 19:58:05 +000012329 break;
Sebastian Redl22653ba2011-08-30 19:58:05 +000012330 case CXXInvalid:
David Blaikie83d382b2011-09-23 05:06:16 +000012331 llvm_unreachable("Invalid special member.");
Alexis Hunt5a7fa252011-05-12 06:15:49 +000012332 }
12333 } else {
12334 Diag(DefaultLoc, diag::err_default_special_members);
12335 }
12336}
12337
Sebastian Redl4c018662009-04-27 21:33:24 +000012338static void SearchForReturnInStmt(Sema &Self, Stmt *S) {
John McCall8322c3a2011-02-13 04:07:26 +000012339 for (Stmt::child_range CI = S->children(); CI; ++CI) {
Sebastian Redl4c018662009-04-27 21:33:24 +000012340 Stmt *SubStmt = *CI;
12341 if (!SubStmt)
12342 continue;
12343 if (isa<ReturnStmt>(SubStmt))
Daniel Dunbar62ee6412012-03-09 18:35:03 +000012344 Self.Diag(SubStmt->getLocStart(),
Sebastian Redl4c018662009-04-27 21:33:24 +000012345 diag::err_return_in_constructor_handler);
12346 if (!isa<Expr>(SubStmt))
12347 SearchForReturnInStmt(Self, SubStmt);
12348 }
12349}
12350
12351void Sema::DiagnoseReturnInConstructorExceptionHandler(CXXTryStmt *TryBlock) {
12352 for (unsigned I = 0, E = TryBlock->getNumHandlers(); I != E; ++I) {
12353 CXXCatchStmt *Handler = TryBlock->getHandler(I);
12354 SearchForReturnInStmt(*this, Handler);
12355 }
12356}
Anders Carlssonf2a2e332009-05-14 01:09:04 +000012357
David Blaikie68f71a32013-01-18 23:03:15 +000012358bool Sema::CheckOverridingFunctionAttributes(const CXXMethodDecl *New,
Aaron Ballman02df2e02012-12-09 17:45:41 +000012359 const CXXMethodDecl *Old) {
12360 const FunctionType *NewFT = New->getType()->getAs<FunctionType>();
12361 const FunctionType *OldFT = Old->getType()->getAs<FunctionType>();
12362
12363 CallingConv NewCC = NewFT->getCallConv(), OldCC = OldFT->getCallConv();
12364
12365 // If the calling conventions match, everything is fine
12366 if (NewCC == OldCC)
12367 return false;
12368
Hans Wennborg2545efe2013-12-11 17:42:11 +000012369 // If the calling conventions mismatch because the new function is static,
12370 // suppress the calling convention mismatch error; the error about static
12371 // function override (err_static_overrides_virtual from
12372 // Sema::CheckFunctionDeclaration) is more clear.
12373 if (New->getStorageClass() == SC_Static)
12374 return false;
12375
Reid Kleckner78af0702013-08-27 23:08:25 +000012376 Diag(New->getLocation(),
12377 diag::err_conflicting_overriding_cc_attributes)
12378 << New->getDeclName() << New->getType() << Old->getType();
12379 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
12380 return true;
Aaron Ballman02df2e02012-12-09 17:45:41 +000012381}
12382
Mike Stump11289f42009-09-09 15:08:12 +000012383bool Sema::CheckOverridingFunctionReturnType(const CXXMethodDecl *New,
Anders Carlssonf2a2e332009-05-14 01:09:04 +000012384 const CXXMethodDecl *Old) {
Alp Toker314cc812014-01-25 16:55:45 +000012385 QualType NewTy = New->getType()->getAs<FunctionType>()->getReturnType();
12386 QualType OldTy = Old->getType()->getAs<FunctionType>()->getReturnType();
Anders Carlssonf2a2e332009-05-14 01:09:04 +000012387
Chandler Carruth284bb2e2010-02-15 11:53:20 +000012388 if (Context.hasSameType(NewTy, OldTy) ||
12389 NewTy->isDependentType() || OldTy->isDependentType())
Anders Carlssonf2a2e332009-05-14 01:09:04 +000012390 return false;
Mike Stump11289f42009-09-09 15:08:12 +000012391
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +000012392 // Check if the return types are covariant
12393 QualType NewClassTy, OldClassTy;
Mike Stump11289f42009-09-09 15:08:12 +000012394
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +000012395 /// Both types must be pointers or references to classes.
Anders Carlsson7caa4cb2010-01-22 17:37:20 +000012396 if (const PointerType *NewPT = NewTy->getAs<PointerType>()) {
12397 if (const PointerType *OldPT = OldTy->getAs<PointerType>()) {
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +000012398 NewClassTy = NewPT->getPointeeType();
12399 OldClassTy = OldPT->getPointeeType();
12400 }
Anders Carlsson7caa4cb2010-01-22 17:37:20 +000012401 } else if (const ReferenceType *NewRT = NewTy->getAs<ReferenceType>()) {
12402 if (const ReferenceType *OldRT = OldTy->getAs<ReferenceType>()) {
12403 if (NewRT->getTypeClass() == OldRT->getTypeClass()) {
12404 NewClassTy = NewRT->getPointeeType();
12405 OldClassTy = OldRT->getPointeeType();
12406 }
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +000012407 }
12408 }
Mike Stump11289f42009-09-09 15:08:12 +000012409
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +000012410 // The return types aren't either both pointers or references to a class type.
12411 if (NewClassTy.isNull()) {
Mike Stump11289f42009-09-09 15:08:12 +000012412 Diag(New->getLocation(),
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +000012413 diag::err_different_return_type_for_overriding_virtual_function)
Alp Tokerd0787eb2014-07-02 01:47:15 +000012414 << New->getDeclName() << NewTy << OldTy
12415 << New->getReturnTypeSourceRange();
12416 Diag(Old->getLocation(), diag::note_overridden_virtual_function)
12417 << Old->getReturnTypeSourceRange();
Mike Stump11289f42009-09-09 15:08:12 +000012418
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +000012419 return true;
12420 }
Anders Carlssonf2a2e332009-05-14 01:09:04 +000012421
Anders Carlssone60365b2009-12-31 18:34:24 +000012422 // C++ [class.virtual]p6:
12423 // If the return type of D::f differs from the return type of B::f, the
12424 // class type in the return type of D::f shall be complete at the point of
12425 // declaration of D::f or shall be the class type D.
Anders Carlsson0c9dd842009-12-31 18:54:35 +000012426 if (const RecordType *RT = NewClassTy->getAs<RecordType>()) {
12427 if (!RT->isBeingDefined() &&
12428 RequireCompleteType(New->getLocation(), NewClassTy,
Douglas Gregor7bfb2d02012-05-04 16:32:21 +000012429 diag::err_covariant_return_incomplete,
12430 New->getDeclName()))
Anders Carlssone60365b2009-12-31 18:34:24 +000012431 return true;
Anders Carlsson0c9dd842009-12-31 18:54:35 +000012432 }
Anders Carlssone60365b2009-12-31 18:34:24 +000012433
Douglas Gregor1b8fe5b72009-11-16 21:35:15 +000012434 if (!Context.hasSameUnqualifiedType(NewClassTy, OldClassTy)) {
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +000012435 // Check if the new class derives from the old class.
12436 if (!IsDerivedFrom(NewClassTy, OldClassTy)) {
Alp Tokerd0787eb2014-07-02 01:47:15 +000012437 Diag(New->getLocation(), diag::err_covariant_return_not_derived)
12438 << New->getDeclName() << NewTy << OldTy
12439 << New->getReturnTypeSourceRange();
12440 Diag(Old->getLocation(), diag::note_overridden_virtual_function)
12441 << Old->getReturnTypeSourceRange();
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +000012442 return true;
12443 }
Mike Stump11289f42009-09-09 15:08:12 +000012444
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +000012445 // Check if we the conversion from derived to base is valid.
Alp Tokerd0787eb2014-07-02 01:47:15 +000012446 if (CheckDerivedToBaseConversion(
12447 NewClassTy, OldClassTy,
12448 diag::err_covariant_return_inaccessible_base,
12449 diag::err_covariant_return_ambiguous_derived_to_base_conv,
12450 New->getLocation(), New->getReturnTypeSourceRange(),
12451 New->getDeclName(), nullptr)) {
John McCallc1465822011-02-14 07:13:47 +000012452 // FIXME: this note won't trigger for delayed access control
12453 // diagnostics, and it's impossible to get an undelayed error
12454 // here from access control during the original parse because
12455 // the ParsingDeclSpec/ParsingDeclarator are still in scope.
Alp Tokerd0787eb2014-07-02 01:47:15 +000012456 Diag(Old->getLocation(), diag::note_overridden_virtual_function)
12457 << Old->getReturnTypeSourceRange();
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +000012458 return true;
12459 }
12460 }
Mike Stump11289f42009-09-09 15:08:12 +000012461
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +000012462 // The qualifiers of the return types must be the same.
Anders Carlsson7caa4cb2010-01-22 17:37:20 +000012463 if (NewTy.getLocalCVRQualifiers() != OldTy.getLocalCVRQualifiers()) {
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +000012464 Diag(New->getLocation(),
12465 diag::err_covariant_return_type_different_qualifications)
Alp Tokerd0787eb2014-07-02 01:47:15 +000012466 << New->getDeclName() << NewTy << OldTy
12467 << New->getReturnTypeSourceRange();
12468 Diag(Old->getLocation(), diag::note_overridden_virtual_function)
12469 << Old->getReturnTypeSourceRange();
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +000012470 return true;
12471 };
Mike Stump11289f42009-09-09 15:08:12 +000012472
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +000012473
12474 // The new class type must have the same or less qualifiers as the old type.
12475 if (NewClassTy.isMoreQualifiedThan(OldClassTy)) {
12476 Diag(New->getLocation(),
12477 diag::err_covariant_return_type_class_type_more_qualified)
Alp Tokerd0787eb2014-07-02 01:47:15 +000012478 << New->getDeclName() << NewTy << OldTy
12479 << New->getReturnTypeSourceRange();
12480 Diag(Old->getLocation(), diag::note_overridden_virtual_function)
12481 << Old->getReturnTypeSourceRange();
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +000012482 return true;
12483 };
Mike Stump11289f42009-09-09 15:08:12 +000012484
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +000012485 return false;
Anders Carlssonf2a2e332009-05-14 01:09:04 +000012486}
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +000012487
Douglas Gregor21920e372009-12-01 17:24:26 +000012488/// \brief Mark the given method pure.
12489///
12490/// \param Method the method to be marked pure.
12491///
12492/// \param InitRange the source range that covers the "0" initializer.
12493bool Sema::CheckPureMethod(CXXMethodDecl *Method, SourceRange InitRange) {
Abramo Bagnaraf2a79d92011-03-12 11:17:06 +000012494 SourceLocation EndLoc = InitRange.getEnd();
12495 if (EndLoc.isValid())
12496 Method->setRangeEnd(EndLoc);
12497
Douglas Gregor21920e372009-12-01 17:24:26 +000012498 if (Method->isVirtual() || Method->getParent()->isDependentContext()) {
12499 Method->setPure();
Douglas Gregor21920e372009-12-01 17:24:26 +000012500 return false;
Abramo Bagnaraf2a79d92011-03-12 11:17:06 +000012501 }
Douglas Gregor21920e372009-12-01 17:24:26 +000012502
12503 if (!Method->isInvalidDecl())
12504 Diag(Method->getLocation(), diag::err_non_virtual_pure)
12505 << Method->getDeclName() << InitRange;
12506 return true;
12507}
12508
Douglas Gregor926410d2012-02-21 02:22:07 +000012509/// \brief Determine whether the given declaration is a static data member.
Benjamin Kramer8bf44352013-07-24 15:28:33 +000012510static bool isStaticDataMember(const Decl *D) {
12511 if (const VarDecl *Var = dyn_cast_or_null<VarDecl>(D))
12512 return Var->isStaticDataMember();
12513
12514 return false;
Douglas Gregor926410d2012-02-21 02:22:07 +000012515}
Benjamin Kramer8bf44352013-07-24 15:28:33 +000012516
John McCall1f4ee7b2009-12-19 09:28:58 +000012517/// ActOnCXXEnterDeclInitializer - Invoked when we are about to parse
12518/// an initializer for the out-of-line declaration 'Dcl'. The scope
12519/// is a fresh scope pushed for just this purpose.
12520///
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +000012521/// After this method is called, according to [C++ 3.4.1p13], if 'Dcl' is a
12522/// static data member of class X, names should be looked up in the scope of
12523/// class X.
John McCall48871652010-08-21 09:40:31 +000012524void Sema::ActOnCXXEnterDeclInitializer(Scope *S, Decl *D) {
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +000012525 // If there is no declaration, there was an error parsing it.
Craig Topperc3ec1492014-05-26 06:22:03 +000012526 if (!D || D->isInvalidDecl())
12527 return;
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +000012528
Richard Smitha2302242013-12-05 07:51:02 +000012529 // We will always have a nested name specifier here, but this declaration
12530 // might not be out of line if the specifier names the current namespace:
12531 // extern int n;
12532 // int ::n = 0;
12533 if (D->isOutOfLine())
12534 EnterDeclaratorContext(S, D->getDeclContext());
12535
Douglas Gregor926410d2012-02-21 02:22:07 +000012536 // If we are parsing the initializer for a static data member, push a
12537 // new expression evaluation context that is associated with this static
12538 // data member.
12539 if (isStaticDataMember(D))
12540 PushExpressionEvaluationContext(PotentiallyEvaluated, D);
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +000012541}
12542
12543/// ActOnCXXExitDeclInitializer - Invoked after we are finished parsing an
John McCall48871652010-08-21 09:40:31 +000012544/// initializer for the out-of-line declaration 'D'.
12545void Sema::ActOnCXXExitDeclInitializer(Scope *S, Decl *D) {
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +000012546 // If there is no declaration, there was an error parsing it.
Craig Topperc3ec1492014-05-26 06:22:03 +000012547 if (!D || D->isInvalidDecl())
12548 return;
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +000012549
Douglas Gregor926410d2012-02-21 02:22:07 +000012550 if (isStaticDataMember(D))
Richard Smitha2302242013-12-05 07:51:02 +000012551 PopExpressionEvaluationContext();
Douglas Gregor926410d2012-02-21 02:22:07 +000012552
Richard Smitha2302242013-12-05 07:51:02 +000012553 if (D->isOutOfLine())
12554 ExitDeclaratorContext(S);
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +000012555}
Douglas Gregor7bab5ff2009-11-25 00:27:52 +000012556
12557/// ActOnCXXConditionDeclarationExpr - Parsed a condition declaration of a
12558/// C++ if/switch/while/for statement.
12559/// e.g: "if (int x = f()) {...}"
John McCall48871652010-08-21 09:40:31 +000012560DeclResult Sema::ActOnCXXConditionDeclaration(Scope *S, Declarator &D) {
Douglas Gregor7bab5ff2009-11-25 00:27:52 +000012561 // C++ 6.4p2:
12562 // The declarator shall not specify a function or an array.
12563 // The type-specifier-seq shall not contain typedef and shall not declare a
12564 // new class or enumeration.
12565 assert(D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef &&
12566 "Parser allowed 'typedef' as storage class of condition decl.");
Argyrios Kyrtzidis8ea7e582011-06-28 03:01:12 +000012567
12568 Decl *Dcl = ActOnDeclarator(S, D);
Douglas Gregor1fe12c92011-07-05 16:13:20 +000012569 if (!Dcl)
12570 return true;
12571
Argyrios Kyrtzidis8ea7e582011-06-28 03:01:12 +000012572 if (isa<FunctionDecl>(Dcl)) { // The declarator shall not specify a function.
12573 Diag(Dcl->getLocation(), diag::err_invalid_use_of_function_type)
Douglas Gregor7bab5ff2009-11-25 00:27:52 +000012574 << D.getSourceRange();
Douglas Gregor1fe12c92011-07-05 16:13:20 +000012575 return true;
Douglas Gregor7bab5ff2009-11-25 00:27:52 +000012576 }
Douglas Gregor7bab5ff2009-11-25 00:27:52 +000012577
Douglas Gregor7bab5ff2009-11-25 00:27:52 +000012578 return Dcl;
12579}
Anders Carlssonf98849e2009-12-02 17:15:43 +000012580
Douglas Gregor4daf6a32011-07-28 19:11:31 +000012581void Sema::LoadExternalVTableUses() {
12582 if (!ExternalSource)
12583 return;
12584
12585 SmallVector<ExternalVTableUse, 4> VTables;
12586 ExternalSource->ReadUsedVTables(VTables);
12587 SmallVector<VTableUse, 4> NewUses;
12588 for (unsigned I = 0, N = VTables.size(); I != N; ++I) {
12589 llvm::DenseMap<CXXRecordDecl *, bool>::iterator Pos
12590 = VTablesUsed.find(VTables[I].Record);
12591 // Even if a definition wasn't required before, it may be required now.
12592 if (Pos != VTablesUsed.end()) {
12593 if (!Pos->second && VTables[I].DefinitionRequired)
12594 Pos->second = true;
12595 continue;
12596 }
12597
12598 VTablesUsed[VTables[I].Record] = VTables[I].DefinitionRequired;
12599 NewUses.push_back(VTableUse(VTables[I].Record, VTables[I].Location));
12600 }
12601
12602 VTableUses.insert(VTableUses.begin(), NewUses.begin(), NewUses.end());
12603}
12604
Douglas Gregor88d292c2010-05-13 16:44:06 +000012605void Sema::MarkVTableUsed(SourceLocation Loc, CXXRecordDecl *Class,
12606 bool DefinitionRequired) {
12607 // Ignore any vtable uses in unevaluated operands or for classes that do
12608 // not have a vtable.
12609 if (!Class->isDynamicClass() || Class->isDependentContext() ||
John McCallf413f5e2013-05-03 00:10:13 +000012610 CurContext->isDependentContext() || isUnevaluatedContext())
Rafael Espindolae7113ca2010-03-10 02:19:29 +000012611 return;
12612
Douglas Gregor88d292c2010-05-13 16:44:06 +000012613 // Try to insert this class into the map.
Douglas Gregor4daf6a32011-07-28 19:11:31 +000012614 LoadExternalVTableUses();
Douglas Gregor88d292c2010-05-13 16:44:06 +000012615 Class = cast<CXXRecordDecl>(Class->getCanonicalDecl());
12616 std::pair<llvm::DenseMap<CXXRecordDecl *, bool>::iterator, bool>
12617 Pos = VTablesUsed.insert(std::make_pair(Class, DefinitionRequired));
12618 if (!Pos.second) {
Daniel Dunbar53217762010-05-25 00:33:13 +000012619 // If we already had an entry, check to see if we are promoting this vtable
12620 // to required a definition. If so, we need to reappend to the VTableUses
12621 // list, since we may have already processed the first entry.
12622 if (DefinitionRequired && !Pos.first->second) {
12623 Pos.first->second = true;
12624 } else {
12625 // Otherwise, we can early exit.
12626 return;
12627 }
Hans Wennborg3d791542014-02-24 15:58:24 +000012628 } else {
12629 // The Microsoft ABI requires that we perform the destructor body
12630 // checks (i.e. operator delete() lookup) when the vtable is marked used, as
12631 // the deleting destructor is emitted with the vtable, not with the
12632 // destructor definition as in the Itanium ABI.
12633 // If it has a definition, we do the check at that point instead.
12634 if (Context.getTargetInfo().getCXXABI().isMicrosoft() &&
12635 Class->hasUserDeclaredDestructor() &&
12636 !Class->getDestructor()->isDefined() &&
12637 !Class->getDestructor()->isDeleted()) {
Reid Kleckner67130862014-06-12 22:39:12 +000012638 CXXDestructorDecl *DD = Class->getDestructor();
12639 ContextRAII SavedContext(*this, DD);
12640 CheckDestructor(DD);
Hans Wennborg3d791542014-02-24 15:58:24 +000012641 }
Douglas Gregor88d292c2010-05-13 16:44:06 +000012642 }
12643
12644 // Local classes need to have their virtual members marked
12645 // immediately. For all other classes, we mark their virtual members
12646 // at the end of the translation unit.
12647 if (Class->isLocalClass())
12648 MarkVirtualMembersReferenced(Loc, Class);
Daniel Dunbar0547ad32010-05-11 21:32:35 +000012649 else
Douglas Gregor88d292c2010-05-13 16:44:06 +000012650 VTableUses.push_back(std::make_pair(Class, Loc));
Douglas Gregor0c4aad12010-05-11 20:24:17 +000012651}
12652
Douglas Gregor88d292c2010-05-13 16:44:06 +000012653bool Sema::DefineUsedVTables() {
Douglas Gregor4daf6a32011-07-28 19:11:31 +000012654 LoadExternalVTableUses();
Douglas Gregor88d292c2010-05-13 16:44:06 +000012655 if (VTableUses.empty())
Anders Carlsson82fccd02009-12-07 08:24:59 +000012656 return false;
Chandler Carruth88bfa5e2010-12-12 21:36:11 +000012657
Douglas Gregor88d292c2010-05-13 16:44:06 +000012658 // Note: The VTableUses vector could grow as a result of marking
12659 // the members of a class as "used", so we check the size each
Richard Smithd3b5c9082012-07-27 04:22:15 +000012660 // time through the loop and prefer indices (which are stable) to
Douglas Gregor88d292c2010-05-13 16:44:06 +000012661 // iterators (which are not).
Douglas Gregor97509692011-04-22 22:25:37 +000012662 bool DefinedAnything = false;
Douglas Gregor88d292c2010-05-13 16:44:06 +000012663 for (unsigned I = 0; I != VTableUses.size(); ++I) {
Daniel Dunbar105ce6d2010-05-25 00:32:58 +000012664 CXXRecordDecl *Class = VTableUses[I].first->getDefinition();
Douglas Gregor88d292c2010-05-13 16:44:06 +000012665 if (!Class)
12666 continue;
12667
12668 SourceLocation Loc = VTableUses[I].second;
12669
Richard Smithd3b5c9082012-07-27 04:22:15 +000012670 bool DefineVTable = true;
12671
Douglas Gregor88d292c2010-05-13 16:44:06 +000012672 // If this class has a key function, but that key function is
12673 // defined in another translation unit, we don't need to emit the
12674 // vtable even though we're using it.
John McCall6bd2a892013-01-25 22:31:03 +000012675 const CXXMethodDecl *KeyFunction = Context.getCurrentKeyFunction(Class);
Argyrios Kyrtzidis36ea3222010-07-07 11:31:19 +000012676 if (KeyFunction && !KeyFunction->hasBody()) {
Rafael Espindolaef7fe1f2013-08-26 23:23:21 +000012677 // The key function is in another translation unit.
12678 DefineVTable = false;
12679 TemplateSpecializationKind TSK =
12680 KeyFunction->getTemplateSpecializationKind();
12681 assert(TSK != TSK_ExplicitInstantiationDefinition &&
12682 TSK != TSK_ImplicitInstantiation &&
12683 "Instantiations don't have key functions");
12684 (void)TSK;
Douglas Gregor88d292c2010-05-13 16:44:06 +000012685 } else if (!KeyFunction) {
12686 // If we have a class with no key function that is the subject
12687 // of an explicit instantiation declaration, suppress the
12688 // vtable; it will live with the explicit instantiation
12689 // definition.
12690 bool IsExplicitInstantiationDeclaration
12691 = Class->getTemplateSpecializationKind()
12692 == TSK_ExplicitInstantiationDeclaration;
Aaron Ballman86c93902014-03-06 23:45:36 +000012693 for (auto R : Class->redecls()) {
Douglas Gregor88d292c2010-05-13 16:44:06 +000012694 TemplateSpecializationKind TSK
Aaron Ballman86c93902014-03-06 23:45:36 +000012695 = cast<CXXRecordDecl>(R)->getTemplateSpecializationKind();
Douglas Gregor88d292c2010-05-13 16:44:06 +000012696 if (TSK == TSK_ExplicitInstantiationDeclaration)
12697 IsExplicitInstantiationDeclaration = true;
12698 else if (TSK == TSK_ExplicitInstantiationDefinition) {
12699 IsExplicitInstantiationDeclaration = false;
12700 break;
12701 }
12702 }
12703
12704 if (IsExplicitInstantiationDeclaration)
Richard Smithd3b5c9082012-07-27 04:22:15 +000012705 DefineVTable = false;
12706 }
12707
12708 // The exception specifications for all virtual members may be needed even
12709 // if we are not providing an authoritative form of the vtable in this TU.
12710 // We may choose to emit it available_externally anyway.
12711 if (!DefineVTable) {
12712 MarkVirtualMemberExceptionSpecsNeeded(Loc, Class);
12713 continue;
Douglas Gregor88d292c2010-05-13 16:44:06 +000012714 }
12715
12716 // Mark all of the virtual members of this class as referenced, so
12717 // that we can build a vtable. Then, tell the AST consumer that a
12718 // vtable for this class is required.
Douglas Gregor97509692011-04-22 22:25:37 +000012719 DefinedAnything = true;
Douglas Gregor88d292c2010-05-13 16:44:06 +000012720 MarkVirtualMembersReferenced(Loc, Class);
12721 CXXRecordDecl *Canonical = cast<CXXRecordDecl>(Class->getCanonicalDecl());
12722 Consumer.HandleVTable(Class, VTablesUsed[Canonical]);
12723
12724 // Optionally warn if we're emitting a weak vtable.
Rafael Espindola3ae00052013-05-13 00:12:11 +000012725 if (Class->isExternallyVisible() &&
Douglas Gregor88d292c2010-05-13 16:44:06 +000012726 Class->getTemplateSpecializationKind() != TSK_ImplicitInstantiation) {
Craig Topperc3ec1492014-05-26 06:22:03 +000012727 const FunctionDecl *KeyFunctionDef = nullptr;
Douglas Gregor34bc6e52011-09-23 19:04:03 +000012728 if (!KeyFunction ||
12729 (KeyFunction->hasBody(KeyFunctionDef) &&
12730 KeyFunctionDef->isInlined()))
David Blaikie72b61202011-12-09 18:32:50 +000012731 Diag(Class->getLocation(), Class->getTemplateSpecializationKind() ==
12732 TSK_ExplicitInstantiationDefinition
12733 ? diag::warn_weak_template_vtable : diag::warn_weak_vtable)
12734 << Class;
Douglas Gregor88d292c2010-05-13 16:44:06 +000012735 }
Anders Carlssonf98849e2009-12-02 17:15:43 +000012736 }
Douglas Gregor88d292c2010-05-13 16:44:06 +000012737 VTableUses.clear();
12738
Douglas Gregor97509692011-04-22 22:25:37 +000012739 return DefinedAnything;
Anders Carlssonf98849e2009-12-02 17:15:43 +000012740}
Anders Carlsson82fccd02009-12-07 08:24:59 +000012741
Richard Smithd3b5c9082012-07-27 04:22:15 +000012742void Sema::MarkVirtualMemberExceptionSpecsNeeded(SourceLocation Loc,
12743 const CXXRecordDecl *RD) {
Aaron Ballman2b124d12014-03-13 16:36:16 +000012744 for (const auto *I : RD->methods())
12745 if (I->isVirtual() && !I->isPure())
12746 ResolveExceptionSpec(Loc, I->getType()->castAs<FunctionProtoType>());
Richard Smithd3b5c9082012-07-27 04:22:15 +000012747}
12748
Rafael Espindola5b334082010-03-26 00:36:59 +000012749void Sema::MarkVirtualMembersReferenced(SourceLocation Loc,
12750 const CXXRecordDecl *RD) {
Richard Smith4ff9ff92012-07-07 06:59:51 +000012751 // Mark all functions which will appear in RD's vtable as used.
12752 CXXFinalOverriderMap FinalOverriders;
12753 RD->getFinalOverriders(FinalOverriders);
12754 for (CXXFinalOverriderMap::const_iterator I = FinalOverriders.begin(),
12755 E = FinalOverriders.end();
12756 I != E; ++I) {
12757 for (OverridingMethods::const_iterator OI = I->second.begin(),
12758 OE = I->second.end();
12759 OI != OE; ++OI) {
12760 assert(OI->second.size() > 0 && "no final overrider");
12761 CXXMethodDecl *Overrider = OI->second.front().Method;
Anders Carlsson82fccd02009-12-07 08:24:59 +000012762
Richard Smith4ff9ff92012-07-07 06:59:51 +000012763 // C++ [basic.def.odr]p2:
12764 // [...] A virtual member function is used if it is not pure. [...]
12765 if (!Overrider->isPure())
12766 MarkFunctionReferenced(Loc, Overrider);
12767 }
Anders Carlsson82fccd02009-12-07 08:24:59 +000012768 }
Rafael Espindola5b334082010-03-26 00:36:59 +000012769
12770 // Only classes that have virtual bases need a VTT.
12771 if (RD->getNumVBases() == 0)
12772 return;
12773
Aaron Ballman574705e2014-03-13 15:41:46 +000012774 for (const auto &I : RD->bases()) {
Rafael Espindola5b334082010-03-26 00:36:59 +000012775 const CXXRecordDecl *Base =
Aaron Ballman574705e2014-03-13 15:41:46 +000012776 cast<CXXRecordDecl>(I.getType()->getAs<RecordType>()->getDecl());
Rafael Espindola5b334082010-03-26 00:36:59 +000012777 if (Base->getNumVBases() == 0)
12778 continue;
12779 MarkVirtualMembersReferenced(Loc, Base);
12780 }
Anders Carlsson82fccd02009-12-07 08:24:59 +000012781}
Fariborz Jahanianc83726e2010-04-28 16:11:27 +000012782
12783/// SetIvarInitializers - This routine builds initialization ASTs for the
12784/// Objective-C implementation whose ivars need be initialized.
12785void Sema::SetIvarInitializers(ObjCImplementationDecl *ObjCImplementation) {
David Blaikiebbafb8a2012-03-11 07:00:24 +000012786 if (!getLangOpts().CPlusPlus)
Fariborz Jahanianc83726e2010-04-28 16:11:27 +000012787 return;
Fariborz Jahaniana50b3a22010-08-20 21:21:08 +000012788 if (ObjCInterfaceDecl *OID = ObjCImplementation->getClassInterface()) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +000012789 SmallVector<ObjCIvarDecl*, 8> ivars;
Fariborz Jahanianc83726e2010-04-28 16:11:27 +000012790 CollectIvarsToConstructOrDestruct(OID, ivars);
12791 if (ivars.empty())
12792 return;
Chris Lattner0e62c1c2011-07-23 10:55:15 +000012793 SmallVector<CXXCtorInitializer*, 32> AllToInit;
Fariborz Jahanianc83726e2010-04-28 16:11:27 +000012794 for (unsigned i = 0; i < ivars.size(); i++) {
12795 FieldDecl *Field = ivars[i];
Douglas Gregor527786e2010-05-20 02:24:22 +000012796 if (Field->isInvalidDecl())
12797 continue;
12798
Alexis Hunt1d792652011-01-08 20:30:50 +000012799 CXXCtorInitializer *Member;
Fariborz Jahanianc83726e2010-04-28 16:11:27 +000012800 InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field);
12801 InitializationKind InitKind =
12802 InitializationKind::CreateDefault(ObjCImplementation->getLocation());
Dmitri Gribenko78852e92013-05-05 20:40:26 +000012803
12804 InitializationSequence InitSeq(*this, InitEntity, InitKind, None);
12805 ExprResult MemberInit =
12806 InitSeq.Perform(*this, InitEntity, InitKind, None);
Douglas Gregora40433a2010-12-07 00:41:46 +000012807 MemberInit = MaybeCreateExprWithCleanups(MemberInit);
Fariborz Jahanianc83726e2010-04-28 16:11:27 +000012808 // Note, MemberInit could actually come back empty if no initialization
12809 // is required (e.g., because it would call a trivial default constructor)
12810 if (!MemberInit.get() || MemberInit.isInvalid())
12811 continue;
John McCallacf0ee52010-10-08 02:01:28 +000012812
Fariborz Jahanianc83726e2010-04-28 16:11:27 +000012813 Member =
Alexis Hunt1d792652011-01-08 20:30:50 +000012814 new (Context) CXXCtorInitializer(Context, Field, SourceLocation(),
12815 SourceLocation(),
Nikola Smiljanic01a75982014-05-29 10:55:11 +000012816 MemberInit.getAs<Expr>(),
Alexis Hunt1d792652011-01-08 20:30:50 +000012817 SourceLocation());
Fariborz Jahanianc83726e2010-04-28 16:11:27 +000012818 AllToInit.push_back(Member);
Douglas Gregor527786e2010-05-20 02:24:22 +000012819
12820 // Be sure that the destructor is accessible and is marked as referenced.
12821 if (const RecordType *RecordTy
12822 = Context.getBaseElementType(Field->getType())
12823 ->getAs<RecordType>()) {
12824 CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl());
Douglas Gregore71edda2010-07-01 22:47:18 +000012825 if (CXXDestructorDecl *Destructor = LookupDestructor(RD)) {
Eli Friedmanfa0df832012-02-02 03:46:19 +000012826 MarkFunctionReferenced(Field->getLocation(), Destructor);
Douglas Gregor527786e2010-05-20 02:24:22 +000012827 CheckDestructorAccess(Field->getLocation(), Destructor,
12828 PDiag(diag::err_access_dtor_ivar)
12829 << Context.getBaseElementType(Field->getType()));
12830 }
12831 }
Fariborz Jahanianc83726e2010-04-28 16:11:27 +000012832 }
12833 ObjCImplementation->setIvarInitializers(Context,
12834 AllToInit.data(), AllToInit.size());
12835 }
12836}
Alexis Hunt6118d662011-05-04 05:57:24 +000012837
Alexis Hunt27a761d2011-05-04 23:29:54 +000012838static
12839void DelegatingCycleHelper(CXXConstructorDecl* Ctor,
12840 llvm::SmallSet<CXXConstructorDecl*, 4> &Valid,
12841 llvm::SmallSet<CXXConstructorDecl*, 4> &Invalid,
12842 llvm::SmallSet<CXXConstructorDecl*, 4> &Current,
12843 Sema &S) {
Alexis Hunt27a761d2011-05-04 23:29:54 +000012844 if (Ctor->isInvalidDecl())
12845 return;
12846
Richard Smith802c4b72012-08-23 06:16:52 +000012847 CXXConstructorDecl *Target = Ctor->getTargetConstructor();
12848
12849 // Target may not be determinable yet, for instance if this is a dependent
12850 // call in an uninstantiated template.
12851 if (Target) {
Craig Topperc3ec1492014-05-26 06:22:03 +000012852 const FunctionDecl *FNTarget = nullptr;
Richard Smith802c4b72012-08-23 06:16:52 +000012853 (void)Target->hasBody(FNTarget);
12854 Target = const_cast<CXXConstructorDecl*>(
12855 cast_or_null<CXXConstructorDecl>(FNTarget));
12856 }
Alexis Hunt27a761d2011-05-04 23:29:54 +000012857
12858 CXXConstructorDecl *Canonical = Ctor->getCanonicalDecl(),
12859 // Avoid dereferencing a null pointer here.
Craig Topperc3ec1492014-05-26 06:22:03 +000012860 *TCanonical = Target? Target->getCanonicalDecl() : nullptr;
Alexis Hunt27a761d2011-05-04 23:29:54 +000012861
12862 if (!Current.insert(Canonical))
12863 return;
12864
12865 // We know that beyond here, we aren't chaining into a cycle.
12866 if (!Target || !Target->isDelegatingConstructor() ||
12867 Target->isInvalidDecl() || Valid.count(TCanonical)) {
Benjamin Kramer8bf44352013-07-24 15:28:33 +000012868 Valid.insert(Current.begin(), Current.end());
Alexis Hunt27a761d2011-05-04 23:29:54 +000012869 Current.clear();
12870 // We've hit a cycle.
12871 } else if (TCanonical == Canonical || Invalid.count(TCanonical) ||
12872 Current.count(TCanonical)) {
12873 // If we haven't diagnosed this cycle yet, do so now.
12874 if (!Invalid.count(TCanonical)) {
12875 S.Diag((*Ctor->init_begin())->getSourceLocation(),
Alexis Hunte2622992011-05-05 00:05:47 +000012876 diag::warn_delegating_ctor_cycle)
Alexis Hunt27a761d2011-05-04 23:29:54 +000012877 << Ctor;
12878
Richard Smith802c4b72012-08-23 06:16:52 +000012879 // Don't add a note for a function delegating directly to itself.
Alexis Hunt27a761d2011-05-04 23:29:54 +000012880 if (TCanonical != Canonical)
12881 S.Diag(Target->getLocation(), diag::note_it_delegates_to);
12882
12883 CXXConstructorDecl *C = Target;
12884 while (C->getCanonicalDecl() != Canonical) {
Craig Topperc3ec1492014-05-26 06:22:03 +000012885 const FunctionDecl *FNTarget = nullptr;
Alexis Hunt27a761d2011-05-04 23:29:54 +000012886 (void)C->getTargetConstructor()->hasBody(FNTarget);
12887 assert(FNTarget && "Ctor cycle through bodiless function");
12888
Richard Smith802c4b72012-08-23 06:16:52 +000012889 C = const_cast<CXXConstructorDecl*>(
12890 cast<CXXConstructorDecl>(FNTarget));
Alexis Hunt27a761d2011-05-04 23:29:54 +000012891 S.Diag(C->getLocation(), diag::note_which_delegates_to);
12892 }
12893 }
12894
Benjamin Kramer8bf44352013-07-24 15:28:33 +000012895 Invalid.insert(Current.begin(), Current.end());
Alexis Hunt27a761d2011-05-04 23:29:54 +000012896 Current.clear();
12897 } else {
12898 DelegatingCycleHelper(Target, Valid, Invalid, Current, S);
12899 }
12900}
12901
12902
Alexis Hunt6118d662011-05-04 05:57:24 +000012903void Sema::CheckDelegatingCtorCycles() {
12904 llvm::SmallSet<CXXConstructorDecl*, 4> Valid, Invalid, Current;
12905
Douglas Gregorbae31202011-07-27 21:57:17 +000012906 for (DelegatingCtorDeclsType::iterator
12907 I = DelegatingCtorDecls.begin(ExternalSource),
Alexis Hunt27a761d2011-05-04 23:29:54 +000012908 E = DelegatingCtorDecls.end();
Richard Smith802c4b72012-08-23 06:16:52 +000012909 I != E; ++I)
12910 DelegatingCycleHelper(*I, Valid, Invalid, Current, *this);
Alexis Hunt27a761d2011-05-04 23:29:54 +000012911
Benjamin Kramer8bf44352013-07-24 15:28:33 +000012912 for (llvm::SmallSet<CXXConstructorDecl *, 4>::iterator CI = Invalid.begin(),
12913 CE = Invalid.end();
12914 CI != CE; ++CI)
Alexis Hunt27a761d2011-05-04 23:29:54 +000012915 (*CI)->setInvalidDecl();
Alexis Hunt6118d662011-05-04 05:57:24 +000012916}
Peter Collingbourne7277fe82011-10-02 23:49:40 +000012917
Douglas Gregor3024f072012-04-16 07:05:22 +000012918namespace {
12919 /// \brief AST visitor that finds references to the 'this' expression.
12920 class FindCXXThisExpr : public RecursiveASTVisitor<FindCXXThisExpr> {
12921 Sema &S;
12922
12923 public:
12924 explicit FindCXXThisExpr(Sema &S) : S(S) { }
12925
12926 bool VisitCXXThisExpr(CXXThisExpr *E) {
12927 S.Diag(E->getLocation(), diag::err_this_static_member_func)
12928 << E->isImplicit();
12929 return false;
12930 }
12931 };
12932}
12933
12934bool Sema::checkThisInStaticMemberFunctionType(CXXMethodDecl *Method) {
12935 TypeSourceInfo *TSInfo = Method->getTypeSourceInfo();
12936 if (!TSInfo)
12937 return false;
12938
12939 TypeLoc TL = TSInfo->getTypeLoc();
David Blaikie6adc78e2013-02-18 22:06:02 +000012940 FunctionProtoTypeLoc ProtoTL = TL.getAs<FunctionProtoTypeLoc>();
Douglas Gregor3024f072012-04-16 07:05:22 +000012941 if (!ProtoTL)
12942 return false;
12943
12944 // C++11 [expr.prim.general]p3:
12945 // [The expression this] shall not appear before the optional
12946 // cv-qualifier-seq and it shall not appear within the declaration of a
12947 // static member function (although its type and value category are defined
12948 // within a static member function as they are within a non-static member
12949 // function). [ Note: this is because declaration matching does not occur
NAKAMURA Takumi40edb2a2012-04-21 09:40:04 +000012950 // until the complete declarator is known. - end note ]
David Blaikie6adc78e2013-02-18 22:06:02 +000012951 const FunctionProtoType *Proto = ProtoTL.getTypePtr();
Douglas Gregor3024f072012-04-16 07:05:22 +000012952 FindCXXThisExpr Finder(*this);
12953
12954 // If the return type came after the cv-qualifier-seq, check it now.
12955 if (Proto->hasTrailingReturn() &&
Alp Toker42a16a62014-01-25 23:51:36 +000012956 !Finder.TraverseTypeLoc(ProtoTL.getReturnLoc()))
Douglas Gregor3024f072012-04-16 07:05:22 +000012957 return true;
12958
12959 // Check the exception specification.
Douglas Gregor433e0532012-04-16 18:27:27 +000012960 if (checkThisInStaticMemberFunctionExceptionSpec(Method))
12961 return true;
12962
12963 return checkThisInStaticMemberFunctionAttributes(Method);
12964}
12965
12966bool Sema::checkThisInStaticMemberFunctionExceptionSpec(CXXMethodDecl *Method) {
12967 TypeSourceInfo *TSInfo = Method->getTypeSourceInfo();
12968 if (!TSInfo)
12969 return false;
12970
12971 TypeLoc TL = TSInfo->getTypeLoc();
David Blaikie6adc78e2013-02-18 22:06:02 +000012972 FunctionProtoTypeLoc ProtoTL = TL.getAs<FunctionProtoTypeLoc>();
Douglas Gregor433e0532012-04-16 18:27:27 +000012973 if (!ProtoTL)
12974 return false;
12975
David Blaikie6adc78e2013-02-18 22:06:02 +000012976 const FunctionProtoType *Proto = ProtoTL.getTypePtr();
Douglas Gregor433e0532012-04-16 18:27:27 +000012977 FindCXXThisExpr Finder(*this);
12978
Douglas Gregor3024f072012-04-16 07:05:22 +000012979 switch (Proto->getExceptionSpecType()) {
Richard Smithf623c962012-04-17 00:58:00 +000012980 case EST_Uninstantiated:
Richard Smithd3b5c9082012-07-27 04:22:15 +000012981 case EST_Unevaluated:
Douglas Gregor3024f072012-04-16 07:05:22 +000012982 case EST_BasicNoexcept:
Douglas Gregor3024f072012-04-16 07:05:22 +000012983 case EST_DynamicNone:
12984 case EST_MSAny:
12985 case EST_None:
12986 break;
Douglas Gregor433e0532012-04-16 18:27:27 +000012987
Douglas Gregor3024f072012-04-16 07:05:22 +000012988 case EST_ComputedNoexcept:
12989 if (!Finder.TraverseStmt(Proto->getNoexceptExpr()))
12990 return true;
Douglas Gregor433e0532012-04-16 18:27:27 +000012991
Douglas Gregor3024f072012-04-16 07:05:22 +000012992 case EST_Dynamic:
Aaron Ballmanb088fbe2014-03-17 15:38:09 +000012993 for (const auto &E : Proto->exceptions()) {
12994 if (!Finder.TraverseType(E))
Douglas Gregor3024f072012-04-16 07:05:22 +000012995 return true;
12996 }
12997 break;
12998 }
Douglas Gregor433e0532012-04-16 18:27:27 +000012999
13000 return false;
Douglas Gregor3024f072012-04-16 07:05:22 +000013001}
13002
13003bool Sema::checkThisInStaticMemberFunctionAttributes(CXXMethodDecl *Method) {
13004 FindCXXThisExpr Finder(*this);
13005
13006 // Check attributes.
Aaron Ballmanb97112e2014-03-08 22:19:01 +000013007 for (const auto *A : Method->attrs()) {
Douglas Gregor3024f072012-04-16 07:05:22 +000013008 // FIXME: This should be emitted by tblgen.
Craig Topperc3ec1492014-05-26 06:22:03 +000013009 Expr *Arg = nullptr;
Douglas Gregor3024f072012-04-16 07:05:22 +000013010 ArrayRef<Expr *> Args;
Aaron Ballmanb97112e2014-03-08 22:19:01 +000013011 if (const auto *G = dyn_cast<GuardedByAttr>(A))
Douglas Gregor3024f072012-04-16 07:05:22 +000013012 Arg = G->getArg();
Aaron Ballmanb97112e2014-03-08 22:19:01 +000013013 else if (const auto *G = dyn_cast<PtGuardedByAttr>(A))
Douglas Gregor3024f072012-04-16 07:05:22 +000013014 Arg = G->getArg();
Aaron Ballmanb97112e2014-03-08 22:19:01 +000013015 else if (const auto *AA = dyn_cast<AcquiredAfterAttr>(A))
Craig Topper5fc8fc22014-08-27 06:28:36 +000013016 Args = llvm::makeArrayRef(AA->args_begin(), AA->args_size());
Aaron Ballmanb97112e2014-03-08 22:19:01 +000013017 else if (const auto *AB = dyn_cast<AcquiredBeforeAttr>(A))
Craig Topper5fc8fc22014-08-27 06:28:36 +000013018 Args = llvm::makeArrayRef(AB->args_begin(), AB->args_size());
Aaron Ballmanb97112e2014-03-08 22:19:01 +000013019 else if (const auto *ETLF = dyn_cast<ExclusiveTrylockFunctionAttr>(A)) {
Douglas Gregor3024f072012-04-16 07:05:22 +000013020 Arg = ETLF->getSuccessValue();
Craig Topper5fc8fc22014-08-27 06:28:36 +000013021 Args = llvm::makeArrayRef(ETLF->args_begin(), ETLF->args_size());
Aaron Ballmanb97112e2014-03-08 22:19:01 +000013022 } else if (const auto *STLF = dyn_cast<SharedTrylockFunctionAttr>(A)) {
Douglas Gregor3024f072012-04-16 07:05:22 +000013023 Arg = STLF->getSuccessValue();
Craig Topper5fc8fc22014-08-27 06:28:36 +000013024 Args = llvm::makeArrayRef(STLF->args_begin(), STLF->args_size());
Aaron Ballman18d85ae2014-03-20 16:02:49 +000013025 } else if (const auto *LR = dyn_cast<LockReturnedAttr>(A))
Douglas Gregor3024f072012-04-16 07:05:22 +000013026 Arg = LR->getArg();
Aaron Ballmanb97112e2014-03-08 22:19:01 +000013027 else if (const auto *LE = dyn_cast<LocksExcludedAttr>(A))
Craig Topper5fc8fc22014-08-27 06:28:36 +000013028 Args = llvm::makeArrayRef(LE->args_begin(), LE->args_size());
Aaron Ballmanb97112e2014-03-08 22:19:01 +000013029 else if (const auto *RC = dyn_cast<RequiresCapabilityAttr>(A))
Craig Topper5fc8fc22014-08-27 06:28:36 +000013030 Args = llvm::makeArrayRef(RC->args_begin(), RC->args_size());
Aaron Ballmanb97112e2014-03-08 22:19:01 +000013031 else if (const auto *AC = dyn_cast<AcquireCapabilityAttr>(A))
Craig Topper5fc8fc22014-08-27 06:28:36 +000013032 Args = llvm::makeArrayRef(AC->args_begin(), AC->args_size());
Aaron Ballmanb97112e2014-03-08 22:19:01 +000013033 else if (const auto *AC = dyn_cast<TryAcquireCapabilityAttr>(A))
Craig Topper5fc8fc22014-08-27 06:28:36 +000013034 Args = llvm::makeArrayRef(AC->args_begin(), AC->args_size());
Aaron Ballmanb97112e2014-03-08 22:19:01 +000013035 else if (const auto *RC = dyn_cast<ReleaseCapabilityAttr>(A))
Craig Topper5fc8fc22014-08-27 06:28:36 +000013036 Args = llvm::makeArrayRef(RC->args_begin(), RC->args_size());
Douglas Gregor3024f072012-04-16 07:05:22 +000013037
13038 if (Arg && !Finder.TraverseStmt(Arg))
13039 return true;
13040
13041 for (unsigned I = 0, N = Args.size(); I != N; ++I) {
13042 if (!Finder.TraverseStmt(Args[I]))
13043 return true;
13044 }
13045 }
13046
13047 return false;
13048}
13049
Douglas Gregor433e0532012-04-16 18:27:27 +000013050void
13051Sema::checkExceptionSpecification(ExceptionSpecificationType EST,
13052 ArrayRef<ParsedType> DynamicExceptions,
13053 ArrayRef<SourceRange> DynamicExceptionRanges,
13054 Expr *NoexceptExpr,
Dmitri Gribenkof8579502013-01-12 19:30:44 +000013055 SmallVectorImpl<QualType> &Exceptions,
Richard Smith8acb4282014-07-31 21:57:55 +000013056 FunctionProtoType::ExceptionSpecInfo &ESI) {
Douglas Gregor433e0532012-04-16 18:27:27 +000013057 Exceptions.clear();
Richard Smith8acb4282014-07-31 21:57:55 +000013058 ESI.Type = EST;
Douglas Gregor433e0532012-04-16 18:27:27 +000013059 if (EST == EST_Dynamic) {
13060 Exceptions.reserve(DynamicExceptions.size());
13061 for (unsigned ei = 0, ee = DynamicExceptions.size(); ei != ee; ++ei) {
13062 // FIXME: Preserve type source info.
13063 QualType ET = GetTypeFromParser(DynamicExceptions[ei]);
13064
13065 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
13066 collectUnexpandedParameterPacks(ET, Unexpanded);
13067 if (!Unexpanded.empty()) {
13068 DiagnoseUnexpandedParameterPacks(DynamicExceptionRanges[ei].getBegin(),
13069 UPPC_ExceptionType,
13070 Unexpanded);
13071 continue;
13072 }
13073
13074 // Check that the type is valid for an exception spec, and
13075 // drop it if not.
13076 if (!CheckSpecifiedExceptionType(ET, DynamicExceptionRanges[ei]))
13077 Exceptions.push_back(ET);
13078 }
Richard Smith8acb4282014-07-31 21:57:55 +000013079 ESI.Exceptions = Exceptions;
Douglas Gregor433e0532012-04-16 18:27:27 +000013080 return;
13081 }
Richard Smith8acb4282014-07-31 21:57:55 +000013082
Douglas Gregor433e0532012-04-16 18:27:27 +000013083 if (EST == EST_ComputedNoexcept) {
13084 // If an error occurred, there's no expression here.
13085 if (NoexceptExpr) {
13086 assert((NoexceptExpr->isTypeDependent() ||
13087 NoexceptExpr->getType()->getCanonicalTypeUnqualified() ==
13088 Context.BoolTy) &&
13089 "Parser should have made sure that the expression is boolean");
13090 if (NoexceptExpr && DiagnoseUnexpandedParameterPack(NoexceptExpr)) {
Richard Smith8acb4282014-07-31 21:57:55 +000013091 ESI.Type = EST_BasicNoexcept;
Douglas Gregor433e0532012-04-16 18:27:27 +000013092 return;
13093 }
Richard Smith8acb4282014-07-31 21:57:55 +000013094
Douglas Gregor433e0532012-04-16 18:27:27 +000013095 if (!NoexceptExpr->isValueDependent())
Craig Topperc3ec1492014-05-26 06:22:03 +000013096 NoexceptExpr = VerifyIntegerConstantExpression(NoexceptExpr, nullptr,
Douglas Gregore2b37442012-05-04 22:38:52 +000013097 diag::err_noexcept_needs_constant_expression,
Nikola Smiljanic01a75982014-05-29 10:55:11 +000013098 /*AllowFold*/ false).get();
Richard Smith8acb4282014-07-31 21:57:55 +000013099 ESI.NoexceptExpr = NoexceptExpr;
Douglas Gregor433e0532012-04-16 18:27:27 +000013100 }
13101 return;
13102 }
13103}
13104
Peter Collingbourne7277fe82011-10-02 23:49:40 +000013105/// IdentifyCUDATarget - Determine the CUDA compilation target for this function
13106Sema::CUDAFunctionTarget Sema::IdentifyCUDATarget(const FunctionDecl *D) {
13107 // Implicitly declared functions (e.g. copy constructors) are
13108 // __host__ __device__
13109 if (D->isImplicit())
13110 return CFT_HostDevice;
13111
13112 if (D->hasAttr<CUDAGlobalAttr>())
13113 return CFT_Global;
13114
13115 if (D->hasAttr<CUDADeviceAttr>()) {
13116 if (D->hasAttr<CUDAHostAttr>())
13117 return CFT_HostDevice;
Benjamin Kramer8bf44352013-07-24 15:28:33 +000013118 return CFT_Device;
Peter Collingbourne7277fe82011-10-02 23:49:40 +000013119 }
13120
13121 return CFT_Host;
13122}
13123
13124bool Sema::CheckCUDATarget(CUDAFunctionTarget CallerTarget,
13125 CUDAFunctionTarget CalleeTarget) {
13126 // CUDA B.1.1 "The __device__ qualifier declares a function that is...
13127 // Callable from the device only."
13128 if (CallerTarget == CFT_Host && CalleeTarget == CFT_Device)
13129 return true;
13130
13131 // CUDA B.1.2 "The __global__ qualifier declares a function that is...
13132 // Callable from the host only."
13133 // CUDA B.1.3 "The __host__ qualifier declares a function that is...
13134 // Callable from the host only."
13135 if ((CallerTarget == CFT_Device || CallerTarget == CFT_Global) &&
13136 (CalleeTarget == CFT_Host || CalleeTarget == CFT_Global))
13137 return true;
13138
13139 if (CallerTarget == CFT_HostDevice && CalleeTarget != CFT_HostDevice)
13140 return true;
13141
13142 return false;
13143}
John McCall5e77d762013-04-16 07:28:30 +000013144
13145/// HandleMSProperty - Analyze a __delcspec(property) field of a C++ class.
13146///
13147MSPropertyDecl *Sema::HandleMSProperty(Scope *S, RecordDecl *Record,
13148 SourceLocation DeclStart,
13149 Declarator &D, Expr *BitWidth,
13150 InClassInitStyle InitStyle,
13151 AccessSpecifier AS,
13152 AttributeList *MSPropertyAttr) {
13153 IdentifierInfo *II = D.getIdentifier();
13154 if (!II) {
13155 Diag(DeclStart, diag::err_anonymous_property);
Craig Topperc3ec1492014-05-26 06:22:03 +000013156 return nullptr;
John McCall5e77d762013-04-16 07:28:30 +000013157 }
13158 SourceLocation Loc = D.getIdentifierLoc();
13159
13160 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
13161 QualType T = TInfo->getType();
13162 if (getLangOpts().CPlusPlus) {
13163 CheckExtraCXXDefaultArguments(D);
13164
13165 if (DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo,
13166 UPPC_DataMemberType)) {
13167 D.setInvalidType();
13168 T = Context.IntTy;
13169 TInfo = Context.getTrivialTypeSourceInfo(T, Loc);
13170 }
13171 }
13172
13173 DiagnoseFunctionSpecifiers(D.getDeclSpec());
13174
13175 if (DeclSpec::TSCS TSCS = D.getDeclSpec().getThreadStorageClassSpec())
13176 Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(),
13177 diag::err_invalid_thread)
13178 << DeclSpec::getSpecifierName(TSCS);
13179
13180 // Check to see if this name was declared as a member previously
Craig Topperc3ec1492014-05-26 06:22:03 +000013181 NamedDecl *PrevDecl = nullptr;
John McCall5e77d762013-04-16 07:28:30 +000013182 LookupResult Previous(*this, II, Loc, LookupMemberName, ForRedeclaration);
13183 LookupName(Previous, S);
13184 switch (Previous.getResultKind()) {
13185 case LookupResult::Found:
13186 case LookupResult::FoundUnresolvedValue:
13187 PrevDecl = Previous.getAsSingle<NamedDecl>();
13188 break;
13189
13190 case LookupResult::FoundOverloaded:
13191 PrevDecl = Previous.getRepresentativeDecl();
13192 break;
13193
13194 case LookupResult::NotFound:
13195 case LookupResult::NotFoundInCurrentInstantiation:
13196 case LookupResult::Ambiguous:
13197 break;
13198 }
13199
13200 if (PrevDecl && PrevDecl->isTemplateParameter()) {
13201 // Maybe we will complain about the shadowed template parameter.
13202 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
13203 // Just pretend that we didn't see the previous declaration.
Craig Topperc3ec1492014-05-26 06:22:03 +000013204 PrevDecl = nullptr;
John McCall5e77d762013-04-16 07:28:30 +000013205 }
13206
13207 if (PrevDecl && !isDeclInScope(PrevDecl, Record, S))
Craig Topperc3ec1492014-05-26 06:22:03 +000013208 PrevDecl = nullptr;
John McCall5e77d762013-04-16 07:28:30 +000013209
13210 SourceLocation TSSL = D.getLocStart();
John McCall5e77d762013-04-16 07:28:30 +000013211 const AttributeList::PropertyData &Data = MSPropertyAttr->getPropertyData();
Richard Smithf7981722013-11-22 09:01:48 +000013212 MSPropertyDecl *NewPD = MSPropertyDecl::Create(
13213 Context, Record, Loc, II, T, TInfo, TSSL, Data.GetterId, Data.SetterId);
John McCall5e77d762013-04-16 07:28:30 +000013214 ProcessDeclAttributes(TUScope, NewPD, D);
13215 NewPD->setAccess(AS);
13216
13217 if (NewPD->isInvalidDecl())
13218 Record->setInvalidDecl();
13219
13220 if (D.getDeclSpec().isModulePrivateSpecified())
13221 NewPD->setModulePrivate();
13222
13223 if (NewPD->isInvalidDecl() && PrevDecl) {
13224 // Don't introduce NewFD into scope; there's already something
13225 // with the same name in the same scope.
13226 } else if (II) {
13227 PushOnScopeChains(NewPD, S);
13228 } else
13229 Record->addDecl(NewPD);
13230
13231 return NewPD;
13232}