blob: 0e5adc46a2dcfac6fb51c26bff6273d3c17eca7a [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"
Douglas Gregor02189362008-10-22 21:13:31 +000018#include "clang/AST/TypeOrdering.h"
Chris Lattner8123a952008-04-10 02:22:51 +000019#include "clang/AST/StmtVisitor.h"
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +000020#include "clang/Lex/Preprocessor.h"
Daniel Dunbar12bc6922008-08-11 03:27:53 +000021#include "clang/Parse/DeclSpec.h"
Douglas Gregor3fc749d2008-12-23 00:26:44 +000022#include "llvm/ADT/STLExtras.h"
Chris Lattner8123a952008-04-10 02:22:51 +000023#include "llvm/Support/Compiler.h"
Douglas Gregor8e9bebd2008-10-21 16:13:35 +000024#include <algorithm> // for std::equal
Douglas Gregorf8268ae2008-10-22 17:49:05 +000025#include <map>
Chris Lattner3d1cee32008-04-08 05:04:30 +000026
27using namespace clang;
28
Chris Lattner8123a952008-04-10 02:22:51 +000029//===----------------------------------------------------------------------===//
30// CheckDefaultArgumentVisitor
31//===----------------------------------------------------------------------===//
32
Chris Lattner9e979552008-04-12 23:52:44 +000033namespace {
34 /// CheckDefaultArgumentVisitor - C++ [dcl.fct.default] Traverses
35 /// the default argument of a parameter to determine whether it
36 /// contains any ill-formed subexpressions. For example, this will
37 /// diagnose the use of local variables or parameters within the
38 /// default argument expression.
39 class VISIBILITY_HIDDEN CheckDefaultArgumentVisitor
Chris Lattnerb77792e2008-07-26 22:17:49 +000040 : public StmtVisitor<CheckDefaultArgumentVisitor, bool> {
Chris Lattner9e979552008-04-12 23:52:44 +000041 Expr *DefaultArg;
42 Sema *S;
Chris Lattner8123a952008-04-10 02:22:51 +000043
Chris Lattner9e979552008-04-12 23:52:44 +000044 public:
45 CheckDefaultArgumentVisitor(Expr *defarg, Sema *s)
46 : DefaultArg(defarg), S(s) {}
Chris Lattner8123a952008-04-10 02:22:51 +000047
Chris Lattner9e979552008-04-12 23:52:44 +000048 bool VisitExpr(Expr *Node);
49 bool VisitDeclRefExpr(DeclRefExpr *DRE);
Douglas Gregor796da182008-11-04 14:32:21 +000050 bool VisitCXXThisExpr(CXXThisExpr *ThisE);
Chris Lattner9e979552008-04-12 23:52:44 +000051 };
Chris Lattner8123a952008-04-10 02:22:51 +000052
Chris Lattner9e979552008-04-12 23:52:44 +000053 /// VisitExpr - Visit all of the children of this expression.
54 bool CheckDefaultArgumentVisitor::VisitExpr(Expr *Node) {
55 bool IsInvalid = false;
Chris Lattnerb77792e2008-07-26 22:17:49 +000056 for (Stmt::child_iterator I = Node->child_begin(),
57 E = Node->child_end(); I != E; ++I)
58 IsInvalid |= Visit(*I);
Chris Lattner9e979552008-04-12 23:52:44 +000059 return IsInvalid;
Chris Lattner8123a952008-04-10 02:22:51 +000060 }
61
Chris Lattner9e979552008-04-12 23:52:44 +000062 /// VisitDeclRefExpr - Visit a reference to a declaration, to
63 /// determine whether this declaration can be used in the default
64 /// argument expression.
65 bool CheckDefaultArgumentVisitor::VisitDeclRefExpr(DeclRefExpr *DRE) {
Douglas Gregor8e9bebd2008-10-21 16:13:35 +000066 NamedDecl *Decl = DRE->getDecl();
Chris Lattner9e979552008-04-12 23:52:44 +000067 if (ParmVarDecl *Param = dyn_cast<ParmVarDecl>(Decl)) {
68 // C++ [dcl.fct.default]p9
69 // Default arguments are evaluated each time the function is
70 // called. The order of evaluation of function arguments is
71 // unspecified. Consequently, parameters of a function shall not
72 // be used in default argument expressions, even if they are not
73 // evaluated. Parameters of a function declared before a default
74 // argument expression are in scope and can hide namespace and
75 // class member names.
76 return S->Diag(DRE->getSourceRange().getBegin(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +000077 diag::err_param_default_argument_references_param)
Chris Lattner08631c52008-11-23 21:45:46 +000078 << Param->getDeclName() << DefaultArg->getSourceRange();
Steve Naroff248a7532008-04-15 22:42:06 +000079 } else if (VarDecl *VDecl = dyn_cast<VarDecl>(Decl)) {
Chris Lattner9e979552008-04-12 23:52:44 +000080 // C++ [dcl.fct.default]p7
81 // Local variables shall not be used in default argument
82 // expressions.
Steve Naroff248a7532008-04-15 22:42:06 +000083 if (VDecl->isBlockVarDecl())
84 return S->Diag(DRE->getSourceRange().getBegin(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +000085 diag::err_param_default_argument_references_local)
Chris Lattner08631c52008-11-23 21:45:46 +000086 << VDecl->getDeclName() << DefaultArg->getSourceRange();
Chris Lattner9e979552008-04-12 23:52:44 +000087 }
Chris Lattner8123a952008-04-10 02:22:51 +000088
Douglas Gregor3996f232008-11-04 13:41:56 +000089 return false;
90 }
Chris Lattner9e979552008-04-12 23:52:44 +000091
Douglas Gregor796da182008-11-04 14:32:21 +000092 /// VisitCXXThisExpr - Visit a C++ "this" expression.
93 bool CheckDefaultArgumentVisitor::VisitCXXThisExpr(CXXThisExpr *ThisE) {
94 // C++ [dcl.fct.default]p8:
95 // The keyword this shall not be used in a default argument of a
96 // member function.
97 return S->Diag(ThisE->getSourceRange().getBegin(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +000098 diag::err_param_default_argument_references_this)
99 << ThisE->getSourceRange();
Chris Lattner9e979552008-04-12 23:52:44 +0000100 }
Chris Lattner8123a952008-04-10 02:22:51 +0000101}
102
103/// ActOnParamDefaultArgument - Check whether the default argument
104/// provided for a function parameter is well-formed. If so, attach it
105/// to the parameter declaration.
Chris Lattner3d1cee32008-04-08 05:04:30 +0000106void
107Sema::ActOnParamDefaultArgument(DeclTy *param, SourceLocation EqualLoc,
108 ExprTy *defarg) {
109 ParmVarDecl *Param = (ParmVarDecl *)param;
Ted Kremenek8189cde2009-02-07 01:47:29 +0000110 ExprOwningPtr<Expr> DefaultArg(this, (Expr *)defarg);
Chris Lattner3d1cee32008-04-08 05:04:30 +0000111 QualType ParamType = Param->getType();
112
113 // Default arguments are only permitted in C++
114 if (!getLangOptions().CPlusPlus) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000115 Diag(EqualLoc, diag::err_param_default_argument)
116 << DefaultArg->getSourceRange();
Douglas Gregor72b505b2008-12-16 21:30:33 +0000117 Param->setInvalidDecl();
Chris Lattner3d1cee32008-04-08 05:04:30 +0000118 return;
119 }
120
121 // C++ [dcl.fct.default]p5
122 // A default argument expression is implicitly converted (clause
123 // 4) to the parameter type. The default argument expression has
124 // the same semantic constraints as the initializer expression in
125 // a declaration of a variable of the parameter type, using the
126 // copy-initialization semantics (8.5).
Chris Lattner3d1cee32008-04-08 05:04:30 +0000127 Expr *DefaultArgPtr = DefaultArg.get();
Douglas Gregor61366e92008-12-24 00:01:03 +0000128 bool DefaultInitFailed = CheckInitializerTypes(DefaultArgPtr, ParamType,
129 EqualLoc,
Douglas Gregor09f41cf2009-01-14 15:45:31 +0000130 Param->getDeclName(),
131 /*DirectInit=*/false);
Chris Lattner3d1cee32008-04-08 05:04:30 +0000132 if (DefaultArgPtr != DefaultArg.get()) {
133 DefaultArg.take();
134 DefaultArg.reset(DefaultArgPtr);
135 }
Douglas Gregoreb704f22008-11-04 13:57:51 +0000136 if (DefaultInitFailed) {
Chris Lattner3d1cee32008-04-08 05:04:30 +0000137 return;
138 }
139
Chris Lattner8123a952008-04-10 02:22:51 +0000140 // Check that the default argument is well-formed
Chris Lattner9e979552008-04-12 23:52:44 +0000141 CheckDefaultArgumentVisitor DefaultArgChecker(DefaultArg.get(), this);
Douglas Gregor72b505b2008-12-16 21:30:33 +0000142 if (DefaultArgChecker.Visit(DefaultArg.get())) {
143 Param->setInvalidDecl();
Chris Lattner8123a952008-04-10 02:22:51 +0000144 return;
Douglas Gregor72b505b2008-12-16 21:30:33 +0000145 }
Chris Lattner8123a952008-04-10 02:22:51 +0000146
Chris Lattner3d1cee32008-04-08 05:04:30 +0000147 // Okay: add the default argument to the parameter
148 Param->setDefaultArg(DefaultArg.take());
149}
150
Douglas Gregor61366e92008-12-24 00:01:03 +0000151/// ActOnParamUnparsedDefaultArgument - We've seen a default
152/// argument for a function parameter, but we can't parse it yet
153/// because we're inside a class definition. Note that this default
154/// argument will be parsed later.
155void Sema::ActOnParamUnparsedDefaultArgument(DeclTy *param,
156 SourceLocation EqualLoc) {
157 ParmVarDecl *Param = (ParmVarDecl*)param;
158 if (Param)
159 Param->setUnparsedDefaultArg();
160}
161
Douglas Gregor72b505b2008-12-16 21:30:33 +0000162/// ActOnParamDefaultArgumentError - Parsing or semantic analysis of
163/// the default argument for the parameter param failed.
164void Sema::ActOnParamDefaultArgumentError(DeclTy *param) {
165 ((ParmVarDecl*)param)->setInvalidDecl();
166}
167
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000168/// CheckExtraCXXDefaultArguments - Check for any extra default
169/// arguments in the declarator, which is not a function declaration
170/// or definition and therefore is not permitted to have default
171/// arguments. This routine should be invoked for every declarator
172/// that is not a function declaration or definition.
173void Sema::CheckExtraCXXDefaultArguments(Declarator &D) {
174 // C++ [dcl.fct.default]p3
175 // A default argument expression shall be specified only in the
176 // parameter-declaration-clause of a function declaration or in a
177 // template-parameter (14.1). It shall not be specified for a
178 // parameter pack. If it is specified in a
179 // parameter-declaration-clause, it shall not occur within a
180 // declarator or abstract-declarator of a parameter-declaration.
181 for (unsigned i = 0; i < D.getNumTypeObjects(); ++i) {
182 DeclaratorChunk &chunk = D.getTypeObject(i);
183 if (chunk.Kind == DeclaratorChunk::Function) {
184 for (unsigned argIdx = 0; argIdx < chunk.Fun.NumArgs; ++argIdx) {
185 ParmVarDecl *Param = (ParmVarDecl *)chunk.Fun.ArgInfo[argIdx].Param;
Douglas Gregor61366e92008-12-24 00:01:03 +0000186 if (Param->hasUnparsedDefaultArg()) {
187 CachedTokens *Toks = chunk.Fun.ArgInfo[argIdx].DefaultArgTokens;
Douglas Gregor72b505b2008-12-16 21:30:33 +0000188 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
189 << SourceRange((*Toks)[1].getLocation(), Toks->back().getLocation());
190 delete Toks;
191 chunk.Fun.ArgInfo[argIdx].DefaultArgTokens = 0;
Douglas Gregor61366e92008-12-24 00:01:03 +0000192 } else if (Param->getDefaultArg()) {
193 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
194 << Param->getDefaultArg()->getSourceRange();
195 Param->setDefaultArg(0);
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000196 }
197 }
198 }
199 }
200}
201
Chris Lattner3d1cee32008-04-08 05:04:30 +0000202// MergeCXXFunctionDecl - Merge two declarations of the same C++
203// function, once we already know that they have the same
Douglas Gregorcda9c672009-02-16 17:45:42 +0000204// type. Subroutine of MergeFunctionDecl. Returns true if there was an
205// error, false otherwise.
206bool Sema::MergeCXXFunctionDecl(FunctionDecl *New, FunctionDecl *Old) {
207 bool Invalid = false;
208
Chris Lattner3d1cee32008-04-08 05:04:30 +0000209 // C++ [dcl.fct.default]p4:
210 //
211 // For non-template functions, default arguments can be added in
212 // later declarations of a function in the same
213 // scope. Declarations in different scopes have completely
214 // distinct sets of default arguments. That is, declarations in
215 // inner scopes do not acquire default arguments from
216 // declarations in outer scopes, and vice versa. In a given
217 // function declaration, all parameters subsequent to a
218 // parameter with a default argument shall have default
219 // arguments supplied in this or previous declarations. A
220 // default argument shall not be redefined by a later
221 // declaration (not even to the same value).
222 for (unsigned p = 0, NumParams = Old->getNumParams(); p < NumParams; ++p) {
223 ParmVarDecl *OldParam = Old->getParamDecl(p);
224 ParmVarDecl *NewParam = New->getParamDecl(p);
225
226 if(OldParam->getDefaultArg() && NewParam->getDefaultArg()) {
227 Diag(NewParam->getLocation(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000228 diag::err_param_default_argument_redefinition)
229 << NewParam->getDefaultArg()->getSourceRange();
Chris Lattner5f4a6822008-11-23 23:12:31 +0000230 Diag(OldParam->getLocation(), diag::note_previous_definition);
Douglas Gregorcda9c672009-02-16 17:45:42 +0000231 Invalid = true;
Chris Lattner3d1cee32008-04-08 05:04:30 +0000232 } else if (OldParam->getDefaultArg()) {
233 // Merge the old default argument into the new parameter
234 NewParam->setDefaultArg(OldParam->getDefaultArg());
235 }
236 }
237
Douglas Gregorcda9c672009-02-16 17:45:42 +0000238 return Invalid;
Chris Lattner3d1cee32008-04-08 05:04:30 +0000239}
240
241/// CheckCXXDefaultArguments - Verify that the default arguments for a
242/// function declaration are well-formed according to C++
243/// [dcl.fct.default].
244void Sema::CheckCXXDefaultArguments(FunctionDecl *FD) {
245 unsigned NumParams = FD->getNumParams();
246 unsigned p;
247
248 // Find first parameter with a default argument
249 for (p = 0; p < NumParams; ++p) {
250 ParmVarDecl *Param = FD->getParamDecl(p);
251 if (Param->getDefaultArg())
252 break;
253 }
254
255 // C++ [dcl.fct.default]p4:
256 // In a given function declaration, all parameters
257 // subsequent to a parameter with a default argument shall
258 // have default arguments supplied in this or previous
259 // declarations. A default argument shall not be redefined
260 // by a later declaration (not even to the same value).
261 unsigned LastMissingDefaultArg = 0;
262 for(; p < NumParams; ++p) {
263 ParmVarDecl *Param = FD->getParamDecl(p);
264 if (!Param->getDefaultArg()) {
Douglas Gregor72b505b2008-12-16 21:30:33 +0000265 if (Param->isInvalidDecl())
266 /* We already complained about this parameter. */;
267 else if (Param->getIdentifier())
Chris Lattner3d1cee32008-04-08 05:04:30 +0000268 Diag(Param->getLocation(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000269 diag::err_param_default_argument_missing_name)
Chris Lattner43b628c2008-11-19 07:32:16 +0000270 << Param->getIdentifier();
Chris Lattner3d1cee32008-04-08 05:04:30 +0000271 else
272 Diag(Param->getLocation(),
273 diag::err_param_default_argument_missing);
274
275 LastMissingDefaultArg = p;
276 }
277 }
278
279 if (LastMissingDefaultArg > 0) {
280 // Some default arguments were missing. Clear out all of the
281 // default arguments up to (and including) the last missing
282 // default argument, so that we leave the function parameters
283 // in a semantically valid state.
284 for (p = 0; p <= LastMissingDefaultArg; ++p) {
285 ParmVarDecl *Param = FD->getParamDecl(p);
286 if (Param->getDefaultArg()) {
Douglas Gregor61366e92008-12-24 00:01:03 +0000287 if (!Param->hasUnparsedDefaultArg())
288 Param->getDefaultArg()->Destroy(Context);
Chris Lattner3d1cee32008-04-08 05:04:30 +0000289 Param->setDefaultArg(0);
290 }
291 }
292 }
293}
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000294
Douglas Gregorb48fe382008-10-31 09:07:45 +0000295/// isCurrentClassName - Determine whether the identifier II is the
296/// name of the class type currently being defined. In the case of
297/// nested classes, this will only return true if II is the name of
298/// the innermost class.
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000299bool Sema::isCurrentClassName(const IdentifierInfo &II, Scope *,
300 const CXXScopeSpec *SS) {
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +0000301 CXXRecordDecl *CurDecl;
302 if (SS) {
303 DeclContext *DC = static_cast<DeclContext*>(SS->getScopeRep());
304 CurDecl = dyn_cast_or_null<CXXRecordDecl>(DC);
305 } else
306 CurDecl = dyn_cast_or_null<CXXRecordDecl>(CurContext);
307
308 if (CurDecl)
Douglas Gregorb48fe382008-10-31 09:07:45 +0000309 return &II == CurDecl->getIdentifier();
310 else
311 return false;
312}
313
Douglas Gregor2943aed2009-03-03 04:44:36 +0000314/// \brief Check the validity of a C++ base class specifier.
315///
316/// \returns a new CXXBaseSpecifier if well-formed, emits diagnostics
317/// and returns NULL otherwise.
318CXXBaseSpecifier *
319Sema::CheckBaseSpecifier(CXXRecordDecl *Class,
320 SourceRange SpecifierRange,
321 bool Virtual, AccessSpecifier Access,
322 QualType BaseType,
323 SourceLocation BaseLoc) {
324 // C++ [class.union]p1:
325 // A union shall not have base classes.
326 if (Class->isUnion()) {
327 Diag(Class->getLocation(), diag::err_base_clause_on_union)
328 << SpecifierRange;
329 return 0;
330 }
331
332 if (BaseType->isDependentType())
333 return new CXXBaseSpecifier(SpecifierRange, Virtual,
334 Class->getTagKind() == RecordDecl::TK_class,
335 Access, BaseType);
336
337 // Base specifiers must be record types.
338 if (!BaseType->isRecordType()) {
339 Diag(BaseLoc, diag::err_base_must_be_class) << SpecifierRange;
340 return 0;
341 }
342
343 // C++ [class.union]p1:
344 // A union shall not be used as a base class.
345 if (BaseType->isUnionType()) {
346 Diag(BaseLoc, diag::err_union_as_base_class) << SpecifierRange;
347 return 0;
348 }
349
350 // C++ [class.derived]p2:
351 // The class-name in a base-specifier shall not be an incompletely
352 // defined class.
353 if (DiagnoseIncompleteType(BaseLoc, BaseType, diag::err_incomplete_base_class,
354 SpecifierRange))
355 return 0;
356
357 // If the base class is polymorphic, the new one is, too.
358 RecordDecl *BaseDecl = BaseType->getAsRecordType()->getDecl();
359 assert(BaseDecl && "Record type has no declaration");
360 BaseDecl = BaseDecl->getDefinition(Context);
361 assert(BaseDecl && "Base type is not incomplete, but has no definition");
362 if (cast<CXXRecordDecl>(BaseDecl)->isPolymorphic())
363 Class->setPolymorphic(true);
364
365 // C++ [dcl.init.aggr]p1:
366 // An aggregate is [...] a class with [...] no base classes [...].
367 Class->setAggregate(false);
368 Class->setPOD(false);
369
370 // Create the base specifier.
371 // FIXME: Allocate via ASTContext?
372 return new CXXBaseSpecifier(SpecifierRange, Virtual,
373 Class->getTagKind() == RecordDecl::TK_class,
374 Access, BaseType);
375}
376
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000377/// ActOnBaseSpecifier - Parsed a base specifier. A base specifier is
378/// one entry in the base class list of a class specifier, for
379/// example:
380/// class foo : public bar, virtual private baz {
381/// 'public bar' and 'virtual private baz' are each base-specifiers.
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000382Sema::BaseResult
383Sema::ActOnBaseSpecifier(DeclTy *classdecl, SourceRange SpecifierRange,
384 bool Virtual, AccessSpecifier Access,
385 TypeTy *basetype, SourceLocation BaseLoc) {
Douglas Gregor2943aed2009-03-03 04:44:36 +0000386 CXXRecordDecl *Class = (CXXRecordDecl*)classdecl;
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000387 QualType BaseType = QualType::getFromOpaquePtr(basetype);
Douglas Gregor2943aed2009-03-03 04:44:36 +0000388 if (CXXBaseSpecifier *BaseSpec = CheckBaseSpecifier(Class, SpecifierRange,
389 Virtual, Access,
390 BaseType, BaseLoc))
391 return BaseSpec;
392
393 return true;
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000394}
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000395
Douglas Gregor2943aed2009-03-03 04:44:36 +0000396/// \brief Performs the actual work of attaching the given base class
397/// specifiers to a C++ class.
398bool Sema::AttachBaseSpecifiers(CXXRecordDecl *Class, CXXBaseSpecifier **Bases,
399 unsigned NumBases) {
400 if (NumBases == 0)
401 return false;
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000402
403 // Used to keep track of which base types we have already seen, so
404 // that we can properly diagnose redundant direct base types. Note
Douglas Gregor57c856b2008-10-23 18:13:27 +0000405 // that the key is always the unqualified canonical type of the base
406 // class.
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000407 std::map<QualType, CXXBaseSpecifier*, QualTypeOrdering> KnownBaseTypes;
408
409 // Copy non-redundant base specifiers into permanent storage.
Douglas Gregor57c856b2008-10-23 18:13:27 +0000410 unsigned NumGoodBases = 0;
Douglas Gregor2943aed2009-03-03 04:44:36 +0000411 bool Invalid = false;
Douglas Gregor57c856b2008-10-23 18:13:27 +0000412 for (unsigned idx = 0; idx < NumBases; ++idx) {
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000413 QualType NewBaseType
Douglas Gregor2943aed2009-03-03 04:44:36 +0000414 = Context.getCanonicalType(Bases[idx]->getType());
Douglas Gregor57c856b2008-10-23 18:13:27 +0000415 NewBaseType = NewBaseType.getUnqualifiedType();
416
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000417 if (KnownBaseTypes[NewBaseType]) {
418 // C++ [class.mi]p3:
419 // A class shall not be specified as a direct base class of a
420 // derived class more than once.
Douglas Gregor2943aed2009-03-03 04:44:36 +0000421 Diag(Bases[idx]->getSourceRange().getBegin(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000422 diag::err_duplicate_base_class)
Chris Lattnerd1625842008-11-24 06:25:27 +0000423 << KnownBaseTypes[NewBaseType]->getType()
Douglas Gregor2943aed2009-03-03 04:44:36 +0000424 << Bases[idx]->getSourceRange();
Douglas Gregor57c856b2008-10-23 18:13:27 +0000425
426 // Delete the duplicate base class specifier; we're going to
427 // overwrite its pointer later.
Douglas Gregor2943aed2009-03-03 04:44:36 +0000428 delete Bases[idx];
429
430 Invalid = true;
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000431 } else {
432 // Okay, add this new base class.
Douglas Gregor2943aed2009-03-03 04:44:36 +0000433 KnownBaseTypes[NewBaseType] = Bases[idx];
434 Bases[NumGoodBases++] = Bases[idx];
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000435 }
436 }
437
438 // Attach the remaining base class specifiers to the derived class.
Douglas Gregor2943aed2009-03-03 04:44:36 +0000439 Class->setBases(Bases, NumGoodBases);
Douglas Gregor57c856b2008-10-23 18:13:27 +0000440
441 // Delete the remaining (good) base class specifiers, since their
442 // data has been copied into the CXXRecordDecl.
443 for (unsigned idx = 0; idx < NumGoodBases; ++idx)
Douglas Gregor2943aed2009-03-03 04:44:36 +0000444 delete Bases[idx];
445
446 return Invalid;
447}
448
449/// ActOnBaseSpecifiers - Attach the given base specifiers to the
450/// class, after checking whether there are any duplicate base
451/// classes.
452void Sema::ActOnBaseSpecifiers(DeclTy *ClassDecl, BaseTy **Bases,
453 unsigned NumBases) {
454 if (!ClassDecl || !Bases || !NumBases)
455 return;
456
457 AdjustDeclIfTemplate(ClassDecl);
458 AttachBaseSpecifiers(cast<CXXRecordDecl>((Decl*)ClassDecl),
459 (CXXBaseSpecifier**)(Bases), NumBases);
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000460}
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +0000461
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000462//===----------------------------------------------------------------------===//
463// C++ class member Handling
464//===----------------------------------------------------------------------===//
465
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000466/// ActOnCXXMemberDeclarator - This is invoked when a C++ class member
467/// declarator is parsed. 'AS' is the access specifier, 'BW' specifies the
468/// bitfield width if there is one and 'InitExpr' specifies the initializer if
469/// any. 'LastInGroup' is non-null for cases where one declspec has multiple
470/// declarators on it.
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000471Sema::DeclTy *
472Sema::ActOnCXXMemberDeclarator(Scope *S, AccessSpecifier AS, Declarator &D,
473 ExprTy *BW, ExprTy *InitExpr,
474 DeclTy *LastInGroup) {
475 const DeclSpec &DS = D.getDeclSpec();
Douglas Gregor10bd3682008-11-17 22:58:34 +0000476 DeclarationName Name = GetNameForDeclarator(D);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000477 Expr *BitWidth = static_cast<Expr*>(BW);
478 Expr *Init = static_cast<Expr*>(InitExpr);
479 SourceLocation Loc = D.getIdentifierLoc();
480
Sebastian Redl669d5d72008-11-14 23:42:31 +0000481 bool isFunc = D.isFunctionDeclarator();
482
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000483 // C++ 9.2p6: A member shall not be declared to have automatic storage
484 // duration (auto, register) or with the extern storage-class-specifier.
Sebastian Redl669d5d72008-11-14 23:42:31 +0000485 // C++ 7.1.1p8: The mutable specifier can be applied only to names of class
486 // data members and cannot be applied to names declared const or static,
487 // and cannot be applied to reference members.
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000488 switch (DS.getStorageClassSpec()) {
489 case DeclSpec::SCS_unspecified:
490 case DeclSpec::SCS_typedef:
491 case DeclSpec::SCS_static:
492 // FALL THROUGH.
493 break;
Sebastian Redl669d5d72008-11-14 23:42:31 +0000494 case DeclSpec::SCS_mutable:
495 if (isFunc) {
496 if (DS.getStorageClassSpecLoc().isValid())
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000497 Diag(DS.getStorageClassSpecLoc(), diag::err_mutable_function);
Sebastian Redl669d5d72008-11-14 23:42:31 +0000498 else
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000499 Diag(DS.getThreadSpecLoc(), diag::err_mutable_function);
500
Sebastian Redla11f42f2008-11-17 23:24:37 +0000501 // FIXME: It would be nicer if the keyword was ignored only for this
502 // declarator. Otherwise we could get follow-up errors.
Sebastian Redl669d5d72008-11-14 23:42:31 +0000503 D.getMutableDeclSpec().ClearStorageClassSpecs();
504 } else {
505 QualType T = GetTypeForDeclarator(D, S);
506 diag::kind err = static_cast<diag::kind>(0);
507 if (T->isReferenceType())
508 err = diag::err_mutable_reference;
509 else if (T.isConstQualified())
510 err = diag::err_mutable_const;
511 if (err != 0) {
512 if (DS.getStorageClassSpecLoc().isValid())
513 Diag(DS.getStorageClassSpecLoc(), err);
514 else
515 Diag(DS.getThreadSpecLoc(), err);
Sebastian Redla11f42f2008-11-17 23:24:37 +0000516 // FIXME: It would be nicer if the keyword was ignored only for this
517 // declarator. Otherwise we could get follow-up errors.
Sebastian Redl669d5d72008-11-14 23:42:31 +0000518 D.getMutableDeclSpec().ClearStorageClassSpecs();
519 }
520 }
521 break;
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000522 default:
523 if (DS.getStorageClassSpecLoc().isValid())
524 Diag(DS.getStorageClassSpecLoc(),
525 diag::err_storageclass_invalid_for_member);
526 else
527 Diag(DS.getThreadSpecLoc(), diag::err_storageclass_invalid_for_member);
528 D.getMutableDeclSpec().ClearStorageClassSpecs();
529 }
530
Argyrios Kyrtzidisd6caa9e2008-10-15 20:23:22 +0000531 if (!isFunc &&
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000532 D.getDeclSpec().getTypeSpecType() == DeclSpec::TST_typename &&
Argyrios Kyrtzidisd6caa9e2008-10-15 20:23:22 +0000533 D.getNumTypeObjects() == 0) {
Argyrios Kyrtzidisde933f02008-10-08 22:20:31 +0000534 // Check also for this case:
535 //
536 // typedef int f();
537 // f a;
538 //
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000539 QualType TDType = QualType::getFromOpaquePtr(DS.getTypeRep());
540 isFunc = TDType->isFunctionType();
Argyrios Kyrtzidisde933f02008-10-08 22:20:31 +0000541 }
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000542
Sebastian Redl669d5d72008-11-14 23:42:31 +0000543 bool isInstField = ((DS.getStorageClassSpec() == DeclSpec::SCS_unspecified ||
544 DS.getStorageClassSpec() == DeclSpec::SCS_mutable) &&
Argyrios Kyrtzidisde933f02008-10-08 22:20:31 +0000545 !isFunc);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000546
547 Decl *Member;
548 bool InvalidDecl = false;
549
Chris Lattner24793662009-03-05 22:45:59 +0000550 if (isInstField) {
551 FieldDecl *FD =
552 HandleField(S, cast<CXXRecordDecl>(CurContext), Loc, D, BitWidth);
553 // Refresh our notion of bitwidth.
554 BitWidth = FD->getBitWidth();
555 Member = FD;
556 } else {
Daniel Dunbar914701e2008-08-05 16:28:08 +0000557 Member = static_cast<Decl*>(ActOnDeclarator(S, D, LastInGroup));
Chris Lattner24793662009-03-05 22:45:59 +0000558 }
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000559
560 if (!Member) return LastInGroup;
561
Douglas Gregor10bd3682008-11-17 22:58:34 +0000562 assert((Name || isInstField) && "No identifier for non-field ?");
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000563
564 // set/getAccess is not part of Decl's interface to avoid bloating it with C++
565 // specific methods. Use a wrapper class that can be used with all C++ class
566 // member decls.
567 CXXClassMemberWrapper(Member).setAccess(AS);
568
Douglas Gregor64bffa92008-11-05 16:20:31 +0000569 // C++ [dcl.init.aggr]p1:
570 // An aggregate is an array or a class (clause 9) with [...] no
571 // private or protected non-static data members (clause 11).
Sebastian Redl64b45f72009-01-05 20:52:13 +0000572 // A POD must be an aggregate.
573 if (isInstField && (AS == AS_private || AS == AS_protected)) {
574 CXXRecordDecl *Record = cast<CXXRecordDecl>(CurContext);
575 Record->setAggregate(false);
576 Record->setPOD(false);
577 }
Douglas Gregor64bffa92008-11-05 16:20:31 +0000578
Sebastian Redld93f0dd2008-11-06 15:59:35 +0000579 if (DS.isVirtualSpecified()) {
580 if (!isFunc || DS.getStorageClassSpec() == DeclSpec::SCS_static) {
581 Diag(DS.getVirtualSpecLoc(), diag::err_virtual_non_function);
582 InvalidDecl = true;
583 } else {
Sebastian Redl9ba73ad2009-01-09 19:57:06 +0000584 cast<CXXMethodDecl>(Member)->setVirtual();
Sebastian Redld93f0dd2008-11-06 15:59:35 +0000585 CXXRecordDecl *CurClass = cast<CXXRecordDecl>(CurContext);
586 CurClass->setAggregate(false);
Sebastian Redl64b45f72009-01-05 20:52:13 +0000587 CurClass->setPOD(false);
Sebastian Redld93f0dd2008-11-06 15:59:35 +0000588 CurClass->setPolymorphic(true);
589 }
590 }
Douglas Gregor64bffa92008-11-05 16:20:31 +0000591
Sebastian Redl9ba73ad2009-01-09 19:57:06 +0000592 // FIXME: The above definition of virtual is not sufficient. A function is
593 // also virtual if it overrides an already virtual function. This is important
594 // to do here because it decides the validity of a pure specifier.
595
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000596 if (BitWidth) {
597 // C++ 9.6p2: Only when declaring an unnamed bit-field may the
598 // constant-expression be a value equal to zero.
599 // FIXME: Check this.
600
601 if (D.isFunctionDeclarator()) {
602 // FIXME: Emit diagnostic about only constructors taking base initializers
603 // or something similar, when constructor support is in place.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000604 Diag(Loc, diag::err_not_bitfield_type)
Anders Carlssona75023d2008-12-06 20:05:35 +0000605 << Name << BitWidth->getSourceRange();
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000606 InvalidDecl = true;
607
Argyrios Kyrtzidisde933f02008-10-08 22:20:31 +0000608 } else if (isInstField) {
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000609 // C++ 9.6p3: A bit-field shall have integral or enumeration type.
Argyrios Kyrtzidisde933f02008-10-08 22:20:31 +0000610 if (!cast<FieldDecl>(Member)->getType()->isIntegralType()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000611 Diag(Loc, diag::err_not_integral_type_bitfield)
Anders Carlssona75023d2008-12-06 20:05:35 +0000612 << Name << BitWidth->getSourceRange();
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000613 InvalidDecl = true;
614 }
615
Argyrios Kyrtzidisde933f02008-10-08 22:20:31 +0000616 } else if (isa<FunctionDecl>(Member)) {
617 // A function typedef ("typedef int f(); f a;").
618 // C++ 9.6p3: A bit-field shall have integral or enumeration type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000619 Diag(Loc, diag::err_not_integral_type_bitfield)
Anders Carlssona75023d2008-12-06 20:05:35 +0000620 << Name << BitWidth->getSourceRange();
Argyrios Kyrtzidisde933f02008-10-08 22:20:31 +0000621 InvalidDecl = true;
622
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000623 } else if (isa<TypedefDecl>(Member)) {
624 // "cannot declare 'A' to be a bit-field type"
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000625 Diag(Loc, diag::err_not_bitfield_type)
Anders Carlssona75023d2008-12-06 20:05:35 +0000626 << Name << BitWidth->getSourceRange();
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000627 InvalidDecl = true;
628
629 } else {
630 assert(isa<CXXClassVarDecl>(Member) &&
631 "Didn't we cover all member kinds?");
632 // C++ 9.6p3: A bit-field shall not be a static member.
633 // "static member 'A' cannot be a bit-field"
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000634 Diag(Loc, diag::err_static_not_bitfield)
Anders Carlssona75023d2008-12-06 20:05:35 +0000635 << Name << BitWidth->getSourceRange();
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000636 InvalidDecl = true;
637 }
638 }
639
640 if (Init) {
641 // C++ 9.2p4: A member-declarator can contain a constant-initializer only
642 // if it declares a static member of const integral or const enumeration
643 // type.
Chris Lattnerb77792e2008-07-26 22:17:49 +0000644 if (CXXClassVarDecl *CVD = dyn_cast<CXXClassVarDecl>(Member)) {
645 // ...static member of...
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000646 CVD->setInit(Init);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000647 // ...const integral or const enumeration type.
Chris Lattnerb77792e2008-07-26 22:17:49 +0000648 if (Context.getCanonicalType(CVD->getType()).isConstQualified() &&
649 CVD->getType()->isIntegralType()) {
650 // constant-initializer
651 if (CheckForConstantInitializer(Init, CVD->getType()))
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000652 InvalidDecl = true;
653
654 } else {
655 // not const integral.
Chris Lattnerd3a94e22008-11-20 06:06:08 +0000656 Diag(Loc, diag::err_member_initialization)
Anders Carlssona75023d2008-12-06 20:05:35 +0000657 << Name << Init->getSourceRange();
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000658 InvalidDecl = true;
659 }
660
661 } else {
Sebastian Redl9ba73ad2009-01-09 19:57:06 +0000662 // not static member. perhaps virtual function?
663 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Member)) {
Sebastian Redlc9b580a2009-01-09 22:29:03 +0000664 // With declarators parsed the way they are, the parser cannot
665 // distinguish between a normal initializer and a pure-specifier.
666 // Thus this grotesque test.
Sebastian Redl9ba73ad2009-01-09 19:57:06 +0000667 IntegerLiteral *IL;
668 if ((IL = dyn_cast<IntegerLiteral>(Init)) && IL->getValue() == 0 &&
669 Context.getCanonicalType(IL->getType()) == Context.IntTy) {
670 if (MD->isVirtual())
671 MD->setPure();
672 else {
673 Diag(Loc, diag::err_non_virtual_pure)
674 << Name << Init->getSourceRange();
675 InvalidDecl = true;
676 }
677 } else {
678 Diag(Loc, diag::err_member_function_initialization)
679 << Name << Init->getSourceRange();
680 InvalidDecl = true;
681 }
682 } else {
683 Diag(Loc, diag::err_member_initialization)
684 << Name << Init->getSourceRange();
685 InvalidDecl = true;
686 }
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000687 }
688 }
689
690 if (InvalidDecl)
691 Member->setInvalidDecl();
692
693 if (isInstField) {
Douglas Gregor44b43212008-12-11 16:49:14 +0000694 FieldCollector->Add(cast<FieldDecl>(Member));
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000695 return LastInGroup;
696 }
697 return Member;
698}
699
Douglas Gregor7ad83902008-11-05 04:29:56 +0000700/// ActOnMemInitializer - Handle a C++ member initializer.
701Sema::MemInitResult
702Sema::ActOnMemInitializer(DeclTy *ConstructorD,
703 Scope *S,
704 IdentifierInfo *MemberOrBase,
705 SourceLocation IdLoc,
706 SourceLocation LParenLoc,
707 ExprTy **Args, unsigned NumArgs,
708 SourceLocation *CommaLocs,
709 SourceLocation RParenLoc) {
710 CXXConstructorDecl *Constructor
711 = dyn_cast<CXXConstructorDecl>((Decl*)ConstructorD);
712 if (!Constructor) {
713 // The user wrote a constructor initializer on a function that is
714 // not a C++ constructor. Ignore the error for now, because we may
715 // have more member initializers coming; we'll diagnose it just
716 // once in ActOnMemInitializers.
717 return true;
718 }
719
720 CXXRecordDecl *ClassDecl = Constructor->getParent();
721
722 // C++ [class.base.init]p2:
723 // Names in a mem-initializer-id are looked up in the scope of the
724 // constructor’s class and, if not found in that scope, are looked
725 // up in the scope containing the constructor’s
726 // definition. [Note: if the constructor’s class contains a member
727 // with the same name as a direct or virtual base class of the
728 // class, a mem-initializer-id naming the member or base class and
729 // composed of a single identifier refers to the class member. A
730 // mem-initializer-id for the hidden base class may be specified
731 // using a qualified name. ]
732 // Look for a member, first.
Douglas Gregor44b43212008-12-11 16:49:14 +0000733 FieldDecl *Member = 0;
Steve Naroff0701bbb2009-01-08 17:28:14 +0000734 DeclContext::lookup_result Result = ClassDecl->lookup(MemberOrBase);
Douglas Gregor44b43212008-12-11 16:49:14 +0000735 if (Result.first != Result.second)
736 Member = dyn_cast<FieldDecl>(*Result.first);
Douglas Gregor7ad83902008-11-05 04:29:56 +0000737
738 // FIXME: Handle members of an anonymous union.
739
740 if (Member) {
741 // FIXME: Perform direct initialization of the member.
742 return new CXXBaseOrMemberInitializer(Member, (Expr **)Args, NumArgs);
743 }
744
745 // It didn't name a member, so see if it names a class.
Douglas Gregorb696ea32009-02-04 17:00:24 +0000746 TypeTy *BaseTy = getTypeName(*MemberOrBase, IdLoc, S, 0/*SS*/);
Douglas Gregor7ad83902008-11-05 04:29:56 +0000747 if (!BaseTy)
Chris Lattner3c73c412008-11-19 08:23:25 +0000748 return Diag(IdLoc, diag::err_mem_init_not_member_or_class)
749 << MemberOrBase << SourceRange(IdLoc, RParenLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +0000750
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000751 QualType BaseType = QualType::getFromOpaquePtr(BaseTy);
Douglas Gregor7ad83902008-11-05 04:29:56 +0000752 if (!BaseType->isRecordType())
Chris Lattner3c73c412008-11-19 08:23:25 +0000753 return Diag(IdLoc, diag::err_base_init_does_not_name_class)
Chris Lattner08631c52008-11-23 21:45:46 +0000754 << BaseType << SourceRange(IdLoc, RParenLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +0000755
756 // C++ [class.base.init]p2:
757 // [...] Unless the mem-initializer-id names a nonstatic data
758 // member of the constructor’s class or a direct or virtual base
759 // of that class, the mem-initializer is ill-formed. A
760 // mem-initializer-list can initialize a base class using any
761 // name that denotes that base class type.
762
763 // First, check for a direct base class.
764 const CXXBaseSpecifier *DirectBaseSpec = 0;
765 for (CXXRecordDecl::base_class_const_iterator Base = ClassDecl->bases_begin();
766 Base != ClassDecl->bases_end(); ++Base) {
767 if (Context.getCanonicalType(BaseType).getUnqualifiedType() ==
768 Context.getCanonicalType(Base->getType()).getUnqualifiedType()) {
769 // We found a direct base of this type. That's what we're
770 // initializing.
771 DirectBaseSpec = &*Base;
772 break;
773 }
774 }
775
776 // Check for a virtual base class.
777 // FIXME: We might be able to short-circuit this if we know in
778 // advance that there are no virtual bases.
779 const CXXBaseSpecifier *VirtualBaseSpec = 0;
780 if (!DirectBaseSpec || !DirectBaseSpec->isVirtual()) {
781 // We haven't found a base yet; search the class hierarchy for a
782 // virtual base class.
783 BasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
784 /*DetectVirtual=*/false);
785 if (IsDerivedFrom(Context.getTypeDeclType(ClassDecl), BaseType, Paths)) {
786 for (BasePaths::paths_iterator Path = Paths.begin();
787 Path != Paths.end(); ++Path) {
788 if (Path->back().Base->isVirtual()) {
789 VirtualBaseSpec = Path->back().Base;
790 break;
791 }
792 }
793 }
794 }
795
796 // C++ [base.class.init]p2:
797 // If a mem-initializer-id is ambiguous because it designates both
798 // a direct non-virtual base class and an inherited virtual base
799 // class, the mem-initializer is ill-formed.
800 if (DirectBaseSpec && VirtualBaseSpec)
Chris Lattner3c73c412008-11-19 08:23:25 +0000801 return Diag(IdLoc, diag::err_base_init_direct_and_virtual)
802 << MemberOrBase << SourceRange(IdLoc, RParenLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +0000803
804 return new CXXBaseOrMemberInitializer(BaseType, (Expr **)Args, NumArgs);
805}
806
807
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000808void Sema::ActOnFinishCXXMemberSpecification(Scope* S, SourceLocation RLoc,
809 DeclTy *TagDecl,
810 SourceLocation LBrac,
811 SourceLocation RBrac) {
Douglas Gregor2943aed2009-03-03 04:44:36 +0000812 TemplateDecl *Template = AdjustDeclIfTemplate(TagDecl);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000813 ActOnFields(S, RLoc, TagDecl,
814 (DeclTy**)FieldCollector->getCurFields(),
Daniel Dunbar1bfe1c22008-10-03 02:03:53 +0000815 FieldCollector->getCurNumFields(), LBrac, RBrac, 0);
Douglas Gregor2943aed2009-03-03 04:44:36 +0000816
817 if (!Template)
818 AddImplicitlyDeclaredMembersToClass(cast<CXXRecordDecl>((Decl*)TagDecl));
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000819}
820
Douglas Gregor396b7cd2008-11-03 17:51:48 +0000821/// AddImplicitlyDeclaredMembersToClass - Adds any implicitly-declared
822/// special functions, such as the default constructor, copy
823/// constructor, or destructor, to the given C++ class (C++
824/// [special]p1). This routine can only be executed just before the
825/// definition of the class is complete.
826void Sema::AddImplicitlyDeclaredMembersToClass(CXXRecordDecl *ClassDecl) {
Douglas Gregor2e1cd422008-11-17 14:58:09 +0000827 QualType ClassType = Context.getTypeDeclType(ClassDecl);
828 ClassType = Context.getCanonicalType(ClassType);
829
Douglas Gregor396b7cd2008-11-03 17:51:48 +0000830 if (!ClassDecl->hasUserDeclaredConstructor()) {
831 // C++ [class.ctor]p5:
832 // A default constructor for a class X is a constructor of class X
833 // that can be called without an argument. If there is no
834 // user-declared constructor for class X, a default constructor is
835 // implicitly declared. An implicitly-declared default constructor
836 // is an inline public member of its class.
Douglas Gregor2e1cd422008-11-17 14:58:09 +0000837 DeclarationName Name
838 = Context.DeclarationNames.getCXXConstructorName(ClassType);
Douglas Gregor396b7cd2008-11-03 17:51:48 +0000839 CXXConstructorDecl *DefaultCon =
840 CXXConstructorDecl::Create(Context, ClassDecl,
Douglas Gregor2e1cd422008-11-17 14:58:09 +0000841 ClassDecl->getLocation(), Name,
Douglas Gregor396b7cd2008-11-03 17:51:48 +0000842 Context.getFunctionType(Context.VoidTy,
843 0, 0, false, 0),
844 /*isExplicit=*/false,
845 /*isInline=*/true,
846 /*isImplicitlyDeclared=*/true);
847 DefaultCon->setAccess(AS_public);
Douglas Gregor6b3945f2009-01-07 19:46:03 +0000848 DefaultCon->setImplicit();
Douglas Gregor482b77d2009-01-12 23:27:07 +0000849 ClassDecl->addDecl(DefaultCon);
Douglas Gregor9e7d9de2008-12-15 21:24:18 +0000850
851 // Notify the class that we've added a constructor.
852 ClassDecl->addedConstructor(Context, DefaultCon);
Douglas Gregor396b7cd2008-11-03 17:51:48 +0000853 }
854
855 if (!ClassDecl->hasUserDeclaredCopyConstructor()) {
856 // C++ [class.copy]p4:
857 // If the class definition does not explicitly declare a copy
858 // constructor, one is declared implicitly.
859
860 // C++ [class.copy]p5:
861 // The implicitly-declared copy constructor for a class X will
862 // have the form
863 //
864 // X::X(const X&)
865 //
866 // if
867 bool HasConstCopyConstructor = true;
868
869 // -- each direct or virtual base class B of X has a copy
870 // constructor whose first parameter is of type const B& or
871 // const volatile B&, and
872 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin();
873 HasConstCopyConstructor && Base != ClassDecl->bases_end(); ++Base) {
874 const CXXRecordDecl *BaseClassDecl
875 = cast<CXXRecordDecl>(Base->getType()->getAsRecordType()->getDecl());
876 HasConstCopyConstructor
877 = BaseClassDecl->hasConstCopyConstructor(Context);
878 }
879
880 // -- for all the nonstatic data members of X that are of a
881 // class type M (or array thereof), each such class type
882 // has a copy constructor whose first parameter is of type
883 // const M& or const volatile M&.
884 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin();
885 HasConstCopyConstructor && Field != ClassDecl->field_end(); ++Field) {
886 QualType FieldType = (*Field)->getType();
887 if (const ArrayType *Array = Context.getAsArrayType(FieldType))
888 FieldType = Array->getElementType();
889 if (const RecordType *FieldClassType = FieldType->getAsRecordType()) {
890 const CXXRecordDecl *FieldClassDecl
891 = cast<CXXRecordDecl>(FieldClassType->getDecl());
892 HasConstCopyConstructor
893 = FieldClassDecl->hasConstCopyConstructor(Context);
894 }
895 }
896
Sebastian Redl64b45f72009-01-05 20:52:13 +0000897 // Otherwise, the implicitly declared copy constructor will have
898 // the form
Douglas Gregor396b7cd2008-11-03 17:51:48 +0000899 //
900 // X::X(X&)
Sebastian Redl64b45f72009-01-05 20:52:13 +0000901 QualType ArgType = ClassType;
Douglas Gregor396b7cd2008-11-03 17:51:48 +0000902 if (HasConstCopyConstructor)
903 ArgType = ArgType.withConst();
904 ArgType = Context.getReferenceType(ArgType);
905
Sebastian Redl64b45f72009-01-05 20:52:13 +0000906 // An implicitly-declared copy constructor is an inline public
907 // member of its class.
Douglas Gregor2e1cd422008-11-17 14:58:09 +0000908 DeclarationName Name
909 = Context.DeclarationNames.getCXXConstructorName(ClassType);
Douglas Gregor396b7cd2008-11-03 17:51:48 +0000910 CXXConstructorDecl *CopyConstructor
911 = CXXConstructorDecl::Create(Context, ClassDecl,
Douglas Gregor2e1cd422008-11-17 14:58:09 +0000912 ClassDecl->getLocation(), Name,
Douglas Gregor396b7cd2008-11-03 17:51:48 +0000913 Context.getFunctionType(Context.VoidTy,
914 &ArgType, 1,
915 false, 0),
916 /*isExplicit=*/false,
917 /*isInline=*/true,
918 /*isImplicitlyDeclared=*/true);
919 CopyConstructor->setAccess(AS_public);
Douglas Gregor6b3945f2009-01-07 19:46:03 +0000920 CopyConstructor->setImplicit();
Douglas Gregor396b7cd2008-11-03 17:51:48 +0000921
922 // Add the parameter to the constructor.
923 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyConstructor,
924 ClassDecl->getLocation(),
925 /*IdentifierInfo=*/0,
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000926 ArgType, VarDecl::None, 0);
Ted Kremenekfc767612009-01-14 00:42:25 +0000927 CopyConstructor->setParams(Context, &FromParam, 1);
Douglas Gregor396b7cd2008-11-03 17:51:48 +0000928
Douglas Gregor9e7d9de2008-12-15 21:24:18 +0000929 ClassDecl->addedConstructor(Context, CopyConstructor);
Douglas Gregor482b77d2009-01-12 23:27:07 +0000930 ClassDecl->addDecl(CopyConstructor);
Douglas Gregor396b7cd2008-11-03 17:51:48 +0000931 }
932
Sebastian Redl64b45f72009-01-05 20:52:13 +0000933 if (!ClassDecl->hasUserDeclaredCopyAssignment()) {
934 // Note: The following rules are largely analoguous to the copy
935 // constructor rules. Note that virtual bases are not taken into account
936 // for determining the argument type of the operator. Note also that
937 // operators taking an object instead of a reference are allowed.
938 //
939 // C++ [class.copy]p10:
940 // If the class definition does not explicitly declare a copy
941 // assignment operator, one is declared implicitly.
942 // The implicitly-defined copy assignment operator for a class X
943 // will have the form
944 //
945 // X& X::operator=(const X&)
946 //
947 // if
948 bool HasConstCopyAssignment = true;
949
950 // -- each direct base class B of X has a copy assignment operator
951 // whose parameter is of type const B&, const volatile B& or B,
952 // and
953 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin();
954 HasConstCopyAssignment && Base != ClassDecl->bases_end(); ++Base) {
955 const CXXRecordDecl *BaseClassDecl
956 = cast<CXXRecordDecl>(Base->getType()->getAsRecordType()->getDecl());
957 HasConstCopyAssignment = BaseClassDecl->hasConstCopyAssignment(Context);
958 }
959
960 // -- for all the nonstatic data members of X that are of a class
961 // type M (or array thereof), each such class type has a copy
962 // assignment operator whose parameter is of type const M&,
963 // const volatile M& or M.
964 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin();
965 HasConstCopyAssignment && Field != ClassDecl->field_end(); ++Field) {
966 QualType FieldType = (*Field)->getType();
967 if (const ArrayType *Array = Context.getAsArrayType(FieldType))
968 FieldType = Array->getElementType();
969 if (const RecordType *FieldClassType = FieldType->getAsRecordType()) {
970 const CXXRecordDecl *FieldClassDecl
971 = cast<CXXRecordDecl>(FieldClassType->getDecl());
972 HasConstCopyAssignment
973 = FieldClassDecl->hasConstCopyAssignment(Context);
974 }
975 }
976
977 // Otherwise, the implicitly declared copy assignment operator will
978 // have the form
979 //
980 // X& X::operator=(X&)
981 QualType ArgType = ClassType;
982 QualType RetType = Context.getReferenceType(ArgType);
983 if (HasConstCopyAssignment)
984 ArgType = ArgType.withConst();
985 ArgType = Context.getReferenceType(ArgType);
986
987 // An implicitly-declared copy assignment operator is an inline public
988 // member of its class.
989 DeclarationName Name =
990 Context.DeclarationNames.getCXXOperatorName(OO_Equal);
991 CXXMethodDecl *CopyAssignment =
992 CXXMethodDecl::Create(Context, ClassDecl, ClassDecl->getLocation(), Name,
993 Context.getFunctionType(RetType, &ArgType, 1,
994 false, 0),
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000995 /*isStatic=*/false, /*isInline=*/true);
Sebastian Redl64b45f72009-01-05 20:52:13 +0000996 CopyAssignment->setAccess(AS_public);
Douglas Gregor6b3945f2009-01-07 19:46:03 +0000997 CopyAssignment->setImplicit();
Sebastian Redl64b45f72009-01-05 20:52:13 +0000998
999 // Add the parameter to the operator.
1000 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyAssignment,
1001 ClassDecl->getLocation(),
1002 /*IdentifierInfo=*/0,
Douglas Gregor4afa39d2009-01-20 01:17:11 +00001003 ArgType, VarDecl::None, 0);
Ted Kremenekfc767612009-01-14 00:42:25 +00001004 CopyAssignment->setParams(Context, &FromParam, 1);
Sebastian Redl64b45f72009-01-05 20:52:13 +00001005
1006 // Don't call addedAssignmentOperator. There is no way to distinguish an
1007 // implicit from an explicit assignment operator.
Douglas Gregor482b77d2009-01-12 23:27:07 +00001008 ClassDecl->addDecl(CopyAssignment);
Sebastian Redl64b45f72009-01-05 20:52:13 +00001009 }
1010
Douglas Gregor9e7d9de2008-12-15 21:24:18 +00001011 if (!ClassDecl->hasUserDeclaredDestructor()) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00001012 // C++ [class.dtor]p2:
1013 // If a class has no user-declared destructor, a destructor is
1014 // declared implicitly. An implicitly-declared destructor is an
1015 // inline public member of its class.
Douglas Gregor2e1cd422008-11-17 14:58:09 +00001016 DeclarationName Name
1017 = Context.DeclarationNames.getCXXDestructorName(ClassType);
Douglas Gregor42a552f2008-11-05 20:51:48 +00001018 CXXDestructorDecl *Destructor
1019 = CXXDestructorDecl::Create(Context, ClassDecl,
Douglas Gregor2e1cd422008-11-17 14:58:09 +00001020 ClassDecl->getLocation(), Name,
Douglas Gregor42a552f2008-11-05 20:51:48 +00001021 Context.getFunctionType(Context.VoidTy,
1022 0, 0, false, 0),
1023 /*isInline=*/true,
1024 /*isImplicitlyDeclared=*/true);
1025 Destructor->setAccess(AS_public);
Douglas Gregor6b3945f2009-01-07 19:46:03 +00001026 Destructor->setImplicit();
Douglas Gregor482b77d2009-01-12 23:27:07 +00001027 ClassDecl->addDecl(Destructor);
Douglas Gregor42a552f2008-11-05 20:51:48 +00001028 }
Douglas Gregor396b7cd2008-11-03 17:51:48 +00001029}
1030
Douglas Gregor72b505b2008-12-16 21:30:33 +00001031/// ActOnStartDelayedCXXMethodDeclaration - We have completed
1032/// parsing a top-level (non-nested) C++ class, and we are now
1033/// parsing those parts of the given Method declaration that could
1034/// not be parsed earlier (C++ [class.mem]p2), such as default
1035/// arguments. This action should enter the scope of the given
1036/// Method declaration as if we had just parsed the qualified method
1037/// name. However, it should not bring the parameters into scope;
1038/// that will be performed by ActOnDelayedCXXMethodParameter.
1039void Sema::ActOnStartDelayedCXXMethodDeclaration(Scope *S, DeclTy *Method) {
1040 CXXScopeSpec SS;
1041 SS.setScopeRep(((FunctionDecl*)Method)->getDeclContext());
1042 ActOnCXXEnterDeclaratorScope(S, SS);
1043}
1044
1045/// ActOnDelayedCXXMethodParameter - We've already started a delayed
1046/// C++ method declaration. We're (re-)introducing the given
1047/// function parameter into scope for use in parsing later parts of
1048/// the method declaration. For example, we could see an
1049/// ActOnParamDefaultArgument event for this parameter.
1050void Sema::ActOnDelayedCXXMethodParameter(Scope *S, DeclTy *ParamD) {
1051 ParmVarDecl *Param = (ParmVarDecl*)ParamD;
Douglas Gregor61366e92008-12-24 00:01:03 +00001052
1053 // If this parameter has an unparsed default argument, clear it out
1054 // to make way for the parsed default argument.
1055 if (Param->hasUnparsedDefaultArg())
1056 Param->setDefaultArg(0);
1057
Douglas Gregor72b505b2008-12-16 21:30:33 +00001058 S->AddDecl(Param);
1059 if (Param->getDeclName())
1060 IdResolver.AddDecl(Param);
1061}
1062
1063/// ActOnFinishDelayedCXXMethodDeclaration - We have finished
1064/// processing the delayed method declaration for Method. The method
1065/// declaration is now considered finished. There may be a separate
1066/// ActOnStartOfFunctionDef action later (not necessarily
1067/// immediately!) for this method, if it was also defined inside the
1068/// class body.
1069void Sema::ActOnFinishDelayedCXXMethodDeclaration(Scope *S, DeclTy *MethodD) {
1070 FunctionDecl *Method = (FunctionDecl*)MethodD;
1071 CXXScopeSpec SS;
1072 SS.setScopeRep(Method->getDeclContext());
1073 ActOnCXXExitDeclaratorScope(S, SS);
1074
1075 // Now that we have our default arguments, check the constructor
1076 // again. It could produce additional diagnostics or affect whether
1077 // the class has implicitly-declared destructors, among other
1078 // things.
1079 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Method)) {
1080 if (CheckConstructor(Constructor))
1081 Constructor->setInvalidDecl();
1082 }
1083
1084 // Check the default arguments, which we may have added.
1085 if (!Method->isInvalidDecl())
1086 CheckCXXDefaultArguments(Method);
1087}
1088
Douglas Gregor42a552f2008-11-05 20:51:48 +00001089/// CheckConstructorDeclarator - Called by ActOnDeclarator to check
Douglas Gregor72b505b2008-12-16 21:30:33 +00001090/// the well-formedness of the constructor declarator @p D with type @p
Douglas Gregor42a552f2008-11-05 20:51:48 +00001091/// R. If there are any errors in the declarator, this routine will
1092/// emit diagnostics and return true. Otherwise, it will return
1093/// false. Either way, the type @p R will be updated to reflect a
1094/// well-formed type for the constructor.
1095bool Sema::CheckConstructorDeclarator(Declarator &D, QualType &R,
1096 FunctionDecl::StorageClass& SC) {
1097 bool isVirtual = D.getDeclSpec().isVirtualSpecified();
1098 bool isInvalid = false;
1099
1100 // C++ [class.ctor]p3:
1101 // A constructor shall not be virtual (10.3) or static (9.4). A
1102 // constructor can be invoked for a const, volatile or const
1103 // volatile object. A constructor shall not be declared const,
1104 // volatile, or const volatile (9.3.2).
1105 if (isVirtual) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001106 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
1107 << "virtual" << SourceRange(D.getDeclSpec().getVirtualSpecLoc())
1108 << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +00001109 isInvalid = true;
1110 }
1111 if (SC == FunctionDecl::Static) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001112 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
1113 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
1114 << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +00001115 isInvalid = true;
1116 SC = FunctionDecl::None;
1117 }
1118 if (D.getDeclSpec().hasTypeSpecifier()) {
1119 // Constructors don't have return types, but the parser will
1120 // happily parse something like:
1121 //
1122 // class X {
1123 // float X(float);
1124 // };
1125 //
1126 // The return type will be eliminated later.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001127 Diag(D.getIdentifierLoc(), diag::err_constructor_return_type)
1128 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
1129 << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +00001130 }
Douglas Gregor72564e72009-02-26 23:50:07 +00001131 if (R->getAsFunctionProtoType()->getTypeQuals() != 0) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00001132 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
1133 if (FTI.TypeQuals & QualType::Const)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001134 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
1135 << "const" << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +00001136 if (FTI.TypeQuals & QualType::Volatile)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001137 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
1138 << "volatile" << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +00001139 if (FTI.TypeQuals & QualType::Restrict)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001140 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
1141 << "restrict" << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +00001142 }
1143
1144 // Rebuild the function type "R" without any type qualifiers (in
1145 // case any of the errors above fired) and with "void" as the
1146 // return type, since constructors don't have return types. We
1147 // *always* have to do this, because GetTypeForDeclarator will
1148 // put in a result type of "int" when none was specified.
Douglas Gregor72564e72009-02-26 23:50:07 +00001149 const FunctionProtoType *Proto = R->getAsFunctionProtoType();
Douglas Gregor42a552f2008-11-05 20:51:48 +00001150 R = Context.getFunctionType(Context.VoidTy, Proto->arg_type_begin(),
1151 Proto->getNumArgs(),
1152 Proto->isVariadic(),
1153 0);
1154
1155 return isInvalid;
1156}
1157
Douglas Gregor72b505b2008-12-16 21:30:33 +00001158/// CheckConstructor - Checks a fully-formed constructor for
1159/// well-formedness, issuing any diagnostics required. Returns true if
1160/// the constructor declarator is invalid.
1161bool Sema::CheckConstructor(CXXConstructorDecl *Constructor) {
1162 if (Constructor->isInvalidDecl())
1163 return true;
1164
1165 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Constructor->getDeclContext());
1166 bool Invalid = false;
1167
1168 // C++ [class.copy]p3:
1169 // A declaration of a constructor for a class X is ill-formed if
1170 // its first parameter is of type (optionally cv-qualified) X and
1171 // either there are no other parameters or else all other
1172 // parameters have default arguments.
1173 if ((Constructor->getNumParams() == 1) ||
1174 (Constructor->getNumParams() > 1 &&
1175 Constructor->getParamDecl(1)->getDefaultArg() != 0)) {
1176 QualType ParamType = Constructor->getParamDecl(0)->getType();
1177 QualType ClassTy = Context.getTagDeclType(ClassDecl);
1178 if (Context.getCanonicalType(ParamType).getUnqualifiedType() == ClassTy) {
1179 Diag(Constructor->getLocation(), diag::err_constructor_byvalue_arg)
1180 << SourceRange(Constructor->getParamDecl(0)->getLocation());
1181 Invalid = true;
1182 }
1183 }
1184
1185 // Notify the class that we've added a constructor.
1186 ClassDecl->addedConstructor(Context, Constructor);
1187
1188 return Invalid;
1189}
1190
Douglas Gregor42a552f2008-11-05 20:51:48 +00001191/// CheckDestructorDeclarator - Called by ActOnDeclarator to check
1192/// the well-formednes of the destructor declarator @p D with type @p
1193/// R. If there are any errors in the declarator, this routine will
1194/// emit diagnostics and return true. Otherwise, it will return
1195/// false. Either way, the type @p R will be updated to reflect a
1196/// well-formed type for the destructor.
1197bool Sema::CheckDestructorDeclarator(Declarator &D, QualType &R,
1198 FunctionDecl::StorageClass& SC) {
1199 bool isInvalid = false;
1200
1201 // C++ [class.dtor]p1:
1202 // [...] A typedef-name that names a class is a class-name
1203 // (7.1.3); however, a typedef-name that names a class shall not
1204 // be used as the identifier in the declarator for a destructor
1205 // declaration.
Douglas Gregor1a51b4a2009-02-09 15:09:02 +00001206 QualType DeclaratorType = QualType::getFromOpaquePtr(D.getDeclaratorIdType());
1207 if (DeclaratorType->getAsTypedefType()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001208 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
Douglas Gregor1a51b4a2009-02-09 15:09:02 +00001209 << DeclaratorType;
Douglas Gregor55c60952008-11-10 14:41:22 +00001210 isInvalid = true;
Douglas Gregor42a552f2008-11-05 20:51:48 +00001211 }
1212
1213 // C++ [class.dtor]p2:
1214 // A destructor is used to destroy objects of its class type. A
1215 // destructor takes no parameters, and no return type can be
1216 // specified for it (not even void). The address of a destructor
1217 // shall not be taken. A destructor shall not be static. A
1218 // destructor can be invoked for a const, volatile or const
1219 // volatile object. A destructor shall not be declared const,
1220 // volatile or const volatile (9.3.2).
1221 if (SC == FunctionDecl::Static) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001222 Diag(D.getIdentifierLoc(), diag::err_destructor_cannot_be)
1223 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
1224 << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +00001225 isInvalid = true;
1226 SC = FunctionDecl::None;
1227 }
1228 if (D.getDeclSpec().hasTypeSpecifier()) {
1229 // Destructors don't have return types, but the parser will
1230 // happily parse something like:
1231 //
1232 // class X {
1233 // float ~X();
1234 // };
1235 //
1236 // The return type will be eliminated later.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001237 Diag(D.getIdentifierLoc(), diag::err_destructor_return_type)
1238 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
1239 << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +00001240 }
Douglas Gregor72564e72009-02-26 23:50:07 +00001241 if (R->getAsFunctionProtoType()->getTypeQuals() != 0) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00001242 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
1243 if (FTI.TypeQuals & QualType::Const)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001244 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
1245 << "const" << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +00001246 if (FTI.TypeQuals & QualType::Volatile)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001247 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
1248 << "volatile" << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +00001249 if (FTI.TypeQuals & QualType::Restrict)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001250 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
1251 << "restrict" << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +00001252 }
1253
1254 // Make sure we don't have any parameters.
Douglas Gregor72564e72009-02-26 23:50:07 +00001255 if (R->getAsFunctionProtoType()->getNumArgs() > 0) {
Douglas Gregor42a552f2008-11-05 20:51:48 +00001256 Diag(D.getIdentifierLoc(), diag::err_destructor_with_params);
1257
1258 // Delete the parameters.
Chris Lattner1833a832009-01-20 21:06:38 +00001259 D.getTypeObject(0).Fun.freeArgs();
Douglas Gregor42a552f2008-11-05 20:51:48 +00001260 }
1261
1262 // Make sure the destructor isn't variadic.
Douglas Gregor72564e72009-02-26 23:50:07 +00001263 if (R->getAsFunctionProtoType()->isVariadic())
Douglas Gregor42a552f2008-11-05 20:51:48 +00001264 Diag(D.getIdentifierLoc(), diag::err_destructor_variadic);
1265
1266 // Rebuild the function type "R" without any type qualifiers or
1267 // parameters (in case any of the errors above fired) and with
1268 // "void" as the return type, since destructors don't have return
1269 // types. We *always* have to do this, because GetTypeForDeclarator
1270 // will put in a result type of "int" when none was specified.
1271 R = Context.getFunctionType(Context.VoidTy, 0, 0, false, 0);
1272
1273 return isInvalid;
1274}
1275
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001276/// CheckConversionDeclarator - Called by ActOnDeclarator to check the
1277/// well-formednes of the conversion function declarator @p D with
1278/// type @p R. If there are any errors in the declarator, this routine
1279/// will emit diagnostics and return true. Otherwise, it will return
1280/// false. Either way, the type @p R will be updated to reflect a
1281/// well-formed type for the conversion operator.
1282bool Sema::CheckConversionDeclarator(Declarator &D, QualType &R,
1283 FunctionDecl::StorageClass& SC) {
1284 bool isInvalid = false;
1285
1286 // C++ [class.conv.fct]p1:
1287 // Neither parameter types nor return type can be specified. The
1288 // type of a conversion function (8.3.5) is “function taking no
1289 // parameter returning conversion-type-id.”
1290 if (SC == FunctionDecl::Static) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001291 Diag(D.getIdentifierLoc(), diag::err_conv_function_not_member)
1292 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
1293 << SourceRange(D.getIdentifierLoc());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001294 isInvalid = true;
1295 SC = FunctionDecl::None;
1296 }
1297 if (D.getDeclSpec().hasTypeSpecifier()) {
1298 // Conversion functions don't have return types, but the parser will
1299 // happily parse something like:
1300 //
1301 // class X {
1302 // float operator bool();
1303 // };
1304 //
1305 // The return type will be changed later anyway.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001306 Diag(D.getIdentifierLoc(), diag::err_conv_function_return_type)
1307 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
1308 << SourceRange(D.getIdentifierLoc());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001309 }
1310
1311 // Make sure we don't have any parameters.
Douglas Gregor72564e72009-02-26 23:50:07 +00001312 if (R->getAsFunctionProtoType()->getNumArgs() > 0) {
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001313 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_params);
1314
1315 // Delete the parameters.
Chris Lattner1833a832009-01-20 21:06:38 +00001316 D.getTypeObject(0).Fun.freeArgs();
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001317 }
1318
1319 // Make sure the conversion function isn't variadic.
Douglas Gregor72564e72009-02-26 23:50:07 +00001320 if (R->getAsFunctionProtoType()->isVariadic())
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001321 Diag(D.getIdentifierLoc(), diag::err_conv_function_variadic);
1322
1323 // C++ [class.conv.fct]p4:
1324 // The conversion-type-id shall not represent a function type nor
1325 // an array type.
1326 QualType ConvType = QualType::getFromOpaquePtr(D.getDeclaratorIdType());
1327 if (ConvType->isArrayType()) {
1328 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_array);
1329 ConvType = Context.getPointerType(ConvType);
1330 } else if (ConvType->isFunctionType()) {
1331 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_function);
1332 ConvType = Context.getPointerType(ConvType);
1333 }
1334
1335 // Rebuild the function type "R" without any parameters (in case any
1336 // of the errors above fired) and with the conversion type as the
1337 // return type.
1338 R = Context.getFunctionType(ConvType, 0, 0, false,
Douglas Gregor72564e72009-02-26 23:50:07 +00001339 R->getAsFunctionProtoType()->getTypeQuals());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001340
Douglas Gregor09f41cf2009-01-14 15:45:31 +00001341 // C++0x explicit conversion operators.
1342 if (D.getDeclSpec().isExplicitSpecified() && !getLangOptions().CPlusPlus0x)
1343 Diag(D.getDeclSpec().getExplicitSpecLoc(),
1344 diag::warn_explicit_conversion_functions)
1345 << SourceRange(D.getDeclSpec().getExplicitSpecLoc());
1346
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001347 return isInvalid;
1348}
1349
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001350/// ActOnConversionDeclarator - Called by ActOnDeclarator to complete
1351/// the declaration of the given C++ conversion function. This routine
1352/// is responsible for recording the conversion function in the C++
1353/// class, if possible.
1354Sema::DeclTy *Sema::ActOnConversionDeclarator(CXXConversionDecl *Conversion) {
1355 assert(Conversion && "Expected to receive a conversion function declaration");
1356
Douglas Gregor9d350972008-12-12 08:25:50 +00001357 // Set the lexical context of this conversion function
1358 Conversion->setLexicalDeclContext(CurContext);
1359
1360 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Conversion->getDeclContext());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001361
1362 // Make sure we aren't redeclaring the conversion function.
1363 QualType ConvType = Context.getCanonicalType(Conversion->getConversionType());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001364
1365 // C++ [class.conv.fct]p1:
1366 // [...] A conversion function is never used to convert a
1367 // (possibly cv-qualified) object to the (possibly cv-qualified)
1368 // same object type (or a reference to it), to a (possibly
1369 // cv-qualified) base class of that type (or a reference to it),
1370 // or to (possibly cv-qualified) void.
1371 // FIXME: Suppress this warning if the conversion function ends up
1372 // being a virtual function that overrides a virtual function in a
1373 // base class.
1374 QualType ClassType
1375 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
1376 if (const ReferenceType *ConvTypeRef = ConvType->getAsReferenceType())
1377 ConvType = ConvTypeRef->getPointeeType();
1378 if (ConvType->isRecordType()) {
1379 ConvType = Context.getCanonicalType(ConvType).getUnqualifiedType();
1380 if (ConvType == ClassType)
Chris Lattner5dc266a2008-11-20 06:13:02 +00001381 Diag(Conversion->getLocation(), diag::warn_conv_to_self_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00001382 << ClassType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001383 else if (IsDerivedFrom(ClassType, ConvType))
Chris Lattner5dc266a2008-11-20 06:13:02 +00001384 Diag(Conversion->getLocation(), diag::warn_conv_to_base_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00001385 << ClassType << ConvType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001386 } else if (ConvType->isVoidType()) {
Chris Lattner5dc266a2008-11-20 06:13:02 +00001387 Diag(Conversion->getLocation(), diag::warn_conv_to_void_not_used)
Chris Lattnerd1625842008-11-24 06:25:27 +00001388 << ClassType << ConvType;
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001389 }
1390
Douglas Gregor70316a02008-12-26 15:00:45 +00001391 if (Conversion->getPreviousDeclaration()) {
1392 OverloadedFunctionDecl *Conversions = ClassDecl->getConversionFunctions();
1393 for (OverloadedFunctionDecl::function_iterator
1394 Conv = Conversions->function_begin(),
1395 ConvEnd = Conversions->function_end();
1396 Conv != ConvEnd; ++Conv) {
1397 if (*Conv == Conversion->getPreviousDeclaration()) {
1398 *Conv = Conversion;
1399 return (DeclTy *)Conversion;
1400 }
1401 }
1402 assert(Conversion->isInvalidDecl() && "Conversion should not get here.");
1403 } else
1404 ClassDecl->addConversionFunction(Context, Conversion);
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001405
1406 return (DeclTy *)Conversion;
1407}
1408
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00001409//===----------------------------------------------------------------------===//
1410// Namespace Handling
1411//===----------------------------------------------------------------------===//
1412
1413/// ActOnStartNamespaceDef - This is called at the start of a namespace
1414/// definition.
1415Sema::DeclTy *Sema::ActOnStartNamespaceDef(Scope *NamespcScope,
1416 SourceLocation IdentLoc,
1417 IdentifierInfo *II,
1418 SourceLocation LBrace) {
1419 NamespaceDecl *Namespc =
1420 NamespaceDecl::Create(Context, CurContext, IdentLoc, II);
1421 Namespc->setLBracLoc(LBrace);
1422
1423 Scope *DeclRegionScope = NamespcScope->getParent();
1424
1425 if (II) {
1426 // C++ [namespace.def]p2:
1427 // The identifier in an original-namespace-definition shall not have been
1428 // previously defined in the declarative region in which the
1429 // original-namespace-definition appears. The identifier in an
1430 // original-namespace-definition is the name of the namespace. Subsequently
1431 // in that declarative region, it is treated as an original-namespace-name.
1432
Douglas Gregor47b9a1c2009-02-04 17:27:36 +00001433 NamedDecl *PrevDecl = LookupName(DeclRegionScope, II, LookupOrdinaryName,
1434 true);
Douglas Gregor44b43212008-12-11 16:49:14 +00001435
1436 if (NamespaceDecl *OrigNS = dyn_cast_or_null<NamespaceDecl>(PrevDecl)) {
1437 // This is an extended namespace definition.
1438 // Attach this namespace decl to the chain of extended namespace
1439 // definitions.
1440 OrigNS->setNextNamespace(Namespc);
1441 Namespc->setOriginalNamespace(OrigNS->getOriginalNamespace());
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00001442
Douglas Gregor44b43212008-12-11 16:49:14 +00001443 // Remove the previous declaration from the scope.
1444 if (DeclRegionScope->isDeclScope(OrigNS)) {
Douglas Gregore267ff32008-12-11 20:41:00 +00001445 IdResolver.RemoveDecl(OrigNS);
1446 DeclRegionScope->RemoveDecl(OrigNS);
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00001447 }
Douglas Gregor44b43212008-12-11 16:49:14 +00001448 } else if (PrevDecl) {
1449 // This is an invalid name redefinition.
1450 Diag(Namespc->getLocation(), diag::err_redefinition_different_kind)
1451 << Namespc->getDeclName();
1452 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
1453 Namespc->setInvalidDecl();
1454 // Continue on to push Namespc as current DeclContext and return it.
1455 }
1456
1457 PushOnScopeChains(Namespc, DeclRegionScope);
1458 } else {
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00001459 // FIXME: Handle anonymous namespaces
1460 }
1461
1462 // Although we could have an invalid decl (i.e. the namespace name is a
1463 // redefinition), push it as current DeclContext and try to continue parsing.
Douglas Gregor44b43212008-12-11 16:49:14 +00001464 // FIXME: We should be able to push Namespc here, so that the
1465 // each DeclContext for the namespace has the declarations
1466 // that showed up in that particular namespace definition.
1467 PushDeclContext(NamespcScope, Namespc);
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00001468 return Namespc;
1469}
1470
1471/// ActOnFinishNamespaceDef - This callback is called after a namespace is
1472/// exited. Decl is the DeclTy returned by ActOnStartNamespaceDef.
1473void Sema::ActOnFinishNamespaceDef(DeclTy *D, SourceLocation RBrace) {
1474 Decl *Dcl = static_cast<Decl *>(D);
1475 NamespaceDecl *Namespc = dyn_cast_or_null<NamespaceDecl>(Dcl);
1476 assert(Namespc && "Invalid parameter, expected NamespaceDecl");
1477 Namespc->setRBracLoc(RBrace);
1478 PopDeclContext();
1479}
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00001480
Douglas Gregorf780abc2008-12-30 03:27:21 +00001481Sema::DeclTy *Sema::ActOnUsingDirective(Scope *S,
1482 SourceLocation UsingLoc,
1483 SourceLocation NamespcLoc,
1484 const CXXScopeSpec &SS,
1485 SourceLocation IdentLoc,
1486 IdentifierInfo *NamespcName,
1487 AttributeList *AttrList) {
1488 assert(!SS.isInvalid() && "Invalid CXXScopeSpec.");
1489 assert(NamespcName && "Invalid NamespcName.");
1490 assert(IdentLoc.isValid() && "Invalid NamespceName location.");
Douglas Gregor2a3009a2009-02-03 19:21:40 +00001491 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope.");
Douglas Gregorf780abc2008-12-30 03:27:21 +00001492
Douglas Gregor2a3009a2009-02-03 19:21:40 +00001493 UsingDirectiveDecl *UDir = 0;
Douglas Gregorf780abc2008-12-30 03:27:21 +00001494
Douglas Gregoreb11cd02009-01-14 22:20:51 +00001495 // Lookup namespace name.
Douglas Gregor2a3009a2009-02-03 19:21:40 +00001496 LookupResult R = LookupParsedName(S, &SS, NamespcName,
1497 LookupNamespaceName, false);
1498 if (R.isAmbiguous()) {
1499 DiagnoseAmbiguousLookup(R, NamespcName, IdentLoc);
1500 return 0;
1501 }
Douglas Gregor47b9a1c2009-02-04 17:27:36 +00001502 if (NamedDecl *NS = R) {
Douglas Gregorf780abc2008-12-30 03:27:21 +00001503 assert(isa<NamespaceDecl>(NS) && "expected namespace decl");
Douglas Gregor2a3009a2009-02-03 19:21:40 +00001504 // C++ [namespace.udir]p1:
1505 // A using-directive specifies that the names in the nominated
1506 // namespace can be used in the scope in which the
1507 // using-directive appears after the using-directive. During
1508 // unqualified name lookup (3.4.1), the names appear as if they
1509 // were declared in the nearest enclosing namespace which
1510 // contains both the using-directive and the nominated
1511 // namespace. [Note: in this context, “contains” means “contains
1512 // directly or indirectly”. ]
1513
1514 // Find enclosing context containing both using-directive and
1515 // nominated namespace.
1516 DeclContext *CommonAncestor = cast<DeclContext>(NS);
1517 while (CommonAncestor && !CommonAncestor->Encloses(CurContext))
1518 CommonAncestor = CommonAncestor->getParent();
1519
1520 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc,
1521 NamespcLoc, IdentLoc,
1522 cast<NamespaceDecl>(NS),
1523 CommonAncestor);
1524 PushUsingDirective(S, UDir);
Douglas Gregorf780abc2008-12-30 03:27:21 +00001525 } else {
Chris Lattneread013e2009-01-06 07:24:29 +00001526 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange();
Douglas Gregorf780abc2008-12-30 03:27:21 +00001527 }
1528
Douglas Gregor2a3009a2009-02-03 19:21:40 +00001529 // FIXME: We ignore attributes for now.
Douglas Gregorf780abc2008-12-30 03:27:21 +00001530 delete AttrList;
Douglas Gregor2a3009a2009-02-03 19:21:40 +00001531 return UDir;
1532}
1533
1534void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) {
1535 // If scope has associated entity, then using directive is at namespace
1536 // or translation unit scope. We add UsingDirectiveDecls, into
1537 // it's lookup structure.
1538 if (DeclContext *Ctx = static_cast<DeclContext*>(S->getEntity()))
1539 Ctx->addDecl(UDir);
1540 else
1541 // Otherwise it is block-sope. using-directives will affect lookup
1542 // only to the end of scope.
1543 S->PushUsingDirective(UDir);
Douglas Gregorf780abc2008-12-30 03:27:21 +00001544}
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00001545
1546/// AddCXXDirectInitializerToDecl - This action is called immediately after
1547/// ActOnDeclarator, when a C++ direct initializer is present.
1548/// e.g: "int x(1);"
1549void Sema::AddCXXDirectInitializerToDecl(DeclTy *Dcl, SourceLocation LParenLoc,
1550 ExprTy **ExprTys, unsigned NumExprs,
1551 SourceLocation *CommaLocs,
1552 SourceLocation RParenLoc) {
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00001553 assert(NumExprs != 0 && ExprTys && "missing expressions");
Argyrios Kyrtzidisce8e2922008-10-06 23:08:37 +00001554 Decl *RealDecl = static_cast<Decl *>(Dcl);
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00001555
1556 // If there is no declaration, there was an error parsing it. Just ignore
1557 // the initializer.
1558 if (RealDecl == 0) {
Ted Kremenek15f61392008-10-06 20:35:04 +00001559 for (unsigned i = 0; i != NumExprs; ++i)
Ted Kremenek8189cde2009-02-07 01:47:29 +00001560 static_cast<Expr *>(ExprTys[i])->Destroy(Context);
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00001561 return;
1562 }
1563
1564 VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl);
1565 if (!VDecl) {
1566 Diag(RealDecl->getLocation(), diag::err_illegal_initializer);
1567 RealDecl->setInvalidDecl();
1568 return;
1569 }
1570
Argyrios Kyrtzidisce8e2922008-10-06 23:08:37 +00001571 // We will treat direct-initialization as a copy-initialization:
1572 // int x(1); -as-> int x = 1;
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00001573 // ClassType x(a,b,c); -as-> ClassType x = ClassType(a,b,c);
1574 //
1575 // Clients that want to distinguish between the two forms, can check for
1576 // direct initializer using VarDecl::hasCXXDirectInitializer().
1577 // A major benefit is that clients that don't particularly care about which
1578 // exactly form was it (like the CodeGen) can handle both cases without
1579 // special case code.
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +00001580
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00001581 // C++ 8.5p11:
1582 // The form of initialization (using parentheses or '=') is generally
1583 // insignificant, but does matter when the entity being initialized has a
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +00001584 // class type.
Douglas Gregor18fe5682008-11-03 20:45:27 +00001585 QualType DeclInitType = VDecl->getType();
1586 if (const ArrayType *Array = Context.getAsArrayType(DeclInitType))
1587 DeclInitType = Array->getElementType();
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +00001588
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +00001589 if (VDecl->getType()->isRecordType()) {
Douglas Gregor18fe5682008-11-03 20:45:27 +00001590 CXXConstructorDecl *Constructor
Douglas Gregorf03d7c72008-11-05 15:29:30 +00001591 = PerformInitializationByConstructor(DeclInitType,
1592 (Expr **)ExprTys, NumExprs,
1593 VDecl->getLocation(),
1594 SourceRange(VDecl->getLocation(),
1595 RParenLoc),
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00001596 VDecl->getDeclName(),
Douglas Gregorf03d7c72008-11-05 15:29:30 +00001597 IK_Direct);
Douglas Gregor18fe5682008-11-03 20:45:27 +00001598 if (!Constructor) {
1599 RealDecl->setInvalidDecl();
1600 }
Douglas Gregorf03d7c72008-11-05 15:29:30 +00001601
1602 // Let clients know that initialization was done with a direct
1603 // initializer.
1604 VDecl->setCXXDirectInitializer(true);
1605
1606 // FIXME: Add ExprTys and Constructor to the RealDecl as part of
1607 // the initializer.
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +00001608 return;
1609 }
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00001610
Argyrios Kyrtzidisce8e2922008-10-06 23:08:37 +00001611 if (NumExprs > 1) {
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00001612 Diag(CommaLocs[0], diag::err_builtin_direct_init_more_than_one_arg)
1613 << SourceRange(VDecl->getLocation(), RParenLoc);
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00001614 RealDecl->setInvalidDecl();
1615 return;
1616 }
1617
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00001618 // Let clients know that initialization was done with a direct initializer.
1619 VDecl->setCXXDirectInitializer(true);
Argyrios Kyrtzidisce8e2922008-10-06 23:08:37 +00001620
1621 assert(NumExprs == 1 && "Expected 1 expression");
1622 // Set the init expression, handles conversions.
Douglas Gregor09f41cf2009-01-14 15:45:31 +00001623 AddInitializerToDecl(Dcl, ExprArg(*this, ExprTys[0]), /*DirectInit=*/true);
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00001624}
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001625
Douglas Gregorf03d7c72008-11-05 15:29:30 +00001626/// PerformInitializationByConstructor - Perform initialization by
1627/// constructor (C++ [dcl.init]p14), which may occur as part of
1628/// direct-initialization or copy-initialization. We are initializing
1629/// an object of type @p ClassType with the given arguments @p
1630/// Args. @p Loc is the location in the source code where the
1631/// initializer occurs (e.g., a declaration, member initializer,
1632/// functional cast, etc.) while @p Range covers the whole
1633/// initialization. @p InitEntity is the entity being initialized,
1634/// which may by the name of a declaration or a type. @p Kind is the
1635/// kind of initialization we're performing, which affects whether
1636/// explicit constructors will be considered. When successful, returns
Douglas Gregor18fe5682008-11-03 20:45:27 +00001637/// the constructor that will be used to perform the initialization;
Douglas Gregorf03d7c72008-11-05 15:29:30 +00001638/// when the initialization fails, emits a diagnostic and returns
1639/// null.
Douglas Gregor18fe5682008-11-03 20:45:27 +00001640CXXConstructorDecl *
Douglas Gregorf03d7c72008-11-05 15:29:30 +00001641Sema::PerformInitializationByConstructor(QualType ClassType,
1642 Expr **Args, unsigned NumArgs,
1643 SourceLocation Loc, SourceRange Range,
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00001644 DeclarationName InitEntity,
Douglas Gregorf03d7c72008-11-05 15:29:30 +00001645 InitializationKind Kind) {
Douglas Gregor18fe5682008-11-03 20:45:27 +00001646 const RecordType *ClassRec = ClassType->getAsRecordType();
1647 assert(ClassRec && "Can only initialize a class type here");
1648
1649 // C++ [dcl.init]p14:
1650 //
1651 // If the initialization is direct-initialization, or if it is
1652 // copy-initialization where the cv-unqualified version of the
1653 // source type is the same class as, or a derived class of, the
1654 // class of the destination, constructors are considered. The
1655 // applicable constructors are enumerated (13.3.1.3), and the
1656 // best one is chosen through overload resolution (13.3). The
1657 // constructor so selected is called to initialize the object,
1658 // with the initializer expression(s) as its argument(s). If no
1659 // constructor applies, or the overload resolution is ambiguous,
1660 // the initialization is ill-formed.
Douglas Gregor18fe5682008-11-03 20:45:27 +00001661 const CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(ClassRec->getDecl());
1662 OverloadCandidateSet CandidateSet;
Douglas Gregorf03d7c72008-11-05 15:29:30 +00001663
1664 // Add constructors to the overload set.
Douglas Gregor9e7d9de2008-12-15 21:24:18 +00001665 DeclarationName ConstructorName
1666 = Context.DeclarationNames.getCXXConstructorName(
1667 Context.getCanonicalType(ClassType.getUnqualifiedType()));
Douglas Gregor3fc749d2008-12-23 00:26:44 +00001668 DeclContext::lookup_const_iterator Con, ConEnd;
Steve Naroff0701bbb2009-01-08 17:28:14 +00001669 for (llvm::tie(Con, ConEnd) = ClassDecl->lookup(ConstructorName);
Douglas Gregor3fc749d2008-12-23 00:26:44 +00001670 Con != ConEnd; ++Con) {
1671 CXXConstructorDecl *Constructor = cast<CXXConstructorDecl>(*Con);
Douglas Gregorf03d7c72008-11-05 15:29:30 +00001672 if ((Kind == IK_Direct) ||
1673 (Kind == IK_Copy && Constructor->isConvertingConstructor()) ||
1674 (Kind == IK_Default && Constructor->isDefaultConstructor()))
1675 AddOverloadCandidate(Constructor, Args, NumArgs, CandidateSet);
1676 }
1677
Douglas Gregor9e7d9de2008-12-15 21:24:18 +00001678 // FIXME: When we decide not to synthesize the implicitly-declared
1679 // constructors, we'll need to make them appear here.
1680
Douglas Gregor18fe5682008-11-03 20:45:27 +00001681 OverloadCandidateSet::iterator Best;
Douglas Gregor18fe5682008-11-03 20:45:27 +00001682 switch (BestViableFunction(CandidateSet, Best)) {
1683 case OR_Success:
1684 // We found a constructor. Return it.
1685 return cast<CXXConstructorDecl>(Best->Function);
1686
1687 case OR_No_Viable_Function:
Douglas Gregor87fd7032009-02-02 17:43:21 +00001688 if (InitEntity)
1689 Diag(Loc, diag::err_ovl_no_viable_function_in_init)
Chris Lattner4330d652009-02-17 07:29:20 +00001690 << InitEntity << Range;
Douglas Gregor87fd7032009-02-02 17:43:21 +00001691 else
1692 Diag(Loc, diag::err_ovl_no_viable_function_in_init)
Chris Lattner4330d652009-02-17 07:29:20 +00001693 << ClassType << Range;
Sebastian Redle4c452c2008-11-22 13:44:36 +00001694 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/false);
Douglas Gregor18fe5682008-11-03 20:45:27 +00001695 return 0;
1696
1697 case OR_Ambiguous:
Douglas Gregor87fd7032009-02-02 17:43:21 +00001698 if (InitEntity)
1699 Diag(Loc, diag::err_ovl_ambiguous_init) << InitEntity << Range;
1700 else
1701 Diag(Loc, diag::err_ovl_ambiguous_init) << ClassType << Range;
Douglas Gregor18fe5682008-11-03 20:45:27 +00001702 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true);
1703 return 0;
Douglas Gregor48f3bb92009-02-18 21:56:37 +00001704
1705 case OR_Deleted:
1706 if (InitEntity)
1707 Diag(Loc, diag::err_ovl_deleted_init)
1708 << Best->Function->isDeleted()
1709 << InitEntity << Range;
1710 else
1711 Diag(Loc, diag::err_ovl_deleted_init)
1712 << Best->Function->isDeleted()
1713 << InitEntity << Range;
1714 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true);
1715 return 0;
Douglas Gregor18fe5682008-11-03 20:45:27 +00001716 }
1717
1718 return 0;
1719}
1720
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001721/// CompareReferenceRelationship - Compare the two types T1 and T2 to
1722/// determine whether they are reference-related,
1723/// reference-compatible, reference-compatible with added
1724/// qualification, or incompatible, for use in C++ initialization by
1725/// reference (C++ [dcl.ref.init]p4). Neither type can be a reference
1726/// type, and the first type (T1) is the pointee type of the reference
1727/// type being initialized.
1728Sema::ReferenceCompareResult
Douglas Gregor15da57e2008-10-29 02:00:59 +00001729Sema::CompareReferenceRelationship(QualType T1, QualType T2,
1730 bool& DerivedToBase) {
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001731 assert(!T1->isReferenceType() && "T1 must be the pointee type of the reference type");
1732 assert(!T2->isReferenceType() && "T2 cannot be a reference type");
1733
1734 T1 = Context.getCanonicalType(T1);
1735 T2 = Context.getCanonicalType(T2);
1736 QualType UnqualT1 = T1.getUnqualifiedType();
1737 QualType UnqualT2 = T2.getUnqualifiedType();
1738
1739 // C++ [dcl.init.ref]p4:
1740 // Given types “cv1 T1” and “cv2 T2,” “cv1 T1” is
1741 // reference-related to “cv2 T2” if T1 is the same type as T2, or
1742 // T1 is a base class of T2.
Douglas Gregor15da57e2008-10-29 02:00:59 +00001743 if (UnqualT1 == UnqualT2)
1744 DerivedToBase = false;
1745 else if (IsDerivedFrom(UnqualT2, UnqualT1))
1746 DerivedToBase = true;
1747 else
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001748 return Ref_Incompatible;
1749
1750 // At this point, we know that T1 and T2 are reference-related (at
1751 // least).
1752
1753 // C++ [dcl.init.ref]p4:
1754 // "cv1 T1” is reference-compatible with “cv2 T2” if T1 is
1755 // reference-related to T2 and cv1 is the same cv-qualification
1756 // as, or greater cv-qualification than, cv2. For purposes of
1757 // overload resolution, cases for which cv1 is greater
1758 // cv-qualification than cv2 are identified as
1759 // reference-compatible with added qualification (see 13.3.3.2).
1760 if (T1.getCVRQualifiers() == T2.getCVRQualifiers())
1761 return Ref_Compatible;
1762 else if (T1.isMoreQualifiedThan(T2))
1763 return Ref_Compatible_With_Added_Qualification;
1764 else
1765 return Ref_Related;
1766}
1767
1768/// CheckReferenceInit - Check the initialization of a reference
1769/// variable with the given initializer (C++ [dcl.init.ref]). Init is
1770/// the initializer (either a simple initializer or an initializer
Douglas Gregor3205a782008-10-29 23:31:03 +00001771/// list), and DeclType is the type of the declaration. When ICS is
1772/// non-null, this routine will compute the implicit conversion
1773/// sequence according to C++ [over.ics.ref] and will not produce any
1774/// diagnostics; when ICS is null, it will emit diagnostics when any
1775/// errors are found. Either way, a return value of true indicates
1776/// that there was a failure, a return value of false indicates that
1777/// the reference initialization succeeded.
Douglas Gregor225c41e2008-11-03 19:09:14 +00001778///
1779/// When @p SuppressUserConversions, user-defined conversions are
1780/// suppressed.
Douglas Gregor09f41cf2009-01-14 15:45:31 +00001781/// When @p AllowExplicit, we also permit explicit user-defined
1782/// conversion functions.
Douglas Gregor15da57e2008-10-29 02:00:59 +00001783bool
1784Sema::CheckReferenceInit(Expr *&Init, QualType &DeclType,
Douglas Gregor225c41e2008-11-03 19:09:14 +00001785 ImplicitConversionSequence *ICS,
Douglas Gregor09f41cf2009-01-14 15:45:31 +00001786 bool SuppressUserConversions,
1787 bool AllowExplicit) {
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001788 assert(DeclType->isReferenceType() && "Reference init needs a reference");
1789
1790 QualType T1 = DeclType->getAsReferenceType()->getPointeeType();
1791 QualType T2 = Init->getType();
1792
Douglas Gregor904eed32008-11-10 20:40:00 +00001793 // If the initializer is the address of an overloaded function, try
1794 // to resolve the overloaded function. If all goes well, T2 is the
1795 // type of the resulting function.
1796 if (T2->isOverloadType()) {
1797 FunctionDecl *Fn = ResolveAddressOfOverloadedFunction(Init, DeclType,
1798 ICS != 0);
1799 if (Fn) {
1800 // Since we're performing this reference-initialization for
1801 // real, update the initializer with the resulting function.
Douglas Gregor48f3bb92009-02-18 21:56:37 +00001802 if (!ICS) {
1803 if (DiagnoseUseOfDecl(Fn, Init->getSourceRange().getBegin()))
1804 return true;
1805
Douglas Gregor904eed32008-11-10 20:40:00 +00001806 FixOverloadedFunctionReference(Init, Fn);
Douglas Gregor48f3bb92009-02-18 21:56:37 +00001807 }
Douglas Gregor904eed32008-11-10 20:40:00 +00001808
1809 T2 = Fn->getType();
1810 }
1811 }
1812
Douglas Gregor15da57e2008-10-29 02:00:59 +00001813 // Compute some basic properties of the types and the initializer.
1814 bool DerivedToBase = false;
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001815 Expr::isLvalueResult InitLvalue = Init->isLvalue(Context);
Douglas Gregor15da57e2008-10-29 02:00:59 +00001816 ReferenceCompareResult RefRelationship
1817 = CompareReferenceRelationship(T1, T2, DerivedToBase);
1818
1819 // Most paths end in a failed conversion.
1820 if (ICS)
1821 ICS->ConversionKind = ImplicitConversionSequence::BadConversion;
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001822
1823 // C++ [dcl.init.ref]p5:
1824 // A reference to type “cv1 T1” is initialized by an expression
1825 // of type “cv2 T2” as follows:
1826
1827 // -- If the initializer expression
1828
1829 bool BindsDirectly = false;
1830 // -- is an lvalue (but is not a bit-field), and “cv1 T1” is
1831 // reference-compatible with “cv2 T2,” or
Douglas Gregor15da57e2008-10-29 02:00:59 +00001832 //
1833 // Note that the bit-field check is skipped if we are just computing
1834 // the implicit conversion sequence (C++ [over.best.ics]p2).
1835 if (InitLvalue == Expr::LV_Valid && (ICS || !Init->isBitField()) &&
1836 RefRelationship >= Ref_Compatible_With_Added_Qualification) {
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001837 BindsDirectly = true;
1838
Douglas Gregor15da57e2008-10-29 02:00:59 +00001839 if (ICS) {
1840 // C++ [over.ics.ref]p1:
1841 // When a parameter of reference type binds directly (8.5.3)
1842 // to an argument expression, the implicit conversion sequence
1843 // is the identity conversion, unless the argument expression
1844 // has a type that is a derived class of the parameter type,
1845 // in which case the implicit conversion sequence is a
1846 // derived-to-base Conversion (13.3.3.1).
1847 ICS->ConversionKind = ImplicitConversionSequence::StandardConversion;
1848 ICS->Standard.First = ICK_Identity;
1849 ICS->Standard.Second = DerivedToBase? ICK_Derived_To_Base : ICK_Identity;
1850 ICS->Standard.Third = ICK_Identity;
1851 ICS->Standard.FromTypePtr = T2.getAsOpaquePtr();
1852 ICS->Standard.ToTypePtr = T1.getAsOpaquePtr();
Douglas Gregorf70bdb92008-10-29 14:50:44 +00001853 ICS->Standard.ReferenceBinding = true;
1854 ICS->Standard.DirectBinding = true;
Douglas Gregor15da57e2008-10-29 02:00:59 +00001855
1856 // Nothing more to do: the inaccessibility/ambiguity check for
1857 // derived-to-base conversions is suppressed when we're
1858 // computing the implicit conversion sequence (C++
1859 // [over.best.ics]p2).
1860 return false;
1861 } else {
1862 // Perform the conversion.
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001863 // FIXME: Binding to a subobject of the lvalue is going to require
1864 // more AST annotation than this.
Douglas Gregoreb8f3062008-11-12 17:17:38 +00001865 ImpCastExprToType(Init, T1, /*isLvalue=*/true);
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001866 }
1867 }
1868
1869 // -- has a class type (i.e., T2 is a class type) and can be
1870 // implicitly converted to an lvalue of type “cv3 T3,”
1871 // where “cv1 T1” is reference-compatible with “cv3 T3”
1872 // 92) (this conversion is selected by enumerating the
1873 // applicable conversion functions (13.3.1.6) and choosing
1874 // the best one through overload resolution (13.3)),
Douglas Gregorcb9b9772008-11-10 16:14:15 +00001875 if (!SuppressUserConversions && T2->isRecordType()) {
1876 // FIXME: Look for conversions in base classes!
1877 CXXRecordDecl *T2RecordDecl
1878 = dyn_cast<CXXRecordDecl>(T2->getAsRecordType()->getDecl());
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001879
Douglas Gregorcb9b9772008-11-10 16:14:15 +00001880 OverloadCandidateSet CandidateSet;
1881 OverloadedFunctionDecl *Conversions
1882 = T2RecordDecl->getConversionFunctions();
1883 for (OverloadedFunctionDecl::function_iterator Func
1884 = Conversions->function_begin();
1885 Func != Conversions->function_end(); ++Func) {
1886 CXXConversionDecl *Conv = cast<CXXConversionDecl>(*Func);
1887
1888 // If the conversion function doesn't return a reference type,
1889 // it can't be considered for this conversion.
1890 // FIXME: This will change when we support rvalue references.
Douglas Gregor09f41cf2009-01-14 15:45:31 +00001891 if (Conv->getConversionType()->isReferenceType() &&
1892 (AllowExplicit || !Conv->isExplicit()))
Douglas Gregorcb9b9772008-11-10 16:14:15 +00001893 AddConversionCandidate(Conv, Init, DeclType, CandidateSet);
1894 }
1895
1896 OverloadCandidateSet::iterator Best;
1897 switch (BestViableFunction(CandidateSet, Best)) {
1898 case OR_Success:
1899 // This is a direct binding.
1900 BindsDirectly = true;
1901
1902 if (ICS) {
1903 // C++ [over.ics.ref]p1:
1904 //
1905 // [...] If the parameter binds directly to the result of
1906 // applying a conversion function to the argument
1907 // expression, the implicit conversion sequence is a
1908 // user-defined conversion sequence (13.3.3.1.2), with the
1909 // second standard conversion sequence either an identity
1910 // conversion or, if the conversion function returns an
1911 // entity of a type that is a derived class of the parameter
1912 // type, a derived-to-base Conversion.
1913 ICS->ConversionKind = ImplicitConversionSequence::UserDefinedConversion;
1914 ICS->UserDefined.Before = Best->Conversions[0].Standard;
1915 ICS->UserDefined.After = Best->FinalConversion;
1916 ICS->UserDefined.ConversionFunction = Best->Function;
1917 assert(ICS->UserDefined.After.ReferenceBinding &&
1918 ICS->UserDefined.After.DirectBinding &&
1919 "Expected a direct reference binding!");
1920 return false;
1921 } else {
1922 // Perform the conversion.
1923 // FIXME: Binding to a subobject of the lvalue is going to require
1924 // more AST annotation than this.
Douglas Gregoreb8f3062008-11-12 17:17:38 +00001925 ImpCastExprToType(Init, T1, /*isLvalue=*/true);
Douglas Gregorcb9b9772008-11-10 16:14:15 +00001926 }
1927 break;
1928
1929 case OR_Ambiguous:
1930 assert(false && "Ambiguous reference binding conversions not implemented.");
1931 return true;
1932
1933 case OR_No_Viable_Function:
Douglas Gregor48f3bb92009-02-18 21:56:37 +00001934 case OR_Deleted:
1935 // There was no suitable conversion, or we found a deleted
1936 // conversion; continue with other checks.
Douglas Gregorcb9b9772008-11-10 16:14:15 +00001937 break;
1938 }
1939 }
1940
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001941 if (BindsDirectly) {
1942 // C++ [dcl.init.ref]p4:
1943 // [...] In all cases where the reference-related or
1944 // reference-compatible relationship of two types is used to
1945 // establish the validity of a reference binding, and T1 is a
1946 // base class of T2, a program that necessitates such a binding
1947 // is ill-formed if T1 is an inaccessible (clause 11) or
1948 // ambiguous (10.2) base class of T2.
1949 //
1950 // Note that we only check this condition when we're allowed to
1951 // complain about errors, because we should not be checking for
1952 // ambiguity (or inaccessibility) unless the reference binding
1953 // actually happens.
Douglas Gregor15da57e2008-10-29 02:00:59 +00001954 if (DerivedToBase)
1955 return CheckDerivedToBaseConversion(T2, T1,
1956 Init->getSourceRange().getBegin(),
1957 Init->getSourceRange());
1958 else
1959 return false;
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001960 }
1961
1962 // -- Otherwise, the reference shall be to a non-volatile const
1963 // type (i.e., cv1 shall be const).
1964 if (T1.getCVRQualifiers() != QualType::Const) {
Douglas Gregor15da57e2008-10-29 02:00:59 +00001965 if (!ICS)
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001966 Diag(Init->getSourceRange().getBegin(),
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00001967 diag::err_not_reference_to_const_init)
Chris Lattnerd1625842008-11-24 06:25:27 +00001968 << T1 << (InitLvalue != Expr::LV_Valid? "temporary" : "value")
1969 << T2 << Init->getSourceRange();
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001970 return true;
1971 }
1972
1973 // -- If the initializer expression is an rvalue, with T2 a
1974 // class type, and “cv1 T1” is reference-compatible with
1975 // “cv2 T2,” the reference is bound in one of the
1976 // following ways (the choice is implementation-defined):
1977 //
1978 // -- The reference is bound to the object represented by
1979 // the rvalue (see 3.10) or to a sub-object within that
1980 // object.
1981 //
1982 // -- A temporary of type “cv1 T2” [sic] is created, and
1983 // a constructor is called to copy the entire rvalue
1984 // object into the temporary. The reference is bound to
1985 // the temporary or to a sub-object within the
1986 // temporary.
1987 //
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001988 // The constructor that would be used to make the copy
1989 // shall be callable whether or not the copy is actually
1990 // done.
1991 //
1992 // Note that C++0x [dcl.ref.init]p5 takes away this implementation
1993 // freedom, so we will always take the first option and never build
1994 // a temporary in this case. FIXME: We will, however, have to check
1995 // for the presence of a copy constructor in C++98/03 mode.
1996 if (InitLvalue != Expr::LV_Valid && T2->isRecordType() &&
Douglas Gregor15da57e2008-10-29 02:00:59 +00001997 RefRelationship >= Ref_Compatible_With_Added_Qualification) {
1998 if (ICS) {
1999 ICS->ConversionKind = ImplicitConversionSequence::StandardConversion;
2000 ICS->Standard.First = ICK_Identity;
2001 ICS->Standard.Second = DerivedToBase? ICK_Derived_To_Base : ICK_Identity;
2002 ICS->Standard.Third = ICK_Identity;
2003 ICS->Standard.FromTypePtr = T2.getAsOpaquePtr();
2004 ICS->Standard.ToTypePtr = T1.getAsOpaquePtr();
Douglas Gregorf70bdb92008-10-29 14:50:44 +00002005 ICS->Standard.ReferenceBinding = true;
2006 ICS->Standard.DirectBinding = false;
Douglas Gregor15da57e2008-10-29 02:00:59 +00002007 } else {
Douglas Gregor27c8dc02008-10-29 00:13:59 +00002008 // FIXME: Binding to a subobject of the rvalue is going to require
2009 // more AST annotation than this.
Douglas Gregoreb8f3062008-11-12 17:17:38 +00002010 ImpCastExprToType(Init, T1, /*isLvalue=*/true);
Douglas Gregor27c8dc02008-10-29 00:13:59 +00002011 }
2012 return false;
2013 }
2014
2015 // -- Otherwise, a temporary of type “cv1 T1” is created and
2016 // initialized from the initializer expression using the
2017 // rules for a non-reference copy initialization (8.5). The
2018 // reference is then bound to the temporary. If T1 is
2019 // reference-related to T2, cv1 must be the same
2020 // cv-qualification as, or greater cv-qualification than,
2021 // cv2; otherwise, the program is ill-formed.
2022 if (RefRelationship == Ref_Related) {
2023 // If cv1 == cv2 or cv1 is a greater cv-qualified than cv2, then
2024 // we would be reference-compatible or reference-compatible with
2025 // added qualification. But that wasn't the case, so the reference
2026 // initialization fails.
Douglas Gregor15da57e2008-10-29 02:00:59 +00002027 if (!ICS)
Douglas Gregor27c8dc02008-10-29 00:13:59 +00002028 Diag(Init->getSourceRange().getBegin(),
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00002029 diag::err_reference_init_drops_quals)
Chris Lattnerd1625842008-11-24 06:25:27 +00002030 << T1 << (InitLvalue != Expr::LV_Valid? "temporary" : "value")
2031 << T2 << Init->getSourceRange();
Douglas Gregor27c8dc02008-10-29 00:13:59 +00002032 return true;
2033 }
2034
Douglas Gregor734d9862009-01-30 23:27:23 +00002035 // If at least one of the types is a class type, the types are not
2036 // related, and we aren't allowed any user conversions, the
2037 // reference binding fails. This case is important for breaking
2038 // recursion, since TryImplicitConversion below will attempt to
2039 // create a temporary through the use of a copy constructor.
2040 if (SuppressUserConversions && RefRelationship == Ref_Incompatible &&
2041 (T1->isRecordType() || T2->isRecordType())) {
2042 if (!ICS)
2043 Diag(Init->getSourceRange().getBegin(),
2044 diag::err_typecheck_convert_incompatible)
2045 << DeclType << Init->getType() << "initializing" << Init->getSourceRange();
2046 return true;
2047 }
2048
Douglas Gregor27c8dc02008-10-29 00:13:59 +00002049 // Actually try to convert the initializer to T1.
Douglas Gregor15da57e2008-10-29 02:00:59 +00002050 if (ICS) {
2051 /// C++ [over.ics.ref]p2:
2052 ///
2053 /// When a parameter of reference type is not bound directly to
2054 /// an argument expression, the conversion sequence is the one
2055 /// required to convert the argument expression to the
2056 /// underlying type of the reference according to
2057 /// 13.3.3.1. Conceptually, this conversion sequence corresponds
2058 /// to copy-initializing a temporary of the underlying type with
2059 /// the argument expression. Any difference in top-level
2060 /// cv-qualification is subsumed by the initialization itself
2061 /// and does not constitute a conversion.
Douglas Gregor225c41e2008-11-03 19:09:14 +00002062 *ICS = TryImplicitConversion(Init, T1, SuppressUserConversions);
Douglas Gregor15da57e2008-10-29 02:00:59 +00002063 return ICS->ConversionKind == ImplicitConversionSequence::BadConversion;
2064 } else {
Douglas Gregor45920e82008-12-19 17:40:08 +00002065 return PerformImplicitConversion(Init, T1, "initializing");
Douglas Gregor15da57e2008-10-29 02:00:59 +00002066 }
Douglas Gregor27c8dc02008-10-29 00:13:59 +00002067}
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00002068
2069/// CheckOverloadedOperatorDeclaration - Check whether the declaration
2070/// of this overloaded operator is well-formed. If so, returns false;
2071/// otherwise, emits appropriate diagnostics and returns true.
2072bool Sema::CheckOverloadedOperatorDeclaration(FunctionDecl *FnDecl) {
Douglas Gregor43c7bad2008-11-17 16:14:12 +00002073 assert(FnDecl && FnDecl->isOverloadedOperator() &&
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00002074 "Expected an overloaded operator declaration");
2075
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00002076 OverloadedOperatorKind Op = FnDecl->getOverloadedOperator();
2077
2078 // C++ [over.oper]p5:
2079 // The allocation and deallocation functions, operator new,
2080 // operator new[], operator delete and operator delete[], are
2081 // described completely in 3.7.3. The attributes and restrictions
2082 // found in the rest of this subclause do not apply to them unless
2083 // explicitly stated in 3.7.3.
2084 // FIXME: Write a separate routine for checking this. For now, just
2085 // allow it.
2086 if (Op == OO_New || Op == OO_Array_New ||
2087 Op == OO_Delete || Op == OO_Array_Delete)
2088 return false;
2089
2090 // C++ [over.oper]p6:
2091 // An operator function shall either be a non-static member
2092 // function or be a non-member function and have at least one
2093 // parameter whose type is a class, a reference to a class, an
2094 // enumeration, or a reference to an enumeration.
Douglas Gregor43c7bad2008-11-17 16:14:12 +00002095 if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(FnDecl)) {
2096 if (MethodDecl->isStatic())
2097 return Diag(FnDecl->getLocation(),
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00002098 diag::err_operator_overload_static) << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00002099 } else {
2100 bool ClassOrEnumParam = false;
Douglas Gregor43c7bad2008-11-17 16:14:12 +00002101 for (FunctionDecl::param_iterator Param = FnDecl->param_begin(),
2102 ParamEnd = FnDecl->param_end();
2103 Param != ParamEnd; ++Param) {
2104 QualType ParamType = (*Param)->getType().getNonReferenceType();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00002105 if (ParamType->isRecordType() || ParamType->isEnumeralType()) {
2106 ClassOrEnumParam = true;
2107 break;
2108 }
2109 }
2110
Douglas Gregor43c7bad2008-11-17 16:14:12 +00002111 if (!ClassOrEnumParam)
2112 return Diag(FnDecl->getLocation(),
Chris Lattnerf3a41af2008-11-20 06:38:18 +00002113 diag::err_operator_overload_needs_class_or_enum)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00002114 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00002115 }
2116
2117 // C++ [over.oper]p8:
2118 // An operator function cannot have default arguments (8.3.6),
2119 // except where explicitly stated below.
2120 //
2121 // Only the function-call operator allows default arguments
2122 // (C++ [over.call]p1).
2123 if (Op != OO_Call) {
2124 for (FunctionDecl::param_iterator Param = FnDecl->param_begin();
2125 Param != FnDecl->param_end(); ++Param) {
Douglas Gregor61366e92008-12-24 00:01:03 +00002126 if ((*Param)->hasUnparsedDefaultArg())
2127 return Diag((*Param)->getLocation(),
2128 diag::err_operator_overload_default_arg)
2129 << FnDecl->getDeclName();
2130 else if (Expr *DefArg = (*Param)->getDefaultArg())
Douglas Gregor43c7bad2008-11-17 16:14:12 +00002131 return Diag((*Param)->getLocation(),
Chris Lattnerd3a94e22008-11-20 06:06:08 +00002132 diag::err_operator_overload_default_arg)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00002133 << FnDecl->getDeclName() << DefArg->getSourceRange();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00002134 }
2135 }
2136
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00002137 static const bool OperatorUses[NUM_OVERLOADED_OPERATORS][3] = {
2138 { false, false, false }
2139#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
2140 , { Unary, Binary, MemberOnly }
2141#include "clang/Basic/OperatorKinds.def"
2142 };
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00002143
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00002144 bool CanBeUnaryOperator = OperatorUses[Op][0];
2145 bool CanBeBinaryOperator = OperatorUses[Op][1];
2146 bool MustBeMemberOperator = OperatorUses[Op][2];
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00002147
2148 // C++ [over.oper]p8:
2149 // [...] Operator functions cannot have more or fewer parameters
2150 // than the number required for the corresponding operator, as
2151 // described in the rest of this subclause.
Douglas Gregor43c7bad2008-11-17 16:14:12 +00002152 unsigned NumParams = FnDecl->getNumParams()
2153 + (isa<CXXMethodDecl>(FnDecl)? 1 : 0);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00002154 if (Op != OO_Call &&
2155 ((NumParams == 1 && !CanBeUnaryOperator) ||
2156 (NumParams == 2 && !CanBeBinaryOperator) ||
2157 (NumParams < 1) || (NumParams > 2))) {
2158 // We have the wrong number of parameters.
Chris Lattner416e46f2008-11-21 07:57:12 +00002159 unsigned ErrorKind;
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00002160 if (CanBeUnaryOperator && CanBeBinaryOperator) {
Chris Lattner416e46f2008-11-21 07:57:12 +00002161 ErrorKind = 2; // 2 -> unary or binary.
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00002162 } else if (CanBeUnaryOperator) {
Chris Lattner416e46f2008-11-21 07:57:12 +00002163 ErrorKind = 0; // 0 -> unary
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00002164 } else {
Chris Lattneraf7ae4e2008-11-21 07:50:02 +00002165 assert(CanBeBinaryOperator &&
2166 "All non-call overloaded operators are unary or binary!");
Chris Lattner416e46f2008-11-21 07:57:12 +00002167 ErrorKind = 1; // 1 -> binary
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00002168 }
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00002169
Chris Lattner416e46f2008-11-21 07:57:12 +00002170 return Diag(FnDecl->getLocation(), diag::err_operator_overload_must_be)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00002171 << FnDecl->getDeclName() << NumParams << ErrorKind;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00002172 }
Sebastian Redl64b45f72009-01-05 20:52:13 +00002173
Douglas Gregor43c7bad2008-11-17 16:14:12 +00002174 // Overloaded operators other than operator() cannot be variadic.
2175 if (Op != OO_Call &&
Douglas Gregor72564e72009-02-26 23:50:07 +00002176 FnDecl->getType()->getAsFunctionProtoType()->isVariadic()) {
Chris Lattnerf3a41af2008-11-20 06:38:18 +00002177 return Diag(FnDecl->getLocation(), diag::err_operator_overload_variadic)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00002178 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00002179 }
2180
2181 // Some operators must be non-static member functions.
Douglas Gregor43c7bad2008-11-17 16:14:12 +00002182 if (MustBeMemberOperator && !isa<CXXMethodDecl>(FnDecl)) {
2183 return Diag(FnDecl->getLocation(),
Chris Lattnerf3a41af2008-11-20 06:38:18 +00002184 diag::err_operator_overload_must_be_member)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00002185 << FnDecl->getDeclName();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00002186 }
2187
2188 // C++ [over.inc]p1:
2189 // The user-defined function called operator++ implements the
2190 // prefix and postfix ++ operator. If this function is a member
2191 // function with no parameters, or a non-member function with one
2192 // parameter of class or enumeration type, it defines the prefix
2193 // increment operator ++ for objects of that type. If the function
2194 // is a member function with one parameter (which shall be of type
2195 // int) or a non-member function with two parameters (the second
2196 // of which shall be of type int), it defines the postfix
2197 // increment operator ++ for objects of that type.
2198 if ((Op == OO_PlusPlus || Op == OO_MinusMinus) && NumParams == 2) {
2199 ParmVarDecl *LastParam = FnDecl->getParamDecl(FnDecl->getNumParams() - 1);
2200 bool ParamIsInt = false;
2201 if (const BuiltinType *BT = LastParam->getType()->getAsBuiltinType())
2202 ParamIsInt = BT->getKind() == BuiltinType::Int;
2203
Chris Lattneraf7ae4e2008-11-21 07:50:02 +00002204 if (!ParamIsInt)
2205 return Diag(LastParam->getLocation(),
2206 diag::err_operator_overload_post_incdec_must_be_int)
Chris Lattnerd1625842008-11-24 06:25:27 +00002207 << LastParam->getType() << (Op == OO_MinusMinus);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00002208 }
2209
Sebastian Redl64b45f72009-01-05 20:52:13 +00002210 // Notify the class if it got an assignment operator.
2211 if (Op == OO_Equal) {
2212 // Would have returned earlier otherwise.
2213 assert(isa<CXXMethodDecl>(FnDecl) &&
2214 "Overloaded = not member, but not filtered.");
2215 CXXMethodDecl *Method = cast<CXXMethodDecl>(FnDecl);
2216 Method->getParent()->addedAssignmentOperator(Context, Method);
2217 }
2218
Douglas Gregor43c7bad2008-11-17 16:14:12 +00002219 return false;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00002220}
Chris Lattner5a003a42008-12-17 07:09:26 +00002221
Douglas Gregor074149e2009-01-05 19:45:36 +00002222/// ActOnStartLinkageSpecification - Parsed the beginning of a C++
2223/// linkage specification, including the language and (if present)
2224/// the '{'. ExternLoc is the location of the 'extern', LangLoc is
2225/// the location of the language string literal, which is provided
2226/// by Lang/StrSize. LBraceLoc, if valid, provides the location of
2227/// the '{' brace. Otherwise, this linkage specification does not
2228/// have any braces.
2229Sema::DeclTy *Sema::ActOnStartLinkageSpecification(Scope *S,
2230 SourceLocation ExternLoc,
2231 SourceLocation LangLoc,
2232 const char *Lang,
2233 unsigned StrSize,
2234 SourceLocation LBraceLoc) {
Chris Lattnercc98eac2008-12-17 07:13:27 +00002235 LinkageSpecDecl::LanguageIDs Language;
2236 if (strncmp(Lang, "\"C\"", StrSize) == 0)
2237 Language = LinkageSpecDecl::lang_c;
2238 else if (strncmp(Lang, "\"C++\"", StrSize) == 0)
2239 Language = LinkageSpecDecl::lang_cxx;
2240 else {
Douglas Gregor074149e2009-01-05 19:45:36 +00002241 Diag(LangLoc, diag::err_bad_language);
Chris Lattnercc98eac2008-12-17 07:13:27 +00002242 return 0;
2243 }
2244
2245 // FIXME: Add all the various semantics of linkage specifications
2246
Douglas Gregor074149e2009-01-05 19:45:36 +00002247 LinkageSpecDecl *D = LinkageSpecDecl::Create(Context, CurContext,
2248 LangLoc, Language,
2249 LBraceLoc.isValid());
Douglas Gregor482b77d2009-01-12 23:27:07 +00002250 CurContext->addDecl(D);
Douglas Gregor074149e2009-01-05 19:45:36 +00002251 PushDeclContext(S, D);
2252 return D;
Chris Lattnercc98eac2008-12-17 07:13:27 +00002253}
2254
Douglas Gregor074149e2009-01-05 19:45:36 +00002255/// ActOnFinishLinkageSpecification - Completely the definition of
2256/// the C++ linkage specification LinkageSpec. If RBraceLoc is
2257/// valid, it's the position of the closing '}' brace in a linkage
2258/// specification that uses braces.
2259Sema::DeclTy *Sema::ActOnFinishLinkageSpecification(Scope *S,
2260 DeclTy *LinkageSpec,
2261 SourceLocation RBraceLoc) {
2262 if (LinkageSpec)
2263 PopDeclContext();
2264 return LinkageSpec;
Chris Lattner5a003a42008-12-17 07:09:26 +00002265}
2266
Sebastian Redl4b07b292008-12-22 19:15:10 +00002267/// ActOnExceptionDeclarator - Parsed the exception-declarator in a C++ catch
2268/// handler.
2269Sema::DeclTy *Sema::ActOnExceptionDeclarator(Scope *S, Declarator &D)
2270{
2271 QualType ExDeclType = GetTypeForDeclarator(D, S);
2272 SourceLocation Begin = D.getDeclSpec().getSourceRange().getBegin();
2273
2274 bool Invalid = false;
2275
2276 // Arrays and functions decay.
2277 if (ExDeclType->isArrayType())
2278 ExDeclType = Context.getArrayDecayedType(ExDeclType);
2279 else if (ExDeclType->isFunctionType())
2280 ExDeclType = Context.getPointerType(ExDeclType);
2281
2282 // C++ 15.3p1: The exception-declaration shall not denote an incomplete type.
2283 // The exception-declaration shall not denote a pointer or reference to an
2284 // incomplete type, other than [cv] void*.
2285 QualType BaseType = ExDeclType;
2286 int Mode = 0; // 0 for direct type, 1 for pointer, 2 for reference
Douglas Gregor4ec339f2009-01-19 19:26:10 +00002287 unsigned DK = diag::err_catch_incomplete;
Sebastian Redl4b07b292008-12-22 19:15:10 +00002288 if (const PointerType *Ptr = BaseType->getAsPointerType()) {
2289 BaseType = Ptr->getPointeeType();
2290 Mode = 1;
Douglas Gregor4ec339f2009-01-19 19:26:10 +00002291 DK = diag::err_catch_incomplete_ptr;
Sebastian Redl4b07b292008-12-22 19:15:10 +00002292 } else if(const ReferenceType *Ref = BaseType->getAsReferenceType()) {
2293 BaseType = Ref->getPointeeType();
2294 Mode = 2;
Douglas Gregor4ec339f2009-01-19 19:26:10 +00002295 DK = diag::err_catch_incomplete_ref;
Sebastian Redl4b07b292008-12-22 19:15:10 +00002296 }
Douglas Gregor4ec339f2009-01-19 19:26:10 +00002297 if ((Mode == 0 || !BaseType->isVoidType()) &&
2298 DiagnoseIncompleteType(Begin, BaseType, DK))
Sebastian Redl4b07b292008-12-22 19:15:10 +00002299 Invalid = true;
Sebastian Redl4b07b292008-12-22 19:15:10 +00002300
Sebastian Redl8351da02008-12-22 21:35:02 +00002301 // FIXME: Need to test for ability to copy-construct and destroy the
2302 // exception variable.
2303 // FIXME: Need to check for abstract classes.
2304
Sebastian Redl4b07b292008-12-22 19:15:10 +00002305 IdentifierInfo *II = D.getIdentifier();
Douglas Gregor47b9a1c2009-02-04 17:27:36 +00002306 if (NamedDecl *PrevDecl = LookupName(S, II, LookupOrdinaryName)) {
Sebastian Redl4b07b292008-12-22 19:15:10 +00002307 // The scope should be freshly made just for us. There is just no way
2308 // it contains any previous declaration.
2309 assert(!S->isDeclScope(PrevDecl));
2310 if (PrevDecl->isTemplateParameter()) {
2311 // Maybe we will complain about the shadowed template parameter.
2312 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
2313
2314 }
2315 }
2316
2317 VarDecl *ExDecl = VarDecl::Create(Context, CurContext, D.getIdentifierLoc(),
Douglas Gregor4afa39d2009-01-20 01:17:11 +00002318 II, ExDeclType, VarDecl::None, Begin);
Sebastian Redl4b07b292008-12-22 19:15:10 +00002319 if (D.getInvalidType() || Invalid)
2320 ExDecl->setInvalidDecl();
2321
2322 if (D.getCXXScopeSpec().isSet()) {
2323 Diag(D.getIdentifierLoc(), diag::err_qualified_catch_declarator)
2324 << D.getCXXScopeSpec().getRange();
2325 ExDecl->setInvalidDecl();
2326 }
2327
2328 // Add the exception declaration into this scope.
2329 S->AddDecl(ExDecl);
2330 if (II)
2331 IdResolver.AddDecl(ExDecl);
2332
2333 ProcessDeclAttributes(ExDecl, D);
2334 return ExDecl;
2335}