blob: 4f04bd2604f7b652ac81241af0c5700f2ba431ae [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"
Douglas Gregor314b97f2009-11-10 19:49:08 +000021#include "clang/Parse/DeclSpec.h"
22#include "clang/Parse/Template.h"
Anders Carlssonb7906612009-08-26 23:45:07 +000023#include "clang/Basic/PartialDiagnostic.h"
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +000024#include "clang/Lex/Preprocessor.h"
Douglas Gregor3fc749d2008-12-23 00:26:44 +000025#include "llvm/ADT/STLExtras.h"
Chris Lattner8123a952008-04-10 02:22:51 +000026#include "llvm/Support/Compiler.h"
Douglas Gregor8e9bebd2008-10-21 16:13:35 +000027#include <algorithm> // for std::equal
Douglas Gregorf8268ae2008-10-22 17:49:05 +000028#include <map>
Douglas Gregora8f32e02009-10-06 17:59:45 +000029#include <set>
Chris Lattner3d1cee32008-04-08 05:04:30 +000030
31using namespace clang;
32
Chris Lattner8123a952008-04-10 02:22:51 +000033//===----------------------------------------------------------------------===//
34// CheckDefaultArgumentVisitor
35//===----------------------------------------------------------------------===//
36
Chris Lattner9e979552008-04-12 23:52:44 +000037namespace {
38 /// CheckDefaultArgumentVisitor - C++ [dcl.fct.default] Traverses
39 /// the default argument of a parameter to determine whether it
40 /// contains any ill-formed subexpressions. For example, this will
41 /// diagnose the use of local variables or parameters within the
42 /// default argument expression.
Mike Stump1eb44332009-09-09 15:08:12 +000043 class VISIBILITY_HIDDEN CheckDefaultArgumentVisitor
Chris Lattnerb77792e2008-07-26 22:17:49 +000044 : public StmtVisitor<CheckDefaultArgumentVisitor, bool> {
Chris Lattner9e979552008-04-12 23:52:44 +000045 Expr *DefaultArg;
46 Sema *S;
Chris Lattner8123a952008-04-10 02:22:51 +000047
Chris Lattner9e979552008-04-12 23:52:44 +000048 public:
Mike Stump1eb44332009-09-09 15:08:12 +000049 CheckDefaultArgumentVisitor(Expr *defarg, Sema *s)
Chris Lattner9e979552008-04-12 23:52:44 +000050 : DefaultArg(defarg), S(s) {}
Chris Lattner8123a952008-04-10 02:22:51 +000051
Chris Lattner9e979552008-04-12 23:52:44 +000052 bool VisitExpr(Expr *Node);
53 bool VisitDeclRefExpr(DeclRefExpr *DRE);
Douglas Gregor796da182008-11-04 14:32:21 +000054 bool VisitCXXThisExpr(CXXThisExpr *ThisE);
Chris Lattner9e979552008-04-12 23:52:44 +000055 };
Chris Lattner8123a952008-04-10 02:22:51 +000056
Chris Lattner9e979552008-04-12 23:52:44 +000057 /// VisitExpr - Visit all of the children of this expression.
58 bool CheckDefaultArgumentVisitor::VisitExpr(Expr *Node) {
59 bool IsInvalid = false;
Mike Stump1eb44332009-09-09 15:08:12 +000060 for (Stmt::child_iterator I = Node->child_begin(),
Chris Lattnerb77792e2008-07-26 22:17:49 +000061 E = Node->child_end(); I != E; ++I)
62 IsInvalid |= Visit(*I);
Chris Lattner9e979552008-04-12 23:52:44 +000063 return IsInvalid;
Chris Lattner8123a952008-04-10 02:22:51 +000064 }
65
Chris Lattner9e979552008-04-12 23:52:44 +000066 /// VisitDeclRefExpr - Visit a reference to a declaration, to
67 /// determine whether this declaration can be used in the default
68 /// argument expression.
69 bool CheckDefaultArgumentVisitor::VisitDeclRefExpr(DeclRefExpr *DRE) {
Douglas Gregor8e9bebd2008-10-21 16:13:35 +000070 NamedDecl *Decl = DRE->getDecl();
Chris Lattner9e979552008-04-12 23:52:44 +000071 if (ParmVarDecl *Param = dyn_cast<ParmVarDecl>(Decl)) {
72 // C++ [dcl.fct.default]p9
73 // Default arguments are evaluated each time the function is
74 // called. The order of evaluation of function arguments is
75 // unspecified. Consequently, parameters of a function shall not
76 // be used in default argument expressions, even if they are not
77 // evaluated. Parameters of a function declared before a default
78 // argument expression are in scope and can hide namespace and
79 // class member names.
Mike Stump1eb44332009-09-09 15:08:12 +000080 return S->Diag(DRE->getSourceRange().getBegin(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +000081 diag::err_param_default_argument_references_param)
Chris Lattner08631c52008-11-23 21:45:46 +000082 << Param->getDeclName() << DefaultArg->getSourceRange();
Steve Naroff248a7532008-04-15 22:42:06 +000083 } else if (VarDecl *VDecl = dyn_cast<VarDecl>(Decl)) {
Chris Lattner9e979552008-04-12 23:52:44 +000084 // C++ [dcl.fct.default]p7
85 // Local variables shall not be used in default argument
86 // expressions.
Steve Naroff248a7532008-04-15 22:42:06 +000087 if (VDecl->isBlockVarDecl())
Mike Stump1eb44332009-09-09 15:08:12 +000088 return S->Diag(DRE->getSourceRange().getBegin(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +000089 diag::err_param_default_argument_references_local)
Chris Lattner08631c52008-11-23 21:45:46 +000090 << VDecl->getDeclName() << DefaultArg->getSourceRange();
Chris Lattner9e979552008-04-12 23:52:44 +000091 }
Chris Lattner8123a952008-04-10 02:22:51 +000092
Douglas Gregor3996f232008-11-04 13:41:56 +000093 return false;
94 }
Chris Lattner9e979552008-04-12 23:52:44 +000095
Douglas Gregor796da182008-11-04 14:32:21 +000096 /// VisitCXXThisExpr - Visit a C++ "this" expression.
97 bool CheckDefaultArgumentVisitor::VisitCXXThisExpr(CXXThisExpr *ThisE) {
98 // C++ [dcl.fct.default]p8:
99 // The keyword this shall not be used in a default argument of a
100 // member function.
101 return S->Diag(ThisE->getSourceRange().getBegin(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000102 diag::err_param_default_argument_references_this)
103 << ThisE->getSourceRange();
Chris Lattner9e979552008-04-12 23:52:44 +0000104 }
Chris Lattner8123a952008-04-10 02:22:51 +0000105}
106
Anders Carlssoned961f92009-08-25 02:29:20 +0000107bool
108Sema::SetParamDefaultArgument(ParmVarDecl *Param, ExprArg DefaultArg,
Mike Stump1eb44332009-09-09 15:08:12 +0000109 SourceLocation EqualLoc) {
Anders Carlssoned961f92009-08-25 02:29:20 +0000110 QualType ParamType = Param->getType();
111
Anders Carlsson5653ca52009-08-25 13:46:13 +0000112 if (RequireCompleteType(Param->getLocation(), Param->getType(),
113 diag::err_typecheck_decl_incomplete_type)) {
114 Param->setInvalidDecl();
115 return true;
116 }
117
Anders Carlssoned961f92009-08-25 02:29:20 +0000118 Expr *Arg = (Expr *)DefaultArg.get();
Mike Stump1eb44332009-09-09 15:08:12 +0000119
Anders Carlssoned961f92009-08-25 02:29:20 +0000120 // C++ [dcl.fct.default]p5
121 // A default argument expression is implicitly converted (clause
122 // 4) to the parameter type. The default argument expression has
123 // the same semantic constraints as the initializer expression in
124 // a declaration of a variable of the parameter type, using the
125 // copy-initialization semantics (8.5).
Mike Stump1eb44332009-09-09 15:08:12 +0000126 if (CheckInitializerTypes(Arg, ParamType, EqualLoc,
Anders Carlssoned961f92009-08-25 02:29:20 +0000127 Param->getDeclName(), /*DirectInit=*/false))
Anders Carlsson9351c172009-08-25 03:18:48 +0000128 return true;
Anders Carlssoned961f92009-08-25 02:29:20 +0000129
130 Arg = MaybeCreateCXXExprWithTemporaries(Arg, /*DestroyTemps=*/false);
Mike Stump1eb44332009-09-09 15:08:12 +0000131
Anders Carlssoned961f92009-08-25 02:29:20 +0000132 // Okay: add the default argument to the parameter
133 Param->setDefaultArg(Arg);
Mike Stump1eb44332009-09-09 15:08:12 +0000134
Anders Carlssoned961f92009-08-25 02:29:20 +0000135 DefaultArg.release();
Mike Stump1eb44332009-09-09 15:08:12 +0000136
Anders Carlsson9351c172009-08-25 03:18:48 +0000137 return false;
Anders Carlssoned961f92009-08-25 02:29:20 +0000138}
139
Chris Lattner8123a952008-04-10 02:22:51 +0000140/// ActOnParamDefaultArgument - Check whether the default argument
141/// provided for a function parameter is well-formed. If so, attach it
142/// to the parameter declaration.
Chris Lattner3d1cee32008-04-08 05:04:30 +0000143void
Mike Stump1eb44332009-09-09 15:08:12 +0000144Sema::ActOnParamDefaultArgument(DeclPtrTy param, SourceLocation EqualLoc,
Sebastian Redlf53597f2009-03-15 17:47:39 +0000145 ExprArg defarg) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000146 if (!param || !defarg.get())
147 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000148
Chris Lattnerb28317a2009-03-28 19:18:32 +0000149 ParmVarDecl *Param = cast<ParmVarDecl>(param.getAs<Decl>());
Anders Carlsson5e300d12009-06-12 16:51:40 +0000150 UnparsedDefaultArgLocs.erase(Param);
151
Anders Carlssonf1b1d592009-05-01 19:30:39 +0000152 ExprOwningPtr<Expr> DefaultArg(this, defarg.takeAs<Expr>());
Chris Lattner3d1cee32008-04-08 05:04:30 +0000153 QualType ParamType = Param->getType();
154
155 // Default arguments are only permitted in C++
156 if (!getLangOptions().CPlusPlus) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000157 Diag(EqualLoc, diag::err_param_default_argument)
158 << DefaultArg->getSourceRange();
Douglas Gregor72b505b2008-12-16 21:30:33 +0000159 Param->setInvalidDecl();
Chris Lattner3d1cee32008-04-08 05:04:30 +0000160 return;
161 }
162
Anders Carlsson66e30672009-08-25 01:02:06 +0000163 // Check that the default argument is well-formed
164 CheckDefaultArgumentVisitor DefaultArgChecker(DefaultArg.get(), this);
165 if (DefaultArgChecker.Visit(DefaultArg.get())) {
166 Param->setInvalidDecl();
167 return;
168 }
Mike Stump1eb44332009-09-09 15:08:12 +0000169
Anders Carlssoned961f92009-08-25 02:29:20 +0000170 SetParamDefaultArgument(Param, move(DefaultArg), EqualLoc);
Chris Lattner3d1cee32008-04-08 05:04:30 +0000171}
172
Douglas Gregor61366e92008-12-24 00:01:03 +0000173/// ActOnParamUnparsedDefaultArgument - We've seen a default
174/// argument for a function parameter, but we can't parse it yet
175/// because we're inside a class definition. Note that this default
176/// argument will be parsed later.
Mike Stump1eb44332009-09-09 15:08:12 +0000177void Sema::ActOnParamUnparsedDefaultArgument(DeclPtrTy param,
Anders Carlsson5e300d12009-06-12 16:51:40 +0000178 SourceLocation EqualLoc,
179 SourceLocation ArgLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000180 if (!param)
181 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000182
Chris Lattnerb28317a2009-03-28 19:18:32 +0000183 ParmVarDecl *Param = cast<ParmVarDecl>(param.getAs<Decl>());
Douglas Gregor61366e92008-12-24 00:01:03 +0000184 if (Param)
185 Param->setUnparsedDefaultArg();
Mike Stump1eb44332009-09-09 15:08:12 +0000186
Anders Carlsson5e300d12009-06-12 16:51:40 +0000187 UnparsedDefaultArgLocs[Param] = ArgLoc;
Douglas Gregor61366e92008-12-24 00:01:03 +0000188}
189
Douglas Gregor72b505b2008-12-16 21:30:33 +0000190/// ActOnParamDefaultArgumentError - Parsing or semantic analysis of
191/// the default argument for the parameter param failed.
Chris Lattnerb28317a2009-03-28 19:18:32 +0000192void Sema::ActOnParamDefaultArgumentError(DeclPtrTy param) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000193 if (!param)
194 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000195
Anders Carlsson5e300d12009-06-12 16:51:40 +0000196 ParmVarDecl *Param = cast<ParmVarDecl>(param.getAs<Decl>());
Mike Stump1eb44332009-09-09 15:08:12 +0000197
Anders Carlsson5e300d12009-06-12 16:51:40 +0000198 Param->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000199
Anders Carlsson5e300d12009-06-12 16:51:40 +0000200 UnparsedDefaultArgLocs.erase(Param);
Douglas Gregor72b505b2008-12-16 21:30:33 +0000201}
202
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000203/// CheckExtraCXXDefaultArguments - Check for any extra default
204/// arguments in the declarator, which is not a function declaration
205/// or definition and therefore is not permitted to have default
206/// arguments. This routine should be invoked for every declarator
207/// that is not a function declaration or definition.
208void Sema::CheckExtraCXXDefaultArguments(Declarator &D) {
209 // C++ [dcl.fct.default]p3
210 // A default argument expression shall be specified only in the
211 // parameter-declaration-clause of a function declaration or in a
212 // template-parameter (14.1). It shall not be specified for a
213 // parameter pack. If it is specified in a
214 // parameter-declaration-clause, it shall not occur within a
215 // declarator or abstract-declarator of a parameter-declaration.
Chris Lattnerb28317a2009-03-28 19:18:32 +0000216 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i) {
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000217 DeclaratorChunk &chunk = D.getTypeObject(i);
218 if (chunk.Kind == DeclaratorChunk::Function) {
Chris Lattnerb28317a2009-03-28 19:18:32 +0000219 for (unsigned argIdx = 0, e = chunk.Fun.NumArgs; argIdx != e; ++argIdx) {
220 ParmVarDecl *Param =
221 cast<ParmVarDecl>(chunk.Fun.ArgInfo[argIdx].Param.getAs<Decl>());
Douglas Gregor61366e92008-12-24 00:01:03 +0000222 if (Param->hasUnparsedDefaultArg()) {
223 CachedTokens *Toks = chunk.Fun.ArgInfo[argIdx].DefaultArgTokens;
Douglas Gregor72b505b2008-12-16 21:30:33 +0000224 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
225 << SourceRange((*Toks)[1].getLocation(), Toks->back().getLocation());
226 delete Toks;
227 chunk.Fun.ArgInfo[argIdx].DefaultArgTokens = 0;
Douglas Gregor61366e92008-12-24 00:01:03 +0000228 } else if (Param->getDefaultArg()) {
229 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
230 << Param->getDefaultArg()->getSourceRange();
231 Param->setDefaultArg(0);
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000232 }
233 }
234 }
235 }
236}
237
Chris Lattner3d1cee32008-04-08 05:04:30 +0000238// MergeCXXFunctionDecl - Merge two declarations of the same C++
239// function, once we already know that they have the same
Douglas Gregorcda9c672009-02-16 17:45:42 +0000240// type. Subroutine of MergeFunctionDecl. Returns true if there was an
241// error, false otherwise.
242bool Sema::MergeCXXFunctionDecl(FunctionDecl *New, FunctionDecl *Old) {
243 bool Invalid = false;
244
Chris Lattner3d1cee32008-04-08 05:04:30 +0000245 // C++ [dcl.fct.default]p4:
Chris Lattner3d1cee32008-04-08 05:04:30 +0000246 // For non-template functions, default arguments can be added in
247 // later declarations of a function in the same
248 // scope. Declarations in different scopes have completely
249 // distinct sets of default arguments. That is, declarations in
250 // inner scopes do not acquire default arguments from
251 // declarations in outer scopes, and vice versa. In a given
252 // function declaration, all parameters subsequent to a
253 // parameter with a default argument shall have default
254 // arguments supplied in this or previous declarations. A
255 // default argument shall not be redefined by a later
256 // declaration (not even to the same value).
Douglas Gregor6cc15182009-09-11 18:44:32 +0000257 //
258 // C++ [dcl.fct.default]p6:
259 // Except for member functions of class templates, the default arguments
260 // in a member function definition that appears outside of the class
261 // definition are added to the set of default arguments provided by the
262 // member function declaration in the class definition.
Chris Lattner3d1cee32008-04-08 05:04:30 +0000263 for (unsigned p = 0, NumParams = Old->getNumParams(); p < NumParams; ++p) {
264 ParmVarDecl *OldParam = Old->getParamDecl(p);
265 ParmVarDecl *NewParam = New->getParamDecl(p);
266
Douglas Gregor6cc15182009-09-11 18:44:32 +0000267 if (OldParam->hasDefaultArg() && NewParam->hasDefaultArg()) {
Anders Carlssonad26b732009-11-10 03:24:44 +0000268 // FIXME: If the parameter doesn't have an identifier then the location
269 // points to the '=' which means that the fixit hint won't remove any
270 // extra spaces between the type and the '='.
271 SourceLocation Begin = NewParam->getLocation();
Anders Carlsson4881b992009-11-10 03:32:44 +0000272 if (NewParam->getIdentifier())
273 Begin = PP.getLocForEndOfToken(Begin);
Anders Carlssonad26b732009-11-10 03:24:44 +0000274
Mike Stump1eb44332009-09-09 15:08:12 +0000275 Diag(NewParam->getLocation(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000276 diag::err_param_default_argument_redefinition)
Anders Carlssonad26b732009-11-10 03:24:44 +0000277 << NewParam->getDefaultArgRange()
278 << CodeModificationHint::CreateRemoval(SourceRange(Begin,
279 NewParam->getLocEnd()));
Douglas Gregor6cc15182009-09-11 18:44:32 +0000280
281 // Look for the function declaration where the default argument was
282 // actually written, which may be a declaration prior to Old.
283 for (FunctionDecl *Older = Old->getPreviousDeclaration();
284 Older; Older = Older->getPreviousDeclaration()) {
285 if (!Older->getParamDecl(p)->hasDefaultArg())
286 break;
287
288 OldParam = Older->getParamDecl(p);
289 }
290
291 Diag(OldParam->getLocation(), diag::note_previous_definition)
292 << OldParam->getDefaultArgRange();
Douglas Gregorcda9c672009-02-16 17:45:42 +0000293 Invalid = true;
Douglas Gregord85cef52009-09-17 19:51:30 +0000294 } else if (OldParam->hasDefaultArg()) {
Chris Lattner3d1cee32008-04-08 05:04:30 +0000295 // Merge the old default argument into the new parameter
Douglas Gregord85cef52009-09-17 19:51:30 +0000296 if (OldParam->hasUninstantiatedDefaultArg())
297 NewParam->setUninstantiatedDefaultArg(
298 OldParam->getUninstantiatedDefaultArg());
299 else
300 NewParam->setDefaultArg(OldParam->getDefaultArg());
Douglas Gregor6cc15182009-09-11 18:44:32 +0000301 } else if (NewParam->hasDefaultArg()) {
302 if (New->getDescribedFunctionTemplate()) {
303 // Paragraph 4, quoted above, only applies to non-template functions.
304 Diag(NewParam->getLocation(),
305 diag::err_param_default_argument_template_redecl)
306 << NewParam->getDefaultArgRange();
307 Diag(Old->getLocation(), diag::note_template_prev_declaration)
308 << false;
Douglas Gregor096ebfd2009-10-13 17:02:54 +0000309 } else if (New->getTemplateSpecializationKind()
310 != TSK_ImplicitInstantiation &&
311 New->getTemplateSpecializationKind() != TSK_Undeclared) {
312 // C++ [temp.expr.spec]p21:
313 // Default function arguments shall not be specified in a declaration
314 // or a definition for one of the following explicit specializations:
315 // - the explicit specialization of a function template;
Douglas Gregor8c638ab2009-10-13 23:52:38 +0000316 // - the explicit specialization of a member function template;
317 // - the explicit specialization of a member function of a class
Douglas Gregor096ebfd2009-10-13 17:02:54 +0000318 // template where the class template specialization to which the
319 // member function specialization belongs is implicitly
320 // instantiated.
321 Diag(NewParam->getLocation(), diag::err_template_spec_default_arg)
322 << (New->getTemplateSpecializationKind() ==TSK_ExplicitSpecialization)
323 << New->getDeclName()
324 << NewParam->getDefaultArgRange();
Douglas Gregor6cc15182009-09-11 18:44:32 +0000325 } else if (New->getDeclContext()->isDependentContext()) {
326 // C++ [dcl.fct.default]p6 (DR217):
327 // Default arguments for a member function of a class template shall
328 // be specified on the initial declaration of the member function
329 // within the class template.
330 //
331 // Reading the tea leaves a bit in DR217 and its reference to DR205
332 // leads me to the conclusion that one cannot add default function
333 // arguments for an out-of-line definition of a member function of a
334 // dependent type.
335 int WhichKind = 2;
336 if (CXXRecordDecl *Record
337 = dyn_cast<CXXRecordDecl>(New->getDeclContext())) {
338 if (Record->getDescribedClassTemplate())
339 WhichKind = 0;
340 else if (isa<ClassTemplatePartialSpecializationDecl>(Record))
341 WhichKind = 1;
342 else
343 WhichKind = 2;
344 }
345
346 Diag(NewParam->getLocation(),
347 diag::err_param_default_argument_member_template_redecl)
348 << WhichKind
349 << NewParam->getDefaultArgRange();
350 }
Chris Lattner3d1cee32008-04-08 05:04:30 +0000351 }
352 }
353
Sebastian Redl4994d2d2009-07-04 11:39:00 +0000354 if (CheckEquivalentExceptionSpec(
John McCall183700f2009-09-21 23:43:11 +0000355 Old->getType()->getAs<FunctionProtoType>(), Old->getLocation(),
356 New->getType()->getAs<FunctionProtoType>(), New->getLocation())) {
Sebastian Redl4994d2d2009-07-04 11:39:00 +0000357 Invalid = true;
358 }
359
Douglas Gregorcda9c672009-02-16 17:45:42 +0000360 return Invalid;
Chris Lattner3d1cee32008-04-08 05:04:30 +0000361}
362
363/// CheckCXXDefaultArguments - Verify that the default arguments for a
364/// function declaration are well-formed according to C++
365/// [dcl.fct.default].
366void Sema::CheckCXXDefaultArguments(FunctionDecl *FD) {
367 unsigned NumParams = FD->getNumParams();
368 unsigned p;
369
370 // Find first parameter with a default argument
371 for (p = 0; p < NumParams; ++p) {
372 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson5f49a0c2009-08-25 01:23:32 +0000373 if (Param->hasDefaultArg())
Chris Lattner3d1cee32008-04-08 05:04:30 +0000374 break;
375 }
376
377 // C++ [dcl.fct.default]p4:
378 // In a given function declaration, all parameters
379 // subsequent to a parameter with a default argument shall
380 // have default arguments supplied in this or previous
381 // declarations. A default argument shall not be redefined
382 // by a later declaration (not even to the same value).
383 unsigned LastMissingDefaultArg = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000384 for (; p < NumParams; ++p) {
Chris Lattner3d1cee32008-04-08 05:04:30 +0000385 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson5f49a0c2009-08-25 01:23:32 +0000386 if (!Param->hasDefaultArg()) {
Douglas Gregor72b505b2008-12-16 21:30:33 +0000387 if (Param->isInvalidDecl())
388 /* We already complained about this parameter. */;
389 else if (Param->getIdentifier())
Mike Stump1eb44332009-09-09 15:08:12 +0000390 Diag(Param->getLocation(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000391 diag::err_param_default_argument_missing_name)
Chris Lattner43b628c2008-11-19 07:32:16 +0000392 << Param->getIdentifier();
Chris Lattner3d1cee32008-04-08 05:04:30 +0000393 else
Mike Stump1eb44332009-09-09 15:08:12 +0000394 Diag(Param->getLocation(),
Chris Lattner3d1cee32008-04-08 05:04:30 +0000395 diag::err_param_default_argument_missing);
Mike Stump1eb44332009-09-09 15:08:12 +0000396
Chris Lattner3d1cee32008-04-08 05:04:30 +0000397 LastMissingDefaultArg = p;
398 }
399 }
400
401 if (LastMissingDefaultArg > 0) {
402 // Some default arguments were missing. Clear out all of the
403 // default arguments up to (and including) the last missing
404 // default argument, so that we leave the function parameters
405 // in a semantically valid state.
406 for (p = 0; p <= LastMissingDefaultArg; ++p) {
407 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson5e300d12009-06-12 16:51:40 +0000408 if (Param->hasDefaultArg()) {
Douglas Gregor61366e92008-12-24 00:01:03 +0000409 if (!Param->hasUnparsedDefaultArg())
410 Param->getDefaultArg()->Destroy(Context);
Chris Lattner3d1cee32008-04-08 05:04:30 +0000411 Param->setDefaultArg(0);
412 }
413 }
414 }
415}
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000416
Douglas Gregorb48fe382008-10-31 09:07:45 +0000417/// isCurrentClassName - Determine whether the identifier II is the
418/// name of the class type currently being defined. In the case of
419/// nested classes, this will only return true if II is the name of
420/// the innermost class.
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000421bool Sema::isCurrentClassName(const IdentifierInfo &II, Scope *,
422 const CXXScopeSpec *SS) {
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +0000423 CXXRecordDecl *CurDecl;
Douglas Gregore4e5b052009-03-19 00:18:19 +0000424 if (SS && SS->isSet() && !SS->isInvalid()) {
Douglas Gregorac373c42009-08-21 22:16:40 +0000425 DeclContext *DC = computeDeclContext(*SS, true);
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +0000426 CurDecl = dyn_cast_or_null<CXXRecordDecl>(DC);
427 } else
428 CurDecl = dyn_cast_or_null<CXXRecordDecl>(CurContext);
429
430 if (CurDecl)
Douglas Gregorb48fe382008-10-31 09:07:45 +0000431 return &II == CurDecl->getIdentifier();
432 else
433 return false;
434}
435
Mike Stump1eb44332009-09-09 15:08:12 +0000436/// \brief Check the validity of a C++ base class specifier.
Douglas Gregor2943aed2009-03-03 04:44:36 +0000437///
438/// \returns a new CXXBaseSpecifier if well-formed, emits diagnostics
439/// and returns NULL otherwise.
440CXXBaseSpecifier *
441Sema::CheckBaseSpecifier(CXXRecordDecl *Class,
442 SourceRange SpecifierRange,
443 bool Virtual, AccessSpecifier Access,
Mike Stump1eb44332009-09-09 15:08:12 +0000444 QualType BaseType,
Douglas Gregor2943aed2009-03-03 04:44:36 +0000445 SourceLocation BaseLoc) {
446 // C++ [class.union]p1:
447 // A union shall not have base classes.
448 if (Class->isUnion()) {
449 Diag(Class->getLocation(), diag::err_base_clause_on_union)
450 << SpecifierRange;
451 return 0;
452 }
453
454 if (BaseType->isDependentType())
Mike Stump1eb44332009-09-09 15:08:12 +0000455 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
Douglas Gregor2943aed2009-03-03 04:44:36 +0000456 Class->getTagKind() == RecordDecl::TK_class,
457 Access, BaseType);
458
459 // Base specifiers must be record types.
460 if (!BaseType->isRecordType()) {
461 Diag(BaseLoc, diag::err_base_must_be_class) << SpecifierRange;
462 return 0;
463 }
464
465 // C++ [class.union]p1:
466 // A union shall not be used as a base class.
467 if (BaseType->isUnionType()) {
468 Diag(BaseLoc, diag::err_union_as_base_class) << SpecifierRange;
469 return 0;
470 }
471
472 // C++ [class.derived]p2:
473 // The class-name in a base-specifier shall not be an incompletely
474 // defined class.
Mike Stump1eb44332009-09-09 15:08:12 +0000475 if (RequireCompleteType(BaseLoc, BaseType,
Anders Carlssonb7906612009-08-26 23:45:07 +0000476 PDiag(diag::err_incomplete_base_class)
477 << SpecifierRange))
Douglas Gregor2943aed2009-03-03 04:44:36 +0000478 return 0;
479
Eli Friedman1d954f62009-08-15 21:55:26 +0000480 // If the base class is polymorphic or isn't empty, the new one is/isn't, too.
Ted Kremenek6217b802009-07-29 21:53:49 +0000481 RecordDecl *BaseDecl = BaseType->getAs<RecordType>()->getDecl();
Douglas Gregor2943aed2009-03-03 04:44:36 +0000482 assert(BaseDecl && "Record type has no declaration");
483 BaseDecl = BaseDecl->getDefinition(Context);
484 assert(BaseDecl && "Base type is not incomplete, but has no definition");
Eli Friedman1d954f62009-08-15 21:55:26 +0000485 CXXRecordDecl * CXXBaseDecl = cast<CXXRecordDecl>(BaseDecl);
486 assert(CXXBaseDecl && "Base type is not a C++ type");
487 if (!CXXBaseDecl->isEmpty())
488 Class->setEmpty(false);
489 if (CXXBaseDecl->isPolymorphic())
Douglas Gregor2943aed2009-03-03 04:44:36 +0000490 Class->setPolymorphic(true);
491
492 // C++ [dcl.init.aggr]p1:
493 // An aggregate is [...] a class with [...] no base classes [...].
494 Class->setAggregate(false);
495 Class->setPOD(false);
496
Anders Carlsson347ba892009-04-16 00:08:20 +0000497 if (Virtual) {
498 // C++ [class.ctor]p5:
499 // A constructor is trivial if its class has no virtual base classes.
500 Class->setHasTrivialConstructor(false);
Douglas Gregor1f2023a2009-07-22 18:25:24 +0000501
502 // C++ [class.copy]p6:
503 // A copy constructor is trivial if its class has no virtual base classes.
504 Class->setHasTrivialCopyConstructor(false);
505
506 // C++ [class.copy]p11:
507 // A copy assignment operator is trivial if its class has no virtual
508 // base classes.
509 Class->setHasTrivialCopyAssignment(false);
Eli Friedman1d954f62009-08-15 21:55:26 +0000510
511 // C++0x [meta.unary.prop] is_empty:
512 // T is a class type, but not a union type, with ... no virtual base
513 // classes
514 Class->setEmpty(false);
Anders Carlsson347ba892009-04-16 00:08:20 +0000515 } else {
516 // C++ [class.ctor]p5:
Mike Stump1eb44332009-09-09 15:08:12 +0000517 // A constructor is trivial if all the direct base classes of its
Anders Carlsson347ba892009-04-16 00:08:20 +0000518 // class have trivial constructors.
Douglas Gregor1f2023a2009-07-22 18:25:24 +0000519 if (!cast<CXXRecordDecl>(BaseDecl)->hasTrivialConstructor())
520 Class->setHasTrivialConstructor(false);
521
522 // C++ [class.copy]p6:
523 // A copy constructor is trivial if all the direct base classes of its
524 // class have trivial copy constructors.
525 if (!cast<CXXRecordDecl>(BaseDecl)->hasTrivialCopyConstructor())
526 Class->setHasTrivialCopyConstructor(false);
527
528 // C++ [class.copy]p11:
529 // A copy assignment operator is trivial if all the direct base classes
530 // of its class have trivial copy assignment operators.
531 if (!cast<CXXRecordDecl>(BaseDecl)->hasTrivialCopyAssignment())
532 Class->setHasTrivialCopyAssignment(false);
Anders Carlsson347ba892009-04-16 00:08:20 +0000533 }
Anders Carlsson072abef2009-04-17 02:34:54 +0000534
535 // C++ [class.ctor]p3:
536 // A destructor is trivial if all the direct base classes of its class
537 // have trivial destructors.
Douglas Gregor1f2023a2009-07-22 18:25:24 +0000538 if (!cast<CXXRecordDecl>(BaseDecl)->hasTrivialDestructor())
539 Class->setHasTrivialDestructor(false);
Mike Stump1eb44332009-09-09 15:08:12 +0000540
Douglas Gregor2943aed2009-03-03 04:44:36 +0000541 // Create the base specifier.
542 // FIXME: Allocate via ASTContext?
Mike Stump1eb44332009-09-09 15:08:12 +0000543 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
544 Class->getTagKind() == RecordDecl::TK_class,
Douglas Gregor2943aed2009-03-03 04:44:36 +0000545 Access, BaseType);
546}
547
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000548/// ActOnBaseSpecifier - Parsed a base specifier. A base specifier is
549/// one entry in the base class list of a class specifier, for
Mike Stump1eb44332009-09-09 15:08:12 +0000550/// example:
551/// class foo : public bar, virtual private baz {
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000552/// 'public bar' and 'virtual private baz' are each base-specifiers.
Mike Stump1eb44332009-09-09 15:08:12 +0000553Sema::BaseResult
Chris Lattnerb28317a2009-03-28 19:18:32 +0000554Sema::ActOnBaseSpecifier(DeclPtrTy classdecl, SourceRange SpecifierRange,
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000555 bool Virtual, AccessSpecifier Access,
556 TypeTy *basetype, SourceLocation BaseLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000557 if (!classdecl)
558 return true;
559
Douglas Gregor40808ce2009-03-09 23:48:35 +0000560 AdjustDeclIfTemplate(classdecl);
Chris Lattnerb28317a2009-03-28 19:18:32 +0000561 CXXRecordDecl *Class = cast<CXXRecordDecl>(classdecl.getAs<Decl>());
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +0000562 QualType BaseType = GetTypeFromParser(basetype);
Douglas Gregor2943aed2009-03-03 04:44:36 +0000563 if (CXXBaseSpecifier *BaseSpec = CheckBaseSpecifier(Class, SpecifierRange,
564 Virtual, Access,
565 BaseType, BaseLoc))
566 return BaseSpec;
Mike Stump1eb44332009-09-09 15:08:12 +0000567
Douglas Gregor2943aed2009-03-03 04:44:36 +0000568 return true;
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000569}
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000570
Douglas Gregor2943aed2009-03-03 04:44:36 +0000571/// \brief Performs the actual work of attaching the given base class
572/// specifiers to a C++ class.
573bool Sema::AttachBaseSpecifiers(CXXRecordDecl *Class, CXXBaseSpecifier **Bases,
574 unsigned NumBases) {
575 if (NumBases == 0)
576 return false;
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000577
578 // Used to keep track of which base types we have already seen, so
579 // that we can properly diagnose redundant direct base types. Note
Douglas Gregor57c856b2008-10-23 18:13:27 +0000580 // that the key is always the unqualified canonical type of the base
581 // class.
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000582 std::map<QualType, CXXBaseSpecifier*, QualTypeOrdering> KnownBaseTypes;
583
584 // Copy non-redundant base specifiers into permanent storage.
Douglas Gregor57c856b2008-10-23 18:13:27 +0000585 unsigned NumGoodBases = 0;
Douglas Gregor2943aed2009-03-03 04:44:36 +0000586 bool Invalid = false;
Douglas Gregor57c856b2008-10-23 18:13:27 +0000587 for (unsigned idx = 0; idx < NumBases; ++idx) {
Mike Stump1eb44332009-09-09 15:08:12 +0000588 QualType NewBaseType
Douglas Gregor2943aed2009-03-03 04:44:36 +0000589 = Context.getCanonicalType(Bases[idx]->getType());
Douglas Gregora4923eb2009-11-16 21:35:15 +0000590 NewBaseType = NewBaseType.getLocalUnqualifiedType();
Douglas Gregor57c856b2008-10-23 18:13:27 +0000591
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000592 if (KnownBaseTypes[NewBaseType]) {
593 // C++ [class.mi]p3:
594 // A class shall not be specified as a direct base class of a
595 // derived class more than once.
Douglas Gregor2943aed2009-03-03 04:44:36 +0000596 Diag(Bases[idx]->getSourceRange().getBegin(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000597 diag::err_duplicate_base_class)
Chris Lattnerd1625842008-11-24 06:25:27 +0000598 << KnownBaseTypes[NewBaseType]->getType()
Douglas Gregor2943aed2009-03-03 04:44:36 +0000599 << Bases[idx]->getSourceRange();
Douglas Gregor57c856b2008-10-23 18:13:27 +0000600
601 // Delete the duplicate base class specifier; we're going to
602 // overwrite its pointer later.
Douglas Gregor2aef06d2009-07-22 20:55:49 +0000603 Context.Deallocate(Bases[idx]);
Douglas Gregor2943aed2009-03-03 04:44:36 +0000604
605 Invalid = true;
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000606 } else {
607 // Okay, add this new base class.
Douglas Gregor2943aed2009-03-03 04:44:36 +0000608 KnownBaseTypes[NewBaseType] = Bases[idx];
609 Bases[NumGoodBases++] = Bases[idx];
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000610 }
611 }
612
613 // Attach the remaining base class specifiers to the derived class.
Fariborz Jahanian5ffcd7b2009-07-02 18:26:15 +0000614 Class->setBases(Context, Bases, NumGoodBases);
Douglas Gregor57c856b2008-10-23 18:13:27 +0000615
616 // Delete the remaining (good) base class specifiers, since their
617 // data has been copied into the CXXRecordDecl.
618 for (unsigned idx = 0; idx < NumGoodBases; ++idx)
Douglas Gregor2aef06d2009-07-22 20:55:49 +0000619 Context.Deallocate(Bases[idx]);
Douglas Gregor2943aed2009-03-03 04:44:36 +0000620
621 return Invalid;
622}
623
624/// ActOnBaseSpecifiers - Attach the given base specifiers to the
625/// class, after checking whether there are any duplicate base
626/// classes.
Mike Stump1eb44332009-09-09 15:08:12 +0000627void Sema::ActOnBaseSpecifiers(DeclPtrTy ClassDecl, BaseTy **Bases,
Douglas Gregor2943aed2009-03-03 04:44:36 +0000628 unsigned NumBases) {
629 if (!ClassDecl || !Bases || !NumBases)
630 return;
631
632 AdjustDeclIfTemplate(ClassDecl);
Chris Lattnerb28317a2009-03-28 19:18:32 +0000633 AttachBaseSpecifiers(cast<CXXRecordDecl>(ClassDecl.getAs<Decl>()),
Douglas Gregor2943aed2009-03-03 04:44:36 +0000634 (CXXBaseSpecifier**)(Bases), NumBases);
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000635}
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +0000636
Douglas Gregora8f32e02009-10-06 17:59:45 +0000637/// \brief Determine whether the type \p Derived is a C++ class that is
638/// derived from the type \p Base.
639bool Sema::IsDerivedFrom(QualType Derived, QualType Base) {
640 if (!getLangOptions().CPlusPlus)
641 return false;
642
643 const RecordType *DerivedRT = Derived->getAs<RecordType>();
644 if (!DerivedRT)
645 return false;
646
647 const RecordType *BaseRT = Base->getAs<RecordType>();
648 if (!BaseRT)
649 return false;
650
651 CXXRecordDecl *DerivedRD = cast<CXXRecordDecl>(DerivedRT->getDecl());
652 CXXRecordDecl *BaseRD = cast<CXXRecordDecl>(BaseRT->getDecl());
653 return DerivedRD->isDerivedFrom(BaseRD);
654}
655
656/// \brief Determine whether the type \p Derived is a C++ class that is
657/// derived from the type \p Base.
658bool Sema::IsDerivedFrom(QualType Derived, QualType Base, CXXBasePaths &Paths) {
659 if (!getLangOptions().CPlusPlus)
660 return false;
661
662 const RecordType *DerivedRT = Derived->getAs<RecordType>();
663 if (!DerivedRT)
664 return false;
665
666 const RecordType *BaseRT = Base->getAs<RecordType>();
667 if (!BaseRT)
668 return false;
669
670 CXXRecordDecl *DerivedRD = cast<CXXRecordDecl>(DerivedRT->getDecl());
671 CXXRecordDecl *BaseRD = cast<CXXRecordDecl>(BaseRT->getDecl());
672 return DerivedRD->isDerivedFrom(BaseRD, Paths);
673}
674
675/// CheckDerivedToBaseConversion - Check whether the Derived-to-Base
676/// conversion (where Derived and Base are class types) is
677/// well-formed, meaning that the conversion is unambiguous (and
678/// that all of the base classes are accessible). Returns true
679/// and emits a diagnostic if the code is ill-formed, returns false
680/// otherwise. Loc is the location where this routine should point to
681/// if there is an error, and Range is the source range to highlight
682/// if there is an error.
683bool
684Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
685 unsigned InaccessibleBaseID,
686 unsigned AmbigiousBaseConvID,
687 SourceLocation Loc, SourceRange Range,
688 DeclarationName Name) {
689 // First, determine whether the path from Derived to Base is
690 // ambiguous. This is slightly more expensive than checking whether
691 // the Derived to Base conversion exists, because here we need to
692 // explore multiple paths to determine if there is an ambiguity.
693 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
694 /*DetectVirtual=*/false);
695 bool DerivationOkay = IsDerivedFrom(Derived, Base, Paths);
696 assert(DerivationOkay &&
697 "Can only be used with a derived-to-base conversion");
698 (void)DerivationOkay;
699
700 if (!Paths.isAmbiguous(Context.getCanonicalType(Base).getUnqualifiedType())) {
Sebastian Redla82e4ae2009-11-14 21:15:49 +0000701 if (InaccessibleBaseID == 0)
702 return false;
Douglas Gregora8f32e02009-10-06 17:59:45 +0000703 // Check that the base class can be accessed.
704 return CheckBaseClassAccess(Derived, Base, InaccessibleBaseID, Paths, Loc,
705 Name);
706 }
707
708 // We know that the derived-to-base conversion is ambiguous, and
709 // we're going to produce a diagnostic. Perform the derived-to-base
710 // search just one more time to compute all of the possible paths so
711 // that we can print them out. This is more expensive than any of
712 // the previous derived-to-base checks we've done, but at this point
713 // performance isn't as much of an issue.
714 Paths.clear();
715 Paths.setRecordingPaths(true);
716 bool StillOkay = IsDerivedFrom(Derived, Base, Paths);
717 assert(StillOkay && "Can only be used with a derived-to-base conversion");
718 (void)StillOkay;
719
720 // Build up a textual representation of the ambiguous paths, e.g.,
721 // D -> B -> A, that will be used to illustrate the ambiguous
722 // conversions in the diagnostic. We only print one of the paths
723 // to each base class subobject.
724 std::string PathDisplayStr = getAmbiguousPathsDisplayString(Paths);
725
726 Diag(Loc, AmbigiousBaseConvID)
727 << Derived << Base << PathDisplayStr << Range << Name;
728 return true;
729}
730
731bool
732Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base,
Sebastian Redla82e4ae2009-11-14 21:15:49 +0000733 SourceLocation Loc, SourceRange Range,
734 bool IgnoreAccess) {
Douglas Gregora8f32e02009-10-06 17:59:45 +0000735 return CheckDerivedToBaseConversion(Derived, Base,
Sebastian Redla82e4ae2009-11-14 21:15:49 +0000736 IgnoreAccess ? 0 :
737 diag::err_conv_to_inaccessible_base,
Douglas Gregora8f32e02009-10-06 17:59:45 +0000738 diag::err_ambiguous_derived_to_base_conv,
739 Loc, Range, DeclarationName());
740}
741
742
743/// @brief Builds a string representing ambiguous paths from a
744/// specific derived class to different subobjects of the same base
745/// class.
746///
747/// This function builds a string that can be used in error messages
748/// to show the different paths that one can take through the
749/// inheritance hierarchy to go from the derived class to different
750/// subobjects of a base class. The result looks something like this:
751/// @code
752/// struct D -> struct B -> struct A
753/// struct D -> struct C -> struct A
754/// @endcode
755std::string Sema::getAmbiguousPathsDisplayString(CXXBasePaths &Paths) {
756 std::string PathDisplayStr;
757 std::set<unsigned> DisplayedPaths;
758 for (CXXBasePaths::paths_iterator Path = Paths.begin();
759 Path != Paths.end(); ++Path) {
760 if (DisplayedPaths.insert(Path->back().SubobjectNumber).second) {
761 // We haven't displayed a path to this particular base
762 // class subobject yet.
763 PathDisplayStr += "\n ";
764 PathDisplayStr += Context.getTypeDeclType(Paths.getOrigin()).getAsString();
765 for (CXXBasePath::const_iterator Element = Path->begin();
766 Element != Path->end(); ++Element)
767 PathDisplayStr += " -> " + Element->Base->getType().getAsString();
768 }
769 }
770
771 return PathDisplayStr;
772}
773
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000774//===----------------------------------------------------------------------===//
775// C++ class member Handling
776//===----------------------------------------------------------------------===//
777
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000778/// ActOnCXXMemberDeclarator - This is invoked when a C++ class member
779/// declarator is parsed. 'AS' is the access specifier, 'BW' specifies the
780/// bitfield width if there is one and 'InitExpr' specifies the initializer if
Chris Lattnerb6688e02009-04-12 22:37:57 +0000781/// any.
Chris Lattnerb28317a2009-03-28 19:18:32 +0000782Sema::DeclPtrTy
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000783Sema::ActOnCXXMemberDeclarator(Scope *S, AccessSpecifier AS, Declarator &D,
Douglas Gregor37b372b2009-08-20 22:52:58 +0000784 MultiTemplateParamsArg TemplateParameterLists,
Sebastian Redle2b68332009-04-12 17:16:29 +0000785 ExprTy *BW, ExprTy *InitExpr, bool Deleted) {
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000786 const DeclSpec &DS = D.getDeclSpec();
Douglas Gregor10bd3682008-11-17 22:58:34 +0000787 DeclarationName Name = GetNameForDeclarator(D);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000788 Expr *BitWidth = static_cast<Expr*>(BW);
789 Expr *Init = static_cast<Expr*>(InitExpr);
790 SourceLocation Loc = D.getIdentifierLoc();
791
Sebastian Redl669d5d72008-11-14 23:42:31 +0000792 bool isFunc = D.isFunctionDeclarator();
793
John McCall67d1a672009-08-06 02:15:43 +0000794 assert(!DS.isFriendSpecified());
795
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000796 // C++ 9.2p6: A member shall not be declared to have automatic storage
797 // duration (auto, register) or with the extern storage-class-specifier.
Sebastian Redl669d5d72008-11-14 23:42:31 +0000798 // C++ 7.1.1p8: The mutable specifier can be applied only to names of class
799 // data members and cannot be applied to names declared const or static,
800 // and cannot be applied to reference members.
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000801 switch (DS.getStorageClassSpec()) {
802 case DeclSpec::SCS_unspecified:
803 case DeclSpec::SCS_typedef:
804 case DeclSpec::SCS_static:
805 // FALL THROUGH.
806 break;
Sebastian Redl669d5d72008-11-14 23:42:31 +0000807 case DeclSpec::SCS_mutable:
808 if (isFunc) {
809 if (DS.getStorageClassSpecLoc().isValid())
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000810 Diag(DS.getStorageClassSpecLoc(), diag::err_mutable_function);
Sebastian Redl669d5d72008-11-14 23:42:31 +0000811 else
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000812 Diag(DS.getThreadSpecLoc(), diag::err_mutable_function);
Mike Stump1eb44332009-09-09 15:08:12 +0000813
Sebastian Redla11f42f2008-11-17 23:24:37 +0000814 // FIXME: It would be nicer if the keyword was ignored only for this
815 // declarator. Otherwise we could get follow-up errors.
Sebastian Redl669d5d72008-11-14 23:42:31 +0000816 D.getMutableDeclSpec().ClearStorageClassSpecs();
817 } else {
818 QualType T = GetTypeForDeclarator(D, S);
819 diag::kind err = static_cast<diag::kind>(0);
820 if (T->isReferenceType())
821 err = diag::err_mutable_reference;
822 else if (T.isConstQualified())
823 err = diag::err_mutable_const;
824 if (err != 0) {
825 if (DS.getStorageClassSpecLoc().isValid())
826 Diag(DS.getStorageClassSpecLoc(), err);
827 else
828 Diag(DS.getThreadSpecLoc(), err);
Sebastian Redla11f42f2008-11-17 23:24:37 +0000829 // FIXME: It would be nicer if the keyword was ignored only for this
830 // declarator. Otherwise we could get follow-up errors.
Sebastian Redl669d5d72008-11-14 23:42:31 +0000831 D.getMutableDeclSpec().ClearStorageClassSpecs();
832 }
833 }
834 break;
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000835 default:
836 if (DS.getStorageClassSpecLoc().isValid())
837 Diag(DS.getStorageClassSpecLoc(),
838 diag::err_storageclass_invalid_for_member);
839 else
840 Diag(DS.getThreadSpecLoc(), diag::err_storageclass_invalid_for_member);
841 D.getMutableDeclSpec().ClearStorageClassSpecs();
842 }
843
Argyrios Kyrtzidisd6caa9e2008-10-15 20:23:22 +0000844 if (!isFunc &&
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000845 D.getDeclSpec().getTypeSpecType() == DeclSpec::TST_typename &&
Argyrios Kyrtzidisd6caa9e2008-10-15 20:23:22 +0000846 D.getNumTypeObjects() == 0) {
Argyrios Kyrtzidisde933f02008-10-08 22:20:31 +0000847 // Check also for this case:
848 //
849 // typedef int f();
850 // f a;
851 //
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +0000852 QualType TDType = GetTypeFromParser(DS.getTypeRep());
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000853 isFunc = TDType->isFunctionType();
Argyrios Kyrtzidisde933f02008-10-08 22:20:31 +0000854 }
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000855
Sebastian Redl669d5d72008-11-14 23:42:31 +0000856 bool isInstField = ((DS.getStorageClassSpec() == DeclSpec::SCS_unspecified ||
857 DS.getStorageClassSpec() == DeclSpec::SCS_mutable) &&
Argyrios Kyrtzidisde933f02008-10-08 22:20:31 +0000858 !isFunc);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000859
860 Decl *Member;
Chris Lattner24793662009-03-05 22:45:59 +0000861 if (isInstField) {
Douglas Gregor37b372b2009-08-20 22:52:58 +0000862 // FIXME: Check for template parameters!
Douglas Gregor4dd55f52009-03-11 20:50:30 +0000863 Member = HandleField(S, cast<CXXRecordDecl>(CurContext), Loc, D, BitWidth,
864 AS);
Chris Lattner6f8ce142009-03-05 23:03:49 +0000865 assert(Member && "HandleField never returns null");
Chris Lattner24793662009-03-05 22:45:59 +0000866 } else {
Douglas Gregor37b372b2009-08-20 22:52:58 +0000867 Member = HandleDeclarator(S, D, move(TemplateParameterLists), false)
868 .getAs<Decl>();
Chris Lattner6f8ce142009-03-05 23:03:49 +0000869 if (!Member) {
870 if (BitWidth) DeleteExpr(BitWidth);
Chris Lattner682bf922009-03-29 16:50:03 +0000871 return DeclPtrTy();
Chris Lattner6f8ce142009-03-05 23:03:49 +0000872 }
Chris Lattner8b963ef2009-03-05 23:01:03 +0000873
874 // Non-instance-fields can't have a bitfield.
875 if (BitWidth) {
876 if (Member->isInvalidDecl()) {
877 // don't emit another diagnostic.
Douglas Gregor2d2e9cf2009-03-11 20:22:50 +0000878 } else if (isa<VarDecl>(Member)) {
Chris Lattner8b963ef2009-03-05 23:01:03 +0000879 // C++ 9.6p3: A bit-field shall not be a static member.
880 // "static member 'A' cannot be a bit-field"
881 Diag(Loc, diag::err_static_not_bitfield)
882 << Name << BitWidth->getSourceRange();
883 } else if (isa<TypedefDecl>(Member)) {
884 // "typedef member 'x' cannot be a bit-field"
885 Diag(Loc, diag::err_typedef_not_bitfield)
886 << Name << BitWidth->getSourceRange();
887 } else {
888 // A function typedef ("typedef int f(); f a;").
889 // C++ 9.6p3: A bit-field shall have integral or enumeration type.
890 Diag(Loc, diag::err_not_integral_type_bitfield)
Mike Stump1eb44332009-09-09 15:08:12 +0000891 << Name << cast<ValueDecl>(Member)->getType()
Douglas Gregor3cf538d2009-03-11 18:59:21 +0000892 << BitWidth->getSourceRange();
Chris Lattner8b963ef2009-03-05 23:01:03 +0000893 }
Mike Stump1eb44332009-09-09 15:08:12 +0000894
Chris Lattner8b963ef2009-03-05 23:01:03 +0000895 DeleteExpr(BitWidth);
896 BitWidth = 0;
897 Member->setInvalidDecl();
898 }
Douglas Gregor4dd55f52009-03-11 20:50:30 +0000899
900 Member->setAccess(AS);
Mike Stump1eb44332009-09-09 15:08:12 +0000901
Douglas Gregor37b372b2009-08-20 22:52:58 +0000902 // If we have declared a member function template, set the access of the
903 // templated declaration as well.
904 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Member))
905 FunTmpl->getTemplatedDecl()->setAccess(AS);
Chris Lattner24793662009-03-05 22:45:59 +0000906 }
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000907
Douglas Gregor10bd3682008-11-17 22:58:34 +0000908 assert((Name || isInstField) && "No identifier for non-field ?");
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000909
Douglas Gregor021c3b32009-03-11 23:00:04 +0000910 if (Init)
Chris Lattnerb28317a2009-03-28 19:18:32 +0000911 AddInitializerToDecl(DeclPtrTy::make(Member), ExprArg(*this, Init), false);
Sebastian Redle2b68332009-04-12 17:16:29 +0000912 if (Deleted) // FIXME: Source location is not very good.
913 SetDeclDeleted(DeclPtrTy::make(Member), D.getSourceRange().getBegin());
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000914
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000915 if (isInstField) {
Douglas Gregor44b43212008-12-11 16:49:14 +0000916 FieldCollector->Add(cast<FieldDecl>(Member));
Chris Lattner682bf922009-03-29 16:50:03 +0000917 return DeclPtrTy();
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000918 }
Chris Lattnerb28317a2009-03-28 19:18:32 +0000919 return DeclPtrTy::make(Member);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000920}
921
Douglas Gregor7ad83902008-11-05 04:29:56 +0000922/// ActOnMemInitializer - Handle a C++ member initializer.
Mike Stump1eb44332009-09-09 15:08:12 +0000923Sema::MemInitResult
Chris Lattnerb28317a2009-03-28 19:18:32 +0000924Sema::ActOnMemInitializer(DeclPtrTy ConstructorD,
Douglas Gregor7ad83902008-11-05 04:29:56 +0000925 Scope *S,
Fariborz Jahanianbcfad542009-06-30 23:26:25 +0000926 const CXXScopeSpec &SS,
Douglas Gregor7ad83902008-11-05 04:29:56 +0000927 IdentifierInfo *MemberOrBase,
Fariborz Jahanian96174332009-07-01 19:21:19 +0000928 TypeTy *TemplateTypeTy,
Douglas Gregor7ad83902008-11-05 04:29:56 +0000929 SourceLocation IdLoc,
930 SourceLocation LParenLoc,
931 ExprTy **Args, unsigned NumArgs,
932 SourceLocation *CommaLocs,
933 SourceLocation RParenLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000934 if (!ConstructorD)
935 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000936
Douglas Gregorefd5bda2009-08-24 11:57:43 +0000937 AdjustDeclIfTemplate(ConstructorD);
Mike Stump1eb44332009-09-09 15:08:12 +0000938
939 CXXConstructorDecl *Constructor
Chris Lattnerb28317a2009-03-28 19:18:32 +0000940 = dyn_cast<CXXConstructorDecl>(ConstructorD.getAs<Decl>());
Douglas Gregor7ad83902008-11-05 04:29:56 +0000941 if (!Constructor) {
942 // The user wrote a constructor initializer on a function that is
943 // not a C++ constructor. Ignore the error for now, because we may
944 // have more member initializers coming; we'll diagnose it just
945 // once in ActOnMemInitializers.
946 return true;
947 }
948
949 CXXRecordDecl *ClassDecl = Constructor->getParent();
950
951 // C++ [class.base.init]p2:
952 // Names in a mem-initializer-id are looked up in the scope of the
953 // constructor’s class and, if not found in that scope, are looked
954 // up in the scope containing the constructor’s
955 // definition. [Note: if the constructor’s class contains a member
956 // with the same name as a direct or virtual base class of the
957 // class, a mem-initializer-id naming the member or base class and
958 // composed of a single identifier refers to the class member. A
959 // mem-initializer-id for the hidden base class may be specified
960 // using a qualified name. ]
Fariborz Jahanian96174332009-07-01 19:21:19 +0000961 if (!SS.getScopeRep() && !TemplateTypeTy) {
Fariborz Jahanianbcfad542009-06-30 23:26:25 +0000962 // Look for a member, first.
963 FieldDecl *Member = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000964 DeclContext::lookup_result Result
Fariborz Jahanianbcfad542009-06-30 23:26:25 +0000965 = ClassDecl->lookup(MemberOrBase);
966 if (Result.first != Result.second)
967 Member = dyn_cast<FieldDecl>(*Result.first);
Douglas Gregor7ad83902008-11-05 04:29:56 +0000968
Fariborz Jahanianbcfad542009-06-30 23:26:25 +0000969 // FIXME: Handle members of an anonymous union.
Douglas Gregor7ad83902008-11-05 04:29:56 +0000970
Eli Friedman59c04372009-07-29 19:44:27 +0000971 if (Member)
972 return BuildMemberInitializer(Member, (Expr**)Args, NumArgs, IdLoc,
973 RParenLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +0000974 }
Douglas Gregor7ad83902008-11-05 04:29:56 +0000975 // It didn't name a member, so see if it names a class.
Mike Stump1eb44332009-09-09 15:08:12 +0000976 TypeTy *BaseTy = TemplateTypeTy ? TemplateTypeTy
Fariborz Jahanian96174332009-07-01 19:21:19 +0000977 : getTypeName(*MemberOrBase, IdLoc, S, &SS);
Douglas Gregor7ad83902008-11-05 04:29:56 +0000978 if (!BaseTy)
Chris Lattner3c73c412008-11-19 08:23:25 +0000979 return Diag(IdLoc, diag::err_mem_init_not_member_or_class)
980 << MemberOrBase << SourceRange(IdLoc, RParenLoc);
Mike Stump1eb44332009-09-09 15:08:12 +0000981
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +0000982 QualType BaseType = GetTypeFromParser(BaseTy);
Douglas Gregor7ad83902008-11-05 04:29:56 +0000983
Eli Friedman59c04372009-07-29 19:44:27 +0000984 return BuildBaseInitializer(BaseType, (Expr **)Args, NumArgs, IdLoc,
985 RParenLoc, ClassDecl);
986}
987
John McCallb4190042009-11-04 23:02:40 +0000988/// Checks an initializer expression for use of uninitialized fields, such as
989/// containing the field that is being initialized. Returns true if there is an
990/// uninitialized field was used an updates the SourceLocation parameter; false
991/// otherwise.
992static bool InitExprContainsUninitializedFields(const Stmt* S,
993 const FieldDecl* LhsField,
994 SourceLocation* L) {
995 const MemberExpr* ME = dyn_cast<MemberExpr>(S);
996 if (ME) {
997 const NamedDecl* RhsField = ME->getMemberDecl();
998 if (RhsField == LhsField) {
999 // Initializing a field with itself. Throw a warning.
1000 // But wait; there are exceptions!
1001 // Exception #1: The field may not belong to this record.
1002 // e.g. Foo(const Foo& rhs) : A(rhs.A) {}
1003 const Expr* base = ME->getBase();
1004 if (base != NULL && !isa<CXXThisExpr>(base->IgnoreParenCasts())) {
1005 // Even though the field matches, it does not belong to this record.
1006 return false;
1007 }
1008 // None of the exceptions triggered; return true to indicate an
1009 // uninitialized field was used.
1010 *L = ME->getMemberLoc();
1011 return true;
1012 }
1013 }
1014 bool found = false;
1015 for (Stmt::const_child_iterator it = S->child_begin();
1016 it != S->child_end() && found == false;
1017 ++it) {
1018 if (isa<CallExpr>(S)) {
1019 // Do not descend into function calls or constructors, as the use
1020 // of an uninitialized field may be valid. One would have to inspect
1021 // the contents of the function/ctor to determine if it is safe or not.
1022 // i.e. Pass-by-value is never safe, but pass-by-reference and pointers
1023 // may be safe, depending on what the function/ctor does.
1024 continue;
1025 }
1026 found = InitExprContainsUninitializedFields(*it, LhsField, L);
1027 }
1028 return found;
1029}
1030
Eli Friedman59c04372009-07-29 19:44:27 +00001031Sema::MemInitResult
1032Sema::BuildMemberInitializer(FieldDecl *Member, Expr **Args,
1033 unsigned NumArgs, SourceLocation IdLoc,
1034 SourceLocation RParenLoc) {
Anders Carlssonf8a9a792009-11-13 19:21:49 +00001035 // FIXME: CXXBaseOrMemberInitializer should only contain a single
1036 // subexpression so we can wrap it in a CXXExprWithTemporaries if necessary.
1037 ExprTemporaries.clear();
1038
John McCallb4190042009-11-04 23:02:40 +00001039 // Diagnose value-uses of fields to initialize themselves, e.g.
1040 // foo(foo)
1041 // where foo is not also a parameter to the constructor.
John McCall6aee6212009-11-04 23:13:52 +00001042 // TODO: implement -Wuninitialized and fold this into that framework.
John McCallb4190042009-11-04 23:02:40 +00001043 for (unsigned i = 0; i < NumArgs; ++i) {
1044 SourceLocation L;
1045 if (InitExprContainsUninitializedFields(Args[i], Member, &L)) {
1046 // FIXME: Return true in the case when other fields are used before being
1047 // uninitialized. For example, let this field be the i'th field. When
1048 // initializing the i'th field, throw a warning if any of the >= i'th
1049 // fields are used, as they are not yet initialized.
1050 // Right now we are only handling the case where the i'th field uses
1051 // itself in its initializer.
1052 Diag(L, diag::warn_field_is_uninit);
1053 }
1054 }
1055
Eli Friedman59c04372009-07-29 19:44:27 +00001056 bool HasDependentArg = false;
1057 for (unsigned i = 0; i < NumArgs; i++)
1058 HasDependentArg |= Args[i]->isTypeDependent();
1059
1060 CXXConstructorDecl *C = 0;
1061 QualType FieldType = Member->getType();
1062 if (const ArrayType *Array = Context.getAsArrayType(FieldType))
1063 FieldType = Array->getElementType();
1064 if (FieldType->isDependentType()) {
1065 // Can't check init for dependent type.
John McCall6aee6212009-11-04 23:13:52 +00001066 } else if (FieldType->isRecordType()) {
1067 // Member is a record (struct/union/class), so pass the initializer
1068 // arguments down to the record's constructor.
Douglas Gregor39da0b82009-09-09 23:08:42 +00001069 if (!HasDependentArg) {
1070 ASTOwningVector<&ActionBase::DeleteExpr> ConstructorArgs(*this);
1071
1072 C = PerformInitializationByConstructor(FieldType,
1073 MultiExprArg(*this,
1074 (void**)Args,
1075 NumArgs),
1076 IdLoc,
1077 SourceRange(IdLoc, RParenLoc),
1078 Member->getDeclName(), IK_Direct,
1079 ConstructorArgs);
1080
1081 if (C) {
1082 // Take over the constructor arguments as our own.
1083 NumArgs = ConstructorArgs.size();
1084 Args = (Expr **)ConstructorArgs.take();
1085 }
1086 }
Fariborz Jahanian636a0ff2009-09-02 17:10:17 +00001087 } else if (NumArgs != 1 && NumArgs != 0) {
John McCall6aee6212009-11-04 23:13:52 +00001088 // The member type is not a record type (or an array of record
1089 // types), so it can be only be default- or copy-initialized.
Mike Stump1eb44332009-09-09 15:08:12 +00001090 return Diag(IdLoc, diag::err_mem_initializer_mismatch)
Eli Friedman59c04372009-07-29 19:44:27 +00001091 << Member->getDeclName() << SourceRange(IdLoc, RParenLoc);
1092 } else if (!HasDependentArg) {
Fariborz Jahanian636a0ff2009-09-02 17:10:17 +00001093 Expr *NewExp;
1094 if (NumArgs == 0) {
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001095 if (FieldType->isReferenceType()) {
1096 Diag(IdLoc, diag::err_null_intialized_reference_member)
1097 << Member->getDeclName();
1098 return Diag(Member->getLocation(), diag::note_declared_at);
1099 }
Fariborz Jahanian636a0ff2009-09-02 17:10:17 +00001100 NewExp = new (Context) CXXZeroInitValueExpr(FieldType, IdLoc, RParenLoc);
1101 NumArgs = 1;
1102 }
1103 else
1104 NewExp = (Expr*)Args[0];
Eli Friedman59c04372009-07-29 19:44:27 +00001105 if (PerformCopyInitialization(NewExp, FieldType, "passing"))
1106 return true;
1107 Args[0] = NewExp;
Douglas Gregor7ad83902008-11-05 04:29:56 +00001108 }
Anders Carlssonf8a9a792009-11-13 19:21:49 +00001109
1110 // FIXME: CXXBaseOrMemberInitializer should only contain a single
1111 // subexpression so we can wrap it in a CXXExprWithTemporaries if necessary.
1112 ExprTemporaries.clear();
1113
Eli Friedman59c04372009-07-29 19:44:27 +00001114 // FIXME: Perform direct initialization of the member.
Mike Stump1eb44332009-09-09 15:08:12 +00001115 return new (Context) CXXBaseOrMemberInitializer(Member, (Expr **)Args,
Anders Carlsson8c57a662009-08-29 01:31:33 +00001116 NumArgs, C, IdLoc, RParenLoc);
Eli Friedman59c04372009-07-29 19:44:27 +00001117}
1118
1119Sema::MemInitResult
1120Sema::BuildBaseInitializer(QualType BaseType, Expr **Args,
1121 unsigned NumArgs, SourceLocation IdLoc,
1122 SourceLocation RParenLoc, CXXRecordDecl *ClassDecl) {
1123 bool HasDependentArg = false;
1124 for (unsigned i = 0; i < NumArgs; i++)
1125 HasDependentArg |= Args[i]->isTypeDependent();
1126
1127 if (!BaseType->isDependentType()) {
1128 if (!BaseType->isRecordType())
1129 return Diag(IdLoc, diag::err_base_init_does_not_name_class)
1130 << BaseType << SourceRange(IdLoc, RParenLoc);
1131
1132 // C++ [class.base.init]p2:
1133 // [...] Unless the mem-initializer-id names a nonstatic data
1134 // member of the constructor’s class or a direct or virtual base
1135 // of that class, the mem-initializer is ill-formed. A
1136 // mem-initializer-list can initialize a base class using any
1137 // name that denotes that base class type.
Mike Stump1eb44332009-09-09 15:08:12 +00001138
Eli Friedman59c04372009-07-29 19:44:27 +00001139 // First, check for a direct base class.
1140 const CXXBaseSpecifier *DirectBaseSpec = 0;
1141 for (CXXRecordDecl::base_class_const_iterator Base =
1142 ClassDecl->bases_begin(); Base != ClassDecl->bases_end(); ++Base) {
Douglas Gregora4923eb2009-11-16 21:35:15 +00001143 if (Context.hasSameUnqualifiedType(BaseType, Base->getType())) {
Eli Friedman59c04372009-07-29 19:44:27 +00001144 // We found a direct base of this type. That's what we're
1145 // initializing.
1146 DirectBaseSpec = &*Base;
1147 break;
1148 }
1149 }
Mike Stump1eb44332009-09-09 15:08:12 +00001150
Eli Friedman59c04372009-07-29 19:44:27 +00001151 // Check for a virtual base class.
1152 // FIXME: We might be able to short-circuit this if we know in advance that
1153 // there are no virtual bases.
1154 const CXXBaseSpecifier *VirtualBaseSpec = 0;
1155 if (!DirectBaseSpec || !DirectBaseSpec->isVirtual()) {
1156 // We haven't found a base yet; search the class hierarchy for a
1157 // virtual base class.
Douglas Gregora8f32e02009-10-06 17:59:45 +00001158 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
1159 /*DetectVirtual=*/false);
Eli Friedman59c04372009-07-29 19:44:27 +00001160 if (IsDerivedFrom(Context.getTypeDeclType(ClassDecl), BaseType, Paths)) {
Douglas Gregora8f32e02009-10-06 17:59:45 +00001161 for (CXXBasePaths::paths_iterator Path = Paths.begin();
Eli Friedman59c04372009-07-29 19:44:27 +00001162 Path != Paths.end(); ++Path) {
1163 if (Path->back().Base->isVirtual()) {
1164 VirtualBaseSpec = Path->back().Base;
1165 break;
1166 }
Douglas Gregor7ad83902008-11-05 04:29:56 +00001167 }
1168 }
1169 }
Eli Friedman59c04372009-07-29 19:44:27 +00001170
1171 // C++ [base.class.init]p2:
1172 // If a mem-initializer-id is ambiguous because it designates both
1173 // a direct non-virtual base class and an inherited virtual base
1174 // class, the mem-initializer is ill-formed.
1175 if (DirectBaseSpec && VirtualBaseSpec)
1176 return Diag(IdLoc, diag::err_base_init_direct_and_virtual)
1177 << BaseType << SourceRange(IdLoc, RParenLoc);
1178 // C++ [base.class.init]p2:
1179 // Unless the mem-initializer-id names a nonstatic data membeer of the
1180 // constructor's class ot a direst or virtual base of that class, the
1181 // mem-initializer is ill-formed.
1182 if (!DirectBaseSpec && !VirtualBaseSpec)
1183 return Diag(IdLoc, diag::err_not_direct_base_or_virtual)
1184 << BaseType << ClassDecl->getNameAsCString()
1185 << SourceRange(IdLoc, RParenLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001186 }
1187
Fariborz Jahaniand7b27e12009-07-23 00:42:24 +00001188 CXXConstructorDecl *C = 0;
Eli Friedman59c04372009-07-29 19:44:27 +00001189 if (!BaseType->isDependentType() && !HasDependentArg) {
1190 DeclarationName Name = Context.DeclarationNames.getCXXConstructorName(
Douglas Gregor3eaa9ff2009-11-08 07:12:55 +00001191 Context.getCanonicalType(BaseType).getUnqualifiedType());
Douglas Gregor39da0b82009-09-09 23:08:42 +00001192 ASTOwningVector<&ActionBase::DeleteExpr> ConstructorArgs(*this);
1193
1194 C = PerformInitializationByConstructor(BaseType,
1195 MultiExprArg(*this,
1196 (void**)Args, NumArgs),
Mike Stump1eb44332009-09-09 15:08:12 +00001197 IdLoc, SourceRange(IdLoc, RParenLoc),
Douglas Gregor39da0b82009-09-09 23:08:42 +00001198 Name, IK_Direct,
1199 ConstructorArgs);
1200 if (C) {
1201 // Take over the constructor arguments as our own.
1202 NumArgs = ConstructorArgs.size();
1203 Args = (Expr **)ConstructorArgs.take();
1204 }
Eli Friedman59c04372009-07-29 19:44:27 +00001205 }
1206
Anders Carlssonf8a9a792009-11-13 19:21:49 +00001207 // FIXME: CXXBaseOrMemberInitializer should only contain a single
1208 // subexpression so we can wrap it in a CXXExprWithTemporaries if necessary.
1209 ExprTemporaries.clear();
1210
Mike Stump1eb44332009-09-09 15:08:12 +00001211 return new (Context) CXXBaseOrMemberInitializer(BaseType, (Expr **)Args,
Anders Carlsson8c57a662009-08-29 01:31:33 +00001212 NumArgs, C, IdLoc, RParenLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +00001213}
1214
Eli Friedman80c30da2009-11-09 19:20:36 +00001215bool
Anders Carlsson0ebb6d32009-10-29 15:46:07 +00001216Sema::SetBaseOrMemberInitializers(CXXConstructorDecl *Constructor,
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001217 CXXBaseOrMemberInitializer **Initializers,
1218 unsigned NumInitializers,
Eli Friedman49c16da2009-11-09 01:05:47 +00001219 bool IsImplicitConstructor) {
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001220 // We need to build the initializer AST according to order of construction
1221 // and not what user specified in the Initializers list.
1222 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Constructor->getDeclContext());
1223 llvm::SmallVector<CXXBaseOrMemberInitializer*, 32> AllToInit;
1224 llvm::DenseMap<const void *, CXXBaseOrMemberInitializer*> AllBaseFields;
1225 bool HasDependentBaseInit = false;
Eli Friedman80c30da2009-11-09 19:20:36 +00001226 bool HadError = false;
Mike Stump1eb44332009-09-09 15:08:12 +00001227
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001228 for (unsigned i = 0; i < NumInitializers; i++) {
1229 CXXBaseOrMemberInitializer *Member = Initializers[i];
1230 if (Member->isBaseInitializer()) {
1231 if (Member->getBaseClass()->isDependentType())
1232 HasDependentBaseInit = true;
1233 AllBaseFields[Member->getBaseClass()->getAs<RecordType>()] = Member;
1234 } else {
1235 AllBaseFields[Member->getMember()] = Member;
1236 }
1237 }
Mike Stump1eb44332009-09-09 15:08:12 +00001238
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001239 if (HasDependentBaseInit) {
1240 // FIXME. This does not preserve the ordering of the initializers.
1241 // Try (with -Wreorder)
1242 // template<class X> struct A {};
Mike Stump1eb44332009-09-09 15:08:12 +00001243 // template<class X> struct B : A<X> {
1244 // B() : x1(10), A<X>() {}
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001245 // int x1;
1246 // };
1247 // B<int> x;
1248 // On seeing one dependent type, we should essentially exit this routine
1249 // while preserving user-declared initializer list. When this routine is
1250 // called during instantiatiation process, this routine will rebuild the
John McCall6aee6212009-11-04 23:13:52 +00001251 // ordered initializer list correctly.
Mike Stump1eb44332009-09-09 15:08:12 +00001252
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001253 // If we have a dependent base initialization, we can't determine the
1254 // association between initializers and bases; just dump the known
1255 // initializers into the list, and don't try to deal with other bases.
1256 for (unsigned i = 0; i < NumInitializers; i++) {
1257 CXXBaseOrMemberInitializer *Member = Initializers[i];
1258 if (Member->isBaseInitializer())
1259 AllToInit.push_back(Member);
1260 }
1261 } else {
1262 // Push virtual bases before others.
1263 for (CXXRecordDecl::base_class_iterator VBase =
1264 ClassDecl->vbases_begin(),
1265 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
1266 if (VBase->getType()->isDependentType())
1267 continue;
Douglas Gregorc07a4942009-11-15 08:51:10 +00001268 if (CXXBaseOrMemberInitializer *Value
1269 = AllBaseFields.lookup(VBase->getType()->getAs<RecordType>())) {
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001270 AllToInit.push_back(Value);
Fariborz Jahanian9d436202009-09-03 21:32:41 +00001271 }
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001272 else {
Mike Stump1eb44332009-09-09 15:08:12 +00001273 CXXRecordDecl *VBaseDecl =
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001274 cast<CXXRecordDecl>(VBase->getType()->getAs<RecordType>()->getDecl());
Anders Carlsson0ebb6d32009-10-29 15:46:07 +00001275 assert(VBaseDecl && "SetBaseOrMemberInitializers - VBaseDecl null");
Fariborz Jahanian9d436202009-09-03 21:32:41 +00001276 CXXConstructorDecl *Ctor = VBaseDecl->getDefaultConstructor(Context);
Anders Carlsson0ebb6d32009-10-29 15:46:07 +00001277 if (!Ctor) {
Eli Friedman49c16da2009-11-09 01:05:47 +00001278 Diag(Constructor->getLocation(), diag::err_missing_default_ctor)
1279 << (int)IsImplicitConstructor << Context.getTagDeclType(ClassDecl)
1280 << 0 << VBase->getType();
1281 Diag(VBaseDecl->getLocation(), diag::note_previous_class_decl)
1282 << Context.getTagDeclType(VBaseDecl);
Eli Friedman80c30da2009-11-09 19:20:36 +00001283 HadError = true;
Anders Carlsson0ebb6d32009-10-29 15:46:07 +00001284 continue;
1285 }
Fariborz Jahanian9d436202009-09-03 21:32:41 +00001286
Anders Carlsson0ebb6d32009-10-29 15:46:07 +00001287 ASTOwningVector<&ActionBase::DeleteExpr> CtorArgs(*this);
1288 if (CompleteConstructorCall(Ctor, MultiExprArg(*this, 0, 0),
1289 Constructor->getLocation(), CtorArgs))
1290 continue;
1291
1292 MarkDeclarationReferenced(Constructor->getLocation(), Ctor);
1293
Anders Carlsson8db68da2009-11-13 20:11:49 +00001294 // FIXME: CXXBaseOrMemberInitializer should only contain a single
1295 // subexpression so we can wrap it in a CXXExprWithTemporaries if necessary.
1296 ExprTemporaries.clear();
Mike Stump1eb44332009-09-09 15:08:12 +00001297 CXXBaseOrMemberInitializer *Member =
Anders Carlsson0ebb6d32009-10-29 15:46:07 +00001298 new (Context) CXXBaseOrMemberInitializer(VBase->getType(),
1299 CtorArgs.takeAs<Expr>(),
1300 CtorArgs.size(), Ctor,
1301 SourceLocation(),
1302 SourceLocation());
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001303 AllToInit.push_back(Member);
1304 }
1305 }
Mike Stump1eb44332009-09-09 15:08:12 +00001306
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001307 for (CXXRecordDecl::base_class_iterator Base =
1308 ClassDecl->bases_begin(),
1309 E = ClassDecl->bases_end(); Base != E; ++Base) {
1310 // Virtuals are in the virtual base list and already constructed.
1311 if (Base->isVirtual())
1312 continue;
1313 // Skip dependent types.
1314 if (Base->getType()->isDependentType())
1315 continue;
Douglas Gregorc07a4942009-11-15 08:51:10 +00001316 if (CXXBaseOrMemberInitializer *Value
1317 = AllBaseFields.lookup(Base->getType()->getAs<RecordType>())) {
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001318 AllToInit.push_back(Value);
Fariborz Jahanian9d436202009-09-03 21:32:41 +00001319 }
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001320 else {
Mike Stump1eb44332009-09-09 15:08:12 +00001321 CXXRecordDecl *BaseDecl =
Fariborz Jahanian9d436202009-09-03 21:32:41 +00001322 cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Anders Carlsson0ebb6d32009-10-29 15:46:07 +00001323 assert(BaseDecl && "SetBaseOrMemberInitializers - BaseDecl null");
Fariborz Jahanian9d436202009-09-03 21:32:41 +00001324 CXXConstructorDecl *Ctor = BaseDecl->getDefaultConstructor(Context);
Anders Carlsson0ebb6d32009-10-29 15:46:07 +00001325 if (!Ctor) {
Eli Friedman49c16da2009-11-09 01:05:47 +00001326 Diag(Constructor->getLocation(), diag::err_missing_default_ctor)
1327 << (int)IsImplicitConstructor << Context.getTagDeclType(ClassDecl)
1328 << 0 << Base->getType();
1329 Diag(BaseDecl->getLocation(), diag::note_previous_class_decl)
1330 << Context.getTagDeclType(BaseDecl);
Eli Friedman80c30da2009-11-09 19:20:36 +00001331 HadError = true;
Anders Carlsson0ebb6d32009-10-29 15:46:07 +00001332 continue;
1333 }
1334
1335 ASTOwningVector<&ActionBase::DeleteExpr> CtorArgs(*this);
1336 if (CompleteConstructorCall(Ctor, MultiExprArg(*this, 0, 0),
1337 Constructor->getLocation(), CtorArgs))
1338 continue;
1339
1340 MarkDeclarationReferenced(Constructor->getLocation(), Ctor);
Fariborz Jahanian9d436202009-09-03 21:32:41 +00001341
Anders Carlsson8db68da2009-11-13 20:11:49 +00001342 // FIXME: CXXBaseOrMemberInitializer should only contain a single
1343 // subexpression so we can wrap it in a CXXExprWithTemporaries if necessary.
1344 ExprTemporaries.clear();
Mike Stump1eb44332009-09-09 15:08:12 +00001345 CXXBaseOrMemberInitializer *Member =
Anders Carlsson0ebb6d32009-10-29 15:46:07 +00001346 new (Context) CXXBaseOrMemberInitializer(Base->getType(),
1347 CtorArgs.takeAs<Expr>(),
1348 CtorArgs.size(), Ctor,
1349 SourceLocation(),
1350 SourceLocation());
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001351 AllToInit.push_back(Member);
1352 }
1353 }
1354 }
Mike Stump1eb44332009-09-09 15:08:12 +00001355
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001356 // non-static data members.
1357 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
1358 E = ClassDecl->field_end(); Field != E; ++Field) {
1359 if ((*Field)->isAnonymousStructOrUnion()) {
Mike Stump1eb44332009-09-09 15:08:12 +00001360 if (const RecordType *FieldClassType =
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001361 Field->getType()->getAs<RecordType>()) {
1362 CXXRecordDecl *FieldClassDecl
Douglas Gregorafe7ec22009-11-13 18:34:26 +00001363 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Mike Stump1eb44332009-09-09 15:08:12 +00001364 for (RecordDecl::field_iterator FA = FieldClassDecl->field_begin(),
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001365 EA = FieldClassDecl->field_end(); FA != EA; FA++) {
1366 if (CXXBaseOrMemberInitializer *Value = AllBaseFields.lookup(*FA)) {
1367 // 'Member' is the anonymous union field and 'AnonUnionMember' is
1368 // set to the anonymous union data member used in the initializer
1369 // list.
1370 Value->setMember(*Field);
1371 Value->setAnonUnionMember(*FA);
1372 AllToInit.push_back(Value);
1373 break;
1374 }
1375 }
1376 }
1377 continue;
1378 }
1379 if (CXXBaseOrMemberInitializer *Value = AllBaseFields.lookup(*Field)) {
1380 AllToInit.push_back(Value);
1381 continue;
1382 }
Mike Stump1eb44332009-09-09 15:08:12 +00001383
Eli Friedman49c16da2009-11-09 01:05:47 +00001384 if ((*Field)->getType()->isDependentType())
Douglas Gregor1fe6b912009-11-04 17:16:11 +00001385 continue;
Douglas Gregor1fe6b912009-11-04 17:16:11 +00001386
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001387 QualType FT = Context.getBaseElementType((*Field)->getType());
1388 if (const RecordType* RT = FT->getAs<RecordType>()) {
1389 CXXConstructorDecl *Ctor =
1390 cast<CXXRecordDecl>(RT->getDecl())->getDefaultConstructor(Context);
Douglas Gregor1fe6b912009-11-04 17:16:11 +00001391 if (!Ctor) {
Eli Friedman49c16da2009-11-09 01:05:47 +00001392 Diag(Constructor->getLocation(), diag::err_missing_default_ctor)
1393 << (int)IsImplicitConstructor << Context.getTagDeclType(ClassDecl)
1394 << 1 << (*Field)->getDeclName();
1395 Diag(Field->getLocation(), diag::note_field_decl);
1396 Diag(RT->getDecl()->getLocation(), diag::note_previous_class_decl)
1397 << Context.getTagDeclType(RT->getDecl());
Eli Friedman80c30da2009-11-09 19:20:36 +00001398 HadError = true;
Anders Carlsson0ebb6d32009-10-29 15:46:07 +00001399 continue;
1400 }
Eli Friedmane73d3bc2009-11-16 23:07:59 +00001401
1402 if (FT.isConstQualified() && Ctor->isTrivial()) {
1403 Diag(Constructor->getLocation(), diag::err_unintialized_member_in_ctor)
1404 << (int)IsImplicitConstructor << Context.getTagDeclType(ClassDecl)
1405 << 1 << (*Field)->getDeclName();
1406 Diag((*Field)->getLocation(), diag::note_declared_at);
1407 HadError = true;
1408 }
1409
1410 // Don't create initializers for trivial constructors, since they don't
1411 // actually need to be run.
1412 if (Ctor->isTrivial())
1413 continue;
1414
Anders Carlsson0ebb6d32009-10-29 15:46:07 +00001415 ASTOwningVector<&ActionBase::DeleteExpr> CtorArgs(*this);
1416 if (CompleteConstructorCall(Ctor, MultiExprArg(*this, 0, 0),
1417 Constructor->getLocation(), CtorArgs))
1418 continue;
1419
Anders Carlsson8db68da2009-11-13 20:11:49 +00001420 // FIXME: CXXBaseOrMemberInitializer should only contain a single
1421 // subexpression so we can wrap it in a CXXExprWithTemporaries if necessary.
1422 ExprTemporaries.clear();
Mike Stump1eb44332009-09-09 15:08:12 +00001423 CXXBaseOrMemberInitializer *Member =
Anders Carlsson0ebb6d32009-10-29 15:46:07 +00001424 new (Context) CXXBaseOrMemberInitializer(*Field,CtorArgs.takeAs<Expr>(),
1425 CtorArgs.size(), Ctor,
1426 SourceLocation(),
1427 SourceLocation());
1428
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001429 AllToInit.push_back(Member);
Eli Friedman49c16da2009-11-09 01:05:47 +00001430 MarkDeclarationReferenced(Constructor->getLocation(), Ctor);
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001431 }
1432 else if (FT->isReferenceType()) {
1433 Diag(Constructor->getLocation(), diag::err_unintialized_member_in_ctor)
Eli Friedman49c16da2009-11-09 01:05:47 +00001434 << (int)IsImplicitConstructor << Context.getTagDeclType(ClassDecl)
1435 << 0 << (*Field)->getDeclName();
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001436 Diag((*Field)->getLocation(), diag::note_declared_at);
Eli Friedman80c30da2009-11-09 19:20:36 +00001437 HadError = true;
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001438 }
1439 else if (FT.isConstQualified()) {
1440 Diag(Constructor->getLocation(), diag::err_unintialized_member_in_ctor)
Eli Friedman49c16da2009-11-09 01:05:47 +00001441 << (int)IsImplicitConstructor << Context.getTagDeclType(ClassDecl)
1442 << 1 << (*Field)->getDeclName();
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001443 Diag((*Field)->getLocation(), diag::note_declared_at);
Eli Friedman80c30da2009-11-09 19:20:36 +00001444 HadError = true;
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001445 }
1446 }
Mike Stump1eb44332009-09-09 15:08:12 +00001447
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001448 NumInitializers = AllToInit.size();
1449 if (NumInitializers > 0) {
1450 Constructor->setNumBaseOrMemberInitializers(NumInitializers);
1451 CXXBaseOrMemberInitializer **baseOrMemberInitializers =
1452 new (Context) CXXBaseOrMemberInitializer*[NumInitializers];
Mike Stump1eb44332009-09-09 15:08:12 +00001453
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001454 Constructor->setBaseOrMemberInitializers(baseOrMemberInitializers);
1455 for (unsigned Idx = 0; Idx < NumInitializers; ++Idx)
1456 baseOrMemberInitializers[Idx] = AllToInit[Idx];
1457 }
Eli Friedman80c30da2009-11-09 19:20:36 +00001458
1459 return HadError;
Fariborz Jahanian80545ad2009-09-03 19:36:46 +00001460}
1461
Eli Friedman6347f422009-07-21 19:28:10 +00001462static void *GetKeyForTopLevelField(FieldDecl *Field) {
1463 // For anonymous unions, use the class declaration as the key.
Ted Kremenek6217b802009-07-29 21:53:49 +00001464 if (const RecordType *RT = Field->getType()->getAs<RecordType>()) {
Eli Friedman6347f422009-07-21 19:28:10 +00001465 if (RT->getDecl()->isAnonymousStructOrUnion())
1466 return static_cast<void *>(RT->getDecl());
1467 }
1468 return static_cast<void *>(Field);
1469}
1470
Anders Carlssoncdc83c72009-09-01 06:22:14 +00001471static void *GetKeyForBase(QualType BaseType) {
1472 if (const RecordType *RT = BaseType->getAs<RecordType>())
1473 return (void *)RT;
Mike Stump1eb44332009-09-09 15:08:12 +00001474
Anders Carlssoncdc83c72009-09-01 06:22:14 +00001475 assert(0 && "Unexpected base type!");
1476 return 0;
1477}
1478
Mike Stump1eb44332009-09-09 15:08:12 +00001479static void *GetKeyForMember(CXXBaseOrMemberInitializer *Member,
Anders Carlssoncdc83c72009-09-01 06:22:14 +00001480 bool MemberMaybeAnon = false) {
Eli Friedman6347f422009-07-21 19:28:10 +00001481 // For fields injected into the class via declaration of an anonymous union,
1482 // use its anonymous union class declaration as the unique key.
Anders Carlssoncdc83c72009-09-01 06:22:14 +00001483 if (Member->isMemberInitializer()) {
1484 FieldDecl *Field = Member->getMember();
Mike Stump1eb44332009-09-09 15:08:12 +00001485
Eli Friedman49c16da2009-11-09 01:05:47 +00001486 // After SetBaseOrMemberInitializers call, Field is the anonymous union
Mike Stump1eb44332009-09-09 15:08:12 +00001487 // data member of the class. Data member used in the initializer list is
Fariborz Jahaniane6494122009-08-11 18:49:54 +00001488 // in AnonUnionMember field.
1489 if (MemberMaybeAnon && Field->isAnonymousStructOrUnion())
1490 Field = Member->getAnonUnionMember();
Eli Friedman6347f422009-07-21 19:28:10 +00001491 if (Field->getDeclContext()->isRecord()) {
1492 RecordDecl *RD = cast<RecordDecl>(Field->getDeclContext());
1493 if (RD->isAnonymousStructOrUnion())
1494 return static_cast<void *>(RD);
1495 }
1496 return static_cast<void *>(Field);
1497 }
Mike Stump1eb44332009-09-09 15:08:12 +00001498
Anders Carlssoncdc83c72009-09-01 06:22:14 +00001499 return GetKeyForBase(QualType(Member->getBaseClass(), 0));
Eli Friedman6347f422009-07-21 19:28:10 +00001500}
1501
John McCall6aee6212009-11-04 23:13:52 +00001502/// ActOnMemInitializers - Handle the member initializers for a constructor.
Mike Stump1eb44332009-09-09 15:08:12 +00001503void Sema::ActOnMemInitializers(DeclPtrTy ConstructorDecl,
Anders Carlssona7b35212009-03-25 02:58:17 +00001504 SourceLocation ColonLoc,
1505 MemInitTy **MemInits, unsigned NumMemInits) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00001506 if (!ConstructorDecl)
1507 return;
Douglas Gregorefd5bda2009-08-24 11:57:43 +00001508
1509 AdjustDeclIfTemplate(ConstructorDecl);
Mike Stump1eb44332009-09-09 15:08:12 +00001510
1511 CXXConstructorDecl *Constructor
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00001512 = dyn_cast<CXXConstructorDecl>(ConstructorDecl.getAs<Decl>());
Mike Stump1eb44332009-09-09 15:08:12 +00001513
Anders Carlssona7b35212009-03-25 02:58:17 +00001514 if (!Constructor) {
1515 Diag(ColonLoc, diag::err_only_constructors_take_base_inits);
1516 return;
1517 }
Mike Stump1eb44332009-09-09 15:08:12 +00001518
Anders Carlsson8d4c5ea2009-08-27 05:57:30 +00001519 if (!Constructor->isDependentContext()) {
1520 llvm::DenseMap<void*, CXXBaseOrMemberInitializer *>Members;
1521 bool err = false;
1522 for (unsigned i = 0; i < NumMemInits; i++) {
Mike Stump1eb44332009-09-09 15:08:12 +00001523 CXXBaseOrMemberInitializer *Member =
Anders Carlsson8d4c5ea2009-08-27 05:57:30 +00001524 static_cast<CXXBaseOrMemberInitializer*>(MemInits[i]);
1525 void *KeyToMember = GetKeyForMember(Member);
1526 CXXBaseOrMemberInitializer *&PrevMember = Members[KeyToMember];
1527 if (!PrevMember) {
1528 PrevMember = Member;
1529 continue;
1530 }
1531 if (FieldDecl *Field = Member->getMember())
Mike Stump1eb44332009-09-09 15:08:12 +00001532 Diag(Member->getSourceLocation(),
Anders Carlsson8d4c5ea2009-08-27 05:57:30 +00001533 diag::error_multiple_mem_initialization)
1534 << Field->getNameAsString();
1535 else {
1536 Type *BaseClass = Member->getBaseClass();
1537 assert(BaseClass && "ActOnMemInitializers - neither field or base");
Mike Stump1eb44332009-09-09 15:08:12 +00001538 Diag(Member->getSourceLocation(),
Anders Carlsson8d4c5ea2009-08-27 05:57:30 +00001539 diag::error_multiple_base_initialization)
John McCallbf1cc052009-09-29 23:03:30 +00001540 << QualType(BaseClass, 0);
Anders Carlsson8d4c5ea2009-08-27 05:57:30 +00001541 }
1542 Diag(PrevMember->getSourceLocation(), diag::note_previous_initializer)
1543 << 0;
1544 err = true;
1545 }
Mike Stump1eb44332009-09-09 15:08:12 +00001546
Anders Carlsson8d4c5ea2009-08-27 05:57:30 +00001547 if (err)
1548 return;
1549 }
Mike Stump1eb44332009-09-09 15:08:12 +00001550
Eli Friedman49c16da2009-11-09 01:05:47 +00001551 SetBaseOrMemberInitializers(Constructor,
Mike Stump1eb44332009-09-09 15:08:12 +00001552 reinterpret_cast<CXXBaseOrMemberInitializer **>(MemInits),
Eli Friedman49c16da2009-11-09 01:05:47 +00001553 NumMemInits, false);
Mike Stump1eb44332009-09-09 15:08:12 +00001554
Anders Carlsson8d4c5ea2009-08-27 05:57:30 +00001555 if (Constructor->isDependentContext())
1556 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001557
1558 if (Diags.getDiagnosticLevel(diag::warn_base_initialized) ==
Anders Carlsson5c36fb22009-08-27 05:45:01 +00001559 Diagnostic::Ignored &&
Mike Stump1eb44332009-09-09 15:08:12 +00001560 Diags.getDiagnosticLevel(diag::warn_field_initialized) ==
Anders Carlsson5c36fb22009-08-27 05:45:01 +00001561 Diagnostic::Ignored)
1562 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001563
Anders Carlsson5c36fb22009-08-27 05:45:01 +00001564 // Also issue warning if order of ctor-initializer list does not match order
1565 // of 1) base class declarations and 2) order of non-static data members.
1566 llvm::SmallVector<const void*, 32> AllBaseOrMembers;
Mike Stump1eb44332009-09-09 15:08:12 +00001567
Anders Carlsson5c36fb22009-08-27 05:45:01 +00001568 CXXRecordDecl *ClassDecl
1569 = cast<CXXRecordDecl>(Constructor->getDeclContext());
1570 // Push virtual bases before others.
1571 for (CXXRecordDecl::base_class_iterator VBase =
1572 ClassDecl->vbases_begin(),
1573 E = ClassDecl->vbases_end(); VBase != E; ++VBase)
Anders Carlssoncdc83c72009-09-01 06:22:14 +00001574 AllBaseOrMembers.push_back(GetKeyForBase(VBase->getType()));
Mike Stump1eb44332009-09-09 15:08:12 +00001575
Anders Carlsson5c36fb22009-08-27 05:45:01 +00001576 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
1577 E = ClassDecl->bases_end(); Base != E; ++Base) {
1578 // Virtuals are alread in the virtual base list and are constructed
1579 // first.
1580 if (Base->isVirtual())
1581 continue;
Anders Carlssoncdc83c72009-09-01 06:22:14 +00001582 AllBaseOrMembers.push_back(GetKeyForBase(Base->getType()));
Anders Carlsson5c36fb22009-08-27 05:45:01 +00001583 }
Mike Stump1eb44332009-09-09 15:08:12 +00001584
Anders Carlsson5c36fb22009-08-27 05:45:01 +00001585 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
1586 E = ClassDecl->field_end(); Field != E; ++Field)
1587 AllBaseOrMembers.push_back(GetKeyForTopLevelField(*Field));
Mike Stump1eb44332009-09-09 15:08:12 +00001588
Anders Carlsson5c36fb22009-08-27 05:45:01 +00001589 int Last = AllBaseOrMembers.size();
1590 int curIndex = 0;
1591 CXXBaseOrMemberInitializer *PrevMember = 0;
1592 for (unsigned i = 0; i < NumMemInits; i++) {
Mike Stump1eb44332009-09-09 15:08:12 +00001593 CXXBaseOrMemberInitializer *Member =
Anders Carlsson5c36fb22009-08-27 05:45:01 +00001594 static_cast<CXXBaseOrMemberInitializer*>(MemInits[i]);
1595 void *MemberInCtorList = GetKeyForMember(Member, true);
Eli Friedman6347f422009-07-21 19:28:10 +00001596
Anders Carlsson5c36fb22009-08-27 05:45:01 +00001597 for (; curIndex < Last; curIndex++)
1598 if (MemberInCtorList == AllBaseOrMembers[curIndex])
1599 break;
1600 if (curIndex == Last) {
1601 assert(PrevMember && "Member not in member list?!");
1602 // Initializer as specified in ctor-initializer list is out of order.
1603 // Issue a warning diagnostic.
1604 if (PrevMember->isBaseInitializer()) {
1605 // Diagnostics is for an initialized base class.
1606 Type *BaseClass = PrevMember->getBaseClass();
1607 Diag(PrevMember->getSourceLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00001608 diag::warn_base_initialized)
John McCallbf1cc052009-09-29 23:03:30 +00001609 << QualType(BaseClass, 0);
Anders Carlsson5c36fb22009-08-27 05:45:01 +00001610 } else {
1611 FieldDecl *Field = PrevMember->getMember();
1612 Diag(PrevMember->getSourceLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00001613 diag::warn_field_initialized)
Anders Carlsson5c36fb22009-08-27 05:45:01 +00001614 << Field->getNameAsString();
Fariborz Jahanianeb96e122009-07-09 19:59:47 +00001615 }
Anders Carlsson5c36fb22009-08-27 05:45:01 +00001616 // Also the note!
1617 if (FieldDecl *Field = Member->getMember())
Mike Stump1eb44332009-09-09 15:08:12 +00001618 Diag(Member->getSourceLocation(),
Anders Carlsson5c36fb22009-08-27 05:45:01 +00001619 diag::note_fieldorbase_initialized_here) << 0
1620 << Field->getNameAsString();
1621 else {
1622 Type *BaseClass = Member->getBaseClass();
Mike Stump1eb44332009-09-09 15:08:12 +00001623 Diag(Member->getSourceLocation(),
Anders Carlsson5c36fb22009-08-27 05:45:01 +00001624 diag::note_fieldorbase_initialized_here) << 1
John McCallbf1cc052009-09-29 23:03:30 +00001625 << QualType(BaseClass, 0);
Anders Carlsson5c36fb22009-08-27 05:45:01 +00001626 }
1627 for (curIndex = 0; curIndex < Last; curIndex++)
Mike Stump1eb44332009-09-09 15:08:12 +00001628 if (MemberInCtorList == AllBaseOrMembers[curIndex])
Anders Carlsson5c36fb22009-08-27 05:45:01 +00001629 break;
Fariborz Jahanianeb96e122009-07-09 19:59:47 +00001630 }
Anders Carlsson5c36fb22009-08-27 05:45:01 +00001631 PrevMember = Member;
Fariborz Jahanianeb96e122009-07-09 19:59:47 +00001632 }
Anders Carlssona7b35212009-03-25 02:58:17 +00001633}
1634
Fariborz Jahanian34374e62009-09-03 23:18:17 +00001635void
Anders Carlsson9f853df2009-11-17 04:44:12 +00001636Sema::MarkBaseAndMemberDestructorsReferenced(CXXDestructorDecl *Destructor) {
1637 // Ignore dependent destructors.
1638 if (Destructor->isDependentContext())
1639 return;
1640
1641 CXXRecordDecl *ClassDecl = Destructor->getParent();
Mike Stump1eb44332009-09-09 15:08:12 +00001642
Anders Carlsson9f853df2009-11-17 04:44:12 +00001643 // Non-static data members.
1644 for (CXXRecordDecl::field_iterator I = ClassDecl->field_begin(),
1645 E = ClassDecl->field_end(); I != E; ++I) {
1646 FieldDecl *Field = *I;
1647
1648 QualType FieldType = Context.getBaseElementType(Field->getType());
1649
1650 const RecordType* RT = FieldType->getAs<RecordType>();
1651 if (!RT)
1652 continue;
1653
1654 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl());
1655 if (FieldClassDecl->hasTrivialDestructor())
1656 continue;
1657
1658 const CXXDestructorDecl *Dtor = FieldClassDecl->getDestructor(Context);
1659 MarkDeclarationReferenced(Destructor->getLocation(),
1660 const_cast<CXXDestructorDecl*>(Dtor));
1661 }
1662
1663 // Bases.
1664 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
1665 E = ClassDecl->bases_end(); Base != E; ++Base) {
1666 // Ignore virtual bases.
1667 if (Base->isVirtual())
1668 continue;
1669
1670 // Ignore trivial destructors.
1671 CXXRecordDecl *BaseClassDecl
1672 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
1673 if (BaseClassDecl->hasTrivialDestructor())
1674 continue;
1675
1676 const CXXDestructorDecl *Dtor = BaseClassDecl->getDestructor(Context);
1677 MarkDeclarationReferenced(Destructor->getLocation(),
1678 const_cast<CXXDestructorDecl*>(Dtor));
1679 }
1680
1681 // Virtual bases.
Fariborz Jahanian34374e62009-09-03 23:18:17 +00001682 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
1683 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
Anders Carlsson9f853df2009-11-17 04:44:12 +00001684 // Ignore trivial destructors.
Fariborz Jahanian34374e62009-09-03 23:18:17 +00001685 CXXRecordDecl *BaseClassDecl
1686 = cast<CXXRecordDecl>(VBase->getType()->getAs<RecordType>()->getDecl());
1687 if (BaseClassDecl->hasTrivialDestructor())
1688 continue;
Anders Carlsson9f853df2009-11-17 04:44:12 +00001689
1690 const CXXDestructorDecl *Dtor = BaseClassDecl->getDestructor(Context);
1691 MarkDeclarationReferenced(Destructor->getLocation(),
1692 const_cast<CXXDestructorDecl*>(Dtor));
Fariborz Jahanian34374e62009-09-03 23:18:17 +00001693 }
1694}
1695
Fariborz Jahanian393612e2009-07-21 22:36:06 +00001696void Sema::ActOnDefaultCtorInitializers(DeclPtrTy CDtorDecl) {
Fariborz Jahanian560de452009-07-15 22:34:08 +00001697 if (!CDtorDecl)
Fariborz Jahaniand01c9152009-07-14 18:24:21 +00001698 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001699
Douglas Gregorefd5bda2009-08-24 11:57:43 +00001700 AdjustDeclIfTemplate(CDtorDecl);
Mike Stump1eb44332009-09-09 15:08:12 +00001701
1702 if (CXXConstructorDecl *Constructor
Fariborz Jahanian560de452009-07-15 22:34:08 +00001703 = dyn_cast<CXXConstructorDecl>(CDtorDecl.getAs<Decl>()))
Eli Friedman49c16da2009-11-09 01:05:47 +00001704 SetBaseOrMemberInitializers(Constructor, 0, 0, false);
Fariborz Jahaniand01c9152009-07-14 18:24:21 +00001705}
1706
Anders Carlsson67e4dd22009-03-22 01:52:17 +00001707namespace {
1708 /// PureVirtualMethodCollector - traverses a class and its superclasses
1709 /// and determines if it has any pure virtual methods.
1710 class VISIBILITY_HIDDEN PureVirtualMethodCollector {
1711 ASTContext &Context;
1712
Sebastian Redldfe292d2009-03-22 21:28:55 +00001713 public:
Anders Carlsson67e4dd22009-03-22 01:52:17 +00001714 typedef llvm::SmallVector<const CXXMethodDecl*, 8> MethodList;
Sebastian Redldfe292d2009-03-22 21:28:55 +00001715
1716 private:
Anders Carlsson67e4dd22009-03-22 01:52:17 +00001717 MethodList Methods;
Mike Stump1eb44332009-09-09 15:08:12 +00001718
Anders Carlsson67e4dd22009-03-22 01:52:17 +00001719 void Collect(const CXXRecordDecl* RD, MethodList& Methods);
Mike Stump1eb44332009-09-09 15:08:12 +00001720
Anders Carlsson67e4dd22009-03-22 01:52:17 +00001721 public:
Mike Stump1eb44332009-09-09 15:08:12 +00001722 PureVirtualMethodCollector(ASTContext &Ctx, const CXXRecordDecl* RD)
Anders Carlsson67e4dd22009-03-22 01:52:17 +00001723 : Context(Ctx) {
Mike Stump1eb44332009-09-09 15:08:12 +00001724
Anders Carlsson67e4dd22009-03-22 01:52:17 +00001725 MethodList List;
1726 Collect(RD, List);
Mike Stump1eb44332009-09-09 15:08:12 +00001727
Anders Carlsson67e4dd22009-03-22 01:52:17 +00001728 // Copy the temporary list to methods, and make sure to ignore any
1729 // null entries.
1730 for (size_t i = 0, e = List.size(); i != e; ++i) {
1731 if (List[i])
1732 Methods.push_back(List[i]);
Mike Stump1eb44332009-09-09 15:08:12 +00001733 }
Anders Carlsson67e4dd22009-03-22 01:52:17 +00001734 }
Mike Stump1eb44332009-09-09 15:08:12 +00001735
Anders Carlsson4681ebd2009-03-22 20:18:17 +00001736 bool empty() const { return Methods.empty(); }
Mike Stump1eb44332009-09-09 15:08:12 +00001737
Anders Carlsson4681ebd2009-03-22 20:18:17 +00001738 MethodList::const_iterator methods_begin() { return Methods.begin(); }
1739 MethodList::const_iterator methods_end() { return Methods.end(); }
Anders Carlsson67e4dd22009-03-22 01:52:17 +00001740 };
Mike Stump1eb44332009-09-09 15:08:12 +00001741
1742 void PureVirtualMethodCollector::Collect(const CXXRecordDecl* RD,
Anders Carlsson67e4dd22009-03-22 01:52:17 +00001743 MethodList& Methods) {
1744 // First, collect the pure virtual methods for the base classes.
1745 for (CXXRecordDecl::base_class_const_iterator Base = RD->bases_begin(),
1746 BaseEnd = RD->bases_end(); Base != BaseEnd; ++Base) {
Ted Kremenek6217b802009-07-29 21:53:49 +00001747 if (const RecordType *RT = Base->getType()->getAs<RecordType>()) {
Chris Lattner64540d72009-03-29 05:01:10 +00001748 const CXXRecordDecl *BaseDecl = cast<CXXRecordDecl>(RT->getDecl());
Anders Carlsson67e4dd22009-03-22 01:52:17 +00001749 if (BaseDecl && BaseDecl->isAbstract())
1750 Collect(BaseDecl, Methods);
1751 }
1752 }
Mike Stump1eb44332009-09-09 15:08:12 +00001753
Anders Carlsson67e4dd22009-03-22 01:52:17 +00001754 // Next, zero out any pure virtual methods that this class overrides.
Anders Carlsson8ff8c222009-05-17 00:00:05 +00001755 typedef llvm::SmallPtrSet<const CXXMethodDecl*, 4> MethodSetTy;
Mike Stump1eb44332009-09-09 15:08:12 +00001756
Anders Carlsson8ff8c222009-05-17 00:00:05 +00001757 MethodSetTy OverriddenMethods;
1758 size_t MethodsSize = Methods.size();
1759
Mike Stump1eb44332009-09-09 15:08:12 +00001760 for (RecordDecl::decl_iterator i = RD->decls_begin(), e = RD->decls_end();
Anders Carlsson8ff8c222009-05-17 00:00:05 +00001761 i != e; ++i) {
1762 // Traverse the record, looking for methods.
1763 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(*i)) {
Sebastian Redl23c7d062009-07-07 20:29:57 +00001764 // If the method is pure virtual, add it to the methods vector.
Anders Carlsson27823022009-10-18 19:34:08 +00001765 if (MD->isPure())
Anders Carlsson8ff8c222009-05-17 00:00:05 +00001766 Methods.push_back(MD);
Mike Stump1eb44332009-09-09 15:08:12 +00001767
Anders Carlsson27823022009-10-18 19:34:08 +00001768 // Record all the overridden methods in our set.
Anders Carlsson8ff8c222009-05-17 00:00:05 +00001769 for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(),
1770 E = MD->end_overridden_methods(); I != E; ++I) {
1771 // Keep track of the overridden methods.
1772 OverriddenMethods.insert(*I);
Anders Carlsson67e4dd22009-03-22 01:52:17 +00001773 }
1774 }
1775 }
Mike Stump1eb44332009-09-09 15:08:12 +00001776
1777 // Now go through the methods and zero out all the ones we know are
Anders Carlsson8ff8c222009-05-17 00:00:05 +00001778 // overridden.
1779 for (size_t i = 0, e = MethodsSize; i != e; ++i) {
1780 if (OverriddenMethods.count(Methods[i]))
1781 Methods[i] = 0;
Anders Carlsson67e4dd22009-03-22 01:52:17 +00001782 }
Mike Stump1eb44332009-09-09 15:08:12 +00001783
Anders Carlsson67e4dd22009-03-22 01:52:17 +00001784 }
1785}
Douglas Gregor7ad83902008-11-05 04:29:56 +00001786
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00001787
Mike Stump1eb44332009-09-09 15:08:12 +00001788bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
Anders Carlssone65a3c82009-03-24 17:23:42 +00001789 unsigned DiagID, AbstractDiagSelID SelID,
1790 const CXXRecordDecl *CurrentRD) {
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00001791 if (SelID == -1)
1792 return RequireNonAbstractType(Loc, T,
1793 PDiag(DiagID), CurrentRD);
1794 else
1795 return RequireNonAbstractType(Loc, T,
1796 PDiag(DiagID) << SelID, CurrentRD);
Mike Stump1eb44332009-09-09 15:08:12 +00001797}
1798
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00001799bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
1800 const PartialDiagnostic &PD,
1801 const CXXRecordDecl *CurrentRD) {
Anders Carlsson4681ebd2009-03-22 20:18:17 +00001802 if (!getLangOptions().CPlusPlus)
1803 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001804
Anders Carlsson11f21a02009-03-23 19:10:31 +00001805 if (const ArrayType *AT = Context.getAsArrayType(T))
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00001806 return RequireNonAbstractType(Loc, AT->getElementType(), PD,
Anders Carlssone65a3c82009-03-24 17:23:42 +00001807 CurrentRD);
Mike Stump1eb44332009-09-09 15:08:12 +00001808
Ted Kremenek6217b802009-07-29 21:53:49 +00001809 if (const PointerType *PT = T->getAs<PointerType>()) {
Anders Carlsson5eff73c2009-03-24 01:46:45 +00001810 // Find the innermost pointer type.
Ted Kremenek6217b802009-07-29 21:53:49 +00001811 while (const PointerType *T = PT->getPointeeType()->getAs<PointerType>())
Anders Carlsson5eff73c2009-03-24 01:46:45 +00001812 PT = T;
Mike Stump1eb44332009-09-09 15:08:12 +00001813
Anders Carlsson5eff73c2009-03-24 01:46:45 +00001814 if (const ArrayType *AT = Context.getAsArrayType(PT->getPointeeType()))
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00001815 return RequireNonAbstractType(Loc, AT->getElementType(), PD, CurrentRD);
Anders Carlsson5eff73c2009-03-24 01:46:45 +00001816 }
Mike Stump1eb44332009-09-09 15:08:12 +00001817
Ted Kremenek6217b802009-07-29 21:53:49 +00001818 const RecordType *RT = T->getAs<RecordType>();
Anders Carlsson4681ebd2009-03-22 20:18:17 +00001819 if (!RT)
1820 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001821
Anders Carlsson4681ebd2009-03-22 20:18:17 +00001822 const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(RT->getDecl());
1823 if (!RD)
1824 return false;
1825
Anders Carlssone65a3c82009-03-24 17:23:42 +00001826 if (CurrentRD && CurrentRD != RD)
1827 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001828
Anders Carlsson4681ebd2009-03-22 20:18:17 +00001829 if (!RD->isAbstract())
1830 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001831
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00001832 Diag(Loc, PD) << RD->getDeclName();
Mike Stump1eb44332009-09-09 15:08:12 +00001833
Anders Carlsson4681ebd2009-03-22 20:18:17 +00001834 // Check if we've already emitted the list of pure virtual functions for this
1835 // class.
1836 if (PureVirtualClassDiagSet && PureVirtualClassDiagSet->count(RD))
1837 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001838
Anders Carlsson4681ebd2009-03-22 20:18:17 +00001839 PureVirtualMethodCollector Collector(Context, RD);
Mike Stump1eb44332009-09-09 15:08:12 +00001840
1841 for (PureVirtualMethodCollector::MethodList::const_iterator I =
Anders Carlsson4681ebd2009-03-22 20:18:17 +00001842 Collector.methods_begin(), E = Collector.methods_end(); I != E; ++I) {
1843 const CXXMethodDecl *MD = *I;
Mike Stump1eb44332009-09-09 15:08:12 +00001844
1845 Diag(MD->getLocation(), diag::note_pure_virtual_function) <<
Anders Carlsson4681ebd2009-03-22 20:18:17 +00001846 MD->getDeclName();
1847 }
1848
1849 if (!PureVirtualClassDiagSet)
1850 PureVirtualClassDiagSet.reset(new RecordDeclSetTy);
1851 PureVirtualClassDiagSet->insert(RD);
Mike Stump1eb44332009-09-09 15:08:12 +00001852
Anders Carlsson4681ebd2009-03-22 20:18:17 +00001853 return true;
1854}
1855
Anders Carlsson8211eff2009-03-24 01:19:16 +00001856namespace {
Mike Stump1eb44332009-09-09 15:08:12 +00001857 class VISIBILITY_HIDDEN AbstractClassUsageDiagnoser
Anders Carlsson8211eff2009-03-24 01:19:16 +00001858 : public DeclVisitor<AbstractClassUsageDiagnoser, bool> {
1859 Sema &SemaRef;
1860 CXXRecordDecl *AbstractClass;
Mike Stump1eb44332009-09-09 15:08:12 +00001861
Anders Carlssone65a3c82009-03-24 17:23:42 +00001862 bool VisitDeclContext(const DeclContext *DC) {
Anders Carlsson8211eff2009-03-24 01:19:16 +00001863 bool Invalid = false;
1864
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001865 for (CXXRecordDecl::decl_iterator I = DC->decls_begin(),
1866 E = DC->decls_end(); I != E; ++I)
Anders Carlsson8211eff2009-03-24 01:19:16 +00001867 Invalid |= Visit(*I);
Anders Carlssone65a3c82009-03-24 17:23:42 +00001868
Anders Carlsson8211eff2009-03-24 01:19:16 +00001869 return Invalid;
1870 }
Mike Stump1eb44332009-09-09 15:08:12 +00001871
Anders Carlssone65a3c82009-03-24 17:23:42 +00001872 public:
1873 AbstractClassUsageDiagnoser(Sema& SemaRef, CXXRecordDecl *ac)
1874 : SemaRef(SemaRef), AbstractClass(ac) {
1875 Visit(SemaRef.Context.getTranslationUnitDecl());
1876 }
Anders Carlsson8211eff2009-03-24 01:19:16 +00001877
Anders Carlssone65a3c82009-03-24 17:23:42 +00001878 bool VisitFunctionDecl(const FunctionDecl *FD) {
1879 if (FD->isThisDeclarationADefinition()) {
1880 // No need to do the check if we're in a definition, because it requires
1881 // that the return/param types are complete.
Mike Stump1eb44332009-09-09 15:08:12 +00001882 // because that requires
Anders Carlssone65a3c82009-03-24 17:23:42 +00001883 return VisitDeclContext(FD);
1884 }
Mike Stump1eb44332009-09-09 15:08:12 +00001885
Anders Carlssone65a3c82009-03-24 17:23:42 +00001886 // Check the return type.
John McCall183700f2009-09-21 23:43:11 +00001887 QualType RTy = FD->getType()->getAs<FunctionType>()->getResultType();
Mike Stump1eb44332009-09-09 15:08:12 +00001888 bool Invalid =
Anders Carlssone65a3c82009-03-24 17:23:42 +00001889 SemaRef.RequireNonAbstractType(FD->getLocation(), RTy,
1890 diag::err_abstract_type_in_decl,
1891 Sema::AbstractReturnType,
1892 AbstractClass);
1893
Mike Stump1eb44332009-09-09 15:08:12 +00001894 for (FunctionDecl::param_const_iterator I = FD->param_begin(),
Anders Carlssone65a3c82009-03-24 17:23:42 +00001895 E = FD->param_end(); I != E; ++I) {
Anders Carlsson8211eff2009-03-24 01:19:16 +00001896 const ParmVarDecl *VD = *I;
Mike Stump1eb44332009-09-09 15:08:12 +00001897 Invalid |=
Anders Carlsson8211eff2009-03-24 01:19:16 +00001898 SemaRef.RequireNonAbstractType(VD->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00001899 VD->getOriginalType(),
1900 diag::err_abstract_type_in_decl,
Anders Carlssone65a3c82009-03-24 17:23:42 +00001901 Sema::AbstractParamType,
1902 AbstractClass);
Anders Carlsson8211eff2009-03-24 01:19:16 +00001903 }
1904
1905 return Invalid;
1906 }
Mike Stump1eb44332009-09-09 15:08:12 +00001907
Anders Carlssone65a3c82009-03-24 17:23:42 +00001908 bool VisitDecl(const Decl* D) {
1909 if (const DeclContext *DC = dyn_cast<DeclContext>(D))
1910 return VisitDeclContext(DC);
Mike Stump1eb44332009-09-09 15:08:12 +00001911
Anders Carlssone65a3c82009-03-24 17:23:42 +00001912 return false;
1913 }
Anders Carlsson8211eff2009-03-24 01:19:16 +00001914 };
1915}
1916
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001917void Sema::ActOnFinishCXXMemberSpecification(Scope* S, SourceLocation RLoc,
Chris Lattnerb28317a2009-03-28 19:18:32 +00001918 DeclPtrTy TagDecl,
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001919 SourceLocation LBrac,
1920 SourceLocation RBrac) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00001921 if (!TagDecl)
1922 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001923
Douglas Gregor42af25f2009-05-11 19:58:34 +00001924 AdjustDeclIfTemplate(TagDecl);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001925 ActOnFields(S, RLoc, TagDecl,
Chris Lattnerb28317a2009-03-28 19:18:32 +00001926 (DeclPtrTy*)FieldCollector->getCurFields(),
Daniel Dunbar1bfe1c22008-10-03 02:03:53 +00001927 FieldCollector->getCurNumFields(), LBrac, RBrac, 0);
Douglas Gregor2943aed2009-03-03 04:44:36 +00001928
Chris Lattnerb28317a2009-03-28 19:18:32 +00001929 CXXRecordDecl *RD = cast<CXXRecordDecl>(TagDecl.getAs<Decl>());
Anders Carlsson67e4dd22009-03-22 01:52:17 +00001930 if (!RD->isAbstract()) {
1931 // Collect all the pure virtual methods and see if this is an abstract
1932 // class after all.
1933 PureVirtualMethodCollector Collector(Context, RD);
Mike Stump1eb44332009-09-09 15:08:12 +00001934 if (!Collector.empty())
Anders Carlsson67e4dd22009-03-22 01:52:17 +00001935 RD->setAbstract(true);
1936 }
Mike Stump1eb44332009-09-09 15:08:12 +00001937
1938 if (RD->isAbstract())
Douglas Gregor6490ae52009-11-17 06:14:37 +00001939 (void)AbstractClassUsageDiagnoser(*this, RD);
Mike Stump1eb44332009-09-09 15:08:12 +00001940
Douglas Gregor663b5a02009-10-14 20:14:33 +00001941 if (!RD->isDependentType() && !RD->isInvalidDecl())
Anders Carlsson67e4dd22009-03-22 01:52:17 +00001942 AddImplicitlyDeclaredMembersToClass(RD);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001943}
1944
Douglas Gregor396b7cd2008-11-03 17:51:48 +00001945/// AddImplicitlyDeclaredMembersToClass - Adds any implicitly-declared
1946/// special functions, such as the default constructor, copy
1947/// constructor, or destructor, to the given C++ class (C++
1948/// [special]p1). This routine can only be executed just before the
1949/// definition of the class is complete.
1950void Sema::AddImplicitlyDeclaredMembersToClass(CXXRecordDecl *ClassDecl) {
Mike Stump1eb44332009-09-09 15:08:12 +00001951 CanQualType ClassType
Douglas Gregor50d62d12009-08-05 05:36:45 +00001952 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Douglas Gregor2e1cd422008-11-17 14:58:09 +00001953
Sebastian Redl465226e2009-05-27 22:11:52 +00001954 // FIXME: Implicit declarations have exception specifications, which are
1955 // the union of the specifications of the implicitly called functions.
1956
Douglas Gregor396b7cd2008-11-03 17:51:48 +00001957 if (!ClassDecl->hasUserDeclaredConstructor()) {
1958 // C++ [class.ctor]p5:
1959 // A default constructor for a class X is a constructor of class X
1960 // that can be called without an argument. If there is no
1961 // user-declared constructor for class X, a default constructor is
1962 // implicitly declared. An implicitly-declared default constructor
1963 // is an inline public member of its class.
Mike Stump1eb44332009-09-09 15:08:12 +00001964 DeclarationName Name
Douglas Gregor2e1cd422008-11-17 14:58:09 +00001965 = Context.DeclarationNames.getCXXConstructorName(ClassType);
Mike Stump1eb44332009-09-09 15:08:12 +00001966 CXXConstructorDecl *DefaultCon =
Douglas Gregor396b7cd2008-11-03 17:51:48 +00001967 CXXConstructorDecl::Create(Context, ClassDecl,
Douglas Gregor2e1cd422008-11-17 14:58:09 +00001968 ClassDecl->getLocation(), Name,
Douglas Gregor396b7cd2008-11-03 17:51:48 +00001969 Context.getFunctionType(Context.VoidTy,
1970 0, 0, false, 0),
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00001971 /*DInfo=*/0,
Douglas Gregor396b7cd2008-11-03 17:51:48 +00001972 /*isExplicit=*/false,
1973 /*isInline=*/true,
1974 /*isImplicitlyDeclared=*/true);
1975 DefaultCon->setAccess(AS_public);
Douglas Gregor6b3945f2009-01-07 19:46:03 +00001976 DefaultCon->setImplicit();
Douglas Gregor1f2023a2009-07-22 18:25:24 +00001977 DefaultCon->setTrivial(ClassDecl->hasTrivialConstructor());
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001978 ClassDecl->addDecl(DefaultCon);
Douglas Gregor396b7cd2008-11-03 17:51:48 +00001979 }
1980
1981 if (!ClassDecl->hasUserDeclaredCopyConstructor()) {
1982 // C++ [class.copy]p4:
1983 // If the class definition does not explicitly declare a copy
1984 // constructor, one is declared implicitly.
1985
1986 // C++ [class.copy]p5:
1987 // The implicitly-declared copy constructor for a class X will
1988 // have the form
1989 //
1990 // X::X(const X&)
1991 //
1992 // if
1993 bool HasConstCopyConstructor = true;
1994
1995 // -- each direct or virtual base class B of X has a copy
1996 // constructor whose first parameter is of type const B& or
1997 // const volatile B&, and
1998 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin();
1999 HasConstCopyConstructor && Base != ClassDecl->bases_end(); ++Base) {
2000 const CXXRecordDecl *BaseClassDecl
Ted Kremenek6217b802009-07-29 21:53:49 +00002001 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Mike Stump1eb44332009-09-09 15:08:12 +00002002 HasConstCopyConstructor
Douglas Gregor396b7cd2008-11-03 17:51:48 +00002003 = BaseClassDecl->hasConstCopyConstructor(Context);
2004 }
2005
2006 // -- for all the nonstatic data members of X that are of a
2007 // class type M (or array thereof), each such class type
2008 // has a copy constructor whose first parameter is of type
2009 // const M& or const volatile M&.
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002010 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin();
2011 HasConstCopyConstructor && Field != ClassDecl->field_end();
Douglas Gregor6ab35242009-04-09 21:40:53 +00002012 ++Field) {
Douglas Gregor396b7cd2008-11-03 17:51:48 +00002013 QualType FieldType = (*Field)->getType();
2014 if (const ArrayType *Array = Context.getAsArrayType(FieldType))
2015 FieldType = Array->getElementType();
Ted Kremenek6217b802009-07-29 21:53:49 +00002016 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Mike Stump1eb44332009-09-09 15:08:12 +00002017 const CXXRecordDecl *FieldClassDecl
Douglas Gregor396b7cd2008-11-03 17:51:48 +00002018 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Mike Stump1eb44332009-09-09 15:08:12 +00002019 HasConstCopyConstructor
Douglas Gregor396b7cd2008-11-03 17:51:48 +00002020 = FieldClassDecl->hasConstCopyConstructor(Context);
2021 }
2022 }
2023
Sebastian Redl64b45f72009-01-05 20:52:13 +00002024 // Otherwise, the implicitly declared copy constructor will have
2025 // the form
Douglas Gregor396b7cd2008-11-03 17:51:48 +00002026 //
2027 // X::X(X&)
Sebastian Redl64b45f72009-01-05 20:52:13 +00002028 QualType ArgType = ClassType;
Douglas Gregor396b7cd2008-11-03 17:51:48 +00002029 if (HasConstCopyConstructor)
2030 ArgType = ArgType.withConst();
Sebastian Redl7c80bd62009-03-16 23:22:08 +00002031 ArgType = Context.getLValueReferenceType(ArgType);
Douglas Gregor396b7cd2008-11-03 17:51:48 +00002032
Sebastian Redl64b45f72009-01-05 20:52:13 +00002033 // An implicitly-declared copy constructor is an inline public
2034 // member of its class.
Mike Stump1eb44332009-09-09 15:08:12 +00002035 DeclarationName Name
Douglas Gregor2e1cd422008-11-17 14:58:09 +00002036 = Context.DeclarationNames.getCXXConstructorName(ClassType);
Douglas Gregor396b7cd2008-11-03 17:51:48 +00002037 CXXConstructorDecl *CopyConstructor
2038 = CXXConstructorDecl::Create(Context, ClassDecl,
Douglas Gregor2e1cd422008-11-17 14:58:09 +00002039 ClassDecl->getLocation(), Name,
Douglas Gregor396b7cd2008-11-03 17:51:48 +00002040 Context.getFunctionType(Context.VoidTy,
2041 &ArgType, 1,
2042 false, 0),
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00002043 /*DInfo=*/0,
Douglas Gregor396b7cd2008-11-03 17:51:48 +00002044 /*isExplicit=*/false,
2045 /*isInline=*/true,
2046 /*isImplicitlyDeclared=*/true);
2047 CopyConstructor->setAccess(AS_public);
Douglas Gregor6b3945f2009-01-07 19:46:03 +00002048 CopyConstructor->setImplicit();
Douglas Gregor1f2023a2009-07-22 18:25:24 +00002049 CopyConstructor->setTrivial(ClassDecl->hasTrivialCopyConstructor());
Douglas Gregor396b7cd2008-11-03 17:51:48 +00002050
2051 // Add the parameter to the constructor.
2052 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyConstructor,
2053 ClassDecl->getLocation(),
2054 /*IdentifierInfo=*/0,
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00002055 ArgType, /*DInfo=*/0,
2056 VarDecl::None, 0);
Ted Kremenekfc767612009-01-14 00:42:25 +00002057 CopyConstructor->setParams(Context, &FromParam, 1);
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002058 ClassDecl->addDecl(CopyConstructor);
Douglas Gregor396b7cd2008-11-03 17:51:48 +00002059 }
2060
Sebastian Redl64b45f72009-01-05 20:52:13 +00002061 if (!ClassDecl->hasUserDeclaredCopyAssignment()) {
2062 // Note: The following rules are largely analoguous to the copy
2063 // constructor rules. Note that virtual bases are not taken into account
2064 // for determining the argument type of the operator. Note also that
2065 // operators taking an object instead of a reference are allowed.
2066 //
2067 // C++ [class.copy]p10:
2068 // If the class definition does not explicitly declare a copy
2069 // assignment operator, one is declared implicitly.
2070 // The implicitly-defined copy assignment operator for a class X
2071 // will have the form
2072 //
2073 // X& X::operator=(const X&)
2074 //
2075 // if
2076 bool HasConstCopyAssignment = true;
2077
2078 // -- each direct base class B of X has a copy assignment operator
2079 // whose parameter is of type const B&, const volatile B& or B,
2080 // and
2081 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin();
2082 HasConstCopyAssignment && Base != ClassDecl->bases_end(); ++Base) {
Sebastian Redl9994a342009-10-25 17:03:50 +00002083 assert(!Base->getType()->isDependentType() &&
2084 "Cannot generate implicit members for class with dependent bases.");
Sebastian Redl64b45f72009-01-05 20:52:13 +00002085 const CXXRecordDecl *BaseClassDecl
Ted Kremenek6217b802009-07-29 21:53:49 +00002086 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Fariborz Jahanian0270b8a2009-08-12 23:34:46 +00002087 const CXXMethodDecl *MD = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00002088 HasConstCopyAssignment = BaseClassDecl->hasConstCopyAssignment(Context,
Fariborz Jahanian0270b8a2009-08-12 23:34:46 +00002089 MD);
Sebastian Redl64b45f72009-01-05 20:52:13 +00002090 }
2091
2092 // -- for all the nonstatic data members of X that are of a class
2093 // type M (or array thereof), each such class type has a copy
2094 // assignment operator whose parameter is of type const M&,
2095 // const volatile M& or M.
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002096 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin();
2097 HasConstCopyAssignment && Field != ClassDecl->field_end();
Douglas Gregor6ab35242009-04-09 21:40:53 +00002098 ++Field) {
Sebastian Redl64b45f72009-01-05 20:52:13 +00002099 QualType FieldType = (*Field)->getType();
2100 if (const ArrayType *Array = Context.getAsArrayType(FieldType))
2101 FieldType = Array->getElementType();
Ted Kremenek6217b802009-07-29 21:53:49 +00002102 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Sebastian Redl64b45f72009-01-05 20:52:13 +00002103 const CXXRecordDecl *FieldClassDecl
2104 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Fariborz Jahanian0270b8a2009-08-12 23:34:46 +00002105 const CXXMethodDecl *MD = 0;
Sebastian Redl64b45f72009-01-05 20:52:13 +00002106 HasConstCopyAssignment
Fariborz Jahanian0270b8a2009-08-12 23:34:46 +00002107 = FieldClassDecl->hasConstCopyAssignment(Context, MD);
Sebastian Redl64b45f72009-01-05 20:52:13 +00002108 }
2109 }
2110
2111 // Otherwise, the implicitly declared copy assignment operator will
2112 // have the form
2113 //
2114 // X& X::operator=(X&)
2115 QualType ArgType = ClassType;
Sebastian Redl7c80bd62009-03-16 23:22:08 +00002116 QualType RetType = Context.getLValueReferenceType(ArgType);
Sebastian Redl64b45f72009-01-05 20:52:13 +00002117 if (HasConstCopyAssignment)
2118 ArgType = ArgType.withConst();
Sebastian Redl7c80bd62009-03-16 23:22:08 +00002119 ArgType = Context.getLValueReferenceType(ArgType);
Sebastian Redl64b45f72009-01-05 20:52:13 +00002120
2121 // An implicitly-declared copy assignment operator is an inline public
2122 // member of its class.
2123 DeclarationName Name =
2124 Context.DeclarationNames.getCXXOperatorName(OO_Equal);
2125 CXXMethodDecl *CopyAssignment =
2126 CXXMethodDecl::Create(Context, ClassDecl, ClassDecl->getLocation(), Name,
2127 Context.getFunctionType(RetType, &ArgType, 1,
2128 false, 0),
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00002129 /*DInfo=*/0, /*isStatic=*/false, /*isInline=*/true);
Sebastian Redl64b45f72009-01-05 20:52:13 +00002130 CopyAssignment->setAccess(AS_public);
Douglas Gregor6b3945f2009-01-07 19:46:03 +00002131 CopyAssignment->setImplicit();
Douglas Gregor1f2023a2009-07-22 18:25:24 +00002132 CopyAssignment->setTrivial(ClassDecl->hasTrivialCopyAssignment());
Fariborz Jahanian2198ba12009-08-12 21:14:35 +00002133 CopyAssignment->setCopyAssignment(true);
Sebastian Redl64b45f72009-01-05 20:52:13 +00002134
2135 // Add the parameter to the operator.
2136 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyAssignment,
2137 ClassDecl->getLocation(),
2138 /*IdentifierInfo=*/0,
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00002139 ArgType, /*DInfo=*/0,
2140 VarDecl::None, 0);
Ted Kremenekfc767612009-01-14 00:42:25 +00002141 CopyAssignment->setParams(Context, &FromParam, 1);
Sebastian Redl64b45f72009-01-05 20:52:13 +00002142
2143 // Don't call addedAssignmentOperator. There is no way to distinguish an
2144 // implicit from an explicit assignment operator.
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002145 ClassDecl->addDecl(CopyAssignment);
Sebastian Redl64b45f72009-01-05 20:52:13 +00002146 }
2147
Douglas Gregor9e7d9de2008-12-15 21:24:18 +00002148 if (!ClassDecl->hasUserDeclaredDestructor()) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00002149 // C++ [class.dtor]p2:
2150 // If a class has no user-declared destructor, a destructor is
2151 // declared implicitly. An implicitly-declared destructor is an
2152 // inline public member of its class.
Mike Stump1eb44332009-09-09 15:08:12 +00002153 DeclarationName Name
Douglas Gregor2e1cd422008-11-17 14:58:09 +00002154 = Context.DeclarationNames.getCXXDestructorName(ClassType);
Mike Stump1eb44332009-09-09 15:08:12 +00002155 CXXDestructorDecl *Destructor
Douglas Gregor42a552f2008-11-05 20:51:48 +00002156 = CXXDestructorDecl::Create(Context, ClassDecl,
Douglas Gregor2e1cd422008-11-17 14:58:09 +00002157 ClassDecl->getLocation(), Name,
Douglas Gregor42a552f2008-11-05 20:51:48 +00002158 Context.getFunctionType(Context.VoidTy,
2159 0, 0, false, 0),
2160 /*isInline=*/true,
2161 /*isImplicitlyDeclared=*/true);
2162 Destructor->setAccess(AS_public);
Douglas Gregor6b3945f2009-01-07 19:46:03 +00002163 Destructor->setImplicit();
Douglas Gregor1f2023a2009-07-22 18:25:24 +00002164 Destructor->setTrivial(ClassDecl->hasTrivialDestructor());
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002165 ClassDecl->addDecl(Destructor);
Douglas Gregor42a552f2008-11-05 20:51:48 +00002166 }
Douglas Gregor396b7cd2008-11-03 17:51:48 +00002167}
2168
Douglas Gregor6569d682009-05-27 23:11:45 +00002169void Sema::ActOnReenterTemplateScope(Scope *S, DeclPtrTy TemplateD) {
Douglas Gregor1cdcc572009-09-10 00:12:48 +00002170 Decl *D = TemplateD.getAs<Decl>();
2171 if (!D)
2172 return;
2173
2174 TemplateParameterList *Params = 0;
2175 if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D))
2176 Params = Template->getTemplateParameters();
2177 else if (ClassTemplatePartialSpecializationDecl *PartialSpec
2178 = dyn_cast<ClassTemplatePartialSpecializationDecl>(D))
2179 Params = PartialSpec->getTemplateParameters();
2180 else
Douglas Gregor6569d682009-05-27 23:11:45 +00002181 return;
2182
Douglas Gregor6569d682009-05-27 23:11:45 +00002183 for (TemplateParameterList::iterator Param = Params->begin(),
2184 ParamEnd = Params->end();
2185 Param != ParamEnd; ++Param) {
2186 NamedDecl *Named = cast<NamedDecl>(*Param);
2187 if (Named->getDeclName()) {
2188 S->AddDecl(DeclPtrTy::make(Named));
2189 IdResolver.AddDecl(Named);
2190 }
2191 }
2192}
2193
Douglas Gregor72b505b2008-12-16 21:30:33 +00002194/// ActOnStartDelayedCXXMethodDeclaration - We have completed
2195/// parsing a top-level (non-nested) C++ class, and we are now
2196/// parsing those parts of the given Method declaration that could
2197/// not be parsed earlier (C++ [class.mem]p2), such as default
2198/// arguments. This action should enter the scope of the given
2199/// Method declaration as if we had just parsed the qualified method
2200/// name. However, it should not bring the parameters into scope;
2201/// that will be performed by ActOnDelayedCXXMethodParameter.
Chris Lattnerb28317a2009-03-28 19:18:32 +00002202void Sema::ActOnStartDelayedCXXMethodDeclaration(Scope *S, DeclPtrTy MethodD) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00002203 if (!MethodD)
2204 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002205
Douglas Gregorefd5bda2009-08-24 11:57:43 +00002206 AdjustDeclIfTemplate(MethodD);
Mike Stump1eb44332009-09-09 15:08:12 +00002207
Douglas Gregor72b505b2008-12-16 21:30:33 +00002208 CXXScopeSpec SS;
Chris Lattnerb28317a2009-03-28 19:18:32 +00002209 FunctionDecl *Method = cast<FunctionDecl>(MethodD.getAs<Decl>());
Mike Stump1eb44332009-09-09 15:08:12 +00002210 QualType ClassTy
Douglas Gregorab452ba2009-03-26 23:50:42 +00002211 = Context.getTypeDeclType(cast<RecordDecl>(Method->getDeclContext()));
2212 SS.setScopeRep(
2213 NestedNameSpecifier::Create(Context, 0, false, ClassTy.getTypePtr()));
Douglas Gregor72b505b2008-12-16 21:30:33 +00002214 ActOnCXXEnterDeclaratorScope(S, SS);
2215}
2216
2217/// ActOnDelayedCXXMethodParameter - We've already started a delayed
2218/// C++ method declaration. We're (re-)introducing the given
2219/// function parameter into scope for use in parsing later parts of
2220/// the method declaration. For example, we could see an
2221/// ActOnParamDefaultArgument event for this parameter.
Chris Lattnerb28317a2009-03-28 19:18:32 +00002222void Sema::ActOnDelayedCXXMethodParameter(Scope *S, DeclPtrTy ParamD) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00002223 if (!ParamD)
2224 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002225
Chris Lattnerb28317a2009-03-28 19:18:32 +00002226 ParmVarDecl *Param = cast<ParmVarDecl>(ParamD.getAs<Decl>());
Douglas Gregor61366e92008-12-24 00:01:03 +00002227
2228 // If this parameter has an unparsed default argument, clear it out
2229 // to make way for the parsed default argument.
2230 if (Param->hasUnparsedDefaultArg())
2231 Param->setDefaultArg(0);
2232
Chris Lattnerb28317a2009-03-28 19:18:32 +00002233 S->AddDecl(DeclPtrTy::make(Param));
Douglas Gregor72b505b2008-12-16 21:30:33 +00002234 if (Param->getDeclName())
2235 IdResolver.AddDecl(Param);
2236}
2237
2238/// ActOnFinishDelayedCXXMethodDeclaration - We have finished
2239/// processing the delayed method declaration for Method. The method
2240/// declaration is now considered finished. There may be a separate
2241/// ActOnStartOfFunctionDef action later (not necessarily
2242/// immediately!) for this method, if it was also defined inside the
2243/// class body.
Chris Lattnerb28317a2009-03-28 19:18:32 +00002244void Sema::ActOnFinishDelayedCXXMethodDeclaration(Scope *S, DeclPtrTy MethodD) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00002245 if (!MethodD)
2246 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002247
Douglas Gregorefd5bda2009-08-24 11:57:43 +00002248 AdjustDeclIfTemplate(MethodD);
Mike Stump1eb44332009-09-09 15:08:12 +00002249
Chris Lattnerb28317a2009-03-28 19:18:32 +00002250 FunctionDecl *Method = cast<FunctionDecl>(MethodD.getAs<Decl>());
Douglas Gregor72b505b2008-12-16 21:30:33 +00002251 CXXScopeSpec SS;
Mike Stump1eb44332009-09-09 15:08:12 +00002252 QualType ClassTy
Douglas Gregorab452ba2009-03-26 23:50:42 +00002253 = Context.getTypeDeclType(cast<RecordDecl>(Method->getDeclContext()));
2254 SS.setScopeRep(
2255 NestedNameSpecifier::Create(Context, 0, false, ClassTy.getTypePtr()));
Douglas Gregor72b505b2008-12-16 21:30:33 +00002256 ActOnCXXExitDeclaratorScope(S, SS);
2257
2258 // Now that we have our default arguments, check the constructor
2259 // again. It could produce additional diagnostics or affect whether
2260 // the class has implicitly-declared destructors, among other
2261 // things.
Chris Lattner6e475012009-04-25 08:35:12 +00002262 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Method))
2263 CheckConstructor(Constructor);
Douglas Gregor72b505b2008-12-16 21:30:33 +00002264
2265 // Check the default arguments, which we may have added.
2266 if (!Method->isInvalidDecl())
2267 CheckCXXDefaultArguments(Method);
2268}
2269
Douglas Gregor42a552f2008-11-05 20:51:48 +00002270/// CheckConstructorDeclarator - Called by ActOnDeclarator to check
Douglas Gregor72b505b2008-12-16 21:30:33 +00002271/// the well-formedness of the constructor declarator @p D with type @p
Douglas Gregor42a552f2008-11-05 20:51:48 +00002272/// R. If there are any errors in the declarator, this routine will
Chris Lattner65401802009-04-25 08:28:21 +00002273/// emit diagnostics and set the invalid bit to true. In any case, the type
2274/// will be updated to reflect a well-formed type for the constructor and
2275/// returned.
2276QualType Sema::CheckConstructorDeclarator(Declarator &D, QualType R,
2277 FunctionDecl::StorageClass &SC) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00002278 bool isVirtual = D.getDeclSpec().isVirtualSpecified();
Douglas Gregor42a552f2008-11-05 20:51:48 +00002279
2280 // C++ [class.ctor]p3:
2281 // A constructor shall not be virtual (10.3) or static (9.4). A
2282 // constructor can be invoked for a const, volatile or const
2283 // volatile object. A constructor shall not be declared const,
2284 // volatile, or const volatile (9.3.2).
2285 if (isVirtual) {
Chris Lattner65401802009-04-25 08:28:21 +00002286 if (!D.isInvalidType())
2287 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
2288 << "virtual" << SourceRange(D.getDeclSpec().getVirtualSpecLoc())
2289 << SourceRange(D.getIdentifierLoc());
2290 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00002291 }
2292 if (SC == FunctionDecl::Static) {
Chris Lattner65401802009-04-25 08:28:21 +00002293 if (!D.isInvalidType())
2294 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
2295 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
2296 << SourceRange(D.getIdentifierLoc());
2297 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00002298 SC = FunctionDecl::None;
2299 }
Mike Stump1eb44332009-09-09 15:08:12 +00002300
Chris Lattner65401802009-04-25 08:28:21 +00002301 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
2302 if (FTI.TypeQuals != 0) {
John McCall0953e762009-09-24 19:53:00 +00002303 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002304 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
2305 << "const" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00002306 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002307 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
2308 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00002309 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002310 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
2311 << "restrict" << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +00002312 }
Mike Stump1eb44332009-09-09 15:08:12 +00002313
Douglas Gregor42a552f2008-11-05 20:51:48 +00002314 // Rebuild the function type "R" without any type qualifiers (in
2315 // case any of the errors above fired) and with "void" as the
2316 // return type, since constructors don't have return types. We
2317 // *always* have to do this, because GetTypeForDeclarator will
2318 // put in a result type of "int" when none was specified.
John McCall183700f2009-09-21 23:43:11 +00002319 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
Chris Lattner65401802009-04-25 08:28:21 +00002320 return Context.getFunctionType(Context.VoidTy, Proto->arg_type_begin(),
2321 Proto->getNumArgs(),
2322 Proto->isVariadic(), 0);
Douglas Gregor42a552f2008-11-05 20:51:48 +00002323}
2324
Douglas Gregor72b505b2008-12-16 21:30:33 +00002325/// CheckConstructor - Checks a fully-formed constructor for
2326/// well-formedness, issuing any diagnostics required. Returns true if
2327/// the constructor declarator is invalid.
Chris Lattner6e475012009-04-25 08:35:12 +00002328void Sema::CheckConstructor(CXXConstructorDecl *Constructor) {
Mike Stump1eb44332009-09-09 15:08:12 +00002329 CXXRecordDecl *ClassDecl
Douglas Gregor33297562009-03-27 04:38:56 +00002330 = dyn_cast<CXXRecordDecl>(Constructor->getDeclContext());
2331 if (!ClassDecl)
Chris Lattner6e475012009-04-25 08:35:12 +00002332 return Constructor->setInvalidDecl();
Douglas Gregor72b505b2008-12-16 21:30:33 +00002333
2334 // C++ [class.copy]p3:
2335 // A declaration of a constructor for a class X is ill-formed if
2336 // its first parameter is of type (optionally cv-qualified) X and
2337 // either there are no other parameters or else all other
2338 // parameters have default arguments.
Douglas Gregor33297562009-03-27 04:38:56 +00002339 if (!Constructor->isInvalidDecl() &&
Mike Stump1eb44332009-09-09 15:08:12 +00002340 ((Constructor->getNumParams() == 1) ||
2341 (Constructor->getNumParams() > 1 &&
Douglas Gregor66724ea2009-11-14 01:20:54 +00002342 Constructor->getParamDecl(1)->hasDefaultArg())) &&
2343 Constructor->getTemplateSpecializationKind()
2344 != TSK_ImplicitInstantiation) {
Douglas Gregor72b505b2008-12-16 21:30:33 +00002345 QualType ParamType = Constructor->getParamDecl(0)->getType();
2346 QualType ClassTy = Context.getTagDeclType(ClassDecl);
2347 if (Context.getCanonicalType(ParamType).getUnqualifiedType() == ClassTy) {
Douglas Gregora3a83512009-04-01 23:51:29 +00002348 SourceLocation ParamLoc = Constructor->getParamDecl(0)->getLocation();
2349 Diag(ParamLoc, diag::err_constructor_byvalue_arg)
Douglas Gregor558cb562009-04-02 01:08:08 +00002350 << CodeModificationHint::CreateInsertion(ParamLoc, " const &");
Douglas Gregor66724ea2009-11-14 01:20:54 +00002351
2352 // FIXME: Rather that making the constructor invalid, we should endeavor
2353 // to fix the type.
Chris Lattner6e475012009-04-25 08:35:12 +00002354 Constructor->setInvalidDecl();
Douglas Gregor72b505b2008-12-16 21:30:33 +00002355 }
2356 }
Mike Stump1eb44332009-09-09 15:08:12 +00002357
Douglas Gregor72b505b2008-12-16 21:30:33 +00002358 // Notify the class that we've added a constructor.
2359 ClassDecl->addedConstructor(Context, Constructor);
Douglas Gregor72b505b2008-12-16 21:30:33 +00002360}
2361
Anders Carlsson6d701392009-11-15 22:49:34 +00002362/// CheckDestructor - Checks a fully-formed destructor for
2363/// well-formedness, issuing any diagnostics required.
2364void Sema::CheckDestructor(CXXDestructorDecl *Destructor) {
2365 CXXRecordDecl *RD = Destructor->getParent();
2366
2367 if (Destructor->isVirtual()) {
2368 SourceLocation Loc;
2369
2370 if (!Destructor->isImplicit())
2371 Loc = Destructor->getLocation();
2372 else
2373 Loc = RD->getLocation();
2374
2375 // If we have a virtual destructor, look up the deallocation function
2376 FunctionDecl *OperatorDelete = 0;
2377 DeclarationName Name =
2378 Context.DeclarationNames.getCXXOperatorName(OO_Delete);
2379 if (!FindDeallocationFunction(Loc, RD, Name, OperatorDelete))
2380 Destructor->setOperatorDelete(OperatorDelete);
2381 }
2382}
2383
Mike Stump1eb44332009-09-09 15:08:12 +00002384static inline bool
Anders Carlsson7786d1c2009-04-30 23:18:11 +00002385FTIHasSingleVoidArgument(DeclaratorChunk::FunctionTypeInfo &FTI) {
2386 return (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
2387 FTI.ArgInfo[0].Param &&
2388 FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType()->isVoidType());
2389}
2390
Douglas Gregor42a552f2008-11-05 20:51:48 +00002391/// CheckDestructorDeclarator - Called by ActOnDeclarator to check
2392/// the well-formednes of the destructor declarator @p D with type @p
2393/// R. If there are any errors in the declarator, this routine will
Chris Lattner65401802009-04-25 08:28:21 +00002394/// emit diagnostics and set the declarator to invalid. Even if this happens,
2395/// will be updated to reflect a well-formed type for the destructor and
2396/// returned.
2397QualType Sema::CheckDestructorDeclarator(Declarator &D,
2398 FunctionDecl::StorageClass& SC) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00002399 // C++ [class.dtor]p1:
2400 // [...] A typedef-name that names a class is a class-name
2401 // (7.1.3); however, a typedef-name that names a class shall not
2402 // be used as the identifier in the declarator for a destructor
2403 // declaration.
Douglas Gregor3f9a0562009-11-03 01:35:08 +00002404 QualType DeclaratorType = GetTypeFromParser(D.getName().DestructorName);
Chris Lattner65401802009-04-25 08:28:21 +00002405 if (isa<TypedefType>(DeclaratorType)) {
2406 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
Douglas Gregor1a51b4a2009-02-09 15:09:02 +00002407 << DeclaratorType;
Chris Lattner65401802009-04-25 08:28:21 +00002408 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00002409 }
2410
2411 // C++ [class.dtor]p2:
2412 // A destructor is used to destroy objects of its class type. A
2413 // destructor takes no parameters, and no return type can be
2414 // specified for it (not even void). The address of a destructor
2415 // shall not be taken. A destructor shall not be static. A
2416 // destructor can be invoked for a const, volatile or const
2417 // volatile object. A destructor shall not be declared const,
2418 // volatile or const volatile (9.3.2).
2419 if (SC == FunctionDecl::Static) {
Chris Lattner65401802009-04-25 08:28:21 +00002420 if (!D.isInvalidType())
2421 Diag(D.getIdentifierLoc(), diag::err_destructor_cannot_be)
2422 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
2423 << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +00002424 SC = FunctionDecl::None;
Chris Lattner65401802009-04-25 08:28:21 +00002425 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00002426 }
Chris Lattner65401802009-04-25 08:28:21 +00002427 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00002428 // Destructors don't have return types, but the parser will
2429 // happily parse something like:
2430 //
2431 // class X {
2432 // float ~X();
2433 // };
2434 //
2435 // The return type will be eliminated later.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002436 Diag(D.getIdentifierLoc(), diag::err_destructor_return_type)
2437 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
2438 << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +00002439 }
Mike Stump1eb44332009-09-09 15:08:12 +00002440
Chris Lattner65401802009-04-25 08:28:21 +00002441 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
2442 if (FTI.TypeQuals != 0 && !D.isInvalidType()) {
John McCall0953e762009-09-24 19:53:00 +00002443 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002444 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
2445 << "const" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00002446 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002447 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
2448 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall0953e762009-09-24 19:53:00 +00002449 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002450 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
2451 << "restrict" << SourceRange(D.getIdentifierLoc());
Chris Lattner65401802009-04-25 08:28:21 +00002452 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00002453 }
2454
2455 // Make sure we don't have any parameters.
Anders Carlsson7786d1c2009-04-30 23:18:11 +00002456 if (FTI.NumArgs > 0 && !FTIHasSingleVoidArgument(FTI)) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00002457 Diag(D.getIdentifierLoc(), diag::err_destructor_with_params);
2458
2459 // Delete the parameters.
Chris Lattner65401802009-04-25 08:28:21 +00002460 FTI.freeArgs();
2461 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00002462 }
2463
Mike Stump1eb44332009-09-09 15:08:12 +00002464 // Make sure the destructor isn't variadic.
Chris Lattner65401802009-04-25 08:28:21 +00002465 if (FTI.isVariadic) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00002466 Diag(D.getIdentifierLoc(), diag::err_destructor_variadic);
Chris Lattner65401802009-04-25 08:28:21 +00002467 D.setInvalidType();
2468 }
Douglas Gregor42a552f2008-11-05 20:51:48 +00002469
2470 // Rebuild the function type "R" without any type qualifiers or
2471 // parameters (in case any of the errors above fired) and with
2472 // "void" as the return type, since destructors don't have return
2473 // types. We *always* have to do this, because GetTypeForDeclarator
2474 // will put in a result type of "int" when none was specified.
Chris Lattner65401802009-04-25 08:28:21 +00002475 return Context.getFunctionType(Context.VoidTy, 0, 0, false, 0);
Douglas Gregor42a552f2008-11-05 20:51:48 +00002476}
2477
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002478/// CheckConversionDeclarator - Called by ActOnDeclarator to check the
2479/// well-formednes of the conversion function declarator @p D with
2480/// type @p R. If there are any errors in the declarator, this routine
2481/// will emit diagnostics and return true. Otherwise, it will return
2482/// false. Either way, the type @p R will be updated to reflect a
2483/// well-formed type for the conversion operator.
Chris Lattner6e475012009-04-25 08:35:12 +00002484void Sema::CheckConversionDeclarator(Declarator &D, QualType &R,
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002485 FunctionDecl::StorageClass& SC) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002486 // C++ [class.conv.fct]p1:
2487 // Neither parameter types nor return type can be specified. The
Eli Friedman33a31382009-08-05 19:21:58 +00002488 // type of a conversion function (8.3.5) is "function taking no
Mike Stump1eb44332009-09-09 15:08:12 +00002489 // parameter returning conversion-type-id."
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002490 if (SC == FunctionDecl::Static) {
Chris Lattner6e475012009-04-25 08:35:12 +00002491 if (!D.isInvalidType())
2492 Diag(D.getIdentifierLoc(), diag::err_conv_function_not_member)
2493 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
2494 << SourceRange(D.getIdentifierLoc());
2495 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002496 SC = FunctionDecl::None;
2497 }
Chris Lattner6e475012009-04-25 08:35:12 +00002498 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002499 // Conversion functions don't have return types, but the parser will
2500 // happily parse something like:
2501 //
2502 // class X {
2503 // float operator bool();
2504 // };
2505 //
2506 // The return type will be changed later anyway.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002507 Diag(D.getIdentifierLoc(), diag::err_conv_function_return_type)
2508 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
2509 << SourceRange(D.getIdentifierLoc());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002510 }
2511
2512 // Make sure we don't have any parameters.
John McCall183700f2009-09-21 23:43:11 +00002513 if (R->getAs<FunctionProtoType>()->getNumArgs() > 0) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002514 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_params);
2515
2516 // Delete the parameters.
Chris Lattner1833a832009-01-20 21:06:38 +00002517 D.getTypeObject(0).Fun.freeArgs();
Chris Lattner6e475012009-04-25 08:35:12 +00002518 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002519 }
2520
Mike Stump1eb44332009-09-09 15:08:12 +00002521 // Make sure the conversion function isn't variadic.
John McCall183700f2009-09-21 23:43:11 +00002522 if (R->getAs<FunctionProtoType>()->isVariadic() && !D.isInvalidType()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002523 Diag(D.getIdentifierLoc(), diag::err_conv_function_variadic);
Chris Lattner6e475012009-04-25 08:35:12 +00002524 D.setInvalidType();
2525 }
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002526
2527 // C++ [class.conv.fct]p4:
2528 // The conversion-type-id shall not represent a function type nor
2529 // an array type.
Douglas Gregor3f9a0562009-11-03 01:35:08 +00002530 QualType ConvType = GetTypeFromParser(D.getName().ConversionFunctionId);
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002531 if (ConvType->isArrayType()) {
2532 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_array);
2533 ConvType = Context.getPointerType(ConvType);
Chris Lattner6e475012009-04-25 08:35:12 +00002534 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002535 } else if (ConvType->isFunctionType()) {
2536 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_function);
2537 ConvType = Context.getPointerType(ConvType);
Chris Lattner6e475012009-04-25 08:35:12 +00002538 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002539 }
2540
2541 // Rebuild the function type "R" without any parameters (in case any
2542 // of the errors above fired) and with the conversion type as the
Mike Stump1eb44332009-09-09 15:08:12 +00002543 // return type.
2544 R = Context.getFunctionType(ConvType, 0, 0, false,
John McCall183700f2009-09-21 23:43:11 +00002545 R->getAs<FunctionProtoType>()->getTypeQuals());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002546
Douglas Gregor09f41cf2009-01-14 15:45:31 +00002547 // C++0x explicit conversion operators.
2548 if (D.getDeclSpec().isExplicitSpecified() && !getLangOptions().CPlusPlus0x)
Mike Stump1eb44332009-09-09 15:08:12 +00002549 Diag(D.getDeclSpec().getExplicitSpecLoc(),
Douglas Gregor09f41cf2009-01-14 15:45:31 +00002550 diag::warn_explicit_conversion_functions)
2551 << SourceRange(D.getDeclSpec().getExplicitSpecLoc());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002552}
2553
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002554/// ActOnConversionDeclarator - Called by ActOnDeclarator to complete
2555/// the declaration of the given C++ conversion function. This routine
2556/// is responsible for recording the conversion function in the C++
2557/// class, if possible.
Chris Lattnerb28317a2009-03-28 19:18:32 +00002558Sema::DeclPtrTy Sema::ActOnConversionDeclarator(CXXConversionDecl *Conversion) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002559 assert(Conversion && "Expected to receive a conversion function declaration");
2560
Douglas Gregor9d350972008-12-12 08:25:50 +00002561 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Conversion->getDeclContext());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002562
2563 // Make sure we aren't redeclaring the conversion function.
2564 QualType ConvType = Context.getCanonicalType(Conversion->getConversionType());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002565
2566 // C++ [class.conv.fct]p1:
2567 // [...] A conversion function is never used to convert a
2568 // (possibly cv-qualified) object to the (possibly cv-qualified)
2569 // same object type (or a reference to it), to a (possibly
2570 // cv-qualified) base class of that type (or a reference to it),
2571 // or to (possibly cv-qualified) void.
Mike Stump390b4cc2009-05-16 07:39:55 +00002572 // FIXME: Suppress this warning if the conversion function ends up being a
2573 // virtual function that overrides a virtual function in a base class.
Mike Stump1eb44332009-09-09 15:08:12 +00002574 QualType ClassType
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002575 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Ted Kremenek6217b802009-07-29 21:53:49 +00002576 if (const ReferenceType *ConvTypeRef = ConvType->getAs<ReferenceType>())
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002577 ConvType = ConvTypeRef->getPointeeType();
2578 if (ConvType->isRecordType()) {
2579 ConvType = Context.getCanonicalType(ConvType).getUnqualifiedType();
2580 if (ConvType == ClassType)
Chris Lattner5dc266a2008-11-20 06:13:02 +00002581 Diag(Conversion->getLocation(), diag::warn_conv_to_self_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00002582 << ClassType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002583 else if (IsDerivedFrom(ClassType, ConvType))
Chris Lattner5dc266a2008-11-20 06:13:02 +00002584 Diag(Conversion->getLocation(), diag::warn_conv_to_base_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00002585 << ClassType << ConvType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002586 } else if (ConvType->isVoidType()) {
Chris Lattner5dc266a2008-11-20 06:13:02 +00002587 Diag(Conversion->getLocation(), diag::warn_conv_to_void_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00002588 << ClassType << ConvType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002589 }
2590
Douglas Gregor70316a02008-12-26 15:00:45 +00002591 if (Conversion->getPreviousDeclaration()) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00002592 const NamedDecl *ExpectedPrevDecl = Conversion->getPreviousDeclaration();
Mike Stump1eb44332009-09-09 15:08:12 +00002593 if (FunctionTemplateDecl *ConversionTemplate
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00002594 = Conversion->getDescribedFunctionTemplate())
2595 ExpectedPrevDecl = ConversionTemplate->getPreviousDeclaration();
Douglas Gregor70316a02008-12-26 15:00:45 +00002596 OverloadedFunctionDecl *Conversions = ClassDecl->getConversionFunctions();
Mike Stump1eb44332009-09-09 15:08:12 +00002597 for (OverloadedFunctionDecl::function_iterator
Douglas Gregor70316a02008-12-26 15:00:45 +00002598 Conv = Conversions->function_begin(),
2599 ConvEnd = Conversions->function_end();
2600 Conv != ConvEnd; ++Conv) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00002601 if (*Conv == ExpectedPrevDecl) {
Douglas Gregor70316a02008-12-26 15:00:45 +00002602 *Conv = Conversion;
Chris Lattnerb28317a2009-03-28 19:18:32 +00002603 return DeclPtrTy::make(Conversion);
Douglas Gregor70316a02008-12-26 15:00:45 +00002604 }
2605 }
2606 assert(Conversion->isInvalidDecl() && "Conversion should not get here.");
Mike Stump1eb44332009-09-09 15:08:12 +00002607 } else if (FunctionTemplateDecl *ConversionTemplate
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00002608 = Conversion->getDescribedFunctionTemplate())
Fariborz Jahaniandebc6292009-09-12 19:02:34 +00002609 ClassDecl->addConversionFunction(ConversionTemplate);
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00002610 else if (!Conversion->getPrimaryTemplate()) // ignore specializations
Fariborz Jahaniandebc6292009-09-12 19:02:34 +00002611 ClassDecl->addConversionFunction(Conversion);
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002612
Chris Lattnerb28317a2009-03-28 19:18:32 +00002613 return DeclPtrTy::make(Conversion);
Douglas Gregor2f1bc522008-11-07 20:08:42 +00002614}
2615
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00002616//===----------------------------------------------------------------------===//
2617// Namespace Handling
2618//===----------------------------------------------------------------------===//
2619
2620/// ActOnStartNamespaceDef - This is called at the start of a namespace
2621/// definition.
Chris Lattnerb28317a2009-03-28 19:18:32 +00002622Sema::DeclPtrTy Sema::ActOnStartNamespaceDef(Scope *NamespcScope,
2623 SourceLocation IdentLoc,
2624 IdentifierInfo *II,
2625 SourceLocation LBrace) {
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00002626 NamespaceDecl *Namespc =
2627 NamespaceDecl::Create(Context, CurContext, IdentLoc, II);
2628 Namespc->setLBracLoc(LBrace);
2629
2630 Scope *DeclRegionScope = NamespcScope->getParent();
2631
2632 if (II) {
2633 // C++ [namespace.def]p2:
2634 // The identifier in an original-namespace-definition shall not have been
2635 // previously defined in the declarative region in which the
2636 // original-namespace-definition appears. The identifier in an
2637 // original-namespace-definition is the name of the namespace. Subsequently
2638 // in that declarative region, it is treated as an original-namespace-name.
2639
John McCallf36e02d2009-10-09 21:13:30 +00002640 NamedDecl *PrevDecl
John McCalla24dc2e2009-11-17 02:14:36 +00002641 = LookupSingleName(DeclRegionScope, II, LookupOrdinaryName,
2642 LookupResult::ForRedeclaration);
Mike Stump1eb44332009-09-09 15:08:12 +00002643
Douglas Gregor44b43212008-12-11 16:49:14 +00002644 if (NamespaceDecl *OrigNS = dyn_cast_or_null<NamespaceDecl>(PrevDecl)) {
2645 // This is an extended namespace definition.
2646 // Attach this namespace decl to the chain of extended namespace
2647 // definitions.
2648 OrigNS->setNextNamespace(Namespc);
2649 Namespc->setOriginalNamespace(OrigNS->getOriginalNamespace());
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00002650
Mike Stump1eb44332009-09-09 15:08:12 +00002651 // Remove the previous declaration from the scope.
Chris Lattnerb28317a2009-03-28 19:18:32 +00002652 if (DeclRegionScope->isDeclScope(DeclPtrTy::make(OrigNS))) {
Douglas Gregore267ff32008-12-11 20:41:00 +00002653 IdResolver.RemoveDecl(OrigNS);
Chris Lattnerb28317a2009-03-28 19:18:32 +00002654 DeclRegionScope->RemoveDecl(DeclPtrTy::make(OrigNS));
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00002655 }
Douglas Gregor44b43212008-12-11 16:49:14 +00002656 } else if (PrevDecl) {
2657 // This is an invalid name redefinition.
2658 Diag(Namespc->getLocation(), diag::err_redefinition_different_kind)
2659 << Namespc->getDeclName();
2660 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
2661 Namespc->setInvalidDecl();
2662 // Continue on to push Namespc as current DeclContext and return it.
Douglas Gregor7adb10f2009-09-15 22:30:29 +00002663 } else if (II->isStr("std") &&
2664 CurContext->getLookupContext()->isTranslationUnit()) {
2665 // This is the first "real" definition of the namespace "std", so update
2666 // our cache of the "std" namespace to point at this definition.
2667 if (StdNamespace) {
2668 // We had already defined a dummy namespace "std". Link this new
2669 // namespace definition to the dummy namespace "std".
2670 StdNamespace->setNextNamespace(Namespc);
2671 StdNamespace->setLocation(IdentLoc);
2672 Namespc->setOriginalNamespace(StdNamespace->getOriginalNamespace());
2673 }
2674
2675 // Make our StdNamespace cache point at the first real definition of the
2676 // "std" namespace.
2677 StdNamespace = Namespc;
Mike Stump1eb44332009-09-09 15:08:12 +00002678 }
Douglas Gregor44b43212008-12-11 16:49:14 +00002679
2680 PushOnScopeChains(Namespc, DeclRegionScope);
2681 } else {
John McCall9aeed322009-10-01 00:25:31 +00002682 // Anonymous namespaces.
2683
2684 // C++ [namespace.unnamed]p1. An unnamed-namespace-definition
2685 // behaves as if it were replaced by
2686 // namespace unique { /* empty body */ }
2687 // using namespace unique;
2688 // namespace unique { namespace-body }
2689 // where all occurrences of 'unique' in a translation unit are
2690 // replaced by the same identifier and this identifier differs
2691 // from all other identifiers in the entire program.
2692
2693 // We just create the namespace with an empty name and then add an
2694 // implicit using declaration, just like the standard suggests.
2695 //
2696 // CodeGen enforces the "universally unique" aspect by giving all
2697 // declarations semantically contained within an anonymous
2698 // namespace internal linkage.
2699
2700 assert(Namespc->isAnonymousNamespace());
2701 CurContext->addDecl(Namespc);
2702
2703 UsingDirectiveDecl* UD
2704 = UsingDirectiveDecl::Create(Context, CurContext,
2705 /* 'using' */ LBrace,
2706 /* 'namespace' */ SourceLocation(),
2707 /* qualifier */ SourceRange(),
2708 /* NNS */ NULL,
2709 /* identifier */ SourceLocation(),
2710 Namespc,
2711 /* Ancestor */ CurContext);
2712 UD->setImplicit();
2713 CurContext->addDecl(UD);
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00002714 }
2715
2716 // Although we could have an invalid decl (i.e. the namespace name is a
2717 // redefinition), push it as current DeclContext and try to continue parsing.
Mike Stump390b4cc2009-05-16 07:39:55 +00002718 // FIXME: We should be able to push Namespc here, so that the each DeclContext
2719 // for the namespace has the declarations that showed up in that particular
2720 // namespace definition.
Douglas Gregor44b43212008-12-11 16:49:14 +00002721 PushDeclContext(NamespcScope, Namespc);
Chris Lattnerb28317a2009-03-28 19:18:32 +00002722 return DeclPtrTy::make(Namespc);
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00002723}
2724
2725/// ActOnFinishNamespaceDef - This callback is called after a namespace is
2726/// exited. Decl is the DeclTy returned by ActOnStartNamespaceDef.
Chris Lattnerb28317a2009-03-28 19:18:32 +00002727void Sema::ActOnFinishNamespaceDef(DeclPtrTy D, SourceLocation RBrace) {
2728 Decl *Dcl = D.getAs<Decl>();
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00002729 NamespaceDecl *Namespc = dyn_cast_or_null<NamespaceDecl>(Dcl);
2730 assert(Namespc && "Invalid parameter, expected NamespaceDecl");
2731 Namespc->setRBracLoc(RBrace);
2732 PopDeclContext();
2733}
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00002734
Chris Lattnerb28317a2009-03-28 19:18:32 +00002735Sema::DeclPtrTy Sema::ActOnUsingDirective(Scope *S,
2736 SourceLocation UsingLoc,
2737 SourceLocation NamespcLoc,
2738 const CXXScopeSpec &SS,
2739 SourceLocation IdentLoc,
2740 IdentifierInfo *NamespcName,
2741 AttributeList *AttrList) {
Douglas Gregorf780abc2008-12-30 03:27:21 +00002742 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
2743 assert(NamespcName && "Invalid NamespcName.");
2744 assert(IdentLoc.isValid() && "Invalid NamespceName location.");
Douglas Gregor2a3009a2009-02-03 19:21:40 +00002745 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Douglas Gregorf780abc2008-12-30 03:27:21 +00002746
Douglas Gregor2a3009a2009-02-03 19:21:40 +00002747 UsingDirectiveDecl *UDir = 0;
Douglas Gregorf780abc2008-12-30 03:27:21 +00002748
Douglas Gregoreb11cd02009-01-14 22:20:51 +00002749 // Lookup namespace name.
John McCalla24dc2e2009-11-17 02:14:36 +00002750 LookupResult R(*this, NamespcName, IdentLoc, LookupNamespaceName);
2751 LookupParsedName(R, S, &SS);
2752 if (R.isAmbiguous())
Chris Lattnerb28317a2009-03-28 19:18:32 +00002753 return DeclPtrTy();
John McCalla24dc2e2009-11-17 02:14:36 +00002754
John McCallf36e02d2009-10-09 21:13:30 +00002755 if (!R.empty()) {
2756 NamedDecl *NS = R.getFoundDecl();
Douglas Gregor19aeac62009-11-14 03:27:21 +00002757 // FIXME: Namespace aliases!
Douglas Gregorf780abc2008-12-30 03:27:21 +00002758 assert(isa<NamespaceDecl>(NS) && "expected namespace decl");
Douglas Gregor2a3009a2009-02-03 19:21:40 +00002759 // C++ [namespace.udir]p1:
2760 // A using-directive specifies that the names in the nominated
2761 // namespace can be used in the scope in which the
2762 // using-directive appears after the using-directive. During
2763 // unqualified name lookup (3.4.1), the names appear as if they
2764 // were declared in the nearest enclosing namespace which
2765 // contains both the using-directive and the nominated
Eli Friedman33a31382009-08-05 19:21:58 +00002766 // namespace. [Note: in this context, "contains" means "contains
2767 // directly or indirectly". ]
Douglas Gregor2a3009a2009-02-03 19:21:40 +00002768
2769 // Find enclosing context containing both using-directive and
2770 // nominated namespace.
2771 DeclContext *CommonAncestor = cast<DeclContext>(NS);
2772 while (CommonAncestor && !CommonAncestor->Encloses(CurContext))
2773 CommonAncestor = CommonAncestor->getParent();
2774
Mike Stump1eb44332009-09-09 15:08:12 +00002775 UDir = UsingDirectiveDecl::Create(Context,
Douglas Gregor8419fa32009-05-30 06:31:56 +00002776 CurContext, UsingLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00002777 NamespcLoc,
Douglas Gregor8419fa32009-05-30 06:31:56 +00002778 SS.getRange(),
2779 (NestedNameSpecifier *)SS.getScopeRep(),
2780 IdentLoc,
Douglas Gregor2a3009a2009-02-03 19:21:40 +00002781 cast<NamespaceDecl>(NS),
2782 CommonAncestor);
2783 PushUsingDirective(S, UDir);
Douglas Gregorf780abc2008-12-30 03:27:21 +00002784 } else {
Chris Lattneread013e2009-01-06 07:24:29 +00002785 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
Douglas Gregorf780abc2008-12-30 03:27:21 +00002786 }
2787
Douglas Gregor2a3009a2009-02-03 19:21:40 +00002788 // FIXME: We ignore attributes for now.
Douglas Gregorf780abc2008-12-30 03:27:21 +00002789 delete AttrList;
Chris Lattnerb28317a2009-03-28 19:18:32 +00002790 return DeclPtrTy::make(UDir);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00002791}
2792
2793void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) {
2794 // If scope has associated entity, then using directive is at namespace
2795 // or translation unit scope. We add UsingDirectiveDecls, into
2796 // it's lookup structure.
2797 if (DeclContext *Ctx = static_cast<DeclContext*>(S->getEntity()))
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002798 Ctx->addDecl(UDir);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00002799 else
2800 // Otherwise it is block-sope. using-directives will affect lookup
2801 // only to the end of scope.
Chris Lattnerb28317a2009-03-28 19:18:32 +00002802 S->PushUsingDirective(DeclPtrTy::make(UDir));
Douglas Gregorf780abc2008-12-30 03:27:21 +00002803}
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00002804
Douglas Gregor9cfbe482009-06-20 00:51:54 +00002805
2806Sema::DeclPtrTy Sema::ActOnUsingDeclaration(Scope *S,
Anders Carlsson595adc12009-08-29 19:54:19 +00002807 AccessSpecifier AS,
Anders Carlssoncf9f9212009-08-28 03:16:11 +00002808 SourceLocation UsingLoc,
2809 const CXXScopeSpec &SS,
Douglas Gregor12c118a2009-11-04 16:30:06 +00002810 UnqualifiedId &Name,
Anders Carlssoncf9f9212009-08-28 03:16:11 +00002811 AttributeList *AttrList,
2812 bool IsTypeName) {
Douglas Gregor9cfbe482009-06-20 00:51:54 +00002813 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Mike Stump1eb44332009-09-09 15:08:12 +00002814
Douglas Gregor12c118a2009-11-04 16:30:06 +00002815 switch (Name.getKind()) {
2816 case UnqualifiedId::IK_Identifier:
2817 case UnqualifiedId::IK_OperatorFunctionId:
2818 case UnqualifiedId::IK_ConversionFunctionId:
2819 break;
2820
2821 case UnqualifiedId::IK_ConstructorName:
2822 Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_constructor)
2823 << SS.getRange();
2824 return DeclPtrTy();
2825
2826 case UnqualifiedId::IK_DestructorName:
2827 Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_destructor)
2828 << SS.getRange();
2829 return DeclPtrTy();
2830
2831 case UnqualifiedId::IK_TemplateId:
2832 Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_template_id)
2833 << SourceRange(Name.TemplateId->LAngleLoc, Name.TemplateId->RAngleLoc);
2834 return DeclPtrTy();
2835 }
2836
2837 DeclarationName TargetName = GetNameFromUnqualifiedId(Name);
John McCall9488ea12009-11-17 05:59:44 +00002838 NamedDecl *UD = BuildUsingDeclaration(S, AS, UsingLoc, SS,
Douglas Gregor12c118a2009-11-04 16:30:06 +00002839 Name.getSourceRange().getBegin(),
2840 TargetName, AttrList, IsTypeName);
Anders Carlsson595adc12009-08-29 19:54:19 +00002841 if (UD) {
Anders Carlssonc72160b2009-08-28 05:40:36 +00002842 PushOnScopeChains(UD, S);
Anders Carlsson595adc12009-08-29 19:54:19 +00002843 UD->setAccess(AS);
2844 }
Mike Stump1eb44332009-09-09 15:08:12 +00002845
Anders Carlssonc72160b2009-08-28 05:40:36 +00002846 return DeclPtrTy::make(UD);
2847}
2848
John McCall9488ea12009-11-17 05:59:44 +00002849/// Builds a shadow declaration corresponding to a 'using' declaration.
2850static UsingShadowDecl *BuildUsingShadowDecl(Sema &SemaRef, Scope *S,
2851 AccessSpecifier AS,
2852 UsingDecl *UD, NamedDecl *Orig) {
2853 // FIXME: diagnose hiding, collisions
2854
2855 // If we resolved to another shadow declaration, just coalesce them.
2856 if (isa<UsingShadowDecl>(Orig)) {
2857 Orig = cast<UsingShadowDecl>(Orig)->getTargetDecl();
2858 assert(!isa<UsingShadowDecl>(Orig) && "nested shadow declaration");
2859 }
2860
2861 UsingShadowDecl *Shadow
2862 = UsingShadowDecl::Create(SemaRef.Context, SemaRef.CurContext,
2863 UD->getLocation(), UD, Orig);
2864 UD->addShadowDecl(Shadow);
2865
2866 if (S)
2867 SemaRef.PushOnScopeChains(Shadow, S);
2868 else
2869 SemaRef.CurContext->addDecl(Shadow);
2870 Shadow->setAccess(AS);
2871
2872 return Shadow;
2873}
2874
2875NamedDecl *Sema::BuildUsingDeclaration(Scope *S, AccessSpecifier AS,
2876 SourceLocation UsingLoc,
Anders Carlssonc72160b2009-08-28 05:40:36 +00002877 const CXXScopeSpec &SS,
2878 SourceLocation IdentLoc,
2879 DeclarationName Name,
2880 AttributeList *AttrList,
2881 bool IsTypeName) {
2882 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
2883 assert(IdentLoc.isValid() && "Invalid TargetName location.");
Eli Friedman2a16a132009-08-27 05:09:36 +00002884
Anders Carlsson550b14b2009-08-28 05:49:21 +00002885 // FIXME: We ignore attributes for now.
2886 delete AttrList;
Mike Stump1eb44332009-09-09 15:08:12 +00002887
Anders Carlssoncf9f9212009-08-28 03:16:11 +00002888 if (SS.isEmpty()) {
2889 Diag(IdentLoc, diag::err_using_requires_qualname);
Anders Carlssonc72160b2009-08-28 05:40:36 +00002890 return 0;
Anders Carlssoncf9f9212009-08-28 03:16:11 +00002891 }
Mike Stump1eb44332009-09-09 15:08:12 +00002892
2893 NestedNameSpecifier *NNS =
Anders Carlssoncf9f9212009-08-28 03:16:11 +00002894 static_cast<NestedNameSpecifier *>(SS.getScopeRep());
2895
John McCallaf8e6ed2009-11-12 03:15:40 +00002896 DeclContext *LookupContext = computeDeclContext(SS);
2897 if (!LookupContext) {
Anders Carlsson550b14b2009-08-28 05:49:21 +00002898 return UnresolvedUsingDecl::Create(Context, CurContext, UsingLoc,
2899 SS.getRange(), NNS,
2900 IdentLoc, Name, IsTypeName);
2901 }
Mike Stump1eb44332009-09-09 15:08:12 +00002902
Anders Carlssoncf9f9212009-08-28 03:16:11 +00002903 if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(CurContext)) {
2904 // C++0x N2914 [namespace.udecl]p3:
2905 // A using-declaration used as a member-declaration shall refer to a member
2906 // of a base class of the class being defined, shall refer to a member of an
2907 // anonymous union that is a member of a base class of the class being
Mike Stump1eb44332009-09-09 15:08:12 +00002908 // defined, or shall refer to an enumerator for an enumeration type that is
Anders Carlssoncf9f9212009-08-28 03:16:11 +00002909 // a member of a base class of the class being defined.
John McCall9488ea12009-11-17 05:59:44 +00002910
John McCallaf8e6ed2009-11-12 03:15:40 +00002911 CXXRecordDecl *LookupRD = dyn_cast<CXXRecordDecl>(LookupContext);
2912 if (!LookupRD || !RD->isDerivedFrom(LookupRD)) {
Anders Carlssoncf9f9212009-08-28 03:16:11 +00002913 Diag(SS.getRange().getBegin(),
2914 diag::err_using_decl_nested_name_specifier_is_not_a_base_class)
2915 << NNS << RD->getDeclName();
Anders Carlssonc72160b2009-08-28 05:40:36 +00002916 return 0;
Anders Carlssoncf9f9212009-08-28 03:16:11 +00002917 }
Anders Carlssoncf9f9212009-08-28 03:16:11 +00002918 } else {
2919 // C++0x N2914 [namespace.udecl]p8:
2920 // A using-declaration for a class member shall be a member-declaration.
John McCallaf8e6ed2009-11-12 03:15:40 +00002921 if (isa<CXXRecordDecl>(LookupContext)) {
Anders Carlsson73b39cf2009-08-28 03:35:18 +00002922 Diag(IdentLoc, diag::err_using_decl_can_not_refer_to_class_member)
Anders Carlssoncf9f9212009-08-28 03:16:11 +00002923 << SS.getRange();
Anders Carlssonc72160b2009-08-28 05:40:36 +00002924 return 0;
Anders Carlssoncf9f9212009-08-28 03:16:11 +00002925 }
Anders Carlssoncf9f9212009-08-28 03:16:11 +00002926 }
2927
John McCall9488ea12009-11-17 05:59:44 +00002928 // Look up the target name. Unlike most lookups, we do not want to
2929 // hide tag declarations: tag names are visible through the using
2930 // declaration even if hidden by ordinary names.
John McCalla24dc2e2009-11-17 02:14:36 +00002931 LookupResult R(*this, Name, IdentLoc, LookupOrdinaryName);
John McCall9488ea12009-11-17 05:59:44 +00002932 R.setHideTags(false);
2933
John McCalla24dc2e2009-11-17 02:14:36 +00002934 LookupQualifiedName(R, LookupContext);
Mike Stump1eb44332009-09-09 15:08:12 +00002935
John McCallf36e02d2009-10-09 21:13:30 +00002936 if (R.empty()) {
Douglas Gregor3f093272009-10-13 21:16:44 +00002937 Diag(IdentLoc, diag::err_no_member)
2938 << Name << LookupContext << SS.getRange();
Anders Carlssonc72160b2009-08-28 05:40:36 +00002939 return 0;
Douglas Gregor9cfbe482009-06-20 00:51:54 +00002940 }
2941
John McCall9488ea12009-11-17 05:59:44 +00002942 if (R.isAmbiguous())
2943 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00002944
John McCall9488ea12009-11-17 05:59:44 +00002945 if (IsTypeName &&
2946 (R.getResultKind() != LookupResult::Found
2947 || !isa<TypeDecl>(R.getFoundDecl()))) {
Anders Carlssoncf9f9212009-08-28 03:16:11 +00002948 Diag(IdentLoc, diag::err_using_typename_non_type);
Anders Carlssonc72160b2009-08-28 05:40:36 +00002949 return 0;
Anders Carlssoncf9f9212009-08-28 03:16:11 +00002950 }
2951
Anders Carlsson73b39cf2009-08-28 03:35:18 +00002952 // C++0x N2914 [namespace.udecl]p6:
2953 // A using-declaration shall not name a namespace.
John McCall9488ea12009-11-17 05:59:44 +00002954 if (R.getResultKind() == LookupResult::Found
2955 && isa<NamespaceDecl>(R.getFoundDecl())) {
Anders Carlsson73b39cf2009-08-28 03:35:18 +00002956 Diag(IdentLoc, diag::err_using_decl_can_not_refer_to_namespace)
2957 << SS.getRange();
Anders Carlssonc72160b2009-08-28 05:40:36 +00002958 return 0;
Anders Carlsson73b39cf2009-08-28 03:35:18 +00002959 }
Mike Stump1eb44332009-09-09 15:08:12 +00002960
John McCall9488ea12009-11-17 05:59:44 +00002961 UsingDecl *UD = UsingDecl::Create(Context, CurContext, IdentLoc,
2962 SS.getRange(), UsingLoc, NNS, Name,
2963 IsTypeName);
2964
2965 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I)
2966 BuildUsingShadowDecl(*this, S, AS, UD, *I);
2967
2968 return UD;
Douglas Gregor9cfbe482009-06-20 00:51:54 +00002969}
2970
Anders Carlsson81c85c42009-03-28 23:53:49 +00002971/// getNamespaceDecl - Returns the namespace a decl represents. If the decl
2972/// is a namespace alias, returns the namespace it points to.
2973static inline NamespaceDecl *getNamespaceDecl(NamedDecl *D) {
2974 if (NamespaceAliasDecl *AD = dyn_cast_or_null<NamespaceAliasDecl>(D))
2975 return AD->getNamespace();
2976 return dyn_cast_or_null<NamespaceDecl>(D);
2977}
2978
Mike Stump1eb44332009-09-09 15:08:12 +00002979Sema::DeclPtrTy Sema::ActOnNamespaceAliasDef(Scope *S,
Anders Carlsson03bd5a12009-03-28 22:53:22 +00002980 SourceLocation NamespaceLoc,
Chris Lattnerb28317a2009-03-28 19:18:32 +00002981 SourceLocation AliasLoc,
2982 IdentifierInfo *Alias,
2983 const CXXScopeSpec &SS,
Anders Carlsson03bd5a12009-03-28 22:53:22 +00002984 SourceLocation IdentLoc,
2985 IdentifierInfo *Ident) {
Mike Stump1eb44332009-09-09 15:08:12 +00002986
Anders Carlsson81c85c42009-03-28 23:53:49 +00002987 // Lookup the namespace name.
John McCalla24dc2e2009-11-17 02:14:36 +00002988 LookupResult R(*this, Ident, IdentLoc, LookupNamespaceName);
2989 LookupParsedName(R, S, &SS);
Anders Carlsson81c85c42009-03-28 23:53:49 +00002990
Anders Carlsson8d7ba402009-03-28 06:23:46 +00002991 // Check if we have a previous declaration with the same name.
John McCallf36e02d2009-10-09 21:13:30 +00002992 if (NamedDecl *PrevDecl
John McCalla24dc2e2009-11-17 02:14:36 +00002993 = LookupSingleName(S, Alias, LookupOrdinaryName,
2994 LookupResult::ForRedeclaration)) {
Anders Carlsson81c85c42009-03-28 23:53:49 +00002995 if (NamespaceAliasDecl *AD = dyn_cast<NamespaceAliasDecl>(PrevDecl)) {
Mike Stump1eb44332009-09-09 15:08:12 +00002996 // We already have an alias with the same name that points to the same
Anders Carlsson81c85c42009-03-28 23:53:49 +00002997 // namespace, so don't create a new one.
John McCallf36e02d2009-10-09 21:13:30 +00002998 if (!R.isAmbiguous() && !R.empty() &&
2999 AD->getNamespace() == getNamespaceDecl(R.getFoundDecl()))
Anders Carlsson81c85c42009-03-28 23:53:49 +00003000 return DeclPtrTy();
3001 }
Mike Stump1eb44332009-09-09 15:08:12 +00003002
Anders Carlsson8d7ba402009-03-28 06:23:46 +00003003 unsigned DiagID = isa<NamespaceDecl>(PrevDecl) ? diag::err_redefinition :
3004 diag::err_redefinition_different_kind;
3005 Diag(AliasLoc, DiagID) << Alias;
3006 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Chris Lattnerb28317a2009-03-28 19:18:32 +00003007 return DeclPtrTy();
Anders Carlsson8d7ba402009-03-28 06:23:46 +00003008 }
3009
John McCalla24dc2e2009-11-17 02:14:36 +00003010 if (R.isAmbiguous())
Chris Lattnerb28317a2009-03-28 19:18:32 +00003011 return DeclPtrTy();
Mike Stump1eb44332009-09-09 15:08:12 +00003012
John McCallf36e02d2009-10-09 21:13:30 +00003013 if (R.empty()) {
Anders Carlsson5721c682009-03-28 06:42:02 +00003014 Diag(NamespaceLoc, diag::err_expected_namespace_name) << SS.getRange();
Chris Lattnerb28317a2009-03-28 19:18:32 +00003015 return DeclPtrTy();
Anders Carlsson5721c682009-03-28 06:42:02 +00003016 }
Mike Stump1eb44332009-09-09 15:08:12 +00003017
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00003018 NamespaceAliasDecl *AliasDecl =
Mike Stump1eb44332009-09-09 15:08:12 +00003019 NamespaceAliasDecl::Create(Context, CurContext, NamespaceLoc, AliasLoc,
3020 Alias, SS.getRange(),
Douglas Gregor6c9c9402009-05-30 06:48:27 +00003021 (NestedNameSpecifier *)SS.getScopeRep(),
John McCallf36e02d2009-10-09 21:13:30 +00003022 IdentLoc, R.getFoundDecl());
Mike Stump1eb44332009-09-09 15:08:12 +00003023
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003024 CurContext->addDecl(AliasDecl);
Anders Carlsson68771c72009-03-28 22:58:02 +00003025 return DeclPtrTy::make(AliasDecl);
Anders Carlssondbb00942009-03-28 05:27:17 +00003026}
3027
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00003028void Sema::DefineImplicitDefaultConstructor(SourceLocation CurrentLocation,
3029 CXXConstructorDecl *Constructor) {
Fariborz Jahanian05a5c452009-06-22 20:37:23 +00003030 assert((Constructor->isImplicit() && Constructor->isDefaultConstructor() &&
3031 !Constructor->isUsed()) &&
3032 "DefineImplicitDefaultConstructor - call it for implicit default ctor");
Mike Stump1eb44332009-09-09 15:08:12 +00003033
Eli Friedman80c30da2009-11-09 19:20:36 +00003034 CXXRecordDecl *ClassDecl
3035 = cast<CXXRecordDecl>(Constructor->getDeclContext());
3036 assert(ClassDecl && "DefineImplicitDefaultConstructor - invalid constructor");
Eli Friedman49c16da2009-11-09 01:05:47 +00003037
Eli Friedman80c30da2009-11-09 19:20:36 +00003038 if (SetBaseOrMemberInitializers(Constructor, 0, 0, true)) {
3039 Diag(CurrentLocation, diag::note_ctor_synthesized_at)
3040 << Context.getTagDeclType(ClassDecl);
3041 Constructor->setInvalidDecl();
3042 } else {
3043 Constructor->setUsed();
3044 }
Eli Friedman49c16da2009-11-09 01:05:47 +00003045 return;
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00003046}
3047
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00003048void Sema::DefineImplicitDestructor(SourceLocation CurrentLocation,
Douglas Gregor4fe95f92009-09-04 19:04:08 +00003049 CXXDestructorDecl *Destructor) {
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00003050 assert((Destructor->isImplicit() && !Destructor->isUsed()) &&
3051 "DefineImplicitDestructor - call it for implicit default dtor");
Anders Carlsson6d701392009-11-15 22:49:34 +00003052 CXXRecordDecl *ClassDecl = Destructor->getParent();
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00003053 assert(ClassDecl && "DefineImplicitDestructor - invalid destructor");
3054 // C++ [class.dtor] p5
Mike Stump1eb44332009-09-09 15:08:12 +00003055 // Before the implicitly-declared default destructor for a class is
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00003056 // implicitly defined, all the implicitly-declared default destructors
3057 // for its base class and its non-static data members shall have been
3058 // implicitly defined.
Fariborz Jahanian514b7b12009-06-30 16:36:53 +00003059 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
3060 E = ClassDecl->bases_end(); Base != E; ++Base) {
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00003061 CXXRecordDecl *BaseClassDecl
Ted Kremenek6217b802009-07-29 21:53:49 +00003062 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00003063 if (!BaseClassDecl->hasTrivialDestructor()) {
Mike Stump1eb44332009-09-09 15:08:12 +00003064 if (CXXDestructorDecl *BaseDtor =
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00003065 const_cast<CXXDestructorDecl*>(BaseClassDecl->getDestructor(Context)))
3066 MarkDeclarationReferenced(CurrentLocation, BaseDtor);
3067 else
Mike Stump1eb44332009-09-09 15:08:12 +00003068 assert(false &&
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00003069 "DefineImplicitDestructor - missing dtor in a base class");
3070 }
3071 }
Mike Stump1eb44332009-09-09 15:08:12 +00003072
Fariborz Jahanian514b7b12009-06-30 16:36:53 +00003073 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
3074 E = ClassDecl->field_end(); Field != E; ++Field) {
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00003075 QualType FieldType = Context.getCanonicalType((*Field)->getType());
3076 if (const ArrayType *Array = Context.getAsArrayType(FieldType))
3077 FieldType = Array->getElementType();
Ted Kremenek6217b802009-07-29 21:53:49 +00003078 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00003079 CXXRecordDecl *FieldClassDecl
3080 = cast<CXXRecordDecl>(FieldClassType->getDecl());
3081 if (!FieldClassDecl->hasTrivialDestructor()) {
Mike Stump1eb44332009-09-09 15:08:12 +00003082 if (CXXDestructorDecl *FieldDtor =
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00003083 const_cast<CXXDestructorDecl*>(
3084 FieldClassDecl->getDestructor(Context)))
3085 MarkDeclarationReferenced(CurrentLocation, FieldDtor);
3086 else
Mike Stump1eb44332009-09-09 15:08:12 +00003087 assert(false &&
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00003088 "DefineImplicitDestructor - missing dtor in class of a data member");
3089 }
3090 }
3091 }
3092 Destructor->setUsed();
3093}
3094
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00003095void Sema::DefineImplicitOverloadedAssign(SourceLocation CurrentLocation,
3096 CXXMethodDecl *MethodDecl) {
3097 assert((MethodDecl->isImplicit() && MethodDecl->isOverloadedOperator() &&
3098 MethodDecl->getOverloadedOperator() == OO_Equal &&
3099 !MethodDecl->isUsed()) &&
3100 "DefineImplicitOverloadedAssign - call it for implicit assignment op");
Mike Stump1eb44332009-09-09 15:08:12 +00003101
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00003102 CXXRecordDecl *ClassDecl
3103 = cast<CXXRecordDecl>(MethodDecl->getDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +00003104
Fariborz Jahanianc6249b92009-06-26 16:08:57 +00003105 // C++[class.copy] p12
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00003106 // Before the implicitly-declared copy assignment operator for a class is
3107 // implicitly defined, all implicitly-declared copy assignment operators
3108 // for its direct base classes and its nonstatic data members shall have
3109 // been implicitly defined.
3110 bool err = false;
Fariborz Jahanian514b7b12009-06-30 16:36:53 +00003111 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
3112 E = ClassDecl->bases_end(); Base != E; ++Base) {
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00003113 CXXRecordDecl *BaseClassDecl
Ted Kremenek6217b802009-07-29 21:53:49 +00003114 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Mike Stump1eb44332009-09-09 15:08:12 +00003115 if (CXXMethodDecl *BaseAssignOpMethod =
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00003116 getAssignOperatorMethod(MethodDecl->getParamDecl(0), BaseClassDecl))
3117 MarkDeclarationReferenced(CurrentLocation, BaseAssignOpMethod);
3118 }
Fariborz Jahanian514b7b12009-06-30 16:36:53 +00003119 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
3120 E = ClassDecl->field_end(); Field != E; ++Field) {
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00003121 QualType FieldType = Context.getCanonicalType((*Field)->getType());
3122 if (const ArrayType *Array = Context.getAsArrayType(FieldType))
3123 FieldType = Array->getElementType();
Ted Kremenek6217b802009-07-29 21:53:49 +00003124 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00003125 CXXRecordDecl *FieldClassDecl
3126 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Mike Stump1eb44332009-09-09 15:08:12 +00003127 if (CXXMethodDecl *FieldAssignOpMethod =
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00003128 getAssignOperatorMethod(MethodDecl->getParamDecl(0), FieldClassDecl))
3129 MarkDeclarationReferenced(CurrentLocation, FieldAssignOpMethod);
Mike Stumpac5fc7c2009-08-04 21:02:39 +00003130 } else if (FieldType->isReferenceType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00003131 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
Anders Carlsson5e09d4c2009-07-09 17:47:25 +00003132 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
3133 Diag(Field->getLocation(), diag::note_declared_at);
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00003134 Diag(CurrentLocation, diag::note_first_required_here);
3135 err = true;
Mike Stumpac5fc7c2009-08-04 21:02:39 +00003136 } else if (FieldType.isConstQualified()) {
Mike Stump1eb44332009-09-09 15:08:12 +00003137 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
Anders Carlsson5e09d4c2009-07-09 17:47:25 +00003138 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
3139 Diag(Field->getLocation(), diag::note_declared_at);
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00003140 Diag(CurrentLocation, diag::note_first_required_here);
3141 err = true;
3142 }
3143 }
3144 if (!err)
Mike Stump1eb44332009-09-09 15:08:12 +00003145 MethodDecl->setUsed();
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00003146}
3147
3148CXXMethodDecl *
3149Sema::getAssignOperatorMethod(ParmVarDecl *ParmDecl,
3150 CXXRecordDecl *ClassDecl) {
3151 QualType LHSType = Context.getTypeDeclType(ClassDecl);
3152 QualType RHSType(LHSType);
3153 // If class's assignment operator argument is const/volatile qualified,
Mike Stump1eb44332009-09-09 15:08:12 +00003154 // look for operator = (const/volatile B&). Otherwise, look for
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00003155 // operator = (B&).
John McCall0953e762009-09-24 19:53:00 +00003156 RHSType = Context.getCVRQualifiedType(RHSType,
3157 ParmDecl->getType().getCVRQualifiers());
Mike Stump1eb44332009-09-09 15:08:12 +00003158 ExprOwningPtr<Expr> LHS(this, new (Context) DeclRefExpr(ParmDecl,
3159 LHSType,
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00003160 SourceLocation()));
Mike Stump1eb44332009-09-09 15:08:12 +00003161 ExprOwningPtr<Expr> RHS(this, new (Context) DeclRefExpr(ParmDecl,
3162 RHSType,
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00003163 SourceLocation()));
3164 Expr *Args[2] = { &*LHS, &*RHS };
3165 OverloadCandidateSet CandidateSet;
Mike Stump1eb44332009-09-09 15:08:12 +00003166 AddMemberOperatorCandidates(clang::OO_Equal, SourceLocation(), Args, 2,
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00003167 CandidateSet);
3168 OverloadCandidateSet::iterator Best;
Mike Stump1eb44332009-09-09 15:08:12 +00003169 if (BestViableFunction(CandidateSet,
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00003170 ClassDecl->getLocation(), Best) == OR_Success)
3171 return cast<CXXMethodDecl>(Best->Function);
3172 assert(false &&
3173 "getAssignOperatorMethod - copy assignment operator method not found");
3174 return 0;
3175}
3176
Fariborz Jahanian485f0872009-06-22 23:34:40 +00003177void Sema::DefineImplicitCopyConstructor(SourceLocation CurrentLocation,
3178 CXXConstructorDecl *CopyConstructor,
3179 unsigned TypeQuals) {
Mike Stump1eb44332009-09-09 15:08:12 +00003180 assert((CopyConstructor->isImplicit() &&
Fariborz Jahanian485f0872009-06-22 23:34:40 +00003181 CopyConstructor->isCopyConstructor(Context, TypeQuals) &&
3182 !CopyConstructor->isUsed()) &&
3183 "DefineImplicitCopyConstructor - call it for implicit copy ctor");
Mike Stump1eb44332009-09-09 15:08:12 +00003184
Fariborz Jahanian485f0872009-06-22 23:34:40 +00003185 CXXRecordDecl *ClassDecl
3186 = cast<CXXRecordDecl>(CopyConstructor->getDeclContext());
3187 assert(ClassDecl && "DefineImplicitCopyConstructor - invalid constructor");
Fariborz Jahanian220a0f32009-06-23 23:42:10 +00003188 // C++ [class.copy] p209
Mike Stump1eb44332009-09-09 15:08:12 +00003189 // Before the implicitly-declared copy constructor for a class is
Fariborz Jahanian485f0872009-06-22 23:34:40 +00003190 // implicitly defined, all the implicitly-declared copy constructors
3191 // for its base class and its non-static data members shall have been
3192 // implicitly defined.
3193 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin();
3194 Base != ClassDecl->bases_end(); ++Base) {
3195 CXXRecordDecl *BaseClassDecl
Ted Kremenek6217b802009-07-29 21:53:49 +00003196 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Mike Stump1eb44332009-09-09 15:08:12 +00003197 if (CXXConstructorDecl *BaseCopyCtor =
Fariborz Jahanian485f0872009-06-22 23:34:40 +00003198 BaseClassDecl->getCopyConstructor(Context, TypeQuals))
Fariborz Jahanian220a0f32009-06-23 23:42:10 +00003199 MarkDeclarationReferenced(CurrentLocation, BaseCopyCtor);
Fariborz Jahanian485f0872009-06-22 23:34:40 +00003200 }
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003201 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
3202 FieldEnd = ClassDecl->field_end();
3203 Field != FieldEnd; ++Field) {
Fariborz Jahanian485f0872009-06-22 23:34:40 +00003204 QualType FieldType = Context.getCanonicalType((*Field)->getType());
3205 if (const ArrayType *Array = Context.getAsArrayType(FieldType))
3206 FieldType = Array->getElementType();
Ted Kremenek6217b802009-07-29 21:53:49 +00003207 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Fariborz Jahanian485f0872009-06-22 23:34:40 +00003208 CXXRecordDecl *FieldClassDecl
3209 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Mike Stump1eb44332009-09-09 15:08:12 +00003210 if (CXXConstructorDecl *FieldCopyCtor =
Fariborz Jahanian485f0872009-06-22 23:34:40 +00003211 FieldClassDecl->getCopyConstructor(Context, TypeQuals))
Fariborz Jahanian220a0f32009-06-23 23:42:10 +00003212 MarkDeclarationReferenced(CurrentLocation, FieldCopyCtor);
Fariborz Jahanian485f0872009-06-22 23:34:40 +00003213 }
3214 }
3215 CopyConstructor->setUsed();
3216}
3217
Anders Carlssonda3f4e22009-08-25 05:12:04 +00003218Sema::OwningExprResult
Anders Carlssonec8e5ea2009-09-05 07:40:38 +00003219Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
Mike Stump1eb44332009-09-09 15:08:12 +00003220 CXXConstructorDecl *Constructor,
Anders Carlssonf47511a2009-09-07 22:23:31 +00003221 MultiExprArg ExprArgs) {
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00003222 bool Elidable = false;
Mike Stump1eb44332009-09-09 15:08:12 +00003223
Douglas Gregor39da0b82009-09-09 23:08:42 +00003224 // C++ [class.copy]p15:
3225 // Whenever a temporary class object is copied using a copy constructor, and
3226 // this object and the copy have the same cv-unqualified type, an
3227 // implementation is permitted to treat the original and the copy as two
3228 // different ways of referring to the same object and not perform a copy at
3229 // all, even if the class copy constructor or destructor have side effects.
Mike Stump1eb44332009-09-09 15:08:12 +00003230
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00003231 // FIXME: Is this enough?
Douglas Gregor39da0b82009-09-09 23:08:42 +00003232 if (Constructor->isCopyConstructor(Context)) {
Anders Carlssonf47511a2009-09-07 22:23:31 +00003233 Expr *E = ((Expr **)ExprArgs.get())[0];
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00003234 while (CXXBindTemporaryExpr *BE = dyn_cast<CXXBindTemporaryExpr>(E))
3235 E = BE->getSubExpr();
Douglas Gregor39da0b82009-09-09 23:08:42 +00003236 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E))
3237 if (ICE->getCastKind() == CastExpr::CK_NoOp)
3238 E = ICE->getSubExpr();
3239
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00003240 if (isa<CallExpr>(E) || isa<CXXTemporaryObjectExpr>(E))
3241 Elidable = true;
3242 }
Mike Stump1eb44332009-09-09 15:08:12 +00003243
3244 return BuildCXXConstructExpr(ConstructLoc, DeclInitType, Constructor,
Anders Carlssonf47511a2009-09-07 22:23:31 +00003245 Elidable, move(ExprArgs));
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00003246}
3247
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00003248/// BuildCXXConstructExpr - Creates a complete call to a constructor,
3249/// including handling of its default argument expressions.
Anders Carlssonda3f4e22009-08-25 05:12:04 +00003250Sema::OwningExprResult
Anders Carlssonec8e5ea2009-09-05 07:40:38 +00003251Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
3252 CXXConstructorDecl *Constructor, bool Elidable,
Anders Carlssonf47511a2009-09-07 22:23:31 +00003253 MultiExprArg ExprArgs) {
3254 unsigned NumExprs = ExprArgs.size();
3255 Expr **Exprs = (Expr **)ExprArgs.release();
Mike Stump1eb44332009-09-09 15:08:12 +00003256
Douglas Gregor39da0b82009-09-09 23:08:42 +00003257 return Owned(CXXConstructExpr::Create(Context, DeclInitType, Constructor,
3258 Elidable, Exprs, NumExprs));
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00003259}
3260
Anders Carlssone7624a72009-08-27 05:08:22 +00003261Sema::OwningExprResult
Mike Stump1eb44332009-09-09 15:08:12 +00003262Sema::BuildCXXTemporaryObjectExpr(CXXConstructorDecl *Constructor,
3263 QualType Ty,
3264 SourceLocation TyBeginLoc,
Anders Carlssone7624a72009-08-27 05:08:22 +00003265 MultiExprArg Args,
3266 SourceLocation RParenLoc) {
Douglas Gregor39da0b82009-09-09 23:08:42 +00003267 unsigned NumExprs = Args.size();
3268 Expr **Exprs = (Expr **)Args.release();
Mike Stump1eb44332009-09-09 15:08:12 +00003269
Douglas Gregor39da0b82009-09-09 23:08:42 +00003270 return Owned(new (Context) CXXTemporaryObjectExpr(Context, Constructor, Ty,
3271 TyBeginLoc, Exprs,
3272 NumExprs, RParenLoc));
Anders Carlssone7624a72009-08-27 05:08:22 +00003273}
3274
3275
Mike Stump1eb44332009-09-09 15:08:12 +00003276bool Sema::InitializeVarWithConstructor(VarDecl *VD,
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00003277 CXXConstructorDecl *Constructor,
Anders Carlssonf47511a2009-09-07 22:23:31 +00003278 MultiExprArg Exprs) {
Mike Stump1eb44332009-09-09 15:08:12 +00003279 OwningExprResult TempResult =
Fariborz Jahanianc0fcce42009-10-28 18:41:06 +00003280 BuildCXXConstructExpr(VD->getLocation(), VD->getType(), Constructor,
Anders Carlssonf47511a2009-09-07 22:23:31 +00003281 move(Exprs));
Anders Carlssonfe2de492009-08-25 05:18:00 +00003282 if (TempResult.isInvalid())
3283 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00003284
Anders Carlssonda3f4e22009-08-25 05:12:04 +00003285 Expr *Temp = TempResult.takeAs<Expr>();
Douglas Gregord7f37bf2009-06-22 23:06:13 +00003286 MarkDeclarationReferenced(VD->getLocation(), Constructor);
Fariborz Jahaniancaa499b2009-08-05 18:17:32 +00003287 Temp = MaybeCreateCXXExprWithTemporaries(Temp, /*DestroyTemps=*/true);
Douglas Gregor78d15832009-05-26 18:54:04 +00003288 VD->setInit(Context, Temp);
Mike Stump1eb44332009-09-09 15:08:12 +00003289
Anders Carlssonfe2de492009-08-25 05:18:00 +00003290 return false;
Anders Carlsson930e8d02009-04-16 23:50:50 +00003291}
3292
Mike Stump1eb44332009-09-09 15:08:12 +00003293void Sema::FinalizeVarWithDestructor(VarDecl *VD, QualType DeclInitType) {
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00003294 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(
Ted Kremenek6217b802009-07-29 21:53:49 +00003295 DeclInitType->getAs<RecordType>()->getDecl());
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00003296 if (!ClassDecl->hasTrivialDestructor())
Mike Stump1eb44332009-09-09 15:08:12 +00003297 if (CXXDestructorDecl *Destructor =
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00003298 const_cast<CXXDestructorDecl*>(ClassDecl->getDestructor(Context)))
Fariborz Jahaniana83f7ed2009-08-03 19:13:25 +00003299 MarkDeclarationReferenced(VD->getLocation(), Destructor);
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00003300}
3301
Mike Stump1eb44332009-09-09 15:08:12 +00003302/// AddCXXDirectInitializerToDecl - This action is called immediately after
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00003303/// ActOnDeclarator, when a C++ direct initializer is present.
3304/// e.g: "int x(1);"
Chris Lattnerb28317a2009-03-28 19:18:32 +00003305void Sema::AddCXXDirectInitializerToDecl(DeclPtrTy Dcl,
3306 SourceLocation LParenLoc,
Sebastian Redlf53597f2009-03-15 17:47:39 +00003307 MultiExprArg Exprs,
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00003308 SourceLocation *CommaLocs,
3309 SourceLocation RParenLoc) {
Sebastian Redlf53597f2009-03-15 17:47:39 +00003310 unsigned NumExprs = Exprs.size();
3311 assert(NumExprs != 0 && Exprs.get() && "missing expressions");
Chris Lattnerb28317a2009-03-28 19:18:32 +00003312 Decl *RealDecl = Dcl.getAs<Decl>();
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00003313
3314 // If there is no declaration, there was an error parsing it. Just ignore
3315 // the initializer.
Chris Lattnerb28317a2009-03-28 19:18:32 +00003316 if (RealDecl == 0)
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00003317 return;
Mike Stump1eb44332009-09-09 15:08:12 +00003318
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00003319 VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl);
3320 if (!VDecl) {
3321 Diag(RealDecl->getLocation(), diag::err_illegal_initializer);
3322 RealDecl->setInvalidDecl();
3323 return;
3324 }
3325
Douglas Gregor83ddad32009-08-26 21:14:46 +00003326 // We will represent direct-initialization similarly to copy-initialization:
Argyrios Kyrtzidisce8e2922008-10-06 23:08:37 +00003327 // int x(1); -as-> int x = 1;
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00003328 // ClassType x(a,b,c); -as-> ClassType x = ClassType(a,b,c);
3329 //
3330 // Clients that want to distinguish between the two forms, can check for
3331 // direct initializer using VarDecl::hasCXXDirectInitializer().
3332 // A major benefit is that clients that don't particularly care about which
3333 // exactly form was it (like the CodeGen) can handle both cases without
3334 // special case code.
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +00003335
Douglas Gregor83ddad32009-08-26 21:14:46 +00003336 // If either the declaration has a dependent type or if any of the expressions
3337 // is type-dependent, we represent the initialization via a ParenListExpr for
3338 // later use during template instantiation.
3339 if (VDecl->getType()->isDependentType() ||
3340 Expr::hasAnyTypeDependentArguments((Expr **)Exprs.get(), Exprs.size())) {
3341 // Let clients know that initialization was done with a direct initializer.
3342 VDecl->setCXXDirectInitializer(true);
Mike Stump1eb44332009-09-09 15:08:12 +00003343
Douglas Gregor83ddad32009-08-26 21:14:46 +00003344 // Store the initialization expressions as a ParenListExpr.
3345 unsigned NumExprs = Exprs.size();
Mike Stump1eb44332009-09-09 15:08:12 +00003346 VDecl->setInit(Context,
Douglas Gregor83ddad32009-08-26 21:14:46 +00003347 new (Context) ParenListExpr(Context, LParenLoc,
3348 (Expr **)Exprs.release(),
3349 NumExprs, RParenLoc));
3350 return;
3351 }
Mike Stump1eb44332009-09-09 15:08:12 +00003352
Douglas Gregor83ddad32009-08-26 21:14:46 +00003353
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00003354 // C++ 8.5p11:
3355 // The form of initialization (using parentheses or '=') is generally
3356 // insignificant, but does matter when the entity being initialized has a
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +00003357 // class type.
Douglas Gregor18fe5682008-11-03 20:45:27 +00003358 QualType DeclInitType = VDecl->getType();
3359 if (const ArrayType *Array = Context.getAsArrayType(DeclInitType))
Fariborz Jahanian680a3f32009-10-28 19:04:36 +00003360 DeclInitType = Context.getBaseElementType(Array);
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +00003361
Douglas Gregor615c5d42009-03-24 16:43:20 +00003362 // FIXME: This isn't the right place to complete the type.
3363 if (RequireCompleteType(VDecl->getLocation(), VDecl->getType(),
3364 diag::err_typecheck_decl_incomplete_type)) {
3365 VDecl->setInvalidDecl();
3366 return;
3367 }
3368
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +00003369 if (VDecl->getType()->isRecordType()) {
Douglas Gregor39da0b82009-09-09 23:08:42 +00003370 ASTOwningVector<&ActionBase::DeleteExpr> ConstructorArgs(*this);
3371
Douglas Gregor18fe5682008-11-03 20:45:27 +00003372 CXXConstructorDecl *Constructor
Sebastian Redlf53597f2009-03-15 17:47:39 +00003373 = PerformInitializationByConstructor(DeclInitType,
Douglas Gregor39da0b82009-09-09 23:08:42 +00003374 move(Exprs),
Douglas Gregorf03d7c72008-11-05 15:29:30 +00003375 VDecl->getLocation(),
3376 SourceRange(VDecl->getLocation(),
3377 RParenLoc),
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00003378 VDecl->getDeclName(),
Douglas Gregor39da0b82009-09-09 23:08:42 +00003379 IK_Direct,
3380 ConstructorArgs);
Sebastian Redlf53597f2009-03-15 17:47:39 +00003381 if (!Constructor)
Douglas Gregor18fe5682008-11-03 20:45:27 +00003382 RealDecl->setInvalidDecl();
Anders Carlssonca29ad92009-04-15 21:48:18 +00003383 else {
Anders Carlssonca29ad92009-04-15 21:48:18 +00003384 VDecl->setCXXDirectInitializer(true);
Fariborz Jahanianc0fcce42009-10-28 18:41:06 +00003385 if (InitializeVarWithConstructor(VDecl, Constructor,
Douglas Gregor39da0b82009-09-09 23:08:42 +00003386 move_arg(ConstructorArgs)))
Anders Carlssonfe2de492009-08-25 05:18:00 +00003387 RealDecl->setInvalidDecl();
Fariborz Jahaniana83f7ed2009-08-03 19:13:25 +00003388 FinalizeVarWithDestructor(VDecl, DeclInitType);
Anders Carlssonca29ad92009-04-15 21:48:18 +00003389 }
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +00003390 return;
3391 }
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00003392
Argyrios Kyrtzidisce8e2922008-10-06 23:08:37 +00003393 if (NumExprs > 1) {
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00003394 Diag(CommaLocs[0], diag::err_builtin_direct_init_more_than_one_arg)
3395 << SourceRange(VDecl->getLocation(), RParenLoc);
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00003396 RealDecl->setInvalidDecl();
3397 return;
3398 }
3399
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00003400 // Let clients know that initialization was done with a direct initializer.
3401 VDecl->setCXXDirectInitializer(true);
Argyrios Kyrtzidisce8e2922008-10-06 23:08:37 +00003402
3403 assert(NumExprs == 1 && "Expected 1 expression");
3404 // Set the init expression, handles conversions.
Sebastian Redlf53597f2009-03-15 17:47:39 +00003405 AddInitializerToDecl(Dcl, ExprArg(*this, Exprs.release()[0]),
3406 /*DirectInit=*/true);
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00003407}
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003408
Douglas Gregor19aeac62009-11-14 03:27:21 +00003409/// \brief Add the applicable constructor candidates for an initialization
3410/// by constructor.
3411static void AddConstructorInitializationCandidates(Sema &SemaRef,
3412 QualType ClassType,
3413 Expr **Args,
3414 unsigned NumArgs,
3415 Sema::InitializationKind Kind,
3416 OverloadCandidateSet &CandidateSet) {
3417 // C++ [dcl.init]p14:
3418 // If the initialization is direct-initialization, or if it is
3419 // copy-initialization where the cv-unqualified version of the
3420 // source type is the same class as, or a derived class of, the
3421 // class of the destination, constructors are considered. The
3422 // applicable constructors are enumerated (13.3.1.3), and the
3423 // best one is chosen through overload resolution (13.3). The
3424 // constructor so selected is called to initialize the object,
3425 // with the initializer expression(s) as its argument(s). If no
3426 // constructor applies, or the overload resolution is ambiguous,
3427 // the initialization is ill-formed.
3428 const RecordType *ClassRec = ClassType->getAs<RecordType>();
3429 assert(ClassRec && "Can only initialize a class type here");
3430
3431 // FIXME: When we decide not to synthesize the implicitly-declared
3432 // constructors, we'll need to make them appear here.
3433
3434 const CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(ClassRec->getDecl());
3435 DeclarationName ConstructorName
3436 = SemaRef.Context.DeclarationNames.getCXXConstructorName(
3437 SemaRef.Context.getCanonicalType(ClassType).getUnqualifiedType());
3438 DeclContext::lookup_const_iterator Con, ConEnd;
3439 for (llvm::tie(Con, ConEnd) = ClassDecl->lookup(ConstructorName);
3440 Con != ConEnd; ++Con) {
3441 // Find the constructor (which may be a template).
3442 CXXConstructorDecl *Constructor = 0;
3443 FunctionTemplateDecl *ConstructorTmpl= dyn_cast<FunctionTemplateDecl>(*Con);
3444 if (ConstructorTmpl)
3445 Constructor
3446 = cast<CXXConstructorDecl>(ConstructorTmpl->getTemplatedDecl());
3447 else
3448 Constructor = cast<CXXConstructorDecl>(*Con);
3449
3450 if ((Kind == Sema::IK_Direct) ||
3451 (Kind == Sema::IK_Copy &&
3452 Constructor->isConvertingConstructor(/*AllowExplicit=*/false)) ||
3453 (Kind == Sema::IK_Default && Constructor->isDefaultConstructor())) {
3454 if (ConstructorTmpl)
3455 SemaRef.AddTemplateOverloadCandidate(ConstructorTmpl, false, 0, 0,
3456 Args, NumArgs, CandidateSet);
3457 else
3458 SemaRef.AddOverloadCandidate(Constructor, Args, NumArgs, CandidateSet);
3459 }
3460 }
3461}
3462
3463/// \brief Attempt to perform initialization by constructor
3464/// (C++ [dcl.init]p14), which may occur as part of direct-initialization or
3465/// copy-initialization.
3466///
3467/// This routine determines whether initialization by constructor is possible,
3468/// but it does not emit any diagnostics in the case where the initialization
3469/// is ill-formed.
3470///
3471/// \param ClassType the type of the object being initialized, which must have
3472/// class type.
3473///
3474/// \param Args the arguments provided to initialize the object
3475///
3476/// \param NumArgs the number of arguments provided to initialize the object
3477///
3478/// \param Kind the type of initialization being performed
3479///
3480/// \returns the constructor used to initialize the object, if successful.
3481/// Otherwise, emits a diagnostic and returns NULL.
3482CXXConstructorDecl *
3483Sema::TryInitializationByConstructor(QualType ClassType,
3484 Expr **Args, unsigned NumArgs,
3485 SourceLocation Loc,
3486 InitializationKind Kind) {
3487 // Build the overload candidate set
3488 OverloadCandidateSet CandidateSet;
3489 AddConstructorInitializationCandidates(*this, ClassType, Args, NumArgs, Kind,
3490 CandidateSet);
3491
3492 // Determine whether we found a constructor we can use.
3493 OverloadCandidateSet::iterator Best;
3494 switch (BestViableFunction(CandidateSet, Loc, Best)) {
3495 case OR_Success:
3496 case OR_Deleted:
3497 // We found a constructor. Return it.
3498 return cast<CXXConstructorDecl>(Best->Function);
3499
3500 case OR_No_Viable_Function:
3501 case OR_Ambiguous:
3502 // Overload resolution failed. Return nothing.
3503 return 0;
3504 }
3505
3506 // Silence GCC warning
3507 return 0;
3508}
3509
Douglas Gregor39da0b82009-09-09 23:08:42 +00003510/// \brief Perform initialization by constructor (C++ [dcl.init]p14), which
3511/// may occur as part of direct-initialization or copy-initialization.
3512///
3513/// \param ClassType the type of the object being initialized, which must have
3514/// class type.
3515///
3516/// \param ArgsPtr the arguments provided to initialize the object
3517///
3518/// \param Loc the source location where the initialization occurs
3519///
3520/// \param Range the source range that covers the entire initialization
3521///
3522/// \param InitEntity the name of the entity being initialized, if known
3523///
3524/// \param Kind the type of initialization being performed
3525///
3526/// \param ConvertedArgs a vector that will be filled in with the
3527/// appropriately-converted arguments to the constructor (if initialization
3528/// succeeded).
3529///
3530/// \returns the constructor used to initialize the object, if successful.
3531/// Otherwise, emits a diagnostic and returns NULL.
Douglas Gregor18fe5682008-11-03 20:45:27 +00003532CXXConstructorDecl *
Douglas Gregorf03d7c72008-11-05 15:29:30 +00003533Sema::PerformInitializationByConstructor(QualType ClassType,
Douglas Gregor39da0b82009-09-09 23:08:42 +00003534 MultiExprArg ArgsPtr,
Douglas Gregorf03d7c72008-11-05 15:29:30 +00003535 SourceLocation Loc, SourceRange Range,
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00003536 DeclarationName InitEntity,
Douglas Gregor39da0b82009-09-09 23:08:42 +00003537 InitializationKind Kind,
3538 ASTOwningVector<&ActionBase::DeleteExpr> &ConvertedArgs) {
Douglas Gregor19aeac62009-11-14 03:27:21 +00003539
3540 // Build the overload candidate set
Douglas Gregor39da0b82009-09-09 23:08:42 +00003541 Expr **Args = (Expr **)ArgsPtr.get();
3542 unsigned NumArgs = ArgsPtr.size();
Douglas Gregor18fe5682008-11-03 20:45:27 +00003543 OverloadCandidateSet CandidateSet;
Douglas Gregor19aeac62009-11-14 03:27:21 +00003544 AddConstructorInitializationCandidates(*this, ClassType, Args, NumArgs, Kind,
3545 CandidateSet);
Douglas Gregor9e7d9de2008-12-15 21:24:18 +00003546
Douglas Gregor18fe5682008-11-03 20:45:27 +00003547 OverloadCandidateSet::iterator Best;
Douglas Gregore0762c92009-06-19 23:52:42 +00003548 switch (BestViableFunction(CandidateSet, Loc, Best)) {
Douglas Gregor18fe5682008-11-03 20:45:27 +00003549 case OR_Success:
Douglas Gregor39da0b82009-09-09 23:08:42 +00003550 // We found a constructor. Break out so that we can convert the arguments
3551 // appropriately.
3552 break;
Mike Stump1eb44332009-09-09 15:08:12 +00003553
Douglas Gregor18fe5682008-11-03 20:45:27 +00003554 case OR_No_Viable_Function:
Douglas Gregor87fd7032009-02-02 17:43:21 +00003555 if (InitEntity)
3556 Diag(Loc, diag::err_ovl_no_viable_function_in_init)
Chris Lattner4330d652009-02-17 07:29:20 +00003557 << InitEntity << Range;
Douglas Gregor87fd7032009-02-02 17:43:21 +00003558 else
3559 Diag(Loc, diag::err_ovl_no_viable_function_in_init)
Chris Lattner4330d652009-02-17 07:29:20 +00003560 << ClassType << Range;
Sebastian Redle4c452c2008-11-22 13:44:36 +00003561 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/false);
Douglas Gregor18fe5682008-11-03 20:45:27 +00003562 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00003563
Douglas Gregor18fe5682008-11-03 20:45:27 +00003564 case OR_Ambiguous:
Douglas Gregor87fd7032009-02-02 17:43:21 +00003565 if (InitEntity)
3566 Diag(Loc, diag::err_ovl_ambiguous_init) << InitEntity << Range;
3567 else
3568 Diag(Loc, diag::err_ovl_ambiguous_init) << ClassType << Range;
Douglas Gregor18fe5682008-11-03 20:45:27 +00003569 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true);
3570 return 0;
Douglas Gregor48f3bb92009-02-18 21:56:37 +00003571
3572 case OR_Deleted:
3573 if (InitEntity)
3574 Diag(Loc, diag::err_ovl_deleted_init)
3575 << Best->Function->isDeleted()
3576 << InitEntity << Range;
3577 else
3578 Diag(Loc, diag::err_ovl_deleted_init)
3579 << Best->Function->isDeleted()
3580 << InitEntity << Range;
3581 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true);
3582 return 0;
Douglas Gregor18fe5682008-11-03 20:45:27 +00003583 }
Mike Stump1eb44332009-09-09 15:08:12 +00003584
Douglas Gregor39da0b82009-09-09 23:08:42 +00003585 // Convert the arguments, fill in default arguments, etc.
3586 CXXConstructorDecl *Constructor = cast<CXXConstructorDecl>(Best->Function);
3587 if (CompleteConstructorCall(Constructor, move(ArgsPtr), Loc, ConvertedArgs))
3588 return 0;
3589
3590 return Constructor;
3591}
3592
3593/// \brief Given a constructor and the set of arguments provided for the
3594/// constructor, convert the arguments and add any required default arguments
3595/// to form a proper call to this constructor.
3596///
3597/// \returns true if an error occurred, false otherwise.
3598bool
3599Sema::CompleteConstructorCall(CXXConstructorDecl *Constructor,
3600 MultiExprArg ArgsPtr,
3601 SourceLocation Loc,
3602 ASTOwningVector<&ActionBase::DeleteExpr> &ConvertedArgs) {
3603 // FIXME: This duplicates a lot of code from Sema::ConvertArgumentsForCall.
3604 unsigned NumArgs = ArgsPtr.size();
3605 Expr **Args = (Expr **)ArgsPtr.get();
3606
3607 const FunctionProtoType *Proto
3608 = Constructor->getType()->getAs<FunctionProtoType>();
3609 assert(Proto && "Constructor without a prototype?");
3610 unsigned NumArgsInProto = Proto->getNumArgs();
3611 unsigned NumArgsToCheck = NumArgs;
3612
3613 // If too few arguments are available, we'll fill in the rest with defaults.
3614 if (NumArgs < NumArgsInProto) {
3615 NumArgsToCheck = NumArgsInProto;
3616 ConvertedArgs.reserve(NumArgsInProto);
3617 } else {
3618 ConvertedArgs.reserve(NumArgs);
3619 if (NumArgs > NumArgsInProto)
3620 NumArgsToCheck = NumArgsInProto;
3621 }
3622
3623 // Convert arguments
3624 for (unsigned i = 0; i != NumArgsToCheck; i++) {
3625 QualType ProtoArgType = Proto->getArgType(i);
3626
3627 Expr *Arg;
3628 if (i < NumArgs) {
3629 Arg = Args[i];
Anders Carlsson71710112009-09-15 21:14:33 +00003630
3631 // Pass the argument.
3632 if (PerformCopyInitialization(Arg, ProtoArgType, "passing"))
3633 return true;
3634
3635 Args[i] = 0;
Douglas Gregor39da0b82009-09-09 23:08:42 +00003636 } else {
3637 ParmVarDecl *Param = Constructor->getParamDecl(i);
3638
3639 OwningExprResult DefArg = BuildCXXDefaultArgExpr(Loc, Constructor, Param);
3640 if (DefArg.isInvalid())
3641 return true;
3642
3643 Arg = DefArg.takeAs<Expr>();
3644 }
3645
3646 ConvertedArgs.push_back(Arg);
3647 }
3648
3649 // If this is a variadic call, handle args passed through "...".
3650 if (Proto->isVariadic()) {
3651 // Promote the arguments (C99 6.5.2.2p7).
3652 for (unsigned i = NumArgsInProto; i != NumArgs; i++) {
3653 Expr *Arg = Args[i];
3654 if (DefaultVariadicArgumentPromotion(Arg, VariadicConstructor))
3655 return true;
3656
3657 ConvertedArgs.push_back(Arg);
3658 Args[i] = 0;
3659 }
3660 }
3661
3662 return false;
Douglas Gregor18fe5682008-11-03 20:45:27 +00003663}
3664
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003665/// CompareReferenceRelationship - Compare the two types T1 and T2 to
3666/// determine whether they are reference-related,
3667/// reference-compatible, reference-compatible with added
3668/// qualification, or incompatible, for use in C++ initialization by
3669/// reference (C++ [dcl.ref.init]p4). Neither type can be a reference
3670/// type, and the first type (T1) is the pointee type of the reference
3671/// type being initialized.
Mike Stump1eb44332009-09-09 15:08:12 +00003672Sema::ReferenceCompareResult
Douglas Gregor393896f2009-11-05 13:06:35 +00003673Sema::CompareReferenceRelationship(SourceLocation Loc,
3674 QualType OrigT1, QualType OrigT2,
Douglas Gregor15da57e2008-10-29 02:00:59 +00003675 bool& DerivedToBase) {
Douglas Gregor393896f2009-11-05 13:06:35 +00003676 assert(!OrigT1->isReferenceType() &&
Sebastian Redl7c80bd62009-03-16 23:22:08 +00003677 "T1 must be the pointee type of the reference type");
Douglas Gregor393896f2009-11-05 13:06:35 +00003678 assert(!OrigT2->isReferenceType() && "T2 cannot be a reference type");
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003679
Douglas Gregor393896f2009-11-05 13:06:35 +00003680 QualType T1 = Context.getCanonicalType(OrigT1);
3681 QualType T2 = Context.getCanonicalType(OrigT2);
Douglas Gregora4923eb2009-11-16 21:35:15 +00003682 QualType UnqualT1 = T1.getLocalUnqualifiedType();
3683 QualType UnqualT2 = T2.getLocalUnqualifiedType();
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003684
3685 // C++ [dcl.init.ref]p4:
Eli Friedman33a31382009-08-05 19:21:58 +00003686 // Given types "cv1 T1" and "cv2 T2," "cv1 T1" is
Mike Stump1eb44332009-09-09 15:08:12 +00003687 // reference-related to "cv2 T2" if T1 is the same type as T2, or
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003688 // T1 is a base class of T2.
Douglas Gregor15da57e2008-10-29 02:00:59 +00003689 if (UnqualT1 == UnqualT2)
3690 DerivedToBase = false;
Douglas Gregor393896f2009-11-05 13:06:35 +00003691 else if (!RequireCompleteType(Loc, OrigT1, PDiag()) &&
3692 !RequireCompleteType(Loc, OrigT2, PDiag()) &&
3693 IsDerivedFrom(UnqualT2, UnqualT1))
Douglas Gregor15da57e2008-10-29 02:00:59 +00003694 DerivedToBase = true;
3695 else
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003696 return Ref_Incompatible;
3697
3698 // At this point, we know that T1 and T2 are reference-related (at
3699 // least).
3700
3701 // C++ [dcl.init.ref]p4:
Eli Friedman33a31382009-08-05 19:21:58 +00003702 // "cv1 T1" is reference-compatible with "cv2 T2" if T1 is
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003703 // reference-related to T2 and cv1 is the same cv-qualification
3704 // as, or greater cv-qualification than, cv2. For purposes of
3705 // overload resolution, cases for which cv1 is greater
3706 // cv-qualification than cv2 are identified as
3707 // reference-compatible with added qualification (see 13.3.3.2).
3708 if (T1.getCVRQualifiers() == T2.getCVRQualifiers())
3709 return Ref_Compatible;
3710 else if (T1.isMoreQualifiedThan(T2))
3711 return Ref_Compatible_With_Added_Qualification;
3712 else
3713 return Ref_Related;
3714}
3715
3716/// CheckReferenceInit - Check the initialization of a reference
3717/// variable with the given initializer (C++ [dcl.init.ref]). Init is
3718/// the initializer (either a simple initializer or an initializer
Douglas Gregor3205a782008-10-29 23:31:03 +00003719/// list), and DeclType is the type of the declaration. When ICS is
3720/// non-null, this routine will compute the implicit conversion
3721/// sequence according to C++ [over.ics.ref] and will not produce any
3722/// diagnostics; when ICS is null, it will emit diagnostics when any
3723/// errors are found. Either way, a return value of true indicates
3724/// that there was a failure, a return value of false indicates that
3725/// the reference initialization succeeded.
Douglas Gregor225c41e2008-11-03 19:09:14 +00003726///
3727/// When @p SuppressUserConversions, user-defined conversions are
3728/// suppressed.
Douglas Gregor09f41cf2009-01-14 15:45:31 +00003729/// When @p AllowExplicit, we also permit explicit user-defined
3730/// conversion functions.
Sebastian Redle2b68332009-04-12 17:16:29 +00003731/// When @p ForceRValue, we unconditionally treat the initializer as an rvalue.
Sebastian Redla82e4ae2009-11-14 21:15:49 +00003732/// When @p IgnoreBaseAccess, we don't do access control on to-base conversion.
3733/// This is used when this is called from a C-style cast.
Mike Stump1eb44332009-09-09 15:08:12 +00003734bool
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003735Sema::CheckReferenceInit(Expr *&Init, QualType DeclType,
Douglas Gregor739d8282009-09-23 23:04:10 +00003736 SourceLocation DeclLoc,
Douglas Gregor09f41cf2009-01-14 15:45:31 +00003737 bool SuppressUserConversions,
Anders Carlsson2de3ace2009-08-27 17:30:43 +00003738 bool AllowExplicit, bool ForceRValue,
Sebastian Redla82e4ae2009-11-14 21:15:49 +00003739 ImplicitConversionSequence *ICS,
3740 bool IgnoreBaseAccess) {
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003741 assert(DeclType->isReferenceType() && "Reference init needs a reference");
3742
Ted Kremenek6217b802009-07-29 21:53:49 +00003743 QualType T1 = DeclType->getAs<ReferenceType>()->getPointeeType();
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003744 QualType T2 = Init->getType();
3745
Douglas Gregor904eed32008-11-10 20:40:00 +00003746 // If the initializer is the address of an overloaded function, try
3747 // to resolve the overloaded function. If all goes well, T2 is the
3748 // type of the resulting function.
Douglas Gregor063daf62009-03-13 18:40:31 +00003749 if (Context.getCanonicalType(T2) == Context.OverloadTy) {
Mike Stump1eb44332009-09-09 15:08:12 +00003750 FunctionDecl *Fn = ResolveAddressOfOverloadedFunction(Init, DeclType,
Douglas Gregor904eed32008-11-10 20:40:00 +00003751 ICS != 0);
3752 if (Fn) {
3753 // Since we're performing this reference-initialization for
3754 // real, update the initializer with the resulting function.
Douglas Gregor48f3bb92009-02-18 21:56:37 +00003755 if (!ICS) {
Douglas Gregor739d8282009-09-23 23:04:10 +00003756 if (DiagnoseUseOfDecl(Fn, DeclLoc))
Douglas Gregor48f3bb92009-02-18 21:56:37 +00003757 return true;
3758
Anders Carlsson96ad5332009-10-21 17:16:23 +00003759 Init = FixOverloadedFunctionReference(Init, Fn);
Douglas Gregor48f3bb92009-02-18 21:56:37 +00003760 }
Douglas Gregor904eed32008-11-10 20:40:00 +00003761
3762 T2 = Fn->getType();
3763 }
3764 }
3765
Douglas Gregor15da57e2008-10-29 02:00:59 +00003766 // Compute some basic properties of the types and the initializer.
Sebastian Redl7c80bd62009-03-16 23:22:08 +00003767 bool isRValRef = DeclType->isRValueReferenceType();
Douglas Gregor15da57e2008-10-29 02:00:59 +00003768 bool DerivedToBase = false;
Sebastian Redle2b68332009-04-12 17:16:29 +00003769 Expr::isLvalueResult InitLvalue = ForceRValue ? Expr::LV_InvalidExpression :
3770 Init->isLvalue(Context);
Mike Stump1eb44332009-09-09 15:08:12 +00003771 ReferenceCompareResult RefRelationship
Douglas Gregor393896f2009-11-05 13:06:35 +00003772 = CompareReferenceRelationship(DeclLoc, T1, T2, DerivedToBase);
Douglas Gregor15da57e2008-10-29 02:00:59 +00003773
3774 // Most paths end in a failed conversion.
3775 if (ICS)
3776 ICS->ConversionKind = ImplicitConversionSequence::BadConversion;
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003777
3778 // C++ [dcl.init.ref]p5:
Eli Friedman33a31382009-08-05 19:21:58 +00003779 // A reference to type "cv1 T1" is initialized by an expression
3780 // of type "cv2 T2" as follows:
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003781
3782 // -- If the initializer expression
3783
Sebastian Redla9845802009-03-29 15:27:50 +00003784 // Rvalue references cannot bind to lvalues (N2812).
3785 // There is absolutely no situation where they can. In particular, note that
3786 // this is ill-formed, even if B has a user-defined conversion to A&&:
3787 // B b;
3788 // A&& r = b;
3789 if (isRValRef && InitLvalue == Expr::LV_Valid) {
3790 if (!ICS)
Douglas Gregor739d8282009-09-23 23:04:10 +00003791 Diag(DeclLoc, diag::err_lvalue_to_rvalue_ref)
Sebastian Redla9845802009-03-29 15:27:50 +00003792 << Init->getSourceRange();
3793 return true;
3794 }
3795
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003796 bool BindsDirectly = false;
Eli Friedman33a31382009-08-05 19:21:58 +00003797 // -- is an lvalue (but is not a bit-field), and "cv1 T1" is
3798 // reference-compatible with "cv2 T2," or
Douglas Gregor15da57e2008-10-29 02:00:59 +00003799 //
3800 // Note that the bit-field check is skipped if we are just computing
3801 // the implicit conversion sequence (C++ [over.best.ics]p2).
Douglas Gregor33bbbc52009-05-02 02:18:30 +00003802 if (InitLvalue == Expr::LV_Valid && (ICS || !Init->getBitField()) &&
Douglas Gregor15da57e2008-10-29 02:00:59 +00003803 RefRelationship >= Ref_Compatible_With_Added_Qualification) {
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003804 BindsDirectly = true;
3805
Douglas Gregor15da57e2008-10-29 02:00:59 +00003806 if (ICS) {
3807 // C++ [over.ics.ref]p1:
3808 // When a parameter of reference type binds directly (8.5.3)
3809 // to an argument expression, the implicit conversion sequence
3810 // is the identity conversion, unless the argument expression
3811 // has a type that is a derived class of the parameter type,
3812 // in which case the implicit conversion sequence is a
3813 // derived-to-base Conversion (13.3.3.1).
3814 ICS->ConversionKind = ImplicitConversionSequence::StandardConversion;
3815 ICS->Standard.First = ICK_Identity;
3816 ICS->Standard.Second = DerivedToBase? ICK_Derived_To_Base : ICK_Identity;
3817 ICS->Standard.Third = ICK_Identity;
3818 ICS->Standard.FromTypePtr = T2.getAsOpaquePtr();
3819 ICS->Standard.ToTypePtr = T1.getAsOpaquePtr();
Douglas Gregorf70bdb92008-10-29 14:50:44 +00003820 ICS->Standard.ReferenceBinding = true;
3821 ICS->Standard.DirectBinding = true;
Sebastian Redla9845802009-03-29 15:27:50 +00003822 ICS->Standard.RRefBinding = false;
Sebastian Redl76458502009-04-17 16:30:52 +00003823 ICS->Standard.CopyConstructor = 0;
Douglas Gregor15da57e2008-10-29 02:00:59 +00003824
3825 // Nothing more to do: the inaccessibility/ambiguity check for
3826 // derived-to-base conversions is suppressed when we're
3827 // computing the implicit conversion sequence (C++
3828 // [over.best.ics]p2).
3829 return false;
3830 } else {
3831 // Perform the conversion.
Douglas Gregor39da0b82009-09-09 23:08:42 +00003832 CastExpr::CastKind CK = CastExpr::CK_NoOp;
3833 if (DerivedToBase)
3834 CK = CastExpr::CK_DerivedToBase;
Sebastian Redl2c7588f2009-10-10 12:04:10 +00003835 else if(CheckExceptionSpecCompatibility(Init, T1))
3836 return true;
Douglas Gregor39da0b82009-09-09 23:08:42 +00003837 ImpCastExprToType(Init, T1, CK, /*isLvalue=*/true);
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003838 }
3839 }
3840
3841 // -- has a class type (i.e., T2 is a class type) and can be
Eli Friedman33a31382009-08-05 19:21:58 +00003842 // implicitly converted to an lvalue of type "cv3 T3,"
3843 // where "cv1 T1" is reference-compatible with "cv3 T3"
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003844 // 92) (this conversion is selected by enumerating the
3845 // applicable conversion functions (13.3.1.6) and choosing
3846 // the best one through overload resolution (13.3)),
Douglas Gregor5842ba92009-08-24 15:23:48 +00003847 if (!isRValRef && !SuppressUserConversions && T2->isRecordType() &&
Douglas Gregor573d9c32009-10-21 23:19:44 +00003848 !RequireCompleteType(DeclLoc, T2, 0)) {
Mike Stump1eb44332009-09-09 15:08:12 +00003849 CXXRecordDecl *T2RecordDecl
Ted Kremenek6217b802009-07-29 21:53:49 +00003850 = dyn_cast<CXXRecordDecl>(T2->getAs<RecordType>()->getDecl());
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003851
Douglas Gregorcb9b9772008-11-10 16:14:15 +00003852 OverloadCandidateSet CandidateSet;
Mike Stump1eb44332009-09-09 15:08:12 +00003853 OverloadedFunctionDecl *Conversions
Fariborz Jahanian51bebc82009-09-23 20:55:32 +00003854 = T2RecordDecl->getVisibleConversionFunctions();
Mike Stump1eb44332009-09-09 15:08:12 +00003855 for (OverloadedFunctionDecl::function_iterator Func
Douglas Gregorcb9b9772008-11-10 16:14:15 +00003856 = Conversions->function_begin();
3857 Func != Conversions->function_end(); ++Func) {
Mike Stump1eb44332009-09-09 15:08:12 +00003858 FunctionTemplateDecl *ConvTemplate
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00003859 = dyn_cast<FunctionTemplateDecl>(*Func);
3860 CXXConversionDecl *Conv;
3861 if (ConvTemplate)
3862 Conv = cast<CXXConversionDecl>(ConvTemplate->getTemplatedDecl());
3863 else
3864 Conv = cast<CXXConversionDecl>(*Func);
Fariborz Jahanian51bebc82009-09-23 20:55:32 +00003865
Douglas Gregorcb9b9772008-11-10 16:14:15 +00003866 // If the conversion function doesn't return a reference type,
3867 // it can't be considered for this conversion.
Sebastian Redl7c80bd62009-03-16 23:22:08 +00003868 if (Conv->getConversionType()->isLValueReferenceType() &&
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00003869 (AllowExplicit || !Conv->isExplicit())) {
3870 if (ConvTemplate)
Mike Stump1eb44332009-09-09 15:08:12 +00003871 AddTemplateConversionCandidate(ConvTemplate, Init, DeclType,
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00003872 CandidateSet);
3873 else
3874 AddConversionCandidate(Conv, Init, DeclType, CandidateSet);
3875 }
Douglas Gregorcb9b9772008-11-10 16:14:15 +00003876 }
3877
3878 OverloadCandidateSet::iterator Best;
Douglas Gregor739d8282009-09-23 23:04:10 +00003879 switch (BestViableFunction(CandidateSet, DeclLoc, Best)) {
Douglas Gregorcb9b9772008-11-10 16:14:15 +00003880 case OR_Success:
3881 // This is a direct binding.
3882 BindsDirectly = true;
3883
3884 if (ICS) {
3885 // C++ [over.ics.ref]p1:
3886 //
3887 // [...] If the parameter binds directly to the result of
3888 // applying a conversion function to the argument
3889 // expression, the implicit conversion sequence is a
3890 // user-defined conversion sequence (13.3.3.1.2), with the
3891 // second standard conversion sequence either an identity
3892 // conversion or, if the conversion function returns an
3893 // entity of a type that is a derived class of the parameter
3894 // type, a derived-to-base Conversion.
3895 ICS->ConversionKind = ImplicitConversionSequence::UserDefinedConversion;
3896 ICS->UserDefined.Before = Best->Conversions[0].Standard;
3897 ICS->UserDefined.After = Best->FinalConversion;
3898 ICS->UserDefined.ConversionFunction = Best->Function;
Fariborz Jahanian966256a2009-11-06 00:23:08 +00003899 ICS->UserDefined.EllipsisConversion = false;
Douglas Gregorcb9b9772008-11-10 16:14:15 +00003900 assert(ICS->UserDefined.After.ReferenceBinding &&
3901 ICS->UserDefined.After.DirectBinding &&
3902 "Expected a direct reference binding!");
3903 return false;
3904 } else {
Fariborz Jahanian8f489d62009-09-23 22:34:00 +00003905 OwningExprResult InitConversion =
Douglas Gregor739d8282009-09-23 23:04:10 +00003906 BuildCXXCastArgument(DeclLoc, QualType(),
Fariborz Jahanian8f489d62009-09-23 22:34:00 +00003907 CastExpr::CK_UserDefinedConversion,
3908 cast<CXXMethodDecl>(Best->Function),
3909 Owned(Init));
3910 Init = InitConversion.takeAs<Expr>();
Sebastian Redl2c7588f2009-10-10 12:04:10 +00003911
3912 if (CheckExceptionSpecCompatibility(Init, T1))
3913 return true;
Fariborz Jahanian8f489d62009-09-23 22:34:00 +00003914 ImpCastExprToType(Init, T1, CastExpr::CK_UserDefinedConversion,
3915 /*isLvalue=*/true);
Douglas Gregorcb9b9772008-11-10 16:14:15 +00003916 }
3917 break;
3918
3919 case OR_Ambiguous:
Fariborz Jahaniand9290cb2009-10-14 00:52:43 +00003920 if (ICS) {
3921 for (OverloadCandidateSet::iterator Cand = CandidateSet.begin();
3922 Cand != CandidateSet.end(); ++Cand)
3923 if (Cand->Viable)
3924 ICS->ConversionFunctionSet.push_back(Cand->Function);
3925 break;
3926 }
3927 Diag(DeclLoc, diag::err_ref_init_ambiguous) << DeclType << Init->getType()
3928 << Init->getSourceRange();
3929 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true);
Douglas Gregorcb9b9772008-11-10 16:14:15 +00003930 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00003931
Douglas Gregorcb9b9772008-11-10 16:14:15 +00003932 case OR_No_Viable_Function:
Douglas Gregor48f3bb92009-02-18 21:56:37 +00003933 case OR_Deleted:
3934 // There was no suitable conversion, or we found a deleted
3935 // conversion; continue with other checks.
Douglas Gregorcb9b9772008-11-10 16:14:15 +00003936 break;
3937 }
3938 }
Mike Stump1eb44332009-09-09 15:08:12 +00003939
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003940 if (BindsDirectly) {
3941 // C++ [dcl.init.ref]p4:
3942 // [...] In all cases where the reference-related or
3943 // reference-compatible relationship of two types is used to
3944 // establish the validity of a reference binding, and T1 is a
3945 // base class of T2, a program that necessitates such a binding
3946 // is ill-formed if T1 is an inaccessible (clause 11) or
3947 // ambiguous (10.2) base class of T2.
3948 //
3949 // Note that we only check this condition when we're allowed to
3950 // complain about errors, because we should not be checking for
3951 // ambiguity (or inaccessibility) unless the reference binding
3952 // actually happens.
Mike Stump1eb44332009-09-09 15:08:12 +00003953 if (DerivedToBase)
Douglas Gregor739d8282009-09-23 23:04:10 +00003954 return CheckDerivedToBaseConversion(T2, T1, DeclLoc,
Sebastian Redla82e4ae2009-11-14 21:15:49 +00003955 Init->getSourceRange(),
3956 IgnoreBaseAccess);
Douglas Gregor15da57e2008-10-29 02:00:59 +00003957 else
3958 return false;
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003959 }
3960
3961 // -- Otherwise, the reference shall be to a non-volatile const
Sebastian Redla9845802009-03-29 15:27:50 +00003962 // type (i.e., cv1 shall be const), or the reference shall be an
3963 // rvalue reference and the initializer expression shall be an rvalue.
John McCall0953e762009-09-24 19:53:00 +00003964 if (!isRValRef && T1.getCVRQualifiers() != Qualifiers::Const) {
Douglas Gregor15da57e2008-10-29 02:00:59 +00003965 if (!ICS)
Douglas Gregor739d8282009-09-23 23:04:10 +00003966 Diag(DeclLoc, diag::err_not_reference_to_const_init)
Chris Lattnerd1625842008-11-24 06:25:27 +00003967 << T1 << (InitLvalue != Expr::LV_Valid? "temporary" : "value")
3968 << T2 << Init->getSourceRange();
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003969 return true;
3970 }
3971
3972 // -- If the initializer expression is an rvalue, with T2 a
Eli Friedman33a31382009-08-05 19:21:58 +00003973 // class type, and "cv1 T1" is reference-compatible with
3974 // "cv2 T2," the reference is bound in one of the
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003975 // following ways (the choice is implementation-defined):
3976 //
3977 // -- The reference is bound to the object represented by
3978 // the rvalue (see 3.10) or to a sub-object within that
3979 // object.
3980 //
Eli Friedman33a31382009-08-05 19:21:58 +00003981 // -- A temporary of type "cv1 T2" [sic] is created, and
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003982 // a constructor is called to copy the entire rvalue
3983 // object into the temporary. The reference is bound to
3984 // the temporary or to a sub-object within the
3985 // temporary.
3986 //
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003987 // The constructor that would be used to make the copy
3988 // shall be callable whether or not the copy is actually
3989 // done.
3990 //
Sebastian Redla9845802009-03-29 15:27:50 +00003991 // Note that C++0x [dcl.init.ref]p5 takes away this implementation
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003992 // freedom, so we will always take the first option and never build
3993 // a temporary in this case. FIXME: We will, however, have to check
3994 // for the presence of a copy constructor in C++98/03 mode.
3995 if (InitLvalue != Expr::LV_Valid && T2->isRecordType() &&
Douglas Gregor15da57e2008-10-29 02:00:59 +00003996 RefRelationship >= Ref_Compatible_With_Added_Qualification) {
3997 if (ICS) {
3998 ICS->ConversionKind = ImplicitConversionSequence::StandardConversion;
3999 ICS->Standard.First = ICK_Identity;
4000 ICS->Standard.Second = DerivedToBase? ICK_Derived_To_Base : ICK_Identity;
4001 ICS->Standard.Third = ICK_Identity;
4002 ICS->Standard.FromTypePtr = T2.getAsOpaquePtr();
4003 ICS->Standard.ToTypePtr = T1.getAsOpaquePtr();
Douglas Gregorf70bdb92008-10-29 14:50:44 +00004004 ICS->Standard.ReferenceBinding = true;
Sebastian Redla9845802009-03-29 15:27:50 +00004005 ICS->Standard.DirectBinding = false;
4006 ICS->Standard.RRefBinding = isRValRef;
Sebastian Redl76458502009-04-17 16:30:52 +00004007 ICS->Standard.CopyConstructor = 0;
Douglas Gregor15da57e2008-10-29 02:00:59 +00004008 } else {
Douglas Gregor39da0b82009-09-09 23:08:42 +00004009 CastExpr::CastKind CK = CastExpr::CK_NoOp;
4010 if (DerivedToBase)
4011 CK = CastExpr::CK_DerivedToBase;
Sebastian Redl2c7588f2009-10-10 12:04:10 +00004012 else if(CheckExceptionSpecCompatibility(Init, T1))
4013 return true;
Douglas Gregor39da0b82009-09-09 23:08:42 +00004014 ImpCastExprToType(Init, T1, CK, /*isLvalue=*/false);
Douglas Gregor27c8dc02008-10-29 00:13:59 +00004015 }
4016 return false;
4017 }
4018
Eli Friedman33a31382009-08-05 19:21:58 +00004019 // -- Otherwise, a temporary of type "cv1 T1" is created and
Douglas Gregor27c8dc02008-10-29 00:13:59 +00004020 // initialized from the initializer expression using the
4021 // rules for a non-reference copy initialization (8.5). The
4022 // reference is then bound to the temporary. If T1 is
4023 // reference-related to T2, cv1 must be the same
4024 // cv-qualification as, or greater cv-qualification than,
4025 // cv2; otherwise, the program is ill-formed.
4026 if (RefRelationship == Ref_Related) {
4027 // If cv1 == cv2 or cv1 is a greater cv-qualified than cv2, then
4028 // we would be reference-compatible or reference-compatible with
4029 // added qualification. But that wasn't the case, so the reference
4030 // initialization fails.
Douglas Gregor15da57e2008-10-29 02:00:59 +00004031 if (!ICS)
Douglas Gregor739d8282009-09-23 23:04:10 +00004032 Diag(DeclLoc, diag::err_reference_init_drops_quals)
Chris Lattnerd1625842008-11-24 06:25:27 +00004033 << T1 << (InitLvalue != Expr::LV_Valid? "temporary" : "value")
4034 << T2 << Init->getSourceRange();
Douglas Gregor27c8dc02008-10-29 00:13:59 +00004035 return true;
4036 }
4037
Douglas Gregor734d9862009-01-30 23:27:23 +00004038 // If at least one of the types is a class type, the types are not
4039 // related, and we aren't allowed any user conversions, the
4040 // reference binding fails. This case is important for breaking
4041 // recursion, since TryImplicitConversion below will attempt to
4042 // create a temporary through the use of a copy constructor.
4043 if (SuppressUserConversions && RefRelationship == Ref_Incompatible &&
4044 (T1->isRecordType() || T2->isRecordType())) {
4045 if (!ICS)
Douglas Gregor739d8282009-09-23 23:04:10 +00004046 Diag(DeclLoc, diag::err_typecheck_convert_incompatible)
Douglas Gregor734d9862009-01-30 23:27:23 +00004047 << DeclType << Init->getType() << "initializing" << Init->getSourceRange();
4048 return true;
4049 }
4050
Douglas Gregor27c8dc02008-10-29 00:13:59 +00004051 // Actually try to convert the initializer to T1.
Douglas Gregor15da57e2008-10-29 02:00:59 +00004052 if (ICS) {
Sebastian Redla9845802009-03-29 15:27:50 +00004053 // C++ [over.ics.ref]p2:
Mike Stump1eb44332009-09-09 15:08:12 +00004054 //
Sebastian Redla9845802009-03-29 15:27:50 +00004055 // When a parameter of reference type is not bound directly to
4056 // an argument expression, the conversion sequence is the one
4057 // required to convert the argument expression to the
4058 // underlying type of the reference according to
4059 // 13.3.3.1. Conceptually, this conversion sequence corresponds
4060 // to copy-initializing a temporary of the underlying type with
4061 // the argument expression. Any difference in top-level
4062 // cv-qualification is subsumed by the initialization itself
4063 // and does not constitute a conversion.
Anders Carlssonda7a18b2009-08-27 17:24:15 +00004064 *ICS = TryImplicitConversion(Init, T1, SuppressUserConversions,
4065 /*AllowExplicit=*/false,
Anders Carlsson08972922009-08-28 15:33:32 +00004066 /*ForceRValue=*/false,
4067 /*InOverloadResolution=*/false);
Mike Stump1eb44332009-09-09 15:08:12 +00004068
Sebastian Redla9845802009-03-29 15:27:50 +00004069 // Of course, that's still a reference binding.
4070 if (ICS->ConversionKind == ImplicitConversionSequence::StandardConversion) {
4071 ICS->Standard.ReferenceBinding = true;
4072 ICS->Standard.RRefBinding = isRValRef;
Mike Stump1eb44332009-09-09 15:08:12 +00004073 } else if (ICS->ConversionKind ==
Sebastian Redla9845802009-03-29 15:27:50 +00004074 ImplicitConversionSequence::UserDefinedConversion) {
4075 ICS->UserDefined.After.ReferenceBinding = true;
4076 ICS->UserDefined.After.RRefBinding = isRValRef;
4077 }
Douglas Gregor15da57e2008-10-29 02:00:59 +00004078 return ICS->ConversionKind == ImplicitConversionSequence::BadConversion;
4079 } else {
Fariborz Jahanian51bebc82009-09-23 20:55:32 +00004080 ImplicitConversionSequence Conversions;
4081 bool badConversion = PerformImplicitConversion(Init, T1, "initializing",
4082 false, false,
4083 Conversions);
4084 if (badConversion) {
4085 if ((Conversions.ConversionKind ==
4086 ImplicitConversionSequence::BadConversion)
Fariborz Jahanian82ad87b2009-09-28 22:03:07 +00004087 && !Conversions.ConversionFunctionSet.empty()) {
Fariborz Jahanian7ad2d562009-09-24 00:42:43 +00004088 Diag(DeclLoc,
Fariborz Jahanian51bebc82009-09-23 20:55:32 +00004089 diag::err_lvalue_to_rvalue_ambig_ref) << Init->getSourceRange();
4090 for (int j = Conversions.ConversionFunctionSet.size()-1;
4091 j >= 0; j--) {
4092 FunctionDecl *Func = Conversions.ConversionFunctionSet[j];
4093 Diag(Func->getLocation(), diag::err_ovl_candidate);
4094 }
4095 }
Fariborz Jahanian893f9552009-09-30 21:23:30 +00004096 else {
4097 if (isRValRef)
4098 Diag(DeclLoc, diag::err_lvalue_to_rvalue_ref)
4099 << Init->getSourceRange();
4100 else
4101 Diag(DeclLoc, diag::err_invalid_initialization)
4102 << DeclType << Init->getType() << Init->getSourceRange();
4103 }
Fariborz Jahanian51bebc82009-09-23 20:55:32 +00004104 }
4105 return badConversion;
Douglas Gregor15da57e2008-10-29 02:00:59 +00004106 }
Douglas Gregor27c8dc02008-10-29 00:13:59 +00004107}
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00004108
4109/// CheckOverloadedOperatorDeclaration - Check whether the declaration
4110/// of this overloaded operator is well-formed. If so, returns false;
4111/// otherwise, emits appropriate diagnostics and returns true.
4112bool Sema::CheckOverloadedOperatorDeclaration(FunctionDecl *FnDecl) {
Douglas Gregor43c7bad2008-11-17 16:14:12 +00004113 assert(FnDecl && FnDecl->isOverloadedOperator() &&
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00004114 "Expected an overloaded operator declaration");
4115
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00004116 OverloadedOperatorKind Op = FnDecl->getOverloadedOperator();
4117
Mike Stump1eb44332009-09-09 15:08:12 +00004118 // C++ [over.oper]p5:
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00004119 // The allocation and deallocation functions, operator new,
4120 // operator new[], operator delete and operator delete[], are
4121 // described completely in 3.7.3. The attributes and restrictions
4122 // found in the rest of this subclause do not apply to them unless
4123 // explicitly stated in 3.7.3.
Mike Stump390b4cc2009-05-16 07:39:55 +00004124 // FIXME: Write a separate routine for checking this. For now, just allow it.
Fariborz Jahanianb03bfa52009-11-10 23:47:18 +00004125 if (Op == OO_Delete || Op == OO_Array_Delete)
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00004126 return false;
Fariborz Jahanianb03bfa52009-11-10 23:47:18 +00004127
4128 if (Op == OO_New || Op == OO_Array_New) {
4129 bool ret = false;
4130 if (FunctionDecl::param_iterator Param = FnDecl->param_begin()) {
4131 QualType SizeTy = Context.getCanonicalType(Context.getSizeType());
4132 QualType T = Context.getCanonicalType((*Param)->getType());
4133 if (!T->isDependentType() && SizeTy != T) {
4134 Diag(FnDecl->getLocation(),
4135 diag::err_operator_new_param_type) << FnDecl->getDeclName()
4136 << SizeTy;
4137 ret = true;
4138 }
4139 }
4140 QualType ResultTy = Context.getCanonicalType(FnDecl->getResultType());
4141 if (!ResultTy->isDependentType() && ResultTy != Context.VoidPtrTy)
4142 return Diag(FnDecl->getLocation(),
4143 diag::err_operator_new_result_type) << FnDecl->getDeclName()
Douglas Gregorcffecd02009-11-12 16:49:45 +00004144 << static_cast<QualType>(Context.VoidPtrTy);
Fariborz Jahanianb03bfa52009-11-10 23:47:18 +00004145 return ret;
4146 }
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00004147
4148 // C++ [over.oper]p6:
4149 // An operator function shall either be a non-static member
4150 // function or be a non-member function and have at least one
4151 // parameter whose type is a class, a reference to a class, an
4152 // enumeration, or a reference to an enumeration.
Douglas Gregor43c7bad2008-11-17 16:14:12 +00004153 if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(FnDecl)) {
4154 if (MethodDecl->isStatic())
4155 return Diag(FnDecl->getLocation(),
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00004156 diag::err_operator_overload_static) << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00004157 } else {
4158 bool ClassOrEnumParam = false;
Douglas Gregor43c7bad2008-11-17 16:14:12 +00004159 for (FunctionDecl::param_iterator Param = FnDecl->param_begin(),
4160 ParamEnd = FnDecl->param_end();
4161 Param != ParamEnd; ++Param) {
4162 QualType ParamType = (*Param)->getType().getNonReferenceType();
Eli Friedman5d39dee2009-06-27 05:59:59 +00004163 if (ParamType->isDependentType() || ParamType->isRecordType() ||
4164 ParamType->isEnumeralType()) {
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00004165 ClassOrEnumParam = true;
4166 break;
4167 }
4168 }
4169
Douglas Gregor43c7bad2008-11-17 16:14:12 +00004170 if (!ClassOrEnumParam)
4171 return Diag(FnDecl->getLocation(),
Chris Lattnerf3a41af2008-11-20 06:38:18 +00004172 diag::err_operator_overload_needs_class_or_enum)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00004173 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00004174 }
4175
4176 // C++ [over.oper]p8:
4177 // An operator function cannot have default arguments (8.3.6),
4178 // except where explicitly stated below.
4179 //
Mike Stump1eb44332009-09-09 15:08:12 +00004180 // Only the function-call operator allows default arguments
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00004181 // (C++ [over.call]p1).
4182 if (Op != OO_Call) {
4183 for (FunctionDecl::param_iterator Param = FnDecl->param_begin();
4184 Param != FnDecl->param_end(); ++Param) {
Douglas Gregor61366e92008-12-24 00:01:03 +00004185 if ((*Param)->hasUnparsedDefaultArg())
Mike Stump1eb44332009-09-09 15:08:12 +00004186 return Diag((*Param)->getLocation(),
Douglas Gregor61366e92008-12-24 00:01:03 +00004187 diag::err_operator_overload_default_arg)
4188 << FnDecl->getDeclName();
4189 else if (Expr *DefArg = (*Param)->getDefaultArg())
Douglas Gregor43c7bad2008-11-17 16:14:12 +00004190 return Diag((*Param)->getLocation(),
Chris Lattnerd3a94e22008-11-20 06:06:08 +00004191 diag::err_operator_overload_default_arg)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00004192 << FnDecl->getDeclName() << DefArg->getSourceRange();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00004193 }
4194 }
4195
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00004196 static const bool OperatorUses[NUM_OVERLOADED_OPERATORS][3] = {
4197 { false, false, false }
4198#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
4199 , { Unary, Binary, MemberOnly }
4200#include "clang/Basic/OperatorKinds.def"
4201 };
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00004202
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00004203 bool CanBeUnaryOperator = OperatorUses[Op][0];
4204 bool CanBeBinaryOperator = OperatorUses[Op][1];
4205 bool MustBeMemberOperator = OperatorUses[Op][2];
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00004206
4207 // C++ [over.oper]p8:
4208 // [...] Operator functions cannot have more or fewer parameters
4209 // than the number required for the corresponding operator, as
4210 // described in the rest of this subclause.
Mike Stump1eb44332009-09-09 15:08:12 +00004211 unsigned NumParams = FnDecl->getNumParams()
Douglas Gregor43c7bad2008-11-17 16:14:12 +00004212 + (isa<CXXMethodDecl>(FnDecl)? 1 : 0);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00004213 if (Op != OO_Call &&
4214 ((NumParams == 1 && !CanBeUnaryOperator) ||
4215 (NumParams == 2 && !CanBeBinaryOperator) ||
4216 (NumParams < 1) || (NumParams > 2))) {
4217 // We have the wrong number of parameters.
Chris Lattner416e46f2008-11-21 07:57:12 +00004218 unsigned ErrorKind;
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00004219 if (CanBeUnaryOperator && CanBeBinaryOperator) {
Chris Lattner416e46f2008-11-21 07:57:12 +00004220 ErrorKind = 2; // 2 -> unary or binary.
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00004221 } else if (CanBeUnaryOperator) {
Chris Lattner416e46f2008-11-21 07:57:12 +00004222 ErrorKind = 0; // 0 -> unary
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00004223 } else {
Chris Lattneraf7ae4e2008-11-21 07:50:02 +00004224 assert(CanBeBinaryOperator &&
4225 "All non-call overloaded operators are unary or binary!");
Chris Lattner416e46f2008-11-21 07:57:12 +00004226 ErrorKind = 1; // 1 -> binary
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00004227 }
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00004228
Chris Lattner416e46f2008-11-21 07:57:12 +00004229 return Diag(FnDecl->getLocation(), diag::err_operator_overload_must_be)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00004230 << FnDecl->getDeclName() << NumParams << ErrorKind;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00004231 }
Sebastian Redl64b45f72009-01-05 20:52:13 +00004232
Douglas Gregor43c7bad2008-11-17 16:14:12 +00004233 // Overloaded operators other than operator() cannot be variadic.
4234 if (Op != OO_Call &&
John McCall183700f2009-09-21 23:43:11 +00004235 FnDecl->getType()->getAs<FunctionProtoType>()->isVariadic()) {
Chris Lattnerf3a41af2008-11-20 06:38:18 +00004236 return Diag(FnDecl->getLocation(), diag::err_operator_overload_variadic)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00004237 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00004238 }
4239
4240 // Some operators must be non-static member functions.
Douglas Gregor43c7bad2008-11-17 16:14:12 +00004241 if (MustBeMemberOperator && !isa<CXXMethodDecl>(FnDecl)) {
4242 return Diag(FnDecl->getLocation(),
Chris Lattnerf3a41af2008-11-20 06:38:18 +00004243 diag::err_operator_overload_must_be_member)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00004244 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00004245 }
4246
4247 // C++ [over.inc]p1:
4248 // The user-defined function called operator++ implements the
4249 // prefix and postfix ++ operator. If this function is a member
4250 // function with no parameters, or a non-member function with one
4251 // parameter of class or enumeration type, it defines the prefix
4252 // increment operator ++ for objects of that type. If the function
4253 // is a member function with one parameter (which shall be of type
4254 // int) or a non-member function with two parameters (the second
4255 // of which shall be of type int), it defines the postfix
4256 // increment operator ++ for objects of that type.
4257 if ((Op == OO_PlusPlus || Op == OO_MinusMinus) && NumParams == 2) {
4258 ParmVarDecl *LastParam = FnDecl->getParamDecl(FnDecl->getNumParams() - 1);
4259 bool ParamIsInt = false;
John McCall183700f2009-09-21 23:43:11 +00004260 if (const BuiltinType *BT = LastParam->getType()->getAs<BuiltinType>())
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00004261 ParamIsInt = BT->getKind() == BuiltinType::Int;
4262
Chris Lattneraf7ae4e2008-11-21 07:50:02 +00004263 if (!ParamIsInt)
4264 return Diag(LastParam->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00004265 diag::err_operator_overload_post_incdec_must_be_int)
Chris Lattnerd1625842008-11-24 06:25:27 +00004266 << LastParam->getType() << (Op == OO_MinusMinus);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00004267 }
4268
Sebastian Redl64b45f72009-01-05 20:52:13 +00004269 // Notify the class if it got an assignment operator.
4270 if (Op == OO_Equal) {
4271 // Would have returned earlier otherwise.
4272 assert(isa<CXXMethodDecl>(FnDecl) &&
4273 "Overloaded = not member, but not filtered.");
4274 CXXMethodDecl *Method = cast<CXXMethodDecl>(FnDecl);
4275 Method->getParent()->addedAssignmentOperator(Context, Method);
4276 }
4277
Douglas Gregor43c7bad2008-11-17 16:14:12 +00004278 return false;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00004279}
Chris Lattner5a003a42008-12-17 07:09:26 +00004280
Douglas Gregor074149e2009-01-05 19:45:36 +00004281/// ActOnStartLinkageSpecification - Parsed the beginning of a C++
4282/// linkage specification, including the language and (if present)
4283/// the '{'. ExternLoc is the location of the 'extern', LangLoc is
4284/// the location of the language string literal, which is provided
4285/// by Lang/StrSize. LBraceLoc, if valid, provides the location of
4286/// the '{' brace. Otherwise, this linkage specification does not
4287/// have any braces.
Chris Lattnerb28317a2009-03-28 19:18:32 +00004288Sema::DeclPtrTy Sema::ActOnStartLinkageSpecification(Scope *S,
4289 SourceLocation ExternLoc,
4290 SourceLocation LangLoc,
4291 const char *Lang,
4292 unsigned StrSize,
4293 SourceLocation LBraceLoc) {
Chris Lattnercc98eac2008-12-17 07:13:27 +00004294 LinkageSpecDecl::LanguageIDs Language;
4295 if (strncmp(Lang, "\"C\"", StrSize) == 0)
4296 Language = LinkageSpecDecl::lang_c;
4297 else if (strncmp(Lang, "\"C++\"", StrSize) == 0)
4298 Language = LinkageSpecDecl::lang_cxx;
4299 else {
Douglas Gregor074149e2009-01-05 19:45:36 +00004300 Diag(LangLoc, diag::err_bad_language);
Chris Lattnerb28317a2009-03-28 19:18:32 +00004301 return DeclPtrTy();
Chris Lattnercc98eac2008-12-17 07:13:27 +00004302 }
Mike Stump1eb44332009-09-09 15:08:12 +00004303
Chris Lattnercc98eac2008-12-17 07:13:27 +00004304 // FIXME: Add all the various semantics of linkage specifications
Mike Stump1eb44332009-09-09 15:08:12 +00004305
Douglas Gregor074149e2009-01-05 19:45:36 +00004306 LinkageSpecDecl *D = LinkageSpecDecl::Create(Context, CurContext,
Mike Stump1eb44332009-09-09 15:08:12 +00004307 LangLoc, Language,
Douglas Gregor074149e2009-01-05 19:45:36 +00004308 LBraceLoc.isValid());
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00004309 CurContext->addDecl(D);
Douglas Gregor074149e2009-01-05 19:45:36 +00004310 PushDeclContext(S, D);
Chris Lattnerb28317a2009-03-28 19:18:32 +00004311 return DeclPtrTy::make(D);
Chris Lattnercc98eac2008-12-17 07:13:27 +00004312}
4313
Douglas Gregor074149e2009-01-05 19:45:36 +00004314/// ActOnFinishLinkageSpecification - Completely the definition of
4315/// the C++ linkage specification LinkageSpec. If RBraceLoc is
4316/// valid, it's the position of the closing '}' brace in a linkage
4317/// specification that uses braces.
Chris Lattnerb28317a2009-03-28 19:18:32 +00004318Sema::DeclPtrTy Sema::ActOnFinishLinkageSpecification(Scope *S,
4319 DeclPtrTy LinkageSpec,
4320 SourceLocation RBraceLoc) {
Douglas Gregor074149e2009-01-05 19:45:36 +00004321 if (LinkageSpec)
4322 PopDeclContext();
4323 return LinkageSpec;
Chris Lattner5a003a42008-12-17 07:09:26 +00004324}
4325
Douglas Gregord308e622009-05-18 20:51:54 +00004326/// \brief Perform semantic analysis for the variable declaration that
4327/// occurs within a C++ catch clause, returning the newly-created
4328/// variable.
4329VarDecl *Sema::BuildExceptionDeclaration(Scope *S, QualType ExDeclType,
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00004330 DeclaratorInfo *DInfo,
Douglas Gregord308e622009-05-18 20:51:54 +00004331 IdentifierInfo *Name,
4332 SourceLocation Loc,
4333 SourceRange Range) {
4334 bool Invalid = false;
Sebastian Redl4b07b292008-12-22 19:15:10 +00004335
4336 // Arrays and functions decay.
4337 if (ExDeclType->isArrayType())
4338 ExDeclType = Context.getArrayDecayedType(ExDeclType);
4339 else if (ExDeclType->isFunctionType())
4340 ExDeclType = Context.getPointerType(ExDeclType);
4341
4342 // C++ 15.3p1: The exception-declaration shall not denote an incomplete type.
4343 // The exception-declaration shall not denote a pointer or reference to an
4344 // incomplete type, other than [cv] void*.
Sebastian Redlf2e21e52009-03-22 23:49:27 +00004345 // N2844 forbids rvalue references.
Mike Stump1eb44332009-09-09 15:08:12 +00004346 if (!ExDeclType->isDependentType() && ExDeclType->isRValueReferenceType()) {
Douglas Gregord308e622009-05-18 20:51:54 +00004347 Diag(Loc, diag::err_catch_rvalue_ref) << Range;
Sebastian Redlf2e21e52009-03-22 23:49:27 +00004348 Invalid = true;
4349 }
Douglas Gregord308e622009-05-18 20:51:54 +00004350
Sebastian Redl4b07b292008-12-22 19:15:10 +00004351 QualType BaseType = ExDeclType;
4352 int Mode = 0; // 0 for direct type, 1 for pointer, 2 for reference
Douglas Gregor4ec339f2009-01-19 19:26:10 +00004353 unsigned DK = diag::err_catch_incomplete;
Ted Kremenek6217b802009-07-29 21:53:49 +00004354 if (const PointerType *Ptr = BaseType->getAs<PointerType>()) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00004355 BaseType = Ptr->getPointeeType();
4356 Mode = 1;
Douglas Gregor4ec339f2009-01-19 19:26:10 +00004357 DK = diag::err_catch_incomplete_ptr;
Mike Stump1eb44332009-09-09 15:08:12 +00004358 } else if (const ReferenceType *Ref = BaseType->getAs<ReferenceType>()) {
Sebastian Redlf2e21e52009-03-22 23:49:27 +00004359 // For the purpose of error recovery, we treat rvalue refs like lvalue refs.
Sebastian Redl4b07b292008-12-22 19:15:10 +00004360 BaseType = Ref->getPointeeType();
4361 Mode = 2;
Douglas Gregor4ec339f2009-01-19 19:26:10 +00004362 DK = diag::err_catch_incomplete_ref;
Sebastian Redl4b07b292008-12-22 19:15:10 +00004363 }
Sebastian Redlf2e21e52009-03-22 23:49:27 +00004364 if (!Invalid && (Mode == 0 || !BaseType->isVoidType()) &&
Douglas Gregord308e622009-05-18 20:51:54 +00004365 !BaseType->isDependentType() && RequireCompleteType(Loc, BaseType, DK))
Sebastian Redl4b07b292008-12-22 19:15:10 +00004366 Invalid = true;
Sebastian Redl4b07b292008-12-22 19:15:10 +00004367
Mike Stump1eb44332009-09-09 15:08:12 +00004368 if (!Invalid && !ExDeclType->isDependentType() &&
Douglas Gregord308e622009-05-18 20:51:54 +00004369 RequireNonAbstractType(Loc, ExDeclType,
4370 diag::err_abstract_type_in_decl,
4371 AbstractVariableType))
Sebastian Redlfef9f592009-04-27 21:03:30 +00004372 Invalid = true;
4373
Douglas Gregord308e622009-05-18 20:51:54 +00004374 // FIXME: Need to test for ability to copy-construct and destroy the
4375 // exception variable.
4376
Sebastian Redl8351da02008-12-22 21:35:02 +00004377 // FIXME: Need to check for abstract classes.
4378
Mike Stump1eb44332009-09-09 15:08:12 +00004379 VarDecl *ExDecl = VarDecl::Create(Context, CurContext, Loc,
Argyrios Kyrtzidisa5d82002009-08-21 00:31:54 +00004380 Name, ExDeclType, DInfo, VarDecl::None);
Douglas Gregord308e622009-05-18 20:51:54 +00004381
4382 if (Invalid)
4383 ExDecl->setInvalidDecl();
4384
4385 return ExDecl;
4386}
4387
4388/// ActOnExceptionDeclarator - Parsed the exception-declarator in a C++ catch
4389/// handler.
4390Sema::DeclPtrTy Sema::ActOnExceptionDeclarator(Scope *S, Declarator &D) {
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00004391 DeclaratorInfo *DInfo = 0;
4392 QualType ExDeclType = GetTypeForDeclarator(D, S, &DInfo);
Douglas Gregord308e622009-05-18 20:51:54 +00004393
4394 bool Invalid = D.isInvalidType();
Sebastian Redl4b07b292008-12-22 19:15:10 +00004395 IdentifierInfo *II = D.getIdentifier();
John McCallf36e02d2009-10-09 21:13:30 +00004396 if (NamedDecl *PrevDecl = LookupSingleName(S, II, LookupOrdinaryName)) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00004397 // The scope should be freshly made just for us. There is just no way
4398 // it contains any previous declaration.
Chris Lattnerb28317a2009-03-28 19:18:32 +00004399 assert(!S->isDeclScope(DeclPtrTy::make(PrevDecl)));
Sebastian Redl4b07b292008-12-22 19:15:10 +00004400 if (PrevDecl->isTemplateParameter()) {
4401 // Maybe we will complain about the shadowed template parameter.
4402 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
Sebastian Redl4b07b292008-12-22 19:15:10 +00004403 }
4404 }
4405
Chris Lattnereaaebc72009-04-25 08:06:05 +00004406 if (D.getCXXScopeSpec().isSet() && !Invalid) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00004407 Diag(D.getIdentifierLoc(), diag::err_qualified_catch_declarator)
4408 << D.getCXXScopeSpec().getRange();
Chris Lattnereaaebc72009-04-25 08:06:05 +00004409 Invalid = true;
Sebastian Redl4b07b292008-12-22 19:15:10 +00004410 }
4411
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00004412 VarDecl *ExDecl = BuildExceptionDeclaration(S, ExDeclType, DInfo,
Douglas Gregord308e622009-05-18 20:51:54 +00004413 D.getIdentifier(),
4414 D.getIdentifierLoc(),
4415 D.getDeclSpec().getSourceRange());
4416
Chris Lattnereaaebc72009-04-25 08:06:05 +00004417 if (Invalid)
4418 ExDecl->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00004419
Sebastian Redl4b07b292008-12-22 19:15:10 +00004420 // Add the exception declaration into this scope.
Sebastian Redl4b07b292008-12-22 19:15:10 +00004421 if (II)
Douglas Gregord308e622009-05-18 20:51:54 +00004422 PushOnScopeChains(ExDecl, S);
4423 else
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00004424 CurContext->addDecl(ExDecl);
Sebastian Redl4b07b292008-12-22 19:15:10 +00004425
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00004426 ProcessDeclAttributes(S, ExDecl, D);
Chris Lattnerb28317a2009-03-28 19:18:32 +00004427 return DeclPtrTy::make(ExDecl);
Sebastian Redl4b07b292008-12-22 19:15:10 +00004428}
Anders Carlssonfb311762009-03-14 00:25:26 +00004429
Mike Stump1eb44332009-09-09 15:08:12 +00004430Sema::DeclPtrTy Sema::ActOnStaticAssertDeclaration(SourceLocation AssertLoc,
Chris Lattnerb28317a2009-03-28 19:18:32 +00004431 ExprArg assertexpr,
4432 ExprArg assertmessageexpr) {
Anders Carlssonfb311762009-03-14 00:25:26 +00004433 Expr *AssertExpr = (Expr *)assertexpr.get();
Mike Stump1eb44332009-09-09 15:08:12 +00004434 StringLiteral *AssertMessage =
Anders Carlssonfb311762009-03-14 00:25:26 +00004435 cast<StringLiteral>((Expr *)assertmessageexpr.get());
4436
Anders Carlssonc3082412009-03-14 00:33:21 +00004437 if (!AssertExpr->isTypeDependent() && !AssertExpr->isValueDependent()) {
4438 llvm::APSInt Value(32);
4439 if (!AssertExpr->isIntegerConstantExpr(Value, Context)) {
4440 Diag(AssertLoc, diag::err_static_assert_expression_is_not_constant) <<
4441 AssertExpr->getSourceRange();
Chris Lattnerb28317a2009-03-28 19:18:32 +00004442 return DeclPtrTy();
Anders Carlssonc3082412009-03-14 00:33:21 +00004443 }
Anders Carlssonfb311762009-03-14 00:25:26 +00004444
Anders Carlssonc3082412009-03-14 00:33:21 +00004445 if (Value == 0) {
Mike Stump1eb44332009-09-09 15:08:12 +00004446 std::string str(AssertMessage->getStrData(),
Anders Carlssonc3082412009-03-14 00:33:21 +00004447 AssertMessage->getByteLength());
Mike Stump1eb44332009-09-09 15:08:12 +00004448 Diag(AssertLoc, diag::err_static_assert_failed)
Anders Carlsson94b15fb2009-03-15 18:44:04 +00004449 << str << AssertExpr->getSourceRange();
Anders Carlssonc3082412009-03-14 00:33:21 +00004450 }
4451 }
Mike Stump1eb44332009-09-09 15:08:12 +00004452
Anders Carlsson77d81422009-03-15 17:35:16 +00004453 assertexpr.release();
4454 assertmessageexpr.release();
Mike Stump1eb44332009-09-09 15:08:12 +00004455 Decl *Decl = StaticAssertDecl::Create(Context, CurContext, AssertLoc,
Anders Carlssonfb311762009-03-14 00:25:26 +00004456 AssertExpr, AssertMessage);
Mike Stump1eb44332009-09-09 15:08:12 +00004457
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00004458 CurContext->addDecl(Decl);
Chris Lattnerb28317a2009-03-28 19:18:32 +00004459 return DeclPtrTy::make(Decl);
Anders Carlssonfb311762009-03-14 00:25:26 +00004460}
Sebastian Redl50de12f2009-03-24 22:27:57 +00004461
John McCalldd4a3b02009-09-16 22:47:08 +00004462/// Handle a friend type declaration. This works in tandem with
4463/// ActOnTag.
4464///
4465/// Notes on friend class templates:
4466///
4467/// We generally treat friend class declarations as if they were
4468/// declaring a class. So, for example, the elaborated type specifier
4469/// in a friend declaration is required to obey the restrictions of a
4470/// class-head (i.e. no typedefs in the scope chain), template
4471/// parameters are required to match up with simple template-ids, &c.
4472/// However, unlike when declaring a template specialization, it's
4473/// okay to refer to a template specialization without an empty
4474/// template parameter declaration, e.g.
4475/// friend class A<T>::B<unsigned>;
4476/// We permit this as a special case; if there are any template
4477/// parameters present at all, require proper matching, i.e.
4478/// template <> template <class T> friend class A<int>::B;
Chris Lattnerc7f19042009-10-25 17:47:27 +00004479Sema::DeclPtrTy Sema::ActOnFriendTypeDecl(Scope *S, const DeclSpec &DS,
John McCalldd4a3b02009-09-16 22:47:08 +00004480 MultiTemplateParamsArg TempParams) {
John McCall02cace72009-08-28 07:59:38 +00004481 SourceLocation Loc = DS.getSourceRange().getBegin();
John McCall67d1a672009-08-06 02:15:43 +00004482
4483 assert(DS.isFriendSpecified());
4484 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
4485
John McCalldd4a3b02009-09-16 22:47:08 +00004486 // Try to convert the decl specifier to a type. This works for
4487 // friend templates because ActOnTag never produces a ClassTemplateDecl
4488 // for a TUK_Friend.
Chris Lattnerc7f19042009-10-25 17:47:27 +00004489 Declarator TheDeclarator(DS, Declarator::MemberContext);
Chris Lattnerc7f19042009-10-25 17:47:27 +00004490 QualType T = GetTypeForDeclarator(TheDeclarator, S);
4491 if (TheDeclarator.isInvalidType())
4492 return DeclPtrTy();
John McCall67d1a672009-08-06 02:15:43 +00004493
John McCalldd4a3b02009-09-16 22:47:08 +00004494 // This is definitely an error in C++98. It's probably meant to
4495 // be forbidden in C++0x, too, but the specification is just
4496 // poorly written.
4497 //
4498 // The problem is with declarations like the following:
4499 // template <T> friend A<T>::foo;
4500 // where deciding whether a class C is a friend or not now hinges
4501 // on whether there exists an instantiation of A that causes
4502 // 'foo' to equal C. There are restrictions on class-heads
4503 // (which we declare (by fiat) elaborated friend declarations to
4504 // be) that makes this tractable.
4505 //
4506 // FIXME: handle "template <> friend class A<T>;", which
4507 // is possibly well-formed? Who even knows?
4508 if (TempParams.size() && !isa<ElaboratedType>(T)) {
4509 Diag(Loc, diag::err_tagless_friend_type_template)
4510 << DS.getSourceRange();
4511 return DeclPtrTy();
4512 }
4513
John McCall02cace72009-08-28 07:59:38 +00004514 // C++ [class.friend]p2:
4515 // An elaborated-type-specifier shall be used in a friend declaration
4516 // for a class.*
4517 // * The class-key of the elaborated-type-specifier is required.
John McCall6b2becf2009-09-08 17:47:29 +00004518 // This is one of the rare places in Clang where it's legitimate to
4519 // ask about the "spelling" of the type.
4520 if (!getLangOptions().CPlusPlus0x && !isa<ElaboratedType>(T)) {
4521 // If we evaluated the type to a record type, suggest putting
4522 // a tag in front.
John McCall02cace72009-08-28 07:59:38 +00004523 if (const RecordType *RT = T->getAs<RecordType>()) {
John McCall6b2becf2009-09-08 17:47:29 +00004524 RecordDecl *RD = RT->getDecl();
4525
4526 std::string InsertionText = std::string(" ") + RD->getKindName();
4527
John McCalle3af0232009-10-07 23:34:25 +00004528 Diag(DS.getTypeSpecTypeLoc(), diag::err_unelaborated_friend_type)
4529 << (unsigned) RD->getTagKind()
4530 << T
4531 << SourceRange(DS.getFriendSpecLoc())
John McCall6b2becf2009-09-08 17:47:29 +00004532 << CodeModificationHint::CreateInsertion(DS.getTypeSpecTypeLoc(),
4533 InsertionText);
John McCall02cace72009-08-28 07:59:38 +00004534 return DeclPtrTy();
4535 }else {
John McCall6b2becf2009-09-08 17:47:29 +00004536 Diag(DS.getFriendSpecLoc(), diag::err_unexpected_friend)
4537 << DS.getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +00004538 return DeclPtrTy();
John McCall02cace72009-08-28 07:59:38 +00004539 }
4540 }
4541
John McCalle3af0232009-10-07 23:34:25 +00004542 // Enum types cannot be friends.
4543 if (T->getAs<EnumType>()) {
4544 Diag(DS.getTypeSpecTypeLoc(), diag::err_enum_friend)
4545 << SourceRange(DS.getFriendSpecLoc());
4546 return DeclPtrTy();
John McCall6b2becf2009-09-08 17:47:29 +00004547 }
John McCall02cace72009-08-28 07:59:38 +00004548
John McCall02cace72009-08-28 07:59:38 +00004549 // C++98 [class.friend]p1: A friend of a class is a function
4550 // or class that is not a member of the class . . .
4551 // But that's a silly restriction which nobody implements for
4552 // inner classes, and C++0x removes it anyway, so we only report
4553 // this (as a warning) if we're being pedantic.
John McCall6b2becf2009-09-08 17:47:29 +00004554 if (!getLangOptions().CPlusPlus0x)
4555 if (const RecordType *RT = T->getAs<RecordType>())
4556 if (RT->getDecl()->getDeclContext() == CurContext)
4557 Diag(DS.getFriendSpecLoc(), diag::ext_friend_inner_class);
John McCall02cace72009-08-28 07:59:38 +00004558
John McCalldd4a3b02009-09-16 22:47:08 +00004559 Decl *D;
4560 if (TempParams.size())
4561 D = FriendTemplateDecl::Create(Context, CurContext, Loc,
4562 TempParams.size(),
4563 (TemplateParameterList**) TempParams.release(),
4564 T.getTypePtr(),
4565 DS.getFriendSpecLoc());
4566 else
4567 D = FriendDecl::Create(Context, CurContext, Loc, T.getTypePtr(),
4568 DS.getFriendSpecLoc());
4569 D->setAccess(AS_public);
4570 CurContext->addDecl(D);
John McCall02cace72009-08-28 07:59:38 +00004571
John McCalldd4a3b02009-09-16 22:47:08 +00004572 return DeclPtrTy::make(D);
John McCall02cace72009-08-28 07:59:38 +00004573}
4574
John McCallbbbcdd92009-09-11 21:02:39 +00004575Sema::DeclPtrTy
4576Sema::ActOnFriendFunctionDecl(Scope *S,
4577 Declarator &D,
4578 bool IsDefinition,
4579 MultiTemplateParamsArg TemplateParams) {
John McCall02cace72009-08-28 07:59:38 +00004580 const DeclSpec &DS = D.getDeclSpec();
4581
4582 assert(DS.isFriendSpecified());
4583 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
4584
4585 SourceLocation Loc = D.getIdentifierLoc();
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00004586 DeclaratorInfo *DInfo = 0;
John McCall02cace72009-08-28 07:59:38 +00004587 QualType T = GetTypeForDeclarator(D, S, &DInfo);
John McCall67d1a672009-08-06 02:15:43 +00004588
4589 // C++ [class.friend]p1
4590 // A friend of a class is a function or class....
4591 // Note that this sees through typedefs, which is intended.
John McCall02cace72009-08-28 07:59:38 +00004592 // It *doesn't* see through dependent types, which is correct
4593 // according to [temp.arg.type]p3:
4594 // If a declaration acquires a function type through a
4595 // type dependent on a template-parameter and this causes
4596 // a declaration that does not use the syntactic form of a
4597 // function declarator to have a function type, the program
4598 // is ill-formed.
John McCall67d1a672009-08-06 02:15:43 +00004599 if (!T->isFunctionType()) {
4600 Diag(Loc, diag::err_unexpected_friend);
4601
4602 // It might be worthwhile to try to recover by creating an
4603 // appropriate declaration.
4604 return DeclPtrTy();
4605 }
4606
4607 // C++ [namespace.memdef]p3
4608 // - If a friend declaration in a non-local class first declares a
4609 // class or function, the friend class or function is a member
4610 // of the innermost enclosing namespace.
4611 // - The name of the friend is not found by simple name lookup
4612 // until a matching declaration is provided in that namespace
4613 // scope (either before or after the class declaration granting
4614 // friendship).
4615 // - If a friend function is called, its name may be found by the
4616 // name lookup that considers functions from namespaces and
4617 // classes associated with the types of the function arguments.
4618 // - When looking for a prior declaration of a class or a function
4619 // declared as a friend, scopes outside the innermost enclosing
4620 // namespace scope are not considered.
4621
John McCall02cace72009-08-28 07:59:38 +00004622 CXXScopeSpec &ScopeQual = D.getCXXScopeSpec();
4623 DeclarationName Name = GetNameForDeclarator(D);
John McCall67d1a672009-08-06 02:15:43 +00004624 assert(Name);
4625
John McCall67d1a672009-08-06 02:15:43 +00004626 // The context we found the declaration in, or in which we should
4627 // create the declaration.
4628 DeclContext *DC;
4629
4630 // FIXME: handle local classes
4631
4632 // Recover from invalid scope qualifiers as if they just weren't there.
Douglas Gregor182ddf02009-09-28 00:08:27 +00004633 NamedDecl *PrevDecl = 0;
John McCall67d1a672009-08-06 02:15:43 +00004634 if (!ScopeQual.isInvalid() && ScopeQual.isSet()) {
Douglas Gregora735b202009-10-13 14:39:41 +00004635 // FIXME: RequireCompleteDeclContext
John McCall67d1a672009-08-06 02:15:43 +00004636 DC = computeDeclContext(ScopeQual);
4637
4638 // FIXME: handle dependent contexts
4639 if (!DC) return DeclPtrTy();
4640
John McCalla24dc2e2009-11-17 02:14:36 +00004641 LookupResult R(*this, Name, Loc, LookupOrdinaryName,
4642 LookupResult::ForRedeclaration);
4643 LookupQualifiedName(R, DC);
John McCallf36e02d2009-10-09 21:13:30 +00004644 PrevDecl = R.getAsSingleDecl(Context);
John McCall67d1a672009-08-06 02:15:43 +00004645
4646 // If searching in that context implicitly found a declaration in
4647 // a different context, treat it like it wasn't found at all.
4648 // TODO: better diagnostics for this case. Suggesting the right
4649 // qualified scope would be nice...
Douglas Gregor182ddf02009-09-28 00:08:27 +00004650 if (!PrevDecl || !PrevDecl->getDeclContext()->Equals(DC)) {
John McCall02cace72009-08-28 07:59:38 +00004651 D.setInvalidType();
John McCall67d1a672009-08-06 02:15:43 +00004652 Diag(Loc, diag::err_qualified_friend_not_found) << Name << T;
4653 return DeclPtrTy();
4654 }
4655
4656 // C++ [class.friend]p1: A friend of a class is a function or
4657 // class that is not a member of the class . . .
Douglas Gregor182ddf02009-09-28 00:08:27 +00004658 if (DC->Equals(CurContext))
John McCall67d1a672009-08-06 02:15:43 +00004659 Diag(DS.getFriendSpecLoc(), diag::err_friend_is_member);
4660
John McCall67d1a672009-08-06 02:15:43 +00004661 // Otherwise walk out to the nearest namespace scope looking for matches.
4662 } else {
4663 // TODO: handle local class contexts.
4664
4665 DC = CurContext;
4666 while (true) {
4667 // Skip class contexts. If someone can cite chapter and verse
4668 // for this behavior, that would be nice --- it's what GCC and
4669 // EDG do, and it seems like a reasonable intent, but the spec
4670 // really only says that checks for unqualified existing
4671 // declarations should stop at the nearest enclosing namespace,
4672 // not that they should only consider the nearest enclosing
4673 // namespace.
Douglas Gregor182ddf02009-09-28 00:08:27 +00004674 while (DC->isRecord())
4675 DC = DC->getParent();
John McCall67d1a672009-08-06 02:15:43 +00004676
John McCalla24dc2e2009-11-17 02:14:36 +00004677 LookupResult R(*this, Name, Loc, LookupOrdinaryName,
4678 LookupResult::ForRedeclaration);
4679 LookupQualifiedName(R, DC);
John McCallf36e02d2009-10-09 21:13:30 +00004680 PrevDecl = R.getAsSingleDecl(Context);
John McCall67d1a672009-08-06 02:15:43 +00004681
4682 // TODO: decide what we think about using declarations.
Douglas Gregor182ddf02009-09-28 00:08:27 +00004683 if (PrevDecl)
John McCall67d1a672009-08-06 02:15:43 +00004684 break;
Douglas Gregor182ddf02009-09-28 00:08:27 +00004685
John McCall67d1a672009-08-06 02:15:43 +00004686 if (DC->isFileContext()) break;
4687 DC = DC->getParent();
4688 }
4689
4690 // C++ [class.friend]p1: A friend of a class is a function or
4691 // class that is not a member of the class . . .
John McCall7f27d922009-08-06 20:49:32 +00004692 // C++0x changes this for both friend types and functions.
4693 // Most C++ 98 compilers do seem to give an error here, so
4694 // we do, too.
Douglas Gregor182ddf02009-09-28 00:08:27 +00004695 if (PrevDecl && DC->Equals(CurContext) && !getLangOptions().CPlusPlus0x)
John McCall67d1a672009-08-06 02:15:43 +00004696 Diag(DS.getFriendSpecLoc(), diag::err_friend_is_member);
4697 }
4698
Douglas Gregor182ddf02009-09-28 00:08:27 +00004699 if (DC->isFileContext()) {
John McCall67d1a672009-08-06 02:15:43 +00004700 // This implies that it has to be an operator or function.
Douglas Gregor3f9a0562009-11-03 01:35:08 +00004701 if (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ||
4702 D.getName().getKind() == UnqualifiedId::IK_DestructorName ||
4703 D.getName().getKind() == UnqualifiedId::IK_ConversionFunctionId) {
John McCall67d1a672009-08-06 02:15:43 +00004704 Diag(Loc, diag::err_introducing_special_friend) <<
Douglas Gregor3f9a0562009-11-03 01:35:08 +00004705 (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ? 0 :
4706 D.getName().getKind() == UnqualifiedId::IK_DestructorName ? 1 : 2);
John McCall67d1a672009-08-06 02:15:43 +00004707 return DeclPtrTy();
4708 }
John McCall67d1a672009-08-06 02:15:43 +00004709 }
4710
Douglas Gregor182ddf02009-09-28 00:08:27 +00004711 bool Redeclaration = false;
4712 NamedDecl *ND = ActOnFunctionDeclarator(S, D, DC, T, DInfo, PrevDecl,
Douglas Gregora735b202009-10-13 14:39:41 +00004713 move(TemplateParams),
John McCall3f9a8a62009-08-11 06:59:38 +00004714 IsDefinition,
4715 Redeclaration);
John McCall02cace72009-08-28 07:59:38 +00004716 if (!ND) return DeclPtrTy();
John McCallab88d972009-08-31 22:39:49 +00004717
Douglas Gregor182ddf02009-09-28 00:08:27 +00004718 assert(ND->getDeclContext() == DC);
4719 assert(ND->getLexicalDeclContext() == CurContext);
John McCall88232aa2009-08-18 00:00:49 +00004720
John McCallab88d972009-08-31 22:39:49 +00004721 // Add the function declaration to the appropriate lookup tables,
4722 // adjusting the redeclarations list as necessary. We don't
4723 // want to do this yet if the friending class is dependent.
Mike Stump1eb44332009-09-09 15:08:12 +00004724 //
John McCallab88d972009-08-31 22:39:49 +00004725 // Also update the scope-based lookup if the target context's
4726 // lookup context is in lexical scope.
4727 if (!CurContext->isDependentContext()) {
4728 DC = DC->getLookupContext();
Douglas Gregor182ddf02009-09-28 00:08:27 +00004729 DC->makeDeclVisibleInContext(ND, /* Recoverable=*/ false);
John McCallab88d972009-08-31 22:39:49 +00004730 if (Scope *EnclosingScope = getScopeForDeclContext(S, DC))
Douglas Gregor182ddf02009-09-28 00:08:27 +00004731 PushOnScopeChains(ND, EnclosingScope, /*AddToContext=*/ false);
John McCallab88d972009-08-31 22:39:49 +00004732 }
John McCall02cace72009-08-28 07:59:38 +00004733
4734 FriendDecl *FrD = FriendDecl::Create(Context, CurContext,
Douglas Gregor182ddf02009-09-28 00:08:27 +00004735 D.getIdentifierLoc(), ND,
John McCall02cace72009-08-28 07:59:38 +00004736 DS.getFriendSpecLoc());
John McCall5fee1102009-08-29 03:50:18 +00004737 FrD->setAccess(AS_public);
John McCall02cace72009-08-28 07:59:38 +00004738 CurContext->addDecl(FrD);
John McCall67d1a672009-08-06 02:15:43 +00004739
Douglas Gregor182ddf02009-09-28 00:08:27 +00004740 return DeclPtrTy::make(ND);
Anders Carlsson00338362009-05-11 22:55:49 +00004741}
4742
Chris Lattnerb28317a2009-03-28 19:18:32 +00004743void Sema::SetDeclDeleted(DeclPtrTy dcl, SourceLocation DelLoc) {
Douglas Gregorefd5bda2009-08-24 11:57:43 +00004744 AdjustDeclIfTemplate(dcl);
Mike Stump1eb44332009-09-09 15:08:12 +00004745
Chris Lattnerb28317a2009-03-28 19:18:32 +00004746 Decl *Dcl = dcl.getAs<Decl>();
Sebastian Redl50de12f2009-03-24 22:27:57 +00004747 FunctionDecl *Fn = dyn_cast<FunctionDecl>(Dcl);
4748 if (!Fn) {
4749 Diag(DelLoc, diag::err_deleted_non_function);
4750 return;
4751 }
4752 if (const FunctionDecl *Prev = Fn->getPreviousDeclaration()) {
4753 Diag(DelLoc, diag::err_deleted_decl_not_first);
4754 Diag(Prev->getLocation(), diag::note_previous_declaration);
4755 // If the declaration wasn't the first, we delete the function anyway for
4756 // recovery.
4757 }
4758 Fn->setDeleted();
4759}
Sebastian Redl13e88542009-04-27 21:33:24 +00004760
4761static void SearchForReturnInStmt(Sema &Self, Stmt *S) {
4762 for (Stmt::child_iterator CI = S->child_begin(), E = S->child_end(); CI != E;
4763 ++CI) {
4764 Stmt *SubStmt = *CI;
4765 if (!SubStmt)
4766 continue;
4767 if (isa<ReturnStmt>(SubStmt))
4768 Self.Diag(SubStmt->getSourceRange().getBegin(),
4769 diag::err_return_in_constructor_handler);
4770 if (!isa<Expr>(SubStmt))
4771 SearchForReturnInStmt(Self, SubStmt);
4772 }
4773}
4774
4775void Sema::DiagnoseReturnInConstructorExceptionHandler(CXXTryStmt *TryBlock) {
4776 for (unsigned I = 0, E = TryBlock->getNumHandlers(); I != E; ++I) {
4777 CXXCatchStmt *Handler = TryBlock->getHandler(I);
4778 SearchForReturnInStmt(*this, Handler);
4779 }
4780}
Anders Carlssond7ba27d2009-05-14 01:09:04 +00004781
Mike Stump1eb44332009-09-09 15:08:12 +00004782bool Sema::CheckOverridingFunctionReturnType(const CXXMethodDecl *New,
Anders Carlssond7ba27d2009-05-14 01:09:04 +00004783 const CXXMethodDecl *Old) {
John McCall183700f2009-09-21 23:43:11 +00004784 QualType NewTy = New->getType()->getAs<FunctionType>()->getResultType();
4785 QualType OldTy = Old->getType()->getAs<FunctionType>()->getResultType();
Anders Carlssond7ba27d2009-05-14 01:09:04 +00004786
4787 QualType CNewTy = Context.getCanonicalType(NewTy);
4788 QualType COldTy = Context.getCanonicalType(OldTy);
4789
Mike Stump1eb44332009-09-09 15:08:12 +00004790 if (CNewTy == COldTy &&
Douglas Gregora4923eb2009-11-16 21:35:15 +00004791 CNewTy.getLocalCVRQualifiers() == COldTy.getLocalCVRQualifiers())
Anders Carlssond7ba27d2009-05-14 01:09:04 +00004792 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00004793
Anders Carlssonc3a68b22009-05-14 19:52:19 +00004794 // Check if the return types are covariant
4795 QualType NewClassTy, OldClassTy;
Mike Stump1eb44332009-09-09 15:08:12 +00004796
Anders Carlssonc3a68b22009-05-14 19:52:19 +00004797 /// Both types must be pointers or references to classes.
4798 if (PointerType *NewPT = dyn_cast<PointerType>(NewTy)) {
4799 if (PointerType *OldPT = dyn_cast<PointerType>(OldTy)) {
4800 NewClassTy = NewPT->getPointeeType();
4801 OldClassTy = OldPT->getPointeeType();
4802 }
4803 } else if (ReferenceType *NewRT = dyn_cast<ReferenceType>(NewTy)) {
4804 if (ReferenceType *OldRT = dyn_cast<ReferenceType>(OldTy)) {
4805 NewClassTy = NewRT->getPointeeType();
4806 OldClassTy = OldRT->getPointeeType();
4807 }
4808 }
Mike Stump1eb44332009-09-09 15:08:12 +00004809
Anders Carlssonc3a68b22009-05-14 19:52:19 +00004810 // The return types aren't either both pointers or references to a class type.
4811 if (NewClassTy.isNull()) {
Mike Stump1eb44332009-09-09 15:08:12 +00004812 Diag(New->getLocation(),
Anders Carlssonc3a68b22009-05-14 19:52:19 +00004813 diag::err_different_return_type_for_overriding_virtual_function)
4814 << New->getDeclName() << NewTy << OldTy;
4815 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
Mike Stump1eb44332009-09-09 15:08:12 +00004816
Anders Carlssonc3a68b22009-05-14 19:52:19 +00004817 return true;
4818 }
Anders Carlssond7ba27d2009-05-14 01:09:04 +00004819
Douglas Gregora4923eb2009-11-16 21:35:15 +00004820 if (!Context.hasSameUnqualifiedType(NewClassTy, OldClassTy)) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +00004821 // Check if the new class derives from the old class.
4822 if (!IsDerivedFrom(NewClassTy, OldClassTy)) {
4823 Diag(New->getLocation(),
4824 diag::err_covariant_return_not_derived)
4825 << New->getDeclName() << NewTy << OldTy;
4826 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
4827 return true;
4828 }
Mike Stump1eb44332009-09-09 15:08:12 +00004829
Anders Carlssonc3a68b22009-05-14 19:52:19 +00004830 // Check if we the conversion from derived to base is valid.
Mike Stump1eb44332009-09-09 15:08:12 +00004831 if (CheckDerivedToBaseConversion(NewClassTy, OldClassTy,
Anders Carlssonc3a68b22009-05-14 19:52:19 +00004832 diag::err_covariant_return_inaccessible_base,
4833 diag::err_covariant_return_ambiguous_derived_to_base_conv,
4834 // FIXME: Should this point to the return type?
4835 New->getLocation(), SourceRange(), New->getDeclName())) {
4836 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
4837 return true;
4838 }
4839 }
Mike Stump1eb44332009-09-09 15:08:12 +00004840
Anders Carlssonc3a68b22009-05-14 19:52:19 +00004841 // The qualifiers of the return types must be the same.
Douglas Gregora4923eb2009-11-16 21:35:15 +00004842 if (CNewTy.getLocalCVRQualifiers() != COldTy.getLocalCVRQualifiers()) {
Anders Carlssonc3a68b22009-05-14 19:52:19 +00004843 Diag(New->getLocation(),
4844 diag::err_covariant_return_type_different_qualifications)
Anders Carlssond7ba27d2009-05-14 01:09:04 +00004845 << New->getDeclName() << NewTy << OldTy;
Anders Carlssonc3a68b22009-05-14 19:52:19 +00004846 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
4847 return true;
4848 };
Mike Stump1eb44332009-09-09 15:08:12 +00004849
Anders Carlssonc3a68b22009-05-14 19:52:19 +00004850
4851 // The new class type must have the same or less qualifiers as the old type.
4852 if (NewClassTy.isMoreQualifiedThan(OldClassTy)) {
4853 Diag(New->getLocation(),
4854 diag::err_covariant_return_type_class_type_more_qualified)
4855 << New->getDeclName() << NewTy << OldTy;
4856 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
4857 return true;
4858 };
Mike Stump1eb44332009-09-09 15:08:12 +00004859
Anders Carlssonc3a68b22009-05-14 19:52:19 +00004860 return false;
Anders Carlssond7ba27d2009-05-14 01:09:04 +00004861}
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00004862
4863/// ActOnCXXEnterDeclInitializer - Invoked when we are about to parse an
4864/// initializer for the declaration 'Dcl'.
4865/// After this method is called, according to [C++ 3.4.1p13], if 'Dcl' is a
4866/// static data member of class X, names should be looked up in the scope of
4867/// class X.
4868void Sema::ActOnCXXEnterDeclInitializer(Scope *S, DeclPtrTy Dcl) {
Douglas Gregorefd5bda2009-08-24 11:57:43 +00004869 AdjustDeclIfTemplate(Dcl);
Mike Stump1eb44332009-09-09 15:08:12 +00004870
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00004871 Decl *D = Dcl.getAs<Decl>();
4872 // If there is no declaration, there was an error parsing it.
4873 if (D == 0)
4874 return;
4875
4876 // Check whether it is a declaration with a nested name specifier like
4877 // int foo::bar;
4878 if (!D->isOutOfLine())
4879 return;
Mike Stump1eb44332009-09-09 15:08:12 +00004880
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00004881 // C++ [basic.lookup.unqual]p13
4882 //
4883 // A name used in the definition of a static data member of class X
4884 // (after the qualified-id of the static member) is looked up as if the name
4885 // was used in a member function of X.
Mike Stump1eb44332009-09-09 15:08:12 +00004886
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00004887 // Change current context into the context of the initializing declaration.
Argyrios Kyrtzidis1d175532009-06-17 23:15:40 +00004888 EnterDeclaratorContext(S, D->getDeclContext());
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00004889}
4890
4891/// ActOnCXXExitDeclInitializer - Invoked after we are finished parsing an
4892/// initializer for the declaration 'Dcl'.
4893void Sema::ActOnCXXExitDeclInitializer(Scope *S, DeclPtrTy Dcl) {
Douglas Gregorefd5bda2009-08-24 11:57:43 +00004894 AdjustDeclIfTemplate(Dcl);
Mike Stump1eb44332009-09-09 15:08:12 +00004895
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00004896 Decl *D = Dcl.getAs<Decl>();
4897 // If there is no declaration, there was an error parsing it.
4898 if (D == 0)
4899 return;
4900
4901 // Check whether it is a declaration with a nested name specifier like
4902 // int foo::bar;
4903 if (!D->isOutOfLine())
4904 return;
4905
4906 assert(S->getEntity() == D->getDeclContext() && "Context imbalance!");
Argyrios Kyrtzidis1d175532009-06-17 23:15:40 +00004907 ExitDeclaratorContext(S);
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00004908}