blob: 743f6a8d1df3a2cdbc7234248c6e6088b5478393 [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/Basic/Diagnostic.h"
Daniel Dunbar12bc6922008-08-11 03:27:53 +000022#include "clang/Parse/DeclSpec.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)
78 << Param->getName() << 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)
86 << VDecl->getName() << 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;
110 llvm::OwningPtr<Expr> DefaultArg((Expr *)defarg);
111 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();
Chris Lattner3d1cee32008-04-08 05:04:30 +0000117 return;
118 }
119
120 // C++ [dcl.fct.default]p5
121 // A default argument expression is implicitly converted (clause
122 // 4) to the parameter type. The default argument expression has
123 // the same semantic constraints as the initializer expression in
124 // a declaration of a variable of the parameter type, using the
125 // copy-initialization semantics (8.5).
Chris Lattner3d1cee32008-04-08 05:04:30 +0000126 Expr *DefaultArgPtr = DefaultArg.get();
Douglas Gregoreb704f22008-11-04 13:57:51 +0000127 bool DefaultInitFailed = PerformCopyInitialization(DefaultArgPtr, ParamType,
128 "in default argument");
Chris Lattner3d1cee32008-04-08 05:04:30 +0000129 if (DefaultArgPtr != DefaultArg.get()) {
130 DefaultArg.take();
131 DefaultArg.reset(DefaultArgPtr);
132 }
Douglas Gregoreb704f22008-11-04 13:57:51 +0000133 if (DefaultInitFailed) {
Chris Lattner3d1cee32008-04-08 05:04:30 +0000134 return;
135 }
136
Chris Lattner8123a952008-04-10 02:22:51 +0000137 // Check that the default argument is well-formed
Chris Lattner9e979552008-04-12 23:52:44 +0000138 CheckDefaultArgumentVisitor DefaultArgChecker(DefaultArg.get(), this);
Chris Lattner8123a952008-04-10 02:22:51 +0000139 if (DefaultArgChecker.Visit(DefaultArg.get()))
140 return;
141
Chris Lattner3d1cee32008-04-08 05:04:30 +0000142 // Okay: add the default argument to the parameter
143 Param->setDefaultArg(DefaultArg.take());
144}
145
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000146/// CheckExtraCXXDefaultArguments - Check for any extra default
147/// arguments in the declarator, which is not a function declaration
148/// or definition and therefore is not permitted to have default
149/// arguments. This routine should be invoked for every declarator
150/// that is not a function declaration or definition.
151void Sema::CheckExtraCXXDefaultArguments(Declarator &D) {
152 // C++ [dcl.fct.default]p3
153 // A default argument expression shall be specified only in the
154 // parameter-declaration-clause of a function declaration or in a
155 // template-parameter (14.1). It shall not be specified for a
156 // parameter pack. If it is specified in a
157 // parameter-declaration-clause, it shall not occur within a
158 // declarator or abstract-declarator of a parameter-declaration.
159 for (unsigned i = 0; i < D.getNumTypeObjects(); ++i) {
160 DeclaratorChunk &chunk = D.getTypeObject(i);
161 if (chunk.Kind == DeclaratorChunk::Function) {
162 for (unsigned argIdx = 0; argIdx < chunk.Fun.NumArgs; ++argIdx) {
163 ParmVarDecl *Param = (ParmVarDecl *)chunk.Fun.ArgInfo[argIdx].Param;
164 if (Param->getDefaultArg()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000165 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc)
166 << Param->getDefaultArg()->getSourceRange();
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000167 Param->setDefaultArg(0);
168 }
169 }
170 }
171 }
172}
173
Chris Lattner3d1cee32008-04-08 05:04:30 +0000174// MergeCXXFunctionDecl - Merge two declarations of the same C++
175// function, once we already know that they have the same
176// type. Subroutine of MergeFunctionDecl.
177FunctionDecl *
178Sema::MergeCXXFunctionDecl(FunctionDecl *New, FunctionDecl *Old) {
179 // C++ [dcl.fct.default]p4:
180 //
181 // For non-template functions, default arguments can be added in
182 // later declarations of a function in the same
183 // scope. Declarations in different scopes have completely
184 // distinct sets of default arguments. That is, declarations in
185 // inner scopes do not acquire default arguments from
186 // declarations in outer scopes, and vice versa. In a given
187 // function declaration, all parameters subsequent to a
188 // parameter with a default argument shall have default
189 // arguments supplied in this or previous declarations. A
190 // default argument shall not be redefined by a later
191 // declaration (not even to the same value).
192 for (unsigned p = 0, NumParams = Old->getNumParams(); p < NumParams; ++p) {
193 ParmVarDecl *OldParam = Old->getParamDecl(p);
194 ParmVarDecl *NewParam = New->getParamDecl(p);
195
196 if(OldParam->getDefaultArg() && NewParam->getDefaultArg()) {
197 Diag(NewParam->getLocation(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000198 diag::err_param_default_argument_redefinition)
199 << NewParam->getDefaultArg()->getSourceRange();
Chris Lattner3d1cee32008-04-08 05:04:30 +0000200 Diag(OldParam->getLocation(), diag::err_previous_definition);
201 } else if (OldParam->getDefaultArg()) {
202 // Merge the old default argument into the new parameter
203 NewParam->setDefaultArg(OldParam->getDefaultArg());
204 }
205 }
206
207 return New;
208}
209
210/// CheckCXXDefaultArguments - Verify that the default arguments for a
211/// function declaration are well-formed according to C++
212/// [dcl.fct.default].
213void Sema::CheckCXXDefaultArguments(FunctionDecl *FD) {
214 unsigned NumParams = FD->getNumParams();
215 unsigned p;
216
217 // Find first parameter with a default argument
218 for (p = 0; p < NumParams; ++p) {
219 ParmVarDecl *Param = FD->getParamDecl(p);
220 if (Param->getDefaultArg())
221 break;
222 }
223
224 // C++ [dcl.fct.default]p4:
225 // In a given function declaration, all parameters
226 // subsequent to a parameter with a default argument shall
227 // have default arguments supplied in this or previous
228 // declarations. A default argument shall not be redefined
229 // by a later declaration (not even to the same value).
230 unsigned LastMissingDefaultArg = 0;
231 for(; p < NumParams; ++p) {
232 ParmVarDecl *Param = FD->getParamDecl(p);
233 if (!Param->getDefaultArg()) {
234 if (Param->getIdentifier())
235 Diag(Param->getLocation(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000236 diag::err_param_default_argument_missing_name)
Chris Lattner43b628c2008-11-19 07:32:16 +0000237 << Param->getIdentifier();
Chris Lattner3d1cee32008-04-08 05:04:30 +0000238 else
239 Diag(Param->getLocation(),
240 diag::err_param_default_argument_missing);
241
242 LastMissingDefaultArg = p;
243 }
244 }
245
246 if (LastMissingDefaultArg > 0) {
247 // Some default arguments were missing. Clear out all of the
248 // default arguments up to (and including) the last missing
249 // default argument, so that we leave the function parameters
250 // in a semantically valid state.
251 for (p = 0; p <= LastMissingDefaultArg; ++p) {
252 ParmVarDecl *Param = FD->getParamDecl(p);
253 if (Param->getDefaultArg()) {
254 delete Param->getDefaultArg();
255 Param->setDefaultArg(0);
256 }
257 }
258 }
259}
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000260
Douglas Gregorb48fe382008-10-31 09:07:45 +0000261/// isCurrentClassName - Determine whether the identifier II is the
262/// name of the class type currently being defined. In the case of
263/// nested classes, this will only return true if II is the name of
264/// the innermost class.
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000265bool Sema::isCurrentClassName(const IdentifierInfo &II, Scope *,
266 const CXXScopeSpec *SS) {
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +0000267 CXXRecordDecl *CurDecl;
268 if (SS) {
269 DeclContext *DC = static_cast<DeclContext*>(SS->getScopeRep());
270 CurDecl = dyn_cast_or_null<CXXRecordDecl>(DC);
271 } else
272 CurDecl = dyn_cast_or_null<CXXRecordDecl>(CurContext);
273
274 if (CurDecl)
Douglas Gregorb48fe382008-10-31 09:07:45 +0000275 return &II == CurDecl->getIdentifier();
276 else
277 return false;
278}
279
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000280/// ActOnBaseSpecifier - Parsed a base specifier. A base specifier is
281/// one entry in the base class list of a class specifier, for
282/// example:
283/// class foo : public bar, virtual private baz {
284/// 'public bar' and 'virtual private baz' are each base-specifiers.
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000285Sema::BaseResult
286Sema::ActOnBaseSpecifier(DeclTy *classdecl, SourceRange SpecifierRange,
287 bool Virtual, AccessSpecifier Access,
288 TypeTy *basetype, SourceLocation BaseLoc) {
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000289 RecordDecl *Decl = (RecordDecl*)classdecl;
290 QualType BaseType = Context.getTypeDeclType((TypeDecl*)basetype);
291
292 // Base specifiers must be record types.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000293 if (!BaseType->isRecordType())
294 return Diag(BaseLoc, diag::err_base_must_be_class) << SpecifierRange;
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000295
296 // C++ [class.union]p1:
297 // A union shall not be used as a base class.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000298 if (BaseType->isUnionType())
299 return Diag(BaseLoc, diag::err_union_as_base_class) << SpecifierRange;
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000300
301 // C++ [class.union]p1:
302 // A union shall not have base classes.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000303 if (Decl->isUnion())
304 return Diag(Decl->getLocation(), diag::err_base_clause_on_union)
305 << SpecifierRange;
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000306
307 // C++ [class.derived]p2:
308 // The class-name in a base-specifier shall not be an incompletely
309 // defined class.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000310 if (BaseType->isIncompleteType())
311 return Diag(BaseLoc, diag::err_incomplete_base_class) << SpecifierRange;
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000312
Sebastian Redld93f0dd2008-11-06 15:59:35 +0000313 // If the base class is polymorphic, the new one is, too.
314 RecordDecl *BaseDecl = BaseType->getAsRecordType()->getDecl();
315 assert(BaseDecl && "Record type has no declaration");
316 BaseDecl = BaseDecl->getDefinition(Context);
317 assert(BaseDecl && "Base type is not incomplete, but has no definition");
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000318 if (cast<CXXRecordDecl>(BaseDecl)->isPolymorphic())
Sebastian Redld93f0dd2008-11-06 15:59:35 +0000319 cast<CXXRecordDecl>(Decl)->setPolymorphic(true);
Sebastian Redld93f0dd2008-11-06 15:59:35 +0000320
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000321 // Create the base specifier.
Douglas Gregor57c856b2008-10-23 18:13:27 +0000322 return new CXXBaseSpecifier(SpecifierRange, Virtual,
323 BaseType->isClassType(), Access, BaseType);
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000324}
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000325
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000326/// ActOnBaseSpecifiers - Attach the given base specifiers to the
327/// class, after checking whether there are any duplicate base
328/// classes.
329void Sema::ActOnBaseSpecifiers(DeclTy *ClassDecl, BaseTy **Bases,
330 unsigned NumBases) {
331 if (NumBases == 0)
332 return;
333
334 // Used to keep track of which base types we have already seen, so
335 // that we can properly diagnose redundant direct base types. Note
Douglas Gregor57c856b2008-10-23 18:13:27 +0000336 // that the key is always the unqualified canonical type of the base
337 // class.
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000338 std::map<QualType, CXXBaseSpecifier*, QualTypeOrdering> KnownBaseTypes;
339
340 // Copy non-redundant base specifiers into permanent storage.
Douglas Gregor57c856b2008-10-23 18:13:27 +0000341 CXXBaseSpecifier **BaseSpecs = (CXXBaseSpecifier **)Bases;
342 unsigned NumGoodBases = 0;
343 for (unsigned idx = 0; idx < NumBases; ++idx) {
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000344 QualType NewBaseType
Douglas Gregor57c856b2008-10-23 18:13:27 +0000345 = Context.getCanonicalType(BaseSpecs[idx]->getType());
346 NewBaseType = NewBaseType.getUnqualifiedType();
347
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000348 if (KnownBaseTypes[NewBaseType]) {
349 // C++ [class.mi]p3:
350 // A class shall not be specified as a direct base class of a
351 // derived class more than once.
Douglas Gregor57c856b2008-10-23 18:13:27 +0000352 Diag(BaseSpecs[idx]->getSourceRange().getBegin(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000353 diag::err_duplicate_base_class)
354 << KnownBaseTypes[NewBaseType]->getType().getAsString()
355 << BaseSpecs[idx]->getSourceRange();
Douglas Gregor57c856b2008-10-23 18:13:27 +0000356
357 // Delete the duplicate base class specifier; we're going to
358 // overwrite its pointer later.
359 delete BaseSpecs[idx];
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000360 } else {
361 // Okay, add this new base class.
Douglas Gregor57c856b2008-10-23 18:13:27 +0000362 KnownBaseTypes[NewBaseType] = BaseSpecs[idx];
363 BaseSpecs[NumGoodBases++] = BaseSpecs[idx];
Douglas Gregorf8268ae2008-10-22 17:49:05 +0000364 }
365 }
366
367 // Attach the remaining base class specifiers to the derived class.
368 CXXRecordDecl *Decl = (CXXRecordDecl*)ClassDecl;
Douglas Gregor57c856b2008-10-23 18:13:27 +0000369 Decl->setBases(BaseSpecs, NumGoodBases);
370
371 // Delete the remaining (good) base class specifiers, since their
372 // data has been copied into the CXXRecordDecl.
373 for (unsigned idx = 0; idx < NumGoodBases; ++idx)
374 delete BaseSpecs[idx];
Douglas Gregore37ac4f2008-04-13 21:30:24 +0000375}
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +0000376
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000377//===----------------------------------------------------------------------===//
378// C++ class member Handling
379//===----------------------------------------------------------------------===//
380
381/// ActOnStartCXXClassDef - This is called at the start of a class/struct/union
382/// definition, when on C++.
383void Sema::ActOnStartCXXClassDef(Scope *S, DeclTy *D, SourceLocation LBrace) {
Douglas Gregorb48fe382008-10-31 09:07:45 +0000384 CXXRecordDecl *Dcl = cast<CXXRecordDecl>(static_cast<Decl *>(D));
385 PushDeclContext(Dcl);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000386 FieldCollector->StartClass();
Douglas Gregorb48fe382008-10-31 09:07:45 +0000387
388 if (Dcl->getIdentifier()) {
389 // C++ [class]p2:
390 // [...] The class-name is also inserted into the scope of the
391 // class itself; this is known as the injected-class-name. For
392 // purposes of access checking, the injected-class-name is treated
393 // as if it were a public member name.
Douglas Gregor55c60952008-11-10 14:41:22 +0000394 PushOnScopeChains(Dcl, S);
Douglas Gregorb48fe382008-10-31 09:07:45 +0000395 }
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000396}
397
398/// ActOnCXXMemberDeclarator - This is invoked when a C++ class member
399/// declarator is parsed. 'AS' is the access specifier, 'BW' specifies the
400/// bitfield width if there is one and 'InitExpr' specifies the initializer if
401/// any. 'LastInGroup' is non-null for cases where one declspec has multiple
402/// declarators on it.
403///
404/// NOTE: Because of CXXFieldDecl's inability to be chained like ScopedDecls, if
405/// an instance field is declared, a new CXXFieldDecl is created but the method
406/// does *not* return it; it returns LastInGroup instead. The other C++ members
407/// (which are all ScopedDecls) are returned after appending them to
408/// LastInGroup.
409Sema::DeclTy *
410Sema::ActOnCXXMemberDeclarator(Scope *S, AccessSpecifier AS, Declarator &D,
411 ExprTy *BW, ExprTy *InitExpr,
412 DeclTy *LastInGroup) {
413 const DeclSpec &DS = D.getDeclSpec();
Douglas Gregor10bd3682008-11-17 22:58:34 +0000414 DeclarationName Name = GetNameForDeclarator(D);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000415 Expr *BitWidth = static_cast<Expr*>(BW);
416 Expr *Init = static_cast<Expr*>(InitExpr);
417 SourceLocation Loc = D.getIdentifierLoc();
418
Sebastian Redl669d5d72008-11-14 23:42:31 +0000419 bool isFunc = D.isFunctionDeclarator();
420
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000421 // C++ 9.2p6: A member shall not be declared to have automatic storage
422 // duration (auto, register) or with the extern storage-class-specifier.
Sebastian Redl669d5d72008-11-14 23:42:31 +0000423 // C++ 7.1.1p8: The mutable specifier can be applied only to names of class
424 // data members and cannot be applied to names declared const or static,
425 // and cannot be applied to reference members.
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000426 switch (DS.getStorageClassSpec()) {
427 case DeclSpec::SCS_unspecified:
428 case DeclSpec::SCS_typedef:
429 case DeclSpec::SCS_static:
430 // FALL THROUGH.
431 break;
Sebastian Redl669d5d72008-11-14 23:42:31 +0000432 case DeclSpec::SCS_mutable:
433 if (isFunc) {
434 if (DS.getStorageClassSpecLoc().isValid())
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000435 Diag(DS.getStorageClassSpecLoc(), diag::err_mutable_function);
Sebastian Redl669d5d72008-11-14 23:42:31 +0000436 else
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000437 Diag(DS.getThreadSpecLoc(), diag::err_mutable_function);
438
Sebastian Redla11f42f2008-11-17 23:24:37 +0000439 // FIXME: It would be nicer if the keyword was ignored only for this
440 // declarator. Otherwise we could get follow-up errors.
Sebastian Redl669d5d72008-11-14 23:42:31 +0000441 D.getMutableDeclSpec().ClearStorageClassSpecs();
442 } else {
443 QualType T = GetTypeForDeclarator(D, S);
444 diag::kind err = static_cast<diag::kind>(0);
445 if (T->isReferenceType())
446 err = diag::err_mutable_reference;
447 else if (T.isConstQualified())
448 err = diag::err_mutable_const;
449 if (err != 0) {
450 if (DS.getStorageClassSpecLoc().isValid())
451 Diag(DS.getStorageClassSpecLoc(), err);
452 else
453 Diag(DS.getThreadSpecLoc(), err);
Sebastian Redla11f42f2008-11-17 23:24:37 +0000454 // FIXME: It would be nicer if the keyword was ignored only for this
455 // declarator. Otherwise we could get follow-up errors.
Sebastian Redl669d5d72008-11-14 23:42:31 +0000456 D.getMutableDeclSpec().ClearStorageClassSpecs();
457 }
458 }
459 break;
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000460 default:
461 if (DS.getStorageClassSpecLoc().isValid())
462 Diag(DS.getStorageClassSpecLoc(),
463 diag::err_storageclass_invalid_for_member);
464 else
465 Diag(DS.getThreadSpecLoc(), diag::err_storageclass_invalid_for_member);
466 D.getMutableDeclSpec().ClearStorageClassSpecs();
467 }
468
Argyrios Kyrtzidisd6caa9e2008-10-15 20:23:22 +0000469 if (!isFunc &&
470 D.getDeclSpec().getTypeSpecType() == DeclSpec::TST_typedef &&
471 D.getNumTypeObjects() == 0) {
Argyrios Kyrtzidisde933f02008-10-08 22:20:31 +0000472 // Check also for this case:
473 //
474 // typedef int f();
475 // f a;
476 //
477 Decl *TD = static_cast<Decl *>(DS.getTypeRep());
478 isFunc = Context.getTypeDeclType(cast<TypeDecl>(TD))->isFunctionType();
479 }
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000480
Sebastian Redl669d5d72008-11-14 23:42:31 +0000481 bool isInstField = ((DS.getStorageClassSpec() == DeclSpec::SCS_unspecified ||
482 DS.getStorageClassSpec() == DeclSpec::SCS_mutable) &&
Argyrios Kyrtzidisde933f02008-10-08 22:20:31 +0000483 !isFunc);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000484
485 Decl *Member;
486 bool InvalidDecl = false;
487
488 if (isInstField)
489 Member = static_cast<Decl*>(ActOnField(S, Loc, D, BitWidth));
490 else
Daniel Dunbar914701e2008-08-05 16:28:08 +0000491 Member = static_cast<Decl*>(ActOnDeclarator(S, D, LastInGroup));
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000492
493 if (!Member) return LastInGroup;
494
Douglas Gregor10bd3682008-11-17 22:58:34 +0000495 assert((Name || isInstField) && "No identifier for non-field ?");
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000496
497 // set/getAccess is not part of Decl's interface to avoid bloating it with C++
498 // specific methods. Use a wrapper class that can be used with all C++ class
499 // member decls.
500 CXXClassMemberWrapper(Member).setAccess(AS);
501
Douglas Gregor64bffa92008-11-05 16:20:31 +0000502 // C++ [dcl.init.aggr]p1:
503 // An aggregate is an array or a class (clause 9) with [...] no
504 // private or protected non-static data members (clause 11).
505 if (isInstField && (AS == AS_private || AS == AS_protected))
506 cast<CXXRecordDecl>(CurContext)->setAggregate(false);
507
Sebastian Redld93f0dd2008-11-06 15:59:35 +0000508 if (DS.isVirtualSpecified()) {
509 if (!isFunc || DS.getStorageClassSpec() == DeclSpec::SCS_static) {
510 Diag(DS.getVirtualSpecLoc(), diag::err_virtual_non_function);
511 InvalidDecl = true;
512 } else {
513 CXXRecordDecl *CurClass = cast<CXXRecordDecl>(CurContext);
514 CurClass->setAggregate(false);
515 CurClass->setPolymorphic(true);
516 }
517 }
Douglas Gregor64bffa92008-11-05 16:20:31 +0000518
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000519 if (BitWidth) {
520 // C++ 9.6p2: Only when declaring an unnamed bit-field may the
521 // constant-expression be a value equal to zero.
522 // FIXME: Check this.
523
524 if (D.isFunctionDeclarator()) {
525 // FIXME: Emit diagnostic about only constructors taking base initializers
526 // or something similar, when constructor support is in place.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000527 Diag(Loc, diag::err_not_bitfield_type)
528 << Name.getAsString() << BitWidth->getSourceRange();
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000529 InvalidDecl = true;
530
Argyrios Kyrtzidisde933f02008-10-08 22:20:31 +0000531 } else if (isInstField) {
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000532 // C++ 9.6p3: A bit-field shall have integral or enumeration type.
Argyrios Kyrtzidisde933f02008-10-08 22:20:31 +0000533 if (!cast<FieldDecl>(Member)->getType()->isIntegralType()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000534 Diag(Loc, diag::err_not_integral_type_bitfield)
535 << Name.getAsString() << BitWidth->getSourceRange();
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000536 InvalidDecl = true;
537 }
538
Argyrios Kyrtzidisde933f02008-10-08 22:20:31 +0000539 } else if (isa<FunctionDecl>(Member)) {
540 // A function typedef ("typedef int f(); f a;").
541 // C++ 9.6p3: A bit-field shall have integral or enumeration type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000542 Diag(Loc, diag::err_not_integral_type_bitfield)
543 << Name.getAsString() << BitWidth->getSourceRange();
Argyrios Kyrtzidisde933f02008-10-08 22:20:31 +0000544 InvalidDecl = true;
545
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000546 } else if (isa<TypedefDecl>(Member)) {
547 // "cannot declare 'A' to be a bit-field type"
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000548 Diag(Loc, diag::err_not_bitfield_type)
549 << Name.getAsString() << BitWidth->getSourceRange();
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000550 InvalidDecl = true;
551
552 } else {
553 assert(isa<CXXClassVarDecl>(Member) &&
554 "Didn't we cover all member kinds?");
555 // C++ 9.6p3: A bit-field shall not be a static member.
556 // "static member 'A' cannot be a bit-field"
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000557 Diag(Loc, diag::err_static_not_bitfield)
558 << Name.getAsString() << BitWidth->getSourceRange();
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000559 InvalidDecl = true;
560 }
561 }
562
563 if (Init) {
564 // C++ 9.2p4: A member-declarator can contain a constant-initializer only
565 // if it declares a static member of const integral or const enumeration
566 // type.
Chris Lattnerb77792e2008-07-26 22:17:49 +0000567 if (CXXClassVarDecl *CVD = dyn_cast<CXXClassVarDecl>(Member)) {
568 // ...static member of...
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000569 CVD->setInit(Init);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000570 // ...const integral or const enumeration type.
Chris Lattnerb77792e2008-07-26 22:17:49 +0000571 if (Context.getCanonicalType(CVD->getType()).isConstQualified() &&
572 CVD->getType()->isIntegralType()) {
573 // constant-initializer
574 if (CheckForConstantInitializer(Init, CVD->getType()))
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000575 InvalidDecl = true;
576
577 } else {
578 // not const integral.
Chris Lattnerd3a94e22008-11-20 06:06:08 +0000579 Diag(Loc, diag::err_member_initialization)
580 << Name.getAsString() << Init->getSourceRange();
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000581 InvalidDecl = true;
582 }
583
584 } else {
585 // not static member.
Chris Lattnerd3a94e22008-11-20 06:06:08 +0000586 Diag(Loc, diag::err_member_initialization)
587 << Name.getAsString() << Init->getSourceRange();
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000588 InvalidDecl = true;
589 }
590 }
591
592 if (InvalidDecl)
593 Member->setInvalidDecl();
594
595 if (isInstField) {
596 FieldCollector->Add(cast<CXXFieldDecl>(Member));
597 return LastInGroup;
598 }
599 return Member;
600}
601
Douglas Gregor7ad83902008-11-05 04:29:56 +0000602/// ActOnMemInitializer - Handle a C++ member initializer.
603Sema::MemInitResult
604Sema::ActOnMemInitializer(DeclTy *ConstructorD,
605 Scope *S,
606 IdentifierInfo *MemberOrBase,
607 SourceLocation IdLoc,
608 SourceLocation LParenLoc,
609 ExprTy **Args, unsigned NumArgs,
610 SourceLocation *CommaLocs,
611 SourceLocation RParenLoc) {
612 CXXConstructorDecl *Constructor
613 = dyn_cast<CXXConstructorDecl>((Decl*)ConstructorD);
614 if (!Constructor) {
615 // The user wrote a constructor initializer on a function that is
616 // not a C++ constructor. Ignore the error for now, because we may
617 // have more member initializers coming; we'll diagnose it just
618 // once in ActOnMemInitializers.
619 return true;
620 }
621
622 CXXRecordDecl *ClassDecl = Constructor->getParent();
623
624 // C++ [class.base.init]p2:
625 // Names in a mem-initializer-id are looked up in the scope of the
626 // constructor’s class and, if not found in that scope, are looked
627 // up in the scope containing the constructor’s
628 // definition. [Note: if the constructor’s class contains a member
629 // with the same name as a direct or virtual base class of the
630 // class, a mem-initializer-id naming the member or base class and
631 // composed of a single identifier refers to the class member. A
632 // mem-initializer-id for the hidden base class may be specified
633 // using a qualified name. ]
634 // Look for a member, first.
635 CXXFieldDecl *Member = ClassDecl->getMember(MemberOrBase);
636
637 // FIXME: Handle members of an anonymous union.
638
639 if (Member) {
640 // FIXME: Perform direct initialization of the member.
641 return new CXXBaseOrMemberInitializer(Member, (Expr **)Args, NumArgs);
642 }
643
644 // It didn't name a member, so see if it names a class.
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000645 TypeTy *BaseTy = isTypeName(*MemberOrBase, S, 0/*SS*/);
Douglas Gregor7ad83902008-11-05 04:29:56 +0000646 if (!BaseTy)
Chris Lattner3c73c412008-11-19 08:23:25 +0000647 return Diag(IdLoc, diag::err_mem_init_not_member_or_class)
648 << MemberOrBase << SourceRange(IdLoc, RParenLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +0000649
650 QualType BaseType = Context.getTypeDeclType((TypeDecl *)BaseTy);
651 if (!BaseType->isRecordType())
Chris Lattner3c73c412008-11-19 08:23:25 +0000652 return Diag(IdLoc, diag::err_base_init_does_not_name_class)
653 << BaseType.getAsString() << SourceRange(IdLoc, RParenLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +0000654
655 // C++ [class.base.init]p2:
656 // [...] Unless the mem-initializer-id names a nonstatic data
657 // member of the constructor’s class or a direct or virtual base
658 // of that class, the mem-initializer is ill-formed. A
659 // mem-initializer-list can initialize a base class using any
660 // name that denotes that base class type.
661
662 // First, check for a direct base class.
663 const CXXBaseSpecifier *DirectBaseSpec = 0;
664 for (CXXRecordDecl::base_class_const_iterator Base = ClassDecl->bases_begin();
665 Base != ClassDecl->bases_end(); ++Base) {
666 if (Context.getCanonicalType(BaseType).getUnqualifiedType() ==
667 Context.getCanonicalType(Base->getType()).getUnqualifiedType()) {
668 // We found a direct base of this type. That's what we're
669 // initializing.
670 DirectBaseSpec = &*Base;
671 break;
672 }
673 }
674
675 // Check for a virtual base class.
676 // FIXME: We might be able to short-circuit this if we know in
677 // advance that there are no virtual bases.
678 const CXXBaseSpecifier *VirtualBaseSpec = 0;
679 if (!DirectBaseSpec || !DirectBaseSpec->isVirtual()) {
680 // We haven't found a base yet; search the class hierarchy for a
681 // virtual base class.
682 BasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
683 /*DetectVirtual=*/false);
684 if (IsDerivedFrom(Context.getTypeDeclType(ClassDecl), BaseType, Paths)) {
685 for (BasePaths::paths_iterator Path = Paths.begin();
686 Path != Paths.end(); ++Path) {
687 if (Path->back().Base->isVirtual()) {
688 VirtualBaseSpec = Path->back().Base;
689 break;
690 }
691 }
692 }
693 }
694
695 // C++ [base.class.init]p2:
696 // If a mem-initializer-id is ambiguous because it designates both
697 // a direct non-virtual base class and an inherited virtual base
698 // class, the mem-initializer is ill-formed.
699 if (DirectBaseSpec && VirtualBaseSpec)
Chris Lattner3c73c412008-11-19 08:23:25 +0000700 return Diag(IdLoc, diag::err_base_init_direct_and_virtual)
701 << MemberOrBase << SourceRange(IdLoc, RParenLoc);
Douglas Gregor7ad83902008-11-05 04:29:56 +0000702
703 return new CXXBaseOrMemberInitializer(BaseType, (Expr **)Args, NumArgs);
704}
705
706
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000707void Sema::ActOnFinishCXXMemberSpecification(Scope* S, SourceLocation RLoc,
708 DeclTy *TagDecl,
709 SourceLocation LBrac,
710 SourceLocation RBrac) {
711 ActOnFields(S, RLoc, TagDecl,
712 (DeclTy**)FieldCollector->getCurFields(),
Daniel Dunbar1bfe1c22008-10-03 02:03:53 +0000713 FieldCollector->getCurNumFields(), LBrac, RBrac, 0);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000714}
715
Douglas Gregor396b7cd2008-11-03 17:51:48 +0000716/// AddImplicitlyDeclaredMembersToClass - Adds any implicitly-declared
717/// special functions, such as the default constructor, copy
718/// constructor, or destructor, to the given C++ class (C++
719/// [special]p1). This routine can only be executed just before the
720/// definition of the class is complete.
721void Sema::AddImplicitlyDeclaredMembersToClass(CXXRecordDecl *ClassDecl) {
Douglas Gregor2e1cd422008-11-17 14:58:09 +0000722 QualType ClassType = Context.getTypeDeclType(ClassDecl);
723 ClassType = Context.getCanonicalType(ClassType);
724
Douglas Gregor396b7cd2008-11-03 17:51:48 +0000725 if (!ClassDecl->hasUserDeclaredConstructor()) {
726 // C++ [class.ctor]p5:
727 // A default constructor for a class X is a constructor of class X
728 // that can be called without an argument. If there is no
729 // user-declared constructor for class X, a default constructor is
730 // implicitly declared. An implicitly-declared default constructor
731 // is an inline public member of its class.
Douglas Gregor2e1cd422008-11-17 14:58:09 +0000732 DeclarationName Name
733 = Context.DeclarationNames.getCXXConstructorName(ClassType);
Douglas Gregor396b7cd2008-11-03 17:51:48 +0000734 CXXConstructorDecl *DefaultCon =
735 CXXConstructorDecl::Create(Context, ClassDecl,
Douglas Gregor2e1cd422008-11-17 14:58:09 +0000736 ClassDecl->getLocation(), Name,
Douglas Gregor396b7cd2008-11-03 17:51:48 +0000737 Context.getFunctionType(Context.VoidTy,
738 0, 0, false, 0),
739 /*isExplicit=*/false,
740 /*isInline=*/true,
741 /*isImplicitlyDeclared=*/true);
742 DefaultCon->setAccess(AS_public);
743 ClassDecl->addConstructor(Context, DefaultCon);
744 }
745
746 if (!ClassDecl->hasUserDeclaredCopyConstructor()) {
747 // C++ [class.copy]p4:
748 // If the class definition does not explicitly declare a copy
749 // constructor, one is declared implicitly.
750
751 // C++ [class.copy]p5:
752 // The implicitly-declared copy constructor for a class X will
753 // have the form
754 //
755 // X::X(const X&)
756 //
757 // if
758 bool HasConstCopyConstructor = true;
759
760 // -- each direct or virtual base class B of X has a copy
761 // constructor whose first parameter is of type const B& or
762 // const volatile B&, and
763 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin();
764 HasConstCopyConstructor && Base != ClassDecl->bases_end(); ++Base) {
765 const CXXRecordDecl *BaseClassDecl
766 = cast<CXXRecordDecl>(Base->getType()->getAsRecordType()->getDecl());
767 HasConstCopyConstructor
768 = BaseClassDecl->hasConstCopyConstructor(Context);
769 }
770
771 // -- for all the nonstatic data members of X that are of a
772 // class type M (or array thereof), each such class type
773 // has a copy constructor whose first parameter is of type
774 // const M& or const volatile M&.
775 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin();
776 HasConstCopyConstructor && Field != ClassDecl->field_end(); ++Field) {
777 QualType FieldType = (*Field)->getType();
778 if (const ArrayType *Array = Context.getAsArrayType(FieldType))
779 FieldType = Array->getElementType();
780 if (const RecordType *FieldClassType = FieldType->getAsRecordType()) {
781 const CXXRecordDecl *FieldClassDecl
782 = cast<CXXRecordDecl>(FieldClassType->getDecl());
783 HasConstCopyConstructor
784 = FieldClassDecl->hasConstCopyConstructor(Context);
785 }
786 }
787
788 // Otherwise, the implicitly declared copy constructor will have
789 // the form
790 //
791 // X::X(X&)
792 QualType ArgType = Context.getTypeDeclType(ClassDecl);
793 if (HasConstCopyConstructor)
794 ArgType = ArgType.withConst();
795 ArgType = Context.getReferenceType(ArgType);
796
797 // An implicitly-declared copy constructor is an inline public
798 // member of its class.
Douglas Gregor2e1cd422008-11-17 14:58:09 +0000799 DeclarationName Name
800 = Context.DeclarationNames.getCXXConstructorName(ClassType);
Douglas Gregor396b7cd2008-11-03 17:51:48 +0000801 CXXConstructorDecl *CopyConstructor
802 = CXXConstructorDecl::Create(Context, ClassDecl,
Douglas Gregor2e1cd422008-11-17 14:58:09 +0000803 ClassDecl->getLocation(), Name,
Douglas Gregor396b7cd2008-11-03 17:51:48 +0000804 Context.getFunctionType(Context.VoidTy,
805 &ArgType, 1,
806 false, 0),
807 /*isExplicit=*/false,
808 /*isInline=*/true,
809 /*isImplicitlyDeclared=*/true);
810 CopyConstructor->setAccess(AS_public);
811
812 // Add the parameter to the constructor.
813 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyConstructor,
814 ClassDecl->getLocation(),
815 /*IdentifierInfo=*/0,
816 ArgType, VarDecl::None, 0, 0);
817 CopyConstructor->setParams(&FromParam, 1);
818
819 ClassDecl->addConstructor(Context, CopyConstructor);
820 }
821
Douglas Gregor42a552f2008-11-05 20:51:48 +0000822 if (!ClassDecl->getDestructor()) {
823 // C++ [class.dtor]p2:
824 // If a class has no user-declared destructor, a destructor is
825 // declared implicitly. An implicitly-declared destructor is an
826 // inline public member of its class.
Douglas Gregor2e1cd422008-11-17 14:58:09 +0000827 DeclarationName Name
828 = Context.DeclarationNames.getCXXDestructorName(ClassType);
Douglas Gregor42a552f2008-11-05 20:51:48 +0000829 CXXDestructorDecl *Destructor
830 = CXXDestructorDecl::Create(Context, ClassDecl,
Douglas Gregor2e1cd422008-11-17 14:58:09 +0000831 ClassDecl->getLocation(), Name,
Douglas Gregor42a552f2008-11-05 20:51:48 +0000832 Context.getFunctionType(Context.VoidTy,
833 0, 0, false, 0),
834 /*isInline=*/true,
835 /*isImplicitlyDeclared=*/true);
836 Destructor->setAccess(AS_public);
837 ClassDecl->setDestructor(Destructor);
838 }
839
Douglas Gregor396b7cd2008-11-03 17:51:48 +0000840 // FIXME: Implicit copy assignment operator
841}
842
Argyrios Kyrtzidis5b7f0c82008-08-09 00:39:29 +0000843void Sema::ActOnFinishCXXClassDef(DeclTy *D) {
Argyrios Kyrtzidisa4755c62008-08-09 00:58:37 +0000844 CXXRecordDecl *Rec = cast<CXXRecordDecl>(static_cast<Decl *>(D));
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000845 FieldCollector->FinishClass();
Douglas Gregor396b7cd2008-11-03 17:51:48 +0000846 AddImplicitlyDeclaredMembersToClass(Rec);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000847 PopDeclContext();
Argyrios Kyrtzidisa4755c62008-08-09 00:58:37 +0000848
849 // Everything, including inline method definitions, have been parsed.
850 // Let the consumer know of the new TagDecl definition.
851 Consumer.HandleTagDeclDefinition(Rec);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000852}
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +0000853
Douglas Gregor42a552f2008-11-05 20:51:48 +0000854/// CheckConstructorDeclarator - Called by ActOnDeclarator to check
855/// the well-formednes of the constructor declarator @p D with type @p
856/// R. If there are any errors in the declarator, this routine will
857/// emit diagnostics and return true. Otherwise, it will return
858/// false. Either way, the type @p R will be updated to reflect a
859/// well-formed type for the constructor.
860bool Sema::CheckConstructorDeclarator(Declarator &D, QualType &R,
861 FunctionDecl::StorageClass& SC) {
862 bool isVirtual = D.getDeclSpec().isVirtualSpecified();
863 bool isInvalid = false;
864
865 // C++ [class.ctor]p3:
866 // A constructor shall not be virtual (10.3) or static (9.4). A
867 // constructor can be invoked for a const, volatile or const
868 // volatile object. A constructor shall not be declared const,
869 // volatile, or const volatile (9.3.2).
870 if (isVirtual) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000871 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
872 << "virtual" << SourceRange(D.getDeclSpec().getVirtualSpecLoc())
873 << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +0000874 isInvalid = true;
875 }
876 if (SC == FunctionDecl::Static) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000877 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be)
878 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
879 << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +0000880 isInvalid = true;
881 SC = FunctionDecl::None;
882 }
883 if (D.getDeclSpec().hasTypeSpecifier()) {
884 // Constructors don't have return types, but the parser will
885 // happily parse something like:
886 //
887 // class X {
888 // float X(float);
889 // };
890 //
891 // The return type will be eliminated later.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000892 Diag(D.getIdentifierLoc(), diag::err_constructor_return_type)
893 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
894 << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +0000895 }
896 if (R->getAsFunctionTypeProto()->getTypeQuals() != 0) {
897 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
898 if (FTI.TypeQuals & QualType::Const)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000899 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
900 << "const" << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +0000901 if (FTI.TypeQuals & QualType::Volatile)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000902 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
903 << "volatile" << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +0000904 if (FTI.TypeQuals & QualType::Restrict)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000905 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor)
906 << "restrict" << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +0000907 }
908
909 // Rebuild the function type "R" without any type qualifiers (in
910 // case any of the errors above fired) and with "void" as the
911 // return type, since constructors don't have return types. We
912 // *always* have to do this, because GetTypeForDeclarator will
913 // put in a result type of "int" when none was specified.
914 const FunctionTypeProto *Proto = R->getAsFunctionTypeProto();
915 R = Context.getFunctionType(Context.VoidTy, Proto->arg_type_begin(),
916 Proto->getNumArgs(),
917 Proto->isVariadic(),
918 0);
919
920 return isInvalid;
921}
922
923/// CheckDestructorDeclarator - Called by ActOnDeclarator to check
924/// the well-formednes of the destructor declarator @p D with type @p
925/// R. If there are any errors in the declarator, this routine will
926/// emit diagnostics and return true. Otherwise, it will return
927/// false. Either way, the type @p R will be updated to reflect a
928/// well-formed type for the destructor.
929bool Sema::CheckDestructorDeclarator(Declarator &D, QualType &R,
930 FunctionDecl::StorageClass& SC) {
931 bool isInvalid = false;
932
933 // C++ [class.dtor]p1:
934 // [...] A typedef-name that names a class is a class-name
935 // (7.1.3); however, a typedef-name that names a class shall not
936 // be used as the identifier in the declarator for a destructor
937 // declaration.
938 TypeDecl *DeclaratorTypeD = (TypeDecl *)D.getDeclaratorIdType();
939 if (const TypedefDecl *TypedefD = dyn_cast<TypedefDecl>(DeclaratorTypeD)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000940 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name)
941 << TypedefD->getName();
Douglas Gregor55c60952008-11-10 14:41:22 +0000942 isInvalid = true;
Douglas Gregor42a552f2008-11-05 20:51:48 +0000943 }
944
945 // C++ [class.dtor]p2:
946 // A destructor is used to destroy objects of its class type. A
947 // destructor takes no parameters, and no return type can be
948 // specified for it (not even void). The address of a destructor
949 // shall not be taken. A destructor shall not be static. A
950 // destructor can be invoked for a const, volatile or const
951 // volatile object. A destructor shall not be declared const,
952 // volatile or const volatile (9.3.2).
953 if (SC == FunctionDecl::Static) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000954 Diag(D.getIdentifierLoc(), diag::err_destructor_cannot_be)
955 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
956 << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +0000957 isInvalid = true;
958 SC = FunctionDecl::None;
959 }
960 if (D.getDeclSpec().hasTypeSpecifier()) {
961 // Destructors don't have return types, but the parser will
962 // happily parse something like:
963 //
964 // class X {
965 // float ~X();
966 // };
967 //
968 // The return type will be eliminated later.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000969 Diag(D.getIdentifierLoc(), diag::err_destructor_return_type)
970 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
971 << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +0000972 }
973 if (R->getAsFunctionTypeProto()->getTypeQuals() != 0) {
974 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
975 if (FTI.TypeQuals & QualType::Const)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000976 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
977 << "const" << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +0000978 if (FTI.TypeQuals & QualType::Volatile)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000979 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
980 << "volatile" << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +0000981 if (FTI.TypeQuals & QualType::Restrict)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000982 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor)
983 << "restrict" << SourceRange(D.getIdentifierLoc());
Douglas Gregor42a552f2008-11-05 20:51:48 +0000984 }
985
986 // Make sure we don't have any parameters.
987 if (R->getAsFunctionTypeProto()->getNumArgs() > 0) {
988 Diag(D.getIdentifierLoc(), diag::err_destructor_with_params);
989
990 // Delete the parameters.
991 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
992 if (FTI.NumArgs) {
993 delete [] FTI.ArgInfo;
994 FTI.NumArgs = 0;
995 FTI.ArgInfo = 0;
996 }
997 }
998
999 // Make sure the destructor isn't variadic.
1000 if (R->getAsFunctionTypeProto()->isVariadic())
1001 Diag(D.getIdentifierLoc(), diag::err_destructor_variadic);
1002
1003 // Rebuild the function type "R" without any type qualifiers or
1004 // parameters (in case any of the errors above fired) and with
1005 // "void" as the return type, since destructors don't have return
1006 // types. We *always* have to do this, because GetTypeForDeclarator
1007 // will put in a result type of "int" when none was specified.
1008 R = Context.getFunctionType(Context.VoidTy, 0, 0, false, 0);
1009
1010 return isInvalid;
1011}
1012
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001013/// CheckConversionDeclarator - Called by ActOnDeclarator to check the
1014/// well-formednes of the conversion function declarator @p D with
1015/// type @p R. If there are any errors in the declarator, this routine
1016/// will emit diagnostics and return true. Otherwise, it will return
1017/// false. Either way, the type @p R will be updated to reflect a
1018/// well-formed type for the conversion operator.
1019bool Sema::CheckConversionDeclarator(Declarator &D, QualType &R,
1020 FunctionDecl::StorageClass& SC) {
1021 bool isInvalid = false;
1022
1023 // C++ [class.conv.fct]p1:
1024 // Neither parameter types nor return type can be specified. The
1025 // type of a conversion function (8.3.5) is “function taking no
1026 // parameter returning conversion-type-id.”
1027 if (SC == FunctionDecl::Static) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001028 Diag(D.getIdentifierLoc(), diag::err_conv_function_not_member)
1029 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc())
1030 << SourceRange(D.getIdentifierLoc());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001031 isInvalid = true;
1032 SC = FunctionDecl::None;
1033 }
1034 if (D.getDeclSpec().hasTypeSpecifier()) {
1035 // Conversion functions don't have return types, but the parser will
1036 // happily parse something like:
1037 //
1038 // class X {
1039 // float operator bool();
1040 // };
1041 //
1042 // The return type will be changed later anyway.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001043 Diag(D.getIdentifierLoc(), diag::err_conv_function_return_type)
1044 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
1045 << SourceRange(D.getIdentifierLoc());
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001046 }
1047
1048 // Make sure we don't have any parameters.
1049 if (R->getAsFunctionTypeProto()->getNumArgs() > 0) {
1050 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_params);
1051
1052 // Delete the parameters.
1053 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
1054 if (FTI.NumArgs) {
1055 delete [] FTI.ArgInfo;
1056 FTI.NumArgs = 0;
1057 FTI.ArgInfo = 0;
1058 }
1059 }
1060
1061 // Make sure the conversion function isn't variadic.
1062 if (R->getAsFunctionTypeProto()->isVariadic())
1063 Diag(D.getIdentifierLoc(), diag::err_conv_function_variadic);
1064
1065 // C++ [class.conv.fct]p4:
1066 // The conversion-type-id shall not represent a function type nor
1067 // an array type.
1068 QualType ConvType = QualType::getFromOpaquePtr(D.getDeclaratorIdType());
1069 if (ConvType->isArrayType()) {
1070 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_array);
1071 ConvType = Context.getPointerType(ConvType);
1072 } else if (ConvType->isFunctionType()) {
1073 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_function);
1074 ConvType = Context.getPointerType(ConvType);
1075 }
1076
1077 // Rebuild the function type "R" without any parameters (in case any
1078 // of the errors above fired) and with the conversion type as the
1079 // return type.
1080 R = Context.getFunctionType(ConvType, 0, 0, false,
1081 R->getAsFunctionTypeProto()->getTypeQuals());
1082
1083 return isInvalid;
1084}
1085
Douglas Gregorb48fe382008-10-31 09:07:45 +00001086/// ActOnConstructorDeclarator - Called by ActOnDeclarator to complete
1087/// the declaration of the given C++ constructor ConDecl that was
1088/// built from declarator D. This routine is responsible for checking
1089/// that the newly-created constructor declaration is well-formed and
1090/// for recording it in the C++ class. Example:
1091///
1092/// @code
1093/// class X {
1094/// X(); // X::X() will be the ConDecl.
1095/// };
1096/// @endcode
1097Sema::DeclTy *Sema::ActOnConstructorDeclarator(CXXConstructorDecl *ConDecl) {
1098 assert(ConDecl && "Expected to receive a constructor declaration");
Douglas Gregor60d62c22008-10-31 16:23:19 +00001099
1100 // Check default arguments on the constructor
1101 CheckCXXDefaultArguments(ConDecl);
1102
Douglas Gregor030ff0c2008-10-31 20:25:05 +00001103 CXXRecordDecl *ClassDecl = dyn_cast_or_null<CXXRecordDecl>(CurContext);
1104 if (!ClassDecl) {
1105 ConDecl->setInvalidDecl();
1106 return ConDecl;
Douglas Gregor60d62c22008-10-31 16:23:19 +00001107 }
1108
Douglas Gregor030ff0c2008-10-31 20:25:05 +00001109 // Make sure this constructor is an overload of the existing
1110 // constructors.
1111 OverloadedFunctionDecl::function_iterator MatchedDecl;
1112 if (!IsOverload(ConDecl, ClassDecl->getConstructors(), MatchedDecl)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001113 Diag(ConDecl->getLocation(), diag::err_constructor_redeclared)
1114 << SourceRange(ConDecl->getLocation());
1115 Diag((*MatchedDecl)->getLocation(), diag::err_previous_declaration)
1116 << SourceRange((*MatchedDecl)->getLocation());
Douglas Gregor030ff0c2008-10-31 20:25:05 +00001117 ConDecl->setInvalidDecl();
1118 return ConDecl;
1119 }
1120
1121
1122 // C++ [class.copy]p3:
1123 // A declaration of a constructor for a class X is ill-formed if
1124 // its first parameter is of type (optionally cv-qualified) X and
1125 // either there are no other parameters or else all other
1126 // parameters have default arguments.
1127 if ((ConDecl->getNumParams() == 1) ||
1128 (ConDecl->getNumParams() > 1 &&
1129 ConDecl->getParamDecl(1)->getDefaultArg() != 0)) {
1130 QualType ParamType = ConDecl->getParamDecl(0)->getType();
1131 QualType ClassTy = Context.getTagDeclType(
1132 const_cast<CXXRecordDecl*>(ConDecl->getParent()));
1133 if (Context.getCanonicalType(ParamType).getUnqualifiedType() == ClassTy) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001134 Diag(ConDecl->getLocation(), diag::err_constructor_byvalue_arg)
1135 << SourceRange(ConDecl->getParamDecl(0)->getLocation());
Douglas Gregor030ff0c2008-10-31 20:25:05 +00001136 ConDecl->setInvalidDecl();
Douglas Gregor42a552f2008-11-05 20:51:48 +00001137 return ConDecl;
Douglas Gregor030ff0c2008-10-31 20:25:05 +00001138 }
1139 }
1140
1141 // Add this constructor to the set of constructors of the current
1142 // class.
1143 ClassDecl->addConstructor(Context, ConDecl);
Douglas Gregorb48fe382008-10-31 09:07:45 +00001144 return (DeclTy *)ConDecl;
1145}
1146
Douglas Gregor42a552f2008-11-05 20:51:48 +00001147/// ActOnDestructorDeclarator - Called by ActOnDeclarator to complete
1148/// the declaration of the given C++ @p Destructor. This routine is
1149/// responsible for recording the destructor in the C++ class, if
1150/// possible.
1151Sema::DeclTy *Sema::ActOnDestructorDeclarator(CXXDestructorDecl *Destructor) {
1152 assert(Destructor && "Expected to receive a destructor declaration");
1153
1154 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(CurContext);
1155
1156 // Make sure we aren't redeclaring the destructor.
1157 if (CXXDestructorDecl *PrevDestructor = ClassDecl->getDestructor()) {
1158 Diag(Destructor->getLocation(), diag::err_destructor_redeclared);
1159 Diag(PrevDestructor->getLocation(),
1160 PrevDestructor->isThisDeclarationADefinition()?
1161 diag::err_previous_definition
1162 : diag::err_previous_declaration);
1163 Destructor->setInvalidDecl();
1164 return Destructor;
1165 }
1166
1167 ClassDecl->setDestructor(Destructor);
1168 return (DeclTy *)Destructor;
1169}
1170
Douglas Gregor2f1bc522008-11-07 20:08:42 +00001171/// ActOnConversionDeclarator - Called by ActOnDeclarator to complete
1172/// the declaration of the given C++ conversion function. This routine
1173/// is responsible for recording the conversion function in the C++
1174/// class, if possible.
1175Sema::DeclTy *Sema::ActOnConversionDeclarator(CXXConversionDecl *Conversion) {
1176 assert(Conversion && "Expected to receive a conversion function declaration");
1177
1178 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(CurContext);
1179
1180 // Make sure we aren't redeclaring the conversion function.
1181 QualType ConvType = Context.getCanonicalType(Conversion->getConversionType());
1182 OverloadedFunctionDecl *Conversions = ClassDecl->getConversionFunctions();
1183 for (OverloadedFunctionDecl::function_iterator Func
1184 = Conversions->function_begin();
1185 Func != Conversions->function_end(); ++Func) {
1186 CXXConversionDecl *OtherConv = cast<CXXConversionDecl>(*Func);
1187 if (ConvType == Context.getCanonicalType(OtherConv->getConversionType())) {
1188 Diag(Conversion->getLocation(), diag::err_conv_function_redeclared);
1189 Diag(OtherConv->getLocation(),
1190 OtherConv->isThisDeclarationADefinition()?
1191 diag::err_previous_definition
1192 : diag::err_previous_declaration);
1193 Conversion->setInvalidDecl();
1194 return (DeclTy *)Conversion;
1195 }
1196 }
1197
1198 // C++ [class.conv.fct]p1:
1199 // [...] A conversion function is never used to convert a
1200 // (possibly cv-qualified) object to the (possibly cv-qualified)
1201 // same object type (or a reference to it), to a (possibly
1202 // cv-qualified) base class of that type (or a reference to it),
1203 // or to (possibly cv-qualified) void.
1204 // FIXME: Suppress this warning if the conversion function ends up
1205 // being a virtual function that overrides a virtual function in a
1206 // base class.
1207 QualType ClassType
1208 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl));
1209 if (const ReferenceType *ConvTypeRef = ConvType->getAsReferenceType())
1210 ConvType = ConvTypeRef->getPointeeType();
1211 if (ConvType->isRecordType()) {
1212 ConvType = Context.getCanonicalType(ConvType).getUnqualifiedType();
1213 if (ConvType == ClassType)
1214 Diag(Conversion->getLocation(), diag::warn_conv_to_self_not_used,
1215 ClassType.getAsString());
1216 else if (IsDerivedFrom(ClassType, ConvType))
1217 Diag(Conversion->getLocation(), diag::warn_conv_to_base_not_used,
1218 ClassType.getAsString(),
1219 ConvType.getAsString());
1220 } else if (ConvType->isVoidType()) {
1221 Diag(Conversion->getLocation(), diag::warn_conv_to_void_not_used,
1222 ClassType.getAsString(), ConvType.getAsString());
1223 }
1224
1225 ClassDecl->addConversionFunction(Context, Conversion);
1226
1227 return (DeclTy *)Conversion;
1228}
1229
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00001230//===----------------------------------------------------------------------===//
1231// Namespace Handling
1232//===----------------------------------------------------------------------===//
1233
1234/// ActOnStartNamespaceDef - This is called at the start of a namespace
1235/// definition.
1236Sema::DeclTy *Sema::ActOnStartNamespaceDef(Scope *NamespcScope,
1237 SourceLocation IdentLoc,
1238 IdentifierInfo *II,
1239 SourceLocation LBrace) {
1240 NamespaceDecl *Namespc =
1241 NamespaceDecl::Create(Context, CurContext, IdentLoc, II);
1242 Namespc->setLBracLoc(LBrace);
1243
1244 Scope *DeclRegionScope = NamespcScope->getParent();
1245
1246 if (II) {
1247 // C++ [namespace.def]p2:
1248 // The identifier in an original-namespace-definition shall not have been
1249 // previously defined in the declarative region in which the
1250 // original-namespace-definition appears. The identifier in an
1251 // original-namespace-definition is the name of the namespace. Subsequently
1252 // in that declarative region, it is treated as an original-namespace-name.
1253
1254 Decl *PrevDecl =
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +00001255 LookupDecl(II, Decl::IDNS_Tag | Decl::IDNS_Ordinary, DeclRegionScope, 0,
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00001256 /*enableLazyBuiltinCreation=*/false);
1257
Argyrios Kyrtzidis2fac6262008-09-10 02:11:07 +00001258 if (PrevDecl && isDeclInScope(PrevDecl, CurContext, DeclRegionScope)) {
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00001259 if (NamespaceDecl *OrigNS = dyn_cast<NamespaceDecl>(PrevDecl)) {
1260 // This is an extended namespace definition.
1261 // Attach this namespace decl to the chain of extended namespace
1262 // definitions.
1263 NamespaceDecl *NextNS = OrigNS;
1264 while (NextNS->getNextNamespace())
1265 NextNS = NextNS->getNextNamespace();
1266
1267 NextNS->setNextNamespace(Namespc);
1268 Namespc->setOriginalNamespace(OrigNS);
1269
1270 // We won't add this decl to the current scope. We want the namespace
1271 // name to return the original namespace decl during a name lookup.
1272 } else {
1273 // This is an invalid name redefinition.
1274 Diag(Namespc->getLocation(), diag::err_redefinition_different_kind,
1275 Namespc->getName());
1276 Diag(PrevDecl->getLocation(), diag::err_previous_definition);
1277 Namespc->setInvalidDecl();
1278 // Continue on to push Namespc as current DeclContext and return it.
1279 }
1280 } else {
1281 // This namespace name is declared for the first time.
1282 PushOnScopeChains(Namespc, DeclRegionScope);
1283 }
1284 }
1285 else {
1286 // FIXME: Handle anonymous namespaces
1287 }
1288
1289 // Although we could have an invalid decl (i.e. the namespace name is a
1290 // redefinition), push it as current DeclContext and try to continue parsing.
1291 PushDeclContext(Namespc->getOriginalNamespace());
1292 return Namespc;
1293}
1294
1295/// ActOnFinishNamespaceDef - This callback is called after a namespace is
1296/// exited. Decl is the DeclTy returned by ActOnStartNamespaceDef.
1297void Sema::ActOnFinishNamespaceDef(DeclTy *D, SourceLocation RBrace) {
1298 Decl *Dcl = static_cast<Decl *>(D);
1299 NamespaceDecl *Namespc = dyn_cast_or_null<NamespaceDecl>(Dcl);
1300 assert(Namespc && "Invalid parameter, expected NamespaceDecl");
1301 Namespc->setRBracLoc(RBrace);
1302 PopDeclContext();
1303}
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00001304
1305
1306/// AddCXXDirectInitializerToDecl - This action is called immediately after
1307/// ActOnDeclarator, when a C++ direct initializer is present.
1308/// e.g: "int x(1);"
1309void Sema::AddCXXDirectInitializerToDecl(DeclTy *Dcl, SourceLocation LParenLoc,
1310 ExprTy **ExprTys, unsigned NumExprs,
1311 SourceLocation *CommaLocs,
1312 SourceLocation RParenLoc) {
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00001313 assert(NumExprs != 0 && ExprTys && "missing expressions");
Argyrios Kyrtzidisce8e2922008-10-06 23:08:37 +00001314 Decl *RealDecl = static_cast<Decl *>(Dcl);
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00001315
1316 // If there is no declaration, there was an error parsing it. Just ignore
1317 // the initializer.
1318 if (RealDecl == 0) {
Ted Kremenek15f61392008-10-06 20:35:04 +00001319 for (unsigned i = 0; i != NumExprs; ++i)
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00001320 delete static_cast<Expr *>(ExprTys[i]);
1321 return;
1322 }
1323
1324 VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl);
1325 if (!VDecl) {
1326 Diag(RealDecl->getLocation(), diag::err_illegal_initializer);
1327 RealDecl->setInvalidDecl();
1328 return;
1329 }
1330
Argyrios Kyrtzidisce8e2922008-10-06 23:08:37 +00001331 // We will treat direct-initialization as a copy-initialization:
1332 // int x(1); -as-> int x = 1;
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00001333 // ClassType x(a,b,c); -as-> ClassType x = ClassType(a,b,c);
1334 //
1335 // Clients that want to distinguish between the two forms, can check for
1336 // direct initializer using VarDecl::hasCXXDirectInitializer().
1337 // A major benefit is that clients that don't particularly care about which
1338 // exactly form was it (like the CodeGen) can handle both cases without
1339 // special case code.
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +00001340
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00001341 // C++ 8.5p11:
1342 // The form of initialization (using parentheses or '=') is generally
1343 // insignificant, but does matter when the entity being initialized has a
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +00001344 // class type.
Douglas Gregor18fe5682008-11-03 20:45:27 +00001345 QualType DeclInitType = VDecl->getType();
1346 if (const ArrayType *Array = Context.getAsArrayType(DeclInitType))
1347 DeclInitType = Array->getElementType();
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +00001348
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +00001349 if (VDecl->getType()->isRecordType()) {
Douglas Gregor18fe5682008-11-03 20:45:27 +00001350 CXXConstructorDecl *Constructor
Douglas Gregorf03d7c72008-11-05 15:29:30 +00001351 = PerformInitializationByConstructor(DeclInitType,
1352 (Expr **)ExprTys, NumExprs,
1353 VDecl->getLocation(),
1354 SourceRange(VDecl->getLocation(),
1355 RParenLoc),
1356 VDecl->getName(),
1357 IK_Direct);
Douglas Gregor18fe5682008-11-03 20:45:27 +00001358 if (!Constructor) {
1359 RealDecl->setInvalidDecl();
1360 }
Douglas Gregorf03d7c72008-11-05 15:29:30 +00001361
1362 // Let clients know that initialization was done with a direct
1363 // initializer.
1364 VDecl->setCXXDirectInitializer(true);
1365
1366 // FIXME: Add ExprTys and Constructor to the RealDecl as part of
1367 // the initializer.
Argyrios Kyrtzidis06ad1f52008-10-06 18:37:09 +00001368 return;
1369 }
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00001370
Argyrios Kyrtzidisce8e2922008-10-06 23:08:37 +00001371 if (NumExprs > 1) {
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00001372 Diag(CommaLocs[0], diag::err_builtin_direct_init_more_than_one_arg)
1373 << SourceRange(VDecl->getLocation(), RParenLoc);
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00001374 RealDecl->setInvalidDecl();
1375 return;
1376 }
1377
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00001378 // Let clients know that initialization was done with a direct initializer.
1379 VDecl->setCXXDirectInitializer(true);
Argyrios Kyrtzidisce8e2922008-10-06 23:08:37 +00001380
1381 assert(NumExprs == 1 && "Expected 1 expression");
1382 // Set the init expression, handles conversions.
1383 AddInitializerToDecl(Dcl, ExprTys[0]);
Argyrios Kyrtzidis73a0d882008-10-06 17:10:33 +00001384}
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001385
Douglas Gregorf03d7c72008-11-05 15:29:30 +00001386/// PerformInitializationByConstructor - Perform initialization by
1387/// constructor (C++ [dcl.init]p14), which may occur as part of
1388/// direct-initialization or copy-initialization. We are initializing
1389/// an object of type @p ClassType with the given arguments @p
1390/// Args. @p Loc is the location in the source code where the
1391/// initializer occurs (e.g., a declaration, member initializer,
1392/// functional cast, etc.) while @p Range covers the whole
1393/// initialization. @p InitEntity is the entity being initialized,
1394/// which may by the name of a declaration or a type. @p Kind is the
1395/// kind of initialization we're performing, which affects whether
1396/// explicit constructors will be considered. When successful, returns
Douglas Gregor18fe5682008-11-03 20:45:27 +00001397/// the constructor that will be used to perform the initialization;
Douglas Gregorf03d7c72008-11-05 15:29:30 +00001398/// when the initialization fails, emits a diagnostic and returns
1399/// null.
Douglas Gregor18fe5682008-11-03 20:45:27 +00001400CXXConstructorDecl *
Douglas Gregorf03d7c72008-11-05 15:29:30 +00001401Sema::PerformInitializationByConstructor(QualType ClassType,
1402 Expr **Args, unsigned NumArgs,
1403 SourceLocation Loc, SourceRange Range,
1404 std::string InitEntity,
1405 InitializationKind Kind) {
Douglas Gregor18fe5682008-11-03 20:45:27 +00001406 const RecordType *ClassRec = ClassType->getAsRecordType();
1407 assert(ClassRec && "Can only initialize a class type here");
1408
1409 // C++ [dcl.init]p14:
1410 //
1411 // If the initialization is direct-initialization, or if it is
1412 // copy-initialization where the cv-unqualified version of the
1413 // source type is the same class as, or a derived class of, the
1414 // class of the destination, constructors are considered. The
1415 // applicable constructors are enumerated (13.3.1.3), and the
1416 // best one is chosen through overload resolution (13.3). The
1417 // constructor so selected is called to initialize the object,
1418 // with the initializer expression(s) as its argument(s). If no
1419 // constructor applies, or the overload resolution is ambiguous,
1420 // the initialization is ill-formed.
Douglas Gregor18fe5682008-11-03 20:45:27 +00001421 const CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(ClassRec->getDecl());
1422 OverloadCandidateSet CandidateSet;
Douglas Gregorf03d7c72008-11-05 15:29:30 +00001423
1424 // Add constructors to the overload set.
1425 OverloadedFunctionDecl *Constructors
1426 = const_cast<OverloadedFunctionDecl *>(ClassDecl->getConstructors());
1427 for (OverloadedFunctionDecl::function_iterator Con
1428 = Constructors->function_begin();
1429 Con != Constructors->function_end(); ++Con) {
1430 CXXConstructorDecl *Constructor = cast<CXXConstructorDecl>(*Con);
1431 if ((Kind == IK_Direct) ||
1432 (Kind == IK_Copy && Constructor->isConvertingConstructor()) ||
1433 (Kind == IK_Default && Constructor->isDefaultConstructor()))
1434 AddOverloadCandidate(Constructor, Args, NumArgs, CandidateSet);
1435 }
1436
Douglas Gregor18fe5682008-11-03 20:45:27 +00001437 OverloadCandidateSet::iterator Best;
Douglas Gregor18fe5682008-11-03 20:45:27 +00001438 switch (BestViableFunction(CandidateSet, Best)) {
1439 case OR_Success:
1440 // We found a constructor. Return it.
1441 return cast<CXXConstructorDecl>(Best->Function);
1442
1443 case OR_No_Viable_Function:
1444 if (CandidateSet.empty())
Chris Lattnerd3a94e22008-11-20 06:06:08 +00001445 Diag(Loc, diag::err_ovl_no_viable_function_in_init) << InitEntity, Range;
Douglas Gregor18fe5682008-11-03 20:45:27 +00001446 else {
Chris Lattnerd3a94e22008-11-20 06:06:08 +00001447 Diag(Loc, diag::err_ovl_no_viable_function_in_init_with_cands)
1448 << InitEntity << Range;
Douglas Gregor18fe5682008-11-03 20:45:27 +00001449 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/false);
1450 }
1451 return 0;
1452
1453 case OR_Ambiguous:
Chris Lattnerd3a94e22008-11-20 06:06:08 +00001454 Diag(Loc, diag::err_ovl_ambiguous_init) << InitEntity << Range;
Douglas Gregor18fe5682008-11-03 20:45:27 +00001455 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true);
1456 return 0;
1457 }
1458
1459 return 0;
1460}
1461
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001462/// CompareReferenceRelationship - Compare the two types T1 and T2 to
1463/// determine whether they are reference-related,
1464/// reference-compatible, reference-compatible with added
1465/// qualification, or incompatible, for use in C++ initialization by
1466/// reference (C++ [dcl.ref.init]p4). Neither type can be a reference
1467/// type, and the first type (T1) is the pointee type of the reference
1468/// type being initialized.
1469Sema::ReferenceCompareResult
Douglas Gregor15da57e2008-10-29 02:00:59 +00001470Sema::CompareReferenceRelationship(QualType T1, QualType T2,
1471 bool& DerivedToBase) {
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001472 assert(!T1->isReferenceType() && "T1 must be the pointee type of the reference type");
1473 assert(!T2->isReferenceType() && "T2 cannot be a reference type");
1474
1475 T1 = Context.getCanonicalType(T1);
1476 T2 = Context.getCanonicalType(T2);
1477 QualType UnqualT1 = T1.getUnqualifiedType();
1478 QualType UnqualT2 = T2.getUnqualifiedType();
1479
1480 // C++ [dcl.init.ref]p4:
1481 // Given types “cv1 T1” and “cv2 T2,” “cv1 T1” is
1482 // reference-related to “cv2 T2” if T1 is the same type as T2, or
1483 // T1 is a base class of T2.
Douglas Gregor15da57e2008-10-29 02:00:59 +00001484 if (UnqualT1 == UnqualT2)
1485 DerivedToBase = false;
1486 else if (IsDerivedFrom(UnqualT2, UnqualT1))
1487 DerivedToBase = true;
1488 else
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001489 return Ref_Incompatible;
1490
1491 // At this point, we know that T1 and T2 are reference-related (at
1492 // least).
1493
1494 // C++ [dcl.init.ref]p4:
1495 // "cv1 T1” is reference-compatible with “cv2 T2” if T1 is
1496 // reference-related to T2 and cv1 is the same cv-qualification
1497 // as, or greater cv-qualification than, cv2. For purposes of
1498 // overload resolution, cases for which cv1 is greater
1499 // cv-qualification than cv2 are identified as
1500 // reference-compatible with added qualification (see 13.3.3.2).
1501 if (T1.getCVRQualifiers() == T2.getCVRQualifiers())
1502 return Ref_Compatible;
1503 else if (T1.isMoreQualifiedThan(T2))
1504 return Ref_Compatible_With_Added_Qualification;
1505 else
1506 return Ref_Related;
1507}
1508
1509/// CheckReferenceInit - Check the initialization of a reference
1510/// variable with the given initializer (C++ [dcl.init.ref]). Init is
1511/// the initializer (either a simple initializer or an initializer
Douglas Gregor3205a782008-10-29 23:31:03 +00001512/// list), and DeclType is the type of the declaration. When ICS is
1513/// non-null, this routine will compute the implicit conversion
1514/// sequence according to C++ [over.ics.ref] and will not produce any
1515/// diagnostics; when ICS is null, it will emit diagnostics when any
1516/// errors are found. Either way, a return value of true indicates
1517/// that there was a failure, a return value of false indicates that
1518/// the reference initialization succeeded.
Douglas Gregor225c41e2008-11-03 19:09:14 +00001519///
1520/// When @p SuppressUserConversions, user-defined conversions are
1521/// suppressed.
Douglas Gregor15da57e2008-10-29 02:00:59 +00001522bool
1523Sema::CheckReferenceInit(Expr *&Init, QualType &DeclType,
Douglas Gregor225c41e2008-11-03 19:09:14 +00001524 ImplicitConversionSequence *ICS,
1525 bool SuppressUserConversions) {
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001526 assert(DeclType->isReferenceType() && "Reference init needs a reference");
1527
1528 QualType T1 = DeclType->getAsReferenceType()->getPointeeType();
1529 QualType T2 = Init->getType();
1530
Douglas Gregor904eed32008-11-10 20:40:00 +00001531 // If the initializer is the address of an overloaded function, try
1532 // to resolve the overloaded function. If all goes well, T2 is the
1533 // type of the resulting function.
1534 if (T2->isOverloadType()) {
1535 FunctionDecl *Fn = ResolveAddressOfOverloadedFunction(Init, DeclType,
1536 ICS != 0);
1537 if (Fn) {
1538 // Since we're performing this reference-initialization for
1539 // real, update the initializer with the resulting function.
1540 if (!ICS)
1541 FixOverloadedFunctionReference(Init, Fn);
1542
1543 T2 = Fn->getType();
1544 }
1545 }
1546
Douglas Gregor15da57e2008-10-29 02:00:59 +00001547 // Compute some basic properties of the types and the initializer.
1548 bool DerivedToBase = false;
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001549 Expr::isLvalueResult InitLvalue = Init->isLvalue(Context);
Douglas Gregor15da57e2008-10-29 02:00:59 +00001550 ReferenceCompareResult RefRelationship
1551 = CompareReferenceRelationship(T1, T2, DerivedToBase);
1552
1553 // Most paths end in a failed conversion.
1554 if (ICS)
1555 ICS->ConversionKind = ImplicitConversionSequence::BadConversion;
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001556
1557 // C++ [dcl.init.ref]p5:
1558 // A reference to type “cv1 T1” is initialized by an expression
1559 // of type “cv2 T2” as follows:
1560
1561 // -- If the initializer expression
1562
1563 bool BindsDirectly = false;
1564 // -- is an lvalue (but is not a bit-field), and “cv1 T1” is
1565 // reference-compatible with “cv2 T2,” or
Douglas Gregor15da57e2008-10-29 02:00:59 +00001566 //
1567 // Note that the bit-field check is skipped if we are just computing
1568 // the implicit conversion sequence (C++ [over.best.ics]p2).
1569 if (InitLvalue == Expr::LV_Valid && (ICS || !Init->isBitField()) &&
1570 RefRelationship >= Ref_Compatible_With_Added_Qualification) {
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001571 BindsDirectly = true;
1572
Douglas Gregor15da57e2008-10-29 02:00:59 +00001573 if (ICS) {
1574 // C++ [over.ics.ref]p1:
1575 // When a parameter of reference type binds directly (8.5.3)
1576 // to an argument expression, the implicit conversion sequence
1577 // is the identity conversion, unless the argument expression
1578 // has a type that is a derived class of the parameter type,
1579 // in which case the implicit conversion sequence is a
1580 // derived-to-base Conversion (13.3.3.1).
1581 ICS->ConversionKind = ImplicitConversionSequence::StandardConversion;
1582 ICS->Standard.First = ICK_Identity;
1583 ICS->Standard.Second = DerivedToBase? ICK_Derived_To_Base : ICK_Identity;
1584 ICS->Standard.Third = ICK_Identity;
1585 ICS->Standard.FromTypePtr = T2.getAsOpaquePtr();
1586 ICS->Standard.ToTypePtr = T1.getAsOpaquePtr();
Douglas Gregorf70bdb92008-10-29 14:50:44 +00001587 ICS->Standard.ReferenceBinding = true;
1588 ICS->Standard.DirectBinding = true;
Douglas Gregor15da57e2008-10-29 02:00:59 +00001589
1590 // Nothing more to do: the inaccessibility/ambiguity check for
1591 // derived-to-base conversions is suppressed when we're
1592 // computing the implicit conversion sequence (C++
1593 // [over.best.ics]p2).
1594 return false;
1595 } else {
1596 // Perform the conversion.
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001597 // FIXME: Binding to a subobject of the lvalue is going to require
1598 // more AST annotation than this.
Douglas Gregoreb8f3062008-11-12 17:17:38 +00001599 ImpCastExprToType(Init, T1, /*isLvalue=*/true);
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001600 }
1601 }
1602
1603 // -- has a class type (i.e., T2 is a class type) and can be
1604 // implicitly converted to an lvalue of type “cv3 T3,”
1605 // where “cv1 T1” is reference-compatible with “cv3 T3”
1606 // 92) (this conversion is selected by enumerating the
1607 // applicable conversion functions (13.3.1.6) and choosing
1608 // the best one through overload resolution (13.3)),
Douglas Gregorcb9b9772008-11-10 16:14:15 +00001609 if (!SuppressUserConversions && T2->isRecordType()) {
1610 // FIXME: Look for conversions in base classes!
1611 CXXRecordDecl *T2RecordDecl
1612 = dyn_cast<CXXRecordDecl>(T2->getAsRecordType()->getDecl());
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001613
Douglas Gregorcb9b9772008-11-10 16:14:15 +00001614 OverloadCandidateSet CandidateSet;
1615 OverloadedFunctionDecl *Conversions
1616 = T2RecordDecl->getConversionFunctions();
1617 for (OverloadedFunctionDecl::function_iterator Func
1618 = Conversions->function_begin();
1619 Func != Conversions->function_end(); ++Func) {
1620 CXXConversionDecl *Conv = cast<CXXConversionDecl>(*Func);
1621
1622 // If the conversion function doesn't return a reference type,
1623 // it can't be considered for this conversion.
1624 // FIXME: This will change when we support rvalue references.
1625 if (Conv->getConversionType()->isReferenceType())
1626 AddConversionCandidate(Conv, Init, DeclType, CandidateSet);
1627 }
1628
1629 OverloadCandidateSet::iterator Best;
1630 switch (BestViableFunction(CandidateSet, Best)) {
1631 case OR_Success:
1632 // This is a direct binding.
1633 BindsDirectly = true;
1634
1635 if (ICS) {
1636 // C++ [over.ics.ref]p1:
1637 //
1638 // [...] If the parameter binds directly to the result of
1639 // applying a conversion function to the argument
1640 // expression, the implicit conversion sequence is a
1641 // user-defined conversion sequence (13.3.3.1.2), with the
1642 // second standard conversion sequence either an identity
1643 // conversion or, if the conversion function returns an
1644 // entity of a type that is a derived class of the parameter
1645 // type, a derived-to-base Conversion.
1646 ICS->ConversionKind = ImplicitConversionSequence::UserDefinedConversion;
1647 ICS->UserDefined.Before = Best->Conversions[0].Standard;
1648 ICS->UserDefined.After = Best->FinalConversion;
1649 ICS->UserDefined.ConversionFunction = Best->Function;
1650 assert(ICS->UserDefined.After.ReferenceBinding &&
1651 ICS->UserDefined.After.DirectBinding &&
1652 "Expected a direct reference binding!");
1653 return false;
1654 } else {
1655 // Perform the conversion.
1656 // FIXME: Binding to a subobject of the lvalue is going to require
1657 // more AST annotation than this.
Douglas Gregoreb8f3062008-11-12 17:17:38 +00001658 ImpCastExprToType(Init, T1, /*isLvalue=*/true);
Douglas Gregorcb9b9772008-11-10 16:14:15 +00001659 }
1660 break;
1661
1662 case OR_Ambiguous:
1663 assert(false && "Ambiguous reference binding conversions not implemented.");
1664 return true;
1665
1666 case OR_No_Viable_Function:
1667 // There was no suitable conversion; continue with other checks.
1668 break;
1669 }
1670 }
1671
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001672 if (BindsDirectly) {
1673 // C++ [dcl.init.ref]p4:
1674 // [...] In all cases where the reference-related or
1675 // reference-compatible relationship of two types is used to
1676 // establish the validity of a reference binding, and T1 is a
1677 // base class of T2, a program that necessitates such a binding
1678 // is ill-formed if T1 is an inaccessible (clause 11) or
1679 // ambiguous (10.2) base class of T2.
1680 //
1681 // Note that we only check this condition when we're allowed to
1682 // complain about errors, because we should not be checking for
1683 // ambiguity (or inaccessibility) unless the reference binding
1684 // actually happens.
Douglas Gregor15da57e2008-10-29 02:00:59 +00001685 if (DerivedToBase)
1686 return CheckDerivedToBaseConversion(T2, T1,
1687 Init->getSourceRange().getBegin(),
1688 Init->getSourceRange());
1689 else
1690 return false;
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001691 }
1692
1693 // -- Otherwise, the reference shall be to a non-volatile const
1694 // type (i.e., cv1 shall be const).
1695 if (T1.getCVRQualifiers() != QualType::Const) {
Douglas Gregor15da57e2008-10-29 02:00:59 +00001696 if (!ICS)
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001697 Diag(Init->getSourceRange().getBegin(),
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00001698 diag::err_not_reference_to_const_init)
1699 << T1.getAsString()
1700 << (InitLvalue != Expr::LV_Valid? "temporary" : "value")
1701 << T2.getAsString() << Init->getSourceRange();
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001702 return true;
1703 }
1704
1705 // -- If the initializer expression is an rvalue, with T2 a
1706 // class type, and “cv1 T1” is reference-compatible with
1707 // “cv2 T2,” the reference is bound in one of the
1708 // following ways (the choice is implementation-defined):
1709 //
1710 // -- The reference is bound to the object represented by
1711 // the rvalue (see 3.10) or to a sub-object within that
1712 // object.
1713 //
1714 // -- A temporary of type “cv1 T2” [sic] is created, and
1715 // a constructor is called to copy the entire rvalue
1716 // object into the temporary. The reference is bound to
1717 // the temporary or to a sub-object within the
1718 // temporary.
1719 //
1720 //
1721 // The constructor that would be used to make the copy
1722 // shall be callable whether or not the copy is actually
1723 // done.
1724 //
1725 // Note that C++0x [dcl.ref.init]p5 takes away this implementation
1726 // freedom, so we will always take the first option and never build
1727 // a temporary in this case. FIXME: We will, however, have to check
1728 // for the presence of a copy constructor in C++98/03 mode.
1729 if (InitLvalue != Expr::LV_Valid && T2->isRecordType() &&
Douglas Gregor15da57e2008-10-29 02:00:59 +00001730 RefRelationship >= Ref_Compatible_With_Added_Qualification) {
1731 if (ICS) {
1732 ICS->ConversionKind = ImplicitConversionSequence::StandardConversion;
1733 ICS->Standard.First = ICK_Identity;
1734 ICS->Standard.Second = DerivedToBase? ICK_Derived_To_Base : ICK_Identity;
1735 ICS->Standard.Third = ICK_Identity;
1736 ICS->Standard.FromTypePtr = T2.getAsOpaquePtr();
1737 ICS->Standard.ToTypePtr = T1.getAsOpaquePtr();
Douglas Gregorf70bdb92008-10-29 14:50:44 +00001738 ICS->Standard.ReferenceBinding = true;
1739 ICS->Standard.DirectBinding = false;
Douglas Gregor15da57e2008-10-29 02:00:59 +00001740 } else {
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001741 // FIXME: Binding to a subobject of the rvalue is going to require
1742 // more AST annotation than this.
Douglas Gregoreb8f3062008-11-12 17:17:38 +00001743 ImpCastExprToType(Init, T1, /*isLvalue=*/true);
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001744 }
1745 return false;
1746 }
1747
1748 // -- Otherwise, a temporary of type “cv1 T1” is created and
1749 // initialized from the initializer expression using the
1750 // rules for a non-reference copy initialization (8.5). The
1751 // reference is then bound to the temporary. If T1 is
1752 // reference-related to T2, cv1 must be the same
1753 // cv-qualification as, or greater cv-qualification than,
1754 // cv2; otherwise, the program is ill-formed.
1755 if (RefRelationship == Ref_Related) {
1756 // If cv1 == cv2 or cv1 is a greater cv-qualified than cv2, then
1757 // we would be reference-compatible or reference-compatible with
1758 // added qualification. But that wasn't the case, so the reference
1759 // initialization fails.
Douglas Gregor15da57e2008-10-29 02:00:59 +00001760 if (!ICS)
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001761 Diag(Init->getSourceRange().getBegin(),
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00001762 diag::err_reference_init_drops_quals)
1763 << T1.getAsString()
1764 << (InitLvalue != Expr::LV_Valid? "temporary" : "value")
1765 << T2.getAsString() << Init->getSourceRange();
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001766 return true;
1767 }
1768
1769 // Actually try to convert the initializer to T1.
Douglas Gregor15da57e2008-10-29 02:00:59 +00001770 if (ICS) {
1771 /// C++ [over.ics.ref]p2:
1772 ///
1773 /// When a parameter of reference type is not bound directly to
1774 /// an argument expression, the conversion sequence is the one
1775 /// required to convert the argument expression to the
1776 /// underlying type of the reference according to
1777 /// 13.3.3.1. Conceptually, this conversion sequence corresponds
1778 /// to copy-initializing a temporary of the underlying type with
1779 /// the argument expression. Any difference in top-level
1780 /// cv-qualification is subsumed by the initialization itself
1781 /// and does not constitute a conversion.
Douglas Gregor225c41e2008-11-03 19:09:14 +00001782 *ICS = TryImplicitConversion(Init, T1, SuppressUserConversions);
Douglas Gregor15da57e2008-10-29 02:00:59 +00001783 return ICS->ConversionKind == ImplicitConversionSequence::BadConversion;
1784 } else {
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001785 return PerformImplicitConversion(Init, T1);
Douglas Gregor15da57e2008-10-29 02:00:59 +00001786 }
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001787}
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00001788
1789/// CheckOverloadedOperatorDeclaration - Check whether the declaration
1790/// of this overloaded operator is well-formed. If so, returns false;
1791/// otherwise, emits appropriate diagnostics and returns true.
1792bool Sema::CheckOverloadedOperatorDeclaration(FunctionDecl *FnDecl) {
Douglas Gregor43c7bad2008-11-17 16:14:12 +00001793 assert(FnDecl && FnDecl->isOverloadedOperator() &&
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00001794 "Expected an overloaded operator declaration");
1795
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00001796 OverloadedOperatorKind Op = FnDecl->getOverloadedOperator();
1797
1798 // C++ [over.oper]p5:
1799 // The allocation and deallocation functions, operator new,
1800 // operator new[], operator delete and operator delete[], are
1801 // described completely in 3.7.3. The attributes and restrictions
1802 // found in the rest of this subclause do not apply to them unless
1803 // explicitly stated in 3.7.3.
1804 // FIXME: Write a separate routine for checking this. For now, just
1805 // allow it.
1806 if (Op == OO_New || Op == OO_Array_New ||
1807 Op == OO_Delete || Op == OO_Array_Delete)
1808 return false;
1809
1810 // C++ [over.oper]p6:
1811 // An operator function shall either be a non-static member
1812 // function or be a non-member function and have at least one
1813 // parameter whose type is a class, a reference to a class, an
1814 // enumeration, or a reference to an enumeration.
Douglas Gregor43c7bad2008-11-17 16:14:12 +00001815 if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(FnDecl)) {
1816 if (MethodDecl->isStatic())
1817 return Diag(FnDecl->getLocation(),
1818 diag::err_operator_overload_static,
1819 FnDecl->getName());
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00001820 } else {
1821 bool ClassOrEnumParam = false;
Douglas Gregor43c7bad2008-11-17 16:14:12 +00001822 for (FunctionDecl::param_iterator Param = FnDecl->param_begin(),
1823 ParamEnd = FnDecl->param_end();
1824 Param != ParamEnd; ++Param) {
1825 QualType ParamType = (*Param)->getType().getNonReferenceType();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00001826 if (ParamType->isRecordType() || ParamType->isEnumeralType()) {
1827 ClassOrEnumParam = true;
1828 break;
1829 }
1830 }
1831
Douglas Gregor43c7bad2008-11-17 16:14:12 +00001832 if (!ClassOrEnumParam)
1833 return Diag(FnDecl->getLocation(),
1834 diag::err_operator_overload_needs_class_or_enum,
1835 FnDecl->getName());
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00001836 }
1837
1838 // C++ [over.oper]p8:
1839 // An operator function cannot have default arguments (8.3.6),
1840 // except where explicitly stated below.
1841 //
1842 // Only the function-call operator allows default arguments
1843 // (C++ [over.call]p1).
1844 if (Op != OO_Call) {
1845 for (FunctionDecl::param_iterator Param = FnDecl->param_begin();
1846 Param != FnDecl->param_end(); ++Param) {
Douglas Gregor43c7bad2008-11-17 16:14:12 +00001847 if (Expr *DefArg = (*Param)->getDefaultArg())
1848 return Diag((*Param)->getLocation(),
Chris Lattnerd3a94e22008-11-20 06:06:08 +00001849 diag::err_operator_overload_default_arg)
1850 << FnDecl->getName() << DefArg->getSourceRange();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00001851 }
1852 }
1853
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00001854 static const bool OperatorUses[NUM_OVERLOADED_OPERATORS][3] = {
1855 { false, false, false }
1856#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
1857 , { Unary, Binary, MemberOnly }
1858#include "clang/Basic/OperatorKinds.def"
1859 };
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00001860
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00001861 bool CanBeUnaryOperator = OperatorUses[Op][0];
1862 bool CanBeBinaryOperator = OperatorUses[Op][1];
1863 bool MustBeMemberOperator = OperatorUses[Op][2];
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00001864
1865 // C++ [over.oper]p8:
1866 // [...] Operator functions cannot have more or fewer parameters
1867 // than the number required for the corresponding operator, as
1868 // described in the rest of this subclause.
Douglas Gregor43c7bad2008-11-17 16:14:12 +00001869 unsigned NumParams = FnDecl->getNumParams()
1870 + (isa<CXXMethodDecl>(FnDecl)? 1 : 0);
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00001871 if (Op != OO_Call &&
1872 ((NumParams == 1 && !CanBeUnaryOperator) ||
1873 (NumParams == 2 && !CanBeBinaryOperator) ||
1874 (NumParams < 1) || (NumParams > 2))) {
1875 // We have the wrong number of parameters.
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00001876 diag::kind DK;
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00001877 if (CanBeUnaryOperator && CanBeBinaryOperator) {
1878 if (NumParams == 1)
1879 DK = diag::err_operator_overload_must_be_unary_or_binary;
1880 else
1881 DK = diag::err_operator_overload_must_be_unary_or_binary;
1882 } else if (CanBeUnaryOperator) {
1883 if (NumParams == 1)
1884 DK = diag::err_operator_overload_must_be_unary;
1885 else
1886 DK = diag::err_operator_overload_must_be_unary_plural;
1887 } else if (CanBeBinaryOperator) {
1888 if (NumParams == 1)
1889 DK = diag::err_operator_overload_must_be_binary;
1890 else
1891 DK = diag::err_operator_overload_must_be_binary_plural;
1892 } else {
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00001893 assert(false && "All non-call overloaded operators are unary or binary!");
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00001894 }
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00001895
Chris Lattner83652232008-11-19 07:25:44 +00001896 return Diag(FnDecl->getLocation(), DK) << FnDecl->getName() << NumParams;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00001897 }
1898
Douglas Gregor43c7bad2008-11-17 16:14:12 +00001899 // Overloaded operators other than operator() cannot be variadic.
1900 if (Op != OO_Call &&
1901 FnDecl->getType()->getAsFunctionTypeProto()->isVariadic()) {
1902 return Diag(FnDecl->getLocation(),
1903 diag::err_operator_overload_variadic,
1904 FnDecl->getName());
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00001905 }
1906
1907 // Some operators must be non-static member functions.
Douglas Gregor43c7bad2008-11-17 16:14:12 +00001908 if (MustBeMemberOperator && !isa<CXXMethodDecl>(FnDecl)) {
1909 return Diag(FnDecl->getLocation(),
1910 diag::err_operator_overload_must_be_member,
1911 FnDecl->getName());
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00001912 }
1913
1914 // C++ [over.inc]p1:
1915 // The user-defined function called operator++ implements the
1916 // prefix and postfix ++ operator. If this function is a member
1917 // function with no parameters, or a non-member function with one
1918 // parameter of class or enumeration type, it defines the prefix
1919 // increment operator ++ for objects of that type. If the function
1920 // is a member function with one parameter (which shall be of type
1921 // int) or a non-member function with two parameters (the second
1922 // of which shall be of type int), it defines the postfix
1923 // increment operator ++ for objects of that type.
1924 if ((Op == OO_PlusPlus || Op == OO_MinusMinus) && NumParams == 2) {
1925 ParmVarDecl *LastParam = FnDecl->getParamDecl(FnDecl->getNumParams() - 1);
1926 bool ParamIsInt = false;
1927 if (const BuiltinType *BT = LastParam->getType()->getAsBuiltinType())
1928 ParamIsInt = BT->getKind() == BuiltinType::Int;
1929
1930 if (!ParamIsInt) {
Douglas Gregor02bcd4c2008-11-10 13:38:07 +00001931 diag::kind DK;
Douglas Gregor1adbab62008-11-17 15:03:30 +00001932 if (Op == OO_PlusPlus)
1933 DK = diag::err_operator_overload_post_inc_must_be_int;
1934 else
1935 DK = diag::err_operator_overload_post_dec_must_be_int;
Douglas Gregor43c7bad2008-11-17 16:14:12 +00001936 return Diag(LastParam->getLocation(), DK,
1937 Context.getCanonicalType(LastParam->getType()).getAsString());
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00001938 }
1939 }
1940
Douglas Gregor43c7bad2008-11-17 16:14:12 +00001941 return false;
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +00001942}