blob: 3d278b13ef4a9766ea745ad651ad17acb4cfca59 [file] [log] [blame]
Chris Lattner3d1cee32008-04-08 05:04:30 +00001//===------ SemaDeclCXX.cpp - Semantic Analysis for C++ Declarations ------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements semantic analysis for C++ declarations.
11//
12//===----------------------------------------------------------------------===//
13
14#include "Sema.h"
Douglas Gregor7ad83902008-11-05 04:29:56 +000015#include "SemaInherit.h"
Argyrios Kyrtzidisa4755c62008-08-09 00:58:37 +000016#include "clang/AST/ASTConsumer.h"
Douglas Gregore37ac4f2008-04-13 21:30:24 +000017#include "clang/AST/ASTContext.h"
Anders Carlsson8211eff2009-03-24 01:19:16 +000018#include "clang/AST/DeclVisitor.h"
Douglas Gregor02189362008-10-22 21:13:31 +000019#include "clang/AST/TypeOrdering.h"
Chris Lattner8123a952008-04-10 02:22:51 +000020#include "clang/AST/StmtVisitor.h"
Anders Carlssonb7906612009-08-26 23:45:07 +000021#include "clang/Basic/PartialDiagnostic.h"
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +000022#include "clang/Lex/Preprocessor.h"
Daniel Dunbar12bc6922008-08-11 03:27:53 +000023#include "clang/Parse/DeclSpec.h"
Douglas Gregor3fc749d2008-12-23 00:26:44 +000024#include "llvm/ADT/STLExtras.h"
Chris Lattner8123a952008-04-10 02:22:51 +000025#include "llvm/Support/Compiler.h"
Douglas Gregor8e9bebd2008-10-21 16:13:35 +000026#include <algorithm> // for std::equal
Douglas Gregorf8268ae2008-10-22 17:49:05 +000027#include <map>
Chris Lattner3d1cee32008-04-08 05:04:30 +000028
29using namespace clang;
30
Chris Lattner8123a952008-04-10 02:22:51 +000031//===----------------------------------------------------------------------===//
32// CheckDefaultArgumentVisitor
33//===----------------------------------------------------------------------===//
34
Chris Lattner9e979552008-04-12 23:52:44 +000035namespace {
36 /// CheckDefaultArgumentVisitor - C++ [dcl.fct.default] Traverses
37 /// the default argument of a parameter to determine whether it
38 /// contains any ill-formed subexpressions. For example, this will
39 /// diagnose the use of local variables or parameters within the
40 /// default argument expression.
41 class VISIBILITY_HIDDEN CheckDefaultArgumentVisitor
Chris Lattnerb77792e2008-07-26 22:17:49 +000042 : public StmtVisitor<CheckDefaultArgumentVisitor, bool> {
Chris Lattner9e979552008-04-12 23:52:44 +000043 Expr *DefaultArg;
44 Sema *S;
Chris Lattner8123a952008-04-10 02:22:51 +000045
Chris Lattner9e979552008-04-12 23:52:44 +000046 public:
47 CheckDefaultArgumentVisitor(Expr *defarg, Sema *s)
48 : DefaultArg(defarg), S(s) {}
Chris Lattner8123a952008-04-10 02:22:51 +000049
Chris Lattner9e979552008-04-12 23:52:44 +000050 bool VisitExpr(Expr *Node);
51 bool VisitDeclRefExpr(DeclRefExpr *DRE);
Douglas Gregor796da182008-11-04 14:32:21 +000052 bool VisitCXXThisExpr(CXXThisExpr *ThisE);
Chris Lattner9e979552008-04-12 23:52:44 +000053 };
Chris Lattner8123a952008-04-10 02:22:51 +000054
Chris Lattner9e979552008-04-12 23:52:44 +000055 /// VisitExpr - Visit all of the children of this expression.
56 bool CheckDefaultArgumentVisitor::VisitExpr(Expr *Node) {
57 bool IsInvalid = false;
Chris Lattnerb77792e2008-07-26 22:17:49 +000058 for (Stmt::child_iterator I = Node->child_begin(),
59 E = Node->child_end(); I != E; ++I)
60 IsInvalid |= Visit(*I);
Chris Lattner9e979552008-04-12 23:52:44 +000061 return IsInvalid;
Chris Lattner8123a952008-04-10 02:22:51 +000062 }
63
Chris Lattner9e979552008-04-12 23:52:44 +000064 /// VisitDeclRefExpr - Visit a reference to a declaration, to
65 /// determine whether this declaration can be used in the default
66 /// argument expression.
67 bool CheckDefaultArgumentVisitor::VisitDeclRefExpr(DeclRefExpr *DRE) {
Douglas Gregor8e9bebd2008-10-21 16:13:35 +000068 NamedDecl *Decl = DRE->getDecl();
Chris Lattner9e979552008-04-12 23:52:44 +000069 if (ParmVarDecl *Param = dyn_cast<ParmVarDecl>(Decl)) {
70 // C++ [dcl.fct.default]p9
71 // Default arguments are evaluated each time the function is
72 // called. The order of evaluation of function arguments is
73 // unspecified. Consequently, parameters of a function shall not
74 // be used in default argument expressions, even if they are not
75 // evaluated. Parameters of a function declared before a default
76 // argument expression are in scope and can hide namespace and
77 // class member names.
78 return S->Diag(DRE->getSourceRange().getBegin(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +000079 diag::err_param_default_argument_references_param)
Chris Lattner08631c52008-11-23 21:45:46 +000080 << Param->getDeclName() << DefaultArg->getSourceRange();
Steve Naroff248a7532008-04-15 22:42:06 +000081 } else if (VarDecl *VDecl = dyn_cast<VarDecl>(Decl)) {
Chris Lattner9e979552008-04-12 23:52:44 +000082 // C++ [dcl.fct.default]p7
83 // Local variables shall not be used in default argument
84 // expressions.
Steve Naroff248a7532008-04-15 22:42:06 +000085 if (VDecl->isBlockVarDecl())
86 return S->Diag(DRE->getSourceRange().getBegin(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +000087 diag::err_param_default_argument_references_local)
Chris Lattner08631c52008-11-23 21:45:46 +000088 << VDecl->getDeclName() << DefaultArg->getSourceRange();
Chris Lattner9e979552008-04-12 23:52:44 +000089 }
Chris Lattner8123a952008-04-10 02:22:51 +000090
Douglas Gregor3996f232008-11-04 13:41:56 +000091 return false;
92 }
Chris Lattner9e979552008-04-12 23:52:44 +000093
Douglas Gregor796da182008-11-04 14:32:21 +000094 /// VisitCXXThisExpr - Visit a C++ "this" expression.
95 bool CheckDefaultArgumentVisitor::VisitCXXThisExpr(CXXThisExpr *ThisE) {
96 // C++ [dcl.fct.default]p8:
97 // The keyword this shall not be used in a default argument of a
98 // member function.
99 return S->Diag(ThisE->getSourceRange().getBegin(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000100 diag::err_param_default_argument_references_this)
101 << ThisE->getSourceRange();
Chris Lattner9e979552008-04-12 23:52:44 +0000102 }
Chris Lattner8123a952008-04-10 02:22:51 +0000103}
104
Anders Carlssoned961f92009-08-25 02:29:20 +0000105bool
106Sema::SetParamDefaultArgument(ParmVarDecl *Param, ExprArg DefaultArg,
107 SourceLocation EqualLoc)
108{
109 QualType ParamType = Param->getType();
110
Anders Carlsson5653ca52009-08-25 13:46:13 +0000111 if (RequireCompleteType(Param->getLocation(), Param->getType(),
112 diag::err_typecheck_decl_incomplete_type)) {
113 Param->setInvalidDecl();
114 return true;
115 }
116
Anders Carlssoned961f92009-08-25 02:29:20 +0000117 Expr *Arg = (Expr *)DefaultArg.get();
118
119 // C++ [dcl.fct.default]p5
120 // A default argument expression is implicitly converted (clause
121 // 4) to the parameter type. The default argument expression has
122 // the same semantic constraints as the initializer expression in
123 // a declaration of a variable of the parameter type, using the
124 // copy-initialization semantics (8.5).
125 if (CheckInitializerTypes(Arg, ParamType, EqualLoc,
126 Param->getDeclName(), /*DirectInit=*/false))
Anders Carlsson9351c172009-08-25 03:18:48 +0000127 return true;
Anders Carlssoned961f92009-08-25 02:29:20 +0000128
129 Arg = MaybeCreateCXXExprWithTemporaries(Arg, /*DestroyTemps=*/false);
130
131 // Okay: add the default argument to the parameter
132 Param->setDefaultArg(Arg);
133
134 DefaultArg.release();
135
Anders Carlsson9351c172009-08-25 03:18:48 +0000136 return false;
Anders Carlssoned961f92009-08-25 02:29:20 +0000137}
138
Chris Lattner8123a952008-04-10 02:22:51 +0000139/// ActOnParamDefaultArgument - Check whether the default argument
140/// provided for a function parameter is well-formed. If so, attach it
141/// to the parameter declaration.
Chris Lattner3d1cee32008-04-08 05:04:30 +0000142void
Chris Lattnerb28317a2009-03-28 19:18:32 +0000143Sema::ActOnParamDefaultArgument(DeclPtrTy param, SourceLocation EqualLoc,
Sebastian Redlf53597f2009-03-15 17:47:39 +0000144 ExprArg defarg) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000145 if (!param || !defarg.get())
146 return;
147
Chris Lattnerb28317a2009-03-28 19:18:32 +0000148 ParmVarDecl *Param = cast<ParmVarDecl>(param.getAs<Decl>());
Anders Carlsson5e300d12009-06-12 16:51:40 +0000149 UnparsedDefaultArgLocs.erase(Param);
150
Anders Carlssonf1b1d592009-05-01 19:30:39 +0000151 ExprOwningPtr<Expr> DefaultArg(this, defarg.takeAs<Expr>());
Chris Lattner3d1cee32008-04-08 05:04:30 +0000152 QualType ParamType = Param->getType();
153
154 // Default arguments are only permitted in C++
155 if (!getLangOptions().CPlusPlus) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000156 Diag(EqualLoc, diag::err_param_default_argument)
157 << DefaultArg->getSourceRange();
Douglas Gregor72b505b2008-12-16 21:30:33 +0000158 Param->setInvalidDecl();
Chris Lattner3d1cee32008-04-08 05:04:30 +0000159 return;
160 }
161
Anders Carlsson66e30672009-08-25 01:02:06 +0000162 // Check that the default argument is well-formed
163 CheckDefaultArgumentVisitor DefaultArgChecker(DefaultArg.get(), this);
164 if (DefaultArgChecker.Visit(DefaultArg.get())) {
165 Param->setInvalidDecl();
166 return;
167 }
168
Anders Carlssoned961f92009-08-25 02:29:20 +0000169 SetParamDefaultArgument(Param, move(DefaultArg), EqualLoc);
Chris Lattner3d1cee32008-04-08 05:04:30 +0000170}
171
Douglas Gregor61366e92008-12-24 00:01:03 +0000172/// ActOnParamUnparsedDefaultArgument - We've seen a default
173/// argument for a function parameter, but we can't parse it yet
174/// because we're inside a class definition. Note that this default
175/// argument will be parsed later.
Chris Lattnerb28317a2009-03-28 19:18:32 +0000176void Sema::ActOnParamUnparsedDefaultArgument(DeclPtrTy param,
Anders Carlsson5e300d12009-06-12 16:51:40 +0000177 SourceLocation EqualLoc,
178 SourceLocation ArgLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000179 if (!param)
180 return;
181
Chris Lattnerb28317a2009-03-28 19:18:32 +0000182 ParmVarDecl *Param = cast<ParmVarDecl>(param.getAs<Decl>());
Douglas Gregor61366e92008-12-24 00:01:03 +0000183 if (Param)
184 Param->setUnparsedDefaultArg();
Anders Carlsson5e300d12009-06-12 16:51:40 +0000185
186 UnparsedDefaultArgLocs[Param] = ArgLoc;
Douglas Gregor61366e92008-12-24 00:01:03 +0000187}
188
Douglas Gregor72b505b2008-12-16 21:30:33 +0000189/// ActOnParamDefaultArgumentError - Parsing or semantic analysis of
190/// the default argument for the parameter param failed.
Chris Lattnerb28317a2009-03-28 19:18:32 +0000191void Sema::ActOnParamDefaultArgumentError(DeclPtrTy param) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000192 if (!param)
193 return;
194
Anders Carlsson5e300d12009-06-12 16:51:40 +0000195 ParmVarDecl *Param = cast<ParmVarDecl>(param.getAs<Decl>());
196
197 Param->setInvalidDecl();
198
199 UnparsedDefaultArgLocs.erase(Param);
Douglas Gregor72b505b2008-12-16 21:30:33 +0000200}
201
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000202/// CheckExtraCXXDefaultArguments - Check for any extra default
203/// arguments in the declarator, which is not a function declaration
204/// or definition and therefore is not permitted to have default
205/// arguments. This routine should be invoked for every declarator
206/// that is not a function declaration or definition.
207void Sema::CheckExtraCXXDefaultArguments(Declarator &D) {
208 // C++ [dcl.fct.default]p3
209 // A default argument expression shall be specified only in the
210 // parameter-declaration-clause of a function declaration or in a
211 // template-parameter (14.1). It shall not be specified for a
212 // parameter pack. If it is specified in a
213 // parameter-declaration-clause, it shall not occur within a
214 // declarator or abstract-declarator of a parameter-declaration.
Chris Lattnerb28317a2009-03-28 19:18:32 +0000215 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i) {
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000216 DeclaratorChunk &chunk = D.getTypeObject(i);
217 if (chunk.Kind == DeclaratorChunk::Function) {
Chris Lattnerb28317a2009-03-28 19:18:32 +0000218 for (unsigned argIdx = 0, e = chunk.Fun.NumArgs; argIdx != e; ++argIdx) {
219 ParmVarDecl *Param =
220 cast<ParmVarDecl>(chunk.Fun.ArgInfo[argIdx].Param.getAs<Decl>());
Douglas Gregor61366e92008-12-24 00:01:03 +0000221 if (Param->hasUnparsedDefaultArg()) {
222 CachedTokens *Toks = chunk.Fun.ArgInfo[argIdx].DefaultArgTokens;
Douglas Gregor72b505b2008-12-16 21:30:33 +0000223 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
224 << SourceRange((*Toks)[1].getLocation(), Toks->back().getLocation());
225 delete Toks;
226 chunk.Fun.ArgInfo[argIdx].DefaultArgTokens = 0;
Douglas Gregor61366e92008-12-24 00:01:03 +0000227 } else if (Param->getDefaultArg()) {
228 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
229 << Param->getDefaultArg()->getSourceRange();
230 Param->setDefaultArg(0);
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000231 }
232 }
233 }
234 }
235}
236
Chris Lattner3d1cee32008-04-08 05:04:30 +0000237// MergeCXXFunctionDecl - Merge two declarations of the same C++
238// function, once we already know that they have the same
Douglas Gregorcda9c672009-02-16 17:45:42 +0000239// type. Subroutine of MergeFunctionDecl. Returns true if there was an
240// error, false otherwise.
241bool Sema::MergeCXXFunctionDecl(FunctionDecl *New, FunctionDecl *Old) {
242 bool Invalid = false;
243
Chris Lattner3d1cee32008-04-08 05:04:30 +0000244 // C++ [dcl.fct.default]p4:
245 //
246 // 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).
257 for (unsigned p = 0, NumParams = Old->getNumParams(); p < NumParams; ++p) {
258 ParmVarDecl *OldParam = Old->getParamDecl(p);
259 ParmVarDecl *NewParam = New->getParamDecl(p);
260
261 if(OldParam->getDefaultArg() && NewParam->getDefaultArg()) {
262 Diag(NewParam->getLocation(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000263 diag::err_param_default_argument_redefinition)
264 << NewParam->getDefaultArg()->getSourceRange();
Chris Lattner5f4a6822008-11-23 23:12:31 +0000265 Diag(OldParam->getLocation(), diag::note_previous_definition);
Douglas Gregorcda9c672009-02-16 17:45:42 +0000266 Invalid = true;
Chris Lattner3d1cee32008-04-08 05:04:30 +0000267 } else if (OldParam->getDefaultArg()) {
268 // Merge the old default argument into the new parameter
269 NewParam->setDefaultArg(OldParam->getDefaultArg());
270 }
271 }
272
Sebastian Redl4994d2d2009-07-04 11:39:00 +0000273 if (CheckEquivalentExceptionSpec(
274 Old->getType()->getAsFunctionProtoType(), Old->getLocation(),
275 New->getType()->getAsFunctionProtoType(), New->getLocation())) {
276 Invalid = true;
277 }
278
Douglas Gregorcda9c672009-02-16 17:45:42 +0000279 return Invalid;
Chris Lattner3d1cee32008-04-08 05:04:30 +0000280}
281
282/// CheckCXXDefaultArguments - Verify that the default arguments for a
283/// function declaration are well-formed according to C++
284/// [dcl.fct.default].
285void Sema::CheckCXXDefaultArguments(FunctionDecl *FD) {
286 unsigned NumParams = FD->getNumParams();
287 unsigned p;
288
289 // Find first parameter with a default argument
290 for (p = 0; p < NumParams; ++p) {
291 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson5f49a0c2009-08-25 01:23:32 +0000292 if (Param->hasDefaultArg())
Chris Lattner3d1cee32008-04-08 05:04:30 +0000293 break;
294 }
295
296 // C++ [dcl.fct.default]p4:
297 // In a given function declaration, all parameters
298 // subsequent to a parameter with a default argument shall
299 // have default arguments supplied in this or previous
300 // declarations. A default argument shall not be redefined
301 // by a later declaration (not even to the same value).
302 unsigned LastMissingDefaultArg = 0;
303 for(; p < NumParams; ++p) {
304 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson5f49a0c2009-08-25 01:23:32 +0000305 if (!Param->hasDefaultArg()) {
Douglas Gregor72b505b2008-12-16 21:30:33 +0000306 if (Param->isInvalidDecl())
307 /* We already complained about this parameter. */;
308 else if (Param->getIdentifier())
Chris Lattner3d1cee32008-04-08 05:04:30 +0000309 Diag(Param->getLocation(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000310 diag::err_param_default_argument_missing_name)
Chris Lattner43b628c2008-11-19 07:32:16 +0000311 << Param->getIdentifier();
Chris Lattner3d1cee32008-04-08 05:04:30 +0000312 else
313 Diag(Param->getLocation(),
314 diag::err_param_default_argument_missing);
315
316 LastMissingDefaultArg = p;
317 }
318 }
319
320 if (LastMissingDefaultArg > 0) {
321 // Some default arguments were missing. Clear out all of the
322 // default arguments up to (and including) the last missing
323 // default argument, so that we leave the function parameters
324 // in a semantically valid state.
325 for (p = 0; p <= LastMissingDefaultArg; ++p) {
326 ParmVarDecl *Param = FD->getParamDecl(p);
Anders Carlsson5e300d12009-06-12 16:51:40 +0000327 if (Param->hasDefaultArg()) {
Douglas Gregor61366e92008-12-24 00:01:03 +0000328 if (!Param->hasUnparsedDefaultArg())
329 Param->getDefaultArg()->Destroy(Context);
Chris Lattner3d1cee32008-04-08 05:04:30 +0000330 Param->setDefaultArg(0);
331 }
332 }
333 }
334}
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000335
Douglas Gregorb48fe382008-10-31 09:07:45 +0000336/// isCurrentClassName - Determine whether the identifier II is the
337/// name of the class type currently being defined. In the case of
338/// nested classes, this will only return true if II is the name of
339/// the innermost class.
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000340bool Sema::isCurrentClassName(const IdentifierInfo &II, Scope *,
341 const CXXScopeSpec *SS) {
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +0000342 CXXRecordDecl *CurDecl;
Douglas Gregore4e5b052009-03-19 00:18:19 +0000343 if (SS && SS->isSet() && !SS->isInvalid()) {
Douglas Gregorac373c42009-08-21 22:16:40 +0000344 DeclContext *DC = computeDeclContext(*SS, true);
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +0000345 CurDecl = dyn_cast_or_null<CXXRecordDecl>(DC);
346 } else
347 CurDecl = dyn_cast_or_null<CXXRecordDecl>(CurContext);
348
349 if (CurDecl)
Douglas Gregorb48fe382008-10-31 09:07:45 +0000350 return &II == CurDecl->getIdentifier();
351 else
352 return false;
353}
354
Douglas Gregor2943aed2009-03-03 04:44:36 +0000355/// \brief Check the validity of a C++ base class specifier.
356///
357/// \returns a new CXXBaseSpecifier if well-formed, emits diagnostics
358/// and returns NULL otherwise.
359CXXBaseSpecifier *
360Sema::CheckBaseSpecifier(CXXRecordDecl *Class,
361 SourceRange SpecifierRange,
362 bool Virtual, AccessSpecifier Access,
363 QualType BaseType,
364 SourceLocation BaseLoc) {
365 // C++ [class.union]p1:
366 // A union shall not have base classes.
367 if (Class->isUnion()) {
368 Diag(Class->getLocation(), diag::err_base_clause_on_union)
369 << SpecifierRange;
370 return 0;
371 }
372
373 if (BaseType->isDependentType())
Fariborz Jahanian71c6e712009-07-22 17:41:53 +0000374 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
Douglas Gregor2943aed2009-03-03 04:44:36 +0000375 Class->getTagKind() == RecordDecl::TK_class,
376 Access, BaseType);
377
378 // Base specifiers must be record types.
379 if (!BaseType->isRecordType()) {
380 Diag(BaseLoc, diag::err_base_must_be_class) << SpecifierRange;
381 return 0;
382 }
383
384 // C++ [class.union]p1:
385 // A union shall not be used as a base class.
386 if (BaseType->isUnionType()) {
387 Diag(BaseLoc, diag::err_union_as_base_class) << SpecifierRange;
388 return 0;
389 }
390
391 // C++ [class.derived]p2:
392 // The class-name in a base-specifier shall not be an incompletely
393 // defined class.
Anders Carlssonb7906612009-08-26 23:45:07 +0000394 if (RequireCompleteType(BaseLoc, BaseType,
395 PDiag(diag::err_incomplete_base_class)
396 << SpecifierRange))
Douglas Gregor2943aed2009-03-03 04:44:36 +0000397 return 0;
398
Eli Friedman1d954f62009-08-15 21:55:26 +0000399 // If the base class is polymorphic or isn't empty, the new one is/isn't, too.
Ted Kremenek6217b802009-07-29 21:53:49 +0000400 RecordDecl *BaseDecl = BaseType->getAs<RecordType>()->getDecl();
Douglas Gregor2943aed2009-03-03 04:44:36 +0000401 assert(BaseDecl && "Record type has no declaration");
402 BaseDecl = BaseDecl->getDefinition(Context);
403 assert(BaseDecl && "Base type is not incomplete, but has no definition");
Eli Friedman1d954f62009-08-15 21:55:26 +0000404 CXXRecordDecl * CXXBaseDecl = cast<CXXRecordDecl>(BaseDecl);
405 assert(CXXBaseDecl && "Base type is not a C++ type");
406 if (!CXXBaseDecl->isEmpty())
407 Class->setEmpty(false);
408 if (CXXBaseDecl->isPolymorphic())
Douglas Gregor2943aed2009-03-03 04:44:36 +0000409 Class->setPolymorphic(true);
410
411 // C++ [dcl.init.aggr]p1:
412 // An aggregate is [...] a class with [...] no base classes [...].
413 Class->setAggregate(false);
414 Class->setPOD(false);
415
Anders Carlsson347ba892009-04-16 00:08:20 +0000416 if (Virtual) {
417 // C++ [class.ctor]p5:
418 // A constructor is trivial if its class has no virtual base classes.
419 Class->setHasTrivialConstructor(false);
Douglas Gregor1f2023a2009-07-22 18:25:24 +0000420
421 // C++ [class.copy]p6:
422 // A copy constructor is trivial if its class has no virtual base classes.
423 Class->setHasTrivialCopyConstructor(false);
424
425 // C++ [class.copy]p11:
426 // A copy assignment operator is trivial if its class has no virtual
427 // base classes.
428 Class->setHasTrivialCopyAssignment(false);
Eli Friedman1d954f62009-08-15 21:55:26 +0000429
430 // C++0x [meta.unary.prop] is_empty:
431 // T is a class type, but not a union type, with ... no virtual base
432 // classes
433 Class->setEmpty(false);
Anders Carlsson347ba892009-04-16 00:08:20 +0000434 } else {
435 // C++ [class.ctor]p5:
436 // A constructor is trivial if all the direct base classes of its
437 // class have trivial constructors.
Douglas Gregor1f2023a2009-07-22 18:25:24 +0000438 if (!cast<CXXRecordDecl>(BaseDecl)->hasTrivialConstructor())
439 Class->setHasTrivialConstructor(false);
440
441 // C++ [class.copy]p6:
442 // A copy constructor is trivial if all the direct base classes of its
443 // class have trivial copy constructors.
444 if (!cast<CXXRecordDecl>(BaseDecl)->hasTrivialCopyConstructor())
445 Class->setHasTrivialCopyConstructor(false);
446
447 // C++ [class.copy]p11:
448 // A copy assignment operator is trivial if all the direct base classes
449 // of its class have trivial copy assignment operators.
450 if (!cast<CXXRecordDecl>(BaseDecl)->hasTrivialCopyAssignment())
451 Class->setHasTrivialCopyAssignment(false);
Anders Carlsson347ba892009-04-16 00:08:20 +0000452 }
Anders Carlsson072abef2009-04-17 02:34:54 +0000453
454 // C++ [class.ctor]p3:
455 // A destructor is trivial if all the direct base classes of its class
456 // have trivial destructors.
Douglas Gregor1f2023a2009-07-22 18:25:24 +0000457 if (!cast<CXXRecordDecl>(BaseDecl)->hasTrivialDestructor())
458 Class->setHasTrivialDestructor(false);
Anders Carlsson347ba892009-04-16 00:08:20 +0000459
Douglas Gregor2943aed2009-03-03 04:44:36 +0000460 // Create the base specifier.
461 // FIXME: Allocate via ASTContext?
Fariborz Jahanian71c6e712009-07-22 17:41:53 +0000462 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual,
Douglas Gregor2943aed2009-03-03 04:44:36 +0000463 Class->getTagKind() == RecordDecl::TK_class,
464 Access, BaseType);
465}
466
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000467/// ActOnBaseSpecifier - Parsed a base specifier. A base specifier is
468/// one entry in the base class list of a class specifier, for
469/// example:
470/// class foo : public bar, virtual private baz {
471/// 'public bar' and 'virtual private baz' are each base-specifiers.
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000472Sema::BaseResult
Chris Lattnerb28317a2009-03-28 19:18:32 +0000473Sema::ActOnBaseSpecifier(DeclPtrTy classdecl, SourceRange SpecifierRange,
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000474 bool Virtual, AccessSpecifier Access,
475 TypeTy *basetype, SourceLocation BaseLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000476 if (!classdecl)
477 return true;
478
Douglas Gregor40808ce2009-03-09 23:48:35 +0000479 AdjustDeclIfTemplate(classdecl);
Chris Lattnerb28317a2009-03-28 19:18:32 +0000480 CXXRecordDecl *Class = cast<CXXRecordDecl>(classdecl.getAs<Decl>());
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +0000481 QualType BaseType = GetTypeFromParser(basetype);
Douglas Gregor2943aed2009-03-03 04:44:36 +0000482 if (CXXBaseSpecifier *BaseSpec = CheckBaseSpecifier(Class, SpecifierRange,
483 Virtual, Access,
484 BaseType, BaseLoc))
485 return BaseSpec;
486
487 return true;
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000488}
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000489
Douglas Gregor2943aed2009-03-03 04:44:36 +0000490/// \brief Performs the actual work of attaching the given base class
491/// specifiers to a C++ class.
492bool Sema::AttachBaseSpecifiers(CXXRecordDecl *Class, CXXBaseSpecifier **Bases,
493 unsigned NumBases) {
494 if (NumBases == 0)
495 return false;
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000496
497 // Used to keep track of which base types we have already seen, so
498 // that we can properly diagnose redundant direct base types. Note
Douglas Gregor57c856b2008-10-23 18:13:27 +0000499 // that the key is always the unqualified canonical type of the base
500 // class.
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000501 std::map<QualType, CXXBaseSpecifier*, QualTypeOrdering> KnownBaseTypes;
502
503 // Copy non-redundant base specifiers into permanent storage.
Douglas Gregor57c856b2008-10-23 18:13:27 +0000504 unsigned NumGoodBases = 0;
Douglas Gregor2943aed2009-03-03 04:44:36 +0000505 bool Invalid = false;
Douglas Gregor57c856b2008-10-23 18:13:27 +0000506 for (unsigned idx = 0; idx < NumBases; ++idx) {
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000507 QualType NewBaseType
Douglas Gregor2943aed2009-03-03 04:44:36 +0000508 = Context.getCanonicalType(Bases[idx]->getType());
Douglas Gregor57c856b2008-10-23 18:13:27 +0000509 NewBaseType = NewBaseType.getUnqualifiedType();
510
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000511 if (KnownBaseTypes[NewBaseType]) {
512 // C++ [class.mi]p3:
513 // A class shall not be specified as a direct base class of a
514 // derived class more than once.
Douglas Gregor2943aed2009-03-03 04:44:36 +0000515 Diag(Bases[idx]->getSourceRange().getBegin(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000516 diag::err_duplicate_base_class)
Chris Lattnerd1625842008-11-24 06:25:27 +0000517 << KnownBaseTypes[NewBaseType]->getType()
Douglas Gregor2943aed2009-03-03 04:44:36 +0000518 << Bases[idx]->getSourceRange();
Douglas Gregor57c856b2008-10-23 18:13:27 +0000519
520 // Delete the duplicate base class specifier; we're going to
521 // overwrite its pointer later.
Douglas Gregor2aef06d2009-07-22 20:55:49 +0000522 Context.Deallocate(Bases[idx]);
Douglas Gregor2943aed2009-03-03 04:44:36 +0000523
524 Invalid = true;
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000525 } else {
526 // Okay, add this new base class.
Douglas Gregor2943aed2009-03-03 04:44:36 +0000527 KnownBaseTypes[NewBaseType] = Bases[idx];
528 Bases[NumGoodBases++] = Bases[idx];
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000529 }
530 }
531
532 // Attach the remaining base class specifiers to the derived class.
Fariborz Jahanian5ffcd7b2009-07-02 18:26:15 +0000533 Class->setBases(Context, Bases, NumGoodBases);
Douglas Gregor57c856b2008-10-23 18:13:27 +0000534
535 // Delete the remaining (good) base class specifiers, since their
536 // data has been copied into the CXXRecordDecl.
537 for (unsigned idx = 0; idx < NumGoodBases; ++idx)
Douglas Gregor2aef06d2009-07-22 20:55:49 +0000538 Context.Deallocate(Bases[idx]);
Douglas Gregor2943aed2009-03-03 04:44:36 +0000539
540 return Invalid;
541}
542
543/// ActOnBaseSpecifiers - Attach the given base specifiers to the
544/// class, after checking whether there are any duplicate base
545/// classes.
Chris Lattnerb28317a2009-03-28 19:18:32 +0000546void Sema::ActOnBaseSpecifiers(DeclPtrTy ClassDecl, BaseTy **Bases,
Douglas Gregor2943aed2009-03-03 04:44:36 +0000547 unsigned NumBases) {
548 if (!ClassDecl || !Bases || !NumBases)
549 return;
550
551 AdjustDeclIfTemplate(ClassDecl);
Chris Lattnerb28317a2009-03-28 19:18:32 +0000552 AttachBaseSpecifiers(cast<CXXRecordDecl>(ClassDecl.getAs<Decl>()),
Douglas Gregor2943aed2009-03-03 04:44:36 +0000553 (CXXBaseSpecifier**)(Bases), NumBases);
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000554}
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +0000555
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000556//===----------------------------------------------------------------------===//
557// C++ class member Handling
558//===----------------------------------------------------------------------===//
559
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000560/// ActOnCXXMemberDeclarator - This is invoked when a C++ class member
561/// declarator is parsed. 'AS' is the access specifier, 'BW' specifies the
562/// bitfield width if there is one and 'InitExpr' specifies the initializer if
Chris Lattnerb6688e02009-04-12 22:37:57 +0000563/// any.
Chris Lattnerb28317a2009-03-28 19:18:32 +0000564Sema::DeclPtrTy
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000565Sema::ActOnCXXMemberDeclarator(Scope *S, AccessSpecifier AS, Declarator &D,
Douglas Gregor37b372b2009-08-20 22:52:58 +0000566 MultiTemplateParamsArg TemplateParameterLists,
Sebastian Redle2b68332009-04-12 17:16:29 +0000567 ExprTy *BW, ExprTy *InitExpr, bool Deleted) {
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000568 const DeclSpec &DS = D.getDeclSpec();
Douglas Gregor10bd3682008-11-17 22:58:34 +0000569 DeclarationName Name = GetNameForDeclarator(D);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000570 Expr *BitWidth = static_cast<Expr*>(BW);
571 Expr *Init = static_cast<Expr*>(InitExpr);
572 SourceLocation Loc = D.getIdentifierLoc();
573
Sebastian Redl669d5d72008-11-14 23:42:31 +0000574 bool isFunc = D.isFunctionDeclarator();
575
John McCall67d1a672009-08-06 02:15:43 +0000576 assert(!DS.isFriendSpecified());
577
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000578 // C++ 9.2p6: A member shall not be declared to have automatic storage
579 // duration (auto, register) or with the extern storage-class-specifier.
Sebastian Redl669d5d72008-11-14 23:42:31 +0000580 // C++ 7.1.1p8: The mutable specifier can be applied only to names of class
581 // data members and cannot be applied to names declared const or static,
582 // and cannot be applied to reference members.
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000583 switch (DS.getStorageClassSpec()) {
584 case DeclSpec::SCS_unspecified:
585 case DeclSpec::SCS_typedef:
586 case DeclSpec::SCS_static:
587 // FALL THROUGH.
588 break;
Sebastian Redl669d5d72008-11-14 23:42:31 +0000589 case DeclSpec::SCS_mutable:
590 if (isFunc) {
591 if (DS.getStorageClassSpecLoc().isValid())
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000592 Diag(DS.getStorageClassSpecLoc(), diag::err_mutable_function);
Sebastian Redl669d5d72008-11-14 23:42:31 +0000593 else
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000594 Diag(DS.getThreadSpecLoc(), diag::err_mutable_function);
595
Sebastian Redla11f42f2008-11-17 23:24:37 +0000596 // FIXME: It would be nicer if the keyword was ignored only for this
597 // declarator. Otherwise we could get follow-up errors.
Sebastian Redl669d5d72008-11-14 23:42:31 +0000598 D.getMutableDeclSpec().ClearStorageClassSpecs();
599 } else {
600 QualType T = GetTypeForDeclarator(D, S);
601 diag::kind err = static_cast<diag::kind>(0);
602 if (T->isReferenceType())
603 err = diag::err_mutable_reference;
604 else if (T.isConstQualified())
605 err = diag::err_mutable_const;
606 if (err != 0) {
607 if (DS.getStorageClassSpecLoc().isValid())
608 Diag(DS.getStorageClassSpecLoc(), err);
609 else
610 Diag(DS.getThreadSpecLoc(), err);
Sebastian Redla11f42f2008-11-17 23:24:37 +0000611 // FIXME: It would be nicer if the keyword was ignored only for this
612 // declarator. Otherwise we could get follow-up errors.
Sebastian Redl669d5d72008-11-14 23:42:31 +0000613 D.getMutableDeclSpec().ClearStorageClassSpecs();
614 }
615 }
616 break;
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000617 default:
618 if (DS.getStorageClassSpecLoc().isValid())
619 Diag(DS.getStorageClassSpecLoc(),
620 diag::err_storageclass_invalid_for_member);
621 else
622 Diag(DS.getThreadSpecLoc(), diag::err_storageclass_invalid_for_member);
623 D.getMutableDeclSpec().ClearStorageClassSpecs();
624 }
625
Argyrios Kyrtzidisd6caa9e2008-10-15 20:23:22 +0000626 if (!isFunc &&
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000627 D.getDeclSpec().getTypeSpecType() == DeclSpec::TST_typename &&
Argyrios Kyrtzidisd6caa9e2008-10-15 20:23:22 +0000628 D.getNumTypeObjects() == 0) {
Argyrios Kyrtzidisde933f02008-10-08 22:20:31 +0000629 // Check also for this case:
630 //
631 // typedef int f();
632 // f a;
633 //
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +0000634 QualType TDType = GetTypeFromParser(DS.getTypeRep());
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000635 isFunc = TDType->isFunctionType();
Argyrios Kyrtzidisde933f02008-10-08 22:20:31 +0000636 }
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000637
Sebastian Redl669d5d72008-11-14 23:42:31 +0000638 bool isInstField = ((DS.getStorageClassSpec() == DeclSpec::SCS_unspecified ||
639 DS.getStorageClassSpec() == DeclSpec::SCS_mutable) &&
Argyrios Kyrtzidisde933f02008-10-08 22:20:31 +0000640 !isFunc);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000641
642 Decl *Member;
Chris Lattner24793662009-03-05 22:45:59 +0000643 if (isInstField) {
Douglas Gregor37b372b2009-08-20 22:52:58 +0000644 // FIXME: Check for template parameters!
Douglas Gregor4dd55f52009-03-11 20:50:30 +0000645 Member = HandleField(S, cast<CXXRecordDecl>(CurContext), Loc, D, BitWidth,
646 AS);
Chris Lattner6f8ce142009-03-05 23:03:49 +0000647 assert(Member && "HandleField never returns null");
Chris Lattner24793662009-03-05 22:45:59 +0000648 } else {
Douglas Gregor37b372b2009-08-20 22:52:58 +0000649 Member = HandleDeclarator(S, D, move(TemplateParameterLists), false)
650 .getAs<Decl>();
Chris Lattner6f8ce142009-03-05 23:03:49 +0000651 if (!Member) {
652 if (BitWidth) DeleteExpr(BitWidth);
Chris Lattner682bf922009-03-29 16:50:03 +0000653 return DeclPtrTy();
Chris Lattner6f8ce142009-03-05 23:03:49 +0000654 }
Chris Lattner8b963ef2009-03-05 23:01:03 +0000655
656 // Non-instance-fields can't have a bitfield.
657 if (BitWidth) {
658 if (Member->isInvalidDecl()) {
659 // don't emit another diagnostic.
Douglas Gregor2d2e9cf2009-03-11 20:22:50 +0000660 } else if (isa<VarDecl>(Member)) {
Chris Lattner8b963ef2009-03-05 23:01:03 +0000661 // C++ 9.6p3: A bit-field shall not be a static member.
662 // "static member 'A' cannot be a bit-field"
663 Diag(Loc, diag::err_static_not_bitfield)
664 << Name << BitWidth->getSourceRange();
665 } else if (isa<TypedefDecl>(Member)) {
666 // "typedef member 'x' cannot be a bit-field"
667 Diag(Loc, diag::err_typedef_not_bitfield)
668 << Name << BitWidth->getSourceRange();
669 } else {
670 // A function typedef ("typedef int f(); f a;").
671 // C++ 9.6p3: A bit-field shall have integral or enumeration type.
672 Diag(Loc, diag::err_not_integral_type_bitfield)
Douglas Gregor3cf538d2009-03-11 18:59:21 +0000673 << Name << cast<ValueDecl>(Member)->getType()
674 << BitWidth->getSourceRange();
Chris Lattner8b963ef2009-03-05 23:01:03 +0000675 }
676
677 DeleteExpr(BitWidth);
678 BitWidth = 0;
679 Member->setInvalidDecl();
680 }
Douglas Gregor4dd55f52009-03-11 20:50:30 +0000681
682 Member->setAccess(AS);
Douglas Gregor37b372b2009-08-20 22:52:58 +0000683
684 // If we have declared a member function template, set the access of the
685 // templated declaration as well.
686 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Member))
687 FunTmpl->getTemplatedDecl()->setAccess(AS);
Chris Lattner24793662009-03-05 22:45:59 +0000688 }
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000689
Douglas Gregor10bd3682008-11-17 22:58:34 +0000690 assert((Name || isInstField) && "No identifier for non-field ?");
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000691
Douglas Gregor021c3b32009-03-11 23:00:04 +0000692 if (Init)
Chris Lattnerb28317a2009-03-28 19:18:32 +0000693 AddInitializerToDecl(DeclPtrTy::make(Member), ExprArg(*this, Init), false);
Sebastian Redle2b68332009-04-12 17:16:29 +0000694 if (Deleted) // FIXME: Source location is not very good.
695 SetDeclDeleted(DeclPtrTy::make(Member), D.getSourceRange().getBegin());
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000696
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000697 if (isInstField) {
Douglas Gregor44b43212008-12-11 16:49:14 +0000698 FieldCollector->Add(cast<FieldDecl>(Member));
Chris Lattner682bf922009-03-29 16:50:03 +0000699 return DeclPtrTy();
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000700 }
Chris Lattnerb28317a2009-03-28 19:18:32 +0000701 return DeclPtrTy::make(Member);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000702}
703
Douglas Gregor7ad83902008-11-05 04:29:56 +0000704/// ActOnMemInitializer - Handle a C++ member initializer.
705Sema::MemInitResult
Chris Lattnerb28317a2009-03-28 19:18:32 +0000706Sema::ActOnMemInitializer(DeclPtrTy ConstructorD,
Douglas Gregor7ad83902008-11-05 04:29:56 +0000707 Scope *S,
Fariborz Jahanianbcfad542009-06-30 23:26:25 +0000708 const CXXScopeSpec &SS,
Douglas Gregor7ad83902008-11-05 04:29:56 +0000709 IdentifierInfo *MemberOrBase,
Fariborz Jahanian96174332009-07-01 19:21:19 +0000710 TypeTy *TemplateTypeTy,
Douglas Gregor7ad83902008-11-05 04:29:56 +0000711 SourceLocation IdLoc,
712 SourceLocation LParenLoc,
713 ExprTy **Args, unsigned NumArgs,
714 SourceLocation *CommaLocs,
715 SourceLocation RParenLoc) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000716 if (!ConstructorD)
717 return true;
718
Douglas Gregorefd5bda2009-08-24 11:57:43 +0000719 AdjustDeclIfTemplate(ConstructorD);
720
Douglas Gregor7ad83902008-11-05 04:29:56 +0000721 CXXConstructorDecl *Constructor
Chris Lattnerb28317a2009-03-28 19:18:32 +0000722 = dyn_cast<CXXConstructorDecl>(ConstructorD.getAs<Decl>());
Douglas Gregor7ad83902008-11-05 04:29:56 +0000723 if (!Constructor) {
724 // The user wrote a constructor initializer on a function that is
725 // not a C++ constructor. Ignore the error for now, because we may
726 // have more member initializers coming; we'll diagnose it just
727 // once in ActOnMemInitializers.
728 return true;
729 }
730
731 CXXRecordDecl *ClassDecl = Constructor->getParent();
732
733 // C++ [class.base.init]p2:
734 // Names in a mem-initializer-id are looked up in the scope of the
735 // constructor’s class and, if not found in that scope, are looked
736 // up in the scope containing the constructor’s
737 // definition. [Note: if the constructor’s class contains a member
738 // with the same name as a direct or virtual base class of the
739 // class, a mem-initializer-id naming the member or base class and
740 // composed of a single identifier refers to the class member. A
741 // mem-initializer-id for the hidden base class may be specified
742 // using a qualified name. ]
Fariborz Jahanian96174332009-07-01 19:21:19 +0000743 if (!SS.getScopeRep() && !TemplateTypeTy) {
Fariborz Jahanianbcfad542009-06-30 23:26:25 +0000744 // Look for a member, first.
745 FieldDecl *Member = 0;
746 DeclContext::lookup_result Result
747 = ClassDecl->lookup(MemberOrBase);
748 if (Result.first != Result.second)
749 Member = dyn_cast<FieldDecl>(*Result.first);
Douglas Gregor7ad83902008-11-05 04:29:56 +0000750
Fariborz Jahanianbcfad542009-06-30 23:26:25 +0000751 // FIXME: Handle members of an anonymous union.
Douglas Gregor7ad83902008-11-05 04:29:56 +0000752
Eli Friedman59c04372009-07-29 19:44:27 +0000753 if (Member)
754 return BuildMemberInitializer(Member, (Expr**)Args, NumArgs, IdLoc,
755 RParenLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +0000756 }
Douglas Gregor7ad83902008-11-05 04:29:56 +0000757 // It didn't name a member, so see if it names a class.
Fariborz Jahanian96174332009-07-01 19:21:19 +0000758 TypeTy *BaseTy = TemplateTypeTy ? TemplateTypeTy
759 : getTypeName(*MemberOrBase, IdLoc, S, &SS);
Douglas Gregor7ad83902008-11-05 04:29:56 +0000760 if (!BaseTy)
Chris Lattner3c73c412008-11-19 08:23:25 +0000761 return Diag(IdLoc, diag::err_mem_init_not_member_or_class)
762 << MemberOrBase << SourceRange(IdLoc, RParenLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +0000763
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +0000764 QualType BaseType = GetTypeFromParser(BaseTy);
Douglas Gregor7ad83902008-11-05 04:29:56 +0000765
Eli Friedman59c04372009-07-29 19:44:27 +0000766 return BuildBaseInitializer(BaseType, (Expr **)Args, NumArgs, IdLoc,
767 RParenLoc, ClassDecl);
768}
769
770Sema::MemInitResult
771Sema::BuildMemberInitializer(FieldDecl *Member, Expr **Args,
772 unsigned NumArgs, SourceLocation IdLoc,
773 SourceLocation RParenLoc) {
774 bool HasDependentArg = false;
775 for (unsigned i = 0; i < NumArgs; i++)
776 HasDependentArg |= Args[i]->isTypeDependent();
777
778 CXXConstructorDecl *C = 0;
779 QualType FieldType = Member->getType();
780 if (const ArrayType *Array = Context.getAsArrayType(FieldType))
781 FieldType = Array->getElementType();
782 if (FieldType->isDependentType()) {
783 // Can't check init for dependent type.
Ted Kremenek6217b802009-07-29 21:53:49 +0000784 } else if (FieldType->getAs<RecordType>()) {
Eli Friedman59c04372009-07-29 19:44:27 +0000785 if (!HasDependentArg)
786 C = PerformInitializationByConstructor(
787 FieldType, (Expr **)Args, NumArgs, IdLoc,
788 SourceRange(IdLoc, RParenLoc), Member->getDeclName(), IK_Direct);
789 } else if (NumArgs != 1) {
790 return Diag(IdLoc, diag::err_mem_initializer_mismatch)
791 << Member->getDeclName() << SourceRange(IdLoc, RParenLoc);
792 } else if (!HasDependentArg) {
793 Expr *NewExp = (Expr*)Args[0];
794 if (PerformCopyInitialization(NewExp, FieldType, "passing"))
795 return true;
796 Args[0] = NewExp;
Douglas Gregor7ad83902008-11-05 04:29:56 +0000797 }
Eli Friedman59c04372009-07-29 19:44:27 +0000798 // FIXME: Perform direct initialization of the member.
799 return new (Context) CXXBaseOrMemberInitializer(Member, (Expr **)Args,
800 NumArgs, C, IdLoc);
801}
802
803Sema::MemInitResult
804Sema::BuildBaseInitializer(QualType BaseType, Expr **Args,
805 unsigned NumArgs, SourceLocation IdLoc,
806 SourceLocation RParenLoc, CXXRecordDecl *ClassDecl) {
807 bool HasDependentArg = false;
808 for (unsigned i = 0; i < NumArgs; i++)
809 HasDependentArg |= Args[i]->isTypeDependent();
810
811 if (!BaseType->isDependentType()) {
812 if (!BaseType->isRecordType())
813 return Diag(IdLoc, diag::err_base_init_does_not_name_class)
814 << BaseType << SourceRange(IdLoc, RParenLoc);
815
816 // C++ [class.base.init]p2:
817 // [...] Unless the mem-initializer-id names a nonstatic data
818 // member of the constructor’s class or a direct or virtual base
819 // of that class, the mem-initializer is ill-formed. A
820 // mem-initializer-list can initialize a base class using any
821 // name that denotes that base class type.
822
823 // First, check for a direct base class.
824 const CXXBaseSpecifier *DirectBaseSpec = 0;
825 for (CXXRecordDecl::base_class_const_iterator Base =
826 ClassDecl->bases_begin(); Base != ClassDecl->bases_end(); ++Base) {
827 if (Context.getCanonicalType(BaseType).getUnqualifiedType() ==
828 Context.getCanonicalType(Base->getType()).getUnqualifiedType()) {
829 // We found a direct base of this type. That's what we're
830 // initializing.
831 DirectBaseSpec = &*Base;
832 break;
833 }
834 }
835
836 // Check for a virtual base class.
837 // FIXME: We might be able to short-circuit this if we know in advance that
838 // there are no virtual bases.
839 const CXXBaseSpecifier *VirtualBaseSpec = 0;
840 if (!DirectBaseSpec || !DirectBaseSpec->isVirtual()) {
841 // We haven't found a base yet; search the class hierarchy for a
842 // virtual base class.
843 BasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
844 /*DetectVirtual=*/false);
845 if (IsDerivedFrom(Context.getTypeDeclType(ClassDecl), BaseType, Paths)) {
846 for (BasePaths::paths_iterator Path = Paths.begin();
847 Path != Paths.end(); ++Path) {
848 if (Path->back().Base->isVirtual()) {
849 VirtualBaseSpec = Path->back().Base;
850 break;
851 }
Douglas Gregor7ad83902008-11-05 04:29:56 +0000852 }
853 }
854 }
Eli Friedman59c04372009-07-29 19:44:27 +0000855
856 // C++ [base.class.init]p2:
857 // If a mem-initializer-id is ambiguous because it designates both
858 // a direct non-virtual base class and an inherited virtual base
859 // class, the mem-initializer is ill-formed.
860 if (DirectBaseSpec && VirtualBaseSpec)
861 return Diag(IdLoc, diag::err_base_init_direct_and_virtual)
862 << BaseType << SourceRange(IdLoc, RParenLoc);
863 // C++ [base.class.init]p2:
864 // Unless the mem-initializer-id names a nonstatic data membeer of the
865 // constructor's class ot a direst or virtual base of that class, the
866 // mem-initializer is ill-formed.
867 if (!DirectBaseSpec && !VirtualBaseSpec)
868 return Diag(IdLoc, diag::err_not_direct_base_or_virtual)
869 << BaseType << ClassDecl->getNameAsCString()
870 << SourceRange(IdLoc, RParenLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +0000871 }
872
Fariborz Jahaniand7b27e12009-07-23 00:42:24 +0000873 CXXConstructorDecl *C = 0;
Eli Friedman59c04372009-07-29 19:44:27 +0000874 if (!BaseType->isDependentType() && !HasDependentArg) {
875 DeclarationName Name = Context.DeclarationNames.getCXXConstructorName(
876 Context.getCanonicalType(BaseType));
877 C = PerformInitializationByConstructor(BaseType, (Expr **)Args, NumArgs,
878 IdLoc, SourceRange(IdLoc, RParenLoc),
879 Name, IK_Direct);
880 }
881
882 return new (Context) CXXBaseOrMemberInitializer(BaseType, (Expr **)Args,
Fariborz Jahaniand7b27e12009-07-23 00:42:24 +0000883 NumArgs, C, IdLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +0000884}
885
Fariborz Jahanian87595e42009-07-23 23:32:59 +0000886void
887Sema::BuildBaseOrMemberInitializers(ASTContext &C,
888 CXXConstructorDecl *Constructor,
889 CXXBaseOrMemberInitializer **Initializers,
890 unsigned NumInitializers
891 ) {
892 llvm::SmallVector<CXXBaseSpecifier *, 4>Bases;
893 llvm::SmallVector<FieldDecl *, 4>Members;
894
895 Constructor->setBaseOrMemberInitializers(C,
896 Initializers, NumInitializers,
897 Bases, Members);
898 for (unsigned int i = 0; i < Bases.size(); i++)
899 Diag(Bases[i]->getSourceRange().getBegin(),
900 diag::err_missing_default_constructor) << 0 << Bases[i]->getType();
901 for (unsigned int i = 0; i < Members.size(); i++)
902 Diag(Members[i]->getLocation(), diag::err_missing_default_constructor)
903 << 1 << Members[i]->getType();
904}
905
Eli Friedman6347f422009-07-21 19:28:10 +0000906static void *GetKeyForTopLevelField(FieldDecl *Field) {
907 // For anonymous unions, use the class declaration as the key.
Ted Kremenek6217b802009-07-29 21:53:49 +0000908 if (const RecordType *RT = Field->getType()->getAs<RecordType>()) {
Eli Friedman6347f422009-07-21 19:28:10 +0000909 if (RT->getDecl()->isAnonymousStructOrUnion())
910 return static_cast<void *>(RT->getDecl());
911 }
912 return static_cast<void *>(Field);
913}
914
Fariborz Jahaniane6494122009-08-11 18:49:54 +0000915static void *GetKeyForMember(CXXBaseOrMemberInitializer *Member,
916 bool MemberMaybeAnon=false) {
Eli Friedman6347f422009-07-21 19:28:10 +0000917 // For fields injected into the class via declaration of an anonymous union,
918 // use its anonymous union class declaration as the unique key.
919 if (FieldDecl *Field = Member->getMember()) {
Fariborz Jahaniane6494122009-08-11 18:49:54 +0000920 // After BuildBaseOrMemberInitializers call, Field is the anonymous union
921 // data member of the class. Data member used in the initializer list is
922 // in AnonUnionMember field.
923 if (MemberMaybeAnon && Field->isAnonymousStructOrUnion())
924 Field = Member->getAnonUnionMember();
Eli Friedman6347f422009-07-21 19:28:10 +0000925 if (Field->getDeclContext()->isRecord()) {
926 RecordDecl *RD = cast<RecordDecl>(Field->getDeclContext());
927 if (RD->isAnonymousStructOrUnion())
928 return static_cast<void *>(RD);
929 }
930 return static_cast<void *>(Field);
931 }
932 return static_cast<RecordType *>(Member->getBaseClass());
933}
934
Chris Lattnerb28317a2009-03-28 19:18:32 +0000935void Sema::ActOnMemInitializers(DeclPtrTy ConstructorDecl,
Anders Carlssona7b35212009-03-25 02:58:17 +0000936 SourceLocation ColonLoc,
937 MemInitTy **MemInits, unsigned NumMemInits) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000938 if (!ConstructorDecl)
939 return;
Douglas Gregorefd5bda2009-08-24 11:57:43 +0000940
941 AdjustDeclIfTemplate(ConstructorDecl);
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +0000942
943 CXXConstructorDecl *Constructor
944 = dyn_cast<CXXConstructorDecl>(ConstructorDecl.getAs<Decl>());
Anders Carlssona7b35212009-03-25 02:58:17 +0000945
946 if (!Constructor) {
947 Diag(ColonLoc, diag::err_only_constructors_take_base_inits);
948 return;
949 }
Fariborz Jahanian16dbdce2009-06-30 00:17:27 +0000950 llvm::DenseMap<void*, CXXBaseOrMemberInitializer *>Members;
Fariborz Jahanian73b85f32009-07-01 23:35:25 +0000951 bool err = false;
Fariborz Jahanian7881a052009-06-29 22:33:26 +0000952 for (unsigned i = 0; i < NumMemInits; i++) {
953 CXXBaseOrMemberInitializer *Member =
954 static_cast<CXXBaseOrMemberInitializer*>(MemInits[i]);
Eli Friedman6347f422009-07-21 19:28:10 +0000955 void *KeyToMember = GetKeyForMember(Member);
Fariborz Jahanian5ac3dfc2009-06-30 21:52:59 +0000956 CXXBaseOrMemberInitializer *&PrevMember = Members[KeyToMember];
Fariborz Jahanian16dbdce2009-06-30 00:17:27 +0000957 if (!PrevMember) {
Fariborz Jahanian47deacf2009-06-30 00:02:17 +0000958 PrevMember = Member;
Fariborz Jahanian16dbdce2009-06-30 00:17:27 +0000959 continue;
Fariborz Jahanian7881a052009-06-29 22:33:26 +0000960 }
Fariborz Jahanian16dbdce2009-06-30 00:17:27 +0000961 if (FieldDecl *Field = Member->getMember())
962 Diag(Member->getSourceLocation(),
963 diag::error_multiple_mem_initialization)
964 << Field->getNameAsString();
965 else {
966 Type *BaseClass = Member->getBaseClass();
967 assert(BaseClass && "ActOnMemInitializers - neither field or base");
968 Diag(Member->getSourceLocation(),
969 diag::error_multiple_base_initialization)
970 << BaseClass->getDesugaredType(true);
971 }
972 Diag(PrevMember->getSourceLocation(), diag::note_previous_initializer)
973 << 0;
Fariborz Jahanian73b85f32009-07-01 23:35:25 +0000974 err = true;
Fariborz Jahanian7881a052009-06-29 22:33:26 +0000975 }
Anders Carlsson5c36fb22009-08-27 05:45:01 +0000976
977 if (err)
978 return;
979
980 BuildBaseOrMemberInitializers(Context, Constructor,
Fariborz Jahanian87595e42009-07-23 23:32:59 +0000981 reinterpret_cast<CXXBaseOrMemberInitializer **>(MemInits),
982 NumMemInits);
983
Anders Carlsson5c36fb22009-08-27 05:45:01 +0000984 if (Diags.getDiagnosticLevel(diag::warn_base_initialized) ==
985 Diagnostic::Ignored &&
986 Diags.getDiagnosticLevel(diag::warn_field_initialized) ==
987 Diagnostic::Ignored)
988 return;
989
990 // Also issue warning if order of ctor-initializer list does not match order
991 // of 1) base class declarations and 2) order of non-static data members.
992 llvm::SmallVector<const void*, 32> AllBaseOrMembers;
993
994 CXXRecordDecl *ClassDecl
995 = cast<CXXRecordDecl>(Constructor->getDeclContext());
996 // Push virtual bases before others.
997 for (CXXRecordDecl::base_class_iterator VBase =
998 ClassDecl->vbases_begin(),
999 E = ClassDecl->vbases_end(); VBase != E; ++VBase)
1000 AllBaseOrMembers.push_back(VBase->getType()->getAs<RecordType>());
Fariborz Jahanianeb96e122009-07-09 19:59:47 +00001001
Anders Carlsson5c36fb22009-08-27 05:45:01 +00001002 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
1003 E = ClassDecl->bases_end(); Base != E; ++Base) {
1004 // Virtuals are alread in the virtual base list and are constructed
1005 // first.
1006 if (Base->isVirtual())
1007 continue;
1008 AllBaseOrMembers.push_back(Base->getType()->getAs<RecordType>());
1009 }
1010
1011 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
1012 E = ClassDecl->field_end(); Field != E; ++Field)
1013 AllBaseOrMembers.push_back(GetKeyForTopLevelField(*Field));
1014
1015 int Last = AllBaseOrMembers.size();
1016 int curIndex = 0;
1017 CXXBaseOrMemberInitializer *PrevMember = 0;
1018 for (unsigned i = 0; i < NumMemInits; i++) {
1019 CXXBaseOrMemberInitializer *Member =
1020 static_cast<CXXBaseOrMemberInitializer*>(MemInits[i]);
1021 void *MemberInCtorList = GetKeyForMember(Member, true);
Eli Friedman6347f422009-07-21 19:28:10 +00001022
Anders Carlsson5c36fb22009-08-27 05:45:01 +00001023 for (; curIndex < Last; curIndex++)
1024 if (MemberInCtorList == AllBaseOrMembers[curIndex])
1025 break;
1026 if (curIndex == Last) {
1027 assert(PrevMember && "Member not in member list?!");
1028 // Initializer as specified in ctor-initializer list is out of order.
1029 // Issue a warning diagnostic.
1030 if (PrevMember->isBaseInitializer()) {
1031 // Diagnostics is for an initialized base class.
1032 Type *BaseClass = PrevMember->getBaseClass();
1033 Diag(PrevMember->getSourceLocation(),
1034 diag::warn_base_initialized)
1035 << BaseClass->getDesugaredType(true);
1036 } else {
1037 FieldDecl *Field = PrevMember->getMember();
1038 Diag(PrevMember->getSourceLocation(),
1039 diag::warn_field_initialized)
1040 << Field->getNameAsString();
Fariborz Jahanianeb96e122009-07-09 19:59:47 +00001041 }
Anders Carlsson5c36fb22009-08-27 05:45:01 +00001042 // Also the note!
1043 if (FieldDecl *Field = Member->getMember())
1044 Diag(Member->getSourceLocation(),
1045 diag::note_fieldorbase_initialized_here) << 0
1046 << Field->getNameAsString();
1047 else {
1048 Type *BaseClass = Member->getBaseClass();
1049 Diag(Member->getSourceLocation(),
1050 diag::note_fieldorbase_initialized_here) << 1
1051 << BaseClass->getDesugaredType(true);
1052 }
1053 for (curIndex = 0; curIndex < Last; curIndex++)
1054 if (MemberInCtorList == AllBaseOrMembers[curIndex])
1055 break;
Fariborz Jahanianeb96e122009-07-09 19:59:47 +00001056 }
Anders Carlsson5c36fb22009-08-27 05:45:01 +00001057 PrevMember = Member;
Fariborz Jahanianeb96e122009-07-09 19:59:47 +00001058 }
Anders Carlssona7b35212009-03-25 02:58:17 +00001059}
1060
Fariborz Jahanian393612e2009-07-21 22:36:06 +00001061void Sema::ActOnDefaultCtorInitializers(DeclPtrTy CDtorDecl) {
Fariborz Jahanian560de452009-07-15 22:34:08 +00001062 if (!CDtorDecl)
Fariborz Jahaniand01c9152009-07-14 18:24:21 +00001063 return;
1064
Douglas Gregorefd5bda2009-08-24 11:57:43 +00001065 AdjustDeclIfTemplate(CDtorDecl);
1066
Fariborz Jahaniand01c9152009-07-14 18:24:21 +00001067 if (CXXConstructorDecl *Constructor
Fariborz Jahanian560de452009-07-15 22:34:08 +00001068 = dyn_cast<CXXConstructorDecl>(CDtorDecl.getAs<Decl>()))
Fariborz Jahanian87595e42009-07-23 23:32:59 +00001069 BuildBaseOrMemberInitializers(Context,
1070 Constructor,
1071 (CXXBaseOrMemberInitializer **)0, 0);
Fariborz Jahaniand01c9152009-07-14 18:24:21 +00001072}
1073
Anders Carlsson67e4dd22009-03-22 01:52:17 +00001074namespace {
1075 /// PureVirtualMethodCollector - traverses a class and its superclasses
1076 /// and determines if it has any pure virtual methods.
1077 class VISIBILITY_HIDDEN PureVirtualMethodCollector {
1078 ASTContext &Context;
1079
Sebastian Redldfe292d2009-03-22 21:28:55 +00001080 public:
Anders Carlsson67e4dd22009-03-22 01:52:17 +00001081 typedef llvm::SmallVector<const CXXMethodDecl*, 8> MethodList;
Sebastian Redldfe292d2009-03-22 21:28:55 +00001082
1083 private:
Anders Carlsson67e4dd22009-03-22 01:52:17 +00001084 MethodList Methods;
1085
1086 void Collect(const CXXRecordDecl* RD, MethodList& Methods);
1087
1088 public:
1089 PureVirtualMethodCollector(ASTContext &Ctx, const CXXRecordDecl* RD)
1090 : Context(Ctx) {
1091
1092 MethodList List;
1093 Collect(RD, List);
1094
1095 // Copy the temporary list to methods, and make sure to ignore any
1096 // null entries.
1097 for (size_t i = 0, e = List.size(); i != e; ++i) {
1098 if (List[i])
1099 Methods.push_back(List[i]);
1100 }
1101 }
1102
Anders Carlsson4681ebd2009-03-22 20:18:17 +00001103 bool empty() const { return Methods.empty(); }
1104
1105 MethodList::const_iterator methods_begin() { return Methods.begin(); }
1106 MethodList::const_iterator methods_end() { return Methods.end(); }
Anders Carlsson67e4dd22009-03-22 01:52:17 +00001107 };
1108
1109 void PureVirtualMethodCollector::Collect(const CXXRecordDecl* RD,
1110 MethodList& Methods) {
1111 // First, collect the pure virtual methods for the base classes.
1112 for (CXXRecordDecl::base_class_const_iterator Base = RD->bases_begin(),
1113 BaseEnd = RD->bases_end(); Base != BaseEnd; ++Base) {
Ted Kremenek6217b802009-07-29 21:53:49 +00001114 if (const RecordType *RT = Base->getType()->getAs<RecordType>()) {
Chris Lattner64540d72009-03-29 05:01:10 +00001115 const CXXRecordDecl *BaseDecl = cast<CXXRecordDecl>(RT->getDecl());
Anders Carlsson67e4dd22009-03-22 01:52:17 +00001116 if (BaseDecl && BaseDecl->isAbstract())
1117 Collect(BaseDecl, Methods);
1118 }
1119 }
1120
1121 // Next, zero out any pure virtual methods that this class overrides.
Anders Carlsson8ff8c222009-05-17 00:00:05 +00001122 typedef llvm::SmallPtrSet<const CXXMethodDecl*, 4> MethodSetTy;
1123
1124 MethodSetTy OverriddenMethods;
1125 size_t MethodsSize = Methods.size();
1126
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001127 for (RecordDecl::decl_iterator i = RD->decls_begin(), e = RD->decls_end();
Anders Carlsson8ff8c222009-05-17 00:00:05 +00001128 i != e; ++i) {
1129 // Traverse the record, looking for methods.
1130 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(*i)) {
Sebastian Redl23c7d062009-07-07 20:29:57 +00001131 // If the method is pure virtual, add it to the methods vector.
Anders Carlsson8ff8c222009-05-17 00:00:05 +00001132 if (MD->isPure()) {
1133 Methods.push_back(MD);
1134 continue;
1135 }
1136
1137 // Otherwise, record all the overridden methods in our set.
1138 for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(),
1139 E = MD->end_overridden_methods(); I != E; ++I) {
1140 // Keep track of the overridden methods.
1141 OverriddenMethods.insert(*I);
Anders Carlsson67e4dd22009-03-22 01:52:17 +00001142 }
1143 }
1144 }
1145
Anders Carlsson8ff8c222009-05-17 00:00:05 +00001146 // Now go through the methods and zero out all the ones we know are
1147 // overridden.
1148 for (size_t i = 0, e = MethodsSize; i != e; ++i) {
1149 if (OverriddenMethods.count(Methods[i]))
1150 Methods[i] = 0;
Anders Carlsson67e4dd22009-03-22 01:52:17 +00001151 }
Anders Carlsson8ff8c222009-05-17 00:00:05 +00001152
Anders Carlsson67e4dd22009-03-22 01:52:17 +00001153 }
1154}
Douglas Gregor7ad83902008-11-05 04:29:56 +00001155
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00001156
Anders Carlsson4681ebd2009-03-22 20:18:17 +00001157bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
Anders Carlssone65a3c82009-03-24 17:23:42 +00001158 unsigned DiagID, AbstractDiagSelID SelID,
1159 const CXXRecordDecl *CurrentRD) {
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00001160 if (SelID == -1)
1161 return RequireNonAbstractType(Loc, T,
1162 PDiag(DiagID), CurrentRD);
1163 else
1164 return RequireNonAbstractType(Loc, T,
1165 PDiag(DiagID) << SelID, CurrentRD);
1166}
Anders Carlsson4681ebd2009-03-22 20:18:17 +00001167
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00001168bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T,
1169 const PartialDiagnostic &PD,
1170 const CXXRecordDecl *CurrentRD) {
Anders Carlsson4681ebd2009-03-22 20:18:17 +00001171 if (!getLangOptions().CPlusPlus)
1172 return false;
Anders Carlsson11f21a02009-03-23 19:10:31 +00001173
1174 if (const ArrayType *AT = Context.getAsArrayType(T))
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00001175 return RequireNonAbstractType(Loc, AT->getElementType(), PD,
Anders Carlssone65a3c82009-03-24 17:23:42 +00001176 CurrentRD);
Anders Carlsson5eff73c2009-03-24 01:46:45 +00001177
Ted Kremenek6217b802009-07-29 21:53:49 +00001178 if (const PointerType *PT = T->getAs<PointerType>()) {
Anders Carlsson5eff73c2009-03-24 01:46:45 +00001179 // Find the innermost pointer type.
Ted Kremenek6217b802009-07-29 21:53:49 +00001180 while (const PointerType *T = PT->getPointeeType()->getAs<PointerType>())
Anders Carlsson5eff73c2009-03-24 01:46:45 +00001181 PT = T;
Anders Carlsson4681ebd2009-03-22 20:18:17 +00001182
Anders Carlsson5eff73c2009-03-24 01:46:45 +00001183 if (const ArrayType *AT = Context.getAsArrayType(PT->getPointeeType()))
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00001184 return RequireNonAbstractType(Loc, AT->getElementType(), PD, CurrentRD);
Anders Carlsson5eff73c2009-03-24 01:46:45 +00001185 }
1186
Ted Kremenek6217b802009-07-29 21:53:49 +00001187 const RecordType *RT = T->getAs<RecordType>();
Anders Carlsson4681ebd2009-03-22 20:18:17 +00001188 if (!RT)
1189 return false;
1190
1191 const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(RT->getDecl());
1192 if (!RD)
1193 return false;
1194
Anders Carlssone65a3c82009-03-24 17:23:42 +00001195 if (CurrentRD && CurrentRD != RD)
1196 return false;
1197
Anders Carlsson4681ebd2009-03-22 20:18:17 +00001198 if (!RD->isAbstract())
1199 return false;
1200
Anders Carlssona6ec7ad2009-08-27 00:13:57 +00001201 Diag(Loc, PD) << RD->getDeclName();
Anders Carlsson4681ebd2009-03-22 20:18:17 +00001202
1203 // Check if we've already emitted the list of pure virtual functions for this
1204 // class.
1205 if (PureVirtualClassDiagSet && PureVirtualClassDiagSet->count(RD))
1206 return true;
1207
1208 PureVirtualMethodCollector Collector(Context, RD);
1209
1210 for (PureVirtualMethodCollector::MethodList::const_iterator I =
1211 Collector.methods_begin(), E = Collector.methods_end(); I != E; ++I) {
1212 const CXXMethodDecl *MD = *I;
1213
1214 Diag(MD->getLocation(), diag::note_pure_virtual_function) <<
1215 MD->getDeclName();
1216 }
1217
1218 if (!PureVirtualClassDiagSet)
1219 PureVirtualClassDiagSet.reset(new RecordDeclSetTy);
1220 PureVirtualClassDiagSet->insert(RD);
1221
1222 return true;
1223}
1224
Anders Carlsson8211eff2009-03-24 01:19:16 +00001225namespace {
1226 class VISIBILITY_HIDDEN AbstractClassUsageDiagnoser
1227 : public DeclVisitor<AbstractClassUsageDiagnoser, bool> {
1228 Sema &SemaRef;
1229 CXXRecordDecl *AbstractClass;
1230
Anders Carlssone65a3c82009-03-24 17:23:42 +00001231 bool VisitDeclContext(const DeclContext *DC) {
Anders Carlsson8211eff2009-03-24 01:19:16 +00001232 bool Invalid = false;
1233
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001234 for (CXXRecordDecl::decl_iterator I = DC->decls_begin(),
1235 E = DC->decls_end(); I != E; ++I)
Anders Carlsson8211eff2009-03-24 01:19:16 +00001236 Invalid |= Visit(*I);
Anders Carlssone65a3c82009-03-24 17:23:42 +00001237
Anders Carlsson8211eff2009-03-24 01:19:16 +00001238 return Invalid;
1239 }
Anders Carlssone65a3c82009-03-24 17:23:42 +00001240
1241 public:
1242 AbstractClassUsageDiagnoser(Sema& SemaRef, CXXRecordDecl *ac)
1243 : SemaRef(SemaRef), AbstractClass(ac) {
1244 Visit(SemaRef.Context.getTranslationUnitDecl());
1245 }
Anders Carlsson8211eff2009-03-24 01:19:16 +00001246
Anders Carlssone65a3c82009-03-24 17:23:42 +00001247 bool VisitFunctionDecl(const FunctionDecl *FD) {
1248 if (FD->isThisDeclarationADefinition()) {
1249 // No need to do the check if we're in a definition, because it requires
1250 // that the return/param types are complete.
1251 // because that requires
1252 return VisitDeclContext(FD);
1253 }
1254
1255 // Check the return type.
1256 QualType RTy = FD->getType()->getAsFunctionType()->getResultType();
1257 bool Invalid =
1258 SemaRef.RequireNonAbstractType(FD->getLocation(), RTy,
1259 diag::err_abstract_type_in_decl,
1260 Sema::AbstractReturnType,
1261 AbstractClass);
1262
1263 for (FunctionDecl::param_const_iterator I = FD->param_begin(),
1264 E = FD->param_end(); I != E; ++I) {
Anders Carlsson8211eff2009-03-24 01:19:16 +00001265 const ParmVarDecl *VD = *I;
1266 Invalid |=
1267 SemaRef.RequireNonAbstractType(VD->getLocation(),
1268 VD->getOriginalType(),
1269 diag::err_abstract_type_in_decl,
Anders Carlssone65a3c82009-03-24 17:23:42 +00001270 Sema::AbstractParamType,
1271 AbstractClass);
Anders Carlsson8211eff2009-03-24 01:19:16 +00001272 }
1273
1274 return Invalid;
1275 }
Anders Carlssone65a3c82009-03-24 17:23:42 +00001276
1277 bool VisitDecl(const Decl* D) {
1278 if (const DeclContext *DC = dyn_cast<DeclContext>(D))
1279 return VisitDeclContext(DC);
1280
1281 return false;
1282 }
Anders Carlsson8211eff2009-03-24 01:19:16 +00001283 };
1284}
1285
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001286void Sema::ActOnFinishCXXMemberSpecification(Scope* S, SourceLocation RLoc,
Chris Lattnerb28317a2009-03-28 19:18:32 +00001287 DeclPtrTy TagDecl,
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001288 SourceLocation LBrac,
1289 SourceLocation RBrac) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00001290 if (!TagDecl)
1291 return;
1292
Douglas Gregor42af25f2009-05-11 19:58:34 +00001293 AdjustDeclIfTemplate(TagDecl);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001294 ActOnFields(S, RLoc, TagDecl,
Chris Lattnerb28317a2009-03-28 19:18:32 +00001295 (DeclPtrTy*)FieldCollector->getCurFields(),
Daniel Dunbar1bfe1c22008-10-03 02:03:53 +00001296 FieldCollector->getCurNumFields(), LBrac, RBrac, 0);
Douglas Gregor2943aed2009-03-03 04:44:36 +00001297
Chris Lattnerb28317a2009-03-28 19:18:32 +00001298 CXXRecordDecl *RD = cast<CXXRecordDecl>(TagDecl.getAs<Decl>());
Anders Carlsson67e4dd22009-03-22 01:52:17 +00001299 if (!RD->isAbstract()) {
1300 // Collect all the pure virtual methods and see if this is an abstract
1301 // class after all.
1302 PureVirtualMethodCollector Collector(Context, RD);
1303 if (!Collector.empty())
1304 RD->setAbstract(true);
1305 }
1306
Anders Carlssone65a3c82009-03-24 17:23:42 +00001307 if (RD->isAbstract())
1308 AbstractClassUsageDiagnoser(*this, RD);
Anders Carlsson8211eff2009-03-24 01:19:16 +00001309
Douglas Gregor42af25f2009-05-11 19:58:34 +00001310 if (!RD->isDependentType())
Anders Carlsson67e4dd22009-03-22 01:52:17 +00001311 AddImplicitlyDeclaredMembersToClass(RD);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001312}
1313
Douglas Gregor396b7cd2008-11-03 17:51:48 +00001314/// AddImplicitlyDeclaredMembersToClass - Adds any implicitly-declared
1315/// special functions, such as the default constructor, copy
1316/// constructor, or destructor, to the given C++ class (C++
1317/// [special]p1). This routine can only be executed just before the
1318/// definition of the class is complete.
1319void Sema::AddImplicitlyDeclaredMembersToClass(CXXRecordDecl *ClassDecl) {
Douglas Gregor50d62d12009-08-05 05:36:45 +00001320 CanQualType ClassType
1321 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Douglas Gregor2e1cd422008-11-17 14:58:09 +00001322
Sebastian Redl465226e2009-05-27 22:11:52 +00001323 // FIXME: Implicit declarations have exception specifications, which are
1324 // the union of the specifications of the implicitly called functions.
1325
Douglas Gregor396b7cd2008-11-03 17:51:48 +00001326 if (!ClassDecl->hasUserDeclaredConstructor()) {
1327 // C++ [class.ctor]p5:
1328 // A default constructor for a class X is a constructor of class X
1329 // that can be called without an argument. If there is no
1330 // user-declared constructor for class X, a default constructor is
1331 // implicitly declared. An implicitly-declared default constructor
1332 // is an inline public member of its class.
Douglas Gregor2e1cd422008-11-17 14:58:09 +00001333 DeclarationName Name
1334 = Context.DeclarationNames.getCXXConstructorName(ClassType);
Douglas Gregor396b7cd2008-11-03 17:51:48 +00001335 CXXConstructorDecl *DefaultCon =
1336 CXXConstructorDecl::Create(Context, ClassDecl,
Douglas Gregor2e1cd422008-11-17 14:58:09 +00001337 ClassDecl->getLocation(), Name,
Douglas Gregor396b7cd2008-11-03 17:51:48 +00001338 Context.getFunctionType(Context.VoidTy,
1339 0, 0, false, 0),
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00001340 /*DInfo=*/0,
Douglas Gregor396b7cd2008-11-03 17:51:48 +00001341 /*isExplicit=*/false,
1342 /*isInline=*/true,
1343 /*isImplicitlyDeclared=*/true);
1344 DefaultCon->setAccess(AS_public);
Douglas Gregor6b3945f2009-01-07 19:46:03 +00001345 DefaultCon->setImplicit();
Douglas Gregor1f2023a2009-07-22 18:25:24 +00001346 DefaultCon->setTrivial(ClassDecl->hasTrivialConstructor());
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001347 ClassDecl->addDecl(DefaultCon);
Douglas Gregor396b7cd2008-11-03 17:51:48 +00001348 }
1349
1350 if (!ClassDecl->hasUserDeclaredCopyConstructor()) {
1351 // C++ [class.copy]p4:
1352 // If the class definition does not explicitly declare a copy
1353 // constructor, one is declared implicitly.
1354
1355 // C++ [class.copy]p5:
1356 // The implicitly-declared copy constructor for a class X will
1357 // have the form
1358 //
1359 // X::X(const X&)
1360 //
1361 // if
1362 bool HasConstCopyConstructor = true;
1363
1364 // -- each direct or virtual base class B of X has a copy
1365 // constructor whose first parameter is of type const B& or
1366 // const volatile B&, and
1367 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin();
1368 HasConstCopyConstructor && Base != ClassDecl->bases_end(); ++Base) {
1369 const CXXRecordDecl *BaseClassDecl
Ted Kremenek6217b802009-07-29 21:53:49 +00001370 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Douglas Gregor396b7cd2008-11-03 17:51:48 +00001371 HasConstCopyConstructor
1372 = BaseClassDecl->hasConstCopyConstructor(Context);
1373 }
1374
1375 // -- for all the nonstatic data members of X that are of a
1376 // class type M (or array thereof), each such class type
1377 // has a copy constructor whose first parameter is of type
1378 // const M& or const volatile M&.
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001379 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin();
1380 HasConstCopyConstructor && Field != ClassDecl->field_end();
Douglas Gregor6ab35242009-04-09 21:40:53 +00001381 ++Field) {
Douglas Gregor396b7cd2008-11-03 17:51:48 +00001382 QualType FieldType = (*Field)->getType();
1383 if (const ArrayType *Array = Context.getAsArrayType(FieldType))
1384 FieldType = Array->getElementType();
Ted Kremenek6217b802009-07-29 21:53:49 +00001385 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Douglas Gregor396b7cd2008-11-03 17:51:48 +00001386 const CXXRecordDecl *FieldClassDecl
1387 = cast<CXXRecordDecl>(FieldClassType->getDecl());
1388 HasConstCopyConstructor
1389 = FieldClassDecl->hasConstCopyConstructor(Context);
1390 }
1391 }
1392
Sebastian Redl64b45f72009-01-05 20:52:13 +00001393 // Otherwise, the implicitly declared copy constructor will have
1394 // the form
Douglas Gregor396b7cd2008-11-03 17:51:48 +00001395 //
1396 // X::X(X&)
Sebastian Redl64b45f72009-01-05 20:52:13 +00001397 QualType ArgType = ClassType;
Douglas Gregor396b7cd2008-11-03 17:51:48 +00001398 if (HasConstCopyConstructor)
1399 ArgType = ArgType.withConst();
Sebastian Redl7c80bd62009-03-16 23:22:08 +00001400 ArgType = Context.getLValueReferenceType(ArgType);
Douglas Gregor396b7cd2008-11-03 17:51:48 +00001401
Sebastian Redl64b45f72009-01-05 20:52:13 +00001402 // An implicitly-declared copy constructor is an inline public
1403 // member of its class.
Douglas Gregor2e1cd422008-11-17 14:58:09 +00001404 DeclarationName Name
1405 = Context.DeclarationNames.getCXXConstructorName(ClassType);
Douglas Gregor396b7cd2008-11-03 17:51:48 +00001406 CXXConstructorDecl *CopyConstructor
1407 = CXXConstructorDecl::Create(Context, ClassDecl,
Douglas Gregor2e1cd422008-11-17 14:58:09 +00001408 ClassDecl->getLocation(), Name,
Douglas Gregor396b7cd2008-11-03 17:51:48 +00001409 Context.getFunctionType(Context.VoidTy,
1410 &ArgType, 1,
1411 false, 0),
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00001412 /*DInfo=*/0,
Douglas Gregor396b7cd2008-11-03 17:51:48 +00001413 /*isExplicit=*/false,
1414 /*isInline=*/true,
1415 /*isImplicitlyDeclared=*/true);
1416 CopyConstructor->setAccess(AS_public);
Douglas Gregor6b3945f2009-01-07 19:46:03 +00001417 CopyConstructor->setImplicit();
Douglas Gregor1f2023a2009-07-22 18:25:24 +00001418 CopyConstructor->setTrivial(ClassDecl->hasTrivialCopyConstructor());
Douglas Gregor396b7cd2008-11-03 17:51:48 +00001419
1420 // Add the parameter to the constructor.
1421 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyConstructor,
1422 ClassDecl->getLocation(),
1423 /*IdentifierInfo=*/0,
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00001424 ArgType, /*DInfo=*/0,
1425 VarDecl::None, 0);
Ted Kremenekfc767612009-01-14 00:42:25 +00001426 CopyConstructor->setParams(Context, &FromParam, 1);
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001427 ClassDecl->addDecl(CopyConstructor);
Douglas Gregor396b7cd2008-11-03 17:51:48 +00001428 }
1429
Sebastian Redl64b45f72009-01-05 20:52:13 +00001430 if (!ClassDecl->hasUserDeclaredCopyAssignment()) {
1431 // Note: The following rules are largely analoguous to the copy
1432 // constructor rules. Note that virtual bases are not taken into account
1433 // for determining the argument type of the operator. Note also that
1434 // operators taking an object instead of a reference are allowed.
1435 //
1436 // C++ [class.copy]p10:
1437 // If the class definition does not explicitly declare a copy
1438 // assignment operator, one is declared implicitly.
1439 // The implicitly-defined copy assignment operator for a class X
1440 // will have the form
1441 //
1442 // X& X::operator=(const X&)
1443 //
1444 // if
1445 bool HasConstCopyAssignment = true;
1446
1447 // -- each direct base class B of X has a copy assignment operator
1448 // whose parameter is of type const B&, const volatile B& or B,
1449 // and
1450 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin();
1451 HasConstCopyAssignment && Base != ClassDecl->bases_end(); ++Base) {
1452 const CXXRecordDecl *BaseClassDecl
Ted Kremenek6217b802009-07-29 21:53:49 +00001453 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Fariborz Jahanian0270b8a2009-08-12 23:34:46 +00001454 const CXXMethodDecl *MD = 0;
1455 HasConstCopyAssignment = BaseClassDecl->hasConstCopyAssignment(Context,
1456 MD);
Sebastian Redl64b45f72009-01-05 20:52:13 +00001457 }
1458
1459 // -- for all the nonstatic data members of X that are of a class
1460 // type M (or array thereof), each such class type has a copy
1461 // assignment operator whose parameter is of type const M&,
1462 // const volatile M& or M.
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001463 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin();
1464 HasConstCopyAssignment && Field != ClassDecl->field_end();
Douglas Gregor6ab35242009-04-09 21:40:53 +00001465 ++Field) {
Sebastian Redl64b45f72009-01-05 20:52:13 +00001466 QualType FieldType = (*Field)->getType();
1467 if (const ArrayType *Array = Context.getAsArrayType(FieldType))
1468 FieldType = Array->getElementType();
Ted Kremenek6217b802009-07-29 21:53:49 +00001469 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Sebastian Redl64b45f72009-01-05 20:52:13 +00001470 const CXXRecordDecl *FieldClassDecl
1471 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Fariborz Jahanian0270b8a2009-08-12 23:34:46 +00001472 const CXXMethodDecl *MD = 0;
Sebastian Redl64b45f72009-01-05 20:52:13 +00001473 HasConstCopyAssignment
Fariborz Jahanian0270b8a2009-08-12 23:34:46 +00001474 = FieldClassDecl->hasConstCopyAssignment(Context, MD);
Sebastian Redl64b45f72009-01-05 20:52:13 +00001475 }
1476 }
1477
1478 // Otherwise, the implicitly declared copy assignment operator will
1479 // have the form
1480 //
1481 // X& X::operator=(X&)
1482 QualType ArgType = ClassType;
Sebastian Redl7c80bd62009-03-16 23:22:08 +00001483 QualType RetType = Context.getLValueReferenceType(ArgType);
Sebastian Redl64b45f72009-01-05 20:52:13 +00001484 if (HasConstCopyAssignment)
1485 ArgType = ArgType.withConst();
Sebastian Redl7c80bd62009-03-16 23:22:08 +00001486 ArgType = Context.getLValueReferenceType(ArgType);
Sebastian Redl64b45f72009-01-05 20:52:13 +00001487
1488 // An implicitly-declared copy assignment operator is an inline public
1489 // member of its class.
1490 DeclarationName Name =
1491 Context.DeclarationNames.getCXXOperatorName(OO_Equal);
1492 CXXMethodDecl *CopyAssignment =
1493 CXXMethodDecl::Create(Context, ClassDecl, ClassDecl->getLocation(), Name,
1494 Context.getFunctionType(RetType, &ArgType, 1,
1495 false, 0),
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00001496 /*DInfo=*/0, /*isStatic=*/false, /*isInline=*/true);
Sebastian Redl64b45f72009-01-05 20:52:13 +00001497 CopyAssignment->setAccess(AS_public);
Douglas Gregor6b3945f2009-01-07 19:46:03 +00001498 CopyAssignment->setImplicit();
Douglas Gregor1f2023a2009-07-22 18:25:24 +00001499 CopyAssignment->setTrivial(ClassDecl->hasTrivialCopyAssignment());
Fariborz Jahanian2198ba12009-08-12 21:14:35 +00001500 CopyAssignment->setCopyAssignment(true);
Sebastian Redl64b45f72009-01-05 20:52:13 +00001501
1502 // Add the parameter to the operator.
1503 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyAssignment,
1504 ClassDecl->getLocation(),
1505 /*IdentifierInfo=*/0,
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00001506 ArgType, /*DInfo=*/0,
1507 VarDecl::None, 0);
Ted Kremenekfc767612009-01-14 00:42:25 +00001508 CopyAssignment->setParams(Context, &FromParam, 1);
Sebastian Redl64b45f72009-01-05 20:52:13 +00001509
1510 // Don't call addedAssignmentOperator. There is no way to distinguish an
1511 // implicit from an explicit assignment operator.
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001512 ClassDecl->addDecl(CopyAssignment);
Sebastian Redl64b45f72009-01-05 20:52:13 +00001513 }
1514
Douglas Gregor9e7d9de2008-12-15 21:24:18 +00001515 if (!ClassDecl->hasUserDeclaredDestructor()) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00001516 // C++ [class.dtor]p2:
1517 // If a class has no user-declared destructor, a destructor is
1518 // declared implicitly. An implicitly-declared destructor is an
1519 // inline public member of its class.
Douglas Gregor2e1cd422008-11-17 14:58:09 +00001520 DeclarationName Name
1521 = Context.DeclarationNames.getCXXDestructorName(ClassType);
Douglas Gregor42a552f2008-11-05 20:51:48 +00001522 CXXDestructorDecl *Destructor
1523 = CXXDestructorDecl::Create(Context, ClassDecl,
Douglas Gregor2e1cd422008-11-17 14:58:09 +00001524 ClassDecl->getLocation(), Name,
Douglas Gregor42a552f2008-11-05 20:51:48 +00001525 Context.getFunctionType(Context.VoidTy,
1526 0, 0, false, 0),
1527 /*isInline=*/true,
1528 /*isImplicitlyDeclared=*/true);
1529 Destructor->setAccess(AS_public);
Douglas Gregor6b3945f2009-01-07 19:46:03 +00001530 Destructor->setImplicit();
Douglas Gregor1f2023a2009-07-22 18:25:24 +00001531 Destructor->setTrivial(ClassDecl->hasTrivialDestructor());
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001532 ClassDecl->addDecl(Destructor);
Douglas Gregor42a552f2008-11-05 20:51:48 +00001533 }
Douglas Gregor396b7cd2008-11-03 17:51:48 +00001534}
1535
Douglas Gregor6569d682009-05-27 23:11:45 +00001536void Sema::ActOnReenterTemplateScope(Scope *S, DeclPtrTy TemplateD) {
1537 TemplateDecl *Template = TemplateD.getAs<TemplateDecl>();
1538 if (!Template)
1539 return;
1540
1541 TemplateParameterList *Params = Template->getTemplateParameters();
1542 for (TemplateParameterList::iterator Param = Params->begin(),
1543 ParamEnd = Params->end();
1544 Param != ParamEnd; ++Param) {
1545 NamedDecl *Named = cast<NamedDecl>(*Param);
1546 if (Named->getDeclName()) {
1547 S->AddDecl(DeclPtrTy::make(Named));
1548 IdResolver.AddDecl(Named);
1549 }
1550 }
1551}
1552
Douglas Gregor72b505b2008-12-16 21:30:33 +00001553/// ActOnStartDelayedCXXMethodDeclaration - We have completed
1554/// parsing a top-level (non-nested) C++ class, and we are now
1555/// parsing those parts of the given Method declaration that could
1556/// not be parsed earlier (C++ [class.mem]p2), such as default
1557/// arguments. This action should enter the scope of the given
1558/// Method declaration as if we had just parsed the qualified method
1559/// name. However, it should not bring the parameters into scope;
1560/// that will be performed by ActOnDelayedCXXMethodParameter.
Chris Lattnerb28317a2009-03-28 19:18:32 +00001561void Sema::ActOnStartDelayedCXXMethodDeclaration(Scope *S, DeclPtrTy MethodD) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00001562 if (!MethodD)
1563 return;
1564
Douglas Gregorefd5bda2009-08-24 11:57:43 +00001565 AdjustDeclIfTemplate(MethodD);
1566
Douglas Gregor72b505b2008-12-16 21:30:33 +00001567 CXXScopeSpec SS;
Chris Lattnerb28317a2009-03-28 19:18:32 +00001568 FunctionDecl *Method = cast<FunctionDecl>(MethodD.getAs<Decl>());
Douglas Gregorab452ba2009-03-26 23:50:42 +00001569 QualType ClassTy
1570 = Context.getTypeDeclType(cast<RecordDecl>(Method->getDeclContext()));
1571 SS.setScopeRep(
1572 NestedNameSpecifier::Create(Context, 0, false, ClassTy.getTypePtr()));
Douglas Gregor72b505b2008-12-16 21:30:33 +00001573 ActOnCXXEnterDeclaratorScope(S, SS);
1574}
1575
1576/// ActOnDelayedCXXMethodParameter - We've already started a delayed
1577/// C++ method declaration. We're (re-)introducing the given
1578/// function parameter into scope for use in parsing later parts of
1579/// the method declaration. For example, we could see an
1580/// ActOnParamDefaultArgument event for this parameter.
Chris Lattnerb28317a2009-03-28 19:18:32 +00001581void Sema::ActOnDelayedCXXMethodParameter(Scope *S, DeclPtrTy ParamD) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00001582 if (!ParamD)
1583 return;
1584
Chris Lattnerb28317a2009-03-28 19:18:32 +00001585 ParmVarDecl *Param = cast<ParmVarDecl>(ParamD.getAs<Decl>());
Douglas Gregor61366e92008-12-24 00:01:03 +00001586
1587 // If this parameter has an unparsed default argument, clear it out
1588 // to make way for the parsed default argument.
1589 if (Param->hasUnparsedDefaultArg())
1590 Param->setDefaultArg(0);
1591
Chris Lattnerb28317a2009-03-28 19:18:32 +00001592 S->AddDecl(DeclPtrTy::make(Param));
Douglas Gregor72b505b2008-12-16 21:30:33 +00001593 if (Param->getDeclName())
1594 IdResolver.AddDecl(Param);
1595}
1596
1597/// ActOnFinishDelayedCXXMethodDeclaration - We have finished
1598/// processing the delayed method declaration for Method. The method
1599/// declaration is now considered finished. There may be a separate
1600/// ActOnStartOfFunctionDef action later (not necessarily
1601/// immediately!) for this method, if it was also defined inside the
1602/// class body.
Chris Lattnerb28317a2009-03-28 19:18:32 +00001603void Sema::ActOnFinishDelayedCXXMethodDeclaration(Scope *S, DeclPtrTy MethodD) {
Douglas Gregor4c4f7cb2009-06-22 23:20:33 +00001604 if (!MethodD)
1605 return;
1606
Douglas Gregorefd5bda2009-08-24 11:57:43 +00001607 AdjustDeclIfTemplate(MethodD);
1608
Chris Lattnerb28317a2009-03-28 19:18:32 +00001609 FunctionDecl *Method = cast<FunctionDecl>(MethodD.getAs<Decl>());
Douglas Gregor72b505b2008-12-16 21:30:33 +00001610 CXXScopeSpec SS;
Douglas Gregorab452ba2009-03-26 23:50:42 +00001611 QualType ClassTy
1612 = Context.getTypeDeclType(cast<RecordDecl>(Method->getDeclContext()));
1613 SS.setScopeRep(
1614 NestedNameSpecifier::Create(Context, 0, false, ClassTy.getTypePtr()));
Douglas Gregor72b505b2008-12-16 21:30:33 +00001615 ActOnCXXExitDeclaratorScope(S, SS);
1616
1617 // Now that we have our default arguments, check the constructor
1618 // again. It could produce additional diagnostics or affect whether
1619 // the class has implicitly-declared destructors, among other
1620 // things.
Chris Lattner6e475012009-04-25 08:35:12 +00001621 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Method))
1622 CheckConstructor(Constructor);
Douglas Gregor72b505b2008-12-16 21:30:33 +00001623
1624 // Check the default arguments, which we may have added.
1625 if (!Method->isInvalidDecl())
1626 CheckCXXDefaultArguments(Method);
1627}
1628
Douglas Gregor42a552f2008-11-05 20:51:48 +00001629/// CheckConstructorDeclarator - Called by ActOnDeclarator to check
Douglas Gregor72b505b2008-12-16 21:30:33 +00001630/// the well-formedness of the constructor declarator @p D with type @p
Douglas Gregor42a552f2008-11-05 20:51:48 +00001631/// R. If there are any errors in the declarator, this routine will
Chris Lattner65401802009-04-25 08:28:21 +00001632/// emit diagnostics and set the invalid bit to true. In any case, the type
1633/// will be updated to reflect a well-formed type for the constructor and
1634/// returned.
1635QualType Sema::CheckConstructorDeclarator(Declarator &D, QualType R,
1636 FunctionDecl::StorageClass &SC) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00001637 bool isVirtual = D.getDeclSpec().isVirtualSpecified();
Douglas Gregor42a552f2008-11-05 20:51:48 +00001638
1639 // C++ [class.ctor]p3:
1640 // A constructor shall not be virtual (10.3) or static (9.4). A
1641 // constructor can be invoked for a const, volatile or const
1642 // volatile object. A constructor shall not be declared const,
1643 // volatile, or const volatile (9.3.2).
1644 if (isVirtual) {
Chris Lattner65401802009-04-25 08:28:21 +00001645 if (!D.isInvalidType())
1646 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
1647 << "virtual" << SourceRange(D.getDeclSpec().getVirtualSpecLoc())
1648 << SourceRange(D.getIdentifierLoc());
1649 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00001650 }
1651 if (SC == FunctionDecl::Static) {
Chris Lattner65401802009-04-25 08:28:21 +00001652 if (!D.isInvalidType())
1653 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
1654 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
1655 << SourceRange(D.getIdentifierLoc());
1656 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00001657 SC = FunctionDecl::None;
1658 }
Chris Lattner65401802009-04-25 08:28:21 +00001659
1660 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
1661 if (FTI.TypeQuals != 0) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00001662 if (FTI.TypeQuals & QualType::Const)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001663 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
1664 << "const" << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +00001665 if (FTI.TypeQuals & QualType::Volatile)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001666 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
1667 << "volatile" << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +00001668 if (FTI.TypeQuals & QualType::Restrict)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001669 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
1670 << "restrict" << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +00001671 }
1672
1673 // Rebuild the function type "R" without any type qualifiers (in
1674 // case any of the errors above fired) and with "void" as the
1675 // return type, since constructors don't have return types. We
1676 // *always* have to do this, because GetTypeForDeclarator will
1677 // put in a result type of "int" when none was specified.
Douglas Gregor72564e72009-02-26 23:50:07 +00001678 const FunctionProtoType *Proto = R->getAsFunctionProtoType();
Chris Lattner65401802009-04-25 08:28:21 +00001679 return Context.getFunctionType(Context.VoidTy, Proto->arg_type_begin(),
1680 Proto->getNumArgs(),
1681 Proto->isVariadic(), 0);
Douglas Gregor42a552f2008-11-05 20:51:48 +00001682}
1683
Douglas Gregor72b505b2008-12-16 21:30:33 +00001684/// CheckConstructor - Checks a fully-formed constructor for
1685/// well-formedness, issuing any diagnostics required. Returns true if
1686/// the constructor declarator is invalid.
Chris Lattner6e475012009-04-25 08:35:12 +00001687void Sema::CheckConstructor(CXXConstructorDecl *Constructor) {
Douglas Gregor33297562009-03-27 04:38:56 +00001688 CXXRecordDecl *ClassDecl
1689 = dyn_cast<CXXRecordDecl>(Constructor->getDeclContext());
1690 if (!ClassDecl)
Chris Lattner6e475012009-04-25 08:35:12 +00001691 return Constructor->setInvalidDecl();
Douglas Gregor72b505b2008-12-16 21:30:33 +00001692
1693 // C++ [class.copy]p3:
1694 // A declaration of a constructor for a class X is ill-formed if
1695 // its first parameter is of type (optionally cv-qualified) X and
1696 // either there are no other parameters or else all other
1697 // parameters have default arguments.
Douglas Gregor33297562009-03-27 04:38:56 +00001698 if (!Constructor->isInvalidDecl() &&
1699 ((Constructor->getNumParams() == 1) ||
1700 (Constructor->getNumParams() > 1 &&
Anders Carlssonae0b4e72009-06-06 04:14:07 +00001701 Constructor->getParamDecl(1)->hasDefaultArg()))) {
Douglas Gregor72b505b2008-12-16 21:30:33 +00001702 QualType ParamType = Constructor->getParamDecl(0)->getType();
1703 QualType ClassTy = Context.getTagDeclType(ClassDecl);
1704 if (Context.getCanonicalType(ParamType).getUnqualifiedType() == ClassTy) {
Douglas Gregora3a83512009-04-01 23:51:29 +00001705 SourceLocation ParamLoc = Constructor->getParamDecl(0)->getLocation();
1706 Diag(ParamLoc, diag::err_constructor_byvalue_arg)
Douglas Gregor558cb562009-04-02 01:08:08 +00001707 << CodeModificationHint::CreateInsertion(ParamLoc, " const &");
Chris Lattner6e475012009-04-25 08:35:12 +00001708 Constructor->setInvalidDecl();
Douglas Gregor72b505b2008-12-16 21:30:33 +00001709 }
1710 }
1711
1712 // Notify the class that we've added a constructor.
1713 ClassDecl->addedConstructor(Context, Constructor);
Douglas Gregor72b505b2008-12-16 21:30:33 +00001714}
1715
Anders Carlsson7786d1c2009-04-30 23:18:11 +00001716static inline bool
1717FTIHasSingleVoidArgument(DeclaratorChunk::FunctionTypeInfo &FTI) {
1718 return (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
1719 FTI.ArgInfo[0].Param &&
1720 FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType()->isVoidType());
1721}
1722
Douglas Gregor42a552f2008-11-05 20:51:48 +00001723/// CheckDestructorDeclarator - Called by ActOnDeclarator to check
1724/// the well-formednes of the destructor declarator @p D with type @p
1725/// R. If there are any errors in the declarator, this routine will
Chris Lattner65401802009-04-25 08:28:21 +00001726/// emit diagnostics and set the declarator to invalid. Even if this happens,
1727/// will be updated to reflect a well-formed type for the destructor and
1728/// returned.
1729QualType Sema::CheckDestructorDeclarator(Declarator &D,
1730 FunctionDecl::StorageClass& SC) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00001731 // C++ [class.dtor]p1:
1732 // [...] A typedef-name that names a class is a class-name
1733 // (7.1.3); however, a typedef-name that names a class shall not
1734 // be used as the identifier in the declarator for a destructor
1735 // declaration.
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +00001736 QualType DeclaratorType = GetTypeFromParser(D.getDeclaratorIdType());
Chris Lattner65401802009-04-25 08:28:21 +00001737 if (isa<TypedefType>(DeclaratorType)) {
1738 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
Douglas Gregor1a51b4a2009-02-09 15:09:02 +00001739 << DeclaratorType;
Chris Lattner65401802009-04-25 08:28:21 +00001740 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00001741 }
1742
1743 // C++ [class.dtor]p2:
1744 // A destructor is used to destroy objects of its class type. A
1745 // destructor takes no parameters, and no return type can be
1746 // specified for it (not even void). The address of a destructor
1747 // shall not be taken. A destructor shall not be static. A
1748 // destructor can be invoked for a const, volatile or const
1749 // volatile object. A destructor shall not be declared const,
1750 // volatile or const volatile (9.3.2).
1751 if (SC == FunctionDecl::Static) {
Chris Lattner65401802009-04-25 08:28:21 +00001752 if (!D.isInvalidType())
1753 Diag(D.getIdentifierLoc(), diag::err_destructor_cannot_be)
1754 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
1755 << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +00001756 SC = FunctionDecl::None;
Chris Lattner65401802009-04-25 08:28:21 +00001757 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00001758 }
Chris Lattner65401802009-04-25 08:28:21 +00001759 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00001760 // Destructors don't have return types, but the parser will
1761 // happily parse something like:
1762 //
1763 // class X {
1764 // float ~X();
1765 // };
1766 //
1767 // The return type will be eliminated later.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001768 Diag(D.getIdentifierLoc(), diag::err_destructor_return_type)
1769 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
1770 << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +00001771 }
Chris Lattner65401802009-04-25 08:28:21 +00001772
1773 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
1774 if (FTI.TypeQuals != 0 && !D.isInvalidType()) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00001775 if (FTI.TypeQuals & QualType::Const)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001776 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
1777 << "const" << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +00001778 if (FTI.TypeQuals & QualType::Volatile)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001779 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
1780 << "volatile" << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +00001781 if (FTI.TypeQuals & QualType::Restrict)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001782 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
1783 << "restrict" << SourceRange(D.getIdentifierLoc());
Chris Lattner65401802009-04-25 08:28:21 +00001784 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00001785 }
1786
1787 // Make sure we don't have any parameters.
Anders Carlsson7786d1c2009-04-30 23:18:11 +00001788 if (FTI.NumArgs > 0 && !FTIHasSingleVoidArgument(FTI)) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00001789 Diag(D.getIdentifierLoc(), diag::err_destructor_with_params);
1790
1791 // Delete the parameters.
Chris Lattner65401802009-04-25 08:28:21 +00001792 FTI.freeArgs();
1793 D.setInvalidType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00001794 }
1795
1796 // Make sure the destructor isn't variadic.
Chris Lattner65401802009-04-25 08:28:21 +00001797 if (FTI.isVariadic) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00001798 Diag(D.getIdentifierLoc(), diag::err_destructor_variadic);
Chris Lattner65401802009-04-25 08:28:21 +00001799 D.setInvalidType();
1800 }
Douglas Gregor42a552f2008-11-05 20:51:48 +00001801
1802 // Rebuild the function type "R" without any type qualifiers or
1803 // parameters (in case any of the errors above fired) and with
1804 // "void" as the return type, since destructors don't have return
1805 // types. We *always* have to do this, because GetTypeForDeclarator
1806 // will put in a result type of "int" when none was specified.
Chris Lattner65401802009-04-25 08:28:21 +00001807 return Context.getFunctionType(Context.VoidTy, 0, 0, false, 0);
Douglas Gregor42a552f2008-11-05 20:51:48 +00001808}
1809
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001810/// CheckConversionDeclarator - Called by ActOnDeclarator to check the
1811/// well-formednes of the conversion function declarator @p D with
1812/// type @p R. If there are any errors in the declarator, this routine
1813/// will emit diagnostics and return true. Otherwise, it will return
1814/// false. Either way, the type @p R will be updated to reflect a
1815/// well-formed type for the conversion operator.
Chris Lattner6e475012009-04-25 08:35:12 +00001816void Sema::CheckConversionDeclarator(Declarator &D, QualType &R,
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001817 FunctionDecl::StorageClass& SC) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001818 // C++ [class.conv.fct]p1:
1819 // Neither parameter types nor return type can be specified. The
Eli Friedman33a31382009-08-05 19:21:58 +00001820 // type of a conversion function (8.3.5) is "function taking no
1821 // parameter returning conversion-type-id."
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001822 if (SC == FunctionDecl::Static) {
Chris Lattner6e475012009-04-25 08:35:12 +00001823 if (!D.isInvalidType())
1824 Diag(D.getIdentifierLoc(), diag::err_conv_function_not_member)
1825 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
1826 << SourceRange(D.getIdentifierLoc());
1827 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001828 SC = FunctionDecl::None;
1829 }
Chris Lattner6e475012009-04-25 08:35:12 +00001830 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001831 // Conversion functions don't have return types, but the parser will
1832 // happily parse something like:
1833 //
1834 // class X {
1835 // float operator bool();
1836 // };
1837 //
1838 // The return type will be changed later anyway.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001839 Diag(D.getIdentifierLoc(), diag::err_conv_function_return_type)
1840 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
1841 << SourceRange(D.getIdentifierLoc());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001842 }
1843
1844 // Make sure we don't have any parameters.
Douglas Gregor72564e72009-02-26 23:50:07 +00001845 if (R->getAsFunctionProtoType()->getNumArgs() > 0) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001846 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_params);
1847
1848 // Delete the parameters.
Chris Lattner1833a832009-01-20 21:06:38 +00001849 D.getTypeObject(0).Fun.freeArgs();
Chris Lattner6e475012009-04-25 08:35:12 +00001850 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001851 }
1852
1853 // Make sure the conversion function isn't variadic.
Chris Lattner6e475012009-04-25 08:35:12 +00001854 if (R->getAsFunctionProtoType()->isVariadic() && !D.isInvalidType()) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001855 Diag(D.getIdentifierLoc(), diag::err_conv_function_variadic);
Chris Lattner6e475012009-04-25 08:35:12 +00001856 D.setInvalidType();
1857 }
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001858
1859 // C++ [class.conv.fct]p4:
1860 // The conversion-type-id shall not represent a function type nor
1861 // an array type.
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +00001862 QualType ConvType = GetTypeFromParser(D.getDeclaratorIdType());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001863 if (ConvType->isArrayType()) {
1864 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_array);
1865 ConvType = Context.getPointerType(ConvType);
Chris Lattner6e475012009-04-25 08:35:12 +00001866 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001867 } else if (ConvType->isFunctionType()) {
1868 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_function);
1869 ConvType = Context.getPointerType(ConvType);
Chris Lattner6e475012009-04-25 08:35:12 +00001870 D.setInvalidType();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001871 }
1872
1873 // Rebuild the function type "R" without any parameters (in case any
1874 // of the errors above fired) and with the conversion type as the
1875 // return type.
1876 R = Context.getFunctionType(ConvType, 0, 0, false,
Douglas Gregor72564e72009-02-26 23:50:07 +00001877 R->getAsFunctionProtoType()->getTypeQuals());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001878
Douglas Gregor09f41cf2009-01-14 15:45:31 +00001879 // C++0x explicit conversion operators.
1880 if (D.getDeclSpec().isExplicitSpecified() && !getLangOptions().CPlusPlus0x)
1881 Diag(D.getDeclSpec().getExplicitSpecLoc(),
1882 diag::warn_explicit_conversion_functions)
1883 << SourceRange(D.getDeclSpec().getExplicitSpecLoc());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001884}
1885
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001886/// ActOnConversionDeclarator - Called by ActOnDeclarator to complete
1887/// the declaration of the given C++ conversion function. This routine
1888/// is responsible for recording the conversion function in the C++
1889/// class, if possible.
Chris Lattnerb28317a2009-03-28 19:18:32 +00001890Sema::DeclPtrTy Sema::ActOnConversionDeclarator(CXXConversionDecl *Conversion) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001891 assert(Conversion && "Expected to receive a conversion function declaration");
1892
Douglas Gregor9d350972008-12-12 08:25:50 +00001893 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Conversion->getDeclContext());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001894
1895 // Make sure we aren't redeclaring the conversion function.
1896 QualType ConvType = Context.getCanonicalType(Conversion->getConversionType());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001897
1898 // C++ [class.conv.fct]p1:
1899 // [...] A conversion function is never used to convert a
1900 // (possibly cv-qualified) object to the (possibly cv-qualified)
1901 // same object type (or a reference to it), to a (possibly
1902 // cv-qualified) base class of that type (or a reference to it),
1903 // or to (possibly cv-qualified) void.
Mike Stump390b4cc2009-05-16 07:39:55 +00001904 // FIXME: Suppress this warning if the conversion function ends up being a
1905 // virtual function that overrides a virtual function in a base class.
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001906 QualType ClassType
1907 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
Ted Kremenek6217b802009-07-29 21:53:49 +00001908 if (const ReferenceType *ConvTypeRef = ConvType->getAs<ReferenceType>())
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001909 ConvType = ConvTypeRef->getPointeeType();
1910 if (ConvType->isRecordType()) {
1911 ConvType = Context.getCanonicalType(ConvType).getUnqualifiedType();
1912 if (ConvType == ClassType)
Chris Lattner5dc266a2008-11-20 06:13:02 +00001913 Diag(Conversion->getLocation(), diag::warn_conv_to_self_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00001914 << ClassType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001915 else if (IsDerivedFrom(ClassType, ConvType))
Chris Lattner5dc266a2008-11-20 06:13:02 +00001916 Diag(Conversion->getLocation(), diag::warn_conv_to_base_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00001917 << ClassType << ConvType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001918 } else if (ConvType->isVoidType()) {
Chris Lattner5dc266a2008-11-20 06:13:02 +00001919 Diag(Conversion->getLocation(), diag::warn_conv_to_void_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00001920 << ClassType << ConvType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001921 }
1922
Douglas Gregor70316a02008-12-26 15:00:45 +00001923 if (Conversion->getPreviousDeclaration()) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001924 const NamedDecl *ExpectedPrevDecl = Conversion->getPreviousDeclaration();
1925 if (FunctionTemplateDecl *ConversionTemplate
1926 = Conversion->getDescribedFunctionTemplate())
1927 ExpectedPrevDecl = ConversionTemplate->getPreviousDeclaration();
Douglas Gregor70316a02008-12-26 15:00:45 +00001928 OverloadedFunctionDecl *Conversions = ClassDecl->getConversionFunctions();
1929 for (OverloadedFunctionDecl::function_iterator
1930 Conv = Conversions->function_begin(),
1931 ConvEnd = Conversions->function_end();
1932 Conv != ConvEnd; ++Conv) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001933 if (*Conv == ExpectedPrevDecl) {
Douglas Gregor70316a02008-12-26 15:00:45 +00001934 *Conv = Conversion;
Chris Lattnerb28317a2009-03-28 19:18:32 +00001935 return DeclPtrTy::make(Conversion);
Douglas Gregor70316a02008-12-26 15:00:45 +00001936 }
1937 }
1938 assert(Conversion->isInvalidDecl() && "Conversion should not get here.");
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001939 } else if (FunctionTemplateDecl *ConversionTemplate
1940 = Conversion->getDescribedFunctionTemplate())
1941 ClassDecl->addConversionFunction(Context, ConversionTemplate);
1942 else if (!Conversion->getPrimaryTemplate()) // ignore specializations
Douglas Gregor70316a02008-12-26 15:00:45 +00001943 ClassDecl->addConversionFunction(Context, Conversion);
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001944
Chris Lattnerb28317a2009-03-28 19:18:32 +00001945 return DeclPtrTy::make(Conversion);
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001946}
1947
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00001948//===----------------------------------------------------------------------===//
1949// Namespace Handling
1950//===----------------------------------------------------------------------===//
1951
1952/// ActOnStartNamespaceDef - This is called at the start of a namespace
1953/// definition.
Chris Lattnerb28317a2009-03-28 19:18:32 +00001954Sema::DeclPtrTy Sema::ActOnStartNamespaceDef(Scope *NamespcScope,
1955 SourceLocation IdentLoc,
1956 IdentifierInfo *II,
1957 SourceLocation LBrace) {
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00001958 NamespaceDecl *Namespc =
1959 NamespaceDecl::Create(Context, CurContext, IdentLoc, II);
1960 Namespc->setLBracLoc(LBrace);
1961
1962 Scope *DeclRegionScope = NamespcScope->getParent();
1963
1964 if (II) {
1965 // C++ [namespace.def]p2:
1966 // The identifier in an original-namespace-definition shall not have been
1967 // previously defined in the declarative region in which the
1968 // original-namespace-definition appears. The identifier in an
1969 // original-namespace-definition is the name of the namespace. Subsequently
1970 // in that declarative region, it is treated as an original-namespace-name.
1971
Douglas Gregor47b9a1c2009-02-04 17:27:36 +00001972 NamedDecl *PrevDecl = LookupName(DeclRegionScope, II, LookupOrdinaryName,
1973 true);
Douglas Gregor44b43212008-12-11 16:49:14 +00001974
1975 if (NamespaceDecl *OrigNS = dyn_cast_or_null<NamespaceDecl>(PrevDecl)) {
1976 // This is an extended namespace definition.
1977 // Attach this namespace decl to the chain of extended namespace
1978 // definitions.
1979 OrigNS->setNextNamespace(Namespc);
1980 Namespc->setOriginalNamespace(OrigNS->getOriginalNamespace());
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00001981
Douglas Gregor44b43212008-12-11 16:49:14 +00001982 // Remove the previous declaration from the scope.
Chris Lattnerb28317a2009-03-28 19:18:32 +00001983 if (DeclRegionScope->isDeclScope(DeclPtrTy::make(OrigNS))) {
Douglas Gregore267ff32008-12-11 20:41:00 +00001984 IdResolver.RemoveDecl(OrigNS);
Chris Lattnerb28317a2009-03-28 19:18:32 +00001985 DeclRegionScope->RemoveDecl(DeclPtrTy::make(OrigNS));
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00001986 }
Douglas Gregor44b43212008-12-11 16:49:14 +00001987 } else if (PrevDecl) {
1988 // This is an invalid name redefinition.
1989 Diag(Namespc->getLocation(), diag::err_redefinition_different_kind)
1990 << Namespc->getDeclName();
1991 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
1992 Namespc->setInvalidDecl();
1993 // Continue on to push Namespc as current DeclContext and return it.
1994 }
1995
1996 PushOnScopeChains(Namespc, DeclRegionScope);
1997 } else {
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00001998 // FIXME: Handle anonymous namespaces
1999 }
2000
2001 // Although we could have an invalid decl (i.e. the namespace name is a
2002 // redefinition), push it as current DeclContext and try to continue parsing.
Mike Stump390b4cc2009-05-16 07:39:55 +00002003 // FIXME: We should be able to push Namespc here, so that the each DeclContext
2004 // for the namespace has the declarations that showed up in that particular
2005 // namespace definition.
Douglas Gregor44b43212008-12-11 16:49:14 +00002006 PushDeclContext(NamespcScope, Namespc);
Chris Lattnerb28317a2009-03-28 19:18:32 +00002007 return DeclPtrTy::make(Namespc);
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00002008}
2009
2010/// ActOnFinishNamespaceDef - This callback is called after a namespace is
2011/// exited. Decl is the DeclTy returned by ActOnStartNamespaceDef.
Chris Lattnerb28317a2009-03-28 19:18:32 +00002012void Sema::ActOnFinishNamespaceDef(DeclPtrTy D, SourceLocation RBrace) {
2013 Decl *Dcl = D.getAs<Decl>();
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00002014 NamespaceDecl *Namespc = dyn_cast_or_null<NamespaceDecl>(Dcl);
2015 assert(Namespc && "Invalid parameter, expected NamespaceDecl");
2016 Namespc->setRBracLoc(RBrace);
2017 PopDeclContext();
2018}
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00002019
Chris Lattnerb28317a2009-03-28 19:18:32 +00002020Sema::DeclPtrTy Sema::ActOnUsingDirective(Scope *S,
2021 SourceLocation UsingLoc,
2022 SourceLocation NamespcLoc,
2023 const CXXScopeSpec &SS,
2024 SourceLocation IdentLoc,
2025 IdentifierInfo *NamespcName,
2026 AttributeList *AttrList) {
Douglas Gregorf780abc2008-12-30 03:27:21 +00002027 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
2028 assert(NamespcName && "Invalid NamespcName.");
2029 assert(IdentLoc.isValid() && "Invalid NamespceName location.");
Douglas Gregor2a3009a2009-02-03 19:21:40 +00002030 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Douglas Gregorf780abc2008-12-30 03:27:21 +00002031
Douglas Gregor2a3009a2009-02-03 19:21:40 +00002032 UsingDirectiveDecl *UDir = 0;
Douglas Gregorf780abc2008-12-30 03:27:21 +00002033
Douglas Gregoreb11cd02009-01-14 22:20:51 +00002034 // Lookup namespace name.
Douglas Gregor2a3009a2009-02-03 19:21:40 +00002035 LookupResult R = LookupParsedName(S, &SS, NamespcName,
2036 LookupNamespaceName, false);
2037 if (R.isAmbiguous()) {
2038 DiagnoseAmbiguousLookup(R, NamespcName, IdentLoc);
Chris Lattnerb28317a2009-03-28 19:18:32 +00002039 return DeclPtrTy();
Douglas Gregor2a3009a2009-02-03 19:21:40 +00002040 }
Douglas Gregor47b9a1c2009-02-04 17:27:36 +00002041 if (NamedDecl *NS = R) {
Douglas Gregorf780abc2008-12-30 03:27:21 +00002042 assert(isa<NamespaceDecl>(NS) && "expected namespace decl");
Douglas Gregor2a3009a2009-02-03 19:21:40 +00002043 // C++ [namespace.udir]p1:
2044 // A using-directive specifies that the names in the nominated
2045 // namespace can be used in the scope in which the
2046 // using-directive appears after the using-directive. During
2047 // unqualified name lookup (3.4.1), the names appear as if they
2048 // were declared in the nearest enclosing namespace which
2049 // contains both the using-directive and the nominated
Eli Friedman33a31382009-08-05 19:21:58 +00002050 // namespace. [Note: in this context, "contains" means "contains
2051 // directly or indirectly". ]
Douglas Gregor2a3009a2009-02-03 19:21:40 +00002052
2053 // Find enclosing context containing both using-directive and
2054 // nominated namespace.
2055 DeclContext *CommonAncestor = cast<DeclContext>(NS);
2056 while (CommonAncestor && !CommonAncestor->Encloses(CurContext))
2057 CommonAncestor = CommonAncestor->getParent();
2058
Douglas Gregor8419fa32009-05-30 06:31:56 +00002059 UDir = UsingDirectiveDecl::Create(Context,
2060 CurContext, UsingLoc,
2061 NamespcLoc,
2062 SS.getRange(),
2063 (NestedNameSpecifier *)SS.getScopeRep(),
2064 IdentLoc,
Douglas Gregor2a3009a2009-02-03 19:21:40 +00002065 cast<NamespaceDecl>(NS),
2066 CommonAncestor);
2067 PushUsingDirective(S, UDir);
Douglas Gregorf780abc2008-12-30 03:27:21 +00002068 } else {
Chris Lattneread013e2009-01-06 07:24:29 +00002069 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
Douglas Gregorf780abc2008-12-30 03:27:21 +00002070 }
2071
Douglas Gregor2a3009a2009-02-03 19:21:40 +00002072 // FIXME: We ignore attributes for now.
Douglas Gregorf780abc2008-12-30 03:27:21 +00002073 delete AttrList;
Chris Lattnerb28317a2009-03-28 19:18:32 +00002074 return DeclPtrTy::make(UDir);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00002075}
2076
2077void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) {
2078 // If scope has associated entity, then using directive is at namespace
2079 // or translation unit scope. We add UsingDirectiveDecls, into
2080 // it's lookup structure.
2081 if (DeclContext *Ctx = static_cast<DeclContext*>(S->getEntity()))
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002082 Ctx->addDecl(UDir);
Douglas Gregor2a3009a2009-02-03 19:21:40 +00002083 else
2084 // Otherwise it is block-sope. using-directives will affect lookup
2085 // only to the end of scope.
Chris Lattnerb28317a2009-03-28 19:18:32 +00002086 S->PushUsingDirective(DeclPtrTy::make(UDir));
Douglas Gregorf780abc2008-12-30 03:27:21 +00002087}
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00002088
Douglas Gregor9cfbe482009-06-20 00:51:54 +00002089
2090Sema::DeclPtrTy Sema::ActOnUsingDeclaration(Scope *S,
2091 SourceLocation UsingLoc,
2092 const CXXScopeSpec &SS,
2093 SourceLocation IdentLoc,
2094 IdentifierInfo *TargetName,
Anders Carlsson0c6139d2009-06-27 00:27:47 +00002095 OverloadedOperatorKind Op,
Douglas Gregor9cfbe482009-06-20 00:51:54 +00002096 AttributeList *AttrList,
2097 bool IsTypeName) {
2098 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
Eli Friedman5d39dee2009-06-27 05:59:59 +00002099 assert((TargetName || Op) && "Invalid TargetName.");
Douglas Gregor9cfbe482009-06-20 00:51:54 +00002100 assert(IdentLoc.isValid() && "Invalid TargetName location.");
2101 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
2102
2103 UsingDecl *UsingAlias = 0;
2104
Anders Carlsson0c6139d2009-06-27 00:27:47 +00002105 DeclarationName Name;
2106 if (TargetName)
2107 Name = TargetName;
2108 else
2109 Name = Context.DeclarationNames.getCXXOperatorName(Op);
Eli Friedman2a16a132009-08-27 05:09:36 +00002110
2111 // FIXME: Implement this properly!
2112 if (isUnknownSpecialization(SS)) {
2113 Diag(IdentLoc, diag::err_using_dependent_unsupported);
2114 delete AttrList;
2115 return DeclPtrTy::make((UsingDecl*)0);
2116 }
2117
Douglas Gregor9cfbe482009-06-20 00:51:54 +00002118 // Lookup target name.
Anders Carlsson0c6139d2009-06-27 00:27:47 +00002119 LookupResult R = LookupParsedName(S, &SS, Name, LookupOrdinaryName, false);
Douglas Gregor9cfbe482009-06-20 00:51:54 +00002120
2121 if (NamedDecl *NS = R) {
2122 if (IsTypeName && !isa<TypeDecl>(NS)) {
2123 Diag(IdentLoc, diag::err_using_typename_non_type);
2124 }
2125 UsingAlias = UsingDecl::Create(Context, CurContext, IdentLoc, SS.getRange(),
2126 NS->getLocation(), UsingLoc, NS,
2127 static_cast<NestedNameSpecifier *>(SS.getScopeRep()),
2128 IsTypeName);
2129 PushOnScopeChains(UsingAlias, S);
2130 } else {
2131 Diag(IdentLoc, diag::err_using_requires_qualname) << SS.getRange();
2132 }
2133
2134 // FIXME: We ignore attributes for now.
2135 delete AttrList;
2136 return DeclPtrTy::make(UsingAlias);
2137}
2138
Anders Carlsson81c85c42009-03-28 23:53:49 +00002139/// getNamespaceDecl - Returns the namespace a decl represents. If the decl
2140/// is a namespace alias, returns the namespace it points to.
2141static inline NamespaceDecl *getNamespaceDecl(NamedDecl *D) {
2142 if (NamespaceAliasDecl *AD = dyn_cast_or_null<NamespaceAliasDecl>(D))
2143 return AD->getNamespace();
2144 return dyn_cast_or_null<NamespaceDecl>(D);
2145}
2146
Chris Lattnerb28317a2009-03-28 19:18:32 +00002147Sema::DeclPtrTy Sema::ActOnNamespaceAliasDef(Scope *S,
Anders Carlsson03bd5a12009-03-28 22:53:22 +00002148 SourceLocation NamespaceLoc,
Chris Lattnerb28317a2009-03-28 19:18:32 +00002149 SourceLocation AliasLoc,
2150 IdentifierInfo *Alias,
2151 const CXXScopeSpec &SS,
Anders Carlsson03bd5a12009-03-28 22:53:22 +00002152 SourceLocation IdentLoc,
2153 IdentifierInfo *Ident) {
Anders Carlsson8d7ba402009-03-28 06:23:46 +00002154
Anders Carlsson81c85c42009-03-28 23:53:49 +00002155 // Lookup the namespace name.
2156 LookupResult R = LookupParsedName(S, &SS, Ident, LookupNamespaceName, false);
2157
Anders Carlsson8d7ba402009-03-28 06:23:46 +00002158 // Check if we have a previous declaration with the same name.
Anders Carlssondd729fc2009-03-28 23:49:35 +00002159 if (NamedDecl *PrevDecl = LookupName(S, Alias, LookupOrdinaryName, true)) {
Anders Carlsson81c85c42009-03-28 23:53:49 +00002160 if (NamespaceAliasDecl *AD = dyn_cast<NamespaceAliasDecl>(PrevDecl)) {
2161 // We already have an alias with the same name that points to the same
2162 // namespace, so don't create a new one.
2163 if (!R.isAmbiguous() && AD->getNamespace() == getNamespaceDecl(R))
2164 return DeclPtrTy();
2165 }
2166
Anders Carlsson8d7ba402009-03-28 06:23:46 +00002167 unsigned DiagID = isa<NamespaceDecl>(PrevDecl) ? diag::err_redefinition :
2168 diag::err_redefinition_different_kind;
2169 Diag(AliasLoc, DiagID) << Alias;
2170 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Chris Lattnerb28317a2009-03-28 19:18:32 +00002171 return DeclPtrTy();
Anders Carlsson8d7ba402009-03-28 06:23:46 +00002172 }
2173
Anders Carlsson5721c682009-03-28 06:42:02 +00002174 if (R.isAmbiguous()) {
Anders Carlsson03bd5a12009-03-28 22:53:22 +00002175 DiagnoseAmbiguousLookup(R, Ident, IdentLoc);
Chris Lattnerb28317a2009-03-28 19:18:32 +00002176 return DeclPtrTy();
Anders Carlsson5721c682009-03-28 06:42:02 +00002177 }
2178
2179 if (!R) {
2180 Diag(NamespaceLoc, diag::err_expected_namespace_name) << SS.getRange();
Chris Lattnerb28317a2009-03-28 19:18:32 +00002181 return DeclPtrTy();
Anders Carlsson5721c682009-03-28 06:42:02 +00002182 }
2183
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00002184 NamespaceAliasDecl *AliasDecl =
Douglas Gregor6c9c9402009-05-30 06:48:27 +00002185 NamespaceAliasDecl::Create(Context, CurContext, NamespaceLoc, AliasLoc,
2186 Alias, SS.getRange(),
2187 (NestedNameSpecifier *)SS.getScopeRep(),
Anders Carlsson68771c72009-03-28 22:58:02 +00002188 IdentLoc, R);
2189
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002190 CurContext->addDecl(AliasDecl);
Anders Carlsson68771c72009-03-28 22:58:02 +00002191 return DeclPtrTy::make(AliasDecl);
Anders Carlssondbb00942009-03-28 05:27:17 +00002192}
2193
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00002194void Sema::DefineImplicitDefaultConstructor(SourceLocation CurrentLocation,
2195 CXXConstructorDecl *Constructor) {
Fariborz Jahanian05a5c452009-06-22 20:37:23 +00002196 assert((Constructor->isImplicit() && Constructor->isDefaultConstructor() &&
2197 !Constructor->isUsed()) &&
2198 "DefineImplicitDefaultConstructor - call it for implicit default ctor");
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00002199
2200 CXXRecordDecl *ClassDecl
2201 = cast<CXXRecordDecl>(Constructor->getDeclContext());
Fariborz Jahanian485f0872009-06-22 23:34:40 +00002202 assert(ClassDecl && "DefineImplicitDefaultConstructor - invalid constructor");
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00002203 // Before the implicitly-declared default constructor for a class is
2204 // implicitly defined, all the implicitly-declared default constructors
2205 // for its base class and its non-static data members shall have been
2206 // implicitly defined.
2207 bool err = false;
Fariborz Jahanian514b7b12009-06-30 16:36:53 +00002208 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
2209 E = ClassDecl->bases_end(); Base != E; ++Base) {
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00002210 CXXRecordDecl *BaseClassDecl
Ted Kremenek6217b802009-07-29 21:53:49 +00002211 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00002212 if (!BaseClassDecl->hasTrivialConstructor()) {
2213 if (CXXConstructorDecl *BaseCtor =
Fariborz Jahanian220a0f32009-06-23 23:42:10 +00002214 BaseClassDecl->getDefaultConstructor(Context))
2215 MarkDeclarationReferenced(CurrentLocation, BaseCtor);
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00002216 else {
2217 Diag(CurrentLocation, diag::err_defining_default_ctor)
Fariborz Jahanian3da83eb2009-06-20 20:23:38 +00002218 << Context.getTagDeclType(ClassDecl) << 1
2219 << Context.getTagDeclType(BaseClassDecl);
2220 Diag(BaseClassDecl->getLocation(), diag::note_previous_class_decl)
2221 << Context.getTagDeclType(BaseClassDecl);
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00002222 err = true;
2223 }
2224 }
2225 }
Fariborz Jahanian514b7b12009-06-30 16:36:53 +00002226 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
2227 E = ClassDecl->field_end(); Field != E; ++Field) {
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00002228 QualType FieldType = Context.getCanonicalType((*Field)->getType());
2229 if (const ArrayType *Array = Context.getAsArrayType(FieldType))
2230 FieldType = Array->getElementType();
Ted Kremenek6217b802009-07-29 21:53:49 +00002231 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00002232 CXXRecordDecl *FieldClassDecl
2233 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Duncan Sands6887e632009-06-25 09:03:06 +00002234 if (!FieldClassDecl->hasTrivialConstructor()) {
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00002235 if (CXXConstructorDecl *FieldCtor =
Fariborz Jahanian220a0f32009-06-23 23:42:10 +00002236 FieldClassDecl->getDefaultConstructor(Context))
2237 MarkDeclarationReferenced(CurrentLocation, FieldCtor);
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00002238 else {
2239 Diag(CurrentLocation, diag::err_defining_default_ctor)
Fariborz Jahanian3da83eb2009-06-20 20:23:38 +00002240 << Context.getTagDeclType(ClassDecl) << 0 <<
2241 Context.getTagDeclType(FieldClassDecl);
2242 Diag(FieldClassDecl->getLocation(), diag::note_previous_class_decl)
2243 << Context.getTagDeclType(FieldClassDecl);
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00002244 err = true;
2245 }
2246 }
Mike Stumpac5fc7c2009-08-04 21:02:39 +00002247 } else if (FieldType->isReferenceType()) {
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00002248 Diag(CurrentLocation, diag::err_unintialized_member)
Anders Carlsson5eda8162009-07-09 17:37:12 +00002249 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00002250 Diag((*Field)->getLocation(), diag::note_declared_at);
2251 err = true;
Mike Stumpac5fc7c2009-08-04 21:02:39 +00002252 } else if (FieldType.isConstQualified()) {
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00002253 Diag(CurrentLocation, diag::err_unintialized_member)
Anders Carlsson5eda8162009-07-09 17:37:12 +00002254 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00002255 Diag((*Field)->getLocation(), diag::note_declared_at);
2256 err = true;
2257 }
2258 }
2259 if (!err)
Fariborz Jahanianc6249b92009-06-26 16:08:57 +00002260 Constructor->setUsed();
2261 else
2262 Constructor->setInvalidDecl();
Fariborz Jahanianf8dcb862009-06-19 19:55:27 +00002263}
2264
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00002265void Sema::DefineImplicitDestructor(SourceLocation CurrentLocation,
2266 CXXDestructorDecl *Destructor) {
2267 assert((Destructor->isImplicit() && !Destructor->isUsed()) &&
2268 "DefineImplicitDestructor - call it for implicit default dtor");
2269
2270 CXXRecordDecl *ClassDecl
2271 = cast<CXXRecordDecl>(Destructor->getDeclContext());
2272 assert(ClassDecl && "DefineImplicitDestructor - invalid destructor");
2273 // C++ [class.dtor] p5
2274 // Before the implicitly-declared default destructor for a class is
2275 // implicitly defined, all the implicitly-declared default destructors
2276 // for its base class and its non-static data members shall have been
2277 // implicitly defined.
Fariborz Jahanian514b7b12009-06-30 16:36:53 +00002278 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
2279 E = ClassDecl->bases_end(); Base != E; ++Base) {
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00002280 CXXRecordDecl *BaseClassDecl
Ted Kremenek6217b802009-07-29 21:53:49 +00002281 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00002282 if (!BaseClassDecl->hasTrivialDestructor()) {
2283 if (CXXDestructorDecl *BaseDtor =
2284 const_cast<CXXDestructorDecl*>(BaseClassDecl->getDestructor(Context)))
2285 MarkDeclarationReferenced(CurrentLocation, BaseDtor);
2286 else
2287 assert(false &&
2288 "DefineImplicitDestructor - missing dtor in a base class");
2289 }
2290 }
2291
Fariborz Jahanian514b7b12009-06-30 16:36:53 +00002292 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
2293 E = ClassDecl->field_end(); Field != E; ++Field) {
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00002294 QualType FieldType = Context.getCanonicalType((*Field)->getType());
2295 if (const ArrayType *Array = Context.getAsArrayType(FieldType))
2296 FieldType = Array->getElementType();
Ted Kremenek6217b802009-07-29 21:53:49 +00002297 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00002298 CXXRecordDecl *FieldClassDecl
2299 = cast<CXXRecordDecl>(FieldClassType->getDecl());
2300 if (!FieldClassDecl->hasTrivialDestructor()) {
2301 if (CXXDestructorDecl *FieldDtor =
2302 const_cast<CXXDestructorDecl*>(
2303 FieldClassDecl->getDestructor(Context)))
2304 MarkDeclarationReferenced(CurrentLocation, FieldDtor);
2305 else
2306 assert(false &&
2307 "DefineImplicitDestructor - missing dtor in class of a data member");
2308 }
2309 }
2310 }
2311 Destructor->setUsed();
2312}
2313
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00002314void Sema::DefineImplicitOverloadedAssign(SourceLocation CurrentLocation,
2315 CXXMethodDecl *MethodDecl) {
2316 assert((MethodDecl->isImplicit() && MethodDecl->isOverloadedOperator() &&
2317 MethodDecl->getOverloadedOperator() == OO_Equal &&
2318 !MethodDecl->isUsed()) &&
2319 "DefineImplicitOverloadedAssign - call it for implicit assignment op");
2320
2321 CXXRecordDecl *ClassDecl
2322 = cast<CXXRecordDecl>(MethodDecl->getDeclContext());
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00002323
Fariborz Jahanianc6249b92009-06-26 16:08:57 +00002324 // C++[class.copy] p12
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00002325 // Before the implicitly-declared copy assignment operator for a class is
2326 // implicitly defined, all implicitly-declared copy assignment operators
2327 // for its direct base classes and its nonstatic data members shall have
2328 // been implicitly defined.
2329 bool err = false;
Fariborz Jahanian514b7b12009-06-30 16:36:53 +00002330 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
2331 E = ClassDecl->bases_end(); Base != E; ++Base) {
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00002332 CXXRecordDecl *BaseClassDecl
Ted Kremenek6217b802009-07-29 21:53:49 +00002333 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00002334 if (CXXMethodDecl *BaseAssignOpMethod =
2335 getAssignOperatorMethod(MethodDecl->getParamDecl(0), BaseClassDecl))
2336 MarkDeclarationReferenced(CurrentLocation, BaseAssignOpMethod);
2337 }
Fariborz Jahanian514b7b12009-06-30 16:36:53 +00002338 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
2339 E = ClassDecl->field_end(); Field != E; ++Field) {
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00002340 QualType FieldType = Context.getCanonicalType((*Field)->getType());
2341 if (const ArrayType *Array = Context.getAsArrayType(FieldType))
2342 FieldType = Array->getElementType();
Ted Kremenek6217b802009-07-29 21:53:49 +00002343 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00002344 CXXRecordDecl *FieldClassDecl
2345 = cast<CXXRecordDecl>(FieldClassType->getDecl());
2346 if (CXXMethodDecl *FieldAssignOpMethod =
2347 getAssignOperatorMethod(MethodDecl->getParamDecl(0), FieldClassDecl))
2348 MarkDeclarationReferenced(CurrentLocation, FieldAssignOpMethod);
Mike Stumpac5fc7c2009-08-04 21:02:39 +00002349 } else if (FieldType->isReferenceType()) {
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00002350 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
Anders Carlsson5e09d4c2009-07-09 17:47:25 +00002351 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName();
2352 Diag(Field->getLocation(), diag::note_declared_at);
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00002353 Diag(CurrentLocation, diag::note_first_required_here);
2354 err = true;
Mike Stumpac5fc7c2009-08-04 21:02:39 +00002355 } else if (FieldType.isConstQualified()) {
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00002356 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign)
Anders Carlsson5e09d4c2009-07-09 17:47:25 +00002357 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName();
2358 Diag(Field->getLocation(), diag::note_declared_at);
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00002359 Diag(CurrentLocation, diag::note_first_required_here);
2360 err = true;
2361 }
2362 }
2363 if (!err)
2364 MethodDecl->setUsed();
2365}
2366
2367CXXMethodDecl *
2368Sema::getAssignOperatorMethod(ParmVarDecl *ParmDecl,
2369 CXXRecordDecl *ClassDecl) {
2370 QualType LHSType = Context.getTypeDeclType(ClassDecl);
2371 QualType RHSType(LHSType);
2372 // If class's assignment operator argument is const/volatile qualified,
2373 // look for operator = (const/volatile B&). Otherwise, look for
2374 // operator = (B&).
2375 if (ParmDecl->getType().isConstQualified())
2376 RHSType.addConst();
2377 if (ParmDecl->getType().isVolatileQualified())
2378 RHSType.addVolatile();
2379 ExprOwningPtr<Expr> LHS(this, new (Context) DeclRefExpr(ParmDecl,
2380 LHSType,
2381 SourceLocation()));
2382 ExprOwningPtr<Expr> RHS(this, new (Context) DeclRefExpr(ParmDecl,
2383 RHSType,
2384 SourceLocation()));
2385 Expr *Args[2] = { &*LHS, &*RHS };
2386 OverloadCandidateSet CandidateSet;
2387 AddMemberOperatorCandidates(clang::OO_Equal, SourceLocation(), Args, 2,
2388 CandidateSet);
2389 OverloadCandidateSet::iterator Best;
2390 if (BestViableFunction(CandidateSet,
2391 ClassDecl->getLocation(), Best) == OR_Success)
2392 return cast<CXXMethodDecl>(Best->Function);
2393 assert(false &&
2394 "getAssignOperatorMethod - copy assignment operator method not found");
2395 return 0;
2396}
2397
Fariborz Jahanian485f0872009-06-22 23:34:40 +00002398void Sema::DefineImplicitCopyConstructor(SourceLocation CurrentLocation,
2399 CXXConstructorDecl *CopyConstructor,
2400 unsigned TypeQuals) {
2401 assert((CopyConstructor->isImplicit() &&
2402 CopyConstructor->isCopyConstructor(Context, TypeQuals) &&
2403 !CopyConstructor->isUsed()) &&
2404 "DefineImplicitCopyConstructor - call it for implicit copy ctor");
2405
2406 CXXRecordDecl *ClassDecl
2407 = cast<CXXRecordDecl>(CopyConstructor->getDeclContext());
2408 assert(ClassDecl && "DefineImplicitCopyConstructor - invalid constructor");
Fariborz Jahanian220a0f32009-06-23 23:42:10 +00002409 // C++ [class.copy] p209
Fariborz Jahanian485f0872009-06-22 23:34:40 +00002410 // Before the implicitly-declared copy constructor for a class is
2411 // implicitly defined, all the implicitly-declared copy constructors
2412 // for its base class and its non-static data members shall have been
2413 // implicitly defined.
2414 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin();
2415 Base != ClassDecl->bases_end(); ++Base) {
2416 CXXRecordDecl *BaseClassDecl
Ted Kremenek6217b802009-07-29 21:53:49 +00002417 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Fariborz Jahanian485f0872009-06-22 23:34:40 +00002418 if (CXXConstructorDecl *BaseCopyCtor =
2419 BaseClassDecl->getCopyConstructor(Context, TypeQuals))
Fariborz Jahanian220a0f32009-06-23 23:42:10 +00002420 MarkDeclarationReferenced(CurrentLocation, BaseCopyCtor);
Fariborz Jahanian485f0872009-06-22 23:34:40 +00002421 }
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002422 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
2423 FieldEnd = ClassDecl->field_end();
2424 Field != FieldEnd; ++Field) {
Fariborz Jahanian485f0872009-06-22 23:34:40 +00002425 QualType FieldType = Context.getCanonicalType((*Field)->getType());
2426 if (const ArrayType *Array = Context.getAsArrayType(FieldType))
2427 FieldType = Array->getElementType();
Ted Kremenek6217b802009-07-29 21:53:49 +00002428 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
Fariborz Jahanian485f0872009-06-22 23:34:40 +00002429 CXXRecordDecl *FieldClassDecl
2430 = cast<CXXRecordDecl>(FieldClassType->getDecl());
2431 if (CXXConstructorDecl *FieldCopyCtor =
2432 FieldClassDecl->getCopyConstructor(Context, TypeQuals))
Fariborz Jahanian220a0f32009-06-23 23:42:10 +00002433 MarkDeclarationReferenced(CurrentLocation, FieldCopyCtor);
Fariborz Jahanian485f0872009-06-22 23:34:40 +00002434 }
2435 }
2436 CopyConstructor->setUsed();
2437}
2438
Anders Carlssonda3f4e22009-08-25 05:12:04 +00002439Sema::OwningExprResult
2440Sema::BuildCXXConstructExpr(QualType DeclInitType,
2441 CXXConstructorDecl *Constructor,
2442 Expr **Exprs, unsigned NumExprs) {
Anders Carlsson9abf2ae2009-08-16 05:13:48 +00002443 bool Elidable = false;
2444
2445 // [class.copy]p15:
2446 // Whenever a temporary class object is copied using a copy constructor, and
2447 // this object and the copy have the same cv-unqualified type, an
2448 // implementation is permitted to treat the original and the copy as two
2449 // different ways of referring to the same object and not perform a copy at
2450 //all, even if the class copy constructor or destructor have side effects.
2451
2452 // FIXME: Is this enough?
2453 if (Constructor->isCopyConstructor(Context) && NumExprs == 1) {
2454 Expr *E = Exprs[0];
2455 while (CXXBindTemporaryExpr *BE = dyn_cast<CXXBindTemporaryExpr>(E))
2456 E = BE->getSubExpr();
2457
2458 if (isa<CallExpr>(E) || isa<CXXTemporaryObjectExpr>(E))
2459 Elidable = true;
2460 }
2461
2462 return BuildCXXConstructExpr(DeclInitType, Constructor, Elidable,
2463 Exprs, NumExprs);
2464}
2465
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00002466/// BuildCXXConstructExpr - Creates a complete call to a constructor,
2467/// including handling of its default argument expressions.
Anders Carlssonda3f4e22009-08-25 05:12:04 +00002468Sema::OwningExprResult
2469Sema::BuildCXXConstructExpr(QualType DeclInitType,
2470 CXXConstructorDecl *Constructor,
2471 bool Elidable,
2472 Expr **Exprs,
2473 unsigned NumExprs) {
Anders Carlsson8644aec2009-08-25 13:07:08 +00002474 ExprOwningPtr<CXXConstructExpr> Temp(this,
2475 CXXConstructExpr::Create(Context,
2476 DeclInitType,
2477 Constructor,
2478 Elidable,
2479 Exprs,
2480 NumExprs));
Anders Carlssone7624a72009-08-27 05:08:22 +00002481 // Default arguments must be added to constructor call expression.
Fariborz Jahanian2eeed7b2009-08-05 00:26:10 +00002482 FunctionDecl *FDecl = cast<FunctionDecl>(Constructor);
2483 unsigned NumArgsInProto = FDecl->param_size();
2484 for (unsigned j = NumExprs; j != NumArgsInProto; j++) {
Anders Carlsson8644aec2009-08-25 13:07:08 +00002485 ParmVarDecl *Param = FDecl->getParamDecl(j);
2486
2487 OwningExprResult ArgExpr =
2488 BuildCXXDefaultArgExpr(/*FIXME:*/SourceLocation(),
2489 FDecl, Param);
2490 if (ArgExpr.isInvalid())
2491 return ExprError();
2492
2493 Temp->setArg(j, ArgExpr.takeAs<Expr>());
Fariborz Jahanian2eeed7b2009-08-05 00:26:10 +00002494 }
Anders Carlsson8644aec2009-08-25 13:07:08 +00002495 return move(Temp);
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00002496}
2497
Anders Carlssone7624a72009-08-27 05:08:22 +00002498Sema::OwningExprResult
2499Sema::BuildCXXTemporaryObjectExpr(CXXConstructorDecl *Constructor,
2500 QualType Ty,
2501 SourceLocation TyBeginLoc,
2502 MultiExprArg Args,
2503 SourceLocation RParenLoc) {
2504 CXXTemporaryObjectExpr *E
2505 = new (Context) CXXTemporaryObjectExpr(Context, Constructor, Ty, TyBeginLoc,
2506 (Expr **)Args.get(),
2507 Args.size(), RParenLoc);
2508
2509 ExprOwningPtr<CXXTemporaryObjectExpr> Temp(this, E);
2510
2511 // Default arguments must be added to constructor call expression.
2512 FunctionDecl *FDecl = cast<FunctionDecl>(Constructor);
2513 unsigned NumArgsInProto = FDecl->param_size();
2514 for (unsigned j = Args.size(); j != NumArgsInProto; j++) {
2515 ParmVarDecl *Param = FDecl->getParamDecl(j);
2516
2517 OwningExprResult ArgExpr = BuildCXXDefaultArgExpr(TyBeginLoc, FDecl, Param);
2518 if (ArgExpr.isInvalid())
2519 return ExprError();
2520
2521 Temp->setArg(j, ArgExpr.takeAs<Expr>());
2522 }
2523
2524 Args.release();
2525 return move(Temp);
2526}
2527
2528
Anders Carlssonfe2de492009-08-25 05:18:00 +00002529bool Sema::InitializeVarWithConstructor(VarDecl *VD,
Fariborz Jahanianb2c352e2009-08-05 17:03:54 +00002530 CXXConstructorDecl *Constructor,
2531 QualType DeclInitType,
2532 Expr **Exprs, unsigned NumExprs) {
Anders Carlssonda3f4e22009-08-25 05:12:04 +00002533 OwningExprResult TempResult = BuildCXXConstructExpr(DeclInitType, Constructor,
2534 Exprs, NumExprs);
Anders Carlssonfe2de492009-08-25 05:18:00 +00002535 if (TempResult.isInvalid())
2536 return true;
Anders Carlssonda3f4e22009-08-25 05:12:04 +00002537
2538 Expr *Temp = TempResult.takeAs<Expr>();
Douglas Gregord7f37bf2009-06-22 23:06:13 +00002539 MarkDeclarationReferenced(VD->getLocation(), Constructor);
Fariborz Jahaniancaa499b2009-08-05 18:17:32 +00002540 Temp = MaybeCreateCXXExprWithTemporaries(Temp, /*DestroyTemps=*/true);
Douglas Gregor78d15832009-05-26 18:54:04 +00002541 VD->setInit(Context, Temp);
Anders Carlssonfe2de492009-08-25 05:18:00 +00002542
2543 return false;
Anders Carlsson930e8d02009-04-16 23:50:50 +00002544}
2545
Fariborz Jahaniana83f7ed2009-08-03 19:13:25 +00002546void Sema::FinalizeVarWithDestructor(VarDecl *VD, QualType DeclInitType)
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00002547{
2548 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(
Ted Kremenek6217b802009-07-29 21:53:49 +00002549 DeclInitType->getAs<RecordType>()->getDecl());
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00002550 if (!ClassDecl->hasTrivialDestructor())
2551 if (CXXDestructorDecl *Destructor =
2552 const_cast<CXXDestructorDecl*>(ClassDecl->getDestructor(Context)))
Fariborz Jahaniana83f7ed2009-08-03 19:13:25 +00002553 MarkDeclarationReferenced(VD->getLocation(), Destructor);
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00002554}
2555
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00002556/// AddCXXDirectInitializerToDecl - This action is called immediately after
2557/// ActOnDeclarator, when a C++ direct initializer is present.
2558/// e.g: "int x(1);"
Chris Lattnerb28317a2009-03-28 19:18:32 +00002559void Sema::AddCXXDirectInitializerToDecl(DeclPtrTy Dcl,
2560 SourceLocation LParenLoc,
Sebastian Redlf53597f2009-03-15 17:47:39 +00002561 MultiExprArg Exprs,
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00002562 SourceLocation *CommaLocs,
2563 SourceLocation RParenLoc) {
Sebastian Redlf53597f2009-03-15 17:47:39 +00002564 unsigned NumExprs = Exprs.size();
2565 assert(NumExprs != 0 && Exprs.get() && "missing expressions");
Chris Lattnerb28317a2009-03-28 19:18:32 +00002566 Decl *RealDecl = Dcl.getAs<Decl>();
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00002567
2568 // If there is no declaration, there was an error parsing it. Just ignore
2569 // the initializer.
Chris Lattnerb28317a2009-03-28 19:18:32 +00002570 if (RealDecl == 0)
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00002571 return;
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00002572
2573 VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl);
2574 if (!VDecl) {
2575 Diag(RealDecl->getLocation(), diag::err_illegal_initializer);
2576 RealDecl->setInvalidDecl();
2577 return;
2578 }
2579
Douglas Gregor83ddad32009-08-26 21:14:46 +00002580 // We will represent direct-initialization similarly to copy-initialization:
Argyrios Kyrtzidisce8e2922008-10-06 23:08:37 +00002581 // int x(1); -as-> int x = 1;
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00002582 // ClassType x(a,b,c); -as-> ClassType x = ClassType(a,b,c);
2583 //
2584 // Clients that want to distinguish between the two forms, can check for
2585 // direct initializer using VarDecl::hasCXXDirectInitializer().
2586 // A major benefit is that clients that don't particularly care about which
2587 // exactly form was it (like the CodeGen) can handle both cases without
2588 // special case code.
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +00002589
Douglas Gregor83ddad32009-08-26 21:14:46 +00002590 // If either the declaration has a dependent type or if any of the expressions
2591 // is type-dependent, we represent the initialization via a ParenListExpr for
2592 // later use during template instantiation.
2593 if (VDecl->getType()->isDependentType() ||
2594 Expr::hasAnyTypeDependentArguments((Expr **)Exprs.get(), Exprs.size())) {
2595 // Let clients know that initialization was done with a direct initializer.
2596 VDecl->setCXXDirectInitializer(true);
2597
2598 // Store the initialization expressions as a ParenListExpr.
2599 unsigned NumExprs = Exprs.size();
2600 VDecl->setInit(Context,
2601 new (Context) ParenListExpr(Context, LParenLoc,
2602 (Expr **)Exprs.release(),
2603 NumExprs, RParenLoc));
2604 return;
2605 }
2606
2607
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00002608 // C++ 8.5p11:
2609 // The form of initialization (using parentheses or '=') is generally
2610 // insignificant, but does matter when the entity being initialized has a
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +00002611 // class type.
Douglas Gregor18fe5682008-11-03 20:45:27 +00002612 QualType DeclInitType = VDecl->getType();
2613 if (const ArrayType *Array = Context.getAsArrayType(DeclInitType))
2614 DeclInitType = Array->getElementType();
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +00002615
Douglas Gregor615c5d42009-03-24 16:43:20 +00002616 // FIXME: This isn't the right place to complete the type.
2617 if (RequireCompleteType(VDecl->getLocation(), VDecl->getType(),
2618 diag::err_typecheck_decl_incomplete_type)) {
2619 VDecl->setInvalidDecl();
2620 return;
2621 }
2622
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +00002623 if (VDecl->getType()->isRecordType()) {
Douglas Gregor18fe5682008-11-03 20:45:27 +00002624 CXXConstructorDecl *Constructor
Sebastian Redlf53597f2009-03-15 17:47:39 +00002625 = PerformInitializationByConstructor(DeclInitType,
2626 (Expr **)Exprs.get(), NumExprs,
Douglas Gregorf03d7c72008-11-05 15:29:30 +00002627 VDecl->getLocation(),
2628 SourceRange(VDecl->getLocation(),
2629 RParenLoc),
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00002630 VDecl->getDeclName(),
Douglas Gregorf03d7c72008-11-05 15:29:30 +00002631 IK_Direct);
Sebastian Redlf53597f2009-03-15 17:47:39 +00002632 if (!Constructor)
Douglas Gregor18fe5682008-11-03 20:45:27 +00002633 RealDecl->setInvalidDecl();
Anders Carlssonca29ad92009-04-15 21:48:18 +00002634 else {
Anders Carlssonca29ad92009-04-15 21:48:18 +00002635 VDecl->setCXXDirectInitializer(true);
Anders Carlssonfe2de492009-08-25 05:18:00 +00002636 if (InitializeVarWithConstructor(VDecl, Constructor, DeclInitType,
2637 (Expr**)Exprs.release(), NumExprs))
2638 RealDecl->setInvalidDecl();
Fariborz Jahaniana83f7ed2009-08-03 19:13:25 +00002639 FinalizeVarWithDestructor(VDecl, DeclInitType);
Anders Carlssonca29ad92009-04-15 21:48:18 +00002640 }
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +00002641 return;
2642 }
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00002643
Argyrios Kyrtzidisce8e2922008-10-06 23:08:37 +00002644 if (NumExprs > 1) {
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00002645 Diag(CommaLocs[0], diag::err_builtin_direct_init_more_than_one_arg)
2646 << SourceRange(VDecl->getLocation(), RParenLoc);
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00002647 RealDecl->setInvalidDecl();
2648 return;
2649 }
2650
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00002651 // Let clients know that initialization was done with a direct initializer.
2652 VDecl->setCXXDirectInitializer(true);
Argyrios Kyrtzidisce8e2922008-10-06 23:08:37 +00002653
2654 assert(NumExprs == 1 && "Expected 1 expression");
2655 // Set the init expression, handles conversions.
Sebastian Redlf53597f2009-03-15 17:47:39 +00002656 AddInitializerToDecl(Dcl, ExprArg(*this, Exprs.release()[0]),
2657 /*DirectInit=*/true);
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00002658}
Douglas Gregor27c8dc02008-10-29 00:13:59 +00002659
Douglas Gregorf03d7c72008-11-05 15:29:30 +00002660/// PerformInitializationByConstructor - Perform initialization by
2661/// constructor (C++ [dcl.init]p14), which may occur as part of
2662/// direct-initialization or copy-initialization. We are initializing
2663/// an object of type @p ClassType with the given arguments @p
2664/// Args. @p Loc is the location in the source code where the
2665/// initializer occurs (e.g., a declaration, member initializer,
2666/// functional cast, etc.) while @p Range covers the whole
2667/// initialization. @p InitEntity is the entity being initialized,
2668/// which may by the name of a declaration or a type. @p Kind is the
2669/// kind of initialization we're performing, which affects whether
2670/// explicit constructors will be considered. When successful, returns
Douglas Gregor18fe5682008-11-03 20:45:27 +00002671/// the constructor that will be used to perform the initialization;
Douglas Gregorf03d7c72008-11-05 15:29:30 +00002672/// when the initialization fails, emits a diagnostic and returns
2673/// null.
Douglas Gregor18fe5682008-11-03 20:45:27 +00002674CXXConstructorDecl *
Douglas Gregorf03d7c72008-11-05 15:29:30 +00002675Sema::PerformInitializationByConstructor(QualType ClassType,
2676 Expr **Args, unsigned NumArgs,
2677 SourceLocation Loc, SourceRange Range,
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00002678 DeclarationName InitEntity,
Douglas Gregorf03d7c72008-11-05 15:29:30 +00002679 InitializationKind Kind) {
Ted Kremenek6217b802009-07-29 21:53:49 +00002680 const RecordType *ClassRec = ClassType->getAs<RecordType>();
Douglas Gregor18fe5682008-11-03 20:45:27 +00002681 assert(ClassRec && "Can only initialize a class type here");
2682
2683 // C++ [dcl.init]p14:
2684 //
2685 // If the initialization is direct-initialization, or if it is
2686 // copy-initialization where the cv-unqualified version of the
2687 // source type is the same class as, or a derived class of, the
2688 // class of the destination, constructors are considered. The
2689 // applicable constructors are enumerated (13.3.1.3), and the
2690 // best one is chosen through overload resolution (13.3). The
2691 // constructor so selected is called to initialize the object,
2692 // with the initializer expression(s) as its argument(s). If no
2693 // constructor applies, or the overload resolution is ambiguous,
2694 // the initialization is ill-formed.
Douglas Gregor18fe5682008-11-03 20:45:27 +00002695 const CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(ClassRec->getDecl());
2696 OverloadCandidateSet CandidateSet;
Douglas Gregorf03d7c72008-11-05 15:29:30 +00002697
2698 // Add constructors to the overload set.
Douglas Gregor9e7d9de2008-12-15 21:24:18 +00002699 DeclarationName ConstructorName
2700 = Context.DeclarationNames.getCXXConstructorName(
2701 Context.getCanonicalType(ClassType.getUnqualifiedType()));
Douglas Gregor3fc749d2008-12-23 00:26:44 +00002702 DeclContext::lookup_const_iterator Con, ConEnd;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002703 for (llvm::tie(Con, ConEnd) = ClassDecl->lookup(ConstructorName);
Douglas Gregor3fc749d2008-12-23 00:26:44 +00002704 Con != ConEnd; ++Con) {
Douglas Gregordec06662009-08-21 18:42:58 +00002705 // Find the constructor (which may be a template).
2706 CXXConstructorDecl *Constructor = 0;
2707 FunctionTemplateDecl *ConstructorTmpl= dyn_cast<FunctionTemplateDecl>(*Con);
2708 if (ConstructorTmpl)
2709 Constructor
2710 = cast<CXXConstructorDecl>(ConstructorTmpl->getTemplatedDecl());
2711 else
2712 Constructor = cast<CXXConstructorDecl>(*Con);
2713
Douglas Gregorf03d7c72008-11-05 15:29:30 +00002714 if ((Kind == IK_Direct) ||
2715 (Kind == IK_Copy && Constructor->isConvertingConstructor()) ||
Douglas Gregordec06662009-08-21 18:42:58 +00002716 (Kind == IK_Default && Constructor->isDefaultConstructor())) {
2717 if (ConstructorTmpl)
2718 AddTemplateOverloadCandidate(ConstructorTmpl, false, 0, 0,
2719 Args, NumArgs, CandidateSet);
2720 else
2721 AddOverloadCandidate(Constructor, Args, NumArgs, CandidateSet);
2722 }
Douglas Gregorf03d7c72008-11-05 15:29:30 +00002723 }
2724
Douglas Gregor9e7d9de2008-12-15 21:24:18 +00002725 // FIXME: When we decide not to synthesize the implicitly-declared
2726 // constructors, we'll need to make them appear here.
2727
Douglas Gregor18fe5682008-11-03 20:45:27 +00002728 OverloadCandidateSet::iterator Best;
Douglas Gregore0762c92009-06-19 23:52:42 +00002729 switch (BestViableFunction(CandidateSet, Loc, Best)) {
Douglas Gregor18fe5682008-11-03 20:45:27 +00002730 case OR_Success:
2731 // We found a constructor. Return it.
2732 return cast<CXXConstructorDecl>(Best->Function);
2733
2734 case OR_No_Viable_Function:
Douglas Gregor87fd7032009-02-02 17:43:21 +00002735 if (InitEntity)
2736 Diag(Loc, diag::err_ovl_no_viable_function_in_init)
Chris Lattner4330d652009-02-17 07:29:20 +00002737 << InitEntity << Range;
Douglas Gregor87fd7032009-02-02 17:43:21 +00002738 else
2739 Diag(Loc, diag::err_ovl_no_viable_function_in_init)
Chris Lattner4330d652009-02-17 07:29:20 +00002740 << ClassType << Range;
Sebastian Redle4c452c2008-11-22 13:44:36 +00002741 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/false);
Douglas Gregor18fe5682008-11-03 20:45:27 +00002742 return 0;
2743
2744 case OR_Ambiguous:
Douglas Gregor87fd7032009-02-02 17:43:21 +00002745 if (InitEntity)
2746 Diag(Loc, diag::err_ovl_ambiguous_init) << InitEntity << Range;
2747 else
2748 Diag(Loc, diag::err_ovl_ambiguous_init) << ClassType << Range;
Douglas Gregor18fe5682008-11-03 20:45:27 +00002749 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true);
2750 return 0;
Douglas Gregor48f3bb92009-02-18 21:56:37 +00002751
2752 case OR_Deleted:
2753 if (InitEntity)
2754 Diag(Loc, diag::err_ovl_deleted_init)
2755 << Best->Function->isDeleted()
2756 << InitEntity << Range;
2757 else
2758 Diag(Loc, diag::err_ovl_deleted_init)
2759 << Best->Function->isDeleted()
2760 << InitEntity << Range;
2761 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true);
2762 return 0;
Douglas Gregor18fe5682008-11-03 20:45:27 +00002763 }
2764
2765 return 0;
2766}
2767
Douglas Gregor27c8dc02008-10-29 00:13:59 +00002768/// CompareReferenceRelationship - Compare the two types T1 and T2 to
2769/// determine whether they are reference-related,
2770/// reference-compatible, reference-compatible with added
2771/// qualification, or incompatible, for use in C++ initialization by
2772/// reference (C++ [dcl.ref.init]p4). Neither type can be a reference
2773/// type, and the first type (T1) is the pointee type of the reference
2774/// type being initialized.
2775Sema::ReferenceCompareResult
Douglas Gregor15da57e2008-10-29 02:00:59 +00002776Sema::CompareReferenceRelationship(QualType T1, QualType T2,
2777 bool& DerivedToBase) {
Sebastian Redl7c80bd62009-03-16 23:22:08 +00002778 assert(!T1->isReferenceType() &&
2779 "T1 must be the pointee type of the reference type");
Douglas Gregor27c8dc02008-10-29 00:13:59 +00002780 assert(!T2->isReferenceType() && "T2 cannot be a reference type");
2781
2782 T1 = Context.getCanonicalType(T1);
2783 T2 = Context.getCanonicalType(T2);
2784 QualType UnqualT1 = T1.getUnqualifiedType();
2785 QualType UnqualT2 = T2.getUnqualifiedType();
2786
2787 // C++ [dcl.init.ref]p4:
Eli Friedman33a31382009-08-05 19:21:58 +00002788 // Given types "cv1 T1" and "cv2 T2," "cv1 T1" is
2789 // reference-related to "cv2 T2" if T1 is the same type as T2, or
Douglas Gregor27c8dc02008-10-29 00:13:59 +00002790 // T1 is a base class of T2.
Douglas Gregor15da57e2008-10-29 02:00:59 +00002791 if (UnqualT1 == UnqualT2)
2792 DerivedToBase = false;
2793 else if (IsDerivedFrom(UnqualT2, UnqualT1))
2794 DerivedToBase = true;
2795 else
Douglas Gregor27c8dc02008-10-29 00:13:59 +00002796 return Ref_Incompatible;
2797
2798 // At this point, we know that T1 and T2 are reference-related (at
2799 // least).
2800
2801 // C++ [dcl.init.ref]p4:
Eli Friedman33a31382009-08-05 19:21:58 +00002802 // "cv1 T1" is reference-compatible with "cv2 T2" if T1 is
Douglas Gregor27c8dc02008-10-29 00:13:59 +00002803 // reference-related to T2 and cv1 is the same cv-qualification
2804 // as, or greater cv-qualification than, cv2. For purposes of
2805 // overload resolution, cases for which cv1 is greater
2806 // cv-qualification than cv2 are identified as
2807 // reference-compatible with added qualification (see 13.3.3.2).
2808 if (T1.getCVRQualifiers() == T2.getCVRQualifiers())
2809 return Ref_Compatible;
2810 else if (T1.isMoreQualifiedThan(T2))
2811 return Ref_Compatible_With_Added_Qualification;
2812 else
2813 return Ref_Related;
2814}
2815
2816/// CheckReferenceInit - Check the initialization of a reference
2817/// variable with the given initializer (C++ [dcl.init.ref]). Init is
2818/// the initializer (either a simple initializer or an initializer
Douglas Gregor3205a782008-10-29 23:31:03 +00002819/// list), and DeclType is the type of the declaration. When ICS is
2820/// non-null, this routine will compute the implicit conversion
2821/// sequence according to C++ [over.ics.ref] and will not produce any
2822/// diagnostics; when ICS is null, it will emit diagnostics when any
2823/// errors are found. Either way, a return value of true indicates
2824/// that there was a failure, a return value of false indicates that
2825/// the reference initialization succeeded.
Douglas Gregor225c41e2008-11-03 19:09:14 +00002826///
2827/// When @p SuppressUserConversions, user-defined conversions are
2828/// suppressed.
Douglas Gregor09f41cf2009-01-14 15:45:31 +00002829/// When @p AllowExplicit, we also permit explicit user-defined
2830/// conversion functions.
Sebastian Redle2b68332009-04-12 17:16:29 +00002831/// When @p ForceRValue, we unconditionally treat the initializer as an rvalue.
Douglas Gregor15da57e2008-10-29 02:00:59 +00002832bool
Sebastian Redl3201f6b2009-04-16 17:51:27 +00002833Sema::CheckReferenceInit(Expr *&Init, QualType DeclType,
Douglas Gregor225c41e2008-11-03 19:09:14 +00002834 ImplicitConversionSequence *ICS,
Douglas Gregor09f41cf2009-01-14 15:45:31 +00002835 bool SuppressUserConversions,
Sebastian Redle2b68332009-04-12 17:16:29 +00002836 bool AllowExplicit, bool ForceRValue) {
Douglas Gregor27c8dc02008-10-29 00:13:59 +00002837 assert(DeclType->isReferenceType() && "Reference init needs a reference");
2838
Ted Kremenek6217b802009-07-29 21:53:49 +00002839 QualType T1 = DeclType->getAs<ReferenceType>()->getPointeeType();
Douglas Gregor27c8dc02008-10-29 00:13:59 +00002840 QualType T2 = Init->getType();
2841
Douglas Gregor904eed32008-11-10 20:40:00 +00002842 // If the initializer is the address of an overloaded function, try
2843 // to resolve the overloaded function. If all goes well, T2 is the
2844 // type of the resulting function.
Douglas Gregor063daf62009-03-13 18:40:31 +00002845 if (Context.getCanonicalType(T2) == Context.OverloadTy) {
Douglas Gregor904eed32008-11-10 20:40:00 +00002846 FunctionDecl *Fn = ResolveAddressOfOverloadedFunction(Init, DeclType,
2847 ICS != 0);
2848 if (Fn) {
2849 // Since we're performing this reference-initialization for
2850 // real, update the initializer with the resulting function.
Douglas Gregor48f3bb92009-02-18 21:56:37 +00002851 if (!ICS) {
2852 if (DiagnoseUseOfDecl(Fn, Init->getSourceRange().getBegin()))
2853 return true;
2854
Douglas Gregor904eed32008-11-10 20:40:00 +00002855 FixOverloadedFunctionReference(Init, Fn);
Douglas Gregor48f3bb92009-02-18 21:56:37 +00002856 }
Douglas Gregor904eed32008-11-10 20:40:00 +00002857
2858 T2 = Fn->getType();
2859 }
2860 }
2861
Douglas Gregor15da57e2008-10-29 02:00:59 +00002862 // Compute some basic properties of the types and the initializer.
Sebastian Redl7c80bd62009-03-16 23:22:08 +00002863 bool isRValRef = DeclType->isRValueReferenceType();
Douglas Gregor15da57e2008-10-29 02:00:59 +00002864 bool DerivedToBase = false;
Sebastian Redle2b68332009-04-12 17:16:29 +00002865 Expr::isLvalueResult InitLvalue = ForceRValue ? Expr::LV_InvalidExpression :
2866 Init->isLvalue(Context);
Douglas Gregor15da57e2008-10-29 02:00:59 +00002867 ReferenceCompareResult RefRelationship
2868 = CompareReferenceRelationship(T1, T2, DerivedToBase);
2869
2870 // Most paths end in a failed conversion.
2871 if (ICS)
2872 ICS->ConversionKind = ImplicitConversionSequence::BadConversion;
Douglas Gregor27c8dc02008-10-29 00:13:59 +00002873
2874 // C++ [dcl.init.ref]p5:
Eli Friedman33a31382009-08-05 19:21:58 +00002875 // A reference to type "cv1 T1" is initialized by an expression
2876 // of type "cv2 T2" as follows:
Douglas Gregor27c8dc02008-10-29 00:13:59 +00002877
2878 // -- If the initializer expression
2879
Sebastian Redla9845802009-03-29 15:27:50 +00002880 // Rvalue references cannot bind to lvalues (N2812).
2881 // There is absolutely no situation where they can. In particular, note that
2882 // this is ill-formed, even if B has a user-defined conversion to A&&:
2883 // B b;
2884 // A&& r = b;
2885 if (isRValRef && InitLvalue == Expr::LV_Valid) {
2886 if (!ICS)
2887 Diag(Init->getSourceRange().getBegin(), diag::err_lvalue_to_rvalue_ref)
2888 << Init->getSourceRange();
2889 return true;
2890 }
2891
Douglas Gregor27c8dc02008-10-29 00:13:59 +00002892 bool BindsDirectly = false;
Eli Friedman33a31382009-08-05 19:21:58 +00002893 // -- is an lvalue (but is not a bit-field), and "cv1 T1" is
2894 // reference-compatible with "cv2 T2," or
Douglas Gregor15da57e2008-10-29 02:00:59 +00002895 //
2896 // Note that the bit-field check is skipped if we are just computing
2897 // the implicit conversion sequence (C++ [over.best.ics]p2).
Douglas Gregor33bbbc52009-05-02 02:18:30 +00002898 if (InitLvalue == Expr::LV_Valid && (ICS || !Init->getBitField()) &&
Douglas Gregor15da57e2008-10-29 02:00:59 +00002899 RefRelationship >= Ref_Compatible_With_Added_Qualification) {
Douglas Gregor27c8dc02008-10-29 00:13:59 +00002900 BindsDirectly = true;
2901
Douglas Gregor15da57e2008-10-29 02:00:59 +00002902 if (ICS) {
2903 // C++ [over.ics.ref]p1:
2904 // When a parameter of reference type binds directly (8.5.3)
2905 // to an argument expression, the implicit conversion sequence
2906 // is the identity conversion, unless the argument expression
2907 // has a type that is a derived class of the parameter type,
2908 // in which case the implicit conversion sequence is a
2909 // derived-to-base Conversion (13.3.3.1).
2910 ICS->ConversionKind = ImplicitConversionSequence::StandardConversion;
2911 ICS->Standard.First = ICK_Identity;
2912 ICS->Standard.Second = DerivedToBase? ICK_Derived_To_Base : ICK_Identity;
2913 ICS->Standard.Third = ICK_Identity;
2914 ICS->Standard.FromTypePtr = T2.getAsOpaquePtr();
2915 ICS->Standard.ToTypePtr = T1.getAsOpaquePtr();
Douglas Gregorf70bdb92008-10-29 14:50:44 +00002916 ICS->Standard.ReferenceBinding = true;
2917 ICS->Standard.DirectBinding = true;
Sebastian Redla9845802009-03-29 15:27:50 +00002918 ICS->Standard.RRefBinding = false;
Sebastian Redl76458502009-04-17 16:30:52 +00002919 ICS->Standard.CopyConstructor = 0;
Douglas Gregor15da57e2008-10-29 02:00:59 +00002920
2921 // Nothing more to do: the inaccessibility/ambiguity check for
2922 // derived-to-base conversions is suppressed when we're
2923 // computing the implicit conversion sequence (C++
2924 // [over.best.ics]p2).
2925 return false;
2926 } else {
2927 // Perform the conversion.
Mike Stump390b4cc2009-05-16 07:39:55 +00002928 // FIXME: Binding to a subobject of the lvalue is going to require more
2929 // AST annotation than this.
Anders Carlsson3503d042009-07-31 01:23:52 +00002930 ImpCastExprToType(Init, T1, CastExpr::CK_Unknown, /*isLvalue=*/true);
Douglas Gregor27c8dc02008-10-29 00:13:59 +00002931 }
2932 }
2933
2934 // -- has a class type (i.e., T2 is a class type) and can be
Eli Friedman33a31382009-08-05 19:21:58 +00002935 // implicitly converted to an lvalue of type "cv3 T3,"
2936 // where "cv1 T1" is reference-compatible with "cv3 T3"
Douglas Gregor27c8dc02008-10-29 00:13:59 +00002937 // 92) (this conversion is selected by enumerating the
2938 // applicable conversion functions (13.3.1.6) and choosing
2939 // the best one through overload resolution (13.3)),
Douglas Gregor5842ba92009-08-24 15:23:48 +00002940 if (!isRValRef && !SuppressUserConversions && T2->isRecordType() &&
2941 !RequireCompleteType(SourceLocation(), T2, 0)) {
Douglas Gregorcb9b9772008-11-10 16:14:15 +00002942 // FIXME: Look for conversions in base classes!
2943 CXXRecordDecl *T2RecordDecl
Ted Kremenek6217b802009-07-29 21:53:49 +00002944 = dyn_cast<CXXRecordDecl>(T2->getAs<RecordType>()->getDecl());
Douglas Gregor27c8dc02008-10-29 00:13:59 +00002945
Douglas Gregorcb9b9772008-11-10 16:14:15 +00002946 OverloadCandidateSet CandidateSet;
2947 OverloadedFunctionDecl *Conversions
2948 = T2RecordDecl->getConversionFunctions();
2949 for (OverloadedFunctionDecl::function_iterator Func
2950 = Conversions->function_begin();
2951 Func != Conversions->function_end(); ++Func) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00002952 FunctionTemplateDecl *ConvTemplate
2953 = dyn_cast<FunctionTemplateDecl>(*Func);
2954 CXXConversionDecl *Conv;
2955 if (ConvTemplate)
2956 Conv = cast<CXXConversionDecl>(ConvTemplate->getTemplatedDecl());
2957 else
2958 Conv = cast<CXXConversionDecl>(*Func);
Sebastian Redldfe292d2009-03-22 21:28:55 +00002959
Douglas Gregorcb9b9772008-11-10 16:14:15 +00002960 // If the conversion function doesn't return a reference type,
2961 // it can't be considered for this conversion.
Sebastian Redl7c80bd62009-03-16 23:22:08 +00002962 if (Conv->getConversionType()->isLValueReferenceType() &&
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00002963 (AllowExplicit || !Conv->isExplicit())) {
2964 if (ConvTemplate)
2965 AddTemplateConversionCandidate(ConvTemplate, Init, DeclType,
2966 CandidateSet);
2967 else
2968 AddConversionCandidate(Conv, Init, DeclType, CandidateSet);
2969 }
Douglas Gregorcb9b9772008-11-10 16:14:15 +00002970 }
2971
2972 OverloadCandidateSet::iterator Best;
Douglas Gregore0762c92009-06-19 23:52:42 +00002973 switch (BestViableFunction(CandidateSet, Init->getLocStart(), Best)) {
Douglas Gregorcb9b9772008-11-10 16:14:15 +00002974 case OR_Success:
2975 // This is a direct binding.
2976 BindsDirectly = true;
2977
2978 if (ICS) {
2979 // C++ [over.ics.ref]p1:
2980 //
2981 // [...] If the parameter binds directly to the result of
2982 // applying a conversion function to the argument
2983 // expression, the implicit conversion sequence is a
2984 // user-defined conversion sequence (13.3.3.1.2), with the
2985 // second standard conversion sequence either an identity
2986 // conversion or, if the conversion function returns an
2987 // entity of a type that is a derived class of the parameter
2988 // type, a derived-to-base Conversion.
2989 ICS->ConversionKind = ImplicitConversionSequence::UserDefinedConversion;
2990 ICS->UserDefined.Before = Best->Conversions[0].Standard;
2991 ICS->UserDefined.After = Best->FinalConversion;
2992 ICS->UserDefined.ConversionFunction = Best->Function;
2993 assert(ICS->UserDefined.After.ReferenceBinding &&
2994 ICS->UserDefined.After.DirectBinding &&
2995 "Expected a direct reference binding!");
2996 return false;
2997 } else {
2998 // Perform the conversion.
Mike Stump390b4cc2009-05-16 07:39:55 +00002999 // FIXME: Binding to a subobject of the lvalue is going to require more
3000 // AST annotation than this.
Anders Carlsson3503d042009-07-31 01:23:52 +00003001 ImpCastExprToType(Init, T1, CastExpr::CK_Unknown, /*isLvalue=*/true);
Douglas Gregorcb9b9772008-11-10 16:14:15 +00003002 }
3003 break;
3004
3005 case OR_Ambiguous:
3006 assert(false && "Ambiguous reference binding conversions not implemented.");
3007 return true;
3008
3009 case OR_No_Viable_Function:
Douglas Gregor48f3bb92009-02-18 21:56:37 +00003010 case OR_Deleted:
3011 // There was no suitable conversion, or we found a deleted
3012 // conversion; continue with other checks.
Douglas Gregorcb9b9772008-11-10 16:14:15 +00003013 break;
3014 }
3015 }
3016
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003017 if (BindsDirectly) {
3018 // C++ [dcl.init.ref]p4:
3019 // [...] In all cases where the reference-related or
3020 // reference-compatible relationship of two types is used to
3021 // establish the validity of a reference binding, and T1 is a
3022 // base class of T2, a program that necessitates such a binding
3023 // is ill-formed if T1 is an inaccessible (clause 11) or
3024 // ambiguous (10.2) base class of T2.
3025 //
3026 // Note that we only check this condition when we're allowed to
3027 // complain about errors, because we should not be checking for
3028 // ambiguity (or inaccessibility) unless the reference binding
3029 // actually happens.
Douglas Gregor15da57e2008-10-29 02:00:59 +00003030 if (DerivedToBase)
3031 return CheckDerivedToBaseConversion(T2, T1,
3032 Init->getSourceRange().getBegin(),
3033 Init->getSourceRange());
3034 else
3035 return false;
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003036 }
3037
3038 // -- Otherwise, the reference shall be to a non-volatile const
Sebastian Redla9845802009-03-29 15:27:50 +00003039 // type (i.e., cv1 shall be const), or the reference shall be an
3040 // rvalue reference and the initializer expression shall be an rvalue.
Sebastian Redl7c80bd62009-03-16 23:22:08 +00003041 if (!isRValRef && T1.getCVRQualifiers() != QualType::Const) {
Douglas Gregor15da57e2008-10-29 02:00:59 +00003042 if (!ICS)
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003043 Diag(Init->getSourceRange().getBegin(),
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00003044 diag::err_not_reference_to_const_init)
Chris Lattnerd1625842008-11-24 06:25:27 +00003045 << T1 << (InitLvalue != Expr::LV_Valid? "temporary" : "value")
3046 << T2 << Init->getSourceRange();
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003047 return true;
3048 }
3049
3050 // -- If the initializer expression is an rvalue, with T2 a
Eli Friedman33a31382009-08-05 19:21:58 +00003051 // class type, and "cv1 T1" is reference-compatible with
3052 // "cv2 T2," the reference is bound in one of the
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003053 // following ways (the choice is implementation-defined):
3054 //
3055 // -- The reference is bound to the object represented by
3056 // the rvalue (see 3.10) or to a sub-object within that
3057 // object.
3058 //
Eli Friedman33a31382009-08-05 19:21:58 +00003059 // -- A temporary of type "cv1 T2" [sic] is created, and
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003060 // a constructor is called to copy the entire rvalue
3061 // object into the temporary. The reference is bound to
3062 // the temporary or to a sub-object within the
3063 // temporary.
3064 //
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003065 // The constructor that would be used to make the copy
3066 // shall be callable whether or not the copy is actually
3067 // done.
3068 //
Sebastian Redla9845802009-03-29 15:27:50 +00003069 // Note that C++0x [dcl.init.ref]p5 takes away this implementation
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003070 // freedom, so we will always take the first option and never build
3071 // a temporary in this case. FIXME: We will, however, have to check
3072 // for the presence of a copy constructor in C++98/03 mode.
3073 if (InitLvalue != Expr::LV_Valid && T2->isRecordType() &&
Douglas Gregor15da57e2008-10-29 02:00:59 +00003074 RefRelationship >= Ref_Compatible_With_Added_Qualification) {
3075 if (ICS) {
3076 ICS->ConversionKind = ImplicitConversionSequence::StandardConversion;
3077 ICS->Standard.First = ICK_Identity;
3078 ICS->Standard.Second = DerivedToBase? ICK_Derived_To_Base : ICK_Identity;
3079 ICS->Standard.Third = ICK_Identity;
3080 ICS->Standard.FromTypePtr = T2.getAsOpaquePtr();
3081 ICS->Standard.ToTypePtr = T1.getAsOpaquePtr();
Douglas Gregorf70bdb92008-10-29 14:50:44 +00003082 ICS->Standard.ReferenceBinding = true;
Sebastian Redla9845802009-03-29 15:27:50 +00003083 ICS->Standard.DirectBinding = false;
3084 ICS->Standard.RRefBinding = isRValRef;
Sebastian Redl76458502009-04-17 16:30:52 +00003085 ICS->Standard.CopyConstructor = 0;
Douglas Gregor15da57e2008-10-29 02:00:59 +00003086 } else {
Mike Stump390b4cc2009-05-16 07:39:55 +00003087 // FIXME: Binding to a subobject of the rvalue is going to require more
3088 // AST annotation than this.
Anders Carlsson3503d042009-07-31 01:23:52 +00003089 ImpCastExprToType(Init, T1, CastExpr::CK_Unknown, /*isLvalue=*/false);
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003090 }
3091 return false;
3092 }
3093
Eli Friedman33a31382009-08-05 19:21:58 +00003094 // -- Otherwise, a temporary of type "cv1 T1" is created and
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003095 // initialized from the initializer expression using the
3096 // rules for a non-reference copy initialization (8.5). The
3097 // reference is then bound to the temporary. If T1 is
3098 // reference-related to T2, cv1 must be the same
3099 // cv-qualification as, or greater cv-qualification than,
3100 // cv2; otherwise, the program is ill-formed.
3101 if (RefRelationship == Ref_Related) {
3102 // If cv1 == cv2 or cv1 is a greater cv-qualified than cv2, then
3103 // we would be reference-compatible or reference-compatible with
3104 // added qualification. But that wasn't the case, so the reference
3105 // initialization fails.
Douglas Gregor15da57e2008-10-29 02:00:59 +00003106 if (!ICS)
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003107 Diag(Init->getSourceRange().getBegin(),
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00003108 diag::err_reference_init_drops_quals)
Chris Lattnerd1625842008-11-24 06:25:27 +00003109 << T1 << (InitLvalue != Expr::LV_Valid? "temporary" : "value")
3110 << T2 << Init->getSourceRange();
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003111 return true;
3112 }
3113
Douglas Gregor734d9862009-01-30 23:27:23 +00003114 // If at least one of the types is a class type, the types are not
3115 // related, and we aren't allowed any user conversions, the
3116 // reference binding fails. This case is important for breaking
3117 // recursion, since TryImplicitConversion below will attempt to
3118 // create a temporary through the use of a copy constructor.
3119 if (SuppressUserConversions && RefRelationship == Ref_Incompatible &&
3120 (T1->isRecordType() || T2->isRecordType())) {
3121 if (!ICS)
3122 Diag(Init->getSourceRange().getBegin(),
3123 diag::err_typecheck_convert_incompatible)
3124 << DeclType << Init->getType() << "initializing" << Init->getSourceRange();
3125 return true;
3126 }
3127
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003128 // Actually try to convert the initializer to T1.
Douglas Gregor15da57e2008-10-29 02:00:59 +00003129 if (ICS) {
Sebastian Redla9845802009-03-29 15:27:50 +00003130 // C++ [over.ics.ref]p2:
3131 //
3132 // When a parameter of reference type is not bound directly to
3133 // an argument expression, the conversion sequence is the one
3134 // required to convert the argument expression to the
3135 // underlying type of the reference according to
3136 // 13.3.3.1. Conceptually, this conversion sequence corresponds
3137 // to copy-initializing a temporary of the underlying type with
3138 // the argument expression. Any difference in top-level
3139 // cv-qualification is subsumed by the initialization itself
3140 // and does not constitute a conversion.
Douglas Gregor225c41e2008-11-03 19:09:14 +00003141 *ICS = TryImplicitConversion(Init, T1, SuppressUserConversions);
Sebastian Redla9845802009-03-29 15:27:50 +00003142 // Of course, that's still a reference binding.
3143 if (ICS->ConversionKind == ImplicitConversionSequence::StandardConversion) {
3144 ICS->Standard.ReferenceBinding = true;
3145 ICS->Standard.RRefBinding = isRValRef;
3146 } else if(ICS->ConversionKind ==
3147 ImplicitConversionSequence::UserDefinedConversion) {
3148 ICS->UserDefined.After.ReferenceBinding = true;
3149 ICS->UserDefined.After.RRefBinding = isRValRef;
3150 }
Douglas Gregor15da57e2008-10-29 02:00:59 +00003151 return ICS->ConversionKind == ImplicitConversionSequence::BadConversion;
3152 } else {
Douglas Gregor45920e82008-12-19 17:40:08 +00003153 return PerformImplicitConversion(Init, T1, "initializing");
Douglas Gregor15da57e2008-10-29 02:00:59 +00003154 }
Douglas Gregor27c8dc02008-10-29 00:13:59 +00003155}
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00003156
3157/// CheckOverloadedOperatorDeclaration - Check whether the declaration
3158/// of this overloaded operator is well-formed. If so, returns false;
3159/// otherwise, emits appropriate diagnostics and returns true.
3160bool Sema::CheckOverloadedOperatorDeclaration(FunctionDecl *FnDecl) {
Douglas Gregor43c7bad2008-11-17 16:14:12 +00003161 assert(FnDecl && FnDecl->isOverloadedOperator() &&
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00003162 "Expected an overloaded operator declaration");
3163
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00003164 OverloadedOperatorKind Op = FnDecl->getOverloadedOperator();
3165
3166 // C++ [over.oper]p5:
3167 // The allocation and deallocation functions, operator new,
3168 // operator new[], operator delete and operator delete[], are
3169 // described completely in 3.7.3. The attributes and restrictions
3170 // found in the rest of this subclause do not apply to them unless
3171 // explicitly stated in 3.7.3.
Mike Stump390b4cc2009-05-16 07:39:55 +00003172 // FIXME: Write a separate routine for checking this. For now, just allow it.
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00003173 if (Op == OO_New || Op == OO_Array_New ||
3174 Op == OO_Delete || Op == OO_Array_Delete)
3175 return false;
3176
3177 // C++ [over.oper]p6:
3178 // An operator function shall either be a non-static member
3179 // function or be a non-member function and have at least one
3180 // parameter whose type is a class, a reference to a class, an
3181 // enumeration, or a reference to an enumeration.
Douglas Gregor43c7bad2008-11-17 16:14:12 +00003182 if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(FnDecl)) {
3183 if (MethodDecl->isStatic())
3184 return Diag(FnDecl->getLocation(),
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00003185 diag::err_operator_overload_static) << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00003186 } else {
3187 bool ClassOrEnumParam = false;
Douglas Gregor43c7bad2008-11-17 16:14:12 +00003188 for (FunctionDecl::param_iterator Param = FnDecl->param_begin(),
3189 ParamEnd = FnDecl->param_end();
3190 Param != ParamEnd; ++Param) {
3191 QualType ParamType = (*Param)->getType().getNonReferenceType();
Eli Friedman5d39dee2009-06-27 05:59:59 +00003192 if (ParamType->isDependentType() || ParamType->isRecordType() ||
3193 ParamType->isEnumeralType()) {
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00003194 ClassOrEnumParam = true;
3195 break;
3196 }
3197 }
3198
Douglas Gregor43c7bad2008-11-17 16:14:12 +00003199 if (!ClassOrEnumParam)
3200 return Diag(FnDecl->getLocation(),
Chris Lattnerf3a41af2008-11-20 06:38:18 +00003201 diag::err_operator_overload_needs_class_or_enum)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00003202 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00003203 }
3204
3205 // C++ [over.oper]p8:
3206 // An operator function cannot have default arguments (8.3.6),
3207 // except where explicitly stated below.
3208 //
3209 // Only the function-call operator allows default arguments
3210 // (C++ [over.call]p1).
3211 if (Op != OO_Call) {
3212 for (FunctionDecl::param_iterator Param = FnDecl->param_begin();
3213 Param != FnDecl->param_end(); ++Param) {
Douglas Gregor61366e92008-12-24 00:01:03 +00003214 if ((*Param)->hasUnparsedDefaultArg())
3215 return Diag((*Param)->getLocation(),
3216 diag::err_operator_overload_default_arg)
3217 << FnDecl->getDeclName();
3218 else if (Expr *DefArg = (*Param)->getDefaultArg())
Douglas Gregor43c7bad2008-11-17 16:14:12 +00003219 return Diag((*Param)->getLocation(),
Chris Lattnerd3a94e22008-11-20 06:06:08 +00003220 diag::err_operator_overload_default_arg)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00003221 << FnDecl->getDeclName() << DefArg->getSourceRange();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00003222 }
3223 }
3224
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00003225 static const bool OperatorUses[NUM_OVERLOADED_OPERATORS][3] = {
3226 { false, false, false }
3227#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
3228 , { Unary, Binary, MemberOnly }
3229#include "clang/Basic/OperatorKinds.def"
3230 };
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00003231
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00003232 bool CanBeUnaryOperator = OperatorUses[Op][0];
3233 bool CanBeBinaryOperator = OperatorUses[Op][1];
3234 bool MustBeMemberOperator = OperatorUses[Op][2];
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00003235
3236 // C++ [over.oper]p8:
3237 // [...] Operator functions cannot have more or fewer parameters
3238 // than the number required for the corresponding operator, as
3239 // described in the rest of this subclause.
Douglas Gregor43c7bad2008-11-17 16:14:12 +00003240 unsigned NumParams = FnDecl->getNumParams()
3241 + (isa<CXXMethodDecl>(FnDecl)? 1 : 0);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00003242 if (Op != OO_Call &&
3243 ((NumParams == 1 && !CanBeUnaryOperator) ||
3244 (NumParams == 2 && !CanBeBinaryOperator) ||
3245 (NumParams < 1) || (NumParams > 2))) {
3246 // We have the wrong number of parameters.
Chris Lattner416e46f2008-11-21 07:57:12 +00003247 unsigned ErrorKind;
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00003248 if (CanBeUnaryOperator && CanBeBinaryOperator) {
Chris Lattner416e46f2008-11-21 07:57:12 +00003249 ErrorKind = 2; // 2 -> unary or binary.
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00003250 } else if (CanBeUnaryOperator) {
Chris Lattner416e46f2008-11-21 07:57:12 +00003251 ErrorKind = 0; // 0 -> unary
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00003252 } else {
Chris Lattneraf7ae4e2008-11-21 07:50:02 +00003253 assert(CanBeBinaryOperator &&
3254 "All non-call overloaded operators are unary or binary!");
Chris Lattner416e46f2008-11-21 07:57:12 +00003255 ErrorKind = 1; // 1 -> binary
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00003256 }
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00003257
Chris Lattner416e46f2008-11-21 07:57:12 +00003258 return Diag(FnDecl->getLocation(), diag::err_operator_overload_must_be)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00003259 << FnDecl->getDeclName() << NumParams << ErrorKind;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00003260 }
Sebastian Redl64b45f72009-01-05 20:52:13 +00003261
Douglas Gregor43c7bad2008-11-17 16:14:12 +00003262 // Overloaded operators other than operator() cannot be variadic.
3263 if (Op != OO_Call &&
Douglas Gregor72564e72009-02-26 23:50:07 +00003264 FnDecl->getType()->getAsFunctionProtoType()->isVariadic()) {
Chris Lattnerf3a41af2008-11-20 06:38:18 +00003265 return Diag(FnDecl->getLocation(), diag::err_operator_overload_variadic)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00003266 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00003267 }
3268
3269 // Some operators must be non-static member functions.
Douglas Gregor43c7bad2008-11-17 16:14:12 +00003270 if (MustBeMemberOperator && !isa<CXXMethodDecl>(FnDecl)) {
3271 return Diag(FnDecl->getLocation(),
Chris Lattnerf3a41af2008-11-20 06:38:18 +00003272 diag::err_operator_overload_must_be_member)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00003273 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00003274 }
3275
3276 // C++ [over.inc]p1:
3277 // The user-defined function called operator++ implements the
3278 // prefix and postfix ++ operator. If this function is a member
3279 // function with no parameters, or a non-member function with one
3280 // parameter of class or enumeration type, it defines the prefix
3281 // increment operator ++ for objects of that type. If the function
3282 // is a member function with one parameter (which shall be of type
3283 // int) or a non-member function with two parameters (the second
3284 // of which shall be of type int), it defines the postfix
3285 // increment operator ++ for objects of that type.
3286 if ((Op == OO_PlusPlus || Op == OO_MinusMinus) && NumParams == 2) {
3287 ParmVarDecl *LastParam = FnDecl->getParamDecl(FnDecl->getNumParams() - 1);
3288 bool ParamIsInt = false;
3289 if (const BuiltinType *BT = LastParam->getType()->getAsBuiltinType())
3290 ParamIsInt = BT->getKind() == BuiltinType::Int;
3291
Chris Lattneraf7ae4e2008-11-21 07:50:02 +00003292 if (!ParamIsInt)
3293 return Diag(LastParam->getLocation(),
3294 diag::err_operator_overload_post_incdec_must_be_int)
Chris Lattnerd1625842008-11-24 06:25:27 +00003295 << LastParam->getType() << (Op == OO_MinusMinus);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00003296 }
3297
Sebastian Redl64b45f72009-01-05 20:52:13 +00003298 // Notify the class if it got an assignment operator.
3299 if (Op == OO_Equal) {
3300 // Would have returned earlier otherwise.
3301 assert(isa<CXXMethodDecl>(FnDecl) &&
3302 "Overloaded = not member, but not filtered.");
3303 CXXMethodDecl *Method = cast<CXXMethodDecl>(FnDecl);
Fariborz Jahanianad258832009-08-13 21:09:41 +00003304 Method->setCopyAssignment(true);
Sebastian Redl64b45f72009-01-05 20:52:13 +00003305 Method->getParent()->addedAssignmentOperator(Context, Method);
3306 }
3307
Douglas Gregor43c7bad2008-11-17 16:14:12 +00003308 return false;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00003309}
Chris Lattner5a003a42008-12-17 07:09:26 +00003310
Douglas Gregor074149e2009-01-05 19:45:36 +00003311/// ActOnStartLinkageSpecification - Parsed the beginning of a C++
3312/// linkage specification, including the language and (if present)
3313/// the '{'. ExternLoc is the location of the 'extern', LangLoc is
3314/// the location of the language string literal, which is provided
3315/// by Lang/StrSize. LBraceLoc, if valid, provides the location of
3316/// the '{' brace. Otherwise, this linkage specification does not
3317/// have any braces.
Chris Lattnerb28317a2009-03-28 19:18:32 +00003318Sema::DeclPtrTy Sema::ActOnStartLinkageSpecification(Scope *S,
3319 SourceLocation ExternLoc,
3320 SourceLocation LangLoc,
3321 const char *Lang,
3322 unsigned StrSize,
3323 SourceLocation LBraceLoc) {
Chris Lattnercc98eac2008-12-17 07:13:27 +00003324 LinkageSpecDecl::LanguageIDs Language;
3325 if (strncmp(Lang, "\"C\"", StrSize) == 0)
3326 Language = LinkageSpecDecl::lang_c;
3327 else if (strncmp(Lang, "\"C++\"", StrSize) == 0)
3328 Language = LinkageSpecDecl::lang_cxx;
3329 else {
Douglas Gregor074149e2009-01-05 19:45:36 +00003330 Diag(LangLoc, diag::err_bad_language);
Chris Lattnerb28317a2009-03-28 19:18:32 +00003331 return DeclPtrTy();
Chris Lattnercc98eac2008-12-17 07:13:27 +00003332 }
3333
3334 // FIXME: Add all the various semantics of linkage specifications
3335
Douglas Gregor074149e2009-01-05 19:45:36 +00003336 LinkageSpecDecl *D = LinkageSpecDecl::Create(Context, CurContext,
3337 LangLoc, Language,
3338 LBraceLoc.isValid());
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003339 CurContext->addDecl(D);
Douglas Gregor074149e2009-01-05 19:45:36 +00003340 PushDeclContext(S, D);
Chris Lattnerb28317a2009-03-28 19:18:32 +00003341 return DeclPtrTy::make(D);
Chris Lattnercc98eac2008-12-17 07:13:27 +00003342}
3343
Douglas Gregor074149e2009-01-05 19:45:36 +00003344/// ActOnFinishLinkageSpecification - Completely the definition of
3345/// the C++ linkage specification LinkageSpec. If RBraceLoc is
3346/// valid, it's the position of the closing '}' brace in a linkage
3347/// specification that uses braces.
Chris Lattnerb28317a2009-03-28 19:18:32 +00003348Sema::DeclPtrTy Sema::ActOnFinishLinkageSpecification(Scope *S,
3349 DeclPtrTy LinkageSpec,
3350 SourceLocation RBraceLoc) {
Douglas Gregor074149e2009-01-05 19:45:36 +00003351 if (LinkageSpec)
3352 PopDeclContext();
3353 return LinkageSpec;
Chris Lattner5a003a42008-12-17 07:09:26 +00003354}
3355
Douglas Gregord308e622009-05-18 20:51:54 +00003356/// \brief Perform semantic analysis for the variable declaration that
3357/// occurs within a C++ catch clause, returning the newly-created
3358/// variable.
3359VarDecl *Sema::BuildExceptionDeclaration(Scope *S, QualType ExDeclType,
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00003360 DeclaratorInfo *DInfo,
Douglas Gregord308e622009-05-18 20:51:54 +00003361 IdentifierInfo *Name,
3362 SourceLocation Loc,
3363 SourceRange Range) {
3364 bool Invalid = false;
Sebastian Redl4b07b292008-12-22 19:15:10 +00003365
3366 // Arrays and functions decay.
3367 if (ExDeclType->isArrayType())
3368 ExDeclType = Context.getArrayDecayedType(ExDeclType);
3369 else if (ExDeclType->isFunctionType())
3370 ExDeclType = Context.getPointerType(ExDeclType);
3371
3372 // C++ 15.3p1: The exception-declaration shall not denote an incomplete type.
3373 // The exception-declaration shall not denote a pointer or reference to an
3374 // incomplete type, other than [cv] void*.
Sebastian Redlf2e21e52009-03-22 23:49:27 +00003375 // N2844 forbids rvalue references.
Douglas Gregor2f2433f2009-05-18 21:08:14 +00003376 if(!ExDeclType->isDependentType() && ExDeclType->isRValueReferenceType()) {
Douglas Gregord308e622009-05-18 20:51:54 +00003377 Diag(Loc, diag::err_catch_rvalue_ref) << Range;
Sebastian Redlf2e21e52009-03-22 23:49:27 +00003378 Invalid = true;
3379 }
Douglas Gregord308e622009-05-18 20:51:54 +00003380
Sebastian Redl4b07b292008-12-22 19:15:10 +00003381 QualType BaseType = ExDeclType;
3382 int Mode = 0; // 0 for direct type, 1 for pointer, 2 for reference
Douglas Gregor4ec339f2009-01-19 19:26:10 +00003383 unsigned DK = diag::err_catch_incomplete;
Ted Kremenek6217b802009-07-29 21:53:49 +00003384 if (const PointerType *Ptr = BaseType->getAs<PointerType>()) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00003385 BaseType = Ptr->getPointeeType();
3386 Mode = 1;
Douglas Gregor4ec339f2009-01-19 19:26:10 +00003387 DK = diag::err_catch_incomplete_ptr;
Ted Kremenek6217b802009-07-29 21:53:49 +00003388 } else if(const ReferenceType *Ref = BaseType->getAs<ReferenceType>()) {
Sebastian Redlf2e21e52009-03-22 23:49:27 +00003389 // For the purpose of error recovery, we treat rvalue refs like lvalue refs.
Sebastian Redl4b07b292008-12-22 19:15:10 +00003390 BaseType = Ref->getPointeeType();
3391 Mode = 2;
Douglas Gregor4ec339f2009-01-19 19:26:10 +00003392 DK = diag::err_catch_incomplete_ref;
Sebastian Redl4b07b292008-12-22 19:15:10 +00003393 }
Sebastian Redlf2e21e52009-03-22 23:49:27 +00003394 if (!Invalid && (Mode == 0 || !BaseType->isVoidType()) &&
Douglas Gregord308e622009-05-18 20:51:54 +00003395 !BaseType->isDependentType() && RequireCompleteType(Loc, BaseType, DK))
Sebastian Redl4b07b292008-12-22 19:15:10 +00003396 Invalid = true;
Sebastian Redl4b07b292008-12-22 19:15:10 +00003397
Douglas Gregord308e622009-05-18 20:51:54 +00003398 if (!Invalid && !ExDeclType->isDependentType() &&
3399 RequireNonAbstractType(Loc, ExDeclType,
3400 diag::err_abstract_type_in_decl,
3401 AbstractVariableType))
Sebastian Redlfef9f592009-04-27 21:03:30 +00003402 Invalid = true;
3403
Douglas Gregord308e622009-05-18 20:51:54 +00003404 // FIXME: Need to test for ability to copy-construct and destroy the
3405 // exception variable.
3406
Sebastian Redl8351da02008-12-22 21:35:02 +00003407 // FIXME: Need to check for abstract classes.
3408
Douglas Gregord308e622009-05-18 20:51:54 +00003409 VarDecl *ExDecl = VarDecl::Create(Context, CurContext, Loc,
Argyrios Kyrtzidisa5d82002009-08-21 00:31:54 +00003410 Name, ExDeclType, DInfo, VarDecl::None);
Douglas Gregord308e622009-05-18 20:51:54 +00003411
3412 if (Invalid)
3413 ExDecl->setInvalidDecl();
3414
3415 return ExDecl;
3416}
3417
3418/// ActOnExceptionDeclarator - Parsed the exception-declarator in a C++ catch
3419/// handler.
3420Sema::DeclPtrTy Sema::ActOnExceptionDeclarator(Scope *S, Declarator &D) {
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00003421 DeclaratorInfo *DInfo = 0;
3422 QualType ExDeclType = GetTypeForDeclarator(D, S, &DInfo);
Douglas Gregord308e622009-05-18 20:51:54 +00003423
3424 bool Invalid = D.isInvalidType();
Sebastian Redl4b07b292008-12-22 19:15:10 +00003425 IdentifierInfo *II = D.getIdentifier();
Douglas Gregor47b9a1c2009-02-04 17:27:36 +00003426 if (NamedDecl *PrevDecl = LookupName(S, II, LookupOrdinaryName)) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00003427 // The scope should be freshly made just for us. There is just no way
3428 // it contains any previous declaration.
Chris Lattnerb28317a2009-03-28 19:18:32 +00003429 assert(!S->isDeclScope(DeclPtrTy::make(PrevDecl)));
Sebastian Redl4b07b292008-12-22 19:15:10 +00003430 if (PrevDecl->isTemplateParameter()) {
3431 // Maybe we will complain about the shadowed template parameter.
3432 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
Sebastian Redl4b07b292008-12-22 19:15:10 +00003433 }
3434 }
3435
Chris Lattnereaaebc72009-04-25 08:06:05 +00003436 if (D.getCXXScopeSpec().isSet() && !Invalid) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00003437 Diag(D.getIdentifierLoc(), diag::err_qualified_catch_declarator)
3438 << D.getCXXScopeSpec().getRange();
Chris Lattnereaaebc72009-04-25 08:06:05 +00003439 Invalid = true;
Sebastian Redl4b07b292008-12-22 19:15:10 +00003440 }
3441
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00003442 VarDecl *ExDecl = BuildExceptionDeclaration(S, ExDeclType, DInfo,
Douglas Gregord308e622009-05-18 20:51:54 +00003443 D.getIdentifier(),
3444 D.getIdentifierLoc(),
3445 D.getDeclSpec().getSourceRange());
3446
Chris Lattnereaaebc72009-04-25 08:06:05 +00003447 if (Invalid)
3448 ExDecl->setInvalidDecl();
3449
Sebastian Redl4b07b292008-12-22 19:15:10 +00003450 // Add the exception declaration into this scope.
Sebastian Redl4b07b292008-12-22 19:15:10 +00003451 if (II)
Douglas Gregord308e622009-05-18 20:51:54 +00003452 PushOnScopeChains(ExDecl, S);
3453 else
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003454 CurContext->addDecl(ExDecl);
Sebastian Redl4b07b292008-12-22 19:15:10 +00003455
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00003456 ProcessDeclAttributes(S, ExDecl, D);
Chris Lattnerb28317a2009-03-28 19:18:32 +00003457 return DeclPtrTy::make(ExDecl);
Sebastian Redl4b07b292008-12-22 19:15:10 +00003458}
Anders Carlssonfb311762009-03-14 00:25:26 +00003459
Chris Lattnerb28317a2009-03-28 19:18:32 +00003460Sema::DeclPtrTy Sema::ActOnStaticAssertDeclaration(SourceLocation AssertLoc,
3461 ExprArg assertexpr,
3462 ExprArg assertmessageexpr) {
Anders Carlssonfb311762009-03-14 00:25:26 +00003463 Expr *AssertExpr = (Expr *)assertexpr.get();
3464 StringLiteral *AssertMessage =
3465 cast<StringLiteral>((Expr *)assertmessageexpr.get());
3466
Anders Carlssonc3082412009-03-14 00:33:21 +00003467 if (!AssertExpr->isTypeDependent() && !AssertExpr->isValueDependent()) {
3468 llvm::APSInt Value(32);
3469 if (!AssertExpr->isIntegerConstantExpr(Value, Context)) {
3470 Diag(AssertLoc, diag::err_static_assert_expression_is_not_constant) <<
3471 AssertExpr->getSourceRange();
Chris Lattnerb28317a2009-03-28 19:18:32 +00003472 return DeclPtrTy();
Anders Carlssonc3082412009-03-14 00:33:21 +00003473 }
Anders Carlssonfb311762009-03-14 00:25:26 +00003474
Anders Carlssonc3082412009-03-14 00:33:21 +00003475 if (Value == 0) {
3476 std::string str(AssertMessage->getStrData(),
3477 AssertMessage->getByteLength());
Anders Carlsson94b15fb2009-03-15 18:44:04 +00003478 Diag(AssertLoc, diag::err_static_assert_failed)
3479 << str << AssertExpr->getSourceRange();
Anders Carlssonc3082412009-03-14 00:33:21 +00003480 }
3481 }
3482
Anders Carlsson77d81422009-03-15 17:35:16 +00003483 assertexpr.release();
3484 assertmessageexpr.release();
Anders Carlssonfb311762009-03-14 00:25:26 +00003485 Decl *Decl = StaticAssertDecl::Create(Context, CurContext, AssertLoc,
3486 AssertExpr, AssertMessage);
Anders Carlssonfb311762009-03-14 00:25:26 +00003487
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003488 CurContext->addDecl(Decl);
Chris Lattnerb28317a2009-03-28 19:18:32 +00003489 return DeclPtrTy::make(Decl);
Anders Carlssonfb311762009-03-14 00:25:26 +00003490}
Sebastian Redl50de12f2009-03-24 22:27:57 +00003491
John McCall67d1a672009-08-06 02:15:43 +00003492Sema::DeclPtrTy Sema::ActOnFriendDecl(Scope *S,
John McCall3f9a8a62009-08-11 06:59:38 +00003493 llvm::PointerUnion<const DeclSpec*,Declarator*> DU,
3494 bool IsDefinition) {
John McCall67d1a672009-08-06 02:15:43 +00003495 Declarator *D = DU.dyn_cast<Declarator*>();
3496 const DeclSpec &DS = (D ? D->getDeclSpec() : *DU.get<const DeclSpec*>());
3497
3498 assert(DS.isFriendSpecified());
3499 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified);
3500
3501 // If there's no declarator, then this can only be a friend class
John McCallc48fbdf2009-08-11 21:13:21 +00003502 // declaration (or else it's just syntactically invalid).
John McCall67d1a672009-08-06 02:15:43 +00003503 if (!D) {
John McCallc48fbdf2009-08-11 21:13:21 +00003504 SourceLocation Loc = DS.getSourceRange().getBegin();
John McCall67d1a672009-08-06 02:15:43 +00003505
John McCallc48fbdf2009-08-11 21:13:21 +00003506 QualType T;
3507 DeclContext *DC;
John McCall67d1a672009-08-06 02:15:43 +00003508
John McCallc48fbdf2009-08-11 21:13:21 +00003509 // In C++0x, we just accept any old type.
3510 if (getLangOptions().CPlusPlus0x) {
3511 bool invalid = false;
3512 QualType T = ConvertDeclSpecToType(DS, Loc, invalid);
3513 if (invalid)
3514 return DeclPtrTy();
John McCall67d1a672009-08-06 02:15:43 +00003515
John McCallc48fbdf2009-08-11 21:13:21 +00003516 // The semantic context in which to create the decl. If it's not
3517 // a record decl (or we don't yet know if it is), create it in the
3518 // current context.
3519 DC = CurContext;
3520 if (const RecordType *RT = T->getAs<RecordType>())
3521 DC = RT->getDecl()->getDeclContext();
3522
3523 // The C++98 rules are somewhat more complex.
3524 } else {
3525 // C++ [class.friend]p2:
3526 // An elaborated-type-specifier shall be used in a friend declaration
3527 // for a class.*
3528 // * The class-key of the elaborated-type-specifier is required.
3529 CXXRecordDecl *RD = 0;
3530
3531 switch (DS.getTypeSpecType()) {
3532 case DeclSpec::TST_class:
3533 case DeclSpec::TST_struct:
3534 case DeclSpec::TST_union:
3535 RD = dyn_cast_or_null<CXXRecordDecl>((Decl*) DS.getTypeRep());
3536 if (!RD) return DeclPtrTy();
3537 break;
3538
3539 case DeclSpec::TST_typename:
3540 if (const RecordType *RT =
3541 ((const Type*) DS.getTypeRep())->getAs<RecordType>())
3542 RD = dyn_cast<CXXRecordDecl>(RT->getDecl());
3543 // fallthrough
3544 default:
3545 if (RD) {
3546 Diag(DS.getFriendSpecLoc(), diag::err_unelaborated_friend_type)
3547 << (RD->isUnion())
3548 << CodeModificationHint::CreateInsertion(DS.getTypeSpecTypeLoc(),
3549 RD->isUnion() ? " union" : " class");
3550 return DeclPtrTy::make(RD);
3551 }
3552
3553 Diag(DS.getFriendSpecLoc(), diag::err_unexpected_friend)
3554 << DS.getSourceRange();
3555 return DeclPtrTy();
John McCall67d1a672009-08-06 02:15:43 +00003556 }
3557
John McCallc48fbdf2009-08-11 21:13:21 +00003558 // The record declaration we get from friend declarations is not
3559 // canonicalized; see ActOnTag.
John McCallc48fbdf2009-08-11 21:13:21 +00003560
3561 // C++ [class.friend]p2: A class shall not be defined inside
3562 // a friend declaration.
3563 if (RD->isDefinition())
3564 Diag(DS.getFriendSpecLoc(), diag::err_friend_decl_defines_class)
3565 << RD->getSourceRange();
3566
3567 // C++98 [class.friend]p1: A friend of a class is a function
3568 // or class that is not a member of the class . . .
3569 // But that's a silly restriction which nobody implements for
3570 // inner classes, and C++0x removes it anyway, so we only report
3571 // this (as a warning) if we're being pedantic.
3572 //
3573 // Also, definitions currently get treated in a way that causes
3574 // this error, so only report it if we didn't see a definition.
3575 else if (RD->getDeclContext() == CurContext &&
3576 !getLangOptions().CPlusPlus0x)
3577 Diag(DS.getFriendSpecLoc(), diag::ext_friend_inner_class);
3578
3579 T = QualType(RD->getTypeForDecl(), 0);
3580 DC = RD->getDeclContext();
John McCall67d1a672009-08-06 02:15:43 +00003581 }
3582
John McCallc48fbdf2009-08-11 21:13:21 +00003583 FriendClassDecl *FCD = FriendClassDecl::Create(Context, DC, Loc, T,
3584 DS.getFriendSpecLoc());
3585 FCD->setLexicalDeclContext(CurContext);
John McCall67d1a672009-08-06 02:15:43 +00003586
John McCallc48fbdf2009-08-11 21:13:21 +00003587 if (CurContext->isDependentContext())
3588 CurContext->addHiddenDecl(FCD);
3589 else
3590 CurContext->addDecl(FCD);
John McCall67d1a672009-08-06 02:15:43 +00003591
John McCallc48fbdf2009-08-11 21:13:21 +00003592 return DeclPtrTy::make(FCD);
Anders Carlsson00338362009-05-11 22:55:49 +00003593 }
John McCall67d1a672009-08-06 02:15:43 +00003594
3595 // We have a declarator.
3596 assert(D);
3597
3598 SourceLocation Loc = D->getIdentifierLoc();
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00003599 DeclaratorInfo *DInfo = 0;
3600 QualType T = GetTypeForDeclarator(*D, S, &DInfo);
John McCall67d1a672009-08-06 02:15:43 +00003601
3602 // C++ [class.friend]p1
3603 // A friend of a class is a function or class....
3604 // Note that this sees through typedefs, which is intended.
3605 if (!T->isFunctionType()) {
3606 Diag(Loc, diag::err_unexpected_friend);
3607
3608 // It might be worthwhile to try to recover by creating an
3609 // appropriate declaration.
3610 return DeclPtrTy();
3611 }
3612
3613 // C++ [namespace.memdef]p3
3614 // - If a friend declaration in a non-local class first declares a
3615 // class or function, the friend class or function is a member
3616 // of the innermost enclosing namespace.
3617 // - The name of the friend is not found by simple name lookup
3618 // until a matching declaration is provided in that namespace
3619 // scope (either before or after the class declaration granting
3620 // friendship).
3621 // - If a friend function is called, its name may be found by the
3622 // name lookup that considers functions from namespaces and
3623 // classes associated with the types of the function arguments.
3624 // - When looking for a prior declaration of a class or a function
3625 // declared as a friend, scopes outside the innermost enclosing
3626 // namespace scope are not considered.
3627
3628 CXXScopeSpec &ScopeQual = D->getCXXScopeSpec();
3629 DeclarationName Name = GetNameForDeclarator(*D);
3630 assert(Name);
3631
3632 // The existing declaration we found.
3633 FunctionDecl *FD = NULL;
3634
3635 // The context we found the declaration in, or in which we should
3636 // create the declaration.
3637 DeclContext *DC;
3638
3639 // FIXME: handle local classes
3640
3641 // Recover from invalid scope qualifiers as if they just weren't there.
3642 if (!ScopeQual.isInvalid() && ScopeQual.isSet()) {
3643 DC = computeDeclContext(ScopeQual);
3644
3645 // FIXME: handle dependent contexts
3646 if (!DC) return DeclPtrTy();
3647
3648 Decl *Dec = LookupQualifiedNameWithType(DC, Name, T);
3649
3650 // If searching in that context implicitly found a declaration in
3651 // a different context, treat it like it wasn't found at all.
3652 // TODO: better diagnostics for this case. Suggesting the right
3653 // qualified scope would be nice...
3654 if (!Dec || Dec->getDeclContext() != DC) {
3655 D->setInvalidType();
3656 Diag(Loc, diag::err_qualified_friend_not_found) << Name << T;
3657 return DeclPtrTy();
3658 }
3659
3660 // C++ [class.friend]p1: A friend of a class is a function or
3661 // class that is not a member of the class . . .
3662 if (DC == CurContext)
3663 Diag(DS.getFriendSpecLoc(), diag::err_friend_is_member);
3664
3665 FD = cast<FunctionDecl>(Dec);
3666
3667 // Otherwise walk out to the nearest namespace scope looking for matches.
3668 } else {
3669 // TODO: handle local class contexts.
3670
3671 DC = CurContext;
3672 while (true) {
3673 // Skip class contexts. If someone can cite chapter and verse
3674 // for this behavior, that would be nice --- it's what GCC and
3675 // EDG do, and it seems like a reasonable intent, but the spec
3676 // really only says that checks for unqualified existing
3677 // declarations should stop at the nearest enclosing namespace,
3678 // not that they should only consider the nearest enclosing
3679 // namespace.
3680 while (DC->isRecord()) DC = DC->getParent();
3681
3682 Decl *Dec = LookupQualifiedNameWithType(DC, Name, T);
3683
3684 // TODO: decide what we think about using declarations.
3685 if (Dec) {
3686 FD = cast<FunctionDecl>(Dec);
3687 break;
3688 }
3689 if (DC->isFileContext()) break;
3690 DC = DC->getParent();
3691 }
3692
3693 // C++ [class.friend]p1: A friend of a class is a function or
3694 // class that is not a member of the class . . .
John McCall7f27d922009-08-06 20:49:32 +00003695 // C++0x changes this for both friend types and functions.
3696 // Most C++ 98 compilers do seem to give an error here, so
3697 // we do, too.
3698 if (FD && DC == CurContext && !getLangOptions().CPlusPlus0x)
John McCall67d1a672009-08-06 02:15:43 +00003699 Diag(DS.getFriendSpecLoc(), diag::err_friend_is_member);
3700 }
3701
John McCall3f9a8a62009-08-11 06:59:38 +00003702 bool Redeclaration = (FD != 0);
3703
3704 // If we found a match, create a friend function declaration with
3705 // that function as the previous declaration.
3706 if (Redeclaration) {
3707 // Create it in the semantic context of the original declaration.
3708 DC = FD->getDeclContext();
3709
John McCall67d1a672009-08-06 02:15:43 +00003710 // If we didn't find something matching the type exactly, create
3711 // a declaration. This declaration should only be findable via
3712 // argument-dependent lookup.
John McCall3f9a8a62009-08-11 06:59:38 +00003713 } else {
John McCall67d1a672009-08-06 02:15:43 +00003714 assert(DC->isFileContext());
3715
3716 // This implies that it has to be an operator or function.
3717 if (D->getKind() == Declarator::DK_Constructor ||
3718 D->getKind() == Declarator::DK_Destructor ||
3719 D->getKind() == Declarator::DK_Conversion) {
3720 Diag(Loc, diag::err_introducing_special_friend) <<
3721 (D->getKind() == Declarator::DK_Constructor ? 0 :
3722 D->getKind() == Declarator::DK_Destructor ? 1 : 2);
3723 return DeclPtrTy();
3724 }
John McCall67d1a672009-08-06 02:15:43 +00003725 }
3726
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00003727 NamedDecl *ND = ActOnFunctionDeclarator(S, *D, DC, T, DInfo,
John McCall3f9a8a62009-08-11 06:59:38 +00003728 /* PrevDecl = */ FD,
3729 MultiTemplateParamsArg(*this),
3730 IsDefinition,
3731 Redeclaration);
3732 FD = cast_or_null<FriendFunctionDecl>(ND);
3733
John McCall88232aa2009-08-18 00:00:49 +00003734 assert(FD->getDeclContext() == DC);
3735 assert(FD->getLexicalDeclContext() == CurContext);
3736
John McCall3f9a8a62009-08-11 06:59:38 +00003737 // If this is a dependent context, just add the decl to the
3738 // class's decl list and don't both with the lookup tables. This
3739 // doesn't affect lookup because any call that might find this
3740 // function via ADL necessarily has to involve dependently-typed
3741 // arguments and hence can't be resolved until
3742 // template-instantiation anyway.
3743 if (CurContext->isDependentContext())
3744 CurContext->addHiddenDecl(FD);
3745 else
3746 CurContext->addDecl(FD);
John McCall67d1a672009-08-06 02:15:43 +00003747
3748 return DeclPtrTy::make(FD);
Anders Carlsson00338362009-05-11 22:55:49 +00003749}
3750
Chris Lattnerb28317a2009-03-28 19:18:32 +00003751void Sema::SetDeclDeleted(DeclPtrTy dcl, SourceLocation DelLoc) {
Douglas Gregorefd5bda2009-08-24 11:57:43 +00003752 AdjustDeclIfTemplate(dcl);
3753
Chris Lattnerb28317a2009-03-28 19:18:32 +00003754 Decl *Dcl = dcl.getAs<Decl>();
Sebastian Redl50de12f2009-03-24 22:27:57 +00003755 FunctionDecl *Fn = dyn_cast<FunctionDecl>(Dcl);
3756 if (!Fn) {
3757 Diag(DelLoc, diag::err_deleted_non_function);
3758 return;
3759 }
3760 if (const FunctionDecl *Prev = Fn->getPreviousDeclaration()) {
3761 Diag(DelLoc, diag::err_deleted_decl_not_first);
3762 Diag(Prev->getLocation(), diag::note_previous_declaration);
3763 // If the declaration wasn't the first, we delete the function anyway for
3764 // recovery.
3765 }
3766 Fn->setDeleted();
3767}
Sebastian Redl13e88542009-04-27 21:33:24 +00003768
3769static void SearchForReturnInStmt(Sema &Self, Stmt *S) {
3770 for (Stmt::child_iterator CI = S->child_begin(), E = S->child_end(); CI != E;
3771 ++CI) {
3772 Stmt *SubStmt = *CI;
3773 if (!SubStmt)
3774 continue;
3775 if (isa<ReturnStmt>(SubStmt))
3776 Self.Diag(SubStmt->getSourceRange().getBegin(),
3777 diag::err_return_in_constructor_handler);
3778 if (!isa<Expr>(SubStmt))
3779 SearchForReturnInStmt(Self, SubStmt);
3780 }
3781}
3782
3783void Sema::DiagnoseReturnInConstructorExceptionHandler(CXXTryStmt *TryBlock) {
3784 for (unsigned I = 0, E = TryBlock->getNumHandlers(); I != E; ++I) {
3785 CXXCatchStmt *Handler = TryBlock->getHandler(I);
3786 SearchForReturnInStmt(*this, Handler);
3787 }
3788}
Anders Carlssond7ba27d2009-05-14 01:09:04 +00003789
3790bool Sema::CheckOverridingFunctionReturnType(const CXXMethodDecl *New,
3791 const CXXMethodDecl *Old) {
3792 QualType NewTy = New->getType()->getAsFunctionType()->getResultType();
3793 QualType OldTy = Old->getType()->getAsFunctionType()->getResultType();
3794
3795 QualType CNewTy = Context.getCanonicalType(NewTy);
3796 QualType COldTy = Context.getCanonicalType(OldTy);
3797
3798 if (CNewTy == COldTy &&
3799 CNewTy.getCVRQualifiers() == COldTy.getCVRQualifiers())
3800 return false;
3801
Anders Carlssonc3a68b22009-05-14 19:52:19 +00003802 // Check if the return types are covariant
3803 QualType NewClassTy, OldClassTy;
3804
3805 /// Both types must be pointers or references to classes.
3806 if (PointerType *NewPT = dyn_cast<PointerType>(NewTy)) {
3807 if (PointerType *OldPT = dyn_cast<PointerType>(OldTy)) {
3808 NewClassTy = NewPT->getPointeeType();
3809 OldClassTy = OldPT->getPointeeType();
3810 }
3811 } else if (ReferenceType *NewRT = dyn_cast<ReferenceType>(NewTy)) {
3812 if (ReferenceType *OldRT = dyn_cast<ReferenceType>(OldTy)) {
3813 NewClassTy = NewRT->getPointeeType();
3814 OldClassTy = OldRT->getPointeeType();
3815 }
3816 }
3817
3818 // The return types aren't either both pointers or references to a class type.
3819 if (NewClassTy.isNull()) {
3820 Diag(New->getLocation(),
3821 diag::err_different_return_type_for_overriding_virtual_function)
3822 << New->getDeclName() << NewTy << OldTy;
3823 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
3824
3825 return true;
3826 }
Anders Carlssond7ba27d2009-05-14 01:09:04 +00003827
Anders Carlssonc3a68b22009-05-14 19:52:19 +00003828 if (NewClassTy.getUnqualifiedType() != OldClassTy.getUnqualifiedType()) {
3829 // Check if the new class derives from the old class.
3830 if (!IsDerivedFrom(NewClassTy, OldClassTy)) {
3831 Diag(New->getLocation(),
3832 diag::err_covariant_return_not_derived)
3833 << New->getDeclName() << NewTy << OldTy;
3834 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
3835 return true;
3836 }
3837
3838 // Check if we the conversion from derived to base is valid.
3839 if (CheckDerivedToBaseConversion(NewClassTy, OldClassTy,
3840 diag::err_covariant_return_inaccessible_base,
3841 diag::err_covariant_return_ambiguous_derived_to_base_conv,
3842 // FIXME: Should this point to the return type?
3843 New->getLocation(), SourceRange(), New->getDeclName())) {
3844 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
3845 return true;
3846 }
3847 }
3848
3849 // The qualifiers of the return types must be the same.
3850 if (CNewTy.getCVRQualifiers() != COldTy.getCVRQualifiers()) {
3851 Diag(New->getLocation(),
3852 diag::err_covariant_return_type_different_qualifications)
Anders Carlssond7ba27d2009-05-14 01:09:04 +00003853 << New->getDeclName() << NewTy << OldTy;
Anders Carlssonc3a68b22009-05-14 19:52:19 +00003854 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
3855 return true;
3856 };
3857
3858
3859 // The new class type must have the same or less qualifiers as the old type.
3860 if (NewClassTy.isMoreQualifiedThan(OldClassTy)) {
3861 Diag(New->getLocation(),
3862 diag::err_covariant_return_type_class_type_more_qualified)
3863 << New->getDeclName() << NewTy << OldTy;
3864 Diag(Old->getLocation(), diag::note_overridden_virtual_function);
3865 return true;
3866 };
3867
3868 return false;
Anders Carlssond7ba27d2009-05-14 01:09:04 +00003869}
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00003870
Sebastian Redl23c7d062009-07-07 20:29:57 +00003871bool Sema::CheckOverridingFunctionExceptionSpec(const CXXMethodDecl *New,
3872 const CXXMethodDecl *Old)
3873{
3874 return CheckExceptionSpecSubset(diag::err_override_exception_spec,
3875 diag::note_overridden_virtual_function,
3876 Old->getType()->getAsFunctionProtoType(),
3877 Old->getLocation(),
3878 New->getType()->getAsFunctionProtoType(),
3879 New->getLocation());
3880}
3881
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00003882/// ActOnCXXEnterDeclInitializer - Invoked when we are about to parse an
3883/// initializer for the declaration 'Dcl'.
3884/// After this method is called, according to [C++ 3.4.1p13], if 'Dcl' is a
3885/// static data member of class X, names should be looked up in the scope of
3886/// class X.
3887void Sema::ActOnCXXEnterDeclInitializer(Scope *S, DeclPtrTy Dcl) {
Douglas Gregorefd5bda2009-08-24 11:57:43 +00003888 AdjustDeclIfTemplate(Dcl);
3889
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00003890 Decl *D = Dcl.getAs<Decl>();
3891 // If there is no declaration, there was an error parsing it.
3892 if (D == 0)
3893 return;
3894
3895 // Check whether it is a declaration with a nested name specifier like
3896 // int foo::bar;
3897 if (!D->isOutOfLine())
3898 return;
3899
3900 // C++ [basic.lookup.unqual]p13
3901 //
3902 // A name used in the definition of a static data member of class X
3903 // (after the qualified-id of the static member) is looked up as if the name
3904 // was used in a member function of X.
3905
3906 // Change current context into the context of the initializing declaration.
Argyrios Kyrtzidis1d175532009-06-17 23:15:40 +00003907 EnterDeclaratorContext(S, D->getDeclContext());
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00003908}
3909
3910/// ActOnCXXExitDeclInitializer - Invoked after we are finished parsing an
3911/// initializer for the declaration 'Dcl'.
3912void Sema::ActOnCXXExitDeclInitializer(Scope *S, DeclPtrTy Dcl) {
Douglas Gregorefd5bda2009-08-24 11:57:43 +00003913 AdjustDeclIfTemplate(Dcl);
3914
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00003915 Decl *D = Dcl.getAs<Decl>();
3916 // If there is no declaration, there was an error parsing it.
3917 if (D == 0)
3918 return;
3919
3920 // Check whether it is a declaration with a nested name specifier like
3921 // int foo::bar;
3922 if (!D->isOutOfLine())
3923 return;
3924
3925 assert(S->getEntity() == D->getDeclContext() && "Context imbalance!");
Argyrios Kyrtzidis1d175532009-06-17 23:15:40 +00003926 ExitDeclaratorContext(S);
Argyrios Kyrtzidis0ffd9ff2009-06-17 22:50:06 +00003927}