blob: 248ab5f050d18ac0f4fc81e95b4ad45541377e1f [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"
Daniel Dunbarcc7b1602008-08-11 03:45:03 +000021#include "clang/Basic/Diagnostic.h"
Chris Lattner4b009652007-07-25 00:24:17 +000022#include "clang/Basic/TargetInfo.h"
Steve Naroffa9eae582008-01-30 23:46:05 +000023#include "clang/Basic/SourceManager.h"
24// FIXME: layering (ideally, Sema shouldn't be dependent on Lex API's)
Chris Lattner33aad6e2008-02-06 00:51:33 +000025#include "clang/Lex/Preprocessor.h"
Steve Naroffa9eae582008-01-30 23:46:05 +000026#include "clang/Lex/HeaderSearch.h"
Chris Lattner4b009652007-07-25 00:24:17 +000027#include "llvm/ADT/SmallSet.h"
Douglas Gregor39677622008-12-11 20:41:00 +000028#include "llvm/ADT/STLExtras.h"
Douglas Gregor6e71edc2008-12-23 21:05:05 +000029#include <algorithm>
30#include <functional>
Douglas Gregor39677622008-12-11 20:41:00 +000031
Chris Lattner4b009652007-07-25 00:24:17 +000032using namespace clang;
33
Douglas Gregorb0212bd2008-11-17 20:34:05 +000034Sema::TypeTy *Sema::isTypeName(IdentifierInfo &II, Scope *S,
Argiris Kirtzidis311db8c2008-11-08 16:45:02 +000035 const CXXScopeSpec *SS) {
Argiris Kirtzidis054a2632008-11-08 17:17:31 +000036 DeclContext *DC = 0;
37 if (SS) {
38 if (SS->isInvalid())
39 return 0;
40 DC = static_cast<DeclContext*>(SS->getScopeRep());
41 }
Douglas Gregor29dfa2f2009-01-15 00:26:24 +000042 LookupResult Result = LookupDecl(&II, Decl::IDNS_Ordinary, S, DC, false);
Steve Naroff6384a012008-04-02 14:35:35 +000043
Douglas Gregor29dfa2f2009-01-15 00:26:24 +000044 Decl *IIDecl = 0;
45 switch (Result.getKind()) {
46 case LookupResult::NotFound:
47 case LookupResult::FoundOverloaded:
48 case LookupResult::AmbiguousBaseSubobjectTypes:
49 case LookupResult::AmbiguousBaseSubobjects:
50 // FIXME: In the event of an ambiguous lookup, we could visit all of
51 // the entities found to determine whether they are all types. This
52 // might provide better diagnostics.
53 return 0;
54
55 case LookupResult::Found:
56 IIDecl = Result.getAsDecl();
57 break;
58 }
59
60 if (isa<TypedefDecl>(IIDecl) ||
61 isa<ObjCInterfaceDecl>(IIDecl) ||
62 isa<TagDecl>(IIDecl) ||
63 isa<TemplateTypeParmDecl>(IIDecl))
Fariborz Jahanian23f968b2007-10-12 16:34:10 +000064 return IIDecl;
Steve Naroff81f1bba2007-09-06 21:24:23 +000065 return 0;
Chris Lattner4b009652007-07-25 00:24:17 +000066}
67
Argiris Kirtzidis054a2632008-11-08 17:17:31 +000068DeclContext *Sema::getContainingDC(DeclContext *DC) {
Argiris Kirtzidis38f16712008-07-01 10:37:29 +000069 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(DC)) {
Argiris Kirtzidis054a2632008-11-08 17:17:31 +000070 // A C++ out-of-line method will return to the file declaration context.
Argiris Kirtzidis881964b2008-11-09 23:41:00 +000071 if (MD->isOutOfLineDefinition())
72 return MD->getLexicalDeclContext();
Argiris Kirtzidis054a2632008-11-08 17:17:31 +000073
74 // A C++ inline method is parsed *after* the topmost class it was declared in
75 // is fully parsed (it's "complete").
76 // The parsing of a C++ inline method happens at the declaration context of
Argiris Kirtzidis9cd599b2008-11-19 18:01:13 +000077 // the topmost (non-nested) class it is lexically declared in.
Argiris Kirtzidis38f16712008-07-01 10:37:29 +000078 assert(isa<CXXRecordDecl>(MD->getParent()) && "C++ method not in Record.");
79 DC = MD->getParent();
Argiris Kirtzidis9cd599b2008-11-19 18:01:13 +000080 while (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(DC->getLexicalParent()))
Argiris Kirtzidis38f16712008-07-01 10:37:29 +000081 DC = RD;
82
83 // Return the declaration context of the topmost class the inline method is
84 // declared in.
85 return DC;
86 }
87
Argiris Kirtzidis881964b2008-11-09 23:41:00 +000088 if (isa<ObjCMethodDecl>(DC))
89 return Context.getTranslationUnitDecl();
90
91 if (ScopedDecl *SD = dyn_cast<ScopedDecl>(DC))
92 return SD->getLexicalDeclContext();
Argiris Kirtzidis054a2632008-11-08 17:17:31 +000093
Argiris Kirtzidis9cd599b2008-11-19 18:01:13 +000094 return DC->getLexicalParent();
Argiris Kirtzidis38f16712008-07-01 10:37:29 +000095}
96
Douglas Gregor8acb7272008-12-11 16:49:14 +000097void Sema::PushDeclContext(Scope *S, DeclContext *DC) {
Argiris Kirtzidis054a2632008-11-08 17:17:31 +000098 assert(getContainingDC(DC) == CurContext &&
Zhongxing Xu2c9b8102008-12-08 07:14:51 +000099 "The next DeclContext should be lexically contained in the current one.");
Chris Lattneref87a202008-04-22 18:39:57 +0000100 CurContext = DC;
Douglas Gregor8acb7272008-12-11 16:49:14 +0000101 S->setEntity(DC);
Chris Lattnereee57c02008-04-04 06:12:32 +0000102}
103
Chris Lattnerf3874bc2008-04-06 04:47:34 +0000104void Sema::PopDeclContext() {
105 assert(CurContext && "DeclContext imbalance!");
Douglas Gregor8acb7272008-12-11 16:49:14 +0000106
Argiris Kirtzidis054a2632008-11-08 17:17:31 +0000107 CurContext = getContainingDC(CurContext);
Chris Lattnereee57c02008-04-04 06:12:32 +0000108}
109
Argiris Kirtzidis951f25b2008-04-12 00:47:19 +0000110/// Add this decl to the scope shadowed decl chains.
111void Sema::PushOnScopeChains(NamedDecl *D, Scope *S) {
Douglas Gregord8028382009-01-05 19:45:36 +0000112 // Move up the scope chain until we find the nearest enclosing
113 // non-transparent context. The declaration will be introduced into this
114 // scope.
115 while (S->getEntity() &&
116 ((DeclContext *)S->getEntity())->isTransparentContext())
117 S = S->getParent();
118
Argiris Kirtzidis951f25b2008-04-12 00:47:19 +0000119 S->AddDecl(D);
Argiris Kirtzidis59a9afb2008-05-09 23:39:43 +0000120
Douglas Gregor6e71edc2008-12-23 21:05:05 +0000121 // Add scoped declarations into their context, so that they can be
122 // found later. Declarations without a context won't be inserted
123 // into any context.
124 if (ScopedDecl *SD = dyn_cast<ScopedDecl>(D))
Douglas Gregor03b2ad22009-01-12 23:27:07 +0000125 CurContext->addDecl(SD);
Douglas Gregor6e71edc2008-12-23 21:05:05 +0000126
Argiris Kirtzidis59a9afb2008-05-09 23:39:43 +0000127 // C++ [basic.scope]p4:
128 // -- exactly one declaration shall declare a class name or
129 // enumeration name that is not a typedef name and the other
130 // declarations shall all refer to the same object or
131 // enumerator, or all refer to functions and function templates;
132 // in this case the class name or enumeration name is hidden.
133 if (TagDecl *TD = dyn_cast<TagDecl>(D)) {
134 // We are pushing the name of a tag (enum or class).
Douglas Gregor3a423132009-01-07 16:34:42 +0000135 if (CurContext->getLookupContext()
136 == TD->getDeclContext()->getLookupContext()) {
Douglas Gregor8acb7272008-12-11 16:49:14 +0000137 // We're pushing the tag into the current context, which might
138 // require some reshuffling in the identifier resolver.
139 IdentifierResolver::iterator
Douglas Gregor6e71edc2008-12-23 21:05:05 +0000140 I = IdResolver.begin(TD->getDeclName(), CurContext,
141 false/*LookInParentCtx*/),
142 IEnd = IdResolver.end();
143 if (I != IEnd && isDeclInScope(*I, CurContext, S)) {
144 NamedDecl *PrevDecl = *I;
145 for (; I != IEnd && isDeclInScope(*I, CurContext, S);
146 PrevDecl = *I, ++I) {
147 if (TD->declarationReplaces(*I)) {
148 // This is a redeclaration. Remove it from the chain and
149 // break out, so that we'll add in the shadowed
150 // declaration.
151 S->RemoveDecl(*I);
152 if (PrevDecl == *I) {
153 IdResolver.RemoveDecl(*I);
154 IdResolver.AddDecl(TD);
155 return;
156 } else {
157 IdResolver.RemoveDecl(*I);
158 break;
159 }
160 }
161 }
Argiris Kirtzidis59a9afb2008-05-09 23:39:43 +0000162
Douglas Gregor6e71edc2008-12-23 21:05:05 +0000163 // There is already a declaration with the same name in the same
164 // scope, which is not a tag declaration. It must be found
165 // before we find the new declaration, so insert the new
166 // declaration at the end of the chain.
167 IdResolver.AddShadowedDecl(TD, PrevDecl);
168
169 return;
Douglas Gregor8acb7272008-12-11 16:49:14 +0000170 }
Argiris Kirtzidis59a9afb2008-05-09 23:39:43 +0000171 }
Argiris Kirtzidis81a5feb2008-10-22 23:08:24 +0000172 } else if (getLangOptions().CPlusPlus && isa<FunctionDecl>(D)) {
Douglas Gregord2baafd2008-10-21 16:13:35 +0000173 // We are pushing the name of a function, which might be an
174 // overloaded name.
Douglas Gregor8acb7272008-12-11 16:49:14 +0000175 FunctionDecl *FD = cast<FunctionDecl>(D);
Douglas Gregor69e781f2009-01-06 23:51:29 +0000176 DeclContext *DC = FD->getDeclContext()->getLookupContext();
Douglas Gregor6e71edc2008-12-23 21:05:05 +0000177 IdentifierResolver::iterator Redecl
Douglas Gregord8028382009-01-05 19:45:36 +0000178 = std::find_if(IdResolver.begin(FD->getDeclName(), DC,
Douglas Gregor6e71edc2008-12-23 21:05:05 +0000179 false/*LookInParentCtx*/),
180 IdResolver.end(),
181 std::bind1st(std::mem_fun(&ScopedDecl::declarationReplaces),
182 FD));
183 if (Redecl != IdResolver.end()) {
184 // There is already a declaration of a function on our
185 // IdResolver chain. Replace it with this declaration.
186 S->RemoveDecl(*Redecl);
187 IdResolver.RemoveDecl(*Redecl);
Douglas Gregord2baafd2008-10-21 16:13:35 +0000188 }
Argiris Kirtzidis59a9afb2008-05-09 23:39:43 +0000189 }
Douglas Gregord2baafd2008-10-21 16:13:35 +0000190
Argiris Kirtzidis59a9afb2008-05-09 23:39:43 +0000191 IdResolver.AddDecl(D);
Argiris Kirtzidis951f25b2008-04-12 00:47:19 +0000192}
193
Steve Naroff9637a9b2007-10-09 22:01:59 +0000194void Sema::ActOnPopScope(SourceLocation Loc, Scope *S) {
Chris Lattnera7549902007-08-26 06:24:45 +0000195 if (S->decl_empty()) return;
Douglas Gregordd861062008-12-05 18:15:24 +0000196 assert((S->getFlags() & (Scope::DeclScope | Scope::TemplateParamScope)) &&
197 "Scope shouldn't contain decls!");
Argiris Kirtzidis59a9afb2008-05-09 23:39:43 +0000198
Chris Lattner4b009652007-07-25 00:24:17 +0000199 for (Scope::decl_iterator I = S->decl_begin(), E = S->decl_end();
200 I != E; ++I) {
Steve Naroffd21bc0d2007-09-13 18:10:37 +0000201 Decl *TmpD = static_cast<Decl*>(*I);
202 assert(TmpD && "This decl didn't get pushed??");
Argiris Kirtzidisa5c14b22008-06-10 01:32:09 +0000203
Douglas Gregor8acb7272008-12-11 16:49:14 +0000204 assert(isa<NamedDecl>(TmpD) && "Decl isn't NamedDecl?");
205 NamedDecl *D = cast<NamedDecl>(TmpD);
Argiris Kirtzidisa5c14b22008-06-10 01:32:09 +0000206
Douglas Gregor8acb7272008-12-11 16:49:14 +0000207 if (!D->getDeclName()) continue;
Chris Lattner2a1e2ed2008-04-11 07:00:53 +0000208
Douglas Gregor8acb7272008-12-11 16:49:14 +0000209 // Remove this name from our lexical scope.
210 IdResolver.RemoveDecl(D);
Chris Lattner4b009652007-07-25 00:24:17 +0000211 }
212}
213
Steve Naroffe57c21a2008-04-01 23:04:06 +0000214/// getObjCInterfaceDecl - Look up a for a class declaration in the scope.
215/// return 0 if one not found.
Steve Naroffe57c21a2008-04-01 23:04:06 +0000216ObjCInterfaceDecl *Sema::getObjCInterfaceDecl(IdentifierInfo *Id) {
Steve Naroff15208162008-04-02 18:30:49 +0000217 // The third "scope" argument is 0 since we aren't enabling lazy built-in
218 // creation from this context.
219 Decl *IDecl = LookupDecl(Id, Decl::IDNS_Ordinary, 0, false);
Fariborz Jahaniandc36dc12007-10-12 19:38:20 +0000220
Steve Naroff6384a012008-04-02 14:35:35 +0000221 return dyn_cast_or_null<ObjCInterfaceDecl>(IDecl);
Fariborz Jahaniandc36dc12007-10-12 19:38:20 +0000222}
223
Douglas Gregor5eca99e2009-01-12 18:45:55 +0000224/// getNonFieldDeclScope - Retrieves the innermost scope, starting
225/// from S, where a non-field would be declared. This routine copes
226/// with the difference between C and C++ scoping rules in structs and
227/// unions. For example, the following code is well-formed in C but
228/// ill-formed in C++:
229/// @code
230/// struct S6 {
231/// enum { BAR } e;
232/// };
233///
234/// void test_S6() {
235/// struct S6 a;
236/// a.e = BAR;
237/// }
238/// @endcode
239/// For the declaration of BAR, this routine will return a different
240/// scope. The scope S will be the scope of the unnamed enumeration
241/// within S6. In C++, this routine will return the scope associated
242/// with S6, because the enumeration's scope is a transparent
243/// context but structures can contain non-field names. In C, this
244/// routine will return the translation unit scope, since the
245/// enumeration's scope is a transparent context and structures cannot
246/// contain non-field names.
247Scope *Sema::getNonFieldDeclScope(Scope *S) {
248 while (((S->getFlags() & Scope::DeclScope) == 0) ||
249 (S->getEntity() &&
250 ((DeclContext *)S->getEntity())->isTransparentContext()) ||
251 (S->isClassScope() && !getLangOptions().CPlusPlus))
252 S = S->getParent();
253 return S;
254}
255
Steve Naroffe57c21a2008-04-01 23:04:06 +0000256/// LookupDecl - Look up the inner-most declaration in the specified
Douglas Gregor5ff0ee52008-12-30 03:27:21 +0000257/// namespace. NamespaceNameOnly - during lookup only namespace names
258/// are considered as required in C++ [basic.lookup.udir] 3.4.6.p1
259/// 'When looking up a namespace-name in a using-directive or
260/// namespace-alias-definition, only namespace names are considered.'
Douglas Gregor78d70132009-01-14 22:20:51 +0000261///
262/// Note: The use of this routine is deprecated. Please use
263/// LookupName, LookupQualifiedName, or LookupParsedName instead.
264Sema::LookupResult
265Sema::LookupDecl(DeclarationName Name, unsigned NSI, Scope *S,
266 const DeclContext *LookupCtx,
267 bool enableLazyBuiltinCreation,
268 bool LookInParent,
269 bool NamespaceNameOnly) {
270 LookupCriteria::NameKind Kind;
271 if (NSI == Decl::IDNS_Ordinary) {
272 if (NamespaceNameOnly)
273 Kind = LookupCriteria::Namespace;
274 else
275 Kind = LookupCriteria::Ordinary;
276 } else if (NSI == Decl::IDNS_Tag)
277 Kind = LookupCriteria::Tag;
278 else if (NSI == Decl::IDNS_Member)
279 Kind = LookupCriteria::Member;
280 else
281 assert(false && "Unable to grok LookupDecl NSI argument");
Chris Lattner2a1e2ed2008-04-11 07:00:53 +0000282
Douglas Gregor78d70132009-01-14 22:20:51 +0000283 if (LookupCtx)
284 return LookupQualifiedName(const_cast<DeclContext *>(LookupCtx), Name,
285 LookupCriteria(Kind, !LookInParent,
286 getLangOptions().CPlusPlus));
Douglas Gregordb568cf2009-01-08 20:45:30 +0000287
Douglas Gregor78d70132009-01-14 22:20:51 +0000288 // Unqualified lookup
289 return LookupName(S, Name,
290 LookupCriteria(Kind, !LookInParent,
291 getLangOptions().CPlusPlus));
Chris Lattner4b009652007-07-25 00:24:17 +0000292}
293
Chris Lattnera9c87f22008-05-05 22:18:14 +0000294void Sema::InitBuiltinVaListType() {
Anders Carlsson36760332007-10-15 20:28:48 +0000295 if (!Context.getBuiltinVaListType().isNull())
296 return;
297
298 IdentifierInfo *VaIdent = &Context.Idents.get("__builtin_va_list");
Steve Naroff6384a012008-04-02 14:35:35 +0000299 Decl *VaDecl = LookupDecl(VaIdent, Decl::IDNS_Ordinary, TUScope);
Steve Naroffbc8c52e2007-10-18 22:17:45 +0000300 TypedefDecl *VaTypedef = cast<TypedefDecl>(VaDecl);
Anders Carlsson36760332007-10-15 20:28:48 +0000301 Context.setBuiltinVaListType(Context.getTypedefType(VaTypedef));
302}
303
Chris Lattner4b009652007-07-25 00:24:17 +0000304/// LazilyCreateBuiltin - The specified Builtin-ID was first used at file scope.
305/// lazily create a decl for it.
Chris Lattner71c01112007-10-10 23:42:28 +0000306ScopedDecl *Sema::LazilyCreateBuiltin(IdentifierInfo *II, unsigned bid,
307 Scope *S) {
Chris Lattner4b009652007-07-25 00:24:17 +0000308 Builtin::ID BID = (Builtin::ID)bid;
309
Chris Lattnerb23469f2008-09-28 05:54:29 +0000310 if (Context.BuiltinInfo.hasVAListUse(BID))
Anders Carlsson36760332007-10-15 20:28:48 +0000311 InitBuiltinVaListType();
312
Anders Carlssonfb5b1e82007-10-11 01:00:40 +0000313 QualType R = Context.BuiltinInfo.GetBuiltinType(BID, Context);
Argiris Kirtzidis9d0d8bf2008-04-17 14:47:13 +0000314 FunctionDecl *New = FunctionDecl::Create(Context,
315 Context.getTranslationUnitDecl(),
Chris Lattnereee57c02008-04-04 06:12:32 +0000316 SourceLocation(), II, R,
Chris Lattner4c7802b2008-03-15 21:24:04 +0000317 FunctionDecl::Extern, false, 0);
Chris Lattner4b009652007-07-25 00:24:17 +0000318
Chris Lattnera9c87f22008-05-05 22:18:14 +0000319 // Create Decl objects for each parameter, adding them to the
320 // FunctionDecl.
321 if (FunctionTypeProto *FT = dyn_cast<FunctionTypeProto>(R)) {
322 llvm::SmallVector<ParmVarDecl*, 16> Params;
323 for (unsigned i = 0, e = FT->getNumArgs(); i != e; ++i)
324 Params.push_back(ParmVarDecl::Create(Context, New, SourceLocation(), 0,
325 FT->getArgType(i), VarDecl::None, 0,
326 0));
Ted Kremenek8494c962009-01-14 00:42:25 +0000327 New->setParams(Context, &Params[0], Params.size());
Chris Lattnera9c87f22008-05-05 22:18:14 +0000328 }
329
330
331
Chris Lattner2a1e2ed2008-04-11 07:00:53 +0000332 // TUScope is the translation-unit scope to insert this function into.
Douglas Gregord394a272009-01-09 18:51:29 +0000333 // FIXME: This is hideous. We need to teach PushOnScopeChains to
334 // relate Scopes to DeclContexts, and probably eliminate CurContext
335 // entirely, but we're not there yet.
336 DeclContext *SavedContext = CurContext;
337 CurContext = Context.getTranslationUnitDecl();
Argiris Kirtzidis59a9afb2008-05-09 23:39:43 +0000338 PushOnScopeChains(New, TUScope);
Douglas Gregord394a272009-01-09 18:51:29 +0000339 CurContext = SavedContext;
Chris Lattner4b009652007-07-25 00:24:17 +0000340 return New;
341}
342
Sebastian Redlb93b49c2008-11-11 11:37:55 +0000343/// GetStdNamespace - This method gets the C++ "std" namespace. This is where
344/// everything from the standard library is defined.
345NamespaceDecl *Sema::GetStdNamespace() {
346 if (!StdNamespace) {
Chris Lattnerf0939602008-11-20 05:45:14 +0000347 IdentifierInfo *StdIdent = &PP.getIdentifierTable().get("std");
Sebastian Redlb93b49c2008-11-11 11:37:55 +0000348 DeclContext *Global = Context.getTranslationUnitDecl();
Douglas Gregor78d70132009-01-14 22:20:51 +0000349 Decl *Std = LookupDecl(StdIdent, Decl::IDNS_Ordinary,
Sebastian Redlb93b49c2008-11-11 11:37:55 +0000350 0, Global, /*enableLazyBuiltinCreation=*/false);
351 StdNamespace = dyn_cast_or_null<NamespaceDecl>(Std);
352 }
353 return StdNamespace;
354}
355
Chris Lattner4b009652007-07-25 00:24:17 +0000356/// MergeTypeDefDecl - We just parsed a typedef 'New' which has the same name
357/// and scope as a previous declaration 'Old'. Figure out how to resolve this
358/// situation, merging decls or emitting diagnostics as appropriate.
359///
Steve Naroffe57c21a2008-04-01 23:04:06 +0000360TypedefDecl *Sema::MergeTypeDefDecl(TypedefDecl *New, Decl *OldD) {
Steve Naroff453a8782008-09-09 14:32:20 +0000361 // Allow multiple definitions for ObjC built-in typedefs.
362 // FIXME: Verify the underlying types are equivalent!
363 if (getLangOptions().ObjC1) {
Chris Lattner6d16b052008-11-20 05:41:43 +0000364 const IdentifierInfo *TypeID = New->getIdentifier();
365 switch (TypeID->getLength()) {
366 default: break;
367 case 2:
368 if (!TypeID->isStr("id"))
369 break;
Steve Naroff453a8782008-09-09 14:32:20 +0000370 Context.setObjCIdType(New);
371 return New;
Chris Lattner6d16b052008-11-20 05:41:43 +0000372 case 5:
373 if (!TypeID->isStr("Class"))
374 break;
Steve Naroff453a8782008-09-09 14:32:20 +0000375 Context.setObjCClassType(New);
376 return New;
Chris Lattner6d16b052008-11-20 05:41:43 +0000377 case 3:
378 if (!TypeID->isStr("SEL"))
379 break;
Steve Naroff453a8782008-09-09 14:32:20 +0000380 Context.setObjCSelType(New);
381 return New;
Chris Lattner6d16b052008-11-20 05:41:43 +0000382 case 8:
383 if (!TypeID->isStr("Protocol"))
384 break;
Steve Naroff453a8782008-09-09 14:32:20 +0000385 Context.setObjCProtoType(New->getUnderlyingType());
386 return New;
387 }
388 // Fall through - the typedef name was not a builtin type.
389 }
Chris Lattner4b009652007-07-25 00:24:17 +0000390 // Verify the old decl was also a typedef.
391 TypedefDecl *Old = dyn_cast<TypedefDecl>(OldD);
392 if (!Old) {
Chris Lattner8d756812008-11-20 06:13:02 +0000393 Diag(New->getLocation(), diag::err_redefinition_different_kind)
Chris Lattnerb1753422008-11-23 21:45:46 +0000394 << New->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +0000395 Diag(OldD->getLocation(), diag::note_previous_definition);
Chris Lattner4b009652007-07-25 00:24:17 +0000396 return New;
397 }
398
Chris Lattnerbef8d622008-07-25 18:44:27 +0000399 // If the typedef types are not identical, reject them in all languages and
400 // with any extensions enabled.
401 if (Old->getUnderlyingType() != New->getUnderlyingType() &&
402 Context.getCanonicalType(Old->getUnderlyingType()) !=
403 Context.getCanonicalType(New->getUnderlyingType())) {
Chris Lattner8d756812008-11-20 06:13:02 +0000404 Diag(New->getLocation(), diag::err_redefinition_different_typedef)
Chris Lattner4bfd2232008-11-24 06:25:27 +0000405 << New->getUnderlyingType() << Old->getUnderlyingType();
Chris Lattner1336cab2008-11-23 23:12:31 +0000406 Diag(Old->getLocation(), diag::note_previous_definition);
Douglas Gregord1675382009-01-09 19:42:16 +0000407 return New;
Chris Lattnerbef8d622008-07-25 18:44:27 +0000408 }
409
Eli Friedman324d5032008-06-11 06:20:39 +0000410 if (getLangOptions().Microsoft) return New;
411
Douglas Gregor49ba1b72008-11-21 16:29:06 +0000412 // C++ [dcl.typedef]p2:
413 // In a given non-class scope, a typedef specifier can be used to
414 // redefine the name of any type declared in that scope to refer
415 // to the type to which it already refers.
416 if (getLangOptions().CPlusPlus && !isa<CXXRecordDecl>(CurContext))
417 return New;
418
419 // In C, redeclaration of a type is a constraint violation (6.7.2.3p1).
Steve Naroffa9eae582008-01-30 23:46:05 +0000420 // Apparently GCC, Intel, and Sun all silently ignore the redeclaration if
421 // *either* declaration is in a system header. The code below implements
422 // this adhoc compatibility rule. FIXME: The following code will not
423 // work properly when compiling ".i" files (containing preprocessed output).
Daniel Dunbar4dbd8572008-09-12 18:10:20 +0000424 if (PP.getDiagnostics().getSuppressSystemWarnings()) {
425 SourceManager &SrcMgr = Context.getSourceManager();
426 if (SrcMgr.isInSystemHeader(Old->getLocation()))
427 return New;
428 if (SrcMgr.isInSystemHeader(New->getLocation()))
429 return New;
430 }
Eli Friedman324d5032008-06-11 06:20:39 +0000431
Chris Lattnerb1753422008-11-23 21:45:46 +0000432 Diag(New->getLocation(), diag::err_redefinition) << New->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +0000433 Diag(Old->getLocation(), diag::note_previous_definition);
Chris Lattner4b009652007-07-25 00:24:17 +0000434 return New;
435}
436
Chris Lattner6953a072008-06-26 18:38:35 +0000437/// DeclhasAttr - returns true if decl Declaration already has the target
438/// attribute.
Chris Lattner402b3372008-03-03 03:28:21 +0000439static bool DeclHasAttr(const Decl *decl, const Attr *target) {
440 for (const Attr *attr = decl->getAttrs(); attr; attr = attr->getNext())
441 if (attr->getKind() == target->getKind())
442 return true;
443
444 return false;
445}
446
447/// MergeAttributes - append attributes from the Old decl to the New one.
448static void MergeAttributes(Decl *New, Decl *Old) {
449 Attr *attr = const_cast<Attr*>(Old->getAttrs()), *tmp;
450
Chris Lattner402b3372008-03-03 03:28:21 +0000451 while (attr) {
452 tmp = attr;
453 attr = attr->getNext();
454
455 if (!DeclHasAttr(New, tmp)) {
Anton Korobeynikovb27a8702008-12-26 00:52:02 +0000456 tmp->setInherited(true);
Chris Lattner402b3372008-03-03 03:28:21 +0000457 New->addAttr(tmp);
458 } else {
459 tmp->setNext(0);
460 delete(tmp);
461 }
462 }
Nuno Lopes77654342008-06-01 22:53:53 +0000463
464 Old->invalidateAttrs();
Chris Lattner402b3372008-03-03 03:28:21 +0000465}
466
Chris Lattner3e254fb2008-04-08 04:40:51 +0000467/// MergeFunctionDecl - We just parsed a function 'New' from
468/// declarator D which has the same name and scope as a previous
469/// declaration 'Old'. Figure out how to resolve this situation,
470/// merging decls or emitting diagnostics as appropriate.
Douglas Gregord2baafd2008-10-21 16:13:35 +0000471/// Redeclaration will be set true if this New is a redeclaration OldD.
472///
473/// In C++, New and Old must be declarations that are not
474/// overloaded. Use IsOverload to determine whether New and Old are
475/// overloaded, and to select the Old declaration that New should be
476/// merged with.
Douglas Gregor42214c52008-04-21 02:02:58 +0000477FunctionDecl *
478Sema::MergeFunctionDecl(FunctionDecl *New, Decl *OldD, bool &Redeclaration) {
Douglas Gregord2baafd2008-10-21 16:13:35 +0000479 assert(!isa<OverloadedFunctionDecl>(OldD) &&
480 "Cannot merge with an overloaded function declaration");
481
Douglas Gregor42214c52008-04-21 02:02:58 +0000482 Redeclaration = false;
Chris Lattner4b009652007-07-25 00:24:17 +0000483 // Verify the old decl was also a function.
484 FunctionDecl *Old = dyn_cast<FunctionDecl>(OldD);
485 if (!Old) {
Chris Lattner8d756812008-11-20 06:13:02 +0000486 Diag(New->getLocation(), diag::err_redefinition_different_kind)
Chris Lattnerb1753422008-11-23 21:45:46 +0000487 << New->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +0000488 Diag(OldD->getLocation(), diag::note_previous_definition);
Chris Lattner4b009652007-07-25 00:24:17 +0000489 return New;
490 }
Douglas Gregord2baafd2008-10-21 16:13:35 +0000491
492 // Determine whether the previous declaration was a definition,
493 // implicit declaration, or a declaration.
494 diag::kind PrevDiag;
495 if (Old->isThisDeclarationADefinition())
Chris Lattner1336cab2008-11-23 23:12:31 +0000496 PrevDiag = diag::note_previous_definition;
Douglas Gregord2baafd2008-10-21 16:13:35 +0000497 else if (Old->isImplicit())
Chris Lattner1336cab2008-11-23 23:12:31 +0000498 PrevDiag = diag::note_previous_implicit_declaration;
Douglas Gregord2baafd2008-10-21 16:13:35 +0000499 else
Chris Lattner1336cab2008-11-23 23:12:31 +0000500 PrevDiag = diag::note_previous_declaration;
Chris Lattner3e254fb2008-04-08 04:40:51 +0000501
Chris Lattner42a21742008-04-06 23:10:54 +0000502 QualType OldQType = Context.getCanonicalType(Old->getType());
503 QualType NewQType = Context.getCanonicalType(New->getType());
Chris Lattner60476ff2007-11-20 19:04:50 +0000504
Douglas Gregord2baafd2008-10-21 16:13:35 +0000505 if (getLangOptions().CPlusPlus) {
506 // (C++98 13.1p2):
507 // Certain function declarations cannot be overloaded:
508 // -- Function declarations that differ only in the return type
509 // cannot be overloaded.
510 QualType OldReturnType
511 = cast<FunctionType>(OldQType.getTypePtr())->getResultType();
512 QualType NewReturnType
513 = cast<FunctionType>(NewQType.getTypePtr())->getResultType();
514 if (OldReturnType != NewReturnType) {
515 Diag(New->getLocation(), diag::err_ovl_diff_return_type);
516 Diag(Old->getLocation(), PrevDiag);
Douglas Gregorddfd9d52008-12-23 00:26:44 +0000517 Redeclaration = true;
Douglas Gregord2baafd2008-10-21 16:13:35 +0000518 return New;
519 }
520
521 const CXXMethodDecl* OldMethod = dyn_cast<CXXMethodDecl>(Old);
522 const CXXMethodDecl* NewMethod = dyn_cast<CXXMethodDecl>(New);
523 if (OldMethod && NewMethod) {
524 // -- Member function declarations with the same name and the
525 // same parameter types cannot be overloaded if any of them
526 // is a static member function declaration.
527 if (OldMethod->isStatic() || NewMethod->isStatic()) {
528 Diag(New->getLocation(), diag::err_ovl_static_nonstatic_member);
529 Diag(Old->getLocation(), PrevDiag);
530 return New;
531 }
Douglas Gregorb9213832008-12-15 21:24:18 +0000532
533 // C++ [class.mem]p1:
534 // [...] A member shall not be declared twice in the
535 // member-specification, except that a nested class or member
536 // class template can be declared and then later defined.
537 if (OldMethod->getLexicalDeclContext() ==
538 NewMethod->getLexicalDeclContext()) {
539 unsigned NewDiag;
540 if (isa<CXXConstructorDecl>(OldMethod))
541 NewDiag = diag::err_constructor_redeclared;
542 else if (isa<CXXDestructorDecl>(NewMethod))
543 NewDiag = diag::err_destructor_redeclared;
544 else if (isa<CXXConversionDecl>(NewMethod))
545 NewDiag = diag::err_conv_function_redeclared;
546 else
547 NewDiag = diag::err_member_redeclared;
548
549 Diag(New->getLocation(), NewDiag);
550 Diag(Old->getLocation(), PrevDiag);
551 }
Douglas Gregord2baafd2008-10-21 16:13:35 +0000552 }
553
554 // (C++98 8.3.5p3):
555 // All declarations for a function shall agree exactly in both the
556 // return type and the parameter-type-list.
557 if (OldQType == NewQType) {
558 // We have a redeclaration.
559 MergeAttributes(New, Old);
560 Redeclaration = true;
561 return MergeCXXFunctionDecl(New, Old);
562 }
563
564 // Fall through for conflicting redeclarations and redefinitions.
Douglas Gregor42214c52008-04-21 02:02:58 +0000565 }
Chris Lattner3e254fb2008-04-08 04:40:51 +0000566
567 // C: Function types need to be compatible, not identical. This handles
Steve Naroff1d5bd642008-01-14 20:51:29 +0000568 // duplicate function decls like "void f(int); void f(enum X);" properly.
Chris Lattner3e254fb2008-04-08 04:40:51 +0000569 if (!getLangOptions().CPlusPlus &&
Eli Friedman0d9549b2008-08-22 00:56:42 +0000570 Context.typesAreCompatible(OldQType, NewQType)) {
Douglas Gregor42214c52008-04-21 02:02:58 +0000571 MergeAttributes(New, Old);
572 Redeclaration = true;
Steve Naroff1d5bd642008-01-14 20:51:29 +0000573 return New;
Chris Lattner3e254fb2008-04-08 04:40:51 +0000574 }
Chris Lattner1470b072007-11-06 06:07:26 +0000575
Steve Naroff6c9e7922008-01-16 15:01:34 +0000576 // A function that has already been declared has been redeclared or defined
577 // with a different type- show appropriate diagnostic
Steve Naroff6c9e7922008-01-16 15:01:34 +0000578
Chris Lattner4b009652007-07-25 00:24:17 +0000579 // TODO: CHECK FOR CONFLICTS, multiple decls with same name in one scope.
580 // TODO: This is totally simplistic. It should handle merging functions
581 // together etc, merging extern int X; int X; ...
Chris Lattner271d4c22008-11-24 05:29:24 +0000582 Diag(New->getLocation(), diag::err_conflicting_types) << New->getDeclName();
Steve Naroff6c9e7922008-01-16 15:01:34 +0000583 Diag(Old->getLocation(), PrevDiag);
Chris Lattner4b009652007-07-25 00:24:17 +0000584 return New;
585}
586
Steve Naroffb5e78152008-08-08 17:50:35 +0000587/// Predicate for C "tentative" external object definitions (C99 6.9.2).
Steve Naroffd5802092008-08-10 15:28:06 +0000588static bool isTentativeDefinition(VarDecl *VD) {
Steve Naroffb5e78152008-08-08 17:50:35 +0000589 if (VD->isFileVarDecl())
590 return (!VD->getInit() &&
591 (VD->getStorageClass() == VarDecl::None ||
592 VD->getStorageClass() == VarDecl::Static));
593 return false;
594}
595
596/// CheckForFileScopedRedefinitions - Make sure we forgo redefinition errors
597/// when dealing with C "tentative" external object definitions (C99 6.9.2).
598void Sema::CheckForFileScopedRedefinitions(Scope *S, VarDecl *VD) {
599 bool VDIsTentative = isTentativeDefinition(VD);
Steve Naroff4b6bd3c2008-08-10 15:20:13 +0000600 bool VDIsIncompleteArray = VD->getType()->isIncompleteArrayType();
Steve Naroffb5e78152008-08-08 17:50:35 +0000601
Douglas Gregor3a423132009-01-07 16:34:42 +0000602 // FIXME: I don't think this will actually see all of the
Douglas Gregor6e71edc2008-12-23 21:05:05 +0000603 // redefinitions. Can't we check this property on-the-fly?
Steve Naroffb5e78152008-08-08 17:50:35 +0000604 for (IdentifierResolver::iterator
605 I = IdResolver.begin(VD->getIdentifier(),
606 VD->getDeclContext(), false/*LookInParentCtx*/),
607 E = IdResolver.end(); I != E; ++I) {
Argiris Kirtzidis90842b62008-09-09 21:18:04 +0000608 if (*I != VD && isDeclInScope(*I, VD->getDeclContext(), S)) {
Steve Naroffb5e78152008-08-08 17:50:35 +0000609 VarDecl *OldDecl = dyn_cast<VarDecl>(*I);
610
Steve Naroff4b6bd3c2008-08-10 15:20:13 +0000611 // Handle the following case:
612 // int a[10];
613 // int a[]; - the code below makes sure we set the correct type.
614 // int a[11]; - this is an error, size isn't 10.
615 if (OldDecl && VDIsTentative && VDIsIncompleteArray &&
616 OldDecl->getType()->isConstantArrayType())
617 VD->setType(OldDecl->getType());
618
Steve Naroffb5e78152008-08-08 17:50:35 +0000619 // Check for "tentative" definitions. We can't accomplish this in
620 // MergeVarDecl since the initializer hasn't been attached.
621 if (!OldDecl || isTentativeDefinition(OldDecl) || VDIsTentative)
622 continue;
623
624 // Handle __private_extern__ just like extern.
625 if (OldDecl->getStorageClass() != VarDecl::Extern &&
626 OldDecl->getStorageClass() != VarDecl::PrivateExtern &&
627 VD->getStorageClass() != VarDecl::Extern &&
628 VD->getStorageClass() != VarDecl::PrivateExtern) {
Chris Lattnerb1753422008-11-23 21:45:46 +0000629 Diag(VD->getLocation(), diag::err_redefinition) << VD->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +0000630 Diag(OldDecl->getLocation(), diag::note_previous_definition);
Steve Naroffb5e78152008-08-08 17:50:35 +0000631 }
632 }
633 }
634}
635
Chris Lattner4b009652007-07-25 00:24:17 +0000636/// MergeVarDecl - We just parsed a variable 'New' which has the same name
637/// and scope as a previous declaration 'Old'. Figure out how to resolve this
638/// situation, merging decls or emitting diagnostics as appropriate.
639///
Steve Naroffb5e78152008-08-08 17:50:35 +0000640/// Tentative definition rules (C99 6.9.2p2) are checked by
641/// FinalizeDeclaratorGroup. Unfortunately, we can't analyze tentative
642/// definitions here, since the initializer hasn't been attached.
Chris Lattner4b009652007-07-25 00:24:17 +0000643///
Steve Naroffe57c21a2008-04-01 23:04:06 +0000644VarDecl *Sema::MergeVarDecl(VarDecl *New, Decl *OldD) {
Chris Lattner4b009652007-07-25 00:24:17 +0000645 // Verify the old decl was also a variable.
646 VarDecl *Old = dyn_cast<VarDecl>(OldD);
647 if (!Old) {
Chris Lattner10f2c2e2008-11-20 06:38:18 +0000648 Diag(New->getLocation(), diag::err_redefinition_different_kind)
Chris Lattnerb1753422008-11-23 21:45:46 +0000649 << New->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +0000650 Diag(OldD->getLocation(), diag::note_previous_definition);
Chris Lattner4b009652007-07-25 00:24:17 +0000651 return New;
652 }
Chris Lattner402b3372008-03-03 03:28:21 +0000653
654 MergeAttributes(New, Old);
655
Chris Lattner4b009652007-07-25 00:24:17 +0000656 // Verify the types match.
Chris Lattner42a21742008-04-06 23:10:54 +0000657 QualType OldCType = Context.getCanonicalType(Old->getType());
658 QualType NewCType = Context.getCanonicalType(New->getType());
Steve Naroff12508172008-08-09 16:04:40 +0000659 if (OldCType != NewCType && !Context.typesAreCompatible(OldCType, NewCType)) {
Douglas Gregord1675382009-01-09 19:42:16 +0000660 Diag(New->getLocation(), diag::err_redefinition_different_type)
661 << New->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +0000662 Diag(Old->getLocation(), diag::note_previous_definition);
Chris Lattner4b009652007-07-25 00:24:17 +0000663 return New;
664 }
Steve Naroffb00247f2008-01-30 00:44:01 +0000665 // C99 6.2.2p4: Check if we have a static decl followed by a non-static.
666 if (New->getStorageClass() == VarDecl::Static &&
667 (Old->getStorageClass() == VarDecl::None ||
668 Old->getStorageClass() == VarDecl::Extern)) {
Chris Lattner271d4c22008-11-24 05:29:24 +0000669 Diag(New->getLocation(), diag::err_static_non_static) << New->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +0000670 Diag(Old->getLocation(), diag::note_previous_definition);
Steve Naroffb00247f2008-01-30 00:44:01 +0000671 return New;
672 }
673 // C99 6.2.2p4: Check if we have a non-static decl followed by a static.
674 if (New->getStorageClass() != VarDecl::Static &&
675 Old->getStorageClass() == VarDecl::Static) {
Chris Lattner271d4c22008-11-24 05:29:24 +0000676 Diag(New->getLocation(), diag::err_non_static_static) << New->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +0000677 Diag(Old->getLocation(), diag::note_previous_definition);
Steve Naroffb00247f2008-01-30 00:44:01 +0000678 return New;
679 }
Steve Naroff2f3c4432008-09-17 14:05:40 +0000680 // Variables with external linkage are analyzed in FinalizeDeclaratorGroup.
681 if (New->getStorageClass() != VarDecl::Extern && !New->isFileVarDecl()) {
Chris Lattnerb1753422008-11-23 21:45:46 +0000682 Diag(New->getLocation(), diag::err_redefinition) << New->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +0000683 Diag(Old->getLocation(), diag::note_previous_definition);
Chris Lattner4b009652007-07-25 00:24:17 +0000684 }
685 return New;
686}
687
Chris Lattner3e254fb2008-04-08 04:40:51 +0000688/// CheckParmsForFunctionDef - Check that the parameters of the given
689/// function are appropriate for the definition of a function. This
690/// takes care of any checks that cannot be performed on the
691/// declaration itself, e.g., that the types of each of the function
692/// parameters are complete.
693bool Sema::CheckParmsForFunctionDef(FunctionDecl *FD) {
694 bool HasInvalidParm = false;
695 for (unsigned p = 0, NumParams = FD->getNumParams(); p < NumParams; ++p) {
696 ParmVarDecl *Param = FD->getParamDecl(p);
697
698 // C99 6.7.5.3p4: the parameters in a parameter type list in a
699 // function declarator that is part of a function definition of
700 // that function shall not have incomplete type.
701 if (Param->getType()->isIncompleteType() &&
702 !Param->isInvalidDecl()) {
Chris Lattner10f2c2e2008-11-20 06:38:18 +0000703 Diag(Param->getLocation(), diag::err_typecheck_decl_incomplete_type)
Chris Lattner271d4c22008-11-24 05:29:24 +0000704 << Param->getType();
Chris Lattner3e254fb2008-04-08 04:40:51 +0000705 Param->setInvalidDecl();
706 HasInvalidParm = true;
707 }
Chris Lattnerb0b42f62008-12-17 07:32:46 +0000708
709 // C99 6.9.1p5: If the declarator includes a parameter type list, the
710 // declaration of each parameter shall include an identifier.
711 if (Param->getIdentifier() == 0 && !getLangOptions().CPlusPlus)
712 Diag(Param->getLocation(), diag::err_parameter_name_omitted);
Chris Lattner3e254fb2008-04-08 04:40:51 +0000713 }
714
715 return HasInvalidParm;
716}
717
Chris Lattner4b009652007-07-25 00:24:17 +0000718/// ParsedFreeStandingDeclSpec - This method is invoked when a declspec with
719/// no declarator (e.g. "struct foo;") is parsed.
720Sema::DeclTy *Sema::ParsedFreeStandingDeclSpec(Scope *S, DeclSpec &DS) {
Douglas Gregorb748fc52009-01-12 22:49:06 +0000721 TagDecl *Tag
722 = dyn_cast_or_null<TagDecl>(static_cast<Decl *>(DS.getTypeRep()));
723 if (RecordDecl *Record = dyn_cast_or_null<RecordDecl>(Tag)) {
724 if (!Record->getDeclName() && Record->isDefinition() &&
725 DS.getStorageClassSpec() != DeclSpec::SCS_typedef)
726 return BuildAnonymousStructOrUnion(S, DS, Record);
727
728 // Microsoft allows unnamed struct/union fields. Don't complain
729 // about them.
730 // FIXME: Should we support Microsoft's extensions in this area?
731 if (Record->getDeclName() && getLangOptions().Microsoft)
732 return Tag;
733 }
734
Douglas Gregor80c720e2009-01-13 23:10:51 +0000735 // Permit typedefs without declarators as a Microsoft extension.
Sebastian Redlb7605e82008-12-28 15:28:59 +0000736 if (!DS.isMissingDeclaratorOk()) {
Douglas Gregor80c720e2009-01-13 23:10:51 +0000737 if (getLangOptions().Microsoft &&
738 DS.getStorageClassSpec() == DeclSpec::SCS_typedef) {
739 Diag(DS.getSourceRange().getBegin(), diag::ext_no_declarators)
740 << DS.getSourceRange();
741 return Tag;
742 }
743
Sebastian Redlb7605e82008-12-28 15:28:59 +0000744 // FIXME: This diagnostic is emitted even when various previous
745 // errors occurred (see e.g. test/Sema/decl-invalid.c). However,
746 // DeclSpec has no means of communicating this information, and the
747 // responsible parser functions are quite far apart.
748 Diag(DS.getSourceRange().getBegin(), diag::err_no_declarators)
749 << DS.getSourceRange();
750 return 0;
751 }
Douglas Gregor723d3332009-01-07 00:43:41 +0000752
Douglas Gregor723d3332009-01-07 00:43:41 +0000753 return Tag;
754}
755
756/// InjectAnonymousStructOrUnionMembers - Inject the members of the
757/// anonymous struct or union AnonRecord into the owning context Owner
758/// and scope S. This routine will be invoked just after we realize
759/// that an unnamed union or struct is actually an anonymous union or
760/// struct, e.g.,
761///
762/// @code
763/// union {
764/// int i;
765/// float f;
766/// }; // InjectAnonymousStructOrUnionMembers called here to inject i and
767/// // f into the surrounding scope.x
768/// @endcode
769///
770/// This routine is recursive, injecting the names of nested anonymous
771/// structs/unions into the owning context and scope as well.
772bool Sema::InjectAnonymousStructOrUnionMembers(Scope *S, DeclContext *Owner,
773 RecordDecl *AnonRecord) {
774 bool Invalid = false;
775 for (RecordDecl::field_iterator F = AnonRecord->field_begin(),
776 FEnd = AnonRecord->field_end();
777 F != FEnd; ++F) {
778 if ((*F)->getDeclName()) {
779 Decl *PrevDecl = LookupDecl((*F)->getDeclName(), Decl::IDNS_Ordinary,
780 S, Owner, false, false, false);
781 if (PrevDecl && !isa<TagDecl>(PrevDecl)) {
782 // C++ [class.union]p2:
783 // The names of the members of an anonymous union shall be
784 // distinct from the names of any other entity in the
785 // scope in which the anonymous union is declared.
786 unsigned diagKind
787 = AnonRecord->isUnion()? diag::err_anonymous_union_member_redecl
788 : diag::err_anonymous_struct_member_redecl;
789 Diag((*F)->getLocation(), diagKind)
790 << (*F)->getDeclName();
791 Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
792 Invalid = true;
793 } else {
794 // C++ [class.union]p2:
795 // For the purpose of name lookup, after the anonymous union
796 // definition, the members of the anonymous union are
797 // considered to have been defined in the scope in which the
798 // anonymous union is declared.
Douglas Gregor03b2ad22009-01-12 23:27:07 +0000799 Owner->insert(*F);
Douglas Gregor723d3332009-01-07 00:43:41 +0000800 S->AddDecl(*F);
801 IdResolver.AddDecl(*F);
802 }
803 } else if (const RecordType *InnerRecordType
804 = (*F)->getType()->getAsRecordType()) {
805 RecordDecl *InnerRecord = InnerRecordType->getDecl();
806 if (InnerRecord->isAnonymousStructOrUnion())
807 Invalid = Invalid ||
808 InjectAnonymousStructOrUnionMembers(S, Owner, InnerRecord);
809 }
810 }
811
812 return Invalid;
813}
814
815/// ActOnAnonymousStructOrUnion - Handle the declaration of an
816/// anonymous structure or union. Anonymous unions are a C++ feature
817/// (C++ [class.union]) and a GNU C extension; anonymous structures
818/// are a GNU C and GNU C++ extension.
819Sema::DeclTy *Sema::BuildAnonymousStructOrUnion(Scope *S, DeclSpec &DS,
820 RecordDecl *Record) {
821 DeclContext *Owner = Record->getDeclContext();
822
823 // Diagnose whether this anonymous struct/union is an extension.
824 if (Record->isUnion() && !getLangOptions().CPlusPlus)
825 Diag(Record->getLocation(), diag::ext_anonymous_union);
826 else if (!Record->isUnion())
827 Diag(Record->getLocation(), diag::ext_anonymous_struct);
828
829 // C and C++ require different kinds of checks for anonymous
830 // structs/unions.
831 bool Invalid = false;
832 if (getLangOptions().CPlusPlus) {
833 const char* PrevSpec = 0;
834 // C++ [class.union]p3:
835 // Anonymous unions declared in a named namespace or in the
836 // global namespace shall be declared static.
837 if (DS.getStorageClassSpec() != DeclSpec::SCS_static &&
838 (isa<TranslationUnitDecl>(Owner) ||
839 (isa<NamespaceDecl>(Owner) &&
840 cast<NamespaceDecl>(Owner)->getDeclName()))) {
841 Diag(Record->getLocation(), diag::err_anonymous_union_not_static);
842 Invalid = true;
843
844 // Recover by adding 'static'.
845 DS.SetStorageClassSpec(DeclSpec::SCS_static, SourceLocation(), PrevSpec);
846 }
847 // C++ [class.union]p3:
848 // A storage class is not allowed in a declaration of an
849 // anonymous union in a class scope.
850 else if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified &&
851 isa<RecordDecl>(Owner)) {
852 Diag(DS.getStorageClassSpecLoc(),
853 diag::err_anonymous_union_with_storage_spec);
854 Invalid = true;
855
856 // Recover by removing the storage specifier.
857 DS.SetStorageClassSpec(DeclSpec::SCS_unspecified, SourceLocation(),
858 PrevSpec);
859 }
Douglas Gregorc7f01612009-01-07 19:46:03 +0000860
861 // C++ [class.union]p2:
862 // The member-specification of an anonymous union shall only
863 // define non-static data members. [Note: nested types and
864 // functions cannot be declared within an anonymous union. ]
865 for (DeclContext::decl_iterator Mem = Record->decls_begin(),
866 MemEnd = Record->decls_end();
867 Mem != MemEnd; ++Mem) {
868 if (FieldDecl *FD = dyn_cast<FieldDecl>(*Mem)) {
869 // C++ [class.union]p3:
870 // An anonymous union shall not have private or protected
871 // members (clause 11).
872 if (FD->getAccess() == AS_protected || FD->getAccess() == AS_private) {
873 Diag(FD->getLocation(), diag::err_anonymous_record_nonpublic_member)
874 << (int)Record->isUnion() << (int)(FD->getAccess() == AS_protected);
875 Invalid = true;
876 }
877 } else if ((*Mem)->isImplicit()) {
878 // Any implicit members are fine.
879 } else if (RecordDecl *MemRecord = dyn_cast<RecordDecl>(*Mem)) {
880 if (!MemRecord->isAnonymousStructOrUnion() &&
881 MemRecord->getDeclName()) {
882 // This is a nested type declaration.
883 Diag(MemRecord->getLocation(), diag::err_anonymous_record_with_type)
884 << (int)Record->isUnion();
885 Invalid = true;
886 }
887 } else {
888 // We have something that isn't a non-static data
889 // member. Complain about it.
890 unsigned DK = diag::err_anonymous_record_bad_member;
891 if (isa<TypeDecl>(*Mem))
892 DK = diag::err_anonymous_record_with_type;
893 else if (isa<FunctionDecl>(*Mem))
894 DK = diag::err_anonymous_record_with_function;
895 else if (isa<VarDecl>(*Mem))
896 DK = diag::err_anonymous_record_with_static;
897 Diag((*Mem)->getLocation(), DK)
898 << (int)Record->isUnion();
899 Invalid = true;
900 }
901 }
Douglas Gregor723d3332009-01-07 00:43:41 +0000902 } else {
903 // FIXME: Check GNU C semantics
Douglas Gregorb748fc52009-01-12 22:49:06 +0000904 if (Record->isUnion() && !Owner->isRecord()) {
905 Diag(Record->getLocation(), diag::err_anonymous_union_not_member)
906 << (int)getLangOptions().CPlusPlus;
907 Invalid = true;
908 }
Douglas Gregor723d3332009-01-07 00:43:41 +0000909 }
910
911 if (!Record->isUnion() && !Owner->isRecord()) {
Douglas Gregorb748fc52009-01-12 22:49:06 +0000912 Diag(Record->getLocation(), diag::err_anonymous_struct_not_member)
913 << (int)getLangOptions().CPlusPlus;
Douglas Gregor723d3332009-01-07 00:43:41 +0000914 Invalid = true;
915 }
916
917 // Create a declaration for this anonymous struct/union.
918 ScopedDecl *Anon = 0;
919 if (RecordDecl *OwningClass = dyn_cast<RecordDecl>(Owner)) {
920 Anon = FieldDecl::Create(Context, OwningClass, Record->getLocation(),
921 /*IdentifierInfo=*/0,
922 Context.getTypeDeclType(Record),
923 /*BitWidth=*/0, /*Mutable=*/false,
924 /*PrevDecl=*/0);
Douglas Gregorc7f01612009-01-07 19:46:03 +0000925 Anon->setAccess(AS_public);
926 if (getLangOptions().CPlusPlus)
927 FieldCollector->Add(cast<FieldDecl>(Anon));
Douglas Gregor723d3332009-01-07 00:43:41 +0000928 } else {
929 VarDecl::StorageClass SC;
930 switch (DS.getStorageClassSpec()) {
931 default: assert(0 && "Unknown storage class!");
932 case DeclSpec::SCS_unspecified: SC = VarDecl::None; break;
933 case DeclSpec::SCS_extern: SC = VarDecl::Extern; break;
934 case DeclSpec::SCS_static: SC = VarDecl::Static; break;
935 case DeclSpec::SCS_auto: SC = VarDecl::Auto; break;
936 case DeclSpec::SCS_register: SC = VarDecl::Register; break;
937 case DeclSpec::SCS_private_extern: SC = VarDecl::PrivateExtern; break;
938 case DeclSpec::SCS_mutable:
939 // mutable can only appear on non-static class members, so it's always
940 // an error here
941 Diag(Record->getLocation(), diag::err_mutable_nonmember);
942 Invalid = true;
943 SC = VarDecl::None;
944 break;
945 }
946
947 Anon = VarDecl::Create(Context, Owner, Record->getLocation(),
948 /*IdentifierInfo=*/0,
949 Context.getTypeDeclType(Record),
950 SC, /*FIXME:LastDeclarator=*/0,
951 DS.getSourceRange().getBegin());
952 }
Douglas Gregorc7f01612009-01-07 19:46:03 +0000953 Anon->setImplicit();
Douglas Gregor723d3332009-01-07 00:43:41 +0000954
955 // Add the anonymous struct/union object to the current
956 // context. We'll be referencing this object when we refer to one of
957 // its members.
Douglas Gregor03b2ad22009-01-12 23:27:07 +0000958 Owner->addDecl(Anon);
Douglas Gregor723d3332009-01-07 00:43:41 +0000959
960 // Inject the members of the anonymous struct/union into the owning
961 // context and into the identifier resolver chain for name lookup
962 // purposes.
Douglas Gregorb748fc52009-01-12 22:49:06 +0000963 if (InjectAnonymousStructOrUnionMembers(S, Owner, Record))
964 Invalid = true;
Douglas Gregor723d3332009-01-07 00:43:41 +0000965
966 // Mark this as an anonymous struct/union type. Note that we do not
967 // do this until after we have already checked and injected the
968 // members of this anonymous struct/union type, because otherwise
969 // the members could be injected twice: once by DeclContext when it
970 // builds its lookup table, and once by
971 // InjectAnonymousStructOrUnionMembers.
972 Record->setAnonymousStructOrUnion(true);
973
974 if (Invalid)
975 Anon->setInvalidDecl();
976
977 return Anon;
Chris Lattner4b009652007-07-25 00:24:17 +0000978}
979
Douglas Gregor6214d8a2009-01-14 15:45:31 +0000980bool Sema::CheckSingleInitializer(Expr *&Init, QualType DeclType,
981 bool DirectInit) {
Steve Naroffe14e5542007-09-02 02:04:30 +0000982 // Get the type before calling CheckSingleAssignmentConstraints(), since
983 // it can promote the expression.
Chris Lattner005ed752008-01-04 18:04:52 +0000984 QualType InitType = Init->getType();
Douglas Gregor6fd35572008-12-19 17:40:08 +0000985
Douglas Gregor6214d8a2009-01-14 15:45:31 +0000986 if (getLangOptions().CPlusPlus) {
987 // FIXME: I dislike this error message. A lot.
988 if (PerformImplicitConversion(Init, DeclType, "initializing", DirectInit))
989 return Diag(Init->getSourceRange().getBegin(),
990 diag::err_typecheck_convert_incompatible)
991 << DeclType << Init->getType() << "initializing"
992 << Init->getSourceRange();
993
994 return false;
995 }
Douglas Gregor6fd35572008-12-19 17:40:08 +0000996
Chris Lattner005ed752008-01-04 18:04:52 +0000997 AssignConvertType ConvTy = CheckSingleAssignmentConstraints(DeclType, Init);
998 return DiagnoseAssignmentResult(ConvTy, Init->getLocStart(), DeclType,
999 InitType, Init, "initializing");
Steve Naroffe14e5542007-09-02 02:04:30 +00001000}
1001
Steve Naroff0d4e6ad2008-01-22 00:55:40 +00001002bool Sema::CheckStringLiteralInit(StringLiteral *strLiteral, QualType &DeclT) {
Chris Lattnera1923f62008-08-04 07:31:14 +00001003 const ArrayType *AT = Context.getAsArrayType(DeclT);
1004
1005 if (const IncompleteArrayType *IAT = dyn_cast<IncompleteArrayType>(AT)) {
Steve Naroff0d4e6ad2008-01-22 00:55:40 +00001006 // C99 6.7.8p14. We have an array of character type with unknown size
1007 // being initialized to a string literal.
1008 llvm::APSInt ConstVal(32);
1009 ConstVal = strLiteral->getByteLength() + 1;
1010 // Return a new array type (C99 6.7.8p22).
Eli Friedman8ff07782008-02-15 18:16:39 +00001011 DeclT = Context.getConstantArrayType(IAT->getElementType(), ConstVal,
Steve Naroff0d4e6ad2008-01-22 00:55:40 +00001012 ArrayType::Normal, 0);
Chris Lattnera1923f62008-08-04 07:31:14 +00001013 } else {
1014 const ConstantArrayType *CAT = cast<ConstantArrayType>(AT);
Steve Naroff0d4e6ad2008-01-22 00:55:40 +00001015 // C99 6.7.8p14. We have an array of character type with known size.
Chris Lattnera1923f62008-08-04 07:31:14 +00001016 // FIXME: Avoid truncation for 64-bit length strings.
1017 if (strLiteral->getByteLength() > (unsigned)CAT->getSize().getZExtValue())
Steve Naroff0d4e6ad2008-01-22 00:55:40 +00001018 Diag(strLiteral->getSourceRange().getBegin(),
Chris Lattner9d2cf082008-11-19 05:27:50 +00001019 diag::warn_initializer_string_for_char_array_too_long)
1020 << strLiteral->getSourceRange();
Steve Naroff0d4e6ad2008-01-22 00:55:40 +00001021 }
1022 // Set type from "char *" to "constant array of char".
1023 strLiteral->setType(DeclT);
1024 // For now, we always return false (meaning success).
1025 return false;
1026}
1027
1028StringLiteral *Sema::IsStringLiteralInit(Expr *Init, QualType DeclType) {
Chris Lattnera1923f62008-08-04 07:31:14 +00001029 const ArrayType *AT = Context.getAsArrayType(DeclType);
Steve Narofff3cb5142008-01-25 00:51:06 +00001030 if (AT && AT->getElementType()->isCharType()) {
1031 return dyn_cast<StringLiteral>(Init);
1032 }
Steve Naroff0d4e6ad2008-01-22 00:55:40 +00001033 return 0;
1034}
1035
Douglas Gregor6428e762008-11-05 15:29:30 +00001036bool Sema::CheckInitializerTypes(Expr *&Init, QualType &DeclType,
1037 SourceLocation InitLoc,
Douglas Gregor6214d8a2009-01-14 15:45:31 +00001038 DeclarationName InitEntity,
1039 bool DirectInit) {
Douglas Gregorf1ae3e02008-12-18 21:49:58 +00001040 if (DeclType->isDependentType() || Init->isTypeDependent())
1041 return false;
1042
Douglas Gregor81c29152008-10-29 00:13:59 +00001043 // C++ [dcl.init.ref]p1:
Sebastian Redl51504af2008-11-24 20:06:50 +00001044 // A variable declared to be a T&, that is "reference to type T"
Douglas Gregor81c29152008-10-29 00:13:59 +00001045 // (8.3.2), shall be initialized by an object, or function, of
1046 // type T or by an object that can be converted into a T.
1047 if (DeclType->isReferenceType())
Douglas Gregor6214d8a2009-01-14 15:45:31 +00001048 return CheckReferenceInit(Init, DeclType, 0, false, DirectInit);
Douglas Gregor81c29152008-10-29 00:13:59 +00001049
Steve Naroff8e9337f2008-01-21 23:53:58 +00001050 // C99 6.7.8p3: The type of the entity to be initialized shall be an array
1051 // of unknown size ("[]") or an object type that is not a variable array type.
Chris Lattnera1923f62008-08-04 07:31:14 +00001052 if (const VariableArrayType *VAT = Context.getAsVariableArrayType(DeclType))
Chris Lattner9d2cf082008-11-19 05:27:50 +00001053 return Diag(InitLoc, diag::err_variable_object_no_init)
1054 << VAT->getSizeExpr()->getSourceRange();
Steve Naroff8e9337f2008-01-21 23:53:58 +00001055
Steve Naroffcb69fb72007-12-10 22:44:33 +00001056 InitListExpr *InitList = dyn_cast<InitListExpr>(Init);
1057 if (!InitList) {
Steve Naroff0d4e6ad2008-01-22 00:55:40 +00001058 // FIXME: Handle wide strings
1059 if (StringLiteral *strLiteral = IsStringLiteralInit(Init, DeclType))
1060 return CheckStringLiteralInit(strLiteral, DeclType);
Eli Friedman65280992008-02-08 00:48:24 +00001061
Douglas Gregor6428e762008-11-05 15:29:30 +00001062 // C++ [dcl.init]p14:
1063 // -- If the destination type is a (possibly cv-qualified) class
1064 // type:
1065 if (getLangOptions().CPlusPlus && DeclType->isRecordType()) {
1066 QualType DeclTypeC = Context.getCanonicalType(DeclType);
1067 QualType InitTypeC = Context.getCanonicalType(Init->getType());
1068
1069 // -- If the initialization is direct-initialization, or if it is
1070 // copy-initialization where the cv-unqualified version of the
1071 // source type is the same class as, or a derived class of, the
1072 // class of the destination, constructors are considered.
1073 if ((DeclTypeC.getUnqualifiedType() == InitTypeC.getUnqualifiedType()) ||
1074 IsDerivedFrom(InitTypeC, DeclTypeC)) {
1075 CXXConstructorDecl *Constructor
1076 = PerformInitializationByConstructor(DeclType, &Init, 1,
1077 InitLoc, Init->getSourceRange(),
Douglas Gregor6214d8a2009-01-14 15:45:31 +00001078 InitEntity,
1079 DirectInit? IK_Direct : IK_Copy);
Douglas Gregor6428e762008-11-05 15:29:30 +00001080 return Constructor == 0;
1081 }
1082
1083 // -- Otherwise (i.e., for the remaining copy-initialization
1084 // cases), user-defined conversion sequences that can
1085 // convert from the source type to the destination type or
1086 // (when a conversion function is used) to a derived class
1087 // thereof are enumerated as described in 13.3.1.4, and the
1088 // best one is chosen through overload resolution
1089 // (13.3). If the conversion cannot be done or is
1090 // ambiguous, the initialization is ill-formed. The
1091 // function selected is called with the initializer
1092 // expression as its argument; if the function is a
1093 // constructor, the call initializes a temporary of the
1094 // destination type.
1095 // FIXME: We're pretending to do copy elision here; return to
1096 // this when we have ASTs for such things.
Douglas Gregor6fd35572008-12-19 17:40:08 +00001097 if (!PerformImplicitConversion(Init, DeclType, "initializing"))
Douglas Gregor6428e762008-11-05 15:29:30 +00001098 return false;
Chris Lattner70b93d82008-11-18 22:52:51 +00001099
Douglas Gregor62ae25a2008-12-24 00:01:03 +00001100 if (InitEntity)
1101 return Diag(InitLoc, diag::err_cannot_initialize_decl)
1102 << InitEntity << (int)(Init->isLvalue(Context) == Expr::LV_Valid)
1103 << Init->getType() << Init->getSourceRange();
1104 else
1105 return Diag(InitLoc, diag::err_cannot_initialize_decl_noname)
1106 << DeclType << (int)(Init->isLvalue(Context) == Expr::LV_Valid)
1107 << Init->getType() << Init->getSourceRange();
Douglas Gregor6428e762008-11-05 15:29:30 +00001108 }
1109
Steve Naroffb2f72412008-09-29 20:07:05 +00001110 // C99 6.7.8p16.
Eli Friedman65280992008-02-08 00:48:24 +00001111 if (DeclType->isArrayType())
Chris Lattner9d2cf082008-11-19 05:27:50 +00001112 return Diag(Init->getLocStart(), diag::err_array_init_list_required)
1113 << Init->getSourceRange();
Eli Friedman65280992008-02-08 00:48:24 +00001114
Douglas Gregor6214d8a2009-01-14 15:45:31 +00001115 return CheckSingleInitializer(Init, DeclType, DirectInit);
Douglas Gregor15e04622008-11-05 16:20:31 +00001116 } else if (getLangOptions().CPlusPlus) {
1117 // C++ [dcl.init]p14:
1118 // [...] If the class is an aggregate (8.5.1), and the initializer
1119 // is a brace-enclosed list, see 8.5.1.
1120 //
1121 // Note: 8.5.1 is handled below; here, we diagnose the case where
1122 // we have an initializer list and a destination type that is not
1123 // an aggregate.
1124 // FIXME: In C++0x, this is yet another form of initialization.
1125 if (const RecordType *ClassRec = DeclType->getAsRecordType()) {
1126 const CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(ClassRec->getDecl());
1127 if (!ClassDecl->isAggregate())
Chris Lattner9d2cf082008-11-19 05:27:50 +00001128 return Diag(InitLoc, diag::err_init_non_aggr_init_list)
Chris Lattner4bfd2232008-11-24 06:25:27 +00001129 << DeclType << Init->getSourceRange();
Douglas Gregor15e04622008-11-05 16:20:31 +00001130 }
Steve Naroffcb69fb72007-12-10 22:44:33 +00001131 }
Eli Friedman38b7a912008-06-06 19:40:52 +00001132
Steve Naroffc4d4a482008-05-01 22:18:59 +00001133 InitListChecker CheckInitList(this, InitList, DeclType);
1134 return CheckInitList.HadError();
Steve Naroffe14e5542007-09-02 02:04:30 +00001135}
1136
Douglas Gregor6704b312008-11-17 22:58:34 +00001137/// GetNameForDeclarator - Determine the full declaration name for the
1138/// given Declarator.
1139DeclarationName Sema::GetNameForDeclarator(Declarator &D) {
1140 switch (D.getKind()) {
1141 case Declarator::DK_Abstract:
1142 assert(D.getIdentifier() == 0 && "abstract declarators have no name");
1143 return DeclarationName();
1144
1145 case Declarator::DK_Normal:
1146 assert (D.getIdentifier() != 0 && "normal declarators have an identifier");
1147 return DeclarationName(D.getIdentifier());
1148
1149 case Declarator::DK_Constructor: {
1150 QualType Ty = Context.getTypeDeclType((TypeDecl *)D.getDeclaratorIdType());
1151 Ty = Context.getCanonicalType(Ty);
1152 return Context.DeclarationNames.getCXXConstructorName(Ty);
1153 }
1154
1155 case Declarator::DK_Destructor: {
1156 QualType Ty = Context.getTypeDeclType((TypeDecl *)D.getDeclaratorIdType());
1157 Ty = Context.getCanonicalType(Ty);
1158 return Context.DeclarationNames.getCXXDestructorName(Ty);
1159 }
1160
1161 case Declarator::DK_Conversion: {
1162 QualType Ty = QualType::getFromOpaquePtr(D.getDeclaratorIdType());
1163 Ty = Context.getCanonicalType(Ty);
1164 return Context.DeclarationNames.getCXXConversionFunctionName(Ty);
1165 }
Douglas Gregor96a32dd2008-11-18 14:39:36 +00001166
1167 case Declarator::DK_Operator:
1168 assert(D.getIdentifier() == 0 && "operator names have no identifier");
1169 return Context.DeclarationNames.getCXXOperatorName(
1170 D.getOverloadedOperator());
Douglas Gregor6704b312008-11-17 22:58:34 +00001171 }
1172
1173 assert(false && "Unknown name kind");
1174 return DeclarationName();
1175}
1176
Douglas Gregorc5cbc242008-12-15 23:53:10 +00001177/// isNearlyMatchingMemberFunction - Determine whether the C++ member
1178/// functions Declaration and Definition are "nearly" matching. This
1179/// heuristic is used to improve diagnostics in the case where an
1180/// out-of-line member function definition doesn't match any
1181/// declaration within the class.
1182static bool isNearlyMatchingMemberFunction(ASTContext &Context,
1183 FunctionDecl *Declaration,
1184 FunctionDecl *Definition) {
1185 if (Declaration->param_size() != Definition->param_size())
1186 return false;
1187 for (unsigned Idx = 0; Idx < Declaration->param_size(); ++Idx) {
1188 QualType DeclParamTy = Declaration->getParamDecl(Idx)->getType();
1189 QualType DefParamTy = Definition->getParamDecl(Idx)->getType();
1190
1191 DeclParamTy = Context.getCanonicalType(DeclParamTy.getNonReferenceType());
1192 DefParamTy = Context.getCanonicalType(DefParamTy.getNonReferenceType());
1193 if (DeclParamTy.getUnqualifiedType() != DefParamTy.getUnqualifiedType())
1194 return false;
1195 }
1196
1197 return true;
1198}
1199
Fariborz Jahaniandfb1c372007-11-08 23:49:49 +00001200Sema::DeclTy *
Douglas Gregorc5cbc242008-12-15 23:53:10 +00001201Sema::ActOnDeclarator(Scope *S, Declarator &D, DeclTy *lastDecl,
1202 bool IsFunctionDefinition) {
Steve Naroff2591e1b2007-09-13 23:52:58 +00001203 ScopedDecl *LastDeclarator = dyn_cast_or_null<ScopedDecl>((Decl *)lastDecl);
Douglas Gregor6704b312008-11-17 22:58:34 +00001204 DeclarationName Name = GetNameForDeclarator(D);
1205
Chris Lattner4b009652007-07-25 00:24:17 +00001206 // All of these full declarators require an identifier. If it doesn't have
1207 // one, the ParsedFreeStandingDeclSpec action should be used.
Douglas Gregor6704b312008-11-17 22:58:34 +00001208 if (!Name) {
Chris Lattnercd61d592008-11-11 06:13:16 +00001209 if (!D.getInvalidType()) // Reject this if we think it is valid.
1210 Diag(D.getDeclSpec().getSourceRange().getBegin(),
Chris Lattner8ba580c2008-11-19 05:08:23 +00001211 diag::err_declarator_need_ident)
1212 << D.getDeclSpec().getSourceRange() << D.getSourceRange();
Chris Lattner4b009652007-07-25 00:24:17 +00001213 return 0;
1214 }
1215
Chris Lattnera7549902007-08-26 06:24:45 +00001216 // The scope passed in may not be a decl scope. Zip up the scope tree until
1217 // we find one that is.
Douglas Gregor8acb7272008-12-11 16:49:14 +00001218 while ((S->getFlags() & Scope::DeclScope) == 0 ||
1219 (S->getFlags() & Scope::TemplateParamScope) != 0)
Chris Lattnera7549902007-08-26 06:24:45 +00001220 S = S->getParent();
1221
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00001222 DeclContext *DC;
1223 Decl *PrevDecl;
Steve Naroffd21bc0d2007-09-13 18:10:37 +00001224 ScopedDecl *New;
Steve Naroffd1ad6ae2007-08-28 20:14:24 +00001225 bool InvalidDecl = false;
Douglas Gregor1d661552008-04-13 21:07:44 +00001226
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00001227 // See if this is a redefinition of a variable in the same scope.
1228 if (!D.getCXXScopeSpec().isSet()) {
1229 DC = CurContext;
Douglas Gregor6704b312008-11-17 22:58:34 +00001230 PrevDecl = LookupDecl(Name, Decl::IDNS_Ordinary, S);
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00001231 } else { // Something like "int foo::x;"
1232 DC = static_cast<DeclContext*>(D.getCXXScopeSpec().getScopeRep());
Douglas Gregor6704b312008-11-17 22:58:34 +00001233 PrevDecl = LookupDecl(Name, Decl::IDNS_Ordinary, S, DC);
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00001234
1235 // C++ 7.3.1.2p2:
1236 // Members (including explicit specializations of templates) of a named
1237 // namespace can also be defined outside that namespace by explicit
1238 // qualification of the name being defined, provided that the entity being
1239 // defined was already declared in the namespace and the definition appears
1240 // after the point of declaration in a namespace that encloses the
1241 // declarations namespace.
1242 //
Douglas Gregorc5cbc242008-12-15 23:53:10 +00001243 // Note that we only check the context at this point. We don't yet
1244 // have enough information to make sure that PrevDecl is actually
1245 // the declaration we want to match. For example, given:
1246 //
Douglas Gregor98341042008-12-12 08:25:50 +00001247 // class X {
1248 // void f();
Douglas Gregorc5cbc242008-12-15 23:53:10 +00001249 // void f(float);
Douglas Gregor98341042008-12-12 08:25:50 +00001250 // };
1251 //
Douglas Gregorc5cbc242008-12-15 23:53:10 +00001252 // void X::f(int) { } // ill-formed
1253 //
1254 // In this case, PrevDecl will point to the overload set
1255 // containing the two f's declared in X, but neither of them
1256 // matches.
1257 if (!CurContext->Encloses(DC)) {
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00001258 // The qualifying scope doesn't enclose the original declaration.
1259 // Emit diagnostic based on current scope.
1260 SourceLocation L = D.getIdentifierLoc();
1261 SourceRange R = D.getCXXScopeSpec().getRange();
1262 if (isa<FunctionDecl>(CurContext)) {
Chris Lattner254de7d2008-11-23 20:28:15 +00001263 Diag(L, diag::err_invalid_declarator_in_function) << Name << R;
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00001264 } else {
Chris Lattner254de7d2008-11-23 20:28:15 +00001265 Diag(L, diag::err_invalid_declarator_scope)
Chris Lattner271d4c22008-11-24 05:29:24 +00001266 << Name << cast<NamedDecl>(DC)->getDeclName() << R;
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00001267 }
Douglas Gregor8acb7272008-12-11 16:49:14 +00001268 InvalidDecl = true;
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00001269 }
1270 }
1271
Douglas Gregor2715a1f2008-12-08 18:40:42 +00001272 if (PrevDecl && PrevDecl->isTemplateParameter()) {
Douglas Gregordd861062008-12-05 18:15:24 +00001273 // Maybe we will complain about the shadowed template parameter.
Douglas Gregor1b21c7f2008-12-05 23:32:09 +00001274 InvalidDecl = InvalidDecl
1275 || DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
Douglas Gregordd861062008-12-05 18:15:24 +00001276 // Just pretend that we didn't see the previous declaration.
1277 PrevDecl = 0;
1278 }
1279
Douglas Gregor1d661552008-04-13 21:07:44 +00001280 // In C++, the previous declaration we find might be a tag type
1281 // (class or enum). In this case, the new declaration will hide the
1282 // tag type.
1283 if (PrevDecl && PrevDecl->getIdentifierNamespace() == Decl::IDNS_Tag)
1284 PrevDecl = 0;
1285
Chris Lattner82bb4792007-11-14 06:34:38 +00001286 QualType R = GetTypeForDeclarator(D, S);
1287 assert(!R.isNull() && "GetTypeForDeclarator() returned null type");
1288
Chris Lattner4b009652007-07-25 00:24:17 +00001289 if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef) {
Douglas Gregorc5cbc242008-12-15 23:53:10 +00001290 // Typedef declarators cannot be qualified (C++ [dcl.meaning]p1).
1291 if (D.getCXXScopeSpec().isSet()) {
1292 Diag(D.getIdentifierLoc(), diag::err_qualified_typedef_declarator)
1293 << D.getCXXScopeSpec().getRange();
1294 InvalidDecl = true;
1295 // Pretend we didn't see the scope specifier.
1296 DC = 0;
1297 }
1298
Douglas Gregor2b9422f2008-05-07 04:49:29 +00001299 // Check that there are no default arguments (C++ only).
1300 if (getLangOptions().CPlusPlus)
1301 CheckExtraCXXDefaultArguments(D);
1302
Chris Lattner82bb4792007-11-14 06:34:38 +00001303 TypedefDecl *NewTD = ParseTypedefDecl(S, D, R, LastDeclarator);
Chris Lattner4b009652007-07-25 00:24:17 +00001304 if (!NewTD) return 0;
1305
1306 // Handle attributes prior to checking for duplicates in MergeVarDecl
Chris Lattner9b384ca2008-06-29 00:02:00 +00001307 ProcessDeclAttributes(NewTD, D);
Steve Narofff8a09432008-01-09 23:34:55 +00001308 // Merge the decl with the existing one if appropriate. If the decl is
1309 // in an outer scope, it isn't the same thing.
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00001310 if (PrevDecl && isDeclInScope(PrevDecl, DC, S)) {
Chris Lattner4b009652007-07-25 00:24:17 +00001311 NewTD = MergeTypeDefDecl(NewTD, PrevDecl);
1312 if (NewTD == 0) return 0;
1313 }
1314 New = NewTD;
Argiris Kirtzidis59a9afb2008-05-09 23:39:43 +00001315 if (S->getFnParent() == 0) {
Chris Lattner4b009652007-07-25 00:24:17 +00001316 // C99 6.7.7p2: If a typedef name specifies a variably modified type
1317 // then it shall have block scope.
Eli Friedmane0079792008-02-15 12:53:51 +00001318 if (NewTD->getUnderlyingType()->isVariablyModifiedType()) {
Anders Carlsson68adbd12008-12-07 00:20:55 +00001319 if (NewTD->getUnderlyingType()->isVariableArrayType())
1320 Diag(D.getIdentifierLoc(), diag::err_vla_decl_in_file_scope);
1321 else
1322 Diag(D.getIdentifierLoc(), diag::err_vm_decl_in_file_scope);
1323
Steve Naroff5eb879b2007-08-31 17:20:07 +00001324 InvalidDecl = true;
Chris Lattner4b009652007-07-25 00:24:17 +00001325 }
1326 }
Chris Lattner82bb4792007-11-14 06:34:38 +00001327 } else if (R.getTypePtr()->isFunctionType()) {
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001328 New = ActOnFunctionDeclarator(S, D, DC, R, LastDeclarator, PrevDecl,
1329 IsFunctionDefinition, InvalidDecl);
Chris Lattner4b009652007-07-25 00:24:17 +00001330 } else {
Douglas Gregor2b9422f2008-05-07 04:49:29 +00001331 // Check that there are no default arguments (C++ only).
1332 if (getLangOptions().CPlusPlus)
1333 CheckExtraCXXDefaultArguments(D);
1334
Ted Kremenek42730c52008-01-07 19:49:32 +00001335 if (R.getTypePtr()->isObjCInterfaceType()) {
Chris Lattner65cae292008-11-19 08:23:25 +00001336 Diag(D.getIdentifierLoc(), diag::err_statically_allocated_object)
1337 << D.getIdentifier();
Fariborz Jahanian550e0502007-10-12 22:10:42 +00001338 InvalidDecl = true;
1339 }
Chris Lattner4b009652007-07-25 00:24:17 +00001340
1341 VarDecl *NewVD;
1342 VarDecl::StorageClass SC;
1343 switch (D.getDeclSpec().getStorageClassSpec()) {
Chris Lattner48d225c2008-03-15 21:10:16 +00001344 default: assert(0 && "Unknown storage class!");
1345 case DeclSpec::SCS_unspecified: SC = VarDecl::None; break;
1346 case DeclSpec::SCS_extern: SC = VarDecl::Extern; break;
1347 case DeclSpec::SCS_static: SC = VarDecl::Static; break;
1348 case DeclSpec::SCS_auto: SC = VarDecl::Auto; break;
1349 case DeclSpec::SCS_register: SC = VarDecl::Register; break;
1350 case DeclSpec::SCS_private_extern: SC = VarDecl::PrivateExtern; break;
Sebastian Redl9f5337b2008-11-14 23:42:31 +00001351 case DeclSpec::SCS_mutable:
1352 // mutable can only appear on non-static class members, so it's always
1353 // an error here
1354 Diag(D.getIdentifierLoc(), diag::err_mutable_nonmember);
1355 InvalidDecl = true;
Douglas Gregor538754e2008-12-01 22:46:22 +00001356 SC = VarDecl::None;
Sebastian Redl6a2b7fd2008-11-17 23:24:37 +00001357 break;
Sebastian Redl9f5337b2008-11-14 23:42:31 +00001358 }
Douglas Gregor6704b312008-11-17 22:58:34 +00001359
1360 IdentifierInfo *II = Name.getAsIdentifierInfo();
1361 if (!II) {
Chris Lattner10f2c2e2008-11-20 06:38:18 +00001362 Diag(D.getIdentifierLoc(), diag::err_bad_variable_name)
1363 << Name.getAsString();
Douglas Gregor6704b312008-11-17 22:58:34 +00001364 return 0;
1365 }
1366
Douglas Gregor723d3332009-01-07 00:43:41 +00001367 if (DC->isRecord()) {
Argiris Kirtzidis38f16712008-07-01 10:37:29 +00001368 // This is a static data member for a C++ class.
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00001369 NewVD = CXXClassVarDecl::Create(Context, cast<CXXRecordDecl>(DC),
Argiris Kirtzidis38f16712008-07-01 10:37:29 +00001370 D.getIdentifierLoc(), II,
1371 R, LastDeclarator);
Steve Naroffe14e5542007-09-02 02:04:30 +00001372 } else {
Daniel Dunbar5eea5622008-09-08 20:05:47 +00001373 bool ThreadSpecified = D.getDeclSpec().isThreadSpecified();
Argiris Kirtzidis38f16712008-07-01 10:37:29 +00001374 if (S->getFnParent() == 0) {
1375 // C99 6.9p2: The storage-class specifiers auto and register shall not
1376 // appear in the declaration specifiers in an external declaration.
1377 if (SC == VarDecl::Auto || SC == VarDecl::Register) {
Chris Lattner4bfd2232008-11-24 06:25:27 +00001378 Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_fscope);
Argiris Kirtzidis38f16712008-07-01 10:37:29 +00001379 InvalidDecl = true;
1380 }
Argiris Kirtzidis38f16712008-07-01 10:37:29 +00001381 }
Sebastian Redl9f5337b2008-11-14 23:42:31 +00001382 NewVD = VarDecl::Create(Context, DC, D.getIdentifierLoc(),
1383 II, R, SC, LastDeclarator,
1384 // FIXME: Move to DeclGroup...
1385 D.getDeclSpec().getSourceRange().getBegin());
1386 NewVD->setThreadSpecified(ThreadSpecified);
Steve Naroffcae537d2007-08-28 18:45:29 +00001387 }
Chris Lattner4b009652007-07-25 00:24:17 +00001388 // Handle attributes prior to checking for duplicates in MergeVarDecl
Chris Lattner9b384ca2008-06-29 00:02:00 +00001389 ProcessDeclAttributes(NewVD, D);
Nate Begemanea583262008-03-14 18:07:10 +00001390
Daniel Dunbarced89142008-08-06 00:03:29 +00001391 // Handle GNU asm-label extension (encoded as an attribute).
1392 if (Expr *E = (Expr*) D.getAsmLabel()) {
1393 // The parser guarantees this is a string.
1394 StringLiteral *SE = cast<StringLiteral>(E);
1395 NewVD->addAttr(new AsmLabelAttr(std::string(SE->getStrData(),
1396 SE->getByteLength())));
1397 }
1398
Nate Begemanea583262008-03-14 18:07:10 +00001399 // Emit an error if an address space was applied to decl with local storage.
1400 // This includes arrays of objects with address space qualifiers, but not
1401 // automatic variables that point to other address spaces.
1402 // ISO/IEC TR 18037 S5.1.2
Nate Begemanefc11212008-03-25 18:36:32 +00001403 if (NewVD->hasLocalStorage() && (NewVD->getType().getAddressSpace() != 0)) {
1404 Diag(D.getIdentifierLoc(), diag::err_as_qualified_auto_decl);
1405 InvalidDecl = true;
Nate Begeman06068192008-03-14 00:22:18 +00001406 }
Steve Narofff8a09432008-01-09 23:34:55 +00001407 // Merge the decl with the existing one if appropriate. If the decl is
1408 // in an outer scope, it isn't the same thing.
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00001409 if (PrevDecl && isDeclInScope(PrevDecl, DC, S)) {
Douglas Gregorc5cbc242008-12-15 23:53:10 +00001410 if (isa<FieldDecl>(PrevDecl) && D.getCXXScopeSpec().isSet()) {
1411 // The user tried to define a non-static data member
1412 // out-of-line (C++ [dcl.meaning]p1).
1413 Diag(NewVD->getLocation(), diag::err_nonstatic_member_out_of_line)
1414 << D.getCXXScopeSpec().getRange();
1415 NewVD->Destroy(Context);
1416 return 0;
1417 }
1418
Chris Lattner4b009652007-07-25 00:24:17 +00001419 NewVD = MergeVarDecl(NewVD, PrevDecl);
1420 if (NewVD == 0) return 0;
Douglas Gregorc5cbc242008-12-15 23:53:10 +00001421
1422 if (D.getCXXScopeSpec().isSet()) {
1423 // No previous declaration in the qualifying scope.
1424 Diag(D.getIdentifierLoc(), diag::err_typecheck_no_member)
1425 << Name << D.getCXXScopeSpec().getRange();
1426 InvalidDecl = true;
1427 }
Chris Lattner4b009652007-07-25 00:24:17 +00001428 }
Chris Lattner4b009652007-07-25 00:24:17 +00001429 New = NewVD;
1430 }
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001431
1432 if (New == 0)
1433 return 0;
Chris Lattner4b009652007-07-25 00:24:17 +00001434
Argiris Kirtzidis881964b2008-11-09 23:41:00 +00001435 // Set the lexical context. If the declarator has a C++ scope specifier, the
1436 // lexical context will be different from the semantic context.
1437 New->setLexicalDeclContext(CurContext);
1438
Chris Lattner4b009652007-07-25 00:24:17 +00001439 // If this has an identifier, add it to the scope stack.
Douglas Gregor6704b312008-11-17 22:58:34 +00001440 if (Name)
Argiris Kirtzidis951f25b2008-04-12 00:47:19 +00001441 PushOnScopeChains(New, S);
Steve Naroffd1ad6ae2007-08-28 20:14:24 +00001442 // If any semantic error occurred, mark the decl as invalid.
1443 if (D.getInvalidType() || InvalidDecl)
1444 New->setInvalidDecl();
Chris Lattner4b009652007-07-25 00:24:17 +00001445
1446 return New;
1447}
1448
Zhongxing Xu7502dec2009-01-16 01:13:29 +00001449ScopedDecl*
1450Sema::ActOnFunctionDeclarator(Scope* S, Declarator& D, DeclContext* DC,
1451 QualType R, ScopedDecl *LastDeclarator,
1452 Decl* PrevDecl, bool IsFunctionDefinition,
1453 bool& InvalidDecl) {
1454 assert(R.getTypePtr()->isFunctionType());
1455
1456 DeclarationName Name = GetNameForDeclarator(D);
1457 FunctionDecl::StorageClass SC = FunctionDecl::None;
1458 switch (D.getDeclSpec().getStorageClassSpec()) {
1459 default: assert(0 && "Unknown storage class!");
1460 case DeclSpec::SCS_auto:
1461 case DeclSpec::SCS_register:
1462 case DeclSpec::SCS_mutable:
1463 Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_func);
1464 InvalidDecl = true;
1465 break;
1466 case DeclSpec::SCS_unspecified: SC = FunctionDecl::None; break;
1467 case DeclSpec::SCS_extern: SC = FunctionDecl::Extern; break;
1468 case DeclSpec::SCS_static: SC = FunctionDecl::Static; break;
1469 case DeclSpec::SCS_private_extern: SC = FunctionDecl::PrivateExtern;break;
1470 }
1471
1472 bool isInline = D.getDeclSpec().isInlineSpecified();
1473 // bool isVirtual = D.getDeclSpec().isVirtualSpecified();
1474 bool isExplicit = D.getDeclSpec().isExplicitSpecified();
1475
1476 FunctionDecl *NewFD;
1477 if (D.getKind() == Declarator::DK_Constructor) {
1478 // This is a C++ constructor declaration.
1479 assert(DC->isRecord() &&
1480 "Constructors can only be declared in a member context");
1481
1482 InvalidDecl = InvalidDecl || CheckConstructorDeclarator(D, R, SC);
1483
1484 // Create the new declaration
1485 NewFD = CXXConstructorDecl::Create(Context,
1486 cast<CXXRecordDecl>(DC),
1487 D.getIdentifierLoc(), Name, R,
1488 isExplicit, isInline,
1489 /*isImplicitlyDeclared=*/false);
1490
1491 if (InvalidDecl)
1492 NewFD->setInvalidDecl();
1493 } else if (D.getKind() == Declarator::DK_Destructor) {
1494 // This is a C++ destructor declaration.
1495 if (DC->isRecord()) {
1496 InvalidDecl = InvalidDecl || CheckDestructorDeclarator(D, R, SC);
1497
1498 NewFD = CXXDestructorDecl::Create(Context,
1499 cast<CXXRecordDecl>(DC),
1500 D.getIdentifierLoc(), Name, R,
1501 isInline,
1502 /*isImplicitlyDeclared=*/false);
1503
1504 if (InvalidDecl)
1505 NewFD->setInvalidDecl();
1506 } else {
1507 Diag(D.getIdentifierLoc(), diag::err_destructor_not_member);
1508
1509 // Create a FunctionDecl to satisfy the function definition parsing
1510 // code path.
1511 NewFD = FunctionDecl::Create(Context, DC, D.getIdentifierLoc(),
1512 Name, R, SC, isInline, LastDeclarator,
1513 // FIXME: Move to DeclGroup...
1514 D.getDeclSpec().getSourceRange().getBegin());
1515 InvalidDecl = true;
1516 NewFD->setInvalidDecl();
1517 }
1518 } else if (D.getKind() == Declarator::DK_Conversion) {
1519 if (!DC->isRecord()) {
1520 Diag(D.getIdentifierLoc(),
1521 diag::err_conv_function_not_member);
1522 return 0;
1523 } else {
1524 InvalidDecl = InvalidDecl || CheckConversionDeclarator(D, R, SC);
1525
1526 NewFD = CXXConversionDecl::Create(Context, cast<CXXRecordDecl>(DC),
1527 D.getIdentifierLoc(), Name, R,
1528 isInline, isExplicit);
1529
1530 if (InvalidDecl)
1531 NewFD->setInvalidDecl();
1532 }
1533 } else if (DC->isRecord()) {
1534 // This is a C++ method declaration.
1535 NewFD = CXXMethodDecl::Create(Context, cast<CXXRecordDecl>(DC),
1536 D.getIdentifierLoc(), Name, R,
1537 (SC == FunctionDecl::Static), isInline,
1538 LastDeclarator);
1539 } else {
1540 NewFD = FunctionDecl::Create(Context, DC,
1541 D.getIdentifierLoc(),
1542 Name, R, SC, isInline, LastDeclarator,
1543 // FIXME: Move to DeclGroup...
1544 D.getDeclSpec().getSourceRange().getBegin());
1545 }
1546
1547 // Set the lexical context. If the declarator has a C++
1548 // scope specifier, the lexical context will be different
1549 // from the semantic context.
1550 NewFD->setLexicalDeclContext(CurContext);
1551
1552 // Handle GNU asm-label extension (encoded as an attribute).
1553 if (Expr *E = (Expr*) D.getAsmLabel()) {
1554 // The parser guarantees this is a string.
1555 StringLiteral *SE = cast<StringLiteral>(E);
1556 NewFD->addAttr(new AsmLabelAttr(std::string(SE->getStrData(),
1557 SE->getByteLength())));
1558 }
1559
1560 // Copy the parameter declarations from the declarator D to
1561 // the function declaration NewFD, if they are available.
1562 if (D.getNumTypeObjects() > 0) {
1563 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
1564
1565 // Create Decl objects for each parameter, adding them to the
1566 // FunctionDecl.
1567 llvm::SmallVector<ParmVarDecl*, 16> Params;
1568
1569 // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs
1570 // function that takes no arguments, not a function that takes a
1571 // single void argument.
1572 // We let through "const void" here because Sema::GetTypeForDeclarator
1573 // already checks for that case.
1574 if (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
1575 FTI.ArgInfo[0].Param &&
1576 ((ParmVarDecl*)FTI.ArgInfo[0].Param)->getType()->isVoidType()) {
1577 // empty arg list, don't push any params.
1578 ParmVarDecl *Param = (ParmVarDecl*)FTI.ArgInfo[0].Param;
1579
1580 // In C++, the empty parameter-type-list must be spelled "void"; a
1581 // typedef of void is not permitted.
1582 if (getLangOptions().CPlusPlus &&
1583 Param->getType().getUnqualifiedType() != Context.VoidTy) {
1584 Diag(Param->getLocation(), diag::ext_param_typedef_of_void);
1585 }
1586 } else if (FTI.NumArgs > 0 && FTI.ArgInfo[0].Param != 0) {
1587 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i)
1588 Params.push_back((ParmVarDecl *)FTI.ArgInfo[i].Param);
1589 }
1590
1591 NewFD->setParams(Context, &Params[0], Params.size());
1592 } else if (R->getAsTypedefType()) {
1593 // When we're declaring a function with a typedef, as in the
1594 // following example, we'll need to synthesize (unnamed)
1595 // parameters for use in the declaration.
1596 //
1597 // @code
1598 // typedef void fn(int);
1599 // fn f;
1600 // @endcode
1601 const FunctionTypeProto *FT = R->getAsFunctionTypeProto();
1602 if (!FT) {
1603 // This is a typedef of a function with no prototype, so we
1604 // don't need to do anything.
1605 } else if ((FT->getNumArgs() == 0) ||
1606 (FT->getNumArgs() == 1 && !FT->isVariadic() &&
1607 FT->getArgType(0)->isVoidType())) {
1608 // This is a zero-argument function. We don't need to do anything.
1609 } else {
1610 // Synthesize a parameter for each argument type.
1611 llvm::SmallVector<ParmVarDecl*, 16> Params;
1612 for (FunctionTypeProto::arg_type_iterator ArgType = FT->arg_type_begin();
1613 ArgType != FT->arg_type_end(); ++ArgType) {
1614 Params.push_back(ParmVarDecl::Create(Context, DC,
1615 SourceLocation(), 0,
1616 *ArgType, VarDecl::None,
1617 0, 0));
1618 }
1619
1620 NewFD->setParams(Context, &Params[0], Params.size());
1621 }
1622 }
1623
1624 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(NewFD))
1625 InvalidDecl = InvalidDecl || CheckConstructor(Constructor);
1626 else if (isa<CXXDestructorDecl>(NewFD)) {
1627 CXXRecordDecl *Record = cast<CXXRecordDecl>(NewFD->getParent());
1628 Record->setUserDeclaredDestructor(true);
1629 // C++ [class]p4: A POD-struct is an aggregate class that has [...] no
1630 // user-defined destructor.
1631 Record->setPOD(false);
1632 } else if (CXXConversionDecl *Conversion =
1633 dyn_cast<CXXConversionDecl>(NewFD))
1634 ActOnConversionDeclarator(Conversion);
1635
1636 // Extra checking for C++ overloaded operators (C++ [over.oper]).
1637 if (NewFD->isOverloadedOperator() &&
1638 CheckOverloadedOperatorDeclaration(NewFD))
1639 NewFD->setInvalidDecl();
1640
1641 // Merge the decl with the existing one if appropriate. Since C functions
1642 // are in a flat namespace, make sure we consider decls in outer scopes.
1643 if (PrevDecl &&
1644 (!getLangOptions().CPlusPlus||isDeclInScope(PrevDecl, DC, S))) {
1645 bool Redeclaration = false;
1646
1647 // If C++, determine whether NewFD is an overload of PrevDecl or
1648 // a declaration that requires merging. If it's an overload,
1649 // there's no more work to do here; we'll just add the new
1650 // function to the scope.
1651 OverloadedFunctionDecl::function_iterator MatchedDecl;
1652 if (!getLangOptions().CPlusPlus ||
1653 !IsOverload(NewFD, PrevDecl, MatchedDecl)) {
1654 Decl *OldDecl = PrevDecl;
1655
1656 // If PrevDecl was an overloaded function, extract the
1657 // FunctionDecl that matched.
1658 if (isa<OverloadedFunctionDecl>(PrevDecl))
1659 OldDecl = *MatchedDecl;
1660
1661 // NewFD and PrevDecl represent declarations that need to be
1662 // merged.
1663 NewFD = MergeFunctionDecl(NewFD, OldDecl, Redeclaration);
1664
1665 if (NewFD == 0) return 0;
1666 if (Redeclaration) {
1667 NewFD->setPreviousDeclaration(cast<FunctionDecl>(OldDecl));
1668
1669 // An out-of-line member function declaration must also be a
1670 // definition (C++ [dcl.meaning]p1).
1671 if (!IsFunctionDefinition && D.getCXXScopeSpec().isSet() &&
1672 !InvalidDecl) {
1673 Diag(NewFD->getLocation(), diag::err_out_of_line_declaration)
1674 << D.getCXXScopeSpec().getRange();
1675 NewFD->setInvalidDecl();
1676 }
1677 }
1678 }
1679
1680 if (!Redeclaration && D.getCXXScopeSpec().isSet()) {
1681 // The user tried to provide an out-of-line definition for a
1682 // member function, but there was no such member function
1683 // declared (C++ [class.mfct]p2). For example:
1684 //
1685 // class X {
1686 // void f() const;
1687 // };
1688 //
1689 // void X::f() { } // ill-formed
1690 //
1691 // Complain about this problem, and attempt to suggest close
1692 // matches (e.g., those that differ only in cv-qualifiers and
1693 // whether the parameter types are references).
1694 Diag(D.getIdentifierLoc(), diag::err_member_def_does_not_match)
1695 << cast<CXXRecordDecl>(DC)->getDeclName()
1696 << D.getCXXScopeSpec().getRange();
1697 InvalidDecl = true;
1698
1699 PrevDecl = LookupDecl(Name, Decl::IDNS_Ordinary, S, DC);
1700 if (!PrevDecl) {
1701 // Nothing to suggest.
1702 } else if (OverloadedFunctionDecl *Ovl
1703 = dyn_cast<OverloadedFunctionDecl>(PrevDecl)) {
1704 for (OverloadedFunctionDecl::function_iterator
1705 Func = Ovl->function_begin(),
1706 FuncEnd = Ovl->function_end();
1707 Func != FuncEnd; ++Func) {
1708 if (isNearlyMatchingMemberFunction(Context, *Func, NewFD))
1709 Diag((*Func)->getLocation(), diag::note_member_def_close_match);
1710
1711 }
1712 } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(PrevDecl)) {
1713 // Suggest this no matter how mismatched it is; it's the only
1714 // thing we have.
1715 unsigned diag;
1716 if (isNearlyMatchingMemberFunction(Context, Method, NewFD))
1717 diag = diag::note_member_def_close_match;
1718 else if (Method->getBody())
1719 diag = diag::note_previous_definition;
1720 else
1721 diag = diag::note_previous_declaration;
1722 Diag(Method->getLocation(), diag);
1723 }
1724
1725 PrevDecl = 0;
1726 }
1727 }
1728 // Handle attributes. We need to have merged decls when handling attributes
1729 // (for example to check for conflicts, etc).
1730 ProcessDeclAttributes(NewFD, D);
1731
1732 if (getLangOptions().CPlusPlus) {
1733 // In C++, check default arguments now that we have merged decls.
1734 CheckCXXDefaultArguments(NewFD);
1735
1736 // An out-of-line member function declaration must also be a
1737 // definition (C++ [dcl.meaning]p1).
1738 if (!IsFunctionDefinition && D.getCXXScopeSpec().isSet() && !InvalidDecl) {
1739 Diag(NewFD->getLocation(), diag::err_out_of_line_declaration)
1740 << D.getCXXScopeSpec().getRange();
1741 InvalidDecl = true;
1742 }
1743 }
1744 return NewFD;
1745}
1746
Steve Narofffc08f5e2008-10-27 11:34:16 +00001747void Sema::InitializerElementNotConstant(const Expr *Init) {
Chris Lattner9d2cf082008-11-19 05:27:50 +00001748 Diag(Init->getExprLoc(), diag::err_init_element_not_constant)
1749 << Init->getSourceRange();
Steve Narofffc08f5e2008-10-27 11:34:16 +00001750}
1751
Eli Friedman02c22ce2008-05-20 13:48:25 +00001752bool Sema::CheckAddressConstantExpressionLValue(const Expr* Init) {
1753 switch (Init->getStmtClass()) {
1754 default:
Steve Narofffc08f5e2008-10-27 11:34:16 +00001755 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00001756 return true;
1757 case Expr::ParenExprClass: {
1758 const ParenExpr* PE = cast<ParenExpr>(Init);
1759 return CheckAddressConstantExpressionLValue(PE->getSubExpr());
1760 }
1761 case Expr::CompoundLiteralExprClass:
1762 return cast<CompoundLiteralExpr>(Init)->isFileScope();
Douglas Gregor566782a2009-01-06 05:10:23 +00001763 case Expr::DeclRefExprClass:
1764 case Expr::QualifiedDeclRefExprClass: {
Eli Friedman02c22ce2008-05-20 13:48:25 +00001765 const Decl *D = cast<DeclRefExpr>(Init)->getDecl();
Eli Friedman8cb86e32008-05-21 03:39:11 +00001766 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
1767 if (VD->hasGlobalStorage())
1768 return false;
Steve Narofffc08f5e2008-10-27 11:34:16 +00001769 InitializerElementNotConstant(Init);
Eli Friedman8cb86e32008-05-21 03:39:11 +00001770 return true;
1771 }
Eli Friedman02c22ce2008-05-20 13:48:25 +00001772 if (isa<FunctionDecl>(D))
1773 return false;
Steve Narofffc08f5e2008-10-27 11:34:16 +00001774 InitializerElementNotConstant(Init);
Steve Narofff0b23542008-01-10 22:15:12 +00001775 return true;
1776 }
Eli Friedman02c22ce2008-05-20 13:48:25 +00001777 case Expr::MemberExprClass: {
1778 const MemberExpr *M = cast<MemberExpr>(Init);
1779 if (M->isArrow())
1780 return CheckAddressConstantExpression(M->getBase());
1781 return CheckAddressConstantExpressionLValue(M->getBase());
1782 }
1783 case Expr::ArraySubscriptExprClass: {
1784 // FIXME: Should we pedwarn for "x[0+0]" (where x is a pointer)?
1785 const ArraySubscriptExpr *ASE = cast<ArraySubscriptExpr>(Init);
1786 return CheckAddressConstantExpression(ASE->getBase()) ||
1787 CheckArithmeticConstantExpression(ASE->getIdx());
1788 }
1789 case Expr::StringLiteralClass:
Chris Lattner69909292008-08-10 01:53:14 +00001790 case Expr::PredefinedExprClass:
Eli Friedman02c22ce2008-05-20 13:48:25 +00001791 return false;
1792 case Expr::UnaryOperatorClass: {
1793 const UnaryOperator *Exp = cast<UnaryOperator>(Init);
1794
1795 // C99 6.6p9
1796 if (Exp->getOpcode() == UnaryOperator::Deref)
Eli Friedman8cb86e32008-05-21 03:39:11 +00001797 return CheckAddressConstantExpression(Exp->getSubExpr());
Eli Friedman02c22ce2008-05-20 13:48:25 +00001798
Steve Narofffc08f5e2008-10-27 11:34:16 +00001799 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00001800 return true;
1801 }
1802 }
1803}
1804
1805bool Sema::CheckAddressConstantExpression(const Expr* Init) {
1806 switch (Init->getStmtClass()) {
1807 default:
Steve Narofffc08f5e2008-10-27 11:34:16 +00001808 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00001809 return true;
Chris Lattner0903cba2008-10-06 07:26:43 +00001810 case Expr::ParenExprClass:
1811 return CheckAddressConstantExpression(cast<ParenExpr>(Init)->getSubExpr());
Eli Friedman02c22ce2008-05-20 13:48:25 +00001812 case Expr::StringLiteralClass:
1813 case Expr::ObjCStringLiteralClass:
1814 return false;
Chris Lattner0903cba2008-10-06 07:26:43 +00001815 case Expr::CallExprClass:
Douglas Gregor65fedaf2008-11-14 16:09:21 +00001816 case Expr::CXXOperatorCallExprClass:
Chris Lattner0903cba2008-10-06 07:26:43 +00001817 // __builtin___CFStringMakeConstantString is a valid constant l-value.
1818 if (cast<CallExpr>(Init)->isBuiltinCall() ==
1819 Builtin::BI__builtin___CFStringMakeConstantString)
1820 return false;
1821
Steve Narofffc08f5e2008-10-27 11:34:16 +00001822 InitializerElementNotConstant(Init);
Chris Lattner0903cba2008-10-06 07:26:43 +00001823 return true;
1824
Eli Friedman02c22ce2008-05-20 13:48:25 +00001825 case Expr::UnaryOperatorClass: {
1826 const UnaryOperator *Exp = cast<UnaryOperator>(Init);
1827
1828 // C99 6.6p9
1829 if (Exp->getOpcode() == UnaryOperator::AddrOf)
1830 return CheckAddressConstantExpressionLValue(Exp->getSubExpr());
1831
1832 if (Exp->getOpcode() == UnaryOperator::Extension)
1833 return CheckAddressConstantExpression(Exp->getSubExpr());
1834
Steve Narofffc08f5e2008-10-27 11:34:16 +00001835 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00001836 return true;
1837 }
1838 case Expr::BinaryOperatorClass: {
1839 // FIXME: Should we pedwarn for expressions like "a + 1 + 2"?
1840 const BinaryOperator *Exp = cast<BinaryOperator>(Init);
1841
1842 Expr *PExp = Exp->getLHS();
1843 Expr *IExp = Exp->getRHS();
1844 if (IExp->getType()->isPointerType())
1845 std::swap(PExp, IExp);
1846
1847 // FIXME: Should we pedwarn if IExp isn't an integer constant expression?
1848 return CheckAddressConstantExpression(PExp) ||
1849 CheckArithmeticConstantExpression(IExp);
1850 }
Eli Friedman1fad3c62008-08-25 20:46:57 +00001851 case Expr::ImplicitCastExprClass:
Douglas Gregor035d0882008-10-28 15:36:24 +00001852 case Expr::CStyleCastExprClass: {
Eli Friedman02c22ce2008-05-20 13:48:25 +00001853 const Expr* SubExpr = cast<CastExpr>(Init)->getSubExpr();
Eli Friedman1fad3c62008-08-25 20:46:57 +00001854 if (Init->getStmtClass() == Expr::ImplicitCastExprClass) {
1855 // Check for implicit promotion
1856 if (SubExpr->getType()->isFunctionType() ||
1857 SubExpr->getType()->isArrayType())
1858 return CheckAddressConstantExpressionLValue(SubExpr);
1859 }
Eli Friedman02c22ce2008-05-20 13:48:25 +00001860
1861 // Check for pointer->pointer cast
1862 if (SubExpr->getType()->isPointerType())
1863 return CheckAddressConstantExpression(SubExpr);
1864
Eli Friedman1fad3c62008-08-25 20:46:57 +00001865 if (SubExpr->getType()->isIntegralType()) {
1866 // Check for the special-case of a pointer->int->pointer cast;
1867 // this isn't standard, but some code requires it. See
1868 // PR2720 for an example.
1869 if (const CastExpr* SubCast = dyn_cast<CastExpr>(SubExpr)) {
1870 if (SubCast->getSubExpr()->getType()->isPointerType()) {
1871 unsigned IntWidth = Context.getIntWidth(SubCast->getType());
1872 unsigned PointerWidth = Context.getTypeSize(Context.VoidPtrTy);
1873 if (IntWidth >= PointerWidth) {
1874 return CheckAddressConstantExpression(SubCast->getSubExpr());
1875 }
1876 }
1877 }
1878 }
1879 if (SubExpr->getType()->isArithmeticType()) {
Eli Friedman02c22ce2008-05-20 13:48:25 +00001880 return CheckArithmeticConstantExpression(SubExpr);
Eli Friedman1fad3c62008-08-25 20:46:57 +00001881 }
Eli Friedman02c22ce2008-05-20 13:48:25 +00001882
Steve Narofffc08f5e2008-10-27 11:34:16 +00001883 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00001884 return true;
1885 }
1886 case Expr::ConditionalOperatorClass: {
1887 // FIXME: Should we pedwarn here?
1888 const ConditionalOperator *Exp = cast<ConditionalOperator>(Init);
1889 if (!Exp->getCond()->getType()->isArithmeticType()) {
Steve Narofffc08f5e2008-10-27 11:34:16 +00001890 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00001891 return true;
1892 }
1893 if (CheckArithmeticConstantExpression(Exp->getCond()))
1894 return true;
1895 if (Exp->getLHS() &&
1896 CheckAddressConstantExpression(Exp->getLHS()))
1897 return true;
1898 return CheckAddressConstantExpression(Exp->getRHS());
1899 }
1900 case Expr::AddrLabelExprClass:
1901 return false;
1902 }
1903}
1904
Eli Friedman998dffb2008-06-09 05:05:07 +00001905static const Expr* FindExpressionBaseAddress(const Expr* E);
1906
1907static const Expr* FindExpressionBaseAddressLValue(const Expr* E) {
1908 switch (E->getStmtClass()) {
1909 default:
1910 return E;
1911 case Expr::ParenExprClass: {
1912 const ParenExpr* PE = cast<ParenExpr>(E);
1913 return FindExpressionBaseAddressLValue(PE->getSubExpr());
1914 }
1915 case Expr::MemberExprClass: {
1916 const MemberExpr *M = cast<MemberExpr>(E);
1917 if (M->isArrow())
1918 return FindExpressionBaseAddress(M->getBase());
1919 return FindExpressionBaseAddressLValue(M->getBase());
1920 }
1921 case Expr::ArraySubscriptExprClass: {
1922 const ArraySubscriptExpr *ASE = cast<ArraySubscriptExpr>(E);
1923 return FindExpressionBaseAddress(ASE->getBase());
1924 }
1925 case Expr::UnaryOperatorClass: {
1926 const UnaryOperator *Exp = cast<UnaryOperator>(E);
1927
1928 if (Exp->getOpcode() == UnaryOperator::Deref)
1929 return FindExpressionBaseAddress(Exp->getSubExpr());
1930
1931 return E;
1932 }
1933 }
1934}
1935
1936static const Expr* FindExpressionBaseAddress(const Expr* E) {
1937 switch (E->getStmtClass()) {
1938 default:
1939 return E;
1940 case Expr::ParenExprClass: {
1941 const ParenExpr* PE = cast<ParenExpr>(E);
1942 return FindExpressionBaseAddress(PE->getSubExpr());
1943 }
1944 case Expr::UnaryOperatorClass: {
1945 const UnaryOperator *Exp = cast<UnaryOperator>(E);
1946
1947 // C99 6.6p9
1948 if (Exp->getOpcode() == UnaryOperator::AddrOf)
1949 return FindExpressionBaseAddressLValue(Exp->getSubExpr());
1950
1951 if (Exp->getOpcode() == UnaryOperator::Extension)
1952 return FindExpressionBaseAddress(Exp->getSubExpr());
1953
1954 return E;
1955 }
1956 case Expr::BinaryOperatorClass: {
1957 const BinaryOperator *Exp = cast<BinaryOperator>(E);
1958
1959 Expr *PExp = Exp->getLHS();
1960 Expr *IExp = Exp->getRHS();
1961 if (IExp->getType()->isPointerType())
1962 std::swap(PExp, IExp);
1963
1964 return FindExpressionBaseAddress(PExp);
1965 }
1966 case Expr::ImplicitCastExprClass: {
1967 const Expr* SubExpr = cast<ImplicitCastExpr>(E)->getSubExpr();
1968
1969 // Check for implicit promotion
1970 if (SubExpr->getType()->isFunctionType() ||
1971 SubExpr->getType()->isArrayType())
1972 return FindExpressionBaseAddressLValue(SubExpr);
1973
1974 // Check for pointer->pointer cast
1975 if (SubExpr->getType()->isPointerType())
1976 return FindExpressionBaseAddress(SubExpr);
1977
1978 // We assume that we have an arithmetic expression here;
1979 // if we don't, we'll figure it out later
1980 return 0;
1981 }
Douglas Gregor035d0882008-10-28 15:36:24 +00001982 case Expr::CStyleCastExprClass: {
Eli Friedman998dffb2008-06-09 05:05:07 +00001983 const Expr* SubExpr = cast<CastExpr>(E)->getSubExpr();
1984
1985 // Check for pointer->pointer cast
1986 if (SubExpr->getType()->isPointerType())
1987 return FindExpressionBaseAddress(SubExpr);
1988
1989 // We assume that we have an arithmetic expression here;
1990 // if we don't, we'll figure it out later
1991 return 0;
1992 }
1993 }
1994}
1995
Anders Carlssone8bd9f22008-11-22 21:04:56 +00001996bool Sema::CheckArithmeticConstantExpression(const Expr* Init) {
Eli Friedman02c22ce2008-05-20 13:48:25 +00001997 switch (Init->getStmtClass()) {
1998 default:
Steve Narofffc08f5e2008-10-27 11:34:16 +00001999 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002000 return true;
2001 case Expr::ParenExprClass: {
2002 const ParenExpr* PE = cast<ParenExpr>(Init);
2003 return CheckArithmeticConstantExpression(PE->getSubExpr());
2004 }
2005 case Expr::FloatingLiteralClass:
2006 case Expr::IntegerLiteralClass:
2007 case Expr::CharacterLiteralClass:
2008 case Expr::ImaginaryLiteralClass:
2009 case Expr::TypesCompatibleExprClass:
2010 case Expr::CXXBoolLiteralExprClass:
2011 return false;
Douglas Gregor65fedaf2008-11-14 16:09:21 +00002012 case Expr::CallExprClass:
2013 case Expr::CXXOperatorCallExprClass: {
Eli Friedman02c22ce2008-05-20 13:48:25 +00002014 const CallExpr *CE = cast<CallExpr>(Init);
Chris Lattner2d9a3f62008-10-06 06:49:02 +00002015
2016 // Allow any constant foldable calls to builtins.
2017 if (CE->isBuiltinCall() && CE->isEvaluatable(Context))
Eli Friedman02c22ce2008-05-20 13:48:25 +00002018 return false;
Chris Lattner2d9a3f62008-10-06 06:49:02 +00002019
Steve Narofffc08f5e2008-10-27 11:34:16 +00002020 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002021 return true;
2022 }
Douglas Gregor566782a2009-01-06 05:10:23 +00002023 case Expr::DeclRefExprClass:
2024 case Expr::QualifiedDeclRefExprClass: {
Eli Friedman02c22ce2008-05-20 13:48:25 +00002025 const Decl *D = cast<DeclRefExpr>(Init)->getDecl();
2026 if (isa<EnumConstantDecl>(D))
2027 return false;
Steve Narofffc08f5e2008-10-27 11:34:16 +00002028 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002029 return true;
2030 }
2031 case Expr::CompoundLiteralExprClass:
2032 // Allow "(vector type){2,4}"; normal C constraints don't allow this,
2033 // but vectors are allowed to be magic.
2034 if (Init->getType()->isVectorType())
2035 return false;
Steve Narofffc08f5e2008-10-27 11:34:16 +00002036 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002037 return true;
2038 case Expr::UnaryOperatorClass: {
2039 const UnaryOperator *Exp = cast<UnaryOperator>(Init);
2040
2041 switch (Exp->getOpcode()) {
2042 // Address, indirect, pre/post inc/dec, etc are not valid constant exprs.
2043 // See C99 6.6p3.
2044 default:
Steve Narofffc08f5e2008-10-27 11:34:16 +00002045 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002046 return true;
Eli Friedman02c22ce2008-05-20 13:48:25 +00002047 case UnaryOperator::OffsetOf:
Eli Friedman02c22ce2008-05-20 13:48:25 +00002048 if (Exp->getSubExpr()->getType()->isConstantSizeType())
2049 return false;
Steve Narofffc08f5e2008-10-27 11:34:16 +00002050 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002051 return true;
2052 case UnaryOperator::Extension:
2053 case UnaryOperator::LNot:
2054 case UnaryOperator::Plus:
2055 case UnaryOperator::Minus:
2056 case UnaryOperator::Not:
2057 return CheckArithmeticConstantExpression(Exp->getSubExpr());
2058 }
2059 }
Sebastian Redl0cb7c872008-11-11 17:56:53 +00002060 case Expr::SizeOfAlignOfExprClass: {
2061 const SizeOfAlignOfExpr *Exp = cast<SizeOfAlignOfExpr>(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002062 // Special check for void types, which are allowed as an extension
Sebastian Redl0cb7c872008-11-11 17:56:53 +00002063 if (Exp->getTypeOfArgument()->isVoidType())
Eli Friedman02c22ce2008-05-20 13:48:25 +00002064 return false;
2065 // alignof always evaluates to a constant.
2066 // FIXME: is sizeof(int[3.0]) a constant expression?
Sebastian Redl0cb7c872008-11-11 17:56:53 +00002067 if (Exp->isSizeOf() && !Exp->getTypeOfArgument()->isConstantSizeType()) {
Steve Narofffc08f5e2008-10-27 11:34:16 +00002068 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002069 return true;
2070 }
2071 return false;
2072 }
2073 case Expr::BinaryOperatorClass: {
2074 const BinaryOperator *Exp = cast<BinaryOperator>(Init);
2075
2076 if (Exp->getLHS()->getType()->isArithmeticType() &&
2077 Exp->getRHS()->getType()->isArithmeticType()) {
2078 return CheckArithmeticConstantExpression(Exp->getLHS()) ||
2079 CheckArithmeticConstantExpression(Exp->getRHS());
2080 }
2081
Eli Friedman998dffb2008-06-09 05:05:07 +00002082 if (Exp->getLHS()->getType()->isPointerType() &&
2083 Exp->getRHS()->getType()->isPointerType()) {
2084 const Expr* LHSBase = FindExpressionBaseAddress(Exp->getLHS());
2085 const Expr* RHSBase = FindExpressionBaseAddress(Exp->getRHS());
2086
2087 // Only allow a null (constant integer) base; we could
2088 // allow some additional cases if necessary, but this
2089 // is sufficient to cover offsetof-like constructs.
2090 if (!LHSBase && !RHSBase) {
2091 return CheckAddressConstantExpression(Exp->getLHS()) ||
2092 CheckAddressConstantExpression(Exp->getRHS());
2093 }
2094 }
2095
Steve Narofffc08f5e2008-10-27 11:34:16 +00002096 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002097 return true;
2098 }
2099 case Expr::ImplicitCastExprClass:
Douglas Gregor035d0882008-10-28 15:36:24 +00002100 case Expr::CStyleCastExprClass: {
Argiris Kirtzidisc45e2fb2008-08-18 23:01:59 +00002101 const Expr *SubExpr = cast<CastExpr>(Init)->getSubExpr();
Eli Friedmand662caa2008-09-01 22:08:17 +00002102 if (SubExpr->getType()->isArithmeticType())
2103 return CheckArithmeticConstantExpression(SubExpr);
2104
Eli Friedman266df142008-09-02 09:37:00 +00002105 if (SubExpr->getType()->isPointerType()) {
2106 const Expr* Base = FindExpressionBaseAddress(SubExpr);
2107 // If the pointer has a null base, this is an offsetof-like construct
2108 if (!Base)
2109 return CheckAddressConstantExpression(SubExpr);
2110 }
2111
Steve Narofffc08f5e2008-10-27 11:34:16 +00002112 InitializerElementNotConstant(Init);
Eli Friedmand662caa2008-09-01 22:08:17 +00002113 return true;
Eli Friedman02c22ce2008-05-20 13:48:25 +00002114 }
2115 case Expr::ConditionalOperatorClass: {
2116 const ConditionalOperator *Exp = cast<ConditionalOperator>(Init);
Chris Lattner94d45412008-10-06 05:42:39 +00002117
2118 // If GNU extensions are disabled, we require all operands to be arithmetic
2119 // constant expressions.
2120 if (getLangOptions().NoExtensions) {
2121 return CheckArithmeticConstantExpression(Exp->getCond()) ||
2122 (Exp->getLHS() && CheckArithmeticConstantExpression(Exp->getLHS())) ||
2123 CheckArithmeticConstantExpression(Exp->getRHS());
2124 }
2125
2126 // Otherwise, we have to emulate some of the behavior of fold here.
2127 // Basically GCC treats things like "4 ? 1 : somefunc()" as a constant
2128 // because it can constant fold things away. To retain compatibility with
2129 // GCC code, we see if we can fold the condition to a constant (which we
2130 // should always be able to do in theory). If so, we only require the
2131 // specified arm of the conditional to be a constant. This is a horrible
2132 // hack, but is require by real world code that uses __builtin_constant_p.
Anders Carlsson8c3de802008-12-19 20:58:05 +00002133 Expr::EvalResult EvalResult;
2134 if (!Exp->getCond()->Evaluate(EvalResult, Context) ||
2135 EvalResult.HasSideEffects) {
Chris Lattneref069662008-11-16 21:24:15 +00002136 // If Evaluate couldn't fold it, CheckArithmeticConstantExpression
Chris Lattner94d45412008-10-06 05:42:39 +00002137 // won't be able to either. Use it to emit the diagnostic though.
2138 bool Res = CheckArithmeticConstantExpression(Exp->getCond());
Chris Lattneref069662008-11-16 21:24:15 +00002139 assert(Res && "Evaluate couldn't evaluate this constant?");
Chris Lattner94d45412008-10-06 05:42:39 +00002140 return Res;
2141 }
2142
2143 // Verify that the side following the condition is also a constant.
2144 const Expr *TrueSide = Exp->getLHS(), *FalseSide = Exp->getRHS();
Anders Carlsson8c3de802008-12-19 20:58:05 +00002145 if (EvalResult.Val.getInt() == 0)
Chris Lattner94d45412008-10-06 05:42:39 +00002146 std::swap(TrueSide, FalseSide);
2147
2148 if (TrueSide && CheckArithmeticConstantExpression(TrueSide))
Eli Friedman02c22ce2008-05-20 13:48:25 +00002149 return true;
Chris Lattner94d45412008-10-06 05:42:39 +00002150
2151 // Okay, the evaluated side evaluates to a constant, so we accept this.
2152 // Check to see if the other side is obviously not a constant. If so,
2153 // emit a warning that this is a GNU extension.
Chris Lattner2d9a3f62008-10-06 06:49:02 +00002154 if (FalseSide && !FalseSide->isEvaluatable(Context))
Chris Lattner94d45412008-10-06 05:42:39 +00002155 Diag(Init->getExprLoc(),
Chris Lattner9d2cf082008-11-19 05:27:50 +00002156 diag::ext_typecheck_expression_not_constant_but_accepted)
2157 << FalseSide->getSourceRange();
Chris Lattner94d45412008-10-06 05:42:39 +00002158 return false;
Eli Friedman02c22ce2008-05-20 13:48:25 +00002159 }
2160 }
2161}
2162
2163bool Sema::CheckForConstantInitializer(Expr *Init, QualType DclT) {
Anders Carlssonf6791c62008-12-05 05:09:56 +00002164 Expr::EvalResult Result;
2165
Nuno Lopese7280452008-07-07 16:46:50 +00002166 Init = Init->IgnoreParens();
2167
Anders Carlssonf6791c62008-12-05 05:09:56 +00002168 if (Init->Evaluate(Result, Context) && !Result.HasSideEffects)
2169 return false;
2170
Eli Friedman02c22ce2008-05-20 13:48:25 +00002171 // Look through CXXDefaultArgExprs; they have no meaning in this context.
2172 if (CXXDefaultArgExpr* DAE = dyn_cast<CXXDefaultArgExpr>(Init))
2173 return CheckForConstantInitializer(DAE->getExpr(), DclT);
2174
Nuno Lopese7280452008-07-07 16:46:50 +00002175 if (CompoundLiteralExpr *e = dyn_cast<CompoundLiteralExpr>(Init))
2176 return CheckForConstantInitializer(e->getInitializer(), DclT);
2177
Eli Friedman02c22ce2008-05-20 13:48:25 +00002178 if (InitListExpr *Exp = dyn_cast<InitListExpr>(Init)) {
2179 unsigned numInits = Exp->getNumInits();
2180 for (unsigned i = 0; i < numInits; i++) {
2181 // FIXME: Need to get the type of the declaration for C++,
2182 // because it could be a reference?
2183 if (CheckForConstantInitializer(Exp->getInit(i),
2184 Exp->getInit(i)->getType()))
2185 return true;
2186 }
2187 return false;
2188 }
2189
Anders Carlssonf6791c62008-12-05 05:09:56 +00002190 // FIXME: We can probably remove some of this code below, now that
2191 // Expr::Evaluate is doing the heavy lifting for scalars.
2192
Eli Friedman02c22ce2008-05-20 13:48:25 +00002193 if (Init->isNullPointerConstant(Context))
2194 return false;
2195 if (Init->getType()->isArithmeticType()) {
Chris Lattnerd5a56aa2008-07-26 22:17:49 +00002196 QualType InitTy = Context.getCanonicalType(Init->getType())
2197 .getUnqualifiedType();
Eli Friedman25086f02008-05-30 18:14:48 +00002198 if (InitTy == Context.BoolTy) {
2199 // Special handling for pointers implicitly cast to bool;
2200 // (e.g. "_Bool rr = &rr;"). This is only legal at the top level.
2201 if (ImplicitCastExpr* ICE = dyn_cast<ImplicitCastExpr>(Init)) {
2202 Expr* SubE = ICE->getSubExpr();
2203 if (SubE->getType()->isPointerType() ||
2204 SubE->getType()->isArrayType() ||
2205 SubE->getType()->isFunctionType()) {
2206 return CheckAddressConstantExpression(Init);
2207 }
2208 }
2209 } else if (InitTy->isIntegralType()) {
2210 Expr* SubE = 0;
Argiris Kirtzidisc45e2fb2008-08-18 23:01:59 +00002211 if (CastExpr* CE = dyn_cast<CastExpr>(Init))
Eli Friedman25086f02008-05-30 18:14:48 +00002212 SubE = CE->getSubExpr();
2213 // Special check for pointer cast to int; we allow as an extension
2214 // an address constant cast to an integer if the integer
2215 // is of an appropriate width (this sort of code is apparently used
2216 // in some places).
2217 // FIXME: Add pedwarn?
2218 // FIXME: Don't allow bitfields here! Need the FieldDecl for that.
2219 if (SubE && (SubE->getType()->isPointerType() ||
2220 SubE->getType()->isArrayType() ||
2221 SubE->getType()->isFunctionType())) {
2222 unsigned IntWidth = Context.getTypeSize(Init->getType());
2223 unsigned PointerWidth = Context.getTypeSize(Context.VoidPtrTy);
2224 if (IntWidth >= PointerWidth)
2225 return CheckAddressConstantExpression(Init);
2226 }
Eli Friedman02c22ce2008-05-20 13:48:25 +00002227 }
2228
2229 return CheckArithmeticConstantExpression(Init);
2230 }
2231
2232 if (Init->getType()->isPointerType())
2233 return CheckAddressConstantExpression(Init);
2234
Eli Friedman25086f02008-05-30 18:14:48 +00002235 // An array type at the top level that isn't an init-list must
2236 // be a string literal
Eli Friedman02c22ce2008-05-20 13:48:25 +00002237 if (Init->getType()->isArrayType())
2238 return false;
2239
Nuno Lopes1dc26762008-09-01 18:42:41 +00002240 if (Init->getType()->isFunctionType())
2241 return false;
2242
Steve Naroffdff3fb22008-10-02 17:12:56 +00002243 // Allow block exprs at top level.
2244 if (Init->getType()->isBlockPointerType())
2245 return false;
Nuno Lopes8260d5d2009-01-15 16:44:45 +00002246
2247 // GCC cast to union extension
2248 // note: the validity of the cast expr is checked by CheckCastTypes()
2249 if (CastExpr *C = dyn_cast<CastExpr>(Init)) {
2250 QualType T = C->getType();
2251 return T->isUnionType() && CheckForConstantInitializer(C->getSubExpr(), T);
2252 }
2253
Steve Narofffc08f5e2008-10-27 11:34:16 +00002254 InitializerElementNotConstant(Init);
Eli Friedman02c22ce2008-05-20 13:48:25 +00002255 return true;
Steve Narofff0b23542008-01-10 22:15:12 +00002256}
2257
Sebastian Redl91f9b0a2008-12-13 16:23:55 +00002258void Sema::AddInitializerToDecl(DeclTy *dcl, ExprArg init) {
Douglas Gregor6214d8a2009-01-14 15:45:31 +00002259 AddInitializerToDecl(dcl, move(init), /*DirectInit=*/false);
2260}
2261
2262/// AddInitializerToDecl - Adds the initializer Init to the
2263/// declaration dcl. If DirectInit is true, this is C++ direct
2264/// initialization rather than copy initialization.
2265void Sema::AddInitializerToDecl(DeclTy *dcl, ExprArg init, bool DirectInit) {
Steve Naroff420d0f52007-09-12 20:13:48 +00002266 Decl *RealDecl = static_cast<Decl *>(dcl);
Sebastian Redl91f9b0a2008-12-13 16:23:55 +00002267 Expr *Init = static_cast<Expr *>(init.release());
Chris Lattnerf31a2fb2007-10-19 20:10:30 +00002268 assert(Init && "missing initializer");
Steve Naroff6a0e2092007-09-12 14:07:44 +00002269
Chris Lattnerf31a2fb2007-10-19 20:10:30 +00002270 // If there is no declaration, there was an error parsing it. Just ignore
2271 // the initializer.
2272 if (RealDecl == 0) {
2273 delete Init;
2274 return;
2275 }
Steve Naroff6a0e2092007-09-12 14:07:44 +00002276
Steve Naroff420d0f52007-09-12 20:13:48 +00002277 VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl);
2278 if (!VDecl) {
Steve Naroffcb597472007-09-13 21:41:19 +00002279 Diag(dyn_cast<ScopedDecl>(RealDecl)->getLocation(),
2280 diag::err_illegal_initializer);
Steve Naroff420d0f52007-09-12 20:13:48 +00002281 RealDecl->setInvalidDecl();
2282 return;
2283 }
Steve Naroff6a0e2092007-09-12 14:07:44 +00002284 // Get the decls type and save a reference for later, since
Steve Narofff0b23542008-01-10 22:15:12 +00002285 // CheckInitializerTypes may change it.
Steve Naroff420d0f52007-09-12 20:13:48 +00002286 QualType DclT = VDecl->getType(), SavT = DclT;
Steve Naroff72a6ebc2008-04-15 22:42:06 +00002287 if (VDecl->isBlockVarDecl()) {
2288 VarDecl::StorageClass SC = VDecl->getStorageClass();
Steve Naroff6a0e2092007-09-12 14:07:44 +00002289 if (SC == VarDecl::Extern) { // C99 6.7.8p5
Steve Naroff420d0f52007-09-12 20:13:48 +00002290 Diag(VDecl->getLocation(), diag::err_block_extern_cant_init);
Steve Naroff72a6ebc2008-04-15 22:42:06 +00002291 VDecl->setInvalidDecl();
2292 } else if (!VDecl->isInvalidDecl()) {
Douglas Gregor6428e762008-11-05 15:29:30 +00002293 if (CheckInitializerTypes(Init, DclT, VDecl->getLocation(),
Douglas Gregor6214d8a2009-01-14 15:45:31 +00002294 VDecl->getDeclName(), DirectInit))
Steve Naroff72a6ebc2008-04-15 22:42:06 +00002295 VDecl->setInvalidDecl();
Anders Carlssonea7140a2008-08-22 05:00:02 +00002296
2297 // C++ 3.6.2p2, allow dynamic initialization of static initializers.
2298 if (!getLangOptions().CPlusPlus) {
2299 if (SC == VarDecl::Static) // C99 6.7.8p4.
2300 CheckForConstantInitializer(Init, DclT);
2301 }
Steve Naroff6a0e2092007-09-12 14:07:44 +00002302 }
Steve Naroff72a6ebc2008-04-15 22:42:06 +00002303 } else if (VDecl->isFileVarDecl()) {
2304 if (VDecl->getStorageClass() == VarDecl::Extern)
Steve Naroff420d0f52007-09-12 20:13:48 +00002305 Diag(VDecl->getLocation(), diag::warn_extern_init);
Steve Naroff72a6ebc2008-04-15 22:42:06 +00002306 if (!VDecl->isInvalidDecl())
Douglas Gregor6428e762008-11-05 15:29:30 +00002307 if (CheckInitializerTypes(Init, DclT, VDecl->getLocation(),
Douglas Gregor6214d8a2009-01-14 15:45:31 +00002308 VDecl->getDeclName(), DirectInit))
Steve Naroff72a6ebc2008-04-15 22:42:06 +00002309 VDecl->setInvalidDecl();
Steve Narofff0b23542008-01-10 22:15:12 +00002310
Anders Carlssonea7140a2008-08-22 05:00:02 +00002311 // C++ 3.6.2p2, allow dynamic initialization of static initializers.
2312 if (!getLangOptions().CPlusPlus) {
2313 // C99 6.7.8p4. All file scoped initializers need to be constant.
2314 CheckForConstantInitializer(Init, DclT);
2315 }
Steve Naroff6a0e2092007-09-12 14:07:44 +00002316 }
2317 // If the type changed, it means we had an incomplete type that was
2318 // completed by the initializer. For example:
2319 // int ary[] = { 1, 3, 5 };
2320 // "ary" transitions from a VariableArrayType to a ConstantArrayType.
Christopher Lamb62f06b62007-11-29 19:09:19 +00002321 if (!VDecl->isInvalidDecl() && (DclT != SavT)) {
Steve Naroff420d0f52007-09-12 20:13:48 +00002322 VDecl->setType(DclT);
Christopher Lamb62f06b62007-11-29 19:09:19 +00002323 Init->setType(DclT);
2324 }
Steve Naroff6a0e2092007-09-12 14:07:44 +00002325
2326 // Attach the initializer to the decl.
Steve Naroff420d0f52007-09-12 20:13:48 +00002327 VDecl->setInit(Init);
Steve Naroff6a0e2092007-09-12 14:07:44 +00002328 return;
2329}
2330
Douglas Gregor81c29152008-10-29 00:13:59 +00002331void Sema::ActOnUninitializedDecl(DeclTy *dcl) {
2332 Decl *RealDecl = static_cast<Decl *>(dcl);
2333
Argiris Kirtzidis9c0e9942008-11-07 13:01:22 +00002334 // If there is no declaration, there was an error parsing it. Just ignore it.
2335 if (RealDecl == 0)
2336 return;
2337
Douglas Gregor81c29152008-10-29 00:13:59 +00002338 if (VarDecl *Var = dyn_cast<VarDecl>(RealDecl)) {
2339 QualType Type = Var->getType();
2340 // C++ [dcl.init.ref]p3:
2341 // The initializer can be omitted for a reference only in a
2342 // parameter declaration (8.3.5), in the declaration of a
2343 // function return type, in the declaration of a class member
2344 // within its class declaration (9.2), and where the extern
2345 // specifier is explicitly used.
Douglas Gregorb9213832008-12-15 21:24:18 +00002346 if (Type->isReferenceType() &&
2347 Var->getStorageClass() != VarDecl::Extern &&
2348 Var->getStorageClass() != VarDecl::PrivateExtern) {
Chris Lattner77d52da2008-11-20 06:06:08 +00002349 Diag(Var->getLocation(), diag::err_reference_var_requires_init)
Chris Lattner271d4c22008-11-24 05:29:24 +00002350 << Var->getDeclName()
2351 << SourceRange(Var->getLocation(), Var->getLocation());
Douglas Gregor5870a952008-11-03 20:45:27 +00002352 Var->setInvalidDecl();
2353 return;
2354 }
2355
2356 // C++ [dcl.init]p9:
2357 //
2358 // If no initializer is specified for an object, and the object
2359 // is of (possibly cv-qualified) non-POD class type (or array
2360 // thereof), the object shall be default-initialized; if the
2361 // object is of const-qualified type, the underlying class type
2362 // shall have a user-declared default constructor.
2363 if (getLangOptions().CPlusPlus) {
2364 QualType InitType = Type;
2365 if (const ArrayType *Array = Context.getAsArrayType(Type))
2366 InitType = Array->getElementType();
Douglas Gregorb9213832008-12-15 21:24:18 +00002367 if (Var->getStorageClass() != VarDecl::Extern &&
2368 Var->getStorageClass() != VarDecl::PrivateExtern &&
2369 InitType->isRecordType()) {
Douglas Gregor6428e762008-11-05 15:29:30 +00002370 const CXXConstructorDecl *Constructor
2371 = PerformInitializationByConstructor(InitType, 0, 0,
2372 Var->getLocation(),
2373 SourceRange(Var->getLocation(),
2374 Var->getLocation()),
Chris Lattner271d4c22008-11-24 05:29:24 +00002375 Var->getDeclName(),
Douglas Gregor6428e762008-11-05 15:29:30 +00002376 IK_Default);
Douglas Gregor5870a952008-11-03 20:45:27 +00002377 if (!Constructor)
2378 Var->setInvalidDecl();
2379 }
2380 }
Douglas Gregor81c29152008-10-29 00:13:59 +00002381
Douglas Gregorc0d11a82008-10-29 13:50:18 +00002382#if 0
2383 // FIXME: Temporarily disabled because we are not properly parsing
2384 // linkage specifications on declarations, e.g.,
2385 //
2386 // extern "C" const CGPoint CGPointerZero;
2387 //
Douglas Gregor81c29152008-10-29 00:13:59 +00002388 // C++ [dcl.init]p9:
2389 //
2390 // If no initializer is specified for an object, and the
2391 // object is of (possibly cv-qualified) non-POD class type (or
2392 // array thereof), the object shall be default-initialized; if
2393 // the object is of const-qualified type, the underlying class
2394 // type shall have a user-declared default
2395 // constructor. Otherwise, if no initializer is specified for
2396 // an object, the object and its subobjects, if any, have an
2397 // indeterminate initial value; if the object or any of its
2398 // subobjects are of const-qualified type, the program is
2399 // ill-formed.
2400 //
2401 // This isn't technically an error in C, so we don't diagnose it.
2402 //
2403 // FIXME: Actually perform the POD/user-defined default
2404 // constructor check.
2405 if (getLangOptions().CPlusPlus &&
Douglas Gregorc0d11a82008-10-29 13:50:18 +00002406 Context.getCanonicalType(Type).isConstQualified() &&
2407 Var->getStorageClass() != VarDecl::Extern)
Chris Lattner10f2c2e2008-11-20 06:38:18 +00002408 Diag(Var->getLocation(), diag::err_const_var_requires_init)
2409 << Var->getName()
2410 << SourceRange(Var->getLocation(), Var->getLocation());
Douglas Gregorc0d11a82008-10-29 13:50:18 +00002411#endif
Douglas Gregor81c29152008-10-29 00:13:59 +00002412 }
2413}
2414
Chris Lattner4b009652007-07-25 00:24:17 +00002415/// The declarators are chained together backwards, reverse the list.
2416Sema::DeclTy *Sema::FinalizeDeclaratorGroup(Scope *S, DeclTy *group) {
2417 // Often we have single declarators, handle them quickly.
Steve Naroff2591e1b2007-09-13 23:52:58 +00002418 Decl *GroupDecl = static_cast<Decl*>(group);
2419 if (GroupDecl == 0)
Steve Naroff6a0e2092007-09-12 14:07:44 +00002420 return 0;
Steve Naroff2591e1b2007-09-13 23:52:58 +00002421
2422 ScopedDecl *Group = dyn_cast<ScopedDecl>(GroupDecl);
2423 ScopedDecl *NewGroup = 0;
Steve Naroff6a0e2092007-09-12 14:07:44 +00002424 if (Group->getNextDeclarator() == 0)
Chris Lattner4b009652007-07-25 00:24:17 +00002425 NewGroup = Group;
Steve Naroff6a0e2092007-09-12 14:07:44 +00002426 else { // reverse the list.
2427 while (Group) {
Steve Naroff2591e1b2007-09-13 23:52:58 +00002428 ScopedDecl *Next = Group->getNextDeclarator();
Steve Naroff6a0e2092007-09-12 14:07:44 +00002429 Group->setNextDeclarator(NewGroup);
2430 NewGroup = Group;
2431 Group = Next;
2432 }
2433 }
2434 // Perform semantic analysis that depends on having fully processed both
2435 // the declarator and initializer.
Steve Naroff2591e1b2007-09-13 23:52:58 +00002436 for (ScopedDecl *ID = NewGroup; ID; ID = ID->getNextDeclarator()) {
Steve Naroff6a0e2092007-09-12 14:07:44 +00002437 VarDecl *IDecl = dyn_cast<VarDecl>(ID);
2438 if (!IDecl)
2439 continue;
Steve Naroff6a0e2092007-09-12 14:07:44 +00002440 QualType T = IDecl->getType();
2441
Anders Carlsson68adbd12008-12-07 00:20:55 +00002442 if (T->isVariableArrayType()) {
Anders Carlssonef2f7df2008-12-20 21:51:53 +00002443 const VariableArrayType *VAT = Context.getAsVariableArrayType(T);
Anders Carlssonb32a1ba2008-12-07 00:49:48 +00002444
2445 // FIXME: This won't give the correct result for
2446 // int a[10][n];
2447 SourceRange SizeRange = VAT->getSizeExpr()->getSourceRange();
Anders Carlsson68adbd12008-12-07 00:20:55 +00002448 if (IDecl->isFileVarDecl()) {
Anders Carlssonb32a1ba2008-12-07 00:49:48 +00002449 Diag(IDecl->getLocation(), diag::err_vla_decl_in_file_scope) <<
2450 SizeRange;
2451
Eli Friedman8ff07782008-02-15 18:16:39 +00002452 IDecl->setInvalidDecl();
Anders Carlsson68adbd12008-12-07 00:20:55 +00002453 } else {
2454 // C99 6.7.5.2p2: If an identifier is declared to be an object with
2455 // static storage duration, it shall not have a variable length array.
2456 if (IDecl->getStorageClass() == VarDecl::Static) {
Anders Carlssonb32a1ba2008-12-07 00:49:48 +00002457 Diag(IDecl->getLocation(), diag::err_vla_decl_has_static_storage)
2458 << SizeRange;
Anders Carlsson68adbd12008-12-07 00:20:55 +00002459 IDecl->setInvalidDecl();
2460 } else if (IDecl->getStorageClass() == VarDecl::Extern) {
Anders Carlssonb32a1ba2008-12-07 00:49:48 +00002461 Diag(IDecl->getLocation(), diag::err_vla_decl_has_extern_linkage)
2462 << SizeRange;
Anders Carlsson68adbd12008-12-07 00:20:55 +00002463 IDecl->setInvalidDecl();
2464 }
2465 }
2466 } else if (T->isVariablyModifiedType()) {
2467 if (IDecl->isFileVarDecl()) {
2468 Diag(IDecl->getLocation(), diag::err_vm_decl_in_file_scope);
2469 IDecl->setInvalidDecl();
2470 } else {
2471 if (IDecl->getStorageClass() == VarDecl::Extern) {
2472 Diag(IDecl->getLocation(), diag::err_vm_decl_has_extern_linkage);
2473 IDecl->setInvalidDecl();
2474 }
Steve Naroff6a0e2092007-09-12 14:07:44 +00002475 }
2476 }
Anders Carlsson68adbd12008-12-07 00:20:55 +00002477
Steve Naroff6a0e2092007-09-12 14:07:44 +00002478 // Block scope. C99 6.7p7: If an identifier for an object is declared with
2479 // no linkage (C99 6.2.2p6), the type for the object shall be complete...
Steve Naroff72a6ebc2008-04-15 22:42:06 +00002480 if (IDecl->isBlockVarDecl() &&
2481 IDecl->getStorageClass() != VarDecl::Extern) {
Chris Lattner67d3c8d2008-04-02 01:05:10 +00002482 if (T->isIncompleteType() && !IDecl->isInvalidDecl()) {
Chris Lattner271d4c22008-11-24 05:29:24 +00002483 Diag(IDecl->getLocation(), diag::err_typecheck_decl_incomplete_type)<<T;
Steve Naroff6a0e2092007-09-12 14:07:44 +00002484 IDecl->setInvalidDecl();
2485 }
2486 }
2487 // File scope. C99 6.9.2p2: A declaration of an identifier for and
2488 // object that has file scope without an initializer, and without a
2489 // storage-class specifier or with the storage-class specifier "static",
2490 // constitutes a tentative definition. Note: A tentative definition with
2491 // external linkage is valid (C99 6.2.2p5).
Steve Naroffb5e78152008-08-08 17:50:35 +00002492 if (isTentativeDefinition(IDecl)) {
Eli Friedmane0079792008-02-15 12:53:51 +00002493 if (T->isIncompleteArrayType()) {
Steve Naroff60685462008-01-18 20:40:52 +00002494 // C99 6.9.2 (p2, p5): Implicit initialization causes an incomplete
2495 // array to be completed. Don't issue a diagnostic.
Chris Lattner67d3c8d2008-04-02 01:05:10 +00002496 } else if (T->isIncompleteType() && !IDecl->isInvalidDecl()) {
Steve Naroff60685462008-01-18 20:40:52 +00002497 // C99 6.9.2p3: If the declaration of an identifier for an object is
2498 // a tentative definition and has internal linkage (C99 6.2.2p3), the
2499 // declared type shall not be an incomplete type.
Chris Lattner271d4c22008-11-24 05:29:24 +00002500 Diag(IDecl->getLocation(), diag::err_typecheck_decl_incomplete_type)<<T;
Steve Naroff6a0e2092007-09-12 14:07:44 +00002501 IDecl->setInvalidDecl();
2502 }
2503 }
Steve Naroffb5e78152008-08-08 17:50:35 +00002504 if (IDecl->isFileVarDecl())
2505 CheckForFileScopedRedefinitions(S, IDecl);
Chris Lattner4b009652007-07-25 00:24:17 +00002506 }
2507 return NewGroup;
2508}
Steve Naroff91b03f72007-08-28 03:03:08 +00002509
Chris Lattner3e254fb2008-04-08 04:40:51 +00002510/// ActOnParamDeclarator - Called from Parser::ParseFunctionDeclarator()
2511/// to introduce parameters into function prototype scope.
2512Sema::DeclTy *
2513Sema::ActOnParamDeclarator(Scope *S, Declarator &D) {
Chris Lattner5e77ade2008-06-26 06:49:43 +00002514 const DeclSpec &DS = D.getDeclSpec();
Douglas Gregorc5cbc242008-12-15 23:53:10 +00002515
Chris Lattner3e254fb2008-04-08 04:40:51 +00002516 // Verify C99 6.7.5.3p2: The only SCS allowed is 'register'.
Daniel Dunbarb648e8c2008-09-03 21:54:21 +00002517 VarDecl::StorageClass StorageClass = VarDecl::None;
2518 if (DS.getStorageClassSpec() == DeclSpec::SCS_register) {
2519 StorageClass = VarDecl::Register;
2520 } else if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified) {
Chris Lattner3e254fb2008-04-08 04:40:51 +00002521 Diag(DS.getStorageClassSpecLoc(),
2522 diag::err_invalid_storage_class_in_func_decl);
Chris Lattner5e77ade2008-06-26 06:49:43 +00002523 D.getMutableDeclSpec().ClearStorageClassSpecs();
Chris Lattner3e254fb2008-04-08 04:40:51 +00002524 }
2525 if (DS.isThreadSpecified()) {
2526 Diag(DS.getThreadSpecLoc(),
2527 diag::err_invalid_storage_class_in_func_decl);
Chris Lattner5e77ade2008-06-26 06:49:43 +00002528 D.getMutableDeclSpec().ClearStorageClassSpecs();
Chris Lattner3e254fb2008-04-08 04:40:51 +00002529 }
2530
Douglas Gregor2b9422f2008-05-07 04:49:29 +00002531 // Check that there are no default arguments inside the type of this
2532 // parameter (C++ only).
2533 if (getLangOptions().CPlusPlus)
2534 CheckExtraCXXDefaultArguments(D);
2535
Chris Lattner3e254fb2008-04-08 04:40:51 +00002536 // In this context, we *do not* check D.getInvalidType(). If the declarator
2537 // type was invalid, GetTypeForDeclarator() still returns a "valid" type,
2538 // though it will not reflect the user specified type.
2539 QualType parmDeclType = GetTypeForDeclarator(D, S);
2540
2541 assert(!parmDeclType.isNull() && "GetTypeForDeclarator() returned null type");
2542
Chris Lattner4b009652007-07-25 00:24:17 +00002543 // TODO: CHECK FOR CONFLICTS, multiple decls with same name in one scope.
2544 // Can this happen for params? We already checked that they don't conflict
2545 // among each other. Here they can only shadow globals, which is ok.
Chris Lattner3e254fb2008-04-08 04:40:51 +00002546 IdentifierInfo *II = D.getIdentifier();
2547 if (Decl *PrevDecl = LookupDecl(II, Decl::IDNS_Ordinary, S)) {
Douglas Gregor2715a1f2008-12-08 18:40:42 +00002548 if (PrevDecl->isTemplateParameter()) {
Douglas Gregordd861062008-12-05 18:15:24 +00002549 // Maybe we will complain about the shadowed template parameter.
2550 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
2551 // Just pretend that we didn't see the previous declaration.
2552 PrevDecl = 0;
2553 } else if (S->isDeclScope(PrevDecl)) {
Chris Lattnerb1753422008-11-23 21:45:46 +00002554 Diag(D.getIdentifierLoc(), diag::err_param_redefinition) << II;
Chris Lattner3e254fb2008-04-08 04:40:51 +00002555
2556 // Recover by removing the name
2557 II = 0;
2558 D.SetIdentifier(0, D.getIdentifierLoc());
2559 }
Chris Lattner4b009652007-07-25 00:24:17 +00002560 }
Steve Naroff94cd93f2007-08-07 22:44:21 +00002561
2562 // Perform the default function/array conversion (C99 6.7.5.3p[7,8]).
2563 // Doing the promotion here has a win and a loss. The win is the type for
2564 // both Decl's and DeclRefExpr's will match (a convenient invariant for the
2565 // code generator). The loss is the orginal type isn't preserved. For example:
2566 //
2567 // void func(int parmvardecl[5]) { // convert "int [5]" to "int *"
2568 // int blockvardecl[5];
2569 // sizeof(parmvardecl); // size == 4
2570 // sizeof(blockvardecl); // size == 20
2571 // }
2572 //
2573 // For expressions, all implicit conversions are captured using the
2574 // ImplicitCastExpr AST node (we have no such mechanism for Decl's).
2575 //
2576 // FIXME: If a source translation tool needs to see the original type, then
2577 // we need to consider storing both types (in ParmVarDecl)...
2578 //
Chris Lattner19eb97e2008-04-02 05:18:44 +00002579 if (parmDeclType->isArrayType()) {
Chris Lattnerc08564a2008-01-02 22:50:48 +00002580 // int x[restrict 4] -> int *restrict
Chris Lattner19eb97e2008-04-02 05:18:44 +00002581 parmDeclType = Context.getArrayDecayedType(parmDeclType);
Chris Lattnerc08564a2008-01-02 22:50:48 +00002582 } else if (parmDeclType->isFunctionType())
Steve Naroff94cd93f2007-08-07 22:44:21 +00002583 parmDeclType = Context.getPointerType(parmDeclType);
Douglas Gregor8acb7272008-12-11 16:49:14 +00002584
Chris Lattner3e254fb2008-04-08 04:40:51 +00002585 ParmVarDecl *New = ParmVarDecl::Create(Context, CurContext,
2586 D.getIdentifierLoc(), II,
Daniel Dunbarb648e8c2008-09-03 21:54:21 +00002587 parmDeclType, StorageClass,
Chris Lattner3e254fb2008-04-08 04:40:51 +00002588 0, 0);
Anders Carlsson3f70c542008-02-15 07:04:12 +00002589
Chris Lattner3e254fb2008-04-08 04:40:51 +00002590 if (D.getInvalidType())
Steve Naroffcae537d2007-08-28 18:45:29 +00002591 New->setInvalidDecl();
Douglas Gregor8acb7272008-12-11 16:49:14 +00002592
Douglas Gregorc5cbc242008-12-15 23:53:10 +00002593 // Parameter declarators cannot be qualified (C++ [dcl.meaning]p1).
2594 if (D.getCXXScopeSpec().isSet()) {
2595 Diag(D.getIdentifierLoc(), diag::err_qualified_param_declarator)
2596 << D.getCXXScopeSpec().getRange();
2597 New->setInvalidDecl();
2598 }
2599
Douglas Gregor8acb7272008-12-11 16:49:14 +00002600 // Add the parameter declaration into this scope.
2601 S->AddDecl(New);
Argiris Kirtzidis951f25b2008-04-12 00:47:19 +00002602 if (II)
Douglas Gregor8acb7272008-12-11 16:49:14 +00002603 IdResolver.AddDecl(New);
Nate Begeman9f3c4bb2008-02-17 21:20:31 +00002604
Chris Lattner9b384ca2008-06-29 00:02:00 +00002605 ProcessDeclAttributes(New, D);
Chris Lattner4b009652007-07-25 00:24:17 +00002606 return New;
Chris Lattner3e254fb2008-04-08 04:40:51 +00002607
Chris Lattner4b009652007-07-25 00:24:17 +00002608}
Fariborz Jahaniandfb1c372007-11-08 23:49:49 +00002609
Chris Lattnerea148702007-10-09 17:14:05 +00002610Sema::DeclTy *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Declarator &D) {
Argiris Kirtzidis95256e62008-06-28 06:07:14 +00002611 assert(getCurFunctionDecl() == 0 && "Function parsing confused");
Chris Lattner4b009652007-07-25 00:24:17 +00002612 assert(D.getTypeObject(0).Kind == DeclaratorChunk::Function &&
2613 "Not a function declarator!");
2614 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
Chris Lattner3e254fb2008-04-08 04:40:51 +00002615
Chris Lattner4b009652007-07-25 00:24:17 +00002616 // Verify 6.9.1p6: 'every identifier in the identifier list shall be declared'
2617 // for a K&R function.
2618 if (!FTI.hasPrototype) {
2619 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) {
Chris Lattner3e254fb2008-04-08 04:40:51 +00002620 if (FTI.ArgInfo[i].Param == 0) {
Chris Lattner65cae292008-11-19 08:23:25 +00002621 Diag(FTI.ArgInfo[i].IdentLoc, diag::ext_param_not_declared)
2622 << FTI.ArgInfo[i].Ident;
Chris Lattner4b009652007-07-25 00:24:17 +00002623 // Implicitly declare the argument as type 'int' for lack of a better
2624 // type.
Chris Lattner3e254fb2008-04-08 04:40:51 +00002625 DeclSpec DS;
2626 const char* PrevSpec; // unused
2627 DS.SetTypeSpecType(DeclSpec::TST_int, FTI.ArgInfo[i].IdentLoc,
2628 PrevSpec);
2629 Declarator ParamD(DS, Declarator::KNRTypeListContext);
2630 ParamD.SetIdentifier(FTI.ArgInfo[i].Ident, FTI.ArgInfo[i].IdentLoc);
2631 FTI.ArgInfo[i].Param = ActOnParamDeclarator(FnBodyScope, ParamD);
Chris Lattner4b009652007-07-25 00:24:17 +00002632 }
2633 }
Chris Lattner4b009652007-07-25 00:24:17 +00002634 } else {
Chris Lattner3e254fb2008-04-08 04:40:51 +00002635 // FIXME: Diagnose arguments without names in C.
Chris Lattner4b009652007-07-25 00:24:17 +00002636 }
2637
Douglas Gregorc5cbc242008-12-15 23:53:10 +00002638 Scope *ParentScope = FnBodyScope->getParent();
Steve Naroff1d5bd642008-01-14 20:51:29 +00002639
Argiris Kirtzidis38f16712008-07-01 10:37:29 +00002640 return ActOnStartOfFunctionDef(FnBodyScope,
Douglas Gregorc5cbc242008-12-15 23:53:10 +00002641 ActOnDeclarator(ParentScope, D, 0,
2642 /*IsFunctionDefinition=*/true));
Argiris Kirtzidis38f16712008-07-01 10:37:29 +00002643}
2644
2645Sema::DeclTy *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, DeclTy *D) {
2646 Decl *decl = static_cast<Decl*>(D);
Chris Lattner2d2216b2008-02-16 01:20:36 +00002647 FunctionDecl *FD = cast<FunctionDecl>(decl);
Douglas Gregor56da7862008-10-29 15:10:40 +00002648
2649 // See if this is a redefinition.
2650 const FunctionDecl *Definition;
2651 if (FD->getBody(Definition)) {
Chris Lattnerb1753422008-11-23 21:45:46 +00002652 Diag(FD->getLocation(), diag::err_redefinition) << FD->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +00002653 Diag(Definition->getLocation(), diag::note_previous_definition);
Douglas Gregor56da7862008-10-29 15:10:40 +00002654 }
2655
Douglas Gregor8acb7272008-12-11 16:49:14 +00002656 PushDeclContext(FnBodyScope, FD);
Anton Korobeynikovb27a8702008-12-26 00:52:02 +00002657
Chris Lattner3e254fb2008-04-08 04:40:51 +00002658 // Check the validity of our function parameters
2659 CheckParmsForFunctionDef(FD);
2660
2661 // Introduce our parameters into the function scope
2662 for (unsigned p = 0, NumParams = FD->getNumParams(); p < NumParams; ++p) {
2663 ParmVarDecl *Param = FD->getParamDecl(p);
Douglas Gregord394a272009-01-09 18:51:29 +00002664 Param->setOwningFunction(FD);
2665
Chris Lattner3e254fb2008-04-08 04:40:51 +00002666 // If this has an identifier, add it to the scope stack.
Argiris Kirtzidis951f25b2008-04-12 00:47:19 +00002667 if (Param->getIdentifier())
2668 PushOnScopeChains(Param, FnBodyScope);
Chris Lattner4b009652007-07-25 00:24:17 +00002669 }
Chris Lattner3e254fb2008-04-08 04:40:51 +00002670
Anton Korobeynikovb27a8702008-12-26 00:52:02 +00002671 // Checking attributes of current function definition
2672 // dllimport attribute.
2673 if (FD->getAttr<DLLImportAttr>() && (!FD->getAttr<DLLExportAttr>())) {
2674 // dllimport attribute cannot be applied to definition.
2675 if (!(FD->getAttr<DLLImportAttr>())->isInherited()) {
2676 Diag(FD->getLocation(),
2677 diag::err_attribute_can_be_applied_only_to_symbol_declaration)
2678 << "dllimport";
2679 FD->setInvalidDecl();
2680 return FD;
2681 } else {
2682 // If a symbol previously declared dllimport is later defined, the
2683 // attribute is ignored in subsequent references, and a warning is
2684 // emitted.
2685 Diag(FD->getLocation(),
2686 diag::warn_redeclaration_without_attribute_prev_attribute_ignored)
2687 << FD->getNameAsCString() << "dllimport";
2688 }
2689 }
Chris Lattner4b009652007-07-25 00:24:17 +00002690 return FD;
2691}
2692
Sebastian Redl91f9b0a2008-12-13 16:23:55 +00002693Sema::DeclTy *Sema::ActOnFinishFunctionBody(DeclTy *D, StmtArg BodyArg) {
Steve Naroff99ee4302007-11-11 23:20:51 +00002694 Decl *dcl = static_cast<Decl *>(D);
Sebastian Redl91f9b0a2008-12-13 16:23:55 +00002695 Stmt *Body = static_cast<Stmt*>(BodyArg.release());
Steve Naroff3ac43f92008-07-25 17:57:26 +00002696 if (FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(dcl)) {
Sebastian Redl91f9b0a2008-12-13 16:23:55 +00002697 FD->setBody(Body);
Argiris Kirtzidis95256e62008-06-28 06:07:14 +00002698 assert(FD == getCurFunctionDecl() && "Function parsing confused");
Steve Naroff3ac43f92008-07-25 17:57:26 +00002699 } else if (ObjCMethodDecl *MD = dyn_cast_or_null<ObjCMethodDecl>(dcl)) {
Steve Naroff99ee4302007-11-11 23:20:51 +00002700 MD->setBody((Stmt*)Body);
Steve Naroff3ac43f92008-07-25 17:57:26 +00002701 } else
2702 return 0;
Chris Lattnerf3874bc2008-04-06 04:47:34 +00002703 PopDeclContext();
Chris Lattner4b009652007-07-25 00:24:17 +00002704 // Verify and clean out per-function state.
2705
2706 // Check goto/label use.
2707 for (llvm::DenseMap<IdentifierInfo*, LabelStmt*>::iterator
2708 I = LabelMap.begin(), E = LabelMap.end(); I != E; ++I) {
2709 // Verify that we have no forward references left. If so, there was a goto
2710 // or address of a label taken, but no definition of it. Label fwd
2711 // definitions are indicated with a null substmt.
2712 if (I->second->getSubStmt() == 0) {
2713 LabelStmt *L = I->second;
2714 // Emit error.
Chris Lattner10f2c2e2008-11-20 06:38:18 +00002715 Diag(L->getIdentLoc(), diag::err_undeclared_label_use) << L->getName();
Chris Lattner4b009652007-07-25 00:24:17 +00002716
2717 // At this point, we have gotos that use the bogus label. Stitch it into
2718 // the function body so that they aren't leaked and that the AST is well
2719 // formed.
Chris Lattner83343342008-01-25 00:01:10 +00002720 if (Body) {
2721 L->setSubStmt(new NullStmt(L->getIdentLoc()));
Sebastian Redl91f9b0a2008-12-13 16:23:55 +00002722 cast<CompoundStmt>(Body)->push_back(L);
Chris Lattner83343342008-01-25 00:01:10 +00002723 } else {
2724 // The whole function wasn't parsed correctly, just delete this.
2725 delete L;
2726 }
Chris Lattner4b009652007-07-25 00:24:17 +00002727 }
2728 }
2729 LabelMap.clear();
2730
Steve Naroff99ee4302007-11-11 23:20:51 +00002731 return D;
Fariborz Jahaniane6f59f12007-11-10 16:31:34 +00002732}
2733
Chris Lattner4b009652007-07-25 00:24:17 +00002734/// ImplicitlyDefineFunction - An undeclared identifier was used in a function
2735/// call, forming a call to an implicitly defined function (per C99 6.5.1p2).
Steve Narofff0c31dd2007-09-16 16:16:00 +00002736ScopedDecl *Sema::ImplicitlyDefineFunction(SourceLocation Loc,
2737 IdentifierInfo &II, Scope *S) {
Chris Lattnerdea31bf2008-05-05 21:18:06 +00002738 // Extension in C99. Legal in C90, but warn about it.
2739 if (getLangOptions().C99)
Chris Lattner65cae292008-11-19 08:23:25 +00002740 Diag(Loc, diag::ext_implicit_function_decl) << &II;
Chris Lattnerdea31bf2008-05-05 21:18:06 +00002741 else
Chris Lattner65cae292008-11-19 08:23:25 +00002742 Diag(Loc, diag::warn_implicit_function_decl) << &II;
Chris Lattner4b009652007-07-25 00:24:17 +00002743
2744 // FIXME: handle stuff like:
2745 // void foo() { extern float X(); }
2746 // void bar() { X(); } <-- implicit decl for X in another scope.
2747
2748 // Set a Declarator for the implicit definition: int foo();
2749 const char *Dummy;
2750 DeclSpec DS;
2751 bool Error = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, Dummy);
2752 Error = Error; // Silence warning.
2753 assert(!Error && "Error setting up implicit decl!");
2754 Declarator D(DS, Declarator::BlockContext);
Argiris Kirtzidis4b269b42008-10-24 21:46:40 +00002755 D.AddTypeInfo(DeclaratorChunk::getFunction(false, false, 0, 0, 0, Loc));
Chris Lattner4b009652007-07-25 00:24:17 +00002756 D.SetIdentifier(&II, Loc);
2757
Argiris Kirtzidisbb4f7b42008-05-01 21:04:16 +00002758 // Insert this function into translation-unit scope.
2759
2760 DeclContext *PrevDC = CurContext;
2761 CurContext = Context.getTranslationUnitDecl();
2762
Steve Naroff9104f3c2008-04-04 14:32:09 +00002763 FunctionDecl *FD =
Daniel Dunbar72eaf8a2008-08-05 16:28:08 +00002764 dyn_cast<FunctionDecl>(static_cast<Decl*>(ActOnDeclarator(TUScope, D, 0)));
Steve Naroff9104f3c2008-04-04 14:32:09 +00002765 FD->setImplicit();
Argiris Kirtzidisbb4f7b42008-05-01 21:04:16 +00002766
2767 CurContext = PrevDC;
2768
Steve Naroff9104f3c2008-04-04 14:32:09 +00002769 return FD;
Chris Lattner4b009652007-07-25 00:24:17 +00002770}
2771
2772
Chris Lattner82bb4792007-11-14 06:34:38 +00002773TypedefDecl *Sema::ParseTypedefDecl(Scope *S, Declarator &D, QualType T,
Steve Naroff2591e1b2007-09-13 23:52:58 +00002774 ScopedDecl *LastDeclarator) {
Chris Lattner4b009652007-07-25 00:24:17 +00002775 assert(D.getIdentifier() && "Wrong callback for declspec without declarator");
Steve Naroffd1ad6ae2007-08-28 20:14:24 +00002776 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
Chris Lattner4b009652007-07-25 00:24:17 +00002777
2778 // Scope manipulation handled by caller.
Chris Lattnereee57c02008-04-04 06:12:32 +00002779 TypedefDecl *NewTD = TypedefDecl::Create(Context, CurContext,
2780 D.getIdentifierLoc(),
Chris Lattnere4650482008-03-15 06:12:44 +00002781 D.getIdentifier(),
Chris Lattner58114f02008-03-15 21:32:50 +00002782 T, LastDeclarator);
Steve Naroffd1ad6ae2007-08-28 20:14:24 +00002783 if (D.getInvalidType())
2784 NewTD->setInvalidDecl();
2785 return NewTD;
Chris Lattner4b009652007-07-25 00:24:17 +00002786}
2787
Steve Naroff0acc9c92007-09-15 18:49:24 +00002788/// ActOnTag - This is invoked when we see 'struct foo' or 'struct {'. In the
Chris Lattner4b009652007-07-25 00:24:17 +00002789/// former case, Name will be non-null. In the later case, Name will be null.
2790/// TagType indicates what kind of tag this is. TK indicates whether this is a
2791/// reference/declaration/definition of a tag.
Steve Naroff0acc9c92007-09-15 18:49:24 +00002792Sema::DeclTy *Sema::ActOnTag(Scope *S, unsigned TagType, TagKind TK,
Argiris Kirtzidis311db8c2008-11-08 16:45:02 +00002793 SourceLocation KWLoc, const CXXScopeSpec &SS,
2794 IdentifierInfo *Name, SourceLocation NameLoc,
Douglas Gregor52473432008-12-24 02:52:09 +00002795 AttributeList *Attr,
2796 MultiTemplateParamsArg TemplateParameterLists) {
Douglas Gregorae644892008-12-15 16:32:14 +00002797 // If this is not a definition, it must have a name.
Chris Lattner4b009652007-07-25 00:24:17 +00002798 assert((Name != 0 || TK == TK_Definition) &&
2799 "Nameless record must be a definition!");
2800
Argiris Kirtzidisc6cc7d52008-06-09 23:19:58 +00002801 TagDecl::TagKind Kind;
Chris Lattner4b009652007-07-25 00:24:17 +00002802 switch (TagType) {
2803 default: assert(0 && "Unknown tag type!");
Argiris Kirtzidisc6cc7d52008-06-09 23:19:58 +00002804 case DeclSpec::TST_struct: Kind = TagDecl::TK_struct; break;
2805 case DeclSpec::TST_union: Kind = TagDecl::TK_union; break;
2806 case DeclSpec::TST_class: Kind = TagDecl::TK_class; break;
2807 case DeclSpec::TST_enum: Kind = TagDecl::TK_enum; break;
Chris Lattner4b009652007-07-25 00:24:17 +00002808 }
2809
Douglas Gregorb748fc52009-01-12 22:49:06 +00002810 DeclContext *SearchDC = CurContext;
Argiris Kirtzidis5ce4db82008-11-09 22:53:32 +00002811 DeclContext *DC = CurContext;
Douglas Gregorcab994d2009-01-09 22:42:13 +00002812 DeclContext *LexicalContext = CurContext;
Argiris Kirtzidis5ce4db82008-11-09 22:53:32 +00002813 ScopedDecl *PrevDecl = 0;
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00002814
Argiris Kirtzidis70b54132008-11-09 22:09:58 +00002815 if (Name && SS.isNotEmpty()) {
2816 // We have a nested-name tag ('struct foo::bar').
2817
2818 // Check for invalid 'foo::'.
Argiris Kirtzidis5ce4db82008-11-09 22:53:32 +00002819 if (SS.isInvalid()) {
Argiris Kirtzidis70b54132008-11-09 22:09:58 +00002820 Name = 0;
2821 goto CreateNewDecl;
2822 }
2823
Argiris Kirtzidis5ce4db82008-11-09 22:53:32 +00002824 DC = static_cast<DeclContext*>(SS.getScopeRep());
2825 // Look-up name inside 'foo::'.
Douglas Gregor78d70132009-01-14 22:20:51 +00002826 PrevDecl = dyn_cast_or_null<TagDecl>(LookupDecl(Name, Decl::IDNS_Tag,S,DC)
2827 .getAsDecl());
Argiris Kirtzidis70b54132008-11-09 22:09:58 +00002828
2829 // A tag 'foo::bar' must already exist.
2830 if (PrevDecl == 0) {
Chris Lattner65cae292008-11-19 08:23:25 +00002831 Diag(NameLoc, diag::err_not_tag_in_scope) << Name << SS.getRange();
Argiris Kirtzidis70b54132008-11-09 22:09:58 +00002832 Name = 0;
2833 goto CreateNewDecl;
2834 }
2835 } else {
2836 // If this is a named struct, check to see if there was a previous forward
2837 // declaration or definition.
2838 // Use ScopedDecl instead of TagDecl, because a NamespaceDecl may come up.
Douglas Gregor78d70132009-01-14 22:20:51 +00002839 PrevDecl = dyn_cast_or_null<ScopedDecl>(LookupDecl(Name, Decl::IDNS_Tag,S)
2840 .getAsDecl());
Douglas Gregordb568cf2009-01-08 20:45:30 +00002841
2842 if (!getLangOptions().CPlusPlus && TK != TK_Reference) {
2843 // FIXME: This makes sure that we ignore the contexts associated
2844 // with C structs, unions, and enums when looking for a matching
2845 // tag declaration or definition. See the similar lookup tweak
2846 // in Sema::LookupDecl; is there a better way to deal with this?
Douglas Gregorb748fc52009-01-12 22:49:06 +00002847 while (isa<RecordDecl>(SearchDC) || isa<EnumDecl>(SearchDC))
2848 SearchDC = SearchDC->getParent();
Douglas Gregordb568cf2009-01-08 20:45:30 +00002849 }
Argiris Kirtzidis70b54132008-11-09 22:09:58 +00002850 }
2851
Douglas Gregor2715a1f2008-12-08 18:40:42 +00002852 if (PrevDecl && PrevDecl->isTemplateParameter()) {
Douglas Gregordd861062008-12-05 18:15:24 +00002853 // Maybe we will complain about the shadowed template parameter.
2854 DiagnoseTemplateParameterShadow(NameLoc, PrevDecl);
2855 // Just pretend that we didn't see the previous declaration.
2856 PrevDecl = 0;
2857 }
2858
Ted Kremenekd4434152008-09-02 21:26:19 +00002859 if (PrevDecl) {
Argiris Kirtzidis03e6aaf2008-04-27 13:50:30 +00002860 assert((isa<TagDecl>(PrevDecl) || isa<NamespaceDecl>(PrevDecl)) &&
2861 "unexpected Decl type");
2862 if (TagDecl *PrevTagDecl = dyn_cast<TagDecl>(PrevDecl)) {
Chris Lattner5bf0ad52008-07-03 03:30:58 +00002863 // If this is a use of a previous tag, or if the tag is already declared
2864 // in the same scope (so that the definition/declaration completes or
Argiris Kirtzidis03e6aaf2008-04-27 13:50:30 +00002865 // rementions the tag), reuse the decl.
Douglas Gregorb748fc52009-01-12 22:49:06 +00002866 if (TK == TK_Reference || isDeclInScope(PrevDecl, SearchDC, S)) {
Chris Lattner5bf0ad52008-07-03 03:30:58 +00002867 // Make sure that this wasn't declared as an enum and now used as a
2868 // struct or something similar.
Argiris Kirtzidisc6cc7d52008-06-09 23:19:58 +00002869 if (PrevTagDecl->getTagKind() != Kind) {
Chris Lattner65cae292008-11-19 08:23:25 +00002870 Diag(KWLoc, diag::err_use_with_wrong_tag) << Name;
Chris Lattner1336cab2008-11-23 23:12:31 +00002871 Diag(PrevDecl->getLocation(), diag::note_previous_use);
Chris Lattner5bf0ad52008-07-03 03:30:58 +00002872 // Recover by making this an anonymous redefinition.
Argiris Kirtzidis03e6aaf2008-04-27 13:50:30 +00002873 Name = 0;
Chris Lattner5bf0ad52008-07-03 03:30:58 +00002874 PrevDecl = 0;
Argiris Kirtzidis03e6aaf2008-04-27 13:50:30 +00002875 } else {
Douglas Gregorae644892008-12-15 16:32:14 +00002876 // If this is a use, just return the declaration we found.
Chris Lattner5bf0ad52008-07-03 03:30:58 +00002877
Douglas Gregorae644892008-12-15 16:32:14 +00002878 // FIXME: In the future, return a variant or some other clue
2879 // for the consumer of this Decl to know it doesn't own it.
2880 // For our current ASTs this shouldn't be a problem, but will
2881 // need to be changed with DeclGroups.
2882 if (TK == TK_Reference)
Chris Lattner5bf0ad52008-07-03 03:30:58 +00002883 return PrevDecl;
Douglas Gregorae644892008-12-15 16:32:14 +00002884
2885 // Diagnose attempts to redefine a tag.
2886 if (TK == TK_Definition) {
2887 if (TagDecl *Def = PrevTagDecl->getDefinition(Context)) {
2888 Diag(NameLoc, diag::err_redefinition) << Name;
2889 Diag(Def->getLocation(), diag::note_previous_definition);
2890 // If this is a redefinition, recover by making this struct be
2891 // anonymous, which will make any later references get the previous
2892 // definition.
2893 Name = 0;
2894 PrevDecl = 0;
2895 }
2896 // Okay, this is definition of a previously declared or referenced
2897 // tag PrevDecl. We're going to create a new Decl for it.
2898 }
Argiris Kirtzidis03e6aaf2008-04-27 13:50:30 +00002899 }
Douglas Gregorae644892008-12-15 16:32:14 +00002900 // If we get here we have (another) forward declaration or we
2901 // have a definition. Just create a new decl.
2902 } else {
2903 // If we get here, this is a definition of a new tag type in a nested
2904 // scope, e.g. "struct foo; void bar() { struct foo; }", just create a
2905 // new decl/type. We set PrevDecl to NULL so that the entities
2906 // have distinct types.
2907 PrevDecl = 0;
Chris Lattner4b009652007-07-25 00:24:17 +00002908 }
Douglas Gregorae644892008-12-15 16:32:14 +00002909 // If we get here, we're going to create a new Decl. If PrevDecl
2910 // is non-NULL, it's a definition of the tag declared by
2911 // PrevDecl. If it's NULL, we have a new definition.
Argiris Kirtzidis03e6aaf2008-04-27 13:50:30 +00002912 } else {
Argiris Kirtzidis5beb45f2008-07-16 07:45:46 +00002913 // PrevDecl is a namespace.
Douglas Gregorb748fc52009-01-12 22:49:06 +00002914 if (isDeclInScope(PrevDecl, SearchDC, S)) {
Ted Kremenek40e70e72008-09-03 18:03:35 +00002915 // The tag name clashes with a namespace name, issue an error and
2916 // recover by making this tag be anonymous.
Chris Lattner65cae292008-11-19 08:23:25 +00002917 Diag(NameLoc, diag::err_redefinition_different_kind) << Name;
Chris Lattner1336cab2008-11-23 23:12:31 +00002918 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Argiris Kirtzidis5beb45f2008-07-16 07:45:46 +00002919 Name = 0;
Douglas Gregorae644892008-12-15 16:32:14 +00002920 PrevDecl = 0;
2921 } else {
2922 // The existing declaration isn't relevant to us; we're in a
2923 // new scope, so clear out the previous declaration.
2924 PrevDecl = 0;
Argiris Kirtzidis5beb45f2008-07-16 07:45:46 +00002925 }
Chris Lattner4b009652007-07-25 00:24:17 +00002926 }
Douglas Gregorcab994d2009-01-09 22:42:13 +00002927 } else if (TK == TK_Reference && SS.isEmpty() && Name &&
2928 (Kind != TagDecl::TK_enum)) {
2929 // C++ [basic.scope.pdecl]p5:
2930 // -- for an elaborated-type-specifier of the form
2931 //
2932 // class-key identifier
2933 //
2934 // if the elaborated-type-specifier is used in the
2935 // decl-specifier-seq or parameter-declaration-clause of a
2936 // function defined in namespace scope, the identifier is
2937 // declared as a class-name in the namespace that contains
2938 // the declaration; otherwise, except as a friend
2939 // declaration, the identifier is declared in the smallest
2940 // non-class, non-function-prototype scope that contains the
2941 // declaration.
2942 //
2943 // C99 6.7.2.3p8 has a similar (but not identical!) provision for
2944 // C structs and unions.
2945
2946 // Find the context where we'll be declaring the tag.
Douglas Gregorb748fc52009-01-12 22:49:06 +00002947 // FIXME: We would like to maintain the current DeclContext as the
2948 // lexical context,
Douglas Gregorcab994d2009-01-09 22:42:13 +00002949 while (DC->isRecord())
2950 DC = DC->getParent();
2951 LexicalContext = DC;
2952
2953 // Find the scope where we'll be declaring the tag.
2954 while (S->isClassScope() ||
2955 (getLangOptions().CPlusPlus && S->isFunctionPrototypeScope()) ||
Douglas Gregor5eca99e2009-01-12 18:45:55 +00002956 ((S->getFlags() & Scope::DeclScope) == 0) ||
2957 (S->getEntity() &&
2958 ((DeclContext *)S->getEntity())->isTransparentContext()))
Douglas Gregorcab994d2009-01-09 22:42:13 +00002959 S = S->getParent();
Chris Lattner4b009652007-07-25 00:24:17 +00002960 }
Argiris Kirtzidis054a2632008-11-08 17:17:31 +00002961
Chris Lattner9bb9abf2008-12-17 07:13:27 +00002962CreateNewDecl:
Chris Lattner4b009652007-07-25 00:24:17 +00002963
2964 // If there is an identifier, use the location of the identifier as the
2965 // location of the decl, otherwise use the location of the struct/union
2966 // keyword.
2967 SourceLocation Loc = NameLoc.isValid() ? NameLoc : KWLoc;
2968
Douglas Gregorae644892008-12-15 16:32:14 +00002969 // Otherwise, create a new declaration. If there is a previous
2970 // declaration of the same entity, the two will be linked via
2971 // PrevDecl.
Chris Lattner4b009652007-07-25 00:24:17 +00002972 TagDecl *New;
Douglas Gregor723d3332009-01-07 00:43:41 +00002973
Argiris Kirtzidisc6cc7d52008-06-09 23:19:58 +00002974 if (Kind == TagDecl::TK_enum) {
Chris Lattner4b009652007-07-25 00:24:17 +00002975 // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
2976 // enum X { A, B, C } D; D should chain to X.
Douglas Gregorae644892008-12-15 16:32:14 +00002977 New = EnumDecl::Create(Context, DC, Loc, Name,
2978 cast_or_null<EnumDecl>(PrevDecl));
Chris Lattner4b009652007-07-25 00:24:17 +00002979 // If this is an undefined enum, warn.
2980 if (TK != TK_Definition) Diag(Loc, diag::ext_forward_ref_enum);
Argiris Kirtzidisc6cc7d52008-06-09 23:19:58 +00002981 } else {
2982 // struct/union/class
2983
Chris Lattner4b009652007-07-25 00:24:17 +00002984 // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
2985 // struct X { int A; } D; D should chain to X.
Argiris Kirtzidis38f16712008-07-01 10:37:29 +00002986 if (getLangOptions().CPlusPlus)
Ted Kremenek770b11d2008-09-05 17:39:33 +00002987 // FIXME: Look for a way to use RecordDecl for simple structs.
Douglas Gregorae644892008-12-15 16:32:14 +00002988 New = CXXRecordDecl::Create(Context, Kind, DC, Loc, Name,
2989 cast_or_null<CXXRecordDecl>(PrevDecl));
Argiris Kirtzidis38f16712008-07-01 10:37:29 +00002990 else
Douglas Gregorae644892008-12-15 16:32:14 +00002991 New = RecordDecl::Create(Context, Kind, DC, Loc, Name,
2992 cast_or_null<RecordDecl>(PrevDecl));
Argiris Kirtzidis38f16712008-07-01 10:37:29 +00002993 }
Douglas Gregorae644892008-12-15 16:32:14 +00002994
2995 if (Kind != TagDecl::TK_enum) {
2996 // Handle #pragma pack: if the #pragma pack stack has non-default
2997 // alignment, make up a packed attribute for this decl. These
2998 // attributes are checked when the ASTContext lays out the
2999 // structure.
3000 //
3001 // It is important for implementing the correct semantics that this
3002 // happen here (in act on tag decl). The #pragma pack stack is
3003 // maintained as a result of parser callbacks which can occur at
3004 // many points during the parsing of a struct declaration (because
3005 // the #pragma tokens are effectively skipped over during the
3006 // parsing of the struct).
3007 if (unsigned Alignment = PackContext.getAlignment())
3008 New->addAttr(new PackedAttr(Alignment * 8));
3009 }
3010
3011 if (Attr)
3012 ProcessDeclAttributeList(New, Attr);
3013
Douglas Gregorcab994d2009-01-09 22:42:13 +00003014 // If we're declaring or defining
3015 if (Name && S->isFunctionPrototypeScope() && !getLangOptions().CPlusPlus)
3016 Diag(Loc, diag::warn_decl_in_param_list) << Context.getTagDeclType(New);
3017
Douglas Gregorae644892008-12-15 16:32:14 +00003018 // Set the lexical context. If the tag has a C++ scope specifier, the
3019 // lexical context will be different from the semantic context.
Douglas Gregorcab994d2009-01-09 22:42:13 +00003020 New->setLexicalDeclContext(LexicalContext);
Chris Lattner4b009652007-07-25 00:24:17 +00003021
3022 // If this has an identifier, add it to the scope stack.
3023 if (Name) {
Douglas Gregor5eca99e2009-01-12 18:45:55 +00003024 S = getNonFieldDeclScope(S);
Chris Lattnera7549902007-08-26 06:24:45 +00003025
3026 // Add it to the decl chain.
Douglas Gregorcab994d2009-01-09 22:42:13 +00003027 if (LexicalContext != CurContext) {
3028 // FIXME: PushOnScopeChains should not rely on CurContext!
3029 DeclContext *OldContext = CurContext;
3030 CurContext = LexicalContext;
3031 PushOnScopeChains(New, S);
3032 CurContext = OldContext;
3033 } else
3034 PushOnScopeChains(New, S);
Douglas Gregorb748fc52009-01-12 22:49:06 +00003035 } else {
Douglas Gregor03b2ad22009-01-12 23:27:07 +00003036 LexicalContext->addDecl(New);
Chris Lattner4b009652007-07-25 00:24:17 +00003037 }
Argiris Kirtzidis881964b2008-11-09 23:41:00 +00003038
Chris Lattner4b009652007-07-25 00:24:17 +00003039 return New;
3040}
3041
Douglas Gregordb568cf2009-01-08 20:45:30 +00003042void Sema::ActOnTagStartDefinition(Scope *S, DeclTy *TagD) {
3043 TagDecl *Tag = cast<TagDecl>((Decl *)TagD);
3044
3045 // Enter the tag context.
3046 PushDeclContext(S, Tag);
3047
3048 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Tag)) {
3049 FieldCollector->StartClass();
3050
3051 if (Record->getIdentifier()) {
3052 // C++ [class]p2:
3053 // [...] The class-name is also inserted into the scope of the
3054 // class itself; this is known as the injected-class-name. For
3055 // purposes of access checking, the injected-class-name is treated
3056 // as if it were a public member name.
3057 RecordDecl *InjectedClassName
3058 = CXXRecordDecl::Create(Context, Record->getTagKind(),
3059 CurContext, Record->getLocation(),
3060 Record->getIdentifier(), Record);
3061 InjectedClassName->setImplicit();
3062 PushOnScopeChains(InjectedClassName, S);
3063 }
3064 }
3065}
3066
3067void Sema::ActOnTagFinishDefinition(Scope *S, DeclTy *TagD) {
3068 TagDecl *Tag = cast<TagDecl>((Decl *)TagD);
3069
3070 if (isa<CXXRecordDecl>(Tag))
3071 FieldCollector->FinishClass();
3072
3073 // Exit this scope of this tag's definition.
3074 PopDeclContext();
3075
3076 // Notify the consumer that we've defined a tag.
3077 Consumer.HandleTagDeclDefinition(Tag);
3078}
Chris Lattner1bf58f62008-06-21 19:39:06 +00003079
Chris Lattnera73e2202008-11-12 21:17:48 +00003080/// TryToFixInvalidVariablyModifiedType - Helper method to turn variable array
3081/// types into constant array types in certain situations which would otherwise
3082/// be errors (for GCC compatibility).
3083static QualType TryToFixInvalidVariablyModifiedType(QualType T,
3084 ASTContext &Context) {
Eli Friedman48fb3ee2008-06-03 21:01:11 +00003085 // This method tries to turn a variable array into a constant
3086 // array even when the size isn't an ICE. This is necessary
3087 // for compatibility with code that depends on gcc's buggy
3088 // constant expression folding, like struct {char x[(int)(char*)2];}
Chris Lattnerd03be6e2008-11-12 19:48:13 +00003089 const VariableArrayType* VLATy = dyn_cast<VariableArrayType>(T);
3090 if (!VLATy) return QualType();
3091
Anders Carlsson8c3de802008-12-19 20:58:05 +00003092 Expr::EvalResult EvalResult;
Chris Lattnerd03be6e2008-11-12 19:48:13 +00003093 if (!VLATy->getSizeExpr() ||
Anders Carlsson8c3de802008-12-19 20:58:05 +00003094 !VLATy->getSizeExpr()->Evaluate(EvalResult, Context))
Chris Lattnerd03be6e2008-11-12 19:48:13 +00003095 return QualType();
3096
Anders Carlsson8c3de802008-12-19 20:58:05 +00003097 assert(EvalResult.Val.isInt() && "Size expressions must be integers!");
3098 llvm::APSInt &Res = EvalResult.Val.getInt();
Chris Lattnerd03be6e2008-11-12 19:48:13 +00003099 if (Res > llvm::APSInt(Res.getBitWidth(), Res.isUnsigned()))
3100 return Context.getConstantArrayType(VLATy->getElementType(),
3101 Res, ArrayType::Normal, 0);
Eli Friedman48fb3ee2008-06-03 21:01:11 +00003102 return QualType();
3103}
3104
Anders Carlsson108229a2008-12-06 20:33:04 +00003105bool Sema::VerifyBitField(SourceLocation FieldLoc, IdentifierInfo *FieldName,
Chris Lattner8464c372008-12-12 04:56:04 +00003106 QualType FieldTy, const Expr *BitWidth) {
Anders Carlsson108229a2008-12-06 20:33:04 +00003107 // FIXME: 6.7.2.1p4 - verify the field type.
3108
3109 llvm::APSInt Value;
3110 if (VerifyIntegerConstantExpression(BitWidth, &Value))
3111 return true;
3112
Chris Lattner8464c372008-12-12 04:56:04 +00003113 // Zero-width bitfield is ok for anonymous field.
3114 if (Value == 0 && FieldName)
3115 return Diag(FieldLoc, diag::err_bitfield_has_zero_width) << FieldName;
3116
3117 if (Value.isNegative())
3118 return Diag(FieldLoc, diag::err_bitfield_has_negative_width) << FieldName;
Anders Carlsson108229a2008-12-06 20:33:04 +00003119
3120 uint64_t TypeSize = Context.getTypeSize(FieldTy);
3121 // FIXME: We won't need the 0 size once we check that the field type is valid.
Chris Lattner8464c372008-12-12 04:56:04 +00003122 if (TypeSize && Value.getZExtValue() > TypeSize)
3123 return Diag(FieldLoc, diag::err_bitfield_width_exceeds_type_size)
3124 << FieldName << (unsigned)TypeSize;
Anders Carlsson108229a2008-12-06 20:33:04 +00003125
3126 return false;
3127}
3128
Steve Naroff0acc9c92007-09-15 18:49:24 +00003129/// ActOnField - Each field of a struct/union/class is passed into this in order
Chris Lattner4b009652007-07-25 00:24:17 +00003130/// to create a FieldDecl object for it.
Douglas Gregor8acb7272008-12-11 16:49:14 +00003131Sema::DeclTy *Sema::ActOnField(Scope *S, DeclTy *TagD,
Chris Lattner4b009652007-07-25 00:24:17 +00003132 SourceLocation DeclStart,
3133 Declarator &D, ExprTy *BitfieldWidth) {
3134 IdentifierInfo *II = D.getIdentifier();
3135 Expr *BitWidth = (Expr*)BitfieldWidth;
Chris Lattner4b009652007-07-25 00:24:17 +00003136 SourceLocation Loc = DeclStart;
Douglas Gregor8acb7272008-12-11 16:49:14 +00003137 RecordDecl *Record = (RecordDecl *)TagD;
Chris Lattner4b009652007-07-25 00:24:17 +00003138 if (II) Loc = D.getIdentifierLoc();
3139
3140 // FIXME: Unnamed fields can be handled in various different ways, for
3141 // example, unnamed unions inject all members into the struct namespace!
Chris Lattner4b009652007-07-25 00:24:17 +00003142
Chris Lattner4b009652007-07-25 00:24:17 +00003143 QualType T = GetTypeForDeclarator(D, S);
Steve Naroffd1ad6ae2007-08-28 20:14:24 +00003144 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
3145 bool InvalidDecl = false;
Sebastian Redl39c0f6f2009-01-05 20:52:13 +00003146
Chris Lattner4b009652007-07-25 00:24:17 +00003147 // C99 6.7.2.1p8: A member of a structure or union may have any type other
3148 // than a variably modified type.
Eli Friedmane0079792008-02-15 12:53:51 +00003149 if (T->isVariablyModifiedType()) {
Chris Lattnera73e2202008-11-12 21:17:48 +00003150 QualType FixedTy = TryToFixInvalidVariablyModifiedType(T, Context);
Eli Friedman48fb3ee2008-06-03 21:01:11 +00003151 if (!FixedTy.isNull()) {
Chris Lattner86be8572008-11-13 18:49:38 +00003152 Diag(Loc, diag::warn_illegal_constant_array_size);
Eli Friedman48fb3ee2008-06-03 21:01:11 +00003153 T = FixedTy;
3154 } else {
Chris Lattner86be8572008-11-13 18:49:38 +00003155 Diag(Loc, diag::err_typecheck_field_variable_size);
Chris Lattner2a884752008-11-12 19:45:49 +00003156 T = Context.IntTy;
Eli Friedman48fb3ee2008-06-03 21:01:11 +00003157 InvalidDecl = true;
3158 }
Chris Lattner4b009652007-07-25 00:24:17 +00003159 }
Anders Carlsson108229a2008-12-06 20:33:04 +00003160
3161 if (BitWidth) {
3162 if (VerifyBitField(Loc, II, T, BitWidth))
3163 InvalidDecl = true;
3164 } else {
3165 // Not a bitfield.
3166
3167 // validate II.
3168
3169 }
3170
Chris Lattner4b009652007-07-25 00:24:17 +00003171 // FIXME: Chain fielddecls together.
Argiris Kirtzidis38f16712008-07-01 10:37:29 +00003172 FieldDecl *NewFD;
3173
Douglas Gregor8acb7272008-12-11 16:49:14 +00003174 NewFD = FieldDecl::Create(Context, Record,
3175 Loc, II, T, BitWidth,
3176 D.getDeclSpec().getStorageClassSpec() ==
3177 DeclSpec::SCS_mutable,
3178 /*PrevDecl=*/0);
3179
Douglas Gregordb568cf2009-01-08 20:45:30 +00003180 if (II) {
3181 Decl *PrevDecl
3182 = LookupDecl(II, Decl::IDNS_Member, S, 0, false, false, false);
3183 if (PrevDecl && isDeclInScope(PrevDecl, CurContext, S)
3184 && !isa<TagDecl>(PrevDecl)) {
3185 Diag(Loc, diag::err_duplicate_member) << II;
3186 Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
3187 NewFD->setInvalidDecl();
3188 Record->setInvalidDecl();
3189 }
3190 }
3191
Sebastian Redl39c0f6f2009-01-05 20:52:13 +00003192 if (getLangOptions().CPlusPlus) {
Douglas Gregor605de8d2008-12-16 21:30:33 +00003193 CheckExtraCXXDefaultArguments(D);
Sebastian Redl39c0f6f2009-01-05 20:52:13 +00003194 if (!T->isPODType())
3195 cast<CXXRecordDecl>(Record)->setPOD(false);
3196 }
Douglas Gregor605de8d2008-12-16 21:30:33 +00003197
Chris Lattner9b384ca2008-06-29 00:02:00 +00003198 ProcessDeclAttributes(NewFD, D);
Anders Carlsson136cdc32008-02-16 00:29:18 +00003199
Steve Naroffd1ad6ae2007-08-28 20:14:24 +00003200 if (D.getInvalidType() || InvalidDecl)
3201 NewFD->setInvalidDecl();
Douglas Gregor8acb7272008-12-11 16:49:14 +00003202
Douglas Gregordb568cf2009-01-08 20:45:30 +00003203 if (II) {
Douglas Gregor8acb7272008-12-11 16:49:14 +00003204 PushOnScopeChains(NewFD, S);
Douglas Gregordb568cf2009-01-08 20:45:30 +00003205 } else
Douglas Gregor03b2ad22009-01-12 23:27:07 +00003206 Record->addDecl(NewFD);
Douglas Gregor8acb7272008-12-11 16:49:14 +00003207
Steve Naroffd1ad6ae2007-08-28 20:14:24 +00003208 return NewFD;
Chris Lattner4b009652007-07-25 00:24:17 +00003209}
3210
Fariborz Jahanianbec0d562007-10-01 16:53:59 +00003211/// TranslateIvarVisibility - Translate visibility from a token ID to an
3212/// AST enum value.
Ted Kremenek42730c52008-01-07 19:49:32 +00003213static ObjCIvarDecl::AccessControl
Fariborz Jahanianbec0d562007-10-01 16:53:59 +00003214TranslateIvarVisibility(tok::ObjCKeywordKind ivarVisibility) {
Steve Naroffffeaa552007-09-14 23:09:53 +00003215 switch (ivarVisibility) {
Chris Lattner504c5432008-10-12 00:28:42 +00003216 default: assert(0 && "Unknown visitibility kind");
3217 case tok::objc_private: return ObjCIvarDecl::Private;
3218 case tok::objc_public: return ObjCIvarDecl::Public;
3219 case tok::objc_protected: return ObjCIvarDecl::Protected;
3220 case tok::objc_package: return ObjCIvarDecl::Package;
Steve Naroffffeaa552007-09-14 23:09:53 +00003221 }
3222}
3223
Fariborz Jahanian4e0bb982008-04-11 16:55:42 +00003224/// ActOnIvar - Each ivar field of an objective-c class is passed into this
3225/// in order to create an IvarDecl object for it.
Fariborz Jahanian751c6172008-04-10 23:32:45 +00003226Sema::DeclTy *Sema::ActOnIvar(Scope *S,
Fariborz Jahanian4e0bb982008-04-11 16:55:42 +00003227 SourceLocation DeclStart,
3228 Declarator &D, ExprTy *BitfieldWidth,
3229 tok::ObjCKeywordKind Visibility) {
Douglas Gregordb568cf2009-01-08 20:45:30 +00003230
Fariborz Jahanian751c6172008-04-10 23:32:45 +00003231 IdentifierInfo *II = D.getIdentifier();
3232 Expr *BitWidth = (Expr*)BitfieldWidth;
3233 SourceLocation Loc = DeclStart;
3234 if (II) Loc = D.getIdentifierLoc();
3235
3236 // FIXME: Unnamed fields can be handled in various different ways, for
3237 // example, unnamed unions inject all members into the struct namespace!
3238
Anders Carlsson108229a2008-12-06 20:33:04 +00003239 QualType T = GetTypeForDeclarator(D, S);
3240 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
3241 bool InvalidDecl = false;
Fariborz Jahanian751c6172008-04-10 23:32:45 +00003242
3243 if (BitWidth) {
3244 // TODO: Validate.
3245 //printf("WARNING: BITFIELDS IGNORED!\n");
3246
3247 // 6.7.2.1p3
3248 // 6.7.2.1p4
3249
3250 } else {
3251 // Not a bitfield.
3252
3253 // validate II.
3254
3255 }
3256
Fariborz Jahanian751c6172008-04-10 23:32:45 +00003257 // C99 6.7.2.1p8: A member of a structure or union may have any type other
3258 // than a variably modified type.
3259 if (T->isVariablyModifiedType()) {
Anders Carlsson68adbd12008-12-07 00:20:55 +00003260 Diag(Loc, diag::err_typecheck_ivar_variable_size);
Fariborz Jahanian751c6172008-04-10 23:32:45 +00003261 InvalidDecl = true;
3262 }
3263
Ted Kremenek173dd312008-07-23 18:04:17 +00003264 // Get the visibility (access control) for this ivar.
3265 ObjCIvarDecl::AccessControl ac =
3266 Visibility != tok::objc_not_keyword ? TranslateIvarVisibility(Visibility)
3267 : ObjCIvarDecl::None;
3268
3269 // Construct the decl.
3270 ObjCIvarDecl *NewID = ObjCIvarDecl::Create(Context, Loc, II, T, ac,
Steve Naroffd3354222008-07-16 18:22:22 +00003271 (Expr *)BitfieldWidth);
Fariborz Jahanian751c6172008-04-10 23:32:45 +00003272
Douglas Gregordb568cf2009-01-08 20:45:30 +00003273 if (II) {
3274 Decl *PrevDecl
3275 = LookupDecl(II, Decl::IDNS_Member, S, 0, false, false, false);
3276 if (PrevDecl && isDeclInScope(PrevDecl, CurContext, S)
3277 && !isa<TagDecl>(PrevDecl)) {
3278 Diag(Loc, diag::err_duplicate_member) << II;
3279 Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
3280 NewID->setInvalidDecl();
3281 }
3282 }
3283
Ted Kremenek173dd312008-07-23 18:04:17 +00003284 // Process attributes attached to the ivar.
Chris Lattner9b384ca2008-06-29 00:02:00 +00003285 ProcessDeclAttributes(NewID, D);
Fariborz Jahanian751c6172008-04-10 23:32:45 +00003286
3287 if (D.getInvalidType() || InvalidDecl)
3288 NewID->setInvalidDecl();
Ted Kremenek173dd312008-07-23 18:04:17 +00003289
Douglas Gregordb568cf2009-01-08 20:45:30 +00003290 if (II) {
3291 // FIXME: When interfaces are DeclContexts, we'll need to add
3292 // these to the interface.
3293 S->AddDecl(NewID);
3294 IdResolver.AddDecl(NewID);
3295 }
3296
Fariborz Jahanian751c6172008-04-10 23:32:45 +00003297 return NewID;
3298}
3299
Fariborz Jahanian0c5affb2007-09-29 00:54:24 +00003300void Sema::ActOnFields(Scope* S,
Fariborz Jahaniancbc36d42007-10-04 00:45:27 +00003301 SourceLocation RecLoc, DeclTy *RecDecl,
Steve Naroff0acc9c92007-09-15 18:49:24 +00003302 DeclTy **Fields, unsigned NumFields,
Daniel Dunbarf3944442008-10-03 02:03:53 +00003303 SourceLocation LBrac, SourceLocation RBrac,
Daniel Dunbar175e6392008-10-03 17:33:35 +00003304 AttributeList *Attr) {
Steve Naroff9bb759f2007-09-14 22:20:54 +00003305 Decl *EnclosingDecl = static_cast<Decl*>(RecDecl);
3306 assert(EnclosingDecl && "missing record or interface decl");
3307 RecordDecl *Record = dyn_cast<RecordDecl>(EnclosingDecl);
3308
Douglas Gregordb568cf2009-01-08 20:45:30 +00003309 if (Record) {
3310 QualType RecordType = Context.getTypeDeclType(Record);
3311 if (RecordType->getAsRecordType()->getDecl()->isDefinition()) {
3312 RecordDecl *Def = RecordType->getAsRecordType()->getDecl();
Ted Kremenek46a837c2008-09-05 17:16:31 +00003313 // Diagnose code like:
3314 // struct S { struct S {} X; };
3315 // We discover this when we complete the outer S. Reject and ignore the
3316 // outer S.
Douglas Gregordb568cf2009-01-08 20:45:30 +00003317 Diag(Def->getLocation(), diag::err_nested_redefinition)
3318 << Def->getDeclName();
Chris Lattner1336cab2008-11-23 23:12:31 +00003319 Diag(RecLoc, diag::note_previous_definition);
Ted Kremenek46a837c2008-09-05 17:16:31 +00003320 Record->setInvalidDecl();
3321 return;
3322 }
Douglas Gregordb568cf2009-01-08 20:45:30 +00003323 }
Ted Kremenek46a837c2008-09-05 17:16:31 +00003324
Chris Lattner4b009652007-07-25 00:24:17 +00003325 // Verify that all the fields are okay.
3326 unsigned NumNamedMembers = 0;
3327 llvm::SmallVector<FieldDecl*, 32> RecFields;
Douglas Gregorc7f01612009-01-07 19:46:03 +00003328
Chris Lattner4b009652007-07-25 00:24:17 +00003329 for (unsigned i = 0; i != NumFields; ++i) {
Steve Naroff9bb759f2007-09-14 22:20:54 +00003330 FieldDecl *FD = cast_or_null<FieldDecl>(static_cast<Decl*>(Fields[i]));
3331 assert(FD && "missing field decl");
3332
Chris Lattner4b009652007-07-25 00:24:17 +00003333 // Get the type for the field.
Chris Lattner36be3d82007-07-31 21:33:24 +00003334 Type *FDTy = FD->getType().getTypePtr();
Douglas Gregorc7f01612009-01-07 19:46:03 +00003335
Douglas Gregordb568cf2009-01-08 20:45:30 +00003336 if (!FD->isAnonymousStructOrUnion()) {
Douglas Gregorc7f01612009-01-07 19:46:03 +00003337 // Remember all fields written by the user.
3338 RecFields.push_back(FD);
3339 }
Steve Naroffffeaa552007-09-14 23:09:53 +00003340
Chris Lattner4b009652007-07-25 00:24:17 +00003341 // C99 6.7.2.1p2 - A field may not be a function type.
Chris Lattner36be3d82007-07-31 21:33:24 +00003342 if (FDTy->isFunctionType()) {
Chris Lattner10f2c2e2008-11-20 06:38:18 +00003343 Diag(FD->getLocation(), diag::err_field_declared_as_function)
Chris Lattner271d4c22008-11-24 05:29:24 +00003344 << FD->getDeclName();
Steve Naroff9bb759f2007-09-14 22:20:54 +00003345 FD->setInvalidDecl();
3346 EnclosingDecl->setInvalidDecl();
Chris Lattner4b009652007-07-25 00:24:17 +00003347 continue;
3348 }
Chris Lattner4b009652007-07-25 00:24:17 +00003349 // C99 6.7.2.1p2 - A field may not be an incomplete type except...
3350 if (FDTy->isIncompleteType()) {
Fariborz Jahanian023a4392007-09-14 16:27:55 +00003351 if (!Record) { // Incomplete ivar type is always an error.
Chris Lattner271d4c22008-11-24 05:29:24 +00003352 Diag(FD->getLocation(), diag::err_field_incomplete) <<FD->getDeclName();
Steve Naroff9bb759f2007-09-14 22:20:54 +00003353 FD->setInvalidDecl();
3354 EnclosingDecl->setInvalidDecl();
Fariborz Jahaniancbc36d42007-10-04 00:45:27 +00003355 continue;
Fariborz Jahanian023a4392007-09-14 16:27:55 +00003356 }
Chris Lattner4b009652007-07-25 00:24:17 +00003357 if (i != NumFields-1 || // ... that the last member ...
Argiris Kirtzidisc6cc7d52008-06-09 23:19:58 +00003358 !Record->isStruct() || // ... of a structure ...
Chris Lattner36be3d82007-07-31 21:33:24 +00003359 !FDTy->isArrayType()) { //... may have incomplete array type.
Chris Lattner271d4c22008-11-24 05:29:24 +00003360 Diag(FD->getLocation(), diag::err_field_incomplete) <<FD->getDeclName();
Steve Naroff9bb759f2007-09-14 22:20:54 +00003361 FD->setInvalidDecl();
3362 EnclosingDecl->setInvalidDecl();
Chris Lattner4b009652007-07-25 00:24:17 +00003363 continue;
3364 }
Fariborz Jahanian023a4392007-09-14 16:27:55 +00003365 if (NumNamedMembers < 1) { //... must have more than named member ...
Chris Lattner10f2c2e2008-11-20 06:38:18 +00003366 Diag(FD->getLocation(), diag::err_flexible_array_empty_struct)
Chris Lattner271d4c22008-11-24 05:29:24 +00003367 << FD->getDeclName();
Steve Naroff9bb759f2007-09-14 22:20:54 +00003368 FD->setInvalidDecl();
3369 EnclosingDecl->setInvalidDecl();
Chris Lattner4b009652007-07-25 00:24:17 +00003370 continue;
3371 }
Chris Lattner4b009652007-07-25 00:24:17 +00003372 // Okay, we have a legal flexible array member at the end of the struct.
Fariborz Jahanian023a4392007-09-14 16:27:55 +00003373 if (Record)
3374 Record->setHasFlexibleArrayMember(true);
Chris Lattner4b009652007-07-25 00:24:17 +00003375 }
Chris Lattner4b009652007-07-25 00:24:17 +00003376 /// C99 6.7.2.1p2 - a struct ending in a flexible array member cannot be the
3377 /// field of another structure or the element of an array.
Chris Lattner36be3d82007-07-31 21:33:24 +00003378 if (const RecordType *FDTTy = FDTy->getAsRecordType()) {
Chris Lattner4b009652007-07-25 00:24:17 +00003379 if (FDTTy->getDecl()->hasFlexibleArrayMember()) {
3380 // If this is a member of a union, then entire union becomes "flexible".
Argiris Kirtzidisc6cc7d52008-06-09 23:19:58 +00003381 if (Record && Record->isUnion()) {
Chris Lattner4b009652007-07-25 00:24:17 +00003382 Record->setHasFlexibleArrayMember(true);
3383 } else {
3384 // If this is a struct/class and this is not the last element, reject
3385 // it. Note that GCC supports variable sized arrays in the middle of
3386 // structures.
3387 if (i != NumFields-1) {
Chris Lattner10f2c2e2008-11-20 06:38:18 +00003388 Diag(FD->getLocation(), diag::err_variable_sized_type_in_struct)
Chris Lattner271d4c22008-11-24 05:29:24 +00003389 << FD->getDeclName();
Steve Naroff9bb759f2007-09-14 22:20:54 +00003390 FD->setInvalidDecl();
3391 EnclosingDecl->setInvalidDecl();
Chris Lattner4b009652007-07-25 00:24:17 +00003392 continue;
3393 }
Chris Lattner4b009652007-07-25 00:24:17 +00003394 // We support flexible arrays at the end of structs in other structs
3395 // as an extension.
Chris Lattner10f2c2e2008-11-20 06:38:18 +00003396 Diag(FD->getLocation(), diag::ext_flexible_array_in_struct)
Chris Lattner271d4c22008-11-24 05:29:24 +00003397 << FD->getDeclName();
Fariborz Jahaniancbc36d42007-10-04 00:45:27 +00003398 if (Record)
Fariborz Jahanian023a4392007-09-14 16:27:55 +00003399 Record->setHasFlexibleArrayMember(true);
Chris Lattner4b009652007-07-25 00:24:17 +00003400 }
3401 }
3402 }
Fariborz Jahanian550e0502007-10-12 22:10:42 +00003403 /// A field cannot be an Objective-c object
Ted Kremenek42730c52008-01-07 19:49:32 +00003404 if (FDTy->isObjCInterfaceType()) {
Chris Lattner10f2c2e2008-11-20 06:38:18 +00003405 Diag(FD->getLocation(), diag::err_statically_allocated_object)
Chris Lattnerb1753422008-11-23 21:45:46 +00003406 << FD->getDeclName();
Fariborz Jahanian550e0502007-10-12 22:10:42 +00003407 FD->setInvalidDecl();
3408 EnclosingDecl->setInvalidDecl();
3409 continue;
3410 }
Chris Lattner4b009652007-07-25 00:24:17 +00003411 // Keep track of the number of named members.
Douglas Gregordb568cf2009-01-08 20:45:30 +00003412 if (FD->getIdentifier())
Chris Lattner4b009652007-07-25 00:24:17 +00003413 ++NumNamedMembers;
Chris Lattner4b009652007-07-25 00:24:17 +00003414 }
Sebastian Redl39c0f6f2009-01-05 20:52:13 +00003415
Chris Lattner4b009652007-07-25 00:24:17 +00003416 // Okay, we successfully defined 'Record'.
Chris Lattner33aad6e2008-02-06 00:51:33 +00003417 if (Record) {
Douglas Gregor8acb7272008-12-11 16:49:14 +00003418 Record->completeDefinition(Context);
Chris Lattner33aad6e2008-02-06 00:51:33 +00003419 } else {
Chris Lattner1100cfb2008-02-05 22:40:55 +00003420 ObjCIvarDecl **ClsFields = reinterpret_cast<ObjCIvarDecl**>(&RecFields[0]);
Fariborz Jahanian624921a2008-12-13 20:28:25 +00003421 if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(EnclosingDecl)) {
Chris Lattner1100cfb2008-02-05 22:40:55 +00003422 ID->addInstanceVariablesToClass(ClsFields, RecFields.size(), RBrac);
Fariborz Jahanian0c067092008-12-16 01:08:35 +00003423 // Must enforce the rule that ivars in the base classes may not be
3424 // duplicates.
Fariborz Jahanian2004fb62008-12-17 22:21:44 +00003425 if (ID->getSuperClass()) {
3426 for (ObjCInterfaceDecl::ivar_iterator IVI = ID->ivar_begin(),
3427 IVE = ID->ivar_end(); IVI != IVE; ++IVI) {
3428 ObjCIvarDecl* Ivar = (*IVI);
3429 IdentifierInfo *II = Ivar->getIdentifier();
3430 ObjCIvarDecl* prevIvar = ID->getSuperClass()->FindIvarDeclaration(II);
3431 if (prevIvar) {
3432 Diag(Ivar->getLocation(), diag::err_duplicate_member) << II;
Douglas Gregordb568cf2009-01-08 20:45:30 +00003433 Diag(prevIvar->getLocation(), diag::note_previous_declaration);
Fariborz Jahanian0c067092008-12-16 01:08:35 +00003434 }
Fariborz Jahanian2004fb62008-12-17 22:21:44 +00003435 }
Fariborz Jahanian0c067092008-12-16 01:08:35 +00003436 }
Fariborz Jahanian624921a2008-12-13 20:28:25 +00003437 }
Chris Lattner1100cfb2008-02-05 22:40:55 +00003438 else if (ObjCImplementationDecl *IMPDecl =
3439 dyn_cast<ObjCImplementationDecl>(EnclosingDecl)) {
Ted Kremenek42730c52008-01-07 19:49:32 +00003440 assert(IMPDecl && "ActOnFields - missing ObjCImplementationDecl");
3441 IMPDecl->ObjCAddInstanceVariablesToClassImpl(ClsFields, RecFields.size());
Fariborz Jahanian87093732007-10-31 18:48:14 +00003442 CheckImplementationIvars(IMPDecl, ClsFields, RecFields.size(), RBrac);
Fariborz Jahaniand34caf92007-09-26 18:27:25 +00003443 }
Fariborz Jahanianebcc9b62007-09-14 21:08:27 +00003444 }
Daniel Dunbar175e6392008-10-03 17:33:35 +00003445
3446 if (Attr)
3447 ProcessDeclAttributeList(Record, Attr);
Chris Lattner4b009652007-07-25 00:24:17 +00003448}
3449
Steve Naroff0acc9c92007-09-15 18:49:24 +00003450Sema::DeclTy *Sema::ActOnEnumConstant(Scope *S, DeclTy *theEnumDecl,
Chris Lattner4b009652007-07-25 00:24:17 +00003451 DeclTy *lastEnumConst,
3452 SourceLocation IdLoc, IdentifierInfo *Id,
3453 SourceLocation EqualLoc, ExprTy *val) {
Chris Lattnereee57c02008-04-04 06:12:32 +00003454 EnumDecl *TheEnumDecl = cast<EnumDecl>(static_cast<Decl*>(theEnumDecl));
Chris Lattner4b009652007-07-25 00:24:17 +00003455 EnumConstantDecl *LastEnumConst =
3456 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(lastEnumConst));
3457 Expr *Val = static_cast<Expr*>(val);
3458
Chris Lattnera7549902007-08-26 06:24:45 +00003459 // The scope passed in may not be a decl scope. Zip up the scope tree until
3460 // we find one that is.
Douglas Gregor5eca99e2009-01-12 18:45:55 +00003461 S = getNonFieldDeclScope(S);
Chris Lattnera7549902007-08-26 06:24:45 +00003462
Chris Lattner4b009652007-07-25 00:24:17 +00003463 // Verify that there isn't already something declared with this name in this
3464 // scope.
Douglas Gregordd861062008-12-05 18:15:24 +00003465 Decl *PrevDecl = LookupDecl(Id, Decl::IDNS_Ordinary, S);
Douglas Gregor2715a1f2008-12-08 18:40:42 +00003466 if (PrevDecl && PrevDecl->isTemplateParameter()) {
Douglas Gregordd861062008-12-05 18:15:24 +00003467 // Maybe we will complain about the shadowed template parameter.
3468 DiagnoseTemplateParameterShadow(IdLoc, PrevDecl);
3469 // Just pretend that we didn't see the previous declaration.
3470 PrevDecl = 0;
3471 }
3472
3473 if (PrevDecl) {
Argiris Kirtzidis4f071ec2008-07-16 21:01:53 +00003474 // When in C++, we may get a TagDecl with the same name; in this case the
3475 // enum constant will 'hide' the tag.
3476 assert((getLangOptions().CPlusPlus || !isa<TagDecl>(PrevDecl)) &&
3477 "Received TagDecl when not in C++!");
Argiris Kirtzidis90842b62008-09-09 21:18:04 +00003478 if (!isa<TagDecl>(PrevDecl) && isDeclInScope(PrevDecl, CurContext, S)) {
Chris Lattner4b009652007-07-25 00:24:17 +00003479 if (isa<EnumConstantDecl>(PrevDecl))
Chris Lattner65cae292008-11-19 08:23:25 +00003480 Diag(IdLoc, diag::err_redefinition_of_enumerator) << Id;
Chris Lattner4b009652007-07-25 00:24:17 +00003481 else
Chris Lattner65cae292008-11-19 08:23:25 +00003482 Diag(IdLoc, diag::err_redefinition) << Id;
Chris Lattner1336cab2008-11-23 23:12:31 +00003483 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Chris Lattner6ea9bd42008-02-26 00:33:57 +00003484 delete Val;
Chris Lattner4b009652007-07-25 00:24:17 +00003485 return 0;
3486 }
3487 }
3488
3489 llvm::APSInt EnumVal(32);
3490 QualType EltTy;
3491 if (Val) {
Chris Lattner2cda8792007-08-27 21:16:18 +00003492 // Make sure to promote the operand type to int.
3493 UsualUnaryConversions(Val);
3494
Chris Lattner4b009652007-07-25 00:24:17 +00003495 // C99 6.7.2.2p2: Make sure we have an integer constant expression.
3496 SourceLocation ExpLoc;
Anders Carlsson5374c6b2008-12-05 16:33:57 +00003497 if (VerifyIntegerConstantExpression(Val, &EnumVal)) {
Chris Lattner6ea9bd42008-02-26 00:33:57 +00003498 delete Val;
Chris Lattnere7f53a42007-08-27 17:37:24 +00003499 Val = 0; // Just forget about it.
Chris Lattner7cea0552007-08-29 16:03:41 +00003500 } else {
3501 EltTy = Val->getType();
Chris Lattner4b009652007-07-25 00:24:17 +00003502 }
Chris Lattnere7f53a42007-08-27 17:37:24 +00003503 }
3504
3505 if (!Val) {
3506 if (LastEnumConst) {
3507 // Assign the last value + 1.
3508 EnumVal = LastEnumConst->getInitVal();
3509 ++EnumVal;
Chris Lattner2cda8792007-08-27 21:16:18 +00003510
3511 // Check for overflow on increment.
3512 if (EnumVal < LastEnumConst->getInitVal())
3513 Diag(IdLoc, diag::warn_enum_value_overflow);
3514
Chris Lattnere7f53a42007-08-27 17:37:24 +00003515 EltTy = LastEnumConst->getType();
3516 } else {
3517 // First value, set to zero.
3518 EltTy = Context.IntTy;
Chris Lattner8cd0e932008-03-05 18:54:05 +00003519 EnumVal.zextOrTrunc(static_cast<uint32_t>(Context.getTypeSize(EltTy)));
Chris Lattnere7f53a42007-08-27 17:37:24 +00003520 }
Chris Lattner4b009652007-07-25 00:24:17 +00003521 }
3522
Chris Lattnere4650482008-03-15 06:12:44 +00003523 EnumConstantDecl *New =
Chris Lattnereee57c02008-04-04 06:12:32 +00003524 EnumConstantDecl::Create(Context, TheEnumDecl, IdLoc, Id, EltTy,
3525 Val, EnumVal,
Chris Lattner58114f02008-03-15 21:32:50 +00003526 LastEnumConst);
Chris Lattner4b009652007-07-25 00:24:17 +00003527
3528 // Register this decl in the current scope stack.
Argiris Kirtzidis951f25b2008-04-12 00:47:19 +00003529 PushOnScopeChains(New, S);
Douglas Gregor0c3ab042008-12-17 02:04:30 +00003530
Chris Lattner4b009652007-07-25 00:24:17 +00003531 return New;
3532}
3533
Steve Naroffb0726b82008-08-07 14:08:16 +00003534// FIXME: For consistency with ActOnFields(), we should have the parser
3535// pass in the source location for the left/right braces.
Steve Naroff0acc9c92007-09-15 18:49:24 +00003536void Sema::ActOnEnumBody(SourceLocation EnumLoc, DeclTy *EnumDeclX,
Chris Lattner4b009652007-07-25 00:24:17 +00003537 DeclTy **Elements, unsigned NumElements) {
3538 EnumDecl *Enum = cast<EnumDecl>(static_cast<Decl*>(EnumDeclX));
Douglas Gregord8028382009-01-05 19:45:36 +00003539 QualType EnumType = Context.getTypeDeclType(Enum);
Chris Lattner4b009652007-07-25 00:24:17 +00003540
Douglas Gregord8028382009-01-05 19:45:36 +00003541 if (EnumType->getAsEnumType()->getDecl()->isDefinition()) {
3542 EnumDecl *Def = EnumType->getAsEnumType()->getDecl();
3543 // Diagnose code like:
3544 // enum e0 {
3545 // E0 = sizeof(enum e0 { E1 })
3546 // };
3547 Diag(Def->getLocation(), diag::err_nested_redefinition)
3548 << Enum->getDeclName();
3549 Diag(Enum->getLocation(), diag::note_previous_definition);
3550 Enum->setInvalidDecl();
Douglas Gregord8028382009-01-05 19:45:36 +00003551 return;
Steve Naroffb0726b82008-08-07 14:08:16 +00003552 }
Douglas Gregord8028382009-01-05 19:45:36 +00003553
Chris Lattner435c3fd2007-08-28 05:10:31 +00003554 // TODO: If the result value doesn't fit in an int, it must be a long or long
3555 // long value. ISO C does not support this, but GCC does as an extension,
3556 // emit a warning.
Chris Lattner8cd0e932008-03-05 18:54:05 +00003557 unsigned IntWidth = Context.Target.getIntWidth();
Chris Lattner435c3fd2007-08-28 05:10:31 +00003558
Chris Lattner206754a2007-08-28 06:15:15 +00003559 // Verify that all the values are okay, compute the size of the values, and
3560 // reverse the list.
3561 unsigned NumNegativeBits = 0;
3562 unsigned NumPositiveBits = 0;
3563
3564 // Keep track of whether all elements have type int.
3565 bool AllElementsInt = true;
3566
Chris Lattner4b009652007-07-25 00:24:17 +00003567 for (unsigned i = 0; i != NumElements; ++i) {
3568 EnumConstantDecl *ECD =
3569 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(Elements[i]));
3570 if (!ECD) continue; // Already issued a diagnostic.
Chris Lattnercb33ae12007-08-28 05:27:00 +00003571
3572 // If the enum value doesn't fit in an int, emit an extension warning.
Chris Lattnercb33ae12007-08-28 05:27:00 +00003573 const llvm::APSInt &InitVal = ECD->getInitVal();
Chris Lattner6ea9bd42008-02-26 00:33:57 +00003574 assert(InitVal.getBitWidth() >= IntWidth &&
3575 "Should have promoted value to int");
Chris Lattnercb33ae12007-08-28 05:27:00 +00003576 if (InitVal.getBitWidth() > IntWidth) {
3577 llvm::APSInt V(InitVal);
3578 V.trunc(IntWidth);
3579 V.extend(InitVal.getBitWidth());
3580 if (V != InitVal)
Chris Lattner10f2c2e2008-11-20 06:38:18 +00003581 Diag(ECD->getLocation(), diag::ext_enum_value_not_int)
3582 << InitVal.toString(10);
Chris Lattnercb33ae12007-08-28 05:27:00 +00003583 }
Chris Lattner206754a2007-08-28 06:15:15 +00003584
3585 // Keep track of the size of positive and negative values.
Chris Lattner6ea9bd42008-02-26 00:33:57 +00003586 if (InitVal.isUnsigned() || InitVal.isNonNegative())
Chris Lattneraff63f02008-01-14 21:47:29 +00003587 NumPositiveBits = std::max(NumPositiveBits,
3588 (unsigned)InitVal.getActiveBits());
Chris Lattner206754a2007-08-28 06:15:15 +00003589 else
Chris Lattneraff63f02008-01-14 21:47:29 +00003590 NumNegativeBits = std::max(NumNegativeBits,
3591 (unsigned)InitVal.getMinSignedBits());
Chris Lattner4b009652007-07-25 00:24:17 +00003592
Chris Lattner206754a2007-08-28 06:15:15 +00003593 // Keep track of whether every enum element has type int (very commmon).
3594 if (AllElementsInt)
3595 AllElementsInt = ECD->getType() == Context.IntTy;
Chris Lattner4b009652007-07-25 00:24:17 +00003596 }
3597
Chris Lattner206754a2007-08-28 06:15:15 +00003598 // Figure out the type that should be used for this enum.
3599 // FIXME: Support attribute(packed) on enums and -fshort-enums.
3600 QualType BestType;
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003601 unsigned BestWidth;
Chris Lattner206754a2007-08-28 06:15:15 +00003602
3603 if (NumNegativeBits) {
3604 // If there is a negative value, figure out the smallest integer type (of
3605 // int/long/longlong) that fits.
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003606 if (NumNegativeBits <= IntWidth && NumPositiveBits < IntWidth) {
Chris Lattner206754a2007-08-28 06:15:15 +00003607 BestType = Context.IntTy;
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003608 BestWidth = IntWidth;
3609 } else {
Chris Lattner8cd0e932008-03-05 18:54:05 +00003610 BestWidth = Context.Target.getLongWidth();
Ted Kremenekd7f64cd2007-12-12 22:39:36 +00003611
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003612 if (NumNegativeBits <= BestWidth && NumPositiveBits < BestWidth)
Chris Lattner206754a2007-08-28 06:15:15 +00003613 BestType = Context.LongTy;
3614 else {
Chris Lattner8cd0e932008-03-05 18:54:05 +00003615 BestWidth = Context.Target.getLongLongWidth();
Ted Kremenekd7f64cd2007-12-12 22:39:36 +00003616
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003617 if (NumNegativeBits > BestWidth || NumPositiveBits >= BestWidth)
Chris Lattner206754a2007-08-28 06:15:15 +00003618 Diag(Enum->getLocation(), diag::warn_enum_too_large);
3619 BestType = Context.LongLongTy;
3620 }
3621 }
3622 } else {
3623 // If there is no negative value, figure out which of uint, ulong, ulonglong
3624 // fits.
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003625 if (NumPositiveBits <= IntWidth) {
Chris Lattner206754a2007-08-28 06:15:15 +00003626 BestType = Context.UnsignedIntTy;
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003627 BestWidth = IntWidth;
3628 } else if (NumPositiveBits <=
Chris Lattner8cd0e932008-03-05 18:54:05 +00003629 (BestWidth = Context.Target.getLongWidth())) {
Chris Lattner206754a2007-08-28 06:15:15 +00003630 BestType = Context.UnsignedLongTy;
Chris Lattner8cd0e932008-03-05 18:54:05 +00003631 } else {
3632 BestWidth = Context.Target.getLongLongWidth();
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003633 assert(NumPositiveBits <= BestWidth &&
Chris Lattner206754a2007-08-28 06:15:15 +00003634 "How could an initializer get larger than ULL?");
3635 BestType = Context.UnsignedLongLongTy;
3636 }
3637 }
3638
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003639 // Loop over all of the enumerator constants, changing their types to match
3640 // the type of the enum if needed.
3641 for (unsigned i = 0; i != NumElements; ++i) {
3642 EnumConstantDecl *ECD =
3643 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(Elements[i]));
3644 if (!ECD) continue; // Already issued a diagnostic.
3645
3646 // Standard C says the enumerators have int type, but we allow, as an
3647 // extension, the enumerators to be larger than int size. If each
3648 // enumerator value fits in an int, type it as an int, otherwise type it the
3649 // same as the enumerator decl itself. This means that in "enum { X = 1U }"
3650 // that X has type 'int', not 'unsigned'.
Chris Lattner6ea9bd42008-02-26 00:33:57 +00003651 if (ECD->getType() == Context.IntTy) {
3652 // Make sure the init value is signed.
3653 llvm::APSInt IV = ECD->getInitVal();
3654 IV.setIsSigned(true);
3655 ECD->setInitVal(IV);
Douglas Gregor6b5e34f2008-12-12 02:00:36 +00003656
3657 if (getLangOptions().CPlusPlus)
3658 // C++ [dcl.enum]p4: Following the closing brace of an
3659 // enum-specifier, each enumerator has the type of its
3660 // enumeration.
3661 ECD->setType(EnumType);
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003662 continue; // Already int type.
Chris Lattner6ea9bd42008-02-26 00:33:57 +00003663 }
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003664
3665 // Determine whether the value fits into an int.
3666 llvm::APSInt InitVal = ECD->getInitVal();
3667 bool FitsInInt;
3668 if (InitVal.isUnsigned() || !InitVal.isNegative())
3669 FitsInInt = InitVal.getActiveBits() < IntWidth;
3670 else
3671 FitsInInt = InitVal.getMinSignedBits() <= IntWidth;
3672
3673 // If it fits into an integer type, force it. Otherwise force it to match
3674 // the enum decl type.
3675 QualType NewTy;
3676 unsigned NewWidth;
3677 bool NewSign;
3678 if (FitsInInt) {
3679 NewTy = Context.IntTy;
3680 NewWidth = IntWidth;
3681 NewSign = true;
3682 } else if (ECD->getType() == BestType) {
3683 // Already the right type!
Douglas Gregor6b5e34f2008-12-12 02:00:36 +00003684 if (getLangOptions().CPlusPlus)
3685 // C++ [dcl.enum]p4: Following the closing brace of an
3686 // enum-specifier, each enumerator has the type of its
3687 // enumeration.
3688 ECD->setType(EnumType);
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003689 continue;
3690 } else {
3691 NewTy = BestType;
3692 NewWidth = BestWidth;
3693 NewSign = BestType->isSignedIntegerType();
3694 }
3695
3696 // Adjust the APSInt value.
3697 InitVal.extOrTrunc(NewWidth);
3698 InitVal.setIsSigned(NewSign);
3699 ECD->setInitVal(InitVal);
3700
3701 // Adjust the Expr initializer and type.
Chris Lattner8c6dc7a2009-01-15 19:19:42 +00003702 if (ECD->getInitExpr())
3703 ECD->setInitExpr(new ImplicitCastExpr(NewTy, ECD->getInitExpr(),
3704 /*isLvalue=*/false));
Douglas Gregor6b5e34f2008-12-12 02:00:36 +00003705 if (getLangOptions().CPlusPlus)
3706 // C++ [dcl.enum]p4: Following the closing brace of an
3707 // enum-specifier, each enumerator has the type of its
3708 // enumeration.
3709 ECD->setType(EnumType);
3710 else
3711 ECD->setType(NewTy);
Chris Lattnerca01d0a2007-08-29 17:31:48 +00003712 }
Chris Lattner206754a2007-08-28 06:15:15 +00003713
Douglas Gregor8acb7272008-12-11 16:49:14 +00003714 Enum->completeDefinition(Context, BestType);
Chris Lattner4b009652007-07-25 00:24:17 +00003715}
3716
Anders Carlsson4f7f4412008-02-08 00:33:21 +00003717Sema::DeclTy *Sema::ActOnFileScopeAsmDecl(SourceLocation Loc,
Sebastian Redl91f9b0a2008-12-13 16:23:55 +00003718 ExprArg expr) {
3719 StringLiteral *AsmString = cast<StringLiteral>((Expr*)expr.release());
3720
Chris Lattner81db64a2008-03-16 00:16:02 +00003721 return FileScopeAsmDecl::Create(Context, Loc, AsmString);
Anders Carlsson4f7f4412008-02-08 00:33:21 +00003722}
3723
Douglas Gregorad17e372008-12-16 22:23:02 +00003724
Daniel Dunbar81c7d472008-10-14 05:35:18 +00003725void Sema::ActOnPragmaPack(PragmaPackKind Kind, IdentifierInfo *Name,
3726 ExprTy *alignment, SourceLocation PragmaLoc,
3727 SourceLocation LParenLoc, SourceLocation RParenLoc) {
3728 Expr *Alignment = static_cast<Expr *>(alignment);
3729
3730 // If specified then alignment must be a "small" power of two.
3731 unsigned AlignmentVal = 0;
3732 if (Alignment) {
3733 llvm::APSInt Val;
3734 if (!Alignment->isIntegerConstantExpr(Val, Context) ||
3735 !Val.isPowerOf2() ||
3736 Val.getZExtValue() > 16) {
3737 Diag(PragmaLoc, diag::warn_pragma_pack_invalid_alignment);
3738 delete Alignment;
3739 return; // Ignore
3740 }
3741
3742 AlignmentVal = (unsigned) Val.getZExtValue();
3743 }
3744
3745 switch (Kind) {
3746 case Action::PPK_Default: // pack([n])
3747 PackContext.setAlignment(AlignmentVal);
3748 break;
3749
3750 case Action::PPK_Show: // pack(show)
3751 // Show the current alignment, making sure to show the right value
3752 // for the default.
3753 AlignmentVal = PackContext.getAlignment();
3754 // FIXME: This should come from the target.
3755 if (AlignmentVal == 0)
3756 AlignmentVal = 8;
Chris Lattnera5cc1882008-11-19 07:25:44 +00003757 Diag(PragmaLoc, diag::warn_pragma_pack_show) << AlignmentVal;
Daniel Dunbar81c7d472008-10-14 05:35:18 +00003758 break;
3759
3760 case Action::PPK_Push: // pack(push [, id] [, [n])
3761 PackContext.push(Name);
3762 // Set the new alignment if specified.
3763 if (Alignment)
3764 PackContext.setAlignment(AlignmentVal);
3765 break;
3766
3767 case Action::PPK_Pop: // pack(pop [, id] [, n])
3768 // MSDN, C/C++ Preprocessor Reference > Pragma Directives > pack:
3769 // "#pragma pack(pop, identifier, n) is undefined"
3770 if (Alignment && Name)
3771 Diag(PragmaLoc, diag::warn_pragma_pack_pop_identifer_and_alignment);
3772
3773 // Do the pop.
3774 if (!PackContext.pop(Name)) {
3775 // If a name was specified then failure indicates the name
3776 // wasn't found. Otherwise failure indicates the stack was
3777 // empty.
Chris Lattner10f2c2e2008-11-20 06:38:18 +00003778 Diag(PragmaLoc, diag::warn_pragma_pack_pop_failed)
3779 << (Name ? "no record matching name" : "stack empty");
Daniel Dunbar81c7d472008-10-14 05:35:18 +00003780
3781 // FIXME: Warn about popping named records as MSVC does.
3782 } else {
3783 // Pop succeeded, set the new alignment if specified.
3784 if (Alignment)
3785 PackContext.setAlignment(AlignmentVal);
3786 }
3787 break;
3788
3789 default:
3790 assert(0 && "Invalid #pragma pack kind.");
3791 }
3792}
3793
3794bool PragmaPackStack::pop(IdentifierInfo *Name) {
3795 if (Stack.empty())
3796 return false;
3797
3798 // If name is empty just pop top.
3799 if (!Name) {
3800 Alignment = Stack.back().first;
3801 Stack.pop_back();
3802 return true;
3803 }
3804
3805 // Otherwise, find the named record.
3806 for (unsigned i = Stack.size(); i != 0; ) {
3807 --i;
Daniel Dunbarc13c54c2008-11-19 10:32:38 +00003808 if (Stack[i].second == Name) {
Daniel Dunbar81c7d472008-10-14 05:35:18 +00003809 // Found it, pop up to and including this record.
3810 Alignment = Stack[i].first;
3811 Stack.erase(Stack.begin() + i, Stack.end());
3812 return true;
3813 }
3814 }
3815
3816 return false;
3817}