blob: 646ac75dd3f56616584652227ad819453d2d5ac3 [file] [log] [blame]
Chris Lattner3d1cee32008-04-08 05:04:30 +00001//===------ SemaDeclCXX.cpp - Semantic Analysis for C++ Declarations ------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements semantic analysis for C++ declarations.
11//
12//===----------------------------------------------------------------------===//
13
14#include "Sema.h"
Argyrios Kyrtzidisa4755c62008-08-09 00:58:37 +000015#include "clang/AST/ASTConsumer.h"
Douglas Gregore37ac4f2008-04-13 21:30:24 +000016#include "clang/AST/ASTContext.h"
Douglas Gregora8f32e02009-10-06 17:59:45 +000017#include "clang/AST/CXXInheritance.h"
Anders Carlsson8211eff2009-03-24 01:19:16 +000018#include "clang/AST/DeclVisitor.h"
Douglas Gregor02189362008-10-22 21:13:31 +000019#include "clang/AST/TypeOrdering.h"
Chris Lattner8123a952008-04-10 02:22:51 +000020#include "clang/AST/StmtVisitor.h"
Anders Carlssonb7906612009-08-26 23:45:07 +000021#include "clang/Basic/PartialDiagnostic.h"
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +000022#include "clang/Lex/Preprocessor.h"
Daniel Dunbar12bc6922008-08-11 03:27:53 +000023#include "clang/Parse/DeclSpec.h"
Douglas Gregor3fc749d2008-12-23 00:26:44 +000024#include "llvm/ADT/STLExtras.h"
Chris Lattner8123a952008-04-10 02:22:51 +000025#include "llvm/Support/Compiler.h"
Douglas Gregor8e9bebd2008-10-21 16:13:35 +000026#include <algorithm> // for std::equal
Douglas Gregorf8268ae2008-10-22 17:49:05 +000027#include <map>
Douglas Gregora8f32e02009-10-06 17:59:45 +000028#include <set>
Chris Lattner3d1cee32008-04-08 05:04:30 +000029
30using namespace clang;
31
Chris Lattner8123a952008-04-10 02:22:51 +000032//===----------------------------------------------------------------------===//
33// CheckDefaultArgumentVisitor
34//===----------------------------------------------------------------------===//
35
Chris Lattner9e979552008-04-12 23:52:44 +000036namespace {
37 /// CheckDefaultArgumentVisitor - C++ [dcl.fct.default] Traverses
38 /// the default argument of a parameter to determine whether it
39 /// contains any ill-formed subexpressions. For example, this will
40 /// diagnose the use of local variables or parameters within the
41 /// default argument expression.
Mike Stump1eb44332009-09-09 15:08:12 +000042 class VISIBILITY_HIDDEN CheckDefaultArgumentVisitor
Chris Lattnerb77792e2008-07-26 22:17:49 +000043 : public StmtVisitor<CheckDefaultArgumentVisitor, bool> {
Chris Lattner9e979552008-04-12 23:52:44 +000044 Expr *DefaultArg;
45 Sema *S;
Chris Lattner8123a952008-04-10 02:22:51 +000046
Chris Lattner9e979552008-04-12 23:52:44 +000047 public:
Mike Stump1eb44332009-09-09 15:08:12 +000048 CheckDefaultArgumentVisitor(Expr *defarg, Sema *s)
Chris Lattner9e979552008-04-12 23:52:44 +000049 : DefaultArg(defarg), S(s) {}
Chris Lattner8123a952008-04-10 02:22:51 +000050
Chris Lattner9e979552008-04-12 23:52:44 +000051 bool VisitExpr(Expr *Node);
52 bool VisitDeclRefExpr(DeclRefExpr *DRE);
Douglas Gregor796da182008-11-04 14:32:21 +000053 bool VisitCXXThisExpr(CXXThisExpr *ThisE);
Chris Lattner9e979552008-04-12 23:52:44 +000054 };
Chris Lattner8123a952008-04-10 02:22:51 +000055
Chris Lattner9e979552008-04-12 23:52:44 +000056 /// VisitExpr - Visit all of the children of this expression.
57 bool CheckDefaultArgumentVisitor::VisitExpr(Expr *Node) {
58 bool IsInvalid = false;
Mike Stump1eb44332009-09-09 15:08:12 +000059 for (Stmt::child_iterator I = Node->child_begin(),
Chris Lattnerb77792e2008-07-26 22:17:49 +000060 E = Node->child_end(); I != E; ++I)
61 IsInvalid |= Visit(*I);
Chris Lattner9e979552008-04-12 23:52:44 +000062 return IsInvalid;
Chris Lattner8123a952008-04-10 02:22:51 +000063 }
64
Chris Lattner9e979552008-04-12 23:52:44 +000065 /// VisitDeclRefExpr - Visit a reference to a declaration, to
66 /// determine whether this declaration can be used in the default
67 /// argument expression.
68 bool CheckDefaultArgumentVisitor::VisitDeclRefExpr(DeclRefExpr *DRE) {
Douglas Gregor8e9bebd2008-10-21 16:13:35 +000069 NamedDecl *Decl = DRE->getDecl();
Chris Lattner9e979552008-04-12 23:52:44 +000070 if (ParmVarDecl *Param = dyn_cast<ParmVarDecl>(Decl)) {
71 // C++ [dcl.fct.default]p9
72 // Default arguments are evaluated each time the function is
73 // called. The order of evaluation of function arguments is
74 // unspecified. Consequently, parameters of a function shall not
75 // be used in default argument expressions, even if they are not
76 // evaluated. Parameters of a function declared before a default
77 // argument expression are in scope and can hide namespace and
78 // class member names.
Mike Stump1eb44332009-09-09 15:08:12 +000079 return S->Diag(DRE->getSourceRange().getBegin(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +000080 diag::err_param_default_argument_references_param)
Chris Lattner08631c52008-11-23 21:45:46 +000081 << Param->getDeclName() << DefaultArg->getSourceRange();
Steve Naroff248a7532008-04-15 22:42:06 +000082 } else if (VarDecl *VDecl = dyn_cast<VarDecl>(Decl)) {
Chris Lattner9e979552008-04-12 23:52:44 +000083 // C++ [dcl.fct.default]p7
84 // Local variables shall not be used in default argument
85 // expressions.
Steve Naroff248a7532008-04-15 22:42:06 +000086 if (VDecl->isBlockVarDecl())
Mike Stump1eb44332009-09-09 15:08:12 +000087 return S->Diag(DRE->getSourceRange().getBegin(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +000088 diag::err_param_default_argument_references_local)
Chris Lattner08631c52008-11-23 21:45:46 +000089 << VDecl->getDeclName() << DefaultArg->getSourceRange();
Chris Lattner9e979552008-04-12 23:52:44 +000090 }
Chris Lattner8123a952008-04-10 02:22:51 +000091
Douglas Gregor3996f232008-11-04 13:41:56 +000092 return false;
93 }
Chris Lattner9e979552008-04-12 23:52:44 +000094
Douglas Gregor796da182008-11-04 14:32:21 +000095 /// VisitCXXThisExpr - Visit a C++ "this" expression.
96 bool CheckDefaultArgumentVisitor::VisitCXXThisExpr(CXXThisExpr *ThisE) {
97 // C++ [dcl.fct.default]p8:
98 // The keyword this shall not be used in a default argument of a
99 // member function.
100 return S->Diag(ThisE->getSourceRange().getBegin(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000101 diag::err_param_default_argument_references_this)
102 << ThisE->getSourceRange();
Chris Lattner9e979552008-04-12 23:52:44 +0000103 }
Chris Lattner8123a952008-04-10 02:22:51 +0000104}
105
Anders Carlssoned961f92009-08-25 02:29:20 +0000106bool
107Sema::SetParamDefaultArgument(ParmVarDecl *Param, ExprArg DefaultArg,
Mike Stump1eb44332009-09-09 15:08:12 +0000108 SourceLocation EqualLoc) {
Anders Carlssoned961f92009-08-25 02:29:20 +0000109 QualType ParamType = Param->getType();
110
Anders Carlsson5653ca52009-08-25 13:46:13 +0000111 if (RequireCompleteType(Param->getLocation(), Param->getType(),
112 diag::err_typecheck_decl_incomplete_type)) {
113 Param->setInvalidDecl();
114 return true;
115 }
116
Anders Carlssoned961f92009-08-25 02:29:20 +0000117 Expr *Arg = (Expr *)DefaultArg.get();
Mike Stump1eb44332009-09-09 15:08:12 +0000118
Anders Carlssoned961f92009-08-25 02:29:20 +0000119 // C++ [dcl.fct.default]p5
120 // A default argument expression is implicitly converted (clause
121 // 4) to the parameter type. The default argument expression has
122 // the same semantic constraints as the initializer expression in
123 // a declaration of a variable of the parameter type, using the
124 // copy-initialization semantics (8.5).
Mike Stump1eb44332009-09-09 15:08:12 +0000125 if (CheckInitializerTypes(Arg, ParamType, EqualLoc,
Anders Carlssoned961f92009-08-25 02:29:20 +0000126 Param->getDeclName(), /*DirectInit=*/false))
Anders Carlsson9351c172009-08-25 03:18:48 +0000127 return true;
Anders Carlssoned961f92009-08-25 02:29:20 +0000128
129 Arg = MaybeCreateCXXExprWithTemporaries(Arg, /*DestroyTemps=*/false);
Mike Stump1eb44332009-09-09 15:08:12 +0000130
Anders Carlssoned961f92009-08-25 02:29:20 +0000131 // Okay: add the default argument to the parameter
132 Param->setDefaultArg(Arg);
Mike Stump1eb44332009-09-09 15:08:12 +0000133
Anders Carlssoned961f92009-08-25 02:29:20 +0000134 DefaultArg.release();
Mike Stump1eb44332009-09-09 15:08:12 +0000135
Anders Carlsson9351c172009-08-25 03:18:48 +0000136 return false;
Anders Carlssoned961f92009-08-25 02:29:20 +0000137}
138
Chris Lattner8123a952008-04-10 02:22:51 +0000139/// ActOnParamDefaultArgument - Check whether the default argument
140/// provided for a function parameter is well-formed. If so, attach it
141/// to the parameter declaration.
Chris Lattner3d1cee32008-04-08 05:04:30 +0000142void
Mike Stump1eb44332009-09-09 15:08:12 +0000143Sema::ActOnParamDefaultArgument(DeclPtrTy param, SourceLocation EqualLoc,
Sebastian Redlf53597f2009-03-15 17:47:39 +0000144 ExprArg defarg) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000145 if (!param || !defarg.get())
146 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000147
Chris Lattnerb28317a2009-03-28 19:18:32 +0000148 ParmVarDecl *Param = cast<ParmVarDecl>(param.getAs<Decl>());
Anders Carlsson5e300d12009-06-12 16:51:40 +0000149 UnparsedDefaultArgLocs.erase(Param);
150
Anders Carlssonf1b1d592009-05-01 19:30:39 +0000151 ExprOwningPtr<Expr> DefaultArg(this, defarg.takeAs<Expr>());
Chris Lattner3d1cee32008-04-08 05:04:30 +0000152 QualType ParamType = Param->getType();
153
154 // Default arguments are only permitted in C++
155 if (!getLangOptions().CPlusPlus) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000156 Diag(EqualLoc, diag::err_param_default_argument)
157 << DefaultArg->getSourceRange();
Douglas Gregor72b505b2008-12-16 21:30:33 +0000158 Param->setInvalidDecl();
Chris Lattner3d1cee32008-04-08 05:04:30 +0000159 return;
160 }
161
Anders Carlsson66e30672009-08-25 01:02:06 +0000162 // Check that the default argument is well-formed
163 CheckDefaultArgumentVisitor DefaultArgChecker(DefaultArg.get(), this);
164 if (DefaultArgChecker.Visit(DefaultArg.get())) {
165 Param->setInvalidDecl();
166 return;
167 }
Mike Stump1eb44332009-09-09 15:08:12 +0000168
Anders Carlssoned961f92009-08-25 02:29:20 +0000169 SetParamDefaultArgument(Param, move(DefaultArg), EqualLoc);
Chris Lattner3d1cee32008-04-08 05:04:30 +0000170}
171
Douglas Gregor61366e92008-12-24 00:01:03 +0000172/// ActOnParamUnparsedDefaultArgument - We've seen a default
173/// argument for a function parameter, but we can't parse it yet
174/// because we're inside a class definition. Note that this default
175/// argument will be parsed later.
Mike Stump1eb44332009-09-09 15:08:12 +0000176void Sema::ActOnParamUnparsedDefaultArgument(DeclPtrTy param,
Anders Carlsson5e300d12009-06-12 16:51:40 +0000177 SourceLocation EqualLoc,
178 SourceLocation ArgLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000179 if (!param)
180 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000181
Chris Lattnerb28317a2009-03-28 19:18:32 +0000182 ParmVarDecl *Param = cast<ParmVarDecl>(param.getAs<Decl>());
Douglas Gregor61366e92008-12-24 00:01:03 +0000183 if (Param)
184 Param->setUnparsedDefaultArg();
Mike Stump1eb44332009-09-09 15:08:12 +0000185
Anders Carlsson5e300d12009-06-12 16:51:40 +0000186 UnparsedDefaultArgLocs[Param] = ArgLoc;
Douglas Gregor61366e92008-12-24 00:01:03 +0000187}
188
Douglas Gregor72b505b2008-12-16 21:30:33 +0000189/// ActOnParamDefaultArgumentError - Parsing or semantic analysis of
190/// the default argument for the parameter param failed.
Chris Lattnerb28317a2009-03-28 19:18:32 +0000191void Sema::ActOnParamDefaultArgumentError(DeclPtrTy param) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000192 if (!param)
193 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000194
Anders Carlsson5e300d12009-06-12 16:51:40 +0000195 ParmVarDecl *Param = cast<ParmVarDecl>(param.getAs<Decl>());
Mike Stump1eb44332009-09-09 15:08:12 +0000196
Anders Carlsson5e300d12009-06-12 16:51:40 +0000197 Param->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000198
Anders Carlsson5e300d12009-06-12 16:51:40 +0000199 UnparsedDefaultArgLocs.erase(Param);
Douglas Gregor72b505b2008-12-16 21:30:33 +0000200}
201
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000202/// CheckExtraCXXDefaultArguments - Check for any extra default
203/// arguments in the declarator, which is not a function declaration
204/// or definition and therefore is not permitted to have default
205/// arguments. This routine should be invoked for every declarator
206/// that is not a function declaration or definition.
207void Sema::CheckExtraCXXDefaultArguments(Declarator &D) {
208 // C++ [dcl.fct.default]p3
209 // A default argument expression shall be specified only in the
210 // parameter-declaration-clause of a function declaration or in a
211 // template-parameter (14.1). It shall not be specified for a
212 // parameter pack. If it is specified in a
213 // parameter-declaration-clause, it shall not occur within a
214 // declarator or abstract-declarator of a parameter-declaration.
Chris Lattnerb28317a2009-03-28 19:18:32 +0000215 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i) {
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000216 DeclaratorChunk &chunk = D.getTypeObject(i);
217 if (chunk.Kind == DeclaratorChunk::Function) {
Chris Lattnerb28317a2009-03-28 19:18:32 +0000218 for (unsigned argIdx = 0, e = chunk.Fun.NumArgs; argIdx != e; ++argIdx) {
219 ParmVarDecl *Param =
220 cast<ParmVarDecl>(chunk.Fun.ArgInfo[argIdx].Param.getAs<Decl>());
Douglas Gregor61366e92008-12-24 00:01:03 +0000221 if (Param->hasUnparsedDefaultArg()) {
222 CachedTokens *Toks = chunk.Fun.ArgInfo[argIdx].DefaultArgTokens;
Douglas Gregor72b505b2008-12-16 21:30:33 +0000223 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
224 << SourceRange((*Toks)[1].getLocation(), Toks->back().getLocation());
225 delete Toks;
226 chunk.Fun.ArgInfo[argIdx].DefaultArgTokens = 0;
Douglas Gregor61366e92008-12-24 00:01:03 +0000227 } else if (Param->getDefaultArg()) {
228 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
229 << Param->getDefaultArg()->getSourceRange();
230 Param->setDefaultArg(0);
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000231 }
232 }
233 }
234 }
235}
236
Chris Lattner3d1cee32008-04-08 05:04:30 +0000237// MergeCXXFunctionDecl - Merge two declarations of the same C++
238// function, once we already know that they have the same
Douglas Gregorcda9c672009-02-16 17:45:42 +0000239// type. Subroutine of MergeFunctionDecl. Returns true if there was an
240// error, false otherwise.
241bool Sema::MergeCXXFunctionDecl(FunctionDecl *New, FunctionDecl *Old) {
242 bool Invalid = false;
243
Chris Lattner3d1cee32008-04-08 05:04:30 +0000244 // C++ [dcl.fct.default]p4:
Chris Lattner3d1cee32008-04-08 05:04:30 +0000245 // For non-template functions, default arguments can be added in
246 // later declarations of a function in the same
247 // scope. Declarations in different scopes have completely
248 // distinct sets of default arguments. That is, declarations in
249 // inner scopes do not acquire default arguments from
250 // declarations in outer scopes, and vice versa. In a given
251 // function declaration, all parameters subsequent to a
252 // parameter with a default argument shall have default
253 // arguments supplied in this or previous declarations. A
254 // default argument shall not be redefined by a later
255 // declaration (not even to the same value).
Douglas Gregor6cc15182009-09-11 18:44:32 +0000256 //
257 // C++ [dcl.fct.default]p6:
258 // Except for member functions of class templates, the default arguments
259 // in a member function definition that appears outside of the class
260 // definition are added to the set of default arguments provided by the
261 // member function declaration in the class definition.
Chris Lattner3d1cee32008-04-08 05:04:30 +0000262 for (unsigned p = 0, NumParams = Old->getNumParams(); p < NumParams; ++p) {
263 ParmVarDecl *OldParam = Old->getParamDecl(p);
264 ParmVarDecl *NewParam = New->getParamDecl(p);
265
Douglas Gregor6cc15182009-09-11 18:44:32 +0000266 if (OldParam->hasDefaultArg() && NewParam->hasDefaultArg()) {
Mike Stump1eb44332009-09-09 15:08:12 +0000267 Diag(NewParam->getLocation(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000268 diag::err_param_default_argument_redefinition)
Douglas Gregor6cc15182009-09-11 18:44:32 +0000269 << NewParam->getDefaultArgRange();
270
271 // Look for the function declaration where the default argument was
272 // actually written, which may be a declaration prior to Old.
273 for (FunctionDecl *Older = Old->getPreviousDeclaration();
274 Older; Older = Older->getPreviousDeclaration()) {
275 if (!Older->getParamDecl(p)->hasDefaultArg())
276 break;
277
278 OldParam = Older->getParamDecl(p);
279 }
280
281 Diag(OldParam->getLocation(), diag::note_previous_definition)
282 << OldParam->getDefaultArgRange();
Douglas Gregorcda9c672009-02-16 17:45:42 +0000283 Invalid = true;
Douglas Gregord85cef52009-09-17 19:51:30 +0000284 } else if (OldParam->hasDefaultArg()) {
Chris Lattner3d1cee32008-04-08 05:04:30 +0000285 // Merge the old default argument into the new parameter
Douglas Gregord85cef52009-09-17 19:51:30 +0000286 if (OldParam->hasUninstantiatedDefaultArg())
287 NewParam->setUninstantiatedDefaultArg(
288 OldParam->getUninstantiatedDefaultArg());
289 else
290 NewParam->setDefaultArg(OldParam->getDefaultArg());
Douglas Gregor6cc15182009-09-11 18:44:32 +0000291 } else if (NewParam->hasDefaultArg()) {
292 if (New->getDescribedFunctionTemplate()) {
293 // Paragraph 4, quoted above, only applies to non-template functions.
294 Diag(NewParam->getLocation(),
295 diag::err_param_default_argument_template_redecl)
296 << NewParam->getDefaultArgRange();
297 Diag(Old->getLocation(), diag::note_template_prev_declaration)
298 << false;
Douglas Gregor096ebfd2009-10-13 17:02:54 +0000299 } else if (New->getTemplateSpecializationKind()
300 != TSK_ImplicitInstantiation &&
301 New->getTemplateSpecializationKind() != TSK_Undeclared) {
302 // C++ [temp.expr.spec]p21:
303 // Default function arguments shall not be specified in a declaration
304 // or a definition for one of the following explicit specializations:
305 // - the explicit specialization of a function template;
306 // — the explicit specialization of a member function template;
307 // — the explicit specialization of a member function of a class
308 // template where the class template specialization to which the
309 // member function specialization belongs is implicitly
310 // instantiated.
311 Diag(NewParam->getLocation(), diag::err_template_spec_default_arg)
312 << (New->getTemplateSpecializationKind() ==TSK_ExplicitSpecialization)
313 << New->getDeclName()
314 << NewParam->getDefaultArgRange();
Douglas Gregor6cc15182009-09-11 18:44:32 +0000315 } else if (New->getDeclContext()->isDependentContext()) {
316 // C++ [dcl.fct.default]p6 (DR217):
317 // Default arguments for a member function of a class template shall
318 // be specified on the initial declaration of the member function
319 // within the class template.
320 //
321 // Reading the tea leaves a bit in DR217 and its reference to DR205
322 // leads me to the conclusion that one cannot add default function
323 // arguments for an out-of-line definition of a member function of a
324 // dependent type.
325 int WhichKind = 2;
326 if (CXXRecordDecl *Record
327 = dyn_cast<CXXRecordDecl>(New->getDeclContext())) {
328 if (Record->getDescribedClassTemplate())
329 WhichKind = 0;
330 else if (isa<ClassTemplatePartialSpecializationDecl>(Record))
331 WhichKind = 1;
332 else
333 WhichKind = 2;
334 }
335
336 Diag(NewParam->getLocation(),
337 diag::err_param_default_argument_member_template_redecl)
338 << WhichKind
339 << NewParam->getDefaultArgRange();
340 }
Chris Lattner3d1cee32008-04-08 05:04:30 +0000341 }
342 }
343
Sebastian Redl4994d2d2009-07-04 11:39:00 +0000344 if (CheckEquivalentExceptionSpec(
John McCall183700f2009-09-21 23:43:11 +0000345 Old->getType()->getAs<FunctionProtoType>(), Old->getLocation(),
346 New->getType()->getAs<FunctionProtoType>(), New->getLocation())) {
Sebastian Redl4994d2d2009-07-04 11:39:00 +0000347 Invalid = true;
348 }
349
Douglas Gregorcda9c672009-02-16 17:45:42 +0000350 return Invalid;
Chris Lattner3d1cee32008-04-08 05:04:30 +0000351}
352
353/// CheckCXXDefaultArguments - Verify that the default arguments for a
354/// function declaration are well-formed according to C++
355/// [dcl.fct.default].
356void Sema::CheckCXXDefaultArguments(FunctionDecl *FD) {
357 unsigned NumParams = FD->getNumParams();
358 unsigned p;
359
360 // Find first parameter with a default argument
361 for (p = 0; p < NumParams; ++p) {
362 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson5f49a0c2009-08-25 01:23:32 +0000363 if (Param->hasDefaultArg())
Chris Lattner3d1cee32008-04-08 05:04:30 +0000364 break;
365 }
366
367 // C++ [dcl.fct.default]p4:
368 // In a given function declaration, all parameters
369 // subsequent to a parameter with a default argument shall
370 // have default arguments supplied in this or previous
371 // declarations. A default argument shall not be redefined
372 // by a later declaration (not even to the same value).
373 unsigned LastMissingDefaultArg = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000374 for (; p < NumParams; ++p) {
Chris Lattner3d1cee32008-04-08 05:04:30 +0000375 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson5f49a0c2009-08-25 01:23:32 +0000376 if (!Param->hasDefaultArg()) {
Douglas Gregor72b505b2008-12-16 21:30:33 +0000377 if (Param->isInvalidDecl())
378 /* We already complained about this parameter. */;
379 else if (Param->getIdentifier())
Mike Stump1eb44332009-09-09 15:08:12 +0000380 Diag(Param->getLocation(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000381 diag::err_param_default_argument_missing_name)
Chris Lattner43b628c2008-11-19 07:32:16 +0000382 << Param->getIdentifier();
Chris Lattner3d1cee32008-04-08 05:04:30 +0000383 else
Mike Stump1eb44332009-09-09 15:08:12 +0000384 Diag(Param->getLocation(),
Chris Lattner3d1cee32008-04-08 05:04:30 +0000385 diag::err_param_default_argument_missing);
Mike Stump1eb44332009-09-09 15:08:12 +0000386
Chris Lattner3d1cee32008-04-08 05:04:30 +0000387 LastMissingDefaultArg = p;
388 }
389 }
390
391 if (LastMissingDefaultArg > 0) {
392 // Some default arguments were missing. Clear out all of the
393 // default arguments up to (and including) the last missing
394 // default argument, so that we leave the function parameters
395 // in a semantically valid state.
396 for (p = 0; p <= LastMissingDefaultArg; ++p) {
397 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson5e300d12009-06-12 16:51:40 +0000398 if (Param->hasDefaultArg()) {
Douglas Gregor61366e92008-12-24 00:01:03 +0000399 if (!Param->hasUnparsedDefaultArg())
400 Param->getDefaultArg()->Destroy(Context);
Chris Lattner3d1cee32008-04-08 05:04:30 +0000401 Param->setDefaultArg(0);
402 }
403 }
404 }
405}
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000406
Douglas Gregorb48fe382008-10-31 09:07:45 +0000407/// isCurrentClassName - Determine whether the identifier II is the
408/// name of the class type currently being defined. In the case of
409/// nested classes, this will only return true if II is the name of
410/// the innermost class.
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000411bool Sema::isCurrentClassName(const IdentifierInfo &II, Scope *,
412 const CXXScopeSpec *SS) {
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +0000413 CXXRecordDecl *CurDecl;
Douglas Gregore4e5b052009-03-19 00:18:19 +0000414 if (SS && SS->isSet() && !SS->isInvalid()) {
Douglas Gregorac373c42009-08-21 22:16:40 +0000415 DeclContext *DC = computeDeclContext(*SS, true);
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +0000416 CurDecl = dyn_cast_or_null<CXXRecordDecl>(DC);
417 } else
418 CurDecl = dyn_cast_or_null<CXXRecordDecl>(CurContext);
419
420 if (CurDecl)
Douglas Gregorb48fe382008-10-31 09:07:45 +0000421 return &II == CurDecl->getIdentifier();
422 else
423 return false;
424}
425
Mike Stump1eb44332009-09-09 15:08:12 +0000426/// \brief Check the validity of a C++ base class specifier.
Douglas Gregor2943aed2009-03-03 04:44:36 +0000427///
428/// \returns a new CXXBaseSpecifier if well-formed, emits diagnostics
429/// and returns NULL otherwise.
430CXXBaseSpecifier *
431Sema::CheckBaseSpecifier(CXXRecordDecl *Class,
432 SourceRange SpecifierRange,
433 bool Virtual, AccessSpecifier Access,
Mike Stump1eb44332009-09-09 15:08:12 +0000434 QualType BaseType,
Douglas Gregor2943aed2009-03-03 04:44:36 +0000435 SourceLocation BaseLoc) {
436 // C++ [class.union]p1:
437 // A union shall not have base classes.
438 if (Class->isUnion()) {
439 Diag(Class->getLocation(), diag::err_base_clause_on_union)
440 << SpecifierRange;
441 return 0;
442 }
443
444 if (BaseType->isDependentType())
Mike Stump1eb44332009-09-09 15:08:12 +0000445 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
Douglas Gregor2943aed2009-03-03 04:44:36 +0000446 Class->getTagKind() == RecordDecl::TK_class,
447 Access, BaseType);
448
449 // Base specifiers must be record types.
450 if (!BaseType->isRecordType()) {
451 Diag(BaseLoc, diag::err_base_must_be_class) << SpecifierRange;
452 return 0;
453 }
454
455 // C++ [class.union]p1:
456 // A union shall not be used as a base class.
457 if (BaseType->isUnionType()) {
458 Diag(BaseLoc, diag::err_union_as_base_class) << SpecifierRange;
459 return 0;
460 }
461
462 // C++ [class.derived]p2:
463 // The class-name in a base-specifier shall not be an incompletely
464 // defined class.
Mike Stump1eb44332009-09-09 15:08:12 +0000465 if (RequireCompleteType(BaseLoc, BaseType,
Anders Carlssonb7906612009-08-26 23:45:07 +0000466 PDiag(diag::err_incomplete_base_class)
467 << SpecifierRange))
Douglas Gregor2943aed2009-03-03 04:44:36 +0000468 return 0;
469
Eli Friedman1d954f62009-08-15 21:55:26 +0000470 // If the base class is polymorphic or isn't empty, the new one is/isn't, too.
Ted Kremenek6217b802009-07-29 21:53:49 +0000471 RecordDecl *BaseDecl = BaseType->getAs<RecordType>()->getDecl();
Douglas Gregor2943aed2009-03-03 04:44:36 +0000472 assert(BaseDecl && "Record type has no declaration");
473 BaseDecl = BaseDecl->getDefinition(Context);
474 assert(BaseDecl && "Base type is not incomplete, but has no definition");
Eli Friedman1d954f62009-08-15 21:55:26 +0000475 CXXRecordDecl * CXXBaseDecl = cast<CXXRecordDecl>(BaseDecl);
476 assert(CXXBaseDecl && "Base type is not a C++ type");
477 if (!CXXBaseDecl->isEmpty())
478 Class->setEmpty(false);
479 if (CXXBaseDecl->isPolymorphic())
Douglas Gregor2943aed2009-03-03 04:44:36 +0000480 Class->setPolymorphic(true);
481
482 // C++ [dcl.init.aggr]p1:
483 // An aggregate is [...] a class with [...] no base classes [...].
484 Class->setAggregate(false);
485 Class->setPOD(false);
486
Anders Carlsson347ba892009-04-16 00:08:20 +0000487 if (Virtual) {
488 // C++ [class.ctor]p5:
489 // A constructor is trivial if its class has no virtual base classes.
490 Class->setHasTrivialConstructor(false);
Douglas Gregor1f2023a2009-07-22 18:25:24 +0000491
492 // C++ [class.copy]p6:
493 // A copy constructor is trivial if its class has no virtual base classes.
494 Class->setHasTrivialCopyConstructor(false);
495
496 // C++ [class.copy]p11:
497 // A copy assignment operator is trivial if its class has no virtual
498 // base classes.
499 Class->setHasTrivialCopyAssignment(false);
Eli Friedman1d954f62009-08-15 21:55:26 +0000500
501 // C++0x [meta.unary.prop] is_empty:
502 // T is a class type, but not a union type, with ... no virtual base
503 // classes
504 Class->setEmpty(false);
Anders Carlsson347ba892009-04-16 00:08:20 +0000505 } else {
506 // C++ [class.ctor]p5:
Mike Stump1eb44332009-09-09 15:08:12 +0000507 // A constructor is trivial if all the direct base classes of its
Anders Carlsson347ba892009-04-16 00:08:20 +0000508 // class have trivial constructors.
Douglas Gregor1f2023a2009-07-22 18:25:24 +0000509 if (!cast<CXXRecordDecl>(BaseDecl)->hasTrivialConstructor())
510 Class->setHasTrivialConstructor(false);
511
512 // C++ [class.copy]p6:
513 // A copy constructor is trivial if all the direct base classes of its
514 // class have trivial copy constructors.
515 if (!cast<CXXRecordDecl>(BaseDecl)->hasTrivialCopyConstructor())
516 Class->setHasTrivialCopyConstructor(false);
517
518 // C++ [class.copy]p11:
519 // A copy assignment operator is trivial if all the direct base classes
520 // of its class have trivial copy assignment operators.
521 if (!cast<CXXRecordDecl>(BaseDecl)->hasTrivialCopyAssignment())
522 Class->setHasTrivialCopyAssignment(false);
Anders Carlsson347ba892009-04-16 00:08:20 +0000523 }
Anders Carlsson072abef2009-04-17 02:34:54 +0000524
525 // C++ [class.ctor]p3:
526 // A destructor is trivial if all the direct base classes of its class
527 // have trivial destructors.
Douglas Gregor1f2023a2009-07-22 18:25:24 +0000528 if (!cast<CXXRecordDecl>(BaseDecl)->hasTrivialDestructor())
529 Class->setHasTrivialDestructor(false);
Mike Stump1eb44332009-09-09 15:08:12 +0000530
Douglas Gregor2943aed2009-03-03 04:44:36 +0000531 // Create the base specifier.
532 // FIXME: Allocate via ASTContext?
Mike Stump1eb44332009-09-09 15:08:12 +0000533 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
534 Class->getTagKind() == RecordDecl::TK_class,
Douglas Gregor2943aed2009-03-03 04:44:36 +0000535 Access, BaseType);
536}
537
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000538/// ActOnBaseSpecifier - Parsed a base specifier. A base specifier is
539/// one entry in the base class list of a class specifier, for
Mike Stump1eb44332009-09-09 15:08:12 +0000540/// example:
541/// class foo : public bar, virtual private baz {
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000542/// 'public bar' and 'virtual private baz' are each base-specifiers.
Mike Stump1eb44332009-09-09 15:08:12 +0000543Sema::BaseResult
Chris Lattnerb28317a2009-03-28 19:18:32 +0000544Sema::ActOnBaseSpecifier(DeclPtrTy classdecl, SourceRange SpecifierRange,
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000545 bool Virtual, AccessSpecifier Access,
546 TypeTy *basetype, SourceLocation BaseLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000547 if (!classdecl)
548 return true;
549
Douglas Gregor40808ce2009-03-09 23:48:35 +0000550 AdjustDeclIfTemplate(classdecl);
Chris Lattnerb28317a2009-03-28 19:18:32 +0000551 CXXRecordDecl *Class = cast<CXXRecordDecl>(classdecl.getAs<Decl>());
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +0000552 QualType BaseType = GetTypeFromParser(basetype);
Douglas Gregor2943aed2009-03-03 04:44:36 +0000553 if (CXXBaseSpecifier *BaseSpec = CheckBaseSpecifier(Class, SpecifierRange,
554 Virtual, Access,
555 BaseType, BaseLoc))
556 return BaseSpec;
Mike Stump1eb44332009-09-09 15:08:12 +0000557
Douglas Gregor2943aed2009-03-03 04:44:36 +0000558 return true;
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000559}
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000560
Douglas Gregor2943aed2009-03-03 04:44:36 +0000561/// \brief Performs the actual work of attaching the given base class
562/// specifiers to a C++ class.
563bool Sema::AttachBaseSpecifiers(CXXRecordDecl *Class, CXXBaseSpecifier **Bases,
564 unsigned NumBases) {
565 if (NumBases == 0)
566 return false;
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000567
568 // Used to keep track of which base types we have already seen, so
569 // that we can properly diagnose redundant direct base types. Note
Douglas Gregor57c856b2008-10-23 18:13:27 +0000570 // that the key is always the unqualified canonical type of the base
571 // class.
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000572 std::map<QualType, CXXBaseSpecifier*, QualTypeOrdering> KnownBaseTypes;
573
574 // Copy non-redundant base specifiers into permanent storage.
Douglas Gregor57c856b2008-10-23 18:13:27 +0000575 unsigned NumGoodBases = 0;
Douglas Gregor2943aed2009-03-03 04:44:36 +0000576 bool Invalid = false;
Douglas Gregor57c856b2008-10-23 18:13:27 +0000577 for (unsigned idx = 0; idx < NumBases; ++idx) {
Mike Stump1eb44332009-09-09 15:08:12 +0000578 QualType NewBaseType
Douglas Gregor2943aed2009-03-03 04:44:36 +0000579 = Context.getCanonicalType(Bases[idx]->getType());
Douglas Gregor57c856b2008-10-23 18:13:27 +0000580 NewBaseType = NewBaseType.getUnqualifiedType();
581
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000582 if (KnownBaseTypes[NewBaseType]) {
583 // C++ [class.mi]p3:
584 // A class shall not be specified as a direct base class of a
585 // derived class more than once.
Douglas Gregor2943aed2009-03-03 04:44:36 +0000586 Diag(Bases[idx]->getSourceRange().getBegin(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000587 diag::err_duplicate_base_class)
Chris Lattnerd1625842008-11-24 06:25:27 +0000588 << KnownBaseTypes[NewBaseType]->getType()
Douglas Gregor2943aed2009-03-03 04:44:36 +0000589 << Bases[idx]->getSourceRange();
Douglas Gregor57c856b2008-10-23 18:13:27 +0000590
591 // Delete the duplicate base class specifier; we're going to
592 // overwrite its pointer later.
Douglas Gregor2aef06d2009-07-22 20:55:49 +0000593 Context.Deallocate(Bases[idx]);
Douglas Gregor2943aed2009-03-03 04:44:36 +0000594
595 Invalid = true;
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000596 } else {
597 // Okay, add this new base class.
Douglas Gregor2943aed2009-03-03 04:44:36 +0000598 KnownBaseTypes[NewBaseType] = Bases[idx];
599 Bases[NumGoodBases++] = Bases[idx];
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000600 }
601 }
602
603 // Attach the remaining base class specifiers to the derived class.
Fariborz Jahanian5ffcd7b2009-07-02 18:26:15 +0000604 Class->setBases(Context, Bases, NumGoodBases);
Douglas Gregor57c856b2008-10-23 18:13:27 +0000605
606 // Delete the remaining (good) base class specifiers, since their
607 // data has been copied into the CXXRecordDecl.
608 for (unsigned idx = 0; idx < NumGoodBases; ++idx)
Douglas Gregor2aef06d2009-07-22 20:55:49 +0000609 Context.Deallocate(Bases[idx]);
Douglas Gregor2943aed2009-03-03 04:44:36 +0000610
611 return Invalid;
612}
613
614/// ActOnBaseSpecifiers - Attach the given base specifiers to the
615/// class, after checking whether there are any duplicate base
616/// classes.
Mike Stump1eb44332009-09-09 15:08:12 +0000617void Sema::ActOnBaseSpecifiers(DeclPtrTy ClassDecl, BaseTy **Bases,
Douglas Gregor2943aed2009-03-03 04:44:36 +0000618 unsigned NumBases) {
619 if (!ClassDecl || !Bases || !NumBases)
620 return;
621
622 AdjustDeclIfTemplate(ClassDecl);
Chris Lattnerb28317a2009-03-28 19:18:32 +0000623 AttachBaseSpecifiers(cast<CXXRecordDecl>(ClassDecl.getAs<Decl>()),
Douglas Gregor2943aed2009-03-03 04:44:36 +0000624 (CXXBaseSpecifier**)(Bases), NumBases);
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000625}
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +0000626
Douglas Gregora8f32e02009-10-06 17:59:45 +0000627/// \brief Determine whether the type \p Derived is a C++ class that is
628/// derived from the type \p Base.
629bool Sema::IsDerivedFrom(QualType Derived, QualType Base) {
630 if (!getLangOptions().CPlusPlus)
631 return false;
632
633 const RecordType *DerivedRT = Derived->getAs<RecordType>();
634 if (!DerivedRT)
635 return false;
636
637 const RecordType *BaseRT = Base->getAs<RecordType>();
638 if (!BaseRT)
639 return false;
640
641 CXXRecordDecl *DerivedRD = cast<CXXRecordDecl>(DerivedRT->getDecl());
642 CXXRecordDecl *BaseRD = cast<CXXRecordDecl>(BaseRT->getDecl());
643 return DerivedRD->isDerivedFrom(BaseRD);
644}
645
646/// \brief Determine whether the type \p Derived is a C++ class that is
647/// derived from the type \p Base.
648bool Sema::IsDerivedFrom(QualType Derived, QualType Base, CXXBasePaths &Paths) {
649 if (!getLangOptions().CPlusPlus)
650 return false;
651
652 const RecordType *DerivedRT = Derived->getAs<RecordType>();
653 if (!DerivedRT)
654 return false;
655
656 const RecordType *BaseRT = Base->getAs<RecordType>();
657 if (!BaseRT)
658 return false;
659
660 CXXRecordDecl *DerivedRD = cast<CXXRecordDecl>(DerivedRT->getDecl());
661 CXXRecordDecl *BaseRD = cast<CXXRecordDecl>(BaseRT->getDecl());
662 return DerivedRD->isDerivedFrom(BaseRD, Paths);
663}
664
665/// CheckDerivedToBaseConversion - Check whether the Derived-to-Base
666/// conversion (where Derived and Base are class types) is
667/// well-formed, meaning that the conversion is unambiguous (and
668/// that all of the base classes are accessible). Returns true
669/// and emits a diagnostic if the code is ill-formed, returns false
670/// otherwise. Loc is the location where this routine should point to
671/// if there is an error, and Range is the source range to highlight
672/// if there is an error.
673bool
674Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
675 unsigned InaccessibleBaseID,
676 unsigned AmbigiousBaseConvID,
677 SourceLocation Loc, SourceRange Range,
678 DeclarationName Name) {
679 // First, determine whether the path from Derived to Base is
680 // ambiguous. This is slightly more expensive than checking whether
681 // the Derived to Base conversion exists, because here we need to
682 // explore multiple paths to determine if there is an ambiguity.
683 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
684 /*DetectVirtual=*/false);
685 bool DerivationOkay = IsDerivedFrom(Derived, Base, Paths);
686 assert(DerivationOkay &&
687 "Can only be used with a derived-to-base conversion");
688 (void)DerivationOkay;
689
690 if (!Paths.isAmbiguous(Context.getCanonicalType(Base).getUnqualifiedType())) {
691 // Check that the base class can be accessed.
692 return CheckBaseClassAccess(Derived, Base, InaccessibleBaseID, Paths, Loc,
693 Name);
694 }
695
696 // We know that the derived-to-base conversion is ambiguous, and
697 // we're going to produce a diagnostic. Perform the derived-to-base
698 // search just one more time to compute all of the possible paths so
699 // that we can print them out. This is more expensive than any of
700 // the previous derived-to-base checks we've done, but at this point
701 // performance isn't as much of an issue.
702 Paths.clear();
703 Paths.setRecordingPaths(true);
704 bool StillOkay = IsDerivedFrom(Derived, Base, Paths);
705 assert(StillOkay && "Can only be used with a derived-to-base conversion");
706 (void)StillOkay;
707
708 // Build up a textual representation of the ambiguous paths, e.g.,
709 // D -> B -> A, that will be used to illustrate the ambiguous
710 // conversions in the diagnostic. We only print one of the paths
711 // to each base class subobject.
712 std::string PathDisplayStr = getAmbiguousPathsDisplayString(Paths);
713
714 Diag(Loc, AmbigiousBaseConvID)
715 << Derived << Base << PathDisplayStr << Range << Name;
716 return true;
717}
718
719bool
720Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
721 SourceLocation Loc, SourceRange Range) {
722 return CheckDerivedToBaseConversion(Derived, Base,
723 diag::err_conv_to_inaccessible_base,
724 diag::err_ambiguous_derived_to_base_conv,
725 Loc, Range, DeclarationName());
726}
727
728
729/// @brief Builds a string representing ambiguous paths from a
730/// specific derived class to different subobjects of the same base
731/// class.
732///
733/// This function builds a string that can be used in error messages
734/// to show the different paths that one can take through the
735/// inheritance hierarchy to go from the derived class to different
736/// subobjects of a base class. The result looks something like this:
737/// @code
738/// struct D -> struct B -> struct A
739/// struct D -> struct C -> struct A
740/// @endcode
741std::string Sema::getAmbiguousPathsDisplayString(CXXBasePaths &Paths) {
742 std::string PathDisplayStr;
743 std::set<unsigned> DisplayedPaths;
744 for (CXXBasePaths::paths_iterator Path = Paths.begin();
745 Path != Paths.end(); ++Path) {
746 if (DisplayedPaths.insert(Path->back().SubobjectNumber).second) {
747 // We haven't displayed a path to this particular base
748 // class subobject yet.
749 PathDisplayStr += "\n ";
750 PathDisplayStr += Context.getTypeDeclType(Paths.getOrigin()).getAsString();
751 for (CXXBasePath::const_iterator Element = Path->begin();
752 Element != Path->end(); ++Element)
753 PathDisplayStr += " -> " + Element->Base->getType().getAsString();
754 }
755 }
756
757 return PathDisplayStr;
758}
759
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000760//===----------------------------------------------------------------------===//
761// C++ class member Handling
762//===----------------------------------------------------------------------===//
763
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000764/// ActOnCXXMemberDeclarator - This is invoked when a C++ class member
765/// declarator is parsed. 'AS' is the access specifier, 'BW' specifies the
766/// bitfield width if there is one and 'InitExpr' specifies the initializer if
Chris Lattnerb6688e02009-04-12 22:37:57 +0000767/// any.
Chris Lattnerb28317a2009-03-28 19:18:32 +0000768Sema::DeclPtrTy
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000769Sema::ActOnCXXMemberDeclarator(Scope *S, AccessSpecifier AS, Declarator &D,
Douglas Gregor37b372b2009-08-20 22:52:58 +0000770 MultiTemplateParamsArg TemplateParameterLists,
Sebastian Redle2b68332009-04-12 17:16:29 +0000771 ExprTy *BW, ExprTy *InitExpr, bool Deleted) {
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000772 const DeclSpec &DS = D.getDeclSpec();
Douglas Gregor10bd3682008-11-17 22:58:34 +0000773 DeclarationName Name = GetNameForDeclarator(D);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000774 Expr *BitWidth = static_cast<Expr*>(BW);
775 Expr *Init = static_cast<Expr*>(InitExpr);
776 SourceLocation Loc = D.getIdentifierLoc();
777
Sebastian Redl669d5d72008-11-14 23:42:31 +0000778 bool isFunc = D.isFunctionDeclarator();
779
John McCall67d1a672009-08-06 02:15:43 +0000780 assert(!DS.isFriendSpecified());
781
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000782 // C++ 9.2p6: A member shall not be declared to have automatic storage
783 // duration (auto, register) or with the extern storage-class-specifier.
Sebastian Redl669d5d72008-11-14 23:42:31 +0000784 // C++ 7.1.1p8: The mutable specifier can be applied only to names of class
785 // data members and cannot be applied to names declared const or static,
786 // and cannot be applied to reference members.
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000787 switch (DS.getStorageClassSpec()) {
788 case DeclSpec::SCS_unspecified:
789 case DeclSpec::SCS_typedef:
790 case DeclSpec::SCS_static:
791 // FALL THROUGH.
792 break;
Sebastian Redl669d5d72008-11-14 23:42:31 +0000793 case DeclSpec::SCS_mutable:
794 if (isFunc) {
795 if (DS.getStorageClassSpecLoc().isValid())
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000796 Diag(DS.getStorageClassSpecLoc(), diag::err_mutable_function);
Sebastian Redl669d5d72008-11-14 23:42:31 +0000797 else
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000798 Diag(DS.getThreadSpecLoc(), diag::err_mutable_function);
Mike Stump1eb44332009-09-09 15:08:12 +0000799
Sebastian Redla11f42f2008-11-17 23:24:37 +0000800 // FIXME: It would be nicer if the keyword was ignored only for this
801 // declarator. Otherwise we could get follow-up errors.
Sebastian Redl669d5d72008-11-14 23:42:31 +0000802 D.getMutableDeclSpec().ClearStorageClassSpecs();
803 } else {
804 QualType T = GetTypeForDeclarator(D, S);
805 diag::kind err = static_cast<diag::kind>(0);
806 if (T->isReferenceType())
807 err = diag::err_mutable_reference;
808 else if (T.isConstQualified())
809 err = diag::err_mutable_const;
810 if (err != 0) {
811 if (DS.getStorageClassSpecLoc().isValid())
812 Diag(DS.getStorageClassSpecLoc(), err);
813 else
814 Diag(DS.getThreadSpecLoc(), err);
Sebastian Redla11f42f2008-11-17 23:24:37 +0000815 // FIXME: It would be nicer if the keyword was ignored only for this
816 // declarator. Otherwise we could get follow-up errors.
Sebastian Redl669d5d72008-11-14 23:42:31 +0000817 D.getMutableDeclSpec().ClearStorageClassSpecs();
818 }
819 }
820 break;
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000821 default:
822 if (DS.getStorageClassSpecLoc().isValid())
823 Diag(DS.getStorageClassSpecLoc(),
824 diag::err_storageclass_invalid_for_member);
825 else
826 Diag(DS.getThreadSpecLoc(), diag::err_storageclass_invalid_for_member);
827 D.getMutableDeclSpec().ClearStorageClassSpecs();
828 }
829
Argyrios Kyrtzidisd6caa9e2008-10-15 20:23:22 +0000830 if (!isFunc &&
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000831 D.getDeclSpec().getTypeSpecType() == DeclSpec::TST_typename &&
Argyrios Kyrtzidisd6caa9e2008-10-15 20:23:22 +0000832 D.getNumTypeObjects() == 0) {
Argyrios Kyrtzidisde933f02008-10-08 22:20:31 +0000833 // Check also for this case:
834 //
835 // typedef int f();
836 // f a;
837 //
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +0000838 QualType TDType = GetTypeFromParser(DS.getTypeRep());
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000839 isFunc = TDType->isFunctionType();
Argyrios Kyrtzidisde933f02008-10-08 22:20:31 +0000840 }
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000841
Sebastian Redl669d5d72008-11-14 23:42:31 +0000842 bool isInstField = ((DS.getStorageClassSpec() == DeclSpec::SCS_unspecified ||
843 DS.getStorageClassSpec() == DeclSpec::SCS_mutable) &&
Argyrios Kyrtzidisde933f02008-10-08 22:20:31 +0000844 !isFunc);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000845
846 Decl *Member;
Chris Lattner24793662009-03-05 22:45:59 +0000847 if (isInstField) {
Douglas Gregor37b372b2009-08-20 22:52:58 +0000848 // FIXME: Check for template parameters!
Douglas Gregor4dd55f52009-03-11 20:50:30 +0000849 Member = HandleField(S, cast<CXXRecordDecl>(CurContext), Loc, D, BitWidth,
850 AS);
Chris Lattner6f8ce142009-03-05 23:03:49 +0000851 assert(Member && "HandleField never returns null");
Chris Lattner24793662009-03-05 22:45:59 +0000852 } else {
Douglas Gregor37b372b2009-08-20 22:52:58 +0000853 Member = HandleDeclarator(S, D, move(TemplateParameterLists), false)
854 .getAs<Decl>();
Chris Lattner6f8ce142009-03-05 23:03:49 +0000855 if (!Member) {
856 if (BitWidth) DeleteExpr(BitWidth);
Chris Lattner682bf922009-03-29 16:50:03 +0000857 return DeclPtrTy();
Chris Lattner6f8ce142009-03-05 23:03:49 +0000858 }
Chris Lattner8b963ef2009-03-05 23:01:03 +0000859
860 // Non-instance-fields can't have a bitfield.
861 if (BitWidth) {
862 if (Member->isInvalidDecl()) {
863 // don't emit another diagnostic.
Douglas Gregor2d2e9cf2009-03-11 20:22:50 +0000864 } else if (isa<VarDecl>(Member)) {
Chris Lattner8b963ef2009-03-05 23:01:03 +0000865 // C++ 9.6p3: A bit-field shall not be a static member.
866 // "static member 'A' cannot be a bit-field"
867 Diag(Loc, diag::err_static_not_bitfield)
868 << Name << BitWidth->getSourceRange();
869 } else if (isa<TypedefDecl>(Member)) {
870 // "typedef member 'x' cannot be a bit-field"
871 Diag(Loc, diag::err_typedef_not_bitfield)
872 << Name << BitWidth->getSourceRange();
873 } else {
874 // A function typedef ("typedef int f(); f a;").
875 // C++ 9.6p3: A bit-field shall have integral or enumeration type.
876 Diag(Loc, diag::err_not_integral_type_bitfield)
Mike Stump1eb44332009-09-09 15:08:12 +0000877 << Name << cast<ValueDecl>(Member)->getType()
Douglas Gregor3cf538d2009-03-11 18:59:21 +0000878 << BitWidth->getSourceRange();
Chris Lattner8b963ef2009-03-05 23:01:03 +0000879 }
Mike Stump1eb44332009-09-09 15:08:12 +0000880
Chris Lattner8b963ef2009-03-05 23:01:03 +0000881 DeleteExpr(BitWidth);
882 BitWidth = 0;
883 Member->setInvalidDecl();
884 }
Douglas Gregor4dd55f52009-03-11 20:50:30 +0000885
886 Member->setAccess(AS);
Mike Stump1eb44332009-09-09 15:08:12 +0000887
Douglas Gregor37b372b2009-08-20 22:52:58 +0000888 // If we have declared a member function template, set the access of the
889 // templated declaration as well.
890 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Member))
891 FunTmpl->getTemplatedDecl()->setAccess(AS);
Chris Lattner24793662009-03-05 22:45:59 +0000892 }
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000893
Douglas Gregor10bd3682008-11-17 22:58:34 +0000894 assert((Name || isInstField) && "No identifier for non-field ?");
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000895
Douglas Gregor021c3b32009-03-11 23:00:04 +0000896 if (Init)
Chris Lattnerb28317a2009-03-28 19:18:32 +0000897 AddInitializerToDecl(DeclPtrTy::make(Member), ExprArg(*this, Init), false);
Sebastian Redle2b68332009-04-12 17:16:29 +0000898 if (Deleted) // FIXME: Source location is not very good.
899 SetDeclDeleted(DeclPtrTy::make(Member), D.getSourceRange().getBegin());
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000900
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000901 if (isInstField) {
Douglas Gregor44b43212008-12-11 16:49:14 +0000902 FieldCollector->Add(cast<FieldDecl>(Member));
Chris Lattner682bf922009-03-29 16:50:03 +0000903 return DeclPtrTy();
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000904 }
Chris Lattnerb28317a2009-03-28 19:18:32 +0000905 return DeclPtrTy::make(Member);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000906}
907
Douglas Gregor7ad83902008-11-05 04:29:56 +0000908/// ActOnMemInitializer - Handle a C++ member initializer.
Mike Stump1eb44332009-09-09 15:08:12 +0000909Sema::MemInitResult
Chris Lattnerb28317a2009-03-28 19:18:32 +0000910Sema::ActOnMemInitializer(DeclPtrTy ConstructorD,
Douglas Gregor7ad83902008-11-05 04:29:56 +0000911 Scope *S,
Fariborz Jahanianbcfad542009-06-30 23:26:25 +0000912 const CXXScopeSpec &SS,
Douglas Gregor7ad83902008-11-05 04:29:56 +0000913 IdentifierInfo *MemberOrBase,
Fariborz Jahanian96174332009-07-01 19:21:19 +0000914 TypeTy *TemplateTypeTy,
Douglas Gregor7ad83902008-11-05 04:29:56 +0000915 SourceLocation IdLoc,
916 SourceLocation LParenLoc,
917 ExprTy **Args, unsigned NumArgs,
918 SourceLocation *CommaLocs,
919 SourceLocation RParenLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000920 if (!ConstructorD)
921 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000922
Douglas Gregorefd5bda2009-08-24 11:57:43 +0000923 AdjustDeclIfTemplate(ConstructorD);
Mike Stump1eb44332009-09-09 15:08:12 +0000924
925 CXXConstructorDecl *Constructor
Chris Lattnerb28317a2009-03-28 19:18:32 +0000926 = dyn_cast<CXXConstructorDecl>(ConstructorD.getAs<Decl>());
Douglas Gregor7ad83902008-11-05 04:29:56 +0000927 if (!Constructor) {
928 // The user wrote a constructor initializer on a function that is
929 // not a C++ constructor. Ignore the error for now, because we may
930 // have more member initializers coming; we'll diagnose it just
931 // once in ActOnMemInitializers.
932 return true;
933 }
934
935 CXXRecordDecl *ClassDecl = Constructor->getParent();
936
937 // C++ [class.base.init]p2:
938 // Names in a mem-initializer-id are looked up in the scope of the
939 // constructor’s class and, if not found in that scope, are looked
940 // up in the scope containing the constructor’s
941 // definition. [Note: if the constructor’s class contains a member
942 // with the same name as a direct or virtual base class of the
943 // class, a mem-initializer-id naming the member or base class and
944 // composed of a single identifier refers to the class member. A
945 // mem-initializer-id for the hidden base class may be specified
946 // using a qualified name. ]
Fariborz Jahanian96174332009-07-01 19:21:19 +0000947 if (!SS.getScopeRep() && !TemplateTypeTy) {
Fariborz Jahanianbcfad542009-06-30 23:26:25 +0000948 // Look for a member, first.
949 FieldDecl *Member = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000950 DeclContext::lookup_result Result
Fariborz Jahanianbcfad542009-06-30 23:26:25 +0000951 = ClassDecl->lookup(MemberOrBase);
952 if (Result.first != Result.second)
953 Member = dyn_cast<FieldDecl>(*Result.first);
Douglas Gregor7ad83902008-11-05 04:29:56 +0000954
Fariborz Jahanianbcfad542009-06-30 23:26:25 +0000955 // FIXME: Handle members of an anonymous union.
Douglas Gregor7ad83902008-11-05 04:29:56 +0000956
Eli Friedman59c04372009-07-29 19:44:27 +0000957 if (Member)
958 return BuildMemberInitializer(Member, (Expr**)Args, NumArgs, IdLoc,
959 RParenLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +0000960 }
Douglas Gregor7ad83902008-11-05 04:29:56 +0000961 // It didn't name a member, so see if it names a class.
Mike Stump1eb44332009-09-09 15:08:12 +0000962 TypeTy *BaseTy = TemplateTypeTy ? TemplateTypeTy
Fariborz Jahanian96174332009-07-01 19:21:19 +0000963 : getTypeName(*MemberOrBase, IdLoc, S, &SS);
Douglas Gregor7ad83902008-11-05 04:29:56 +0000964 if (!BaseTy)
Chris Lattner3c73c412008-11-19 08:23:25 +0000965 return Diag(IdLoc, diag::err_mem_init_not_member_or_class)
966 << MemberOrBase << SourceRange(IdLoc, RParenLoc);
Mike Stump1eb44332009-09-09 15:08:12 +0000967
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +0000968 QualType BaseType = GetTypeFromParser(BaseTy);
Douglas Gregor7ad83902008-11-05 04:29:56 +0000969
Eli Friedman59c04372009-07-29 19:44:27 +0000970 return BuildBaseInitializer(BaseType, (Expr **)Args, NumArgs, IdLoc,
971 RParenLoc, ClassDecl);
972}
973
974Sema::MemInitResult
975Sema::BuildMemberInitializer(FieldDecl *Member, Expr **Args,
976 unsigned NumArgs, SourceLocation IdLoc,
977 SourceLocation RParenLoc) {
978 bool HasDependentArg = false;
979 for (unsigned i = 0; i < NumArgs; i++)
980 HasDependentArg |= Args[i]->isTypeDependent();
981
982 CXXConstructorDecl *C = 0;
983 QualType FieldType = Member->getType();
984 if (const ArrayType *Array = Context.getAsArrayType(FieldType))
985 FieldType = Array->getElementType();
986 if (FieldType->isDependentType()) {
987 // Can't check init for dependent type.
Ted Kremenek6217b802009-07-29 21:53:49 +0000988 } else if (FieldType->getAs<RecordType>()) {
Douglas Gregor39da0b82009-09-09 23:08:42 +0000989 if (!HasDependentArg) {
990 ASTOwningVector<&ActionBase::DeleteExpr> ConstructorArgs(*this);
991
992 C = PerformInitializationByConstructor(FieldType,
993 MultiExprArg(*this,
994 (void**)Args,
995 NumArgs),
996 IdLoc,
997 SourceRange(IdLoc, RParenLoc),
998 Member->getDeclName(), IK_Direct,
999 ConstructorArgs);
1000
1001 if (C) {
1002 // Take over the constructor arguments as our own.
1003 NumArgs = ConstructorArgs.size();
1004 Args = (Expr **)ConstructorArgs.take();
1005 }
1006 }
Fariborz Jahanian636a0ff2009-09-02 17:10:17 +00001007 } else if (NumArgs != 1 && NumArgs != 0) {
Mike Stump1eb44332009-09-09 15:08:12 +00001008 return Diag(IdLoc, diag::err_mem_initializer_mismatch)
Eli Friedman59c04372009-07-29 19:44:27 +00001009 << Member->getDeclName() << SourceRange(IdLoc, RParenLoc);
1010 } else if (!HasDependentArg) {
Fariborz Jahanian636a0ff2009-09-02 17:10:17 +00001011 Expr *NewExp;
1012 if (NumArgs == 0) {
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001013 if (FieldType->isReferenceType()) {
1014 Diag(IdLoc, diag::err_null_intialized_reference_member)
1015 << Member->getDeclName();
1016 return Diag(Member->getLocation(), diag::note_declared_at);
1017 }
Fariborz Jahanian636a0ff2009-09-02 17:10:17 +00001018 NewExp = new (Context) CXXZeroInitValueExpr(FieldType, IdLoc, RParenLoc);
1019 NumArgs = 1;
1020 }
1021 else
1022 NewExp = (Expr*)Args[0];
Eli Friedman59c04372009-07-29 19:44:27 +00001023 if (PerformCopyInitialization(NewExp, FieldType, "passing"))
1024 return true;
1025 Args[0] = NewExp;
Douglas Gregor7ad83902008-11-05 04:29:56 +00001026 }
Eli Friedman59c04372009-07-29 19:44:27 +00001027 // FIXME: Perform direct initialization of the member.
Mike Stump1eb44332009-09-09 15:08:12 +00001028 return new (Context) CXXBaseOrMemberInitializer(Member, (Expr **)Args,
Anders Carlsson8c57a662009-08-29 01:31:33 +00001029 NumArgs, C, IdLoc, RParenLoc);
Eli Friedman59c04372009-07-29 19:44:27 +00001030}
1031
1032Sema::MemInitResult
1033Sema::BuildBaseInitializer(QualType BaseType, Expr **Args,
1034 unsigned NumArgs, SourceLocation IdLoc,
1035 SourceLocation RParenLoc, CXXRecordDecl *ClassDecl) {
1036 bool HasDependentArg = false;
1037 for (unsigned i = 0; i < NumArgs; i++)
1038 HasDependentArg |= Args[i]->isTypeDependent();
1039
1040 if (!BaseType->isDependentType()) {
1041 if (!BaseType->isRecordType())
1042 return Diag(IdLoc, diag::err_base_init_does_not_name_class)
1043 << BaseType << SourceRange(IdLoc, RParenLoc);
1044
1045 // C++ [class.base.init]p2:
1046 // [...] Unless the mem-initializer-id names a nonstatic data
1047 // member of the constructor’s class or a direct or virtual base
1048 // of that class, the mem-initializer is ill-formed. A
1049 // mem-initializer-list can initialize a base class using any
1050 // name that denotes that base class type.
Mike Stump1eb44332009-09-09 15:08:12 +00001051
Eli Friedman59c04372009-07-29 19:44:27 +00001052 // First, check for a direct base class.
1053 const CXXBaseSpecifier *DirectBaseSpec = 0;
1054 for (CXXRecordDecl::base_class_const_iterator Base =
1055 ClassDecl->bases_begin(); Base != ClassDecl->bases_end(); ++Base) {
Mike Stump1eb44332009-09-09 15:08:12 +00001056 if (Context.getCanonicalType(BaseType).getUnqualifiedType() ==
Eli Friedman59c04372009-07-29 19:44:27 +00001057 Context.getCanonicalType(Base->getType()).getUnqualifiedType()) {
1058 // We found a direct base of this type. That's what we're
1059 // initializing.
1060 DirectBaseSpec = &*Base;
1061 break;
1062 }
1063 }
Mike Stump1eb44332009-09-09 15:08:12 +00001064
Eli Friedman59c04372009-07-29 19:44:27 +00001065 // Check for a virtual base class.
1066 // FIXME: We might be able to short-circuit this if we know in advance that
1067 // there are no virtual bases.
1068 const CXXBaseSpecifier *VirtualBaseSpec = 0;
1069 if (!DirectBaseSpec || !DirectBaseSpec->isVirtual()) {
1070 // We haven't found a base yet; search the class hierarchy for a
1071 // virtual base class.
Douglas Gregora8f32e02009-10-06 17:59:45 +00001072 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
1073 /*DetectVirtual=*/false);
Eli Friedman59c04372009-07-29 19:44:27 +00001074 if (IsDerivedFrom(Context.getTypeDeclType(ClassDecl), BaseType, Paths)) {
Douglas Gregora8f32e02009-10-06 17:59:45 +00001075 for (CXXBasePaths::paths_iterator Path = Paths.begin();
Eli Friedman59c04372009-07-29 19:44:27 +00001076 Path != Paths.end(); ++Path) {
1077 if (Path->back().Base->isVirtual()) {
1078 VirtualBaseSpec = Path->back().Base;
1079 break;
1080 }
Douglas Gregor7ad83902008-11-05 04:29:56 +00001081 }
1082 }
1083 }
Eli Friedman59c04372009-07-29 19:44:27 +00001084
1085 // C++ [base.class.init]p2:
1086 // If a mem-initializer-id is ambiguous because it designates both
1087 // a direct non-virtual base class and an inherited virtual base
1088 // class, the mem-initializer is ill-formed.
1089 if (DirectBaseSpec && VirtualBaseSpec)
1090 return Diag(IdLoc, diag::err_base_init_direct_and_virtual)
1091 << BaseType << SourceRange(IdLoc, RParenLoc);
1092 // C++ [base.class.init]p2:
1093 // Unless the mem-initializer-id names a nonstatic data membeer of the
1094 // constructor's class ot a direst or virtual base of that class, the
1095 // mem-initializer is ill-formed.
1096 if (!DirectBaseSpec && !VirtualBaseSpec)
1097 return Diag(IdLoc, diag::err_not_direct_base_or_virtual)
1098 << BaseType << ClassDecl->getNameAsCString()
1099 << SourceRange(IdLoc, RParenLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001100 }
1101
Fariborz Jahaniand7b27e12009-07-23 00:42:24 +00001102 CXXConstructorDecl *C = 0;
Eli Friedman59c04372009-07-29 19:44:27 +00001103 if (!BaseType->isDependentType() && !HasDependentArg) {
1104 DeclarationName Name = Context.DeclarationNames.getCXXConstructorName(
1105 Context.getCanonicalType(BaseType));
Douglas Gregor39da0b82009-09-09 23:08:42 +00001106 ASTOwningVector<&ActionBase::DeleteExpr> ConstructorArgs(*this);
1107
1108 C = PerformInitializationByConstructor(BaseType,
1109 MultiExprArg(*this,
1110 (void**)Args, NumArgs),
Mike Stump1eb44332009-09-09 15:08:12 +00001111 IdLoc, SourceRange(IdLoc, RParenLoc),
Douglas Gregor39da0b82009-09-09 23:08:42 +00001112 Name, IK_Direct,
1113 ConstructorArgs);
1114 if (C) {
1115 // Take over the constructor arguments as our own.
1116 NumArgs = ConstructorArgs.size();
1117 Args = (Expr **)ConstructorArgs.take();
1118 }
Eli Friedman59c04372009-07-29 19:44:27 +00001119 }
1120
Mike Stump1eb44332009-09-09 15:08:12 +00001121 return new (Context) CXXBaseOrMemberInitializer(BaseType, (Expr **)Args,
Anders Carlsson8c57a662009-08-29 01:31:33 +00001122 NumArgs, C, IdLoc, RParenLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001123}
1124
Fariborz Jahanian87595e42009-07-23 23:32:59 +00001125void
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001126Sema::setBaseOrMemberInitializers(CXXConstructorDecl *Constructor,
1127 CXXBaseOrMemberInitializer **Initializers,
1128 unsigned NumInitializers,
Mike Stump1eb44332009-09-09 15:08:12 +00001129 llvm::SmallVectorImpl<CXXBaseSpecifier *>& Bases,
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001130 llvm::SmallVectorImpl<FieldDecl *>&Fields) {
1131 // We need to build the initializer AST according to order of construction
1132 // and not what user specified in the Initializers list.
1133 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Constructor->getDeclContext());
1134 llvm::SmallVector<CXXBaseOrMemberInitializer*, 32> AllToInit;
1135 llvm::DenseMap<const void *, CXXBaseOrMemberInitializer*> AllBaseFields;
1136 bool HasDependentBaseInit = false;
Mike Stump1eb44332009-09-09 15:08:12 +00001137
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001138 for (unsigned i = 0; i < NumInitializers; i++) {
1139 CXXBaseOrMemberInitializer *Member = Initializers[i];
1140 if (Member->isBaseInitializer()) {
1141 if (Member->getBaseClass()->isDependentType())
1142 HasDependentBaseInit = true;
1143 AllBaseFields[Member->getBaseClass()->getAs<RecordType>()] = Member;
1144 } else {
1145 AllBaseFields[Member->getMember()] = Member;
1146 }
1147 }
Mike Stump1eb44332009-09-09 15:08:12 +00001148
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001149 if (HasDependentBaseInit) {
1150 // FIXME. This does not preserve the ordering of the initializers.
1151 // Try (with -Wreorder)
1152 // template<class X> struct A {};
Mike Stump1eb44332009-09-09 15:08:12 +00001153 // template<class X> struct B : A<X> {
1154 // B() : x1(10), A<X>() {}
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001155 // int x1;
1156 // };
1157 // B<int> x;
1158 // On seeing one dependent type, we should essentially exit this routine
1159 // while preserving user-declared initializer list. When this routine is
1160 // called during instantiatiation process, this routine will rebuild the
1161 // oderdered initializer list correctly.
Mike Stump1eb44332009-09-09 15:08:12 +00001162
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001163 // If we have a dependent base initialization, we can't determine the
1164 // association between initializers and bases; just dump the known
1165 // initializers into the list, and don't try to deal with other bases.
1166 for (unsigned i = 0; i < NumInitializers; i++) {
1167 CXXBaseOrMemberInitializer *Member = Initializers[i];
1168 if (Member->isBaseInitializer())
1169 AllToInit.push_back(Member);
1170 }
1171 } else {
1172 // Push virtual bases before others.
1173 for (CXXRecordDecl::base_class_iterator VBase =
1174 ClassDecl->vbases_begin(),
1175 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
1176 if (VBase->getType()->isDependentType())
1177 continue;
Mike Stump1eb44332009-09-09 15:08:12 +00001178 if (CXXBaseOrMemberInitializer *Value =
Fariborz Jahanian9d436202009-09-03 21:32:41 +00001179 AllBaseFields.lookup(VBase->getType()->getAs<RecordType>())) {
Mike Stump1eb44332009-09-09 15:08:12 +00001180 CXXRecordDecl *BaseDecl =
Fariborz Jahanian9d436202009-09-03 21:32:41 +00001181 cast<CXXRecordDecl>(VBase->getType()->getAs<RecordType>()->getDecl());
1182 assert(BaseDecl && "setBaseOrMemberInitializers - BaseDecl null");
1183 if (CXXConstructorDecl *Ctor = BaseDecl->getDefaultConstructor(Context))
1184 MarkDeclarationReferenced(Value->getSourceLocation(), Ctor);
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001185 AllToInit.push_back(Value);
Fariborz Jahanian9d436202009-09-03 21:32:41 +00001186 }
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001187 else {
Mike Stump1eb44332009-09-09 15:08:12 +00001188 CXXRecordDecl *VBaseDecl =
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001189 cast<CXXRecordDecl>(VBase->getType()->getAs<RecordType>()->getDecl());
1190 assert(VBaseDecl && "setBaseOrMemberInitializers - VBaseDecl null");
Fariborz Jahanian9d436202009-09-03 21:32:41 +00001191 CXXConstructorDecl *Ctor = VBaseDecl->getDefaultConstructor(Context);
1192 if (!Ctor)
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001193 Bases.push_back(VBase);
Fariborz Jahanian9d436202009-09-03 21:32:41 +00001194 else
1195 MarkDeclarationReferenced(Constructor->getLocation(), Ctor);
1196
Mike Stump1eb44332009-09-09 15:08:12 +00001197 CXXBaseOrMemberInitializer *Member =
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001198 new (Context) CXXBaseOrMemberInitializer(VBase->getType(), 0, 0,
Fariborz Jahanian9d436202009-09-03 21:32:41 +00001199 Ctor,
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001200 SourceLocation(),
1201 SourceLocation());
1202 AllToInit.push_back(Member);
1203 }
1204 }
Mike Stump1eb44332009-09-09 15:08:12 +00001205
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001206 for (CXXRecordDecl::base_class_iterator Base =
1207 ClassDecl->bases_begin(),
1208 E = ClassDecl->bases_end(); Base != E; ++Base) {
1209 // Virtuals are in the virtual base list and already constructed.
1210 if (Base->isVirtual())
1211 continue;
1212 // Skip dependent types.
1213 if (Base->getType()->isDependentType())
1214 continue;
Mike Stump1eb44332009-09-09 15:08:12 +00001215 if (CXXBaseOrMemberInitializer *Value =
Fariborz Jahanian9d436202009-09-03 21:32:41 +00001216 AllBaseFields.lookup(Base->getType()->getAs<RecordType>())) {
Mike Stump1eb44332009-09-09 15:08:12 +00001217 CXXRecordDecl *BaseDecl =
Fariborz Jahanian9d436202009-09-03 21:32:41 +00001218 cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
1219 assert(BaseDecl && "setBaseOrMemberInitializers - BaseDecl null");
1220 if (CXXConstructorDecl *Ctor = BaseDecl->getDefaultConstructor(Context))
1221 MarkDeclarationReferenced(Value->getSourceLocation(), Ctor);
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001222 AllToInit.push_back(Value);
Fariborz Jahanian9d436202009-09-03 21:32:41 +00001223 }
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001224 else {
Mike Stump1eb44332009-09-09 15:08:12 +00001225 CXXRecordDecl *BaseDecl =
Fariborz Jahanian9d436202009-09-03 21:32:41 +00001226 cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001227 assert(BaseDecl && "setBaseOrMemberInitializers - BaseDecl null");
Fariborz Jahanian9d436202009-09-03 21:32:41 +00001228 CXXConstructorDecl *Ctor = BaseDecl->getDefaultConstructor(Context);
1229 if (!Ctor)
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001230 Bases.push_back(Base);
Fariborz Jahanian9d436202009-09-03 21:32:41 +00001231 else
1232 MarkDeclarationReferenced(Constructor->getLocation(), Ctor);
1233
Mike Stump1eb44332009-09-09 15:08:12 +00001234 CXXBaseOrMemberInitializer *Member =
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001235 new (Context) CXXBaseOrMemberInitializer(Base->getType(), 0, 0,
1236 BaseDecl->getDefaultConstructor(Context),
1237 SourceLocation(),
1238 SourceLocation());
1239 AllToInit.push_back(Member);
1240 }
1241 }
1242 }
Mike Stump1eb44332009-09-09 15:08:12 +00001243
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001244 // non-static data members.
1245 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
1246 E = ClassDecl->field_end(); Field != E; ++Field) {
1247 if ((*Field)->isAnonymousStructOrUnion()) {
Mike Stump1eb44332009-09-09 15:08:12 +00001248 if (const RecordType *FieldClassType =
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001249 Field->getType()->getAs<RecordType>()) {
1250 CXXRecordDecl *FieldClassDecl
1251 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Mike Stump1eb44332009-09-09 15:08:12 +00001252 for (RecordDecl::field_iterator FA = FieldClassDecl->field_begin(),
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001253 EA = FieldClassDecl->field_end(); FA != EA; FA++) {
1254 if (CXXBaseOrMemberInitializer *Value = AllBaseFields.lookup(*FA)) {
1255 // 'Member' is the anonymous union field and 'AnonUnionMember' is
1256 // set to the anonymous union data member used in the initializer
1257 // list.
1258 Value->setMember(*Field);
1259 Value->setAnonUnionMember(*FA);
1260 AllToInit.push_back(Value);
1261 break;
1262 }
1263 }
1264 }
1265 continue;
1266 }
1267 if (CXXBaseOrMemberInitializer *Value = AllBaseFields.lookup(*Field)) {
Fariborz Jahanian9d436202009-09-03 21:32:41 +00001268 QualType FT = (*Field)->getType();
1269 if (const RecordType* RT = FT->getAs<RecordType>()) {
1270 CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(RT->getDecl());
1271 assert(FieldRecDecl && "setBaseOrMemberInitializers - BaseDecl null");
Mike Stump1eb44332009-09-09 15:08:12 +00001272 if (CXXConstructorDecl *Ctor =
Fariborz Jahanian9d436202009-09-03 21:32:41 +00001273 FieldRecDecl->getDefaultConstructor(Context))
1274 MarkDeclarationReferenced(Value->getSourceLocation(), Ctor);
1275 }
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001276 AllToInit.push_back(Value);
1277 continue;
1278 }
Mike Stump1eb44332009-09-09 15:08:12 +00001279
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001280 QualType FT = Context.getBaseElementType((*Field)->getType());
1281 if (const RecordType* RT = FT->getAs<RecordType>()) {
1282 CXXConstructorDecl *Ctor =
1283 cast<CXXRecordDecl>(RT->getDecl())->getDefaultConstructor(Context);
1284 if (!Ctor && !FT->isDependentType())
1285 Fields.push_back(*Field);
Mike Stump1eb44332009-09-09 15:08:12 +00001286 CXXBaseOrMemberInitializer *Member =
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001287 new (Context) CXXBaseOrMemberInitializer((*Field), 0, 0,
1288 Ctor,
1289 SourceLocation(),
1290 SourceLocation());
1291 AllToInit.push_back(Member);
Fariborz Jahanian9d436202009-09-03 21:32:41 +00001292 if (Ctor)
1293 MarkDeclarationReferenced(Constructor->getLocation(), Ctor);
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001294 if (FT.isConstQualified() && (!Ctor || Ctor->isTrivial())) {
1295 Diag(Constructor->getLocation(), diag::err_unintialized_member_in_ctor)
1296 << Context.getTagDeclType(ClassDecl) << 1 << (*Field)->getDeclName();
1297 Diag((*Field)->getLocation(), diag::note_declared_at);
1298 }
1299 }
1300 else if (FT->isReferenceType()) {
1301 Diag(Constructor->getLocation(), diag::err_unintialized_member_in_ctor)
1302 << Context.getTagDeclType(ClassDecl) << 0 << (*Field)->getDeclName();
1303 Diag((*Field)->getLocation(), diag::note_declared_at);
1304 }
1305 else if (FT.isConstQualified()) {
1306 Diag(Constructor->getLocation(), diag::err_unintialized_member_in_ctor)
1307 << Context.getTagDeclType(ClassDecl) << 1 << (*Field)->getDeclName();
1308 Diag((*Field)->getLocation(), diag::note_declared_at);
1309 }
1310 }
Mike Stump1eb44332009-09-09 15:08:12 +00001311
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001312 NumInitializers = AllToInit.size();
1313 if (NumInitializers > 0) {
1314 Constructor->setNumBaseOrMemberInitializers(NumInitializers);
1315 CXXBaseOrMemberInitializer **baseOrMemberInitializers =
1316 new (Context) CXXBaseOrMemberInitializer*[NumInitializers];
Mike Stump1eb44332009-09-09 15:08:12 +00001317
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001318 Constructor->setBaseOrMemberInitializers(baseOrMemberInitializers);
1319 for (unsigned Idx = 0; Idx < NumInitializers; ++Idx)
1320 baseOrMemberInitializers[Idx] = AllToInit[Idx];
1321 }
1322}
1323
1324void
Fariborz Jahanian87595e42009-07-23 23:32:59 +00001325Sema::BuildBaseOrMemberInitializers(ASTContext &C,
1326 CXXConstructorDecl *Constructor,
1327 CXXBaseOrMemberInitializer **Initializers,
1328 unsigned NumInitializers
1329 ) {
1330 llvm::SmallVector<CXXBaseSpecifier *, 4>Bases;
1331 llvm::SmallVector<FieldDecl *, 4>Members;
Mike Stump1eb44332009-09-09 15:08:12 +00001332
1333 setBaseOrMemberInitializers(Constructor,
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001334 Initializers, NumInitializers, Bases, Members);
Fariborz Jahanian87595e42009-07-23 23:32:59 +00001335 for (unsigned int i = 0; i < Bases.size(); i++)
Mike Stump1eb44332009-09-09 15:08:12 +00001336 Diag(Bases[i]->getSourceRange().getBegin(),
Fariborz Jahanian87595e42009-07-23 23:32:59 +00001337 diag::err_missing_default_constructor) << 0 << Bases[i]->getType();
1338 for (unsigned int i = 0; i < Members.size(); i++)
Mike Stump1eb44332009-09-09 15:08:12 +00001339 Diag(Members[i]->getLocation(), diag::err_missing_default_constructor)
Fariborz Jahanian87595e42009-07-23 23:32:59 +00001340 << 1 << Members[i]->getType();
1341}
1342
Eli Friedman6347f422009-07-21 19:28:10 +00001343static void *GetKeyForTopLevelField(FieldDecl *Field) {
1344 // For anonymous unions, use the class declaration as the key.
Ted Kremenek6217b802009-07-29 21:53:49 +00001345 if (const RecordType *RT = Field->getType()->getAs<RecordType>()) {
Eli Friedman6347f422009-07-21 19:28:10 +00001346 if (RT->getDecl()->isAnonymousStructOrUnion())
1347 return static_cast<void *>(RT->getDecl());
1348 }
1349 return static_cast<void *>(Field);
1350}
1351
Anders Carlssoncdc83c72009-09-01 06:22:14 +00001352static void *GetKeyForBase(QualType BaseType) {
1353 if (const RecordType *RT = BaseType->getAs<RecordType>())
1354 return (void *)RT;
Mike Stump1eb44332009-09-09 15:08:12 +00001355
Anders Carlssoncdc83c72009-09-01 06:22:14 +00001356 assert(0 && "Unexpected base type!");
1357 return 0;
1358}
1359
Mike Stump1eb44332009-09-09 15:08:12 +00001360static void *GetKeyForMember(CXXBaseOrMemberInitializer *Member,
Anders Carlssoncdc83c72009-09-01 06:22:14 +00001361 bool MemberMaybeAnon = false) {
Eli Friedman6347f422009-07-21 19:28:10 +00001362 // For fields injected into the class via declaration of an anonymous union,
1363 // use its anonymous union class declaration as the unique key.
Anders Carlssoncdc83c72009-09-01 06:22:14 +00001364 if (Member->isMemberInitializer()) {
1365 FieldDecl *Field = Member->getMember();
Mike Stump1eb44332009-09-09 15:08:12 +00001366
Fariborz Jahaniane6494122009-08-11 18:49:54 +00001367 // After BuildBaseOrMemberInitializers call, Field is the anonymous union
Mike Stump1eb44332009-09-09 15:08:12 +00001368 // data member of the class. Data member used in the initializer list is
Fariborz Jahaniane6494122009-08-11 18:49:54 +00001369 // in AnonUnionMember field.
1370 if (MemberMaybeAnon && Field->isAnonymousStructOrUnion())
1371 Field = Member->getAnonUnionMember();
Eli Friedman6347f422009-07-21 19:28:10 +00001372 if (Field->getDeclContext()->isRecord()) {
1373 RecordDecl *RD = cast<RecordDecl>(Field->getDeclContext());
1374 if (RD->isAnonymousStructOrUnion())
1375 return static_cast<void *>(RD);
1376 }
1377 return static_cast<void *>(Field);
1378 }
Mike Stump1eb44332009-09-09 15:08:12 +00001379
Anders Carlssoncdc83c72009-09-01 06:22:14 +00001380 return GetKeyForBase(QualType(Member->getBaseClass(), 0));
Eli Friedman6347f422009-07-21 19:28:10 +00001381}
1382
Mike Stump1eb44332009-09-09 15:08:12 +00001383void Sema::ActOnMemInitializers(DeclPtrTy ConstructorDecl,
Anders Carlssona7b35212009-03-25 02:58:17 +00001384 SourceLocation ColonLoc,
1385 MemInitTy **MemInits, unsigned NumMemInits) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00001386 if (!ConstructorDecl)
1387 return;
Douglas Gregorefd5bda2009-08-24 11:57:43 +00001388
1389 AdjustDeclIfTemplate(ConstructorDecl);
Mike Stump1eb44332009-09-09 15:08:12 +00001390
1391 CXXConstructorDecl *Constructor
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00001392 = dyn_cast<CXXConstructorDecl>(ConstructorDecl.getAs<Decl>());
Mike Stump1eb44332009-09-09 15:08:12 +00001393
Anders Carlssona7b35212009-03-25 02:58:17 +00001394 if (!Constructor) {
1395 Diag(ColonLoc, diag::err_only_constructors_take_base_inits);
1396 return;
1397 }
Mike Stump1eb44332009-09-09 15:08:12 +00001398
Anders Carlsson8d4c5ea2009-08-27 05:57:30 +00001399 if (!Constructor->isDependentContext()) {
1400 llvm::DenseMap<void*, CXXBaseOrMemberInitializer *>Members;
1401 bool err = false;
1402 for (unsigned i = 0; i < NumMemInits; i++) {
Mike Stump1eb44332009-09-09 15:08:12 +00001403 CXXBaseOrMemberInitializer *Member =
Anders Carlsson8d4c5ea2009-08-27 05:57:30 +00001404 static_cast<CXXBaseOrMemberInitializer*>(MemInits[i]);
1405 void *KeyToMember = GetKeyForMember(Member);
1406 CXXBaseOrMemberInitializer *&PrevMember = Members[KeyToMember];
1407 if (!PrevMember) {
1408 PrevMember = Member;
1409 continue;
1410 }
1411 if (FieldDecl *Field = Member->getMember())
Mike Stump1eb44332009-09-09 15:08:12 +00001412 Diag(Member->getSourceLocation(),
Anders Carlsson8d4c5ea2009-08-27 05:57:30 +00001413 diag::error_multiple_mem_initialization)
1414 << Field->getNameAsString();
1415 else {
1416 Type *BaseClass = Member->getBaseClass();
1417 assert(BaseClass && "ActOnMemInitializers - neither field or base");
Mike Stump1eb44332009-09-09 15:08:12 +00001418 Diag(Member->getSourceLocation(),
Anders Carlsson8d4c5ea2009-08-27 05:57:30 +00001419 diag::error_multiple_base_initialization)
John McCallbf1cc052009-09-29 23:03:30 +00001420 << QualType(BaseClass, 0);
Anders Carlsson8d4c5ea2009-08-27 05:57:30 +00001421 }
1422 Diag(PrevMember->getSourceLocation(), diag::note_previous_initializer)
1423 << 0;
1424 err = true;
1425 }
Mike Stump1eb44332009-09-09 15:08:12 +00001426
Anders Carlsson8d4c5ea2009-08-27 05:57:30 +00001427 if (err)
1428 return;
1429 }
Mike Stump1eb44332009-09-09 15:08:12 +00001430
Anders Carlsson5c36fb22009-08-27 05:45:01 +00001431 BuildBaseOrMemberInitializers(Context, Constructor,
Mike Stump1eb44332009-09-09 15:08:12 +00001432 reinterpret_cast<CXXBaseOrMemberInitializer **>(MemInits),
Fariborz Jahanian87595e42009-07-23 23:32:59 +00001433 NumMemInits);
Mike Stump1eb44332009-09-09 15:08:12 +00001434
Anders Carlsson8d4c5ea2009-08-27 05:57:30 +00001435 if (Constructor->isDependentContext())
1436 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001437
1438 if (Diags.getDiagnosticLevel(diag::warn_base_initialized) ==
Anders Carlsson5c36fb22009-08-27 05:45:01 +00001439 Diagnostic::Ignored &&
Mike Stump1eb44332009-09-09 15:08:12 +00001440 Diags.getDiagnosticLevel(diag::warn_field_initialized) ==
Anders Carlsson5c36fb22009-08-27 05:45:01 +00001441 Diagnostic::Ignored)
1442 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001443
Anders Carlsson5c36fb22009-08-27 05:45:01 +00001444 // Also issue warning if order of ctor-initializer list does not match order
1445 // of 1) base class declarations and 2) order of non-static data members.
1446 llvm::SmallVector<const void*, 32> AllBaseOrMembers;
Mike Stump1eb44332009-09-09 15:08:12 +00001447
Anders Carlsson5c36fb22009-08-27 05:45:01 +00001448 CXXRecordDecl *ClassDecl
1449 = cast<CXXRecordDecl>(Constructor->getDeclContext());
1450 // Push virtual bases before others.
1451 for (CXXRecordDecl::base_class_iterator VBase =
1452 ClassDecl->vbases_begin(),
1453 E = ClassDecl->vbases_end(); VBase != E; ++VBase)
Anders Carlssoncdc83c72009-09-01 06:22:14 +00001454 AllBaseOrMembers.push_back(GetKeyForBase(VBase->getType()));
Mike Stump1eb44332009-09-09 15:08:12 +00001455
Anders Carlsson5c36fb22009-08-27 05:45:01 +00001456 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
1457 E = ClassDecl->bases_end(); Base != E; ++Base) {
1458 // Virtuals are alread in the virtual base list and are constructed
1459 // first.
1460 if (Base->isVirtual())
1461 continue;
Anders Carlssoncdc83c72009-09-01 06:22:14 +00001462 AllBaseOrMembers.push_back(GetKeyForBase(Base->getType()));
Anders Carlsson5c36fb22009-08-27 05:45:01 +00001463 }
Mike Stump1eb44332009-09-09 15:08:12 +00001464
Anders Carlsson5c36fb22009-08-27 05:45:01 +00001465 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
1466 E = ClassDecl->field_end(); Field != E; ++Field)
1467 AllBaseOrMembers.push_back(GetKeyForTopLevelField(*Field));
Mike Stump1eb44332009-09-09 15:08:12 +00001468
Anders Carlsson5c36fb22009-08-27 05:45:01 +00001469 int Last = AllBaseOrMembers.size();
1470 int curIndex = 0;
1471 CXXBaseOrMemberInitializer *PrevMember = 0;
1472 for (unsigned i = 0; i < NumMemInits; i++) {
Mike Stump1eb44332009-09-09 15:08:12 +00001473 CXXBaseOrMemberInitializer *Member =
Anders Carlsson5c36fb22009-08-27 05:45:01 +00001474 static_cast<CXXBaseOrMemberInitializer*>(MemInits[i]);
1475 void *MemberInCtorList = GetKeyForMember(Member, true);
Eli Friedman6347f422009-07-21 19:28:10 +00001476
Anders Carlsson5c36fb22009-08-27 05:45:01 +00001477 for (; curIndex < Last; curIndex++)
1478 if (MemberInCtorList == AllBaseOrMembers[curIndex])
1479 break;
1480 if (curIndex == Last) {
1481 assert(PrevMember && "Member not in member list?!");
1482 // Initializer as specified in ctor-initializer list is out of order.
1483 // Issue a warning diagnostic.
1484 if (PrevMember->isBaseInitializer()) {
1485 // Diagnostics is for an initialized base class.
1486 Type *BaseClass = PrevMember->getBaseClass();
1487 Diag(PrevMember->getSourceLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00001488 diag::warn_base_initialized)
John McCallbf1cc052009-09-29 23:03:30 +00001489 << QualType(BaseClass, 0);
Anders Carlsson5c36fb22009-08-27 05:45:01 +00001490 } else {
1491 FieldDecl *Field = PrevMember->getMember();
1492 Diag(PrevMember->getSourceLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00001493 diag::warn_field_initialized)
Anders Carlsson5c36fb22009-08-27 05:45:01 +00001494 << Field->getNameAsString();
Fariborz Jahanianeb96e122009-07-09 19:59:47 +00001495 }
Anders Carlsson5c36fb22009-08-27 05:45:01 +00001496 // Also the note!
1497 if (FieldDecl *Field = Member->getMember())
Mike Stump1eb44332009-09-09 15:08:12 +00001498 Diag(Member->getSourceLocation(),
Anders Carlsson5c36fb22009-08-27 05:45:01 +00001499 diag::note_fieldorbase_initialized_here) << 0
1500 << Field->getNameAsString();
1501 else {
1502 Type *BaseClass = Member->getBaseClass();
Mike Stump1eb44332009-09-09 15:08:12 +00001503 Diag(Member->getSourceLocation(),
Anders Carlsson5c36fb22009-08-27 05:45:01 +00001504 diag::note_fieldorbase_initialized_here) << 1
John McCallbf1cc052009-09-29 23:03:30 +00001505 << QualType(BaseClass, 0);
Anders Carlsson5c36fb22009-08-27 05:45:01 +00001506 }
1507 for (curIndex = 0; curIndex < Last; curIndex++)
Mike Stump1eb44332009-09-09 15:08:12 +00001508 if (MemberInCtorList == AllBaseOrMembers[curIndex])
Anders Carlsson5c36fb22009-08-27 05:45:01 +00001509 break;
Fariborz Jahanianeb96e122009-07-09 19:59:47 +00001510 }
Anders Carlsson5c36fb22009-08-27 05:45:01 +00001511 PrevMember = Member;
Fariborz Jahanianeb96e122009-07-09 19:59:47 +00001512 }
Anders Carlssona7b35212009-03-25 02:58:17 +00001513}
1514
Fariborz Jahanian34374e62009-09-03 23:18:17 +00001515void
1516Sema::computeBaseOrMembersToDestroy(CXXDestructorDecl *Destructor) {
1517 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Destructor->getDeclContext());
1518 llvm::SmallVector<uintptr_t, 32> AllToDestruct;
Mike Stump1eb44332009-09-09 15:08:12 +00001519
Fariborz Jahanian34374e62009-09-03 23:18:17 +00001520 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
1521 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
1522 if (VBase->getType()->isDependentType())
1523 continue;
1524 // Skip over virtual bases which have trivial destructors.
1525 CXXRecordDecl *BaseClassDecl
1526 = cast<CXXRecordDecl>(VBase->getType()->getAs<RecordType>()->getDecl());
1527 if (BaseClassDecl->hasTrivialDestructor())
1528 continue;
1529 if (const CXXDestructorDecl *Dtor = BaseClassDecl->getDestructor(Context))
Mike Stump1eb44332009-09-09 15:08:12 +00001530 MarkDeclarationReferenced(Destructor->getLocation(),
Fariborz Jahanian34374e62009-09-03 23:18:17 +00001531 const_cast<CXXDestructorDecl*>(Dtor));
Mike Stump1eb44332009-09-09 15:08:12 +00001532
1533 uintptr_t Member =
1534 reinterpret_cast<uintptr_t>(VBase->getType().getTypePtr())
Fariborz Jahanian34374e62009-09-03 23:18:17 +00001535 | CXXDestructorDecl::VBASE;
1536 AllToDestruct.push_back(Member);
1537 }
1538 for (CXXRecordDecl::base_class_iterator Base =
1539 ClassDecl->bases_begin(),
1540 E = ClassDecl->bases_end(); Base != E; ++Base) {
1541 if (Base->isVirtual())
1542 continue;
1543 if (Base->getType()->isDependentType())
1544 continue;
1545 // Skip over virtual bases which have trivial destructors.
1546 CXXRecordDecl *BaseClassDecl
1547 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
1548 if (BaseClassDecl->hasTrivialDestructor())
1549 continue;
1550 if (const CXXDestructorDecl *Dtor = BaseClassDecl->getDestructor(Context))
Mike Stump1eb44332009-09-09 15:08:12 +00001551 MarkDeclarationReferenced(Destructor->getLocation(),
Fariborz Jahanian34374e62009-09-03 23:18:17 +00001552 const_cast<CXXDestructorDecl*>(Dtor));
Mike Stump1eb44332009-09-09 15:08:12 +00001553 uintptr_t Member =
1554 reinterpret_cast<uintptr_t>(Base->getType().getTypePtr())
Fariborz Jahanian34374e62009-09-03 23:18:17 +00001555 | CXXDestructorDecl::DRCTNONVBASE;
1556 AllToDestruct.push_back(Member);
1557 }
Mike Stump1eb44332009-09-09 15:08:12 +00001558
Fariborz Jahanian34374e62009-09-03 23:18:17 +00001559 // non-static data members.
1560 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
1561 E = ClassDecl->field_end(); Field != E; ++Field) {
1562 QualType FieldType = Context.getBaseElementType((*Field)->getType());
Mike Stump1eb44332009-09-09 15:08:12 +00001563
Fariborz Jahanian34374e62009-09-03 23:18:17 +00001564 if (const RecordType* RT = FieldType->getAs<RecordType>()) {
1565 // Skip over virtual bases which have trivial destructors.
1566 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl());
1567 if (FieldClassDecl->hasTrivialDestructor())
1568 continue;
Mike Stump1eb44332009-09-09 15:08:12 +00001569 if (const CXXDestructorDecl *Dtor =
Fariborz Jahanian34374e62009-09-03 23:18:17 +00001570 FieldClassDecl->getDestructor(Context))
Mike Stump1eb44332009-09-09 15:08:12 +00001571 MarkDeclarationReferenced(Destructor->getLocation(),
Fariborz Jahanian34374e62009-09-03 23:18:17 +00001572 const_cast<CXXDestructorDecl*>(Dtor));
1573 uintptr_t Member = reinterpret_cast<uintptr_t>(*Field);
1574 AllToDestruct.push_back(Member);
1575 }
1576 }
Mike Stump1eb44332009-09-09 15:08:12 +00001577
Fariborz Jahanian34374e62009-09-03 23:18:17 +00001578 unsigned NumDestructions = AllToDestruct.size();
1579 if (NumDestructions > 0) {
1580 Destructor->setNumBaseOrMemberDestructions(NumDestructions);
Mike Stump1eb44332009-09-09 15:08:12 +00001581 uintptr_t *BaseOrMemberDestructions =
Fariborz Jahanian34374e62009-09-03 23:18:17 +00001582 new (Context) uintptr_t [NumDestructions];
1583 // Insert in reverse order.
1584 for (int Idx = NumDestructions-1, i=0 ; Idx >= 0; --Idx)
1585 BaseOrMemberDestructions[i++] = AllToDestruct[Idx];
1586 Destructor->setBaseOrMemberDestructions(BaseOrMemberDestructions);
1587 }
1588}
1589
Fariborz Jahanian393612e2009-07-21 22:36:06 +00001590void Sema::ActOnDefaultCtorInitializers(DeclPtrTy CDtorDecl) {
Fariborz Jahanian560de452009-07-15 22:34:08 +00001591 if (!CDtorDecl)
Fariborz Jahaniand01c9152009-07-14 18:24:21 +00001592 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001593
Douglas Gregorefd5bda2009-08-24 11:57:43 +00001594 AdjustDeclIfTemplate(CDtorDecl);
Mike Stump1eb44332009-09-09 15:08:12 +00001595
1596 if (CXXConstructorDecl *Constructor
Fariborz Jahanian560de452009-07-15 22:34:08 +00001597 = dyn_cast<CXXConstructorDecl>(CDtorDecl.getAs<Decl>()))
Fariborz Jahanian87595e42009-07-23 23:32:59 +00001598 BuildBaseOrMemberInitializers(Context,
1599 Constructor,
1600 (CXXBaseOrMemberInitializer **)0, 0);
Fariborz Jahaniand01c9152009-07-14 18:24:21 +00001601}
1602
Anders Carlsson67e4dd22009-03-22 01:52:17 +00001603namespace {
1604 /// PureVirtualMethodCollector - traverses a class and its superclasses
1605 /// and determines if it has any pure virtual methods.
1606 class VISIBILITY_HIDDEN PureVirtualMethodCollector {
1607 ASTContext &Context;
1608
Sebastian Redldfe292d2009-03-22 21:28:55 +00001609 public:
Anders Carlsson67e4dd22009-03-22 01:52:17 +00001610 typedef llvm::SmallVector<const CXXMethodDecl*, 8> MethodList;
Sebastian Redldfe292d2009-03-22 21:28:55 +00001611
1612 private:
Anders Carlsson67e4dd22009-03-22 01:52:17 +00001613 MethodList Methods;
Mike Stump1eb44332009-09-09 15:08:12 +00001614
Anders Carlsson67e4dd22009-03-22 01:52:17 +00001615 void Collect(const CXXRecordDecl* RD, MethodList& Methods);
Mike Stump1eb44332009-09-09 15:08:12 +00001616
Anders Carlsson67e4dd22009-03-22 01:52:17 +00001617 public:
Mike Stump1eb44332009-09-09 15:08:12 +00001618 PureVirtualMethodCollector(ASTContext &Ctx, const CXXRecordDecl* RD)
Anders Carlsson67e4dd22009-03-22 01:52:17 +00001619 : Context(Ctx) {
Mike Stump1eb44332009-09-09 15:08:12 +00001620
Anders Carlsson67e4dd22009-03-22 01:52:17 +00001621 MethodList List;
1622 Collect(RD, List);
Mike Stump1eb44332009-09-09 15:08:12 +00001623
Anders Carlsson67e4dd22009-03-22 01:52:17 +00001624 // Copy the temporary list to methods, and make sure to ignore any
1625 // null entries.
1626 for (size_t i = 0, e = List.size(); i != e; ++i) {
1627 if (List[i])
1628 Methods.push_back(List[i]);
Mike Stump1eb44332009-09-09 15:08:12 +00001629 }
Anders Carlsson67e4dd22009-03-22 01:52:17 +00001630 }
Mike Stump1eb44332009-09-09 15:08:12 +00001631
Anders Carlsson4681ebd2009-03-22 20:18:17 +00001632 bool empty() const { return Methods.empty(); }
Mike Stump1eb44332009-09-09 15:08:12 +00001633
Anders Carlsson4681ebd2009-03-22 20:18:17 +00001634 MethodList::const_iterator methods_begin() { return Methods.begin(); }
1635 MethodList::const_iterator methods_end() { return Methods.end(); }
Anders Carlsson67e4dd22009-03-22 01:52:17 +00001636 };
Mike Stump1eb44332009-09-09 15:08:12 +00001637
1638 void PureVirtualMethodCollector::Collect(const CXXRecordDecl* RD,
Anders Carlsson67e4dd22009-03-22 01:52:17 +00001639 MethodList& Methods) {
1640 // First, collect the pure virtual methods for the base classes.
1641 for (CXXRecordDecl::base_class_const_iterator Base = RD->bases_begin(),
1642 BaseEnd = RD->bases_end(); Base != BaseEnd; ++Base) {
Ted Kremenek6217b802009-07-29 21:53:49 +00001643 if (const RecordType *RT = Base->getType()->getAs<RecordType>()) {
Chris Lattner64540d72009-03-29 05:01:10 +00001644 const CXXRecordDecl *BaseDecl = cast<CXXRecordDecl>(RT->getDecl());
Anders Carlsson67e4dd22009-03-22 01:52:17 +00001645 if (BaseDecl && BaseDecl->isAbstract())
1646 Collect(BaseDecl, Methods);
1647 }
1648 }
Mike Stump1eb44332009-09-09 15:08:12 +00001649
Anders Carlsson67e4dd22009-03-22 01:52:17 +00001650 // Next, zero out any pure virtual methods that this class overrides.
Anders Carlsson8ff8c222009-05-17 00:00:05 +00001651 typedef llvm::SmallPtrSet<const CXXMethodDecl*, 4> MethodSetTy;
Mike Stump1eb44332009-09-09 15:08:12 +00001652
Anders Carlsson8ff8c222009-05-17 00:00:05 +00001653 MethodSetTy OverriddenMethods;
1654 size_t MethodsSize = Methods.size();
1655
Mike Stump1eb44332009-09-09 15:08:12 +00001656 for (RecordDecl::decl_iterator i = RD->decls_begin(), e = RD->decls_end();
Anders Carlsson8ff8c222009-05-17 00:00:05 +00001657 i != e; ++i) {
1658 // Traverse the record, looking for methods.
1659 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(*i)) {
Sebastian Redl23c7d062009-07-07 20:29:57 +00001660 // If the method is pure virtual, add it to the methods vector.
Anders Carlsson8ff8c222009-05-17 00:00:05 +00001661 if (MD->isPure()) {
1662 Methods.push_back(MD);
1663 continue;
1664 }
Mike Stump1eb44332009-09-09 15:08:12 +00001665
Anders Carlsson8ff8c222009-05-17 00:00:05 +00001666 // Otherwise, record all the overridden methods in our set.
1667 for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(),
1668 E = MD->end_overridden_methods(); I != E; ++I) {
1669 // Keep track of the overridden methods.
1670 OverriddenMethods.insert(*I);
Anders Carlsson67e4dd22009-03-22 01:52:17 +00001671 }
1672 }
1673 }
Mike Stump1eb44332009-09-09 15:08:12 +00001674
1675 // Now go through the methods and zero out all the ones we know are
Anders Carlsson8ff8c222009-05-17 00:00:05 +00001676 // overridden.
1677 for (size_t i = 0, e = MethodsSize; i != e; ++i) {
1678 if (OverriddenMethods.count(Methods[i]))
1679 Methods[i] = 0;
Anders Carlsson67e4dd22009-03-22 01:52:17 +00001680 }
Mike Stump1eb44332009-09-09 15:08:12 +00001681
Anders Carlsson67e4dd22009-03-22 01:52:17 +00001682 }
1683}
Douglas Gregor7ad83902008-11-05 04:29:56 +00001684
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00001685
Mike Stump1eb44332009-09-09 15:08:12 +00001686bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
Anders Carlssone65a3c82009-03-24 17:23:42 +00001687 unsigned DiagID, AbstractDiagSelID SelID,
1688 const CXXRecordDecl *CurrentRD) {
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00001689 if (SelID == -1)
1690 return RequireNonAbstractType(Loc, T,
1691 PDiag(DiagID), CurrentRD);
1692 else
1693 return RequireNonAbstractType(Loc, T,
1694 PDiag(DiagID) << SelID, CurrentRD);
Mike Stump1eb44332009-09-09 15:08:12 +00001695}
1696
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00001697bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
1698 const PartialDiagnostic &PD,
1699 const CXXRecordDecl *CurrentRD) {
Anders Carlsson4681ebd2009-03-22 20:18:17 +00001700 if (!getLangOptions().CPlusPlus)
1701 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001702
Anders Carlsson11f21a02009-03-23 19:10:31 +00001703 if (const ArrayType *AT = Context.getAsArrayType(T))
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00001704 return RequireNonAbstractType(Loc, AT->getElementType(), PD,
Anders Carlssone65a3c82009-03-24 17:23:42 +00001705 CurrentRD);
Mike Stump1eb44332009-09-09 15:08:12 +00001706
Ted Kremenek6217b802009-07-29 21:53:49 +00001707 if (const PointerType *PT = T->getAs<PointerType>()) {
Anders Carlsson5eff73c2009-03-24 01:46:45 +00001708 // Find the innermost pointer type.
Ted Kremenek6217b802009-07-29 21:53:49 +00001709 while (const PointerType *T = PT->getPointeeType()->getAs<PointerType>())
Anders Carlsson5eff73c2009-03-24 01:46:45 +00001710 PT = T;
Mike Stump1eb44332009-09-09 15:08:12 +00001711
Anders Carlsson5eff73c2009-03-24 01:46:45 +00001712 if (const ArrayType *AT = Context.getAsArrayType(PT->getPointeeType()))
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00001713 return RequireNonAbstractType(Loc, AT->getElementType(), PD, CurrentRD);
Anders Carlsson5eff73c2009-03-24 01:46:45 +00001714 }
Mike Stump1eb44332009-09-09 15:08:12 +00001715
Ted Kremenek6217b802009-07-29 21:53:49 +00001716 const RecordType *RT = T->getAs<RecordType>();
Anders Carlsson4681ebd2009-03-22 20:18:17 +00001717 if (!RT)
1718 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001719
Anders Carlsson4681ebd2009-03-22 20:18:17 +00001720 const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(RT->getDecl());
1721 if (!RD)
1722 return false;
1723
Anders Carlssone65a3c82009-03-24 17:23:42 +00001724 if (CurrentRD && CurrentRD != RD)
1725 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001726
Anders Carlsson4681ebd2009-03-22 20:18:17 +00001727 if (!RD->isAbstract())
1728 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001729
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00001730 Diag(Loc, PD) << RD->getDeclName();
Mike Stump1eb44332009-09-09 15:08:12 +00001731
Anders Carlsson4681ebd2009-03-22 20:18:17 +00001732 // Check if we've already emitted the list of pure virtual functions for this
1733 // class.
1734 if (PureVirtualClassDiagSet && PureVirtualClassDiagSet->count(RD))
1735 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001736
Anders Carlsson4681ebd2009-03-22 20:18:17 +00001737 PureVirtualMethodCollector Collector(Context, RD);
Mike Stump1eb44332009-09-09 15:08:12 +00001738
1739 for (PureVirtualMethodCollector::MethodList::const_iterator I =
Anders Carlsson4681ebd2009-03-22 20:18:17 +00001740 Collector.methods_begin(), E = Collector.methods_end(); I != E; ++I) {
1741 const CXXMethodDecl *MD = *I;
Mike Stump1eb44332009-09-09 15:08:12 +00001742
1743 Diag(MD->getLocation(), diag::note_pure_virtual_function) <<
Anders Carlsson4681ebd2009-03-22 20:18:17 +00001744 MD->getDeclName();
1745 }
1746
1747 if (!PureVirtualClassDiagSet)
1748 PureVirtualClassDiagSet.reset(new RecordDeclSetTy);
1749 PureVirtualClassDiagSet->insert(RD);
Mike Stump1eb44332009-09-09 15:08:12 +00001750
Anders Carlsson4681ebd2009-03-22 20:18:17 +00001751 return true;
1752}
1753
Anders Carlsson8211eff2009-03-24 01:19:16 +00001754namespace {
Mike Stump1eb44332009-09-09 15:08:12 +00001755 class VISIBILITY_HIDDEN AbstractClassUsageDiagnoser
Anders Carlsson8211eff2009-03-24 01:19:16 +00001756 : public DeclVisitor<AbstractClassUsageDiagnoser, bool> {
1757 Sema &SemaRef;
1758 CXXRecordDecl *AbstractClass;
Mike Stump1eb44332009-09-09 15:08:12 +00001759
Anders Carlssone65a3c82009-03-24 17:23:42 +00001760 bool VisitDeclContext(const DeclContext *DC) {
Anders Carlsson8211eff2009-03-24 01:19:16 +00001761 bool Invalid = false;
1762
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001763 for (CXXRecordDecl::decl_iterator I = DC->decls_begin(),
1764 E = DC->decls_end(); I != E; ++I)
Anders Carlsson8211eff2009-03-24 01:19:16 +00001765 Invalid |= Visit(*I);
Anders Carlssone65a3c82009-03-24 17:23:42 +00001766
Anders Carlsson8211eff2009-03-24 01:19:16 +00001767 return Invalid;
1768 }
Mike Stump1eb44332009-09-09 15:08:12 +00001769
Anders Carlssone65a3c82009-03-24 17:23:42 +00001770 public:
1771 AbstractClassUsageDiagnoser(Sema& SemaRef, CXXRecordDecl *ac)
1772 : SemaRef(SemaRef), AbstractClass(ac) {
1773 Visit(SemaRef.Context.getTranslationUnitDecl());
1774 }
Anders Carlsson8211eff2009-03-24 01:19:16 +00001775
Anders Carlssone65a3c82009-03-24 17:23:42 +00001776 bool VisitFunctionDecl(const FunctionDecl *FD) {
1777 if (FD->isThisDeclarationADefinition()) {
1778 // No need to do the check if we're in a definition, because it requires
1779 // that the return/param types are complete.
Mike Stump1eb44332009-09-09 15:08:12 +00001780 // because that requires
Anders Carlssone65a3c82009-03-24 17:23:42 +00001781 return VisitDeclContext(FD);
1782 }
Mike Stump1eb44332009-09-09 15:08:12 +00001783
Anders Carlssone65a3c82009-03-24 17:23:42 +00001784 // Check the return type.
John McCall183700f2009-09-21 23:43:11 +00001785 QualType RTy = FD->getType()->getAs<FunctionType>()->getResultType();
Mike Stump1eb44332009-09-09 15:08:12 +00001786 bool Invalid =
Anders Carlssone65a3c82009-03-24 17:23:42 +00001787 SemaRef.RequireNonAbstractType(FD->getLocation(), RTy,
1788 diag::err_abstract_type_in_decl,
1789 Sema::AbstractReturnType,
1790 AbstractClass);
1791
Mike Stump1eb44332009-09-09 15:08:12 +00001792 for (FunctionDecl::param_const_iterator I = FD->param_begin(),
Anders Carlssone65a3c82009-03-24 17:23:42 +00001793 E = FD->param_end(); I != E; ++I) {
Anders Carlsson8211eff2009-03-24 01:19:16 +00001794 const ParmVarDecl *VD = *I;
Mike Stump1eb44332009-09-09 15:08:12 +00001795 Invalid |=
Anders Carlsson8211eff2009-03-24 01:19:16 +00001796 SemaRef.RequireNonAbstractType(VD->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00001797 VD->getOriginalType(),
1798 diag::err_abstract_type_in_decl,
Anders Carlssone65a3c82009-03-24 17:23:42 +00001799 Sema::AbstractParamType,
1800 AbstractClass);
Anders Carlsson8211eff2009-03-24 01:19:16 +00001801 }
1802
1803 return Invalid;
1804 }
Mike Stump1eb44332009-09-09 15:08:12 +00001805
Anders Carlssone65a3c82009-03-24 17:23:42 +00001806 bool VisitDecl(const Decl* D) {
1807 if (const DeclContext *DC = dyn_cast<DeclContext>(D))
1808 return VisitDeclContext(DC);
Mike Stump1eb44332009-09-09 15:08:12 +00001809
Anders Carlssone65a3c82009-03-24 17:23:42 +00001810 return false;
1811 }
Anders Carlsson8211eff2009-03-24 01:19:16 +00001812 };
1813}
1814
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001815void Sema::ActOnFinishCXXMemberSpecification(Scope* S, SourceLocation RLoc,
Chris Lattnerb28317a2009-03-28 19:18:32 +00001816 DeclPtrTy TagDecl,
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001817 SourceLocation LBrac,
1818 SourceLocation RBrac) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00001819 if (!TagDecl)
1820 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001821
Douglas Gregor42af25f2009-05-11 19:58:34 +00001822 AdjustDeclIfTemplate(TagDecl);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001823 ActOnFields(S, RLoc, TagDecl,
Chris Lattnerb28317a2009-03-28 19:18:32 +00001824 (DeclPtrTy*)FieldCollector->getCurFields(),
Daniel Dunbar1bfe1c22008-10-03 02:03:53 +00001825 FieldCollector->getCurNumFields(), LBrac, RBrac, 0);
Douglas Gregor2943aed2009-03-03 04:44:36 +00001826
Chris Lattnerb28317a2009-03-28 19:18:32 +00001827 CXXRecordDecl *RD = cast<CXXRecordDecl>(TagDecl.getAs<Decl>());
Anders Carlsson67e4dd22009-03-22 01:52:17 +00001828 if (!RD->isAbstract()) {
1829 // Collect all the pure virtual methods and see if this is an abstract
1830 // class after all.
1831 PureVirtualMethodCollector Collector(Context, RD);
Mike Stump1eb44332009-09-09 15:08:12 +00001832 if (!Collector.empty())
Anders Carlsson67e4dd22009-03-22 01:52:17 +00001833 RD->setAbstract(true);
1834 }
Mike Stump1eb44332009-09-09 15:08:12 +00001835
1836 if (RD->isAbstract())
Anders Carlssone65a3c82009-03-24 17:23:42 +00001837 AbstractClassUsageDiagnoser(*this, RD);
Mike Stump1eb44332009-09-09 15:08:12 +00001838
Douglas Gregor42af25f2009-05-11 19:58:34 +00001839 if (!RD->isDependentType())
Anders Carlsson67e4dd22009-03-22 01:52:17 +00001840 AddImplicitlyDeclaredMembersToClass(RD);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001841}
1842
Douglas Gregor396b7cd2008-11-03 17:51:48 +00001843/// AddImplicitlyDeclaredMembersToClass - Adds any implicitly-declared
1844/// special functions, such as the default constructor, copy
1845/// constructor, or destructor, to the given C++ class (C++
1846/// [special]p1). This routine can only be executed just before the
1847/// definition of the class is complete.
1848void Sema::AddImplicitlyDeclaredMembersToClass(CXXRecordDecl *ClassDecl) {
Mike Stump1eb44332009-09-09 15:08:12 +00001849 CanQualType ClassType
Douglas Gregor50d62d12009-08-05 05:36:45 +00001850 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Douglas Gregor2e1cd422008-11-17 14:58:09 +00001851
Sebastian Redl465226e2009-05-27 22:11:52 +00001852 // FIXME: Implicit declarations have exception specifications, which are
1853 // the union of the specifications of the implicitly called functions.
1854
Douglas Gregor396b7cd2008-11-03 17:51:48 +00001855 if (!ClassDecl->hasUserDeclaredConstructor()) {
1856 // C++ [class.ctor]p5:
1857 // A default constructor for a class X is a constructor of class X
1858 // that can be called without an argument. If there is no
1859 // user-declared constructor for class X, a default constructor is
1860 // implicitly declared. An implicitly-declared default constructor
1861 // is an inline public member of its class.
Mike Stump1eb44332009-09-09 15:08:12 +00001862 DeclarationName Name
Douglas Gregor2e1cd422008-11-17 14:58:09 +00001863 = Context.DeclarationNames.getCXXConstructorName(ClassType);
Mike Stump1eb44332009-09-09 15:08:12 +00001864 CXXConstructorDecl *DefaultCon =
Douglas Gregor396b7cd2008-11-03 17:51:48 +00001865 CXXConstructorDecl::Create(Context, ClassDecl,
Douglas Gregor2e1cd422008-11-17 14:58:09 +00001866 ClassDecl->getLocation(), Name,
Douglas Gregor396b7cd2008-11-03 17:51:48 +00001867 Context.getFunctionType(Context.VoidTy,
1868 0, 0, false, 0),
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00001869 /*DInfo=*/0,
Douglas Gregor396b7cd2008-11-03 17:51:48 +00001870 /*isExplicit=*/false,
1871 /*isInline=*/true,
1872 /*isImplicitlyDeclared=*/true);
1873 DefaultCon->setAccess(AS_public);
Douglas Gregor6b3945f2009-01-07 19:46:03 +00001874 DefaultCon->setImplicit();
Douglas Gregor1f2023a2009-07-22 18:25:24 +00001875 DefaultCon->setTrivial(ClassDecl->hasTrivialConstructor());
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001876 ClassDecl->addDecl(DefaultCon);
Douglas Gregor396b7cd2008-11-03 17:51:48 +00001877 }
1878
1879 if (!ClassDecl->hasUserDeclaredCopyConstructor()) {
1880 // C++ [class.copy]p4:
1881 // If the class definition does not explicitly declare a copy
1882 // constructor, one is declared implicitly.
1883
1884 // C++ [class.copy]p5:
1885 // The implicitly-declared copy constructor for a class X will
1886 // have the form
1887 //
1888 // X::X(const X&)
1889 //
1890 // if
1891 bool HasConstCopyConstructor = true;
1892
1893 // -- each direct or virtual base class B of X has a copy
1894 // constructor whose first parameter is of type const B& or
1895 // const volatile B&, and
1896 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin();
1897 HasConstCopyConstructor && Base != ClassDecl->bases_end(); ++Base) {
1898 const CXXRecordDecl *BaseClassDecl
Ted Kremenek6217b802009-07-29 21:53:49 +00001899 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Mike Stump1eb44332009-09-09 15:08:12 +00001900 HasConstCopyConstructor
Douglas Gregor396b7cd2008-11-03 17:51:48 +00001901 = BaseClassDecl->hasConstCopyConstructor(Context);
1902 }
1903
1904 // -- for all the nonstatic data members of X that are of a
1905 // class type M (or array thereof), each such class type
1906 // has a copy constructor whose first parameter is of type
1907 // const M& or const volatile M&.
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001908 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin();
1909 HasConstCopyConstructor && Field != ClassDecl->field_end();
Douglas Gregor6ab35242009-04-09 21:40:53 +00001910 ++Field) {
Douglas Gregor396b7cd2008-11-03 17:51:48 +00001911 QualType FieldType = (*Field)->getType();
1912 if (const ArrayType *Array = Context.getAsArrayType(FieldType))
1913 FieldType = Array->getElementType();
Ted Kremenek6217b802009-07-29 21:53:49 +00001914 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Mike Stump1eb44332009-09-09 15:08:12 +00001915 const CXXRecordDecl *FieldClassDecl
Douglas Gregor396b7cd2008-11-03 17:51:48 +00001916 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Mike Stump1eb44332009-09-09 15:08:12 +00001917 HasConstCopyConstructor
Douglas Gregor396b7cd2008-11-03 17:51:48 +00001918 = FieldClassDecl->hasConstCopyConstructor(Context);
1919 }
1920 }
1921
Sebastian Redl64b45f72009-01-05 20:52:13 +00001922 // Otherwise, the implicitly declared copy constructor will have
1923 // the form
Douglas Gregor396b7cd2008-11-03 17:51:48 +00001924 //
1925 // X::X(X&)
Sebastian Redl64b45f72009-01-05 20:52:13 +00001926 QualType ArgType = ClassType;
Douglas Gregor396b7cd2008-11-03 17:51:48 +00001927 if (HasConstCopyConstructor)
1928 ArgType = ArgType.withConst();
Sebastian Redl7c80bd62009-03-16 23:22:08 +00001929 ArgType = Context.getLValueReferenceType(ArgType);
Douglas Gregor396b7cd2008-11-03 17:51:48 +00001930
Sebastian Redl64b45f72009-01-05 20:52:13 +00001931 // An implicitly-declared copy constructor is an inline public
1932 // member of its class.
Mike Stump1eb44332009-09-09 15:08:12 +00001933 DeclarationName Name
Douglas Gregor2e1cd422008-11-17 14:58:09 +00001934 = Context.DeclarationNames.getCXXConstructorName(ClassType);
Douglas Gregor396b7cd2008-11-03 17:51:48 +00001935 CXXConstructorDecl *CopyConstructor
1936 = CXXConstructorDecl::Create(Context, ClassDecl,
Douglas Gregor2e1cd422008-11-17 14:58:09 +00001937 ClassDecl->getLocation(), Name,
Douglas Gregor396b7cd2008-11-03 17:51:48 +00001938 Context.getFunctionType(Context.VoidTy,
1939 &ArgType, 1,
1940 false, 0),
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00001941 /*DInfo=*/0,
Douglas Gregor396b7cd2008-11-03 17:51:48 +00001942 /*isExplicit=*/false,
1943 /*isInline=*/true,
1944 /*isImplicitlyDeclared=*/true);
1945 CopyConstructor->setAccess(AS_public);
Douglas Gregor6b3945f2009-01-07 19:46:03 +00001946 CopyConstructor->setImplicit();
Douglas Gregor1f2023a2009-07-22 18:25:24 +00001947 CopyConstructor->setTrivial(ClassDecl->hasTrivialCopyConstructor());
Douglas Gregor396b7cd2008-11-03 17:51:48 +00001948
1949 // Add the parameter to the constructor.
1950 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyConstructor,
1951 ClassDecl->getLocation(),
1952 /*IdentifierInfo=*/0,
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00001953 ArgType, /*DInfo=*/0,
1954 VarDecl::None, 0);
Ted Kremenekfc767612009-01-14 00:42:25 +00001955 CopyConstructor->setParams(Context, &FromParam, 1);
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001956 ClassDecl->addDecl(CopyConstructor);
Douglas Gregor396b7cd2008-11-03 17:51:48 +00001957 }
1958
Sebastian Redl64b45f72009-01-05 20:52:13 +00001959 if (!ClassDecl->hasUserDeclaredCopyAssignment()) {
1960 // Note: The following rules are largely analoguous to the copy
1961 // constructor rules. Note that virtual bases are not taken into account
1962 // for determining the argument type of the operator. Note also that
1963 // operators taking an object instead of a reference are allowed.
1964 //
1965 // C++ [class.copy]p10:
1966 // If the class definition does not explicitly declare a copy
1967 // assignment operator, one is declared implicitly.
1968 // The implicitly-defined copy assignment operator for a class X
1969 // will have the form
1970 //
1971 // X& X::operator=(const X&)
1972 //
1973 // if
1974 bool HasConstCopyAssignment = true;
1975
1976 // -- each direct base class B of X has a copy assignment operator
1977 // whose parameter is of type const B&, const volatile B& or B,
1978 // and
1979 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin();
1980 HasConstCopyAssignment && Base != ClassDecl->bases_end(); ++Base) {
1981 const CXXRecordDecl *BaseClassDecl
Ted Kremenek6217b802009-07-29 21:53:49 +00001982 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Fariborz Jahanian0270b8a2009-08-12 23:34:46 +00001983 const CXXMethodDecl *MD = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001984 HasConstCopyAssignment = BaseClassDecl->hasConstCopyAssignment(Context,
Fariborz Jahanian0270b8a2009-08-12 23:34:46 +00001985 MD);
Sebastian Redl64b45f72009-01-05 20:52:13 +00001986 }
1987
1988 // -- for all the nonstatic data members of X that are of a class
1989 // type M (or array thereof), each such class type has a copy
1990 // assignment operator whose parameter is of type const M&,
1991 // const volatile M& or M.
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001992 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin();
1993 HasConstCopyAssignment && Field != ClassDecl->field_end();
Douglas Gregor6ab35242009-04-09 21:40:53 +00001994 ++Field) {
Sebastian Redl64b45f72009-01-05 20:52:13 +00001995 QualType FieldType = (*Field)->getType();
1996 if (const ArrayType *Array = Context.getAsArrayType(FieldType))
1997 FieldType = Array->getElementType();
Ted Kremenek6217b802009-07-29 21:53:49 +00001998 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Sebastian Redl64b45f72009-01-05 20:52:13 +00001999 const CXXRecordDecl *FieldClassDecl
2000 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Fariborz Jahanian0270b8a2009-08-12 23:34:46 +00002001 const CXXMethodDecl *MD = 0;
Sebastian Redl64b45f72009-01-05 20:52:13 +00002002 HasConstCopyAssignment
Fariborz Jahanian0270b8a2009-08-12 23:34:46 +00002003 = FieldClassDecl->hasConstCopyAssignment(Context, MD);
Sebastian Redl64b45f72009-01-05 20:52:13 +00002004 }
2005 }
2006
2007 // Otherwise, the implicitly declared copy assignment operator will
2008 // have the form
2009 //
2010 // X& X::operator=(X&)
2011 QualType ArgType = ClassType;
Sebastian Redl7c80bd62009-03-16 23:22:08 +00002012 QualType RetType = Context.getLValueReferenceType(ArgType);
Sebastian Redl64b45f72009-01-05 20:52:13 +00002013 if (HasConstCopyAssignment)
2014 ArgType = ArgType.withConst();
Sebastian Redl7c80bd62009-03-16 23:22:08 +00002015 ArgType = Context.getLValueReferenceType(ArgType);
Sebastian Redl64b45f72009-01-05 20:52:13 +00002016
2017 // An implicitly-declared copy assignment operator is an inline public
2018 // member of its class.
2019 DeclarationName Name =
2020 Context.DeclarationNames.getCXXOperatorName(OO_Equal);
2021 CXXMethodDecl *CopyAssignment =
2022 CXXMethodDecl::Create(Context, ClassDecl, ClassDecl->getLocation(), Name,
2023 Context.getFunctionType(RetType, &ArgType, 1,
2024 false, 0),
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00002025 /*DInfo=*/0, /*isStatic=*/false, /*isInline=*/true);
Sebastian Redl64b45f72009-01-05 20:52:13 +00002026 CopyAssignment->setAccess(AS_public);
Douglas Gregor6b3945f2009-01-07 19:46:03 +00002027 CopyAssignment->setImplicit();
Douglas Gregor1f2023a2009-07-22 18:25:24 +00002028 CopyAssignment->setTrivial(ClassDecl->hasTrivialCopyAssignment());
Fariborz Jahanian2198ba12009-08-12 21:14:35 +00002029 CopyAssignment->setCopyAssignment(true);
Sebastian Redl64b45f72009-01-05 20:52:13 +00002030
2031 // Add the parameter to the operator.
2032 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyAssignment,
2033 ClassDecl->getLocation(),
2034 /*IdentifierInfo=*/0,
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00002035 ArgType, /*DInfo=*/0,
2036 VarDecl::None, 0);
Ted Kremenekfc767612009-01-14 00:42:25 +00002037 CopyAssignment->setParams(Context, &FromParam, 1);
Sebastian Redl64b45f72009-01-05 20:52:13 +00002038
2039 // Don't call addedAssignmentOperator. There is no way to distinguish an
2040 // implicit from an explicit assignment operator.
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002041 ClassDecl->addDecl(CopyAssignment);
Sebastian Redl64b45f72009-01-05 20:52:13 +00002042 }
2043
Douglas Gregor9e7d9de2008-12-15 21:24:18 +00002044 if (!ClassDecl->hasUserDeclaredDestructor()) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00002045 // C++ [class.dtor]p2:
2046 // If a class has no user-declared destructor, a destructor is
2047 // declared implicitly. An implicitly-declared destructor is an
2048 // inline public member of its class.
Mike Stump1eb44332009-09-09 15:08:12 +00002049 DeclarationName Name
Douglas Gregor2e1cd422008-11-17 14:58:09 +00002050 = Context.DeclarationNames.getCXXDestructorName(ClassType);
Mike Stump1eb44332009-09-09 15:08:12 +00002051 CXXDestructorDecl *Destructor
Douglas Gregor42a552f2008-11-05 20:51:48 +00002052 = CXXDestructorDecl::Create(Context, ClassDecl,
Douglas Gregor2e1cd422008-11-17 14:58:09 +00002053 ClassDecl->getLocation(), Name,
Douglas Gregor42a552f2008-11-05 20:51:48 +00002054 Context.getFunctionType(Context.VoidTy,
2055 0, 0, false, 0),
2056 /*isInline=*/true,
2057 /*isImplicitlyDeclared=*/true);
2058 Destructor->setAccess(AS_public);
Douglas Gregor6b3945f2009-01-07 19:46:03 +00002059 Destructor->setImplicit();
Douglas Gregor1f2023a2009-07-22 18:25:24 +00002060 Destructor->setTrivial(ClassDecl->hasTrivialDestructor());
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002061 ClassDecl->addDecl(Destructor);
Douglas Gregor42a552f2008-11-05 20:51:48 +00002062 }
Douglas Gregor396b7cd2008-11-03 17:51:48 +00002063}
2064
Douglas Gregor6569d682009-05-27 23:11:45 +00002065void Sema::ActOnReenterTemplateScope(Scope *S, DeclPtrTy TemplateD) {
Douglas Gregor1cdcc572009-09-10 00:12:48 +00002066 Decl *D = TemplateD.getAs<Decl>();
2067 if (!D)
2068 return;
2069
2070 TemplateParameterList *Params = 0;
2071 if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D))
2072 Params = Template->getTemplateParameters();
2073 else if (ClassTemplatePartialSpecializationDecl *PartialSpec
2074 = dyn_cast<ClassTemplatePartialSpecializationDecl>(D))
2075 Params = PartialSpec->getTemplateParameters();
2076 else
Douglas Gregor6569d682009-05-27 23:11:45 +00002077 return;
2078
Douglas Gregor6569d682009-05-27 23:11:45 +00002079 for (TemplateParameterList::iterator Param = Params->begin(),
2080 ParamEnd = Params->end();
2081 Param != ParamEnd; ++Param) {
2082 NamedDecl *Named = cast<NamedDecl>(*Param);
2083 if (Named->getDeclName()) {
2084 S->AddDecl(DeclPtrTy::make(Named));
2085 IdResolver.AddDecl(Named);
2086 }
2087 }
2088}
2089
Douglas Gregor72b505b2008-12-16 21:30:33 +00002090/// ActOnStartDelayedCXXMethodDeclaration - We have completed
2091/// parsing a top-level (non-nested) C++ class, and we are now
2092/// parsing those parts of the given Method declaration that could
2093/// not be parsed earlier (C++ [class.mem]p2), such as default
2094/// arguments. This action should enter the scope of the given
2095/// Method declaration as if we had just parsed the qualified method
2096/// name. However, it should not bring the parameters into scope;
2097/// that will be performed by ActOnDelayedCXXMethodParameter.
Chris Lattnerb28317a2009-03-28 19:18:32 +00002098void Sema::ActOnStartDelayedCXXMethodDeclaration(Scope *S, DeclPtrTy MethodD) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00002099 if (!MethodD)
2100 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002101
Douglas Gregorefd5bda2009-08-24 11:57:43 +00002102 AdjustDeclIfTemplate(MethodD);
Mike Stump1eb44332009-09-09 15:08:12 +00002103
Douglas Gregor72b505b2008-12-16 21:30:33 +00002104 CXXScopeSpec SS;
Chris Lattnerb28317a2009-03-28 19:18:32 +00002105 FunctionDecl *Method = cast<FunctionDecl>(MethodD.getAs<Decl>());
Mike Stump1eb44332009-09-09 15:08:12 +00002106 QualType ClassTy
Douglas Gregorab452ba2009-03-26 23:50:42 +00002107 = Context.getTypeDeclType(cast<RecordDecl>(Method->getDeclContext()));
2108 SS.setScopeRep(
2109 NestedNameSpecifier::Create(Context, 0, false, ClassTy.getTypePtr()));
Douglas Gregor72b505b2008-12-16 21:30:33 +00002110 ActOnCXXEnterDeclaratorScope(S, SS);
2111}
2112
2113/// ActOnDelayedCXXMethodParameter - We've already started a delayed
2114/// C++ method declaration. We're (re-)introducing the given
2115/// function parameter into scope for use in parsing later parts of
2116/// the method declaration. For example, we could see an
2117/// ActOnParamDefaultArgument event for this parameter.
Chris Lattnerb28317a2009-03-28 19:18:32 +00002118void Sema::ActOnDelayedCXXMethodParameter(Scope *S, DeclPtrTy ParamD) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00002119 if (!ParamD)
2120 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002121
Chris Lattnerb28317a2009-03-28 19:18:32 +00002122 ParmVarDecl *Param = cast<ParmVarDecl>(ParamD.getAs<Decl>());
Douglas Gregor61366e92008-12-24 00:01:03 +00002123
2124 // If this parameter has an unparsed default argument, clear it out
2125 // to make way for the parsed default argument.
2126 if (Param->hasUnparsedDefaultArg())
2127 Param->setDefaultArg(0);
2128
Chris Lattnerb28317a2009-03-28 19:18:32 +00002129 S->AddDecl(DeclPtrTy::make(Param));
Douglas Gregor72b505b2008-12-16 21:30:33 +00002130 if (Param->getDeclName())
2131 IdResolver.AddDecl(Param);
2132}
2133
2134/// ActOnFinishDelayedCXXMethodDeclaration - We have finished
2135/// processing the delayed method declaration for Method. The method
2136/// declaration is now considered finished. There may be a separate
2137/// ActOnStartOfFunctionDef action later (not necessarily
2138/// immediately!) for this method, if it was also defined inside the
2139/// class body.
Chris Lattnerb28317a2009-03-28 19:18:32 +00002140void Sema::ActOnFinishDelayedCXXMethodDeclaration(Scope *S, DeclPtrTy MethodD) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00002141 if (!MethodD)
2142 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002143
Douglas Gregorefd5bda2009-08-24 11:57:43 +00002144 AdjustDeclIfTemplate(MethodD);
Mike Stump1eb44332009-09-09 15:08:12 +00002145
Chris Lattnerb28317a2009-03-28 19:18:32 +00002146 FunctionDecl *Method = cast<FunctionDecl>(MethodD.getAs<Decl>());
Douglas Gregor72b505b2008-12-16 21:30:33 +00002147 CXXScopeSpec SS;
Mike Stump1eb44332009-09-09 15:08:12 +00002148 QualType ClassTy
Douglas Gregorab452ba2009-03-26 23:50:42 +00002149 = Context.getTypeDeclType(cast<RecordDecl>(Method->getDeclContext()));
2150 SS.setScopeRep(
2151 NestedNameSpecifier::Create(Context, 0, false, ClassTy.getTypePtr()));
Douglas Gregor72b505b2008-12-16 21:30:33 +00002152 ActOnCXXExitDeclaratorScope(S, SS);
2153
2154 // Now that we have our default arguments, check the constructor
2155 // again. It could produce additional diagnostics or affect whether
2156 // the class has implicitly-declared destructors, among other
2157 // things.
Chris Lattner6e475012009-04-25 08:35:12 +00002158 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Method))
2159 CheckConstructor(Constructor);
Douglas Gregor72b505b2008-12-16 21:30:33 +00002160
2161 // Check the default arguments, which we may have added.
2162 if (!Method->isInvalidDecl())
2163 CheckCXXDefaultArguments(Method);
2164}
2165
Douglas Gregor42a552f2008-11-05 20:51:48 +00002166/// CheckConstructorDeclarator - Called by ActOnDeclarator to check
Douglas Gregor72b505b2008-12-16 21:30:33 +00002167/// the well-formedness of the constructor declarator @p D with type @p
Douglas Gregor42a552f2008-11-05 20:51:48 +00002168/// R. If there are any errors in the declarator, this routine will
Chris Lattner65401802009-04-25 08:28:21 +00002169/// emit diagnostics and set the invalid bit to true. In any case, the type
2170/// will be updated to reflect a well-formed type for the constructor and
2171/// returned.
2172QualType Sema::CheckConstructorDeclarator(Declarator &D, QualType R,
2173 FunctionDecl::StorageClass &SC) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00002174 bool isVirtual = D.getDeclSpec().isVirtualSpecified();
Douglas Gregor42a552f2008-11-05 20:51:48 +00002175
2176 // C++ [class.ctor]p3:
2177 // A constructor shall not be virtual (10.3) or static (9.4). A
2178 // constructor can be invoked for a const, volatile or const
2179 // volatile object. A constructor shall not be declared const,
2180 // volatile, or const volatile (9.3.2).
2181 if (isVirtual) {
Chris Lattner65401802009-04-25 08:28:21 +00002182 if (!D.isInvalidType())
2183 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
2184 << "virtual" << SourceRange(D.getDeclSpec().getVirtualSpecLoc())
2185 << SourceRange(D.getIdentifierLoc());
2186 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00002187 }
2188 if (SC == FunctionDecl::Static) {
Chris Lattner65401802009-04-25 08:28:21 +00002189 if (!D.isInvalidType())
2190 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
2191 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
2192 << SourceRange(D.getIdentifierLoc());
2193 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00002194 SC = FunctionDecl::None;
2195 }
Mike Stump1eb44332009-09-09 15:08:12 +00002196
Chris Lattner65401802009-04-25 08:28:21 +00002197 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
2198 if (FTI.TypeQuals != 0) {
John McCall0953e762009-09-24 19:53:00 +00002199 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002200 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
2201 << "const" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00002202 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002203 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
2204 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00002205 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002206 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
2207 << "restrict" << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +00002208 }
Mike Stump1eb44332009-09-09 15:08:12 +00002209
Douglas Gregor42a552f2008-11-05 20:51:48 +00002210 // Rebuild the function type "R" without any type qualifiers (in
2211 // case any of the errors above fired) and with "void" as the
2212 // return type, since constructors don't have return types. We
2213 // *always* have to do this, because GetTypeForDeclarator will
2214 // put in a result type of "int" when none was specified.
John McCall183700f2009-09-21 23:43:11 +00002215 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
Chris Lattner65401802009-04-25 08:28:21 +00002216 return Context.getFunctionType(Context.VoidTy, Proto->arg_type_begin(),
2217 Proto->getNumArgs(),
2218 Proto->isVariadic(), 0);
Douglas Gregor42a552f2008-11-05 20:51:48 +00002219}
2220
Douglas Gregor72b505b2008-12-16 21:30:33 +00002221/// CheckConstructor - Checks a fully-formed constructor for
2222/// well-formedness, issuing any diagnostics required. Returns true if
2223/// the constructor declarator is invalid.
Chris Lattner6e475012009-04-25 08:35:12 +00002224void Sema::CheckConstructor(CXXConstructorDecl *Constructor) {
Mike Stump1eb44332009-09-09 15:08:12 +00002225 CXXRecordDecl *ClassDecl
Douglas Gregor33297562009-03-27 04:38:56 +00002226 = dyn_cast<CXXRecordDecl>(Constructor->getDeclContext());
2227 if (!ClassDecl)
Chris Lattner6e475012009-04-25 08:35:12 +00002228 return Constructor->setInvalidDecl();
Douglas Gregor72b505b2008-12-16 21:30:33 +00002229
2230 // C++ [class.copy]p3:
2231 // A declaration of a constructor for a class X is ill-formed if
2232 // its first parameter is of type (optionally cv-qualified) X and
2233 // either there are no other parameters or else all other
2234 // parameters have default arguments.
Douglas Gregor33297562009-03-27 04:38:56 +00002235 if (!Constructor->isInvalidDecl() &&
Mike Stump1eb44332009-09-09 15:08:12 +00002236 ((Constructor->getNumParams() == 1) ||
2237 (Constructor->getNumParams() > 1 &&
Anders Carlssonae0b4e72009-06-06 04:14:07 +00002238 Constructor->getParamDecl(1)->hasDefaultArg()))) {
Douglas Gregor72b505b2008-12-16 21:30:33 +00002239 QualType ParamType = Constructor->getParamDecl(0)->getType();
2240 QualType ClassTy = Context.getTagDeclType(ClassDecl);
2241 if (Context.getCanonicalType(ParamType).getUnqualifiedType() == ClassTy) {
Douglas Gregora3a83512009-04-01 23:51:29 +00002242 SourceLocation ParamLoc = Constructor->getParamDecl(0)->getLocation();
2243 Diag(ParamLoc, diag::err_constructor_byvalue_arg)
Douglas Gregor558cb562009-04-02 01:08:08 +00002244 << CodeModificationHint::CreateInsertion(ParamLoc, " const &");
Chris Lattner6e475012009-04-25 08:35:12 +00002245 Constructor->setInvalidDecl();
Douglas Gregor72b505b2008-12-16 21:30:33 +00002246 }
2247 }
Mike Stump1eb44332009-09-09 15:08:12 +00002248
Douglas Gregor72b505b2008-12-16 21:30:33 +00002249 // Notify the class that we've added a constructor.
2250 ClassDecl->addedConstructor(Context, Constructor);
Douglas Gregor72b505b2008-12-16 21:30:33 +00002251}
2252
Mike Stump1eb44332009-09-09 15:08:12 +00002253static inline bool
Anders Carlsson7786d1c2009-04-30 23:18:11 +00002254FTIHasSingleVoidArgument(DeclaratorChunk::FunctionTypeInfo &FTI) {
2255 return (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
2256 FTI.ArgInfo[0].Param &&
2257 FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType()->isVoidType());
2258}
2259
Douglas Gregor42a552f2008-11-05 20:51:48 +00002260/// CheckDestructorDeclarator - Called by ActOnDeclarator to check
2261/// the well-formednes of the destructor declarator @p D with type @p
2262/// R. If there are any errors in the declarator, this routine will
Chris Lattner65401802009-04-25 08:28:21 +00002263/// emit diagnostics and set the declarator to invalid. Even if this happens,
2264/// will be updated to reflect a well-formed type for the destructor and
2265/// returned.
2266QualType Sema::CheckDestructorDeclarator(Declarator &D,
2267 FunctionDecl::StorageClass& SC) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00002268 // C++ [class.dtor]p1:
2269 // [...] A typedef-name that names a class is a class-name
2270 // (7.1.3); however, a typedef-name that names a class shall not
2271 // be used as the identifier in the declarator for a destructor
2272 // declaration.
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +00002273 QualType DeclaratorType = GetTypeFromParser(D.getDeclaratorIdType());
Chris Lattner65401802009-04-25 08:28:21 +00002274 if (isa<TypedefType>(DeclaratorType)) {
2275 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
Douglas Gregor1a51b4a2009-02-09 15:09:02 +00002276 << DeclaratorType;
Chris Lattner65401802009-04-25 08:28:21 +00002277 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00002278 }
2279
2280 // C++ [class.dtor]p2:
2281 // A destructor is used to destroy objects of its class type. A
2282 // destructor takes no parameters, and no return type can be
2283 // specified for it (not even void). The address of a destructor
2284 // shall not be taken. A destructor shall not be static. A
2285 // destructor can be invoked for a const, volatile or const
2286 // volatile object. A destructor shall not be declared const,
2287 // volatile or const volatile (9.3.2).
2288 if (SC == FunctionDecl::Static) {
Chris Lattner65401802009-04-25 08:28:21 +00002289 if (!D.isInvalidType())
2290 Diag(D.getIdentifierLoc(), diag::err_destructor_cannot_be)
2291 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
2292 << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +00002293 SC = FunctionDecl::None;
Chris Lattner65401802009-04-25 08:28:21 +00002294 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00002295 }
Chris Lattner65401802009-04-25 08:28:21 +00002296 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00002297 // Destructors don't have return types, but the parser will
2298 // happily parse something like:
2299 //
2300 // class X {
2301 // float ~X();
2302 // };
2303 //
2304 // The return type will be eliminated later.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002305 Diag(D.getIdentifierLoc(), diag::err_destructor_return_type)
2306 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
2307 << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +00002308 }
Mike Stump1eb44332009-09-09 15:08:12 +00002309
Chris Lattner65401802009-04-25 08:28:21 +00002310 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
2311 if (FTI.TypeQuals != 0 && !D.isInvalidType()) {
John McCall0953e762009-09-24 19:53:00 +00002312 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002313 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
2314 << "const" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00002315 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002316 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
2317 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00002318 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002319 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
2320 << "restrict" << SourceRange(D.getIdentifierLoc());
Chris Lattner65401802009-04-25 08:28:21 +00002321 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00002322 }
2323
2324 // Make sure we don't have any parameters.
Anders Carlsson7786d1c2009-04-30 23:18:11 +00002325 if (FTI.NumArgs > 0 && !FTIHasSingleVoidArgument(FTI)) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00002326 Diag(D.getIdentifierLoc(), diag::err_destructor_with_params);
2327
2328 // Delete the parameters.
Chris Lattner65401802009-04-25 08:28:21 +00002329 FTI.freeArgs();
2330 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00002331 }
2332
Mike Stump1eb44332009-09-09 15:08:12 +00002333 // Make sure the destructor isn't variadic.
Chris Lattner65401802009-04-25 08:28:21 +00002334 if (FTI.isVariadic) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00002335 Diag(D.getIdentifierLoc(), diag::err_destructor_variadic);
Chris Lattner65401802009-04-25 08:28:21 +00002336 D.setInvalidType();
2337 }
Douglas Gregor42a552f2008-11-05 20:51:48 +00002338
2339 // Rebuild the function type "R" without any type qualifiers or
2340 // parameters (in case any of the errors above fired) and with
2341 // "void" as the return type, since destructors don't have return
2342 // types. We *always* have to do this, because GetTypeForDeclarator
2343 // will put in a result type of "int" when none was specified.
Chris Lattner65401802009-04-25 08:28:21 +00002344 return Context.getFunctionType(Context.VoidTy, 0, 0, false, 0);
Douglas Gregor42a552f2008-11-05 20:51:48 +00002345}
2346
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002347/// CheckConversionDeclarator - Called by ActOnDeclarator to check the
2348/// well-formednes of the conversion function declarator @p D with
2349/// type @p R. If there are any errors in the declarator, this routine
2350/// will emit diagnostics and return true. Otherwise, it will return
2351/// false. Either way, the type @p R will be updated to reflect a
2352/// well-formed type for the conversion operator.
Chris Lattner6e475012009-04-25 08:35:12 +00002353void Sema::CheckConversionDeclarator(Declarator &D, QualType &R,
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002354 FunctionDecl::StorageClass& SC) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002355 // C++ [class.conv.fct]p1:
2356 // Neither parameter types nor return type can be specified. The
Eli Friedman33a31382009-08-05 19:21:58 +00002357 // type of a conversion function (8.3.5) is "function taking no
Mike Stump1eb44332009-09-09 15:08:12 +00002358 // parameter returning conversion-type-id."
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002359 if (SC == FunctionDecl::Static) {
Chris Lattner6e475012009-04-25 08:35:12 +00002360 if (!D.isInvalidType())
2361 Diag(D.getIdentifierLoc(), diag::err_conv_function_not_member)
2362 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
2363 << SourceRange(D.getIdentifierLoc());
2364 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002365 SC = FunctionDecl::None;
2366 }
Chris Lattner6e475012009-04-25 08:35:12 +00002367 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002368 // Conversion functions don't have return types, but the parser will
2369 // happily parse something like:
2370 //
2371 // class X {
2372 // float operator bool();
2373 // };
2374 //
2375 // The return type will be changed later anyway.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002376 Diag(D.getIdentifierLoc(), diag::err_conv_function_return_type)
2377 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
2378 << SourceRange(D.getIdentifierLoc());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002379 }
2380
2381 // Make sure we don't have any parameters.
John McCall183700f2009-09-21 23:43:11 +00002382 if (R->getAs<FunctionProtoType>()->getNumArgs() > 0) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002383 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_params);
2384
2385 // Delete the parameters.
Chris Lattner1833a832009-01-20 21:06:38 +00002386 D.getTypeObject(0).Fun.freeArgs();
Chris Lattner6e475012009-04-25 08:35:12 +00002387 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002388 }
2389
Mike Stump1eb44332009-09-09 15:08:12 +00002390 // Make sure the conversion function isn't variadic.
John McCall183700f2009-09-21 23:43:11 +00002391 if (R->getAs<FunctionProtoType>()->isVariadic() && !D.isInvalidType()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002392 Diag(D.getIdentifierLoc(), diag::err_conv_function_variadic);
Chris Lattner6e475012009-04-25 08:35:12 +00002393 D.setInvalidType();
2394 }
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002395
2396 // C++ [class.conv.fct]p4:
2397 // The conversion-type-id shall not represent a function type nor
2398 // an array type.
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +00002399 QualType ConvType = GetTypeFromParser(D.getDeclaratorIdType());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002400 if (ConvType->isArrayType()) {
2401 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_array);
2402 ConvType = Context.getPointerType(ConvType);
Chris Lattner6e475012009-04-25 08:35:12 +00002403 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002404 } else if (ConvType->isFunctionType()) {
2405 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_function);
2406 ConvType = Context.getPointerType(ConvType);
Chris Lattner6e475012009-04-25 08:35:12 +00002407 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002408 }
2409
2410 // Rebuild the function type "R" without any parameters (in case any
2411 // of the errors above fired) and with the conversion type as the
Mike Stump1eb44332009-09-09 15:08:12 +00002412 // return type.
2413 R = Context.getFunctionType(ConvType, 0, 0, false,
John McCall183700f2009-09-21 23:43:11 +00002414 R->getAs<FunctionProtoType>()->getTypeQuals());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002415
Douglas Gregor09f41cf2009-01-14 15:45:31 +00002416 // C++0x explicit conversion operators.
2417 if (D.getDeclSpec().isExplicitSpecified() && !getLangOptions().CPlusPlus0x)
Mike Stump1eb44332009-09-09 15:08:12 +00002418 Diag(D.getDeclSpec().getExplicitSpecLoc(),
Douglas Gregor09f41cf2009-01-14 15:45:31 +00002419 diag::warn_explicit_conversion_functions)
2420 << SourceRange(D.getDeclSpec().getExplicitSpecLoc());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002421}
2422
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002423/// ActOnConversionDeclarator - Called by ActOnDeclarator to complete
2424/// the declaration of the given C++ conversion function. This routine
2425/// is responsible for recording the conversion function in the C++
2426/// class, if possible.
Chris Lattnerb28317a2009-03-28 19:18:32 +00002427Sema::DeclPtrTy Sema::ActOnConversionDeclarator(CXXConversionDecl *Conversion) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002428 assert(Conversion && "Expected to receive a conversion function declaration");
2429
Douglas Gregor9d350972008-12-12 08:25:50 +00002430 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Conversion->getDeclContext());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002431
2432 // Make sure we aren't redeclaring the conversion function.
2433 QualType ConvType = Context.getCanonicalType(Conversion->getConversionType());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002434
2435 // C++ [class.conv.fct]p1:
2436 // [...] A conversion function is never used to convert a
2437 // (possibly cv-qualified) object to the (possibly cv-qualified)
2438 // same object type (or a reference to it), to a (possibly
2439 // cv-qualified) base class of that type (or a reference to it),
2440 // or to (possibly cv-qualified) void.
Mike Stump390b4cc2009-05-16 07:39:55 +00002441 // FIXME: Suppress this warning if the conversion function ends up being a
2442 // virtual function that overrides a virtual function in a base class.
Mike Stump1eb44332009-09-09 15:08:12 +00002443 QualType ClassType
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002444 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Ted Kremenek6217b802009-07-29 21:53:49 +00002445 if (const ReferenceType *ConvTypeRef = ConvType->getAs<ReferenceType>())
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002446 ConvType = ConvTypeRef->getPointeeType();
2447 if (ConvType->isRecordType()) {
2448 ConvType = Context.getCanonicalType(ConvType).getUnqualifiedType();
2449 if (ConvType == ClassType)
Chris Lattner5dc266a2008-11-20 06:13:02 +00002450 Diag(Conversion->getLocation(), diag::warn_conv_to_self_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00002451 << ClassType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002452 else if (IsDerivedFrom(ClassType, ConvType))
Chris Lattner5dc266a2008-11-20 06:13:02 +00002453 Diag(Conversion->getLocation(), diag::warn_conv_to_base_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00002454 << ClassType << ConvType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002455 } else if (ConvType->isVoidType()) {
Chris Lattner5dc266a2008-11-20 06:13:02 +00002456 Diag(Conversion->getLocation(), diag::warn_conv_to_void_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00002457 << ClassType << ConvType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002458 }
2459
Douglas Gregor70316a02008-12-26 15:00:45 +00002460 if (Conversion->getPreviousDeclaration()) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00002461 const NamedDecl *ExpectedPrevDecl = Conversion->getPreviousDeclaration();
Mike Stump1eb44332009-09-09 15:08:12 +00002462 if (FunctionTemplateDecl *ConversionTemplate
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00002463 = Conversion->getDescribedFunctionTemplate())
2464 ExpectedPrevDecl = ConversionTemplate->getPreviousDeclaration();
Douglas Gregor70316a02008-12-26 15:00:45 +00002465 OverloadedFunctionDecl *Conversions = ClassDecl->getConversionFunctions();
Mike Stump1eb44332009-09-09 15:08:12 +00002466 for (OverloadedFunctionDecl::function_iterator
Douglas Gregor70316a02008-12-26 15:00:45 +00002467 Conv = Conversions->function_begin(),
2468 ConvEnd = Conversions->function_end();
2469 Conv != ConvEnd; ++Conv) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00002470 if (*Conv == ExpectedPrevDecl) {
Douglas Gregor70316a02008-12-26 15:00:45 +00002471 *Conv = Conversion;
Chris Lattnerb28317a2009-03-28 19:18:32 +00002472 return DeclPtrTy::make(Conversion);
Douglas Gregor70316a02008-12-26 15:00:45 +00002473 }
2474 }
2475 assert(Conversion->isInvalidDecl() && "Conversion should not get here.");
Mike Stump1eb44332009-09-09 15:08:12 +00002476 } else if (FunctionTemplateDecl *ConversionTemplate
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00002477 = Conversion->getDescribedFunctionTemplate())
Fariborz Jahaniandebc6292009-09-12 19:02:34 +00002478 ClassDecl->addConversionFunction(ConversionTemplate);
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00002479 else if (!Conversion->getPrimaryTemplate()) // ignore specializations
Fariborz Jahaniandebc6292009-09-12 19:02:34 +00002480 ClassDecl->addConversionFunction(Conversion);
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002481
Chris Lattnerb28317a2009-03-28 19:18:32 +00002482 return DeclPtrTy::make(Conversion);
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002483}
2484
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00002485//===----------------------------------------------------------------------===//
2486// Namespace Handling
2487//===----------------------------------------------------------------------===//
2488
2489/// ActOnStartNamespaceDef - This is called at the start of a namespace
2490/// definition.
Chris Lattnerb28317a2009-03-28 19:18:32 +00002491Sema::DeclPtrTy Sema::ActOnStartNamespaceDef(Scope *NamespcScope,
2492 SourceLocation IdentLoc,
2493 IdentifierInfo *II,
2494 SourceLocation LBrace) {
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00002495 NamespaceDecl *Namespc =
2496 NamespaceDecl::Create(Context, CurContext, IdentLoc, II);
2497 Namespc->setLBracLoc(LBrace);
2498
2499 Scope *DeclRegionScope = NamespcScope->getParent();
2500
2501 if (II) {
2502 // C++ [namespace.def]p2:
2503 // The identifier in an original-namespace-definition shall not have been
2504 // previously defined in the declarative region in which the
2505 // original-namespace-definition appears. The identifier in an
2506 // original-namespace-definition is the name of the namespace. Subsequently
2507 // in that declarative region, it is treated as an original-namespace-name.
2508
John McCallf36e02d2009-10-09 21:13:30 +00002509 NamedDecl *PrevDecl
2510 = LookupSingleName(DeclRegionScope, II, LookupOrdinaryName, true);
Mike Stump1eb44332009-09-09 15:08:12 +00002511
Douglas Gregor44b43212008-12-11 16:49:14 +00002512 if (NamespaceDecl *OrigNS = dyn_cast_or_null<NamespaceDecl>(PrevDecl)) {
2513 // This is an extended namespace definition.
2514 // Attach this namespace decl to the chain of extended namespace
2515 // definitions.
2516 OrigNS->setNextNamespace(Namespc);
2517 Namespc->setOriginalNamespace(OrigNS->getOriginalNamespace());
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00002518
Mike Stump1eb44332009-09-09 15:08:12 +00002519 // Remove the previous declaration from the scope.
Chris Lattnerb28317a2009-03-28 19:18:32 +00002520 if (DeclRegionScope->isDeclScope(DeclPtrTy::make(OrigNS))) {
Douglas Gregore267ff32008-12-11 20:41:00 +00002521 IdResolver.RemoveDecl(OrigNS);
Chris Lattnerb28317a2009-03-28 19:18:32 +00002522 DeclRegionScope->RemoveDecl(DeclPtrTy::make(OrigNS));
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00002523 }
Douglas Gregor44b43212008-12-11 16:49:14 +00002524 } else if (PrevDecl) {
2525 // This is an invalid name redefinition.
2526 Diag(Namespc->getLocation(), diag::err_redefinition_different_kind)
2527 << Namespc->getDeclName();
2528 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
2529 Namespc->setInvalidDecl();
2530 // Continue on to push Namespc as current DeclContext and return it.
Douglas Gregor7adb10f2009-09-15 22:30:29 +00002531 } else if (II->isStr("std") &&
2532 CurContext->getLookupContext()->isTranslationUnit()) {
2533 // This is the first "real" definition of the namespace "std", so update
2534 // our cache of the "std" namespace to point at this definition.
2535 if (StdNamespace) {
2536 // We had already defined a dummy namespace "std". Link this new
2537 // namespace definition to the dummy namespace "std".
2538 StdNamespace->setNextNamespace(Namespc);
2539 StdNamespace->setLocation(IdentLoc);
2540 Namespc->setOriginalNamespace(StdNamespace->getOriginalNamespace());
2541 }
2542
2543 // Make our StdNamespace cache point at the first real definition of the
2544 // "std" namespace.
2545 StdNamespace = Namespc;
Mike Stump1eb44332009-09-09 15:08:12 +00002546 }
Douglas Gregor44b43212008-12-11 16:49:14 +00002547
2548 PushOnScopeChains(Namespc, DeclRegionScope);
2549 } else {
John McCall9aeed322009-10-01 00:25:31 +00002550 // Anonymous namespaces.
2551
2552 // C++ [namespace.unnamed]p1. An unnamed-namespace-definition
2553 // behaves as if it were replaced by
2554 // namespace unique { /* empty body */ }
2555 // using namespace unique;
2556 // namespace unique { namespace-body }
2557 // where all occurrences of 'unique' in a translation unit are
2558 // replaced by the same identifier and this identifier differs
2559 // from all other identifiers in the entire program.
2560
2561 // We just create the namespace with an empty name and then add an
2562 // implicit using declaration, just like the standard suggests.
2563 //
2564 // CodeGen enforces the "universally unique" aspect by giving all
2565 // declarations semantically contained within an anonymous
2566 // namespace internal linkage.
2567
2568 assert(Namespc->isAnonymousNamespace());
2569 CurContext->addDecl(Namespc);
2570
2571 UsingDirectiveDecl* UD
2572 = UsingDirectiveDecl::Create(Context, CurContext,
2573 /* 'using' */ LBrace,
2574 /* 'namespace' */ SourceLocation(),
2575 /* qualifier */ SourceRange(),
2576 /* NNS */ NULL,
2577 /* identifier */ SourceLocation(),
2578 Namespc,
2579 /* Ancestor */ CurContext);
2580 UD->setImplicit();
2581 CurContext->addDecl(UD);
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00002582 }
2583
2584 // Although we could have an invalid decl (i.e. the namespace name is a
2585 // redefinition), push it as current DeclContext and try to continue parsing.
Mike Stump390b4cc2009-05-16 07:39:55 +00002586 // FIXME: We should be able to push Namespc here, so that the each DeclContext
2587 // for the namespace has the declarations that showed up in that particular
2588 // namespace definition.
Douglas Gregor44b43212008-12-11 16:49:14 +00002589 PushDeclContext(NamespcScope, Namespc);
Chris Lattnerb28317a2009-03-28 19:18:32 +00002590 return DeclPtrTy::make(Namespc);
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00002591}
2592
2593/// ActOnFinishNamespaceDef - This callback is called after a namespace is
2594/// exited. Decl is the DeclTy returned by ActOnStartNamespaceDef.
Chris Lattnerb28317a2009-03-28 19:18:32 +00002595void Sema::ActOnFinishNamespaceDef(DeclPtrTy D, SourceLocation RBrace) {
2596 Decl *Dcl = D.getAs<Decl>();
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00002597 NamespaceDecl *Namespc = dyn_cast_or_null<NamespaceDecl>(Dcl);
2598 assert(Namespc && "Invalid parameter, expected NamespaceDecl");
2599 Namespc->setRBracLoc(RBrace);
2600 PopDeclContext();
2601}
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00002602
Chris Lattnerb28317a2009-03-28 19:18:32 +00002603Sema::DeclPtrTy Sema::ActOnUsingDirective(Scope *S,
2604 SourceLocation UsingLoc,
2605 SourceLocation NamespcLoc,
2606 const CXXScopeSpec &SS,
2607 SourceLocation IdentLoc,
2608 IdentifierInfo *NamespcName,
2609 AttributeList *AttrList) {
Douglas Gregorf780abc2008-12-30 03:27:21 +00002610 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
2611 assert(NamespcName && "Invalid NamespcName.");
2612 assert(IdentLoc.isValid() && "Invalid NamespceName location.");
Douglas Gregor2a3009a2009-02-03 19:21:40 +00002613 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Douglas Gregorf780abc2008-12-30 03:27:21 +00002614
Douglas Gregor2a3009a2009-02-03 19:21:40 +00002615 UsingDirectiveDecl *UDir = 0;
Douglas Gregorf780abc2008-12-30 03:27:21 +00002616
Douglas Gregoreb11cd02009-01-14 22:20:51 +00002617 // Lookup namespace name.
John McCallf36e02d2009-10-09 21:13:30 +00002618 LookupResult R;
2619 LookupParsedName(R, S, &SS, NamespcName, LookupNamespaceName, false);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00002620 if (R.isAmbiguous()) {
2621 DiagnoseAmbiguousLookup(R, NamespcName, IdentLoc);
Chris Lattnerb28317a2009-03-28 19:18:32 +00002622 return DeclPtrTy();
Douglas Gregor2a3009a2009-02-03 19:21:40 +00002623 }
John McCallf36e02d2009-10-09 21:13:30 +00002624 if (!R.empty()) {
2625 NamedDecl *NS = R.getFoundDecl();
Douglas Gregorf780abc2008-12-30 03:27:21 +00002626 assert(isa<NamespaceDecl>(NS) && "expected namespace decl");
Douglas Gregor2a3009a2009-02-03 19:21:40 +00002627 // C++ [namespace.udir]p1:
2628 // A using-directive specifies that the names in the nominated
2629 // namespace can be used in the scope in which the
2630 // using-directive appears after the using-directive. During
2631 // unqualified name lookup (3.4.1), the names appear as if they
2632 // were declared in the nearest enclosing namespace which
2633 // contains both the using-directive and the nominated
Eli Friedman33a31382009-08-05 19:21:58 +00002634 // namespace. [Note: in this context, "contains" means "contains
2635 // directly or indirectly". ]
Douglas Gregor2a3009a2009-02-03 19:21:40 +00002636
2637 // Find enclosing context containing both using-directive and
2638 // nominated namespace.
2639 DeclContext *CommonAncestor = cast<DeclContext>(NS);
2640 while (CommonAncestor && !CommonAncestor->Encloses(CurContext))
2641 CommonAncestor = CommonAncestor->getParent();
2642
Mike Stump1eb44332009-09-09 15:08:12 +00002643 UDir = UsingDirectiveDecl::Create(Context,
Douglas Gregor8419fa32009-05-30 06:31:56 +00002644 CurContext, UsingLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00002645 NamespcLoc,
Douglas Gregor8419fa32009-05-30 06:31:56 +00002646 SS.getRange(),
2647 (NestedNameSpecifier *)SS.getScopeRep(),
2648 IdentLoc,
Douglas Gregor2a3009a2009-02-03 19:21:40 +00002649 cast<NamespaceDecl>(NS),
2650 CommonAncestor);
2651 PushUsingDirective(S, UDir);
Douglas Gregorf780abc2008-12-30 03:27:21 +00002652 } else {
Chris Lattneread013e2009-01-06 07:24:29 +00002653 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
Douglas Gregorf780abc2008-12-30 03:27:21 +00002654 }
2655
Douglas Gregor2a3009a2009-02-03 19:21:40 +00002656 // FIXME: We ignore attributes for now.
Douglas Gregorf780abc2008-12-30 03:27:21 +00002657 delete AttrList;
Chris Lattnerb28317a2009-03-28 19:18:32 +00002658 return DeclPtrTy::make(UDir);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00002659}
2660
2661void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) {
2662 // If scope has associated entity, then using directive is at namespace
2663 // or translation unit scope. We add UsingDirectiveDecls, into
2664 // it's lookup structure.
2665 if (DeclContext *Ctx = static_cast<DeclContext*>(S->getEntity()))
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002666 Ctx->addDecl(UDir);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00002667 else
2668 // Otherwise it is block-sope. using-directives will affect lookup
2669 // only to the end of scope.
Chris Lattnerb28317a2009-03-28 19:18:32 +00002670 S->PushUsingDirective(DeclPtrTy::make(UDir));
Douglas Gregorf780abc2008-12-30 03:27:21 +00002671}
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00002672
Douglas Gregor9cfbe482009-06-20 00:51:54 +00002673
2674Sema::DeclPtrTy Sema::ActOnUsingDeclaration(Scope *S,
Anders Carlsson595adc12009-08-29 19:54:19 +00002675 AccessSpecifier AS,
Anders Carlssoncf9f9212009-08-28 03:16:11 +00002676 SourceLocation UsingLoc,
2677 const CXXScopeSpec &SS,
2678 SourceLocation IdentLoc,
2679 IdentifierInfo *TargetName,
2680 OverloadedOperatorKind Op,
2681 AttributeList *AttrList,
2682 bool IsTypeName) {
Eli Friedman5d39dee2009-06-27 05:59:59 +00002683 assert((TargetName || Op) && "Invalid TargetName.");
Douglas Gregor9cfbe482009-06-20 00:51:54 +00002684 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Mike Stump1eb44332009-09-09 15:08:12 +00002685
Anders Carlsson0c6139d2009-06-27 00:27:47 +00002686 DeclarationName Name;
2687 if (TargetName)
2688 Name = TargetName;
2689 else
2690 Name = Context.DeclarationNames.getCXXOperatorName(Op);
Mike Stump1eb44332009-09-09 15:08:12 +00002691
2692 NamedDecl *UD = BuildUsingDeclaration(UsingLoc, SS, IdentLoc,
Anders Carlssonc72160b2009-08-28 05:40:36 +00002693 Name, AttrList, IsTypeName);
Anders Carlsson595adc12009-08-29 19:54:19 +00002694 if (UD) {
Anders Carlssonc72160b2009-08-28 05:40:36 +00002695 PushOnScopeChains(UD, S);
Anders Carlsson595adc12009-08-29 19:54:19 +00002696 UD->setAccess(AS);
2697 }
Mike Stump1eb44332009-09-09 15:08:12 +00002698
Anders Carlssonc72160b2009-08-28 05:40:36 +00002699 return DeclPtrTy::make(UD);
2700}
2701
2702NamedDecl *Sema::BuildUsingDeclaration(SourceLocation UsingLoc,
2703 const CXXScopeSpec &SS,
2704 SourceLocation IdentLoc,
2705 DeclarationName Name,
2706 AttributeList *AttrList,
2707 bool IsTypeName) {
2708 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
2709 assert(IdentLoc.isValid() && "Invalid TargetName location.");
Eli Friedman2a16a132009-08-27 05:09:36 +00002710
Anders Carlsson550b14b2009-08-28 05:49:21 +00002711 // FIXME: We ignore attributes for now.
2712 delete AttrList;
Mike Stump1eb44332009-09-09 15:08:12 +00002713
Anders Carlssoncf9f9212009-08-28 03:16:11 +00002714 if (SS.isEmpty()) {
2715 Diag(IdentLoc, diag::err_using_requires_qualname);
Anders Carlssonc72160b2009-08-28 05:40:36 +00002716 return 0;
Anders Carlssoncf9f9212009-08-28 03:16:11 +00002717 }
Mike Stump1eb44332009-09-09 15:08:12 +00002718
2719 NestedNameSpecifier *NNS =
Anders Carlssoncf9f9212009-08-28 03:16:11 +00002720 static_cast<NestedNameSpecifier *>(SS.getScopeRep());
2721
Anders Carlsson550b14b2009-08-28 05:49:21 +00002722 if (isUnknownSpecialization(SS)) {
2723 return UnresolvedUsingDecl::Create(Context, CurContext, UsingLoc,
2724 SS.getRange(), NNS,
2725 IdentLoc, Name, IsTypeName);
2726 }
Mike Stump1eb44332009-09-09 15:08:12 +00002727
Anders Carlssoncf9f9212009-08-28 03:16:11 +00002728 DeclContext *LookupContext = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00002729
Anders Carlssoncf9f9212009-08-28 03:16:11 +00002730 if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(CurContext)) {
2731 // C++0x N2914 [namespace.udecl]p3:
2732 // A using-declaration used as a member-declaration shall refer to a member
2733 // of a base class of the class being defined, shall refer to a member of an
2734 // anonymous union that is a member of a base class of the class being
Mike Stump1eb44332009-09-09 15:08:12 +00002735 // defined, or shall refer to an enumerator for an enumeration type that is
Anders Carlssoncf9f9212009-08-28 03:16:11 +00002736 // a member of a base class of the class being defined.
2737 const Type *Ty = NNS->getAsType();
2738 if (!Ty || !IsDerivedFrom(Context.getTagDeclType(RD), QualType(Ty, 0))) {
2739 Diag(SS.getRange().getBegin(),
2740 diag::err_using_decl_nested_name_specifier_is_not_a_base_class)
2741 << NNS << RD->getDeclName();
Anders Carlssonc72160b2009-08-28 05:40:36 +00002742 return 0;
Anders Carlssoncf9f9212009-08-28 03:16:11 +00002743 }
Anders Carlsson0dde18e2009-08-28 15:18:15 +00002744
2745 QualType BaseTy = Context.getCanonicalType(QualType(Ty, 0));
2746 LookupContext = BaseTy->getAs<RecordType>()->getDecl();
Anders Carlssoncf9f9212009-08-28 03:16:11 +00002747 } else {
2748 // C++0x N2914 [namespace.udecl]p8:
2749 // A using-declaration for a class member shall be a member-declaration.
2750 if (NNS->getKind() == NestedNameSpecifier::TypeSpec) {
Anders Carlsson73b39cf2009-08-28 03:35:18 +00002751 Diag(IdentLoc, diag::err_using_decl_can_not_refer_to_class_member)
Anders Carlssoncf9f9212009-08-28 03:16:11 +00002752 << SS.getRange();
Anders Carlssonc72160b2009-08-28 05:40:36 +00002753 return 0;
Anders Carlssoncf9f9212009-08-28 03:16:11 +00002754 }
Mike Stump1eb44332009-09-09 15:08:12 +00002755
Anders Carlssoncf9f9212009-08-28 03:16:11 +00002756 // C++0x N2914 [namespace.udecl]p9:
2757 // In a using-declaration, a prefix :: refers to the global namespace.
2758 if (NNS->getKind() == NestedNameSpecifier::Global)
2759 LookupContext = Context.getTranslationUnitDecl();
2760 else
2761 LookupContext = NNS->getAsNamespace();
2762 }
2763
2764
Douglas Gregor9cfbe482009-06-20 00:51:54 +00002765 // Lookup target name.
John McCallf36e02d2009-10-09 21:13:30 +00002766 LookupResult R;
2767 LookupQualifiedName(R, LookupContext, Name, LookupOrdinaryName);
Mike Stump1eb44332009-09-09 15:08:12 +00002768
John McCallf36e02d2009-10-09 21:13:30 +00002769 if (R.empty()) {
Anders Carlsson05180af2009-08-30 00:58:45 +00002770 DiagnoseMissingMember(IdentLoc, Name, NNS, SS.getRange());
Anders Carlssonc72160b2009-08-28 05:40:36 +00002771 return 0;
Douglas Gregor9cfbe482009-06-20 00:51:54 +00002772 }
2773
John McCallf36e02d2009-10-09 21:13:30 +00002774 // FIXME: handle ambiguity?
2775 NamedDecl *ND = R.getAsSingleDecl(Context);
Mike Stump1eb44332009-09-09 15:08:12 +00002776
Anders Carlssoncf9f9212009-08-28 03:16:11 +00002777 if (IsTypeName && !isa<TypeDecl>(ND)) {
2778 Diag(IdentLoc, diag::err_using_typename_non_type);
Anders Carlssonc72160b2009-08-28 05:40:36 +00002779 return 0;
Anders Carlssoncf9f9212009-08-28 03:16:11 +00002780 }
2781
Anders Carlsson73b39cf2009-08-28 03:35:18 +00002782 // C++0x N2914 [namespace.udecl]p6:
2783 // A using-declaration shall not name a namespace.
2784 if (isa<NamespaceDecl>(ND)) {
2785 Diag(IdentLoc, diag::err_using_decl_can_not_refer_to_namespace)
2786 << SS.getRange();
Anders Carlssonc72160b2009-08-28 05:40:36 +00002787 return 0;
Anders Carlsson73b39cf2009-08-28 03:35:18 +00002788 }
Mike Stump1eb44332009-09-09 15:08:12 +00002789
Anders Carlssonc72160b2009-08-28 05:40:36 +00002790 return UsingDecl::Create(Context, CurContext, IdentLoc, SS.getRange(),
2791 ND->getLocation(), UsingLoc, ND, NNS, IsTypeName);
Douglas Gregor9cfbe482009-06-20 00:51:54 +00002792}
2793
Anders Carlsson81c85c42009-03-28 23:53:49 +00002794/// getNamespaceDecl - Returns the namespace a decl represents. If the decl
2795/// is a namespace alias, returns the namespace it points to.
2796static inline NamespaceDecl *getNamespaceDecl(NamedDecl *D) {
2797 if (NamespaceAliasDecl *AD = dyn_cast_or_null<NamespaceAliasDecl>(D))
2798 return AD->getNamespace();
2799 return dyn_cast_or_null<NamespaceDecl>(D);
2800}
2801
Mike Stump1eb44332009-09-09 15:08:12 +00002802Sema::DeclPtrTy Sema::ActOnNamespaceAliasDef(Scope *S,
Anders Carlsson03bd5a12009-03-28 22:53:22 +00002803 SourceLocation NamespaceLoc,
Chris Lattnerb28317a2009-03-28 19:18:32 +00002804 SourceLocation AliasLoc,
2805 IdentifierInfo *Alias,
2806 const CXXScopeSpec &SS,
Anders Carlsson03bd5a12009-03-28 22:53:22 +00002807 SourceLocation IdentLoc,
2808 IdentifierInfo *Ident) {
Mike Stump1eb44332009-09-09 15:08:12 +00002809
Anders Carlsson81c85c42009-03-28 23:53:49 +00002810 // Lookup the namespace name.
John McCallf36e02d2009-10-09 21:13:30 +00002811 LookupResult R;
2812 LookupParsedName(R, S, &SS, Ident, LookupNamespaceName, false);
Anders Carlsson81c85c42009-03-28 23:53:49 +00002813
Anders Carlsson8d7ba402009-03-28 06:23:46 +00002814 // Check if we have a previous declaration with the same name.
John McCallf36e02d2009-10-09 21:13:30 +00002815 if (NamedDecl *PrevDecl
2816 = LookupSingleName(S, Alias, LookupOrdinaryName, true)) {
Anders Carlsson81c85c42009-03-28 23:53:49 +00002817 if (NamespaceAliasDecl *AD = dyn_cast<NamespaceAliasDecl>(PrevDecl)) {
Mike Stump1eb44332009-09-09 15:08:12 +00002818 // We already have an alias with the same name that points to the same
Anders Carlsson81c85c42009-03-28 23:53:49 +00002819 // namespace, so don't create a new one.
John McCallf36e02d2009-10-09 21:13:30 +00002820 if (!R.isAmbiguous() && !R.empty() &&
2821 AD->getNamespace() == getNamespaceDecl(R.getFoundDecl()))
Anders Carlsson81c85c42009-03-28 23:53:49 +00002822 return DeclPtrTy();
2823 }
Mike Stump1eb44332009-09-09 15:08:12 +00002824
Anders Carlsson8d7ba402009-03-28 06:23:46 +00002825 unsigned DiagID = isa<NamespaceDecl>(PrevDecl) ? diag::err_redefinition :
2826 diag::err_redefinition_different_kind;
2827 Diag(AliasLoc, DiagID) << Alias;
2828 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Chris Lattnerb28317a2009-03-28 19:18:32 +00002829 return DeclPtrTy();
Anders Carlsson8d7ba402009-03-28 06:23:46 +00002830 }
2831
Anders Carlsson5721c682009-03-28 06:42:02 +00002832 if (R.isAmbiguous()) {
Anders Carlsson03bd5a12009-03-28 22:53:22 +00002833 DiagnoseAmbiguousLookup(R, Ident, IdentLoc);
Chris Lattnerb28317a2009-03-28 19:18:32 +00002834 return DeclPtrTy();
Anders Carlsson5721c682009-03-28 06:42:02 +00002835 }
Mike Stump1eb44332009-09-09 15:08:12 +00002836
John McCallf36e02d2009-10-09 21:13:30 +00002837 if (R.empty()) {
Anders Carlsson5721c682009-03-28 06:42:02 +00002838 Diag(NamespaceLoc, diag::err_expected_namespace_name) << SS.getRange();
Chris Lattnerb28317a2009-03-28 19:18:32 +00002839 return DeclPtrTy();
Anders Carlsson5721c682009-03-28 06:42:02 +00002840 }
Mike Stump1eb44332009-09-09 15:08:12 +00002841
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00002842 NamespaceAliasDecl *AliasDecl =
Mike Stump1eb44332009-09-09 15:08:12 +00002843 NamespaceAliasDecl::Create(Context, CurContext, NamespaceLoc, AliasLoc,
2844 Alias, SS.getRange(),
Douglas Gregor6c9c9402009-05-30 06:48:27 +00002845 (NestedNameSpecifier *)SS.getScopeRep(),
John McCallf36e02d2009-10-09 21:13:30 +00002846 IdentLoc, R.getFoundDecl());
Mike Stump1eb44332009-09-09 15:08:12 +00002847
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002848 CurContext->addDecl(AliasDecl);
Anders Carlsson68771c72009-03-28 22:58:02 +00002849 return DeclPtrTy::make(AliasDecl);
Anders Carlssondbb00942009-03-28 05:27:17 +00002850}
2851
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00002852void Sema::DefineImplicitDefaultConstructor(SourceLocation CurrentLocation,
2853 CXXConstructorDecl *Constructor) {
Fariborz Jahanian05a5c452009-06-22 20:37:23 +00002854 assert((Constructor->isImplicit() && Constructor->isDefaultConstructor() &&
2855 !Constructor->isUsed()) &&
2856 "DefineImplicitDefaultConstructor - call it for implicit default ctor");
Mike Stump1eb44332009-09-09 15:08:12 +00002857
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00002858 CXXRecordDecl *ClassDecl
2859 = cast<CXXRecordDecl>(Constructor->getDeclContext());
Fariborz Jahanian485f0872009-06-22 23:34:40 +00002860 assert(ClassDecl && "DefineImplicitDefaultConstructor - invalid constructor");
Mike Stump1eb44332009-09-09 15:08:12 +00002861 // Before the implicitly-declared default constructor for a class is
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00002862 // implicitly defined, all the implicitly-declared default constructors
2863 // for its base class and its non-static data members shall have been
2864 // implicitly defined.
2865 bool err = false;
Fariborz Jahanian514b7b12009-06-30 16:36:53 +00002866 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
2867 E = ClassDecl->bases_end(); Base != E; ++Base) {
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00002868 CXXRecordDecl *BaseClassDecl
Ted Kremenek6217b802009-07-29 21:53:49 +00002869 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00002870 if (!BaseClassDecl->hasTrivialConstructor()) {
Mike Stump1eb44332009-09-09 15:08:12 +00002871 if (CXXConstructorDecl *BaseCtor =
Fariborz Jahanian220a0f32009-06-23 23:42:10 +00002872 BaseClassDecl->getDefaultConstructor(Context))
2873 MarkDeclarationReferenced(CurrentLocation, BaseCtor);
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00002874 else {
Mike Stump1eb44332009-09-09 15:08:12 +00002875 Diag(CurrentLocation, diag::err_defining_default_ctor)
Fariborz Jahanian0c728f12009-10-08 22:15:49 +00002876 << Context.getTagDeclType(ClassDecl) << 0
Fariborz Jahanian3da83eb2009-06-20 20:23:38 +00002877 << Context.getTagDeclType(BaseClassDecl);
Mike Stump1eb44332009-09-09 15:08:12 +00002878 Diag(BaseClassDecl->getLocation(), diag::note_previous_class_decl)
Fariborz Jahanian3da83eb2009-06-20 20:23:38 +00002879 << Context.getTagDeclType(BaseClassDecl);
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00002880 err = true;
2881 }
2882 }
2883 }
Fariborz Jahanian514b7b12009-06-30 16:36:53 +00002884 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
2885 E = ClassDecl->field_end(); Field != E; ++Field) {
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00002886 QualType FieldType = Context.getCanonicalType((*Field)->getType());
2887 if (const ArrayType *Array = Context.getAsArrayType(FieldType))
2888 FieldType = Array->getElementType();
Ted Kremenek6217b802009-07-29 21:53:49 +00002889 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00002890 CXXRecordDecl *FieldClassDecl
2891 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Duncan Sands6887e632009-06-25 09:03:06 +00002892 if (!FieldClassDecl->hasTrivialConstructor()) {
Mike Stump1eb44332009-09-09 15:08:12 +00002893 if (CXXConstructorDecl *FieldCtor =
Fariborz Jahanian220a0f32009-06-23 23:42:10 +00002894 FieldClassDecl->getDefaultConstructor(Context))
2895 MarkDeclarationReferenced(CurrentLocation, FieldCtor);
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00002896 else {
Mike Stump1eb44332009-09-09 15:08:12 +00002897 Diag(CurrentLocation, diag::err_defining_default_ctor)
Fariborz Jahanian0c728f12009-10-08 22:15:49 +00002898 << Context.getTagDeclType(ClassDecl) << 1 <<
Fariborz Jahanian3da83eb2009-06-20 20:23:38 +00002899 Context.getTagDeclType(FieldClassDecl);
Fariborz Jahanian0c728f12009-10-08 22:15:49 +00002900 Diag((*Field)->getLocation(), diag::note_field_decl);
Mike Stump1eb44332009-09-09 15:08:12 +00002901 Diag(FieldClassDecl->getLocation(), diag::note_previous_class_decl)
Fariborz Jahanian3da83eb2009-06-20 20:23:38 +00002902 << Context.getTagDeclType(FieldClassDecl);
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00002903 err = true;
2904 }
2905 }
Mike Stumpac5fc7c2009-08-04 21:02:39 +00002906 } else if (FieldType->isReferenceType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00002907 Diag(CurrentLocation, diag::err_unintialized_member)
Anders Carlsson5eda8162009-07-09 17:37:12 +00002908 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00002909 Diag((*Field)->getLocation(), diag::note_declared_at);
2910 err = true;
Mike Stumpac5fc7c2009-08-04 21:02:39 +00002911 } else if (FieldType.isConstQualified()) {
Mike Stump1eb44332009-09-09 15:08:12 +00002912 Diag(CurrentLocation, diag::err_unintialized_member)
Anders Carlsson5eda8162009-07-09 17:37:12 +00002913 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00002914 Diag((*Field)->getLocation(), diag::note_declared_at);
2915 err = true;
2916 }
2917 }
2918 if (!err)
Fariborz Jahanianc6249b92009-06-26 16:08:57 +00002919 Constructor->setUsed();
2920 else
2921 Constructor->setInvalidDecl();
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00002922}
2923
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00002924void Sema::DefineImplicitDestructor(SourceLocation CurrentLocation,
Douglas Gregor4fe95f92009-09-04 19:04:08 +00002925 CXXDestructorDecl *Destructor) {
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00002926 assert((Destructor->isImplicit() && !Destructor->isUsed()) &&
2927 "DefineImplicitDestructor - call it for implicit default dtor");
Mike Stump1eb44332009-09-09 15:08:12 +00002928
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00002929 CXXRecordDecl *ClassDecl
2930 = cast<CXXRecordDecl>(Destructor->getDeclContext());
2931 assert(ClassDecl && "DefineImplicitDestructor - invalid destructor");
2932 // C++ [class.dtor] p5
Mike Stump1eb44332009-09-09 15:08:12 +00002933 // Before the implicitly-declared default destructor for a class is
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00002934 // implicitly defined, all the implicitly-declared default destructors
2935 // for its base class and its non-static data members shall have been
2936 // implicitly defined.
Fariborz Jahanian514b7b12009-06-30 16:36:53 +00002937 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
2938 E = ClassDecl->bases_end(); Base != E; ++Base) {
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00002939 CXXRecordDecl *BaseClassDecl
Ted Kremenek6217b802009-07-29 21:53:49 +00002940 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00002941 if (!BaseClassDecl->hasTrivialDestructor()) {
Mike Stump1eb44332009-09-09 15:08:12 +00002942 if (CXXDestructorDecl *BaseDtor =
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00002943 const_cast<CXXDestructorDecl*>(BaseClassDecl->getDestructor(Context)))
2944 MarkDeclarationReferenced(CurrentLocation, BaseDtor);
2945 else
Mike Stump1eb44332009-09-09 15:08:12 +00002946 assert(false &&
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00002947 "DefineImplicitDestructor - missing dtor in a base class");
2948 }
2949 }
Mike Stump1eb44332009-09-09 15:08:12 +00002950
Fariborz Jahanian514b7b12009-06-30 16:36:53 +00002951 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
2952 E = ClassDecl->field_end(); Field != E; ++Field) {
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00002953 QualType FieldType = Context.getCanonicalType((*Field)->getType());
2954 if (const ArrayType *Array = Context.getAsArrayType(FieldType))
2955 FieldType = Array->getElementType();
Ted Kremenek6217b802009-07-29 21:53:49 +00002956 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00002957 CXXRecordDecl *FieldClassDecl
2958 = cast<CXXRecordDecl>(FieldClassType->getDecl());
2959 if (!FieldClassDecl->hasTrivialDestructor()) {
Mike Stump1eb44332009-09-09 15:08:12 +00002960 if (CXXDestructorDecl *FieldDtor =
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00002961 const_cast<CXXDestructorDecl*>(
2962 FieldClassDecl->getDestructor(Context)))
2963 MarkDeclarationReferenced(CurrentLocation, FieldDtor);
2964 else
Mike Stump1eb44332009-09-09 15:08:12 +00002965 assert(false &&
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00002966 "DefineImplicitDestructor - missing dtor in class of a data member");
2967 }
2968 }
2969 }
2970 Destructor->setUsed();
2971}
2972
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00002973void Sema::DefineImplicitOverloadedAssign(SourceLocation CurrentLocation,
2974 CXXMethodDecl *MethodDecl) {
2975 assert((MethodDecl->isImplicit() && MethodDecl->isOverloadedOperator() &&
2976 MethodDecl->getOverloadedOperator() == OO_Equal &&
2977 !MethodDecl->isUsed()) &&
2978 "DefineImplicitOverloadedAssign - call it for implicit assignment op");
Mike Stump1eb44332009-09-09 15:08:12 +00002979
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00002980 CXXRecordDecl *ClassDecl
2981 = cast<CXXRecordDecl>(MethodDecl->getDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +00002982
Fariborz Jahanianc6249b92009-06-26 16:08:57 +00002983 // C++[class.copy] p12
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00002984 // Before the implicitly-declared copy assignment operator for a class is
2985 // implicitly defined, all implicitly-declared copy assignment operators
2986 // for its direct base classes and its nonstatic data members shall have
2987 // been implicitly defined.
2988 bool err = false;
Fariborz Jahanian514b7b12009-06-30 16:36:53 +00002989 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
2990 E = ClassDecl->bases_end(); Base != E; ++Base) {
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00002991 CXXRecordDecl *BaseClassDecl
Ted Kremenek6217b802009-07-29 21:53:49 +00002992 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Mike Stump1eb44332009-09-09 15:08:12 +00002993 if (CXXMethodDecl *BaseAssignOpMethod =
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00002994 getAssignOperatorMethod(MethodDecl->getParamDecl(0), BaseClassDecl))
2995 MarkDeclarationReferenced(CurrentLocation, BaseAssignOpMethod);
2996 }
Fariborz Jahanian514b7b12009-06-30 16:36:53 +00002997 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
2998 E = ClassDecl->field_end(); Field != E; ++Field) {
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00002999 QualType FieldType = Context.getCanonicalType((*Field)->getType());
3000 if (const ArrayType *Array = Context.getAsArrayType(FieldType))
3001 FieldType = Array->getElementType();
Ted Kremenek6217b802009-07-29 21:53:49 +00003002 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00003003 CXXRecordDecl *FieldClassDecl
3004 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Mike Stump1eb44332009-09-09 15:08:12 +00003005 if (CXXMethodDecl *FieldAssignOpMethod =
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00003006 getAssignOperatorMethod(MethodDecl->getParamDecl(0), FieldClassDecl))
3007 MarkDeclarationReferenced(CurrentLocation, FieldAssignOpMethod);
Mike Stumpac5fc7c2009-08-04 21:02:39 +00003008 } else if (FieldType->isReferenceType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00003009 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
Anders Carlsson5e09d4c2009-07-09 17:47:25 +00003010 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
3011 Diag(Field->getLocation(), diag::note_declared_at);
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00003012 Diag(CurrentLocation, diag::note_first_required_here);
3013 err = true;
Mike Stumpac5fc7c2009-08-04 21:02:39 +00003014 } else if (FieldType.isConstQualified()) {
Mike Stump1eb44332009-09-09 15:08:12 +00003015 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
Anders Carlsson5e09d4c2009-07-09 17:47:25 +00003016 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
3017 Diag(Field->getLocation(), diag::note_declared_at);
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00003018 Diag(CurrentLocation, diag::note_first_required_here);
3019 err = true;
3020 }
3021 }
3022 if (!err)
Mike Stump1eb44332009-09-09 15:08:12 +00003023 MethodDecl->setUsed();
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00003024}
3025
3026CXXMethodDecl *
3027Sema::getAssignOperatorMethod(ParmVarDecl *ParmDecl,
3028 CXXRecordDecl *ClassDecl) {
3029 QualType LHSType = Context.getTypeDeclType(ClassDecl);
3030 QualType RHSType(LHSType);
3031 // If class's assignment operator argument is const/volatile qualified,
Mike Stump1eb44332009-09-09 15:08:12 +00003032 // look for operator = (const/volatile B&). Otherwise, look for
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00003033 // operator = (B&).
John McCall0953e762009-09-24 19:53:00 +00003034 RHSType = Context.getCVRQualifiedType(RHSType,
3035 ParmDecl->getType().getCVRQualifiers());
Mike Stump1eb44332009-09-09 15:08:12 +00003036 ExprOwningPtr<Expr> LHS(this, new (Context) DeclRefExpr(ParmDecl,
3037 LHSType,
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00003038 SourceLocation()));
Mike Stump1eb44332009-09-09 15:08:12 +00003039 ExprOwningPtr<Expr> RHS(this, new (Context) DeclRefExpr(ParmDecl,
3040 RHSType,
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00003041 SourceLocation()));
3042 Expr *Args[2] = { &*LHS, &*RHS };
3043 OverloadCandidateSet CandidateSet;
Mike Stump1eb44332009-09-09 15:08:12 +00003044 AddMemberOperatorCandidates(clang::OO_Equal, SourceLocation(), Args, 2,
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00003045 CandidateSet);
3046 OverloadCandidateSet::iterator Best;
Mike Stump1eb44332009-09-09 15:08:12 +00003047 if (BestViableFunction(CandidateSet,
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00003048 ClassDecl->getLocation(), Best) == OR_Success)
3049 return cast<CXXMethodDecl>(Best->Function);
3050 assert(false &&
3051 "getAssignOperatorMethod - copy assignment operator method not found");
3052 return 0;
3053}
3054
Fariborz Jahanian485f0872009-06-22 23:34:40 +00003055void Sema::DefineImplicitCopyConstructor(SourceLocation CurrentLocation,
3056 CXXConstructorDecl *CopyConstructor,
3057 unsigned TypeQuals) {
Mike Stump1eb44332009-09-09 15:08:12 +00003058 assert((CopyConstructor->isImplicit() &&
Fariborz Jahanian485f0872009-06-22 23:34:40 +00003059 CopyConstructor->isCopyConstructor(Context, TypeQuals) &&
3060 !CopyConstructor->isUsed()) &&
3061 "DefineImplicitCopyConstructor - call it for implicit copy ctor");
Mike Stump1eb44332009-09-09 15:08:12 +00003062
Fariborz Jahanian485f0872009-06-22 23:34:40 +00003063 CXXRecordDecl *ClassDecl
3064 = cast<CXXRecordDecl>(CopyConstructor->getDeclContext());
3065 assert(ClassDecl && "DefineImplicitCopyConstructor - invalid constructor");
Fariborz Jahanian220a0f32009-06-23 23:42:10 +00003066 // C++ [class.copy] p209
Mike Stump1eb44332009-09-09 15:08:12 +00003067 // Before the implicitly-declared copy constructor for a class is
Fariborz Jahanian485f0872009-06-22 23:34:40 +00003068 // implicitly defined, all the implicitly-declared copy constructors
3069 // for its base class and its non-static data members shall have been
3070 // implicitly defined.
3071 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin();
3072 Base != ClassDecl->bases_end(); ++Base) {
3073 CXXRecordDecl *BaseClassDecl
Ted Kremenek6217b802009-07-29 21:53:49 +00003074 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Mike Stump1eb44332009-09-09 15:08:12 +00003075 if (CXXConstructorDecl *BaseCopyCtor =
Fariborz Jahanian485f0872009-06-22 23:34:40 +00003076 BaseClassDecl->getCopyConstructor(Context, TypeQuals))
Fariborz Jahanian220a0f32009-06-23 23:42:10 +00003077 MarkDeclarationReferenced(CurrentLocation, BaseCopyCtor);
Fariborz Jahanian485f0872009-06-22 23:34:40 +00003078 }
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003079 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
3080 FieldEnd = ClassDecl->field_end();
3081 Field != FieldEnd; ++Field) {
Fariborz Jahanian485f0872009-06-22 23:34:40 +00003082 QualType FieldType = Context.getCanonicalType((*Field)->getType());
3083 if (const ArrayType *Array = Context.getAsArrayType(FieldType))
3084 FieldType = Array->getElementType();
Ted Kremenek6217b802009-07-29 21:53:49 +00003085 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Fariborz Jahanian485f0872009-06-22 23:34:40 +00003086 CXXRecordDecl *FieldClassDecl
3087 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Mike Stump1eb44332009-09-09 15:08:12 +00003088 if (CXXConstructorDecl *FieldCopyCtor =
Fariborz Jahanian485f0872009-06-22 23:34:40 +00003089 FieldClassDecl->getCopyConstructor(Context, TypeQuals))
Fariborz Jahanian220a0f32009-06-23 23:42:10 +00003090 MarkDeclarationReferenced(CurrentLocation, FieldCopyCtor);
Fariborz Jahanian485f0872009-06-22 23:34:40 +00003091 }
3092 }
3093 CopyConstructor->setUsed();
3094}
3095
Anders Carlssonda3f4e22009-08-25 05:12:04 +00003096Sema::OwningExprResult
Anders Carlssonec8e5ea2009-09-05 07:40:38 +00003097Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
Mike Stump1eb44332009-09-09 15:08:12 +00003098 CXXConstructorDecl *Constructor,
Anders Carlssonf47511a2009-09-07 22:23:31 +00003099 MultiExprArg ExprArgs) {
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00003100 bool Elidable = false;
Mike Stump1eb44332009-09-09 15:08:12 +00003101
Douglas Gregor39da0b82009-09-09 23:08:42 +00003102 // C++ [class.copy]p15:
3103 // Whenever a temporary class object is copied using a copy constructor, and
3104 // this object and the copy have the same cv-unqualified type, an
3105 // implementation is permitted to treat the original and the copy as two
3106 // different ways of referring to the same object and not perform a copy at
3107 // all, even if the class copy constructor or destructor have side effects.
Mike Stump1eb44332009-09-09 15:08:12 +00003108
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00003109 // FIXME: Is this enough?
Douglas Gregor39da0b82009-09-09 23:08:42 +00003110 if (Constructor->isCopyConstructor(Context)) {
Anders Carlssonf47511a2009-09-07 22:23:31 +00003111 Expr *E = ((Expr **)ExprArgs.get())[0];
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00003112 while (CXXBindTemporaryExpr *BE = dyn_cast<CXXBindTemporaryExpr>(E))
3113 E = BE->getSubExpr();
Douglas Gregor39da0b82009-09-09 23:08:42 +00003114 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E))
3115 if (ICE->getCastKind() == CastExpr::CK_NoOp)
3116 E = ICE->getSubExpr();
3117
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00003118 if (isa<CallExpr>(E) || isa<CXXTemporaryObjectExpr>(E))
3119 Elidable = true;
3120 }
Mike Stump1eb44332009-09-09 15:08:12 +00003121
3122 return BuildCXXConstructExpr(ConstructLoc, DeclInitType, Constructor,
Anders Carlssonf47511a2009-09-07 22:23:31 +00003123 Elidable, move(ExprArgs));
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00003124}
3125
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00003126/// BuildCXXConstructExpr - Creates a complete call to a constructor,
3127/// including handling of its default argument expressions.
Anders Carlssonda3f4e22009-08-25 05:12:04 +00003128Sema::OwningExprResult
Anders Carlssonec8e5ea2009-09-05 07:40:38 +00003129Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
3130 CXXConstructorDecl *Constructor, bool Elidable,
Anders Carlssonf47511a2009-09-07 22:23:31 +00003131 MultiExprArg ExprArgs) {
3132 unsigned NumExprs = ExprArgs.size();
3133 Expr **Exprs = (Expr **)ExprArgs.release();
Mike Stump1eb44332009-09-09 15:08:12 +00003134
Douglas Gregor39da0b82009-09-09 23:08:42 +00003135 return Owned(CXXConstructExpr::Create(Context, DeclInitType, Constructor,
3136 Elidable, Exprs, NumExprs));
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00003137}
3138
Anders Carlssone7624a72009-08-27 05:08:22 +00003139Sema::OwningExprResult
Mike Stump1eb44332009-09-09 15:08:12 +00003140Sema::BuildCXXTemporaryObjectExpr(CXXConstructorDecl *Constructor,
3141 QualType Ty,
3142 SourceLocation TyBeginLoc,
Anders Carlssone7624a72009-08-27 05:08:22 +00003143 MultiExprArg Args,
3144 SourceLocation RParenLoc) {
Douglas Gregor39da0b82009-09-09 23:08:42 +00003145 unsigned NumExprs = Args.size();
3146 Expr **Exprs = (Expr **)Args.release();
Mike Stump1eb44332009-09-09 15:08:12 +00003147
Douglas Gregor39da0b82009-09-09 23:08:42 +00003148 return Owned(new (Context) CXXTemporaryObjectExpr(Context, Constructor, Ty,
3149 TyBeginLoc, Exprs,
3150 NumExprs, RParenLoc));
Anders Carlssone7624a72009-08-27 05:08:22 +00003151}
3152
3153
Mike Stump1eb44332009-09-09 15:08:12 +00003154bool Sema::InitializeVarWithConstructor(VarDecl *VD,
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00003155 CXXConstructorDecl *Constructor,
Mike Stump1eb44332009-09-09 15:08:12 +00003156 QualType DeclInitType,
Anders Carlssonf47511a2009-09-07 22:23:31 +00003157 MultiExprArg Exprs) {
Mike Stump1eb44332009-09-09 15:08:12 +00003158 OwningExprResult TempResult =
3159 BuildCXXConstructExpr(VD->getLocation(), DeclInitType, Constructor,
Anders Carlssonf47511a2009-09-07 22:23:31 +00003160 move(Exprs));
Anders Carlssonfe2de492009-08-25 05:18:00 +00003161 if (TempResult.isInvalid())
3162 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00003163
Anders Carlssonda3f4e22009-08-25 05:12:04 +00003164 Expr *Temp = TempResult.takeAs<Expr>();
Douglas Gregord7f37bf2009-06-22 23:06:13 +00003165 MarkDeclarationReferenced(VD->getLocation(), Constructor);
Fariborz Jahaniancaa499b2009-08-05 18:17:32 +00003166 Temp = MaybeCreateCXXExprWithTemporaries(Temp, /*DestroyTemps=*/true);
Douglas Gregor78d15832009-05-26 18:54:04 +00003167 VD->setInit(Context, Temp);
Mike Stump1eb44332009-09-09 15:08:12 +00003168
Anders Carlssonfe2de492009-08-25 05:18:00 +00003169 return false;
Anders Carlsson930e8d02009-04-16 23:50:50 +00003170}
3171
Mike Stump1eb44332009-09-09 15:08:12 +00003172void Sema::FinalizeVarWithDestructor(VarDecl *VD, QualType DeclInitType) {
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00003173 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(
Ted Kremenek6217b802009-07-29 21:53:49 +00003174 DeclInitType->getAs<RecordType>()->getDecl());
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00003175 if (!ClassDecl->hasTrivialDestructor())
Mike Stump1eb44332009-09-09 15:08:12 +00003176 if (CXXDestructorDecl *Destructor =
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00003177 const_cast<CXXDestructorDecl*>(ClassDecl->getDestructor(Context)))
Fariborz Jahaniana83f7ed2009-08-03 19:13:25 +00003178 MarkDeclarationReferenced(VD->getLocation(), Destructor);
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00003179}
3180
Mike Stump1eb44332009-09-09 15:08:12 +00003181/// AddCXXDirectInitializerToDecl - This action is called immediately after
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00003182/// ActOnDeclarator, when a C++ direct initializer is present.
3183/// e.g: "int x(1);"
Chris Lattnerb28317a2009-03-28 19:18:32 +00003184void Sema::AddCXXDirectInitializerToDecl(DeclPtrTy Dcl,
3185 SourceLocation LParenLoc,
Sebastian Redlf53597f2009-03-15 17:47:39 +00003186 MultiExprArg Exprs,
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00003187 SourceLocation *CommaLocs,
3188 SourceLocation RParenLoc) {
Sebastian Redlf53597f2009-03-15 17:47:39 +00003189 unsigned NumExprs = Exprs.size();
3190 assert(NumExprs != 0 && Exprs.get() && "missing expressions");
Chris Lattnerb28317a2009-03-28 19:18:32 +00003191 Decl *RealDecl = Dcl.getAs<Decl>();
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00003192
3193 // If there is no declaration, there was an error parsing it. Just ignore
3194 // the initializer.
Chris Lattnerb28317a2009-03-28 19:18:32 +00003195 if (RealDecl == 0)
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00003196 return;
Mike Stump1eb44332009-09-09 15:08:12 +00003197
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00003198 VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl);
3199 if (!VDecl) {
3200 Diag(RealDecl->getLocation(), diag::err_illegal_initializer);
3201 RealDecl->setInvalidDecl();
3202 return;
3203 }
3204
Douglas Gregor83ddad32009-08-26 21:14:46 +00003205 // We will represent direct-initialization similarly to copy-initialization:
Argyrios Kyrtzidisce8e2922008-10-06 23:08:37 +00003206 // int x(1); -as-> int x = 1;
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00003207 // ClassType x(a,b,c); -as-> ClassType x = ClassType(a,b,c);
3208 //
3209 // Clients that want to distinguish between the two forms, can check for
3210 // direct initializer using VarDecl::hasCXXDirectInitializer().
3211 // A major benefit is that clients that don't particularly care about which
3212 // exactly form was it (like the CodeGen) can handle both cases without
3213 // special case code.
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +00003214
Douglas Gregor83ddad32009-08-26 21:14:46 +00003215 // If either the declaration has a dependent type or if any of the expressions
3216 // is type-dependent, we represent the initialization via a ParenListExpr for
3217 // later use during template instantiation.
3218 if (VDecl->getType()->isDependentType() ||
3219 Expr::hasAnyTypeDependentArguments((Expr **)Exprs.get(), Exprs.size())) {
3220 // Let clients know that initialization was done with a direct initializer.
3221 VDecl->setCXXDirectInitializer(true);
Mike Stump1eb44332009-09-09 15:08:12 +00003222
Douglas Gregor83ddad32009-08-26 21:14:46 +00003223 // Store the initialization expressions as a ParenListExpr.
3224 unsigned NumExprs = Exprs.size();
Mike Stump1eb44332009-09-09 15:08:12 +00003225 VDecl->setInit(Context,
Douglas Gregor83ddad32009-08-26 21:14:46 +00003226 new (Context) ParenListExpr(Context, LParenLoc,
3227 (Expr **)Exprs.release(),
3228 NumExprs, RParenLoc));
3229 return;
3230 }
Mike Stump1eb44332009-09-09 15:08:12 +00003231
Douglas Gregor83ddad32009-08-26 21:14:46 +00003232
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00003233 // C++ 8.5p11:
3234 // The form of initialization (using parentheses or '=') is generally
3235 // insignificant, but does matter when the entity being initialized has a
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +00003236 // class type.
Douglas Gregor18fe5682008-11-03 20:45:27 +00003237 QualType DeclInitType = VDecl->getType();
3238 if (const ArrayType *Array = Context.getAsArrayType(DeclInitType))
3239 DeclInitType = Array->getElementType();
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +00003240
Douglas Gregor615c5d42009-03-24 16:43:20 +00003241 // FIXME: This isn't the right place to complete the type.
3242 if (RequireCompleteType(VDecl->getLocation(), VDecl->getType(),
3243 diag::err_typecheck_decl_incomplete_type)) {
3244 VDecl->setInvalidDecl();
3245 return;
3246 }
3247
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +00003248 if (VDecl->getType()->isRecordType()) {
Douglas Gregor39da0b82009-09-09 23:08:42 +00003249 ASTOwningVector<&ActionBase::DeleteExpr> ConstructorArgs(*this);
3250
Douglas Gregor18fe5682008-11-03 20:45:27 +00003251 CXXConstructorDecl *Constructor
Sebastian Redlf53597f2009-03-15 17:47:39 +00003252 = PerformInitializationByConstructor(DeclInitType,
Douglas Gregor39da0b82009-09-09 23:08:42 +00003253 move(Exprs),
Douglas Gregorf03d7c72008-11-05 15:29:30 +00003254 VDecl->getLocation(),
3255 SourceRange(VDecl->getLocation(),
3256 RParenLoc),
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00003257 VDecl->getDeclName(),
Douglas Gregor39da0b82009-09-09 23:08:42 +00003258 IK_Direct,
3259 ConstructorArgs);
Sebastian Redlf53597f2009-03-15 17:47:39 +00003260 if (!Constructor)
Douglas Gregor18fe5682008-11-03 20:45:27 +00003261 RealDecl->setInvalidDecl();
Anders Carlssonca29ad92009-04-15 21:48:18 +00003262 else {
Anders Carlssonca29ad92009-04-15 21:48:18 +00003263 VDecl->setCXXDirectInitializer(true);
Mike Stump1eb44332009-09-09 15:08:12 +00003264 if (InitializeVarWithConstructor(VDecl, Constructor, DeclInitType,
Douglas Gregor39da0b82009-09-09 23:08:42 +00003265 move_arg(ConstructorArgs)))
Anders Carlssonfe2de492009-08-25 05:18:00 +00003266 RealDecl->setInvalidDecl();
Fariborz Jahaniana83f7ed2009-08-03 19:13:25 +00003267 FinalizeVarWithDestructor(VDecl, DeclInitType);
Anders Carlssonca29ad92009-04-15 21:48:18 +00003268 }
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +00003269 return;
3270 }
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00003271
Argyrios Kyrtzidisce8e2922008-10-06 23:08:37 +00003272 if (NumExprs > 1) {
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00003273 Diag(CommaLocs[0], diag::err_builtin_direct_init_more_than_one_arg)
3274 << SourceRange(VDecl->getLocation(), RParenLoc);
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00003275 RealDecl->setInvalidDecl();
3276 return;
3277 }
3278
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00003279 // Let clients know that initialization was done with a direct initializer.
3280 VDecl->setCXXDirectInitializer(true);
Argyrios Kyrtzidisce8e2922008-10-06 23:08:37 +00003281
3282 assert(NumExprs == 1 && "Expected 1 expression");
3283 // Set the init expression, handles conversions.
Sebastian Redlf53597f2009-03-15 17:47:39 +00003284 AddInitializerToDecl(Dcl, ExprArg(*this, Exprs.release()[0]),
3285 /*DirectInit=*/true);
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00003286}
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003287
Douglas Gregor39da0b82009-09-09 23:08:42 +00003288/// \brief Perform initialization by constructor (C++ [dcl.init]p14), which
3289/// may occur as part of direct-initialization or copy-initialization.
3290///
3291/// \param ClassType the type of the object being initialized, which must have
3292/// class type.
3293///
3294/// \param ArgsPtr the arguments provided to initialize the object
3295///
3296/// \param Loc the source location where the initialization occurs
3297///
3298/// \param Range the source range that covers the entire initialization
3299///
3300/// \param InitEntity the name of the entity being initialized, if known
3301///
3302/// \param Kind the type of initialization being performed
3303///
3304/// \param ConvertedArgs a vector that will be filled in with the
3305/// appropriately-converted arguments to the constructor (if initialization
3306/// succeeded).
3307///
3308/// \returns the constructor used to initialize the object, if successful.
3309/// Otherwise, emits a diagnostic and returns NULL.
Douglas Gregor18fe5682008-11-03 20:45:27 +00003310CXXConstructorDecl *
Douglas Gregorf03d7c72008-11-05 15:29:30 +00003311Sema::PerformInitializationByConstructor(QualType ClassType,
Douglas Gregor39da0b82009-09-09 23:08:42 +00003312 MultiExprArg ArgsPtr,
Douglas Gregorf03d7c72008-11-05 15:29:30 +00003313 SourceLocation Loc, SourceRange Range,
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00003314 DeclarationName InitEntity,
Douglas Gregor39da0b82009-09-09 23:08:42 +00003315 InitializationKind Kind,
3316 ASTOwningVector<&ActionBase::DeleteExpr> &ConvertedArgs) {
Ted Kremenek6217b802009-07-29 21:53:49 +00003317 const RecordType *ClassRec = ClassType->getAs<RecordType>();
Douglas Gregor18fe5682008-11-03 20:45:27 +00003318 assert(ClassRec && "Can only initialize a class type here");
Douglas Gregor39da0b82009-09-09 23:08:42 +00003319 Expr **Args = (Expr **)ArgsPtr.get();
3320 unsigned NumArgs = ArgsPtr.size();
3321
Mike Stump1eb44332009-09-09 15:08:12 +00003322 // C++ [dcl.init]p14:
Douglas Gregor18fe5682008-11-03 20:45:27 +00003323 // If the initialization is direct-initialization, or if it is
3324 // copy-initialization where the cv-unqualified version of the
3325 // source type is the same class as, or a derived class of, the
3326 // class of the destination, constructors are considered. The
3327 // applicable constructors are enumerated (13.3.1.3), and the
3328 // best one is chosen through overload resolution (13.3). The
3329 // constructor so selected is called to initialize the object,
3330 // with the initializer expression(s) as its argument(s). If no
3331 // constructor applies, or the overload resolution is ambiguous,
3332 // the initialization is ill-formed.
Douglas Gregor18fe5682008-11-03 20:45:27 +00003333 const CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(ClassRec->getDecl());
3334 OverloadCandidateSet CandidateSet;
Douglas Gregorf03d7c72008-11-05 15:29:30 +00003335
3336 // Add constructors to the overload set.
Mike Stump1eb44332009-09-09 15:08:12 +00003337 DeclarationName ConstructorName
Douglas Gregor9e7d9de2008-12-15 21:24:18 +00003338 = Context.DeclarationNames.getCXXConstructorName(
3339 Context.getCanonicalType(ClassType.getUnqualifiedType()));
Douglas Gregor3fc749d2008-12-23 00:26:44 +00003340 DeclContext::lookup_const_iterator Con, ConEnd;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003341 for (llvm::tie(Con, ConEnd) = ClassDecl->lookup(ConstructorName);
Douglas Gregor3fc749d2008-12-23 00:26:44 +00003342 Con != ConEnd; ++Con) {
Douglas Gregordec06662009-08-21 18:42:58 +00003343 // Find the constructor (which may be a template).
3344 CXXConstructorDecl *Constructor = 0;
3345 FunctionTemplateDecl *ConstructorTmpl= dyn_cast<FunctionTemplateDecl>(*Con);
3346 if (ConstructorTmpl)
Mike Stump1eb44332009-09-09 15:08:12 +00003347 Constructor
Douglas Gregordec06662009-08-21 18:42:58 +00003348 = cast<CXXConstructorDecl>(ConstructorTmpl->getTemplatedDecl());
3349 else
3350 Constructor = cast<CXXConstructorDecl>(*Con);
3351
Douglas Gregorf03d7c72008-11-05 15:29:30 +00003352 if ((Kind == IK_Direct) ||
Mike Stump1eb44332009-09-09 15:08:12 +00003353 (Kind == IK_Copy &&
Anders Carlssonfaccd722009-08-28 16:57:08 +00003354 Constructor->isConvertingConstructor(/*AllowExplicit=*/false)) ||
Douglas Gregordec06662009-08-21 18:42:58 +00003355 (Kind == IK_Default && Constructor->isDefaultConstructor())) {
3356 if (ConstructorTmpl)
Mike Stump1eb44332009-09-09 15:08:12 +00003357 AddTemplateOverloadCandidate(ConstructorTmpl, false, 0, 0,
Douglas Gregordec06662009-08-21 18:42:58 +00003358 Args, NumArgs, CandidateSet);
3359 else
3360 AddOverloadCandidate(Constructor, Args, NumArgs, CandidateSet);
3361 }
Douglas Gregorf03d7c72008-11-05 15:29:30 +00003362 }
3363
Douglas Gregor9e7d9de2008-12-15 21:24:18 +00003364 // FIXME: When we decide not to synthesize the implicitly-declared
3365 // constructors, we'll need to make them appear here.
3366
Douglas Gregor18fe5682008-11-03 20:45:27 +00003367 OverloadCandidateSet::iterator Best;
Douglas Gregore0762c92009-06-19 23:52:42 +00003368 switch (BestViableFunction(CandidateSet, Loc, Best)) {
Douglas Gregor18fe5682008-11-03 20:45:27 +00003369 case OR_Success:
Douglas Gregor39da0b82009-09-09 23:08:42 +00003370 // We found a constructor. Break out so that we can convert the arguments
3371 // appropriately.
3372 break;
Mike Stump1eb44332009-09-09 15:08:12 +00003373
Douglas Gregor18fe5682008-11-03 20:45:27 +00003374 case OR_No_Viable_Function:
Douglas Gregor87fd7032009-02-02 17:43:21 +00003375 if (InitEntity)
3376 Diag(Loc, diag::err_ovl_no_viable_function_in_init)
Chris Lattner4330d652009-02-17 07:29:20 +00003377 << InitEntity << Range;
Douglas Gregor87fd7032009-02-02 17:43:21 +00003378 else
3379 Diag(Loc, diag::err_ovl_no_viable_function_in_init)
Chris Lattner4330d652009-02-17 07:29:20 +00003380 << ClassType << Range;
Sebastian Redle4c452c2008-11-22 13:44:36 +00003381 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/false);
Douglas Gregor18fe5682008-11-03 20:45:27 +00003382 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00003383
Douglas Gregor18fe5682008-11-03 20:45:27 +00003384 case OR_Ambiguous:
Douglas Gregor87fd7032009-02-02 17:43:21 +00003385 if (InitEntity)
3386 Diag(Loc, diag::err_ovl_ambiguous_init) << InitEntity << Range;
3387 else
3388 Diag(Loc, diag::err_ovl_ambiguous_init) << ClassType << Range;
Douglas Gregor18fe5682008-11-03 20:45:27 +00003389 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true);
3390 return 0;
Douglas Gregor48f3bb92009-02-18 21:56:37 +00003391
3392 case OR_Deleted:
3393 if (InitEntity)
3394 Diag(Loc, diag::err_ovl_deleted_init)
3395 << Best->Function->isDeleted()
3396 << InitEntity << Range;
3397 else
3398 Diag(Loc, diag::err_ovl_deleted_init)
3399 << Best->Function->isDeleted()
3400 << InitEntity << Range;
3401 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true);
3402 return 0;
Douglas Gregor18fe5682008-11-03 20:45:27 +00003403 }
Mike Stump1eb44332009-09-09 15:08:12 +00003404
Douglas Gregor39da0b82009-09-09 23:08:42 +00003405 // Convert the arguments, fill in default arguments, etc.
3406 CXXConstructorDecl *Constructor = cast<CXXConstructorDecl>(Best->Function);
3407 if (CompleteConstructorCall(Constructor, move(ArgsPtr), Loc, ConvertedArgs))
3408 return 0;
3409
3410 return Constructor;
3411}
3412
3413/// \brief Given a constructor and the set of arguments provided for the
3414/// constructor, convert the arguments and add any required default arguments
3415/// to form a proper call to this constructor.
3416///
3417/// \returns true if an error occurred, false otherwise.
3418bool
3419Sema::CompleteConstructorCall(CXXConstructorDecl *Constructor,
3420 MultiExprArg ArgsPtr,
3421 SourceLocation Loc,
3422 ASTOwningVector<&ActionBase::DeleteExpr> &ConvertedArgs) {
3423 // FIXME: This duplicates a lot of code from Sema::ConvertArgumentsForCall.
3424 unsigned NumArgs = ArgsPtr.size();
3425 Expr **Args = (Expr **)ArgsPtr.get();
3426
3427 const FunctionProtoType *Proto
3428 = Constructor->getType()->getAs<FunctionProtoType>();
3429 assert(Proto && "Constructor without a prototype?");
3430 unsigned NumArgsInProto = Proto->getNumArgs();
3431 unsigned NumArgsToCheck = NumArgs;
3432
3433 // If too few arguments are available, we'll fill in the rest with defaults.
3434 if (NumArgs < NumArgsInProto) {
3435 NumArgsToCheck = NumArgsInProto;
3436 ConvertedArgs.reserve(NumArgsInProto);
3437 } else {
3438 ConvertedArgs.reserve(NumArgs);
3439 if (NumArgs > NumArgsInProto)
3440 NumArgsToCheck = NumArgsInProto;
3441 }
3442
3443 // Convert arguments
3444 for (unsigned i = 0; i != NumArgsToCheck; i++) {
3445 QualType ProtoArgType = Proto->getArgType(i);
3446
3447 Expr *Arg;
3448 if (i < NumArgs) {
3449 Arg = Args[i];
Anders Carlsson71710112009-09-15 21:14:33 +00003450
3451 // Pass the argument.
3452 if (PerformCopyInitialization(Arg, ProtoArgType, "passing"))
3453 return true;
3454
3455 Args[i] = 0;
Douglas Gregor39da0b82009-09-09 23:08:42 +00003456 } else {
3457 ParmVarDecl *Param = Constructor->getParamDecl(i);
3458
3459 OwningExprResult DefArg = BuildCXXDefaultArgExpr(Loc, Constructor, Param);
3460 if (DefArg.isInvalid())
3461 return true;
3462
3463 Arg = DefArg.takeAs<Expr>();
3464 }
3465
3466 ConvertedArgs.push_back(Arg);
3467 }
3468
3469 // If this is a variadic call, handle args passed through "...".
3470 if (Proto->isVariadic()) {
3471 // Promote the arguments (C99 6.5.2.2p7).
3472 for (unsigned i = NumArgsInProto; i != NumArgs; i++) {
3473 Expr *Arg = Args[i];
3474 if (DefaultVariadicArgumentPromotion(Arg, VariadicConstructor))
3475 return true;
3476
3477 ConvertedArgs.push_back(Arg);
3478 Args[i] = 0;
3479 }
3480 }
3481
3482 return false;
Douglas Gregor18fe5682008-11-03 20:45:27 +00003483}
3484
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003485/// CompareReferenceRelationship - Compare the two types T1 and T2 to
3486/// determine whether they are reference-related,
3487/// reference-compatible, reference-compatible with added
3488/// qualification, or incompatible, for use in C++ initialization by
3489/// reference (C++ [dcl.ref.init]p4). Neither type can be a reference
3490/// type, and the first type (T1) is the pointee type of the reference
3491/// type being initialized.
Mike Stump1eb44332009-09-09 15:08:12 +00003492Sema::ReferenceCompareResult
3493Sema::CompareReferenceRelationship(QualType T1, QualType T2,
Douglas Gregor15da57e2008-10-29 02:00:59 +00003494 bool& DerivedToBase) {
Sebastian Redl7c80bd62009-03-16 23:22:08 +00003495 assert(!T1->isReferenceType() &&
3496 "T1 must be the pointee type of the reference type");
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003497 assert(!T2->isReferenceType() && "T2 cannot be a reference type");
3498
3499 T1 = Context.getCanonicalType(T1);
3500 T2 = Context.getCanonicalType(T2);
3501 QualType UnqualT1 = T1.getUnqualifiedType();
3502 QualType UnqualT2 = T2.getUnqualifiedType();
3503
3504 // C++ [dcl.init.ref]p4:
Eli Friedman33a31382009-08-05 19:21:58 +00003505 // Given types "cv1 T1" and "cv2 T2," "cv1 T1" is
Mike Stump1eb44332009-09-09 15:08:12 +00003506 // reference-related to "cv2 T2" if T1 is the same type as T2, or
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003507 // T1 is a base class of T2.
Douglas Gregor15da57e2008-10-29 02:00:59 +00003508 if (UnqualT1 == UnqualT2)
3509 DerivedToBase = false;
3510 else if (IsDerivedFrom(UnqualT2, UnqualT1))
3511 DerivedToBase = true;
3512 else
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003513 return Ref_Incompatible;
3514
3515 // At this point, we know that T1 and T2 are reference-related (at
3516 // least).
3517
3518 // C++ [dcl.init.ref]p4:
Eli Friedman33a31382009-08-05 19:21:58 +00003519 // "cv1 T1" is reference-compatible with "cv2 T2" if T1 is
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003520 // reference-related to T2 and cv1 is the same cv-qualification
3521 // as, or greater cv-qualification than, cv2. For purposes of
3522 // overload resolution, cases for which cv1 is greater
3523 // cv-qualification than cv2 are identified as
3524 // reference-compatible with added qualification (see 13.3.3.2).
3525 if (T1.getCVRQualifiers() == T2.getCVRQualifiers())
3526 return Ref_Compatible;
3527 else if (T1.isMoreQualifiedThan(T2))
3528 return Ref_Compatible_With_Added_Qualification;
3529 else
3530 return Ref_Related;
3531}
3532
3533/// CheckReferenceInit - Check the initialization of a reference
3534/// variable with the given initializer (C++ [dcl.init.ref]). Init is
3535/// the initializer (either a simple initializer or an initializer
Douglas Gregor3205a782008-10-29 23:31:03 +00003536/// list), and DeclType is the type of the declaration. When ICS is
3537/// non-null, this routine will compute the implicit conversion
3538/// sequence according to C++ [over.ics.ref] and will not produce any
3539/// diagnostics; when ICS is null, it will emit diagnostics when any
3540/// errors are found. Either way, a return value of true indicates
3541/// that there was a failure, a return value of false indicates that
3542/// the reference initialization succeeded.
Douglas Gregor225c41e2008-11-03 19:09:14 +00003543///
3544/// When @p SuppressUserConversions, user-defined conversions are
3545/// suppressed.
Douglas Gregor09f41cf2009-01-14 15:45:31 +00003546/// When @p AllowExplicit, we also permit explicit user-defined
3547/// conversion functions.
Sebastian Redle2b68332009-04-12 17:16:29 +00003548/// When @p ForceRValue, we unconditionally treat the initializer as an rvalue.
Mike Stump1eb44332009-09-09 15:08:12 +00003549bool
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003550Sema::CheckReferenceInit(Expr *&Init, QualType DeclType,
Douglas Gregor739d8282009-09-23 23:04:10 +00003551 SourceLocation DeclLoc,
Douglas Gregor09f41cf2009-01-14 15:45:31 +00003552 bool SuppressUserConversions,
Anders Carlsson2de3ace2009-08-27 17:30:43 +00003553 bool AllowExplicit, bool ForceRValue,
3554 ImplicitConversionSequence *ICS) {
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003555 assert(DeclType->isReferenceType() && "Reference init needs a reference");
3556
Ted Kremenek6217b802009-07-29 21:53:49 +00003557 QualType T1 = DeclType->getAs<ReferenceType>()->getPointeeType();
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003558 QualType T2 = Init->getType();
3559
Douglas Gregor904eed32008-11-10 20:40:00 +00003560 // If the initializer is the address of an overloaded function, try
3561 // to resolve the overloaded function. If all goes well, T2 is the
3562 // type of the resulting function.
Douglas Gregor063daf62009-03-13 18:40:31 +00003563 if (Context.getCanonicalType(T2) == Context.OverloadTy) {
Mike Stump1eb44332009-09-09 15:08:12 +00003564 FunctionDecl *Fn = ResolveAddressOfOverloadedFunction(Init, DeclType,
Douglas Gregor904eed32008-11-10 20:40:00 +00003565 ICS != 0);
3566 if (Fn) {
3567 // Since we're performing this reference-initialization for
3568 // real, update the initializer with the resulting function.
Douglas Gregor48f3bb92009-02-18 21:56:37 +00003569 if (!ICS) {
Douglas Gregor739d8282009-09-23 23:04:10 +00003570 if (DiagnoseUseOfDecl(Fn, DeclLoc))
Douglas Gregor48f3bb92009-02-18 21:56:37 +00003571 return true;
3572
Douglas Gregor904eed32008-11-10 20:40:00 +00003573 FixOverloadedFunctionReference(Init, Fn);
Douglas Gregor48f3bb92009-02-18 21:56:37 +00003574 }
Douglas Gregor904eed32008-11-10 20:40:00 +00003575
3576 T2 = Fn->getType();
3577 }
3578 }
3579
Douglas Gregor15da57e2008-10-29 02:00:59 +00003580 // Compute some basic properties of the types and the initializer.
Sebastian Redl7c80bd62009-03-16 23:22:08 +00003581 bool isRValRef = DeclType->isRValueReferenceType();
Douglas Gregor15da57e2008-10-29 02:00:59 +00003582 bool DerivedToBase = false;
Sebastian Redle2b68332009-04-12 17:16:29 +00003583 Expr::isLvalueResult InitLvalue = ForceRValue ? Expr::LV_InvalidExpression :
3584 Init->isLvalue(Context);
Mike Stump1eb44332009-09-09 15:08:12 +00003585 ReferenceCompareResult RefRelationship
Douglas Gregor15da57e2008-10-29 02:00:59 +00003586 = CompareReferenceRelationship(T1, T2, DerivedToBase);
3587
3588 // Most paths end in a failed conversion.
3589 if (ICS)
3590 ICS->ConversionKind = ImplicitConversionSequence::BadConversion;
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003591
3592 // C++ [dcl.init.ref]p5:
Eli Friedman33a31382009-08-05 19:21:58 +00003593 // A reference to type "cv1 T1" is initialized by an expression
3594 // of type "cv2 T2" as follows:
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003595
3596 // -- If the initializer expression
3597
Sebastian Redla9845802009-03-29 15:27:50 +00003598 // Rvalue references cannot bind to lvalues (N2812).
3599 // There is absolutely no situation where they can. In particular, note that
3600 // this is ill-formed, even if B has a user-defined conversion to A&&:
3601 // B b;
3602 // A&& r = b;
3603 if (isRValRef && InitLvalue == Expr::LV_Valid) {
3604 if (!ICS)
Douglas Gregor739d8282009-09-23 23:04:10 +00003605 Diag(DeclLoc, diag::err_lvalue_to_rvalue_ref)
Sebastian Redla9845802009-03-29 15:27:50 +00003606 << Init->getSourceRange();
3607 return true;
3608 }
3609
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003610 bool BindsDirectly = false;
Eli Friedman33a31382009-08-05 19:21:58 +00003611 // -- is an lvalue (but is not a bit-field), and "cv1 T1" is
3612 // reference-compatible with "cv2 T2," or
Douglas Gregor15da57e2008-10-29 02:00:59 +00003613 //
3614 // Note that the bit-field check is skipped if we are just computing
3615 // the implicit conversion sequence (C++ [over.best.ics]p2).
Douglas Gregor33bbbc52009-05-02 02:18:30 +00003616 if (InitLvalue == Expr::LV_Valid && (ICS || !Init->getBitField()) &&
Douglas Gregor15da57e2008-10-29 02:00:59 +00003617 RefRelationship >= Ref_Compatible_With_Added_Qualification) {
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003618 BindsDirectly = true;
3619
Douglas Gregor15da57e2008-10-29 02:00:59 +00003620 if (ICS) {
3621 // C++ [over.ics.ref]p1:
3622 // When a parameter of reference type binds directly (8.5.3)
3623 // to an argument expression, the implicit conversion sequence
3624 // is the identity conversion, unless the argument expression
3625 // has a type that is a derived class of the parameter type,
3626 // in which case the implicit conversion sequence is a
3627 // derived-to-base Conversion (13.3.3.1).
3628 ICS->ConversionKind = ImplicitConversionSequence::StandardConversion;
3629 ICS->Standard.First = ICK_Identity;
3630 ICS->Standard.Second = DerivedToBase? ICK_Derived_To_Base : ICK_Identity;
3631 ICS->Standard.Third = ICK_Identity;
3632 ICS->Standard.FromTypePtr = T2.getAsOpaquePtr();
3633 ICS->Standard.ToTypePtr = T1.getAsOpaquePtr();
Douglas Gregorf70bdb92008-10-29 14:50:44 +00003634 ICS->Standard.ReferenceBinding = true;
3635 ICS->Standard.DirectBinding = true;
Sebastian Redla9845802009-03-29 15:27:50 +00003636 ICS->Standard.RRefBinding = false;
Sebastian Redl76458502009-04-17 16:30:52 +00003637 ICS->Standard.CopyConstructor = 0;
Douglas Gregor15da57e2008-10-29 02:00:59 +00003638
3639 // Nothing more to do: the inaccessibility/ambiguity check for
3640 // derived-to-base conversions is suppressed when we're
3641 // computing the implicit conversion sequence (C++
3642 // [over.best.ics]p2).
3643 return false;
3644 } else {
3645 // Perform the conversion.
Douglas Gregor39da0b82009-09-09 23:08:42 +00003646 CastExpr::CastKind CK = CastExpr::CK_NoOp;
3647 if (DerivedToBase)
3648 CK = CastExpr::CK_DerivedToBase;
Sebastian Redl2c7588f2009-10-10 12:04:10 +00003649 else if(CheckExceptionSpecCompatibility(Init, T1))
3650 return true;
Douglas Gregor39da0b82009-09-09 23:08:42 +00003651 ImpCastExprToType(Init, T1, CK, /*isLvalue=*/true);
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003652 }
3653 }
3654
3655 // -- has a class type (i.e., T2 is a class type) and can be
Eli Friedman33a31382009-08-05 19:21:58 +00003656 // implicitly converted to an lvalue of type "cv3 T3,"
3657 // where "cv1 T1" is reference-compatible with "cv3 T3"
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003658 // 92) (this conversion is selected by enumerating the
3659 // applicable conversion functions (13.3.1.6) and choosing
3660 // the best one through overload resolution (13.3)),
Douglas Gregor5842ba92009-08-24 15:23:48 +00003661 if (!isRValRef && !SuppressUserConversions && T2->isRecordType() &&
3662 !RequireCompleteType(SourceLocation(), T2, 0)) {
Mike Stump1eb44332009-09-09 15:08:12 +00003663 CXXRecordDecl *T2RecordDecl
Ted Kremenek6217b802009-07-29 21:53:49 +00003664 = dyn_cast<CXXRecordDecl>(T2->getAs<RecordType>()->getDecl());
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003665
Douglas Gregorcb9b9772008-11-10 16:14:15 +00003666 OverloadCandidateSet CandidateSet;
Mike Stump1eb44332009-09-09 15:08:12 +00003667 OverloadedFunctionDecl *Conversions
Fariborz Jahanian51bebc82009-09-23 20:55:32 +00003668 = T2RecordDecl->getVisibleConversionFunctions();
Mike Stump1eb44332009-09-09 15:08:12 +00003669 for (OverloadedFunctionDecl::function_iterator Func
Douglas Gregorcb9b9772008-11-10 16:14:15 +00003670 = Conversions->function_begin();
3671 Func != Conversions->function_end(); ++Func) {
Mike Stump1eb44332009-09-09 15:08:12 +00003672 FunctionTemplateDecl *ConvTemplate
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00003673 = dyn_cast<FunctionTemplateDecl>(*Func);
3674 CXXConversionDecl *Conv;
3675 if (ConvTemplate)
3676 Conv = cast<CXXConversionDecl>(ConvTemplate->getTemplatedDecl());
3677 else
3678 Conv = cast<CXXConversionDecl>(*Func);
Fariborz Jahanian51bebc82009-09-23 20:55:32 +00003679
Douglas Gregorcb9b9772008-11-10 16:14:15 +00003680 // If the conversion function doesn't return a reference type,
3681 // it can't be considered for this conversion.
Sebastian Redl7c80bd62009-03-16 23:22:08 +00003682 if (Conv->getConversionType()->isLValueReferenceType() &&
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00003683 (AllowExplicit || !Conv->isExplicit())) {
3684 if (ConvTemplate)
Mike Stump1eb44332009-09-09 15:08:12 +00003685 AddTemplateConversionCandidate(ConvTemplate, Init, DeclType,
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00003686 CandidateSet);
3687 else
3688 AddConversionCandidate(Conv, Init, DeclType, CandidateSet);
3689 }
Douglas Gregorcb9b9772008-11-10 16:14:15 +00003690 }
3691
3692 OverloadCandidateSet::iterator Best;
Douglas Gregor739d8282009-09-23 23:04:10 +00003693 switch (BestViableFunction(CandidateSet, DeclLoc, Best)) {
Douglas Gregorcb9b9772008-11-10 16:14:15 +00003694 case OR_Success:
3695 // This is a direct binding.
3696 BindsDirectly = true;
3697
3698 if (ICS) {
3699 // C++ [over.ics.ref]p1:
3700 //
3701 // [...] If the parameter binds directly to the result of
3702 // applying a conversion function to the argument
3703 // expression, the implicit conversion sequence is a
3704 // user-defined conversion sequence (13.3.3.1.2), with the
3705 // second standard conversion sequence either an identity
3706 // conversion or, if the conversion function returns an
3707 // entity of a type that is a derived class of the parameter
3708 // type, a derived-to-base Conversion.
3709 ICS->ConversionKind = ImplicitConversionSequence::UserDefinedConversion;
3710 ICS->UserDefined.Before = Best->Conversions[0].Standard;
3711 ICS->UserDefined.After = Best->FinalConversion;
3712 ICS->UserDefined.ConversionFunction = Best->Function;
3713 assert(ICS->UserDefined.After.ReferenceBinding &&
3714 ICS->UserDefined.After.DirectBinding &&
3715 "Expected a direct reference binding!");
3716 return false;
3717 } else {
Fariborz Jahanian8f489d62009-09-23 22:34:00 +00003718 OwningExprResult InitConversion =
Douglas Gregor739d8282009-09-23 23:04:10 +00003719 BuildCXXCastArgument(DeclLoc, QualType(),
Fariborz Jahanian8f489d62009-09-23 22:34:00 +00003720 CastExpr::CK_UserDefinedConversion,
3721 cast<CXXMethodDecl>(Best->Function),
3722 Owned(Init));
3723 Init = InitConversion.takeAs<Expr>();
Sebastian Redl2c7588f2009-10-10 12:04:10 +00003724
3725 if (CheckExceptionSpecCompatibility(Init, T1))
3726 return true;
Fariborz Jahanian8f489d62009-09-23 22:34:00 +00003727 ImpCastExprToType(Init, T1, CastExpr::CK_UserDefinedConversion,
3728 /*isLvalue=*/true);
Douglas Gregorcb9b9772008-11-10 16:14:15 +00003729 }
3730 break;
3731
3732 case OR_Ambiguous:
3733 assert(false && "Ambiguous reference binding conversions not implemented.");
3734 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00003735
Douglas Gregorcb9b9772008-11-10 16:14:15 +00003736 case OR_No_Viable_Function:
Douglas Gregor48f3bb92009-02-18 21:56:37 +00003737 case OR_Deleted:
3738 // There was no suitable conversion, or we found a deleted
3739 // conversion; continue with other checks.
Douglas Gregorcb9b9772008-11-10 16:14:15 +00003740 break;
3741 }
3742 }
Mike Stump1eb44332009-09-09 15:08:12 +00003743
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003744 if (BindsDirectly) {
3745 // C++ [dcl.init.ref]p4:
3746 // [...] In all cases where the reference-related or
3747 // reference-compatible relationship of two types is used to
3748 // establish the validity of a reference binding, and T1 is a
3749 // base class of T2, a program that necessitates such a binding
3750 // is ill-formed if T1 is an inaccessible (clause 11) or
3751 // ambiguous (10.2) base class of T2.
3752 //
3753 // Note that we only check this condition when we're allowed to
3754 // complain about errors, because we should not be checking for
3755 // ambiguity (or inaccessibility) unless the reference binding
3756 // actually happens.
Mike Stump1eb44332009-09-09 15:08:12 +00003757 if (DerivedToBase)
Douglas Gregor739d8282009-09-23 23:04:10 +00003758 return CheckDerivedToBaseConversion(T2, T1, DeclLoc,
Douglas Gregor15da57e2008-10-29 02:00:59 +00003759 Init->getSourceRange());
3760 else
3761 return false;
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003762 }
3763
3764 // -- Otherwise, the reference shall be to a non-volatile const
Sebastian Redla9845802009-03-29 15:27:50 +00003765 // type (i.e., cv1 shall be const), or the reference shall be an
3766 // rvalue reference and the initializer expression shall be an rvalue.
John McCall0953e762009-09-24 19:53:00 +00003767 if (!isRValRef && T1.getCVRQualifiers() != Qualifiers::Const) {
Douglas Gregor15da57e2008-10-29 02:00:59 +00003768 if (!ICS)
Douglas Gregor739d8282009-09-23 23:04:10 +00003769 Diag(DeclLoc, diag::err_not_reference_to_const_init)
Chris Lattnerd1625842008-11-24 06:25:27 +00003770 << T1 << (InitLvalue != Expr::LV_Valid? "temporary" : "value")
3771 << T2 << Init->getSourceRange();
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003772 return true;
3773 }
3774
3775 // -- If the initializer expression is an rvalue, with T2 a
Eli Friedman33a31382009-08-05 19:21:58 +00003776 // class type, and "cv1 T1" is reference-compatible with
3777 // "cv2 T2," the reference is bound in one of the
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003778 // following ways (the choice is implementation-defined):
3779 //
3780 // -- The reference is bound to the object represented by
3781 // the rvalue (see 3.10) or to a sub-object within that
3782 // object.
3783 //
Eli Friedman33a31382009-08-05 19:21:58 +00003784 // -- A temporary of type "cv1 T2" [sic] is created, and
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003785 // a constructor is called to copy the entire rvalue
3786 // object into the temporary. The reference is bound to
3787 // the temporary or to a sub-object within the
3788 // temporary.
3789 //
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003790 // The constructor that would be used to make the copy
3791 // shall be callable whether or not the copy is actually
3792 // done.
3793 //
Sebastian Redla9845802009-03-29 15:27:50 +00003794 // Note that C++0x [dcl.init.ref]p5 takes away this implementation
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003795 // freedom, so we will always take the first option and never build
3796 // a temporary in this case. FIXME: We will, however, have to check
3797 // for the presence of a copy constructor in C++98/03 mode.
3798 if (InitLvalue != Expr::LV_Valid && T2->isRecordType() &&
Douglas Gregor15da57e2008-10-29 02:00:59 +00003799 RefRelationship >= Ref_Compatible_With_Added_Qualification) {
3800 if (ICS) {
3801 ICS->ConversionKind = ImplicitConversionSequence::StandardConversion;
3802 ICS->Standard.First = ICK_Identity;
3803 ICS->Standard.Second = DerivedToBase? ICK_Derived_To_Base : ICK_Identity;
3804 ICS->Standard.Third = ICK_Identity;
3805 ICS->Standard.FromTypePtr = T2.getAsOpaquePtr();
3806 ICS->Standard.ToTypePtr = T1.getAsOpaquePtr();
Douglas Gregorf70bdb92008-10-29 14:50:44 +00003807 ICS->Standard.ReferenceBinding = true;
Sebastian Redla9845802009-03-29 15:27:50 +00003808 ICS->Standard.DirectBinding = false;
3809 ICS->Standard.RRefBinding = isRValRef;
Sebastian Redl76458502009-04-17 16:30:52 +00003810 ICS->Standard.CopyConstructor = 0;
Douglas Gregor15da57e2008-10-29 02:00:59 +00003811 } else {
Douglas Gregor39da0b82009-09-09 23:08:42 +00003812 CastExpr::CastKind CK = CastExpr::CK_NoOp;
3813 if (DerivedToBase)
3814 CK = CastExpr::CK_DerivedToBase;
Sebastian Redl2c7588f2009-10-10 12:04:10 +00003815 else if(CheckExceptionSpecCompatibility(Init, T1))
3816 return true;
Douglas Gregor39da0b82009-09-09 23:08:42 +00003817 ImpCastExprToType(Init, T1, CK, /*isLvalue=*/false);
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003818 }
3819 return false;
3820 }
3821
Eli Friedman33a31382009-08-05 19:21:58 +00003822 // -- Otherwise, a temporary of type "cv1 T1" is created and
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003823 // initialized from the initializer expression using the
3824 // rules for a non-reference copy initialization (8.5). The
3825 // reference is then bound to the temporary. If T1 is
3826 // reference-related to T2, cv1 must be the same
3827 // cv-qualification as, or greater cv-qualification than,
3828 // cv2; otherwise, the program is ill-formed.
3829 if (RefRelationship == Ref_Related) {
3830 // If cv1 == cv2 or cv1 is a greater cv-qualified than cv2, then
3831 // we would be reference-compatible or reference-compatible with
3832 // added qualification. But that wasn't the case, so the reference
3833 // initialization fails.
Douglas Gregor15da57e2008-10-29 02:00:59 +00003834 if (!ICS)
Douglas Gregor739d8282009-09-23 23:04:10 +00003835 Diag(DeclLoc, diag::err_reference_init_drops_quals)
Chris Lattnerd1625842008-11-24 06:25:27 +00003836 << T1 << (InitLvalue != Expr::LV_Valid? "temporary" : "value")
3837 << T2 << Init->getSourceRange();
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003838 return true;
3839 }
3840
Douglas Gregor734d9862009-01-30 23:27:23 +00003841 // If at least one of the types is a class type, the types are not
3842 // related, and we aren't allowed any user conversions, the
3843 // reference binding fails. This case is important for breaking
3844 // recursion, since TryImplicitConversion below will attempt to
3845 // create a temporary through the use of a copy constructor.
3846 if (SuppressUserConversions && RefRelationship == Ref_Incompatible &&
3847 (T1->isRecordType() || T2->isRecordType())) {
3848 if (!ICS)
Douglas Gregor739d8282009-09-23 23:04:10 +00003849 Diag(DeclLoc, diag::err_typecheck_convert_incompatible)
Douglas Gregor734d9862009-01-30 23:27:23 +00003850 << DeclType << Init->getType() << "initializing" << Init->getSourceRange();
3851 return true;
3852 }
3853
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003854 // Actually try to convert the initializer to T1.
Douglas Gregor15da57e2008-10-29 02:00:59 +00003855 if (ICS) {
Sebastian Redla9845802009-03-29 15:27:50 +00003856 // C++ [over.ics.ref]p2:
Mike Stump1eb44332009-09-09 15:08:12 +00003857 //
Sebastian Redla9845802009-03-29 15:27:50 +00003858 // When a parameter of reference type is not bound directly to
3859 // an argument expression, the conversion sequence is the one
3860 // required to convert the argument expression to the
3861 // underlying type of the reference according to
3862 // 13.3.3.1. Conceptually, this conversion sequence corresponds
3863 // to copy-initializing a temporary of the underlying type with
3864 // the argument expression. Any difference in top-level
3865 // cv-qualification is subsumed by the initialization itself
3866 // and does not constitute a conversion.
Anders Carlssonda7a18b2009-08-27 17:24:15 +00003867 *ICS = TryImplicitConversion(Init, T1, SuppressUserConversions,
3868 /*AllowExplicit=*/false,
Anders Carlsson08972922009-08-28 15:33:32 +00003869 /*ForceRValue=*/false,
3870 /*InOverloadResolution=*/false);
Mike Stump1eb44332009-09-09 15:08:12 +00003871
Sebastian Redla9845802009-03-29 15:27:50 +00003872 // Of course, that's still a reference binding.
3873 if (ICS->ConversionKind == ImplicitConversionSequence::StandardConversion) {
3874 ICS->Standard.ReferenceBinding = true;
3875 ICS->Standard.RRefBinding = isRValRef;
Mike Stump1eb44332009-09-09 15:08:12 +00003876 } else if (ICS->ConversionKind ==
Sebastian Redla9845802009-03-29 15:27:50 +00003877 ImplicitConversionSequence::UserDefinedConversion) {
3878 ICS->UserDefined.After.ReferenceBinding = true;
3879 ICS->UserDefined.After.RRefBinding = isRValRef;
3880 }
Douglas Gregor15da57e2008-10-29 02:00:59 +00003881 return ICS->ConversionKind == ImplicitConversionSequence::BadConversion;
3882 } else {
Fariborz Jahanian51bebc82009-09-23 20:55:32 +00003883 ImplicitConversionSequence Conversions;
3884 bool badConversion = PerformImplicitConversion(Init, T1, "initializing",
3885 false, false,
3886 Conversions);
3887 if (badConversion) {
3888 if ((Conversions.ConversionKind ==
3889 ImplicitConversionSequence::BadConversion)
Fariborz Jahanian82ad87b2009-09-28 22:03:07 +00003890 && !Conversions.ConversionFunctionSet.empty()) {
Fariborz Jahanian7ad2d562009-09-24 00:42:43 +00003891 Diag(DeclLoc,
Fariborz Jahanian51bebc82009-09-23 20:55:32 +00003892 diag::err_lvalue_to_rvalue_ambig_ref) << Init->getSourceRange();
3893 for (int j = Conversions.ConversionFunctionSet.size()-1;
3894 j >= 0; j--) {
3895 FunctionDecl *Func = Conversions.ConversionFunctionSet[j];
3896 Diag(Func->getLocation(), diag::err_ovl_candidate);
3897 }
3898 }
Fariborz Jahanian893f9552009-09-30 21:23:30 +00003899 else {
3900 if (isRValRef)
3901 Diag(DeclLoc, diag::err_lvalue_to_rvalue_ref)
3902 << Init->getSourceRange();
3903 else
3904 Diag(DeclLoc, diag::err_invalid_initialization)
3905 << DeclType << Init->getType() << Init->getSourceRange();
3906 }
Fariborz Jahanian51bebc82009-09-23 20:55:32 +00003907 }
3908 return badConversion;
Douglas Gregor15da57e2008-10-29 02:00:59 +00003909 }
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003910}
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00003911
3912/// CheckOverloadedOperatorDeclaration - Check whether the declaration
3913/// of this overloaded operator is well-formed. If so, returns false;
3914/// otherwise, emits appropriate diagnostics and returns true.
3915bool Sema::CheckOverloadedOperatorDeclaration(FunctionDecl *FnDecl) {
Douglas Gregor43c7bad2008-11-17 16:14:12 +00003916 assert(FnDecl && FnDecl->isOverloadedOperator() &&
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00003917 "Expected an overloaded operator declaration");
3918
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00003919 OverloadedOperatorKind Op = FnDecl->getOverloadedOperator();
3920
Mike Stump1eb44332009-09-09 15:08:12 +00003921 // C++ [over.oper]p5:
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00003922 // The allocation and deallocation functions, operator new,
3923 // operator new[], operator delete and operator delete[], are
3924 // described completely in 3.7.3. The attributes and restrictions
3925 // found in the rest of this subclause do not apply to them unless
3926 // explicitly stated in 3.7.3.
Mike Stump390b4cc2009-05-16 07:39:55 +00003927 // FIXME: Write a separate routine for checking this. For now, just allow it.
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00003928 if (Op == OO_New || Op == OO_Array_New ||
3929 Op == OO_Delete || Op == OO_Array_Delete)
3930 return false;
3931
3932 // C++ [over.oper]p6:
3933 // An operator function shall either be a non-static member
3934 // function or be a non-member function and have at least one
3935 // parameter whose type is a class, a reference to a class, an
3936 // enumeration, or a reference to an enumeration.
Douglas Gregor43c7bad2008-11-17 16:14:12 +00003937 if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(FnDecl)) {
3938 if (MethodDecl->isStatic())
3939 return Diag(FnDecl->getLocation(),
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00003940 diag::err_operator_overload_static) << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00003941 } else {
3942 bool ClassOrEnumParam = false;
Douglas Gregor43c7bad2008-11-17 16:14:12 +00003943 for (FunctionDecl::param_iterator Param = FnDecl->param_begin(),
3944 ParamEnd = FnDecl->param_end();
3945 Param != ParamEnd; ++Param) {
3946 QualType ParamType = (*Param)->getType().getNonReferenceType();
Eli Friedman5d39dee2009-06-27 05:59:59 +00003947 if (ParamType->isDependentType() || ParamType->isRecordType() ||
3948 ParamType->isEnumeralType()) {
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00003949 ClassOrEnumParam = true;
3950 break;
3951 }
3952 }
3953
Douglas Gregor43c7bad2008-11-17 16:14:12 +00003954 if (!ClassOrEnumParam)
3955 return Diag(FnDecl->getLocation(),
Chris Lattnerf3a41af2008-11-20 06:38:18 +00003956 diag::err_operator_overload_needs_class_or_enum)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00003957 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00003958 }
3959
3960 // C++ [over.oper]p8:
3961 // An operator function cannot have default arguments (8.3.6),
3962 // except where explicitly stated below.
3963 //
Mike Stump1eb44332009-09-09 15:08:12 +00003964 // Only the function-call operator allows default arguments
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00003965 // (C++ [over.call]p1).
3966 if (Op != OO_Call) {
3967 for (FunctionDecl::param_iterator Param = FnDecl->param_begin();
3968 Param != FnDecl->param_end(); ++Param) {
Douglas Gregor61366e92008-12-24 00:01:03 +00003969 if ((*Param)->hasUnparsedDefaultArg())
Mike Stump1eb44332009-09-09 15:08:12 +00003970 return Diag((*Param)->getLocation(),
Douglas Gregor61366e92008-12-24 00:01:03 +00003971 diag::err_operator_overload_default_arg)
3972 << FnDecl->getDeclName();
3973 else if (Expr *DefArg = (*Param)->getDefaultArg())
Douglas Gregor43c7bad2008-11-17 16:14:12 +00003974 return Diag((*Param)->getLocation(),
Chris Lattnerd3a94e22008-11-20 06:06:08 +00003975 diag::err_operator_overload_default_arg)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00003976 << FnDecl->getDeclName() << DefArg->getSourceRange();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00003977 }
3978 }
3979
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00003980 static const bool OperatorUses[NUM_OVERLOADED_OPERATORS][3] = {
3981 { false, false, false }
3982#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
3983 , { Unary, Binary, MemberOnly }
3984#include "clang/Basic/OperatorKinds.def"
3985 };
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00003986
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00003987 bool CanBeUnaryOperator = OperatorUses[Op][0];
3988 bool CanBeBinaryOperator = OperatorUses[Op][1];
3989 bool MustBeMemberOperator = OperatorUses[Op][2];
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00003990
3991 // C++ [over.oper]p8:
3992 // [...] Operator functions cannot have more or fewer parameters
3993 // than the number required for the corresponding operator, as
3994 // described in the rest of this subclause.
Mike Stump1eb44332009-09-09 15:08:12 +00003995 unsigned NumParams = FnDecl->getNumParams()
Douglas Gregor43c7bad2008-11-17 16:14:12 +00003996 + (isa<CXXMethodDecl>(FnDecl)? 1 : 0);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00003997 if (Op != OO_Call &&
3998 ((NumParams == 1 && !CanBeUnaryOperator) ||
3999 (NumParams == 2 && !CanBeBinaryOperator) ||
4000 (NumParams < 1) || (NumParams > 2))) {
4001 // We have the wrong number of parameters.
Chris Lattner416e46f2008-11-21 07:57:12 +00004002 unsigned ErrorKind;
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00004003 if (CanBeUnaryOperator && CanBeBinaryOperator) {
Chris Lattner416e46f2008-11-21 07:57:12 +00004004 ErrorKind = 2; // 2 -> unary or binary.
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00004005 } else if (CanBeUnaryOperator) {
Chris Lattner416e46f2008-11-21 07:57:12 +00004006 ErrorKind = 0; // 0 -> unary
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00004007 } else {
Chris Lattneraf7ae4e2008-11-21 07:50:02 +00004008 assert(CanBeBinaryOperator &&
4009 "All non-call overloaded operators are unary or binary!");
Chris Lattner416e46f2008-11-21 07:57:12 +00004010 ErrorKind = 1; // 1 -> binary
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00004011 }
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00004012
Chris Lattner416e46f2008-11-21 07:57:12 +00004013 return Diag(FnDecl->getLocation(), diag::err_operator_overload_must_be)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00004014 << FnDecl->getDeclName() << NumParams << ErrorKind;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00004015 }
Sebastian Redl64b45f72009-01-05 20:52:13 +00004016
Douglas Gregor43c7bad2008-11-17 16:14:12 +00004017 // Overloaded operators other than operator() cannot be variadic.
4018 if (Op != OO_Call &&
John McCall183700f2009-09-21 23:43:11 +00004019 FnDecl->getType()->getAs<FunctionProtoType>()->isVariadic()) {
Chris Lattnerf3a41af2008-11-20 06:38:18 +00004020 return Diag(FnDecl->getLocation(), diag::err_operator_overload_variadic)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00004021 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00004022 }
4023
4024 // Some operators must be non-static member functions.
Douglas Gregor43c7bad2008-11-17 16:14:12 +00004025 if (MustBeMemberOperator && !isa<CXXMethodDecl>(FnDecl)) {
4026 return Diag(FnDecl->getLocation(),
Chris Lattnerf3a41af2008-11-20 06:38:18 +00004027 diag::err_operator_overload_must_be_member)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00004028 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00004029 }
4030
4031 // C++ [over.inc]p1:
4032 // The user-defined function called operator++ implements the
4033 // prefix and postfix ++ operator. If this function is a member
4034 // function with no parameters, or a non-member function with one
4035 // parameter of class or enumeration type, it defines the prefix
4036 // increment operator ++ for objects of that type. If the function
4037 // is a member function with one parameter (which shall be of type
4038 // int) or a non-member function with two parameters (the second
4039 // of which shall be of type int), it defines the postfix
4040 // increment operator ++ for objects of that type.
4041 if ((Op == OO_PlusPlus || Op == OO_MinusMinus) && NumParams == 2) {
4042 ParmVarDecl *LastParam = FnDecl->getParamDecl(FnDecl->getNumParams() - 1);
4043 bool ParamIsInt = false;
John McCall183700f2009-09-21 23:43:11 +00004044 if (const BuiltinType *BT = LastParam->getType()->getAs<BuiltinType>())
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00004045 ParamIsInt = BT->getKind() == BuiltinType::Int;
4046
Chris Lattneraf7ae4e2008-11-21 07:50:02 +00004047 if (!ParamIsInt)
4048 return Diag(LastParam->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00004049 diag::err_operator_overload_post_incdec_must_be_int)
Chris Lattnerd1625842008-11-24 06:25:27 +00004050 << LastParam->getType() << (Op == OO_MinusMinus);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00004051 }
4052
Sebastian Redl64b45f72009-01-05 20:52:13 +00004053 // Notify the class if it got an assignment operator.
4054 if (Op == OO_Equal) {
4055 // Would have returned earlier otherwise.
4056 assert(isa<CXXMethodDecl>(FnDecl) &&
4057 "Overloaded = not member, but not filtered.");
4058 CXXMethodDecl *Method = cast<CXXMethodDecl>(FnDecl);
Fariborz Jahanianad258832009-08-13 21:09:41 +00004059 Method->setCopyAssignment(true);
Sebastian Redl64b45f72009-01-05 20:52:13 +00004060 Method->getParent()->addedAssignmentOperator(Context, Method);
4061 }
4062
Douglas Gregor43c7bad2008-11-17 16:14:12 +00004063 return false;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00004064}
Chris Lattner5a003a42008-12-17 07:09:26 +00004065
Douglas Gregor074149e2009-01-05 19:45:36 +00004066/// ActOnStartLinkageSpecification - Parsed the beginning of a C++
4067/// linkage specification, including the language and (if present)
4068/// the '{'. ExternLoc is the location of the 'extern', LangLoc is
4069/// the location of the language string literal, which is provided
4070/// by Lang/StrSize. LBraceLoc, if valid, provides the location of
4071/// the '{' brace. Otherwise, this linkage specification does not
4072/// have any braces.
Chris Lattnerb28317a2009-03-28 19:18:32 +00004073Sema::DeclPtrTy Sema::ActOnStartLinkageSpecification(Scope *S,
4074 SourceLocation ExternLoc,
4075 SourceLocation LangLoc,
4076 const char *Lang,
4077 unsigned StrSize,
4078 SourceLocation LBraceLoc) {
Chris Lattnercc98eac2008-12-17 07:13:27 +00004079 LinkageSpecDecl::LanguageIDs Language;
4080 if (strncmp(Lang, "\"C\"", StrSize) == 0)
4081 Language = LinkageSpecDecl::lang_c;
4082 else if (strncmp(Lang, "\"C++\"", StrSize) == 0)
4083 Language = LinkageSpecDecl::lang_cxx;
4084 else {
Douglas Gregor074149e2009-01-05 19:45:36 +00004085 Diag(LangLoc, diag::err_bad_language);
Chris Lattnerb28317a2009-03-28 19:18:32 +00004086 return DeclPtrTy();
Chris Lattnercc98eac2008-12-17 07:13:27 +00004087 }
Mike Stump1eb44332009-09-09 15:08:12 +00004088
Chris Lattnercc98eac2008-12-17 07:13:27 +00004089 // FIXME: Add all the various semantics of linkage specifications
Mike Stump1eb44332009-09-09 15:08:12 +00004090
Douglas Gregor074149e2009-01-05 19:45:36 +00004091 LinkageSpecDecl *D = LinkageSpecDecl::Create(Context, CurContext,
Mike Stump1eb44332009-09-09 15:08:12 +00004092 LangLoc, Language,
Douglas Gregor074149e2009-01-05 19:45:36 +00004093 LBraceLoc.isValid());
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00004094 CurContext->addDecl(D);
Douglas Gregor074149e2009-01-05 19:45:36 +00004095 PushDeclContext(S, D);
Chris Lattnerb28317a2009-03-28 19:18:32 +00004096 return DeclPtrTy::make(D);
Chris Lattnercc98eac2008-12-17 07:13:27 +00004097}
4098
Douglas Gregor074149e2009-01-05 19:45:36 +00004099/// ActOnFinishLinkageSpecification - Completely the definition of
4100/// the C++ linkage specification LinkageSpec. If RBraceLoc is
4101/// valid, it's the position of the closing '}' brace in a linkage
4102/// specification that uses braces.
Chris Lattnerb28317a2009-03-28 19:18:32 +00004103Sema::DeclPtrTy Sema::ActOnFinishLinkageSpecification(Scope *S,
4104 DeclPtrTy LinkageSpec,
4105 SourceLocation RBraceLoc) {
Douglas Gregor074149e2009-01-05 19:45:36 +00004106 if (LinkageSpec)
4107 PopDeclContext();
4108 return LinkageSpec;
Chris Lattner5a003a42008-12-17 07:09:26 +00004109}
4110
Douglas Gregord308e622009-05-18 20:51:54 +00004111/// \brief Perform semantic analysis for the variable declaration that
4112/// occurs within a C++ catch clause, returning the newly-created
4113/// variable.
4114VarDecl *Sema::BuildExceptionDeclaration(Scope *S, QualType ExDeclType,
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00004115 DeclaratorInfo *DInfo,
Douglas Gregord308e622009-05-18 20:51:54 +00004116 IdentifierInfo *Name,
4117 SourceLocation Loc,
4118 SourceRange Range) {
4119 bool Invalid = false;
Sebastian Redl4b07b292008-12-22 19:15:10 +00004120
4121 // Arrays and functions decay.
4122 if (ExDeclType->isArrayType())
4123 ExDeclType = Context.getArrayDecayedType(ExDeclType);
4124 else if (ExDeclType->isFunctionType())
4125 ExDeclType = Context.getPointerType(ExDeclType);
4126
4127 // C++ 15.3p1: The exception-declaration shall not denote an incomplete type.
4128 // The exception-declaration shall not denote a pointer or reference to an
4129 // incomplete type, other than [cv] void*.
Sebastian Redlf2e21e52009-03-22 23:49:27 +00004130 // N2844 forbids rvalue references.
Mike Stump1eb44332009-09-09 15:08:12 +00004131 if (!ExDeclType->isDependentType() && ExDeclType->isRValueReferenceType()) {
Douglas Gregord308e622009-05-18 20:51:54 +00004132 Diag(Loc, diag::err_catch_rvalue_ref) << Range;
Sebastian Redlf2e21e52009-03-22 23:49:27 +00004133 Invalid = true;
4134 }
Douglas Gregord308e622009-05-18 20:51:54 +00004135
Sebastian Redl4b07b292008-12-22 19:15:10 +00004136 QualType BaseType = ExDeclType;
4137 int Mode = 0; // 0 for direct type, 1 for pointer, 2 for reference
Douglas Gregor4ec339f2009-01-19 19:26:10 +00004138 unsigned DK = diag::err_catch_incomplete;
Ted Kremenek6217b802009-07-29 21:53:49 +00004139 if (const PointerType *Ptr = BaseType->getAs<PointerType>()) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00004140 BaseType = Ptr->getPointeeType();
4141 Mode = 1;
Douglas Gregor4ec339f2009-01-19 19:26:10 +00004142 DK = diag::err_catch_incomplete_ptr;
Mike Stump1eb44332009-09-09 15:08:12 +00004143 } else if (const ReferenceType *Ref = BaseType->getAs<ReferenceType>()) {
Sebastian Redlf2e21e52009-03-22 23:49:27 +00004144 // For the purpose of error recovery, we treat rvalue refs like lvalue refs.
Sebastian Redl4b07b292008-12-22 19:15:10 +00004145 BaseType = Ref->getPointeeType();
4146 Mode = 2;
Douglas Gregor4ec339f2009-01-19 19:26:10 +00004147 DK = diag::err_catch_incomplete_ref;
Sebastian Redl4b07b292008-12-22 19:15:10 +00004148 }
Sebastian Redlf2e21e52009-03-22 23:49:27 +00004149 if (!Invalid && (Mode == 0 || !BaseType->isVoidType()) &&
Douglas Gregord308e622009-05-18 20:51:54 +00004150 !BaseType->isDependentType() && RequireCompleteType(Loc, BaseType, DK))
Sebastian Redl4b07b292008-12-22 19:15:10 +00004151 Invalid = true;
Sebastian Redl4b07b292008-12-22 19:15:10 +00004152
Mike Stump1eb44332009-09-09 15:08:12 +00004153 if (!Invalid && !ExDeclType->isDependentType() &&
Douglas Gregord308e622009-05-18 20:51:54 +00004154 RequireNonAbstractType(Loc, ExDeclType,
4155 diag::err_abstract_type_in_decl,
4156 AbstractVariableType))
Sebastian Redlfef9f592009-04-27 21:03:30 +00004157 Invalid = true;
4158
Douglas Gregord308e622009-05-18 20:51:54 +00004159 // FIXME: Need to test for ability to copy-construct and destroy the
4160 // exception variable.
4161
Sebastian Redl8351da02008-12-22 21:35:02 +00004162 // FIXME: Need to check for abstract classes.
4163
Mike Stump1eb44332009-09-09 15:08:12 +00004164 VarDecl *ExDecl = VarDecl::Create(Context, CurContext, Loc,
Argyrios Kyrtzidisa5d82002009-08-21 00:31:54 +00004165 Name, ExDeclType, DInfo, VarDecl::None);
Douglas Gregord308e622009-05-18 20:51:54 +00004166
4167 if (Invalid)
4168 ExDecl->setInvalidDecl();
4169
4170 return ExDecl;
4171}
4172
4173/// ActOnExceptionDeclarator - Parsed the exception-declarator in a C++ catch
4174/// handler.
4175Sema::DeclPtrTy Sema::ActOnExceptionDeclarator(Scope *S, Declarator &D) {
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00004176 DeclaratorInfo *DInfo = 0;
4177 QualType ExDeclType = GetTypeForDeclarator(D, S, &DInfo);
Douglas Gregord308e622009-05-18 20:51:54 +00004178
4179 bool Invalid = D.isInvalidType();
Sebastian Redl4b07b292008-12-22 19:15:10 +00004180 IdentifierInfo *II = D.getIdentifier();
John McCallf36e02d2009-10-09 21:13:30 +00004181 if (NamedDecl *PrevDecl = LookupSingleName(S, II, LookupOrdinaryName)) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00004182 // The scope should be freshly made just for us. There is just no way
4183 // it contains any previous declaration.
Chris Lattnerb28317a2009-03-28 19:18:32 +00004184 assert(!S->isDeclScope(DeclPtrTy::make(PrevDecl)));
Sebastian Redl4b07b292008-12-22 19:15:10 +00004185 if (PrevDecl->isTemplateParameter()) {
4186 // Maybe we will complain about the shadowed template parameter.
4187 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
Sebastian Redl4b07b292008-12-22 19:15:10 +00004188 }
4189 }
4190
Chris Lattnereaaebc72009-04-25 08:06:05 +00004191 if (D.getCXXScopeSpec().isSet() && !Invalid) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00004192 Diag(D.getIdentifierLoc(), diag::err_qualified_catch_declarator)
4193 << D.getCXXScopeSpec().getRange();
Chris Lattnereaaebc72009-04-25 08:06:05 +00004194 Invalid = true;
Sebastian Redl4b07b292008-12-22 19:15:10 +00004195 }
4196
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00004197 VarDecl *ExDecl = BuildExceptionDeclaration(S, ExDeclType, DInfo,
Douglas Gregord308e622009-05-18 20:51:54 +00004198 D.getIdentifier(),
4199 D.getIdentifierLoc(),
4200 D.getDeclSpec().getSourceRange());
4201
Chris Lattnereaaebc72009-04-25 08:06:05 +00004202 if (Invalid)
4203 ExDecl->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00004204
Sebastian Redl4b07b292008-12-22 19:15:10 +00004205 // Add the exception declaration into this scope.
Sebastian Redl4b07b292008-12-22 19:15:10 +00004206 if (II)
Douglas Gregord308e622009-05-18 20:51:54 +00004207 PushOnScopeChains(ExDecl, S);
4208 else
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00004209 CurContext->addDecl(ExDecl);
Sebastian Redl4b07b292008-12-22 19:15:10 +00004210
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00004211 ProcessDeclAttributes(S, ExDecl, D);
Chris Lattnerb28317a2009-03-28 19:18:32 +00004212 return DeclPtrTy::make(ExDecl);
Sebastian Redl4b07b292008-12-22 19:15:10 +00004213}
Anders Carlssonfb311762009-03-14 00:25:26 +00004214
Mike Stump1eb44332009-09-09 15:08:12 +00004215Sema::DeclPtrTy Sema::ActOnStaticAssertDeclaration(SourceLocation AssertLoc,
Chris Lattnerb28317a2009-03-28 19:18:32 +00004216 ExprArg assertexpr,
4217 ExprArg assertmessageexpr) {
Anders Carlssonfb311762009-03-14 00:25:26 +00004218 Expr *AssertExpr = (Expr *)assertexpr.get();
Mike Stump1eb44332009-09-09 15:08:12 +00004219 StringLiteral *AssertMessage =
Anders Carlssonfb311762009-03-14 00:25:26 +00004220 cast<StringLiteral>((Expr *)assertmessageexpr.get());
4221
Anders Carlssonc3082412009-03-14 00:33:21 +00004222 if (!AssertExpr->isTypeDependent() && !AssertExpr->isValueDependent()) {
4223 llvm::APSInt Value(32);
4224 if (!AssertExpr->isIntegerConstantExpr(Value, Context)) {
4225 Diag(AssertLoc, diag::err_static_assert_expression_is_not_constant) <<
4226 AssertExpr->getSourceRange();
Chris Lattnerb28317a2009-03-28 19:18:32 +00004227 return DeclPtrTy();
Anders Carlssonc3082412009-03-14 00:33:21 +00004228 }
Anders Carlssonfb311762009-03-14 00:25:26 +00004229
Anders Carlssonc3082412009-03-14 00:33:21 +00004230 if (Value == 0) {
Mike Stump1eb44332009-09-09 15:08:12 +00004231 std::string str(AssertMessage->getStrData(),
Anders Carlssonc3082412009-03-14 00:33:21 +00004232 AssertMessage->getByteLength());
Mike Stump1eb44332009-09-09 15:08:12 +00004233 Diag(AssertLoc, diag::err_static_assert_failed)
Anders Carlsson94b15fb2009-03-15 18:44:04 +00004234 << str << AssertExpr->getSourceRange();
Anders Carlssonc3082412009-03-14 00:33:21 +00004235 }
4236 }
Mike Stump1eb44332009-09-09 15:08:12 +00004237
Anders Carlsson77d81422009-03-15 17:35:16 +00004238 assertexpr.release();
4239 assertmessageexpr.release();
Mike Stump1eb44332009-09-09 15:08:12 +00004240 Decl *Decl = StaticAssertDecl::Create(Context, CurContext, AssertLoc,
Anders Carlssonfb311762009-03-14 00:25:26 +00004241 AssertExpr, AssertMessage);
Mike Stump1eb44332009-09-09 15:08:12 +00004242
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00004243 CurContext->addDecl(Decl);
Chris Lattnerb28317a2009-03-28 19:18:32 +00004244 return DeclPtrTy::make(Decl);
Anders Carlssonfb311762009-03-14 00:25:26 +00004245}
Sebastian Redl50de12f2009-03-24 22:27:57 +00004246
John McCalldd4a3b02009-09-16 22:47:08 +00004247/// Handle a friend type declaration. This works in tandem with
4248/// ActOnTag.
4249///
4250/// Notes on friend class templates:
4251///
4252/// We generally treat friend class declarations as if they were
4253/// declaring a class. So, for example, the elaborated type specifier
4254/// in a friend declaration is required to obey the restrictions of a
4255/// class-head (i.e. no typedefs in the scope chain), template
4256/// parameters are required to match up with simple template-ids, &c.
4257/// However, unlike when declaring a template specialization, it's
4258/// okay to refer to a template specialization without an empty
4259/// template parameter declaration, e.g.
4260/// friend class A<T>::B<unsigned>;
4261/// We permit this as a special case; if there are any template
4262/// parameters present at all, require proper matching, i.e.
4263/// template <> template <class T> friend class A<int>::B;
John McCall02cace72009-08-28 07:59:38 +00004264Sema::DeclPtrTy Sema::ActOnFriendTypeDecl(Scope *S,
John McCall05b23ea2009-09-14 21:59:20 +00004265 const DeclSpec &DS,
John McCalldd4a3b02009-09-16 22:47:08 +00004266 MultiTemplateParamsArg TempParams) {
John McCall02cace72009-08-28 07:59:38 +00004267 SourceLocation Loc = DS.getSourceRange().getBegin();
John McCall67d1a672009-08-06 02:15:43 +00004268
4269 assert(DS.isFriendSpecified());
4270 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
4271
John McCalldd4a3b02009-09-16 22:47:08 +00004272 // Try to convert the decl specifier to a type. This works for
4273 // friend templates because ActOnTag never produces a ClassTemplateDecl
4274 // for a TUK_Friend.
John McCall6b2becf2009-09-08 17:47:29 +00004275 bool invalid = false;
Argyrios Kyrtzidisf352bdd2009-09-29 19:43:35 +00004276 QualType SourceTy;
4277 QualType T = ConvertDeclSpecToType(DS, Loc, invalid, SourceTy);
John McCall6b2becf2009-09-08 17:47:29 +00004278 if (invalid) return DeclPtrTy();
John McCall67d1a672009-08-06 02:15:43 +00004279
John McCalldd4a3b02009-09-16 22:47:08 +00004280 // This is definitely an error in C++98. It's probably meant to
4281 // be forbidden in C++0x, too, but the specification is just
4282 // poorly written.
4283 //
4284 // The problem is with declarations like the following:
4285 // template <T> friend A<T>::foo;
4286 // where deciding whether a class C is a friend or not now hinges
4287 // on whether there exists an instantiation of A that causes
4288 // 'foo' to equal C. There are restrictions on class-heads
4289 // (which we declare (by fiat) elaborated friend declarations to
4290 // be) that makes this tractable.
4291 //
4292 // FIXME: handle "template <> friend class A<T>;", which
4293 // is possibly well-formed? Who even knows?
4294 if (TempParams.size() && !isa<ElaboratedType>(T)) {
4295 Diag(Loc, diag::err_tagless_friend_type_template)
4296 << DS.getSourceRange();
4297 return DeclPtrTy();
4298 }
4299
John McCall02cace72009-08-28 07:59:38 +00004300 // C++ [class.friend]p2:
4301 // An elaborated-type-specifier shall be used in a friend declaration
4302 // for a class.*
4303 // * The class-key of the elaborated-type-specifier is required.
John McCall6b2becf2009-09-08 17:47:29 +00004304 // This is one of the rare places in Clang where it's legitimate to
4305 // ask about the "spelling" of the type.
4306 if (!getLangOptions().CPlusPlus0x && !isa<ElaboratedType>(T)) {
4307 // If we evaluated the type to a record type, suggest putting
4308 // a tag in front.
John McCall02cace72009-08-28 07:59:38 +00004309 if (const RecordType *RT = T->getAs<RecordType>()) {
John McCall6b2becf2009-09-08 17:47:29 +00004310 RecordDecl *RD = RT->getDecl();
4311
4312 std::string InsertionText = std::string(" ") + RD->getKindName();
4313
John McCalle3af0232009-10-07 23:34:25 +00004314 Diag(DS.getTypeSpecTypeLoc(), diag::err_unelaborated_friend_type)
4315 << (unsigned) RD->getTagKind()
4316 << T
4317 << SourceRange(DS.getFriendSpecLoc())
John McCall6b2becf2009-09-08 17:47:29 +00004318 << CodeModificationHint::CreateInsertion(DS.getTypeSpecTypeLoc(),
4319 InsertionText);
John McCall02cace72009-08-28 07:59:38 +00004320 return DeclPtrTy();
4321 }else {
John McCall6b2becf2009-09-08 17:47:29 +00004322 Diag(DS.getFriendSpecLoc(), diag::err_unexpected_friend)
4323 << DS.getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +00004324 return DeclPtrTy();
John McCall02cace72009-08-28 07:59:38 +00004325 }
4326 }
4327
John McCalle3af0232009-10-07 23:34:25 +00004328 // Enum types cannot be friends.
4329 if (T->getAs<EnumType>()) {
4330 Diag(DS.getTypeSpecTypeLoc(), diag::err_enum_friend)
4331 << SourceRange(DS.getFriendSpecLoc());
4332 return DeclPtrTy();
John McCall6b2becf2009-09-08 17:47:29 +00004333 }
John McCall02cace72009-08-28 07:59:38 +00004334
John McCall02cace72009-08-28 07:59:38 +00004335 // C++98 [class.friend]p1: A friend of a class is a function
4336 // or class that is not a member of the class . . .
4337 // But that's a silly restriction which nobody implements for
4338 // inner classes, and C++0x removes it anyway, so we only report
4339 // this (as a warning) if we're being pedantic.
John McCall6b2becf2009-09-08 17:47:29 +00004340 if (!getLangOptions().CPlusPlus0x)
4341 if (const RecordType *RT = T->getAs<RecordType>())
4342 if (RT->getDecl()->getDeclContext() == CurContext)
4343 Diag(DS.getFriendSpecLoc(), diag::ext_friend_inner_class);
John McCall02cace72009-08-28 07:59:38 +00004344
John McCalldd4a3b02009-09-16 22:47:08 +00004345 Decl *D;
4346 if (TempParams.size())
4347 D = FriendTemplateDecl::Create(Context, CurContext, Loc,
4348 TempParams.size(),
4349 (TemplateParameterList**) TempParams.release(),
4350 T.getTypePtr(),
4351 DS.getFriendSpecLoc());
4352 else
4353 D = FriendDecl::Create(Context, CurContext, Loc, T.getTypePtr(),
4354 DS.getFriendSpecLoc());
4355 D->setAccess(AS_public);
4356 CurContext->addDecl(D);
John McCall02cace72009-08-28 07:59:38 +00004357
John McCalldd4a3b02009-09-16 22:47:08 +00004358 return DeclPtrTy::make(D);
John McCall02cace72009-08-28 07:59:38 +00004359}
4360
John McCallbbbcdd92009-09-11 21:02:39 +00004361Sema::DeclPtrTy
4362Sema::ActOnFriendFunctionDecl(Scope *S,
4363 Declarator &D,
4364 bool IsDefinition,
4365 MultiTemplateParamsArg TemplateParams) {
John McCall02cace72009-08-28 07:59:38 +00004366 const DeclSpec &DS = D.getDeclSpec();
4367
4368 assert(DS.isFriendSpecified());
4369 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
4370
4371 SourceLocation Loc = D.getIdentifierLoc();
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00004372 DeclaratorInfo *DInfo = 0;
John McCall02cace72009-08-28 07:59:38 +00004373 QualType T = GetTypeForDeclarator(D, S, &DInfo);
John McCall67d1a672009-08-06 02:15:43 +00004374
4375 // C++ [class.friend]p1
4376 // A friend of a class is a function or class....
4377 // Note that this sees through typedefs, which is intended.
John McCall02cace72009-08-28 07:59:38 +00004378 // It *doesn't* see through dependent types, which is correct
4379 // according to [temp.arg.type]p3:
4380 // If a declaration acquires a function type through a
4381 // type dependent on a template-parameter and this causes
4382 // a declaration that does not use the syntactic form of a
4383 // function declarator to have a function type, the program
4384 // is ill-formed.
John McCall67d1a672009-08-06 02:15:43 +00004385 if (!T->isFunctionType()) {
4386 Diag(Loc, diag::err_unexpected_friend);
4387
4388 // It might be worthwhile to try to recover by creating an
4389 // appropriate declaration.
4390 return DeclPtrTy();
4391 }
4392
4393 // C++ [namespace.memdef]p3
4394 // - If a friend declaration in a non-local class first declares a
4395 // class or function, the friend class or function is a member
4396 // of the innermost enclosing namespace.
4397 // - The name of the friend is not found by simple name lookup
4398 // until a matching declaration is provided in that namespace
4399 // scope (either before or after the class declaration granting
4400 // friendship).
4401 // - If a friend function is called, its name may be found by the
4402 // name lookup that considers functions from namespaces and
4403 // classes associated with the types of the function arguments.
4404 // - When looking for a prior declaration of a class or a function
4405 // declared as a friend, scopes outside the innermost enclosing
4406 // namespace scope are not considered.
4407
John McCall02cace72009-08-28 07:59:38 +00004408 CXXScopeSpec &ScopeQual = D.getCXXScopeSpec();
4409 DeclarationName Name = GetNameForDeclarator(D);
John McCall67d1a672009-08-06 02:15:43 +00004410 assert(Name);
4411
John McCall67d1a672009-08-06 02:15:43 +00004412 // The context we found the declaration in, or in which we should
4413 // create the declaration.
4414 DeclContext *DC;
4415
4416 // FIXME: handle local classes
4417
4418 // Recover from invalid scope qualifiers as if they just weren't there.
Douglas Gregor182ddf02009-09-28 00:08:27 +00004419 NamedDecl *PrevDecl = 0;
John McCall67d1a672009-08-06 02:15:43 +00004420 if (!ScopeQual.isInvalid() && ScopeQual.isSet()) {
Douglas Gregora735b202009-10-13 14:39:41 +00004421 // FIXME: RequireCompleteDeclContext
John McCall67d1a672009-08-06 02:15:43 +00004422 DC = computeDeclContext(ScopeQual);
4423
4424 // FIXME: handle dependent contexts
4425 if (!DC) return DeclPtrTy();
4426
John McCallf36e02d2009-10-09 21:13:30 +00004427 LookupResult R;
4428 LookupQualifiedName(R, DC, Name, LookupOrdinaryName, true);
4429 PrevDecl = R.getAsSingleDecl(Context);
John McCall67d1a672009-08-06 02:15:43 +00004430
4431 // If searching in that context implicitly found a declaration in
4432 // a different context, treat it like it wasn't found at all.
4433 // TODO: better diagnostics for this case. Suggesting the right
4434 // qualified scope would be nice...
Douglas Gregor182ddf02009-09-28 00:08:27 +00004435 if (!PrevDecl || !PrevDecl->getDeclContext()->Equals(DC)) {
John McCall02cace72009-08-28 07:59:38 +00004436 D.setInvalidType();
John McCall67d1a672009-08-06 02:15:43 +00004437 Diag(Loc, diag::err_qualified_friend_not_found) << Name << T;
4438 return DeclPtrTy();
4439 }
4440
4441 // C++ [class.friend]p1: A friend of a class is a function or
4442 // class that is not a member of the class . . .
Douglas Gregor182ddf02009-09-28 00:08:27 +00004443 if (DC->Equals(CurContext))
John McCall67d1a672009-08-06 02:15:43 +00004444 Diag(DS.getFriendSpecLoc(), diag::err_friend_is_member);
4445
John McCall67d1a672009-08-06 02:15:43 +00004446 // Otherwise walk out to the nearest namespace scope looking for matches.
4447 } else {
4448 // TODO: handle local class contexts.
4449
4450 DC = CurContext;
4451 while (true) {
4452 // Skip class contexts. If someone can cite chapter and verse
4453 // for this behavior, that would be nice --- it's what GCC and
4454 // EDG do, and it seems like a reasonable intent, but the spec
4455 // really only says that checks for unqualified existing
4456 // declarations should stop at the nearest enclosing namespace,
4457 // not that they should only consider the nearest enclosing
4458 // namespace.
Douglas Gregor182ddf02009-09-28 00:08:27 +00004459 while (DC->isRecord())
4460 DC = DC->getParent();
John McCall67d1a672009-08-06 02:15:43 +00004461
John McCallf36e02d2009-10-09 21:13:30 +00004462 LookupResult R;
4463 LookupQualifiedName(R, DC, Name, LookupOrdinaryName, true);
4464 PrevDecl = R.getAsSingleDecl(Context);
John McCall67d1a672009-08-06 02:15:43 +00004465
4466 // TODO: decide what we think about using declarations.
Douglas Gregor182ddf02009-09-28 00:08:27 +00004467 if (PrevDecl)
John McCall67d1a672009-08-06 02:15:43 +00004468 break;
Douglas Gregor182ddf02009-09-28 00:08:27 +00004469
John McCall67d1a672009-08-06 02:15:43 +00004470 if (DC->isFileContext()) break;
4471 DC = DC->getParent();
4472 }
4473
4474 // C++ [class.friend]p1: A friend of a class is a function or
4475 // class that is not a member of the class . . .
John McCall7f27d922009-08-06 20:49:32 +00004476 // C++0x changes this for both friend types and functions.
4477 // Most C++ 98 compilers do seem to give an error here, so
4478 // we do, too.
Douglas Gregor182ddf02009-09-28 00:08:27 +00004479 if (PrevDecl && DC->Equals(CurContext) && !getLangOptions().CPlusPlus0x)
John McCall67d1a672009-08-06 02:15:43 +00004480 Diag(DS.getFriendSpecLoc(), diag::err_friend_is_member);
4481 }
4482
Douglas Gregor182ddf02009-09-28 00:08:27 +00004483 if (DC->isFileContext()) {
John McCall67d1a672009-08-06 02:15:43 +00004484 // This implies that it has to be an operator or function.
John McCall02cace72009-08-28 07:59:38 +00004485 if (D.getKind() == Declarator::DK_Constructor ||
4486 D.getKind() == Declarator::DK_Destructor ||
4487 D.getKind() == Declarator::DK_Conversion) {
John McCall67d1a672009-08-06 02:15:43 +00004488 Diag(Loc, diag::err_introducing_special_friend) <<
John McCall02cace72009-08-28 07:59:38 +00004489 (D.getKind() == Declarator::DK_Constructor ? 0 :
4490 D.getKind() == Declarator::DK_Destructor ? 1 : 2);
John McCall67d1a672009-08-06 02:15:43 +00004491 return DeclPtrTy();
4492 }
John McCall67d1a672009-08-06 02:15:43 +00004493 }
4494
Douglas Gregor182ddf02009-09-28 00:08:27 +00004495 bool Redeclaration = false;
4496 NamedDecl *ND = ActOnFunctionDeclarator(S, D, DC, T, DInfo, PrevDecl,
Douglas Gregora735b202009-10-13 14:39:41 +00004497 move(TemplateParams),
John McCall3f9a8a62009-08-11 06:59:38 +00004498 IsDefinition,
4499 Redeclaration);
John McCall02cace72009-08-28 07:59:38 +00004500 if (!ND) return DeclPtrTy();
John McCallab88d972009-08-31 22:39:49 +00004501
Douglas Gregor182ddf02009-09-28 00:08:27 +00004502 assert(ND->getDeclContext() == DC);
4503 assert(ND->getLexicalDeclContext() == CurContext);
John McCall88232aa2009-08-18 00:00:49 +00004504
John McCallab88d972009-08-31 22:39:49 +00004505 // Add the function declaration to the appropriate lookup tables,
4506 // adjusting the redeclarations list as necessary. We don't
4507 // want to do this yet if the friending class is dependent.
Mike Stump1eb44332009-09-09 15:08:12 +00004508 //
John McCallab88d972009-08-31 22:39:49 +00004509 // Also update the scope-based lookup if the target context's
4510 // lookup context is in lexical scope.
4511 if (!CurContext->isDependentContext()) {
4512 DC = DC->getLookupContext();
Douglas Gregor182ddf02009-09-28 00:08:27 +00004513 DC->makeDeclVisibleInContext(ND, /* Recoverable=*/ false);
John McCallab88d972009-08-31 22:39:49 +00004514 if (Scope *EnclosingScope = getScopeForDeclContext(S, DC))
Douglas Gregor182ddf02009-09-28 00:08:27 +00004515 PushOnScopeChains(ND, EnclosingScope, /*AddToContext=*/ false);
John McCallab88d972009-08-31 22:39:49 +00004516 }
John McCall02cace72009-08-28 07:59:38 +00004517
4518 FriendDecl *FrD = FriendDecl::Create(Context, CurContext,
Douglas Gregor182ddf02009-09-28 00:08:27 +00004519 D.getIdentifierLoc(), ND,
John McCall02cace72009-08-28 07:59:38 +00004520 DS.getFriendSpecLoc());
John McCall5fee1102009-08-29 03:50:18 +00004521 FrD->setAccess(AS_public);
John McCall02cace72009-08-28 07:59:38 +00004522 CurContext->addDecl(FrD);
John McCall67d1a672009-08-06 02:15:43 +00004523
Douglas Gregor182ddf02009-09-28 00:08:27 +00004524 return DeclPtrTy::make(ND);
Anders Carlsson00338362009-05-11 22:55:49 +00004525}
4526
Chris Lattnerb28317a2009-03-28 19:18:32 +00004527void Sema::SetDeclDeleted(DeclPtrTy dcl, SourceLocation DelLoc) {
Douglas Gregorefd5bda2009-08-24 11:57:43 +00004528 AdjustDeclIfTemplate(dcl);
Mike Stump1eb44332009-09-09 15:08:12 +00004529
Chris Lattnerb28317a2009-03-28 19:18:32 +00004530 Decl *Dcl = dcl.getAs<Decl>();
Sebastian Redl50de12f2009-03-24 22:27:57 +00004531 FunctionDecl *Fn = dyn_cast<FunctionDecl>(Dcl);
4532 if (!Fn) {
4533 Diag(DelLoc, diag::err_deleted_non_function);
4534 return;
4535 }
4536 if (const FunctionDecl *Prev = Fn->getPreviousDeclaration()) {
4537 Diag(DelLoc, diag::err_deleted_decl_not_first);
4538 Diag(Prev->getLocation(), diag::note_previous_declaration);
4539 // If the declaration wasn't the first, we delete the function anyway for
4540 // recovery.
4541 }
4542 Fn->setDeleted();
4543}
Sebastian Redl13e88542009-04-27 21:33:24 +00004544
4545static void SearchForReturnInStmt(Sema &Self, Stmt *S) {
4546 for (Stmt::child_iterator CI = S->child_begin(), E = S->child_end(); CI != E;
4547 ++CI) {
4548 Stmt *SubStmt = *CI;
4549 if (!SubStmt)
4550 continue;
4551 if (isa<ReturnStmt>(SubStmt))
4552 Self.Diag(SubStmt->getSourceRange().getBegin(),
4553 diag::err_return_in_constructor_handler);
4554 if (!isa<Expr>(SubStmt))
4555 SearchForReturnInStmt(Self, SubStmt);
4556 }
4557}
4558
4559void Sema::DiagnoseReturnInConstructorExceptionHandler(CXXTryStmt *TryBlock) {
4560 for (unsigned I = 0, E = TryBlock->getNumHandlers(); I != E; ++I) {
4561 CXXCatchStmt *Handler = TryBlock->getHandler(I);
4562 SearchForReturnInStmt(*this, Handler);
4563 }
4564}
Anders Carlssond7ba27d2009-05-14 01:09:04 +00004565
Mike Stump1eb44332009-09-09 15:08:12 +00004566bool Sema::CheckOverridingFunctionReturnType(const CXXMethodDecl *New,
Anders Carlssond7ba27d2009-05-14 01:09:04 +00004567 const CXXMethodDecl *Old) {
John McCall183700f2009-09-21 23:43:11 +00004568 QualType NewTy = New->getType()->getAs<FunctionType>()->getResultType();
4569 QualType OldTy = Old->getType()->getAs<FunctionType>()->getResultType();
Anders Carlssond7ba27d2009-05-14 01:09:04 +00004570
4571 QualType CNewTy = Context.getCanonicalType(NewTy);
4572 QualType COldTy = Context.getCanonicalType(OldTy);
4573
Mike Stump1eb44332009-09-09 15:08:12 +00004574 if (CNewTy == COldTy &&
Anders Carlssond7ba27d2009-05-14 01:09:04 +00004575 CNewTy.getCVRQualifiers() == COldTy.getCVRQualifiers())
4576 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00004577
Anders Carlssonc3a68b22009-05-14 19:52:19 +00004578 // Check if the return types are covariant
4579 QualType NewClassTy, OldClassTy;
Mike Stump1eb44332009-09-09 15:08:12 +00004580
Anders Carlssonc3a68b22009-05-14 19:52:19 +00004581 /// Both types must be pointers or references to classes.
4582 if (PointerType *NewPT = dyn_cast<PointerType>(NewTy)) {
4583 if (PointerType *OldPT = dyn_cast<PointerType>(OldTy)) {
4584 NewClassTy = NewPT->getPointeeType();
4585 OldClassTy = OldPT->getPointeeType();
4586 }
4587 } else if (ReferenceType *NewRT = dyn_cast<ReferenceType>(NewTy)) {
4588 if (ReferenceType *OldRT = dyn_cast<ReferenceType>(OldTy)) {
4589 NewClassTy = NewRT->getPointeeType();
4590 OldClassTy = OldRT->getPointeeType();
4591 }
4592 }
Mike Stump1eb44332009-09-09 15:08:12 +00004593
Anders Carlssonc3a68b22009-05-14 19:52:19 +00004594 // The return types aren't either both pointers or references to a class type.
4595 if (NewClassTy.isNull()) {
Mike Stump1eb44332009-09-09 15:08:12 +00004596 Diag(New->getLocation(),
Anders Carlssonc3a68b22009-05-14 19:52:19 +00004597 diag::err_different_return_type_for_overriding_virtual_function)
4598 << New->getDeclName() << NewTy << OldTy;
4599 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
Mike Stump1eb44332009-09-09 15:08:12 +00004600
Anders Carlssonc3a68b22009-05-14 19:52:19 +00004601 return true;
4602 }
Anders Carlssond7ba27d2009-05-14 01:09:04 +00004603
Anders Carlssonc3a68b22009-05-14 19:52:19 +00004604 if (NewClassTy.getUnqualifiedType() != OldClassTy.getUnqualifiedType()) {
4605 // Check if the new class derives from the old class.
4606 if (!IsDerivedFrom(NewClassTy, OldClassTy)) {
4607 Diag(New->getLocation(),
4608 diag::err_covariant_return_not_derived)
4609 << New->getDeclName() << NewTy << OldTy;
4610 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
4611 return true;
4612 }
Mike Stump1eb44332009-09-09 15:08:12 +00004613
Anders Carlssonc3a68b22009-05-14 19:52:19 +00004614 // Check if we the conversion from derived to base is valid.
Mike Stump1eb44332009-09-09 15:08:12 +00004615 if (CheckDerivedToBaseConversion(NewClassTy, OldClassTy,
Anders Carlssonc3a68b22009-05-14 19:52:19 +00004616 diag::err_covariant_return_inaccessible_base,
4617 diag::err_covariant_return_ambiguous_derived_to_base_conv,
4618 // FIXME: Should this point to the return type?
4619 New->getLocation(), SourceRange(), New->getDeclName())) {
4620 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
4621 return true;
4622 }
4623 }
Mike Stump1eb44332009-09-09 15:08:12 +00004624
Anders Carlssonc3a68b22009-05-14 19:52:19 +00004625 // The qualifiers of the return types must be the same.
4626 if (CNewTy.getCVRQualifiers() != COldTy.getCVRQualifiers()) {
4627 Diag(New->getLocation(),
4628 diag::err_covariant_return_type_different_qualifications)
Anders Carlssond7ba27d2009-05-14 01:09:04 +00004629 << New->getDeclName() << NewTy << OldTy;
Anders Carlssonc3a68b22009-05-14 19:52:19 +00004630 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
4631 return true;
4632 };
Mike Stump1eb44332009-09-09 15:08:12 +00004633
Anders Carlssonc3a68b22009-05-14 19:52:19 +00004634
4635 // The new class type must have the same or less qualifiers as the old type.
4636 if (NewClassTy.isMoreQualifiedThan(OldClassTy)) {
4637 Diag(New->getLocation(),
4638 diag::err_covariant_return_type_class_type_more_qualified)
4639 << New->getDeclName() << NewTy << OldTy;
4640 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
4641 return true;
4642 };
Mike Stump1eb44332009-09-09 15:08:12 +00004643
Anders Carlssonc3a68b22009-05-14 19:52:19 +00004644 return false;
Anders Carlssond7ba27d2009-05-14 01:09:04 +00004645}
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00004646
4647/// ActOnCXXEnterDeclInitializer - Invoked when we are about to parse an
4648/// initializer for the declaration 'Dcl'.
4649/// After this method is called, according to [C++ 3.4.1p13], if 'Dcl' is a
4650/// static data member of class X, names should be looked up in the scope of
4651/// class X.
4652void Sema::ActOnCXXEnterDeclInitializer(Scope *S, DeclPtrTy Dcl) {
Douglas Gregorefd5bda2009-08-24 11:57:43 +00004653 AdjustDeclIfTemplate(Dcl);
Mike Stump1eb44332009-09-09 15:08:12 +00004654
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00004655 Decl *D = Dcl.getAs<Decl>();
4656 // If there is no declaration, there was an error parsing it.
4657 if (D == 0)
4658 return;
4659
4660 // Check whether it is a declaration with a nested name specifier like
4661 // int foo::bar;
4662 if (!D->isOutOfLine())
4663 return;
Mike Stump1eb44332009-09-09 15:08:12 +00004664
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00004665 // C++ [basic.lookup.unqual]p13
4666 //
4667 // A name used in the definition of a static data member of class X
4668 // (after the qualified-id of the static member) is looked up as if the name
4669 // was used in a member function of X.
Mike Stump1eb44332009-09-09 15:08:12 +00004670
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00004671 // Change current context into the context of the initializing declaration.
Argyrios Kyrtzidis1d175532009-06-17 23:15:40 +00004672 EnterDeclaratorContext(S, D->getDeclContext());
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00004673}
4674
4675/// ActOnCXXExitDeclInitializer - Invoked after we are finished parsing an
4676/// initializer for the declaration 'Dcl'.
4677void Sema::ActOnCXXExitDeclInitializer(Scope *S, DeclPtrTy Dcl) {
Douglas Gregorefd5bda2009-08-24 11:57:43 +00004678 AdjustDeclIfTemplate(Dcl);
Mike Stump1eb44332009-09-09 15:08:12 +00004679
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00004680 Decl *D = Dcl.getAs<Decl>();
4681 // If there is no declaration, there was an error parsing it.
4682 if (D == 0)
4683 return;
4684
4685 // Check whether it is a declaration with a nested name specifier like
4686 // int foo::bar;
4687 if (!D->isOutOfLine())
4688 return;
4689
4690 assert(S->getEntity() == D->getDeclContext() && "Context imbalance!");
Argyrios Kyrtzidis1d175532009-06-17 23:15:40 +00004691 ExitDeclaratorContext(S);
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00004692}