blob: 4c06485703526c83e04e11eedd446137f13db94b [file] [log] [blame]
Chris Lattner199abbc2008-04-08 05:04:30 +00001//===------ SemaDeclCXX.cpp - Semantic Analysis for C++ Declarations ------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements semantic analysis for C++ declarations.
11//
12//===----------------------------------------------------------------------===//
13
14#include "Sema.h"
Argyrios Kyrtzidis2f67f372008-08-09 00:58:37 +000015#include "clang/AST/ASTConsumer.h"
Douglas Gregor556877c2008-04-13 21:30:24 +000016#include "clang/AST/ASTContext.h"
Douglas Gregor36d1b142009-10-06 17:59:45 +000017#include "clang/AST/CXXInheritance.h"
Anders Carlssonb5a27b42009-03-24 01:19:16 +000018#include "clang/AST/DeclVisitor.h"
Douglas Gregordff6a8e2008-10-22 21:13:31 +000019#include "clang/AST/TypeOrdering.h"
Chris Lattner58258242008-04-10 02:22:51 +000020#include "clang/AST/StmtVisitor.h"
Douglas Gregorb53edfb2009-11-10 19:49:08 +000021#include "clang/Parse/DeclSpec.h"
22#include "clang/Parse/Template.h"
Anders Carlssond624e162009-08-26 23:45:07 +000023#include "clang/Basic/PartialDiagnostic.h"
Argyrios Kyrtzidis153d9672008-10-06 18:37:09 +000024#include "clang/Lex/Preprocessor.h"
Douglas Gregor55297ac2008-12-23 00:26:44 +000025#include "llvm/ADT/STLExtras.h"
Chris Lattner58258242008-04-10 02:22:51 +000026#include "llvm/Support/Compiler.h"
Douglas Gregor5251f1b2008-10-21 16:13:35 +000027#include <algorithm> // for std::equal
Douglas Gregor29a92472008-10-22 17:49:05 +000028#include <map>
Douglas Gregor36d1b142009-10-06 17:59:45 +000029#include <set>
Chris Lattner199abbc2008-04-08 05:04:30 +000030
31using namespace clang;
32
Chris Lattner58258242008-04-10 02:22:51 +000033//===----------------------------------------------------------------------===//
34// CheckDefaultArgumentVisitor
35//===----------------------------------------------------------------------===//
36
Chris Lattnerb0d38442008-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 Stump11289f42009-09-09 15:08:12 +000043 class VISIBILITY_HIDDEN CheckDefaultArgumentVisitor
Chris Lattner574dee62008-07-26 22:17:49 +000044 : public StmtVisitor<CheckDefaultArgumentVisitor, bool> {
Chris Lattnerb0d38442008-04-12 23:52:44 +000045 Expr *DefaultArg;
46 Sema *S;
Chris Lattner58258242008-04-10 02:22:51 +000047
Chris Lattnerb0d38442008-04-12 23:52:44 +000048 public:
Mike Stump11289f42009-09-09 15:08:12 +000049 CheckDefaultArgumentVisitor(Expr *defarg, Sema *s)
Chris Lattnerb0d38442008-04-12 23:52:44 +000050 : DefaultArg(defarg), S(s) {}
Chris Lattner58258242008-04-10 02:22:51 +000051
Chris Lattnerb0d38442008-04-12 23:52:44 +000052 bool VisitExpr(Expr *Node);
53 bool VisitDeclRefExpr(DeclRefExpr *DRE);
Douglas Gregor97a9c812008-11-04 14:32:21 +000054 bool VisitCXXThisExpr(CXXThisExpr *ThisE);
Chris Lattnerb0d38442008-04-12 23:52:44 +000055 };
Chris Lattner58258242008-04-10 02:22:51 +000056
Chris Lattnerb0d38442008-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 Stump11289f42009-09-09 15:08:12 +000060 for (Stmt::child_iterator I = Node->child_begin(),
Chris Lattner574dee62008-07-26 22:17:49 +000061 E = Node->child_end(); I != E; ++I)
62 IsInvalid |= Visit(*I);
Chris Lattnerb0d38442008-04-12 23:52:44 +000063 return IsInvalid;
Chris Lattner58258242008-04-10 02:22:51 +000064 }
65
Chris Lattnerb0d38442008-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 Gregor5251f1b2008-10-21 16:13:35 +000070 NamedDecl *Decl = DRE->getDecl();
Chris Lattnerb0d38442008-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 Stump11289f42009-09-09 15:08:12 +000080 return S->Diag(DRE->getSourceRange().getBegin(),
Chris Lattner3b054132008-11-19 05:08:23 +000081 diag::err_param_default_argument_references_param)
Chris Lattnere3d20d92008-11-23 21:45:46 +000082 << Param->getDeclName() << DefaultArg->getSourceRange();
Steve Naroff08899ff2008-04-15 22:42:06 +000083 } else if (VarDecl *VDecl = dyn_cast<VarDecl>(Decl)) {
Chris Lattnerb0d38442008-04-12 23:52:44 +000084 // C++ [dcl.fct.default]p7
85 // Local variables shall not be used in default argument
86 // expressions.
Steve Naroff08899ff2008-04-15 22:42:06 +000087 if (VDecl->isBlockVarDecl())
Mike Stump11289f42009-09-09 15:08:12 +000088 return S->Diag(DRE->getSourceRange().getBegin(),
Chris Lattner3b054132008-11-19 05:08:23 +000089 diag::err_param_default_argument_references_local)
Chris Lattnere3d20d92008-11-23 21:45:46 +000090 << VDecl->getDeclName() << DefaultArg->getSourceRange();
Chris Lattnerb0d38442008-04-12 23:52:44 +000091 }
Chris Lattner58258242008-04-10 02:22:51 +000092
Douglas Gregor8e12c382008-11-04 13:41:56 +000093 return false;
94 }
Chris Lattnerb0d38442008-04-12 23:52:44 +000095
Douglas Gregor97a9c812008-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 Lattner3b054132008-11-19 05:08:23 +0000102 diag::err_param_default_argument_references_this)
103 << ThisE->getSourceRange();
Chris Lattnerb0d38442008-04-12 23:52:44 +0000104 }
Chris Lattner58258242008-04-10 02:22:51 +0000105}
106
Anders Carlssonc80a1272009-08-25 02:29:20 +0000107bool
108Sema::SetParamDefaultArgument(ParmVarDecl *Param, ExprArg DefaultArg,
Mike Stump11289f42009-09-09 15:08:12 +0000109 SourceLocation EqualLoc) {
Anders Carlssonc80a1272009-08-25 02:29:20 +0000110 QualType ParamType = Param->getType();
111
Anders Carlsson114056f2009-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 Carlssonc80a1272009-08-25 02:29:20 +0000118 Expr *Arg = (Expr *)DefaultArg.get();
Mike Stump11289f42009-09-09 15:08:12 +0000119
Anders Carlssonc80a1272009-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 Stump11289f42009-09-09 15:08:12 +0000126 if (CheckInitializerTypes(Arg, ParamType, EqualLoc,
Anders Carlssonc80a1272009-08-25 02:29:20 +0000127 Param->getDeclName(), /*DirectInit=*/false))
Anders Carlsson4562f1f2009-08-25 03:18:48 +0000128 return true;
Anders Carlssonc80a1272009-08-25 02:29:20 +0000129
130 Arg = MaybeCreateCXXExprWithTemporaries(Arg, /*DestroyTemps=*/false);
Mike Stump11289f42009-09-09 15:08:12 +0000131
Anders Carlssonc80a1272009-08-25 02:29:20 +0000132 // Okay: add the default argument to the parameter
133 Param->setDefaultArg(Arg);
Mike Stump11289f42009-09-09 15:08:12 +0000134
Anders Carlssonc80a1272009-08-25 02:29:20 +0000135 DefaultArg.release();
Mike Stump11289f42009-09-09 15:08:12 +0000136
Anders Carlsson4562f1f2009-08-25 03:18:48 +0000137 return false;
Anders Carlssonc80a1272009-08-25 02:29:20 +0000138}
139
Chris Lattner58258242008-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 Lattner199abbc2008-04-08 05:04:30 +0000143void
Mike Stump11289f42009-09-09 15:08:12 +0000144Sema::ActOnParamDefaultArgument(DeclPtrTy param, SourceLocation EqualLoc,
Sebastian Redl6d4256c2009-03-15 17:47:39 +0000145 ExprArg defarg) {
Douglas Gregor71a57182009-06-22 23:20:33 +0000146 if (!param || !defarg.get())
147 return;
Mike Stump11289f42009-09-09 15:08:12 +0000148
Chris Lattner83f095c2009-03-28 19:18:32 +0000149 ParmVarDecl *Param = cast<ParmVarDecl>(param.getAs<Decl>());
Anders Carlsson84613c42009-06-12 16:51:40 +0000150 UnparsedDefaultArgLocs.erase(Param);
151
Anders Carlsson3cbc8592009-05-01 19:30:39 +0000152 ExprOwningPtr<Expr> DefaultArg(this, defarg.takeAs<Expr>());
Chris Lattner199abbc2008-04-08 05:04:30 +0000153 QualType ParamType = Param->getType();
154
155 // Default arguments are only permitted in C++
156 if (!getLangOptions().CPlusPlus) {
Chris Lattner3b054132008-11-19 05:08:23 +0000157 Diag(EqualLoc, diag::err_param_default_argument)
158 << DefaultArg->getSourceRange();
Douglas Gregor4d87df52008-12-16 21:30:33 +0000159 Param->setInvalidDecl();
Chris Lattner199abbc2008-04-08 05:04:30 +0000160 return;
161 }
162
Anders Carlssonf1c26952009-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 Stump11289f42009-09-09 15:08:12 +0000169
Anders Carlssonc80a1272009-08-25 02:29:20 +0000170 SetParamDefaultArgument(Param, move(DefaultArg), EqualLoc);
Chris Lattner199abbc2008-04-08 05:04:30 +0000171}
172
Douglas Gregor58354032008-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 Stump11289f42009-09-09 15:08:12 +0000177void Sema::ActOnParamUnparsedDefaultArgument(DeclPtrTy param,
Anders Carlsson84613c42009-06-12 16:51:40 +0000178 SourceLocation EqualLoc,
179 SourceLocation ArgLoc) {
Douglas Gregor71a57182009-06-22 23:20:33 +0000180 if (!param)
181 return;
Mike Stump11289f42009-09-09 15:08:12 +0000182
Chris Lattner83f095c2009-03-28 19:18:32 +0000183 ParmVarDecl *Param = cast<ParmVarDecl>(param.getAs<Decl>());
Douglas Gregor58354032008-12-24 00:01:03 +0000184 if (Param)
185 Param->setUnparsedDefaultArg();
Mike Stump11289f42009-09-09 15:08:12 +0000186
Anders Carlsson84613c42009-06-12 16:51:40 +0000187 UnparsedDefaultArgLocs[Param] = ArgLoc;
Douglas Gregor58354032008-12-24 00:01:03 +0000188}
189
Douglas Gregor4d87df52008-12-16 21:30:33 +0000190/// ActOnParamDefaultArgumentError - Parsing or semantic analysis of
191/// the default argument for the parameter param failed.
Chris Lattner83f095c2009-03-28 19:18:32 +0000192void Sema::ActOnParamDefaultArgumentError(DeclPtrTy param) {
Douglas Gregor71a57182009-06-22 23:20:33 +0000193 if (!param)
194 return;
Mike Stump11289f42009-09-09 15:08:12 +0000195
Anders Carlsson84613c42009-06-12 16:51:40 +0000196 ParmVarDecl *Param = cast<ParmVarDecl>(param.getAs<Decl>());
Mike Stump11289f42009-09-09 15:08:12 +0000197
Anders Carlsson84613c42009-06-12 16:51:40 +0000198 Param->setInvalidDecl();
Mike Stump11289f42009-09-09 15:08:12 +0000199
Anders Carlsson84613c42009-06-12 16:51:40 +0000200 UnparsedDefaultArgLocs.erase(Param);
Douglas Gregor4d87df52008-12-16 21:30:33 +0000201}
202
Douglas Gregorcaa8ace2008-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 Lattner83f095c2009-03-28 19:18:32 +0000216 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i) {
Douglas Gregorcaa8ace2008-05-07 04:49:29 +0000217 DeclaratorChunk &chunk = D.getTypeObject(i);
218 if (chunk.Kind == DeclaratorChunk::Function) {
Chris Lattner83f095c2009-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 Gregor58354032008-12-24 00:01:03 +0000222 if (Param->hasUnparsedDefaultArg()) {
223 CachedTokens *Toks = chunk.Fun.ArgInfo[argIdx].DefaultArgTokens;
Douglas Gregor4d87df52008-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 Gregor58354032008-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 Gregorcaa8ace2008-05-07 04:49:29 +0000232 }
233 }
234 }
235 }
236}
237
Chris Lattner199abbc2008-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 Gregor75a45ba2009-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 Lattner199abbc2008-04-08 05:04:30 +0000245 // C++ [dcl.fct.default]p4:
Chris Lattner199abbc2008-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 Gregorc732aba2009-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 Lattner199abbc2008-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 Gregorc732aba2009-09-11 18:44:32 +0000267 if (OldParam->hasDefaultArg() && NewParam->hasDefaultArg()) {
Anders Carlsson0b8ea552009-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 Carlsson1566eb52009-11-10 03:32:44 +0000272 if (NewParam->getIdentifier())
273 Begin = PP.getLocForEndOfToken(Begin);
Anders Carlsson0b8ea552009-11-10 03:24:44 +0000274
Mike Stump11289f42009-09-09 15:08:12 +0000275 Diag(NewParam->getLocation(),
Chris Lattner3b054132008-11-19 05:08:23 +0000276 diag::err_param_default_argument_redefinition)
Anders Carlsson0b8ea552009-11-10 03:24:44 +0000277 << NewParam->getDefaultArgRange()
278 << CodeModificationHint::CreateRemoval(SourceRange(Begin,
279 NewParam->getLocEnd()));
Douglas Gregorc732aba2009-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 Gregor75a45ba2009-02-16 17:45:42 +0000293 Invalid = true;
Douglas Gregor4f15f4d2009-09-17 19:51:30 +0000294 } else if (OldParam->hasDefaultArg()) {
Chris Lattner199abbc2008-04-08 05:04:30 +0000295 // Merge the old default argument into the new parameter
Douglas Gregor4f15f4d2009-09-17 19:51:30 +0000296 if (OldParam->hasUninstantiatedDefaultArg())
297 NewParam->setUninstantiatedDefaultArg(
298 OldParam->getUninstantiatedDefaultArg());
299 else
300 NewParam->setDefaultArg(OldParam->getDefaultArg());
Douglas Gregorc732aba2009-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 Gregor62e10f02009-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 Gregor3362bde2009-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 Gregor62e10f02009-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 Gregorc732aba2009-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 Lattner199abbc2008-04-08 05:04:30 +0000351 }
352 }
353
Sebastian Redl4f4d7b52009-07-04 11:39:00 +0000354 if (CheckEquivalentExceptionSpec(
John McCall9dd450b2009-09-21 23:43:11 +0000355 Old->getType()->getAs<FunctionProtoType>(), Old->getLocation(),
356 New->getType()->getAs<FunctionProtoType>(), New->getLocation())) {
Sebastian Redl4f4d7b52009-07-04 11:39:00 +0000357 Invalid = true;
358 }
359
Douglas Gregor75a45ba2009-02-16 17:45:42 +0000360 return Invalid;
Chris Lattner199abbc2008-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 Carlsson5a532382009-08-25 01:23:32 +0000373 if (Param->hasDefaultArg())
Chris Lattner199abbc2008-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 Stump11289f42009-09-09 15:08:12 +0000384 for (; p < NumParams; ++p) {
Chris Lattner199abbc2008-04-08 05:04:30 +0000385 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson5a532382009-08-25 01:23:32 +0000386 if (!Param->hasDefaultArg()) {
Douglas Gregor4d87df52008-12-16 21:30:33 +0000387 if (Param->isInvalidDecl())
388 /* We already complained about this parameter. */;
389 else if (Param->getIdentifier())
Mike Stump11289f42009-09-09 15:08:12 +0000390 Diag(Param->getLocation(),
Chris Lattner3b054132008-11-19 05:08:23 +0000391 diag::err_param_default_argument_missing_name)
Chris Lattnerb91fd172008-11-19 07:32:16 +0000392 << Param->getIdentifier();
Chris Lattner199abbc2008-04-08 05:04:30 +0000393 else
Mike Stump11289f42009-09-09 15:08:12 +0000394 Diag(Param->getLocation(),
Chris Lattner199abbc2008-04-08 05:04:30 +0000395 diag::err_param_default_argument_missing);
Mike Stump11289f42009-09-09 15:08:12 +0000396
Chris Lattner199abbc2008-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 Carlsson84613c42009-06-12 16:51:40 +0000408 if (Param->hasDefaultArg()) {
Douglas Gregor58354032008-12-24 00:01:03 +0000409 if (!Param->hasUnparsedDefaultArg())
410 Param->getDefaultArg()->Destroy(Context);
Chris Lattner199abbc2008-04-08 05:04:30 +0000411 Param->setDefaultArg(0);
412 }
413 }
414 }
415}
Douglas Gregor556877c2008-04-13 21:30:24 +0000416
Douglas Gregor61956c42008-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 Kyrtzidis32a03792008-11-08 16:45:02 +0000421bool Sema::isCurrentClassName(const IdentifierInfo &II, Scope *,
422 const CXXScopeSpec *SS) {
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +0000423 CXXRecordDecl *CurDecl;
Douglas Gregor52537682009-03-19 00:18:19 +0000424 if (SS && SS->isSet() && !SS->isInvalid()) {
Douglas Gregore5bbb7d2009-08-21 22:16:40 +0000425 DeclContext *DC = computeDeclContext(*SS, true);
Argyrios Kyrtzidis16ac9be2008-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 Gregor61956c42008-10-31 09:07:45 +0000431 return &II == CurDecl->getIdentifier();
432 else
433 return false;
434}
435
Mike Stump11289f42009-09-09 15:08:12 +0000436/// \brief Check the validity of a C++ base class specifier.
Douglas Gregor463421d2009-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 Stump11289f42009-09-09 15:08:12 +0000444 QualType BaseType,
Douglas Gregor463421d2009-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 Stump11289f42009-09-09 15:08:12 +0000455 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
Douglas Gregor463421d2009-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 Stump11289f42009-09-09 15:08:12 +0000475 if (RequireCompleteType(BaseLoc, BaseType,
Anders Carlssond624e162009-08-26 23:45:07 +0000476 PDiag(diag::err_incomplete_base_class)
477 << SpecifierRange))
Douglas Gregor463421d2009-03-03 04:44:36 +0000478 return 0;
479
Eli Friedmanc96d4962009-08-15 21:55:26 +0000480 // If the base class is polymorphic or isn't empty, the new one is/isn't, too.
Ted Kremenekc23c7e62009-07-29 21:53:49 +0000481 RecordDecl *BaseDecl = BaseType->getAs<RecordType>()->getDecl();
Douglas Gregor463421d2009-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 Friedmanc96d4962009-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 Gregor463421d2009-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 Carlssonfe63dc52009-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 Gregor8a273912009-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 Friedmanc96d4962009-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 Carlssonfe63dc52009-04-16 00:08:20 +0000515 } else {
516 // C++ [class.ctor]p5:
Mike Stump11289f42009-09-09 15:08:12 +0000517 // A constructor is trivial if all the direct base classes of its
Anders Carlssonfe63dc52009-04-16 00:08:20 +0000518 // class have trivial constructors.
Douglas Gregor8a273912009-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 Carlssonfe63dc52009-04-16 00:08:20 +0000533 }
Anders Carlsson6dc35752009-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 Gregor8a273912009-07-22 18:25:24 +0000538 if (!cast<CXXRecordDecl>(BaseDecl)->hasTrivialDestructor())
539 Class->setHasTrivialDestructor(false);
Mike Stump11289f42009-09-09 15:08:12 +0000540
Douglas Gregor463421d2009-03-03 04:44:36 +0000541 // Create the base specifier.
542 // FIXME: Allocate via ASTContext?
Mike Stump11289f42009-09-09 15:08:12 +0000543 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
544 Class->getTagKind() == RecordDecl::TK_class,
Douglas Gregor463421d2009-03-03 04:44:36 +0000545 Access, BaseType);
546}
547
Douglas Gregor556877c2008-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 Stump11289f42009-09-09 15:08:12 +0000550/// example:
551/// class foo : public bar, virtual private baz {
Douglas Gregor556877c2008-04-13 21:30:24 +0000552/// 'public bar' and 'virtual private baz' are each base-specifiers.
Mike Stump11289f42009-09-09 15:08:12 +0000553Sema::BaseResult
Chris Lattner83f095c2009-03-28 19:18:32 +0000554Sema::ActOnBaseSpecifier(DeclPtrTy classdecl, SourceRange SpecifierRange,
Douglas Gregor29a92472008-10-22 17:49:05 +0000555 bool Virtual, AccessSpecifier Access,
556 TypeTy *basetype, SourceLocation BaseLoc) {
Douglas Gregor71a57182009-06-22 23:20:33 +0000557 if (!classdecl)
558 return true;
559
Douglas Gregorc40290e2009-03-09 23:48:35 +0000560 AdjustDeclIfTemplate(classdecl);
Chris Lattner83f095c2009-03-28 19:18:32 +0000561 CXXRecordDecl *Class = cast<CXXRecordDecl>(classdecl.getAs<Decl>());
Argyrios Kyrtzidisc7148c92009-08-19 01:28:28 +0000562 QualType BaseType = GetTypeFromParser(basetype);
Douglas Gregor463421d2009-03-03 04:44:36 +0000563 if (CXXBaseSpecifier *BaseSpec = CheckBaseSpecifier(Class, SpecifierRange,
564 Virtual, Access,
565 BaseType, BaseLoc))
566 return BaseSpec;
Mike Stump11289f42009-09-09 15:08:12 +0000567
Douglas Gregor463421d2009-03-03 04:44:36 +0000568 return true;
Douglas Gregor29a92472008-10-22 17:49:05 +0000569}
Douglas Gregor556877c2008-04-13 21:30:24 +0000570
Douglas Gregor463421d2009-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 Gregor29a92472008-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 Gregor9d6290b2008-10-23 18:13:27 +0000580 // that the key is always the unqualified canonical type of the base
581 // class.
Douglas Gregor29a92472008-10-22 17:49:05 +0000582 std::map<QualType, CXXBaseSpecifier*, QualTypeOrdering> KnownBaseTypes;
583
584 // Copy non-redundant base specifiers into permanent storage.
Douglas Gregor9d6290b2008-10-23 18:13:27 +0000585 unsigned NumGoodBases = 0;
Douglas Gregor463421d2009-03-03 04:44:36 +0000586 bool Invalid = false;
Douglas Gregor9d6290b2008-10-23 18:13:27 +0000587 for (unsigned idx = 0; idx < NumBases; ++idx) {
Mike Stump11289f42009-09-09 15:08:12 +0000588 QualType NewBaseType
Douglas Gregor463421d2009-03-03 04:44:36 +0000589 = Context.getCanonicalType(Bases[idx]->getType());
Douglas Gregor9d6290b2008-10-23 18:13:27 +0000590 NewBaseType = NewBaseType.getUnqualifiedType();
591
Douglas Gregor29a92472008-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 Gregor463421d2009-03-03 04:44:36 +0000596 Diag(Bases[idx]->getSourceRange().getBegin(),
Chris Lattner3b054132008-11-19 05:08:23 +0000597 diag::err_duplicate_base_class)
Chris Lattner1e5665e2008-11-24 06:25:27 +0000598 << KnownBaseTypes[NewBaseType]->getType()
Douglas Gregor463421d2009-03-03 04:44:36 +0000599 << Bases[idx]->getSourceRange();
Douglas Gregor9d6290b2008-10-23 18:13:27 +0000600
601 // Delete the duplicate base class specifier; we're going to
602 // overwrite its pointer later.
Douglas Gregorb77af8f2009-07-22 20:55:49 +0000603 Context.Deallocate(Bases[idx]);
Douglas Gregor463421d2009-03-03 04:44:36 +0000604
605 Invalid = true;
Douglas Gregor29a92472008-10-22 17:49:05 +0000606 } else {
607 // Okay, add this new base class.
Douglas Gregor463421d2009-03-03 04:44:36 +0000608 KnownBaseTypes[NewBaseType] = Bases[idx];
609 Bases[NumGoodBases++] = Bases[idx];
Douglas Gregor29a92472008-10-22 17:49:05 +0000610 }
611 }
612
613 // Attach the remaining base class specifiers to the derived class.
Fariborz Jahanian9fa077c2009-07-02 18:26:15 +0000614 Class->setBases(Context, Bases, NumGoodBases);
Douglas Gregor9d6290b2008-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 Gregorb77af8f2009-07-22 20:55:49 +0000619 Context.Deallocate(Bases[idx]);
Douglas Gregor463421d2009-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 Stump11289f42009-09-09 15:08:12 +0000627void Sema::ActOnBaseSpecifiers(DeclPtrTy ClassDecl, BaseTy **Bases,
Douglas Gregor463421d2009-03-03 04:44:36 +0000628 unsigned NumBases) {
629 if (!ClassDecl || !Bases || !NumBases)
630 return;
631
632 AdjustDeclIfTemplate(ClassDecl);
Chris Lattner83f095c2009-03-28 19:18:32 +0000633 AttachBaseSpecifiers(cast<CXXRecordDecl>(ClassDecl.getAs<Decl>()),
Douglas Gregor463421d2009-03-03 04:44:36 +0000634 (CXXBaseSpecifier**)(Bases), NumBases);
Douglas Gregor556877c2008-04-13 21:30:24 +0000635}
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +0000636
Douglas Gregor36d1b142009-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 Redl7c353682009-11-14 21:15:49 +0000701 if (InaccessibleBaseID == 0)
702 return false;
Douglas Gregor36d1b142009-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 Redl7c353682009-11-14 21:15:49 +0000733 SourceLocation Loc, SourceRange Range,
734 bool IgnoreAccess) {
Douglas Gregor36d1b142009-10-06 17:59:45 +0000735 return CheckDerivedToBaseConversion(Derived, Base,
Sebastian Redl7c353682009-11-14 21:15:49 +0000736 IgnoreAccess ? 0 :
737 diag::err_conv_to_inaccessible_base,
Douglas Gregor36d1b142009-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 Kyrtzidised983422008-07-01 10:37:29 +0000774//===----------------------------------------------------------------------===//
775// C++ class member Handling
776//===----------------------------------------------------------------------===//
777
Argyrios Kyrtzidised983422008-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 Lattnereb4373d2009-04-12 22:37:57 +0000781/// any.
Chris Lattner83f095c2009-03-28 19:18:32 +0000782Sema::DeclPtrTy
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000783Sema::ActOnCXXMemberDeclarator(Scope *S, AccessSpecifier AS, Declarator &D,
Douglas Gregor3447e762009-08-20 22:52:58 +0000784 MultiTemplateParamsArg TemplateParameterLists,
Sebastian Redl42e92c42009-04-12 17:16:29 +0000785 ExprTy *BW, ExprTy *InitExpr, bool Deleted) {
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000786 const DeclSpec &DS = D.getDeclSpec();
Douglas Gregor92751d42008-11-17 22:58:34 +0000787 DeclarationName Name = GetNameForDeclarator(D);
Argyrios Kyrtzidised983422008-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 Redlccdfaba2008-11-14 23:42:31 +0000792 bool isFunc = D.isFunctionDeclarator();
793
John McCall07e91c02009-08-06 02:15:43 +0000794 assert(!DS.isFriendSpecified());
795
Argyrios Kyrtzidised983422008-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 Redlccdfaba2008-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 Kyrtzidised983422008-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 Redlccdfaba2008-11-14 23:42:31 +0000807 case DeclSpec::SCS_mutable:
808 if (isFunc) {
809 if (DS.getStorageClassSpecLoc().isValid())
Chris Lattner3b054132008-11-19 05:08:23 +0000810 Diag(DS.getStorageClassSpecLoc(), diag::err_mutable_function);
Sebastian Redlccdfaba2008-11-14 23:42:31 +0000811 else
Chris Lattner3b054132008-11-19 05:08:23 +0000812 Diag(DS.getThreadSpecLoc(), diag::err_mutable_function);
Mike Stump11289f42009-09-09 15:08:12 +0000813
Sebastian Redl8071edb2008-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 Redlccdfaba2008-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 Redl8071edb2008-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 Redlccdfaba2008-11-14 23:42:31 +0000831 D.getMutableDeclSpec().ClearStorageClassSpecs();
832 }
833 }
834 break;
Argyrios Kyrtzidised983422008-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 Kyrtzidis2e3e7562008-10-15 20:23:22 +0000844 if (!isFunc &&
Douglas Gregor9817f4a2009-02-09 15:09:02 +0000845 D.getDeclSpec().getTypeSpecType() == DeclSpec::TST_typename &&
Argyrios Kyrtzidis2e3e7562008-10-15 20:23:22 +0000846 D.getNumTypeObjects() == 0) {
Argyrios Kyrtzidis1207d312008-10-08 22:20:31 +0000847 // Check also for this case:
848 //
849 // typedef int f();
850 // f a;
851 //
Argyrios Kyrtzidisc7148c92009-08-19 01:28:28 +0000852 QualType TDType = GetTypeFromParser(DS.getTypeRep());
Douglas Gregor9817f4a2009-02-09 15:09:02 +0000853 isFunc = TDType->isFunctionType();
Argyrios Kyrtzidis1207d312008-10-08 22:20:31 +0000854 }
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000855
Sebastian Redlccdfaba2008-11-14 23:42:31 +0000856 bool isInstField = ((DS.getStorageClassSpec() == DeclSpec::SCS_unspecified ||
857 DS.getStorageClassSpec() == DeclSpec::SCS_mutable) &&
Argyrios Kyrtzidis1207d312008-10-08 22:20:31 +0000858 !isFunc);
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000859
860 Decl *Member;
Chris Lattner73bf7b42009-03-05 22:45:59 +0000861 if (isInstField) {
Douglas Gregor3447e762009-08-20 22:52:58 +0000862 // FIXME: Check for template parameters!
Douglas Gregor4261e4c2009-03-11 20:50:30 +0000863 Member = HandleField(S, cast<CXXRecordDecl>(CurContext), Loc, D, BitWidth,
864 AS);
Chris Lattner97e277e2009-03-05 23:03:49 +0000865 assert(Member && "HandleField never returns null");
Chris Lattner73bf7b42009-03-05 22:45:59 +0000866 } else {
Douglas Gregor3447e762009-08-20 22:52:58 +0000867 Member = HandleDeclarator(S, D, move(TemplateParameterLists), false)
868 .getAs<Decl>();
Chris Lattner97e277e2009-03-05 23:03:49 +0000869 if (!Member) {
870 if (BitWidth) DeleteExpr(BitWidth);
Chris Lattner5bbb3c82009-03-29 16:50:03 +0000871 return DeclPtrTy();
Chris Lattner97e277e2009-03-05 23:03:49 +0000872 }
Chris Lattnerd26760a2009-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 Gregor212cab32009-03-11 20:22:50 +0000878 } else if (isa<VarDecl>(Member)) {
Chris Lattnerd26760a2009-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 Stump11289f42009-09-09 15:08:12 +0000891 << Name << cast<ValueDecl>(Member)->getType()
Douglas Gregor1efa4372009-03-11 18:59:21 +0000892 << BitWidth->getSourceRange();
Chris Lattnerd26760a2009-03-05 23:01:03 +0000893 }
Mike Stump11289f42009-09-09 15:08:12 +0000894
Chris Lattnerd26760a2009-03-05 23:01:03 +0000895 DeleteExpr(BitWidth);
896 BitWidth = 0;
897 Member->setInvalidDecl();
898 }
Douglas Gregor4261e4c2009-03-11 20:50:30 +0000899
900 Member->setAccess(AS);
Mike Stump11289f42009-09-09 15:08:12 +0000901
Douglas Gregor3447e762009-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 Lattner73bf7b42009-03-05 22:45:59 +0000906 }
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000907
Douglas Gregor92751d42008-11-17 22:58:34 +0000908 assert((Name || isInstField) && "No identifier for non-field ?");
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000909
Douglas Gregor0c880302009-03-11 23:00:04 +0000910 if (Init)
Chris Lattner83f095c2009-03-28 19:18:32 +0000911 AddInitializerToDecl(DeclPtrTy::make(Member), ExprArg(*this, Init), false);
Sebastian Redl42e92c42009-04-12 17:16:29 +0000912 if (Deleted) // FIXME: Source location is not very good.
913 SetDeclDeleted(DeclPtrTy::make(Member), D.getSourceRange().getBegin());
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000914
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000915 if (isInstField) {
Douglas Gregor91f84212008-12-11 16:49:14 +0000916 FieldCollector->Add(cast<FieldDecl>(Member));
Chris Lattner5bbb3c82009-03-29 16:50:03 +0000917 return DeclPtrTy();
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000918 }
Chris Lattner83f095c2009-03-28 19:18:32 +0000919 return DeclPtrTy::make(Member);
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000920}
921
Douglas Gregore8381c02008-11-05 04:29:56 +0000922/// ActOnMemInitializer - Handle a C++ member initializer.
Mike Stump11289f42009-09-09 15:08:12 +0000923Sema::MemInitResult
Chris Lattner83f095c2009-03-28 19:18:32 +0000924Sema::ActOnMemInitializer(DeclPtrTy ConstructorD,
Douglas Gregore8381c02008-11-05 04:29:56 +0000925 Scope *S,
Fariborz Jahanian302bb662009-06-30 23:26:25 +0000926 const CXXScopeSpec &SS,
Douglas Gregore8381c02008-11-05 04:29:56 +0000927 IdentifierInfo *MemberOrBase,
Fariborz Jahanianc1fc3ec2009-07-01 19:21:19 +0000928 TypeTy *TemplateTypeTy,
Douglas Gregore8381c02008-11-05 04:29:56 +0000929 SourceLocation IdLoc,
930 SourceLocation LParenLoc,
931 ExprTy **Args, unsigned NumArgs,
932 SourceLocation *CommaLocs,
933 SourceLocation RParenLoc) {
Douglas Gregor71a57182009-06-22 23:20:33 +0000934 if (!ConstructorD)
935 return true;
Mike Stump11289f42009-09-09 15:08:12 +0000936
Douglas Gregorc8c277a2009-08-24 11:57:43 +0000937 AdjustDeclIfTemplate(ConstructorD);
Mike Stump11289f42009-09-09 15:08:12 +0000938
939 CXXConstructorDecl *Constructor
Chris Lattner83f095c2009-03-28 19:18:32 +0000940 = dyn_cast<CXXConstructorDecl>(ConstructorD.getAs<Decl>());
Douglas Gregore8381c02008-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 Jahanianc1fc3ec2009-07-01 19:21:19 +0000961 if (!SS.getScopeRep() && !TemplateTypeTy) {
Fariborz Jahanian302bb662009-06-30 23:26:25 +0000962 // Look for a member, first.
963 FieldDecl *Member = 0;
Mike Stump11289f42009-09-09 15:08:12 +0000964 DeclContext::lookup_result Result
Fariborz Jahanian302bb662009-06-30 23:26:25 +0000965 = ClassDecl->lookup(MemberOrBase);
966 if (Result.first != Result.second)
967 Member = dyn_cast<FieldDecl>(*Result.first);
Douglas Gregore8381c02008-11-05 04:29:56 +0000968
Fariborz Jahanian302bb662009-06-30 23:26:25 +0000969 // FIXME: Handle members of an anonymous union.
Douglas Gregore8381c02008-11-05 04:29:56 +0000970
Eli Friedman8e1433b2009-07-29 19:44:27 +0000971 if (Member)
972 return BuildMemberInitializer(Member, (Expr**)Args, NumArgs, IdLoc,
973 RParenLoc);
Douglas Gregore8381c02008-11-05 04:29:56 +0000974 }
Douglas Gregore8381c02008-11-05 04:29:56 +0000975 // It didn't name a member, so see if it names a class.
Mike Stump11289f42009-09-09 15:08:12 +0000976 TypeTy *BaseTy = TemplateTypeTy ? TemplateTypeTy
Fariborz Jahanianc1fc3ec2009-07-01 19:21:19 +0000977 : getTypeName(*MemberOrBase, IdLoc, S, &SS);
Douglas Gregore8381c02008-11-05 04:29:56 +0000978 if (!BaseTy)
Chris Lattner4bd8dd82008-11-19 08:23:25 +0000979 return Diag(IdLoc, diag::err_mem_init_not_member_or_class)
980 << MemberOrBase << SourceRange(IdLoc, RParenLoc);
Mike Stump11289f42009-09-09 15:08:12 +0000981
Argyrios Kyrtzidisc7148c92009-08-19 01:28:28 +0000982 QualType BaseType = GetTypeFromParser(BaseTy);
Douglas Gregore8381c02008-11-05 04:29:56 +0000983
Eli Friedman8e1433b2009-07-29 19:44:27 +0000984 return BuildBaseInitializer(BaseType, (Expr **)Args, NumArgs, IdLoc,
985 RParenLoc, ClassDecl);
986}
987
John McCalle22a04a2009-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 Friedman8e1433b2009-07-29 19:44:27 +00001031Sema::MemInitResult
1032Sema::BuildMemberInitializer(FieldDecl *Member, Expr **Args,
1033 unsigned NumArgs, SourceLocation IdLoc,
1034 SourceLocation RParenLoc) {
Anders Carlsson1fe64cb2009-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 McCalle22a04a2009-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 McCallc90f6d72009-11-04 23:13:52 +00001042 // TODO: implement -Wuninitialized and fold this into that framework.
John McCalle22a04a2009-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 Friedman8e1433b2009-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 McCallc90f6d72009-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 Gregor5d3507d2009-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 Jahanianfc60ca82009-09-02 17:10:17 +00001087 } else if (NumArgs != 1 && NumArgs != 0) {
John McCallc90f6d72009-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 Stump11289f42009-09-09 15:08:12 +00001090 return Diag(IdLoc, diag::err_mem_initializer_mismatch)
Eli Friedman8e1433b2009-07-29 19:44:27 +00001091 << Member->getDeclName() << SourceRange(IdLoc, RParenLoc);
1092 } else if (!HasDependentArg) {
Fariborz Jahanianfc60ca82009-09-02 17:10:17 +00001093 Expr *NewExp;
1094 if (NumArgs == 0) {
Fariborz Jahanian3501bce2009-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 Jahanianfc60ca82009-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 Friedman8e1433b2009-07-29 19:44:27 +00001105 if (PerformCopyInitialization(NewExp, FieldType, "passing"))
1106 return true;
1107 Args[0] = NewExp;
Douglas Gregore8381c02008-11-05 04:29:56 +00001108 }
Anders Carlsson1fe64cb2009-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 Friedman8e1433b2009-07-29 19:44:27 +00001114 // FIXME: Perform direct initialization of the member.
Mike Stump11289f42009-09-09 15:08:12 +00001115 return new (Context) CXXBaseOrMemberInitializer(Member, (Expr **)Args,
Anders Carlsson1e172e02009-08-29 01:31:33 +00001116 NumArgs, C, IdLoc, RParenLoc);
Eli Friedman8e1433b2009-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 Stump11289f42009-09-09 15:08:12 +00001138
Eli Friedman8e1433b2009-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) {
Mike Stump11289f42009-09-09 15:08:12 +00001143 if (Context.getCanonicalType(BaseType).getUnqualifiedType() ==
Eli Friedman8e1433b2009-07-29 19:44:27 +00001144 Context.getCanonicalType(Base->getType()).getUnqualifiedType()) {
1145 // We found a direct base of this type. That's what we're
1146 // initializing.
1147 DirectBaseSpec = &*Base;
1148 break;
1149 }
1150 }
Mike Stump11289f42009-09-09 15:08:12 +00001151
Eli Friedman8e1433b2009-07-29 19:44:27 +00001152 // Check for a virtual base class.
1153 // FIXME: We might be able to short-circuit this if we know in advance that
1154 // there are no virtual bases.
1155 const CXXBaseSpecifier *VirtualBaseSpec = 0;
1156 if (!DirectBaseSpec || !DirectBaseSpec->isVirtual()) {
1157 // We haven't found a base yet; search the class hierarchy for a
1158 // virtual base class.
Douglas Gregor36d1b142009-10-06 17:59:45 +00001159 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
1160 /*DetectVirtual=*/false);
Eli Friedman8e1433b2009-07-29 19:44:27 +00001161 if (IsDerivedFrom(Context.getTypeDeclType(ClassDecl), BaseType, Paths)) {
Douglas Gregor36d1b142009-10-06 17:59:45 +00001162 for (CXXBasePaths::paths_iterator Path = Paths.begin();
Eli Friedman8e1433b2009-07-29 19:44:27 +00001163 Path != Paths.end(); ++Path) {
1164 if (Path->back().Base->isVirtual()) {
1165 VirtualBaseSpec = Path->back().Base;
1166 break;
1167 }
Douglas Gregore8381c02008-11-05 04:29:56 +00001168 }
1169 }
1170 }
Eli Friedman8e1433b2009-07-29 19:44:27 +00001171
1172 // C++ [base.class.init]p2:
1173 // If a mem-initializer-id is ambiguous because it designates both
1174 // a direct non-virtual base class and an inherited virtual base
1175 // class, the mem-initializer is ill-formed.
1176 if (DirectBaseSpec && VirtualBaseSpec)
1177 return Diag(IdLoc, diag::err_base_init_direct_and_virtual)
1178 << BaseType << SourceRange(IdLoc, RParenLoc);
1179 // C++ [base.class.init]p2:
1180 // Unless the mem-initializer-id names a nonstatic data membeer of the
1181 // constructor's class ot a direst or virtual base of that class, the
1182 // mem-initializer is ill-formed.
1183 if (!DirectBaseSpec && !VirtualBaseSpec)
1184 return Diag(IdLoc, diag::err_not_direct_base_or_virtual)
1185 << BaseType << ClassDecl->getNameAsCString()
1186 << SourceRange(IdLoc, RParenLoc);
Douglas Gregore8381c02008-11-05 04:29:56 +00001187 }
1188
Fariborz Jahanian0228bc12009-07-23 00:42:24 +00001189 CXXConstructorDecl *C = 0;
Eli Friedman8e1433b2009-07-29 19:44:27 +00001190 if (!BaseType->isDependentType() && !HasDependentArg) {
1191 DeclarationName Name = Context.DeclarationNames.getCXXConstructorName(
Douglas Gregor4100db62009-11-08 07:12:55 +00001192 Context.getCanonicalType(BaseType).getUnqualifiedType());
Douglas Gregor5d3507d2009-09-09 23:08:42 +00001193 ASTOwningVector<&ActionBase::DeleteExpr> ConstructorArgs(*this);
1194
1195 C = PerformInitializationByConstructor(BaseType,
1196 MultiExprArg(*this,
1197 (void**)Args, NumArgs),
Mike Stump11289f42009-09-09 15:08:12 +00001198 IdLoc, SourceRange(IdLoc, RParenLoc),
Douglas Gregor5d3507d2009-09-09 23:08:42 +00001199 Name, IK_Direct,
1200 ConstructorArgs);
1201 if (C) {
1202 // Take over the constructor arguments as our own.
1203 NumArgs = ConstructorArgs.size();
1204 Args = (Expr **)ConstructorArgs.take();
1205 }
Eli Friedman8e1433b2009-07-29 19:44:27 +00001206 }
1207
Anders Carlsson1fe64cb2009-11-13 19:21:49 +00001208 // FIXME: CXXBaseOrMemberInitializer should only contain a single
1209 // subexpression so we can wrap it in a CXXExprWithTemporaries if necessary.
1210 ExprTemporaries.clear();
1211
Mike Stump11289f42009-09-09 15:08:12 +00001212 return new (Context) CXXBaseOrMemberInitializer(BaseType, (Expr **)Args,
Anders Carlsson1e172e02009-08-29 01:31:33 +00001213 NumArgs, C, IdLoc, RParenLoc);
Douglas Gregore8381c02008-11-05 04:29:56 +00001214}
1215
Eli Friedman9cf6b592009-11-09 19:20:36 +00001216bool
Anders Carlsson561f7932009-10-29 15:46:07 +00001217Sema::SetBaseOrMemberInitializers(CXXConstructorDecl *Constructor,
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001218 CXXBaseOrMemberInitializer **Initializers,
1219 unsigned NumInitializers,
Eli Friedmand7686ef2009-11-09 01:05:47 +00001220 bool IsImplicitConstructor) {
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001221 // We need to build the initializer AST according to order of construction
1222 // and not what user specified in the Initializers list.
1223 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Constructor->getDeclContext());
1224 llvm::SmallVector<CXXBaseOrMemberInitializer*, 32> AllToInit;
1225 llvm::DenseMap<const void *, CXXBaseOrMemberInitializer*> AllBaseFields;
1226 bool HasDependentBaseInit = false;
Eli Friedman9cf6b592009-11-09 19:20:36 +00001227 bool HadError = false;
Mike Stump11289f42009-09-09 15:08:12 +00001228
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001229 for (unsigned i = 0; i < NumInitializers; i++) {
1230 CXXBaseOrMemberInitializer *Member = Initializers[i];
1231 if (Member->isBaseInitializer()) {
1232 if (Member->getBaseClass()->isDependentType())
1233 HasDependentBaseInit = true;
1234 AllBaseFields[Member->getBaseClass()->getAs<RecordType>()] = Member;
1235 } else {
1236 AllBaseFields[Member->getMember()] = Member;
1237 }
1238 }
Mike Stump11289f42009-09-09 15:08:12 +00001239
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001240 if (HasDependentBaseInit) {
1241 // FIXME. This does not preserve the ordering of the initializers.
1242 // Try (with -Wreorder)
1243 // template<class X> struct A {};
Mike Stump11289f42009-09-09 15:08:12 +00001244 // template<class X> struct B : A<X> {
1245 // B() : x1(10), A<X>() {}
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001246 // int x1;
1247 // };
1248 // B<int> x;
1249 // On seeing one dependent type, we should essentially exit this routine
1250 // while preserving user-declared initializer list. When this routine is
1251 // called during instantiatiation process, this routine will rebuild the
John McCallc90f6d72009-11-04 23:13:52 +00001252 // ordered initializer list correctly.
Mike Stump11289f42009-09-09 15:08:12 +00001253
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001254 // If we have a dependent base initialization, we can't determine the
1255 // association between initializers and bases; just dump the known
1256 // initializers into the list, and don't try to deal with other bases.
1257 for (unsigned i = 0; i < NumInitializers; i++) {
1258 CXXBaseOrMemberInitializer *Member = Initializers[i];
1259 if (Member->isBaseInitializer())
1260 AllToInit.push_back(Member);
1261 }
1262 } else {
1263 // Push virtual bases before others.
1264 for (CXXRecordDecl::base_class_iterator VBase =
1265 ClassDecl->vbases_begin(),
1266 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
1267 if (VBase->getType()->isDependentType())
1268 continue;
Mike Stump11289f42009-09-09 15:08:12 +00001269 if (CXXBaseOrMemberInitializer *Value =
Fariborz Jahanian59a1cd42009-09-03 21:32:41 +00001270 AllBaseFields.lookup(VBase->getType()->getAs<RecordType>())) {
Mike Stump11289f42009-09-09 15:08:12 +00001271 CXXRecordDecl *BaseDecl =
Fariborz Jahanian59a1cd42009-09-03 21:32:41 +00001272 cast<CXXRecordDecl>(VBase->getType()->getAs<RecordType>()->getDecl());
Anders Carlsson561f7932009-10-29 15:46:07 +00001273 assert(BaseDecl && "SetBaseOrMemberInitializers - BaseDecl null");
Fariborz Jahanian59a1cd42009-09-03 21:32:41 +00001274 if (CXXConstructorDecl *Ctor = BaseDecl->getDefaultConstructor(Context))
1275 MarkDeclarationReferenced(Value->getSourceLocation(), Ctor);
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001276 AllToInit.push_back(Value);
Fariborz Jahanian59a1cd42009-09-03 21:32:41 +00001277 }
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001278 else {
Mike Stump11289f42009-09-09 15:08:12 +00001279 CXXRecordDecl *VBaseDecl =
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001280 cast<CXXRecordDecl>(VBase->getType()->getAs<RecordType>()->getDecl());
Anders Carlsson561f7932009-10-29 15:46:07 +00001281 assert(VBaseDecl && "SetBaseOrMemberInitializers - VBaseDecl null");
Fariborz Jahanian59a1cd42009-09-03 21:32:41 +00001282 CXXConstructorDecl *Ctor = VBaseDecl->getDefaultConstructor(Context);
Anders Carlsson561f7932009-10-29 15:46:07 +00001283 if (!Ctor) {
Eli Friedmand7686ef2009-11-09 01:05:47 +00001284 Diag(Constructor->getLocation(), diag::err_missing_default_ctor)
1285 << (int)IsImplicitConstructor << Context.getTagDeclType(ClassDecl)
1286 << 0 << VBase->getType();
1287 Diag(VBaseDecl->getLocation(), diag::note_previous_class_decl)
1288 << Context.getTagDeclType(VBaseDecl);
Eli Friedman9cf6b592009-11-09 19:20:36 +00001289 HadError = true;
Anders Carlsson561f7932009-10-29 15:46:07 +00001290 continue;
1291 }
Fariborz Jahanian59a1cd42009-09-03 21:32:41 +00001292
Anders Carlsson561f7932009-10-29 15:46:07 +00001293 ASTOwningVector<&ActionBase::DeleteExpr> CtorArgs(*this);
1294 if (CompleteConstructorCall(Ctor, MultiExprArg(*this, 0, 0),
1295 Constructor->getLocation(), CtorArgs))
1296 continue;
1297
1298 MarkDeclarationReferenced(Constructor->getLocation(), Ctor);
1299
Anders Carlssonbdd12402009-11-13 20:11:49 +00001300 // FIXME: CXXBaseOrMemberInitializer should only contain a single
1301 // subexpression so we can wrap it in a CXXExprWithTemporaries if necessary.
1302 ExprTemporaries.clear();
Mike Stump11289f42009-09-09 15:08:12 +00001303 CXXBaseOrMemberInitializer *Member =
Anders Carlsson561f7932009-10-29 15:46:07 +00001304 new (Context) CXXBaseOrMemberInitializer(VBase->getType(),
1305 CtorArgs.takeAs<Expr>(),
1306 CtorArgs.size(), Ctor,
1307 SourceLocation(),
1308 SourceLocation());
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001309 AllToInit.push_back(Member);
1310 }
1311 }
Mike Stump11289f42009-09-09 15:08:12 +00001312
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001313 for (CXXRecordDecl::base_class_iterator Base =
1314 ClassDecl->bases_begin(),
1315 E = ClassDecl->bases_end(); Base != E; ++Base) {
1316 // Virtuals are in the virtual base list and already constructed.
1317 if (Base->isVirtual())
1318 continue;
1319 // Skip dependent types.
1320 if (Base->getType()->isDependentType())
1321 continue;
Mike Stump11289f42009-09-09 15:08:12 +00001322 if (CXXBaseOrMemberInitializer *Value =
Fariborz Jahanian59a1cd42009-09-03 21:32:41 +00001323 AllBaseFields.lookup(Base->getType()->getAs<RecordType>())) {
Mike Stump11289f42009-09-09 15:08:12 +00001324 CXXRecordDecl *BaseDecl =
Fariborz Jahanian59a1cd42009-09-03 21:32:41 +00001325 cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Anders Carlsson561f7932009-10-29 15:46:07 +00001326 assert(BaseDecl && "SetBaseOrMemberInitializers - BaseDecl null");
Fariborz Jahanian59a1cd42009-09-03 21:32:41 +00001327 if (CXXConstructorDecl *Ctor = BaseDecl->getDefaultConstructor(Context))
1328 MarkDeclarationReferenced(Value->getSourceLocation(), Ctor);
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001329 AllToInit.push_back(Value);
Fariborz Jahanian59a1cd42009-09-03 21:32:41 +00001330 }
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001331 else {
Mike Stump11289f42009-09-09 15:08:12 +00001332 CXXRecordDecl *BaseDecl =
Fariborz Jahanian59a1cd42009-09-03 21:32:41 +00001333 cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Anders Carlsson561f7932009-10-29 15:46:07 +00001334 assert(BaseDecl && "SetBaseOrMemberInitializers - BaseDecl null");
Fariborz Jahanian59a1cd42009-09-03 21:32:41 +00001335 CXXConstructorDecl *Ctor = BaseDecl->getDefaultConstructor(Context);
Anders Carlsson561f7932009-10-29 15:46:07 +00001336 if (!Ctor) {
Eli Friedmand7686ef2009-11-09 01:05:47 +00001337 Diag(Constructor->getLocation(), diag::err_missing_default_ctor)
1338 << (int)IsImplicitConstructor << Context.getTagDeclType(ClassDecl)
1339 << 0 << Base->getType();
1340 Diag(BaseDecl->getLocation(), diag::note_previous_class_decl)
1341 << Context.getTagDeclType(BaseDecl);
Eli Friedman9cf6b592009-11-09 19:20:36 +00001342 HadError = true;
Anders Carlsson561f7932009-10-29 15:46:07 +00001343 continue;
1344 }
1345
1346 ASTOwningVector<&ActionBase::DeleteExpr> CtorArgs(*this);
1347 if (CompleteConstructorCall(Ctor, MultiExprArg(*this, 0, 0),
1348 Constructor->getLocation(), CtorArgs))
1349 continue;
1350
1351 MarkDeclarationReferenced(Constructor->getLocation(), Ctor);
Fariborz Jahanian59a1cd42009-09-03 21:32:41 +00001352
Anders Carlssonbdd12402009-11-13 20:11:49 +00001353 // FIXME: CXXBaseOrMemberInitializer should only contain a single
1354 // subexpression so we can wrap it in a CXXExprWithTemporaries if necessary.
1355 ExprTemporaries.clear();
Mike Stump11289f42009-09-09 15:08:12 +00001356 CXXBaseOrMemberInitializer *Member =
Anders Carlsson561f7932009-10-29 15:46:07 +00001357 new (Context) CXXBaseOrMemberInitializer(Base->getType(),
1358 CtorArgs.takeAs<Expr>(),
1359 CtorArgs.size(), Ctor,
1360 SourceLocation(),
1361 SourceLocation());
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001362 AllToInit.push_back(Member);
1363 }
1364 }
1365 }
Mike Stump11289f42009-09-09 15:08:12 +00001366
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001367 // non-static data members.
1368 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
1369 E = ClassDecl->field_end(); Field != E; ++Field) {
1370 if ((*Field)->isAnonymousStructOrUnion()) {
Mike Stump11289f42009-09-09 15:08:12 +00001371 if (const RecordType *FieldClassType =
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001372 Field->getType()->getAs<RecordType>()) {
1373 CXXRecordDecl *FieldClassDecl
Douglas Gregor07eae022009-11-13 18:34:26 +00001374 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Mike Stump11289f42009-09-09 15:08:12 +00001375 for (RecordDecl::field_iterator FA = FieldClassDecl->field_begin(),
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001376 EA = FieldClassDecl->field_end(); FA != EA; FA++) {
1377 if (CXXBaseOrMemberInitializer *Value = AllBaseFields.lookup(*FA)) {
1378 // 'Member' is the anonymous union field and 'AnonUnionMember' is
1379 // set to the anonymous union data member used in the initializer
1380 // list.
1381 Value->setMember(*Field);
1382 Value->setAnonUnionMember(*FA);
1383 AllToInit.push_back(Value);
1384 break;
1385 }
1386 }
1387 }
1388 continue;
1389 }
1390 if (CXXBaseOrMemberInitializer *Value = AllBaseFields.lookup(*Field)) {
Fariborz Jahanian59a1cd42009-09-03 21:32:41 +00001391 QualType FT = (*Field)->getType();
1392 if (const RecordType* RT = FT->getAs<RecordType>()) {
1393 CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(RT->getDecl());
Anders Carlsson561f7932009-10-29 15:46:07 +00001394 assert(FieldRecDecl && "SetBaseOrMemberInitializers - BaseDecl null");
Mike Stump11289f42009-09-09 15:08:12 +00001395 if (CXXConstructorDecl *Ctor =
Fariborz Jahanian59a1cd42009-09-03 21:32:41 +00001396 FieldRecDecl->getDefaultConstructor(Context))
1397 MarkDeclarationReferenced(Value->getSourceLocation(), Ctor);
1398 }
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001399 AllToInit.push_back(Value);
1400 continue;
1401 }
Mike Stump11289f42009-09-09 15:08:12 +00001402
Eli Friedmand7686ef2009-11-09 01:05:47 +00001403 if ((*Field)->getType()->isDependentType())
Douglas Gregor2de8f412009-11-04 17:16:11 +00001404 continue;
Douglas Gregor2de8f412009-11-04 17:16:11 +00001405
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001406 QualType FT = Context.getBaseElementType((*Field)->getType());
1407 if (const RecordType* RT = FT->getAs<RecordType>()) {
1408 CXXConstructorDecl *Ctor =
1409 cast<CXXRecordDecl>(RT->getDecl())->getDefaultConstructor(Context);
Douglas Gregor2de8f412009-11-04 17:16:11 +00001410 if (!Ctor) {
Eli Friedmand7686ef2009-11-09 01:05:47 +00001411 Diag(Constructor->getLocation(), diag::err_missing_default_ctor)
1412 << (int)IsImplicitConstructor << Context.getTagDeclType(ClassDecl)
1413 << 1 << (*Field)->getDeclName();
1414 Diag(Field->getLocation(), diag::note_field_decl);
1415 Diag(RT->getDecl()->getLocation(), diag::note_previous_class_decl)
1416 << Context.getTagDeclType(RT->getDecl());
Eli Friedman9cf6b592009-11-09 19:20:36 +00001417 HadError = true;
Anders Carlsson561f7932009-10-29 15:46:07 +00001418 continue;
1419 }
1420
1421 ASTOwningVector<&ActionBase::DeleteExpr> CtorArgs(*this);
1422 if (CompleteConstructorCall(Ctor, MultiExprArg(*this, 0, 0),
1423 Constructor->getLocation(), CtorArgs))
1424 continue;
1425
Anders Carlssonbdd12402009-11-13 20:11:49 +00001426 // FIXME: CXXBaseOrMemberInitializer should only contain a single
1427 // subexpression so we can wrap it in a CXXExprWithTemporaries if necessary.
1428 ExprTemporaries.clear();
Mike Stump11289f42009-09-09 15:08:12 +00001429 CXXBaseOrMemberInitializer *Member =
Anders Carlsson561f7932009-10-29 15:46:07 +00001430 new (Context) CXXBaseOrMemberInitializer(*Field,CtorArgs.takeAs<Expr>(),
1431 CtorArgs.size(), Ctor,
1432 SourceLocation(),
1433 SourceLocation());
1434
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001435 AllToInit.push_back(Member);
Eli Friedmand7686ef2009-11-09 01:05:47 +00001436 MarkDeclarationReferenced(Constructor->getLocation(), Ctor);
1437 if (FT.isConstQualified() && Ctor->isTrivial()) {
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001438 Diag(Constructor->getLocation(), diag::err_unintialized_member_in_ctor)
Eli Friedmand7686ef2009-11-09 01:05:47 +00001439 << (int)IsImplicitConstructor << Context.getTagDeclType(ClassDecl)
1440 << 1 << (*Field)->getDeclName();
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001441 Diag((*Field)->getLocation(), diag::note_declared_at);
Eli Friedman9cf6b592009-11-09 19:20:36 +00001442 HadError = true;
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001443 }
1444 }
1445 else if (FT->isReferenceType()) {
1446 Diag(Constructor->getLocation(), diag::err_unintialized_member_in_ctor)
Eli Friedmand7686ef2009-11-09 01:05:47 +00001447 << (int)IsImplicitConstructor << Context.getTagDeclType(ClassDecl)
1448 << 0 << (*Field)->getDeclName();
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001449 Diag((*Field)->getLocation(), diag::note_declared_at);
Eli Friedman9cf6b592009-11-09 19:20:36 +00001450 HadError = true;
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001451 }
1452 else if (FT.isConstQualified()) {
1453 Diag(Constructor->getLocation(), diag::err_unintialized_member_in_ctor)
Eli Friedmand7686ef2009-11-09 01:05:47 +00001454 << (int)IsImplicitConstructor << Context.getTagDeclType(ClassDecl)
1455 << 1 << (*Field)->getDeclName();
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001456 Diag((*Field)->getLocation(), diag::note_declared_at);
Eli Friedman9cf6b592009-11-09 19:20:36 +00001457 HadError = true;
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001458 }
1459 }
Mike Stump11289f42009-09-09 15:08:12 +00001460
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001461 NumInitializers = AllToInit.size();
1462 if (NumInitializers > 0) {
1463 Constructor->setNumBaseOrMemberInitializers(NumInitializers);
1464 CXXBaseOrMemberInitializer **baseOrMemberInitializers =
1465 new (Context) CXXBaseOrMemberInitializer*[NumInitializers];
Mike Stump11289f42009-09-09 15:08:12 +00001466
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001467 Constructor->setBaseOrMemberInitializers(baseOrMemberInitializers);
1468 for (unsigned Idx = 0; Idx < NumInitializers; ++Idx)
1469 baseOrMemberInitializers[Idx] = AllToInit[Idx];
1470 }
Eli Friedman9cf6b592009-11-09 19:20:36 +00001471
1472 return HadError;
Fariborz Jahanian3501bce2009-09-03 19:36:46 +00001473}
1474
Eli Friedman952c15d2009-07-21 19:28:10 +00001475static void *GetKeyForTopLevelField(FieldDecl *Field) {
1476 // For anonymous unions, use the class declaration as the key.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001477 if (const RecordType *RT = Field->getType()->getAs<RecordType>()) {
Eli Friedman952c15d2009-07-21 19:28:10 +00001478 if (RT->getDecl()->isAnonymousStructOrUnion())
1479 return static_cast<void *>(RT->getDecl());
1480 }
1481 return static_cast<void *>(Field);
1482}
1483
Anders Carlssonbcec05c2009-09-01 06:22:14 +00001484static void *GetKeyForBase(QualType BaseType) {
1485 if (const RecordType *RT = BaseType->getAs<RecordType>())
1486 return (void *)RT;
Mike Stump11289f42009-09-09 15:08:12 +00001487
Anders Carlssonbcec05c2009-09-01 06:22:14 +00001488 assert(0 && "Unexpected base type!");
1489 return 0;
1490}
1491
Mike Stump11289f42009-09-09 15:08:12 +00001492static void *GetKeyForMember(CXXBaseOrMemberInitializer *Member,
Anders Carlssonbcec05c2009-09-01 06:22:14 +00001493 bool MemberMaybeAnon = false) {
Eli Friedman952c15d2009-07-21 19:28:10 +00001494 // For fields injected into the class via declaration of an anonymous union,
1495 // use its anonymous union class declaration as the unique key.
Anders Carlssonbcec05c2009-09-01 06:22:14 +00001496 if (Member->isMemberInitializer()) {
1497 FieldDecl *Field = Member->getMember();
Mike Stump11289f42009-09-09 15:08:12 +00001498
Eli Friedmand7686ef2009-11-09 01:05:47 +00001499 // After SetBaseOrMemberInitializers call, Field is the anonymous union
Mike Stump11289f42009-09-09 15:08:12 +00001500 // data member of the class. Data member used in the initializer list is
Fariborz Jahanianb2197042009-08-11 18:49:54 +00001501 // in AnonUnionMember field.
1502 if (MemberMaybeAnon && Field->isAnonymousStructOrUnion())
1503 Field = Member->getAnonUnionMember();
Eli Friedman952c15d2009-07-21 19:28:10 +00001504 if (Field->getDeclContext()->isRecord()) {
1505 RecordDecl *RD = cast<RecordDecl>(Field->getDeclContext());
1506 if (RD->isAnonymousStructOrUnion())
1507 return static_cast<void *>(RD);
1508 }
1509 return static_cast<void *>(Field);
1510 }
Mike Stump11289f42009-09-09 15:08:12 +00001511
Anders Carlssonbcec05c2009-09-01 06:22:14 +00001512 return GetKeyForBase(QualType(Member->getBaseClass(), 0));
Eli Friedman952c15d2009-07-21 19:28:10 +00001513}
1514
John McCallc90f6d72009-11-04 23:13:52 +00001515/// ActOnMemInitializers - Handle the member initializers for a constructor.
Mike Stump11289f42009-09-09 15:08:12 +00001516void Sema::ActOnMemInitializers(DeclPtrTy ConstructorDecl,
Anders Carlsson75fdaa42009-03-25 02:58:17 +00001517 SourceLocation ColonLoc,
1518 MemInitTy **MemInits, unsigned NumMemInits) {
Douglas Gregor71a57182009-06-22 23:20:33 +00001519 if (!ConstructorDecl)
1520 return;
Douglas Gregorc8c277a2009-08-24 11:57:43 +00001521
1522 AdjustDeclIfTemplate(ConstructorDecl);
Mike Stump11289f42009-09-09 15:08:12 +00001523
1524 CXXConstructorDecl *Constructor
Douglas Gregor71a57182009-06-22 23:20:33 +00001525 = dyn_cast<CXXConstructorDecl>(ConstructorDecl.getAs<Decl>());
Mike Stump11289f42009-09-09 15:08:12 +00001526
Anders Carlsson75fdaa42009-03-25 02:58:17 +00001527 if (!Constructor) {
1528 Diag(ColonLoc, diag::err_only_constructors_take_base_inits);
1529 return;
1530 }
Mike Stump11289f42009-09-09 15:08:12 +00001531
Anders Carlsson35d6e3e2009-08-27 05:57:30 +00001532 if (!Constructor->isDependentContext()) {
1533 llvm::DenseMap<void*, CXXBaseOrMemberInitializer *>Members;
1534 bool err = false;
1535 for (unsigned i = 0; i < NumMemInits; i++) {
Mike Stump11289f42009-09-09 15:08:12 +00001536 CXXBaseOrMemberInitializer *Member =
Anders Carlsson35d6e3e2009-08-27 05:57:30 +00001537 static_cast<CXXBaseOrMemberInitializer*>(MemInits[i]);
1538 void *KeyToMember = GetKeyForMember(Member);
1539 CXXBaseOrMemberInitializer *&PrevMember = Members[KeyToMember];
1540 if (!PrevMember) {
1541 PrevMember = Member;
1542 continue;
1543 }
1544 if (FieldDecl *Field = Member->getMember())
Mike Stump11289f42009-09-09 15:08:12 +00001545 Diag(Member->getSourceLocation(),
Anders Carlsson35d6e3e2009-08-27 05:57:30 +00001546 diag::error_multiple_mem_initialization)
1547 << Field->getNameAsString();
1548 else {
1549 Type *BaseClass = Member->getBaseClass();
1550 assert(BaseClass && "ActOnMemInitializers - neither field or base");
Mike Stump11289f42009-09-09 15:08:12 +00001551 Diag(Member->getSourceLocation(),
Anders Carlsson35d6e3e2009-08-27 05:57:30 +00001552 diag::error_multiple_base_initialization)
John McCalla1925362009-09-29 23:03:30 +00001553 << QualType(BaseClass, 0);
Anders Carlsson35d6e3e2009-08-27 05:57:30 +00001554 }
1555 Diag(PrevMember->getSourceLocation(), diag::note_previous_initializer)
1556 << 0;
1557 err = true;
1558 }
Mike Stump11289f42009-09-09 15:08:12 +00001559
Anders Carlsson35d6e3e2009-08-27 05:57:30 +00001560 if (err)
1561 return;
1562 }
Mike Stump11289f42009-09-09 15:08:12 +00001563
Eli Friedmand7686ef2009-11-09 01:05:47 +00001564 SetBaseOrMemberInitializers(Constructor,
Mike Stump11289f42009-09-09 15:08:12 +00001565 reinterpret_cast<CXXBaseOrMemberInitializer **>(MemInits),
Eli Friedmand7686ef2009-11-09 01:05:47 +00001566 NumMemInits, false);
Mike Stump11289f42009-09-09 15:08:12 +00001567
Anders Carlsson35d6e3e2009-08-27 05:57:30 +00001568 if (Constructor->isDependentContext())
1569 return;
Mike Stump11289f42009-09-09 15:08:12 +00001570
1571 if (Diags.getDiagnosticLevel(diag::warn_base_initialized) ==
Anders Carlssone0eebb32009-08-27 05:45:01 +00001572 Diagnostic::Ignored &&
Mike Stump11289f42009-09-09 15:08:12 +00001573 Diags.getDiagnosticLevel(diag::warn_field_initialized) ==
Anders Carlssone0eebb32009-08-27 05:45:01 +00001574 Diagnostic::Ignored)
1575 return;
Mike Stump11289f42009-09-09 15:08:12 +00001576
Anders Carlssone0eebb32009-08-27 05:45:01 +00001577 // Also issue warning if order of ctor-initializer list does not match order
1578 // of 1) base class declarations and 2) order of non-static data members.
1579 llvm::SmallVector<const void*, 32> AllBaseOrMembers;
Mike Stump11289f42009-09-09 15:08:12 +00001580
Anders Carlssone0eebb32009-08-27 05:45:01 +00001581 CXXRecordDecl *ClassDecl
1582 = cast<CXXRecordDecl>(Constructor->getDeclContext());
1583 // Push virtual bases before others.
1584 for (CXXRecordDecl::base_class_iterator VBase =
1585 ClassDecl->vbases_begin(),
1586 E = ClassDecl->vbases_end(); VBase != E; ++VBase)
Anders Carlssonbcec05c2009-09-01 06:22:14 +00001587 AllBaseOrMembers.push_back(GetKeyForBase(VBase->getType()));
Mike Stump11289f42009-09-09 15:08:12 +00001588
Anders Carlssone0eebb32009-08-27 05:45:01 +00001589 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
1590 E = ClassDecl->bases_end(); Base != E; ++Base) {
1591 // Virtuals are alread in the virtual base list and are constructed
1592 // first.
1593 if (Base->isVirtual())
1594 continue;
Anders Carlssonbcec05c2009-09-01 06:22:14 +00001595 AllBaseOrMembers.push_back(GetKeyForBase(Base->getType()));
Anders Carlssone0eebb32009-08-27 05:45:01 +00001596 }
Mike Stump11289f42009-09-09 15:08:12 +00001597
Anders Carlssone0eebb32009-08-27 05:45:01 +00001598 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
1599 E = ClassDecl->field_end(); Field != E; ++Field)
1600 AllBaseOrMembers.push_back(GetKeyForTopLevelField(*Field));
Mike Stump11289f42009-09-09 15:08:12 +00001601
Anders Carlssone0eebb32009-08-27 05:45:01 +00001602 int Last = AllBaseOrMembers.size();
1603 int curIndex = 0;
1604 CXXBaseOrMemberInitializer *PrevMember = 0;
1605 for (unsigned i = 0; i < NumMemInits; i++) {
Mike Stump11289f42009-09-09 15:08:12 +00001606 CXXBaseOrMemberInitializer *Member =
Anders Carlssone0eebb32009-08-27 05:45:01 +00001607 static_cast<CXXBaseOrMemberInitializer*>(MemInits[i]);
1608 void *MemberInCtorList = GetKeyForMember(Member, true);
Eli Friedman952c15d2009-07-21 19:28:10 +00001609
Anders Carlssone0eebb32009-08-27 05:45:01 +00001610 for (; curIndex < Last; curIndex++)
1611 if (MemberInCtorList == AllBaseOrMembers[curIndex])
1612 break;
1613 if (curIndex == Last) {
1614 assert(PrevMember && "Member not in member list?!");
1615 // Initializer as specified in ctor-initializer list is out of order.
1616 // Issue a warning diagnostic.
1617 if (PrevMember->isBaseInitializer()) {
1618 // Diagnostics is for an initialized base class.
1619 Type *BaseClass = PrevMember->getBaseClass();
1620 Diag(PrevMember->getSourceLocation(),
Mike Stump11289f42009-09-09 15:08:12 +00001621 diag::warn_base_initialized)
John McCalla1925362009-09-29 23:03:30 +00001622 << QualType(BaseClass, 0);
Anders Carlssone0eebb32009-08-27 05:45:01 +00001623 } else {
1624 FieldDecl *Field = PrevMember->getMember();
1625 Diag(PrevMember->getSourceLocation(),
Mike Stump11289f42009-09-09 15:08:12 +00001626 diag::warn_field_initialized)
Anders Carlssone0eebb32009-08-27 05:45:01 +00001627 << Field->getNameAsString();
Fariborz Jahanian341583c2009-07-09 19:59:47 +00001628 }
Anders Carlssone0eebb32009-08-27 05:45:01 +00001629 // Also the note!
1630 if (FieldDecl *Field = Member->getMember())
Mike Stump11289f42009-09-09 15:08:12 +00001631 Diag(Member->getSourceLocation(),
Anders Carlssone0eebb32009-08-27 05:45:01 +00001632 diag::note_fieldorbase_initialized_here) << 0
1633 << Field->getNameAsString();
1634 else {
1635 Type *BaseClass = Member->getBaseClass();
Mike Stump11289f42009-09-09 15:08:12 +00001636 Diag(Member->getSourceLocation(),
Anders Carlssone0eebb32009-08-27 05:45:01 +00001637 diag::note_fieldorbase_initialized_here) << 1
John McCalla1925362009-09-29 23:03:30 +00001638 << QualType(BaseClass, 0);
Anders Carlssone0eebb32009-08-27 05:45:01 +00001639 }
1640 for (curIndex = 0; curIndex < Last; curIndex++)
Mike Stump11289f42009-09-09 15:08:12 +00001641 if (MemberInCtorList == AllBaseOrMembers[curIndex])
Anders Carlssone0eebb32009-08-27 05:45:01 +00001642 break;
Fariborz Jahanian341583c2009-07-09 19:59:47 +00001643 }
Anders Carlssone0eebb32009-08-27 05:45:01 +00001644 PrevMember = Member;
Fariborz Jahanian341583c2009-07-09 19:59:47 +00001645 }
Anders Carlsson75fdaa42009-03-25 02:58:17 +00001646}
1647
Fariborz Jahanian37d06562009-09-03 23:18:17 +00001648void
1649Sema::computeBaseOrMembersToDestroy(CXXDestructorDecl *Destructor) {
1650 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Destructor->getDeclContext());
1651 llvm::SmallVector<uintptr_t, 32> AllToDestruct;
Mike Stump11289f42009-09-09 15:08:12 +00001652
Fariborz Jahanian37d06562009-09-03 23:18:17 +00001653 for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(),
1654 E = ClassDecl->vbases_end(); VBase != E; ++VBase) {
1655 if (VBase->getType()->isDependentType())
1656 continue;
1657 // Skip over virtual bases which have trivial destructors.
1658 CXXRecordDecl *BaseClassDecl
1659 = cast<CXXRecordDecl>(VBase->getType()->getAs<RecordType>()->getDecl());
1660 if (BaseClassDecl->hasTrivialDestructor())
1661 continue;
1662 if (const CXXDestructorDecl *Dtor = BaseClassDecl->getDestructor(Context))
Mike Stump11289f42009-09-09 15:08:12 +00001663 MarkDeclarationReferenced(Destructor->getLocation(),
Fariborz Jahanian37d06562009-09-03 23:18:17 +00001664 const_cast<CXXDestructorDecl*>(Dtor));
Mike Stump11289f42009-09-09 15:08:12 +00001665
1666 uintptr_t Member =
1667 reinterpret_cast<uintptr_t>(VBase->getType().getTypePtr())
Fariborz Jahanian37d06562009-09-03 23:18:17 +00001668 | CXXDestructorDecl::VBASE;
1669 AllToDestruct.push_back(Member);
1670 }
1671 for (CXXRecordDecl::base_class_iterator Base =
1672 ClassDecl->bases_begin(),
1673 E = ClassDecl->bases_end(); Base != E; ++Base) {
1674 if (Base->isVirtual())
1675 continue;
1676 if (Base->getType()->isDependentType())
1677 continue;
1678 // Skip over virtual bases which have trivial destructors.
1679 CXXRecordDecl *BaseClassDecl
1680 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
1681 if (BaseClassDecl->hasTrivialDestructor())
1682 continue;
1683 if (const CXXDestructorDecl *Dtor = BaseClassDecl->getDestructor(Context))
Mike Stump11289f42009-09-09 15:08:12 +00001684 MarkDeclarationReferenced(Destructor->getLocation(),
Fariborz Jahanian37d06562009-09-03 23:18:17 +00001685 const_cast<CXXDestructorDecl*>(Dtor));
Mike Stump11289f42009-09-09 15:08:12 +00001686 uintptr_t Member =
1687 reinterpret_cast<uintptr_t>(Base->getType().getTypePtr())
Fariborz Jahanian37d06562009-09-03 23:18:17 +00001688 | CXXDestructorDecl::DRCTNONVBASE;
1689 AllToDestruct.push_back(Member);
1690 }
Mike Stump11289f42009-09-09 15:08:12 +00001691
Fariborz Jahanian37d06562009-09-03 23:18:17 +00001692 // non-static data members.
1693 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
1694 E = ClassDecl->field_end(); Field != E; ++Field) {
1695 QualType FieldType = Context.getBaseElementType((*Field)->getType());
Mike Stump11289f42009-09-09 15:08:12 +00001696
Fariborz Jahanian37d06562009-09-03 23:18:17 +00001697 if (const RecordType* RT = FieldType->getAs<RecordType>()) {
1698 // Skip over virtual bases which have trivial destructors.
1699 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl());
1700 if (FieldClassDecl->hasTrivialDestructor())
1701 continue;
Mike Stump11289f42009-09-09 15:08:12 +00001702 if (const CXXDestructorDecl *Dtor =
Fariborz Jahanian37d06562009-09-03 23:18:17 +00001703 FieldClassDecl->getDestructor(Context))
Mike Stump11289f42009-09-09 15:08:12 +00001704 MarkDeclarationReferenced(Destructor->getLocation(),
Fariborz Jahanian37d06562009-09-03 23:18:17 +00001705 const_cast<CXXDestructorDecl*>(Dtor));
1706 uintptr_t Member = reinterpret_cast<uintptr_t>(*Field);
1707 AllToDestruct.push_back(Member);
1708 }
1709 }
Mike Stump11289f42009-09-09 15:08:12 +00001710
Fariborz Jahanian37d06562009-09-03 23:18:17 +00001711 unsigned NumDestructions = AllToDestruct.size();
1712 if (NumDestructions > 0) {
1713 Destructor->setNumBaseOrMemberDestructions(NumDestructions);
Mike Stump11289f42009-09-09 15:08:12 +00001714 uintptr_t *BaseOrMemberDestructions =
Fariborz Jahanian37d06562009-09-03 23:18:17 +00001715 new (Context) uintptr_t [NumDestructions];
1716 // Insert in reverse order.
1717 for (int Idx = NumDestructions-1, i=0 ; Idx >= 0; --Idx)
1718 BaseOrMemberDestructions[i++] = AllToDestruct[Idx];
1719 Destructor->setBaseOrMemberDestructions(BaseOrMemberDestructions);
1720 }
1721}
1722
Fariborz Jahanianaee31ac2009-07-21 22:36:06 +00001723void Sema::ActOnDefaultCtorInitializers(DeclPtrTy CDtorDecl) {
Fariborz Jahanian16094c22009-07-15 22:34:08 +00001724 if (!CDtorDecl)
Fariborz Jahanian49c81792009-07-14 18:24:21 +00001725 return;
Mike Stump11289f42009-09-09 15:08:12 +00001726
Douglas Gregorc8c277a2009-08-24 11:57:43 +00001727 AdjustDeclIfTemplate(CDtorDecl);
Mike Stump11289f42009-09-09 15:08:12 +00001728
1729 if (CXXConstructorDecl *Constructor
Fariborz Jahanian16094c22009-07-15 22:34:08 +00001730 = dyn_cast<CXXConstructorDecl>(CDtorDecl.getAs<Decl>()))
Eli Friedmand7686ef2009-11-09 01:05:47 +00001731 SetBaseOrMemberInitializers(Constructor, 0, 0, false);
Fariborz Jahanian49c81792009-07-14 18:24:21 +00001732}
1733
Anders Carlsson7cbd8fb2009-03-22 01:52:17 +00001734namespace {
1735 /// PureVirtualMethodCollector - traverses a class and its superclasses
1736 /// and determines if it has any pure virtual methods.
1737 class VISIBILITY_HIDDEN PureVirtualMethodCollector {
1738 ASTContext &Context;
1739
Sebastian Redlb7d64912009-03-22 21:28:55 +00001740 public:
Anders Carlsson7cbd8fb2009-03-22 01:52:17 +00001741 typedef llvm::SmallVector<const CXXMethodDecl*, 8> MethodList;
Sebastian Redlb7d64912009-03-22 21:28:55 +00001742
1743 private:
Anders Carlsson7cbd8fb2009-03-22 01:52:17 +00001744 MethodList Methods;
Mike Stump11289f42009-09-09 15:08:12 +00001745
Anders Carlsson7cbd8fb2009-03-22 01:52:17 +00001746 void Collect(const CXXRecordDecl* RD, MethodList& Methods);
Mike Stump11289f42009-09-09 15:08:12 +00001747
Anders Carlsson7cbd8fb2009-03-22 01:52:17 +00001748 public:
Mike Stump11289f42009-09-09 15:08:12 +00001749 PureVirtualMethodCollector(ASTContext &Ctx, const CXXRecordDecl* RD)
Anders Carlsson7cbd8fb2009-03-22 01:52:17 +00001750 : Context(Ctx) {
Mike Stump11289f42009-09-09 15:08:12 +00001751
Anders Carlsson7cbd8fb2009-03-22 01:52:17 +00001752 MethodList List;
1753 Collect(RD, List);
Mike Stump11289f42009-09-09 15:08:12 +00001754
Anders Carlsson7cbd8fb2009-03-22 01:52:17 +00001755 // Copy the temporary list to methods, and make sure to ignore any
1756 // null entries.
1757 for (size_t i = 0, e = List.size(); i != e; ++i) {
1758 if (List[i])
1759 Methods.push_back(List[i]);
Mike Stump11289f42009-09-09 15:08:12 +00001760 }
Anders Carlsson7cbd8fb2009-03-22 01:52:17 +00001761 }
Mike Stump11289f42009-09-09 15:08:12 +00001762
Anders Carlsson576cc6f2009-03-22 20:18:17 +00001763 bool empty() const { return Methods.empty(); }
Mike Stump11289f42009-09-09 15:08:12 +00001764
Anders Carlsson576cc6f2009-03-22 20:18:17 +00001765 MethodList::const_iterator methods_begin() { return Methods.begin(); }
1766 MethodList::const_iterator methods_end() { return Methods.end(); }
Anders Carlsson7cbd8fb2009-03-22 01:52:17 +00001767 };
Mike Stump11289f42009-09-09 15:08:12 +00001768
1769 void PureVirtualMethodCollector::Collect(const CXXRecordDecl* RD,
Anders Carlsson7cbd8fb2009-03-22 01:52:17 +00001770 MethodList& Methods) {
1771 // First, collect the pure virtual methods for the base classes.
1772 for (CXXRecordDecl::base_class_const_iterator Base = RD->bases_begin(),
1773 BaseEnd = RD->bases_end(); Base != BaseEnd; ++Base) {
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001774 if (const RecordType *RT = Base->getType()->getAs<RecordType>()) {
Chris Lattner85e2e142009-03-29 05:01:10 +00001775 const CXXRecordDecl *BaseDecl = cast<CXXRecordDecl>(RT->getDecl());
Anders Carlsson7cbd8fb2009-03-22 01:52:17 +00001776 if (BaseDecl && BaseDecl->isAbstract())
1777 Collect(BaseDecl, Methods);
1778 }
1779 }
Mike Stump11289f42009-09-09 15:08:12 +00001780
Anders Carlsson7cbd8fb2009-03-22 01:52:17 +00001781 // Next, zero out any pure virtual methods that this class overrides.
Anders Carlsson3c012712009-05-17 00:00:05 +00001782 typedef llvm::SmallPtrSet<const CXXMethodDecl*, 4> MethodSetTy;
Mike Stump11289f42009-09-09 15:08:12 +00001783
Anders Carlsson3c012712009-05-17 00:00:05 +00001784 MethodSetTy OverriddenMethods;
1785 size_t MethodsSize = Methods.size();
1786
Mike Stump11289f42009-09-09 15:08:12 +00001787 for (RecordDecl::decl_iterator i = RD->decls_begin(), e = RD->decls_end();
Anders Carlsson3c012712009-05-17 00:00:05 +00001788 i != e; ++i) {
1789 // Traverse the record, looking for methods.
1790 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(*i)) {
Sebastian Redl86be8542009-07-07 20:29:57 +00001791 // If the method is pure virtual, add it to the methods vector.
Anders Carlsson700179432009-10-18 19:34:08 +00001792 if (MD->isPure())
Anders Carlsson3c012712009-05-17 00:00:05 +00001793 Methods.push_back(MD);
Mike Stump11289f42009-09-09 15:08:12 +00001794
Anders Carlsson700179432009-10-18 19:34:08 +00001795 // Record all the overridden methods in our set.
Anders Carlsson3c012712009-05-17 00:00:05 +00001796 for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(),
1797 E = MD->end_overridden_methods(); I != E; ++I) {
1798 // Keep track of the overridden methods.
1799 OverriddenMethods.insert(*I);
Anders Carlsson7cbd8fb2009-03-22 01:52:17 +00001800 }
1801 }
1802 }
Mike Stump11289f42009-09-09 15:08:12 +00001803
1804 // Now go through the methods and zero out all the ones we know are
Anders Carlsson3c012712009-05-17 00:00:05 +00001805 // overridden.
1806 for (size_t i = 0, e = MethodsSize; i != e; ++i) {
1807 if (OverriddenMethods.count(Methods[i]))
1808 Methods[i] = 0;
Anders Carlsson7cbd8fb2009-03-22 01:52:17 +00001809 }
Mike Stump11289f42009-09-09 15:08:12 +00001810
Anders Carlsson7cbd8fb2009-03-22 01:52:17 +00001811 }
1812}
Douglas Gregore8381c02008-11-05 04:29:56 +00001813
Anders Carlssoneabf7702009-08-27 00:13:57 +00001814
Mike Stump11289f42009-09-09 15:08:12 +00001815bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
Anders Carlssonb57738b2009-03-24 17:23:42 +00001816 unsigned DiagID, AbstractDiagSelID SelID,
1817 const CXXRecordDecl *CurrentRD) {
Anders Carlssoneabf7702009-08-27 00:13:57 +00001818 if (SelID == -1)
1819 return RequireNonAbstractType(Loc, T,
1820 PDiag(DiagID), CurrentRD);
1821 else
1822 return RequireNonAbstractType(Loc, T,
1823 PDiag(DiagID) << SelID, CurrentRD);
Mike Stump11289f42009-09-09 15:08:12 +00001824}
1825
Anders Carlssoneabf7702009-08-27 00:13:57 +00001826bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
1827 const PartialDiagnostic &PD,
1828 const CXXRecordDecl *CurrentRD) {
Anders Carlsson576cc6f2009-03-22 20:18:17 +00001829 if (!getLangOptions().CPlusPlus)
1830 return false;
Mike Stump11289f42009-09-09 15:08:12 +00001831
Anders Carlssoneb0c5322009-03-23 19:10:31 +00001832 if (const ArrayType *AT = Context.getAsArrayType(T))
Anders Carlssoneabf7702009-08-27 00:13:57 +00001833 return RequireNonAbstractType(Loc, AT->getElementType(), PD,
Anders Carlssonb57738b2009-03-24 17:23:42 +00001834 CurrentRD);
Mike Stump11289f42009-09-09 15:08:12 +00001835
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001836 if (const PointerType *PT = T->getAs<PointerType>()) {
Anders Carlsson8f0d2182009-03-24 01:46:45 +00001837 // Find the innermost pointer type.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001838 while (const PointerType *T = PT->getPointeeType()->getAs<PointerType>())
Anders Carlsson8f0d2182009-03-24 01:46:45 +00001839 PT = T;
Mike Stump11289f42009-09-09 15:08:12 +00001840
Anders Carlsson8f0d2182009-03-24 01:46:45 +00001841 if (const ArrayType *AT = Context.getAsArrayType(PT->getPointeeType()))
Anders Carlssoneabf7702009-08-27 00:13:57 +00001842 return RequireNonAbstractType(Loc, AT->getElementType(), PD, CurrentRD);
Anders Carlsson8f0d2182009-03-24 01:46:45 +00001843 }
Mike Stump11289f42009-09-09 15:08:12 +00001844
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001845 const RecordType *RT = T->getAs<RecordType>();
Anders Carlsson576cc6f2009-03-22 20:18:17 +00001846 if (!RT)
1847 return false;
Mike Stump11289f42009-09-09 15:08:12 +00001848
Anders Carlsson576cc6f2009-03-22 20:18:17 +00001849 const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(RT->getDecl());
1850 if (!RD)
1851 return false;
1852
Anders Carlssonb57738b2009-03-24 17:23:42 +00001853 if (CurrentRD && CurrentRD != RD)
1854 return false;
Mike Stump11289f42009-09-09 15:08:12 +00001855
Anders Carlsson576cc6f2009-03-22 20:18:17 +00001856 if (!RD->isAbstract())
1857 return false;
Mike Stump11289f42009-09-09 15:08:12 +00001858
Anders Carlssoneabf7702009-08-27 00:13:57 +00001859 Diag(Loc, PD) << RD->getDeclName();
Mike Stump11289f42009-09-09 15:08:12 +00001860
Anders Carlsson576cc6f2009-03-22 20:18:17 +00001861 // Check if we've already emitted the list of pure virtual functions for this
1862 // class.
1863 if (PureVirtualClassDiagSet && PureVirtualClassDiagSet->count(RD))
1864 return true;
Mike Stump11289f42009-09-09 15:08:12 +00001865
Anders Carlsson576cc6f2009-03-22 20:18:17 +00001866 PureVirtualMethodCollector Collector(Context, RD);
Mike Stump11289f42009-09-09 15:08:12 +00001867
1868 for (PureVirtualMethodCollector::MethodList::const_iterator I =
Anders Carlsson576cc6f2009-03-22 20:18:17 +00001869 Collector.methods_begin(), E = Collector.methods_end(); I != E; ++I) {
1870 const CXXMethodDecl *MD = *I;
Mike Stump11289f42009-09-09 15:08:12 +00001871
1872 Diag(MD->getLocation(), diag::note_pure_virtual_function) <<
Anders Carlsson576cc6f2009-03-22 20:18:17 +00001873 MD->getDeclName();
1874 }
1875
1876 if (!PureVirtualClassDiagSet)
1877 PureVirtualClassDiagSet.reset(new RecordDeclSetTy);
1878 PureVirtualClassDiagSet->insert(RD);
Mike Stump11289f42009-09-09 15:08:12 +00001879
Anders Carlsson576cc6f2009-03-22 20:18:17 +00001880 return true;
1881}
1882
Anders Carlssonb5a27b42009-03-24 01:19:16 +00001883namespace {
Mike Stump11289f42009-09-09 15:08:12 +00001884 class VISIBILITY_HIDDEN AbstractClassUsageDiagnoser
Anders Carlssonb5a27b42009-03-24 01:19:16 +00001885 : public DeclVisitor<AbstractClassUsageDiagnoser, bool> {
1886 Sema &SemaRef;
1887 CXXRecordDecl *AbstractClass;
Mike Stump11289f42009-09-09 15:08:12 +00001888
Anders Carlssonb57738b2009-03-24 17:23:42 +00001889 bool VisitDeclContext(const DeclContext *DC) {
Anders Carlssonb5a27b42009-03-24 01:19:16 +00001890 bool Invalid = false;
1891
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00001892 for (CXXRecordDecl::decl_iterator I = DC->decls_begin(),
1893 E = DC->decls_end(); I != E; ++I)
Anders Carlssonb5a27b42009-03-24 01:19:16 +00001894 Invalid |= Visit(*I);
Anders Carlssonb57738b2009-03-24 17:23:42 +00001895
Anders Carlssonb5a27b42009-03-24 01:19:16 +00001896 return Invalid;
1897 }
Mike Stump11289f42009-09-09 15:08:12 +00001898
Anders Carlssonb57738b2009-03-24 17:23:42 +00001899 public:
1900 AbstractClassUsageDiagnoser(Sema& SemaRef, CXXRecordDecl *ac)
1901 : SemaRef(SemaRef), AbstractClass(ac) {
1902 Visit(SemaRef.Context.getTranslationUnitDecl());
1903 }
Anders Carlssonb5a27b42009-03-24 01:19:16 +00001904
Anders Carlssonb57738b2009-03-24 17:23:42 +00001905 bool VisitFunctionDecl(const FunctionDecl *FD) {
1906 if (FD->isThisDeclarationADefinition()) {
1907 // No need to do the check if we're in a definition, because it requires
1908 // that the return/param types are complete.
Mike Stump11289f42009-09-09 15:08:12 +00001909 // because that requires
Anders Carlssonb57738b2009-03-24 17:23:42 +00001910 return VisitDeclContext(FD);
1911 }
Mike Stump11289f42009-09-09 15:08:12 +00001912
Anders Carlssonb57738b2009-03-24 17:23:42 +00001913 // Check the return type.
John McCall9dd450b2009-09-21 23:43:11 +00001914 QualType RTy = FD->getType()->getAs<FunctionType>()->getResultType();
Mike Stump11289f42009-09-09 15:08:12 +00001915 bool Invalid =
Anders Carlssonb57738b2009-03-24 17:23:42 +00001916 SemaRef.RequireNonAbstractType(FD->getLocation(), RTy,
1917 diag::err_abstract_type_in_decl,
1918 Sema::AbstractReturnType,
1919 AbstractClass);
1920
Mike Stump11289f42009-09-09 15:08:12 +00001921 for (FunctionDecl::param_const_iterator I = FD->param_begin(),
Anders Carlssonb57738b2009-03-24 17:23:42 +00001922 E = FD->param_end(); I != E; ++I) {
Anders Carlssonb5a27b42009-03-24 01:19:16 +00001923 const ParmVarDecl *VD = *I;
Mike Stump11289f42009-09-09 15:08:12 +00001924 Invalid |=
Anders Carlssonb5a27b42009-03-24 01:19:16 +00001925 SemaRef.RequireNonAbstractType(VD->getLocation(),
Mike Stump11289f42009-09-09 15:08:12 +00001926 VD->getOriginalType(),
1927 diag::err_abstract_type_in_decl,
Anders Carlssonb57738b2009-03-24 17:23:42 +00001928 Sema::AbstractParamType,
1929 AbstractClass);
Anders Carlssonb5a27b42009-03-24 01:19:16 +00001930 }
1931
1932 return Invalid;
1933 }
Mike Stump11289f42009-09-09 15:08:12 +00001934
Anders Carlssonb57738b2009-03-24 17:23:42 +00001935 bool VisitDecl(const Decl* D) {
1936 if (const DeclContext *DC = dyn_cast<DeclContext>(D))
1937 return VisitDeclContext(DC);
Mike Stump11289f42009-09-09 15:08:12 +00001938
Anders Carlssonb57738b2009-03-24 17:23:42 +00001939 return false;
1940 }
Anders Carlssonb5a27b42009-03-24 01:19:16 +00001941 };
1942}
1943
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001944void Sema::ActOnFinishCXXMemberSpecification(Scope* S, SourceLocation RLoc,
Chris Lattner83f095c2009-03-28 19:18:32 +00001945 DeclPtrTy TagDecl,
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001946 SourceLocation LBrac,
1947 SourceLocation RBrac) {
Douglas Gregor71a57182009-06-22 23:20:33 +00001948 if (!TagDecl)
1949 return;
Mike Stump11289f42009-09-09 15:08:12 +00001950
Douglas Gregorc9f9b862009-05-11 19:58:34 +00001951 AdjustDeclIfTemplate(TagDecl);
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001952 ActOnFields(S, RLoc, TagDecl,
Chris Lattner83f095c2009-03-28 19:18:32 +00001953 (DeclPtrTy*)FieldCollector->getCurFields(),
Daniel Dunbar15619c72008-10-03 02:03:53 +00001954 FieldCollector->getCurNumFields(), LBrac, RBrac, 0);
Douglas Gregor463421d2009-03-03 04:44:36 +00001955
Chris Lattner83f095c2009-03-28 19:18:32 +00001956 CXXRecordDecl *RD = cast<CXXRecordDecl>(TagDecl.getAs<Decl>());
Anders Carlsson7cbd8fb2009-03-22 01:52:17 +00001957 if (!RD->isAbstract()) {
1958 // Collect all the pure virtual methods and see if this is an abstract
1959 // class after all.
1960 PureVirtualMethodCollector Collector(Context, RD);
Mike Stump11289f42009-09-09 15:08:12 +00001961 if (!Collector.empty())
Anders Carlsson7cbd8fb2009-03-22 01:52:17 +00001962 RD->setAbstract(true);
1963 }
Mike Stump11289f42009-09-09 15:08:12 +00001964
1965 if (RD->isAbstract())
Anders Carlssonb57738b2009-03-24 17:23:42 +00001966 AbstractClassUsageDiagnoser(*this, RD);
Mike Stump11289f42009-09-09 15:08:12 +00001967
Douglas Gregor3c74d412009-10-14 20:14:33 +00001968 if (!RD->isDependentType() && !RD->isInvalidDecl())
Anders Carlsson7cbd8fb2009-03-22 01:52:17 +00001969 AddImplicitlyDeclaredMembersToClass(RD);
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001970}
1971
Douglas Gregor05379422008-11-03 17:51:48 +00001972/// AddImplicitlyDeclaredMembersToClass - Adds any implicitly-declared
1973/// special functions, such as the default constructor, copy
1974/// constructor, or destructor, to the given C++ class (C++
1975/// [special]p1). This routine can only be executed just before the
1976/// definition of the class is complete.
1977void Sema::AddImplicitlyDeclaredMembersToClass(CXXRecordDecl *ClassDecl) {
Mike Stump11289f42009-09-09 15:08:12 +00001978 CanQualType ClassType
Douglas Gregor2211d342009-08-05 05:36:45 +00001979 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Douglas Gregor77324f32008-11-17 14:58:09 +00001980
Sebastian Redl5068f77ac2009-05-27 22:11:52 +00001981 // FIXME: Implicit declarations have exception specifications, which are
1982 // the union of the specifications of the implicitly called functions.
1983
Douglas Gregor05379422008-11-03 17:51:48 +00001984 if (!ClassDecl->hasUserDeclaredConstructor()) {
1985 // C++ [class.ctor]p5:
1986 // A default constructor for a class X is a constructor of class X
1987 // that can be called without an argument. If there is no
1988 // user-declared constructor for class X, a default constructor is
1989 // implicitly declared. An implicitly-declared default constructor
1990 // is an inline public member of its class.
Mike Stump11289f42009-09-09 15:08:12 +00001991 DeclarationName Name
Douglas Gregor77324f32008-11-17 14:58:09 +00001992 = Context.DeclarationNames.getCXXConstructorName(ClassType);
Mike Stump11289f42009-09-09 15:08:12 +00001993 CXXConstructorDecl *DefaultCon =
Douglas Gregor05379422008-11-03 17:51:48 +00001994 CXXConstructorDecl::Create(Context, ClassDecl,
Douglas Gregor77324f32008-11-17 14:58:09 +00001995 ClassDecl->getLocation(), Name,
Douglas Gregor05379422008-11-03 17:51:48 +00001996 Context.getFunctionType(Context.VoidTy,
1997 0, 0, false, 0),
Argyrios Kyrtzidis60ed5602009-08-19 01:27:57 +00001998 /*DInfo=*/0,
Douglas Gregor05379422008-11-03 17:51:48 +00001999 /*isExplicit=*/false,
2000 /*isInline=*/true,
2001 /*isImplicitlyDeclared=*/true);
2002 DefaultCon->setAccess(AS_public);
Douglas Gregorf4d33272009-01-07 19:46:03 +00002003 DefaultCon->setImplicit();
Douglas Gregor8a273912009-07-22 18:25:24 +00002004 DefaultCon->setTrivial(ClassDecl->hasTrivialConstructor());
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00002005 ClassDecl->addDecl(DefaultCon);
Douglas Gregor05379422008-11-03 17:51:48 +00002006 }
2007
2008 if (!ClassDecl->hasUserDeclaredCopyConstructor()) {
2009 // C++ [class.copy]p4:
2010 // If the class definition does not explicitly declare a copy
2011 // constructor, one is declared implicitly.
2012
2013 // C++ [class.copy]p5:
2014 // The implicitly-declared copy constructor for a class X will
2015 // have the form
2016 //
2017 // X::X(const X&)
2018 //
2019 // if
2020 bool HasConstCopyConstructor = true;
2021
2022 // -- each direct or virtual base class B of X has a copy
2023 // constructor whose first parameter is of type const B& or
2024 // const volatile B&, and
2025 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin();
2026 HasConstCopyConstructor && Base != ClassDecl->bases_end(); ++Base) {
2027 const CXXRecordDecl *BaseClassDecl
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002028 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Mike Stump11289f42009-09-09 15:08:12 +00002029 HasConstCopyConstructor
Douglas Gregor05379422008-11-03 17:51:48 +00002030 = BaseClassDecl->hasConstCopyConstructor(Context);
2031 }
2032
2033 // -- for all the nonstatic data members of X that are of a
2034 // class type M (or array thereof), each such class type
2035 // has a copy constructor whose first parameter is of type
2036 // const M& or const volatile M&.
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00002037 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin();
2038 HasConstCopyConstructor && Field != ClassDecl->field_end();
Douglas Gregorbcced4e2009-04-09 21:40:53 +00002039 ++Field) {
Douglas Gregor05379422008-11-03 17:51:48 +00002040 QualType FieldType = (*Field)->getType();
2041 if (const ArrayType *Array = Context.getAsArrayType(FieldType))
2042 FieldType = Array->getElementType();
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002043 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Mike Stump11289f42009-09-09 15:08:12 +00002044 const CXXRecordDecl *FieldClassDecl
Douglas Gregor05379422008-11-03 17:51:48 +00002045 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Mike Stump11289f42009-09-09 15:08:12 +00002046 HasConstCopyConstructor
Douglas Gregor05379422008-11-03 17:51:48 +00002047 = FieldClassDecl->hasConstCopyConstructor(Context);
2048 }
2049 }
2050
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002051 // Otherwise, the implicitly declared copy constructor will have
2052 // the form
Douglas Gregor05379422008-11-03 17:51:48 +00002053 //
2054 // X::X(X&)
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002055 QualType ArgType = ClassType;
Douglas Gregor05379422008-11-03 17:51:48 +00002056 if (HasConstCopyConstructor)
2057 ArgType = ArgType.withConst();
Sebastian Redl0f8b23f2009-03-16 23:22:08 +00002058 ArgType = Context.getLValueReferenceType(ArgType);
Douglas Gregor05379422008-11-03 17:51:48 +00002059
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002060 // An implicitly-declared copy constructor is an inline public
2061 // member of its class.
Mike Stump11289f42009-09-09 15:08:12 +00002062 DeclarationName Name
Douglas Gregor77324f32008-11-17 14:58:09 +00002063 = Context.DeclarationNames.getCXXConstructorName(ClassType);
Douglas Gregor05379422008-11-03 17:51:48 +00002064 CXXConstructorDecl *CopyConstructor
2065 = CXXConstructorDecl::Create(Context, ClassDecl,
Douglas Gregor77324f32008-11-17 14:58:09 +00002066 ClassDecl->getLocation(), Name,
Douglas Gregor05379422008-11-03 17:51:48 +00002067 Context.getFunctionType(Context.VoidTy,
2068 &ArgType, 1,
2069 false, 0),
Argyrios Kyrtzidis60ed5602009-08-19 01:27:57 +00002070 /*DInfo=*/0,
Douglas Gregor05379422008-11-03 17:51:48 +00002071 /*isExplicit=*/false,
2072 /*isInline=*/true,
2073 /*isImplicitlyDeclared=*/true);
2074 CopyConstructor->setAccess(AS_public);
Douglas Gregorf4d33272009-01-07 19:46:03 +00002075 CopyConstructor->setImplicit();
Douglas Gregor8a273912009-07-22 18:25:24 +00002076 CopyConstructor->setTrivial(ClassDecl->hasTrivialCopyConstructor());
Douglas Gregor05379422008-11-03 17:51:48 +00002077
2078 // Add the parameter to the constructor.
2079 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyConstructor,
2080 ClassDecl->getLocation(),
2081 /*IdentifierInfo=*/0,
Argyrios Kyrtzidis60ed5602009-08-19 01:27:57 +00002082 ArgType, /*DInfo=*/0,
2083 VarDecl::None, 0);
Ted Kremenek4ba36fc2009-01-14 00:42:25 +00002084 CopyConstructor->setParams(Context, &FromParam, 1);
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00002085 ClassDecl->addDecl(CopyConstructor);
Douglas Gregor05379422008-11-03 17:51:48 +00002086 }
2087
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002088 if (!ClassDecl->hasUserDeclaredCopyAssignment()) {
2089 // Note: The following rules are largely analoguous to the copy
2090 // constructor rules. Note that virtual bases are not taken into account
2091 // for determining the argument type of the operator. Note also that
2092 // operators taking an object instead of a reference are allowed.
2093 //
2094 // C++ [class.copy]p10:
2095 // If the class definition does not explicitly declare a copy
2096 // assignment operator, one is declared implicitly.
2097 // The implicitly-defined copy assignment operator for a class X
2098 // will have the form
2099 //
2100 // X& X::operator=(const X&)
2101 //
2102 // if
2103 bool HasConstCopyAssignment = true;
2104
2105 // -- each direct base class B of X has a copy assignment operator
2106 // whose parameter is of type const B&, const volatile B& or B,
2107 // and
2108 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin();
2109 HasConstCopyAssignment && Base != ClassDecl->bases_end(); ++Base) {
Sebastian Redl1054fae2009-10-25 17:03:50 +00002110 assert(!Base->getType()->isDependentType() &&
2111 "Cannot generate implicit members for class with dependent bases.");
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002112 const CXXRecordDecl *BaseClassDecl
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002113 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Fariborz Jahanianbbd5e8c2009-08-12 23:34:46 +00002114 const CXXMethodDecl *MD = 0;
Mike Stump11289f42009-09-09 15:08:12 +00002115 HasConstCopyAssignment = BaseClassDecl->hasConstCopyAssignment(Context,
Fariborz Jahanianbbd5e8c2009-08-12 23:34:46 +00002116 MD);
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002117 }
2118
2119 // -- for all the nonstatic data members of X that are of a class
2120 // type M (or array thereof), each such class type has a copy
2121 // assignment operator whose parameter is of type const M&,
2122 // const volatile M& or M.
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00002123 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin();
2124 HasConstCopyAssignment && Field != ClassDecl->field_end();
Douglas Gregorbcced4e2009-04-09 21:40:53 +00002125 ++Field) {
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002126 QualType FieldType = (*Field)->getType();
2127 if (const ArrayType *Array = Context.getAsArrayType(FieldType))
2128 FieldType = Array->getElementType();
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002129 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002130 const CXXRecordDecl *FieldClassDecl
2131 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Fariborz Jahanianbbd5e8c2009-08-12 23:34:46 +00002132 const CXXMethodDecl *MD = 0;
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002133 HasConstCopyAssignment
Fariborz Jahanianbbd5e8c2009-08-12 23:34:46 +00002134 = FieldClassDecl->hasConstCopyAssignment(Context, MD);
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002135 }
2136 }
2137
2138 // Otherwise, the implicitly declared copy assignment operator will
2139 // have the form
2140 //
2141 // X& X::operator=(X&)
2142 QualType ArgType = ClassType;
Sebastian Redl0f8b23f2009-03-16 23:22:08 +00002143 QualType RetType = Context.getLValueReferenceType(ArgType);
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002144 if (HasConstCopyAssignment)
2145 ArgType = ArgType.withConst();
Sebastian Redl0f8b23f2009-03-16 23:22:08 +00002146 ArgType = Context.getLValueReferenceType(ArgType);
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002147
2148 // An implicitly-declared copy assignment operator is an inline public
2149 // member of its class.
2150 DeclarationName Name =
2151 Context.DeclarationNames.getCXXOperatorName(OO_Equal);
2152 CXXMethodDecl *CopyAssignment =
2153 CXXMethodDecl::Create(Context, ClassDecl, ClassDecl->getLocation(), Name,
2154 Context.getFunctionType(RetType, &ArgType, 1,
2155 false, 0),
Argyrios Kyrtzidis60ed5602009-08-19 01:27:57 +00002156 /*DInfo=*/0, /*isStatic=*/false, /*isInline=*/true);
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002157 CopyAssignment->setAccess(AS_public);
Douglas Gregorf4d33272009-01-07 19:46:03 +00002158 CopyAssignment->setImplicit();
Douglas Gregor8a273912009-07-22 18:25:24 +00002159 CopyAssignment->setTrivial(ClassDecl->hasTrivialCopyAssignment());
Fariborz Jahaniande7d4c22009-08-12 21:14:35 +00002160 CopyAssignment->setCopyAssignment(true);
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002161
2162 // Add the parameter to the operator.
2163 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyAssignment,
2164 ClassDecl->getLocation(),
2165 /*IdentifierInfo=*/0,
Argyrios Kyrtzidis60ed5602009-08-19 01:27:57 +00002166 ArgType, /*DInfo=*/0,
2167 VarDecl::None, 0);
Ted Kremenek4ba36fc2009-01-14 00:42:25 +00002168 CopyAssignment->setParams(Context, &FromParam, 1);
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002169
2170 // Don't call addedAssignmentOperator. There is no way to distinguish an
2171 // implicit from an explicit assignment operator.
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00002172 ClassDecl->addDecl(CopyAssignment);
Sebastian Redlbaad4e72009-01-05 20:52:13 +00002173 }
2174
Douglas Gregor1349b452008-12-15 21:24:18 +00002175 if (!ClassDecl->hasUserDeclaredDestructor()) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00002176 // C++ [class.dtor]p2:
2177 // If a class has no user-declared destructor, a destructor is
2178 // declared implicitly. An implicitly-declared destructor is an
2179 // inline public member of its class.
Mike Stump11289f42009-09-09 15:08:12 +00002180 DeclarationName Name
Douglas Gregor77324f32008-11-17 14:58:09 +00002181 = Context.DeclarationNames.getCXXDestructorName(ClassType);
Mike Stump11289f42009-09-09 15:08:12 +00002182 CXXDestructorDecl *Destructor
Douglas Gregor831c93f2008-11-05 20:51:48 +00002183 = CXXDestructorDecl::Create(Context, ClassDecl,
Douglas Gregor77324f32008-11-17 14:58:09 +00002184 ClassDecl->getLocation(), Name,
Douglas Gregor831c93f2008-11-05 20:51:48 +00002185 Context.getFunctionType(Context.VoidTy,
2186 0, 0, false, 0),
2187 /*isInline=*/true,
2188 /*isImplicitlyDeclared=*/true);
2189 Destructor->setAccess(AS_public);
Douglas Gregorf4d33272009-01-07 19:46:03 +00002190 Destructor->setImplicit();
Douglas Gregor8a273912009-07-22 18:25:24 +00002191 Destructor->setTrivial(ClassDecl->hasTrivialDestructor());
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00002192 ClassDecl->addDecl(Destructor);
Douglas Gregor831c93f2008-11-05 20:51:48 +00002193 }
Douglas Gregor05379422008-11-03 17:51:48 +00002194}
2195
Douglas Gregore44a2ad2009-05-27 23:11:45 +00002196void Sema::ActOnReenterTemplateScope(Scope *S, DeclPtrTy TemplateD) {
Douglas Gregore61ef622009-09-10 00:12:48 +00002197 Decl *D = TemplateD.getAs<Decl>();
2198 if (!D)
2199 return;
2200
2201 TemplateParameterList *Params = 0;
2202 if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D))
2203 Params = Template->getTemplateParameters();
2204 else if (ClassTemplatePartialSpecializationDecl *PartialSpec
2205 = dyn_cast<ClassTemplatePartialSpecializationDecl>(D))
2206 Params = PartialSpec->getTemplateParameters();
2207 else
Douglas Gregore44a2ad2009-05-27 23:11:45 +00002208 return;
2209
Douglas Gregore44a2ad2009-05-27 23:11:45 +00002210 for (TemplateParameterList::iterator Param = Params->begin(),
2211 ParamEnd = Params->end();
2212 Param != ParamEnd; ++Param) {
2213 NamedDecl *Named = cast<NamedDecl>(*Param);
2214 if (Named->getDeclName()) {
2215 S->AddDecl(DeclPtrTy::make(Named));
2216 IdResolver.AddDecl(Named);
2217 }
2218 }
2219}
2220
Douglas Gregor4d87df52008-12-16 21:30:33 +00002221/// ActOnStartDelayedCXXMethodDeclaration - We have completed
2222/// parsing a top-level (non-nested) C++ class, and we are now
2223/// parsing those parts of the given Method declaration that could
2224/// not be parsed earlier (C++ [class.mem]p2), such as default
2225/// arguments. This action should enter the scope of the given
2226/// Method declaration as if we had just parsed the qualified method
2227/// name. However, it should not bring the parameters into scope;
2228/// that will be performed by ActOnDelayedCXXMethodParameter.
Chris Lattner83f095c2009-03-28 19:18:32 +00002229void Sema::ActOnStartDelayedCXXMethodDeclaration(Scope *S, DeclPtrTy MethodD) {
Douglas Gregor71a57182009-06-22 23:20:33 +00002230 if (!MethodD)
2231 return;
Mike Stump11289f42009-09-09 15:08:12 +00002232
Douglas Gregorc8c277a2009-08-24 11:57:43 +00002233 AdjustDeclIfTemplate(MethodD);
Mike Stump11289f42009-09-09 15:08:12 +00002234
Douglas Gregor4d87df52008-12-16 21:30:33 +00002235 CXXScopeSpec SS;
Chris Lattner83f095c2009-03-28 19:18:32 +00002236 FunctionDecl *Method = cast<FunctionDecl>(MethodD.getAs<Decl>());
Mike Stump11289f42009-09-09 15:08:12 +00002237 QualType ClassTy
Douglas Gregorf21eb492009-03-26 23:50:42 +00002238 = Context.getTypeDeclType(cast<RecordDecl>(Method->getDeclContext()));
2239 SS.setScopeRep(
2240 NestedNameSpecifier::Create(Context, 0, false, ClassTy.getTypePtr()));
Douglas Gregor4d87df52008-12-16 21:30:33 +00002241 ActOnCXXEnterDeclaratorScope(S, SS);
2242}
2243
2244/// ActOnDelayedCXXMethodParameter - We've already started a delayed
2245/// C++ method declaration. We're (re-)introducing the given
2246/// function parameter into scope for use in parsing later parts of
2247/// the method declaration. For example, we could see an
2248/// ActOnParamDefaultArgument event for this parameter.
Chris Lattner83f095c2009-03-28 19:18:32 +00002249void Sema::ActOnDelayedCXXMethodParameter(Scope *S, DeclPtrTy ParamD) {
Douglas Gregor71a57182009-06-22 23:20:33 +00002250 if (!ParamD)
2251 return;
Mike Stump11289f42009-09-09 15:08:12 +00002252
Chris Lattner83f095c2009-03-28 19:18:32 +00002253 ParmVarDecl *Param = cast<ParmVarDecl>(ParamD.getAs<Decl>());
Douglas Gregor58354032008-12-24 00:01:03 +00002254
2255 // If this parameter has an unparsed default argument, clear it out
2256 // to make way for the parsed default argument.
2257 if (Param->hasUnparsedDefaultArg())
2258 Param->setDefaultArg(0);
2259
Chris Lattner83f095c2009-03-28 19:18:32 +00002260 S->AddDecl(DeclPtrTy::make(Param));
Douglas Gregor4d87df52008-12-16 21:30:33 +00002261 if (Param->getDeclName())
2262 IdResolver.AddDecl(Param);
2263}
2264
2265/// ActOnFinishDelayedCXXMethodDeclaration - We have finished
2266/// processing the delayed method declaration for Method. The method
2267/// declaration is now considered finished. There may be a separate
2268/// ActOnStartOfFunctionDef action later (not necessarily
2269/// immediately!) for this method, if it was also defined inside the
2270/// class body.
Chris Lattner83f095c2009-03-28 19:18:32 +00002271void Sema::ActOnFinishDelayedCXXMethodDeclaration(Scope *S, DeclPtrTy MethodD) {
Douglas Gregor71a57182009-06-22 23:20:33 +00002272 if (!MethodD)
2273 return;
Mike Stump11289f42009-09-09 15:08:12 +00002274
Douglas Gregorc8c277a2009-08-24 11:57:43 +00002275 AdjustDeclIfTemplate(MethodD);
Mike Stump11289f42009-09-09 15:08:12 +00002276
Chris Lattner83f095c2009-03-28 19:18:32 +00002277 FunctionDecl *Method = cast<FunctionDecl>(MethodD.getAs<Decl>());
Douglas Gregor4d87df52008-12-16 21:30:33 +00002278 CXXScopeSpec SS;
Mike Stump11289f42009-09-09 15:08:12 +00002279 QualType ClassTy
Douglas Gregorf21eb492009-03-26 23:50:42 +00002280 = Context.getTypeDeclType(cast<RecordDecl>(Method->getDeclContext()));
2281 SS.setScopeRep(
2282 NestedNameSpecifier::Create(Context, 0, false, ClassTy.getTypePtr()));
Douglas Gregor4d87df52008-12-16 21:30:33 +00002283 ActOnCXXExitDeclaratorScope(S, SS);
2284
2285 // Now that we have our default arguments, check the constructor
2286 // again. It could produce additional diagnostics or affect whether
2287 // the class has implicitly-declared destructors, among other
2288 // things.
Chris Lattnerb41df4f2009-04-25 08:35:12 +00002289 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Method))
2290 CheckConstructor(Constructor);
Douglas Gregor4d87df52008-12-16 21:30:33 +00002291
2292 // Check the default arguments, which we may have added.
2293 if (!Method->isInvalidDecl())
2294 CheckCXXDefaultArguments(Method);
2295}
2296
Douglas Gregor831c93f2008-11-05 20:51:48 +00002297/// CheckConstructorDeclarator - Called by ActOnDeclarator to check
Douglas Gregor4d87df52008-12-16 21:30:33 +00002298/// the well-formedness of the constructor declarator @p D with type @p
Douglas Gregor831c93f2008-11-05 20:51:48 +00002299/// R. If there are any errors in the declarator, this routine will
Chris Lattner38378bf2009-04-25 08:28:21 +00002300/// emit diagnostics and set the invalid bit to true. In any case, the type
2301/// will be updated to reflect a well-formed type for the constructor and
2302/// returned.
2303QualType Sema::CheckConstructorDeclarator(Declarator &D, QualType R,
2304 FunctionDecl::StorageClass &SC) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00002305 bool isVirtual = D.getDeclSpec().isVirtualSpecified();
Douglas Gregor831c93f2008-11-05 20:51:48 +00002306
2307 // C++ [class.ctor]p3:
2308 // A constructor shall not be virtual (10.3) or static (9.4). A
2309 // constructor can be invoked for a const, volatile or const
2310 // volatile object. A constructor shall not be declared const,
2311 // volatile, or const volatile (9.3.2).
2312 if (isVirtual) {
Chris Lattner38378bf2009-04-25 08:28:21 +00002313 if (!D.isInvalidType())
2314 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
2315 << "virtual" << SourceRange(D.getDeclSpec().getVirtualSpecLoc())
2316 << SourceRange(D.getIdentifierLoc());
2317 D.setInvalidType();
Douglas Gregor831c93f2008-11-05 20:51:48 +00002318 }
2319 if (SC == FunctionDecl::Static) {
Chris Lattner38378bf2009-04-25 08:28:21 +00002320 if (!D.isInvalidType())
2321 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
2322 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
2323 << SourceRange(D.getIdentifierLoc());
2324 D.setInvalidType();
Douglas Gregor831c93f2008-11-05 20:51:48 +00002325 SC = FunctionDecl::None;
2326 }
Mike Stump11289f42009-09-09 15:08:12 +00002327
Chris Lattner38378bf2009-04-25 08:28:21 +00002328 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
2329 if (FTI.TypeQuals != 0) {
John McCall8ccfcb52009-09-24 19:53:00 +00002330 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattner3b054132008-11-19 05:08:23 +00002331 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
2332 << "const" << SourceRange(D.getIdentifierLoc());
John McCall8ccfcb52009-09-24 19:53:00 +00002333 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattner3b054132008-11-19 05:08:23 +00002334 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
2335 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall8ccfcb52009-09-24 19:53:00 +00002336 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattner3b054132008-11-19 05:08:23 +00002337 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
2338 << "restrict" << SourceRange(D.getIdentifierLoc());
Douglas Gregor831c93f2008-11-05 20:51:48 +00002339 }
Mike Stump11289f42009-09-09 15:08:12 +00002340
Douglas Gregor831c93f2008-11-05 20:51:48 +00002341 // Rebuild the function type "R" without any type qualifiers (in
2342 // case any of the errors above fired) and with "void" as the
2343 // return type, since constructors don't have return types. We
2344 // *always* have to do this, because GetTypeForDeclarator will
2345 // put in a result type of "int" when none was specified.
John McCall9dd450b2009-09-21 23:43:11 +00002346 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>();
Chris Lattner38378bf2009-04-25 08:28:21 +00002347 return Context.getFunctionType(Context.VoidTy, Proto->arg_type_begin(),
2348 Proto->getNumArgs(),
2349 Proto->isVariadic(), 0);
Douglas Gregor831c93f2008-11-05 20:51:48 +00002350}
2351
Douglas Gregor4d87df52008-12-16 21:30:33 +00002352/// CheckConstructor - Checks a fully-formed constructor for
2353/// well-formedness, issuing any diagnostics required. Returns true if
2354/// the constructor declarator is invalid.
Chris Lattnerb41df4f2009-04-25 08:35:12 +00002355void Sema::CheckConstructor(CXXConstructorDecl *Constructor) {
Mike Stump11289f42009-09-09 15:08:12 +00002356 CXXRecordDecl *ClassDecl
Douglas Gregorf4d17c42009-03-27 04:38:56 +00002357 = dyn_cast<CXXRecordDecl>(Constructor->getDeclContext());
2358 if (!ClassDecl)
Chris Lattnerb41df4f2009-04-25 08:35:12 +00002359 return Constructor->setInvalidDecl();
Douglas Gregor4d87df52008-12-16 21:30:33 +00002360
2361 // C++ [class.copy]p3:
2362 // A declaration of a constructor for a class X is ill-formed if
2363 // its first parameter is of type (optionally cv-qualified) X and
2364 // either there are no other parameters or else all other
2365 // parameters have default arguments.
Douglas Gregorf4d17c42009-03-27 04:38:56 +00002366 if (!Constructor->isInvalidDecl() &&
Mike Stump11289f42009-09-09 15:08:12 +00002367 ((Constructor->getNumParams() == 1) ||
2368 (Constructor->getNumParams() > 1 &&
Douglas Gregorffe14e32009-11-14 01:20:54 +00002369 Constructor->getParamDecl(1)->hasDefaultArg())) &&
2370 Constructor->getTemplateSpecializationKind()
2371 != TSK_ImplicitInstantiation) {
Douglas Gregor4d87df52008-12-16 21:30:33 +00002372 QualType ParamType = Constructor->getParamDecl(0)->getType();
2373 QualType ClassTy = Context.getTagDeclType(ClassDecl);
2374 if (Context.getCanonicalType(ParamType).getUnqualifiedType() == ClassTy) {
Douglas Gregor170512f2009-04-01 23:51:29 +00002375 SourceLocation ParamLoc = Constructor->getParamDecl(0)->getLocation();
2376 Diag(ParamLoc, diag::err_constructor_byvalue_arg)
Douglas Gregor578dae52009-04-02 01:08:08 +00002377 << CodeModificationHint::CreateInsertion(ParamLoc, " const &");
Douglas Gregorffe14e32009-11-14 01:20:54 +00002378
2379 // FIXME: Rather that making the constructor invalid, we should endeavor
2380 // to fix the type.
Chris Lattnerb41df4f2009-04-25 08:35:12 +00002381 Constructor->setInvalidDecl();
Douglas Gregor4d87df52008-12-16 21:30:33 +00002382 }
2383 }
Mike Stump11289f42009-09-09 15:08:12 +00002384
Douglas Gregor4d87df52008-12-16 21:30:33 +00002385 // Notify the class that we've added a constructor.
2386 ClassDecl->addedConstructor(Context, Constructor);
Douglas Gregor4d87df52008-12-16 21:30:33 +00002387}
2388
Mike Stump11289f42009-09-09 15:08:12 +00002389static inline bool
Anders Carlsson5e965472009-04-30 23:18:11 +00002390FTIHasSingleVoidArgument(DeclaratorChunk::FunctionTypeInfo &FTI) {
2391 return (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
2392 FTI.ArgInfo[0].Param &&
2393 FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType()->isVoidType());
2394}
2395
Douglas Gregor831c93f2008-11-05 20:51:48 +00002396/// CheckDestructorDeclarator - Called by ActOnDeclarator to check
2397/// the well-formednes of the destructor declarator @p D with type @p
2398/// R. If there are any errors in the declarator, this routine will
Chris Lattner38378bf2009-04-25 08:28:21 +00002399/// emit diagnostics and set the declarator to invalid. Even if this happens,
2400/// will be updated to reflect a well-formed type for the destructor and
2401/// returned.
2402QualType Sema::CheckDestructorDeclarator(Declarator &D,
2403 FunctionDecl::StorageClass& SC) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00002404 // C++ [class.dtor]p1:
2405 // [...] A typedef-name that names a class is a class-name
2406 // (7.1.3); however, a typedef-name that names a class shall not
2407 // be used as the identifier in the declarator for a destructor
2408 // declaration.
Douglas Gregor7861a802009-11-03 01:35:08 +00002409 QualType DeclaratorType = GetTypeFromParser(D.getName().DestructorName);
Chris Lattner38378bf2009-04-25 08:28:21 +00002410 if (isa<TypedefType>(DeclaratorType)) {
2411 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
Douglas Gregor9817f4a2009-02-09 15:09:02 +00002412 << DeclaratorType;
Chris Lattner38378bf2009-04-25 08:28:21 +00002413 D.setInvalidType();
Douglas Gregor831c93f2008-11-05 20:51:48 +00002414 }
2415
2416 // C++ [class.dtor]p2:
2417 // A destructor is used to destroy objects of its class type. A
2418 // destructor takes no parameters, and no return type can be
2419 // specified for it (not even void). The address of a destructor
2420 // shall not be taken. A destructor shall not be static. A
2421 // destructor can be invoked for a const, volatile or const
2422 // volatile object. A destructor shall not be declared const,
2423 // volatile or const volatile (9.3.2).
2424 if (SC == FunctionDecl::Static) {
Chris Lattner38378bf2009-04-25 08:28:21 +00002425 if (!D.isInvalidType())
2426 Diag(D.getIdentifierLoc(), diag::err_destructor_cannot_be)
2427 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
2428 << SourceRange(D.getIdentifierLoc());
Douglas Gregor831c93f2008-11-05 20:51:48 +00002429 SC = FunctionDecl::None;
Chris Lattner38378bf2009-04-25 08:28:21 +00002430 D.setInvalidType();
Douglas Gregor831c93f2008-11-05 20:51:48 +00002431 }
Chris Lattner38378bf2009-04-25 08:28:21 +00002432 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00002433 // Destructors don't have return types, but the parser will
2434 // happily parse something like:
2435 //
2436 // class X {
2437 // float ~X();
2438 // };
2439 //
2440 // The return type will be eliminated later.
Chris Lattner3b054132008-11-19 05:08:23 +00002441 Diag(D.getIdentifierLoc(), diag::err_destructor_return_type)
2442 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
2443 << SourceRange(D.getIdentifierLoc());
Douglas Gregor831c93f2008-11-05 20:51:48 +00002444 }
Mike Stump11289f42009-09-09 15:08:12 +00002445
Chris Lattner38378bf2009-04-25 08:28:21 +00002446 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
2447 if (FTI.TypeQuals != 0 && !D.isInvalidType()) {
John McCall8ccfcb52009-09-24 19:53:00 +00002448 if (FTI.TypeQuals & Qualifiers::Const)
Chris Lattner3b054132008-11-19 05:08:23 +00002449 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
2450 << "const" << SourceRange(D.getIdentifierLoc());
John McCall8ccfcb52009-09-24 19:53:00 +00002451 if (FTI.TypeQuals & Qualifiers::Volatile)
Chris Lattner3b054132008-11-19 05:08:23 +00002452 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
2453 << "volatile" << SourceRange(D.getIdentifierLoc());
John McCall8ccfcb52009-09-24 19:53:00 +00002454 if (FTI.TypeQuals & Qualifiers::Restrict)
Chris Lattner3b054132008-11-19 05:08:23 +00002455 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
2456 << "restrict" << SourceRange(D.getIdentifierLoc());
Chris Lattner38378bf2009-04-25 08:28:21 +00002457 D.setInvalidType();
Douglas Gregor831c93f2008-11-05 20:51:48 +00002458 }
2459
2460 // Make sure we don't have any parameters.
Anders Carlsson5e965472009-04-30 23:18:11 +00002461 if (FTI.NumArgs > 0 && !FTIHasSingleVoidArgument(FTI)) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00002462 Diag(D.getIdentifierLoc(), diag::err_destructor_with_params);
2463
2464 // Delete the parameters.
Chris Lattner38378bf2009-04-25 08:28:21 +00002465 FTI.freeArgs();
2466 D.setInvalidType();
Douglas Gregor831c93f2008-11-05 20:51:48 +00002467 }
2468
Mike Stump11289f42009-09-09 15:08:12 +00002469 // Make sure the destructor isn't variadic.
Chris Lattner38378bf2009-04-25 08:28:21 +00002470 if (FTI.isVariadic) {
Douglas Gregor831c93f2008-11-05 20:51:48 +00002471 Diag(D.getIdentifierLoc(), diag::err_destructor_variadic);
Chris Lattner38378bf2009-04-25 08:28:21 +00002472 D.setInvalidType();
2473 }
Douglas Gregor831c93f2008-11-05 20:51:48 +00002474
2475 // Rebuild the function type "R" without any type qualifiers or
2476 // parameters (in case any of the errors above fired) and with
2477 // "void" as the return type, since destructors don't have return
2478 // types. We *always* have to do this, because GetTypeForDeclarator
2479 // will put in a result type of "int" when none was specified.
Chris Lattner38378bf2009-04-25 08:28:21 +00002480 return Context.getFunctionType(Context.VoidTy, 0, 0, false, 0);
Douglas Gregor831c93f2008-11-05 20:51:48 +00002481}
2482
Douglas Gregordbc5daf2008-11-07 20:08:42 +00002483/// CheckConversionDeclarator - Called by ActOnDeclarator to check the
2484/// well-formednes of the conversion function declarator @p D with
2485/// type @p R. If there are any errors in the declarator, this routine
2486/// will emit diagnostics and return true. Otherwise, it will return
2487/// false. Either way, the type @p R will be updated to reflect a
2488/// well-formed type for the conversion operator.
Chris Lattnerb41df4f2009-04-25 08:35:12 +00002489void Sema::CheckConversionDeclarator(Declarator &D, QualType &R,
Douglas Gregordbc5daf2008-11-07 20:08:42 +00002490 FunctionDecl::StorageClass& SC) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00002491 // C++ [class.conv.fct]p1:
2492 // Neither parameter types nor return type can be specified. The
Eli Friedman44b83ee2009-08-05 19:21:58 +00002493 // type of a conversion function (8.3.5) is "function taking no
Mike Stump11289f42009-09-09 15:08:12 +00002494 // parameter returning conversion-type-id."
Douglas Gregordbc5daf2008-11-07 20:08:42 +00002495 if (SC == FunctionDecl::Static) {
Chris Lattnerb41df4f2009-04-25 08:35:12 +00002496 if (!D.isInvalidType())
2497 Diag(D.getIdentifierLoc(), diag::err_conv_function_not_member)
2498 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
2499 << SourceRange(D.getIdentifierLoc());
2500 D.setInvalidType();
Douglas Gregordbc5daf2008-11-07 20:08:42 +00002501 SC = FunctionDecl::None;
2502 }
Chris Lattnerb41df4f2009-04-25 08:35:12 +00002503 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00002504 // Conversion functions don't have return types, but the parser will
2505 // happily parse something like:
2506 //
2507 // class X {
2508 // float operator bool();
2509 // };
2510 //
2511 // The return type will be changed later anyway.
Chris Lattner3b054132008-11-19 05:08:23 +00002512 Diag(D.getIdentifierLoc(), diag::err_conv_function_return_type)
2513 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
2514 << SourceRange(D.getIdentifierLoc());
Douglas Gregordbc5daf2008-11-07 20:08:42 +00002515 }
2516
2517 // Make sure we don't have any parameters.
John McCall9dd450b2009-09-21 23:43:11 +00002518 if (R->getAs<FunctionProtoType>()->getNumArgs() > 0) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00002519 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_params);
2520
2521 // Delete the parameters.
Chris Lattner5742c1e2009-01-20 21:06:38 +00002522 D.getTypeObject(0).Fun.freeArgs();
Chris Lattnerb41df4f2009-04-25 08:35:12 +00002523 D.setInvalidType();
Douglas Gregordbc5daf2008-11-07 20:08:42 +00002524 }
2525
Mike Stump11289f42009-09-09 15:08:12 +00002526 // Make sure the conversion function isn't variadic.
John McCall9dd450b2009-09-21 23:43:11 +00002527 if (R->getAs<FunctionProtoType>()->isVariadic() && !D.isInvalidType()) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00002528 Diag(D.getIdentifierLoc(), diag::err_conv_function_variadic);
Chris Lattnerb41df4f2009-04-25 08:35:12 +00002529 D.setInvalidType();
2530 }
Douglas Gregordbc5daf2008-11-07 20:08:42 +00002531
2532 // C++ [class.conv.fct]p4:
2533 // The conversion-type-id shall not represent a function type nor
2534 // an array type.
Douglas Gregor7861a802009-11-03 01:35:08 +00002535 QualType ConvType = GetTypeFromParser(D.getName().ConversionFunctionId);
Douglas Gregordbc5daf2008-11-07 20:08:42 +00002536 if (ConvType->isArrayType()) {
2537 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_array);
2538 ConvType = Context.getPointerType(ConvType);
Chris Lattnerb41df4f2009-04-25 08:35:12 +00002539 D.setInvalidType();
Douglas Gregordbc5daf2008-11-07 20:08:42 +00002540 } else if (ConvType->isFunctionType()) {
2541 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_function);
2542 ConvType = Context.getPointerType(ConvType);
Chris Lattnerb41df4f2009-04-25 08:35:12 +00002543 D.setInvalidType();
Douglas Gregordbc5daf2008-11-07 20:08:42 +00002544 }
2545
2546 // Rebuild the function type "R" without any parameters (in case any
2547 // of the errors above fired) and with the conversion type as the
Mike Stump11289f42009-09-09 15:08:12 +00002548 // return type.
2549 R = Context.getFunctionType(ConvType, 0, 0, false,
John McCall9dd450b2009-09-21 23:43:11 +00002550 R->getAs<FunctionProtoType>()->getTypeQuals());
Douglas Gregordbc5daf2008-11-07 20:08:42 +00002551
Douglas Gregor5fb53972009-01-14 15:45:31 +00002552 // C++0x explicit conversion operators.
2553 if (D.getDeclSpec().isExplicitSpecified() && !getLangOptions().CPlusPlus0x)
Mike Stump11289f42009-09-09 15:08:12 +00002554 Diag(D.getDeclSpec().getExplicitSpecLoc(),
Douglas Gregor5fb53972009-01-14 15:45:31 +00002555 diag::warn_explicit_conversion_functions)
2556 << SourceRange(D.getDeclSpec().getExplicitSpecLoc());
Douglas Gregordbc5daf2008-11-07 20:08:42 +00002557}
2558
Douglas Gregordbc5daf2008-11-07 20:08:42 +00002559/// ActOnConversionDeclarator - Called by ActOnDeclarator to complete
2560/// the declaration of the given C++ conversion function. This routine
2561/// is responsible for recording the conversion function in the C++
2562/// class, if possible.
Chris Lattner83f095c2009-03-28 19:18:32 +00002563Sema::DeclPtrTy Sema::ActOnConversionDeclarator(CXXConversionDecl *Conversion) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +00002564 assert(Conversion && "Expected to receive a conversion function declaration");
2565
Douglas Gregor4287b372008-12-12 08:25:50 +00002566 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Conversion->getDeclContext());
Douglas Gregordbc5daf2008-11-07 20:08:42 +00002567
2568 // Make sure we aren't redeclaring the conversion function.
2569 QualType ConvType = Context.getCanonicalType(Conversion->getConversionType());
Douglas Gregordbc5daf2008-11-07 20:08:42 +00002570
2571 // C++ [class.conv.fct]p1:
2572 // [...] A conversion function is never used to convert a
2573 // (possibly cv-qualified) object to the (possibly cv-qualified)
2574 // same object type (or a reference to it), to a (possibly
2575 // cv-qualified) base class of that type (or a reference to it),
2576 // or to (possibly cv-qualified) void.
Mike Stump87c57ac2009-05-16 07:39:55 +00002577 // FIXME: Suppress this warning if the conversion function ends up being a
2578 // virtual function that overrides a virtual function in a base class.
Mike Stump11289f42009-09-09 15:08:12 +00002579 QualType ClassType
Douglas Gregordbc5daf2008-11-07 20:08:42 +00002580 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002581 if (const ReferenceType *ConvTypeRef = ConvType->getAs<ReferenceType>())
Douglas Gregordbc5daf2008-11-07 20:08:42 +00002582 ConvType = ConvTypeRef->getPointeeType();
2583 if (ConvType->isRecordType()) {
2584 ConvType = Context.getCanonicalType(ConvType).getUnqualifiedType();
2585 if (ConvType == ClassType)
Chris Lattnerf7e3f6d2008-11-20 06:13:02 +00002586 Diag(Conversion->getLocation(), diag::warn_conv_to_self_not_used)
Chris Lattner1e5665e2008-11-24 06:25:27 +00002587 << ClassType;
Douglas Gregordbc5daf2008-11-07 20:08:42 +00002588 else if (IsDerivedFrom(ClassType, ConvType))
Chris Lattnerf7e3f6d2008-11-20 06:13:02 +00002589 Diag(Conversion->getLocation(), diag::warn_conv_to_base_not_used)
Chris Lattner1e5665e2008-11-24 06:25:27 +00002590 << ClassType << ConvType;
Douglas Gregordbc5daf2008-11-07 20:08:42 +00002591 } else if (ConvType->isVoidType()) {
Chris Lattnerf7e3f6d2008-11-20 06:13:02 +00002592 Diag(Conversion->getLocation(), diag::warn_conv_to_void_not_used)
Chris Lattner1e5665e2008-11-24 06:25:27 +00002593 << ClassType << ConvType;
Douglas Gregordbc5daf2008-11-07 20:08:42 +00002594 }
2595
Douglas Gregor1dc98262008-12-26 15:00:45 +00002596 if (Conversion->getPreviousDeclaration()) {
Douglas Gregor05155d82009-08-21 23:19:43 +00002597 const NamedDecl *ExpectedPrevDecl = Conversion->getPreviousDeclaration();
Mike Stump11289f42009-09-09 15:08:12 +00002598 if (FunctionTemplateDecl *ConversionTemplate
Douglas Gregor05155d82009-08-21 23:19:43 +00002599 = Conversion->getDescribedFunctionTemplate())
2600 ExpectedPrevDecl = ConversionTemplate->getPreviousDeclaration();
Douglas Gregor1dc98262008-12-26 15:00:45 +00002601 OverloadedFunctionDecl *Conversions = ClassDecl->getConversionFunctions();
Mike Stump11289f42009-09-09 15:08:12 +00002602 for (OverloadedFunctionDecl::function_iterator
Douglas Gregor1dc98262008-12-26 15:00:45 +00002603 Conv = Conversions->function_begin(),
2604 ConvEnd = Conversions->function_end();
2605 Conv != ConvEnd; ++Conv) {
Douglas Gregor05155d82009-08-21 23:19:43 +00002606 if (*Conv == ExpectedPrevDecl) {
Douglas Gregor1dc98262008-12-26 15:00:45 +00002607 *Conv = Conversion;
Chris Lattner83f095c2009-03-28 19:18:32 +00002608 return DeclPtrTy::make(Conversion);
Douglas Gregor1dc98262008-12-26 15:00:45 +00002609 }
2610 }
2611 assert(Conversion->isInvalidDecl() && "Conversion should not get here.");
Mike Stump11289f42009-09-09 15:08:12 +00002612 } else if (FunctionTemplateDecl *ConversionTemplate
Douglas Gregor05155d82009-08-21 23:19:43 +00002613 = Conversion->getDescribedFunctionTemplate())
Fariborz Jahanianedca0bc2009-09-12 19:02:34 +00002614 ClassDecl->addConversionFunction(ConversionTemplate);
Douglas Gregor05155d82009-08-21 23:19:43 +00002615 else if (!Conversion->getPrimaryTemplate()) // ignore specializations
Fariborz Jahanianedca0bc2009-09-12 19:02:34 +00002616 ClassDecl->addConversionFunction(Conversion);
Douglas Gregordbc5daf2008-11-07 20:08:42 +00002617
Chris Lattner83f095c2009-03-28 19:18:32 +00002618 return DeclPtrTy::make(Conversion);
Douglas Gregordbc5daf2008-11-07 20:08:42 +00002619}
2620
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00002621//===----------------------------------------------------------------------===//
2622// Namespace Handling
2623//===----------------------------------------------------------------------===//
2624
2625/// ActOnStartNamespaceDef - This is called at the start of a namespace
2626/// definition.
Chris Lattner83f095c2009-03-28 19:18:32 +00002627Sema::DeclPtrTy Sema::ActOnStartNamespaceDef(Scope *NamespcScope,
2628 SourceLocation IdentLoc,
2629 IdentifierInfo *II,
2630 SourceLocation LBrace) {
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00002631 NamespaceDecl *Namespc =
2632 NamespaceDecl::Create(Context, CurContext, IdentLoc, II);
2633 Namespc->setLBracLoc(LBrace);
2634
2635 Scope *DeclRegionScope = NamespcScope->getParent();
2636
2637 if (II) {
2638 // C++ [namespace.def]p2:
2639 // The identifier in an original-namespace-definition shall not have been
2640 // previously defined in the declarative region in which the
2641 // original-namespace-definition appears. The identifier in an
2642 // original-namespace-definition is the name of the namespace. Subsequently
2643 // in that declarative region, it is treated as an original-namespace-name.
2644
John McCall9f3059a2009-10-09 21:13:30 +00002645 NamedDecl *PrevDecl
2646 = LookupSingleName(DeclRegionScope, II, LookupOrdinaryName, true);
Mike Stump11289f42009-09-09 15:08:12 +00002647
Douglas Gregor91f84212008-12-11 16:49:14 +00002648 if (NamespaceDecl *OrigNS = dyn_cast_or_null<NamespaceDecl>(PrevDecl)) {
2649 // This is an extended namespace definition.
2650 // Attach this namespace decl to the chain of extended namespace
2651 // definitions.
2652 OrigNS->setNextNamespace(Namespc);
2653 Namespc->setOriginalNamespace(OrigNS->getOriginalNamespace());
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00002654
Mike Stump11289f42009-09-09 15:08:12 +00002655 // Remove the previous declaration from the scope.
Chris Lattner83f095c2009-03-28 19:18:32 +00002656 if (DeclRegionScope->isDeclScope(DeclPtrTy::make(OrigNS))) {
Douglas Gregor7a4fad12008-12-11 20:41:00 +00002657 IdResolver.RemoveDecl(OrigNS);
Chris Lattner83f095c2009-03-28 19:18:32 +00002658 DeclRegionScope->RemoveDecl(DeclPtrTy::make(OrigNS));
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00002659 }
Douglas Gregor91f84212008-12-11 16:49:14 +00002660 } else if (PrevDecl) {
2661 // This is an invalid name redefinition.
2662 Diag(Namespc->getLocation(), diag::err_redefinition_different_kind)
2663 << Namespc->getDeclName();
2664 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
2665 Namespc->setInvalidDecl();
2666 // Continue on to push Namespc as current DeclContext and return it.
Douglas Gregor87f54062009-09-15 22:30:29 +00002667 } else if (II->isStr("std") &&
2668 CurContext->getLookupContext()->isTranslationUnit()) {
2669 // This is the first "real" definition of the namespace "std", so update
2670 // our cache of the "std" namespace to point at this definition.
2671 if (StdNamespace) {
2672 // We had already defined a dummy namespace "std". Link this new
2673 // namespace definition to the dummy namespace "std".
2674 StdNamespace->setNextNamespace(Namespc);
2675 StdNamespace->setLocation(IdentLoc);
2676 Namespc->setOriginalNamespace(StdNamespace->getOriginalNamespace());
2677 }
2678
2679 // Make our StdNamespace cache point at the first real definition of the
2680 // "std" namespace.
2681 StdNamespace = Namespc;
Mike Stump11289f42009-09-09 15:08:12 +00002682 }
Douglas Gregor91f84212008-12-11 16:49:14 +00002683
2684 PushOnScopeChains(Namespc, DeclRegionScope);
2685 } else {
John McCall4fa53422009-10-01 00:25:31 +00002686 // Anonymous namespaces.
2687
2688 // C++ [namespace.unnamed]p1. An unnamed-namespace-definition
2689 // behaves as if it were replaced by
2690 // namespace unique { /* empty body */ }
2691 // using namespace unique;
2692 // namespace unique { namespace-body }
2693 // where all occurrences of 'unique' in a translation unit are
2694 // replaced by the same identifier and this identifier differs
2695 // from all other identifiers in the entire program.
2696
2697 // We just create the namespace with an empty name and then add an
2698 // implicit using declaration, just like the standard suggests.
2699 //
2700 // CodeGen enforces the "universally unique" aspect by giving all
2701 // declarations semantically contained within an anonymous
2702 // namespace internal linkage.
2703
2704 assert(Namespc->isAnonymousNamespace());
2705 CurContext->addDecl(Namespc);
2706
2707 UsingDirectiveDecl* UD
2708 = UsingDirectiveDecl::Create(Context, CurContext,
2709 /* 'using' */ LBrace,
2710 /* 'namespace' */ SourceLocation(),
2711 /* qualifier */ SourceRange(),
2712 /* NNS */ NULL,
2713 /* identifier */ SourceLocation(),
2714 Namespc,
2715 /* Ancestor */ CurContext);
2716 UD->setImplicit();
2717 CurContext->addDecl(UD);
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00002718 }
2719
2720 // Although we could have an invalid decl (i.e. the namespace name is a
2721 // redefinition), push it as current DeclContext and try to continue parsing.
Mike Stump87c57ac2009-05-16 07:39:55 +00002722 // FIXME: We should be able to push Namespc here, so that the each DeclContext
2723 // for the namespace has the declarations that showed up in that particular
2724 // namespace definition.
Douglas Gregor91f84212008-12-11 16:49:14 +00002725 PushDeclContext(NamespcScope, Namespc);
Chris Lattner83f095c2009-03-28 19:18:32 +00002726 return DeclPtrTy::make(Namespc);
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00002727}
2728
2729/// ActOnFinishNamespaceDef - This callback is called after a namespace is
2730/// exited. Decl is the DeclTy returned by ActOnStartNamespaceDef.
Chris Lattner83f095c2009-03-28 19:18:32 +00002731void Sema::ActOnFinishNamespaceDef(DeclPtrTy D, SourceLocation RBrace) {
2732 Decl *Dcl = D.getAs<Decl>();
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00002733 NamespaceDecl *Namespc = dyn_cast_or_null<NamespaceDecl>(Dcl);
2734 assert(Namespc && "Invalid parameter, expected NamespaceDecl");
2735 Namespc->setRBracLoc(RBrace);
2736 PopDeclContext();
2737}
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00002738
Chris Lattner83f095c2009-03-28 19:18:32 +00002739Sema::DeclPtrTy Sema::ActOnUsingDirective(Scope *S,
2740 SourceLocation UsingLoc,
2741 SourceLocation NamespcLoc,
2742 const CXXScopeSpec &SS,
2743 SourceLocation IdentLoc,
2744 IdentifierInfo *NamespcName,
2745 AttributeList *AttrList) {
Douglas Gregord7c4d982008-12-30 03:27:21 +00002746 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
2747 assert(NamespcName && "Invalid NamespcName.");
2748 assert(IdentLoc.isValid() && "Invalid NamespceName location.");
Douglas Gregor889ceb72009-02-03 19:21:40 +00002749 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Douglas Gregord7c4d982008-12-30 03:27:21 +00002750
Douglas Gregor889ceb72009-02-03 19:21:40 +00002751 UsingDirectiveDecl *UDir = 0;
Douglas Gregord7c4d982008-12-30 03:27:21 +00002752
Douglas Gregor34074322009-01-14 22:20:51 +00002753 // Lookup namespace name.
John McCall9f3059a2009-10-09 21:13:30 +00002754 LookupResult R;
2755 LookupParsedName(R, S, &SS, NamespcName, LookupNamespaceName, false);
Douglas Gregor889ceb72009-02-03 19:21:40 +00002756 if (R.isAmbiguous()) {
2757 DiagnoseAmbiguousLookup(R, NamespcName, IdentLoc);
Chris Lattner83f095c2009-03-28 19:18:32 +00002758 return DeclPtrTy();
Douglas Gregor889ceb72009-02-03 19:21:40 +00002759 }
John McCall9f3059a2009-10-09 21:13:30 +00002760 if (!R.empty()) {
2761 NamedDecl *NS = R.getFoundDecl();
Douglas Gregorbf3f3222009-11-14 03:27:21 +00002762 // FIXME: Namespace aliases!
Douglas Gregord7c4d982008-12-30 03:27:21 +00002763 assert(isa<NamespaceDecl>(NS) && "expected namespace decl");
Douglas Gregor889ceb72009-02-03 19:21:40 +00002764 // C++ [namespace.udir]p1:
2765 // A using-directive specifies that the names in the nominated
2766 // namespace can be used in the scope in which the
2767 // using-directive appears after the using-directive. During
2768 // unqualified name lookup (3.4.1), the names appear as if they
2769 // were declared in the nearest enclosing namespace which
2770 // contains both the using-directive and the nominated
Eli Friedman44b83ee2009-08-05 19:21:58 +00002771 // namespace. [Note: in this context, "contains" means "contains
2772 // directly or indirectly". ]
Douglas Gregor889ceb72009-02-03 19:21:40 +00002773
2774 // Find enclosing context containing both using-directive and
2775 // nominated namespace.
2776 DeclContext *CommonAncestor = cast<DeclContext>(NS);
2777 while (CommonAncestor && !CommonAncestor->Encloses(CurContext))
2778 CommonAncestor = CommonAncestor->getParent();
2779
Mike Stump11289f42009-09-09 15:08:12 +00002780 UDir = UsingDirectiveDecl::Create(Context,
Douglas Gregor3bc6e4c2009-05-30 06:31:56 +00002781 CurContext, UsingLoc,
Mike Stump11289f42009-09-09 15:08:12 +00002782 NamespcLoc,
Douglas Gregor3bc6e4c2009-05-30 06:31:56 +00002783 SS.getRange(),
2784 (NestedNameSpecifier *)SS.getScopeRep(),
2785 IdentLoc,
Douglas Gregor889ceb72009-02-03 19:21:40 +00002786 cast<NamespaceDecl>(NS),
2787 CommonAncestor);
2788 PushUsingDirective(S, UDir);
Douglas Gregord7c4d982008-12-30 03:27:21 +00002789 } else {
Chris Lattner8dca2e92009-01-06 07:24:29 +00002790 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
Douglas Gregord7c4d982008-12-30 03:27:21 +00002791 }
2792
Douglas Gregor889ceb72009-02-03 19:21:40 +00002793 // FIXME: We ignore attributes for now.
Douglas Gregord7c4d982008-12-30 03:27:21 +00002794 delete AttrList;
Chris Lattner83f095c2009-03-28 19:18:32 +00002795 return DeclPtrTy::make(UDir);
Douglas Gregor889ceb72009-02-03 19:21:40 +00002796}
2797
2798void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) {
2799 // If scope has associated entity, then using directive is at namespace
2800 // or translation unit scope. We add UsingDirectiveDecls, into
2801 // it's lookup structure.
2802 if (DeclContext *Ctx = static_cast<DeclContext*>(S->getEntity()))
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00002803 Ctx->addDecl(UDir);
Douglas Gregor889ceb72009-02-03 19:21:40 +00002804 else
2805 // Otherwise it is block-sope. using-directives will affect lookup
2806 // only to the end of scope.
Chris Lattner83f095c2009-03-28 19:18:32 +00002807 S->PushUsingDirective(DeclPtrTy::make(UDir));
Douglas Gregord7c4d982008-12-30 03:27:21 +00002808}
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00002809
Douglas Gregorfec52632009-06-20 00:51:54 +00002810
2811Sema::DeclPtrTy Sema::ActOnUsingDeclaration(Scope *S,
Anders Carlsson7b194b72009-08-29 19:54:19 +00002812 AccessSpecifier AS,
Anders Carlsson59140b32009-08-28 03:16:11 +00002813 SourceLocation UsingLoc,
2814 const CXXScopeSpec &SS,
Douglas Gregor220f4272009-11-04 16:30:06 +00002815 UnqualifiedId &Name,
Anders Carlsson59140b32009-08-28 03:16:11 +00002816 AttributeList *AttrList,
2817 bool IsTypeName) {
Douglas Gregorfec52632009-06-20 00:51:54 +00002818 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Mike Stump11289f42009-09-09 15:08:12 +00002819
Douglas Gregor220f4272009-11-04 16:30:06 +00002820 switch (Name.getKind()) {
2821 case UnqualifiedId::IK_Identifier:
2822 case UnqualifiedId::IK_OperatorFunctionId:
2823 case UnqualifiedId::IK_ConversionFunctionId:
2824 break;
2825
2826 case UnqualifiedId::IK_ConstructorName:
2827 Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_constructor)
2828 << SS.getRange();
2829 return DeclPtrTy();
2830
2831 case UnqualifiedId::IK_DestructorName:
2832 Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_destructor)
2833 << SS.getRange();
2834 return DeclPtrTy();
2835
2836 case UnqualifiedId::IK_TemplateId:
2837 Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_template_id)
2838 << SourceRange(Name.TemplateId->LAngleLoc, Name.TemplateId->RAngleLoc);
2839 return DeclPtrTy();
2840 }
2841
2842 DeclarationName TargetName = GetNameFromUnqualifiedId(Name);
2843 NamedDecl *UD = BuildUsingDeclaration(UsingLoc, SS,
2844 Name.getSourceRange().getBegin(),
2845 TargetName, AttrList, IsTypeName);
Anders Carlsson7b194b72009-08-29 19:54:19 +00002846 if (UD) {
Anders Carlsson696a3f12009-08-28 05:40:36 +00002847 PushOnScopeChains(UD, S);
Anders Carlsson7b194b72009-08-29 19:54:19 +00002848 UD->setAccess(AS);
2849 }
Mike Stump11289f42009-09-09 15:08:12 +00002850
Anders Carlsson696a3f12009-08-28 05:40:36 +00002851 return DeclPtrTy::make(UD);
2852}
2853
2854NamedDecl *Sema::BuildUsingDeclaration(SourceLocation UsingLoc,
2855 const CXXScopeSpec &SS,
2856 SourceLocation IdentLoc,
2857 DeclarationName Name,
2858 AttributeList *AttrList,
2859 bool IsTypeName) {
2860 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
2861 assert(IdentLoc.isValid() && "Invalid TargetName location.");
Eli Friedman561154d2009-08-27 05:09:36 +00002862
Anders Carlssonf038fc22009-08-28 05:49:21 +00002863 // FIXME: We ignore attributes for now.
2864 delete AttrList;
Mike Stump11289f42009-09-09 15:08:12 +00002865
Anders Carlsson59140b32009-08-28 03:16:11 +00002866 if (SS.isEmpty()) {
2867 Diag(IdentLoc, diag::err_using_requires_qualname);
Anders Carlsson696a3f12009-08-28 05:40:36 +00002868 return 0;
Anders Carlsson59140b32009-08-28 03:16:11 +00002869 }
Mike Stump11289f42009-09-09 15:08:12 +00002870
2871 NestedNameSpecifier *NNS =
Anders Carlsson59140b32009-08-28 03:16:11 +00002872 static_cast<NestedNameSpecifier *>(SS.getScopeRep());
2873
John McCall84c16cf2009-11-12 03:15:40 +00002874 DeclContext *LookupContext = computeDeclContext(SS);
2875 if (!LookupContext) {
Anders Carlssonf038fc22009-08-28 05:49:21 +00002876 return UnresolvedUsingDecl::Create(Context, CurContext, UsingLoc,
2877 SS.getRange(), NNS,
2878 IdentLoc, Name, IsTypeName);
2879 }
Mike Stump11289f42009-09-09 15:08:12 +00002880
Anders Carlsson59140b32009-08-28 03:16:11 +00002881 if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(CurContext)) {
2882 // C++0x N2914 [namespace.udecl]p3:
2883 // A using-declaration used as a member-declaration shall refer to a member
2884 // of a base class of the class being defined, shall refer to a member of an
2885 // anonymous union that is a member of a base class of the class being
Mike Stump11289f42009-09-09 15:08:12 +00002886 // defined, or shall refer to an enumerator for an enumeration type that is
Anders Carlsson59140b32009-08-28 03:16:11 +00002887 // a member of a base class of the class being defined.
John McCall84c16cf2009-11-12 03:15:40 +00002888
2889 CXXRecordDecl *LookupRD = dyn_cast<CXXRecordDecl>(LookupContext);
2890 if (!LookupRD || !RD->isDerivedFrom(LookupRD)) {
Anders Carlsson59140b32009-08-28 03:16:11 +00002891 Diag(SS.getRange().getBegin(),
2892 diag::err_using_decl_nested_name_specifier_is_not_a_base_class)
2893 << NNS << RD->getDeclName();
Anders Carlsson696a3f12009-08-28 05:40:36 +00002894 return 0;
Anders Carlsson59140b32009-08-28 03:16:11 +00002895 }
Anders Carlsson59140b32009-08-28 03:16:11 +00002896 } else {
2897 // C++0x N2914 [namespace.udecl]p8:
2898 // A using-declaration for a class member shall be a member-declaration.
John McCall84c16cf2009-11-12 03:15:40 +00002899 if (isa<CXXRecordDecl>(LookupContext)) {
Anders Carlsson5a9c5ac2009-08-28 03:35:18 +00002900 Diag(IdentLoc, diag::err_using_decl_can_not_refer_to_class_member)
Anders Carlsson59140b32009-08-28 03:16:11 +00002901 << SS.getRange();
Anders Carlsson696a3f12009-08-28 05:40:36 +00002902 return 0;
Anders Carlsson59140b32009-08-28 03:16:11 +00002903 }
Anders Carlsson59140b32009-08-28 03:16:11 +00002904 }
2905
Douglas Gregorfec52632009-06-20 00:51:54 +00002906 // Lookup target name.
John McCall9f3059a2009-10-09 21:13:30 +00002907 LookupResult R;
2908 LookupQualifiedName(R, LookupContext, Name, LookupOrdinaryName);
Mike Stump11289f42009-09-09 15:08:12 +00002909
John McCall9f3059a2009-10-09 21:13:30 +00002910 if (R.empty()) {
Douglas Gregore40876a2009-10-13 21:16:44 +00002911 Diag(IdentLoc, diag::err_no_member)
2912 << Name << LookupContext << SS.getRange();
Anders Carlsson696a3f12009-08-28 05:40:36 +00002913 return 0;
Douglas Gregorfec52632009-06-20 00:51:54 +00002914 }
2915
John McCall9f3059a2009-10-09 21:13:30 +00002916 // FIXME: handle ambiguity?
2917 NamedDecl *ND = R.getAsSingleDecl(Context);
Mike Stump11289f42009-09-09 15:08:12 +00002918
Anders Carlsson59140b32009-08-28 03:16:11 +00002919 if (IsTypeName && !isa<TypeDecl>(ND)) {
2920 Diag(IdentLoc, diag::err_using_typename_non_type);
Anders Carlsson696a3f12009-08-28 05:40:36 +00002921 return 0;
Anders Carlsson59140b32009-08-28 03:16:11 +00002922 }
2923
Anders Carlsson5a9c5ac2009-08-28 03:35:18 +00002924 // C++0x N2914 [namespace.udecl]p6:
2925 // A using-declaration shall not name a namespace.
2926 if (isa<NamespaceDecl>(ND)) {
2927 Diag(IdentLoc, diag::err_using_decl_can_not_refer_to_namespace)
2928 << SS.getRange();
Anders Carlsson696a3f12009-08-28 05:40:36 +00002929 return 0;
Anders Carlsson5a9c5ac2009-08-28 03:35:18 +00002930 }
Mike Stump11289f42009-09-09 15:08:12 +00002931
Anders Carlsson696a3f12009-08-28 05:40:36 +00002932 return UsingDecl::Create(Context, CurContext, IdentLoc, SS.getRange(),
2933 ND->getLocation(), UsingLoc, ND, NNS, IsTypeName);
Douglas Gregorfec52632009-06-20 00:51:54 +00002934}
2935
Anders Carlssonbb1e4722009-03-28 23:53:49 +00002936/// getNamespaceDecl - Returns the namespace a decl represents. If the decl
2937/// is a namespace alias, returns the namespace it points to.
2938static inline NamespaceDecl *getNamespaceDecl(NamedDecl *D) {
2939 if (NamespaceAliasDecl *AD = dyn_cast_or_null<NamespaceAliasDecl>(D))
2940 return AD->getNamespace();
2941 return dyn_cast_or_null<NamespaceDecl>(D);
2942}
2943
Mike Stump11289f42009-09-09 15:08:12 +00002944Sema::DeclPtrTy Sema::ActOnNamespaceAliasDef(Scope *S,
Anders Carlsson47952ae2009-03-28 22:53:22 +00002945 SourceLocation NamespaceLoc,
Chris Lattner83f095c2009-03-28 19:18:32 +00002946 SourceLocation AliasLoc,
2947 IdentifierInfo *Alias,
2948 const CXXScopeSpec &SS,
Anders Carlsson47952ae2009-03-28 22:53:22 +00002949 SourceLocation IdentLoc,
2950 IdentifierInfo *Ident) {
Mike Stump11289f42009-09-09 15:08:12 +00002951
Anders Carlssonbb1e4722009-03-28 23:53:49 +00002952 // Lookup the namespace name.
John McCall9f3059a2009-10-09 21:13:30 +00002953 LookupResult R;
2954 LookupParsedName(R, S, &SS, Ident, LookupNamespaceName, false);
Anders Carlssonbb1e4722009-03-28 23:53:49 +00002955
Anders Carlssondca83c42009-03-28 06:23:46 +00002956 // Check if we have a previous declaration with the same name.
John McCall9f3059a2009-10-09 21:13:30 +00002957 if (NamedDecl *PrevDecl
2958 = LookupSingleName(S, Alias, LookupOrdinaryName, true)) {
Anders Carlssonbb1e4722009-03-28 23:53:49 +00002959 if (NamespaceAliasDecl *AD = dyn_cast<NamespaceAliasDecl>(PrevDecl)) {
Mike Stump11289f42009-09-09 15:08:12 +00002960 // We already have an alias with the same name that points to the same
Anders Carlssonbb1e4722009-03-28 23:53:49 +00002961 // namespace, so don't create a new one.
John McCall9f3059a2009-10-09 21:13:30 +00002962 if (!R.isAmbiguous() && !R.empty() &&
2963 AD->getNamespace() == getNamespaceDecl(R.getFoundDecl()))
Anders Carlssonbb1e4722009-03-28 23:53:49 +00002964 return DeclPtrTy();
2965 }
Mike Stump11289f42009-09-09 15:08:12 +00002966
Anders Carlssondca83c42009-03-28 06:23:46 +00002967 unsigned DiagID = isa<NamespaceDecl>(PrevDecl) ? diag::err_redefinition :
2968 diag::err_redefinition_different_kind;
2969 Diag(AliasLoc, DiagID) << Alias;
2970 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Chris Lattner83f095c2009-03-28 19:18:32 +00002971 return DeclPtrTy();
Anders Carlssondca83c42009-03-28 06:23:46 +00002972 }
2973
Anders Carlssonac2c9652009-03-28 06:42:02 +00002974 if (R.isAmbiguous()) {
Anders Carlsson47952ae2009-03-28 22:53:22 +00002975 DiagnoseAmbiguousLookup(R, Ident, IdentLoc);
Chris Lattner83f095c2009-03-28 19:18:32 +00002976 return DeclPtrTy();
Anders Carlssonac2c9652009-03-28 06:42:02 +00002977 }
Mike Stump11289f42009-09-09 15:08:12 +00002978
John McCall9f3059a2009-10-09 21:13:30 +00002979 if (R.empty()) {
Anders Carlssonac2c9652009-03-28 06:42:02 +00002980 Diag(NamespaceLoc, diag::err_expected_namespace_name) << SS.getRange();
Chris Lattner83f095c2009-03-28 19:18:32 +00002981 return DeclPtrTy();
Anders Carlssonac2c9652009-03-28 06:42:02 +00002982 }
Mike Stump11289f42009-09-09 15:08:12 +00002983
Fariborz Jahanian423a81f2009-06-19 19:55:27 +00002984 NamespaceAliasDecl *AliasDecl =
Mike Stump11289f42009-09-09 15:08:12 +00002985 NamespaceAliasDecl::Create(Context, CurContext, NamespaceLoc, AliasLoc,
2986 Alias, SS.getRange(),
Douglas Gregor18231932009-05-30 06:48:27 +00002987 (NestedNameSpecifier *)SS.getScopeRep(),
John McCall9f3059a2009-10-09 21:13:30 +00002988 IdentLoc, R.getFoundDecl());
Mike Stump11289f42009-09-09 15:08:12 +00002989
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00002990 CurContext->addDecl(AliasDecl);
Anders Carlssonff25fdf2009-03-28 22:58:02 +00002991 return DeclPtrTy::make(AliasDecl);
Anders Carlsson9205d552009-03-28 05:27:17 +00002992}
2993
Fariborz Jahanian423a81f2009-06-19 19:55:27 +00002994void Sema::DefineImplicitDefaultConstructor(SourceLocation CurrentLocation,
2995 CXXConstructorDecl *Constructor) {
Fariborz Jahanian18eb69a2009-06-22 20:37:23 +00002996 assert((Constructor->isImplicit() && Constructor->isDefaultConstructor() &&
2997 !Constructor->isUsed()) &&
2998 "DefineImplicitDefaultConstructor - call it for implicit default ctor");
Mike Stump11289f42009-09-09 15:08:12 +00002999
Eli Friedman9cf6b592009-11-09 19:20:36 +00003000 CXXRecordDecl *ClassDecl
3001 = cast<CXXRecordDecl>(Constructor->getDeclContext());
3002 assert(ClassDecl && "DefineImplicitDefaultConstructor - invalid constructor");
Eli Friedmand7686ef2009-11-09 01:05:47 +00003003
Eli Friedman9cf6b592009-11-09 19:20:36 +00003004 if (SetBaseOrMemberInitializers(Constructor, 0, 0, true)) {
3005 Diag(CurrentLocation, diag::note_ctor_synthesized_at)
3006 << Context.getTagDeclType(ClassDecl);
3007 Constructor->setInvalidDecl();
3008 } else {
3009 Constructor->setUsed();
3010 }
Eli Friedmand7686ef2009-11-09 01:05:47 +00003011 return;
Fariborz Jahanian423a81f2009-06-19 19:55:27 +00003012}
3013
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00003014void Sema::DefineImplicitDestructor(SourceLocation CurrentLocation,
Douglas Gregord94105a2009-09-04 19:04:08 +00003015 CXXDestructorDecl *Destructor) {
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00003016 assert((Destructor->isImplicit() && !Destructor->isUsed()) &&
3017 "DefineImplicitDestructor - call it for implicit default dtor");
Mike Stump11289f42009-09-09 15:08:12 +00003018
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00003019 CXXRecordDecl *ClassDecl
3020 = cast<CXXRecordDecl>(Destructor->getDeclContext());
3021 assert(ClassDecl && "DefineImplicitDestructor - invalid destructor");
3022 // C++ [class.dtor] p5
Mike Stump11289f42009-09-09 15:08:12 +00003023 // Before the implicitly-declared default destructor for a class is
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00003024 // implicitly defined, all the implicitly-declared default destructors
3025 // for its base class and its non-static data members shall have been
3026 // implicitly defined.
Fariborz Jahanian5f12b532009-06-30 16:36:53 +00003027 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
3028 E = ClassDecl->bases_end(); Base != E; ++Base) {
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00003029 CXXRecordDecl *BaseClassDecl
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003030 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00003031 if (!BaseClassDecl->hasTrivialDestructor()) {
Mike Stump11289f42009-09-09 15:08:12 +00003032 if (CXXDestructorDecl *BaseDtor =
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00003033 const_cast<CXXDestructorDecl*>(BaseClassDecl->getDestructor(Context)))
3034 MarkDeclarationReferenced(CurrentLocation, BaseDtor);
3035 else
Mike Stump11289f42009-09-09 15:08:12 +00003036 assert(false &&
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00003037 "DefineImplicitDestructor - missing dtor in a base class");
3038 }
3039 }
Mike Stump11289f42009-09-09 15:08:12 +00003040
Fariborz Jahanian5f12b532009-06-30 16:36:53 +00003041 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
3042 E = ClassDecl->field_end(); Field != E; ++Field) {
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00003043 QualType FieldType = Context.getCanonicalType((*Field)->getType());
3044 if (const ArrayType *Array = Context.getAsArrayType(FieldType))
3045 FieldType = Array->getElementType();
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003046 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00003047 CXXRecordDecl *FieldClassDecl
3048 = cast<CXXRecordDecl>(FieldClassType->getDecl());
3049 if (!FieldClassDecl->hasTrivialDestructor()) {
Mike Stump11289f42009-09-09 15:08:12 +00003050 if (CXXDestructorDecl *FieldDtor =
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00003051 const_cast<CXXDestructorDecl*>(
3052 FieldClassDecl->getDestructor(Context)))
3053 MarkDeclarationReferenced(CurrentLocation, FieldDtor);
3054 else
Mike Stump11289f42009-09-09 15:08:12 +00003055 assert(false &&
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00003056 "DefineImplicitDestructor - missing dtor in class of a data member");
3057 }
3058 }
3059 }
3060 Destructor->setUsed();
3061}
3062
Fariborz Jahanian41f79272009-06-25 21:45:19 +00003063void Sema::DefineImplicitOverloadedAssign(SourceLocation CurrentLocation,
3064 CXXMethodDecl *MethodDecl) {
3065 assert((MethodDecl->isImplicit() && MethodDecl->isOverloadedOperator() &&
3066 MethodDecl->getOverloadedOperator() == OO_Equal &&
3067 !MethodDecl->isUsed()) &&
3068 "DefineImplicitOverloadedAssign - call it for implicit assignment op");
Mike Stump11289f42009-09-09 15:08:12 +00003069
Fariborz Jahanian41f79272009-06-25 21:45:19 +00003070 CXXRecordDecl *ClassDecl
3071 = cast<CXXRecordDecl>(MethodDecl->getDeclContext());
Mike Stump11289f42009-09-09 15:08:12 +00003072
Fariborz Jahanianebe772e2009-06-26 16:08:57 +00003073 // C++[class.copy] p12
Fariborz Jahanian41f79272009-06-25 21:45:19 +00003074 // Before the implicitly-declared copy assignment operator for a class is
3075 // implicitly defined, all implicitly-declared copy assignment operators
3076 // for its direct base classes and its nonstatic data members shall have
3077 // been implicitly defined.
3078 bool err = false;
Fariborz Jahanian5f12b532009-06-30 16:36:53 +00003079 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
3080 E = ClassDecl->bases_end(); Base != E; ++Base) {
Fariborz Jahanian41f79272009-06-25 21:45:19 +00003081 CXXRecordDecl *BaseClassDecl
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003082 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Mike Stump11289f42009-09-09 15:08:12 +00003083 if (CXXMethodDecl *BaseAssignOpMethod =
Fariborz Jahanian41f79272009-06-25 21:45:19 +00003084 getAssignOperatorMethod(MethodDecl->getParamDecl(0), BaseClassDecl))
3085 MarkDeclarationReferenced(CurrentLocation, BaseAssignOpMethod);
3086 }
Fariborz Jahanian5f12b532009-06-30 16:36:53 +00003087 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
3088 E = ClassDecl->field_end(); Field != E; ++Field) {
Fariborz Jahanian41f79272009-06-25 21:45:19 +00003089 QualType FieldType = Context.getCanonicalType((*Field)->getType());
3090 if (const ArrayType *Array = Context.getAsArrayType(FieldType))
3091 FieldType = Array->getElementType();
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003092 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Fariborz Jahanian41f79272009-06-25 21:45:19 +00003093 CXXRecordDecl *FieldClassDecl
3094 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Mike Stump11289f42009-09-09 15:08:12 +00003095 if (CXXMethodDecl *FieldAssignOpMethod =
Fariborz Jahanian41f79272009-06-25 21:45:19 +00003096 getAssignOperatorMethod(MethodDecl->getParamDecl(0), FieldClassDecl))
3097 MarkDeclarationReferenced(CurrentLocation, FieldAssignOpMethod);
Mike Stump12b8ce12009-08-04 21:02:39 +00003098 } else if (FieldType->isReferenceType()) {
Mike Stump11289f42009-09-09 15:08:12 +00003099 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
Anders Carlsson17973e62009-07-09 17:47:25 +00003100 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
3101 Diag(Field->getLocation(), diag::note_declared_at);
Fariborz Jahanian41f79272009-06-25 21:45:19 +00003102 Diag(CurrentLocation, diag::note_first_required_here);
3103 err = true;
Mike Stump12b8ce12009-08-04 21:02:39 +00003104 } else if (FieldType.isConstQualified()) {
Mike Stump11289f42009-09-09 15:08:12 +00003105 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
Anders Carlsson17973e62009-07-09 17:47:25 +00003106 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
3107 Diag(Field->getLocation(), diag::note_declared_at);
Fariborz Jahanian41f79272009-06-25 21:45:19 +00003108 Diag(CurrentLocation, diag::note_first_required_here);
3109 err = true;
3110 }
3111 }
3112 if (!err)
Mike Stump11289f42009-09-09 15:08:12 +00003113 MethodDecl->setUsed();
Fariborz Jahanian41f79272009-06-25 21:45:19 +00003114}
3115
3116CXXMethodDecl *
3117Sema::getAssignOperatorMethod(ParmVarDecl *ParmDecl,
3118 CXXRecordDecl *ClassDecl) {
3119 QualType LHSType = Context.getTypeDeclType(ClassDecl);
3120 QualType RHSType(LHSType);
3121 // If class's assignment operator argument is const/volatile qualified,
Mike Stump11289f42009-09-09 15:08:12 +00003122 // look for operator = (const/volatile B&). Otherwise, look for
Fariborz Jahanian41f79272009-06-25 21:45:19 +00003123 // operator = (B&).
John McCall8ccfcb52009-09-24 19:53:00 +00003124 RHSType = Context.getCVRQualifiedType(RHSType,
3125 ParmDecl->getType().getCVRQualifiers());
Mike Stump11289f42009-09-09 15:08:12 +00003126 ExprOwningPtr<Expr> LHS(this, new (Context) DeclRefExpr(ParmDecl,
3127 LHSType,
Fariborz Jahanian41f79272009-06-25 21:45:19 +00003128 SourceLocation()));
Mike Stump11289f42009-09-09 15:08:12 +00003129 ExprOwningPtr<Expr> RHS(this, new (Context) DeclRefExpr(ParmDecl,
3130 RHSType,
Fariborz Jahanian41f79272009-06-25 21:45:19 +00003131 SourceLocation()));
3132 Expr *Args[2] = { &*LHS, &*RHS };
3133 OverloadCandidateSet CandidateSet;
Mike Stump11289f42009-09-09 15:08:12 +00003134 AddMemberOperatorCandidates(clang::OO_Equal, SourceLocation(), Args, 2,
Fariborz Jahanian41f79272009-06-25 21:45:19 +00003135 CandidateSet);
3136 OverloadCandidateSet::iterator Best;
Mike Stump11289f42009-09-09 15:08:12 +00003137 if (BestViableFunction(CandidateSet,
Fariborz Jahanian41f79272009-06-25 21:45:19 +00003138 ClassDecl->getLocation(), Best) == OR_Success)
3139 return cast<CXXMethodDecl>(Best->Function);
3140 assert(false &&
3141 "getAssignOperatorMethod - copy assignment operator method not found");
3142 return 0;
3143}
3144
Fariborz Jahanian477d2422009-06-22 23:34:40 +00003145void Sema::DefineImplicitCopyConstructor(SourceLocation CurrentLocation,
3146 CXXConstructorDecl *CopyConstructor,
3147 unsigned TypeQuals) {
Mike Stump11289f42009-09-09 15:08:12 +00003148 assert((CopyConstructor->isImplicit() &&
Fariborz Jahanian477d2422009-06-22 23:34:40 +00003149 CopyConstructor->isCopyConstructor(Context, TypeQuals) &&
3150 !CopyConstructor->isUsed()) &&
3151 "DefineImplicitCopyConstructor - call it for implicit copy ctor");
Mike Stump11289f42009-09-09 15:08:12 +00003152
Fariborz Jahanian477d2422009-06-22 23:34:40 +00003153 CXXRecordDecl *ClassDecl
3154 = cast<CXXRecordDecl>(CopyConstructor->getDeclContext());
3155 assert(ClassDecl && "DefineImplicitCopyConstructor - invalid constructor");
Fariborz Jahaniana83edb02009-06-23 23:42:10 +00003156 // C++ [class.copy] p209
Mike Stump11289f42009-09-09 15:08:12 +00003157 // Before the implicitly-declared copy constructor for a class is
Fariborz Jahanian477d2422009-06-22 23:34:40 +00003158 // implicitly defined, all the implicitly-declared copy constructors
3159 // for its base class and its non-static data members shall have been
3160 // implicitly defined.
3161 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin();
3162 Base != ClassDecl->bases_end(); ++Base) {
3163 CXXRecordDecl *BaseClassDecl
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003164 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Mike Stump11289f42009-09-09 15:08:12 +00003165 if (CXXConstructorDecl *BaseCopyCtor =
Fariborz Jahanian477d2422009-06-22 23:34:40 +00003166 BaseClassDecl->getCopyConstructor(Context, TypeQuals))
Fariborz Jahaniana83edb02009-06-23 23:42:10 +00003167 MarkDeclarationReferenced(CurrentLocation, BaseCopyCtor);
Fariborz Jahanian477d2422009-06-22 23:34:40 +00003168 }
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00003169 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
3170 FieldEnd = ClassDecl->field_end();
3171 Field != FieldEnd; ++Field) {
Fariborz Jahanian477d2422009-06-22 23:34:40 +00003172 QualType FieldType = Context.getCanonicalType((*Field)->getType());
3173 if (const ArrayType *Array = Context.getAsArrayType(FieldType))
3174 FieldType = Array->getElementType();
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003175 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Fariborz Jahanian477d2422009-06-22 23:34:40 +00003176 CXXRecordDecl *FieldClassDecl
3177 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Mike Stump11289f42009-09-09 15:08:12 +00003178 if (CXXConstructorDecl *FieldCopyCtor =
Fariborz Jahanian477d2422009-06-22 23:34:40 +00003179 FieldClassDecl->getCopyConstructor(Context, TypeQuals))
Fariborz Jahaniana83edb02009-06-23 23:42:10 +00003180 MarkDeclarationReferenced(CurrentLocation, FieldCopyCtor);
Fariborz Jahanian477d2422009-06-22 23:34:40 +00003181 }
3182 }
3183 CopyConstructor->setUsed();
3184}
3185
Anders Carlsson6eb55572009-08-25 05:12:04 +00003186Sema::OwningExprResult
Anders Carlsson1b4ebfa2009-09-05 07:40:38 +00003187Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
Mike Stump11289f42009-09-09 15:08:12 +00003188 CXXConstructorDecl *Constructor,
Anders Carlsson5995a3e2009-09-07 22:23:31 +00003189 MultiExprArg ExprArgs) {
Anders Carlsson250aada2009-08-16 05:13:48 +00003190 bool Elidable = false;
Mike Stump11289f42009-09-09 15:08:12 +00003191
Douglas Gregor5d3507d2009-09-09 23:08:42 +00003192 // C++ [class.copy]p15:
3193 // Whenever a temporary class object is copied using a copy constructor, and
3194 // this object and the copy have the same cv-unqualified type, an
3195 // implementation is permitted to treat the original and the copy as two
3196 // different ways of referring to the same object and not perform a copy at
3197 // all, even if the class copy constructor or destructor have side effects.
Mike Stump11289f42009-09-09 15:08:12 +00003198
Anders Carlsson250aada2009-08-16 05:13:48 +00003199 // FIXME: Is this enough?
Douglas Gregor5d3507d2009-09-09 23:08:42 +00003200 if (Constructor->isCopyConstructor(Context)) {
Anders Carlsson5995a3e2009-09-07 22:23:31 +00003201 Expr *E = ((Expr **)ExprArgs.get())[0];
Anders Carlsson250aada2009-08-16 05:13:48 +00003202 while (CXXBindTemporaryExpr *BE = dyn_cast<CXXBindTemporaryExpr>(E))
3203 E = BE->getSubExpr();
Douglas Gregor5d3507d2009-09-09 23:08:42 +00003204 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E))
3205 if (ICE->getCastKind() == CastExpr::CK_NoOp)
3206 E = ICE->getSubExpr();
3207
Anders Carlsson250aada2009-08-16 05:13:48 +00003208 if (isa<CallExpr>(E) || isa<CXXTemporaryObjectExpr>(E))
3209 Elidable = true;
3210 }
Mike Stump11289f42009-09-09 15:08:12 +00003211
3212 return BuildCXXConstructExpr(ConstructLoc, DeclInitType, Constructor,
Anders Carlsson5995a3e2009-09-07 22:23:31 +00003213 Elidable, move(ExprArgs));
Anders Carlsson250aada2009-08-16 05:13:48 +00003214}
3215
Fariborz Jahanianaa890bf2009-08-05 17:03:54 +00003216/// BuildCXXConstructExpr - Creates a complete call to a constructor,
3217/// including handling of its default argument expressions.
Anders Carlsson6eb55572009-08-25 05:12:04 +00003218Sema::OwningExprResult
Anders Carlsson1b4ebfa2009-09-05 07:40:38 +00003219Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType,
3220 CXXConstructorDecl *Constructor, bool Elidable,
Anders Carlsson5995a3e2009-09-07 22:23:31 +00003221 MultiExprArg ExprArgs) {
3222 unsigned NumExprs = ExprArgs.size();
3223 Expr **Exprs = (Expr **)ExprArgs.release();
Mike Stump11289f42009-09-09 15:08:12 +00003224
Douglas Gregor5d3507d2009-09-09 23:08:42 +00003225 return Owned(CXXConstructExpr::Create(Context, DeclInitType, Constructor,
3226 Elidable, Exprs, NumExprs));
Fariborz Jahanianaa890bf2009-08-05 17:03:54 +00003227}
3228
Anders Carlsson574315a2009-08-27 05:08:22 +00003229Sema::OwningExprResult
Mike Stump11289f42009-09-09 15:08:12 +00003230Sema::BuildCXXTemporaryObjectExpr(CXXConstructorDecl *Constructor,
3231 QualType Ty,
3232 SourceLocation TyBeginLoc,
Anders Carlsson574315a2009-08-27 05:08:22 +00003233 MultiExprArg Args,
3234 SourceLocation RParenLoc) {
Douglas Gregor5d3507d2009-09-09 23:08:42 +00003235 unsigned NumExprs = Args.size();
3236 Expr **Exprs = (Expr **)Args.release();
Mike Stump11289f42009-09-09 15:08:12 +00003237
Douglas Gregor5d3507d2009-09-09 23:08:42 +00003238 return Owned(new (Context) CXXTemporaryObjectExpr(Context, Constructor, Ty,
3239 TyBeginLoc, Exprs,
3240 NumExprs, RParenLoc));
Anders Carlsson574315a2009-08-27 05:08:22 +00003241}
3242
3243
Mike Stump11289f42009-09-09 15:08:12 +00003244bool Sema::InitializeVarWithConstructor(VarDecl *VD,
Fariborz Jahanianaa890bf2009-08-05 17:03:54 +00003245 CXXConstructorDecl *Constructor,
Anders Carlsson5995a3e2009-09-07 22:23:31 +00003246 MultiExprArg Exprs) {
Mike Stump11289f42009-09-09 15:08:12 +00003247 OwningExprResult TempResult =
Fariborz Jahanian57277c52009-10-28 18:41:06 +00003248 BuildCXXConstructExpr(VD->getLocation(), VD->getType(), Constructor,
Anders Carlsson5995a3e2009-09-07 22:23:31 +00003249 move(Exprs));
Anders Carlssonc1eb79b2009-08-25 05:18:00 +00003250 if (TempResult.isInvalid())
3251 return true;
Mike Stump11289f42009-09-09 15:08:12 +00003252
Anders Carlsson6eb55572009-08-25 05:12:04 +00003253 Expr *Temp = TempResult.takeAs<Expr>();
Douglas Gregor77b50e12009-06-22 23:06:13 +00003254 MarkDeclarationReferenced(VD->getLocation(), Constructor);
Fariborz Jahaniand460cb42009-08-05 18:17:32 +00003255 Temp = MaybeCreateCXXExprWithTemporaries(Temp, /*DestroyTemps=*/true);
Douglas Gregor31cf12c2009-05-26 18:54:04 +00003256 VD->setInit(Context, Temp);
Mike Stump11289f42009-09-09 15:08:12 +00003257
Anders Carlssonc1eb79b2009-08-25 05:18:00 +00003258 return false;
Anders Carlssone6840d82009-04-16 23:50:50 +00003259}
3260
Mike Stump11289f42009-09-09 15:08:12 +00003261void Sema::FinalizeVarWithDestructor(VarDecl *VD, QualType DeclInitType) {
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00003262 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003263 DeclInitType->getAs<RecordType>()->getDecl());
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00003264 if (!ClassDecl->hasTrivialDestructor())
Mike Stump11289f42009-09-09 15:08:12 +00003265 if (CXXDestructorDecl *Destructor =
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00003266 const_cast<CXXDestructorDecl*>(ClassDecl->getDestructor(Context)))
Fariborz Jahanian67828442009-08-03 19:13:25 +00003267 MarkDeclarationReferenced(VD->getLocation(), Destructor);
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00003268}
3269
Mike Stump11289f42009-09-09 15:08:12 +00003270/// AddCXXDirectInitializerToDecl - This action is called immediately after
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00003271/// ActOnDeclarator, when a C++ direct initializer is present.
3272/// e.g: "int x(1);"
Chris Lattner83f095c2009-03-28 19:18:32 +00003273void Sema::AddCXXDirectInitializerToDecl(DeclPtrTy Dcl,
3274 SourceLocation LParenLoc,
Sebastian Redl6d4256c2009-03-15 17:47:39 +00003275 MultiExprArg Exprs,
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00003276 SourceLocation *CommaLocs,
3277 SourceLocation RParenLoc) {
Sebastian Redl6d4256c2009-03-15 17:47:39 +00003278 unsigned NumExprs = Exprs.size();
3279 assert(NumExprs != 0 && Exprs.get() && "missing expressions");
Chris Lattner83f095c2009-03-28 19:18:32 +00003280 Decl *RealDecl = Dcl.getAs<Decl>();
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00003281
3282 // If there is no declaration, there was an error parsing it. Just ignore
3283 // the initializer.
Chris Lattner83f095c2009-03-28 19:18:32 +00003284 if (RealDecl == 0)
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00003285 return;
Mike Stump11289f42009-09-09 15:08:12 +00003286
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00003287 VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl);
3288 if (!VDecl) {
3289 Diag(RealDecl->getLocation(), diag::err_illegal_initializer);
3290 RealDecl->setInvalidDecl();
3291 return;
3292 }
3293
Douglas Gregor402250f2009-08-26 21:14:46 +00003294 // We will represent direct-initialization similarly to copy-initialization:
Argyrios Kyrtzidis997d00d2008-10-06 23:08:37 +00003295 // int x(1); -as-> int x = 1;
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00003296 // ClassType x(a,b,c); -as-> ClassType x = ClassType(a,b,c);
3297 //
3298 // Clients that want to distinguish between the two forms, can check for
3299 // direct initializer using VarDecl::hasCXXDirectInitializer().
3300 // A major benefit is that clients that don't particularly care about which
3301 // exactly form was it (like the CodeGen) can handle both cases without
3302 // special case code.
Argyrios Kyrtzidis153d9672008-10-06 18:37:09 +00003303
Douglas Gregor402250f2009-08-26 21:14:46 +00003304 // If either the declaration has a dependent type or if any of the expressions
3305 // is type-dependent, we represent the initialization via a ParenListExpr for
3306 // later use during template instantiation.
3307 if (VDecl->getType()->isDependentType() ||
3308 Expr::hasAnyTypeDependentArguments((Expr **)Exprs.get(), Exprs.size())) {
3309 // Let clients know that initialization was done with a direct initializer.
3310 VDecl->setCXXDirectInitializer(true);
Mike Stump11289f42009-09-09 15:08:12 +00003311
Douglas Gregor402250f2009-08-26 21:14:46 +00003312 // Store the initialization expressions as a ParenListExpr.
3313 unsigned NumExprs = Exprs.size();
Mike Stump11289f42009-09-09 15:08:12 +00003314 VDecl->setInit(Context,
Douglas Gregor402250f2009-08-26 21:14:46 +00003315 new (Context) ParenListExpr(Context, LParenLoc,
3316 (Expr **)Exprs.release(),
3317 NumExprs, RParenLoc));
3318 return;
3319 }
Mike Stump11289f42009-09-09 15:08:12 +00003320
Douglas Gregor402250f2009-08-26 21:14:46 +00003321
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00003322 // C++ 8.5p11:
3323 // The form of initialization (using parentheses or '=') is generally
3324 // insignificant, but does matter when the entity being initialized has a
Argyrios Kyrtzidis153d9672008-10-06 18:37:09 +00003325 // class type.
Douglas Gregorc28b57d2008-11-03 20:45:27 +00003326 QualType DeclInitType = VDecl->getType();
3327 if (const ArrayType *Array = Context.getAsArrayType(DeclInitType))
Fariborz Jahaniand264ee02009-10-28 19:04:36 +00003328 DeclInitType = Context.getBaseElementType(Array);
Argyrios Kyrtzidis153d9672008-10-06 18:37:09 +00003329
Douglas Gregor4044d992009-03-24 16:43:20 +00003330 // FIXME: This isn't the right place to complete the type.
3331 if (RequireCompleteType(VDecl->getLocation(), VDecl->getType(),
3332 diag::err_typecheck_decl_incomplete_type)) {
3333 VDecl->setInvalidDecl();
3334 return;
3335 }
3336
Argyrios Kyrtzidis153d9672008-10-06 18:37:09 +00003337 if (VDecl->getType()->isRecordType()) {
Douglas Gregor5d3507d2009-09-09 23:08:42 +00003338 ASTOwningVector<&ActionBase::DeleteExpr> ConstructorArgs(*this);
3339
Douglas Gregorc28b57d2008-11-03 20:45:27 +00003340 CXXConstructorDecl *Constructor
Sebastian Redl6d4256c2009-03-15 17:47:39 +00003341 = PerformInitializationByConstructor(DeclInitType,
Douglas Gregor5d3507d2009-09-09 23:08:42 +00003342 move(Exprs),
Douglas Gregor6f543152008-11-05 15:29:30 +00003343 VDecl->getLocation(),
3344 SourceRange(VDecl->getLocation(),
3345 RParenLoc),
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00003346 VDecl->getDeclName(),
Douglas Gregor5d3507d2009-09-09 23:08:42 +00003347 IK_Direct,
3348 ConstructorArgs);
Sebastian Redl6d4256c2009-03-15 17:47:39 +00003349 if (!Constructor)
Douglas Gregorc28b57d2008-11-03 20:45:27 +00003350 RealDecl->setInvalidDecl();
Anders Carlsson332ef552009-04-15 21:48:18 +00003351 else {
Anders Carlsson332ef552009-04-15 21:48:18 +00003352 VDecl->setCXXDirectInitializer(true);
Fariborz Jahanian57277c52009-10-28 18:41:06 +00003353 if (InitializeVarWithConstructor(VDecl, Constructor,
Douglas Gregor5d3507d2009-09-09 23:08:42 +00003354 move_arg(ConstructorArgs)))
Anders Carlssonc1eb79b2009-08-25 05:18:00 +00003355 RealDecl->setInvalidDecl();
Fariborz Jahanian67828442009-08-03 19:13:25 +00003356 FinalizeVarWithDestructor(VDecl, DeclInitType);
Anders Carlsson332ef552009-04-15 21:48:18 +00003357 }
Argyrios Kyrtzidis153d9672008-10-06 18:37:09 +00003358 return;
3359 }
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00003360
Argyrios Kyrtzidis997d00d2008-10-06 23:08:37 +00003361 if (NumExprs > 1) {
Chris Lattnerf490e152008-11-19 05:27:50 +00003362 Diag(CommaLocs[0], diag::err_builtin_direct_init_more_than_one_arg)
3363 << SourceRange(VDecl->getLocation(), RParenLoc);
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00003364 RealDecl->setInvalidDecl();
3365 return;
3366 }
3367
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00003368 // Let clients know that initialization was done with a direct initializer.
3369 VDecl->setCXXDirectInitializer(true);
Argyrios Kyrtzidis997d00d2008-10-06 23:08:37 +00003370
3371 assert(NumExprs == 1 && "Expected 1 expression");
3372 // Set the init expression, handles conversions.
Sebastian Redl6d4256c2009-03-15 17:47:39 +00003373 AddInitializerToDecl(Dcl, ExprArg(*this, Exprs.release()[0]),
3374 /*DirectInit=*/true);
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +00003375}
Douglas Gregor8e1cf602008-10-29 00:13:59 +00003376
Douglas Gregorbf3f3222009-11-14 03:27:21 +00003377/// \brief Add the applicable constructor candidates for an initialization
3378/// by constructor.
3379static void AddConstructorInitializationCandidates(Sema &SemaRef,
3380 QualType ClassType,
3381 Expr **Args,
3382 unsigned NumArgs,
3383 Sema::InitializationKind Kind,
3384 OverloadCandidateSet &CandidateSet) {
3385 // C++ [dcl.init]p14:
3386 // If the initialization is direct-initialization, or if it is
3387 // copy-initialization where the cv-unqualified version of the
3388 // source type is the same class as, or a derived class of, the
3389 // class of the destination, constructors are considered. The
3390 // applicable constructors are enumerated (13.3.1.3), and the
3391 // best one is chosen through overload resolution (13.3). The
3392 // constructor so selected is called to initialize the object,
3393 // with the initializer expression(s) as its argument(s). If no
3394 // constructor applies, or the overload resolution is ambiguous,
3395 // the initialization is ill-formed.
3396 const RecordType *ClassRec = ClassType->getAs<RecordType>();
3397 assert(ClassRec && "Can only initialize a class type here");
3398
3399 // FIXME: When we decide not to synthesize the implicitly-declared
3400 // constructors, we'll need to make them appear here.
3401
3402 const CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(ClassRec->getDecl());
3403 DeclarationName ConstructorName
3404 = SemaRef.Context.DeclarationNames.getCXXConstructorName(
3405 SemaRef.Context.getCanonicalType(ClassType).getUnqualifiedType());
3406 DeclContext::lookup_const_iterator Con, ConEnd;
3407 for (llvm::tie(Con, ConEnd) = ClassDecl->lookup(ConstructorName);
3408 Con != ConEnd; ++Con) {
3409 // Find the constructor (which may be a template).
3410 CXXConstructorDecl *Constructor = 0;
3411 FunctionTemplateDecl *ConstructorTmpl= dyn_cast<FunctionTemplateDecl>(*Con);
3412 if (ConstructorTmpl)
3413 Constructor
3414 = cast<CXXConstructorDecl>(ConstructorTmpl->getTemplatedDecl());
3415 else
3416 Constructor = cast<CXXConstructorDecl>(*Con);
3417
3418 if ((Kind == Sema::IK_Direct) ||
3419 (Kind == Sema::IK_Copy &&
3420 Constructor->isConvertingConstructor(/*AllowExplicit=*/false)) ||
3421 (Kind == Sema::IK_Default && Constructor->isDefaultConstructor())) {
3422 if (ConstructorTmpl)
3423 SemaRef.AddTemplateOverloadCandidate(ConstructorTmpl, false, 0, 0,
3424 Args, NumArgs, CandidateSet);
3425 else
3426 SemaRef.AddOverloadCandidate(Constructor, Args, NumArgs, CandidateSet);
3427 }
3428 }
3429}
3430
3431/// \brief Attempt to perform initialization by constructor
3432/// (C++ [dcl.init]p14), which may occur as part of direct-initialization or
3433/// copy-initialization.
3434///
3435/// This routine determines whether initialization by constructor is possible,
3436/// but it does not emit any diagnostics in the case where the initialization
3437/// is ill-formed.
3438///
3439/// \param ClassType the type of the object being initialized, which must have
3440/// class type.
3441///
3442/// \param Args the arguments provided to initialize the object
3443///
3444/// \param NumArgs the number of arguments provided to initialize the object
3445///
3446/// \param Kind the type of initialization being performed
3447///
3448/// \returns the constructor used to initialize the object, if successful.
3449/// Otherwise, emits a diagnostic and returns NULL.
3450CXXConstructorDecl *
3451Sema::TryInitializationByConstructor(QualType ClassType,
3452 Expr **Args, unsigned NumArgs,
3453 SourceLocation Loc,
3454 InitializationKind Kind) {
3455 // Build the overload candidate set
3456 OverloadCandidateSet CandidateSet;
3457 AddConstructorInitializationCandidates(*this, ClassType, Args, NumArgs, Kind,
3458 CandidateSet);
3459
3460 // Determine whether we found a constructor we can use.
3461 OverloadCandidateSet::iterator Best;
3462 switch (BestViableFunction(CandidateSet, Loc, Best)) {
3463 case OR_Success:
3464 case OR_Deleted:
3465 // We found a constructor. Return it.
3466 return cast<CXXConstructorDecl>(Best->Function);
3467
3468 case OR_No_Viable_Function:
3469 case OR_Ambiguous:
3470 // Overload resolution failed. Return nothing.
3471 return 0;
3472 }
3473
3474 // Silence GCC warning
3475 return 0;
3476}
3477
Douglas Gregor5d3507d2009-09-09 23:08:42 +00003478/// \brief Perform initialization by constructor (C++ [dcl.init]p14), which
3479/// may occur as part of direct-initialization or copy-initialization.
3480///
3481/// \param ClassType the type of the object being initialized, which must have
3482/// class type.
3483///
3484/// \param ArgsPtr the arguments provided to initialize the object
3485///
3486/// \param Loc the source location where the initialization occurs
3487///
3488/// \param Range the source range that covers the entire initialization
3489///
3490/// \param InitEntity the name of the entity being initialized, if known
3491///
3492/// \param Kind the type of initialization being performed
3493///
3494/// \param ConvertedArgs a vector that will be filled in with the
3495/// appropriately-converted arguments to the constructor (if initialization
3496/// succeeded).
3497///
3498/// \returns the constructor used to initialize the object, if successful.
3499/// Otherwise, emits a diagnostic and returns NULL.
Douglas Gregorc28b57d2008-11-03 20:45:27 +00003500CXXConstructorDecl *
Douglas Gregor6f543152008-11-05 15:29:30 +00003501Sema::PerformInitializationByConstructor(QualType ClassType,
Douglas Gregor5d3507d2009-09-09 23:08:42 +00003502 MultiExprArg ArgsPtr,
Douglas Gregor6f543152008-11-05 15:29:30 +00003503 SourceLocation Loc, SourceRange Range,
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00003504 DeclarationName InitEntity,
Douglas Gregor5d3507d2009-09-09 23:08:42 +00003505 InitializationKind Kind,
3506 ASTOwningVector<&ActionBase::DeleteExpr> &ConvertedArgs) {
Douglas Gregorbf3f3222009-11-14 03:27:21 +00003507
3508 // Build the overload candidate set
Douglas Gregor5d3507d2009-09-09 23:08:42 +00003509 Expr **Args = (Expr **)ArgsPtr.get();
3510 unsigned NumArgs = ArgsPtr.size();
Douglas Gregorc28b57d2008-11-03 20:45:27 +00003511 OverloadCandidateSet CandidateSet;
Douglas Gregorbf3f3222009-11-14 03:27:21 +00003512 AddConstructorInitializationCandidates(*this, ClassType, Args, NumArgs, Kind,
3513 CandidateSet);
Douglas Gregor1349b452008-12-15 21:24:18 +00003514
Douglas Gregorc28b57d2008-11-03 20:45:27 +00003515 OverloadCandidateSet::iterator Best;
Douglas Gregorc9c02ed2009-06-19 23:52:42 +00003516 switch (BestViableFunction(CandidateSet, Loc, Best)) {
Douglas Gregorc28b57d2008-11-03 20:45:27 +00003517 case OR_Success:
Douglas Gregor5d3507d2009-09-09 23:08:42 +00003518 // We found a constructor. Break out so that we can convert the arguments
3519 // appropriately.
3520 break;
Mike Stump11289f42009-09-09 15:08:12 +00003521
Douglas Gregorc28b57d2008-11-03 20:45:27 +00003522 case OR_No_Viable_Function:
Douglas Gregora5c9e1a2009-02-02 17:43:21 +00003523 if (InitEntity)
3524 Diag(Loc, diag::err_ovl_no_viable_function_in_init)
Chris Lattner45d9d602009-02-17 07:29:20 +00003525 << InitEntity << Range;
Douglas Gregora5c9e1a2009-02-02 17:43:21 +00003526 else
3527 Diag(Loc, diag::err_ovl_no_viable_function_in_init)
Chris Lattner45d9d602009-02-17 07:29:20 +00003528 << ClassType << Range;
Sebastian Redl15b02d22008-11-22 13:44:36 +00003529 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/false);
Douglas Gregorc28b57d2008-11-03 20:45:27 +00003530 return 0;
Mike Stump11289f42009-09-09 15:08:12 +00003531
Douglas Gregorc28b57d2008-11-03 20:45:27 +00003532 case OR_Ambiguous:
Douglas Gregora5c9e1a2009-02-02 17:43:21 +00003533 if (InitEntity)
3534 Diag(Loc, diag::err_ovl_ambiguous_init) << InitEntity << Range;
3535 else
3536 Diag(Loc, diag::err_ovl_ambiguous_init) << ClassType << Range;
Douglas Gregorc28b57d2008-11-03 20:45:27 +00003537 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true);
3538 return 0;
Douglas Gregor171c45a2009-02-18 21:56:37 +00003539
3540 case OR_Deleted:
3541 if (InitEntity)
3542 Diag(Loc, diag::err_ovl_deleted_init)
3543 << Best->Function->isDeleted()
3544 << InitEntity << Range;
3545 else
3546 Diag(Loc, diag::err_ovl_deleted_init)
3547 << Best->Function->isDeleted()
3548 << InitEntity << Range;
3549 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true);
3550 return 0;
Douglas Gregorc28b57d2008-11-03 20:45:27 +00003551 }
Mike Stump11289f42009-09-09 15:08:12 +00003552
Douglas Gregor5d3507d2009-09-09 23:08:42 +00003553 // Convert the arguments, fill in default arguments, etc.
3554 CXXConstructorDecl *Constructor = cast<CXXConstructorDecl>(Best->Function);
3555 if (CompleteConstructorCall(Constructor, move(ArgsPtr), Loc, ConvertedArgs))
3556 return 0;
3557
3558 return Constructor;
3559}
3560
3561/// \brief Given a constructor and the set of arguments provided for the
3562/// constructor, convert the arguments and add any required default arguments
3563/// to form a proper call to this constructor.
3564///
3565/// \returns true if an error occurred, false otherwise.
3566bool
3567Sema::CompleteConstructorCall(CXXConstructorDecl *Constructor,
3568 MultiExprArg ArgsPtr,
3569 SourceLocation Loc,
3570 ASTOwningVector<&ActionBase::DeleteExpr> &ConvertedArgs) {
3571 // FIXME: This duplicates a lot of code from Sema::ConvertArgumentsForCall.
3572 unsigned NumArgs = ArgsPtr.size();
3573 Expr **Args = (Expr **)ArgsPtr.get();
3574
3575 const FunctionProtoType *Proto
3576 = Constructor->getType()->getAs<FunctionProtoType>();
3577 assert(Proto && "Constructor without a prototype?");
3578 unsigned NumArgsInProto = Proto->getNumArgs();
3579 unsigned NumArgsToCheck = NumArgs;
3580
3581 // If too few arguments are available, we'll fill in the rest with defaults.
3582 if (NumArgs < NumArgsInProto) {
3583 NumArgsToCheck = NumArgsInProto;
3584 ConvertedArgs.reserve(NumArgsInProto);
3585 } else {
3586 ConvertedArgs.reserve(NumArgs);
3587 if (NumArgs > NumArgsInProto)
3588 NumArgsToCheck = NumArgsInProto;
3589 }
3590
3591 // Convert arguments
3592 for (unsigned i = 0; i != NumArgsToCheck; i++) {
3593 QualType ProtoArgType = Proto->getArgType(i);
3594
3595 Expr *Arg;
3596 if (i < NumArgs) {
3597 Arg = Args[i];
Anders Carlssonc8bfc462009-09-15 21:14:33 +00003598
3599 // Pass the argument.
3600 if (PerformCopyInitialization(Arg, ProtoArgType, "passing"))
3601 return true;
3602
3603 Args[i] = 0;
Douglas Gregor5d3507d2009-09-09 23:08:42 +00003604 } else {
3605 ParmVarDecl *Param = Constructor->getParamDecl(i);
3606
3607 OwningExprResult DefArg = BuildCXXDefaultArgExpr(Loc, Constructor, Param);
3608 if (DefArg.isInvalid())
3609 return true;
3610
3611 Arg = DefArg.takeAs<Expr>();
3612 }
3613
3614 ConvertedArgs.push_back(Arg);
3615 }
3616
3617 // If this is a variadic call, handle args passed through "...".
3618 if (Proto->isVariadic()) {
3619 // Promote the arguments (C99 6.5.2.2p7).
3620 for (unsigned i = NumArgsInProto; i != NumArgs; i++) {
3621 Expr *Arg = Args[i];
3622 if (DefaultVariadicArgumentPromotion(Arg, VariadicConstructor))
3623 return true;
3624
3625 ConvertedArgs.push_back(Arg);
3626 Args[i] = 0;
3627 }
3628 }
3629
3630 return false;
Douglas Gregorc28b57d2008-11-03 20:45:27 +00003631}
3632
Douglas Gregor8e1cf602008-10-29 00:13:59 +00003633/// CompareReferenceRelationship - Compare the two types T1 and T2 to
3634/// determine whether they are reference-related,
3635/// reference-compatible, reference-compatible with added
3636/// qualification, or incompatible, for use in C++ initialization by
3637/// reference (C++ [dcl.ref.init]p4). Neither type can be a reference
3638/// type, and the first type (T1) is the pointee type of the reference
3639/// type being initialized.
Mike Stump11289f42009-09-09 15:08:12 +00003640Sema::ReferenceCompareResult
Douglas Gregor3ec1bf22009-11-05 13:06:35 +00003641Sema::CompareReferenceRelationship(SourceLocation Loc,
3642 QualType OrigT1, QualType OrigT2,
Douglas Gregor786ab212008-10-29 02:00:59 +00003643 bool& DerivedToBase) {
Douglas Gregor3ec1bf22009-11-05 13:06:35 +00003644 assert(!OrigT1->isReferenceType() &&
Sebastian Redl0f8b23f2009-03-16 23:22:08 +00003645 "T1 must be the pointee type of the reference type");
Douglas Gregor3ec1bf22009-11-05 13:06:35 +00003646 assert(!OrigT2->isReferenceType() && "T2 cannot be a reference type");
Douglas Gregor8e1cf602008-10-29 00:13:59 +00003647
Douglas Gregor3ec1bf22009-11-05 13:06:35 +00003648 QualType T1 = Context.getCanonicalType(OrigT1);
3649 QualType T2 = Context.getCanonicalType(OrigT2);
Douglas Gregor8e1cf602008-10-29 00:13:59 +00003650 QualType UnqualT1 = T1.getUnqualifiedType();
3651 QualType UnqualT2 = T2.getUnqualifiedType();
3652
3653 // C++ [dcl.init.ref]p4:
Eli Friedman44b83ee2009-08-05 19:21:58 +00003654 // Given types "cv1 T1" and "cv2 T2," "cv1 T1" is
Mike Stump11289f42009-09-09 15:08:12 +00003655 // reference-related to "cv2 T2" if T1 is the same type as T2, or
Douglas Gregor8e1cf602008-10-29 00:13:59 +00003656 // T1 is a base class of T2.
Douglas Gregor786ab212008-10-29 02:00:59 +00003657 if (UnqualT1 == UnqualT2)
3658 DerivedToBase = false;
Douglas Gregor3ec1bf22009-11-05 13:06:35 +00003659 else if (!RequireCompleteType(Loc, OrigT1, PDiag()) &&
3660 !RequireCompleteType(Loc, OrigT2, PDiag()) &&
3661 IsDerivedFrom(UnqualT2, UnqualT1))
Douglas Gregor786ab212008-10-29 02:00:59 +00003662 DerivedToBase = true;
3663 else
Douglas Gregor8e1cf602008-10-29 00:13:59 +00003664 return Ref_Incompatible;
3665
3666 // At this point, we know that T1 and T2 are reference-related (at
3667 // least).
3668
3669 // C++ [dcl.init.ref]p4:
Eli Friedman44b83ee2009-08-05 19:21:58 +00003670 // "cv1 T1" is reference-compatible with "cv2 T2" if T1 is
Douglas Gregor8e1cf602008-10-29 00:13:59 +00003671 // reference-related to T2 and cv1 is the same cv-qualification
3672 // as, or greater cv-qualification than, cv2. For purposes of
3673 // overload resolution, cases for which cv1 is greater
3674 // cv-qualification than cv2 are identified as
3675 // reference-compatible with added qualification (see 13.3.3.2).
3676 if (T1.getCVRQualifiers() == T2.getCVRQualifiers())
3677 return Ref_Compatible;
3678 else if (T1.isMoreQualifiedThan(T2))
3679 return Ref_Compatible_With_Added_Qualification;
3680 else
3681 return Ref_Related;
3682}
3683
3684/// CheckReferenceInit - Check the initialization of a reference
3685/// variable with the given initializer (C++ [dcl.init.ref]). Init is
3686/// the initializer (either a simple initializer or an initializer
Douglas Gregor23a1f192008-10-29 23:31:03 +00003687/// list), and DeclType is the type of the declaration. When ICS is
3688/// non-null, this routine will compute the implicit conversion
3689/// sequence according to C++ [over.ics.ref] and will not produce any
3690/// diagnostics; when ICS is null, it will emit diagnostics when any
3691/// errors are found. Either way, a return value of true indicates
3692/// that there was a failure, a return value of false indicates that
3693/// the reference initialization succeeded.
Douglas Gregor2fe98832008-11-03 19:09:14 +00003694///
3695/// When @p SuppressUserConversions, user-defined conversions are
3696/// suppressed.
Douglas Gregor5fb53972009-01-14 15:45:31 +00003697/// When @p AllowExplicit, we also permit explicit user-defined
3698/// conversion functions.
Sebastian Redl42e92c42009-04-12 17:16:29 +00003699/// When @p ForceRValue, we unconditionally treat the initializer as an rvalue.
Sebastian Redl7c353682009-11-14 21:15:49 +00003700/// When @p IgnoreBaseAccess, we don't do access control on to-base conversion.
3701/// This is used when this is called from a C-style cast.
Mike Stump11289f42009-09-09 15:08:12 +00003702bool
Sebastian Redl1a99f442009-04-16 17:51:27 +00003703Sema::CheckReferenceInit(Expr *&Init, QualType DeclType,
Douglas Gregorc809cc22009-09-23 23:04:10 +00003704 SourceLocation DeclLoc,
Douglas Gregor5fb53972009-01-14 15:45:31 +00003705 bool SuppressUserConversions,
Anders Carlsson271e3a42009-08-27 17:30:43 +00003706 bool AllowExplicit, bool ForceRValue,
Sebastian Redl7c353682009-11-14 21:15:49 +00003707 ImplicitConversionSequence *ICS,
3708 bool IgnoreBaseAccess) {
Douglas Gregor8e1cf602008-10-29 00:13:59 +00003709 assert(DeclType->isReferenceType() && "Reference init needs a reference");
3710
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003711 QualType T1 = DeclType->getAs<ReferenceType>()->getPointeeType();
Douglas Gregor8e1cf602008-10-29 00:13:59 +00003712 QualType T2 = Init->getType();
3713
Douglas Gregorcd695e52008-11-10 20:40:00 +00003714 // If the initializer is the address of an overloaded function, try
3715 // to resolve the overloaded function. If all goes well, T2 is the
3716 // type of the resulting function.
Douglas Gregor1baf54e2009-03-13 18:40:31 +00003717 if (Context.getCanonicalType(T2) == Context.OverloadTy) {
Mike Stump11289f42009-09-09 15:08:12 +00003718 FunctionDecl *Fn = ResolveAddressOfOverloadedFunction(Init, DeclType,
Douglas Gregorcd695e52008-11-10 20:40:00 +00003719 ICS != 0);
3720 if (Fn) {
3721 // Since we're performing this reference-initialization for
3722 // real, update the initializer with the resulting function.
Douglas Gregor171c45a2009-02-18 21:56:37 +00003723 if (!ICS) {
Douglas Gregorc809cc22009-09-23 23:04:10 +00003724 if (DiagnoseUseOfDecl(Fn, DeclLoc))
Douglas Gregor171c45a2009-02-18 21:56:37 +00003725 return true;
3726
Anders Carlssonfcb4ab42009-10-21 17:16:23 +00003727 Init = FixOverloadedFunctionReference(Init, Fn);
Douglas Gregor171c45a2009-02-18 21:56:37 +00003728 }
Douglas Gregorcd695e52008-11-10 20:40:00 +00003729
3730 T2 = Fn->getType();
3731 }
3732 }
3733
Douglas Gregor786ab212008-10-29 02:00:59 +00003734 // Compute some basic properties of the types and the initializer.
Sebastian Redl0f8b23f2009-03-16 23:22:08 +00003735 bool isRValRef = DeclType->isRValueReferenceType();
Douglas Gregor786ab212008-10-29 02:00:59 +00003736 bool DerivedToBase = false;
Sebastian Redl42e92c42009-04-12 17:16:29 +00003737 Expr::isLvalueResult InitLvalue = ForceRValue ? Expr::LV_InvalidExpression :
3738 Init->isLvalue(Context);
Mike Stump11289f42009-09-09 15:08:12 +00003739 ReferenceCompareResult RefRelationship
Douglas Gregor3ec1bf22009-11-05 13:06:35 +00003740 = CompareReferenceRelationship(DeclLoc, T1, T2, DerivedToBase);
Douglas Gregor786ab212008-10-29 02:00:59 +00003741
3742 // Most paths end in a failed conversion.
3743 if (ICS)
3744 ICS->ConversionKind = ImplicitConversionSequence::BadConversion;
Douglas Gregor8e1cf602008-10-29 00:13:59 +00003745
3746 // C++ [dcl.init.ref]p5:
Eli Friedman44b83ee2009-08-05 19:21:58 +00003747 // A reference to type "cv1 T1" is initialized by an expression
3748 // of type "cv2 T2" as follows:
Douglas Gregor8e1cf602008-10-29 00:13:59 +00003749
3750 // -- If the initializer expression
3751
Sebastian Redl4c0cd852009-03-29 15:27:50 +00003752 // Rvalue references cannot bind to lvalues (N2812).
3753 // There is absolutely no situation where they can. In particular, note that
3754 // this is ill-formed, even if B has a user-defined conversion to A&&:
3755 // B b;
3756 // A&& r = b;
3757 if (isRValRef && InitLvalue == Expr::LV_Valid) {
3758 if (!ICS)
Douglas Gregorc809cc22009-09-23 23:04:10 +00003759 Diag(DeclLoc, diag::err_lvalue_to_rvalue_ref)
Sebastian Redl4c0cd852009-03-29 15:27:50 +00003760 << Init->getSourceRange();
3761 return true;
3762 }
3763
Douglas Gregor8e1cf602008-10-29 00:13:59 +00003764 bool BindsDirectly = false;
Eli Friedman44b83ee2009-08-05 19:21:58 +00003765 // -- is an lvalue (but is not a bit-field), and "cv1 T1" is
3766 // reference-compatible with "cv2 T2," or
Douglas Gregor786ab212008-10-29 02:00:59 +00003767 //
3768 // Note that the bit-field check is skipped if we are just computing
3769 // the implicit conversion sequence (C++ [over.best.ics]p2).
Douglas Gregor71235ec2009-05-02 02:18:30 +00003770 if (InitLvalue == Expr::LV_Valid && (ICS || !Init->getBitField()) &&
Douglas Gregor786ab212008-10-29 02:00:59 +00003771 RefRelationship >= Ref_Compatible_With_Added_Qualification) {
Douglas Gregor8e1cf602008-10-29 00:13:59 +00003772 BindsDirectly = true;
3773
Douglas Gregor786ab212008-10-29 02:00:59 +00003774 if (ICS) {
3775 // C++ [over.ics.ref]p1:
3776 // When a parameter of reference type binds directly (8.5.3)
3777 // to an argument expression, the implicit conversion sequence
3778 // is the identity conversion, unless the argument expression
3779 // has a type that is a derived class of the parameter type,
3780 // in which case the implicit conversion sequence is a
3781 // derived-to-base Conversion (13.3.3.1).
3782 ICS->ConversionKind = ImplicitConversionSequence::StandardConversion;
3783 ICS->Standard.First = ICK_Identity;
3784 ICS->Standard.Second = DerivedToBase? ICK_Derived_To_Base : ICK_Identity;
3785 ICS->Standard.Third = ICK_Identity;
3786 ICS->Standard.FromTypePtr = T2.getAsOpaquePtr();
3787 ICS->Standard.ToTypePtr = T1.getAsOpaquePtr();
Douglas Gregoref30a5f2008-10-29 14:50:44 +00003788 ICS->Standard.ReferenceBinding = true;
3789 ICS->Standard.DirectBinding = true;
Sebastian Redl4c0cd852009-03-29 15:27:50 +00003790 ICS->Standard.RRefBinding = false;
Sebastian Redl5775af1a2009-04-17 16:30:52 +00003791 ICS->Standard.CopyConstructor = 0;
Douglas Gregor786ab212008-10-29 02:00:59 +00003792
3793 // Nothing more to do: the inaccessibility/ambiguity check for
3794 // derived-to-base conversions is suppressed when we're
3795 // computing the implicit conversion sequence (C++
3796 // [over.best.ics]p2).
3797 return false;
3798 } else {
3799 // Perform the conversion.
Douglas Gregor5d3507d2009-09-09 23:08:42 +00003800 CastExpr::CastKind CK = CastExpr::CK_NoOp;
3801 if (DerivedToBase)
3802 CK = CastExpr::CK_DerivedToBase;
Sebastian Redl5d431642009-10-10 12:04:10 +00003803 else if(CheckExceptionSpecCompatibility(Init, T1))
3804 return true;
Douglas Gregor5d3507d2009-09-09 23:08:42 +00003805 ImpCastExprToType(Init, T1, CK, /*isLvalue=*/true);
Douglas Gregor8e1cf602008-10-29 00:13:59 +00003806 }
3807 }
3808
3809 // -- has a class type (i.e., T2 is a class type) and can be
Eli Friedman44b83ee2009-08-05 19:21:58 +00003810 // implicitly converted to an lvalue of type "cv3 T3,"
3811 // where "cv1 T1" is reference-compatible with "cv3 T3"
Douglas Gregor8e1cf602008-10-29 00:13:59 +00003812 // 92) (this conversion is selected by enumerating the
3813 // applicable conversion functions (13.3.1.6) and choosing
3814 // the best one through overload resolution (13.3)),
Douglas Gregor8a2e6012009-08-24 15:23:48 +00003815 if (!isRValRef && !SuppressUserConversions && T2->isRecordType() &&
Douglas Gregorc02cfe22009-10-21 23:19:44 +00003816 !RequireCompleteType(DeclLoc, T2, 0)) {
Mike Stump11289f42009-09-09 15:08:12 +00003817 CXXRecordDecl *T2RecordDecl
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003818 = dyn_cast<CXXRecordDecl>(T2->getAs<RecordType>()->getDecl());
Douglas Gregor8e1cf602008-10-29 00:13:59 +00003819
Douglas Gregorf52cdd02008-11-10 16:14:15 +00003820 OverloadCandidateSet CandidateSet;
Mike Stump11289f42009-09-09 15:08:12 +00003821 OverloadedFunctionDecl *Conversions
Fariborz Jahanianaf0262d2009-09-23 20:55:32 +00003822 = T2RecordDecl->getVisibleConversionFunctions();
Mike Stump11289f42009-09-09 15:08:12 +00003823 for (OverloadedFunctionDecl::function_iterator Func
Douglas Gregorf52cdd02008-11-10 16:14:15 +00003824 = Conversions->function_begin();
3825 Func != Conversions->function_end(); ++Func) {
Mike Stump11289f42009-09-09 15:08:12 +00003826 FunctionTemplateDecl *ConvTemplate
Douglas Gregor05155d82009-08-21 23:19:43 +00003827 = dyn_cast<FunctionTemplateDecl>(*Func);
3828 CXXConversionDecl *Conv;
3829 if (ConvTemplate)
3830 Conv = cast<CXXConversionDecl>(ConvTemplate->getTemplatedDecl());
3831 else
3832 Conv = cast<CXXConversionDecl>(*Func);
Fariborz Jahanianaf0262d2009-09-23 20:55:32 +00003833
Douglas Gregorf52cdd02008-11-10 16:14:15 +00003834 // If the conversion function doesn't return a reference type,
3835 // it can't be considered for this conversion.
Sebastian Redl0f8b23f2009-03-16 23:22:08 +00003836 if (Conv->getConversionType()->isLValueReferenceType() &&
Douglas Gregor05155d82009-08-21 23:19:43 +00003837 (AllowExplicit || !Conv->isExplicit())) {
3838 if (ConvTemplate)
Mike Stump11289f42009-09-09 15:08:12 +00003839 AddTemplateConversionCandidate(ConvTemplate, Init, DeclType,
Douglas Gregor05155d82009-08-21 23:19:43 +00003840 CandidateSet);
3841 else
3842 AddConversionCandidate(Conv, Init, DeclType, CandidateSet);
3843 }
Douglas Gregorf52cdd02008-11-10 16:14:15 +00003844 }
3845
3846 OverloadCandidateSet::iterator Best;
Douglas Gregorc809cc22009-09-23 23:04:10 +00003847 switch (BestViableFunction(CandidateSet, DeclLoc, Best)) {
Douglas Gregorf52cdd02008-11-10 16:14:15 +00003848 case OR_Success:
3849 // This is a direct binding.
3850 BindsDirectly = true;
3851
3852 if (ICS) {
3853 // C++ [over.ics.ref]p1:
3854 //
3855 // [...] If the parameter binds directly to the result of
3856 // applying a conversion function to the argument
3857 // expression, the implicit conversion sequence is a
3858 // user-defined conversion sequence (13.3.3.1.2), with the
3859 // second standard conversion sequence either an identity
3860 // conversion or, if the conversion function returns an
3861 // entity of a type that is a derived class of the parameter
3862 // type, a derived-to-base Conversion.
3863 ICS->ConversionKind = ImplicitConversionSequence::UserDefinedConversion;
3864 ICS->UserDefined.Before = Best->Conversions[0].Standard;
3865 ICS->UserDefined.After = Best->FinalConversion;
3866 ICS->UserDefined.ConversionFunction = Best->Function;
Fariborz Jahanian55824512009-11-06 00:23:08 +00003867 ICS->UserDefined.EllipsisConversion = false;
Douglas Gregorf52cdd02008-11-10 16:14:15 +00003868 assert(ICS->UserDefined.After.ReferenceBinding &&
3869 ICS->UserDefined.After.DirectBinding &&
3870 "Expected a direct reference binding!");
3871 return false;
3872 } else {
Fariborz Jahanian9ce90d12009-09-23 22:34:00 +00003873 OwningExprResult InitConversion =
Douglas Gregorc809cc22009-09-23 23:04:10 +00003874 BuildCXXCastArgument(DeclLoc, QualType(),
Fariborz Jahanian9ce90d12009-09-23 22:34:00 +00003875 CastExpr::CK_UserDefinedConversion,
3876 cast<CXXMethodDecl>(Best->Function),
3877 Owned(Init));
3878 Init = InitConversion.takeAs<Expr>();
Sebastian Redl5d431642009-10-10 12:04:10 +00003879
3880 if (CheckExceptionSpecCompatibility(Init, T1))
3881 return true;
Fariborz Jahanian9ce90d12009-09-23 22:34:00 +00003882 ImpCastExprToType(Init, T1, CastExpr::CK_UserDefinedConversion,
3883 /*isLvalue=*/true);
Douglas Gregorf52cdd02008-11-10 16:14:15 +00003884 }
3885 break;
3886
3887 case OR_Ambiguous:
Fariborz Jahanian31481d82009-10-14 00:52:43 +00003888 if (ICS) {
3889 for (OverloadCandidateSet::iterator Cand = CandidateSet.begin();
3890 Cand != CandidateSet.end(); ++Cand)
3891 if (Cand->Viable)
3892 ICS->ConversionFunctionSet.push_back(Cand->Function);
3893 break;
3894 }
3895 Diag(DeclLoc, diag::err_ref_init_ambiguous) << DeclType << Init->getType()
3896 << Init->getSourceRange();
3897 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true);
Douglas Gregorf52cdd02008-11-10 16:14:15 +00003898 return true;
Mike Stump11289f42009-09-09 15:08:12 +00003899
Douglas Gregorf52cdd02008-11-10 16:14:15 +00003900 case OR_No_Viable_Function:
Douglas Gregor171c45a2009-02-18 21:56:37 +00003901 case OR_Deleted:
3902 // There was no suitable conversion, or we found a deleted
3903 // conversion; continue with other checks.
Douglas Gregorf52cdd02008-11-10 16:14:15 +00003904 break;
3905 }
3906 }
Mike Stump11289f42009-09-09 15:08:12 +00003907
Douglas Gregor8e1cf602008-10-29 00:13:59 +00003908 if (BindsDirectly) {
3909 // C++ [dcl.init.ref]p4:
3910 // [...] In all cases where the reference-related or
3911 // reference-compatible relationship of two types is used to
3912 // establish the validity of a reference binding, and T1 is a
3913 // base class of T2, a program that necessitates such a binding
3914 // is ill-formed if T1 is an inaccessible (clause 11) or
3915 // ambiguous (10.2) base class of T2.
3916 //
3917 // Note that we only check this condition when we're allowed to
3918 // complain about errors, because we should not be checking for
3919 // ambiguity (or inaccessibility) unless the reference binding
3920 // actually happens.
Mike Stump11289f42009-09-09 15:08:12 +00003921 if (DerivedToBase)
Douglas Gregorc809cc22009-09-23 23:04:10 +00003922 return CheckDerivedToBaseConversion(T2, T1, DeclLoc,
Sebastian Redl7c353682009-11-14 21:15:49 +00003923 Init->getSourceRange(),
3924 IgnoreBaseAccess);
Douglas Gregor786ab212008-10-29 02:00:59 +00003925 else
3926 return false;
Douglas Gregor8e1cf602008-10-29 00:13:59 +00003927 }
3928
3929 // -- Otherwise, the reference shall be to a non-volatile const
Sebastian Redl4c0cd852009-03-29 15:27:50 +00003930 // type (i.e., cv1 shall be const), or the reference shall be an
3931 // rvalue reference and the initializer expression shall be an rvalue.
John McCall8ccfcb52009-09-24 19:53:00 +00003932 if (!isRValRef && T1.getCVRQualifiers() != Qualifiers::Const) {
Douglas Gregor786ab212008-10-29 02:00:59 +00003933 if (!ICS)
Douglas Gregorc809cc22009-09-23 23:04:10 +00003934 Diag(DeclLoc, diag::err_not_reference_to_const_init)
Chris Lattner1e5665e2008-11-24 06:25:27 +00003935 << T1 << (InitLvalue != Expr::LV_Valid? "temporary" : "value")
3936 << T2 << Init->getSourceRange();
Douglas Gregor8e1cf602008-10-29 00:13:59 +00003937 return true;
3938 }
3939
3940 // -- If the initializer expression is an rvalue, with T2 a
Eli Friedman44b83ee2009-08-05 19:21:58 +00003941 // class type, and "cv1 T1" is reference-compatible with
3942 // "cv2 T2," the reference is bound in one of the
Douglas Gregor8e1cf602008-10-29 00:13:59 +00003943 // following ways (the choice is implementation-defined):
3944 //
3945 // -- The reference is bound to the object represented by
3946 // the rvalue (see 3.10) or to a sub-object within that
3947 // object.
3948 //
Eli Friedman44b83ee2009-08-05 19:21:58 +00003949 // -- A temporary of type "cv1 T2" [sic] is created, and
Douglas Gregor8e1cf602008-10-29 00:13:59 +00003950 // a constructor is called to copy the entire rvalue
3951 // object into the temporary. The reference is bound to
3952 // the temporary or to a sub-object within the
3953 // temporary.
3954 //
Douglas Gregor8e1cf602008-10-29 00:13:59 +00003955 // The constructor that would be used to make the copy
3956 // shall be callable whether or not the copy is actually
3957 // done.
3958 //
Sebastian Redl4c0cd852009-03-29 15:27:50 +00003959 // Note that C++0x [dcl.init.ref]p5 takes away this implementation
Douglas Gregor8e1cf602008-10-29 00:13:59 +00003960 // freedom, so we will always take the first option and never build
3961 // a temporary in this case. FIXME: We will, however, have to check
3962 // for the presence of a copy constructor in C++98/03 mode.
3963 if (InitLvalue != Expr::LV_Valid && T2->isRecordType() &&
Douglas Gregor786ab212008-10-29 02:00:59 +00003964 RefRelationship >= Ref_Compatible_With_Added_Qualification) {
3965 if (ICS) {
3966 ICS->ConversionKind = ImplicitConversionSequence::StandardConversion;
3967 ICS->Standard.First = ICK_Identity;
3968 ICS->Standard.Second = DerivedToBase? ICK_Derived_To_Base : ICK_Identity;
3969 ICS->Standard.Third = ICK_Identity;
3970 ICS->Standard.FromTypePtr = T2.getAsOpaquePtr();
3971 ICS->Standard.ToTypePtr = T1.getAsOpaquePtr();
Douglas Gregoref30a5f2008-10-29 14:50:44 +00003972 ICS->Standard.ReferenceBinding = true;
Sebastian Redl4c0cd852009-03-29 15:27:50 +00003973 ICS->Standard.DirectBinding = false;
3974 ICS->Standard.RRefBinding = isRValRef;
Sebastian Redl5775af1a2009-04-17 16:30:52 +00003975 ICS->Standard.CopyConstructor = 0;
Douglas Gregor786ab212008-10-29 02:00:59 +00003976 } else {
Douglas Gregor5d3507d2009-09-09 23:08:42 +00003977 CastExpr::CastKind CK = CastExpr::CK_NoOp;
3978 if (DerivedToBase)
3979 CK = CastExpr::CK_DerivedToBase;
Sebastian Redl5d431642009-10-10 12:04:10 +00003980 else if(CheckExceptionSpecCompatibility(Init, T1))
3981 return true;
Douglas Gregor5d3507d2009-09-09 23:08:42 +00003982 ImpCastExprToType(Init, T1, CK, /*isLvalue=*/false);
Douglas Gregor8e1cf602008-10-29 00:13:59 +00003983 }
3984 return false;
3985 }
3986
Eli Friedman44b83ee2009-08-05 19:21:58 +00003987 // -- Otherwise, a temporary of type "cv1 T1" is created and
Douglas Gregor8e1cf602008-10-29 00:13:59 +00003988 // initialized from the initializer expression using the
3989 // rules for a non-reference copy initialization (8.5). The
3990 // reference is then bound to the temporary. If T1 is
3991 // reference-related to T2, cv1 must be the same
3992 // cv-qualification as, or greater cv-qualification than,
3993 // cv2; otherwise, the program is ill-formed.
3994 if (RefRelationship == Ref_Related) {
3995 // If cv1 == cv2 or cv1 is a greater cv-qualified than cv2, then
3996 // we would be reference-compatible or reference-compatible with
3997 // added qualification. But that wasn't the case, so the reference
3998 // initialization fails.
Douglas Gregor786ab212008-10-29 02:00:59 +00003999 if (!ICS)
Douglas Gregorc809cc22009-09-23 23:04:10 +00004000 Diag(DeclLoc, diag::err_reference_init_drops_quals)
Chris Lattner1e5665e2008-11-24 06:25:27 +00004001 << T1 << (InitLvalue != Expr::LV_Valid? "temporary" : "value")
4002 << T2 << Init->getSourceRange();
Douglas Gregor8e1cf602008-10-29 00:13:59 +00004003 return true;
4004 }
4005
Douglas Gregor576e98c2009-01-30 23:27:23 +00004006 // If at least one of the types is a class type, the types are not
4007 // related, and we aren't allowed any user conversions, the
4008 // reference binding fails. This case is important for breaking
4009 // recursion, since TryImplicitConversion below will attempt to
4010 // create a temporary through the use of a copy constructor.
4011 if (SuppressUserConversions && RefRelationship == Ref_Incompatible &&
4012 (T1->isRecordType() || T2->isRecordType())) {
4013 if (!ICS)
Douglas Gregorc809cc22009-09-23 23:04:10 +00004014 Diag(DeclLoc, diag::err_typecheck_convert_incompatible)
Douglas Gregor576e98c2009-01-30 23:27:23 +00004015 << DeclType << Init->getType() << "initializing" << Init->getSourceRange();
4016 return true;
4017 }
4018
Douglas Gregor8e1cf602008-10-29 00:13:59 +00004019 // Actually try to convert the initializer to T1.
Douglas Gregor786ab212008-10-29 02:00:59 +00004020 if (ICS) {
Sebastian Redl4c0cd852009-03-29 15:27:50 +00004021 // C++ [over.ics.ref]p2:
Mike Stump11289f42009-09-09 15:08:12 +00004022 //
Sebastian Redl4c0cd852009-03-29 15:27:50 +00004023 // When a parameter of reference type is not bound directly to
4024 // an argument expression, the conversion sequence is the one
4025 // required to convert the argument expression to the
4026 // underlying type of the reference according to
4027 // 13.3.3.1. Conceptually, this conversion sequence corresponds
4028 // to copy-initializing a temporary of the underlying type with
4029 // the argument expression. Any difference in top-level
4030 // cv-qualification is subsumed by the initialization itself
4031 // and does not constitute a conversion.
Anders Carlssonef4c7212009-08-27 17:24:15 +00004032 *ICS = TryImplicitConversion(Init, T1, SuppressUserConversions,
4033 /*AllowExplicit=*/false,
Anders Carlsson228eea32009-08-28 15:33:32 +00004034 /*ForceRValue=*/false,
4035 /*InOverloadResolution=*/false);
Mike Stump11289f42009-09-09 15:08:12 +00004036
Sebastian Redl4c0cd852009-03-29 15:27:50 +00004037 // Of course, that's still a reference binding.
4038 if (ICS->ConversionKind == ImplicitConversionSequence::StandardConversion) {
4039 ICS->Standard.ReferenceBinding = true;
4040 ICS->Standard.RRefBinding = isRValRef;
Mike Stump11289f42009-09-09 15:08:12 +00004041 } else if (ICS->ConversionKind ==
Sebastian Redl4c0cd852009-03-29 15:27:50 +00004042 ImplicitConversionSequence::UserDefinedConversion) {
4043 ICS->UserDefined.After.ReferenceBinding = true;
4044 ICS->UserDefined.After.RRefBinding = isRValRef;
4045 }
Douglas Gregor786ab212008-10-29 02:00:59 +00004046 return ICS->ConversionKind == ImplicitConversionSequence::BadConversion;
4047 } else {
Fariborz Jahanianaf0262d2009-09-23 20:55:32 +00004048 ImplicitConversionSequence Conversions;
4049 bool badConversion = PerformImplicitConversion(Init, T1, "initializing",
4050 false, false,
4051 Conversions);
4052 if (badConversion) {
4053 if ((Conversions.ConversionKind ==
4054 ImplicitConversionSequence::BadConversion)
Fariborz Jahanian9021fc72009-09-28 22:03:07 +00004055 && !Conversions.ConversionFunctionSet.empty()) {
Fariborz Jahanian20327b02009-09-24 00:42:43 +00004056 Diag(DeclLoc,
Fariborz Jahanianaf0262d2009-09-23 20:55:32 +00004057 diag::err_lvalue_to_rvalue_ambig_ref) << Init->getSourceRange();
4058 for (int j = Conversions.ConversionFunctionSet.size()-1;
4059 j >= 0; j--) {
4060 FunctionDecl *Func = Conversions.ConversionFunctionSet[j];
4061 Diag(Func->getLocation(), diag::err_ovl_candidate);
4062 }
4063 }
Fariborz Jahaniandb823082009-09-30 21:23:30 +00004064 else {
4065 if (isRValRef)
4066 Diag(DeclLoc, diag::err_lvalue_to_rvalue_ref)
4067 << Init->getSourceRange();
4068 else
4069 Diag(DeclLoc, diag::err_invalid_initialization)
4070 << DeclType << Init->getType() << Init->getSourceRange();
4071 }
Fariborz Jahanianaf0262d2009-09-23 20:55:32 +00004072 }
4073 return badConversion;
Douglas Gregor786ab212008-10-29 02:00:59 +00004074 }
Douglas Gregor8e1cf602008-10-29 00:13:59 +00004075}
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00004076
4077/// CheckOverloadedOperatorDeclaration - Check whether the declaration
4078/// of this overloaded operator is well-formed. If so, returns false;
4079/// otherwise, emits appropriate diagnostics and returns true.
4080bool Sema::CheckOverloadedOperatorDeclaration(FunctionDecl *FnDecl) {
Douglas Gregord69246b2008-11-17 16:14:12 +00004081 assert(FnDecl && FnDecl->isOverloadedOperator() &&
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00004082 "Expected an overloaded operator declaration");
4083
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00004084 OverloadedOperatorKind Op = FnDecl->getOverloadedOperator();
4085
Mike Stump11289f42009-09-09 15:08:12 +00004086 // C++ [over.oper]p5:
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00004087 // The allocation and deallocation functions, operator new,
4088 // operator new[], operator delete and operator delete[], are
4089 // described completely in 3.7.3. The attributes and restrictions
4090 // found in the rest of this subclause do not apply to them unless
4091 // explicitly stated in 3.7.3.
Mike Stump87c57ac2009-05-16 07:39:55 +00004092 // FIXME: Write a separate routine for checking this. For now, just allow it.
Fariborz Jahanian4e088942009-11-10 23:47:18 +00004093 if (Op == OO_Delete || Op == OO_Array_Delete)
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00004094 return false;
Fariborz Jahanian4e088942009-11-10 23:47:18 +00004095
4096 if (Op == OO_New || Op == OO_Array_New) {
4097 bool ret = false;
4098 if (FunctionDecl::param_iterator Param = FnDecl->param_begin()) {
4099 QualType SizeTy = Context.getCanonicalType(Context.getSizeType());
4100 QualType T = Context.getCanonicalType((*Param)->getType());
4101 if (!T->isDependentType() && SizeTy != T) {
4102 Diag(FnDecl->getLocation(),
4103 diag::err_operator_new_param_type) << FnDecl->getDeclName()
4104 << SizeTy;
4105 ret = true;
4106 }
4107 }
4108 QualType ResultTy = Context.getCanonicalType(FnDecl->getResultType());
4109 if (!ResultTy->isDependentType() && ResultTy != Context.VoidPtrTy)
4110 return Diag(FnDecl->getLocation(),
4111 diag::err_operator_new_result_type) << FnDecl->getDeclName()
Douglas Gregor6051c8d2009-11-12 16:49:45 +00004112 << static_cast<QualType>(Context.VoidPtrTy);
Fariborz Jahanian4e088942009-11-10 23:47:18 +00004113 return ret;
4114 }
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00004115
4116 // C++ [over.oper]p6:
4117 // An operator function shall either be a non-static member
4118 // function or be a non-member function and have at least one
4119 // parameter whose type is a class, a reference to a class, an
4120 // enumeration, or a reference to an enumeration.
Douglas Gregord69246b2008-11-17 16:14:12 +00004121 if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(FnDecl)) {
4122 if (MethodDecl->isStatic())
4123 return Diag(FnDecl->getLocation(),
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00004124 diag::err_operator_overload_static) << FnDecl->getDeclName();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00004125 } else {
4126 bool ClassOrEnumParam = false;
Douglas Gregord69246b2008-11-17 16:14:12 +00004127 for (FunctionDecl::param_iterator Param = FnDecl->param_begin(),
4128 ParamEnd = FnDecl->param_end();
4129 Param != ParamEnd; ++Param) {
4130 QualType ParamType = (*Param)->getType().getNonReferenceType();
Eli Friedman173e0b7a2009-06-27 05:59:59 +00004131 if (ParamType->isDependentType() || ParamType->isRecordType() ||
4132 ParamType->isEnumeralType()) {
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00004133 ClassOrEnumParam = true;
4134 break;
4135 }
4136 }
4137
Douglas Gregord69246b2008-11-17 16:14:12 +00004138 if (!ClassOrEnumParam)
4139 return Diag(FnDecl->getLocation(),
Chris Lattner651d42d2008-11-20 06:38:18 +00004140 diag::err_operator_overload_needs_class_or_enum)
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00004141 << FnDecl->getDeclName();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00004142 }
4143
4144 // C++ [over.oper]p8:
4145 // An operator function cannot have default arguments (8.3.6),
4146 // except where explicitly stated below.
4147 //
Mike Stump11289f42009-09-09 15:08:12 +00004148 // Only the function-call operator allows default arguments
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00004149 // (C++ [over.call]p1).
4150 if (Op != OO_Call) {
4151 for (FunctionDecl::param_iterator Param = FnDecl->param_begin();
4152 Param != FnDecl->param_end(); ++Param) {
Douglas Gregor58354032008-12-24 00:01:03 +00004153 if ((*Param)->hasUnparsedDefaultArg())
Mike Stump11289f42009-09-09 15:08:12 +00004154 return Diag((*Param)->getLocation(),
Douglas Gregor58354032008-12-24 00:01:03 +00004155 diag::err_operator_overload_default_arg)
4156 << FnDecl->getDeclName();
4157 else if (Expr *DefArg = (*Param)->getDefaultArg())
Douglas Gregord69246b2008-11-17 16:14:12 +00004158 return Diag((*Param)->getLocation(),
Chris Lattner29e812b2008-11-20 06:06:08 +00004159 diag::err_operator_overload_default_arg)
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00004160 << FnDecl->getDeclName() << DefArg->getSourceRange();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00004161 }
4162 }
4163
Douglas Gregor6cf08062008-11-10 13:38:07 +00004164 static const bool OperatorUses[NUM_OVERLOADED_OPERATORS][3] = {
4165 { false, false, false }
4166#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
4167 , { Unary, Binary, MemberOnly }
4168#include "clang/Basic/OperatorKinds.def"
4169 };
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00004170
Douglas Gregor6cf08062008-11-10 13:38:07 +00004171 bool CanBeUnaryOperator = OperatorUses[Op][0];
4172 bool CanBeBinaryOperator = OperatorUses[Op][1];
4173 bool MustBeMemberOperator = OperatorUses[Op][2];
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00004174
4175 // C++ [over.oper]p8:
4176 // [...] Operator functions cannot have more or fewer parameters
4177 // than the number required for the corresponding operator, as
4178 // described in the rest of this subclause.
Mike Stump11289f42009-09-09 15:08:12 +00004179 unsigned NumParams = FnDecl->getNumParams()
Douglas Gregord69246b2008-11-17 16:14:12 +00004180 + (isa<CXXMethodDecl>(FnDecl)? 1 : 0);
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00004181 if (Op != OO_Call &&
4182 ((NumParams == 1 && !CanBeUnaryOperator) ||
4183 (NumParams == 2 && !CanBeBinaryOperator) ||
4184 (NumParams < 1) || (NumParams > 2))) {
4185 // We have the wrong number of parameters.
Chris Lattnerc5bab9f2008-11-21 07:57:12 +00004186 unsigned ErrorKind;
Douglas Gregor6cf08062008-11-10 13:38:07 +00004187 if (CanBeUnaryOperator && CanBeBinaryOperator) {
Chris Lattnerc5bab9f2008-11-21 07:57:12 +00004188 ErrorKind = 2; // 2 -> unary or binary.
Douglas Gregor6cf08062008-11-10 13:38:07 +00004189 } else if (CanBeUnaryOperator) {
Chris Lattnerc5bab9f2008-11-21 07:57:12 +00004190 ErrorKind = 0; // 0 -> unary
Douglas Gregor6cf08062008-11-10 13:38:07 +00004191 } else {
Chris Lattner2b786902008-11-21 07:50:02 +00004192 assert(CanBeBinaryOperator &&
4193 "All non-call overloaded operators are unary or binary!");
Chris Lattnerc5bab9f2008-11-21 07:57:12 +00004194 ErrorKind = 1; // 1 -> binary
Douglas Gregor6cf08062008-11-10 13:38:07 +00004195 }
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00004196
Chris Lattnerc5bab9f2008-11-21 07:57:12 +00004197 return Diag(FnDecl->getLocation(), diag::err_operator_overload_must_be)
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00004198 << FnDecl->getDeclName() << NumParams << ErrorKind;
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00004199 }
Sebastian Redlbaad4e72009-01-05 20:52:13 +00004200
Douglas Gregord69246b2008-11-17 16:14:12 +00004201 // Overloaded operators other than operator() cannot be variadic.
4202 if (Op != OO_Call &&
John McCall9dd450b2009-09-21 23:43:11 +00004203 FnDecl->getType()->getAs<FunctionProtoType>()->isVariadic()) {
Chris Lattner651d42d2008-11-20 06:38:18 +00004204 return Diag(FnDecl->getLocation(), diag::err_operator_overload_variadic)
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00004205 << FnDecl->getDeclName();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00004206 }
4207
4208 // Some operators must be non-static member functions.
Douglas Gregord69246b2008-11-17 16:14:12 +00004209 if (MustBeMemberOperator && !isa<CXXMethodDecl>(FnDecl)) {
4210 return Diag(FnDecl->getLocation(),
Chris Lattner651d42d2008-11-20 06:38:18 +00004211 diag::err_operator_overload_must_be_member)
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00004212 << FnDecl->getDeclName();
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00004213 }
4214
4215 // C++ [over.inc]p1:
4216 // The user-defined function called operator++ implements the
4217 // prefix and postfix ++ operator. If this function is a member
4218 // function with no parameters, or a non-member function with one
4219 // parameter of class or enumeration type, it defines the prefix
4220 // increment operator ++ for objects of that type. If the function
4221 // is a member function with one parameter (which shall be of type
4222 // int) or a non-member function with two parameters (the second
4223 // of which shall be of type int), it defines the postfix
4224 // increment operator ++ for objects of that type.
4225 if ((Op == OO_PlusPlus || Op == OO_MinusMinus) && NumParams == 2) {
4226 ParmVarDecl *LastParam = FnDecl->getParamDecl(FnDecl->getNumParams() - 1);
4227 bool ParamIsInt = false;
John McCall9dd450b2009-09-21 23:43:11 +00004228 if (const BuiltinType *BT = LastParam->getType()->getAs<BuiltinType>())
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00004229 ParamIsInt = BT->getKind() == BuiltinType::Int;
4230
Chris Lattner2b786902008-11-21 07:50:02 +00004231 if (!ParamIsInt)
4232 return Diag(LastParam->getLocation(),
Mike Stump11289f42009-09-09 15:08:12 +00004233 diag::err_operator_overload_post_incdec_must_be_int)
Chris Lattner1e5665e2008-11-24 06:25:27 +00004234 << LastParam->getType() << (Op == OO_MinusMinus);
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00004235 }
4236
Sebastian Redlbaad4e72009-01-05 20:52:13 +00004237 // Notify the class if it got an assignment operator.
4238 if (Op == OO_Equal) {
4239 // Would have returned earlier otherwise.
4240 assert(isa<CXXMethodDecl>(FnDecl) &&
4241 "Overloaded = not member, but not filtered.");
4242 CXXMethodDecl *Method = cast<CXXMethodDecl>(FnDecl);
4243 Method->getParent()->addedAssignmentOperator(Context, Method);
4244 }
4245
Douglas Gregord69246b2008-11-17 16:14:12 +00004246 return false;
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00004247}
Chris Lattner3b024a32008-12-17 07:09:26 +00004248
Douglas Gregor07665a62009-01-05 19:45:36 +00004249/// ActOnStartLinkageSpecification - Parsed the beginning of a C++
4250/// linkage specification, including the language and (if present)
4251/// the '{'. ExternLoc is the location of the 'extern', LangLoc is
4252/// the location of the language string literal, which is provided
4253/// by Lang/StrSize. LBraceLoc, if valid, provides the location of
4254/// the '{' brace. Otherwise, this linkage specification does not
4255/// have any braces.
Chris Lattner83f095c2009-03-28 19:18:32 +00004256Sema::DeclPtrTy Sema::ActOnStartLinkageSpecification(Scope *S,
4257 SourceLocation ExternLoc,
4258 SourceLocation LangLoc,
4259 const char *Lang,
4260 unsigned StrSize,
4261 SourceLocation LBraceLoc) {
Chris Lattner438e5012008-12-17 07:13:27 +00004262 LinkageSpecDecl::LanguageIDs Language;
4263 if (strncmp(Lang, "\"C\"", StrSize) == 0)
4264 Language = LinkageSpecDecl::lang_c;
4265 else if (strncmp(Lang, "\"C++\"", StrSize) == 0)
4266 Language = LinkageSpecDecl::lang_cxx;
4267 else {
Douglas Gregor07665a62009-01-05 19:45:36 +00004268 Diag(LangLoc, diag::err_bad_language);
Chris Lattner83f095c2009-03-28 19:18:32 +00004269 return DeclPtrTy();
Chris Lattner438e5012008-12-17 07:13:27 +00004270 }
Mike Stump11289f42009-09-09 15:08:12 +00004271
Chris Lattner438e5012008-12-17 07:13:27 +00004272 // FIXME: Add all the various semantics of linkage specifications
Mike Stump11289f42009-09-09 15:08:12 +00004273
Douglas Gregor07665a62009-01-05 19:45:36 +00004274 LinkageSpecDecl *D = LinkageSpecDecl::Create(Context, CurContext,
Mike Stump11289f42009-09-09 15:08:12 +00004275 LangLoc, Language,
Douglas Gregor07665a62009-01-05 19:45:36 +00004276 LBraceLoc.isValid());
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00004277 CurContext->addDecl(D);
Douglas Gregor07665a62009-01-05 19:45:36 +00004278 PushDeclContext(S, D);
Chris Lattner83f095c2009-03-28 19:18:32 +00004279 return DeclPtrTy::make(D);
Chris Lattner438e5012008-12-17 07:13:27 +00004280}
4281
Douglas Gregor07665a62009-01-05 19:45:36 +00004282/// ActOnFinishLinkageSpecification - Completely the definition of
4283/// the C++ linkage specification LinkageSpec. If RBraceLoc is
4284/// valid, it's the position of the closing '}' brace in a linkage
4285/// specification that uses braces.
Chris Lattner83f095c2009-03-28 19:18:32 +00004286Sema::DeclPtrTy Sema::ActOnFinishLinkageSpecification(Scope *S,
4287 DeclPtrTy LinkageSpec,
4288 SourceLocation RBraceLoc) {
Douglas Gregor07665a62009-01-05 19:45:36 +00004289 if (LinkageSpec)
4290 PopDeclContext();
4291 return LinkageSpec;
Chris Lattner3b024a32008-12-17 07:09:26 +00004292}
4293
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00004294/// \brief Perform semantic analysis for the variable declaration that
4295/// occurs within a C++ catch clause, returning the newly-created
4296/// variable.
4297VarDecl *Sema::BuildExceptionDeclaration(Scope *S, QualType ExDeclType,
Argyrios Kyrtzidis60ed5602009-08-19 01:27:57 +00004298 DeclaratorInfo *DInfo,
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00004299 IdentifierInfo *Name,
4300 SourceLocation Loc,
4301 SourceRange Range) {
4302 bool Invalid = false;
Sebastian Redl54c04d42008-12-22 19:15:10 +00004303
4304 // Arrays and functions decay.
4305 if (ExDeclType->isArrayType())
4306 ExDeclType = Context.getArrayDecayedType(ExDeclType);
4307 else if (ExDeclType->isFunctionType())
4308 ExDeclType = Context.getPointerType(ExDeclType);
4309
4310 // C++ 15.3p1: The exception-declaration shall not denote an incomplete type.
4311 // The exception-declaration shall not denote a pointer or reference to an
4312 // incomplete type, other than [cv] void*.
Sebastian Redlb28b4072009-03-22 23:49:27 +00004313 // N2844 forbids rvalue references.
Mike Stump11289f42009-09-09 15:08:12 +00004314 if (!ExDeclType->isDependentType() && ExDeclType->isRValueReferenceType()) {
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00004315 Diag(Loc, diag::err_catch_rvalue_ref) << Range;
Sebastian Redlb28b4072009-03-22 23:49:27 +00004316 Invalid = true;
4317 }
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00004318
Sebastian Redl54c04d42008-12-22 19:15:10 +00004319 QualType BaseType = ExDeclType;
4320 int Mode = 0; // 0 for direct type, 1 for pointer, 2 for reference
Douglas Gregordd430f72009-01-19 19:26:10 +00004321 unsigned DK = diag::err_catch_incomplete;
Ted Kremenekc23c7e62009-07-29 21:53:49 +00004322 if (const PointerType *Ptr = BaseType->getAs<PointerType>()) {
Sebastian Redl54c04d42008-12-22 19:15:10 +00004323 BaseType = Ptr->getPointeeType();
4324 Mode = 1;
Douglas Gregordd430f72009-01-19 19:26:10 +00004325 DK = diag::err_catch_incomplete_ptr;
Mike Stump11289f42009-09-09 15:08:12 +00004326 } else if (const ReferenceType *Ref = BaseType->getAs<ReferenceType>()) {
Sebastian Redlb28b4072009-03-22 23:49:27 +00004327 // For the purpose of error recovery, we treat rvalue refs like lvalue refs.
Sebastian Redl54c04d42008-12-22 19:15:10 +00004328 BaseType = Ref->getPointeeType();
4329 Mode = 2;
Douglas Gregordd430f72009-01-19 19:26:10 +00004330 DK = diag::err_catch_incomplete_ref;
Sebastian Redl54c04d42008-12-22 19:15:10 +00004331 }
Sebastian Redlb28b4072009-03-22 23:49:27 +00004332 if (!Invalid && (Mode == 0 || !BaseType->isVoidType()) &&
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00004333 !BaseType->isDependentType() && RequireCompleteType(Loc, BaseType, DK))
Sebastian Redl54c04d42008-12-22 19:15:10 +00004334 Invalid = true;
Sebastian Redl54c04d42008-12-22 19:15:10 +00004335
Mike Stump11289f42009-09-09 15:08:12 +00004336 if (!Invalid && !ExDeclType->isDependentType() &&
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00004337 RequireNonAbstractType(Loc, ExDeclType,
4338 diag::err_abstract_type_in_decl,
4339 AbstractVariableType))
Sebastian Redl2f38ba52009-04-27 21:03:30 +00004340 Invalid = true;
4341
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00004342 // FIXME: Need to test for ability to copy-construct and destroy the
4343 // exception variable.
4344
Sebastian Redl9b244a82008-12-22 21:35:02 +00004345 // FIXME: Need to check for abstract classes.
4346
Mike Stump11289f42009-09-09 15:08:12 +00004347 VarDecl *ExDecl = VarDecl::Create(Context, CurContext, Loc,
Argyrios Kyrtzidis6032ef12009-08-21 00:31:54 +00004348 Name, ExDeclType, DInfo, VarDecl::None);
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00004349
4350 if (Invalid)
4351 ExDecl->setInvalidDecl();
4352
4353 return ExDecl;
4354}
4355
4356/// ActOnExceptionDeclarator - Parsed the exception-declarator in a C++ catch
4357/// handler.
4358Sema::DeclPtrTy Sema::ActOnExceptionDeclarator(Scope *S, Declarator &D) {
Argyrios Kyrtzidis60ed5602009-08-19 01:27:57 +00004359 DeclaratorInfo *DInfo = 0;
4360 QualType ExDeclType = GetTypeForDeclarator(D, S, &DInfo);
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00004361
4362 bool Invalid = D.isInvalidType();
Sebastian Redl54c04d42008-12-22 19:15:10 +00004363 IdentifierInfo *II = D.getIdentifier();
John McCall9f3059a2009-10-09 21:13:30 +00004364 if (NamedDecl *PrevDecl = LookupSingleName(S, II, LookupOrdinaryName)) {
Sebastian Redl54c04d42008-12-22 19:15:10 +00004365 // The scope should be freshly made just for us. There is just no way
4366 // it contains any previous declaration.
Chris Lattner83f095c2009-03-28 19:18:32 +00004367 assert(!S->isDeclScope(DeclPtrTy::make(PrevDecl)));
Sebastian Redl54c04d42008-12-22 19:15:10 +00004368 if (PrevDecl->isTemplateParameter()) {
4369 // Maybe we will complain about the shadowed template parameter.
4370 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
Sebastian Redl54c04d42008-12-22 19:15:10 +00004371 }
4372 }
4373
Chris Lattnerf6d1c9c2009-04-25 08:06:05 +00004374 if (D.getCXXScopeSpec().isSet() && !Invalid) {
Sebastian Redl54c04d42008-12-22 19:15:10 +00004375 Diag(D.getIdentifierLoc(), diag::err_qualified_catch_declarator)
4376 << D.getCXXScopeSpec().getRange();
Chris Lattnerf6d1c9c2009-04-25 08:06:05 +00004377 Invalid = true;
Sebastian Redl54c04d42008-12-22 19:15:10 +00004378 }
4379
Argyrios Kyrtzidis60ed5602009-08-19 01:27:57 +00004380 VarDecl *ExDecl = BuildExceptionDeclaration(S, ExDeclType, DInfo,
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00004381 D.getIdentifier(),
4382 D.getIdentifierLoc(),
4383 D.getDeclSpec().getSourceRange());
4384
Chris Lattnerf6d1c9c2009-04-25 08:06:05 +00004385 if (Invalid)
4386 ExDecl->setInvalidDecl();
Mike Stump11289f42009-09-09 15:08:12 +00004387
Sebastian Redl54c04d42008-12-22 19:15:10 +00004388 // Add the exception declaration into this scope.
Sebastian Redl54c04d42008-12-22 19:15:10 +00004389 if (II)
Douglas Gregor5e16fbe2009-05-18 20:51:54 +00004390 PushOnScopeChains(ExDecl, S);
4391 else
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00004392 CurContext->addDecl(ExDecl);
Sebastian Redl54c04d42008-12-22 19:15:10 +00004393
Douglas Gregor758a8692009-06-17 21:51:59 +00004394 ProcessDeclAttributes(S, ExDecl, D);
Chris Lattner83f095c2009-03-28 19:18:32 +00004395 return DeclPtrTy::make(ExDecl);
Sebastian Redl54c04d42008-12-22 19:15:10 +00004396}
Anders Carlsson5bbe1d72009-03-14 00:25:26 +00004397
Mike Stump11289f42009-09-09 15:08:12 +00004398Sema::DeclPtrTy Sema::ActOnStaticAssertDeclaration(SourceLocation AssertLoc,
Chris Lattner83f095c2009-03-28 19:18:32 +00004399 ExprArg assertexpr,
4400 ExprArg assertmessageexpr) {
Anders Carlsson5bbe1d72009-03-14 00:25:26 +00004401 Expr *AssertExpr = (Expr *)assertexpr.get();
Mike Stump11289f42009-09-09 15:08:12 +00004402 StringLiteral *AssertMessage =
Anders Carlsson5bbe1d72009-03-14 00:25:26 +00004403 cast<StringLiteral>((Expr *)assertmessageexpr.get());
4404
Anders Carlsson54b26982009-03-14 00:33:21 +00004405 if (!AssertExpr->isTypeDependent() && !AssertExpr->isValueDependent()) {
4406 llvm::APSInt Value(32);
4407 if (!AssertExpr->isIntegerConstantExpr(Value, Context)) {
4408 Diag(AssertLoc, diag::err_static_assert_expression_is_not_constant) <<
4409 AssertExpr->getSourceRange();
Chris Lattner83f095c2009-03-28 19:18:32 +00004410 return DeclPtrTy();
Anders Carlsson54b26982009-03-14 00:33:21 +00004411 }
Anders Carlsson5bbe1d72009-03-14 00:25:26 +00004412
Anders Carlsson54b26982009-03-14 00:33:21 +00004413 if (Value == 0) {
Mike Stump11289f42009-09-09 15:08:12 +00004414 std::string str(AssertMessage->getStrData(),
Anders Carlsson54b26982009-03-14 00:33:21 +00004415 AssertMessage->getByteLength());
Mike Stump11289f42009-09-09 15:08:12 +00004416 Diag(AssertLoc, diag::err_static_assert_failed)
Anders Carlsson27de6a52009-03-15 18:44:04 +00004417 << str << AssertExpr->getSourceRange();
Anders Carlsson54b26982009-03-14 00:33:21 +00004418 }
4419 }
Mike Stump11289f42009-09-09 15:08:12 +00004420
Anders Carlsson78e2bc02009-03-15 17:35:16 +00004421 assertexpr.release();
4422 assertmessageexpr.release();
Mike Stump11289f42009-09-09 15:08:12 +00004423 Decl *Decl = StaticAssertDecl::Create(Context, CurContext, AssertLoc,
Anders Carlsson5bbe1d72009-03-14 00:25:26 +00004424 AssertExpr, AssertMessage);
Mike Stump11289f42009-09-09 15:08:12 +00004425
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00004426 CurContext->addDecl(Decl);
Chris Lattner83f095c2009-03-28 19:18:32 +00004427 return DeclPtrTy::make(Decl);
Anders Carlsson5bbe1d72009-03-14 00:25:26 +00004428}
Sebastian Redlf769df52009-03-24 22:27:57 +00004429
John McCall11083da2009-09-16 22:47:08 +00004430/// Handle a friend type declaration. This works in tandem with
4431/// ActOnTag.
4432///
4433/// Notes on friend class templates:
4434///
4435/// We generally treat friend class declarations as if they were
4436/// declaring a class. So, for example, the elaborated type specifier
4437/// in a friend declaration is required to obey the restrictions of a
4438/// class-head (i.e. no typedefs in the scope chain), template
4439/// parameters are required to match up with simple template-ids, &c.
4440/// However, unlike when declaring a template specialization, it's
4441/// okay to refer to a template specialization without an empty
4442/// template parameter declaration, e.g.
4443/// friend class A<T>::B<unsigned>;
4444/// We permit this as a special case; if there are any template
4445/// parameters present at all, require proper matching, i.e.
4446/// template <> template <class T> friend class A<int>::B;
Chris Lattner1fb66f42009-10-25 17:47:27 +00004447Sema::DeclPtrTy Sema::ActOnFriendTypeDecl(Scope *S, const DeclSpec &DS,
John McCall11083da2009-09-16 22:47:08 +00004448 MultiTemplateParamsArg TempParams) {
John McCallaa74a0c2009-08-28 07:59:38 +00004449 SourceLocation Loc = DS.getSourceRange().getBegin();
John McCall07e91c02009-08-06 02:15:43 +00004450
4451 assert(DS.isFriendSpecified());
4452 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
4453
John McCall11083da2009-09-16 22:47:08 +00004454 // Try to convert the decl specifier to a type. This works for
4455 // friend templates because ActOnTag never produces a ClassTemplateDecl
4456 // for a TUK_Friend.
Chris Lattner1fb66f42009-10-25 17:47:27 +00004457 Declarator TheDeclarator(DS, Declarator::MemberContext);
Chris Lattner1fb66f42009-10-25 17:47:27 +00004458 QualType T = GetTypeForDeclarator(TheDeclarator, S);
4459 if (TheDeclarator.isInvalidType())
4460 return DeclPtrTy();
John McCall07e91c02009-08-06 02:15:43 +00004461
John McCall11083da2009-09-16 22:47:08 +00004462 // This is definitely an error in C++98. It's probably meant to
4463 // be forbidden in C++0x, too, but the specification is just
4464 // poorly written.
4465 //
4466 // The problem is with declarations like the following:
4467 // template <T> friend A<T>::foo;
4468 // where deciding whether a class C is a friend or not now hinges
4469 // on whether there exists an instantiation of A that causes
4470 // 'foo' to equal C. There are restrictions on class-heads
4471 // (which we declare (by fiat) elaborated friend declarations to
4472 // be) that makes this tractable.
4473 //
4474 // FIXME: handle "template <> friend class A<T>;", which
4475 // is possibly well-formed? Who even knows?
4476 if (TempParams.size() && !isa<ElaboratedType>(T)) {
4477 Diag(Loc, diag::err_tagless_friend_type_template)
4478 << DS.getSourceRange();
4479 return DeclPtrTy();
4480 }
4481
John McCallaa74a0c2009-08-28 07:59:38 +00004482 // C++ [class.friend]p2:
4483 // An elaborated-type-specifier shall be used in a friend declaration
4484 // for a class.*
4485 // * The class-key of the elaborated-type-specifier is required.
John McCalld8fe9af2009-09-08 17:47:29 +00004486 // This is one of the rare places in Clang where it's legitimate to
4487 // ask about the "spelling" of the type.
4488 if (!getLangOptions().CPlusPlus0x && !isa<ElaboratedType>(T)) {
4489 // If we evaluated the type to a record type, suggest putting
4490 // a tag in front.
John McCallaa74a0c2009-08-28 07:59:38 +00004491 if (const RecordType *RT = T->getAs<RecordType>()) {
John McCalld8fe9af2009-09-08 17:47:29 +00004492 RecordDecl *RD = RT->getDecl();
4493
4494 std::string InsertionText = std::string(" ") + RD->getKindName();
4495
John McCallc3987482009-10-07 23:34:25 +00004496 Diag(DS.getTypeSpecTypeLoc(), diag::err_unelaborated_friend_type)
4497 << (unsigned) RD->getTagKind()
4498 << T
4499 << SourceRange(DS.getFriendSpecLoc())
John McCalld8fe9af2009-09-08 17:47:29 +00004500 << CodeModificationHint::CreateInsertion(DS.getTypeSpecTypeLoc(),
4501 InsertionText);
John McCallaa74a0c2009-08-28 07:59:38 +00004502 return DeclPtrTy();
4503 }else {
John McCalld8fe9af2009-09-08 17:47:29 +00004504 Diag(DS.getFriendSpecLoc(), diag::err_unexpected_friend)
4505 << DS.getSourceRange();
Mike Stump11289f42009-09-09 15:08:12 +00004506 return DeclPtrTy();
John McCallaa74a0c2009-08-28 07:59:38 +00004507 }
4508 }
4509
John McCallc3987482009-10-07 23:34:25 +00004510 // Enum types cannot be friends.
4511 if (T->getAs<EnumType>()) {
4512 Diag(DS.getTypeSpecTypeLoc(), diag::err_enum_friend)
4513 << SourceRange(DS.getFriendSpecLoc());
4514 return DeclPtrTy();
John McCalld8fe9af2009-09-08 17:47:29 +00004515 }
John McCallaa74a0c2009-08-28 07:59:38 +00004516
John McCallaa74a0c2009-08-28 07:59:38 +00004517 // C++98 [class.friend]p1: A friend of a class is a function
4518 // or class that is not a member of the class . . .
4519 // But that's a silly restriction which nobody implements for
4520 // inner classes, and C++0x removes it anyway, so we only report
4521 // this (as a warning) if we're being pedantic.
John McCalld8fe9af2009-09-08 17:47:29 +00004522 if (!getLangOptions().CPlusPlus0x)
4523 if (const RecordType *RT = T->getAs<RecordType>())
4524 if (RT->getDecl()->getDeclContext() == CurContext)
4525 Diag(DS.getFriendSpecLoc(), diag::ext_friend_inner_class);
John McCallaa74a0c2009-08-28 07:59:38 +00004526
John McCall11083da2009-09-16 22:47:08 +00004527 Decl *D;
4528 if (TempParams.size())
4529 D = FriendTemplateDecl::Create(Context, CurContext, Loc,
4530 TempParams.size(),
4531 (TemplateParameterList**) TempParams.release(),
4532 T.getTypePtr(),
4533 DS.getFriendSpecLoc());
4534 else
4535 D = FriendDecl::Create(Context, CurContext, Loc, T.getTypePtr(),
4536 DS.getFriendSpecLoc());
4537 D->setAccess(AS_public);
4538 CurContext->addDecl(D);
John McCallaa74a0c2009-08-28 07:59:38 +00004539
John McCall11083da2009-09-16 22:47:08 +00004540 return DeclPtrTy::make(D);
John McCallaa74a0c2009-08-28 07:59:38 +00004541}
4542
John McCall2f212b32009-09-11 21:02:39 +00004543Sema::DeclPtrTy
4544Sema::ActOnFriendFunctionDecl(Scope *S,
4545 Declarator &D,
4546 bool IsDefinition,
4547 MultiTemplateParamsArg TemplateParams) {
John McCallaa74a0c2009-08-28 07:59:38 +00004548 const DeclSpec &DS = D.getDeclSpec();
4549
4550 assert(DS.isFriendSpecified());
4551 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
4552
4553 SourceLocation Loc = D.getIdentifierLoc();
Argyrios Kyrtzidis60ed5602009-08-19 01:27:57 +00004554 DeclaratorInfo *DInfo = 0;
John McCallaa74a0c2009-08-28 07:59:38 +00004555 QualType T = GetTypeForDeclarator(D, S, &DInfo);
John McCall07e91c02009-08-06 02:15:43 +00004556
4557 // C++ [class.friend]p1
4558 // A friend of a class is a function or class....
4559 // Note that this sees through typedefs, which is intended.
John McCallaa74a0c2009-08-28 07:59:38 +00004560 // It *doesn't* see through dependent types, which is correct
4561 // according to [temp.arg.type]p3:
4562 // If a declaration acquires a function type through a
4563 // type dependent on a template-parameter and this causes
4564 // a declaration that does not use the syntactic form of a
4565 // function declarator to have a function type, the program
4566 // is ill-formed.
John McCall07e91c02009-08-06 02:15:43 +00004567 if (!T->isFunctionType()) {
4568 Diag(Loc, diag::err_unexpected_friend);
4569
4570 // It might be worthwhile to try to recover by creating an
4571 // appropriate declaration.
4572 return DeclPtrTy();
4573 }
4574
4575 // C++ [namespace.memdef]p3
4576 // - If a friend declaration in a non-local class first declares a
4577 // class or function, the friend class or function is a member
4578 // of the innermost enclosing namespace.
4579 // - The name of the friend is not found by simple name lookup
4580 // until a matching declaration is provided in that namespace
4581 // scope (either before or after the class declaration granting
4582 // friendship).
4583 // - If a friend function is called, its name may be found by the
4584 // name lookup that considers functions from namespaces and
4585 // classes associated with the types of the function arguments.
4586 // - When looking for a prior declaration of a class or a function
4587 // declared as a friend, scopes outside the innermost enclosing
4588 // namespace scope are not considered.
4589
John McCallaa74a0c2009-08-28 07:59:38 +00004590 CXXScopeSpec &ScopeQual = D.getCXXScopeSpec();
4591 DeclarationName Name = GetNameForDeclarator(D);
John McCall07e91c02009-08-06 02:15:43 +00004592 assert(Name);
4593
John McCall07e91c02009-08-06 02:15:43 +00004594 // The context we found the declaration in, or in which we should
4595 // create the declaration.
4596 DeclContext *DC;
4597
4598 // FIXME: handle local classes
4599
4600 // Recover from invalid scope qualifiers as if they just weren't there.
Douglas Gregora29a3ff2009-09-28 00:08:27 +00004601 NamedDecl *PrevDecl = 0;
John McCall07e91c02009-08-06 02:15:43 +00004602 if (!ScopeQual.isInvalid() && ScopeQual.isSet()) {
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00004603 // FIXME: RequireCompleteDeclContext
John McCall07e91c02009-08-06 02:15:43 +00004604 DC = computeDeclContext(ScopeQual);
4605
4606 // FIXME: handle dependent contexts
4607 if (!DC) return DeclPtrTy();
4608
John McCall9f3059a2009-10-09 21:13:30 +00004609 LookupResult R;
4610 LookupQualifiedName(R, DC, Name, LookupOrdinaryName, true);
4611 PrevDecl = R.getAsSingleDecl(Context);
John McCall07e91c02009-08-06 02:15:43 +00004612
4613 // If searching in that context implicitly found a declaration in
4614 // a different context, treat it like it wasn't found at all.
4615 // TODO: better diagnostics for this case. Suggesting the right
4616 // qualified scope would be nice...
Douglas Gregora29a3ff2009-09-28 00:08:27 +00004617 if (!PrevDecl || !PrevDecl->getDeclContext()->Equals(DC)) {
John McCallaa74a0c2009-08-28 07:59:38 +00004618 D.setInvalidType();
John McCall07e91c02009-08-06 02:15:43 +00004619 Diag(Loc, diag::err_qualified_friend_not_found) << Name << T;
4620 return DeclPtrTy();
4621 }
4622
4623 // C++ [class.friend]p1: A friend of a class is a function or
4624 // class that is not a member of the class . . .
Douglas Gregora29a3ff2009-09-28 00:08:27 +00004625 if (DC->Equals(CurContext))
John McCall07e91c02009-08-06 02:15:43 +00004626 Diag(DS.getFriendSpecLoc(), diag::err_friend_is_member);
4627
John McCall07e91c02009-08-06 02:15:43 +00004628 // Otherwise walk out to the nearest namespace scope looking for matches.
4629 } else {
4630 // TODO: handle local class contexts.
4631
4632 DC = CurContext;
4633 while (true) {
4634 // Skip class contexts. If someone can cite chapter and verse
4635 // for this behavior, that would be nice --- it's what GCC and
4636 // EDG do, and it seems like a reasonable intent, but the spec
4637 // really only says that checks for unqualified existing
4638 // declarations should stop at the nearest enclosing namespace,
4639 // not that they should only consider the nearest enclosing
4640 // namespace.
Douglas Gregora29a3ff2009-09-28 00:08:27 +00004641 while (DC->isRecord())
4642 DC = DC->getParent();
John McCall07e91c02009-08-06 02:15:43 +00004643
John McCall9f3059a2009-10-09 21:13:30 +00004644 LookupResult R;
4645 LookupQualifiedName(R, DC, Name, LookupOrdinaryName, true);
4646 PrevDecl = R.getAsSingleDecl(Context);
John McCall07e91c02009-08-06 02:15:43 +00004647
4648 // TODO: decide what we think about using declarations.
Douglas Gregora29a3ff2009-09-28 00:08:27 +00004649 if (PrevDecl)
John McCall07e91c02009-08-06 02:15:43 +00004650 break;
Douglas Gregora29a3ff2009-09-28 00:08:27 +00004651
John McCall07e91c02009-08-06 02:15:43 +00004652 if (DC->isFileContext()) break;
4653 DC = DC->getParent();
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 . . .
John McCall93343b92009-08-06 20:49:32 +00004658 // C++0x changes this for both friend types and functions.
4659 // Most C++ 98 compilers do seem to give an error here, so
4660 // we do, too.
Douglas Gregora29a3ff2009-09-28 00:08:27 +00004661 if (PrevDecl && DC->Equals(CurContext) && !getLangOptions().CPlusPlus0x)
John McCall07e91c02009-08-06 02:15:43 +00004662 Diag(DS.getFriendSpecLoc(), diag::err_friend_is_member);
4663 }
4664
Douglas Gregora29a3ff2009-09-28 00:08:27 +00004665 if (DC->isFileContext()) {
John McCall07e91c02009-08-06 02:15:43 +00004666 // This implies that it has to be an operator or function.
Douglas Gregor7861a802009-11-03 01:35:08 +00004667 if (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ||
4668 D.getName().getKind() == UnqualifiedId::IK_DestructorName ||
4669 D.getName().getKind() == UnqualifiedId::IK_ConversionFunctionId) {
John McCall07e91c02009-08-06 02:15:43 +00004670 Diag(Loc, diag::err_introducing_special_friend) <<
Douglas Gregor7861a802009-11-03 01:35:08 +00004671 (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ? 0 :
4672 D.getName().getKind() == UnqualifiedId::IK_DestructorName ? 1 : 2);
John McCall07e91c02009-08-06 02:15:43 +00004673 return DeclPtrTy();
4674 }
John McCall07e91c02009-08-06 02:15:43 +00004675 }
4676
Douglas Gregora29a3ff2009-09-28 00:08:27 +00004677 bool Redeclaration = false;
4678 NamedDecl *ND = ActOnFunctionDeclarator(S, D, DC, T, DInfo, PrevDecl,
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00004679 move(TemplateParams),
John McCalld1e9d832009-08-11 06:59:38 +00004680 IsDefinition,
4681 Redeclaration);
John McCallaa74a0c2009-08-28 07:59:38 +00004682 if (!ND) return DeclPtrTy();
John McCall759e32b2009-08-31 22:39:49 +00004683
Douglas Gregora29a3ff2009-09-28 00:08:27 +00004684 assert(ND->getDeclContext() == DC);
4685 assert(ND->getLexicalDeclContext() == CurContext);
John McCall5ed6e8f2009-08-18 00:00:49 +00004686
John McCall759e32b2009-08-31 22:39:49 +00004687 // Add the function declaration to the appropriate lookup tables,
4688 // adjusting the redeclarations list as necessary. We don't
4689 // want to do this yet if the friending class is dependent.
Mike Stump11289f42009-09-09 15:08:12 +00004690 //
John McCall759e32b2009-08-31 22:39:49 +00004691 // Also update the scope-based lookup if the target context's
4692 // lookup context is in lexical scope.
4693 if (!CurContext->isDependentContext()) {
4694 DC = DC->getLookupContext();
Douglas Gregora29a3ff2009-09-28 00:08:27 +00004695 DC->makeDeclVisibleInContext(ND, /* Recoverable=*/ false);
John McCall759e32b2009-08-31 22:39:49 +00004696 if (Scope *EnclosingScope = getScopeForDeclContext(S, DC))
Douglas Gregora29a3ff2009-09-28 00:08:27 +00004697 PushOnScopeChains(ND, EnclosingScope, /*AddToContext=*/ false);
John McCall759e32b2009-08-31 22:39:49 +00004698 }
John McCallaa74a0c2009-08-28 07:59:38 +00004699
4700 FriendDecl *FrD = FriendDecl::Create(Context, CurContext,
Douglas Gregora29a3ff2009-09-28 00:08:27 +00004701 D.getIdentifierLoc(), ND,
John McCallaa74a0c2009-08-28 07:59:38 +00004702 DS.getFriendSpecLoc());
John McCall75c03bb2009-08-29 03:50:18 +00004703 FrD->setAccess(AS_public);
John McCallaa74a0c2009-08-28 07:59:38 +00004704 CurContext->addDecl(FrD);
John McCall07e91c02009-08-06 02:15:43 +00004705
Douglas Gregora29a3ff2009-09-28 00:08:27 +00004706 return DeclPtrTy::make(ND);
Anders Carlsson38811702009-05-11 22:55:49 +00004707}
4708
Chris Lattner83f095c2009-03-28 19:18:32 +00004709void Sema::SetDeclDeleted(DeclPtrTy dcl, SourceLocation DelLoc) {
Douglas Gregorc8c277a2009-08-24 11:57:43 +00004710 AdjustDeclIfTemplate(dcl);
Mike Stump11289f42009-09-09 15:08:12 +00004711
Chris Lattner83f095c2009-03-28 19:18:32 +00004712 Decl *Dcl = dcl.getAs<Decl>();
Sebastian Redlf769df52009-03-24 22:27:57 +00004713 FunctionDecl *Fn = dyn_cast<FunctionDecl>(Dcl);
4714 if (!Fn) {
4715 Diag(DelLoc, diag::err_deleted_non_function);
4716 return;
4717 }
4718 if (const FunctionDecl *Prev = Fn->getPreviousDeclaration()) {
4719 Diag(DelLoc, diag::err_deleted_decl_not_first);
4720 Diag(Prev->getLocation(), diag::note_previous_declaration);
4721 // If the declaration wasn't the first, we delete the function anyway for
4722 // recovery.
4723 }
4724 Fn->setDeleted();
4725}
Sebastian Redl4c018662009-04-27 21:33:24 +00004726
4727static void SearchForReturnInStmt(Sema &Self, Stmt *S) {
4728 for (Stmt::child_iterator CI = S->child_begin(), E = S->child_end(); CI != E;
4729 ++CI) {
4730 Stmt *SubStmt = *CI;
4731 if (!SubStmt)
4732 continue;
4733 if (isa<ReturnStmt>(SubStmt))
4734 Self.Diag(SubStmt->getSourceRange().getBegin(),
4735 diag::err_return_in_constructor_handler);
4736 if (!isa<Expr>(SubStmt))
4737 SearchForReturnInStmt(Self, SubStmt);
4738 }
4739}
4740
4741void Sema::DiagnoseReturnInConstructorExceptionHandler(CXXTryStmt *TryBlock) {
4742 for (unsigned I = 0, E = TryBlock->getNumHandlers(); I != E; ++I) {
4743 CXXCatchStmt *Handler = TryBlock->getHandler(I);
4744 SearchForReturnInStmt(*this, Handler);
4745 }
4746}
Anders Carlssonf2a2e332009-05-14 01:09:04 +00004747
Mike Stump11289f42009-09-09 15:08:12 +00004748bool Sema::CheckOverridingFunctionReturnType(const CXXMethodDecl *New,
Anders Carlssonf2a2e332009-05-14 01:09:04 +00004749 const CXXMethodDecl *Old) {
John McCall9dd450b2009-09-21 23:43:11 +00004750 QualType NewTy = New->getType()->getAs<FunctionType>()->getResultType();
4751 QualType OldTy = Old->getType()->getAs<FunctionType>()->getResultType();
Anders Carlssonf2a2e332009-05-14 01:09:04 +00004752
4753 QualType CNewTy = Context.getCanonicalType(NewTy);
4754 QualType COldTy = Context.getCanonicalType(OldTy);
4755
Mike Stump11289f42009-09-09 15:08:12 +00004756 if (CNewTy == COldTy &&
Anders Carlssonf2a2e332009-05-14 01:09:04 +00004757 CNewTy.getCVRQualifiers() == COldTy.getCVRQualifiers())
4758 return false;
Mike Stump11289f42009-09-09 15:08:12 +00004759
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00004760 // Check if the return types are covariant
4761 QualType NewClassTy, OldClassTy;
Mike Stump11289f42009-09-09 15:08:12 +00004762
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00004763 /// Both types must be pointers or references to classes.
4764 if (PointerType *NewPT = dyn_cast<PointerType>(NewTy)) {
4765 if (PointerType *OldPT = dyn_cast<PointerType>(OldTy)) {
4766 NewClassTy = NewPT->getPointeeType();
4767 OldClassTy = OldPT->getPointeeType();
4768 }
4769 } else if (ReferenceType *NewRT = dyn_cast<ReferenceType>(NewTy)) {
4770 if (ReferenceType *OldRT = dyn_cast<ReferenceType>(OldTy)) {
4771 NewClassTy = NewRT->getPointeeType();
4772 OldClassTy = OldRT->getPointeeType();
4773 }
4774 }
Mike Stump11289f42009-09-09 15:08:12 +00004775
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00004776 // The return types aren't either both pointers or references to a class type.
4777 if (NewClassTy.isNull()) {
Mike Stump11289f42009-09-09 15:08:12 +00004778 Diag(New->getLocation(),
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00004779 diag::err_different_return_type_for_overriding_virtual_function)
4780 << New->getDeclName() << NewTy << OldTy;
4781 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
Mike Stump11289f42009-09-09 15:08:12 +00004782
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00004783 return true;
4784 }
Anders Carlssonf2a2e332009-05-14 01:09:04 +00004785
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00004786 if (NewClassTy.getUnqualifiedType() != OldClassTy.getUnqualifiedType()) {
4787 // Check if the new class derives from the old class.
4788 if (!IsDerivedFrom(NewClassTy, OldClassTy)) {
4789 Diag(New->getLocation(),
4790 diag::err_covariant_return_not_derived)
4791 << New->getDeclName() << NewTy << OldTy;
4792 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
4793 return true;
4794 }
Mike Stump11289f42009-09-09 15:08:12 +00004795
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00004796 // Check if we the conversion from derived to base is valid.
Mike Stump11289f42009-09-09 15:08:12 +00004797 if (CheckDerivedToBaseConversion(NewClassTy, OldClassTy,
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00004798 diag::err_covariant_return_inaccessible_base,
4799 diag::err_covariant_return_ambiguous_derived_to_base_conv,
4800 // FIXME: Should this point to the return type?
4801 New->getLocation(), SourceRange(), New->getDeclName())) {
4802 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
4803 return true;
4804 }
4805 }
Mike Stump11289f42009-09-09 15:08:12 +00004806
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00004807 // The qualifiers of the return types must be the same.
4808 if (CNewTy.getCVRQualifiers() != COldTy.getCVRQualifiers()) {
4809 Diag(New->getLocation(),
4810 diag::err_covariant_return_type_different_qualifications)
Anders Carlssonf2a2e332009-05-14 01:09:04 +00004811 << New->getDeclName() << NewTy << OldTy;
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00004812 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
4813 return true;
4814 };
Mike Stump11289f42009-09-09 15:08:12 +00004815
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00004816
4817 // The new class type must have the same or less qualifiers as the old type.
4818 if (NewClassTy.isMoreQualifiedThan(OldClassTy)) {
4819 Diag(New->getLocation(),
4820 diag::err_covariant_return_type_class_type_more_qualified)
4821 << New->getDeclName() << NewTy << OldTy;
4822 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
4823 return true;
4824 };
Mike Stump11289f42009-09-09 15:08:12 +00004825
Anders Carlsson8fb0b8a2009-05-14 19:52:19 +00004826 return false;
Anders Carlssonf2a2e332009-05-14 01:09:04 +00004827}
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00004828
4829/// ActOnCXXEnterDeclInitializer - Invoked when we are about to parse an
4830/// initializer for the declaration 'Dcl'.
4831/// After this method is called, according to [C++ 3.4.1p13], if 'Dcl' is a
4832/// static data member of class X, names should be looked up in the scope of
4833/// class X.
4834void Sema::ActOnCXXEnterDeclInitializer(Scope *S, DeclPtrTy Dcl) {
Douglas Gregorc8c277a2009-08-24 11:57:43 +00004835 AdjustDeclIfTemplate(Dcl);
Mike Stump11289f42009-09-09 15:08:12 +00004836
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00004837 Decl *D = Dcl.getAs<Decl>();
4838 // If there is no declaration, there was an error parsing it.
4839 if (D == 0)
4840 return;
4841
4842 // Check whether it is a declaration with a nested name specifier like
4843 // int foo::bar;
4844 if (!D->isOutOfLine())
4845 return;
Mike Stump11289f42009-09-09 15:08:12 +00004846
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00004847 // C++ [basic.lookup.unqual]p13
4848 //
4849 // A name used in the definition of a static data member of class X
4850 // (after the qualified-id of the static member) is looked up as if the name
4851 // was used in a member function of X.
Mike Stump11289f42009-09-09 15:08:12 +00004852
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00004853 // Change current context into the context of the initializing declaration.
Argyrios Kyrtzidis7bcce492009-06-17 23:15:40 +00004854 EnterDeclaratorContext(S, D->getDeclContext());
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00004855}
4856
4857/// ActOnCXXExitDeclInitializer - Invoked after we are finished parsing an
4858/// initializer for the declaration 'Dcl'.
4859void Sema::ActOnCXXExitDeclInitializer(Scope *S, DeclPtrTy Dcl) {
Douglas Gregorc8c277a2009-08-24 11:57:43 +00004860 AdjustDeclIfTemplate(Dcl);
Mike Stump11289f42009-09-09 15:08:12 +00004861
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00004862 Decl *D = Dcl.getAs<Decl>();
4863 // If there is no declaration, there was an error parsing it.
4864 if (D == 0)
4865 return;
4866
4867 // Check whether it is a declaration with a nested name specifier like
4868 // int foo::bar;
4869 if (!D->isOutOfLine())
4870 return;
4871
4872 assert(S->getEntity() == D->getDeclContext() && "Context imbalance!");
Argyrios Kyrtzidis7bcce492009-06-17 23:15:40 +00004873 ExitDeclaratorContext(S);
Argyrios Kyrtzidis3df19782009-06-17 22:50:06 +00004874}