blob: 1559213fcb8e8bc2a5013d858f67c9f5867c856d [file] [log] [blame]
Chris Lattner4b009652007-07-25 00:24:17 +00001//===--- SemaDecl.cpp - Semantic Analysis for Declarations ----------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner959e5be2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattner4b009652007-07-25 00:24:17 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements semantic analysis for declarations.
11//
12//===----------------------------------------------------------------------===//
13
14#include "Sema.h"
Anders Carlssonc7436af2008-07-03 04:20:39 +000015#include "clang/AST/APValue.h"
Chris Lattner33aad6e2008-02-06 00:51:33 +000016#include "clang/AST/ASTConsumer.h"
Chris Lattner4b009652007-07-25 00:24:17 +000017#include "clang/AST/ASTContext.h"
Daniel Dunbar64789f82008-08-11 05:35:13 +000018#include "clang/AST/DeclObjC.h"
Chris Lattner6953a072008-06-26 18:38:35 +000019#include "clang/AST/ExprCXX.h"
Chris Lattner4b009652007-07-25 00:24:17 +000020#include "clang/Parse/DeclSpec.h"
Chris Lattner4b009652007-07-25 00:24:17 +000021#include "clang/Basic/TargetInfo.h"
Steve Naroffa9eae582008-01-30 23:46:05 +000022#include "clang/Basic/SourceManager.h"
23// FIXME: layering (ideally, Sema shouldn't be dependent on Lex API's)
Chris Lattner33aad6e2008-02-06 00:51:33 +000024#include "clang/Lex/Preprocessor.h"
Steve Naroffa9eae582008-01-30 23:46:05 +000025#include "clang/Lex/HeaderSearch.h"
Chris Lattner4b009652007-07-25 00:24:17 +000026#include "llvm/ADT/SmallSet.h"
Douglas Gregor39677622008-12-11 20:41:00 +000027#include "llvm/ADT/STLExtras.h"
Douglas Gregor6e71edc2008-12-23 21:05:05 +000028#include <algorithm>
29#include <functional>
Douglas Gregor39677622008-12-11 20:41:00 +000030
Chris Lattner4b009652007-07-25 00:24:17 +000031using namespace clang;
32
Steve Naroff7b36a1b2009-01-28 19:39:02 +000033Sema::TypeTy *Sema::getTypeName(IdentifierInfo &II, Scope *S,
34 const CXXScopeSpec *SS) {
Argiris Kirtzidis054a2632008-11-08 17:17:31 +000035 DeclContext *DC = 0;
Steve Naroffc349ee22009-01-29 00:07:50 +000036
Argiris Kirtzidis054a2632008-11-08 17:17:31 +000037 if (SS) {
38 if (SS->isInvalid())
39 return 0;
40 DC = static_cast<DeclContext*>(SS->getScopeRep());
41 }
Steve Naroffc349ee22009-01-29 00:07:50 +000042 LookupResult Result = DC ?
43 LookupDeclInContext(&II, Decl::IDNS_Ordinary, DC) :
44 LookupDeclInScope(&II, Decl::IDNS_Ordinary, S);
45
Douglas Gregor29dfa2f2009-01-15 00:26:24 +000046 Decl *IIDecl = 0;
47 switch (Result.getKind()) {
48 case LookupResult::NotFound:
49 case LookupResult::FoundOverloaded:
50 case LookupResult::AmbiguousBaseSubobjectTypes:
51 case LookupResult::AmbiguousBaseSubobjects:
52 // FIXME: In the event of an ambiguous lookup, we could visit all of
53 // the entities found to determine whether they are all types. This
54 // might provide better diagnostics.
55 return 0;
56
57 case LookupResult::Found:
58 IIDecl = Result.getAsDecl();
59 break;
60 }
61
62 if (isa<TypedefDecl>(IIDecl) ||
63 isa<ObjCInterfaceDecl>(IIDecl) ||
64 isa<TagDecl>(IIDecl) ||
65 isa<TemplateTypeParmDecl>(IIDecl))
Fariborz Jahanian23f968b2007-10-12 16:34:10 +000066 return IIDecl;
Steve Naroff81f1bba2007-09-06 21:24:23 +000067 return 0;
Chris Lattner4b009652007-07-25 00:24:17 +000068}
69
Argiris Kirtzidis054a2632008-11-08 17:17:31 +000070DeclContext *Sema::getContainingDC(DeclContext *DC) {
Argiris Kirtzidis38f16712008-07-01 10:37:29 +000071 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(DC)) {
Argiris Kirtzidis054a2632008-11-08 17:17:31 +000072 // A C++ out-of-line method will return to the file declaration context.
Argiris Kirtzidis881964b2008-11-09 23:41:00 +000073 if (MD->isOutOfLineDefinition())
74 return MD->getLexicalDeclContext();
Argiris Kirtzidis054a2632008-11-08 17:17:31 +000075
76 // A C++ inline method is parsed *after* the topmost class it was declared in
77 // is fully parsed (it's "complete").
78 // The parsing of a C++ inline method happens at the declaration context of
Argiris Kirtzidis9cd599b2008-11-19 18:01:13 +000079 // the topmost (non-nested) class it is lexically declared in.
Argiris Kirtzidis38f16712008-07-01 10:37:29 +000080 assert(isa<CXXRecordDecl>(MD->getParent()) && "C++ method not in Record.");
81 DC = MD->getParent();
Argiris Kirtzidis9cd599b2008-11-19 18:01:13 +000082 while (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(DC->getLexicalParent()))
Argiris Kirtzidis38f16712008-07-01 10:37:29 +000083 DC = RD;
84
85 // Return the declaration context of the topmost class the inline method is
86 // declared in.
87 return DC;
88 }
89
Argiris Kirtzidis881964b2008-11-09 23:41:00 +000090 if (isa<ObjCMethodDecl>(DC))
91 return Context.getTranslationUnitDecl();
92
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +000093 if (Decl *D = dyn_cast<Decl>(DC))
94 return D->getLexicalDeclContext();
Argiris Kirtzidis054a2632008-11-08 17:17:31 +000095
Argiris Kirtzidis9cd599b2008-11-19 18:01:13 +000096 return DC->getLexicalParent();
Argiris Kirtzidis38f16712008-07-01 10:37:29 +000097}
98
Douglas Gregor8acb7272008-12-11 16:49:14 +000099void Sema::PushDeclContext(Scope *S, DeclContext *DC) {
Argiris Kirtzidis054a2632008-11-08 17:17:31 +0000100 assert(getContainingDC(DC) == CurContext &&
Zhongxing Xu2c9b8102008-12-08 07:14:51 +0000101 "The next DeclContext should be lexically contained in the current one.");
Chris Lattneref87a202008-04-22 18:39:57 +0000102 CurContext = DC;
Douglas Gregor8acb7272008-12-11 16:49:14 +0000103 S->setEntity(DC);
Chris Lattnereee57c02008-04-04 06:12:32 +0000104}
105
Chris Lattnerf3874bc2008-04-06 04:47:34 +0000106void Sema::PopDeclContext() {
107 assert(CurContext && "DeclContext imbalance!");
Douglas Gregor8acb7272008-12-11 16:49:14 +0000108
Argiris Kirtzidis054a2632008-11-08 17:17:31 +0000109 CurContext = getContainingDC(CurContext);
Chris Lattnereee57c02008-04-04 06:12:32 +0000110}
111
Argiris Kirtzidis951f25b2008-04-12 00:47:19 +0000112/// Add this decl to the scope shadowed decl chains.
113void Sema::PushOnScopeChains(NamedDecl *D, Scope *S) {
Douglas Gregord8028382009-01-05 19:45:36 +0000114 // Move up the scope chain until we find the nearest enclosing
115 // non-transparent context. The declaration will be introduced into this
116 // scope.
117 while (S->getEntity() &&
118 ((DeclContext *)S->getEntity())->isTransparentContext())
119 S = S->getParent();
120
Argiris Kirtzidis951f25b2008-04-12 00:47:19 +0000121 S->AddDecl(D);
Argiris Kirtzidis59a9afb2008-05-09 23:39:43 +0000122
Douglas Gregor6e71edc2008-12-23 21:05:05 +0000123 // Add scoped declarations into their context, so that they can be
124 // found later. Declarations without a context won't be inserted
125 // into any context.
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +0000126 CurContext->addDecl(D);
Douglas Gregor6e71edc2008-12-23 21:05:05 +0000127
Argiris Kirtzidis59a9afb2008-05-09 23:39:43 +0000128 // C++ [basic.scope]p4:
129 // -- exactly one declaration shall declare a class name or
130 // enumeration name that is not a typedef name and the other
131 // declarations shall all refer to the same object or
132 // enumerator, or all refer to functions and function templates;
133 // in this case the class name or enumeration name is hidden.
134 if (TagDecl *TD = dyn_cast<TagDecl>(D)) {
135 // We are pushing the name of a tag (enum or class).
Douglas Gregor3a423132009-01-07 16:34:42 +0000136 if (CurContext->getLookupContext()
137 == TD->getDeclContext()->getLookupContext()) {
Douglas Gregor8acb7272008-12-11 16:49:14 +0000138 // We're pushing the tag into the current context, which might
139 // require some reshuffling in the identifier resolver.
140 IdentifierResolver::iterator
Douglas Gregor6e71edc2008-12-23 21:05:05 +0000141 I = IdResolver.begin(TD->getDeclName(), CurContext,
142 false/*LookInParentCtx*/),
143 IEnd = IdResolver.end();
144 if (I != IEnd && isDeclInScope(*I, CurContext, S)) {
145 NamedDecl *PrevDecl = *I;
146 for (; I != IEnd && isDeclInScope(*I, CurContext, S);
147 PrevDecl = *I, ++I) {
148 if (TD->declarationReplaces(*I)) {
149 // This is a redeclaration. Remove it from the chain and
150 // break out, so that we'll add in the shadowed
151 // declaration.
152 S->RemoveDecl(*I);
153 if (PrevDecl == *I) {
154 IdResolver.RemoveDecl(*I);
155 IdResolver.AddDecl(TD);
156 return;
157 } else {
158 IdResolver.RemoveDecl(*I);
159 break;
160 }
161 }
162 }
Argiris Kirtzidis59a9afb2008-05-09 23:39:43 +0000163
Douglas Gregor6e71edc2008-12-23 21:05:05 +0000164 // There is already a declaration with the same name in the same
165 // scope, which is not a tag declaration. It must be found
166 // before we find the new declaration, so insert the new
167 // declaration at the end of the chain.
168 IdResolver.AddShadowedDecl(TD, PrevDecl);
169
170 return;
Douglas Gregor8acb7272008-12-11 16:49:14 +0000171 }
Argiris Kirtzidis59a9afb2008-05-09 23:39:43 +0000172 }
Argiris Kirtzidis81a5feb2008-10-22 23:08:24 +0000173 } else if (getLangOptions().CPlusPlus && isa<FunctionDecl>(D)) {
Douglas Gregord2baafd2008-10-21 16:13:35 +0000174 // We are pushing the name of a function, which might be an
175 // overloaded name.
Douglas Gregor8acb7272008-12-11 16:49:14 +0000176 FunctionDecl *FD = cast<FunctionDecl>(D);
Douglas Gregor69e781f2009-01-06 23:51:29 +0000177 DeclContext *DC = FD->getDeclContext()->getLookupContext();
Douglas Gregor6e71edc2008-12-23 21:05:05 +0000178 IdentifierResolver::iterator Redecl
Douglas Gregord8028382009-01-05 19:45:36 +0000179 = std::find_if(IdResolver.begin(FD->getDeclName(), DC,
Douglas Gregor6e71edc2008-12-23 21:05:05 +0000180 false/*LookInParentCtx*/),
181 IdResolver.end(),
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +0000182 std::bind1st(std::mem_fun(&NamedDecl::declarationReplaces),
Douglas Gregor6e71edc2008-12-23 21:05:05 +0000183 FD));
184 if (Redecl != IdResolver.end()) {
185 // There is already a declaration of a function on our
186 // IdResolver chain. Replace it with this declaration.
187 S->RemoveDecl(*Redecl);
188 IdResolver.RemoveDecl(*Redecl);
Douglas Gregord2baafd2008-10-21 16:13:35 +0000189 }
Argiris Kirtzidis59a9afb2008-05-09 23:39:43 +0000190 }
Douglas Gregord2baafd2008-10-21 16:13:35 +0000191
Argiris Kirtzidis59a9afb2008-05-09 23:39:43 +0000192 IdResolver.AddDecl(D);
Argiris Kirtzidis951f25b2008-04-12 00:47:19 +0000193}
194
Steve Naroff9637a9b2007-10-09 22:01:59 +0000195void Sema::ActOnPopScope(SourceLocation Loc, Scope *S) {
Chris Lattnera7549902007-08-26 06:24:45 +0000196 if (S->decl_empty()) return;
Douglas Gregordd861062008-12-05 18:15:24 +0000197 assert((S->getFlags() & (Scope::DeclScope | Scope::TemplateParamScope)) &&
198 "Scope shouldn't contain decls!");
Argiris Kirtzidis59a9afb2008-05-09 23:39:43 +0000199
Chris Lattner4b009652007-07-25 00:24:17 +0000200 for (Scope::decl_iterator I = S->decl_begin(), E = S->decl_end();
201 I != E; ++I) {
Steve Naroffd21bc0d2007-09-13 18:10:37 +0000202 Decl *TmpD = static_cast<Decl*>(*I);
203 assert(TmpD && "This decl didn't get pushed??");
Argiris Kirtzidisa5c14b22008-06-10 01:32:09 +0000204
Douglas Gregor8acb7272008-12-11 16:49:14 +0000205 assert(isa<NamedDecl>(TmpD) && "Decl isn't NamedDecl?");
206 NamedDecl *D = cast<NamedDecl>(TmpD);
Argiris Kirtzidisa5c14b22008-06-10 01:32:09 +0000207
Douglas Gregor8acb7272008-12-11 16:49:14 +0000208 if (!D->getDeclName()) continue;
Chris Lattner2a1e2ed2008-04-11 07:00:53 +0000209
Douglas Gregor8acb7272008-12-11 16:49:14 +0000210 // Remove this name from our lexical scope.
211 IdResolver.RemoveDecl(D);
Chris Lattner4b009652007-07-25 00:24:17 +0000212 }
213}
214
Steve Naroffe57c21a2008-04-01 23:04:06 +0000215/// getObjCInterfaceDecl - Look up a for a class declaration in the scope.
216/// return 0 if one not found.
Steve Naroffe57c21a2008-04-01 23:04:06 +0000217ObjCInterfaceDecl *Sema::getObjCInterfaceDecl(IdentifierInfo *Id) {
Steve Naroff15208162008-04-02 18:30:49 +0000218 // The third "scope" argument is 0 since we aren't enabling lazy built-in
219 // creation from this context.
Steve Naroffc349ee22009-01-29 00:07:50 +0000220 Decl *IDecl = LookupDeclInScope(Id, Decl::IDNS_Ordinary, 0);
Fariborz Jahaniandc36dc12007-10-12 19:38:20 +0000221
Steve Naroff6384a012008-04-02 14:35:35 +0000222 return dyn_cast_or_null<ObjCInterfaceDecl>(IDecl);
Fariborz Jahaniandc36dc12007-10-12 19:38:20 +0000223}
224
Douglas Gregor5eca99e2009-01-12 18:45:55 +0000225/// getNonFieldDeclScope - Retrieves the innermost scope, starting
226/// from S, where a non-field would be declared. This routine copes
227/// with the difference between C and C++ scoping rules in structs and
228/// unions. For example, the following code is well-formed in C but
229/// ill-formed in C++:
230/// @code
231/// struct S6 {
232/// enum { BAR } e;
233/// };
234///
235/// void test_S6() {
236/// struct S6 a;
237/// a.e = BAR;
238/// }
239/// @endcode
240/// For the declaration of BAR, this routine will return a different
241/// scope. The scope S will be the scope of the unnamed enumeration
242/// within S6. In C++, this routine will return the scope associated
243/// with S6, because the enumeration's scope is a transparent
244/// context but structures can contain non-field names. In C, this
245/// routine will return the translation unit scope, since the
246/// enumeration's scope is a transparent context and structures cannot
247/// contain non-field names.
248Scope *Sema::getNonFieldDeclScope(Scope *S) {
249 while (((S->getFlags() & Scope::DeclScope) == 0) ||
250 (S->getEntity() &&
251 ((DeclContext *)S->getEntity())->isTransparentContext()) ||
252 (S->isClassScope() && !getLangOptions().CPlusPlus))
253 S = S->getParent();
254 return S;
255}
256
Steve Naroffc349ee22009-01-29 00:07:50 +0000257/// LookupDeclInScope - Look up the inner-most declaration in the specified
Douglas Gregor5ff0ee52008-12-30 03:27:21 +0000258/// namespace. NamespaceNameOnly - during lookup only namespace names
259/// are considered as required in C++ [basic.lookup.udir] 3.4.6.p1
260/// 'When looking up a namespace-name in a using-directive or
261/// namespace-alias-definition, only namespace names are considered.'
Douglas Gregor78d70132009-01-14 22:20:51 +0000262///
263/// Note: The use of this routine is deprecated. Please use
264/// LookupName, LookupQualifiedName, or LookupParsedName instead.
265Sema::LookupResult
Steve Naroffc349ee22009-01-29 00:07:50 +0000266Sema::LookupDeclInScope(DeclarationName Name, unsigned NSI, Scope *S,
267 bool LookInParent) {
Douglas Gregor78d70132009-01-14 22:20:51 +0000268 LookupCriteria::NameKind Kind;
269 if (NSI == Decl::IDNS_Ordinary) {
Steve Naroff98446332009-01-28 16:09:22 +0000270 Kind = LookupCriteria::Ordinary;
Douglas Gregor78d70132009-01-14 22:20:51 +0000271 } else if (NSI == Decl::IDNS_Tag)
272 Kind = LookupCriteria::Tag;
Chris Lattner50500f62009-01-16 19:44:00 +0000273 else {
274 assert(NSI == Decl::IDNS_Member &&"Unable to grok LookupDecl NSI argument");
Douglas Gregor78d70132009-01-14 22:20:51 +0000275 Kind = LookupCriteria::Member;
Chris Lattner50500f62009-01-16 19:44:00 +0000276 }
Douglas Gregor78d70132009-01-14 22:20:51 +0000277 // Unqualified lookup
278 return LookupName(S, Name,
279 LookupCriteria(Kind, !LookInParent,
280 getLangOptions().CPlusPlus));
Chris Lattner4b009652007-07-25 00:24:17 +0000281}
282
Steve Naroffc349ee22009-01-29 00:07:50 +0000283Sema::LookupResult
284Sema::LookupDeclInContext(DeclarationName Name, unsigned NSI,
285 const DeclContext *LookupCtx,
286 bool LookInParent) {
287 assert(LookupCtx && "LookupDeclInContext(): Missing DeclContext");
288 LookupCriteria::NameKind Kind;
289 if (NSI == Decl::IDNS_Ordinary) {
290 Kind = LookupCriteria::Ordinary;
291 } else if (NSI == Decl::IDNS_Tag)
292 Kind = LookupCriteria::Tag;
293 else {
294 assert(NSI == Decl::IDNS_Member &&"Unable to grok LookupDecl NSI argument");
295 Kind = LookupCriteria::Member;
296 }
297 return LookupQualifiedName(const_cast<DeclContext *>(LookupCtx), Name,
298 LookupCriteria(Kind, !LookInParent,
299 getLangOptions().CPlusPlus));
300}
301
Chris Lattnera9c87f22008-05-05 22:18:14 +0000302void Sema::InitBuiltinVaListType() {
Anders Carlsson36760332007-10-15 20:28:48 +0000303 if (!Context.getBuiltinVaListType().isNull())
304 return;
305
306 IdentifierInfo *VaIdent = &Context.Idents.get("__builtin_va_list");
Steve Naroffc349ee22009-01-29 00:07:50 +0000307 Decl *VaDecl = LookupDeclInScope(VaIdent, Decl::IDNS_Ordinary, TUScope);
Steve Naroffbc8c52e2007-10-18 22:17:45 +0000308 TypedefDecl *VaTypedef = cast<TypedefDecl>(VaDecl);
Anders Carlsson36760332007-10-15 20:28:48 +0000309 Context.setBuiltinVaListType(Context.getTypedefType(VaTypedef));
310}
311
Chris Lattner4b009652007-07-25 00:24:17 +0000312/// LazilyCreateBuiltin - The specified Builtin-ID was first used at file scope.
313/// lazily create a decl for it.
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +0000314NamedDecl *Sema::LazilyCreateBuiltin(IdentifierInfo *II, unsigned bid,
315 Scope *S) {
Chris Lattner4b009652007-07-25 00:24:17 +0000316 Builtin::ID BID = (Builtin::ID)bid;
317
Chris Lattnerb23469f2008-09-28 05:54:29 +0000318 if (Context.BuiltinInfo.hasVAListUse(BID))
Anders Carlsson36760332007-10-15 20:28:48 +0000319 InitBuiltinVaListType();
320
Anders Carlssonfb5b1e82007-10-11 01:00:40 +0000321 QualType R = Context.BuiltinInfo.GetBuiltinType(BID, Context);
Argiris Kirtzidis9d0d8bf2008-04-17 14:47:13 +0000322 FunctionDecl *New = FunctionDecl::Create(Context,
323 Context.getTranslationUnitDecl(),
Chris Lattnereee57c02008-04-04 06:12:32 +0000324 SourceLocation(), II, R,
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +0000325 FunctionDecl::Extern, false);
Chris Lattner4b009652007-07-25 00:24:17 +0000326
Chris Lattnera9c87f22008-05-05 22:18:14 +0000327 // Create Decl objects for each parameter, adding them to the
328 // FunctionDecl.
329 if (FunctionTypeProto *FT = dyn_cast<FunctionTypeProto>(R)) {
330 llvm::SmallVector<ParmVarDecl*, 16> Params;
331 for (unsigned i = 0, e = FT->getNumArgs(); i != e; ++i)
332 Params.push_back(ParmVarDecl::Create(Context, New, SourceLocation(), 0,
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +0000333 FT->getArgType(i), VarDecl::None, 0));
Ted Kremenek8494c962009-01-14 00:42:25 +0000334 New->setParams(Context, &Params[0], Params.size());
Chris Lattnera9c87f22008-05-05 22:18:14 +0000335 }
336
337
338
Chris Lattner2a1e2ed2008-04-11 07:00:53 +0000339 // TUScope is the translation-unit scope to insert this function into.
Douglas Gregord394a272009-01-09 18:51:29 +0000340 // FIXME: This is hideous. We need to teach PushOnScopeChains to
341 // relate Scopes to DeclContexts, and probably eliminate CurContext
342 // entirely, but we're not there yet.
343 DeclContext *SavedContext = CurContext;
344 CurContext = Context.getTranslationUnitDecl();
Argiris Kirtzidis59a9afb2008-05-09 23:39:43 +0000345 PushOnScopeChains(New, TUScope);
Douglas Gregord394a272009-01-09 18:51:29 +0000346 CurContext = SavedContext;
Chris Lattner4b009652007-07-25 00:24:17 +0000347 return New;
348}
349
Sebastian Redlb93b49c2008-11-11 11:37:55 +0000350/// GetStdNamespace - This method gets the C++ "std" namespace. This is where
351/// everything from the standard library is defined.
352NamespaceDecl *Sema::GetStdNamespace() {
353 if (!StdNamespace) {
Chris Lattnerf0939602008-11-20 05:45:14 +0000354 IdentifierInfo *StdIdent = &PP.getIdentifierTable().get("std");
Sebastian Redlb93b49c2008-11-11 11:37:55 +0000355 DeclContext *Global = Context.getTranslationUnitDecl();
Steve Naroffc349ee22009-01-29 00:07:50 +0000356 Decl *Std = LookupDeclInContext(StdIdent, Decl::IDNS_Ordinary, Global);
Sebastian Redlb93b49c2008-11-11 11:37:55 +0000357 StdNamespace = dyn_cast_or_null<NamespaceDecl>(Std);
358 }
359 return StdNamespace;
360}
361
Chris Lattner4b009652007-07-25 00:24:17 +0000362/// MergeTypeDefDecl - We just parsed a typedef 'New' which has the same name
363/// and scope as a previous declaration 'Old'. Figure out how to resolve this
364/// situation, merging decls or emitting diagnostics as appropriate.
365///
Steve Naroffe57c21a2008-04-01 23:04:06 +0000366TypedefDecl *Sema::MergeTypeDefDecl(TypedefDecl *New, Decl *OldD) {
Fariborz Jahaniande939672009-01-16 19:58:32 +0000367 bool objc_types = false;
Steve Naroff453a8782008-09-09 14:32:20 +0000368 // Allow multiple definitions for ObjC built-in typedefs.
369 // FIXME: Verify the underlying types are equivalent!
370 if (getLangOptions().ObjC1) {
Chris Lattner6d16b052008-11-20 05:41:43 +0000371 const IdentifierInfo *TypeID = New->getIdentifier();
372 switch (TypeID->getLength()) {
373 default: break;
374 case 2:
375 if (!TypeID->isStr("id"))
376 break;
Steve Naroff453a8782008-09-09 14:32:20 +0000377 Context.setObjCIdType(New);
Fariborz Jahaniande939672009-01-16 19:58:32 +0000378 objc_types = true;
379 break;
Chris Lattner6d16b052008-11-20 05:41:43 +0000380 case 5:
381 if (!TypeID->isStr("Class"))
382 break;
Steve Naroff453a8782008-09-09 14:32:20 +0000383 Context.setObjCClassType(New);
Fariborz Jahaniande939672009-01-16 19:58:32 +0000384 objc_types = true;
Steve Naroff453a8782008-09-09 14:32:20 +0000385 return New;
Chris Lattner6d16b052008-11-20 05:41:43 +0000386 case 3:
387 if (!TypeID->isStr("SEL"))
388 break;
Steve Naroff453a8782008-09-09 14:32:20 +0000389 Context.setObjCSelType(New);
Fariborz Jahaniande939672009-01-16 19:58:32 +0000390 objc_types = true;
Steve Naroff453a8782008-09-09 14:32:20 +0000391 return New;
Chris Lattner6d16b052008-11-20 05:41:43 +0000392 case 8:
393 if (!TypeID->isStr("Protocol"))
394 break;
Steve Naroff453a8782008-09-09 14:32:20 +0000395 Context.setObjCProtoType(New->getUnderlyingType());
Fariborz Jahaniande939672009-01-16 19:58:32 +0000396 objc_types = true;
Steve Naroff453a8782008-09-09 14:32:20 +0000397 return New;
398 }
399 // Fall through - the typedef name was not a builtin type.
400 }
Douglas Gregorb31f2942009-01-28 17:15:10 +0000401 // Verify the old decl was also a type.
402 TypeDecl *Old = dyn_cast<TypeDecl>(OldD);
Chris Lattner4b009652007-07-25 00:24:17 +0000403 if (!Old) {
Douglas Gregorb31f2942009-01-28 17:15:10 +0000404 Diag(New->getLocation(), diag::err_redefinition_different_kind)
Chris Lattnerb1753422008-11-23 21:45:46 +0000405 << New->getDeclName();
Fariborz Jahaniande939672009-01-16 19:58:32 +0000406 if (!objc_types)
407 Diag(OldD->getLocation(), diag::note_previous_definition);
Chris Lattner4b009652007-07-25 00:24:17 +0000408 return New;
409 }
Douglas Gregorb31f2942009-01-28 17:15:10 +0000410
411 // Determine the "old" type we'll use for checking and diagnostics.
412 QualType OldType;
413 if (TypedefDecl *OldTypedef = dyn_cast<TypedefDecl>(Old))
414 OldType = OldTypedef->getUnderlyingType();
415 else
416 OldType = Context.getTypeDeclType(Old);
417
Chris Lattnerbef8d622008-07-25 18:44:27 +0000418 // If the typedef types are not identical, reject them in all languages and
419 // with any extensions enabled.
Douglas Gregorb31f2942009-01-28 17:15:10 +0000420
421 if (OldType != New->getUnderlyingType() &&
422 Context.getCanonicalType(OldType) !=
Chris Lattnerbef8d622008-07-25 18:44:27 +0000423 Context.getCanonicalType(New->getUnderlyingType())) {
Chris Lattner8d756812008-11-20 06:13:02 +0000424 Diag(New->getLocation(), diag::err_redefinition_different_typedef)
Douglas Gregorb31f2942009-01-28 17:15:10 +0000425 << New->getUnderlyingType() << OldType;
Fariborz Jahaniande939672009-01-16 19:58:32 +0000426 if (!objc_types)
427 Diag(Old->getLocation(), diag::note_previous_definition);
Douglas Gregord1675382009-01-09 19:42:16 +0000428 return New;
Chris Lattnerbef8d622008-07-25 18:44:27 +0000429 }
Fariborz Jahaniande939672009-01-16 19:58:32 +0000430 if (objc_types) return New;
Eli Friedman324d5032008-06-11 06:20:39 +0000431 if (getLangOptions().Microsoft) return New;
432
Douglas Gregor49ba1b72008-11-21 16:29:06 +0000433 // C++ [dcl.typedef]p2:
434 // In a given non-class scope, a typedef specifier can be used to
435 // redefine the name of any type declared in that scope to refer
436 // to the type to which it already refers.
437 if (getLangOptions().CPlusPlus && !isa<CXXRecordDecl>(CurContext))
438 return New;
439
440 // In C, redeclaration of a type is a constraint violation (6.7.2.3p1).
Steve Naroffa9eae582008-01-30 23:46:05 +0000441 // Apparently GCC, Intel, and Sun all silently ignore the redeclaration if
442 // *either* declaration is in a system header. The code below implements
443 // this adhoc compatibility rule. FIXME: The following code will not
444 // work properly when compiling ".i" files (containing preprocessed output).
Daniel Dunbar4dbd8572008-09-12 18:10:20 +0000445 if (PP.getDiagnostics().getSuppressSystemWarnings()) {
446 SourceManager &SrcMgr = Context.getSourceManager();
447 if (SrcMgr.isInSystemHeader(Old->getLocation()))
448 return New;
449 if (SrcMgr.isInSystemHeader(New->getLocation()))
450 return New;
451 }
Eli Friedman324d5032008-06-11 06:20:39 +0000452
Chris Lattnerb1753422008-11-23 21:45:46 +0000453 Diag(New->getLocation(), diag::err_redefinition) << New->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +0000454 Diag(Old->getLocation(), diag::note_previous_definition);
Chris Lattner4b009652007-07-25 00:24:17 +0000455 return New;
456}
457
Chris Lattner6953a072008-06-26 18:38:35 +0000458/// DeclhasAttr - returns true if decl Declaration already has the target
459/// attribute.
Chris Lattner402b3372008-03-03 03:28:21 +0000460static bool DeclHasAttr(const Decl *decl, const Attr *target) {
461 for (const Attr *attr = decl->getAttrs(); attr; attr = attr->getNext())
462 if (attr->getKind() == target->getKind())
463 return true;
464
465 return false;
466}
467
468/// MergeAttributes - append attributes from the Old decl to the New one.
469static void MergeAttributes(Decl *New, Decl *Old) {
470 Attr *attr = const_cast<Attr*>(Old->getAttrs()), *tmp;
471
Chris Lattner402b3372008-03-03 03:28:21 +0000472 while (attr) {
473 tmp = attr;
474 attr = attr->getNext();
475
476 if (!DeclHasAttr(New, tmp)) {
Anton Korobeynikovb27a8702008-12-26 00:52:02 +0000477 tmp->setInherited(true);
Chris Lattner402b3372008-03-03 03:28:21 +0000478 New->addAttr(tmp);
479 } else {
480 tmp->setNext(0);
481 delete(tmp);
482 }
483 }
Nuno Lopes77654342008-06-01 22:53:53 +0000484
485 Old->invalidateAttrs();
Chris Lattner402b3372008-03-03 03:28:21 +0000486}
487
Chris Lattner3e254fb2008-04-08 04:40:51 +0000488/// MergeFunctionDecl - We just parsed a function 'New' from
489/// declarator D which has the same name and scope as a previous
490/// declaration 'Old'. Figure out how to resolve this situation,
491/// merging decls or emitting diagnostics as appropriate.
Douglas Gregord2baafd2008-10-21 16:13:35 +0000492/// Redeclaration will be set true if this New is a redeclaration OldD.
493///
494/// In C++, New and Old must be declarations that are not
495/// overloaded. Use IsOverload to determine whether New and Old are
496/// overloaded, and to select the Old declaration that New should be
497/// merged with.
Douglas Gregor42214c52008-04-21 02:02:58 +0000498FunctionDecl *
499Sema::MergeFunctionDecl(FunctionDecl *New, Decl *OldD, bool &Redeclaration) {
Douglas Gregord2baafd2008-10-21 16:13:35 +0000500 assert(!isa<OverloadedFunctionDecl>(OldD) &&
501 "Cannot merge with an overloaded function declaration");
502
Douglas Gregor42214c52008-04-21 02:02:58 +0000503 Redeclaration = false;
Chris Lattner4b009652007-07-25 00:24:17 +0000504 // Verify the old decl was also a function.
505 FunctionDecl *Old = dyn_cast<FunctionDecl>(OldD);
506 if (!Old) {
Chris Lattner8d756812008-11-20 06:13:02 +0000507 Diag(New->getLocation(), diag::err_redefinition_different_kind)
Chris Lattnerb1753422008-11-23 21:45:46 +0000508 << New->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +0000509 Diag(OldD->getLocation(), diag::note_previous_definition);
Chris Lattner4b009652007-07-25 00:24:17 +0000510 return New;
511 }
Douglas Gregord2baafd2008-10-21 16:13:35 +0000512
513 // Determine whether the previous declaration was a definition,
514 // implicit declaration, or a declaration.
515 diag::kind PrevDiag;
516 if (Old->isThisDeclarationADefinition())
Chris Lattner1336cab2008-11-23 23:12:31 +0000517 PrevDiag = diag::note_previous_definition;
Douglas Gregord2baafd2008-10-21 16:13:35 +0000518 else if (Old->isImplicit())
Chris Lattner1336cab2008-11-23 23:12:31 +0000519 PrevDiag = diag::note_previous_implicit_declaration;
Douglas Gregord2baafd2008-10-21 16:13:35 +0000520 else
Chris Lattner1336cab2008-11-23 23:12:31 +0000521 PrevDiag = diag::note_previous_declaration;
Chris Lattner3e254fb2008-04-08 04:40:51 +0000522
Chris Lattner42a21742008-04-06 23:10:54 +0000523 QualType OldQType = Context.getCanonicalType(Old->getType());
524 QualType NewQType = Context.getCanonicalType(New->getType());
Chris Lattner60476ff2007-11-20 19:04:50 +0000525
Douglas Gregord2baafd2008-10-21 16:13:35 +0000526 if (getLangOptions().CPlusPlus) {
527 // (C++98 13.1p2):
528 // Certain function declarations cannot be overloaded:
529 // -- Function declarations that differ only in the return type
530 // cannot be overloaded.
531 QualType OldReturnType
532 = cast<FunctionType>(OldQType.getTypePtr())->getResultType();
533 QualType NewReturnType
534 = cast<FunctionType>(NewQType.getTypePtr())->getResultType();
535 if (OldReturnType != NewReturnType) {
536 Diag(New->getLocation(), diag::err_ovl_diff_return_type);
537 Diag(Old->getLocation(), PrevDiag);
Douglas Gregorddfd9d52008-12-23 00:26:44 +0000538 Redeclaration = true;
Douglas Gregord2baafd2008-10-21 16:13:35 +0000539 return New;
540 }
541
542 const CXXMethodDecl* OldMethod = dyn_cast<CXXMethodDecl>(Old);
543 const CXXMethodDecl* NewMethod = dyn_cast<CXXMethodDecl>(New);
544 if (OldMethod && NewMethod) {
545 // -- Member function declarations with the same name and the
546 // same parameter types cannot be overloaded if any of them
547 // is a static member function declaration.
548 if (OldMethod->isStatic() || NewMethod->isStatic()) {
549 Diag(New->getLocation(), diag::err_ovl_static_nonstatic_member);
550 Diag(Old->getLocation(), PrevDiag);
551 return New;
552 }
Douglas Gregorb9213832008-12-15 21:24:18 +0000553
554 // C++ [class.mem]p1:
555 // [...] A member shall not be declared twice in the
556 // member-specification, except that a nested class or member
557 // class template can be declared and then later defined.
558 if (OldMethod->getLexicalDeclContext() ==
559 NewMethod->getLexicalDeclContext()) {
560 unsigned NewDiag;
561 if (isa<CXXConstructorDecl>(OldMethod))
562 NewDiag = diag::err_constructor_redeclared;
563 else if (isa<CXXDestructorDecl>(NewMethod))
564 NewDiag = diag::err_destructor_redeclared;
565 else if (isa<CXXConversionDecl>(NewMethod))
566 NewDiag = diag::err_conv_function_redeclared;
567 else
568 NewDiag = diag::err_member_redeclared;
569
570 Diag(New->getLocation(), NewDiag);
571 Diag(Old->getLocation(), PrevDiag);
572 }
Douglas Gregord2baafd2008-10-21 16:13:35 +0000573 }
574
575 // (C++98 8.3.5p3):
576 // All declarations for a function shall agree exactly in both the
577 // return type and the parameter-type-list.
578 if (OldQType == NewQType) {
579 // We have a redeclaration.
580 MergeAttributes(New, Old);
581 Redeclaration = true;
582 return MergeCXXFunctionDecl(New, Old);
583 }
584
585 // Fall through for conflicting redeclarations and redefinitions.
Douglas Gregor42214c52008-04-21 02:02:58 +0000586 }
Chris Lattner3e254fb2008-04-08 04:40:51 +0000587
588 // C: Function types need to be compatible, not identical. This handles
Steve Naroff1d5bd642008-01-14 20:51:29 +0000589 // duplicate function decls like "void f(int); void f(enum X);" properly.
Chris Lattner3e254fb2008-04-08 04:40:51 +0000590 if (!getLangOptions().CPlusPlus &&
Eli Friedman0d9549b2008-08-22 00:56:42 +0000591 Context.typesAreCompatible(OldQType, NewQType)) {
Douglas Gregor42214c52008-04-21 02:02:58 +0000592 MergeAttributes(New, Old);
593 Redeclaration = true;
Steve Naroff1d5bd642008-01-14 20:51:29 +0000594 return New;
Chris Lattner3e254fb2008-04-08 04:40:51 +0000595 }
Chris Lattner1470b072007-11-06 06:07:26 +0000596
Steve Naroff6c9e7922008-01-16 15:01:34 +0000597 // A function that has already been declared has been redeclared or defined
598 // with a different type- show appropriate diagnostic
Steve Naroff6c9e7922008-01-16 15:01:34 +0000599
Chris Lattner4b009652007-07-25 00:24:17 +0000600 // TODO: CHECK FOR CONFLICTS, multiple decls with same name in one scope.
601 // TODO: This is totally simplistic. It should handle merging functions
602 // together etc, merging extern int X; int X; ...
Chris Lattner271d4c22008-11-24 05:29:24 +0000603 Diag(New->getLocation(), diag::err_conflicting_types) << New->getDeclName();
Steve Naroff6c9e7922008-01-16 15:01:34 +0000604 Diag(Old->getLocation(), PrevDiag);
Chris Lattner4b009652007-07-25 00:24:17 +0000605 return New;
606}
607
Steve Naroffb5e78152008-08-08 17:50:35 +0000608/// Predicate for C "tentative" external object definitions (C99 6.9.2).
Steve Naroffd5802092008-08-10 15:28:06 +0000609static bool isTentativeDefinition(VarDecl *VD) {
Steve Naroffb5e78152008-08-08 17:50:35 +0000610 if (VD->isFileVarDecl())
611 return (!VD->getInit() &&
612 (VD->getStorageClass() == VarDecl::None ||
613 VD->getStorageClass() == VarDecl::Static));
614 return false;
615}
616
617/// CheckForFileScopedRedefinitions - Make sure we forgo redefinition errors
618/// when dealing with C "tentative" external object definitions (C99 6.9.2).
619void Sema::CheckForFileScopedRedefinitions(Scope *S, VarDecl *VD) {
620 bool VDIsTentative = isTentativeDefinition(VD);
Steve Naroff4b6bd3c2008-08-10 15:20:13 +0000621 bool VDIsIncompleteArray = VD->getType()->isIncompleteArrayType();
Steve Naroffb5e78152008-08-08 17:50:35 +0000622
Douglas Gregor3a423132009-01-07 16:34:42 +0000623 // FIXME: I don't think this will actually see all of the
Douglas Gregor6e71edc2008-12-23 21:05:05 +0000624 // redefinitions. Can't we check this property on-the-fly?
Steve Naroffb5e78152008-08-08 17:50:35 +0000625 for (IdentifierResolver::iterator
626 I = IdResolver.begin(VD->getIdentifier(),
627 VD->getDeclContext(), false/*LookInParentCtx*/),
628 E = IdResolver.end(); I != E; ++I) {
Argiris Kirtzidis90842b62008-09-09 21:18:04 +0000629 if (*I != VD && isDeclInScope(*I, VD->getDeclContext(), S)) {
Steve Naroffb5e78152008-08-08 17:50:35 +0000630 VarDecl *OldDecl = dyn_cast<VarDecl>(*I);
631
Steve Naroff4b6bd3c2008-08-10 15:20:13 +0000632 // Handle the following case:
633 // int a[10];
634 // int a[]; - the code below makes sure we set the correct type.
635 // int a[11]; - this is an error, size isn't 10.
636 if (OldDecl && VDIsTentative && VDIsIncompleteArray &&
637 OldDecl->getType()->isConstantArrayType())
638 VD->setType(OldDecl->getType());
639
Steve Naroffb5e78152008-08-08 17:50:35 +0000640 // Check for "tentative" definitions. We can't accomplish this in
641 // MergeVarDecl since the initializer hasn't been attached.
642 if (!OldDecl || isTentativeDefinition(OldDecl) || VDIsTentative)
643 continue;
644
645 // Handle __private_extern__ just like extern.
646 if (OldDecl->getStorageClass() != VarDecl::Extern &&
647 OldDecl->getStorageClass() != VarDecl::PrivateExtern &&
648 VD->getStorageClass() != VarDecl::Extern &&
649 VD->getStorageClass() != VarDecl::PrivateExtern) {
Chris Lattnerb1753422008-11-23 21:45:46 +0000650 Diag(VD->getLocation(), diag::err_redefinition) << VD->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +0000651 Diag(OldDecl->getLocation(), diag::note_previous_definition);
Steve Naroffb5e78152008-08-08 17:50:35 +0000652 }
653 }
654 }
655}
656
Chris Lattner4b009652007-07-25 00:24:17 +0000657/// MergeVarDecl - We just parsed a variable 'New' which has the same name
658/// and scope as a previous declaration 'Old'. Figure out how to resolve this
659/// situation, merging decls or emitting diagnostics as appropriate.
660///
Steve Naroffb5e78152008-08-08 17:50:35 +0000661/// Tentative definition rules (C99 6.9.2p2) are checked by
662/// FinalizeDeclaratorGroup. Unfortunately, we can't analyze tentative
663/// definitions here, since the initializer hasn't been attached.
Chris Lattner4b009652007-07-25 00:24:17 +0000664///
Steve Naroffe57c21a2008-04-01 23:04:06 +0000665VarDecl *Sema::MergeVarDecl(VarDecl *New, Decl *OldD) {
Chris Lattner4b009652007-07-25 00:24:17 +0000666 // Verify the old decl was also a variable.
667 VarDecl *Old = dyn_cast<VarDecl>(OldD);
668 if (!Old) {
Chris Lattner10f2c2e2008-11-20 06:38:18 +0000669 Diag(New->getLocation(), diag::err_redefinition_different_kind)
Chris Lattnerb1753422008-11-23 21:45:46 +0000670 << New->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +0000671 Diag(OldD->getLocation(), diag::note_previous_definition);
Chris Lattner4b009652007-07-25 00:24:17 +0000672 return New;
673 }
Chris Lattner402b3372008-03-03 03:28:21 +0000674
675 MergeAttributes(New, Old);
676
Eli Friedman4a480d62009-01-24 23:49:55 +0000677 // Merge the types
678 QualType MergedT = Context.mergeTypes(New->getType(), Old->getType());
679 if (MergedT.isNull()) {
Douglas Gregord1675382009-01-09 19:42:16 +0000680 Diag(New->getLocation(), diag::err_redefinition_different_type)
681 << New->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +0000682 Diag(Old->getLocation(), diag::note_previous_definition);
Chris Lattner4b009652007-07-25 00:24:17 +0000683 return New;
684 }
Eli Friedman4a480d62009-01-24 23:49:55 +0000685 New->setType(MergedT);
Steve Naroffb00247f2008-01-30 00:44:01 +0000686 // C99 6.2.2p4: Check if we have a static decl followed by a non-static.
687 if (New->getStorageClass() == VarDecl::Static &&
688 (Old->getStorageClass() == VarDecl::None ||
689 Old->getStorageClass() == VarDecl::Extern)) {
Chris Lattner271d4c22008-11-24 05:29:24 +0000690 Diag(New->getLocation(), diag::err_static_non_static) << New->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +0000691 Diag(Old->getLocation(), diag::note_previous_definition);
Steve Naroffb00247f2008-01-30 00:44:01 +0000692 return New;
693 }
694 // C99 6.2.2p4: Check if we have a non-static decl followed by a static.
695 if (New->getStorageClass() != VarDecl::Static &&
696 Old->getStorageClass() == VarDecl::Static) {
Chris Lattner271d4c22008-11-24 05:29:24 +0000697 Diag(New->getLocation(), diag::err_non_static_static) << New->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +0000698 Diag(Old->getLocation(), diag::note_previous_definition);
Steve Naroffb00247f2008-01-30 00:44:01 +0000699 return New;
700 }
Steve Naroff2f3c4432008-09-17 14:05:40 +0000701 // Variables with external linkage are analyzed in FinalizeDeclaratorGroup.
702 if (New->getStorageClass() != VarDecl::Extern && !New->isFileVarDecl()) {
Chris Lattnerb1753422008-11-23 21:45:46 +0000703 Diag(New->getLocation(), diag::err_redefinition) << New->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +0000704 Diag(Old->getLocation(), diag::note_previous_definition);
Chris Lattner4b009652007-07-25 00:24:17 +0000705 }
706 return New;
707}
708
Chris Lattner3e254fb2008-04-08 04:40:51 +0000709/// CheckParmsForFunctionDef - Check that the parameters of the given
710/// function are appropriate for the definition of a function. This
711/// takes care of any checks that cannot be performed on the
712/// declaration itself, e.g., that the types of each of the function
713/// parameters are complete.
714bool Sema::CheckParmsForFunctionDef(FunctionDecl *FD) {
715 bool HasInvalidParm = false;
716 for (unsigned p = 0, NumParams = FD->getNumParams(); p < NumParams; ++p) {
717 ParmVarDecl *Param = FD->getParamDecl(p);
718
719 // C99 6.7.5.3p4: the parameters in a parameter type list in a
720 // function declarator that is part of a function definition of
721 // that function shall not have incomplete type.
Douglas Gregor46fe06e2009-01-19 19:26:10 +0000722 if (!Param->isInvalidDecl() &&
723 DiagnoseIncompleteType(Param->getLocation(), Param->getType(),
724 diag::err_typecheck_decl_incomplete_type)) {
Chris Lattner3e254fb2008-04-08 04:40:51 +0000725 Param->setInvalidDecl();
726 HasInvalidParm = true;
727 }
Chris Lattnerb0b42f62008-12-17 07:32:46 +0000728
729 // C99 6.9.1p5: If the declarator includes a parameter type list, the
730 // declaration of each parameter shall include an identifier.
731 if (Param->getIdentifier() == 0 && !getLangOptions().CPlusPlus)
732 Diag(Param->getLocation(), diag::err_parameter_name_omitted);
Chris Lattner3e254fb2008-04-08 04:40:51 +0000733 }
734
735 return HasInvalidParm;
736}
737
Chris Lattner4b009652007-07-25 00:24:17 +0000738/// ParsedFreeStandingDeclSpec - This method is invoked when a declspec with
739/// no declarator (e.g. "struct foo;") is parsed.
740Sema::DeclTy *Sema::ParsedFreeStandingDeclSpec(Scope *S, DeclSpec &DS) {
Douglas Gregorb748fc52009-01-12 22:49:06 +0000741 TagDecl *Tag
742 = dyn_cast_or_null<TagDecl>(static_cast<Decl *>(DS.getTypeRep()));
743 if (RecordDecl *Record = dyn_cast_or_null<RecordDecl>(Tag)) {
744 if (!Record->getDeclName() && Record->isDefinition() &&
745 DS.getStorageClassSpec() != DeclSpec::SCS_typedef)
746 return BuildAnonymousStructOrUnion(S, DS, Record);
747
748 // Microsoft allows unnamed struct/union fields. Don't complain
749 // about them.
750 // FIXME: Should we support Microsoft's extensions in this area?
751 if (Record->getDeclName() && getLangOptions().Microsoft)
752 return Tag;
753 }
754
Sebastian Redlb7605e82008-12-28 15:28:59 +0000755 if (!DS.isMissingDeclaratorOk()) {
Douglas Gregoredd94e92009-01-22 16:23:54 +0000756 // Warn about typedefs of enums without names, since this is an
757 // extension in both Microsoft an GNU.
Douglas Gregor72de8492009-01-17 02:55:50 +0000758 if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef &&
759 Tag && isa<EnumDecl>(Tag)) {
Douglas Gregoredd94e92009-01-22 16:23:54 +0000760 Diag(DS.getSourceRange().getBegin(), diag::ext_typedef_without_a_name)
Douglas Gregor80c720e2009-01-13 23:10:51 +0000761 << DS.getSourceRange();
762 return Tag;
763 }
764
Sebastian Redlb7605e82008-12-28 15:28:59 +0000765 // FIXME: This diagnostic is emitted even when various previous
766 // errors occurred (see e.g. test/Sema/decl-invalid.c). However,
767 // DeclSpec has no means of communicating this information, and the
768 // responsible parser functions are quite far apart.
769 Diag(DS.getSourceRange().getBegin(), diag::err_no_declarators)
770 << DS.getSourceRange();
771 return 0;
772 }
Douglas Gregor723d3332009-01-07 00:43:41 +0000773
Douglas Gregor723d3332009-01-07 00:43:41 +0000774 return Tag;
775}
776
777/// InjectAnonymousStructOrUnionMembers - Inject the members of the
778/// anonymous struct or union AnonRecord into the owning context Owner
779/// and scope S. This routine will be invoked just after we realize
780/// that an unnamed union or struct is actually an anonymous union or
781/// struct, e.g.,
782///
783/// @code
784/// union {
785/// int i;
786/// float f;
787/// }; // InjectAnonymousStructOrUnionMembers called here to inject i and
788/// // f into the surrounding scope.x
789/// @endcode
790///
791/// This routine is recursive, injecting the names of nested anonymous
792/// structs/unions into the owning context and scope as well.
793bool Sema::InjectAnonymousStructOrUnionMembers(Scope *S, DeclContext *Owner,
794 RecordDecl *AnonRecord) {
795 bool Invalid = false;
796 for (RecordDecl::field_iterator F = AnonRecord->field_begin(),
797 FEnd = AnonRecord->field_end();
798 F != FEnd; ++F) {
799 if ((*F)->getDeclName()) {
Steve Naroffc349ee22009-01-29 00:07:50 +0000800 Decl *PrevDecl = LookupDeclInContext((*F)->getDeclName(),
801 Decl::IDNS_Ordinary, Owner, false);
Douglas Gregor723d3332009-01-07 00:43:41 +0000802 if (PrevDecl && !isa<TagDecl>(PrevDecl)) {
803 // C++ [class.union]p2:
804 // The names of the members of an anonymous union shall be
805 // distinct from the names of any other entity in the
806 // scope in which the anonymous union is declared.
807 unsigned diagKind
808 = AnonRecord->isUnion()? diag::err_anonymous_union_member_redecl
809 : diag::err_anonymous_struct_member_redecl;
810 Diag((*F)->getLocation(), diagKind)
811 << (*F)->getDeclName();
812 Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
813 Invalid = true;
814 } else {
815 // C++ [class.union]p2:
816 // For the purpose of name lookup, after the anonymous union
817 // definition, the members of the anonymous union are
818 // considered to have been defined in the scope in which the
819 // anonymous union is declared.
Douglas Gregor9ac66d22009-01-20 16:54:50 +0000820 Owner->makeDeclVisibleInContext(*F);
Douglas Gregor723d3332009-01-07 00:43:41 +0000821 S->AddDecl(*F);
822 IdResolver.AddDecl(*F);
823 }
824 } else if (const RecordType *InnerRecordType
825 = (*F)->getType()->getAsRecordType()) {
826 RecordDecl *InnerRecord = InnerRecordType->getDecl();
827 if (InnerRecord->isAnonymousStructOrUnion())
828 Invalid = Invalid ||
829 InjectAnonymousStructOrUnionMembers(S, Owner, InnerRecord);
830 }
831 }
832
833 return Invalid;
834}
835
836/// ActOnAnonymousStructOrUnion - Handle the declaration of an
837/// anonymous structure or union. Anonymous unions are a C++ feature
838/// (C++ [class.union]) and a GNU C extension; anonymous structures
839/// are a GNU C and GNU C++ extension.
840Sema::DeclTy *Sema::BuildAnonymousStructOrUnion(Scope *S, DeclSpec &DS,
841 RecordDecl *Record) {
842 DeclContext *Owner = Record->getDeclContext();
843
844 // Diagnose whether this anonymous struct/union is an extension.
845 if (Record->isUnion() && !getLangOptions().CPlusPlus)
846 Diag(Record->getLocation(), diag::ext_anonymous_union);
847 else if (!Record->isUnion())
848 Diag(Record->getLocation(), diag::ext_anonymous_struct);
849
850 // C and C++ require different kinds of checks for anonymous
851 // structs/unions.
852 bool Invalid = false;
853 if (getLangOptions().CPlusPlus) {
854 const char* PrevSpec = 0;
855 // C++ [class.union]p3:
856 // Anonymous unions declared in a named namespace or in the
857 // global namespace shall be declared static.
858 if (DS.getStorageClassSpec() != DeclSpec::SCS_static &&
859 (isa<TranslationUnitDecl>(Owner) ||
860 (isa<NamespaceDecl>(Owner) &&
861 cast<NamespaceDecl>(Owner)->getDeclName()))) {
862 Diag(Record->getLocation(), diag::err_anonymous_union_not_static);
863 Invalid = true;
864
865 // Recover by adding 'static'.
866 DS.SetStorageClassSpec(DeclSpec::SCS_static, SourceLocation(), PrevSpec);
867 }
868 // C++ [class.union]p3:
869 // A storage class is not allowed in a declaration of an
870 // anonymous union in a class scope.
871 else if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified &&
872 isa<RecordDecl>(Owner)) {
873 Diag(DS.getStorageClassSpecLoc(),
874 diag::err_anonymous_union_with_storage_spec);
875 Invalid = true;
876
877 // Recover by removing the storage specifier.
878 DS.SetStorageClassSpec(DeclSpec::SCS_unspecified, SourceLocation(),
879 PrevSpec);
880 }
Douglas Gregorc7f01612009-01-07 19:46:03 +0000881
882 // C++ [class.union]p2:
883 // The member-specification of an anonymous union shall only
884 // define non-static data members. [Note: nested types and
885 // functions cannot be declared within an anonymous union. ]
886 for (DeclContext::decl_iterator Mem = Record->decls_begin(),
887 MemEnd = Record->decls_end();
888 Mem != MemEnd; ++Mem) {
889 if (FieldDecl *FD = dyn_cast<FieldDecl>(*Mem)) {
890 // C++ [class.union]p3:
891 // An anonymous union shall not have private or protected
892 // members (clause 11).
893 if (FD->getAccess() == AS_protected || FD->getAccess() == AS_private) {
894 Diag(FD->getLocation(), diag::err_anonymous_record_nonpublic_member)
895 << (int)Record->isUnion() << (int)(FD->getAccess() == AS_protected);
896 Invalid = true;
897 }
898 } else if ((*Mem)->isImplicit()) {
899 // Any implicit members are fine.
900 } else if (RecordDecl *MemRecord = dyn_cast<RecordDecl>(*Mem)) {
901 if (!MemRecord->isAnonymousStructOrUnion() &&
902 MemRecord->getDeclName()) {
903 // This is a nested type declaration.
904 Diag(MemRecord->getLocation(), diag::err_anonymous_record_with_type)
905 << (int)Record->isUnion();
906 Invalid = true;
907 }
908 } else {
909 // We have something that isn't a non-static data
910 // member. Complain about it.
911 unsigned DK = diag::err_anonymous_record_bad_member;
912 if (isa<TypeDecl>(*Mem))
913 DK = diag::err_anonymous_record_with_type;
914 else if (isa<FunctionDecl>(*Mem))
915 DK = diag::err_anonymous_record_with_function;
916 else if (isa<VarDecl>(*Mem))
917 DK = diag::err_anonymous_record_with_static;
918 Diag((*Mem)->getLocation(), DK)
919 << (int)Record->isUnion();
920 Invalid = true;
921 }
922 }
Douglas Gregor723d3332009-01-07 00:43:41 +0000923 } else {
924 // FIXME: Check GNU C semantics
Douglas Gregorb748fc52009-01-12 22:49:06 +0000925 if (Record->isUnion() && !Owner->isRecord()) {
926 Diag(Record->getLocation(), diag::err_anonymous_union_not_member)
927 << (int)getLangOptions().CPlusPlus;
928 Invalid = true;
929 }
Douglas Gregor723d3332009-01-07 00:43:41 +0000930 }
931
932 if (!Record->isUnion() && !Owner->isRecord()) {
Douglas Gregorb748fc52009-01-12 22:49:06 +0000933 Diag(Record->getLocation(), diag::err_anonymous_struct_not_member)
934 << (int)getLangOptions().CPlusPlus;
Douglas Gregor723d3332009-01-07 00:43:41 +0000935 Invalid = true;
936 }
937
938 // Create a declaration for this anonymous struct/union.
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +0000939 NamedDecl *Anon = 0;
Douglas Gregor723d3332009-01-07 00:43:41 +0000940 if (RecordDecl *OwningClass = dyn_cast<RecordDecl>(Owner)) {
941 Anon = FieldDecl::Create(Context, OwningClass, Record->getLocation(),
942 /*IdentifierInfo=*/0,
943 Context.getTypeDeclType(Record),
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +0000944 /*BitWidth=*/0, /*Mutable=*/false);
Douglas Gregorc7f01612009-01-07 19:46:03 +0000945 Anon->setAccess(AS_public);
946 if (getLangOptions().CPlusPlus)
947 FieldCollector->Add(cast<FieldDecl>(Anon));
Douglas Gregor723d3332009-01-07 00:43:41 +0000948 } else {
949 VarDecl::StorageClass SC;
950 switch (DS.getStorageClassSpec()) {
951 default: assert(0 && "Unknown storage class!");
952 case DeclSpec::SCS_unspecified: SC = VarDecl::None; break;
953 case DeclSpec::SCS_extern: SC = VarDecl::Extern; break;
954 case DeclSpec::SCS_static: SC = VarDecl::Static; break;
955 case DeclSpec::SCS_auto: SC = VarDecl::Auto; break;
956 case DeclSpec::SCS_register: SC = VarDecl::Register; break;
957 case DeclSpec::SCS_private_extern: SC = VarDecl::PrivateExtern; break;
958 case DeclSpec::SCS_mutable:
959 // mutable can only appear on non-static class members, so it's always
960 // an error here
961 Diag(Record->getLocation(), diag::err_mutable_nonmember);
962 Invalid = true;
963 SC = VarDecl::None;
964 break;
965 }
966
967 Anon = VarDecl::Create(Context, Owner, Record->getLocation(),
968 /*IdentifierInfo=*/0,
969 Context.getTypeDeclType(Record),
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +0000970 SC, DS.getSourceRange().getBegin());
Douglas Gregor723d3332009-01-07 00:43:41 +0000971 }
Douglas Gregorc7f01612009-01-07 19:46:03 +0000972 Anon->setImplicit();
Douglas Gregor723d3332009-01-07 00:43:41 +0000973
974 // Add the anonymous struct/union object to the current
975 // context. We'll be referencing this object when we refer to one of
976 // its members.
Douglas Gregor03b2ad22009-01-12 23:27:07 +0000977 Owner->addDecl(Anon);
Douglas Gregor723d3332009-01-07 00:43:41 +0000978
979 // Inject the members of the anonymous struct/union into the owning
980 // context and into the identifier resolver chain for name lookup
981 // purposes.
Douglas Gregorb748fc52009-01-12 22:49:06 +0000982 if (InjectAnonymousStructOrUnionMembers(S, Owner, Record))
983 Invalid = true;
Douglas Gregor723d3332009-01-07 00:43:41 +0000984
985 // Mark this as an anonymous struct/union type. Note that we do not
986 // do this until after we have already checked and injected the
987 // members of this anonymous struct/union type, because otherwise
988 // the members could be injected twice: once by DeclContext when it
989 // builds its lookup table, and once by
990 // InjectAnonymousStructOrUnionMembers.
991 Record->setAnonymousStructOrUnion(true);
992
993 if (Invalid)
994 Anon->setInvalidDecl();
995
996 return Anon;
Chris Lattner4b009652007-07-25 00:24:17 +0000997}
998
Douglas Gregor6214d8a2009-01-14 15:45:31 +0000999bool Sema::CheckSingleInitializer(Expr *&Init, QualType DeclType,
1000 bool DirectInit) {
Steve Naroffe14e5542007-09-02 02:04:30 +00001001 // Get the type before calling CheckSingleAssignmentConstraints(), since
1002 // it can promote the expression.
Chris Lattner005ed752008-01-04 18:04:52 +00001003 QualType InitType = Init->getType();
Douglas Gregor6fd35572008-12-19 17:40:08 +00001004
Douglas Gregor6214d8a2009-01-14 15:45:31 +00001005 if (getLangOptions().CPlusPlus) {
1006 // FIXME: I dislike this error message. A lot.
1007 if (PerformImplicitConversion(Init, DeclType, "initializing", DirectInit))
1008 return Diag(Init->getSourceRange().getBegin(),
1009 diag::err_typecheck_convert_incompatible)
1010 << DeclType << Init->getType() << "initializing"
1011 << Init->getSourceRange();
1012
1013 return false;
1014 }
Douglas Gregor6fd35572008-12-19 17:40:08 +00001015
Chris Lattner005ed752008-01-04 18:04:52 +00001016 AssignConvertType ConvTy = CheckSingleAssignmentConstraints(DeclType, Init);
1017 return DiagnoseAssignmentResult(ConvTy, Init->getLocStart(), DeclType,
1018 InitType, Init, "initializing");
Steve Naroffe14e5542007-09-02 02:04:30 +00001019}
1020
Steve Naroff0d4e6ad2008-01-22 00:55:40 +00001021bool Sema::CheckStringLiteralInit(StringLiteral *strLiteral, QualType &DeclT) {
Chris Lattnera1923f62008-08-04 07:31:14 +00001022 const ArrayType *AT = Context.getAsArrayType(DeclT);
1023
1024 if (const IncompleteArrayType *IAT = dyn_cast<IncompleteArrayType>(AT)) {
Steve Naroff0d4e6ad2008-01-22 00:55:40 +00001025 // C99 6.7.8p14. We have an array of character type with unknown size
1026 // being initialized to a string literal.
1027 llvm::APSInt ConstVal(32);
1028 ConstVal = strLiteral->getByteLength() + 1;
1029 // Return a new array type (C99 6.7.8p22).
Eli Friedman8ff07782008-02-15 18:16:39 +00001030 DeclT = Context.getConstantArrayType(IAT->getElementType(), ConstVal,
Steve Naroff0d4e6ad2008-01-22 00:55:40 +00001031 ArrayType::Normal, 0);
Chris Lattnera1923f62008-08-04 07:31:14 +00001032 } else {
1033 const ConstantArrayType *CAT = cast<ConstantArrayType>(AT);
Steve Naroff0d4e6ad2008-01-22 00:55:40 +00001034 // C99 6.7.8p14. We have an array of character type with known size.
Chris Lattnera1923f62008-08-04 07:31:14 +00001035 // FIXME: Avoid truncation for 64-bit length strings.
1036 if (strLiteral->getByteLength() > (unsigned)CAT->getSize().getZExtValue())
Steve Naroff0d4e6ad2008-01-22 00:55:40 +00001037 Diag(strLiteral->getSourceRange().getBegin(),
Chris Lattner9d2cf082008-11-19 05:27:50 +00001038 diag::warn_initializer_string_for_char_array_too_long)
1039 << strLiteral->getSourceRange();
Steve Naroff0d4e6ad2008-01-22 00:55:40 +00001040 }
1041 // Set type from "char *" to "constant array of char".
1042 strLiteral->setType(DeclT);
1043 // For now, we always return false (meaning success).
1044 return false;
1045}
1046
1047StringLiteral *Sema::IsStringLiteralInit(Expr *Init, QualType DeclType) {
Chris Lattnera1923f62008-08-04 07:31:14 +00001048 const ArrayType *AT = Context.getAsArrayType(DeclType);
Steve Narofff3cb5142008-01-25 00:51:06 +00001049 if (AT && AT->getElementType()->isCharType()) {
Anders Carlsson37704be2009-01-24 17:47:50 +00001050 return dyn_cast<StringLiteral>(Init->IgnoreParens());
Steve Narofff3cb5142008-01-25 00:51:06 +00001051 }
Steve Naroff0d4e6ad2008-01-22 00:55:40 +00001052 return 0;
1053}
1054
Douglas Gregor6428e762008-11-05 15:29:30 +00001055bool Sema::CheckInitializerTypes(Expr *&Init, QualType &DeclType,
1056 SourceLocation InitLoc,
Douglas Gregor6214d8a2009-01-14 15:45:31 +00001057 DeclarationName InitEntity,
1058 bool DirectInit) {
Douglas Gregorf1ae3e02008-12-18 21:49:58 +00001059 if (DeclType->isDependentType() || Init->isTypeDependent())
1060 return false;
1061
Douglas Gregor81c29152008-10-29 00:13:59 +00001062 // C++ [dcl.init.ref]p1:
Sebastian Redl51504af2008-11-24 20:06:50 +00001063 // A variable declared to be a T&, that is "reference to type T"
Douglas Gregor81c29152008-10-29 00:13:59 +00001064 // (8.3.2), shall be initialized by an object, or function, of
1065 // type T or by an object that can be converted into a T.
1066 if (DeclType->isReferenceType())
Douglas Gregor6214d8a2009-01-14 15:45:31 +00001067 return CheckReferenceInit(Init, DeclType, 0, false, DirectInit);
Douglas Gregor81c29152008-10-29 00:13:59 +00001068
Steve Naroff8e9337f2008-01-21 23:53:58 +00001069 // C99 6.7.8p3: The type of the entity to be initialized shall be an array
1070 // of unknown size ("[]") or an object type that is not a variable array type.
Chris Lattnera1923f62008-08-04 07:31:14 +00001071 if (const VariableArrayType *VAT = Context.getAsVariableArrayType(DeclType))
Chris Lattner9d2cf082008-11-19 05:27:50 +00001072 return Diag(InitLoc, diag::err_variable_object_no_init)
1073 << VAT->getSizeExpr()->getSourceRange();
Steve Naroff8e9337f2008-01-21 23:53:58 +00001074
Steve Naroffcb69fb72007-12-10 22:44:33 +00001075 InitListExpr *InitList = dyn_cast<InitListExpr>(Init);
1076 if (!InitList) {
Steve Naroff0d4e6ad2008-01-22 00:55:40 +00001077 // FIXME: Handle wide strings
1078 if (StringLiteral *strLiteral = IsStringLiteralInit(Init, DeclType))
1079 return CheckStringLiteralInit(strLiteral, DeclType);
Eli Friedman65280992008-02-08 00:48:24 +00001080
Douglas Gregor6428e762008-11-05 15:29:30 +00001081 // C++ [dcl.init]p14:
1082 // -- If the destination type is a (possibly cv-qualified) class
1083 // type:
1084 if (getLangOptions().CPlusPlus && DeclType->isRecordType()) {
1085 QualType DeclTypeC = Context.getCanonicalType(DeclType);
1086 QualType InitTypeC = Context.getCanonicalType(Init->getType());
1087
1088 // -- If the initialization is direct-initialization, or if it is
1089 // copy-initialization where the cv-unqualified version of the
1090 // source type is the same class as, or a derived class of, the
1091 // class of the destination, constructors are considered.
1092 if ((DeclTypeC.getUnqualifiedType() == InitTypeC.getUnqualifiedType()) ||
1093 IsDerivedFrom(InitTypeC, DeclTypeC)) {
1094 CXXConstructorDecl *Constructor
1095 = PerformInitializationByConstructor(DeclType, &Init, 1,
1096 InitLoc, Init->getSourceRange(),
Douglas Gregor6214d8a2009-01-14 15:45:31 +00001097 InitEntity,
1098 DirectInit? IK_Direct : IK_Copy);
Douglas Gregor6428e762008-11-05 15:29:30 +00001099 return Constructor == 0;
1100 }
1101
1102 // -- Otherwise (i.e., for the remaining copy-initialization
1103 // cases), user-defined conversion sequences that can
1104 // convert from the source type to the destination type or
1105 // (when a conversion function is used) to a derived class
1106 // thereof are enumerated as described in 13.3.1.4, and the
1107 // best one is chosen through overload resolution
1108 // (13.3). If the conversion cannot be done or is
1109 // ambiguous, the initialization is ill-formed. The
1110 // function selected is called with the initializer
1111 // expression as its argument; if the function is a
1112 // constructor, the call initializes a temporary of the
1113 // destination type.
1114 // FIXME: We're pretending to do copy elision here; return to
1115 // this when we have ASTs for such things.
Douglas Gregor6fd35572008-12-19 17:40:08 +00001116 if (!PerformImplicitConversion(Init, DeclType, "initializing"))
Douglas Gregor6428e762008-11-05 15:29:30 +00001117 return false;
Chris Lattner70b93d82008-11-18 22:52:51 +00001118
Douglas Gregor62ae25a2008-12-24 00:01:03 +00001119 if (InitEntity)
1120 return Diag(InitLoc, diag::err_cannot_initialize_decl)
1121 << InitEntity << (int)(Init->isLvalue(Context) == Expr::LV_Valid)
1122 << Init->getType() << Init->getSourceRange();
1123 else
1124 return Diag(InitLoc, diag::err_cannot_initialize_decl_noname)
1125 << DeclType << (int)(Init->isLvalue(Context) == Expr::LV_Valid)
1126 << Init->getType() << Init->getSourceRange();
Douglas Gregor6428e762008-11-05 15:29:30 +00001127 }
1128
Steve Naroffb2f72412008-09-29 20:07:05 +00001129 // C99 6.7.8p16.
Eli Friedman65280992008-02-08 00:48:24 +00001130 if (DeclType->isArrayType())
Chris Lattner9d2cf082008-11-19 05:27:50 +00001131 return Diag(Init->getLocStart(), diag::err_array_init_list_required)
1132 << Init->getSourceRange();
Eli Friedman65280992008-02-08 00:48:24 +00001133
Douglas Gregor6214d8a2009-01-14 15:45:31 +00001134 return CheckSingleInitializer(Init, DeclType, DirectInit);
Douglas Gregor15e04622008-11-05 16:20:31 +00001135 } else if (getLangOptions().CPlusPlus) {
1136 // C++ [dcl.init]p14:
1137 // [...] If the class is an aggregate (8.5.1), and the initializer
1138 // is a brace-enclosed list, see 8.5.1.
1139 //
1140 // Note: 8.5.1 is handled below; here, we diagnose the case where
1141 // we have an initializer list and a destination type that is not
1142 // an aggregate.
1143 // FIXME: In C++0x, this is yet another form of initialization.
1144 if (const RecordType *ClassRec = DeclType->getAsRecordType()) {
1145 const CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(ClassRec->getDecl());
1146 if (!ClassDecl->isAggregate())
Chris Lattner9d2cf082008-11-19 05:27:50 +00001147 return Diag(InitLoc, diag::err_init_non_aggr_init_list)
Chris Lattner4bfd2232008-11-24 06:25:27 +00001148 << DeclType << Init->getSourceRange();
Douglas Gregor15e04622008-11-05 16:20:31 +00001149 }
Steve Naroffcb69fb72007-12-10 22:44:33 +00001150 }
Eli Friedman38b7a912008-06-06 19:40:52 +00001151
Douglas Gregor849afc32009-01-29 00:45:39 +00001152 bool hadError = CheckInitList(InitList, DeclType);
1153 Init = InitList;
1154 return hadError;
Steve Naroffe14e5542007-09-02 02:04:30 +00001155}
1156
Douglas Gregor6704b312008-11-17 22:58:34 +00001157/// GetNameForDeclarator - Determine the full declaration name for the
1158/// given Declarator.
1159DeclarationName Sema::GetNameForDeclarator(Declarator &D) {
1160 switch (D.getKind()) {
1161 case Declarator::DK_Abstract:
1162 assert(D.getIdentifier() == 0 && "abstract declarators have no name");
1163 return DeclarationName();
1164
1165 case Declarator::DK_Normal:
1166 assert (D.getIdentifier() != 0 && "normal declarators have an identifier");
1167 return DeclarationName(D.getIdentifier());
1168
1169 case Declarator::DK_Constructor: {
1170 QualType Ty = Context.getTypeDeclType((TypeDecl *)D.getDeclaratorIdType());
1171 Ty = Context.getCanonicalType(Ty);
1172 return Context.DeclarationNames.getCXXConstructorName(Ty);
1173 }
1174
1175 case Declarator::DK_Destructor: {
1176 QualType Ty = Context.getTypeDeclType((TypeDecl *)D.getDeclaratorIdType());
1177 Ty = Context.getCanonicalType(Ty);
1178 return Context.DeclarationNames.getCXXDestructorName(Ty);
1179 }
1180
1181 case Declarator::DK_Conversion: {
1182 QualType Ty = QualType::getFromOpaquePtr(D.getDeclaratorIdType());
1183 Ty = Context.getCanonicalType(Ty);
1184 return Context.DeclarationNames.getCXXConversionFunctionName(Ty);
1185 }
Douglas Gregor96a32dd2008-11-18 14:39:36 +00001186
1187 case Declarator::DK_Operator:
1188 assert(D.getIdentifier() == 0 && "operator names have no identifier");
1189 return Context.DeclarationNames.getCXXOperatorName(
1190 D.getOverloadedOperator());
Douglas Gregor6704b312008-11-17 22:58:34 +00001191 }
1192
1193 assert(false && "Unknown name kind");
1194 return DeclarationName();
1195}
1196
Douglas Gregorc5cbc242008-12-15 23:53:10 +00001197/// isNearlyMatchingMemberFunction - Determine whether the C++ member
1198/// functions Declaration and Definition are "nearly" matching. This
1199/// heuristic is used to improve diagnostics in the case where an
1200/// out-of-line member function definition doesn't match any
1201/// declaration within the class.
1202static bool isNearlyMatchingMemberFunction(ASTContext &Context,
1203 FunctionDecl *Declaration,
1204 FunctionDecl *Definition) {
1205 if (Declaration->param_size() != Definition->param_size())
1206 return false;
1207 for (unsigned Idx = 0; Idx < Declaration->param_size(); ++Idx) {
1208 QualType DeclParamTy = Declaration->getParamDecl(Idx)->getType();
1209 QualType DefParamTy = Definition->getParamDecl(Idx)->getType();
1210
1211 DeclParamTy = Context.getCanonicalType(DeclParamTy.getNonReferenceType());
1212 DefParamTy = Context.getCanonicalType(DefParamTy.getNonReferenceType());
1213 if (DeclParamTy.getUnqualifiedType() != DefParamTy.getUnqualifiedType())
1214 return false;
1215 }
1216
1217 return true;
1218}
1219
Fariborz Jahaniandfb1c372007-11-08 23:49:49 +00001220Sema::DeclTy *
Douglas Gregorc5cbc242008-12-15 23:53:10 +00001221Sema::ActOnDeclarator(Scope *S, Declarator &D, DeclTy *lastDecl,
1222 bool IsFunctionDefinition) {
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001223 NamedDecl *LastDeclarator = dyn_cast_or_null<NamedDecl>((Decl *)lastDecl);
Douglas Gregor6704b312008-11-17 22:58:34 +00001224 DeclarationName Name = GetNameForDeclarator(D);
1225
Chris Lattner4b009652007-07-25 00:24:17 +00001226 // All of these full declarators require an identifier. If it doesn't have
1227 // one, the ParsedFreeStandingDeclSpec action should be used.
Douglas Gregor6704b312008-11-17 22:58:34 +00001228 if (!Name) {
Chris Lattnercd61d592008-11-11 06:13:16 +00001229 if (!D.getInvalidType()) // Reject this if we think it is valid.
1230 Diag(D.getDeclSpec().getSourceRange().getBegin(),
Chris Lattner8ba580c2008-11-19 05:08:23 +00001231 diag::err_declarator_need_ident)
1232 << D.getDeclSpec().getSourceRange() << D.getSourceRange();
Chris Lattner4b009652007-07-25 00:24:17 +00001233 return 0;
1234 }
1235
Chris Lattnera7549902007-08-26 06:24:45 +00001236 // The scope passed in may not be a decl scope. Zip up the scope tree until
1237 // we find one that is.
Douglas Gregor8acb7272008-12-11 16:49:14 +00001238 while ((S->getFlags() & Scope::DeclScope) == 0 ||
1239 (S->getFlags() & Scope::TemplateParamScope) != 0)
Chris Lattnera7549902007-08-26 06:24:45 +00001240 S = S->getParent();
1241
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00001242 DeclContext *DC;
1243 Decl *PrevDecl;
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001244 NamedDecl *New;
Steve Naroffd1ad6ae2007-08-28 20:14:24 +00001245 bool InvalidDecl = false;
Douglas Gregor1d661552008-04-13 21:07:44 +00001246
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00001247 // See if this is a redefinition of a variable in the same scope.
1248 if (!D.getCXXScopeSpec().isSet()) {
1249 DC = CurContext;
Steve Naroffc349ee22009-01-29 00:07:50 +00001250 PrevDecl = LookupDeclInScope(Name, Decl::IDNS_Ordinary, S);
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00001251 } else { // Something like "int foo::x;"
1252 DC = static_cast<DeclContext*>(D.getCXXScopeSpec().getScopeRep());
Steve Naroffc349ee22009-01-29 00:07:50 +00001253 PrevDecl = DC ? LookupDeclInContext(Name, Decl::IDNS_Ordinary, DC)
1254 : LookupDeclInScope(Name, Decl::IDNS_Ordinary, S);
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00001255
1256 // C++ 7.3.1.2p2:
1257 // Members (including explicit specializations of templates) of a named
1258 // namespace can also be defined outside that namespace by explicit
1259 // qualification of the name being defined, provided that the entity being
1260 // defined was already declared in the namespace and the definition appears
1261 // after the point of declaration in a namespace that encloses the
1262 // declarations namespace.
1263 //
Douglas Gregorc5cbc242008-12-15 23:53:10 +00001264 // Note that we only check the context at this point. We don't yet
1265 // have enough information to make sure that PrevDecl is actually
1266 // the declaration we want to match. For example, given:
1267 //
Douglas Gregor98341042008-12-12 08:25:50 +00001268 // class X {
1269 // void f();
Douglas Gregorc5cbc242008-12-15 23:53:10 +00001270 // void f(float);
Douglas Gregor98341042008-12-12 08:25:50 +00001271 // };
1272 //
Douglas Gregorc5cbc242008-12-15 23:53:10 +00001273 // void X::f(int) { } // ill-formed
1274 //
1275 // In this case, PrevDecl will point to the overload set
1276 // containing the two f's declared in X, but neither of them
1277 // matches.
1278 if (!CurContext->Encloses(DC)) {
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00001279 // The qualifying scope doesn't enclose the original declaration.
1280 // Emit diagnostic based on current scope.
1281 SourceLocation L = D.getIdentifierLoc();
1282 SourceRange R = D.getCXXScopeSpec().getRange();
1283 if (isa<FunctionDecl>(CurContext)) {
Chris Lattner254de7d2008-11-23 20:28:15 +00001284 Diag(L, diag::err_invalid_declarator_in_function) << Name << R;
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00001285 } else {
Chris Lattner254de7d2008-11-23 20:28:15 +00001286 Diag(L, diag::err_invalid_declarator_scope)
Chris Lattner271d4c22008-11-24 05:29:24 +00001287 << Name << cast<NamedDecl>(DC)->getDeclName() << R;
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00001288 }
Douglas Gregor8acb7272008-12-11 16:49:14 +00001289 InvalidDecl = true;
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00001290 }
1291 }
1292
Douglas Gregor2715a1f2008-12-08 18:40:42 +00001293 if (PrevDecl && PrevDecl->isTemplateParameter()) {
Douglas Gregordd861062008-12-05 18:15:24 +00001294 // Maybe we will complain about the shadowed template parameter.
Douglas Gregor1b21c7f2008-12-05 23:32:09 +00001295 InvalidDecl = InvalidDecl
1296 || DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
Douglas Gregordd861062008-12-05 18:15:24 +00001297 // Just pretend that we didn't see the previous declaration.
1298 PrevDecl = 0;
1299 }
1300
Douglas Gregor1d661552008-04-13 21:07:44 +00001301 // In C++, the previous declaration we find might be a tag type
1302 // (class or enum). In this case, the new declaration will hide the
Douglas Gregorb31f2942009-01-28 17:15:10 +00001303 // tag type. Note that this does does not apply if we're declaring a
1304 // typedef (C++ [dcl.typedef]p4).
1305 if (PrevDecl && PrevDecl->getIdentifierNamespace() == Decl::IDNS_Tag &&
1306 D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef)
Douglas Gregor1d661552008-04-13 21:07:44 +00001307 PrevDecl = 0;
1308
Chris Lattner82bb4792007-11-14 06:34:38 +00001309 QualType R = GetTypeForDeclarator(D, S);
1310 assert(!R.isNull() && "GetTypeForDeclarator() returned null type");
1311
Chris Lattner4b009652007-07-25 00:24:17 +00001312 if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef) {
Zhongxing Xu2b3c3dd2009-01-16 03:34:13 +00001313 New = ActOnTypedefDeclarator(S, D, DC, R, LastDeclarator, PrevDecl,
1314 InvalidDecl);
Chris Lattner82bb4792007-11-14 06:34:38 +00001315 } else if (R.getTypePtr()->isFunctionType()) {
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001316 New = ActOnFunctionDeclarator(S, D, DC, R, LastDeclarator, PrevDecl,
1317 IsFunctionDefinition, InvalidDecl);
Chris Lattner4b009652007-07-25 00:24:17 +00001318 } else {
Zhongxing Xu511d45b2009-01-16 02:36:34 +00001319 New = ActOnVariableDeclarator(S, D, DC, R, LastDeclarator, PrevDecl,
1320 InvalidDecl);
Chris Lattner4b009652007-07-25 00:24:17 +00001321 }
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001322
1323 if (New == 0)
1324 return 0;
Chris Lattner4b009652007-07-25 00:24:17 +00001325
Argiris Kirtzidis881964b2008-11-09 23:41:00 +00001326 // Set the lexical context. If the declarator has a C++ scope specifier, the
1327 // lexical context will be different from the semantic context.
1328 New->setLexicalDeclContext(CurContext);
1329
Chris Lattner4b009652007-07-25 00:24:17 +00001330 // If this has an identifier, add it to the scope stack.
Douglas Gregor6704b312008-11-17 22:58:34 +00001331 if (Name)
Argiris Kirtzidis951f25b2008-04-12 00:47:19 +00001332 PushOnScopeChains(New, S);
Steve Naroffd1ad6ae2007-08-28 20:14:24 +00001333 // If any semantic error occurred, mark the decl as invalid.
1334 if (D.getInvalidType() || InvalidDecl)
1335 New->setInvalidDecl();
Chris Lattner4b009652007-07-25 00:24:17 +00001336
1337 return New;
1338}
1339
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001340NamedDecl*
Zhongxing Xu2b3c3dd2009-01-16 03:34:13 +00001341Sema::ActOnTypedefDeclarator(Scope* S, Declarator& D, DeclContext* DC,
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001342 QualType R, Decl* LastDeclarator,
Zhongxing Xu2b3c3dd2009-01-16 03:34:13 +00001343 Decl* PrevDecl, bool& InvalidDecl) {
1344 // Typedef declarators cannot be qualified (C++ [dcl.meaning]p1).
1345 if (D.getCXXScopeSpec().isSet()) {
1346 Diag(D.getIdentifierLoc(), diag::err_qualified_typedef_declarator)
1347 << D.getCXXScopeSpec().getRange();
1348 InvalidDecl = true;
1349 // Pretend we didn't see the scope specifier.
1350 DC = 0;
1351 }
1352
1353 // Check that there are no default arguments (C++ only).
1354 if (getLangOptions().CPlusPlus)
1355 CheckExtraCXXDefaultArguments(D);
1356
1357 TypedefDecl *NewTD = ParseTypedefDecl(S, D, R, LastDeclarator);
1358 if (!NewTD) return 0;
1359
1360 // Handle attributes prior to checking for duplicates in MergeVarDecl
1361 ProcessDeclAttributes(NewTD, D);
1362 // Merge the decl with the existing one if appropriate. If the decl is
1363 // in an outer scope, it isn't the same thing.
1364 if (PrevDecl && isDeclInScope(PrevDecl, DC, S)) {
1365 NewTD = MergeTypeDefDecl(NewTD, PrevDecl);
1366 if (NewTD == 0) return 0;
1367 }
1368
1369 if (S->getFnParent() == 0) {
1370 // C99 6.7.7p2: If a typedef name specifies a variably modified type
1371 // then it shall have block scope.
1372 if (NewTD->getUnderlyingType()->isVariablyModifiedType()) {
1373 if (NewTD->getUnderlyingType()->isVariableArrayType())
1374 Diag(D.getIdentifierLoc(), diag::err_vla_decl_in_file_scope);
1375 else
1376 Diag(D.getIdentifierLoc(), diag::err_vm_decl_in_file_scope);
1377
1378 InvalidDecl = true;
1379 }
1380 }
1381 return NewTD;
1382}
1383
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001384NamedDecl*
Zhongxing Xu511d45b2009-01-16 02:36:34 +00001385Sema::ActOnVariableDeclarator(Scope* S, Declarator& D, DeclContext* DC,
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001386 QualType R, Decl* LastDeclarator,
Zhongxing Xu511d45b2009-01-16 02:36:34 +00001387 Decl* PrevDecl, bool& InvalidDecl) {
1388 DeclarationName Name = GetNameForDeclarator(D);
1389
1390 // Check that there are no default arguments (C++ only).
1391 if (getLangOptions().CPlusPlus)
1392 CheckExtraCXXDefaultArguments(D);
1393
1394 if (R.getTypePtr()->isObjCInterfaceType()) {
1395 Diag(D.getIdentifierLoc(), diag::err_statically_allocated_object)
1396 << D.getIdentifier();
1397 InvalidDecl = true;
1398 }
1399
1400 VarDecl *NewVD;
1401 VarDecl::StorageClass SC;
1402 switch (D.getDeclSpec().getStorageClassSpec()) {
1403 default: assert(0 && "Unknown storage class!");
1404 case DeclSpec::SCS_unspecified: SC = VarDecl::None; break;
1405 case DeclSpec::SCS_extern: SC = VarDecl::Extern; break;
1406 case DeclSpec::SCS_static: SC = VarDecl::Static; break;
1407 case DeclSpec::SCS_auto: SC = VarDecl::Auto; break;
1408 case DeclSpec::SCS_register: SC = VarDecl::Register; break;
1409 case DeclSpec::SCS_private_extern: SC = VarDecl::PrivateExtern; break;
1410 case DeclSpec::SCS_mutable:
1411 // mutable can only appear on non-static class members, so it's always
1412 // an error here
1413 Diag(D.getIdentifierLoc(), diag::err_mutable_nonmember);
1414 InvalidDecl = true;
1415 SC = VarDecl::None;
1416 break;
1417 }
1418
1419 IdentifierInfo *II = Name.getAsIdentifierInfo();
1420 if (!II) {
1421 Diag(D.getIdentifierLoc(), diag::err_bad_variable_name)
1422 << Name.getAsString();
1423 return 0;
1424 }
1425
1426 if (DC->isRecord()) {
1427 // This is a static data member for a C++ class.
1428 NewVD = CXXClassVarDecl::Create(Context, cast<CXXRecordDecl>(DC),
1429 D.getIdentifierLoc(), II,
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001430 R);
Zhongxing Xu511d45b2009-01-16 02:36:34 +00001431 } else {
1432 bool ThreadSpecified = D.getDeclSpec().isThreadSpecified();
1433 if (S->getFnParent() == 0) {
1434 // C99 6.9p2: The storage-class specifiers auto and register shall not
1435 // appear in the declaration specifiers in an external declaration.
1436 if (SC == VarDecl::Auto || SC == VarDecl::Register) {
1437 Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_fscope);
1438 InvalidDecl = true;
1439 }
1440 }
1441 NewVD = VarDecl::Create(Context, DC, D.getIdentifierLoc(),
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001442 II, R, SC,
Zhongxing Xu511d45b2009-01-16 02:36:34 +00001443 // FIXME: Move to DeclGroup...
1444 D.getDeclSpec().getSourceRange().getBegin());
1445 NewVD->setThreadSpecified(ThreadSpecified);
1446 }
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001447 NewVD->setNextDeclarator(LastDeclarator);
1448
Zhongxing Xu511d45b2009-01-16 02:36:34 +00001449 // Handle attributes prior to checking for duplicates in MergeVarDecl
1450 ProcessDeclAttributes(NewVD, D);
1451
1452 // Handle GNU asm-label extension (encoded as an attribute).
1453 if (Expr *E = (Expr*) D.getAsmLabel()) {
1454 // The parser guarantees this is a string.
1455 StringLiteral *SE = cast<StringLiteral>(E);
1456 NewVD->addAttr(new AsmLabelAttr(std::string(SE->getStrData(),
1457 SE->getByteLength())));
1458 }
1459
1460 // Emit an error if an address space was applied to decl with local storage.
1461 // This includes arrays of objects with address space qualifiers, but not
1462 // automatic variables that point to other address spaces.
1463 // ISO/IEC TR 18037 S5.1.2
1464 if (NewVD->hasLocalStorage() && (NewVD->getType().getAddressSpace() != 0)) {
1465 Diag(D.getIdentifierLoc(), diag::err_as_qualified_auto_decl);
1466 InvalidDecl = true;
1467 }
1468 // Merge the decl with the existing one if appropriate. If the decl is
1469 // in an outer scope, it isn't the same thing.
1470 if (PrevDecl && isDeclInScope(PrevDecl, DC, S)) {
1471 if (isa<FieldDecl>(PrevDecl) && D.getCXXScopeSpec().isSet()) {
1472 // The user tried to define a non-static data member
1473 // out-of-line (C++ [dcl.meaning]p1).
1474 Diag(NewVD->getLocation(), diag::err_nonstatic_member_out_of_line)
1475 << D.getCXXScopeSpec().getRange();
1476 NewVD->Destroy(Context);
1477 return 0;
1478 }
1479
1480 NewVD = MergeVarDecl(NewVD, PrevDecl);
1481 if (NewVD == 0) return 0;
1482
1483 if (D.getCXXScopeSpec().isSet()) {
1484 // No previous declaration in the qualifying scope.
1485 Diag(D.getIdentifierLoc(), diag::err_typecheck_no_member)
1486 << Name << D.getCXXScopeSpec().getRange();
1487 InvalidDecl = true;
1488 }
1489 }
1490 return NewVD;
1491}
1492
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001493NamedDecl*
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001494Sema::ActOnFunctionDeclarator(Scope* S, Declarator& D, DeclContext* DC,
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001495 QualType R, Decl *LastDeclarator,
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001496 Decl* PrevDecl, bool IsFunctionDefinition,
1497 bool& InvalidDecl) {
1498 assert(R.getTypePtr()->isFunctionType());
1499
1500 DeclarationName Name = GetNameForDeclarator(D);
1501 FunctionDecl::StorageClass SC = FunctionDecl::None;
1502 switch (D.getDeclSpec().getStorageClassSpec()) {
1503 default: assert(0 && "Unknown storage class!");
1504 case DeclSpec::SCS_auto:
1505 case DeclSpec::SCS_register:
1506 case DeclSpec::SCS_mutable:
1507 Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_func);
1508 InvalidDecl = true;
1509 break;
1510 case DeclSpec::SCS_unspecified: SC = FunctionDecl::None; break;
1511 case DeclSpec::SCS_extern: SC = FunctionDecl::Extern; break;
1512 case DeclSpec::SCS_static: SC = FunctionDecl::Static; break;
1513 case DeclSpec::SCS_private_extern: SC = FunctionDecl::PrivateExtern;break;
1514 }
1515
1516 bool isInline = D.getDeclSpec().isInlineSpecified();
1517 // bool isVirtual = D.getDeclSpec().isVirtualSpecified();
1518 bool isExplicit = D.getDeclSpec().isExplicitSpecified();
1519
1520 FunctionDecl *NewFD;
1521 if (D.getKind() == Declarator::DK_Constructor) {
1522 // This is a C++ constructor declaration.
1523 assert(DC->isRecord() &&
1524 "Constructors can only be declared in a member context");
1525
1526 InvalidDecl = InvalidDecl || CheckConstructorDeclarator(D, R, SC);
1527
1528 // Create the new declaration
1529 NewFD = CXXConstructorDecl::Create(Context,
1530 cast<CXXRecordDecl>(DC),
1531 D.getIdentifierLoc(), Name, R,
1532 isExplicit, isInline,
1533 /*isImplicitlyDeclared=*/false);
1534
1535 if (InvalidDecl)
1536 NewFD->setInvalidDecl();
1537 } else if (D.getKind() == Declarator::DK_Destructor) {
1538 // This is a C++ destructor declaration.
1539 if (DC->isRecord()) {
1540 InvalidDecl = InvalidDecl || CheckDestructorDeclarator(D, R, SC);
1541
1542 NewFD = CXXDestructorDecl::Create(Context,
1543 cast<CXXRecordDecl>(DC),
1544 D.getIdentifierLoc(), Name, R,
1545 isInline,
1546 /*isImplicitlyDeclared=*/false);
1547
1548 if (InvalidDecl)
1549 NewFD->setInvalidDecl();
1550 } else {
1551 Diag(D.getIdentifierLoc(), diag::err_destructor_not_member);
1552
1553 // Create a FunctionDecl to satisfy the function definition parsing
1554 // code path.
1555 NewFD = FunctionDecl::Create(Context, DC, D.getIdentifierLoc(),
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001556 Name, R, SC, isInline,
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001557 // FIXME: Move to DeclGroup...
1558 D.getDeclSpec().getSourceRange().getBegin());
1559 InvalidDecl = true;
1560 NewFD->setInvalidDecl();
1561 }
1562 } else if (D.getKind() == Declarator::DK_Conversion) {
1563 if (!DC->isRecord()) {
1564 Diag(D.getIdentifierLoc(),
1565 diag::err_conv_function_not_member);
1566 return 0;
1567 } else {
1568 InvalidDecl = InvalidDecl || CheckConversionDeclarator(D, R, SC);
1569
1570 NewFD = CXXConversionDecl::Create(Context, cast<CXXRecordDecl>(DC),
1571 D.getIdentifierLoc(), Name, R,
1572 isInline, isExplicit);
1573
1574 if (InvalidDecl)
1575 NewFD->setInvalidDecl();
1576 }
1577 } else if (DC->isRecord()) {
1578 // This is a C++ method declaration.
1579 NewFD = CXXMethodDecl::Create(Context, cast<CXXRecordDecl>(DC),
1580 D.getIdentifierLoc(), Name, R,
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001581 (SC == FunctionDecl::Static), isInline);
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001582 } else {
1583 NewFD = FunctionDecl::Create(Context, DC,
1584 D.getIdentifierLoc(),
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001585 Name, R, SC, isInline,
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001586 // FIXME: Move to DeclGroup...
1587 D.getDeclSpec().getSourceRange().getBegin());
1588 }
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001589 NewFD->setNextDeclarator(LastDeclarator);
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001590
1591 // Set the lexical context. If the declarator has a C++
1592 // scope specifier, the lexical context will be different
1593 // from the semantic context.
1594 NewFD->setLexicalDeclContext(CurContext);
1595
1596 // Handle GNU asm-label extension (encoded as an attribute).
1597 if (Expr *E = (Expr*) D.getAsmLabel()) {
1598 // The parser guarantees this is a string.
1599 StringLiteral *SE = cast<StringLiteral>(E);
1600 NewFD->addAttr(new AsmLabelAttr(std::string(SE->getStrData(),
1601 SE->getByteLength())));
1602 }
1603
1604 // Copy the parameter declarations from the declarator D to
1605 // the function declaration NewFD, if they are available.
1606 if (D.getNumTypeObjects() > 0) {
1607 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
1608
1609 // Create Decl objects for each parameter, adding them to the
1610 // FunctionDecl.
1611 llvm::SmallVector<ParmVarDecl*, 16> Params;
1612
1613 // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs
1614 // function that takes no arguments, not a function that takes a
1615 // single void argument.
1616 // We let through "const void" here because Sema::GetTypeForDeclarator
1617 // already checks for that case.
1618 if (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
1619 FTI.ArgInfo[0].Param &&
1620 ((ParmVarDecl*)FTI.ArgInfo[0].Param)->getType()->isVoidType()) {
1621 // empty arg list, don't push any params.
1622 ParmVarDecl *Param = (ParmVarDecl*)FTI.ArgInfo[0].Param;
1623
1624 // In C++, the empty parameter-type-list must be spelled "void"; a
1625 // typedef of void is not permitted.
1626 if (getLangOptions().CPlusPlus &&
1627 Param->getType().getUnqualifiedType() != Context.VoidTy) {
1628 Diag(Param->getLocation(), diag::ext_param_typedef_of_void);
1629 }
1630 } else if (FTI.NumArgs > 0 && FTI.ArgInfo[0].Param != 0) {
1631 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i)
1632 Params.push_back((ParmVarDecl *)FTI.ArgInfo[i].Param);
1633 }
1634
1635 NewFD->setParams(Context, &Params[0], Params.size());
1636 } else if (R->getAsTypedefType()) {
1637 // When we're declaring a function with a typedef, as in the
1638 // following example, we'll need to synthesize (unnamed)
1639 // parameters for use in the declaration.
1640 //
1641 // @code
1642 // typedef void fn(int);
1643 // fn f;
1644 // @endcode
1645 const FunctionTypeProto *FT = R->getAsFunctionTypeProto();
1646 if (!FT) {
1647 // This is a typedef of a function with no prototype, so we
1648 // don't need to do anything.
1649 } else if ((FT->getNumArgs() == 0) ||
1650 (FT->getNumArgs() == 1 && !FT->isVariadic() &&
1651 FT->getArgType(0)->isVoidType())) {
1652 // This is a zero-argument function. We don't need to do anything.
1653 } else {
1654 // Synthesize a parameter for each argument type.
1655 llvm::SmallVector<ParmVarDecl*, 16> Params;
1656 for (FunctionTypeProto::arg_type_iterator ArgType = FT->arg_type_begin();
1657 ArgType != FT->arg_type_end(); ++ArgType) {
1658 Params.push_back(ParmVarDecl::Create(Context, DC,
1659 SourceLocation(), 0,
1660 *ArgType, VarDecl::None,
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00001661 0));
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001662 }
1663
1664 NewFD->setParams(Context, &Params[0], Params.size());
1665 }
1666 }
1667
1668 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(NewFD))
1669 InvalidDecl = InvalidDecl || CheckConstructor(Constructor);
1670 else if (isa<CXXDestructorDecl>(NewFD)) {
1671 CXXRecordDecl *Record = cast<CXXRecordDecl>(NewFD->getParent());
1672 Record->setUserDeclaredDestructor(true);
1673 // C++ [class]p4: A POD-struct is an aggregate class that has [...] no
1674 // user-defined destructor.
1675 Record->setPOD(false);
1676 } else if (CXXConversionDecl *Conversion =
1677 dyn_cast<CXXConversionDecl>(NewFD))
1678 ActOnConversionDeclarator(Conversion);
1679
1680 // Extra checking for C++ overloaded operators (C++ [over.oper]).
1681 if (NewFD->isOverloadedOperator() &&
1682 CheckOverloadedOperatorDeclaration(NewFD))
1683 NewFD->setInvalidDecl();
1684
1685 // Merge the decl with the existing one if appropriate. Since C functions
1686 // are in a flat namespace, make sure we consider decls in outer scopes.
1687 if (PrevDecl &&
1688 (!getLangOptions().CPlusPlus||isDeclInScope(PrevDecl, DC, S))) {
1689 bool Redeclaration = false;
1690
1691 // If C++, determine whether NewFD is an overload of PrevDecl or
1692 // a declaration that requires merging. If it's an overload,
1693 // there's no more work to do here; we'll just add the new
1694 // function to the scope.
1695 OverloadedFunctionDecl::function_iterator MatchedDecl;
1696 if (!getLangOptions().CPlusPlus ||
1697 !IsOverload(NewFD, PrevDecl, MatchedDecl)) {
1698 Decl *OldDecl = PrevDecl;
1699
1700 // If PrevDecl was an overloaded function, extract the
1701 // FunctionDecl that matched.
1702 if (isa<OverloadedFunctionDecl>(PrevDecl))
1703 OldDecl = *MatchedDecl;
1704
1705 // NewFD and PrevDecl represent declarations that need to be
1706 // merged.
1707 NewFD = MergeFunctionDecl(NewFD, OldDecl, Redeclaration);
1708
1709 if (NewFD == 0) return 0;
1710 if (Redeclaration) {
1711 NewFD->setPreviousDeclaration(cast<FunctionDecl>(OldDecl));
1712
1713 // An out-of-line member function declaration must also be a
1714 // definition (C++ [dcl.meaning]p1).
1715 if (!IsFunctionDefinition && D.getCXXScopeSpec().isSet() &&
1716 !InvalidDecl) {
1717 Diag(NewFD->getLocation(), diag::err_out_of_line_declaration)
1718 << D.getCXXScopeSpec().getRange();
1719 NewFD->setInvalidDecl();
1720 }
1721 }
1722 }
1723
1724 if (!Redeclaration && D.getCXXScopeSpec().isSet()) {
1725 // The user tried to provide an out-of-line definition for a
1726 // member function, but there was no such member function
1727 // declared (C++ [class.mfct]p2). For example:
1728 //
1729 // class X {
1730 // void f() const;
1731 // };
1732 //
1733 // void X::f() { } // ill-formed
1734 //
1735 // Complain about this problem, and attempt to suggest close
1736 // matches (e.g., those that differ only in cv-qualifiers and
1737 // whether the parameter types are references).
1738 Diag(D.getIdentifierLoc(), diag::err_member_def_does_not_match)
1739 << cast<CXXRecordDecl>(DC)->getDeclName()
1740 << D.getCXXScopeSpec().getRange();
1741 InvalidDecl = true;
1742
Steve Naroffc349ee22009-01-29 00:07:50 +00001743 PrevDecl = LookupDeclInContext(Name, Decl::IDNS_Ordinary, DC);
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001744 if (!PrevDecl) {
1745 // Nothing to suggest.
1746 } else if (OverloadedFunctionDecl *Ovl
1747 = dyn_cast<OverloadedFunctionDecl>(PrevDecl)) {
1748 for (OverloadedFunctionDecl::function_iterator
1749 Func = Ovl->function_begin(),
1750 FuncEnd = Ovl->function_end();
1751 Func != FuncEnd; ++Func) {
1752 if (isNearlyMatchingMemberFunction(Context, *Func, NewFD))
1753 Diag((*Func)->getLocation(), diag::note_member_def_close_match);
1754
1755 }
1756 } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(PrevDecl)) {
1757 // Suggest this no matter how mismatched it is; it's the only
1758 // thing we have.
1759 unsigned diag;
1760 if (isNearlyMatchingMemberFunction(Context, Method, NewFD))
1761 diag = diag::note_member_def_close_match;
1762 else if (Method->getBody())
1763 diag = diag::note_previous_definition;
1764 else
1765 diag = diag::note_previous_declaration;
1766 Diag(Method->getLocation(), diag);
1767 }
1768
1769 PrevDecl = 0;
1770 }
1771 }
1772 // Handle attributes. We need to have merged decls when handling attributes
1773 // (for example to check for conflicts, etc).
1774 ProcessDeclAttributes(NewFD, D);
1775
1776 if (getLangOptions().CPlusPlus) {
1777 // In C++, check default arguments now that we have merged decls.
1778 CheckCXXDefaultArguments(NewFD);
1779
1780 // An out-of-line member function declaration must also be a
1781 // definition (C++ [dcl.meaning]p1).
1782 if (!IsFunctionDefinition && D.getCXXScopeSpec().isSet() && !InvalidDecl) {
1783 Diag(NewFD->getLocation(), diag::err_out_of_line_declaration)
1784 << D.getCXXScopeSpec().getRange();
1785 InvalidDecl = true;
1786 }
1787 }
1788 return NewFD;
1789}
1790
Steve Narofffc08f5e2008-10-27 11:34:16 +00001791void Sema::InitializerElementNotConstant(const Expr *Init) {
Chris Lattner9d2cf082008-11-19 05:27:50 +00001792 Diag(Init->getExprLoc(), diag::err_init_element_not_constant)
1793 << Init->getSourceRange();
Steve Narofffc08f5e2008-10-27 11:34:16 +00001794}
1795
Eli Friedman02c22ce2008-05-20 13:48:25 +00001796bool Sema::CheckAddressConstantExpressionLValue(const Expr* Init) {
1797 switch (Init->getStmtClass()) {
1798 default:
Steve Narofffc08f5e2008-10-27 11:34:16 +00001799 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00001800 return true;
1801 case Expr::ParenExprClass: {
1802 const ParenExpr* PE = cast<ParenExpr>(Init);
1803 return CheckAddressConstantExpressionLValue(PE->getSubExpr());
1804 }
1805 case Expr::CompoundLiteralExprClass:
1806 return cast<CompoundLiteralExpr>(Init)->isFileScope();
Douglas Gregor566782a2009-01-06 05:10:23 +00001807 case Expr::DeclRefExprClass:
1808 case Expr::QualifiedDeclRefExprClass: {
Eli Friedman02c22ce2008-05-20 13:48:25 +00001809 const Decl *D = cast<DeclRefExpr>(Init)->getDecl();
Eli Friedman8cb86e32008-05-21 03:39:11 +00001810 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
1811 if (VD->hasGlobalStorage())
1812 return false;
Steve Narofffc08f5e2008-10-27 11:34:16 +00001813 InitializerElementNotConstant(Init);
Eli Friedman8cb86e32008-05-21 03:39:11 +00001814 return true;
1815 }
Eli Friedman02c22ce2008-05-20 13:48:25 +00001816 if (isa<FunctionDecl>(D))
1817 return false;
Steve Narofffc08f5e2008-10-27 11:34:16 +00001818 InitializerElementNotConstant(Init);
Steve Narofff0b23542008-01-10 22:15:12 +00001819 return true;
1820 }
Eli Friedman02c22ce2008-05-20 13:48:25 +00001821 case Expr::MemberExprClass: {
1822 const MemberExpr *M = cast<MemberExpr>(Init);
1823 if (M->isArrow())
1824 return CheckAddressConstantExpression(M->getBase());
1825 return CheckAddressConstantExpressionLValue(M->getBase());
1826 }
1827 case Expr::ArraySubscriptExprClass: {
1828 // FIXME: Should we pedwarn for "x[0+0]" (where x is a pointer)?
1829 const ArraySubscriptExpr *ASE = cast<ArraySubscriptExpr>(Init);
1830 return CheckAddressConstantExpression(ASE->getBase()) ||
1831 CheckArithmeticConstantExpression(ASE->getIdx());
1832 }
1833 case Expr::StringLiteralClass:
Chris Lattner69909292008-08-10 01:53:14 +00001834 case Expr::PredefinedExprClass:
Eli Friedman02c22ce2008-05-20 13:48:25 +00001835 return false;
1836 case Expr::UnaryOperatorClass: {
1837 const UnaryOperator *Exp = cast<UnaryOperator>(Init);
1838
1839 // C99 6.6p9
1840 if (Exp->getOpcode() == UnaryOperator::Deref)
Eli Friedman8cb86e32008-05-21 03:39:11 +00001841 return CheckAddressConstantExpression(Exp->getSubExpr());
Eli Friedman02c22ce2008-05-20 13:48:25 +00001842
Steve Narofffc08f5e2008-10-27 11:34:16 +00001843 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00001844 return true;
1845 }
1846 }
1847}
1848
1849bool Sema::CheckAddressConstantExpression(const Expr* Init) {
1850 switch (Init->getStmtClass()) {
1851 default:
Steve Narofffc08f5e2008-10-27 11:34:16 +00001852 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00001853 return true;
Chris Lattner0903cba2008-10-06 07:26:43 +00001854 case Expr::ParenExprClass:
1855 return CheckAddressConstantExpression(cast<ParenExpr>(Init)->getSubExpr());
Eli Friedman02c22ce2008-05-20 13:48:25 +00001856 case Expr::StringLiteralClass:
1857 case Expr::ObjCStringLiteralClass:
1858 return false;
Chris Lattner0903cba2008-10-06 07:26:43 +00001859 case Expr::CallExprClass:
Douglas Gregor65fedaf2008-11-14 16:09:21 +00001860 case Expr::CXXOperatorCallExprClass:
Chris Lattner0903cba2008-10-06 07:26:43 +00001861 // __builtin___CFStringMakeConstantString is a valid constant l-value.
1862 if (cast<CallExpr>(Init)->isBuiltinCall() ==
1863 Builtin::BI__builtin___CFStringMakeConstantString)
1864 return false;
1865
Steve Narofffc08f5e2008-10-27 11:34:16 +00001866 InitializerElementNotConstant(Init);
Chris Lattner0903cba2008-10-06 07:26:43 +00001867 return true;
1868
Eli Friedman02c22ce2008-05-20 13:48:25 +00001869 case Expr::UnaryOperatorClass: {
1870 const UnaryOperator *Exp = cast<UnaryOperator>(Init);
1871
1872 // C99 6.6p9
1873 if (Exp->getOpcode() == UnaryOperator::AddrOf)
1874 return CheckAddressConstantExpressionLValue(Exp->getSubExpr());
1875
1876 if (Exp->getOpcode() == UnaryOperator::Extension)
1877 return CheckAddressConstantExpression(Exp->getSubExpr());
1878
Steve Narofffc08f5e2008-10-27 11:34:16 +00001879 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00001880 return true;
1881 }
1882 case Expr::BinaryOperatorClass: {
1883 // FIXME: Should we pedwarn for expressions like "a + 1 + 2"?
1884 const BinaryOperator *Exp = cast<BinaryOperator>(Init);
1885
1886 Expr *PExp = Exp->getLHS();
1887 Expr *IExp = Exp->getRHS();
1888 if (IExp->getType()->isPointerType())
1889 std::swap(PExp, IExp);
1890
1891 // FIXME: Should we pedwarn if IExp isn't an integer constant expression?
1892 return CheckAddressConstantExpression(PExp) ||
1893 CheckArithmeticConstantExpression(IExp);
1894 }
Eli Friedman1fad3c62008-08-25 20:46:57 +00001895 case Expr::ImplicitCastExprClass:
Douglas Gregor035d0882008-10-28 15:36:24 +00001896 case Expr::CStyleCastExprClass: {
Eli Friedman02c22ce2008-05-20 13:48:25 +00001897 const Expr* SubExpr = cast<CastExpr>(Init)->getSubExpr();
Eli Friedman1fad3c62008-08-25 20:46:57 +00001898 if (Init->getStmtClass() == Expr::ImplicitCastExprClass) {
1899 // Check for implicit promotion
1900 if (SubExpr->getType()->isFunctionType() ||
1901 SubExpr->getType()->isArrayType())
1902 return CheckAddressConstantExpressionLValue(SubExpr);
1903 }
Eli Friedman02c22ce2008-05-20 13:48:25 +00001904
1905 // Check for pointer->pointer cast
1906 if (SubExpr->getType()->isPointerType())
1907 return CheckAddressConstantExpression(SubExpr);
1908
Eli Friedman1fad3c62008-08-25 20:46:57 +00001909 if (SubExpr->getType()->isIntegralType()) {
1910 // Check for the special-case of a pointer->int->pointer cast;
1911 // this isn't standard, but some code requires it. See
1912 // PR2720 for an example.
1913 if (const CastExpr* SubCast = dyn_cast<CastExpr>(SubExpr)) {
1914 if (SubCast->getSubExpr()->getType()->isPointerType()) {
1915 unsigned IntWidth = Context.getIntWidth(SubCast->getType());
1916 unsigned PointerWidth = Context.getTypeSize(Context.VoidPtrTy);
1917 if (IntWidth >= PointerWidth) {
1918 return CheckAddressConstantExpression(SubCast->getSubExpr());
1919 }
1920 }
1921 }
1922 }
1923 if (SubExpr->getType()->isArithmeticType()) {
Eli Friedman02c22ce2008-05-20 13:48:25 +00001924 return CheckArithmeticConstantExpression(SubExpr);
Eli Friedman1fad3c62008-08-25 20:46:57 +00001925 }
Eli Friedman02c22ce2008-05-20 13:48:25 +00001926
Steve Narofffc08f5e2008-10-27 11:34:16 +00001927 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00001928 return true;
1929 }
1930 case Expr::ConditionalOperatorClass: {
1931 // FIXME: Should we pedwarn here?
1932 const ConditionalOperator *Exp = cast<ConditionalOperator>(Init);
1933 if (!Exp->getCond()->getType()->isArithmeticType()) {
Steve Narofffc08f5e2008-10-27 11:34:16 +00001934 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00001935 return true;
1936 }
1937 if (CheckArithmeticConstantExpression(Exp->getCond()))
1938 return true;
1939 if (Exp->getLHS() &&
1940 CheckAddressConstantExpression(Exp->getLHS()))
1941 return true;
1942 return CheckAddressConstantExpression(Exp->getRHS());
1943 }
1944 case Expr::AddrLabelExprClass:
1945 return false;
1946 }
1947}
1948
Eli Friedman998dffb2008-06-09 05:05:07 +00001949static const Expr* FindExpressionBaseAddress(const Expr* E);
1950
1951static const Expr* FindExpressionBaseAddressLValue(const Expr* E) {
1952 switch (E->getStmtClass()) {
1953 default:
1954 return E;
1955 case Expr::ParenExprClass: {
1956 const ParenExpr* PE = cast<ParenExpr>(E);
1957 return FindExpressionBaseAddressLValue(PE->getSubExpr());
1958 }
1959 case Expr::MemberExprClass: {
1960 const MemberExpr *M = cast<MemberExpr>(E);
1961 if (M->isArrow())
1962 return FindExpressionBaseAddress(M->getBase());
1963 return FindExpressionBaseAddressLValue(M->getBase());
1964 }
1965 case Expr::ArraySubscriptExprClass: {
1966 const ArraySubscriptExpr *ASE = cast<ArraySubscriptExpr>(E);
1967 return FindExpressionBaseAddress(ASE->getBase());
1968 }
1969 case Expr::UnaryOperatorClass: {
1970 const UnaryOperator *Exp = cast<UnaryOperator>(E);
1971
1972 if (Exp->getOpcode() == UnaryOperator::Deref)
1973 return FindExpressionBaseAddress(Exp->getSubExpr());
1974
1975 return E;
1976 }
1977 }
1978}
1979
1980static const Expr* FindExpressionBaseAddress(const Expr* E) {
1981 switch (E->getStmtClass()) {
1982 default:
1983 return E;
1984 case Expr::ParenExprClass: {
1985 const ParenExpr* PE = cast<ParenExpr>(E);
1986 return FindExpressionBaseAddress(PE->getSubExpr());
1987 }
1988 case Expr::UnaryOperatorClass: {
1989 const UnaryOperator *Exp = cast<UnaryOperator>(E);
1990
1991 // C99 6.6p9
1992 if (Exp->getOpcode() == UnaryOperator::AddrOf)
1993 return FindExpressionBaseAddressLValue(Exp->getSubExpr());
1994
1995 if (Exp->getOpcode() == UnaryOperator::Extension)
1996 return FindExpressionBaseAddress(Exp->getSubExpr());
1997
1998 return E;
1999 }
2000 case Expr::BinaryOperatorClass: {
2001 const BinaryOperator *Exp = cast<BinaryOperator>(E);
2002
2003 Expr *PExp = Exp->getLHS();
2004 Expr *IExp = Exp->getRHS();
2005 if (IExp->getType()->isPointerType())
2006 std::swap(PExp, IExp);
2007
2008 return FindExpressionBaseAddress(PExp);
2009 }
2010 case Expr::ImplicitCastExprClass: {
2011 const Expr* SubExpr = cast<ImplicitCastExpr>(E)->getSubExpr();
2012
2013 // Check for implicit promotion
2014 if (SubExpr->getType()->isFunctionType() ||
2015 SubExpr->getType()->isArrayType())
2016 return FindExpressionBaseAddressLValue(SubExpr);
2017
2018 // Check for pointer->pointer cast
2019 if (SubExpr->getType()->isPointerType())
2020 return FindExpressionBaseAddress(SubExpr);
2021
2022 // We assume that we have an arithmetic expression here;
2023 // if we don't, we'll figure it out later
2024 return 0;
2025 }
Douglas Gregor035d0882008-10-28 15:36:24 +00002026 case Expr::CStyleCastExprClass: {
Eli Friedman998dffb2008-06-09 05:05:07 +00002027 const Expr* SubExpr = cast<CastExpr>(E)->getSubExpr();
2028
2029 // Check for pointer->pointer cast
2030 if (SubExpr->getType()->isPointerType())
2031 return FindExpressionBaseAddress(SubExpr);
2032
2033 // We assume that we have an arithmetic expression here;
2034 // if we don't, we'll figure it out later
2035 return 0;
2036 }
2037 }
2038}
2039
Anders Carlssone8bd9f22008-11-22 21:04:56 +00002040bool Sema::CheckArithmeticConstantExpression(const Expr* Init) {
Eli Friedman02c22ce2008-05-20 13:48:25 +00002041 switch (Init->getStmtClass()) {
2042 default:
Steve Narofffc08f5e2008-10-27 11:34:16 +00002043 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002044 return true;
2045 case Expr::ParenExprClass: {
2046 const ParenExpr* PE = cast<ParenExpr>(Init);
2047 return CheckArithmeticConstantExpression(PE->getSubExpr());
2048 }
2049 case Expr::FloatingLiteralClass:
2050 case Expr::IntegerLiteralClass:
2051 case Expr::CharacterLiteralClass:
2052 case Expr::ImaginaryLiteralClass:
2053 case Expr::TypesCompatibleExprClass:
2054 case Expr::CXXBoolLiteralExprClass:
2055 return false;
Douglas Gregor65fedaf2008-11-14 16:09:21 +00002056 case Expr::CallExprClass:
2057 case Expr::CXXOperatorCallExprClass: {
Eli Friedman02c22ce2008-05-20 13:48:25 +00002058 const CallExpr *CE = cast<CallExpr>(Init);
Chris Lattner2d9a3f62008-10-06 06:49:02 +00002059
2060 // Allow any constant foldable calls to builtins.
2061 if (CE->isBuiltinCall() && CE->isEvaluatable(Context))
Eli Friedman02c22ce2008-05-20 13:48:25 +00002062 return false;
Chris Lattner2d9a3f62008-10-06 06:49:02 +00002063
Steve Narofffc08f5e2008-10-27 11:34:16 +00002064 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002065 return true;
2066 }
Douglas Gregor566782a2009-01-06 05:10:23 +00002067 case Expr::DeclRefExprClass:
2068 case Expr::QualifiedDeclRefExprClass: {
Eli Friedman02c22ce2008-05-20 13:48:25 +00002069 const Decl *D = cast<DeclRefExpr>(Init)->getDecl();
2070 if (isa<EnumConstantDecl>(D))
2071 return false;
Steve Narofffc08f5e2008-10-27 11:34:16 +00002072 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002073 return true;
2074 }
2075 case Expr::CompoundLiteralExprClass:
2076 // Allow "(vector type){2,4}"; normal C constraints don't allow this,
2077 // but vectors are allowed to be magic.
2078 if (Init->getType()->isVectorType())
2079 return false;
Steve Narofffc08f5e2008-10-27 11:34:16 +00002080 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002081 return true;
2082 case Expr::UnaryOperatorClass: {
2083 const UnaryOperator *Exp = cast<UnaryOperator>(Init);
2084
2085 switch (Exp->getOpcode()) {
2086 // Address, indirect, pre/post inc/dec, etc are not valid constant exprs.
2087 // See C99 6.6p3.
2088 default:
Steve Narofffc08f5e2008-10-27 11:34:16 +00002089 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002090 return true;
Eli Friedman02c22ce2008-05-20 13:48:25 +00002091 case UnaryOperator::OffsetOf:
Eli Friedman02c22ce2008-05-20 13:48:25 +00002092 if (Exp->getSubExpr()->getType()->isConstantSizeType())
2093 return false;
Steve Narofffc08f5e2008-10-27 11:34:16 +00002094 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002095 return true;
2096 case UnaryOperator::Extension:
2097 case UnaryOperator::LNot:
2098 case UnaryOperator::Plus:
2099 case UnaryOperator::Minus:
2100 case UnaryOperator::Not:
2101 return CheckArithmeticConstantExpression(Exp->getSubExpr());
2102 }
2103 }
Sebastian Redl0cb7c872008-11-11 17:56:53 +00002104 case Expr::SizeOfAlignOfExprClass: {
2105 const SizeOfAlignOfExpr *Exp = cast<SizeOfAlignOfExpr>(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002106 // Special check for void types, which are allowed as an extension
Sebastian Redl0cb7c872008-11-11 17:56:53 +00002107 if (Exp->getTypeOfArgument()->isVoidType())
Eli Friedman02c22ce2008-05-20 13:48:25 +00002108 return false;
2109 // alignof always evaluates to a constant.
2110 // FIXME: is sizeof(int[3.0]) a constant expression?
Sebastian Redl0cb7c872008-11-11 17:56:53 +00002111 if (Exp->isSizeOf() && !Exp->getTypeOfArgument()->isConstantSizeType()) {
Steve Narofffc08f5e2008-10-27 11:34:16 +00002112 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002113 return true;
2114 }
2115 return false;
2116 }
2117 case Expr::BinaryOperatorClass: {
2118 const BinaryOperator *Exp = cast<BinaryOperator>(Init);
2119
2120 if (Exp->getLHS()->getType()->isArithmeticType() &&
2121 Exp->getRHS()->getType()->isArithmeticType()) {
2122 return CheckArithmeticConstantExpression(Exp->getLHS()) ||
2123 CheckArithmeticConstantExpression(Exp->getRHS());
2124 }
2125
Eli Friedman998dffb2008-06-09 05:05:07 +00002126 if (Exp->getLHS()->getType()->isPointerType() &&
2127 Exp->getRHS()->getType()->isPointerType()) {
2128 const Expr* LHSBase = FindExpressionBaseAddress(Exp->getLHS());
2129 const Expr* RHSBase = FindExpressionBaseAddress(Exp->getRHS());
2130
2131 // Only allow a null (constant integer) base; we could
2132 // allow some additional cases if necessary, but this
2133 // is sufficient to cover offsetof-like constructs.
2134 if (!LHSBase && !RHSBase) {
2135 return CheckAddressConstantExpression(Exp->getLHS()) ||
2136 CheckAddressConstantExpression(Exp->getRHS());
2137 }
2138 }
2139
Steve Narofffc08f5e2008-10-27 11:34:16 +00002140 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002141 return true;
2142 }
2143 case Expr::ImplicitCastExprClass:
Douglas Gregor035d0882008-10-28 15:36:24 +00002144 case Expr::CStyleCastExprClass: {
Argiris Kirtzidisc45e2fb2008-08-18 23:01:59 +00002145 const Expr *SubExpr = cast<CastExpr>(Init)->getSubExpr();
Eli Friedmand662caa2008-09-01 22:08:17 +00002146 if (SubExpr->getType()->isArithmeticType())
2147 return CheckArithmeticConstantExpression(SubExpr);
2148
Eli Friedman266df142008-09-02 09:37:00 +00002149 if (SubExpr->getType()->isPointerType()) {
2150 const Expr* Base = FindExpressionBaseAddress(SubExpr);
2151 // If the pointer has a null base, this is an offsetof-like construct
2152 if (!Base)
2153 return CheckAddressConstantExpression(SubExpr);
2154 }
2155
Steve Narofffc08f5e2008-10-27 11:34:16 +00002156 InitializerElementNotConstant(Init);
Eli Friedmand662caa2008-09-01 22:08:17 +00002157 return true;
Eli Friedman02c22ce2008-05-20 13:48:25 +00002158 }
2159 case Expr::ConditionalOperatorClass: {
2160 const ConditionalOperator *Exp = cast<ConditionalOperator>(Init);
Chris Lattner94d45412008-10-06 05:42:39 +00002161
2162 // If GNU extensions are disabled, we require all operands to be arithmetic
2163 // constant expressions.
2164 if (getLangOptions().NoExtensions) {
2165 return CheckArithmeticConstantExpression(Exp->getCond()) ||
2166 (Exp->getLHS() && CheckArithmeticConstantExpression(Exp->getLHS())) ||
2167 CheckArithmeticConstantExpression(Exp->getRHS());
2168 }
2169
2170 // Otherwise, we have to emulate some of the behavior of fold here.
2171 // Basically GCC treats things like "4 ? 1 : somefunc()" as a constant
2172 // because it can constant fold things away. To retain compatibility with
2173 // GCC code, we see if we can fold the condition to a constant (which we
2174 // should always be able to do in theory). If so, we only require the
2175 // specified arm of the conditional to be a constant. This is a horrible
2176 // hack, but is require by real world code that uses __builtin_constant_p.
Anders Carlsson8c3de802008-12-19 20:58:05 +00002177 Expr::EvalResult EvalResult;
2178 if (!Exp->getCond()->Evaluate(EvalResult, Context) ||
2179 EvalResult.HasSideEffects) {
Chris Lattneref069662008-11-16 21:24:15 +00002180 // If Evaluate couldn't fold it, CheckArithmeticConstantExpression
Chris Lattner94d45412008-10-06 05:42:39 +00002181 // won't be able to either. Use it to emit the diagnostic though.
2182 bool Res = CheckArithmeticConstantExpression(Exp->getCond());
Chris Lattneref069662008-11-16 21:24:15 +00002183 assert(Res && "Evaluate couldn't evaluate this constant?");
Chris Lattner94d45412008-10-06 05:42:39 +00002184 return Res;
2185 }
2186
2187 // Verify that the side following the condition is also a constant.
2188 const Expr *TrueSide = Exp->getLHS(), *FalseSide = Exp->getRHS();
Anders Carlsson8c3de802008-12-19 20:58:05 +00002189 if (EvalResult.Val.getInt() == 0)
Chris Lattner94d45412008-10-06 05:42:39 +00002190 std::swap(TrueSide, FalseSide);
2191
2192 if (TrueSide && CheckArithmeticConstantExpression(TrueSide))
Eli Friedman02c22ce2008-05-20 13:48:25 +00002193 return true;
Chris Lattner94d45412008-10-06 05:42:39 +00002194
2195 // Okay, the evaluated side evaluates to a constant, so we accept this.
2196 // Check to see if the other side is obviously not a constant. If so,
2197 // emit a warning that this is a GNU extension.
Chris Lattner2d9a3f62008-10-06 06:49:02 +00002198 if (FalseSide && !FalseSide->isEvaluatable(Context))
Chris Lattner94d45412008-10-06 05:42:39 +00002199 Diag(Init->getExprLoc(),
Chris Lattner9d2cf082008-11-19 05:27:50 +00002200 diag::ext_typecheck_expression_not_constant_but_accepted)
2201 << FalseSide->getSourceRange();
Chris Lattner94d45412008-10-06 05:42:39 +00002202 return false;
Eli Friedman02c22ce2008-05-20 13:48:25 +00002203 }
2204 }
2205}
2206
2207bool Sema::CheckForConstantInitializer(Expr *Init, QualType DclT) {
Douglas Gregorc5a6bdc2009-01-22 00:58:24 +00002208 if (DesignatedInitExpr *DIE = dyn_cast<DesignatedInitExpr>(Init))
2209 Init = DIE->getInit();
2210
Nuno Lopese7280452008-07-07 16:46:50 +00002211 Init = Init->IgnoreParens();
2212
Nate Begemand6d2f772009-01-18 03:20:47 +00002213 if (Init->isEvaluatable(Context))
Anders Carlssonf6791c62008-12-05 05:09:56 +00002214 return false;
2215
Eli Friedman02c22ce2008-05-20 13:48:25 +00002216 // Look through CXXDefaultArgExprs; they have no meaning in this context.
2217 if (CXXDefaultArgExpr* DAE = dyn_cast<CXXDefaultArgExpr>(Init))
2218 return CheckForConstantInitializer(DAE->getExpr(), DclT);
2219
Nuno Lopese7280452008-07-07 16:46:50 +00002220 if (CompoundLiteralExpr *e = dyn_cast<CompoundLiteralExpr>(Init))
2221 return CheckForConstantInitializer(e->getInitializer(), DclT);
2222
Douglas Gregorc9e012a2009-01-29 17:44:32 +00002223 if (isa<ImplicitValueInitExpr>(Init)) {
2224 // FIXME: In C++, check for non-POD types.
2225 return false;
2226 }
2227
Eli Friedman02c22ce2008-05-20 13:48:25 +00002228 if (InitListExpr *Exp = dyn_cast<InitListExpr>(Init)) {
2229 unsigned numInits = Exp->getNumInits();
2230 for (unsigned i = 0; i < numInits; i++) {
2231 // FIXME: Need to get the type of the declaration for C++,
2232 // because it could be a reference?
Douglas Gregorf603b472009-01-28 21:54:33 +00002233
Eli Friedman02c22ce2008-05-20 13:48:25 +00002234 if (CheckForConstantInitializer(Exp->getInit(i),
2235 Exp->getInit(i)->getType()))
2236 return true;
2237 }
2238 return false;
2239 }
2240
Anders Carlssonf6791c62008-12-05 05:09:56 +00002241 // FIXME: We can probably remove some of this code below, now that
2242 // Expr::Evaluate is doing the heavy lifting for scalars.
2243
Eli Friedman02c22ce2008-05-20 13:48:25 +00002244 if (Init->isNullPointerConstant(Context))
2245 return false;
2246 if (Init->getType()->isArithmeticType()) {
Chris Lattnerd5a56aa2008-07-26 22:17:49 +00002247 QualType InitTy = Context.getCanonicalType(Init->getType())
2248 .getUnqualifiedType();
Eli Friedman25086f02008-05-30 18:14:48 +00002249 if (InitTy == Context.BoolTy) {
2250 // Special handling for pointers implicitly cast to bool;
2251 // (e.g. "_Bool rr = &rr;"). This is only legal at the top level.
2252 if (ImplicitCastExpr* ICE = dyn_cast<ImplicitCastExpr>(Init)) {
2253 Expr* SubE = ICE->getSubExpr();
2254 if (SubE->getType()->isPointerType() ||
2255 SubE->getType()->isArrayType() ||
2256 SubE->getType()->isFunctionType()) {
2257 return CheckAddressConstantExpression(Init);
2258 }
2259 }
2260 } else if (InitTy->isIntegralType()) {
2261 Expr* SubE = 0;
Argiris Kirtzidisc45e2fb2008-08-18 23:01:59 +00002262 if (CastExpr* CE = dyn_cast<CastExpr>(Init))
Eli Friedman25086f02008-05-30 18:14:48 +00002263 SubE = CE->getSubExpr();
2264 // Special check for pointer cast to int; we allow as an extension
2265 // an address constant cast to an integer if the integer
2266 // is of an appropriate width (this sort of code is apparently used
2267 // in some places).
2268 // FIXME: Add pedwarn?
2269 // FIXME: Don't allow bitfields here! Need the FieldDecl for that.
2270 if (SubE && (SubE->getType()->isPointerType() ||
2271 SubE->getType()->isArrayType() ||
2272 SubE->getType()->isFunctionType())) {
2273 unsigned IntWidth = Context.getTypeSize(Init->getType());
2274 unsigned PointerWidth = Context.getTypeSize(Context.VoidPtrTy);
2275 if (IntWidth >= PointerWidth)
2276 return CheckAddressConstantExpression(Init);
2277 }
Eli Friedman02c22ce2008-05-20 13:48:25 +00002278 }
2279
2280 return CheckArithmeticConstantExpression(Init);
2281 }
2282
2283 if (Init->getType()->isPointerType())
2284 return CheckAddressConstantExpression(Init);
2285
Eli Friedman25086f02008-05-30 18:14:48 +00002286 // An array type at the top level that isn't an init-list must
2287 // be a string literal
Eli Friedman02c22ce2008-05-20 13:48:25 +00002288 if (Init->getType()->isArrayType())
2289 return false;
2290
Nuno Lopes1dc26762008-09-01 18:42:41 +00002291 if (Init->getType()->isFunctionType())
2292 return false;
2293
Steve Naroffdff3fb22008-10-02 17:12:56 +00002294 // Allow block exprs at top level.
2295 if (Init->getType()->isBlockPointerType())
2296 return false;
Nuno Lopes8260d5d2009-01-15 16:44:45 +00002297
2298 // GCC cast to union extension
2299 // note: the validity of the cast expr is checked by CheckCastTypes()
2300 if (CastExpr *C = dyn_cast<CastExpr>(Init)) {
2301 QualType T = C->getType();
2302 return T->isUnionType() && CheckForConstantInitializer(C->getSubExpr(), T);
2303 }
2304
Steve Narofffc08f5e2008-10-27 11:34:16 +00002305 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002306 return true;
Steve Narofff0b23542008-01-10 22:15:12 +00002307}
2308
Sebastian Redl91f9b0a2008-12-13 16:23:55 +00002309void Sema::AddInitializerToDecl(DeclTy *dcl, ExprArg init) {
Douglas Gregor6214d8a2009-01-14 15:45:31 +00002310 AddInitializerToDecl(dcl, move(init), /*DirectInit=*/false);
2311}
2312
2313/// AddInitializerToDecl - Adds the initializer Init to the
2314/// declaration dcl. If DirectInit is true, this is C++ direct
2315/// initialization rather than copy initialization.
2316void Sema::AddInitializerToDecl(DeclTy *dcl, ExprArg init, bool DirectInit) {
Steve Naroff420d0f52007-09-12 20:13:48 +00002317 Decl *RealDecl = static_cast<Decl *>(dcl);
Sebastian Redl91f9b0a2008-12-13 16:23:55 +00002318 Expr *Init = static_cast<Expr *>(init.release());
Chris Lattnerf31a2fb2007-10-19 20:10:30 +00002319 assert(Init && "missing initializer");
Steve Naroff6a0e2092007-09-12 14:07:44 +00002320
Chris Lattnerf31a2fb2007-10-19 20:10:30 +00002321 // If there is no declaration, there was an error parsing it. Just ignore
2322 // the initializer.
2323 if (RealDecl == 0) {
2324 delete Init;
2325 return;
2326 }
Steve Naroff6a0e2092007-09-12 14:07:44 +00002327
Steve Naroff420d0f52007-09-12 20:13:48 +00002328 VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl);
2329 if (!VDecl) {
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00002330 Diag(RealDecl->getLocation(), diag::err_illegal_initializer);
Steve Naroff420d0f52007-09-12 20:13:48 +00002331 RealDecl->setInvalidDecl();
2332 return;
2333 }
Steve Naroff6a0e2092007-09-12 14:07:44 +00002334 // Get the decls type and save a reference for later, since
Steve Narofff0b23542008-01-10 22:15:12 +00002335 // CheckInitializerTypes may change it.
Steve Naroff420d0f52007-09-12 20:13:48 +00002336 QualType DclT = VDecl->getType(), SavT = DclT;
Steve Naroff72a6ebc2008-04-15 22:42:06 +00002337 if (VDecl->isBlockVarDecl()) {
2338 VarDecl::StorageClass SC = VDecl->getStorageClass();
Steve Naroff6a0e2092007-09-12 14:07:44 +00002339 if (SC == VarDecl::Extern) { // C99 6.7.8p5
Steve Naroff420d0f52007-09-12 20:13:48 +00002340 Diag(VDecl->getLocation(), diag::err_block_extern_cant_init);
Steve Naroff72a6ebc2008-04-15 22:42:06 +00002341 VDecl->setInvalidDecl();
2342 } else if (!VDecl->isInvalidDecl()) {
Douglas Gregor6428e762008-11-05 15:29:30 +00002343 if (CheckInitializerTypes(Init, DclT, VDecl->getLocation(),
Douglas Gregor6214d8a2009-01-14 15:45:31 +00002344 VDecl->getDeclName(), DirectInit))
Steve Naroff72a6ebc2008-04-15 22:42:06 +00002345 VDecl->setInvalidDecl();
Anders Carlssonea7140a2008-08-22 05:00:02 +00002346
2347 // C++ 3.6.2p2, allow dynamic initialization of static initializers.
2348 if (!getLangOptions().CPlusPlus) {
2349 if (SC == VarDecl::Static) // C99 6.7.8p4.
2350 CheckForConstantInitializer(Init, DclT);
2351 }
Steve Naroff6a0e2092007-09-12 14:07:44 +00002352 }
Steve Naroff72a6ebc2008-04-15 22:42:06 +00002353 } else if (VDecl->isFileVarDecl()) {
2354 if (VDecl->getStorageClass() == VarDecl::Extern)
Steve Naroff420d0f52007-09-12 20:13:48 +00002355 Diag(VDecl->getLocation(), diag::warn_extern_init);
Steve Naroff72a6ebc2008-04-15 22:42:06 +00002356 if (!VDecl->isInvalidDecl())
Douglas Gregor6428e762008-11-05 15:29:30 +00002357 if (CheckInitializerTypes(Init, DclT, VDecl->getLocation(),
Douglas Gregor6214d8a2009-01-14 15:45:31 +00002358 VDecl->getDeclName(), DirectInit))
Steve Naroff72a6ebc2008-04-15 22:42:06 +00002359 VDecl->setInvalidDecl();
Steve Narofff0b23542008-01-10 22:15:12 +00002360
Anders Carlssonea7140a2008-08-22 05:00:02 +00002361 // C++ 3.6.2p2, allow dynamic initialization of static initializers.
2362 if (!getLangOptions().CPlusPlus) {
2363 // C99 6.7.8p4. All file scoped initializers need to be constant.
2364 CheckForConstantInitializer(Init, DclT);
2365 }
Steve Naroff6a0e2092007-09-12 14:07:44 +00002366 }
2367 // If the type changed, it means we had an incomplete type that was
2368 // completed by the initializer. For example:
2369 // int ary[] = { 1, 3, 5 };
2370 // "ary" transitions from a VariableArrayType to a ConstantArrayType.
Christopher Lamb62f06b62007-11-29 19:09:19 +00002371 if (!VDecl->isInvalidDecl() && (DclT != SavT)) {
Steve Naroff420d0f52007-09-12 20:13:48 +00002372 VDecl->setType(DclT);
Christopher Lamb62f06b62007-11-29 19:09:19 +00002373 Init->setType(DclT);
2374 }
Steve Naroff6a0e2092007-09-12 14:07:44 +00002375
2376 // Attach the initializer to the decl.
Steve Naroff420d0f52007-09-12 20:13:48 +00002377 VDecl->setInit(Init);
Steve Naroff6a0e2092007-09-12 14:07:44 +00002378 return;
2379}
2380
Douglas Gregor81c29152008-10-29 00:13:59 +00002381void Sema::ActOnUninitializedDecl(DeclTy *dcl) {
2382 Decl *RealDecl = static_cast<Decl *>(dcl);
2383
Argiris Kirtzidis9c0e9942008-11-07 13:01:22 +00002384 // If there is no declaration, there was an error parsing it. Just ignore it.
2385 if (RealDecl == 0)
2386 return;
2387
Douglas Gregor81c29152008-10-29 00:13:59 +00002388 if (VarDecl *Var = dyn_cast<VarDecl>(RealDecl)) {
2389 QualType Type = Var->getType();
2390 // C++ [dcl.init.ref]p3:
2391 // The initializer can be omitted for a reference only in a
2392 // parameter declaration (8.3.5), in the declaration of a
2393 // function return type, in the declaration of a class member
2394 // within its class declaration (9.2), and where the extern
2395 // specifier is explicitly used.
Douglas Gregorb9213832008-12-15 21:24:18 +00002396 if (Type->isReferenceType() &&
2397 Var->getStorageClass() != VarDecl::Extern &&
2398 Var->getStorageClass() != VarDecl::PrivateExtern) {
Chris Lattner77d52da2008-11-20 06:06:08 +00002399 Diag(Var->getLocation(), diag::err_reference_var_requires_init)
Chris Lattner271d4c22008-11-24 05:29:24 +00002400 << Var->getDeclName()
2401 << SourceRange(Var->getLocation(), Var->getLocation());
Douglas Gregor5870a952008-11-03 20:45:27 +00002402 Var->setInvalidDecl();
2403 return;
2404 }
2405
2406 // C++ [dcl.init]p9:
2407 //
2408 // If no initializer is specified for an object, and the object
2409 // is of (possibly cv-qualified) non-POD class type (or array
2410 // thereof), the object shall be default-initialized; if the
2411 // object is of const-qualified type, the underlying class type
2412 // shall have a user-declared default constructor.
2413 if (getLangOptions().CPlusPlus) {
2414 QualType InitType = Type;
2415 if (const ArrayType *Array = Context.getAsArrayType(Type))
2416 InitType = Array->getElementType();
Douglas Gregorb9213832008-12-15 21:24:18 +00002417 if (Var->getStorageClass() != VarDecl::Extern &&
2418 Var->getStorageClass() != VarDecl::PrivateExtern &&
2419 InitType->isRecordType()) {
Douglas Gregor6428e762008-11-05 15:29:30 +00002420 const CXXConstructorDecl *Constructor
2421 = PerformInitializationByConstructor(InitType, 0, 0,
2422 Var->getLocation(),
2423 SourceRange(Var->getLocation(),
2424 Var->getLocation()),
Chris Lattner271d4c22008-11-24 05:29:24 +00002425 Var->getDeclName(),
Douglas Gregor6428e762008-11-05 15:29:30 +00002426 IK_Default);
Douglas Gregor5870a952008-11-03 20:45:27 +00002427 if (!Constructor)
2428 Var->setInvalidDecl();
2429 }
2430 }
Douglas Gregor81c29152008-10-29 00:13:59 +00002431
Douglas Gregorc0d11a82008-10-29 13:50:18 +00002432#if 0
2433 // FIXME: Temporarily disabled because we are not properly parsing
2434 // linkage specifications on declarations, e.g.,
2435 //
2436 // extern "C" const CGPoint CGPointerZero;
2437 //
Douglas Gregor81c29152008-10-29 00:13:59 +00002438 // C++ [dcl.init]p9:
2439 //
2440 // If no initializer is specified for an object, and the
2441 // object is of (possibly cv-qualified) non-POD class type (or
2442 // array thereof), the object shall be default-initialized; if
2443 // the object is of const-qualified type, the underlying class
2444 // type shall have a user-declared default
2445 // constructor. Otherwise, if no initializer is specified for
2446 // an object, the object and its subobjects, if any, have an
2447 // indeterminate initial value; if the object or any of its
2448 // subobjects are of const-qualified type, the program is
2449 // ill-formed.
2450 //
2451 // This isn't technically an error in C, so we don't diagnose it.
2452 //
2453 // FIXME: Actually perform the POD/user-defined default
2454 // constructor check.
2455 if (getLangOptions().CPlusPlus &&
Douglas Gregorc0d11a82008-10-29 13:50:18 +00002456 Context.getCanonicalType(Type).isConstQualified() &&
2457 Var->getStorageClass() != VarDecl::Extern)
Chris Lattner10f2c2e2008-11-20 06:38:18 +00002458 Diag(Var->getLocation(), diag::err_const_var_requires_init)
2459 << Var->getName()
2460 << SourceRange(Var->getLocation(), Var->getLocation());
Douglas Gregorc0d11a82008-10-29 13:50:18 +00002461#endif
Douglas Gregor81c29152008-10-29 00:13:59 +00002462 }
2463}
2464
Chris Lattner4b009652007-07-25 00:24:17 +00002465/// The declarators are chained together backwards, reverse the list.
2466Sema::DeclTy *Sema::FinalizeDeclaratorGroup(Scope *S, DeclTy *group) {
2467 // Often we have single declarators, handle them quickly.
Steve Naroff2591e1b2007-09-13 23:52:58 +00002468 Decl *GroupDecl = static_cast<Decl*>(group);
2469 if (GroupDecl == 0)
Steve Naroff6a0e2092007-09-12 14:07:44 +00002470 return 0;
Steve Naroff2591e1b2007-09-13 23:52:58 +00002471
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00002472 Decl *Group = dyn_cast<Decl>(GroupDecl);
2473 Decl *NewGroup = 0;
Steve Naroff6a0e2092007-09-12 14:07:44 +00002474 if (Group->getNextDeclarator() == 0)
Chris Lattner4b009652007-07-25 00:24:17 +00002475 NewGroup = Group;
Steve Naroff6a0e2092007-09-12 14:07:44 +00002476 else { // reverse the list.
2477 while (Group) {
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00002478 Decl *Next = Group->getNextDeclarator();
Steve Naroff6a0e2092007-09-12 14:07:44 +00002479 Group->setNextDeclarator(NewGroup);
2480 NewGroup = Group;
2481 Group = Next;
2482 }
2483 }
2484 // Perform semantic analysis that depends on having fully processed both
2485 // the declarator and initializer.
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00002486 for (Decl *ID = NewGroup; ID; ID = ID->getNextDeclarator()) {
Steve Naroff6a0e2092007-09-12 14:07:44 +00002487 VarDecl *IDecl = dyn_cast<VarDecl>(ID);
2488 if (!IDecl)
2489 continue;
Steve Naroff6a0e2092007-09-12 14:07:44 +00002490 QualType T = IDecl->getType();
2491
Anders Carlsson68adbd12008-12-07 00:20:55 +00002492 if (T->isVariableArrayType()) {
Anders Carlssonef2f7df2008-12-20 21:51:53 +00002493 const VariableArrayType *VAT = Context.getAsVariableArrayType(T);
Anders Carlssonb32a1ba2008-12-07 00:49:48 +00002494
2495 // FIXME: This won't give the correct result for
2496 // int a[10][n];
2497 SourceRange SizeRange = VAT->getSizeExpr()->getSourceRange();
Anders Carlsson68adbd12008-12-07 00:20:55 +00002498 if (IDecl->isFileVarDecl()) {
Anders Carlssonb32a1ba2008-12-07 00:49:48 +00002499 Diag(IDecl->getLocation(), diag::err_vla_decl_in_file_scope) <<
2500 SizeRange;
2501
Eli Friedman8ff07782008-02-15 18:16:39 +00002502 IDecl->setInvalidDecl();
Anders Carlsson68adbd12008-12-07 00:20:55 +00002503 } else {
2504 // C99 6.7.5.2p2: If an identifier is declared to be an object with
2505 // static storage duration, it shall not have a variable length array.
2506 if (IDecl->getStorageClass() == VarDecl::Static) {
Anders Carlssonb32a1ba2008-12-07 00:49:48 +00002507 Diag(IDecl->getLocation(), diag::err_vla_decl_has_static_storage)
2508 << SizeRange;
Anders Carlsson68adbd12008-12-07 00:20:55 +00002509 IDecl->setInvalidDecl();
2510 } else if (IDecl->getStorageClass() == VarDecl::Extern) {
Anders Carlssonb32a1ba2008-12-07 00:49:48 +00002511 Diag(IDecl->getLocation(), diag::err_vla_decl_has_extern_linkage)
2512 << SizeRange;
Anders Carlsson68adbd12008-12-07 00:20:55 +00002513 IDecl->setInvalidDecl();
2514 }
2515 }
2516 } else if (T->isVariablyModifiedType()) {
2517 if (IDecl->isFileVarDecl()) {
2518 Diag(IDecl->getLocation(), diag::err_vm_decl_in_file_scope);
2519 IDecl->setInvalidDecl();
2520 } else {
2521 if (IDecl->getStorageClass() == VarDecl::Extern) {
2522 Diag(IDecl->getLocation(), diag::err_vm_decl_has_extern_linkage);
2523 IDecl->setInvalidDecl();
2524 }
Steve Naroff6a0e2092007-09-12 14:07:44 +00002525 }
2526 }
Anders Carlsson68adbd12008-12-07 00:20:55 +00002527
Steve Naroff6a0e2092007-09-12 14:07:44 +00002528 // Block scope. C99 6.7p7: If an identifier for an object is declared with
2529 // no linkage (C99 6.2.2p6), the type for the object shall be complete...
Steve Naroff72a6ebc2008-04-15 22:42:06 +00002530 if (IDecl->isBlockVarDecl() &&
2531 IDecl->getStorageClass() != VarDecl::Extern) {
Douglas Gregor46fe06e2009-01-19 19:26:10 +00002532 if (!IDecl->isInvalidDecl() &&
2533 DiagnoseIncompleteType(IDecl->getLocation(), T,
2534 diag::err_typecheck_decl_incomplete_type))
Steve Naroff6a0e2092007-09-12 14:07:44 +00002535 IDecl->setInvalidDecl();
Steve Naroff6a0e2092007-09-12 14:07:44 +00002536 }
2537 // File scope. C99 6.9.2p2: A declaration of an identifier for and
2538 // object that has file scope without an initializer, and without a
2539 // storage-class specifier or with the storage-class specifier "static",
2540 // constitutes a tentative definition. Note: A tentative definition with
2541 // external linkage is valid (C99 6.2.2p5).
Steve Naroffb5e78152008-08-08 17:50:35 +00002542 if (isTentativeDefinition(IDecl)) {
Eli Friedmane0079792008-02-15 12:53:51 +00002543 if (T->isIncompleteArrayType()) {
Steve Naroff60685462008-01-18 20:40:52 +00002544 // C99 6.9.2 (p2, p5): Implicit initialization causes an incomplete
2545 // array to be completed. Don't issue a diagnostic.
Douglas Gregor46fe06e2009-01-19 19:26:10 +00002546 } else if (!IDecl->isInvalidDecl() &&
2547 DiagnoseIncompleteType(IDecl->getLocation(), T,
2548 diag::err_typecheck_decl_incomplete_type))
Steve Naroff60685462008-01-18 20:40:52 +00002549 // C99 6.9.2p3: If the declaration of an identifier for an object is
2550 // a tentative definition and has internal linkage (C99 6.2.2p3), the
2551 // declared type shall not be an incomplete type.
Steve Naroff6a0e2092007-09-12 14:07:44 +00002552 IDecl->setInvalidDecl();
Steve Naroff6a0e2092007-09-12 14:07:44 +00002553 }
Steve Naroffb5e78152008-08-08 17:50:35 +00002554 if (IDecl->isFileVarDecl())
2555 CheckForFileScopedRedefinitions(S, IDecl);
Chris Lattner4b009652007-07-25 00:24:17 +00002556 }
2557 return NewGroup;
2558}
Steve Naroff91b03f72007-08-28 03:03:08 +00002559
Chris Lattner3e254fb2008-04-08 04:40:51 +00002560/// ActOnParamDeclarator - Called from Parser::ParseFunctionDeclarator()
2561/// to introduce parameters into function prototype scope.
2562Sema::DeclTy *
2563Sema::ActOnParamDeclarator(Scope *S, Declarator &D) {
Chris Lattner5e77ade2008-06-26 06:49:43 +00002564 const DeclSpec &DS = D.getDeclSpec();
Douglas Gregorc5cbc242008-12-15 23:53:10 +00002565
Chris Lattner3e254fb2008-04-08 04:40:51 +00002566 // Verify C99 6.7.5.3p2: The only SCS allowed is 'register'.
Daniel Dunbarb648e8c2008-09-03 21:54:21 +00002567 VarDecl::StorageClass StorageClass = VarDecl::None;
2568 if (DS.getStorageClassSpec() == DeclSpec::SCS_register) {
2569 StorageClass = VarDecl::Register;
2570 } else if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified) {
Chris Lattner3e254fb2008-04-08 04:40:51 +00002571 Diag(DS.getStorageClassSpecLoc(),
2572 diag::err_invalid_storage_class_in_func_decl);
Chris Lattner5e77ade2008-06-26 06:49:43 +00002573 D.getMutableDeclSpec().ClearStorageClassSpecs();
Chris Lattner3e254fb2008-04-08 04:40:51 +00002574 }
2575 if (DS.isThreadSpecified()) {
2576 Diag(DS.getThreadSpecLoc(),
2577 diag::err_invalid_storage_class_in_func_decl);
Chris Lattner5e77ade2008-06-26 06:49:43 +00002578 D.getMutableDeclSpec().ClearStorageClassSpecs();
Chris Lattner3e254fb2008-04-08 04:40:51 +00002579 }
2580
Douglas Gregor2b9422f2008-05-07 04:49:29 +00002581 // Check that there are no default arguments inside the type of this
2582 // parameter (C++ only).
2583 if (getLangOptions().CPlusPlus)
2584 CheckExtraCXXDefaultArguments(D);
2585
Chris Lattner3e254fb2008-04-08 04:40:51 +00002586 // In this context, we *do not* check D.getInvalidType(). If the declarator
2587 // type was invalid, GetTypeForDeclarator() still returns a "valid" type,
2588 // though it will not reflect the user specified type.
2589 QualType parmDeclType = GetTypeForDeclarator(D, S);
2590
2591 assert(!parmDeclType.isNull() && "GetTypeForDeclarator() returned null type");
2592
Chris Lattner4b009652007-07-25 00:24:17 +00002593 // TODO: CHECK FOR CONFLICTS, multiple decls with same name in one scope.
2594 // Can this happen for params? We already checked that they don't conflict
2595 // among each other. Here they can only shadow globals, which is ok.
Chris Lattner3e254fb2008-04-08 04:40:51 +00002596 IdentifierInfo *II = D.getIdentifier();
Chris Lattner310dea32009-01-21 02:38:50 +00002597 if (II) {
Steve Naroffc349ee22009-01-29 00:07:50 +00002598 if (Decl *PrevDecl = LookupDeclInScope(II, Decl::IDNS_Ordinary, S)) {
Chris Lattner310dea32009-01-21 02:38:50 +00002599 if (PrevDecl->isTemplateParameter()) {
2600 // Maybe we will complain about the shadowed template parameter.
2601 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
2602 // Just pretend that we didn't see the previous declaration.
2603 PrevDecl = 0;
2604 } else if (S->isDeclScope(PrevDecl)) {
2605 Diag(D.getIdentifierLoc(), diag::err_param_redefinition) << II;
Chris Lattner3e254fb2008-04-08 04:40:51 +00002606
Chris Lattner310dea32009-01-21 02:38:50 +00002607 // Recover by removing the name
2608 II = 0;
2609 D.SetIdentifier(0, D.getIdentifierLoc());
2610 }
Chris Lattner3e254fb2008-04-08 04:40:51 +00002611 }
Chris Lattner4b009652007-07-25 00:24:17 +00002612 }
Steve Naroff94cd93f2007-08-07 22:44:21 +00002613
2614 // Perform the default function/array conversion (C99 6.7.5.3p[7,8]).
2615 // Doing the promotion here has a win and a loss. The win is the type for
2616 // both Decl's and DeclRefExpr's will match (a convenient invariant for the
2617 // code generator). The loss is the orginal type isn't preserved. For example:
2618 //
2619 // void func(int parmvardecl[5]) { // convert "int [5]" to "int *"
2620 // int blockvardecl[5];
2621 // sizeof(parmvardecl); // size == 4
2622 // sizeof(blockvardecl); // size == 20
2623 // }
2624 //
2625 // For expressions, all implicit conversions are captured using the
2626 // ImplicitCastExpr AST node (we have no such mechanism for Decl's).
2627 //
2628 // FIXME: If a source translation tool needs to see the original type, then
2629 // we need to consider storing both types (in ParmVarDecl)...
2630 //
Chris Lattner19eb97e2008-04-02 05:18:44 +00002631 if (parmDeclType->isArrayType()) {
Chris Lattnerc08564a2008-01-02 22:50:48 +00002632 // int x[restrict 4] -> int *restrict
Chris Lattner19eb97e2008-04-02 05:18:44 +00002633 parmDeclType = Context.getArrayDecayedType(parmDeclType);
Chris Lattnerc08564a2008-01-02 22:50:48 +00002634 } else if (parmDeclType->isFunctionType())
Steve Naroff94cd93f2007-08-07 22:44:21 +00002635 parmDeclType = Context.getPointerType(parmDeclType);
Douglas Gregor8acb7272008-12-11 16:49:14 +00002636
Chris Lattner3e254fb2008-04-08 04:40:51 +00002637 ParmVarDecl *New = ParmVarDecl::Create(Context, CurContext,
2638 D.getIdentifierLoc(), II,
Daniel Dunbarb648e8c2008-09-03 21:54:21 +00002639 parmDeclType, StorageClass,
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00002640 0);
Anders Carlsson3f70c542008-02-15 07:04:12 +00002641
Chris Lattner3e254fb2008-04-08 04:40:51 +00002642 if (D.getInvalidType())
Steve Naroffcae537d2007-08-28 18:45:29 +00002643 New->setInvalidDecl();
Douglas Gregor8acb7272008-12-11 16:49:14 +00002644
Douglas Gregorc5cbc242008-12-15 23:53:10 +00002645 // Parameter declarators cannot be qualified (C++ [dcl.meaning]p1).
2646 if (D.getCXXScopeSpec().isSet()) {
2647 Diag(D.getIdentifierLoc(), diag::err_qualified_param_declarator)
2648 << D.getCXXScopeSpec().getRange();
2649 New->setInvalidDecl();
2650 }
2651
Douglas Gregor8acb7272008-12-11 16:49:14 +00002652 // Add the parameter declaration into this scope.
2653 S->AddDecl(New);
Argiris Kirtzidis951f25b2008-04-12 00:47:19 +00002654 if (II)
Douglas Gregor8acb7272008-12-11 16:49:14 +00002655 IdResolver.AddDecl(New);
Nate Begeman9f3c4bb2008-02-17 21:20:31 +00002656
Chris Lattner9b384ca2008-06-29 00:02:00 +00002657 ProcessDeclAttributes(New, D);
Chris Lattner4b009652007-07-25 00:24:17 +00002658 return New;
Chris Lattner3e254fb2008-04-08 04:40:51 +00002659
Chris Lattner4b009652007-07-25 00:24:17 +00002660}
Fariborz Jahaniandfb1c372007-11-08 23:49:49 +00002661
Douglas Gregor65075ec2009-01-23 16:23:13 +00002662void Sema::ActOnFinishKNRParamDeclarations(Scope *S, Declarator &D) {
Chris Lattner4b009652007-07-25 00:24:17 +00002663 assert(D.getTypeObject(0).Kind == DeclaratorChunk::Function &&
2664 "Not a function declarator!");
2665 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
Chris Lattner3e254fb2008-04-08 04:40:51 +00002666
Chris Lattner4b009652007-07-25 00:24:17 +00002667 // Verify 6.9.1p6: 'every identifier in the identifier list shall be declared'
2668 // for a K&R function.
2669 if (!FTI.hasPrototype) {
2670 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) {
Chris Lattner3e254fb2008-04-08 04:40:51 +00002671 if (FTI.ArgInfo[i].Param == 0) {
Chris Lattner65cae292008-11-19 08:23:25 +00002672 Diag(FTI.ArgInfo[i].IdentLoc, diag::ext_param_not_declared)
2673 << FTI.ArgInfo[i].Ident;
Chris Lattner4b009652007-07-25 00:24:17 +00002674 // Implicitly declare the argument as type 'int' for lack of a better
2675 // type.
Chris Lattner3e254fb2008-04-08 04:40:51 +00002676 DeclSpec DS;
2677 const char* PrevSpec; // unused
2678 DS.SetTypeSpecType(DeclSpec::TST_int, FTI.ArgInfo[i].IdentLoc,
2679 PrevSpec);
2680 Declarator ParamD(DS, Declarator::KNRTypeListContext);
2681 ParamD.SetIdentifier(FTI.ArgInfo[i].Ident, FTI.ArgInfo[i].IdentLoc);
Douglas Gregor65075ec2009-01-23 16:23:13 +00002682 FTI.ArgInfo[i].Param = ActOnParamDeclarator(S, ParamD);
Chris Lattner4b009652007-07-25 00:24:17 +00002683 }
2684 }
Douglas Gregor65075ec2009-01-23 16:23:13 +00002685 }
2686}
2687
2688Sema::DeclTy *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Declarator &D) {
2689 assert(getCurFunctionDecl() == 0 && "Function parsing confused");
2690 assert(D.getTypeObject(0).Kind == DeclaratorChunk::Function &&
2691 "Not a function declarator!");
2692 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
2693
2694 if (FTI.hasPrototype) {
Chris Lattner3e254fb2008-04-08 04:40:51 +00002695 // FIXME: Diagnose arguments without names in C.
Chris Lattner4b009652007-07-25 00:24:17 +00002696 }
2697
Douglas Gregorc5cbc242008-12-15 23:53:10 +00002698 Scope *ParentScope = FnBodyScope->getParent();
Steve Naroff1d5bd642008-01-14 20:51:29 +00002699
Argiris Kirtzidis38f16712008-07-01 10:37:29 +00002700 return ActOnStartOfFunctionDef(FnBodyScope,
Douglas Gregorc5cbc242008-12-15 23:53:10 +00002701 ActOnDeclarator(ParentScope, D, 0,
2702 /*IsFunctionDefinition=*/true));
Argiris Kirtzidis38f16712008-07-01 10:37:29 +00002703}
2704
2705Sema::DeclTy *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, DeclTy *D) {
2706 Decl *decl = static_cast<Decl*>(D);
Chris Lattner2d2216b2008-02-16 01:20:36 +00002707 FunctionDecl *FD = cast<FunctionDecl>(decl);
Douglas Gregor56da7862008-10-29 15:10:40 +00002708
2709 // See if this is a redefinition.
2710 const FunctionDecl *Definition;
2711 if (FD->getBody(Definition)) {
Chris Lattnerb1753422008-11-23 21:45:46 +00002712 Diag(FD->getLocation(), diag::err_redefinition) << FD->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +00002713 Diag(Definition->getLocation(), diag::note_previous_definition);
Douglas Gregor56da7862008-10-29 15:10:40 +00002714 }
2715
Douglas Gregor8acb7272008-12-11 16:49:14 +00002716 PushDeclContext(FnBodyScope, FD);
Anton Korobeynikovb27a8702008-12-26 00:52:02 +00002717
Chris Lattner3e254fb2008-04-08 04:40:51 +00002718 // Check the validity of our function parameters
2719 CheckParmsForFunctionDef(FD);
2720
2721 // Introduce our parameters into the function scope
2722 for (unsigned p = 0, NumParams = FD->getNumParams(); p < NumParams; ++p) {
2723 ParmVarDecl *Param = FD->getParamDecl(p);
Douglas Gregord394a272009-01-09 18:51:29 +00002724 Param->setOwningFunction(FD);
2725
Chris Lattner3e254fb2008-04-08 04:40:51 +00002726 // If this has an identifier, add it to the scope stack.
Argiris Kirtzidis951f25b2008-04-12 00:47:19 +00002727 if (Param->getIdentifier())
2728 PushOnScopeChains(Param, FnBodyScope);
Chris Lattner4b009652007-07-25 00:24:17 +00002729 }
Chris Lattner3e254fb2008-04-08 04:40:51 +00002730
Anton Korobeynikovb27a8702008-12-26 00:52:02 +00002731 // Checking attributes of current function definition
2732 // dllimport attribute.
2733 if (FD->getAttr<DLLImportAttr>() && (!FD->getAttr<DLLExportAttr>())) {
2734 // dllimport attribute cannot be applied to definition.
2735 if (!(FD->getAttr<DLLImportAttr>())->isInherited()) {
2736 Diag(FD->getLocation(),
2737 diag::err_attribute_can_be_applied_only_to_symbol_declaration)
2738 << "dllimport";
2739 FD->setInvalidDecl();
2740 return FD;
2741 } else {
2742 // If a symbol previously declared dllimport is later defined, the
2743 // attribute is ignored in subsequent references, and a warning is
2744 // emitted.
2745 Diag(FD->getLocation(),
2746 diag::warn_redeclaration_without_attribute_prev_attribute_ignored)
2747 << FD->getNameAsCString() << "dllimport";
2748 }
2749 }
Chris Lattner4b009652007-07-25 00:24:17 +00002750 return FD;
2751}
2752
Sebastian Redl91f9b0a2008-12-13 16:23:55 +00002753Sema::DeclTy *Sema::ActOnFinishFunctionBody(DeclTy *D, StmtArg BodyArg) {
Steve Naroff99ee4302007-11-11 23:20:51 +00002754 Decl *dcl = static_cast<Decl *>(D);
Sebastian Redl91f9b0a2008-12-13 16:23:55 +00002755 Stmt *Body = static_cast<Stmt*>(BodyArg.release());
Steve Naroff3ac43f92008-07-25 17:57:26 +00002756 if (FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(dcl)) {
Sebastian Redl91f9b0a2008-12-13 16:23:55 +00002757 FD->setBody(Body);
Argiris Kirtzidis95256e62008-06-28 06:07:14 +00002758 assert(FD == getCurFunctionDecl() && "Function parsing confused");
Steve Naroff3ac43f92008-07-25 17:57:26 +00002759 } else if (ObjCMethodDecl *MD = dyn_cast_or_null<ObjCMethodDecl>(dcl)) {
Steve Naroff99ee4302007-11-11 23:20:51 +00002760 MD->setBody((Stmt*)Body);
Steve Naroff3ac43f92008-07-25 17:57:26 +00002761 } else
2762 return 0;
Chris Lattnerf3874bc2008-04-06 04:47:34 +00002763 PopDeclContext();
Chris Lattner4b009652007-07-25 00:24:17 +00002764 // Verify and clean out per-function state.
2765
2766 // Check goto/label use.
2767 for (llvm::DenseMap<IdentifierInfo*, LabelStmt*>::iterator
2768 I = LabelMap.begin(), E = LabelMap.end(); I != E; ++I) {
2769 // Verify that we have no forward references left. If so, there was a goto
2770 // or address of a label taken, but no definition of it. Label fwd
2771 // definitions are indicated with a null substmt.
2772 if (I->second->getSubStmt() == 0) {
2773 LabelStmt *L = I->second;
2774 // Emit error.
Chris Lattner10f2c2e2008-11-20 06:38:18 +00002775 Diag(L->getIdentLoc(), diag::err_undeclared_label_use) << L->getName();
Chris Lattner4b009652007-07-25 00:24:17 +00002776
2777 // At this point, we have gotos that use the bogus label. Stitch it into
2778 // the function body so that they aren't leaked and that the AST is well
2779 // formed.
Chris Lattner83343342008-01-25 00:01:10 +00002780 if (Body) {
2781 L->setSubStmt(new NullStmt(L->getIdentLoc()));
Sebastian Redl91f9b0a2008-12-13 16:23:55 +00002782 cast<CompoundStmt>(Body)->push_back(L);
Chris Lattner83343342008-01-25 00:01:10 +00002783 } else {
2784 // The whole function wasn't parsed correctly, just delete this.
2785 delete L;
2786 }
Chris Lattner4b009652007-07-25 00:24:17 +00002787 }
2788 }
2789 LabelMap.clear();
2790
Steve Naroff99ee4302007-11-11 23:20:51 +00002791 return D;
Fariborz Jahaniane6f59f12007-11-10 16:31:34 +00002792}
2793
Chris Lattner4b009652007-07-25 00:24:17 +00002794/// ImplicitlyDefineFunction - An undeclared identifier was used in a function
2795/// call, forming a call to an implicitly defined function (per C99 6.5.1p2).
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00002796NamedDecl *Sema::ImplicitlyDefineFunction(SourceLocation Loc,
2797 IdentifierInfo &II, Scope *S) {
Chris Lattnerdea31bf2008-05-05 21:18:06 +00002798 // Extension in C99. Legal in C90, but warn about it.
2799 if (getLangOptions().C99)
Chris Lattner65cae292008-11-19 08:23:25 +00002800 Diag(Loc, diag::ext_implicit_function_decl) << &II;
Chris Lattnerdea31bf2008-05-05 21:18:06 +00002801 else
Chris Lattner65cae292008-11-19 08:23:25 +00002802 Diag(Loc, diag::warn_implicit_function_decl) << &II;
Chris Lattner4b009652007-07-25 00:24:17 +00002803
2804 // FIXME: handle stuff like:
2805 // void foo() { extern float X(); }
2806 // void bar() { X(); } <-- implicit decl for X in another scope.
2807
2808 // Set a Declarator for the implicit definition: int foo();
2809 const char *Dummy;
2810 DeclSpec DS;
2811 bool Error = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, Dummy);
2812 Error = Error; // Silence warning.
2813 assert(!Error && "Error setting up implicit decl!");
2814 Declarator D(DS, Declarator::BlockContext);
Chris Lattnerdefaf412009-01-20 19:11:22 +00002815 D.AddTypeInfo(DeclaratorChunk::getFunction(false, false, 0, 0, 0, Loc, D));
Chris Lattner4b009652007-07-25 00:24:17 +00002816 D.SetIdentifier(&II, Loc);
2817
Argiris Kirtzidisbb4f7b42008-05-01 21:04:16 +00002818 // Insert this function into translation-unit scope.
2819
2820 DeclContext *PrevDC = CurContext;
2821 CurContext = Context.getTranslationUnitDecl();
2822
Steve Naroff9104f3c2008-04-04 14:32:09 +00002823 FunctionDecl *FD =
Daniel Dunbar72eaf8a2008-08-05 16:28:08 +00002824 dyn_cast<FunctionDecl>(static_cast<Decl*>(ActOnDeclarator(TUScope, D, 0)));
Steve Naroff9104f3c2008-04-04 14:32:09 +00002825 FD->setImplicit();
Argiris Kirtzidisbb4f7b42008-05-01 21:04:16 +00002826
2827 CurContext = PrevDC;
2828
Steve Naroff9104f3c2008-04-04 14:32:09 +00002829 return FD;
Chris Lattner4b009652007-07-25 00:24:17 +00002830}
2831
2832
Chris Lattner82bb4792007-11-14 06:34:38 +00002833TypedefDecl *Sema::ParseTypedefDecl(Scope *S, Declarator &D, QualType T,
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00002834 Decl *LastDeclarator) {
Chris Lattner4b009652007-07-25 00:24:17 +00002835 assert(D.getIdentifier() && "Wrong callback for declspec without declarator");
Steve Naroffd1ad6ae2007-08-28 20:14:24 +00002836 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
Chris Lattner4b009652007-07-25 00:24:17 +00002837
2838 // Scope manipulation handled by caller.
Chris Lattnereee57c02008-04-04 06:12:32 +00002839 TypedefDecl *NewTD = TypedefDecl::Create(Context, CurContext,
2840 D.getIdentifierLoc(),
Chris Lattnere4650482008-03-15 06:12:44 +00002841 D.getIdentifier(),
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00002842 T);
2843 NewTD->setNextDeclarator(LastDeclarator);
Steve Naroffd1ad6ae2007-08-28 20:14:24 +00002844 if (D.getInvalidType())
2845 NewTD->setInvalidDecl();
2846 return NewTD;
Chris Lattner4b009652007-07-25 00:24:17 +00002847}
2848
Steve Naroff0acc9c92007-09-15 18:49:24 +00002849/// ActOnTag - This is invoked when we see 'struct foo' or 'struct {'. In the
Chris Lattner4b009652007-07-25 00:24:17 +00002850/// former case, Name will be non-null. In the later case, Name will be null.
Douglas Gregor98b27542009-01-17 00:42:38 +00002851/// TagSpec indicates what kind of tag this is. TK indicates whether this is a
Chris Lattner4b009652007-07-25 00:24:17 +00002852/// reference/declaration/definition of a tag.
Douglas Gregor98b27542009-01-17 00:42:38 +00002853Sema::DeclTy *Sema::ActOnTag(Scope *S, unsigned TagSpec, TagKind TK,
Argiris Kirtzidis311db8c2008-11-08 16:45:02 +00002854 SourceLocation KWLoc, const CXXScopeSpec &SS,
2855 IdentifierInfo *Name, SourceLocation NameLoc,
Douglas Gregor52473432008-12-24 02:52:09 +00002856 AttributeList *Attr,
2857 MultiTemplateParamsArg TemplateParameterLists) {
Douglas Gregorae644892008-12-15 16:32:14 +00002858 // If this is not a definition, it must have a name.
Chris Lattner4b009652007-07-25 00:24:17 +00002859 assert((Name != 0 || TK == TK_Definition) &&
2860 "Nameless record must be a definition!");
2861
Argiris Kirtzidisc6cc7d52008-06-09 23:19:58 +00002862 TagDecl::TagKind Kind;
Douglas Gregor98b27542009-01-17 00:42:38 +00002863 switch (TagSpec) {
Chris Lattner4b009652007-07-25 00:24:17 +00002864 default: assert(0 && "Unknown tag type!");
Argiris Kirtzidisc6cc7d52008-06-09 23:19:58 +00002865 case DeclSpec::TST_struct: Kind = TagDecl::TK_struct; break;
2866 case DeclSpec::TST_union: Kind = TagDecl::TK_union; break;
2867 case DeclSpec::TST_class: Kind = TagDecl::TK_class; break;
2868 case DeclSpec::TST_enum: Kind = TagDecl::TK_enum; break;
Chris Lattner4b009652007-07-25 00:24:17 +00002869 }
2870
Douglas Gregorb748fc52009-01-12 22:49:06 +00002871 DeclContext *SearchDC = CurContext;
Argiris Kirtzidis5ce4db82008-11-09 22:53:32 +00002872 DeclContext *DC = CurContext;
Douglas Gregorcab994d2009-01-09 22:42:13 +00002873 DeclContext *LexicalContext = CurContext;
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00002874 Decl *PrevDecl = 0;
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00002875
Douglas Gregor98b27542009-01-17 00:42:38 +00002876 bool Invalid = false;
2877
Argiris Kirtzidis70b54132008-11-09 22:09:58 +00002878 if (Name && SS.isNotEmpty()) {
2879 // We have a nested-name tag ('struct foo::bar').
2880
2881 // Check for invalid 'foo::'.
Argiris Kirtzidis5ce4db82008-11-09 22:53:32 +00002882 if (SS.isInvalid()) {
Argiris Kirtzidis70b54132008-11-09 22:09:58 +00002883 Name = 0;
2884 goto CreateNewDecl;
2885 }
2886
Argiris Kirtzidis5ce4db82008-11-09 22:53:32 +00002887 DC = static_cast<DeclContext*>(SS.getScopeRep());
2888 // Look-up name inside 'foo::'.
Steve Naroffc349ee22009-01-29 00:07:50 +00002889 PrevDecl = dyn_cast_or_null<TagDecl>(
2890 LookupDeclInContext(Name, Decl::IDNS_Tag, DC).getAsDecl());
Argiris Kirtzidis70b54132008-11-09 22:09:58 +00002891
2892 // A tag 'foo::bar' must already exist.
2893 if (PrevDecl == 0) {
Chris Lattner65cae292008-11-19 08:23:25 +00002894 Diag(NameLoc, diag::err_not_tag_in_scope) << Name << SS.getRange();
Argiris Kirtzidis70b54132008-11-09 22:09:58 +00002895 Name = 0;
2896 goto CreateNewDecl;
2897 }
Chris Lattner310dea32009-01-21 02:38:50 +00002898 } else if (Name) {
Argiris Kirtzidis70b54132008-11-09 22:09:58 +00002899 // If this is a named struct, check to see if there was a previous forward
2900 // declaration or definition.
Steve Naroffc349ee22009-01-29 00:07:50 +00002901 PrevDecl = dyn_cast_or_null<NamedDecl>(LookupDeclInScope(Name,
2902 Decl::IDNS_Tag,S)
Chris Lattner310dea32009-01-21 02:38:50 +00002903 .getAsDecl());
Douglas Gregordb568cf2009-01-08 20:45:30 +00002904
2905 if (!getLangOptions().CPlusPlus && TK != TK_Reference) {
2906 // FIXME: This makes sure that we ignore the contexts associated
2907 // with C structs, unions, and enums when looking for a matching
2908 // tag declaration or definition. See the similar lookup tweak
2909 // in Sema::LookupDecl; is there a better way to deal with this?
Douglas Gregorb748fc52009-01-12 22:49:06 +00002910 while (isa<RecordDecl>(SearchDC) || isa<EnumDecl>(SearchDC))
2911 SearchDC = SearchDC->getParent();
Douglas Gregordb568cf2009-01-08 20:45:30 +00002912 }
Argiris Kirtzidis70b54132008-11-09 22:09:58 +00002913 }
2914
Douglas Gregor2715a1f2008-12-08 18:40:42 +00002915 if (PrevDecl && PrevDecl->isTemplateParameter()) {
Douglas Gregordd861062008-12-05 18:15:24 +00002916 // Maybe we will complain about the shadowed template parameter.
2917 DiagnoseTemplateParameterShadow(NameLoc, PrevDecl);
2918 // Just pretend that we didn't see the previous declaration.
2919 PrevDecl = 0;
2920 }
2921
Ted Kremenekd4434152008-09-02 21:26:19 +00002922 if (PrevDecl) {
Argiris Kirtzidis03e6aaf2008-04-27 13:50:30 +00002923 if (TagDecl *PrevTagDecl = dyn_cast<TagDecl>(PrevDecl)) {
Chris Lattner5bf0ad52008-07-03 03:30:58 +00002924 // If this is a use of a previous tag, or if the tag is already declared
2925 // in the same scope (so that the definition/declaration completes or
Argiris Kirtzidis03e6aaf2008-04-27 13:50:30 +00002926 // rementions the tag), reuse the decl.
Douglas Gregorb748fc52009-01-12 22:49:06 +00002927 if (TK == TK_Reference || isDeclInScope(PrevDecl, SearchDC, S)) {
Chris Lattner5bf0ad52008-07-03 03:30:58 +00002928 // Make sure that this wasn't declared as an enum and now used as a
2929 // struct or something similar.
Argiris Kirtzidisc6cc7d52008-06-09 23:19:58 +00002930 if (PrevTagDecl->getTagKind() != Kind) {
Chris Lattner65cae292008-11-19 08:23:25 +00002931 Diag(KWLoc, diag::err_use_with_wrong_tag) << Name;
Chris Lattner1336cab2008-11-23 23:12:31 +00002932 Diag(PrevDecl->getLocation(), diag::note_previous_use);
Chris Lattner5bf0ad52008-07-03 03:30:58 +00002933 // Recover by making this an anonymous redefinition.
Argiris Kirtzidis03e6aaf2008-04-27 13:50:30 +00002934 Name = 0;
Chris Lattner5bf0ad52008-07-03 03:30:58 +00002935 PrevDecl = 0;
Douglas Gregor98b27542009-01-17 00:42:38 +00002936 Invalid = true;
Argiris Kirtzidis03e6aaf2008-04-27 13:50:30 +00002937 } else {
Douglas Gregorae644892008-12-15 16:32:14 +00002938 // If this is a use, just return the declaration we found.
Chris Lattner5bf0ad52008-07-03 03:30:58 +00002939
Douglas Gregorae644892008-12-15 16:32:14 +00002940 // FIXME: In the future, return a variant or some other clue
2941 // for the consumer of this Decl to know it doesn't own it.
2942 // For our current ASTs this shouldn't be a problem, but will
2943 // need to be changed with DeclGroups.
2944 if (TK == TK_Reference)
Chris Lattner5bf0ad52008-07-03 03:30:58 +00002945 return PrevDecl;
Douglas Gregorae644892008-12-15 16:32:14 +00002946
2947 // Diagnose attempts to redefine a tag.
2948 if (TK == TK_Definition) {
2949 if (TagDecl *Def = PrevTagDecl->getDefinition(Context)) {
2950 Diag(NameLoc, diag::err_redefinition) << Name;
2951 Diag(Def->getLocation(), diag::note_previous_definition);
Douglas Gregor98b27542009-01-17 00:42:38 +00002952 // If this is a redefinition, recover by making this
2953 // struct be anonymous, which will make any later
2954 // references get the previous definition.
Douglas Gregorae644892008-12-15 16:32:14 +00002955 Name = 0;
2956 PrevDecl = 0;
Douglas Gregor98b27542009-01-17 00:42:38 +00002957 Invalid = true;
2958 } else {
2959 // If the type is currently being defined, complain
2960 // about a nested redefinition.
2961 TagType *Tag = cast<TagType>(Context.getTagDeclType(PrevTagDecl));
2962 if (Tag->isBeingDefined()) {
2963 Diag(NameLoc, diag::err_nested_redefinition) << Name;
2964 Diag(PrevTagDecl->getLocation(),
2965 diag::note_previous_definition);
2966 Name = 0;
2967 PrevDecl = 0;
2968 Invalid = true;
2969 }
Douglas Gregorae644892008-12-15 16:32:14 +00002970 }
Douglas Gregor98b27542009-01-17 00:42:38 +00002971
Douglas Gregorae644892008-12-15 16:32:14 +00002972 // Okay, this is definition of a previously declared or referenced
2973 // tag PrevDecl. We're going to create a new Decl for it.
Douglas Gregor98b27542009-01-17 00:42:38 +00002974 }
Argiris Kirtzidis03e6aaf2008-04-27 13:50:30 +00002975 }
Douglas Gregorae644892008-12-15 16:32:14 +00002976 // If we get here we have (another) forward declaration or we
2977 // have a definition. Just create a new decl.
2978 } else {
2979 // If we get here, this is a definition of a new tag type in a nested
2980 // scope, e.g. "struct foo; void bar() { struct foo; }", just create a
2981 // new decl/type. We set PrevDecl to NULL so that the entities
2982 // have distinct types.
2983 PrevDecl = 0;
Chris Lattner4b009652007-07-25 00:24:17 +00002984 }
Douglas Gregorae644892008-12-15 16:32:14 +00002985 // If we get here, we're going to create a new Decl. If PrevDecl
2986 // is non-NULL, it's a definition of the tag declared by
2987 // PrevDecl. If it's NULL, we have a new definition.
Argiris Kirtzidis03e6aaf2008-04-27 13:50:30 +00002988 } else {
Douglas Gregorb31f2942009-01-28 17:15:10 +00002989 // PrevDecl is a namespace, template, or anything else
2990 // that lives in the IDNS_Tag identifier namespace.
Douglas Gregorb748fc52009-01-12 22:49:06 +00002991 if (isDeclInScope(PrevDecl, SearchDC, S)) {
Ted Kremenek40e70e72008-09-03 18:03:35 +00002992 // The tag name clashes with a namespace name, issue an error and
2993 // recover by making this tag be anonymous.
Chris Lattner65cae292008-11-19 08:23:25 +00002994 Diag(NameLoc, diag::err_redefinition_different_kind) << Name;
Chris Lattner1336cab2008-11-23 23:12:31 +00002995 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Argiris Kirtzidis5beb45f2008-07-16 07:45:46 +00002996 Name = 0;
Douglas Gregorae644892008-12-15 16:32:14 +00002997 PrevDecl = 0;
Douglas Gregor98b27542009-01-17 00:42:38 +00002998 Invalid = true;
Douglas Gregorae644892008-12-15 16:32:14 +00002999 } else {
3000 // The existing declaration isn't relevant to us; we're in a
3001 // new scope, so clear out the previous declaration.
3002 PrevDecl = 0;
Argiris Kirtzidis5beb45f2008-07-16 07:45:46 +00003003 }
Chris Lattner4b009652007-07-25 00:24:17 +00003004 }
Douglas Gregorcab994d2009-01-09 22:42:13 +00003005 } else if (TK == TK_Reference && SS.isEmpty() && Name &&
3006 (Kind != TagDecl::TK_enum)) {
3007 // C++ [basic.scope.pdecl]p5:
3008 // -- for an elaborated-type-specifier of the form
3009 //
3010 // class-key identifier
3011 //
3012 // if the elaborated-type-specifier is used in the
3013 // decl-specifier-seq or parameter-declaration-clause of a
3014 // function defined in namespace scope, the identifier is
3015 // declared as a class-name in the namespace that contains
3016 // the declaration; otherwise, except as a friend
3017 // declaration, the identifier is declared in the smallest
3018 // non-class, non-function-prototype scope that contains the
3019 // declaration.
3020 //
3021 // C99 6.7.2.3p8 has a similar (but not identical!) provision for
3022 // C structs and unions.
3023
3024 // Find the context where we'll be declaring the tag.
Douglas Gregorb748fc52009-01-12 22:49:06 +00003025 // FIXME: We would like to maintain the current DeclContext as the
3026 // lexical context,
Douglas Gregorcab994d2009-01-09 22:42:13 +00003027 while (DC->isRecord())
3028 DC = DC->getParent();
3029 LexicalContext = DC;
3030
3031 // Find the scope where we'll be declaring the tag.
3032 while (S->isClassScope() ||
3033 (getLangOptions().CPlusPlus && S->isFunctionPrototypeScope()) ||
Douglas Gregor5eca99e2009-01-12 18:45:55 +00003034 ((S->getFlags() & Scope::DeclScope) == 0) ||
3035 (S->getEntity() &&
3036 ((DeclContext *)S->getEntity())->isTransparentContext()))
Douglas Gregorcab994d2009-01-09 22:42:13 +00003037 S = S->getParent();
Chris Lattner4b009652007-07-25 00:24:17 +00003038 }
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00003039
Chris Lattner9bb9abf2008-12-17 07:13:27 +00003040CreateNewDecl:
Chris Lattner4b009652007-07-25 00:24:17 +00003041
3042 // If there is an identifier, use the location of the identifier as the
3043 // location of the decl, otherwise use the location of the struct/union
3044 // keyword.
3045 SourceLocation Loc = NameLoc.isValid() ? NameLoc : KWLoc;
3046
Douglas Gregorae644892008-12-15 16:32:14 +00003047 // Otherwise, create a new declaration. If there is a previous
3048 // declaration of the same entity, the two will be linked via
3049 // PrevDecl.
Chris Lattner4b009652007-07-25 00:24:17 +00003050 TagDecl *New;
Douglas Gregor723d3332009-01-07 00:43:41 +00003051
Argiris Kirtzidisc6cc7d52008-06-09 23:19:58 +00003052 if (Kind == TagDecl::TK_enum) {
Chris Lattner4b009652007-07-25 00:24:17 +00003053 // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
3054 // enum X { A, B, C } D; D should chain to X.
Douglas Gregorae644892008-12-15 16:32:14 +00003055 New = EnumDecl::Create(Context, DC, Loc, Name,
3056 cast_or_null<EnumDecl>(PrevDecl));
Chris Lattner4b009652007-07-25 00:24:17 +00003057 // If this is an undefined enum, warn.
3058 if (TK != TK_Definition) Diag(Loc, diag::ext_forward_ref_enum);
Argiris Kirtzidisc6cc7d52008-06-09 23:19:58 +00003059 } else {
3060 // struct/union/class
3061
Chris Lattner4b009652007-07-25 00:24:17 +00003062 // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
3063 // struct X { int A; } D; D should chain to X.
Argiris Kirtzidis38f16712008-07-01 10:37:29 +00003064 if (getLangOptions().CPlusPlus)
Ted Kremenek770b11d2008-09-05 17:39:33 +00003065 // FIXME: Look for a way to use RecordDecl for simple structs.
Douglas Gregorae644892008-12-15 16:32:14 +00003066 New = CXXRecordDecl::Create(Context, Kind, DC, Loc, Name,
3067 cast_or_null<CXXRecordDecl>(PrevDecl));
Argiris Kirtzidis38f16712008-07-01 10:37:29 +00003068 else
Douglas Gregorae644892008-12-15 16:32:14 +00003069 New = RecordDecl::Create(Context, Kind, DC, Loc, Name,
3070 cast_or_null<RecordDecl>(PrevDecl));
Argiris Kirtzidis38f16712008-07-01 10:37:29 +00003071 }
Douglas Gregorae644892008-12-15 16:32:14 +00003072
3073 if (Kind != TagDecl::TK_enum) {
3074 // Handle #pragma pack: if the #pragma pack stack has non-default
3075 // alignment, make up a packed attribute for this decl. These
3076 // attributes are checked when the ASTContext lays out the
3077 // structure.
3078 //
3079 // It is important for implementing the correct semantics that this
3080 // happen here (in act on tag decl). The #pragma pack stack is
3081 // maintained as a result of parser callbacks which can occur at
3082 // many points during the parsing of a struct declaration (because
3083 // the #pragma tokens are effectively skipped over during the
3084 // parsing of the struct).
3085 if (unsigned Alignment = PackContext.getAlignment())
3086 New->addAttr(new PackedAttr(Alignment * 8));
3087 }
3088
Douglas Gregorb31f2942009-01-28 17:15:10 +00003089 if (getLangOptions().CPlusPlus && SS.isEmpty() && Name && !Invalid) {
3090 // C++ [dcl.typedef]p3:
3091 // [...] Similarly, in a given scope, a class or enumeration
3092 // shall not be declared with the same name as a typedef-name
3093 // that is declared in that scope and refers to a type other
3094 // than the class or enumeration itself.
3095 LookupResult Lookup = LookupName(S, Name,
3096 LookupCriteria(LookupCriteria::Ordinary,
3097 true, true));
3098 TypedefDecl *PrevTypedef = 0;
3099 if (Lookup.getKind() == LookupResult::Found)
3100 PrevTypedef = dyn_cast<TypedefDecl>(Lookup.getAsDecl());
3101
3102 if (PrevTypedef && isDeclInScope(PrevTypedef, SearchDC, S) &&
3103 Context.getCanonicalType(Context.getTypeDeclType(PrevTypedef)) !=
3104 Context.getCanonicalType(Context.getTypeDeclType(New))) {
3105 Diag(Loc, diag::err_tag_definition_of_typedef)
3106 << Context.getTypeDeclType(New)
3107 << PrevTypedef->getUnderlyingType();
3108 Diag(PrevTypedef->getLocation(), diag::note_previous_definition);
3109 Invalid = true;
3110 }
3111 }
3112
Douglas Gregor98b27542009-01-17 00:42:38 +00003113 if (Invalid)
3114 New->setInvalidDecl();
3115
Douglas Gregorae644892008-12-15 16:32:14 +00003116 if (Attr)
3117 ProcessDeclAttributeList(New, Attr);
3118
Douglas Gregor98b27542009-01-17 00:42:38 +00003119 // If we're declaring or defining a tag in function prototype scope
3120 // in C, note that this type can only be used within the function.
Douglas Gregorcab994d2009-01-09 22:42:13 +00003121 if (Name && S->isFunctionPrototypeScope() && !getLangOptions().CPlusPlus)
3122 Diag(Loc, diag::warn_decl_in_param_list) << Context.getTagDeclType(New);
3123
Douglas Gregorae644892008-12-15 16:32:14 +00003124 // Set the lexical context. If the tag has a C++ scope specifier, the
3125 // lexical context will be different from the semantic context.
Douglas Gregorcab994d2009-01-09 22:42:13 +00003126 New->setLexicalDeclContext(LexicalContext);
Douglas Gregor98b27542009-01-17 00:42:38 +00003127
3128 if (TK == TK_Definition)
3129 New->startDefinition();
Chris Lattner4b009652007-07-25 00:24:17 +00003130
3131 // If this has an identifier, add it to the scope stack.
3132 if (Name) {
Douglas Gregor5eca99e2009-01-12 18:45:55 +00003133 S = getNonFieldDeclScope(S);
Chris Lattnera7549902007-08-26 06:24:45 +00003134
3135 // Add it to the decl chain.
Douglas Gregorcab994d2009-01-09 22:42:13 +00003136 if (LexicalContext != CurContext) {
3137 // FIXME: PushOnScopeChains should not rely on CurContext!
3138 DeclContext *OldContext = CurContext;
3139 CurContext = LexicalContext;
3140 PushOnScopeChains(New, S);
3141 CurContext = OldContext;
3142 } else
3143 PushOnScopeChains(New, S);
Douglas Gregorb748fc52009-01-12 22:49:06 +00003144 } else {
Douglas Gregor03b2ad22009-01-12 23:27:07 +00003145 LexicalContext->addDecl(New);
Chris Lattner4b009652007-07-25 00:24:17 +00003146 }
Argiris Kirtzidis881964b2008-11-09 23:41:00 +00003147
Chris Lattner4b009652007-07-25 00:24:17 +00003148 return New;
3149}
3150
Douglas Gregordb568cf2009-01-08 20:45:30 +00003151void Sema::ActOnTagStartDefinition(Scope *S, DeclTy *TagD) {
3152 TagDecl *Tag = cast<TagDecl>((Decl *)TagD);
3153
3154 // Enter the tag context.
3155 PushDeclContext(S, Tag);
3156
3157 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Tag)) {
3158 FieldCollector->StartClass();
3159
3160 if (Record->getIdentifier()) {
3161 // C++ [class]p2:
3162 // [...] The class-name is also inserted into the scope of the
3163 // class itself; this is known as the injected-class-name. For
3164 // purposes of access checking, the injected-class-name is treated
3165 // as if it were a public member name.
3166 RecordDecl *InjectedClassName
3167 = CXXRecordDecl::Create(Context, Record->getTagKind(),
3168 CurContext, Record->getLocation(),
3169 Record->getIdentifier(), Record);
3170 InjectedClassName->setImplicit();
3171 PushOnScopeChains(InjectedClassName, S);
3172 }
3173 }
3174}
3175
3176void Sema::ActOnTagFinishDefinition(Scope *S, DeclTy *TagD) {
3177 TagDecl *Tag = cast<TagDecl>((Decl *)TagD);
3178
3179 if (isa<CXXRecordDecl>(Tag))
3180 FieldCollector->FinishClass();
3181
3182 // Exit this scope of this tag's definition.
3183 PopDeclContext();
3184
3185 // Notify the consumer that we've defined a tag.
3186 Consumer.HandleTagDeclDefinition(Tag);
3187}
Chris Lattner1bf58f62008-06-21 19:39:06 +00003188
Chris Lattnera73e2202008-11-12 21:17:48 +00003189/// TryToFixInvalidVariablyModifiedType - Helper method to turn variable array
3190/// types into constant array types in certain situations which would otherwise
3191/// be errors (for GCC compatibility).
3192static QualType TryToFixInvalidVariablyModifiedType(QualType T,
3193 ASTContext &Context) {
Eli Friedman48fb3ee2008-06-03 21:01:11 +00003194 // This method tries to turn a variable array into a constant
3195 // array even when the size isn't an ICE. This is necessary
3196 // for compatibility with code that depends on gcc's buggy
3197 // constant expression folding, like struct {char x[(int)(char*)2];}
Chris Lattnerd03be6e2008-11-12 19:48:13 +00003198 const VariableArrayType* VLATy = dyn_cast<VariableArrayType>(T);
3199 if (!VLATy) return QualType();
3200
Anders Carlsson8c3de802008-12-19 20:58:05 +00003201 Expr::EvalResult EvalResult;
Chris Lattnerd03be6e2008-11-12 19:48:13 +00003202 if (!VLATy->getSizeExpr() ||
Anders Carlsson8c3de802008-12-19 20:58:05 +00003203 !VLATy->getSizeExpr()->Evaluate(EvalResult, Context))
Chris Lattnerd03be6e2008-11-12 19:48:13 +00003204 return QualType();
3205
Anders Carlsson8c3de802008-12-19 20:58:05 +00003206 assert(EvalResult.Val.isInt() && "Size expressions must be integers!");
3207 llvm::APSInt &Res = EvalResult.Val.getInt();
Chris Lattnerd03be6e2008-11-12 19:48:13 +00003208 if (Res > llvm::APSInt(Res.getBitWidth(), Res.isUnsigned()))
3209 return Context.getConstantArrayType(VLATy->getElementType(),
3210 Res, ArrayType::Normal, 0);
Eli Friedman48fb3ee2008-06-03 21:01:11 +00003211 return QualType();
3212}
3213
Anders Carlsson108229a2008-12-06 20:33:04 +00003214bool Sema::VerifyBitField(SourceLocation FieldLoc, IdentifierInfo *FieldName,
Chris Lattner8464c372008-12-12 04:56:04 +00003215 QualType FieldTy, const Expr *BitWidth) {
Anders Carlsson108229a2008-12-06 20:33:04 +00003216 // FIXME: 6.7.2.1p4 - verify the field type.
3217
3218 llvm::APSInt Value;
3219 if (VerifyIntegerConstantExpression(BitWidth, &Value))
3220 return true;
3221
Chris Lattner8464c372008-12-12 04:56:04 +00003222 // Zero-width bitfield is ok for anonymous field.
3223 if (Value == 0 && FieldName)
3224 return Diag(FieldLoc, diag::err_bitfield_has_zero_width) << FieldName;
3225
3226 if (Value.isNegative())
3227 return Diag(FieldLoc, diag::err_bitfield_has_negative_width) << FieldName;
Anders Carlsson108229a2008-12-06 20:33:04 +00003228
3229 uint64_t TypeSize = Context.getTypeSize(FieldTy);
3230 // FIXME: We won't need the 0 size once we check that the field type is valid.
Chris Lattner8464c372008-12-12 04:56:04 +00003231 if (TypeSize && Value.getZExtValue() > TypeSize)
3232 return Diag(FieldLoc, diag::err_bitfield_width_exceeds_type_size)
3233 << FieldName << (unsigned)TypeSize;
Anders Carlsson108229a2008-12-06 20:33:04 +00003234
3235 return false;
3236}
3237
Steve Naroff0acc9c92007-09-15 18:49:24 +00003238/// ActOnField - Each field of a struct/union/class is passed into this in order
Chris Lattner4b009652007-07-25 00:24:17 +00003239/// to create a FieldDecl object for it.
Douglas Gregor8acb7272008-12-11 16:49:14 +00003240Sema::DeclTy *Sema::ActOnField(Scope *S, DeclTy *TagD,
Chris Lattner4b009652007-07-25 00:24:17 +00003241 SourceLocation DeclStart,
3242 Declarator &D, ExprTy *BitfieldWidth) {
3243 IdentifierInfo *II = D.getIdentifier();
3244 Expr *BitWidth = (Expr*)BitfieldWidth;
Chris Lattner4b009652007-07-25 00:24:17 +00003245 SourceLocation Loc = DeclStart;
Douglas Gregor8acb7272008-12-11 16:49:14 +00003246 RecordDecl *Record = (RecordDecl *)TagD;
Chris Lattner4b009652007-07-25 00:24:17 +00003247 if (II) Loc = D.getIdentifierLoc();
3248
3249 // FIXME: Unnamed fields can be handled in various different ways, for
3250 // example, unnamed unions inject all members into the struct namespace!
Chris Lattner4b009652007-07-25 00:24:17 +00003251
Chris Lattner4b009652007-07-25 00:24:17 +00003252 QualType T = GetTypeForDeclarator(D, S);
Steve Naroffd1ad6ae2007-08-28 20:14:24 +00003253 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
3254 bool InvalidDecl = false;
Sebastian Redl39c0f6f2009-01-05 20:52:13 +00003255
Chris Lattner4b009652007-07-25 00:24:17 +00003256 // C99 6.7.2.1p8: A member of a structure or union may have any type other
3257 // than a variably modified type.
Eli Friedmane0079792008-02-15 12:53:51 +00003258 if (T->isVariablyModifiedType()) {
Chris Lattnera73e2202008-11-12 21:17:48 +00003259 QualType FixedTy = TryToFixInvalidVariablyModifiedType(T, Context);
Eli Friedman48fb3ee2008-06-03 21:01:11 +00003260 if (!FixedTy.isNull()) {
Chris Lattner86be8572008-11-13 18:49:38 +00003261 Diag(Loc, diag::warn_illegal_constant_array_size);
Eli Friedman48fb3ee2008-06-03 21:01:11 +00003262 T = FixedTy;
3263 } else {
Chris Lattner86be8572008-11-13 18:49:38 +00003264 Diag(Loc, diag::err_typecheck_field_variable_size);
Chris Lattner2a884752008-11-12 19:45:49 +00003265 T = Context.IntTy;
Eli Friedman48fb3ee2008-06-03 21:01:11 +00003266 InvalidDecl = true;
3267 }
Chris Lattner4b009652007-07-25 00:24:17 +00003268 }
Anders Carlsson108229a2008-12-06 20:33:04 +00003269
3270 if (BitWidth) {
3271 if (VerifyBitField(Loc, II, T, BitWidth))
3272 InvalidDecl = true;
3273 } else {
3274 // Not a bitfield.
3275
3276 // validate II.
3277
3278 }
3279
Chris Lattner4b009652007-07-25 00:24:17 +00003280 // FIXME: Chain fielddecls together.
Argiris Kirtzidis38f16712008-07-01 10:37:29 +00003281 FieldDecl *NewFD;
3282
Douglas Gregor8acb7272008-12-11 16:49:14 +00003283 NewFD = FieldDecl::Create(Context, Record,
3284 Loc, II, T, BitWidth,
3285 D.getDeclSpec().getStorageClassSpec() ==
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00003286 DeclSpec::SCS_mutable);
Douglas Gregor8acb7272008-12-11 16:49:14 +00003287
Douglas Gregordb568cf2009-01-08 20:45:30 +00003288 if (II) {
3289 Decl *PrevDecl
Steve Naroffc349ee22009-01-29 00:07:50 +00003290 = LookupDeclInScope(II, Decl::IDNS_Member, S, false);
Douglas Gregordb568cf2009-01-08 20:45:30 +00003291 if (PrevDecl && isDeclInScope(PrevDecl, CurContext, S)
3292 && !isa<TagDecl>(PrevDecl)) {
3293 Diag(Loc, diag::err_duplicate_member) << II;
3294 Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
3295 NewFD->setInvalidDecl();
3296 Record->setInvalidDecl();
3297 }
3298 }
3299
Sebastian Redl39c0f6f2009-01-05 20:52:13 +00003300 if (getLangOptions().CPlusPlus) {
Douglas Gregor605de8d2008-12-16 21:30:33 +00003301 CheckExtraCXXDefaultArguments(D);
Sebastian Redl39c0f6f2009-01-05 20:52:13 +00003302 if (!T->isPODType())
3303 cast<CXXRecordDecl>(Record)->setPOD(false);
3304 }
Douglas Gregor605de8d2008-12-16 21:30:33 +00003305
Chris Lattner9b384ca2008-06-29 00:02:00 +00003306 ProcessDeclAttributes(NewFD, D);
Anders Carlsson136cdc32008-02-16 00:29:18 +00003307
Steve Naroffd1ad6ae2007-08-28 20:14:24 +00003308 if (D.getInvalidType() || InvalidDecl)
3309 NewFD->setInvalidDecl();
Douglas Gregor8acb7272008-12-11 16:49:14 +00003310
Douglas Gregordb568cf2009-01-08 20:45:30 +00003311 if (II) {
Douglas Gregor8acb7272008-12-11 16:49:14 +00003312 PushOnScopeChains(NewFD, S);
Douglas Gregordb568cf2009-01-08 20:45:30 +00003313 } else
Douglas Gregor03b2ad22009-01-12 23:27:07 +00003314 Record->addDecl(NewFD);
Douglas Gregor8acb7272008-12-11 16:49:14 +00003315
Steve Naroffd1ad6ae2007-08-28 20:14:24 +00003316 return NewFD;
Chris Lattner4b009652007-07-25 00:24:17 +00003317}
3318
Fariborz Jahanianbec0d562007-10-01 16:53:59 +00003319/// TranslateIvarVisibility - Translate visibility from a token ID to an
3320/// AST enum value.
Ted Kremenek42730c52008-01-07 19:49:32 +00003321static ObjCIvarDecl::AccessControl
Fariborz Jahanianbec0d562007-10-01 16:53:59 +00003322TranslateIvarVisibility(tok::ObjCKeywordKind ivarVisibility) {
Steve Naroffffeaa552007-09-14 23:09:53 +00003323 switch (ivarVisibility) {
Chris Lattner504c5432008-10-12 00:28:42 +00003324 default: assert(0 && "Unknown visitibility kind");
3325 case tok::objc_private: return ObjCIvarDecl::Private;
3326 case tok::objc_public: return ObjCIvarDecl::Public;
3327 case tok::objc_protected: return ObjCIvarDecl::Protected;
3328 case tok::objc_package: return ObjCIvarDecl::Package;
Steve Naroffffeaa552007-09-14 23:09:53 +00003329 }
3330}
3331
Fariborz Jahanian4e0bb982008-04-11 16:55:42 +00003332/// ActOnIvar - Each ivar field of an objective-c class is passed into this
3333/// in order to create an IvarDecl object for it.
Fariborz Jahanian751c6172008-04-10 23:32:45 +00003334Sema::DeclTy *Sema::ActOnIvar(Scope *S,
Fariborz Jahanian4e0bb982008-04-11 16:55:42 +00003335 SourceLocation DeclStart,
3336 Declarator &D, ExprTy *BitfieldWidth,
3337 tok::ObjCKeywordKind Visibility) {
Douglas Gregordb568cf2009-01-08 20:45:30 +00003338
Fariborz Jahanian751c6172008-04-10 23:32:45 +00003339 IdentifierInfo *II = D.getIdentifier();
3340 Expr *BitWidth = (Expr*)BitfieldWidth;
3341 SourceLocation Loc = DeclStart;
3342 if (II) Loc = D.getIdentifierLoc();
3343
3344 // FIXME: Unnamed fields can be handled in various different ways, for
3345 // example, unnamed unions inject all members into the struct namespace!
3346
Anders Carlsson108229a2008-12-06 20:33:04 +00003347 QualType T = GetTypeForDeclarator(D, S);
3348 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
3349 bool InvalidDecl = false;
Fariborz Jahanian751c6172008-04-10 23:32:45 +00003350
3351 if (BitWidth) {
3352 // TODO: Validate.
3353 //printf("WARNING: BITFIELDS IGNORED!\n");
3354
3355 // 6.7.2.1p3
3356 // 6.7.2.1p4
3357
3358 } else {
3359 // Not a bitfield.
3360
3361 // validate II.
3362
3363 }
3364
Fariborz Jahanian751c6172008-04-10 23:32:45 +00003365 // C99 6.7.2.1p8: A member of a structure or union may have any type other
3366 // than a variably modified type.
3367 if (T->isVariablyModifiedType()) {
Anders Carlsson68adbd12008-12-07 00:20:55 +00003368 Diag(Loc, diag::err_typecheck_ivar_variable_size);
Fariborz Jahanian751c6172008-04-10 23:32:45 +00003369 InvalidDecl = true;
3370 }
3371
Ted Kremenek173dd312008-07-23 18:04:17 +00003372 // Get the visibility (access control) for this ivar.
3373 ObjCIvarDecl::AccessControl ac =
3374 Visibility != tok::objc_not_keyword ? TranslateIvarVisibility(Visibility)
3375 : ObjCIvarDecl::None;
3376
3377 // Construct the decl.
3378 ObjCIvarDecl *NewID = ObjCIvarDecl::Create(Context, Loc, II, T, ac,
Steve Naroffd3354222008-07-16 18:22:22 +00003379 (Expr *)BitfieldWidth);
Fariborz Jahanian751c6172008-04-10 23:32:45 +00003380
Douglas Gregordb568cf2009-01-08 20:45:30 +00003381 if (II) {
Steve Naroffc349ee22009-01-29 00:07:50 +00003382 Decl *PrevDecl = LookupDeclInScope(II, Decl::IDNS_Member, S, false);
Douglas Gregordb568cf2009-01-08 20:45:30 +00003383 if (PrevDecl && isDeclInScope(PrevDecl, CurContext, S)
3384 && !isa<TagDecl>(PrevDecl)) {
3385 Diag(Loc, diag::err_duplicate_member) << II;
3386 Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
3387 NewID->setInvalidDecl();
3388 }
3389 }
3390
Ted Kremenek173dd312008-07-23 18:04:17 +00003391 // Process attributes attached to the ivar.
Chris Lattner9b384ca2008-06-29 00:02:00 +00003392 ProcessDeclAttributes(NewID, D);
Fariborz Jahanian751c6172008-04-10 23:32:45 +00003393
3394 if (D.getInvalidType() || InvalidDecl)
3395 NewID->setInvalidDecl();
Ted Kremenek173dd312008-07-23 18:04:17 +00003396
Douglas Gregordb568cf2009-01-08 20:45:30 +00003397 if (II) {
3398 // FIXME: When interfaces are DeclContexts, we'll need to add
3399 // these to the interface.
3400 S->AddDecl(NewID);
3401 IdResolver.AddDecl(NewID);
3402 }
3403
Fariborz Jahanian751c6172008-04-10 23:32:45 +00003404 return NewID;
3405}
3406
Fariborz Jahanian0c5affb2007-09-29 00:54:24 +00003407void Sema::ActOnFields(Scope* S,
Fariborz Jahaniancbc36d42007-10-04 00:45:27 +00003408 SourceLocation RecLoc, DeclTy *RecDecl,
Steve Naroff0acc9c92007-09-15 18:49:24 +00003409 DeclTy **Fields, unsigned NumFields,
Daniel Dunbarf3944442008-10-03 02:03:53 +00003410 SourceLocation LBrac, SourceLocation RBrac,
Daniel Dunbar175e6392008-10-03 17:33:35 +00003411 AttributeList *Attr) {
Steve Naroff9bb759f2007-09-14 22:20:54 +00003412 Decl *EnclosingDecl = static_cast<Decl*>(RecDecl);
3413 assert(EnclosingDecl && "missing record or interface decl");
3414 RecordDecl *Record = dyn_cast<RecordDecl>(EnclosingDecl);
3415
Chris Lattner4b009652007-07-25 00:24:17 +00003416 // Verify that all the fields are okay.
3417 unsigned NumNamedMembers = 0;
3418 llvm::SmallVector<FieldDecl*, 32> RecFields;
Douglas Gregorc7f01612009-01-07 19:46:03 +00003419
Chris Lattner4b009652007-07-25 00:24:17 +00003420 for (unsigned i = 0; i != NumFields; ++i) {
Steve Naroff9bb759f2007-09-14 22:20:54 +00003421 FieldDecl *FD = cast_or_null<FieldDecl>(static_cast<Decl*>(Fields[i]));
3422 assert(FD && "missing field decl");
3423
Chris Lattner4b009652007-07-25 00:24:17 +00003424 // Get the type for the field.
Chris Lattner36be3d82007-07-31 21:33:24 +00003425 Type *FDTy = FD->getType().getTypePtr();
Douglas Gregorc7f01612009-01-07 19:46:03 +00003426
Douglas Gregordb568cf2009-01-08 20:45:30 +00003427 if (!FD->isAnonymousStructOrUnion()) {
Douglas Gregorc7f01612009-01-07 19:46:03 +00003428 // Remember all fields written by the user.
3429 RecFields.push_back(FD);
3430 }
Steve Naroffffeaa552007-09-14 23:09:53 +00003431
Chris Lattner4b009652007-07-25 00:24:17 +00003432 // C99 6.7.2.1p2 - A field may not be a function type.
Chris Lattner36be3d82007-07-31 21:33:24 +00003433 if (FDTy->isFunctionType()) {
Chris Lattner10f2c2e2008-11-20 06:38:18 +00003434 Diag(FD->getLocation(), diag::err_field_declared_as_function)
Chris Lattner271d4c22008-11-24 05:29:24 +00003435 << FD->getDeclName();
Steve Naroff9bb759f2007-09-14 22:20:54 +00003436 FD->setInvalidDecl();
3437 EnclosingDecl->setInvalidDecl();
Chris Lattner4b009652007-07-25 00:24:17 +00003438 continue;
3439 }
Chris Lattner4b009652007-07-25 00:24:17 +00003440 // C99 6.7.2.1p2 - A field may not be an incomplete type except...
3441 if (FDTy->isIncompleteType()) {
Fariborz Jahanian023a4392007-09-14 16:27:55 +00003442 if (!Record) { // Incomplete ivar type is always an error.
Douglas Gregor46fe06e2009-01-19 19:26:10 +00003443 DiagnoseIncompleteType(FD->getLocation(), FD->getType(),
3444 diag::err_field_incomplete);
Steve Naroff9bb759f2007-09-14 22:20:54 +00003445 FD->setInvalidDecl();
3446 EnclosingDecl->setInvalidDecl();
Fariborz Jahaniancbc36d42007-10-04 00:45:27 +00003447 continue;
Fariborz Jahanian023a4392007-09-14 16:27:55 +00003448 }
Chris Lattner4b009652007-07-25 00:24:17 +00003449 if (i != NumFields-1 || // ... that the last member ...
Argiris Kirtzidisc6cc7d52008-06-09 23:19:58 +00003450 !Record->isStruct() || // ... of a structure ...
Chris Lattner36be3d82007-07-31 21:33:24 +00003451 !FDTy->isArrayType()) { //... may have incomplete array type.
Douglas Gregor46fe06e2009-01-19 19:26:10 +00003452 DiagnoseIncompleteType(FD->getLocation(), FD->getType(),
3453 diag::err_field_incomplete);
Steve Naroff9bb759f2007-09-14 22:20:54 +00003454 FD->setInvalidDecl();
3455 EnclosingDecl->setInvalidDecl();
Chris Lattner4b009652007-07-25 00:24:17 +00003456 continue;
3457 }
Fariborz Jahanian023a4392007-09-14 16:27:55 +00003458 if (NumNamedMembers < 1) { //... must have more than named member ...
Chris Lattner10f2c2e2008-11-20 06:38:18 +00003459 Diag(FD->getLocation(), diag::err_flexible_array_empty_struct)
Chris Lattner271d4c22008-11-24 05:29:24 +00003460 << FD->getDeclName();
Steve Naroff9bb759f2007-09-14 22:20:54 +00003461 FD->setInvalidDecl();
3462 EnclosingDecl->setInvalidDecl();
Chris Lattner4b009652007-07-25 00:24:17 +00003463 continue;
3464 }
Chris Lattner4b009652007-07-25 00:24:17 +00003465 // Okay, we have a legal flexible array member at the end of the struct.
Fariborz Jahanian023a4392007-09-14 16:27:55 +00003466 if (Record)
3467 Record->setHasFlexibleArrayMember(true);
Chris Lattner4b009652007-07-25 00:24:17 +00003468 }
Chris Lattner4b009652007-07-25 00:24:17 +00003469 /// C99 6.7.2.1p2 - a struct ending in a flexible array member cannot be the
3470 /// field of another structure or the element of an array.
Chris Lattner36be3d82007-07-31 21:33:24 +00003471 if (const RecordType *FDTTy = FDTy->getAsRecordType()) {
Chris Lattner4b009652007-07-25 00:24:17 +00003472 if (FDTTy->getDecl()->hasFlexibleArrayMember()) {
3473 // If this is a member of a union, then entire union becomes "flexible".
Argiris Kirtzidisc6cc7d52008-06-09 23:19:58 +00003474 if (Record && Record->isUnion()) {
Chris Lattner4b009652007-07-25 00:24:17 +00003475 Record->setHasFlexibleArrayMember(true);
3476 } else {
3477 // If this is a struct/class and this is not the last element, reject
3478 // it. Note that GCC supports variable sized arrays in the middle of
3479 // structures.
3480 if (i != NumFields-1) {
Chris Lattner10f2c2e2008-11-20 06:38:18 +00003481 Diag(FD->getLocation(), diag::err_variable_sized_type_in_struct)
Chris Lattner271d4c22008-11-24 05:29:24 +00003482 << FD->getDeclName();
Steve Naroff9bb759f2007-09-14 22:20:54 +00003483 FD->setInvalidDecl();
3484 EnclosingDecl->setInvalidDecl();
Chris Lattner4b009652007-07-25 00:24:17 +00003485 continue;
3486 }
Chris Lattner4b009652007-07-25 00:24:17 +00003487 // We support flexible arrays at the end of structs in other structs
3488 // as an extension.
Chris Lattner10f2c2e2008-11-20 06:38:18 +00003489 Diag(FD->getLocation(), diag::ext_flexible_array_in_struct)
Chris Lattner271d4c22008-11-24 05:29:24 +00003490 << FD->getDeclName();
Fariborz Jahaniancbc36d42007-10-04 00:45:27 +00003491 if (Record)
Fariborz Jahanian023a4392007-09-14 16:27:55 +00003492 Record->setHasFlexibleArrayMember(true);
Chris Lattner4b009652007-07-25 00:24:17 +00003493 }
3494 }
3495 }
Fariborz Jahanian550e0502007-10-12 22:10:42 +00003496 /// A field cannot be an Objective-c object
Ted Kremenek42730c52008-01-07 19:49:32 +00003497 if (FDTy->isObjCInterfaceType()) {
Chris Lattner10f2c2e2008-11-20 06:38:18 +00003498 Diag(FD->getLocation(), diag::err_statically_allocated_object)
Chris Lattnerb1753422008-11-23 21:45:46 +00003499 << FD->getDeclName();
Fariborz Jahanian550e0502007-10-12 22:10:42 +00003500 FD->setInvalidDecl();
3501 EnclosingDecl->setInvalidDecl();
3502 continue;
3503 }
Chris Lattner4b009652007-07-25 00:24:17 +00003504 // Keep track of the number of named members.
Douglas Gregordb568cf2009-01-08 20:45:30 +00003505 if (FD->getIdentifier())
Chris Lattner4b009652007-07-25 00:24:17 +00003506 ++NumNamedMembers;
Chris Lattner4b009652007-07-25 00:24:17 +00003507 }
Sebastian Redl39c0f6f2009-01-05 20:52:13 +00003508
Chris Lattner4b009652007-07-25 00:24:17 +00003509 // Okay, we successfully defined 'Record'.
Chris Lattner33aad6e2008-02-06 00:51:33 +00003510 if (Record) {
Douglas Gregor8acb7272008-12-11 16:49:14 +00003511 Record->completeDefinition(Context);
Chris Lattner33aad6e2008-02-06 00:51:33 +00003512 } else {
Chris Lattner1100cfb2008-02-05 22:40:55 +00003513 ObjCIvarDecl **ClsFields = reinterpret_cast<ObjCIvarDecl**>(&RecFields[0]);
Fariborz Jahanian624921a2008-12-13 20:28:25 +00003514 if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(EnclosingDecl)) {
Chris Lattner1100cfb2008-02-05 22:40:55 +00003515 ID->addInstanceVariablesToClass(ClsFields, RecFields.size(), RBrac);
Fariborz Jahanian0c067092008-12-16 01:08:35 +00003516 // Must enforce the rule that ivars in the base classes may not be
3517 // duplicates.
Fariborz Jahanian2004fb62008-12-17 22:21:44 +00003518 if (ID->getSuperClass()) {
3519 for (ObjCInterfaceDecl::ivar_iterator IVI = ID->ivar_begin(),
3520 IVE = ID->ivar_end(); IVI != IVE; ++IVI) {
3521 ObjCIvarDecl* Ivar = (*IVI);
3522 IdentifierInfo *II = Ivar->getIdentifier();
3523 ObjCIvarDecl* prevIvar = ID->getSuperClass()->FindIvarDeclaration(II);
3524 if (prevIvar) {
3525 Diag(Ivar->getLocation(), diag::err_duplicate_member) << II;
Douglas Gregordb568cf2009-01-08 20:45:30 +00003526 Diag(prevIvar->getLocation(), diag::note_previous_declaration);
Fariborz Jahanian0c067092008-12-16 01:08:35 +00003527 }
Fariborz Jahanian2004fb62008-12-17 22:21:44 +00003528 }
Fariborz Jahanian0c067092008-12-16 01:08:35 +00003529 }
Fariborz Jahanian624921a2008-12-13 20:28:25 +00003530 }
Chris Lattner1100cfb2008-02-05 22:40:55 +00003531 else if (ObjCImplementationDecl *IMPDecl =
3532 dyn_cast<ObjCImplementationDecl>(EnclosingDecl)) {
Ted Kremenek42730c52008-01-07 19:49:32 +00003533 assert(IMPDecl && "ActOnFields - missing ObjCImplementationDecl");
3534 IMPDecl->ObjCAddInstanceVariablesToClassImpl(ClsFields, RecFields.size());
Fariborz Jahanian87093732007-10-31 18:48:14 +00003535 CheckImplementationIvars(IMPDecl, ClsFields, RecFields.size(), RBrac);
Fariborz Jahaniand34caf92007-09-26 18:27:25 +00003536 }
Fariborz Jahanianebcc9b62007-09-14 21:08:27 +00003537 }
Daniel Dunbar175e6392008-10-03 17:33:35 +00003538
3539 if (Attr)
3540 ProcessDeclAttributeList(Record, Attr);
Chris Lattner4b009652007-07-25 00:24:17 +00003541}
3542
Steve Naroff0acc9c92007-09-15 18:49:24 +00003543Sema::DeclTy *Sema::ActOnEnumConstant(Scope *S, DeclTy *theEnumDecl,
Chris Lattner4b009652007-07-25 00:24:17 +00003544 DeclTy *lastEnumConst,
3545 SourceLocation IdLoc, IdentifierInfo *Id,
3546 SourceLocation EqualLoc, ExprTy *val) {
Chris Lattnereee57c02008-04-04 06:12:32 +00003547 EnumDecl *TheEnumDecl = cast<EnumDecl>(static_cast<Decl*>(theEnumDecl));
Chris Lattner4b009652007-07-25 00:24:17 +00003548 EnumConstantDecl *LastEnumConst =
3549 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(lastEnumConst));
3550 Expr *Val = static_cast<Expr*>(val);
3551
Chris Lattnera7549902007-08-26 06:24:45 +00003552 // The scope passed in may not be a decl scope. Zip up the scope tree until
3553 // we find one that is.
Douglas Gregor5eca99e2009-01-12 18:45:55 +00003554 S = getNonFieldDeclScope(S);
Chris Lattnera7549902007-08-26 06:24:45 +00003555
Chris Lattner4b009652007-07-25 00:24:17 +00003556 // Verify that there isn't already something declared with this name in this
3557 // scope.
Steve Naroffc349ee22009-01-29 00:07:50 +00003558 Decl *PrevDecl = LookupDeclInScope(Id, Decl::IDNS_Ordinary, S);
Douglas Gregor2715a1f2008-12-08 18:40:42 +00003559 if (PrevDecl && PrevDecl->isTemplateParameter()) {
Douglas Gregordd861062008-12-05 18:15:24 +00003560 // Maybe we will complain about the shadowed template parameter.
3561 DiagnoseTemplateParameterShadow(IdLoc, PrevDecl);
3562 // Just pretend that we didn't see the previous declaration.
3563 PrevDecl = 0;
3564 }
3565
3566 if (PrevDecl) {
Argiris Kirtzidis4f071ec2008-07-16 21:01:53 +00003567 // When in C++, we may get a TagDecl with the same name; in this case the
3568 // enum constant will 'hide' the tag.
3569 assert((getLangOptions().CPlusPlus || !isa<TagDecl>(PrevDecl)) &&
3570 "Received TagDecl when not in C++!");
Argiris Kirtzidis90842b62008-09-09 21:18:04 +00003571 if (!isa<TagDecl>(PrevDecl) && isDeclInScope(PrevDecl, CurContext, S)) {
Chris Lattner4b009652007-07-25 00:24:17 +00003572 if (isa<EnumConstantDecl>(PrevDecl))
Chris Lattner65cae292008-11-19 08:23:25 +00003573 Diag(IdLoc, diag::err_redefinition_of_enumerator) << Id;
Chris Lattner4b009652007-07-25 00:24:17 +00003574 else
Chris Lattner65cae292008-11-19 08:23:25 +00003575 Diag(IdLoc, diag::err_redefinition) << Id;
Chris Lattner1336cab2008-11-23 23:12:31 +00003576 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Chris Lattner6ea9bd42008-02-26 00:33:57 +00003577 delete Val;
Chris Lattner4b009652007-07-25 00:24:17 +00003578 return 0;
3579 }
3580 }
3581
3582 llvm::APSInt EnumVal(32);
3583 QualType EltTy;
3584 if (Val) {
Chris Lattner2cda8792007-08-27 21:16:18 +00003585 // Make sure to promote the operand type to int.
3586 UsualUnaryConversions(Val);
3587
Chris Lattner4b009652007-07-25 00:24:17 +00003588 // C99 6.7.2.2p2: Make sure we have an integer constant expression.
3589 SourceLocation ExpLoc;
Anders Carlsson5374c6b2008-12-05 16:33:57 +00003590 if (VerifyIntegerConstantExpression(Val, &EnumVal)) {
Chris Lattner6ea9bd42008-02-26 00:33:57 +00003591 delete Val;
Chris Lattnere7f53a42007-08-27 17:37:24 +00003592 Val = 0; // Just forget about it.
Chris Lattner7cea0552007-08-29 16:03:41 +00003593 } else {
3594 EltTy = Val->getType();
Chris Lattner4b009652007-07-25 00:24:17 +00003595 }
Chris Lattnere7f53a42007-08-27 17:37:24 +00003596 }
3597
3598 if (!Val) {
3599 if (LastEnumConst) {
3600 // Assign the last value + 1.
3601 EnumVal = LastEnumConst->getInitVal();
3602 ++EnumVal;
Chris Lattner2cda8792007-08-27 21:16:18 +00003603
3604 // Check for overflow on increment.
3605 if (EnumVal < LastEnumConst->getInitVal())
3606 Diag(IdLoc, diag::warn_enum_value_overflow);
3607
Chris Lattnere7f53a42007-08-27 17:37:24 +00003608 EltTy = LastEnumConst->getType();
3609 } else {
3610 // First value, set to zero.
3611 EltTy = Context.IntTy;
Chris Lattner8cd0e932008-03-05 18:54:05 +00003612 EnumVal.zextOrTrunc(static_cast<uint32_t>(Context.getTypeSize(EltTy)));
Chris Lattnere7f53a42007-08-27 17:37:24 +00003613 }
Chris Lattner4b009652007-07-25 00:24:17 +00003614 }
3615
Chris Lattnere4650482008-03-15 06:12:44 +00003616 EnumConstantDecl *New =
Chris Lattnereee57c02008-04-04 06:12:32 +00003617 EnumConstantDecl::Create(Context, TheEnumDecl, IdLoc, Id, EltTy,
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00003618 Val, EnumVal);
Chris Lattner4b009652007-07-25 00:24:17 +00003619
3620 // Register this decl in the current scope stack.
Argiris Kirtzidis951f25b2008-04-12 00:47:19 +00003621 PushOnScopeChains(New, S);
Douglas Gregor0c3ab042008-12-17 02:04:30 +00003622
Chris Lattner4b009652007-07-25 00:24:17 +00003623 return New;
3624}
3625
Steve Naroffb0726b82008-08-07 14:08:16 +00003626// FIXME: For consistency with ActOnFields(), we should have the parser
3627// pass in the source location for the left/right braces.
Steve Naroff0acc9c92007-09-15 18:49:24 +00003628void Sema::ActOnEnumBody(SourceLocation EnumLoc, DeclTy *EnumDeclX,
Chris Lattner4b009652007-07-25 00:24:17 +00003629 DeclTy **Elements, unsigned NumElements) {
3630 EnumDecl *Enum = cast<EnumDecl>(static_cast<Decl*>(EnumDeclX));
Douglas Gregord8028382009-01-05 19:45:36 +00003631 QualType EnumType = Context.getTypeDeclType(Enum);
Chris Lattner4b009652007-07-25 00:24:17 +00003632
Chris Lattner435c3fd2007-08-28 05:10:31 +00003633 // TODO: If the result value doesn't fit in an int, it must be a long or long
3634 // long value. ISO C does not support this, but GCC does as an extension,
3635 // emit a warning.
Chris Lattner8cd0e932008-03-05 18:54:05 +00003636 unsigned IntWidth = Context.Target.getIntWidth();
Chris Lattner435c3fd2007-08-28 05:10:31 +00003637
Chris Lattner206754a2007-08-28 06:15:15 +00003638 // Verify that all the values are okay, compute the size of the values, and
3639 // reverse the list.
3640 unsigned NumNegativeBits = 0;
3641 unsigned NumPositiveBits = 0;
3642
3643 // Keep track of whether all elements have type int.
3644 bool AllElementsInt = true;
3645
Chris Lattner4b009652007-07-25 00:24:17 +00003646 for (unsigned i = 0; i != NumElements; ++i) {
3647 EnumConstantDecl *ECD =
3648 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(Elements[i]));
3649 if (!ECD) continue; // Already issued a diagnostic.
Chris Lattnercb33ae12007-08-28 05:27:00 +00003650
3651 // If the enum value doesn't fit in an int, emit an extension warning.
Chris Lattnercb33ae12007-08-28 05:27:00 +00003652 const llvm::APSInt &InitVal = ECD->getInitVal();
Chris Lattner6ea9bd42008-02-26 00:33:57 +00003653 assert(InitVal.getBitWidth() >= IntWidth &&
3654 "Should have promoted value to int");
Chris Lattnercb33ae12007-08-28 05:27:00 +00003655 if (InitVal.getBitWidth() > IntWidth) {
3656 llvm::APSInt V(InitVal);
3657 V.trunc(IntWidth);
3658 V.extend(InitVal.getBitWidth());
3659 if (V != InitVal)
Chris Lattner10f2c2e2008-11-20 06:38:18 +00003660 Diag(ECD->getLocation(), diag::ext_enum_value_not_int)
3661 << InitVal.toString(10);
Chris Lattnercb33ae12007-08-28 05:27:00 +00003662 }
Chris Lattner206754a2007-08-28 06:15:15 +00003663
3664 // Keep track of the size of positive and negative values.
Chris Lattner6ea9bd42008-02-26 00:33:57 +00003665 if (InitVal.isUnsigned() || InitVal.isNonNegative())
Chris Lattneraff63f02008-01-14 21:47:29 +00003666 NumPositiveBits = std::max(NumPositiveBits,
3667 (unsigned)InitVal.getActiveBits());
Chris Lattner206754a2007-08-28 06:15:15 +00003668 else
Chris Lattneraff63f02008-01-14 21:47:29 +00003669 NumNegativeBits = std::max(NumNegativeBits,
3670 (unsigned)InitVal.getMinSignedBits());
Chris Lattner4b009652007-07-25 00:24:17 +00003671
Chris Lattner206754a2007-08-28 06:15:15 +00003672 // Keep track of whether every enum element has type int (very commmon).
3673 if (AllElementsInt)
3674 AllElementsInt = ECD->getType() == Context.IntTy;
Chris Lattner4b009652007-07-25 00:24:17 +00003675 }
3676
Chris Lattner206754a2007-08-28 06:15:15 +00003677 // Figure out the type that should be used for this enum.
3678 // FIXME: Support attribute(packed) on enums and -fshort-enums.
3679 QualType BestType;
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003680 unsigned BestWidth;
Chris Lattner206754a2007-08-28 06:15:15 +00003681
3682 if (NumNegativeBits) {
3683 // If there is a negative value, figure out the smallest integer type (of
3684 // int/long/longlong) that fits.
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003685 if (NumNegativeBits <= IntWidth && NumPositiveBits < IntWidth) {
Chris Lattner206754a2007-08-28 06:15:15 +00003686 BestType = Context.IntTy;
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003687 BestWidth = IntWidth;
3688 } else {
Chris Lattner8cd0e932008-03-05 18:54:05 +00003689 BestWidth = Context.Target.getLongWidth();
Ted Kremenekd7f64cd2007-12-12 22:39:36 +00003690
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003691 if (NumNegativeBits <= BestWidth && NumPositiveBits < BestWidth)
Chris Lattner206754a2007-08-28 06:15:15 +00003692 BestType = Context.LongTy;
3693 else {
Chris Lattner8cd0e932008-03-05 18:54:05 +00003694 BestWidth = Context.Target.getLongLongWidth();
Ted Kremenekd7f64cd2007-12-12 22:39:36 +00003695
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003696 if (NumNegativeBits > BestWidth || NumPositiveBits >= BestWidth)
Chris Lattner206754a2007-08-28 06:15:15 +00003697 Diag(Enum->getLocation(), diag::warn_enum_too_large);
3698 BestType = Context.LongLongTy;
3699 }
3700 }
3701 } else {
3702 // If there is no negative value, figure out which of uint, ulong, ulonglong
3703 // fits.
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003704 if (NumPositiveBits <= IntWidth) {
Chris Lattner206754a2007-08-28 06:15:15 +00003705 BestType = Context.UnsignedIntTy;
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003706 BestWidth = IntWidth;
3707 } else if (NumPositiveBits <=
Chris Lattner8cd0e932008-03-05 18:54:05 +00003708 (BestWidth = Context.Target.getLongWidth())) {
Chris Lattner206754a2007-08-28 06:15:15 +00003709 BestType = Context.UnsignedLongTy;
Chris Lattner8cd0e932008-03-05 18:54:05 +00003710 } else {
3711 BestWidth = Context.Target.getLongLongWidth();
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003712 assert(NumPositiveBits <= BestWidth &&
Chris Lattner206754a2007-08-28 06:15:15 +00003713 "How could an initializer get larger than ULL?");
3714 BestType = Context.UnsignedLongLongTy;
3715 }
3716 }
3717
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003718 // Loop over all of the enumerator constants, changing their types to match
3719 // the type of the enum if needed.
3720 for (unsigned i = 0; i != NumElements; ++i) {
3721 EnumConstantDecl *ECD =
3722 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(Elements[i]));
3723 if (!ECD) continue; // Already issued a diagnostic.
3724
3725 // Standard C says the enumerators have int type, but we allow, as an
3726 // extension, the enumerators to be larger than int size. If each
3727 // enumerator value fits in an int, type it as an int, otherwise type it the
3728 // same as the enumerator decl itself. This means that in "enum { X = 1U }"
3729 // that X has type 'int', not 'unsigned'.
Chris Lattner6ea9bd42008-02-26 00:33:57 +00003730 if (ECD->getType() == Context.IntTy) {
3731 // Make sure the init value is signed.
3732 llvm::APSInt IV = ECD->getInitVal();
3733 IV.setIsSigned(true);
3734 ECD->setInitVal(IV);
Douglas Gregor6b5e34f2008-12-12 02:00:36 +00003735
3736 if (getLangOptions().CPlusPlus)
3737 // C++ [dcl.enum]p4: Following the closing brace of an
3738 // enum-specifier, each enumerator has the type of its
3739 // enumeration.
3740 ECD->setType(EnumType);
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003741 continue; // Already int type.
Chris Lattner6ea9bd42008-02-26 00:33:57 +00003742 }
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003743
3744 // Determine whether the value fits into an int.
3745 llvm::APSInt InitVal = ECD->getInitVal();
3746 bool FitsInInt;
3747 if (InitVal.isUnsigned() || !InitVal.isNegative())
3748 FitsInInt = InitVal.getActiveBits() < IntWidth;
3749 else
3750 FitsInInt = InitVal.getMinSignedBits() <= IntWidth;
3751
3752 // If it fits into an integer type, force it. Otherwise force it to match
3753 // the enum decl type.
3754 QualType NewTy;
3755 unsigned NewWidth;
3756 bool NewSign;
3757 if (FitsInInt) {
3758 NewTy = Context.IntTy;
3759 NewWidth = IntWidth;
3760 NewSign = true;
3761 } else if (ECD->getType() == BestType) {
3762 // Already the right type!
Douglas Gregor6b5e34f2008-12-12 02:00:36 +00003763 if (getLangOptions().CPlusPlus)
3764 // C++ [dcl.enum]p4: Following the closing brace of an
3765 // enum-specifier, each enumerator has the type of its
3766 // enumeration.
3767 ECD->setType(EnumType);
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003768 continue;
3769 } else {
3770 NewTy = BestType;
3771 NewWidth = BestWidth;
3772 NewSign = BestType->isSignedIntegerType();
3773 }
3774
3775 // Adjust the APSInt value.
3776 InitVal.extOrTrunc(NewWidth);
3777 InitVal.setIsSigned(NewSign);
3778 ECD->setInitVal(InitVal);
3779
3780 // Adjust the Expr initializer and type.
Chris Lattner8c6dc7a2009-01-15 19:19:42 +00003781 if (ECD->getInitExpr())
3782 ECD->setInitExpr(new ImplicitCastExpr(NewTy, ECD->getInitExpr(),
3783 /*isLvalue=*/false));
Douglas Gregor6b5e34f2008-12-12 02:00:36 +00003784 if (getLangOptions().CPlusPlus)
3785 // C++ [dcl.enum]p4: Following the closing brace of an
3786 // enum-specifier, each enumerator has the type of its
3787 // enumeration.
3788 ECD->setType(EnumType);
3789 else
3790 ECD->setType(NewTy);
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003791 }
Chris Lattner206754a2007-08-28 06:15:15 +00003792
Douglas Gregor8acb7272008-12-11 16:49:14 +00003793 Enum->completeDefinition(Context, BestType);
Chris Lattner4b009652007-07-25 00:24:17 +00003794}
3795
Anders Carlsson4f7f4412008-02-08 00:33:21 +00003796Sema::DeclTy *Sema::ActOnFileScopeAsmDecl(SourceLocation Loc,
Sebastian Redl91f9b0a2008-12-13 16:23:55 +00003797 ExprArg expr) {
3798 StringLiteral *AsmString = cast<StringLiteral>((Expr*)expr.release());
3799
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +00003800 return FileScopeAsmDecl::Create(Context, CurContext, Loc, AsmString);
Anders Carlsson4f7f4412008-02-08 00:33:21 +00003801}
3802
Douglas Gregorad17e372008-12-16 22:23:02 +00003803
Daniel Dunbar81c7d472008-10-14 05:35:18 +00003804void Sema::ActOnPragmaPack(PragmaPackKind Kind, IdentifierInfo *Name,
3805 ExprTy *alignment, SourceLocation PragmaLoc,
3806 SourceLocation LParenLoc, SourceLocation RParenLoc) {
3807 Expr *Alignment = static_cast<Expr *>(alignment);
3808
3809 // If specified then alignment must be a "small" power of two.
3810 unsigned AlignmentVal = 0;
3811 if (Alignment) {
3812 llvm::APSInt Val;
3813 if (!Alignment->isIntegerConstantExpr(Val, Context) ||
3814 !Val.isPowerOf2() ||
3815 Val.getZExtValue() > 16) {
3816 Diag(PragmaLoc, diag::warn_pragma_pack_invalid_alignment);
3817 delete Alignment;
3818 return; // Ignore
3819 }
3820
3821 AlignmentVal = (unsigned) Val.getZExtValue();
3822 }
3823
3824 switch (Kind) {
3825 case Action::PPK_Default: // pack([n])
3826 PackContext.setAlignment(AlignmentVal);
3827 break;
3828
3829 case Action::PPK_Show: // pack(show)
3830 // Show the current alignment, making sure to show the right value
3831 // for the default.
3832 AlignmentVal = PackContext.getAlignment();
3833 // FIXME: This should come from the target.
3834 if (AlignmentVal == 0)
3835 AlignmentVal = 8;
Chris Lattnera5cc1882008-11-19 07:25:44 +00003836 Diag(PragmaLoc, diag::warn_pragma_pack_show) << AlignmentVal;
Daniel Dunbar81c7d472008-10-14 05:35:18 +00003837 break;
3838
3839 case Action::PPK_Push: // pack(push [, id] [, [n])
3840 PackContext.push(Name);
3841 // Set the new alignment if specified.
3842 if (Alignment)
3843 PackContext.setAlignment(AlignmentVal);
3844 break;
3845
3846 case Action::PPK_Pop: // pack(pop [, id] [, n])
3847 // MSDN, C/C++ Preprocessor Reference > Pragma Directives > pack:
3848 // "#pragma pack(pop, identifier, n) is undefined"
3849 if (Alignment && Name)
3850 Diag(PragmaLoc, diag::warn_pragma_pack_pop_identifer_and_alignment);
3851
3852 // Do the pop.
3853 if (!PackContext.pop(Name)) {
3854 // If a name was specified then failure indicates the name
3855 // wasn't found. Otherwise failure indicates the stack was
3856 // empty.
Chris Lattner10f2c2e2008-11-20 06:38:18 +00003857 Diag(PragmaLoc, diag::warn_pragma_pack_pop_failed)
3858 << (Name ? "no record matching name" : "stack empty");
Daniel Dunbar81c7d472008-10-14 05:35:18 +00003859
3860 // FIXME: Warn about popping named records as MSVC does.
3861 } else {
3862 // Pop succeeded, set the new alignment if specified.
3863 if (Alignment)
3864 PackContext.setAlignment(AlignmentVal);
3865 }
3866 break;
3867
3868 default:
3869 assert(0 && "Invalid #pragma pack kind.");
3870 }
3871}
3872
3873bool PragmaPackStack::pop(IdentifierInfo *Name) {
3874 if (Stack.empty())
3875 return false;
3876
3877 // If name is empty just pop top.
3878 if (!Name) {
3879 Alignment = Stack.back().first;
3880 Stack.pop_back();
3881 return true;
3882 }
3883
3884 // Otherwise, find the named record.
3885 for (unsigned i = Stack.size(); i != 0; ) {
3886 --i;
Daniel Dunbarc13c54c2008-11-19 10:32:38 +00003887 if (Stack[i].second == Name) {
Daniel Dunbar81c7d472008-10-14 05:35:18 +00003888 // Found it, pop up to and including this record.
3889 Alignment = Stack[i].first;
3890 Stack.erase(Stack.begin() + i, Stack.end());
3891 return true;
3892 }
3893 }
3894
3895 return false;
3896}