blob: df4ade090e08aebe281aacdb76bad4766f98735b [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- SemaDecl.cpp - Semantic Analysis for Declarations ----------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements semantic analysis for declarations.
11//
12//===----------------------------------------------------------------------===//
13
14#include "Sema.h"
Anders Carlssonc44eec62008-07-03 04:20:39 +000015#include "clang/AST/APValue.h"
Chris Lattnere1e79852008-02-06 00:51:33 +000016#include "clang/AST/ASTConsumer.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000017#include "clang/AST/ASTContext.h"
Daniel Dunbarc4a1dea2008-08-11 05:35:13 +000018#include "clang/AST/DeclObjC.h"
Chris Lattner6b6b5372008-06-26 18:38:35 +000019#include "clang/AST/ExprCXX.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000020#include "clang/Parse/DeclSpec.h"
Daniel Dunbare4858a62008-08-11 03:45:03 +000021#include "clang/Basic/Diagnostic.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000022#include "clang/Basic/TargetInfo.h"
Steve Naroff4c49a6c2008-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 Lattnere1e79852008-02-06 00:51:33 +000025#include "clang/Lex/Preprocessor.h"
Steve Naroff4c49a6c2008-01-30 23:46:05 +000026#include "clang/Lex/HeaderSearch.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000027#include "llvm/ADT/SmallSet.h"
Daniel Dunbar4cde9272008-10-14 05:35:18 +000028#include "llvm/ADT/StringExtras.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000029using namespace clang;
30
Argyrios Kyrtzidis39caa082008-08-01 10:35:27 +000031Sema::TypeTy *Sema::isTypeName(const IdentifierInfo &II, Scope *S) {
Steve Naroffb327ce02008-04-02 14:35:35 +000032 Decl *IIDecl = LookupDecl(&II, Decl::IDNS_Ordinary, S, false);
33
Douglas Gregor2ce52f32008-04-13 21:07:44 +000034 if (IIDecl && (isa<TypedefDecl>(IIDecl) ||
35 isa<ObjCInterfaceDecl>(IIDecl) ||
36 isa<TagDecl>(IIDecl)))
Fariborz Jahanianbece4ac2007-10-12 16:34:10 +000037 return IIDecl;
Steve Naroff3536b442007-09-06 21:24:23 +000038 return 0;
Reid Spencer5f016e22007-07-11 17:01:13 +000039}
40
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +000041DeclContext *Sema::getDCParent(DeclContext *DC) {
42 // If CurContext is a ObjC method, getParent() will return NULL.
43 if (isa<ObjCMethodDecl>(DC))
44 return Context.getTranslationUnitDecl();
45
46 // A C++ inline method is parsed *after* the topmost class it was declared in
47 // is fully parsed (it's "complete").
48 // The parsing of a C++ inline method happens at the declaration context of
49 // the topmost (non-nested) class it is declared in.
50 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(DC)) {
51 assert(isa<CXXRecordDecl>(MD->getParent()) && "C++ method not in Record.");
52 DC = MD->getParent();
53 while (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(DC->getParent()))
54 DC = RD;
55
56 // Return the declaration context of the topmost class the inline method is
57 // declared in.
58 return DC;
59 }
60
61 return DC->getParent();
62}
63
Chris Lattner9fdf9c62008-04-22 18:39:57 +000064void Sema::PushDeclContext(DeclContext *DC) {
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +000065 assert(getDCParent(DC) == CurContext &&
66 "The next DeclContext should be directly contained in the current one.");
Chris Lattner9fdf9c62008-04-22 18:39:57 +000067 CurContext = DC;
Chris Lattner0ed844b2008-04-04 06:12:32 +000068}
69
Chris Lattnerb048c982008-04-06 04:47:34 +000070void Sema::PopDeclContext() {
71 assert(CurContext && "DeclContext imbalance!");
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +000072 CurContext = getDCParent(CurContext);
Chris Lattner0ed844b2008-04-04 06:12:32 +000073}
74
Argyrios Kyrtzidis87f3ff02008-04-12 00:47:19 +000075/// Add this decl to the scope shadowed decl chains.
76void Sema::PushOnScopeChains(NamedDecl *D, Scope *S) {
Argyrios Kyrtzidis87f3ff02008-04-12 00:47:19 +000077 S->AddDecl(D);
Argyrios Kyrtzidis00bc6452008-05-09 23:39:43 +000078
79 // C++ [basic.scope]p4:
80 // -- exactly one declaration shall declare a class name or
81 // enumeration name that is not a typedef name and the other
82 // declarations shall all refer to the same object or
83 // enumerator, or all refer to functions and function templates;
84 // in this case the class name or enumeration name is hidden.
85 if (TagDecl *TD = dyn_cast<TagDecl>(D)) {
86 // We are pushing the name of a tag (enum or class).
Argyrios Kyrtzidis90eb5392008-07-17 17:49:50 +000087 IdentifierResolver::iterator
88 I = IdResolver.begin(TD->getIdentifier(),
89 TD->getDeclContext(), false/*LookInParentCtx*/);
Argyrios Kyrtzidis15a12d02008-09-09 21:18:04 +000090 if (I != IdResolver.end() && isDeclInScope(*I, TD->getDeclContext(), S)) {
Argyrios Kyrtzidis00bc6452008-05-09 23:39:43 +000091 // There is already a declaration with the same name in the same
92 // scope. It must be found before we find the new declaration,
93 // so swap the order on the shadowed declaration chain.
94
Argyrios Kyrtzidis90eb5392008-07-17 17:49:50 +000095 IdResolver.AddShadowedDecl(TD, *I);
Argyrios Kyrtzidis00bc6452008-05-09 23:39:43 +000096 return;
97 }
Argyrios Kyrtzidisf1af6a72008-10-22 23:08:24 +000098 } else if (getLangOptions().CPlusPlus && isa<FunctionDecl>(D)) {
99 FunctionDecl *FD = cast<FunctionDecl>(D);
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000100 // We are pushing the name of a function, which might be an
101 // overloaded name.
102 IdentifierResolver::iterator
103 I = IdResolver.begin(FD->getIdentifier(),
104 FD->getDeclContext(), false/*LookInParentCtx*/);
105 if (I != IdResolver.end() &&
106 IdResolver.isDeclInScope(*I, FD->getDeclContext(), S) &&
107 (isa<OverloadedFunctionDecl>(*I) || isa<FunctionDecl>(*I))) {
108 // There is already a declaration with the same name in the same
109 // scope. It must be a function or an overloaded function.
110 OverloadedFunctionDecl* Ovl = dyn_cast<OverloadedFunctionDecl>(*I);
111 if (!Ovl) {
112 // We haven't yet overloaded this function. Take the existing
113 // FunctionDecl and put it into an OverloadedFunctionDecl.
114 Ovl = OverloadedFunctionDecl::Create(Context,
115 FD->getDeclContext(),
116 FD->getIdentifier());
117 Ovl->addOverload(dyn_cast<FunctionDecl>(*I));
118
119 // Remove the name binding to the existing FunctionDecl...
120 IdResolver.RemoveDecl(*I);
121
122 // ... and put the OverloadedFunctionDecl in its place.
123 IdResolver.AddDecl(Ovl);
124 }
125
126 // We have an OverloadedFunctionDecl. Add the new FunctionDecl
127 // to its list of overloads.
128 Ovl->addOverload(FD);
129
130 return;
131 }
Argyrios Kyrtzidis00bc6452008-05-09 23:39:43 +0000132 }
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000133
Argyrios Kyrtzidis00bc6452008-05-09 23:39:43 +0000134 IdResolver.AddDecl(D);
Argyrios Kyrtzidis87f3ff02008-04-12 00:47:19 +0000135}
136
Steve Naroffb216c882007-10-09 22:01:59 +0000137void Sema::ActOnPopScope(SourceLocation Loc, Scope *S) {
Chris Lattner31e05722007-08-26 06:24:45 +0000138 if (S->decl_empty()) return;
139 assert((S->getFlags() & Scope::DeclScope) &&"Scope shouldn't contain decls!");
Argyrios Kyrtzidis00bc6452008-05-09 23:39:43 +0000140
Reid Spencer5f016e22007-07-11 17:01:13 +0000141 for (Scope::decl_iterator I = S->decl_begin(), E = S->decl_end();
142 I != E; ++I) {
Steve Naroffc752d042007-09-13 18:10:37 +0000143 Decl *TmpD = static_cast<Decl*>(*I);
144 assert(TmpD && "This decl didn't get pushed??");
Argyrios Kyrtzidis76435362008-06-10 01:32:09 +0000145
146 if (isa<CXXFieldDecl>(TmpD)) continue;
147
148 assert(isa<ScopedDecl>(TmpD) && "Decl isn't ScopedDecl?");
149 ScopedDecl *D = cast<ScopedDecl>(TmpD);
Steve Naroffc752d042007-09-13 18:10:37 +0000150
Reid Spencer5f016e22007-07-11 17:01:13 +0000151 IdentifierInfo *II = D->getIdentifier();
152 if (!II) continue;
153
Ted Kremeneka89d1972008-09-03 18:03:35 +0000154 // We only want to remove the decls from the identifier decl chains for
155 // local scopes, when inside a function/method.
Argyrios Kyrtzidis76435362008-06-10 01:32:09 +0000156 if (S->getFnParent() != 0)
157 IdResolver.RemoveDecl(D);
Chris Lattner7f925cc2008-04-11 07:00:53 +0000158
Argyrios Kyrtzidis76435362008-06-10 01:32:09 +0000159 // Chain this decl to the containing DeclContext.
160 D->setNext(CurContext->getDeclChain());
161 CurContext->setDeclChain(D);
Reid Spencer5f016e22007-07-11 17:01:13 +0000162 }
163}
164
Steve Naroffe8043c32008-04-01 23:04:06 +0000165/// getObjCInterfaceDecl - Look up a for a class declaration in the scope.
166/// return 0 if one not found.
Steve Naroffe8043c32008-04-01 23:04:06 +0000167ObjCInterfaceDecl *Sema::getObjCInterfaceDecl(IdentifierInfo *Id) {
Steve Naroff31102512008-04-02 18:30:49 +0000168 // The third "scope" argument is 0 since we aren't enabling lazy built-in
169 // creation from this context.
170 Decl *IDecl = LookupDecl(Id, Decl::IDNS_Ordinary, 0, false);
Fariborz Jahanian4cabdfc2007-10-12 19:38:20 +0000171
Steve Naroffb327ce02008-04-02 14:35:35 +0000172 return dyn_cast_or_null<ObjCInterfaceDecl>(IDecl);
Fariborz Jahanian4cabdfc2007-10-12 19:38:20 +0000173}
174
Steve Naroffe8043c32008-04-01 23:04:06 +0000175/// LookupDecl - Look up the inner-most declaration in the specified
Reid Spencer5f016e22007-07-11 17:01:13 +0000176/// namespace.
Steve Naroffb327ce02008-04-02 14:35:35 +0000177Decl *Sema::LookupDecl(const IdentifierInfo *II, unsigned NSI,
178 Scope *S, bool enableLazyBuiltinCreation) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000179 if (II == 0) return 0;
Douglas Gregor2ce52f32008-04-13 21:07:44 +0000180 unsigned NS = NSI;
181 if (getLangOptions().CPlusPlus && (NS & Decl::IDNS_Ordinary))
182 NS |= Decl::IDNS_Tag;
Chris Lattner7f925cc2008-04-11 07:00:53 +0000183
Reid Spencer5f016e22007-07-11 17:01:13 +0000184 // Scan up the scope chain looking for a decl that matches this identifier
185 // that is in the appropriate namespace. This search should not take long, as
186 // shadowing of names is uncommon, and deep shadowing is extremely uncommon.
Argyrios Kyrtzidis00bc6452008-05-09 23:39:43 +0000187 for (IdentifierResolver::iterator
Argyrios Kyrtzidis90eb5392008-07-17 17:49:50 +0000188 I = IdResolver.begin(II, CurContext), E = IdResolver.end(); I != E; ++I)
Argyrios Kyrtzidis00bc6452008-05-09 23:39:43 +0000189 if ((*I)->getIdentifierNamespace() & NS)
190 return *I;
Chris Lattner7f925cc2008-04-11 07:00:53 +0000191
Reid Spencer5f016e22007-07-11 17:01:13 +0000192 // If we didn't find a use of this identifier, and if the identifier
193 // corresponds to a compiler builtin, create the decl object for the builtin
194 // now, injecting it into translation unit scope, and return it.
Douglas Gregor2ce52f32008-04-13 21:07:44 +0000195 if (NS & Decl::IDNS_Ordinary) {
Steve Naroffb327ce02008-04-02 14:35:35 +0000196 if (enableLazyBuiltinCreation) {
197 // If this is a builtin on this (or all) targets, create the decl.
198 if (unsigned BuiltinID = II->getBuiltinID())
199 return LazilyCreateBuiltin((IdentifierInfo *)II, BuiltinID, S);
200 }
Steve Naroffe8043c32008-04-01 23:04:06 +0000201 if (getLangOptions().ObjC1) {
202 // @interface and @compatibility_alias introduce typedef-like names.
203 // Unlike typedef's, they can only be introduced at file-scope (and are
Steve Naroffc822ff42008-04-02 00:39:51 +0000204 // therefore not scoped decls). They can, however, be shadowed by
Steve Naroffe8043c32008-04-01 23:04:06 +0000205 // other names in IDNS_Ordinary.
Steve Naroff31102512008-04-02 18:30:49 +0000206 ObjCInterfaceDeclsTy::iterator IDI = ObjCInterfaceDecls.find(II);
207 if (IDI != ObjCInterfaceDecls.end())
208 return IDI->second;
Steve Naroffe8043c32008-04-01 23:04:06 +0000209 ObjCAliasTy::iterator I = ObjCAliasDecls.find(II);
210 if (I != ObjCAliasDecls.end())
211 return I->second->getClassInterface();
212 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000213 }
214 return 0;
215}
216
Chris Lattner95e2c712008-05-05 22:18:14 +0000217void Sema::InitBuiltinVaListType() {
Anders Carlsson7c50aca2007-10-15 20:28:48 +0000218 if (!Context.getBuiltinVaListType().isNull())
219 return;
220
221 IdentifierInfo *VaIdent = &Context.Idents.get("__builtin_va_list");
Steve Naroffb327ce02008-04-02 14:35:35 +0000222 Decl *VaDecl = LookupDecl(VaIdent, Decl::IDNS_Ordinary, TUScope);
Steve Naroff733002f2007-10-18 22:17:45 +0000223 TypedefDecl *VaTypedef = cast<TypedefDecl>(VaDecl);
Anders Carlsson7c50aca2007-10-15 20:28:48 +0000224 Context.setBuiltinVaListType(Context.getTypedefType(VaTypedef));
225}
226
Reid Spencer5f016e22007-07-11 17:01:13 +0000227/// LazilyCreateBuiltin - The specified Builtin-ID was first used at file scope.
228/// lazily create a decl for it.
Chris Lattner22b73ba2007-10-10 23:42:28 +0000229ScopedDecl *Sema::LazilyCreateBuiltin(IdentifierInfo *II, unsigned bid,
230 Scope *S) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000231 Builtin::ID BID = (Builtin::ID)bid;
232
Chris Lattnerbd7eb1c2008-09-28 05:54:29 +0000233 if (Context.BuiltinInfo.hasVAListUse(BID))
Anders Carlsson7c50aca2007-10-15 20:28:48 +0000234 InitBuiltinVaListType();
235
Anders Carlssonb2cf3572007-10-11 01:00:40 +0000236 QualType R = Context.BuiltinInfo.GetBuiltinType(BID, Context);
Argyrios Kyrtzidisff898cd2008-04-17 14:47:13 +0000237 FunctionDecl *New = FunctionDecl::Create(Context,
238 Context.getTranslationUnitDecl(),
Chris Lattner0ed844b2008-04-04 06:12:32 +0000239 SourceLocation(), II, R,
Chris Lattnera98e58d2008-03-15 21:24:04 +0000240 FunctionDecl::Extern, false, 0);
Reid Spencer5f016e22007-07-11 17:01:13 +0000241
Chris Lattner95e2c712008-05-05 22:18:14 +0000242 // Create Decl objects for each parameter, adding them to the
243 // FunctionDecl.
244 if (FunctionTypeProto *FT = dyn_cast<FunctionTypeProto>(R)) {
245 llvm::SmallVector<ParmVarDecl*, 16> Params;
246 for (unsigned i = 0, e = FT->getNumArgs(); i != e; ++i)
247 Params.push_back(ParmVarDecl::Create(Context, New, SourceLocation(), 0,
248 FT->getArgType(i), VarDecl::None, 0,
249 0));
250 New->setParams(&Params[0], Params.size());
251 }
252
253
254
Chris Lattner7f925cc2008-04-11 07:00:53 +0000255 // TUScope is the translation-unit scope to insert this function into.
Argyrios Kyrtzidis00bc6452008-05-09 23:39:43 +0000256 PushOnScopeChains(New, TUScope);
Reid Spencer5f016e22007-07-11 17:01:13 +0000257 return New;
258}
259
260/// MergeTypeDefDecl - We just parsed a typedef 'New' which has the same name
261/// and scope as a previous declaration 'Old'. Figure out how to resolve this
262/// situation, merging decls or emitting diagnostics as appropriate.
263///
Steve Naroffe8043c32008-04-01 23:04:06 +0000264TypedefDecl *Sema::MergeTypeDefDecl(TypedefDecl *New, Decl *OldD) {
Steve Naroff2b255c42008-09-09 14:32:20 +0000265 // Allow multiple definitions for ObjC built-in typedefs.
266 // FIXME: Verify the underlying types are equivalent!
267 if (getLangOptions().ObjC1) {
268 const IdentifierInfo *typeIdent = New->getIdentifier();
269 if (typeIdent == Ident_id) {
270 Context.setObjCIdType(New);
271 return New;
272 } else if (typeIdent == Ident_Class) {
273 Context.setObjCClassType(New);
274 return New;
275 } else if (typeIdent == Ident_SEL) {
276 Context.setObjCSelType(New);
277 return New;
278 } else if (typeIdent == Ident_Protocol) {
279 Context.setObjCProtoType(New->getUnderlyingType());
280 return New;
281 }
282 // Fall through - the typedef name was not a builtin type.
283 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000284 // Verify the old decl was also a typedef.
285 TypedefDecl *Old = dyn_cast<TypedefDecl>(OldD);
286 if (!Old) {
287 Diag(New->getLocation(), diag::err_redefinition_different_kind,
288 New->getName());
289 Diag(OldD->getLocation(), diag::err_previous_definition);
290 return New;
291 }
292
Chris Lattner99cb9972008-07-25 18:44:27 +0000293 // If the typedef types are not identical, reject them in all languages and
294 // with any extensions enabled.
295 if (Old->getUnderlyingType() != New->getUnderlyingType() &&
296 Context.getCanonicalType(Old->getUnderlyingType()) !=
297 Context.getCanonicalType(New->getUnderlyingType())) {
298 Diag(New->getLocation(), diag::err_redefinition_different_typedef,
299 New->getUnderlyingType().getAsString(),
300 Old->getUnderlyingType().getAsString());
301 Diag(Old->getLocation(), diag::err_previous_definition);
302 return Old;
303 }
304
Eli Friedman54ecfce2008-06-11 06:20:39 +0000305 if (getLangOptions().Microsoft) return New;
306
Steve Naroff4c49a6c2008-01-30 23:46:05 +0000307 // Redeclaration of a type is a constraint violation (6.7.2.3p1).
308 // Apparently GCC, Intel, and Sun all silently ignore the redeclaration if
309 // *either* declaration is in a system header. The code below implements
310 // this adhoc compatibility rule. FIXME: The following code will not
311 // work properly when compiling ".i" files (containing preprocessed output).
Daniel Dunbar2fe09972008-09-12 18:10:20 +0000312 if (PP.getDiagnostics().getSuppressSystemWarnings()) {
313 SourceManager &SrcMgr = Context.getSourceManager();
314 if (SrcMgr.isInSystemHeader(Old->getLocation()))
315 return New;
316 if (SrcMgr.isInSystemHeader(New->getLocation()))
317 return New;
318 }
Eli Friedman54ecfce2008-06-11 06:20:39 +0000319
Ted Kremenek2d05c082008-05-23 21:28:18 +0000320 Diag(New->getLocation(), diag::err_redefinition, New->getName());
321 Diag(Old->getLocation(), diag::err_previous_definition);
Reid Spencer5f016e22007-07-11 17:01:13 +0000322 return New;
323}
324
Chris Lattner6b6b5372008-06-26 18:38:35 +0000325/// DeclhasAttr - returns true if decl Declaration already has the target
326/// attribute.
Chris Lattnerddee4232008-03-03 03:28:21 +0000327static bool DeclHasAttr(const Decl *decl, const Attr *target) {
328 for (const Attr *attr = decl->getAttrs(); attr; attr = attr->getNext())
329 if (attr->getKind() == target->getKind())
330 return true;
331
332 return false;
333}
334
335/// MergeAttributes - append attributes from the Old decl to the New one.
336static void MergeAttributes(Decl *New, Decl *Old) {
337 Attr *attr = const_cast<Attr*>(Old->getAttrs()), *tmp;
338
Chris Lattnerddee4232008-03-03 03:28:21 +0000339 while (attr) {
340 tmp = attr;
341 attr = attr->getNext();
342
343 if (!DeclHasAttr(New, tmp)) {
344 New->addAttr(tmp);
345 } else {
346 tmp->setNext(0);
347 delete(tmp);
348 }
349 }
Nuno Lopes9141bee2008-06-01 22:53:53 +0000350
351 Old->invalidateAttrs();
Chris Lattnerddee4232008-03-03 03:28:21 +0000352}
353
Chris Lattner04421082008-04-08 04:40:51 +0000354/// MergeFunctionDecl - We just parsed a function 'New' from
355/// declarator D which has the same name and scope as a previous
356/// declaration 'Old'. Figure out how to resolve this situation,
357/// merging decls or emitting diagnostics as appropriate.
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000358/// Redeclaration will be set true if this New is a redeclaration OldD.
359///
360/// In C++, New and Old must be declarations that are not
361/// overloaded. Use IsOverload to determine whether New and Old are
362/// overloaded, and to select the Old declaration that New should be
363/// merged with.
Douglas Gregorf0097952008-04-21 02:02:58 +0000364FunctionDecl *
365Sema::MergeFunctionDecl(FunctionDecl *New, Decl *OldD, bool &Redeclaration) {
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000366 assert(!isa<OverloadedFunctionDecl>(OldD) &&
367 "Cannot merge with an overloaded function declaration");
368
Douglas Gregorf0097952008-04-21 02:02:58 +0000369 Redeclaration = false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000370 // Verify the old decl was also a function.
371 FunctionDecl *Old = dyn_cast<FunctionDecl>(OldD);
372 if (!Old) {
373 Diag(New->getLocation(), diag::err_redefinition_different_kind,
374 New->getName());
375 Diag(OldD->getLocation(), diag::err_previous_definition);
376 return New;
377 }
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000378
379 // Determine whether the previous declaration was a definition,
380 // implicit declaration, or a declaration.
381 diag::kind PrevDiag;
382 if (Old->isThisDeclarationADefinition())
383 PrevDiag = diag::err_previous_definition;
384 else if (Old->isImplicit())
385 PrevDiag = diag::err_previous_implicit_declaration;
386 else
387 PrevDiag = diag::err_previous_declaration;
Chris Lattner04421082008-04-08 04:40:51 +0000388
Chris Lattner8bcfc5b2008-04-06 23:10:54 +0000389 QualType OldQType = Context.getCanonicalType(Old->getType());
390 QualType NewQType = Context.getCanonicalType(New->getType());
Chris Lattner55196442007-11-20 19:04:50 +0000391
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000392 if (getLangOptions().CPlusPlus) {
393 // (C++98 13.1p2):
394 // Certain function declarations cannot be overloaded:
395 // -- Function declarations that differ only in the return type
396 // cannot be overloaded.
397 QualType OldReturnType
398 = cast<FunctionType>(OldQType.getTypePtr())->getResultType();
399 QualType NewReturnType
400 = cast<FunctionType>(NewQType.getTypePtr())->getResultType();
401 if (OldReturnType != NewReturnType) {
402 Diag(New->getLocation(), diag::err_ovl_diff_return_type);
403 Diag(Old->getLocation(), PrevDiag);
404 return New;
405 }
406
407 const CXXMethodDecl* OldMethod = dyn_cast<CXXMethodDecl>(Old);
408 const CXXMethodDecl* NewMethod = dyn_cast<CXXMethodDecl>(New);
409 if (OldMethod && NewMethod) {
410 // -- Member function declarations with the same name and the
411 // same parameter types cannot be overloaded if any of them
412 // is a static member function declaration.
413 if (OldMethod->isStatic() || NewMethod->isStatic()) {
414 Diag(New->getLocation(), diag::err_ovl_static_nonstatic_member);
415 Diag(Old->getLocation(), PrevDiag);
416 return New;
417 }
418 }
419
420 // (C++98 8.3.5p3):
421 // All declarations for a function shall agree exactly in both the
422 // return type and the parameter-type-list.
423 if (OldQType == NewQType) {
424 // We have a redeclaration.
425 MergeAttributes(New, Old);
426 Redeclaration = true;
427 return MergeCXXFunctionDecl(New, Old);
428 }
429
430 // Fall through for conflicting redeclarations and redefinitions.
Douglas Gregorf0097952008-04-21 02:02:58 +0000431 }
Chris Lattner04421082008-04-08 04:40:51 +0000432
433 // C: Function types need to be compatible, not identical. This handles
Steve Naroffadbbd0c2008-01-14 20:51:29 +0000434 // duplicate function decls like "void f(int); void f(enum X);" properly.
Chris Lattner04421082008-04-08 04:40:51 +0000435 if (!getLangOptions().CPlusPlus &&
Eli Friedman3d815e72008-08-22 00:56:42 +0000436 Context.typesAreCompatible(OldQType, NewQType)) {
Douglas Gregorf0097952008-04-21 02:02:58 +0000437 MergeAttributes(New, Old);
438 Redeclaration = true;
Steve Naroffadbbd0c2008-01-14 20:51:29 +0000439 return New;
Chris Lattner04421082008-04-08 04:40:51 +0000440 }
Chris Lattnere3995fe2007-11-06 06:07:26 +0000441
Steve Naroff837618c2008-01-16 15:01:34 +0000442 // A function that has already been declared has been redeclared or defined
443 // with a different type- show appropriate diagnostic
Steve Naroff837618c2008-01-16 15:01:34 +0000444
Reid Spencer5f016e22007-07-11 17:01:13 +0000445 // TODO: CHECK FOR CONFLICTS, multiple decls with same name in one scope.
446 // TODO: This is totally simplistic. It should handle merging functions
447 // together etc, merging extern int X; int X; ...
Steve Naroff837618c2008-01-16 15:01:34 +0000448 Diag(New->getLocation(), diag::err_conflicting_types, New->getName());
449 Diag(Old->getLocation(), PrevDiag);
Reid Spencer5f016e22007-07-11 17:01:13 +0000450 return New;
451}
452
Steve Naroffff9eb1f2008-08-08 17:50:35 +0000453/// Predicate for C "tentative" external object definitions (C99 6.9.2).
Steve Naroffd4d46cd2008-08-10 15:28:06 +0000454static bool isTentativeDefinition(VarDecl *VD) {
Steve Naroffff9eb1f2008-08-08 17:50:35 +0000455 if (VD->isFileVarDecl())
456 return (!VD->getInit() &&
457 (VD->getStorageClass() == VarDecl::None ||
458 VD->getStorageClass() == VarDecl::Static));
459 return false;
460}
461
462/// CheckForFileScopedRedefinitions - Make sure we forgo redefinition errors
463/// when dealing with C "tentative" external object definitions (C99 6.9.2).
464void Sema::CheckForFileScopedRedefinitions(Scope *S, VarDecl *VD) {
465 bool VDIsTentative = isTentativeDefinition(VD);
Steve Narofff855e6f2008-08-10 15:20:13 +0000466 bool VDIsIncompleteArray = VD->getType()->isIncompleteArrayType();
Steve Naroffff9eb1f2008-08-08 17:50:35 +0000467
468 for (IdentifierResolver::iterator
469 I = IdResolver.begin(VD->getIdentifier(),
470 VD->getDeclContext(), false/*LookInParentCtx*/),
471 E = IdResolver.end(); I != E; ++I) {
Argyrios Kyrtzidis15a12d02008-09-09 21:18:04 +0000472 if (*I != VD && isDeclInScope(*I, VD->getDeclContext(), S)) {
Steve Naroffff9eb1f2008-08-08 17:50:35 +0000473 VarDecl *OldDecl = dyn_cast<VarDecl>(*I);
474
Steve Narofff855e6f2008-08-10 15:20:13 +0000475 // Handle the following case:
476 // int a[10];
477 // int a[]; - the code below makes sure we set the correct type.
478 // int a[11]; - this is an error, size isn't 10.
479 if (OldDecl && VDIsTentative && VDIsIncompleteArray &&
480 OldDecl->getType()->isConstantArrayType())
481 VD->setType(OldDecl->getType());
482
Steve Naroffff9eb1f2008-08-08 17:50:35 +0000483 // Check for "tentative" definitions. We can't accomplish this in
484 // MergeVarDecl since the initializer hasn't been attached.
485 if (!OldDecl || isTentativeDefinition(OldDecl) || VDIsTentative)
486 continue;
487
488 // Handle __private_extern__ just like extern.
489 if (OldDecl->getStorageClass() != VarDecl::Extern &&
490 OldDecl->getStorageClass() != VarDecl::PrivateExtern &&
491 VD->getStorageClass() != VarDecl::Extern &&
492 VD->getStorageClass() != VarDecl::PrivateExtern) {
493 Diag(VD->getLocation(), diag::err_redefinition, VD->getName());
494 Diag(OldDecl->getLocation(), diag::err_previous_definition);
495 }
496 }
497 }
498}
499
Reid Spencer5f016e22007-07-11 17:01:13 +0000500/// MergeVarDecl - We just parsed a variable 'New' which has the same name
501/// and scope as a previous declaration 'Old'. Figure out how to resolve this
502/// situation, merging decls or emitting diagnostics as appropriate.
503///
Steve Naroffff9eb1f2008-08-08 17:50:35 +0000504/// Tentative definition rules (C99 6.9.2p2) are checked by
505/// FinalizeDeclaratorGroup. Unfortunately, we can't analyze tentative
506/// definitions here, since the initializer hasn't been attached.
Reid Spencer5f016e22007-07-11 17:01:13 +0000507///
Steve Naroffe8043c32008-04-01 23:04:06 +0000508VarDecl *Sema::MergeVarDecl(VarDecl *New, Decl *OldD) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000509 // Verify the old decl was also a variable.
510 VarDecl *Old = dyn_cast<VarDecl>(OldD);
511 if (!Old) {
512 Diag(New->getLocation(), diag::err_redefinition_different_kind,
513 New->getName());
514 Diag(OldD->getLocation(), diag::err_previous_definition);
515 return New;
516 }
Chris Lattnerddee4232008-03-03 03:28:21 +0000517
518 MergeAttributes(New, Old);
519
Reid Spencer5f016e22007-07-11 17:01:13 +0000520 // Verify the types match.
Chris Lattner8bcfc5b2008-04-06 23:10:54 +0000521 QualType OldCType = Context.getCanonicalType(Old->getType());
522 QualType NewCType = Context.getCanonicalType(New->getType());
Steve Naroff907747b2008-08-09 16:04:40 +0000523 if (OldCType != NewCType && !Context.typesAreCompatible(OldCType, NewCType)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000524 Diag(New->getLocation(), diag::err_redefinition, New->getName());
525 Diag(Old->getLocation(), diag::err_previous_definition);
526 return New;
527 }
Steve Naroffb7b032e2008-01-30 00:44:01 +0000528 // C99 6.2.2p4: Check if we have a static decl followed by a non-static.
529 if (New->getStorageClass() == VarDecl::Static &&
530 (Old->getStorageClass() == VarDecl::None ||
531 Old->getStorageClass() == VarDecl::Extern)) {
532 Diag(New->getLocation(), diag::err_static_non_static, New->getName());
533 Diag(Old->getLocation(), diag::err_previous_definition);
534 return New;
535 }
536 // C99 6.2.2p4: Check if we have a non-static decl followed by a static.
537 if (New->getStorageClass() != VarDecl::Static &&
538 Old->getStorageClass() == VarDecl::Static) {
539 Diag(New->getLocation(), diag::err_non_static_static, New->getName());
540 Diag(Old->getLocation(), diag::err_previous_definition);
541 return New;
542 }
Steve Naroff094cefb2008-09-17 14:05:40 +0000543 // Variables with external linkage are analyzed in FinalizeDeclaratorGroup.
544 if (New->getStorageClass() != VarDecl::Extern && !New->isFileVarDecl()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000545 Diag(New->getLocation(), diag::err_redefinition, New->getName());
546 Diag(Old->getLocation(), diag::err_previous_definition);
547 }
548 return New;
549}
550
Chris Lattner04421082008-04-08 04:40:51 +0000551/// CheckParmsForFunctionDef - Check that the parameters of the given
552/// function are appropriate for the definition of a function. This
553/// takes care of any checks that cannot be performed on the
554/// declaration itself, e.g., that the types of each of the function
555/// parameters are complete.
556bool Sema::CheckParmsForFunctionDef(FunctionDecl *FD) {
557 bool HasInvalidParm = false;
558 for (unsigned p = 0, NumParams = FD->getNumParams(); p < NumParams; ++p) {
559 ParmVarDecl *Param = FD->getParamDecl(p);
560
561 // C99 6.7.5.3p4: the parameters in a parameter type list in a
562 // function declarator that is part of a function definition of
563 // that function shall not have incomplete type.
564 if (Param->getType()->isIncompleteType() &&
565 !Param->isInvalidDecl()) {
566 Diag(Param->getLocation(), diag::err_typecheck_decl_incomplete_type,
567 Param->getType().getAsString());
568 Param->setInvalidDecl();
569 HasInvalidParm = true;
570 }
571 }
572
573 return HasInvalidParm;
574}
575
Reid Spencer5f016e22007-07-11 17:01:13 +0000576/// ParsedFreeStandingDeclSpec - This method is invoked when a declspec with
577/// no declarator (e.g. "struct foo;") is parsed.
578Sema::DeclTy *Sema::ParsedFreeStandingDeclSpec(Scope *S, DeclSpec &DS) {
579 // TODO: emit error on 'int;' or 'const enum foo;'.
580 // TODO: emit error on 'typedef int;'
581 // if (!DS.isMissingDeclaratorOk()) Diag(...);
582
Steve Naroff92199282007-11-17 21:37:36 +0000583 return dyn_cast_or_null<TagDecl>(static_cast<Decl *>(DS.getTypeRep()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000584}
585
Steve Naroffd0091aa2008-01-10 22:15:12 +0000586bool Sema::CheckSingleInitializer(Expr *&Init, QualType DeclType) {
Steve Narofff0090632007-09-02 02:04:30 +0000587 // Get the type before calling CheckSingleAssignmentConstraints(), since
588 // it can promote the expression.
Chris Lattner5cf216b2008-01-04 18:04:52 +0000589 QualType InitType = Init->getType();
Steve Narofff0090632007-09-02 02:04:30 +0000590
Chris Lattner5cf216b2008-01-04 18:04:52 +0000591 AssignConvertType ConvTy = CheckSingleAssignmentConstraints(DeclType, Init);
592 return DiagnoseAssignmentResult(ConvTy, Init->getLocStart(), DeclType,
593 InitType, Init, "initializing");
Steve Narofff0090632007-09-02 02:04:30 +0000594}
595
Steve Naroffa49e1fa2008-01-22 00:55:40 +0000596bool Sema::CheckStringLiteralInit(StringLiteral *strLiteral, QualType &DeclT) {
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000597 const ArrayType *AT = Context.getAsArrayType(DeclT);
598
599 if (const IncompleteArrayType *IAT = dyn_cast<IncompleteArrayType>(AT)) {
Steve Naroffa49e1fa2008-01-22 00:55:40 +0000600 // C99 6.7.8p14. We have an array of character type with unknown size
601 // being initialized to a string literal.
602 llvm::APSInt ConstVal(32);
603 ConstVal = strLiteral->getByteLength() + 1;
604 // Return a new array type (C99 6.7.8p22).
Eli Friedmanc5773c42008-02-15 18:16:39 +0000605 DeclT = Context.getConstantArrayType(IAT->getElementType(), ConstVal,
Steve Naroffa49e1fa2008-01-22 00:55:40 +0000606 ArrayType::Normal, 0);
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000607 } else {
608 const ConstantArrayType *CAT = cast<ConstantArrayType>(AT);
Steve Naroffa49e1fa2008-01-22 00:55:40 +0000609 // C99 6.7.8p14. We have an array of character type with known size.
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000610 // FIXME: Avoid truncation for 64-bit length strings.
611 if (strLiteral->getByteLength() > (unsigned)CAT->getSize().getZExtValue())
Steve Naroffa49e1fa2008-01-22 00:55:40 +0000612 Diag(strLiteral->getSourceRange().getBegin(),
613 diag::warn_initializer_string_for_char_array_too_long,
614 strLiteral->getSourceRange());
Steve Naroffa49e1fa2008-01-22 00:55:40 +0000615 }
616 // Set type from "char *" to "constant array of char".
617 strLiteral->setType(DeclT);
618 // For now, we always return false (meaning success).
619 return false;
620}
621
622StringLiteral *Sema::IsStringLiteralInit(Expr *Init, QualType DeclType) {
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000623 const ArrayType *AT = Context.getAsArrayType(DeclType);
Steve Naroffa9960332008-01-25 00:51:06 +0000624 if (AT && AT->getElementType()->isCharType()) {
625 return dyn_cast<StringLiteral>(Init);
626 }
Steve Naroffa49e1fa2008-01-22 00:55:40 +0000627 return 0;
628}
629
Steve Naroffa9960332008-01-25 00:51:06 +0000630bool Sema::CheckInitializerTypes(Expr *&Init, QualType &DeclType) {
Steve Naroffca107302008-01-21 23:53:58 +0000631 // C99 6.7.8p3: The type of the entity to be initialized shall be an array
632 // of unknown size ("[]") or an object type that is not a variable array type.
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000633 if (const VariableArrayType *VAT = Context.getAsVariableArrayType(DeclType))
Steve Naroffca107302008-01-21 23:53:58 +0000634 return Diag(VAT->getSizeExpr()->getLocStart(),
635 diag::err_variable_object_no_init,
636 VAT->getSizeExpr()->getSourceRange());
637
Steve Naroff2fdc3742007-12-10 22:44:33 +0000638 InitListExpr *InitList = dyn_cast<InitListExpr>(Init);
639 if (!InitList) {
Steve Naroffa49e1fa2008-01-22 00:55:40 +0000640 // FIXME: Handle wide strings
641 if (StringLiteral *strLiteral = IsStringLiteralInit(Init, DeclType))
642 return CheckStringLiteralInit(strLiteral, DeclType);
Eli Friedmana312ce22008-02-08 00:48:24 +0000643
Steve Naroff1ac6fdd2008-09-29 20:07:05 +0000644 // C99 6.7.8p16.
Eli Friedmana312ce22008-02-08 00:48:24 +0000645 if (DeclType->isArrayType())
646 return Diag(Init->getLocStart(),
647 diag::err_array_init_list_required,
648 Init->getSourceRange());
649
Steve Naroffd0091aa2008-01-10 22:15:12 +0000650 return CheckSingleInitializer(Init, DeclType);
Steve Naroff2fdc3742007-12-10 22:44:33 +0000651 }
Eli Friedmane6f058f2008-06-06 19:40:52 +0000652
Steve Naroff0cca7492008-05-01 22:18:59 +0000653 InitListChecker CheckInitList(this, InitList, DeclType);
654 return CheckInitList.HadError();
Steve Narofff0090632007-09-02 02:04:30 +0000655}
656
Fariborz Jahanian306d68f2007-11-08 23:49:49 +0000657Sema::DeclTy *
Daniel Dunbar914701e2008-08-05 16:28:08 +0000658Sema::ActOnDeclarator(Scope *S, Declarator &D, DeclTy *lastDecl) {
Steve Naroff94745042007-09-13 23:52:58 +0000659 ScopedDecl *LastDeclarator = dyn_cast_or_null<ScopedDecl>((Decl *)lastDecl);
Reid Spencer5f016e22007-07-11 17:01:13 +0000660 IdentifierInfo *II = D.getIdentifier();
661
Chris Lattnere80a59c2007-07-25 00:24:17 +0000662 // All of these full declarators require an identifier. If it doesn't have
663 // one, the ParsedFreeStandingDeclSpec action should be used.
664 if (II == 0) {
Chris Lattner311ff022007-10-16 22:36:42 +0000665 Diag(D.getDeclSpec().getSourceRange().getBegin(),
Chris Lattner98e08632007-08-28 06:17:15 +0000666 diag::err_declarator_need_ident,
Chris Lattnere80a59c2007-07-25 00:24:17 +0000667 D.getDeclSpec().getSourceRange(), D.getSourceRange());
668 return 0;
669 }
670
Chris Lattner31e05722007-08-26 06:24:45 +0000671 // The scope passed in may not be a decl scope. Zip up the scope tree until
672 // we find one that is.
673 while ((S->getFlags() & Scope::DeclScope) == 0)
674 S = S->getParent();
675
Reid Spencer5f016e22007-07-11 17:01:13 +0000676 // See if this is a redefinition of a variable in the same scope.
Steve Naroffb327ce02008-04-02 14:35:35 +0000677 Decl *PrevDecl = LookupDecl(II, Decl::IDNS_Ordinary, S);
Steve Naroffc752d042007-09-13 18:10:37 +0000678 ScopedDecl *New;
Steve Naroff5912a352007-08-28 20:14:24 +0000679 bool InvalidDecl = false;
Douglas Gregor2ce52f32008-04-13 21:07:44 +0000680
681 // In C++, the previous declaration we find might be a tag type
682 // (class or enum). In this case, the new declaration will hide the
683 // tag type.
684 if (PrevDecl && PrevDecl->getIdentifierNamespace() == Decl::IDNS_Tag)
685 PrevDecl = 0;
686
Chris Lattner41af0932007-11-14 06:34:38 +0000687 QualType R = GetTypeForDeclarator(D, S);
688 assert(!R.isNull() && "GetTypeForDeclarator() returned null type");
689
Reid Spencer5f016e22007-07-11 17:01:13 +0000690 if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef) {
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000691 // Check that there are no default arguments (C++ only).
692 if (getLangOptions().CPlusPlus)
693 CheckExtraCXXDefaultArguments(D);
694
Chris Lattner41af0932007-11-14 06:34:38 +0000695 TypedefDecl *NewTD = ParseTypedefDecl(S, D, R, LastDeclarator);
Reid Spencer5f016e22007-07-11 17:01:13 +0000696 if (!NewTD) return 0;
697
698 // Handle attributes prior to checking for duplicates in MergeVarDecl
Chris Lattner3ff30c82008-06-29 00:02:00 +0000699 ProcessDeclAttributes(NewTD, D);
Steve Naroffffce4d52008-01-09 23:34:55 +0000700 // Merge the decl with the existing one if appropriate. If the decl is
701 // in an outer scope, it isn't the same thing.
Argyrios Kyrtzidis15a12d02008-09-09 21:18:04 +0000702 if (PrevDecl && isDeclInScope(PrevDecl, CurContext, S)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000703 NewTD = MergeTypeDefDecl(NewTD, PrevDecl);
704 if (NewTD == 0) return 0;
705 }
706 New = NewTD;
Argyrios Kyrtzidis00bc6452008-05-09 23:39:43 +0000707 if (S->getFnParent() == 0) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000708 // C99 6.7.7p2: If a typedef name specifies a variably modified type
709 // then it shall have block scope.
Eli Friedman9db13972008-02-15 12:53:51 +0000710 if (NewTD->getUnderlyingType()->isVariablyModifiedType()) {
711 // FIXME: Diagnostic needs to be fixed.
712 Diag(D.getIdentifierLoc(), diag::err_typecheck_illegal_vla);
Steve Naroffd7444aa2007-08-31 17:20:07 +0000713 InvalidDecl = true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000714 }
715 }
Chris Lattner41af0932007-11-14 06:34:38 +0000716 } else if (R.getTypePtr()->isFunctionType()) {
Chris Lattner271f1a62007-09-27 15:15:46 +0000717 FunctionDecl::StorageClass SC = FunctionDecl::None;
Reid Spencer5f016e22007-07-11 17:01:13 +0000718 switch (D.getDeclSpec().getStorageClassSpec()) {
719 default: assert(0 && "Unknown storage class!");
720 case DeclSpec::SCS_auto:
721 case DeclSpec::SCS_register:
722 Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_func,
723 R.getAsString());
Steve Naroff5912a352007-08-28 20:14:24 +0000724 InvalidDecl = true;
725 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000726 case DeclSpec::SCS_unspecified: SC = FunctionDecl::None; break;
727 case DeclSpec::SCS_extern: SC = FunctionDecl::Extern; break;
728 case DeclSpec::SCS_static: SC = FunctionDecl::Static; break;
Steve Naroff7dd0bd42008-01-28 21:57:15 +0000729 case DeclSpec::SCS_private_extern: SC = FunctionDecl::PrivateExtern;break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000730 }
731
Chris Lattnera98e58d2008-03-15 21:24:04 +0000732 bool isInline = D.getDeclSpec().isInlineSpecified();
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000733 FunctionDecl *NewFD;
734 if (D.getContext() == Declarator::MemberContext) {
735 // This is a C++ method declaration.
736 NewFD = CXXMethodDecl::Create(Context, cast<CXXRecordDecl>(CurContext),
737 D.getIdentifierLoc(), II, R,
738 (SC == FunctionDecl::Static), isInline,
739 LastDeclarator);
740 } else {
741 NewFD = FunctionDecl::Create(Context, CurContext,
742 D.getIdentifierLoc(),
Steve Naroff0eb07bf2008-10-03 00:02:03 +0000743 II, R, SC, isInline, LastDeclarator,
744 // FIXME: Move to DeclGroup...
745 D.getDeclSpec().getSourceRange().getBegin());
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000746 }
Ted Kremenekf5c93c12008-02-27 22:18:07 +0000747 // Handle attributes.
Chris Lattner3ff30c82008-06-29 00:02:00 +0000748 ProcessDeclAttributes(NewFD, D);
Chris Lattner04421082008-04-08 04:40:51 +0000749
Daniel Dunbara80f8742008-08-05 01:35:17 +0000750 // Handle GNU asm-label extension (encoded as an attribute).
Daniel Dunbar914701e2008-08-05 16:28:08 +0000751 if (Expr *E = (Expr*) D.getAsmLabel()) {
Daniel Dunbara80f8742008-08-05 01:35:17 +0000752 // The parser guarantees this is a string.
753 StringLiteral *SE = cast<StringLiteral>(E);
754 NewFD->addAttr(new AsmLabelAttr(std::string(SE->getStrData(),
755 SE->getByteLength())));
756 }
757
Chris Lattner04421082008-04-08 04:40:51 +0000758 // Copy the parameter declarations from the declarator D to
759 // the function declaration NewFD, if they are available.
Eli Friedmaneb4b7052008-08-25 21:31:01 +0000760 if (D.getNumTypeObjects() > 0) {
Chris Lattner04421082008-04-08 04:40:51 +0000761 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
762
763 // Create Decl objects for each parameter, adding them to the
764 // FunctionDecl.
765 llvm::SmallVector<ParmVarDecl*, 16> Params;
766
767 // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs
768 // function that takes no arguments, not a function that takes a
Chris Lattner8123a952008-04-10 02:22:51 +0000769 // single void argument.
Eli Friedman6d1e4b52008-05-22 08:54:03 +0000770 // We let through "const void" here because Sema::GetTypeForDeclarator
771 // already checks for that case.
Chris Lattner04421082008-04-08 04:40:51 +0000772 if (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
773 FTI.ArgInfo[0].Param &&
Chris Lattner04421082008-04-08 04:40:51 +0000774 ((ParmVarDecl*)FTI.ArgInfo[0].Param)->getType()->isVoidType()) {
775 // empty arg list, don't push any params.
Chris Lattner8123a952008-04-10 02:22:51 +0000776 ParmVarDecl *Param = (ParmVarDecl*)FTI.ArgInfo[0].Param;
777
Chris Lattnerdef026a2008-04-10 02:26:16 +0000778 // In C++, the empty parameter-type-list must be spelled "void"; a
779 // typedef of void is not permitted.
780 if (getLangOptions().CPlusPlus &&
Eli Friedman6d1e4b52008-05-22 08:54:03 +0000781 Param->getType().getUnqualifiedType() != Context.VoidTy) {
Chris Lattner8123a952008-04-10 02:22:51 +0000782 Diag(Param->getLocation(), diag::ext_param_typedef_of_void);
783 }
784
Eli Friedmaneb4b7052008-08-25 21:31:01 +0000785 } else if (FTI.NumArgs > 0 && FTI.ArgInfo[0].Param != 0) {
Chris Lattner04421082008-04-08 04:40:51 +0000786 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i)
787 Params.push_back((ParmVarDecl *)FTI.ArgInfo[i].Param);
788 }
789
790 NewFD->setParams(&Params[0], Params.size());
791 }
792
Steve Naroffffce4d52008-01-09 23:34:55 +0000793 // Merge the decl with the existing one if appropriate. Since C functions
794 // are in a flat namespace, make sure we consider decls in outer scopes.
Argyrios Kyrtzidis00bc6452008-05-09 23:39:43 +0000795 if (PrevDecl &&
Argyrios Kyrtzidis15a12d02008-09-09 21:18:04 +0000796 (!getLangOptions().CPlusPlus||isDeclInScope(PrevDecl, CurContext, S))) {
Douglas Gregorf0097952008-04-21 02:02:58 +0000797 bool Redeclaration = false;
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000798
799 // If C++, determine whether NewFD is an overload of PrevDecl or
800 // a declaration that requires merging. If it's an overload,
801 // there's no more work to do here; we'll just add the new
802 // function to the scope.
803 OverloadedFunctionDecl::function_iterator MatchedDecl;
804 if (!getLangOptions().CPlusPlus ||
805 !IsOverload(NewFD, PrevDecl, MatchedDecl)) {
806 Decl *OldDecl = PrevDecl;
807
808 // If PrevDecl was an overloaded function, extract the
809 // FunctionDecl that matched.
810 if (isa<OverloadedFunctionDecl>(PrevDecl))
811 OldDecl = *MatchedDecl;
812
813 // NewFD and PrevDecl represent declarations that need to be
814 // merged.
815 NewFD = MergeFunctionDecl(NewFD, OldDecl, Redeclaration);
816
817 if (NewFD == 0) return 0;
818 if (Redeclaration) {
819 NewFD->setPreviousDeclaration(cast<FunctionDecl>(OldDecl));
820
821 if (OldDecl == PrevDecl) {
822 // Remove the name binding for the previous
823 // declaration. We'll add the binding back later, but then
824 // it will refer to the new declaration (which will
825 // contain more information).
826 IdResolver.RemoveDecl(cast<NamedDecl>(PrevDecl));
827 } else {
828 // We need to update the OverloadedFunctionDecl with the
829 // latest declaration of this function, so that name
830 // lookup will always refer to the latest declaration of
831 // this function.
832 *MatchedDecl = NewFD;
833
834 // Add the redeclaration to the current scope, since we'll
835 // be skipping PushOnScopeChains.
836 S->AddDecl(NewFD);
837
838 return NewFD;
839 }
840 }
Douglas Gregorf0097952008-04-21 02:02:58 +0000841 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000842 }
843 New = NewFD;
Chris Lattner04421082008-04-08 04:40:51 +0000844
845 // In C++, check default arguments now that we have merged decls.
846 if (getLangOptions().CPlusPlus)
847 CheckCXXDefaultArguments(NewFD);
Reid Spencer5f016e22007-07-11 17:01:13 +0000848 } else {
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000849 // Check that there are no default arguments (C++ only).
850 if (getLangOptions().CPlusPlus)
851 CheckExtraCXXDefaultArguments(D);
852
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000853 if (R.getTypePtr()->isObjCInterfaceType()) {
Fariborz Jahaniane7f64cc2007-10-12 22:10:42 +0000854 Diag(D.getIdentifierLoc(), diag::err_statically_allocated_object,
855 D.getIdentifier()->getName());
856 InvalidDecl = true;
857 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000858
859 VarDecl *NewVD;
860 VarDecl::StorageClass SC;
861 switch (D.getDeclSpec().getStorageClassSpec()) {
Chris Lattner9e151e12008-03-15 21:10:16 +0000862 default: assert(0 && "Unknown storage class!");
863 case DeclSpec::SCS_unspecified: SC = VarDecl::None; break;
864 case DeclSpec::SCS_extern: SC = VarDecl::Extern; break;
865 case DeclSpec::SCS_static: SC = VarDecl::Static; break;
866 case DeclSpec::SCS_auto: SC = VarDecl::Auto; break;
867 case DeclSpec::SCS_register: SC = VarDecl::Register; break;
868 case DeclSpec::SCS_private_extern: SC = VarDecl::PrivateExtern; break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000869 }
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000870 if (D.getContext() == Declarator::MemberContext) {
871 assert(SC == VarDecl::Static && "Invalid storage class for member!");
872 // This is a static data member for a C++ class.
873 NewVD = CXXClassVarDecl::Create(Context, cast<CXXRecordDecl>(CurContext),
874 D.getIdentifierLoc(), II,
875 R, LastDeclarator);
Steve Narofff0090632007-09-02 02:04:30 +0000876 } else {
Daniel Dunbar6f0200e2008-09-08 20:05:47 +0000877 bool ThreadSpecified = D.getDeclSpec().isThreadSpecified();
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000878 if (S->getFnParent() == 0) {
879 // C99 6.9p2: The storage-class specifiers auto and register shall not
880 // appear in the declaration specifiers in an external declaration.
881 if (SC == VarDecl::Auto || SC == VarDecl::Register) {
882 Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_fscope,
883 R.getAsString());
884 InvalidDecl = true;
885 }
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000886 }
Daniel Dunbar6f0200e2008-09-08 20:05:47 +0000887 NewVD = VarDecl::Create(Context, CurContext, D.getIdentifierLoc(),
Steve Naroff0eb07bf2008-10-03 00:02:03 +0000888 II, R, SC, LastDeclarator,
889 // FIXME: Move to DeclGroup...
890 D.getDeclSpec().getSourceRange().getBegin());
Daniel Dunbar6f0200e2008-09-08 20:05:47 +0000891 NewVD->setThreadSpecified(ThreadSpecified);
Steve Naroff53a32342007-08-28 18:45:29 +0000892 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000893 // Handle attributes prior to checking for duplicates in MergeVarDecl
Chris Lattner3ff30c82008-06-29 00:02:00 +0000894 ProcessDeclAttributes(NewVD, D);
Nate Begemanc8e89a82008-03-14 18:07:10 +0000895
Daniel Dunbara735ad82008-08-06 00:03:29 +0000896 // Handle GNU asm-label extension (encoded as an attribute).
897 if (Expr *E = (Expr*) D.getAsmLabel()) {
898 // The parser guarantees this is a string.
899 StringLiteral *SE = cast<StringLiteral>(E);
900 NewVD->addAttr(new AsmLabelAttr(std::string(SE->getStrData(),
901 SE->getByteLength())));
902 }
903
Nate Begemanc8e89a82008-03-14 18:07:10 +0000904 // Emit an error if an address space was applied to decl with local storage.
905 // This includes arrays of objects with address space qualifiers, but not
906 // automatic variables that point to other address spaces.
907 // ISO/IEC TR 18037 S5.1.2
Nate Begeman8e7dafe2008-03-25 18:36:32 +0000908 if (NewVD->hasLocalStorage() && (NewVD->getType().getAddressSpace() != 0)) {
909 Diag(D.getIdentifierLoc(), diag::err_as_qualified_auto_decl);
910 InvalidDecl = true;
Nate Begeman5af27e02008-03-14 00:22:18 +0000911 }
Steve Naroffffce4d52008-01-09 23:34:55 +0000912 // Merge the decl with the existing one if appropriate. If the decl is
913 // in an outer scope, it isn't the same thing.
Argyrios Kyrtzidis15a12d02008-09-09 21:18:04 +0000914 if (PrevDecl && isDeclInScope(PrevDecl, CurContext, S)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000915 NewVD = MergeVarDecl(NewVD, PrevDecl);
916 if (NewVD == 0) return 0;
917 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000918 New = NewVD;
919 }
920
921 // If this has an identifier, add it to the scope stack.
Argyrios Kyrtzidis87f3ff02008-04-12 00:47:19 +0000922 if (II)
923 PushOnScopeChains(New, S);
Steve Naroff5912a352007-08-28 20:14:24 +0000924 // If any semantic error occurred, mark the decl as invalid.
925 if (D.getInvalidType() || InvalidDecl)
926 New->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +0000927
928 return New;
929}
930
Eli Friedmanc594b322008-05-20 13:48:25 +0000931bool Sema::CheckAddressConstantExpressionLValue(const Expr* Init) {
932 switch (Init->getStmtClass()) {
933 default:
934 Diag(Init->getExprLoc(),
935 diag::err_init_element_not_constant, Init->getSourceRange());
936 return true;
937 case Expr::ParenExprClass: {
938 const ParenExpr* PE = cast<ParenExpr>(Init);
939 return CheckAddressConstantExpressionLValue(PE->getSubExpr());
940 }
941 case Expr::CompoundLiteralExprClass:
942 return cast<CompoundLiteralExpr>(Init)->isFileScope();
943 case Expr::DeclRefExprClass: {
944 const Decl *D = cast<DeclRefExpr>(Init)->getDecl();
Eli Friedman97c0a392008-05-21 03:39:11 +0000945 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
946 if (VD->hasGlobalStorage())
947 return false;
948 Diag(Init->getExprLoc(),
949 diag::err_init_element_not_constant, Init->getSourceRange());
950 return true;
951 }
Eli Friedmanc594b322008-05-20 13:48:25 +0000952 if (isa<FunctionDecl>(D))
953 return false;
954 Diag(Init->getExprLoc(),
955 diag::err_init_element_not_constant, Init->getSourceRange());
Steve Naroffd0091aa2008-01-10 22:15:12 +0000956 return true;
957 }
Eli Friedmanc594b322008-05-20 13:48:25 +0000958 case Expr::MemberExprClass: {
959 const MemberExpr *M = cast<MemberExpr>(Init);
960 if (M->isArrow())
961 return CheckAddressConstantExpression(M->getBase());
962 return CheckAddressConstantExpressionLValue(M->getBase());
963 }
964 case Expr::ArraySubscriptExprClass: {
965 // FIXME: Should we pedwarn for "x[0+0]" (where x is a pointer)?
966 const ArraySubscriptExpr *ASE = cast<ArraySubscriptExpr>(Init);
967 return CheckAddressConstantExpression(ASE->getBase()) ||
968 CheckArithmeticConstantExpression(ASE->getIdx());
969 }
970 case Expr::StringLiteralClass:
Chris Lattnerd9f69102008-08-10 01:53:14 +0000971 case Expr::PredefinedExprClass:
Eli Friedmanc594b322008-05-20 13:48:25 +0000972 return false;
973 case Expr::UnaryOperatorClass: {
974 const UnaryOperator *Exp = cast<UnaryOperator>(Init);
975
976 // C99 6.6p9
977 if (Exp->getOpcode() == UnaryOperator::Deref)
Eli Friedman97c0a392008-05-21 03:39:11 +0000978 return CheckAddressConstantExpression(Exp->getSubExpr());
Eli Friedmanc594b322008-05-20 13:48:25 +0000979
980 Diag(Init->getExprLoc(),
981 diag::err_init_element_not_constant, Init->getSourceRange());
982 return true;
983 }
984 }
985}
986
987bool Sema::CheckAddressConstantExpression(const Expr* Init) {
988 switch (Init->getStmtClass()) {
989 default:
990 Diag(Init->getExprLoc(),
991 diag::err_init_element_not_constant, Init->getSourceRange());
992 return true;
Chris Lattner506ff882008-10-06 07:26:43 +0000993 case Expr::ParenExprClass:
994 return CheckAddressConstantExpression(cast<ParenExpr>(Init)->getSubExpr());
Eli Friedmanc594b322008-05-20 13:48:25 +0000995 case Expr::StringLiteralClass:
996 case Expr::ObjCStringLiteralClass:
997 return false;
Chris Lattner506ff882008-10-06 07:26:43 +0000998 case Expr::CallExprClass:
999 // __builtin___CFStringMakeConstantString is a valid constant l-value.
1000 if (cast<CallExpr>(Init)->isBuiltinCall() ==
1001 Builtin::BI__builtin___CFStringMakeConstantString)
1002 return false;
1003
1004 Diag(Init->getExprLoc(),
1005 diag::err_init_element_not_constant, Init->getSourceRange());
1006 return true;
1007
Eli Friedmanc594b322008-05-20 13:48:25 +00001008 case Expr::UnaryOperatorClass: {
1009 const UnaryOperator *Exp = cast<UnaryOperator>(Init);
1010
1011 // C99 6.6p9
1012 if (Exp->getOpcode() == UnaryOperator::AddrOf)
1013 return CheckAddressConstantExpressionLValue(Exp->getSubExpr());
1014
1015 if (Exp->getOpcode() == UnaryOperator::Extension)
1016 return CheckAddressConstantExpression(Exp->getSubExpr());
1017
1018 Diag(Init->getExprLoc(),
1019 diag::err_init_element_not_constant, Init->getSourceRange());
1020 return true;
1021 }
1022 case Expr::BinaryOperatorClass: {
1023 // FIXME: Should we pedwarn for expressions like "a + 1 + 2"?
1024 const BinaryOperator *Exp = cast<BinaryOperator>(Init);
1025
1026 Expr *PExp = Exp->getLHS();
1027 Expr *IExp = Exp->getRHS();
1028 if (IExp->getType()->isPointerType())
1029 std::swap(PExp, IExp);
1030
1031 // FIXME: Should we pedwarn if IExp isn't an integer constant expression?
1032 return CheckAddressConstantExpression(PExp) ||
1033 CheckArithmeticConstantExpression(IExp);
1034 }
Eli Friedmanc3f07642008-08-25 20:46:57 +00001035 case Expr::ImplicitCastExprClass:
Argyrios Kyrtzidis0835a3c2008-08-18 23:01:59 +00001036 case Expr::ExplicitCastExprClass: {
Eli Friedmanc594b322008-05-20 13:48:25 +00001037 const Expr* SubExpr = cast<CastExpr>(Init)->getSubExpr();
Eli Friedmanc3f07642008-08-25 20:46:57 +00001038 if (Init->getStmtClass() == Expr::ImplicitCastExprClass) {
1039 // Check for implicit promotion
1040 if (SubExpr->getType()->isFunctionType() ||
1041 SubExpr->getType()->isArrayType())
1042 return CheckAddressConstantExpressionLValue(SubExpr);
1043 }
Eli Friedmanc594b322008-05-20 13:48:25 +00001044
1045 // Check for pointer->pointer cast
1046 if (SubExpr->getType()->isPointerType())
1047 return CheckAddressConstantExpression(SubExpr);
1048
Eli Friedmanc3f07642008-08-25 20:46:57 +00001049 if (SubExpr->getType()->isIntegralType()) {
1050 // Check for the special-case of a pointer->int->pointer cast;
1051 // this isn't standard, but some code requires it. See
1052 // PR2720 for an example.
1053 if (const CastExpr* SubCast = dyn_cast<CastExpr>(SubExpr)) {
1054 if (SubCast->getSubExpr()->getType()->isPointerType()) {
1055 unsigned IntWidth = Context.getIntWidth(SubCast->getType());
1056 unsigned PointerWidth = Context.getTypeSize(Context.VoidPtrTy);
1057 if (IntWidth >= PointerWidth) {
1058 return CheckAddressConstantExpression(SubCast->getSubExpr());
1059 }
1060 }
1061 }
1062 }
1063 if (SubExpr->getType()->isArithmeticType()) {
Eli Friedmanc594b322008-05-20 13:48:25 +00001064 return CheckArithmeticConstantExpression(SubExpr);
Eli Friedmanc3f07642008-08-25 20:46:57 +00001065 }
Eli Friedmanc594b322008-05-20 13:48:25 +00001066
1067 Diag(Init->getExprLoc(),
1068 diag::err_init_element_not_constant, Init->getSourceRange());
1069 return true;
1070 }
1071 case Expr::ConditionalOperatorClass: {
1072 // FIXME: Should we pedwarn here?
1073 const ConditionalOperator *Exp = cast<ConditionalOperator>(Init);
1074 if (!Exp->getCond()->getType()->isArithmeticType()) {
1075 Diag(Init->getExprLoc(),
1076 diag::err_init_element_not_constant, Init->getSourceRange());
1077 return true;
1078 }
1079 if (CheckArithmeticConstantExpression(Exp->getCond()))
1080 return true;
1081 if (Exp->getLHS() &&
1082 CheckAddressConstantExpression(Exp->getLHS()))
1083 return true;
1084 return CheckAddressConstantExpression(Exp->getRHS());
1085 }
1086 case Expr::AddrLabelExprClass:
1087 return false;
1088 }
1089}
1090
Eli Friedman4caf0552008-06-09 05:05:07 +00001091static const Expr* FindExpressionBaseAddress(const Expr* E);
1092
1093static const Expr* FindExpressionBaseAddressLValue(const Expr* E) {
1094 switch (E->getStmtClass()) {
1095 default:
1096 return E;
1097 case Expr::ParenExprClass: {
1098 const ParenExpr* PE = cast<ParenExpr>(E);
1099 return FindExpressionBaseAddressLValue(PE->getSubExpr());
1100 }
1101 case Expr::MemberExprClass: {
1102 const MemberExpr *M = cast<MemberExpr>(E);
1103 if (M->isArrow())
1104 return FindExpressionBaseAddress(M->getBase());
1105 return FindExpressionBaseAddressLValue(M->getBase());
1106 }
1107 case Expr::ArraySubscriptExprClass: {
1108 const ArraySubscriptExpr *ASE = cast<ArraySubscriptExpr>(E);
1109 return FindExpressionBaseAddress(ASE->getBase());
1110 }
1111 case Expr::UnaryOperatorClass: {
1112 const UnaryOperator *Exp = cast<UnaryOperator>(E);
1113
1114 if (Exp->getOpcode() == UnaryOperator::Deref)
1115 return FindExpressionBaseAddress(Exp->getSubExpr());
1116
1117 return E;
1118 }
1119 }
1120}
1121
1122static const Expr* FindExpressionBaseAddress(const Expr* E) {
1123 switch (E->getStmtClass()) {
1124 default:
1125 return E;
1126 case Expr::ParenExprClass: {
1127 const ParenExpr* PE = cast<ParenExpr>(E);
1128 return FindExpressionBaseAddress(PE->getSubExpr());
1129 }
1130 case Expr::UnaryOperatorClass: {
1131 const UnaryOperator *Exp = cast<UnaryOperator>(E);
1132
1133 // C99 6.6p9
1134 if (Exp->getOpcode() == UnaryOperator::AddrOf)
1135 return FindExpressionBaseAddressLValue(Exp->getSubExpr());
1136
1137 if (Exp->getOpcode() == UnaryOperator::Extension)
1138 return FindExpressionBaseAddress(Exp->getSubExpr());
1139
1140 return E;
1141 }
1142 case Expr::BinaryOperatorClass: {
1143 const BinaryOperator *Exp = cast<BinaryOperator>(E);
1144
1145 Expr *PExp = Exp->getLHS();
1146 Expr *IExp = Exp->getRHS();
1147 if (IExp->getType()->isPointerType())
1148 std::swap(PExp, IExp);
1149
1150 return FindExpressionBaseAddress(PExp);
1151 }
1152 case Expr::ImplicitCastExprClass: {
1153 const Expr* SubExpr = cast<ImplicitCastExpr>(E)->getSubExpr();
1154
1155 // Check for implicit promotion
1156 if (SubExpr->getType()->isFunctionType() ||
1157 SubExpr->getType()->isArrayType())
1158 return FindExpressionBaseAddressLValue(SubExpr);
1159
1160 // Check for pointer->pointer cast
1161 if (SubExpr->getType()->isPointerType())
1162 return FindExpressionBaseAddress(SubExpr);
1163
1164 // We assume that we have an arithmetic expression here;
1165 // if we don't, we'll figure it out later
1166 return 0;
1167 }
Argyrios Kyrtzidis0835a3c2008-08-18 23:01:59 +00001168 case Expr::ExplicitCastExprClass: {
Eli Friedman4caf0552008-06-09 05:05:07 +00001169 const Expr* SubExpr = cast<CastExpr>(E)->getSubExpr();
1170
1171 // Check for pointer->pointer cast
1172 if (SubExpr->getType()->isPointerType())
1173 return FindExpressionBaseAddress(SubExpr);
1174
1175 // We assume that we have an arithmetic expression here;
1176 // if we don't, we'll figure it out later
1177 return 0;
1178 }
1179 }
1180}
1181
Eli Friedmanc594b322008-05-20 13:48:25 +00001182bool Sema::CheckArithmeticConstantExpression(const Expr* Init) {
1183 switch (Init->getStmtClass()) {
1184 default:
1185 Diag(Init->getExprLoc(),
1186 diag::err_init_element_not_constant, Init->getSourceRange());
1187 return true;
1188 case Expr::ParenExprClass: {
1189 const ParenExpr* PE = cast<ParenExpr>(Init);
1190 return CheckArithmeticConstantExpression(PE->getSubExpr());
1191 }
1192 case Expr::FloatingLiteralClass:
1193 case Expr::IntegerLiteralClass:
1194 case Expr::CharacterLiteralClass:
1195 case Expr::ImaginaryLiteralClass:
1196 case Expr::TypesCompatibleExprClass:
1197 case Expr::CXXBoolLiteralExprClass:
1198 return false;
1199 case Expr::CallExprClass: {
1200 const CallExpr *CE = cast<CallExpr>(Init);
Chris Lattner45b6b9d2008-10-06 06:49:02 +00001201
1202 // Allow any constant foldable calls to builtins.
1203 if (CE->isBuiltinCall() && CE->isEvaluatable(Context))
Eli Friedmanc594b322008-05-20 13:48:25 +00001204 return false;
Chris Lattner45b6b9d2008-10-06 06:49:02 +00001205
Eli Friedmanc594b322008-05-20 13:48:25 +00001206 Diag(Init->getExprLoc(),
1207 diag::err_init_element_not_constant, Init->getSourceRange());
1208 return true;
1209 }
1210 case Expr::DeclRefExprClass: {
1211 const Decl *D = cast<DeclRefExpr>(Init)->getDecl();
1212 if (isa<EnumConstantDecl>(D))
1213 return false;
1214 Diag(Init->getExprLoc(),
1215 diag::err_init_element_not_constant, Init->getSourceRange());
1216 return true;
1217 }
1218 case Expr::CompoundLiteralExprClass:
1219 // Allow "(vector type){2,4}"; normal C constraints don't allow this,
1220 // but vectors are allowed to be magic.
1221 if (Init->getType()->isVectorType())
1222 return false;
1223 Diag(Init->getExprLoc(),
1224 diag::err_init_element_not_constant, Init->getSourceRange());
1225 return true;
1226 case Expr::UnaryOperatorClass: {
1227 const UnaryOperator *Exp = cast<UnaryOperator>(Init);
1228
1229 switch (Exp->getOpcode()) {
1230 // Address, indirect, pre/post inc/dec, etc are not valid constant exprs.
1231 // See C99 6.6p3.
1232 default:
1233 Diag(Init->getExprLoc(),
1234 diag::err_init_element_not_constant, Init->getSourceRange());
1235 return true;
1236 case UnaryOperator::SizeOf:
1237 case UnaryOperator::AlignOf:
1238 case UnaryOperator::OffsetOf:
1239 // sizeof(E) is a constantexpr if and only if E is not evaluted.
1240 // See C99 6.5.3.4p2 and 6.6p3.
1241 if (Exp->getSubExpr()->getType()->isConstantSizeType())
1242 return false;
1243 Diag(Init->getExprLoc(),
1244 diag::err_init_element_not_constant, Init->getSourceRange());
1245 return true;
1246 case UnaryOperator::Extension:
1247 case UnaryOperator::LNot:
1248 case UnaryOperator::Plus:
1249 case UnaryOperator::Minus:
1250 case UnaryOperator::Not:
1251 return CheckArithmeticConstantExpression(Exp->getSubExpr());
1252 }
1253 }
1254 case Expr::SizeOfAlignOfTypeExprClass: {
1255 const SizeOfAlignOfTypeExpr *Exp = cast<SizeOfAlignOfTypeExpr>(Init);
1256 // Special check for void types, which are allowed as an extension
1257 if (Exp->getArgumentType()->isVoidType())
1258 return false;
1259 // alignof always evaluates to a constant.
1260 // FIXME: is sizeof(int[3.0]) a constant expression?
1261 if (Exp->isSizeOf() && !Exp->getArgumentType()->isConstantSizeType()) {
1262 Diag(Init->getExprLoc(),
1263 diag::err_init_element_not_constant, Init->getSourceRange());
1264 return true;
1265 }
1266 return false;
1267 }
1268 case Expr::BinaryOperatorClass: {
1269 const BinaryOperator *Exp = cast<BinaryOperator>(Init);
1270
1271 if (Exp->getLHS()->getType()->isArithmeticType() &&
1272 Exp->getRHS()->getType()->isArithmeticType()) {
1273 return CheckArithmeticConstantExpression(Exp->getLHS()) ||
1274 CheckArithmeticConstantExpression(Exp->getRHS());
1275 }
1276
Eli Friedman4caf0552008-06-09 05:05:07 +00001277 if (Exp->getLHS()->getType()->isPointerType() &&
1278 Exp->getRHS()->getType()->isPointerType()) {
1279 const Expr* LHSBase = FindExpressionBaseAddress(Exp->getLHS());
1280 const Expr* RHSBase = FindExpressionBaseAddress(Exp->getRHS());
1281
1282 // Only allow a null (constant integer) base; we could
1283 // allow some additional cases if necessary, but this
1284 // is sufficient to cover offsetof-like constructs.
1285 if (!LHSBase && !RHSBase) {
1286 return CheckAddressConstantExpression(Exp->getLHS()) ||
1287 CheckAddressConstantExpression(Exp->getRHS());
1288 }
1289 }
1290
Eli Friedmanc594b322008-05-20 13:48:25 +00001291 Diag(Init->getExprLoc(),
1292 diag::err_init_element_not_constant, Init->getSourceRange());
1293 return true;
1294 }
1295 case Expr::ImplicitCastExprClass:
Argyrios Kyrtzidis0835a3c2008-08-18 23:01:59 +00001296 case Expr::ExplicitCastExprClass: {
1297 const Expr *SubExpr = cast<CastExpr>(Init)->getSubExpr();
Eli Friedman6d4abe12008-09-01 22:08:17 +00001298 if (SubExpr->getType()->isArithmeticType())
1299 return CheckArithmeticConstantExpression(SubExpr);
1300
Eli Friedmanb529d832008-09-02 09:37:00 +00001301 if (SubExpr->getType()->isPointerType()) {
1302 const Expr* Base = FindExpressionBaseAddress(SubExpr);
1303 // If the pointer has a null base, this is an offsetof-like construct
1304 if (!Base)
1305 return CheckAddressConstantExpression(SubExpr);
1306 }
1307
Eli Friedman6d4abe12008-09-01 22:08:17 +00001308 Diag(Init->getExprLoc(),
1309 diag::err_init_element_not_constant, Init->getSourceRange());
1310 return true;
Eli Friedmanc594b322008-05-20 13:48:25 +00001311 }
1312 case Expr::ConditionalOperatorClass: {
1313 const ConditionalOperator *Exp = cast<ConditionalOperator>(Init);
Chris Lattner46cfefa2008-10-06 05:42:39 +00001314
1315 // If GNU extensions are disabled, we require all operands to be arithmetic
1316 // constant expressions.
1317 if (getLangOptions().NoExtensions) {
1318 return CheckArithmeticConstantExpression(Exp->getCond()) ||
1319 (Exp->getLHS() && CheckArithmeticConstantExpression(Exp->getLHS())) ||
1320 CheckArithmeticConstantExpression(Exp->getRHS());
1321 }
1322
1323 // Otherwise, we have to emulate some of the behavior of fold here.
1324 // Basically GCC treats things like "4 ? 1 : somefunc()" as a constant
1325 // because it can constant fold things away. To retain compatibility with
1326 // GCC code, we see if we can fold the condition to a constant (which we
1327 // should always be able to do in theory). If so, we only require the
1328 // specified arm of the conditional to be a constant. This is a horrible
1329 // hack, but is require by real world code that uses __builtin_constant_p.
1330 APValue Val;
1331 if (!Exp->getCond()->tryEvaluate(Val, Context)) {
1332 // If the tryEvaluate couldn't fold it, CheckArithmeticConstantExpression
1333 // won't be able to either. Use it to emit the diagnostic though.
1334 bool Res = CheckArithmeticConstantExpression(Exp->getCond());
1335 assert(Res && "tryEvaluate couldn't evaluate this constant?");
1336 return Res;
1337 }
1338
1339 // Verify that the side following the condition is also a constant.
1340 const Expr *TrueSide = Exp->getLHS(), *FalseSide = Exp->getRHS();
1341 if (Val.getInt() == 0)
1342 std::swap(TrueSide, FalseSide);
1343
1344 if (TrueSide && CheckArithmeticConstantExpression(TrueSide))
Eli Friedmanc594b322008-05-20 13:48:25 +00001345 return true;
Chris Lattner46cfefa2008-10-06 05:42:39 +00001346
1347 // Okay, the evaluated side evaluates to a constant, so we accept this.
1348 // Check to see if the other side is obviously not a constant. If so,
1349 // emit a warning that this is a GNU extension.
Chris Lattner45b6b9d2008-10-06 06:49:02 +00001350 if (FalseSide && !FalseSide->isEvaluatable(Context))
Chris Lattner46cfefa2008-10-06 05:42:39 +00001351 Diag(Init->getExprLoc(),
1352 diag::ext_typecheck_expression_not_constant_but_accepted,
1353 FalseSide->getSourceRange());
1354 return false;
Eli Friedmanc594b322008-05-20 13:48:25 +00001355 }
1356 }
1357}
1358
1359bool Sema::CheckForConstantInitializer(Expr *Init, QualType DclT) {
Nuno Lopes9a979c32008-07-07 16:46:50 +00001360 Init = Init->IgnoreParens();
1361
Eli Friedmanc594b322008-05-20 13:48:25 +00001362 // Look through CXXDefaultArgExprs; they have no meaning in this context.
1363 if (CXXDefaultArgExpr* DAE = dyn_cast<CXXDefaultArgExpr>(Init))
1364 return CheckForConstantInitializer(DAE->getExpr(), DclT);
1365
Nuno Lopes9a979c32008-07-07 16:46:50 +00001366 if (CompoundLiteralExpr *e = dyn_cast<CompoundLiteralExpr>(Init))
1367 return CheckForConstantInitializer(e->getInitializer(), DclT);
1368
Eli Friedmanc594b322008-05-20 13:48:25 +00001369 if (Init->getType()->isReferenceType()) {
Chris Lattner46cfefa2008-10-06 05:42:39 +00001370 // FIXME: Work out how the heck references work.
Eli Friedmanc594b322008-05-20 13:48:25 +00001371 return false;
Eli Friedmanc594b322008-05-20 13:48:25 +00001372 }
1373
1374 if (InitListExpr *Exp = dyn_cast<InitListExpr>(Init)) {
1375 unsigned numInits = Exp->getNumInits();
1376 for (unsigned i = 0; i < numInits; i++) {
1377 // FIXME: Need to get the type of the declaration for C++,
1378 // because it could be a reference?
1379 if (CheckForConstantInitializer(Exp->getInit(i),
1380 Exp->getInit(i)->getType()))
1381 return true;
1382 }
1383 return false;
1384 }
1385
1386 if (Init->isNullPointerConstant(Context))
1387 return false;
1388 if (Init->getType()->isArithmeticType()) {
Chris Lattnerb77792e2008-07-26 22:17:49 +00001389 QualType InitTy = Context.getCanonicalType(Init->getType())
1390 .getUnqualifiedType();
Eli Friedmanc1cc6dc2008-05-30 18:14:48 +00001391 if (InitTy == Context.BoolTy) {
1392 // Special handling for pointers implicitly cast to bool;
1393 // (e.g. "_Bool rr = &rr;"). This is only legal at the top level.
1394 if (ImplicitCastExpr* ICE = dyn_cast<ImplicitCastExpr>(Init)) {
1395 Expr* SubE = ICE->getSubExpr();
1396 if (SubE->getType()->isPointerType() ||
1397 SubE->getType()->isArrayType() ||
1398 SubE->getType()->isFunctionType()) {
1399 return CheckAddressConstantExpression(Init);
1400 }
1401 }
1402 } else if (InitTy->isIntegralType()) {
1403 Expr* SubE = 0;
Argyrios Kyrtzidis0835a3c2008-08-18 23:01:59 +00001404 if (CastExpr* CE = dyn_cast<CastExpr>(Init))
Eli Friedmanc1cc6dc2008-05-30 18:14:48 +00001405 SubE = CE->getSubExpr();
1406 // Special check for pointer cast to int; we allow as an extension
1407 // an address constant cast to an integer if the integer
1408 // is of an appropriate width (this sort of code is apparently used
1409 // in some places).
1410 // FIXME: Add pedwarn?
1411 // FIXME: Don't allow bitfields here! Need the FieldDecl for that.
1412 if (SubE && (SubE->getType()->isPointerType() ||
1413 SubE->getType()->isArrayType() ||
1414 SubE->getType()->isFunctionType())) {
1415 unsigned IntWidth = Context.getTypeSize(Init->getType());
1416 unsigned PointerWidth = Context.getTypeSize(Context.VoidPtrTy);
1417 if (IntWidth >= PointerWidth)
1418 return CheckAddressConstantExpression(Init);
1419 }
Eli Friedmanc594b322008-05-20 13:48:25 +00001420 }
1421
1422 return CheckArithmeticConstantExpression(Init);
1423 }
1424
1425 if (Init->getType()->isPointerType())
1426 return CheckAddressConstantExpression(Init);
1427
Eli Friedmanc1cc6dc2008-05-30 18:14:48 +00001428 // An array type at the top level that isn't an init-list must
1429 // be a string literal
Eli Friedmanc594b322008-05-20 13:48:25 +00001430 if (Init->getType()->isArrayType())
1431 return false;
1432
Nuno Lopes73419bf2008-09-01 18:42:41 +00001433 if (Init->getType()->isFunctionType())
1434 return false;
1435
Steve Naroff8af6a452008-10-02 17:12:56 +00001436 // Allow block exprs at top level.
1437 if (Init->getType()->isBlockPointerType())
1438 return false;
1439
Eli Friedmanc594b322008-05-20 13:48:25 +00001440 Diag(Init->getExprLoc(), diag::err_init_element_not_constant,
1441 Init->getSourceRange());
1442 return true;
Steve Naroffd0091aa2008-01-10 22:15:12 +00001443}
1444
Steve Naroffbb204692007-09-12 14:07:44 +00001445void Sema::AddInitializerToDecl(DeclTy *dcl, ExprTy *init) {
Steve Naroff410e3e22007-09-12 20:13:48 +00001446 Decl *RealDecl = static_cast<Decl *>(dcl);
Steve Naroffbb204692007-09-12 14:07:44 +00001447 Expr *Init = static_cast<Expr *>(init);
Chris Lattner9a11b9a2007-10-19 20:10:30 +00001448 assert(Init && "missing initializer");
Steve Naroffbb204692007-09-12 14:07:44 +00001449
Chris Lattner9a11b9a2007-10-19 20:10:30 +00001450 // If there is no declaration, there was an error parsing it. Just ignore
1451 // the initializer.
1452 if (RealDecl == 0) {
1453 delete Init;
1454 return;
1455 }
Steve Naroffbb204692007-09-12 14:07:44 +00001456
Steve Naroff410e3e22007-09-12 20:13:48 +00001457 VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl);
1458 if (!VDecl) {
Steve Naroff8e74c932007-09-13 21:41:19 +00001459 Diag(dyn_cast<ScopedDecl>(RealDecl)->getLocation(),
1460 diag::err_illegal_initializer);
Steve Naroff410e3e22007-09-12 20:13:48 +00001461 RealDecl->setInvalidDecl();
1462 return;
1463 }
Steve Naroffbb204692007-09-12 14:07:44 +00001464 // Get the decls type and save a reference for later, since
Steve Naroffd0091aa2008-01-10 22:15:12 +00001465 // CheckInitializerTypes may change it.
Steve Naroff410e3e22007-09-12 20:13:48 +00001466 QualType DclT = VDecl->getType(), SavT = DclT;
Steve Naroff248a7532008-04-15 22:42:06 +00001467 if (VDecl->isBlockVarDecl()) {
1468 VarDecl::StorageClass SC = VDecl->getStorageClass();
Steve Naroffbb204692007-09-12 14:07:44 +00001469 if (SC == VarDecl::Extern) { // C99 6.7.8p5
Steve Naroff410e3e22007-09-12 20:13:48 +00001470 Diag(VDecl->getLocation(), diag::err_block_extern_cant_init);
Steve Naroff248a7532008-04-15 22:42:06 +00001471 VDecl->setInvalidDecl();
1472 } else if (!VDecl->isInvalidDecl()) {
Steve Naroffa9960332008-01-25 00:51:06 +00001473 if (CheckInitializerTypes(Init, DclT))
Steve Naroff248a7532008-04-15 22:42:06 +00001474 VDecl->setInvalidDecl();
Anders Carlssonc5eb7312008-08-22 05:00:02 +00001475
1476 // C++ 3.6.2p2, allow dynamic initialization of static initializers.
1477 if (!getLangOptions().CPlusPlus) {
1478 if (SC == VarDecl::Static) // C99 6.7.8p4.
1479 CheckForConstantInitializer(Init, DclT);
1480 }
Steve Naroffbb204692007-09-12 14:07:44 +00001481 }
Steve Naroff248a7532008-04-15 22:42:06 +00001482 } else if (VDecl->isFileVarDecl()) {
1483 if (VDecl->getStorageClass() == VarDecl::Extern)
Steve Naroff410e3e22007-09-12 20:13:48 +00001484 Diag(VDecl->getLocation(), diag::warn_extern_init);
Steve Naroff248a7532008-04-15 22:42:06 +00001485 if (!VDecl->isInvalidDecl())
Steve Naroffa9960332008-01-25 00:51:06 +00001486 if (CheckInitializerTypes(Init, DclT))
Steve Naroff248a7532008-04-15 22:42:06 +00001487 VDecl->setInvalidDecl();
Steve Naroffd0091aa2008-01-10 22:15:12 +00001488
Anders Carlssonc5eb7312008-08-22 05:00:02 +00001489 // C++ 3.6.2p2, allow dynamic initialization of static initializers.
1490 if (!getLangOptions().CPlusPlus) {
1491 // C99 6.7.8p4. All file scoped initializers need to be constant.
1492 CheckForConstantInitializer(Init, DclT);
1493 }
Steve Naroffbb204692007-09-12 14:07:44 +00001494 }
1495 // If the type changed, it means we had an incomplete type that was
1496 // completed by the initializer. For example:
1497 // int ary[] = { 1, 3, 5 };
1498 // "ary" transitions from a VariableArrayType to a ConstantArrayType.
Christopher Lamb48b12392007-11-29 19:09:19 +00001499 if (!VDecl->isInvalidDecl() && (DclT != SavT)) {
Steve Naroff410e3e22007-09-12 20:13:48 +00001500 VDecl->setType(DclT);
Christopher Lamb48b12392007-11-29 19:09:19 +00001501 Init->setType(DclT);
1502 }
Steve Naroffbb204692007-09-12 14:07:44 +00001503
1504 // Attach the initializer to the decl.
Steve Naroff410e3e22007-09-12 20:13:48 +00001505 VDecl->setInit(Init);
Steve Naroffbb204692007-09-12 14:07:44 +00001506 return;
1507}
1508
Reid Spencer5f016e22007-07-11 17:01:13 +00001509/// The declarators are chained together backwards, reverse the list.
1510Sema::DeclTy *Sema::FinalizeDeclaratorGroup(Scope *S, DeclTy *group) {
1511 // Often we have single declarators, handle them quickly.
Steve Naroff94745042007-09-13 23:52:58 +00001512 Decl *GroupDecl = static_cast<Decl*>(group);
1513 if (GroupDecl == 0)
Steve Naroffbb204692007-09-12 14:07:44 +00001514 return 0;
Steve Naroff94745042007-09-13 23:52:58 +00001515
1516 ScopedDecl *Group = dyn_cast<ScopedDecl>(GroupDecl);
1517 ScopedDecl *NewGroup = 0;
Steve Naroffbb204692007-09-12 14:07:44 +00001518 if (Group->getNextDeclarator() == 0)
Reid Spencer5f016e22007-07-11 17:01:13 +00001519 NewGroup = Group;
Steve Naroffbb204692007-09-12 14:07:44 +00001520 else { // reverse the list.
1521 while (Group) {
Steve Naroff94745042007-09-13 23:52:58 +00001522 ScopedDecl *Next = Group->getNextDeclarator();
Steve Naroffbb204692007-09-12 14:07:44 +00001523 Group->setNextDeclarator(NewGroup);
1524 NewGroup = Group;
1525 Group = Next;
1526 }
1527 }
1528 // Perform semantic analysis that depends on having fully processed both
1529 // the declarator and initializer.
Steve Naroff94745042007-09-13 23:52:58 +00001530 for (ScopedDecl *ID = NewGroup; ID; ID = ID->getNextDeclarator()) {
Steve Naroffbb204692007-09-12 14:07:44 +00001531 VarDecl *IDecl = dyn_cast<VarDecl>(ID);
1532 if (!IDecl)
1533 continue;
Steve Naroffbb204692007-09-12 14:07:44 +00001534 QualType T = IDecl->getType();
1535
1536 // C99 6.7.5.2p2: If an identifier is declared to be an object with
1537 // static storage duration, it shall not have a variable length array.
Steve Naroff248a7532008-04-15 22:42:06 +00001538 if ((IDecl->isFileVarDecl() || IDecl->isBlockVarDecl()) &&
1539 IDecl->getStorageClass() == VarDecl::Static) {
Chris Lattnerc63a1f22008-08-04 07:31:14 +00001540 if (T->isVariableArrayType()) {
Eli Friedmanc5773c42008-02-15 18:16:39 +00001541 Diag(IDecl->getLocation(), diag::err_typecheck_illegal_vla);
1542 IDecl->setInvalidDecl();
Steve Naroffbb204692007-09-12 14:07:44 +00001543 }
1544 }
1545 // Block scope. C99 6.7p7: If an identifier for an object is declared with
1546 // no linkage (C99 6.2.2p6), the type for the object shall be complete...
Steve Naroff248a7532008-04-15 22:42:06 +00001547 if (IDecl->isBlockVarDecl() &&
1548 IDecl->getStorageClass() != VarDecl::Extern) {
Chris Lattnerfd89bc82008-04-02 01:05:10 +00001549 if (T->isIncompleteType() && !IDecl->isInvalidDecl()) {
Chris Lattner8b1be772007-12-02 07:50:03 +00001550 Diag(IDecl->getLocation(), diag::err_typecheck_decl_incomplete_type,
1551 T.getAsString());
Steve Naroffbb204692007-09-12 14:07:44 +00001552 IDecl->setInvalidDecl();
1553 }
1554 }
1555 // File scope. C99 6.9.2p2: A declaration of an identifier for and
1556 // object that has file scope without an initializer, and without a
1557 // storage-class specifier or with the storage-class specifier "static",
1558 // constitutes a tentative definition. Note: A tentative definition with
1559 // external linkage is valid (C99 6.2.2p5).
Steve Naroffff9eb1f2008-08-08 17:50:35 +00001560 if (isTentativeDefinition(IDecl)) {
Eli Friedman9db13972008-02-15 12:53:51 +00001561 if (T->isIncompleteArrayType()) {
Steve Naroff9a75f8a2008-01-18 20:40:52 +00001562 // C99 6.9.2 (p2, p5): Implicit initialization causes an incomplete
1563 // array to be completed. Don't issue a diagnostic.
Chris Lattnerfd89bc82008-04-02 01:05:10 +00001564 } else if (T->isIncompleteType() && !IDecl->isInvalidDecl()) {
Steve Naroff9a75f8a2008-01-18 20:40:52 +00001565 // C99 6.9.2p3: If the declaration of an identifier for an object is
1566 // a tentative definition and has internal linkage (C99 6.2.2p3), the
1567 // declared type shall not be an incomplete type.
Chris Lattner8b1be772007-12-02 07:50:03 +00001568 Diag(IDecl->getLocation(), diag::err_typecheck_decl_incomplete_type,
1569 T.getAsString());
Steve Naroffbb204692007-09-12 14:07:44 +00001570 IDecl->setInvalidDecl();
1571 }
1572 }
Steve Naroffff9eb1f2008-08-08 17:50:35 +00001573 if (IDecl->isFileVarDecl())
1574 CheckForFileScopedRedefinitions(S, IDecl);
Reid Spencer5f016e22007-07-11 17:01:13 +00001575 }
1576 return NewGroup;
1577}
Steve Naroffe1223f72007-08-28 03:03:08 +00001578
Chris Lattner04421082008-04-08 04:40:51 +00001579/// ActOnParamDeclarator - Called from Parser::ParseFunctionDeclarator()
1580/// to introduce parameters into function prototype scope.
1581Sema::DeclTy *
1582Sema::ActOnParamDeclarator(Scope *S, Declarator &D) {
Chris Lattner985abd92008-06-26 06:49:43 +00001583 const DeclSpec &DS = D.getDeclSpec();
Chris Lattner04421082008-04-08 04:40:51 +00001584
1585 // Verify C99 6.7.5.3p2: The only SCS allowed is 'register'.
Daniel Dunbar33ad0122008-09-03 21:54:21 +00001586 VarDecl::StorageClass StorageClass = VarDecl::None;
1587 if (DS.getStorageClassSpec() == DeclSpec::SCS_register) {
1588 StorageClass = VarDecl::Register;
1589 } else if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified) {
Chris Lattner04421082008-04-08 04:40:51 +00001590 Diag(DS.getStorageClassSpecLoc(),
1591 diag::err_invalid_storage_class_in_func_decl);
Chris Lattner985abd92008-06-26 06:49:43 +00001592 D.getMutableDeclSpec().ClearStorageClassSpecs();
Chris Lattner04421082008-04-08 04:40:51 +00001593 }
1594 if (DS.isThreadSpecified()) {
1595 Diag(DS.getThreadSpecLoc(),
1596 diag::err_invalid_storage_class_in_func_decl);
Chris Lattner985abd92008-06-26 06:49:43 +00001597 D.getMutableDeclSpec().ClearStorageClassSpecs();
Chris Lattner04421082008-04-08 04:40:51 +00001598 }
1599
Douglas Gregor6d6eb572008-05-07 04:49:29 +00001600 // Check that there are no default arguments inside the type of this
1601 // parameter (C++ only).
1602 if (getLangOptions().CPlusPlus)
1603 CheckExtraCXXDefaultArguments(D);
1604
Chris Lattner04421082008-04-08 04:40:51 +00001605 // In this context, we *do not* check D.getInvalidType(). If the declarator
1606 // type was invalid, GetTypeForDeclarator() still returns a "valid" type,
1607 // though it will not reflect the user specified type.
1608 QualType parmDeclType = GetTypeForDeclarator(D, S);
1609
1610 assert(!parmDeclType.isNull() && "GetTypeForDeclarator() returned null type");
1611
Reid Spencer5f016e22007-07-11 17:01:13 +00001612 // TODO: CHECK FOR CONFLICTS, multiple decls with same name in one scope.
1613 // Can this happen for params? We already checked that they don't conflict
1614 // among each other. Here they can only shadow globals, which is ok.
Chris Lattner04421082008-04-08 04:40:51 +00001615 IdentifierInfo *II = D.getIdentifier();
1616 if (Decl *PrevDecl = LookupDecl(II, Decl::IDNS_Ordinary, S)) {
1617 if (S->isDeclScope(PrevDecl)) {
1618 Diag(D.getIdentifierLoc(), diag::err_param_redefinition,
1619 dyn_cast<NamedDecl>(PrevDecl)->getName());
1620
1621 // Recover by removing the name
1622 II = 0;
1623 D.SetIdentifier(0, D.getIdentifierLoc());
1624 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001625 }
Steve Naroff6a9f3e32007-08-07 22:44:21 +00001626
1627 // Perform the default function/array conversion (C99 6.7.5.3p[7,8]).
1628 // Doing the promotion here has a win and a loss. The win is the type for
1629 // both Decl's and DeclRefExpr's will match (a convenient invariant for the
1630 // code generator). The loss is the orginal type isn't preserved. For example:
1631 //
1632 // void func(int parmvardecl[5]) { // convert "int [5]" to "int *"
1633 // int blockvardecl[5];
1634 // sizeof(parmvardecl); // size == 4
1635 // sizeof(blockvardecl); // size == 20
1636 // }
1637 //
1638 // For expressions, all implicit conversions are captured using the
1639 // ImplicitCastExpr AST node (we have no such mechanism for Decl's).
1640 //
1641 // FIXME: If a source translation tool needs to see the original type, then
1642 // we need to consider storing both types (in ParmVarDecl)...
1643 //
Chris Lattnere6327742008-04-02 05:18:44 +00001644 if (parmDeclType->isArrayType()) {
Chris Lattner529bd022008-01-02 22:50:48 +00001645 // int x[restrict 4] -> int *restrict
Chris Lattnere6327742008-04-02 05:18:44 +00001646 parmDeclType = Context.getArrayDecayedType(parmDeclType);
Chris Lattner529bd022008-01-02 22:50:48 +00001647 } else if (parmDeclType->isFunctionType())
Steve Naroff6a9f3e32007-08-07 22:44:21 +00001648 parmDeclType = Context.getPointerType(parmDeclType);
1649
Chris Lattner04421082008-04-08 04:40:51 +00001650 ParmVarDecl *New = ParmVarDecl::Create(Context, CurContext,
1651 D.getIdentifierLoc(), II,
Daniel Dunbar33ad0122008-09-03 21:54:21 +00001652 parmDeclType, StorageClass,
Chris Lattner04421082008-04-08 04:40:51 +00001653 0, 0);
Anders Carlssonf78915f2008-02-15 07:04:12 +00001654
Chris Lattner04421082008-04-08 04:40:51 +00001655 if (D.getInvalidType())
Steve Naroff53a32342007-08-28 18:45:29 +00001656 New->setInvalidDecl();
1657
Argyrios Kyrtzidis87f3ff02008-04-12 00:47:19 +00001658 if (II)
1659 PushOnScopeChains(New, S);
Nate Begemanb7894b52008-02-17 21:20:31 +00001660
Chris Lattner3ff30c82008-06-29 00:02:00 +00001661 ProcessDeclAttributes(New, D);
Reid Spencer5f016e22007-07-11 17:01:13 +00001662 return New;
Chris Lattner04421082008-04-08 04:40:51 +00001663
Reid Spencer5f016e22007-07-11 17:01:13 +00001664}
Fariborz Jahanian306d68f2007-11-08 23:49:49 +00001665
Chris Lattnerb652cea2007-10-09 17:14:05 +00001666Sema::DeclTy *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Declarator &D) {
Argyrios Kyrtzidis53d0ea52008-06-28 06:07:14 +00001667 assert(getCurFunctionDecl() == 0 && "Function parsing confused");
Reid Spencer5f016e22007-07-11 17:01:13 +00001668 assert(D.getTypeObject(0).Kind == DeclaratorChunk::Function &&
1669 "Not a function declarator!");
1670 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
Chris Lattner04421082008-04-08 04:40:51 +00001671
Reid Spencer5f016e22007-07-11 17:01:13 +00001672 // Verify 6.9.1p6: 'every identifier in the identifier list shall be declared'
1673 // for a K&R function.
1674 if (!FTI.hasPrototype) {
1675 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) {
Chris Lattner04421082008-04-08 04:40:51 +00001676 if (FTI.ArgInfo[i].Param == 0) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001677 Diag(FTI.ArgInfo[i].IdentLoc, diag::ext_param_not_declared,
1678 FTI.ArgInfo[i].Ident->getName());
1679 // Implicitly declare the argument as type 'int' for lack of a better
1680 // type.
Chris Lattner04421082008-04-08 04:40:51 +00001681 DeclSpec DS;
1682 const char* PrevSpec; // unused
1683 DS.SetTypeSpecType(DeclSpec::TST_int, FTI.ArgInfo[i].IdentLoc,
1684 PrevSpec);
1685 Declarator ParamD(DS, Declarator::KNRTypeListContext);
1686 ParamD.SetIdentifier(FTI.ArgInfo[i].Ident, FTI.ArgInfo[i].IdentLoc);
1687 FTI.ArgInfo[i].Param = ActOnParamDeclarator(FnBodyScope, ParamD);
Reid Spencer5f016e22007-07-11 17:01:13 +00001688 }
1689 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001690 } else {
Chris Lattner04421082008-04-08 04:40:51 +00001691 // FIXME: Diagnose arguments without names in C.
Reid Spencer5f016e22007-07-11 17:01:13 +00001692 }
1693
1694 Scope *GlobalScope = FnBodyScope->getParent();
Steve Naroffadbbd0c2008-01-14 20:51:29 +00001695
1696 // See if this is a redefinition.
Steve Naroffe8043c32008-04-01 23:04:06 +00001697 Decl *PrevDcl = LookupDecl(D.getIdentifier(), Decl::IDNS_Ordinary,
Steve Naroffb327ce02008-04-02 14:35:35 +00001698 GlobalScope);
Argyrios Kyrtzidis15a12d02008-09-09 21:18:04 +00001699 if (PrevDcl && isDeclInScope(PrevDcl, CurContext)) {
Argyrios Kyrtzidis00bc6452008-05-09 23:39:43 +00001700 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(PrevDcl)) {
1701 const FunctionDecl *Definition;
1702 if (FD->getBody(Definition)) {
1703 Diag(D.getIdentifierLoc(), diag::err_redefinition,
1704 D.getIdentifier()->getName());
1705 Diag(Definition->getLocation(), diag::err_previous_definition);
1706 }
Steve Naroffadbbd0c2008-01-14 20:51:29 +00001707 }
1708 }
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001709
1710 return ActOnStartOfFunctionDef(FnBodyScope,
Daniel Dunbar914701e2008-08-05 16:28:08 +00001711 ActOnDeclarator(GlobalScope, D, 0));
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001712}
1713
1714Sema::DeclTy *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, DeclTy *D) {
1715 Decl *decl = static_cast<Decl*>(D);
Chris Lattnere9ba3232008-02-16 01:20:36 +00001716 FunctionDecl *FD = cast<FunctionDecl>(decl);
Chris Lattnerb048c982008-04-06 04:47:34 +00001717 PushDeclContext(FD);
Chris Lattner04421082008-04-08 04:40:51 +00001718
1719 // Check the validity of our function parameters
1720 CheckParmsForFunctionDef(FD);
1721
1722 // Introduce our parameters into the function scope
1723 for (unsigned p = 0, NumParams = FD->getNumParams(); p < NumParams; ++p) {
1724 ParmVarDecl *Param = FD->getParamDecl(p);
1725 // If this has an identifier, add it to the scope stack.
Argyrios Kyrtzidis87f3ff02008-04-12 00:47:19 +00001726 if (Param->getIdentifier())
1727 PushOnScopeChains(Param, FnBodyScope);
Reid Spencer5f016e22007-07-11 17:01:13 +00001728 }
Chris Lattner04421082008-04-08 04:40:51 +00001729
Reid Spencer5f016e22007-07-11 17:01:13 +00001730 return FD;
1731}
1732
Steve Naroffd6d054d2007-11-11 23:20:51 +00001733Sema::DeclTy *Sema::ActOnFinishFunctionBody(DeclTy *D, StmtTy *Body) {
1734 Decl *dcl = static_cast<Decl *>(D);
Steve Naroff394f3f42008-07-25 17:57:26 +00001735 if (FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(dcl)) {
Steve Naroffd6d054d2007-11-11 23:20:51 +00001736 FD->setBody((Stmt*)Body);
Argyrios Kyrtzidis53d0ea52008-06-28 06:07:14 +00001737 assert(FD == getCurFunctionDecl() && "Function parsing confused");
Steve Naroff394f3f42008-07-25 17:57:26 +00001738 } else if (ObjCMethodDecl *MD = dyn_cast_or_null<ObjCMethodDecl>(dcl)) {
Steve Naroffd6d054d2007-11-11 23:20:51 +00001739 MD->setBody((Stmt*)Body);
Steve Naroff394f3f42008-07-25 17:57:26 +00001740 } else
1741 return 0;
Chris Lattnerb048c982008-04-06 04:47:34 +00001742 PopDeclContext();
Reid Spencer5f016e22007-07-11 17:01:13 +00001743 // Verify and clean out per-function state.
1744
1745 // Check goto/label use.
1746 for (llvm::DenseMap<IdentifierInfo*, LabelStmt*>::iterator
1747 I = LabelMap.begin(), E = LabelMap.end(); I != E; ++I) {
1748 // Verify that we have no forward references left. If so, there was a goto
1749 // or address of a label taken, but no definition of it. Label fwd
1750 // definitions are indicated with a null substmt.
1751 if (I->second->getSubStmt() == 0) {
1752 LabelStmt *L = I->second;
1753 // Emit error.
1754 Diag(L->getIdentLoc(), diag::err_undeclared_label_use, L->getName());
1755
1756 // At this point, we have gotos that use the bogus label. Stitch it into
1757 // the function body so that they aren't leaked and that the AST is well
1758 // formed.
Chris Lattner0cbc2152008-01-25 00:01:10 +00001759 if (Body) {
1760 L->setSubStmt(new NullStmt(L->getIdentLoc()));
1761 cast<CompoundStmt>((Stmt*)Body)->push_back(L);
1762 } else {
1763 // The whole function wasn't parsed correctly, just delete this.
1764 delete L;
1765 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001766 }
1767 }
1768 LabelMap.clear();
1769
Steve Naroffd6d054d2007-11-11 23:20:51 +00001770 return D;
Fariborz Jahanian60fbca02007-11-10 16:31:34 +00001771}
1772
Reid Spencer5f016e22007-07-11 17:01:13 +00001773/// ImplicitlyDefineFunction - An undeclared identifier was used in a function
1774/// call, forming a call to an implicitly defined function (per C99 6.5.1p2).
Steve Naroff8c9f13e2007-09-16 16:16:00 +00001775ScopedDecl *Sema::ImplicitlyDefineFunction(SourceLocation Loc,
1776 IdentifierInfo &II, Scope *S) {
Chris Lattner37d10842008-05-05 21:18:06 +00001777 // Extension in C99. Legal in C90, but warn about it.
1778 if (getLangOptions().C99)
Reid Spencer5f016e22007-07-11 17:01:13 +00001779 Diag(Loc, diag::ext_implicit_function_decl, II.getName());
Chris Lattner37d10842008-05-05 21:18:06 +00001780 else
Reid Spencer5f016e22007-07-11 17:01:13 +00001781 Diag(Loc, diag::warn_implicit_function_decl, II.getName());
1782
1783 // FIXME: handle stuff like:
1784 // void foo() { extern float X(); }
1785 // void bar() { X(); } <-- implicit decl for X in another scope.
1786
1787 // Set a Declarator for the implicit definition: int foo();
1788 const char *Dummy;
1789 DeclSpec DS;
1790 bool Error = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, Dummy);
1791 Error = Error; // Silence warning.
1792 assert(!Error && "Error setting up implicit decl!");
1793 Declarator D(DS, Declarator::BlockContext);
1794 D.AddTypeInfo(DeclaratorChunk::getFunction(false, false, 0, 0, Loc));
1795 D.SetIdentifier(&II, Loc);
1796
Argyrios Kyrtzidis93213bb2008-05-01 21:04:16 +00001797 // Insert this function into translation-unit scope.
1798
1799 DeclContext *PrevDC = CurContext;
1800 CurContext = Context.getTranslationUnitDecl();
1801
Steve Naroffe2ef8152008-04-04 14:32:09 +00001802 FunctionDecl *FD =
Daniel Dunbar914701e2008-08-05 16:28:08 +00001803 dyn_cast<FunctionDecl>(static_cast<Decl*>(ActOnDeclarator(TUScope, D, 0)));
Steve Naroffe2ef8152008-04-04 14:32:09 +00001804 FD->setImplicit();
Argyrios Kyrtzidis93213bb2008-05-01 21:04:16 +00001805
1806 CurContext = PrevDC;
1807
Steve Naroffe2ef8152008-04-04 14:32:09 +00001808 return FD;
Reid Spencer5f016e22007-07-11 17:01:13 +00001809}
1810
1811
Chris Lattner41af0932007-11-14 06:34:38 +00001812TypedefDecl *Sema::ParseTypedefDecl(Scope *S, Declarator &D, QualType T,
Steve Naroff94745042007-09-13 23:52:58 +00001813 ScopedDecl *LastDeclarator) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001814 assert(D.getIdentifier() && "Wrong callback for declspec without declarator");
Steve Naroff5912a352007-08-28 20:14:24 +00001815 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
Reid Spencer5f016e22007-07-11 17:01:13 +00001816
1817 // Scope manipulation handled by caller.
Chris Lattner0ed844b2008-04-04 06:12:32 +00001818 TypedefDecl *NewTD = TypedefDecl::Create(Context, CurContext,
1819 D.getIdentifierLoc(),
Chris Lattner6c2b6eb2008-03-15 06:12:44 +00001820 D.getIdentifier(),
Chris Lattnerc63e6602008-03-15 21:32:50 +00001821 T, LastDeclarator);
Steve Naroff5912a352007-08-28 20:14:24 +00001822 if (D.getInvalidType())
1823 NewTD->setInvalidDecl();
1824 return NewTD;
Reid Spencer5f016e22007-07-11 17:01:13 +00001825}
1826
Steve Naroff08d92e42007-09-15 18:49:24 +00001827/// ActOnTag - This is invoked when we see 'struct foo' or 'struct {'. In the
Reid Spencer5f016e22007-07-11 17:01:13 +00001828/// former case, Name will be non-null. In the later case, Name will be null.
1829/// TagType indicates what kind of tag this is. TK indicates whether this is a
1830/// reference/declaration/definition of a tag.
Steve Naroff08d92e42007-09-15 18:49:24 +00001831Sema::DeclTy *Sema::ActOnTag(Scope *S, unsigned TagType, TagKind TK,
Reid Spencer5f016e22007-07-11 17:01:13 +00001832 SourceLocation KWLoc, IdentifierInfo *Name,
1833 SourceLocation NameLoc, AttributeList *Attr) {
1834 // If this is a use of an existing tag, it must have a name.
1835 assert((Name != 0 || TK == TK_Definition) &&
1836 "Nameless record must be a definition!");
1837
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +00001838 TagDecl::TagKind Kind;
Reid Spencer5f016e22007-07-11 17:01:13 +00001839 switch (TagType) {
1840 default: assert(0 && "Unknown tag type!");
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +00001841 case DeclSpec::TST_struct: Kind = TagDecl::TK_struct; break;
1842 case DeclSpec::TST_union: Kind = TagDecl::TK_union; break;
1843 case DeclSpec::TST_class: Kind = TagDecl::TK_class; break;
1844 case DeclSpec::TST_enum: Kind = TagDecl::TK_enum; break;
Reid Spencer5f016e22007-07-11 17:01:13 +00001845 }
1846
Ted Kremenek4b7c9832008-09-05 17:16:31 +00001847 // Two code paths: a new one for structs/unions/classes where we create
1848 // separate decls for forward declarations, and an old (eventually to
1849 // be removed) code path for enums.
1850 if (Kind != TagDecl::TK_enum)
1851 return ActOnTagStruct(S, Kind, TK, KWLoc, Name, NameLoc, Attr);
1852
Reid Spencer5f016e22007-07-11 17:01:13 +00001853 // If this is a named struct, check to see if there was a previous forward
1854 // declaration or definition.
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00001855 // Use ScopedDecl instead of TagDecl, because a NamespaceDecl may come up.
Ted Kremenek7e8cc572008-09-02 21:26:19 +00001856 ScopedDecl *PrevDecl =
1857 dyn_cast_or_null<ScopedDecl>(LookupDecl(Name, Decl::IDNS_Tag, S));
1858
1859 if (PrevDecl) {
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00001860 assert((isa<TagDecl>(PrevDecl) || isa<NamespaceDecl>(PrevDecl)) &&
1861 "unexpected Decl type");
1862 if (TagDecl *PrevTagDecl = dyn_cast<TagDecl>(PrevDecl)) {
Chris Lattner14943b92008-07-03 03:30:58 +00001863 // If this is a use of a previous tag, or if the tag is already declared
1864 // in the same scope (so that the definition/declaration completes or
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00001865 // rementions the tag), reuse the decl.
Argyrios Kyrtzidis15a12d02008-09-09 21:18:04 +00001866 if (TK == TK_Reference || isDeclInScope(PrevDecl, CurContext, S)) {
Chris Lattner14943b92008-07-03 03:30:58 +00001867 // Make sure that this wasn't declared as an enum and now used as a
1868 // struct or something similar.
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +00001869 if (PrevTagDecl->getTagKind() != Kind) {
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00001870 Diag(KWLoc, diag::err_use_with_wrong_tag, Name->getName());
1871 Diag(PrevDecl->getLocation(), diag::err_previous_use);
Chris Lattner14943b92008-07-03 03:30:58 +00001872 // Recover by making this an anonymous redefinition.
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00001873 Name = 0;
Chris Lattner14943b92008-07-03 03:30:58 +00001874 PrevDecl = 0;
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00001875 } else {
Chris Lattner14943b92008-07-03 03:30:58 +00001876 // If this is a use or a forward declaration, we're good.
1877 if (TK != TK_Definition)
1878 return PrevDecl;
1879
1880 // Diagnose attempts to redefine a tag.
1881 if (PrevTagDecl->isDefinition()) {
1882 Diag(NameLoc, diag::err_redefinition, Name->getName());
1883 Diag(PrevDecl->getLocation(), diag::err_previous_definition);
1884 // If this is a redefinition, recover by making this struct be
1885 // anonymous, which will make any later references get the previous
1886 // definition.
1887 Name = 0;
1888 } else {
1889 // Okay, this is definition of a previously declared or referenced
1890 // tag. Move the location of the decl to be the definition site.
1891 PrevDecl->setLocation(NameLoc);
1892 return PrevDecl;
1893 }
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00001894 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001895 }
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00001896 // If we get here, this is a definition of a new struct type in a nested
1897 // scope, e.g. "struct foo; void bar() { struct foo; }", just create a new
1898 // type.
1899 } else {
Argyrios Kyrtzidisb02ef242008-07-16 07:45:46 +00001900 // PrevDecl is a namespace.
Argyrios Kyrtzidis15a12d02008-09-09 21:18:04 +00001901 if (isDeclInScope(PrevDecl, CurContext, S)) {
Ted Kremeneka89d1972008-09-03 18:03:35 +00001902 // The tag name clashes with a namespace name, issue an error and
1903 // recover by making this tag be anonymous.
Argyrios Kyrtzidisb02ef242008-07-16 07:45:46 +00001904 Diag(NameLoc, diag::err_redefinition_different_kind, Name->getName());
1905 Diag(PrevDecl->getLocation(), diag::err_previous_definition);
1906 Name = 0;
1907 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001908 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001909 }
1910
1911 // If there is an identifier, use the location of the identifier as the
1912 // location of the decl, otherwise use the location of the struct/union
1913 // keyword.
1914 SourceLocation Loc = NameLoc.isValid() ? NameLoc : KWLoc;
1915
1916 // Otherwise, if this is the first time we've seen this tag, create the decl.
1917 TagDecl *New;
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +00001918 if (Kind == TagDecl::TK_enum) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001919 // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
1920 // enum X { A, B, C } D; D should chain to X.
Chris Lattner0ed844b2008-04-04 06:12:32 +00001921 New = EnumDecl::Create(Context, CurContext, Loc, Name, 0);
Reid Spencer5f016e22007-07-11 17:01:13 +00001922 // If this is an undefined enum, warn.
1923 if (TK != TK_Definition) Diag(Loc, diag::ext_forward_ref_enum);
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +00001924 } else {
1925 // struct/union/class
1926
Reid Spencer5f016e22007-07-11 17:01:13 +00001927 // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
1928 // struct X { int A; } D; D should chain to X.
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001929 if (getLangOptions().CPlusPlus)
Ted Kremenek2b345eb2008-09-05 17:39:33 +00001930 // FIXME: Look for a way to use RecordDecl for simple structs.
Ted Kremenekdf042e62008-09-05 01:34:33 +00001931 New = CXXRecordDecl::Create(Context, Kind, CurContext, Loc, Name);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001932 else
Ted Kremenekdf042e62008-09-05 01:34:33 +00001933 New = RecordDecl::Create(Context, Kind, CurContext, Loc, Name);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001934 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001935
1936 // If this has an identifier, add it to the scope stack.
1937 if (Name) {
Chris Lattner31e05722007-08-26 06:24:45 +00001938 // The scope passed in may not be a decl scope. Zip up the scope tree until
1939 // we find one that is.
1940 while ((S->getFlags() & Scope::DeclScope) == 0)
1941 S = S->getParent();
1942
1943 // Add it to the decl chain.
Argyrios Kyrtzidis87f3ff02008-04-12 00:47:19 +00001944 PushOnScopeChains(New, S);
Reid Spencer5f016e22007-07-11 17:01:13 +00001945 }
Chris Lattnere1e79852008-02-06 00:51:33 +00001946
Chris Lattnerf2e4bd52008-06-28 23:58:55 +00001947 if (Attr)
1948 ProcessDeclAttributeList(New, Attr);
Reid Spencer5f016e22007-07-11 17:01:13 +00001949 return New;
1950}
1951
Ted Kremenek4b7c9832008-09-05 17:16:31 +00001952/// ActOnTagStruct - New "ActOnTag" logic for structs/unions/classes. Unlike
1953/// the logic for enums, we create separate decls for forward declarations.
1954/// This is called by ActOnTag, but eventually will replace its logic.
1955Sema::DeclTy *Sema::ActOnTagStruct(Scope *S, TagDecl::TagKind Kind, TagKind TK,
1956 SourceLocation KWLoc, IdentifierInfo *Name,
1957 SourceLocation NameLoc, AttributeList *Attr) {
1958
1959 // If this is a named struct, check to see if there was a previous forward
1960 // declaration or definition.
1961 // Use ScopedDecl instead of TagDecl, because a NamespaceDecl may come up.
1962 ScopedDecl *PrevDecl =
1963 dyn_cast_or_null<ScopedDecl>(LookupDecl(Name, Decl::IDNS_Tag, S));
1964
1965 if (PrevDecl) {
1966 assert((isa<TagDecl>(PrevDecl) || isa<NamespaceDecl>(PrevDecl)) &&
1967 "unexpected Decl type");
1968
1969 if (TagDecl *PrevTagDecl = dyn_cast<TagDecl>(PrevDecl)) {
1970 // If this is a use of a previous tag, or if the tag is already declared
1971 // in the same scope (so that the definition/declaration completes or
1972 // rementions the tag), reuse the decl.
Argyrios Kyrtzidis15a12d02008-09-09 21:18:04 +00001973 if (TK == TK_Reference || isDeclInScope(PrevDecl, CurContext, S)) {
Ted Kremenek4b7c9832008-09-05 17:16:31 +00001974 // Make sure that this wasn't declared as an enum and now used as a
1975 // struct or something similar.
1976 if (PrevTagDecl->getTagKind() != Kind) {
1977 Diag(KWLoc, diag::err_use_with_wrong_tag, Name->getName());
1978 Diag(PrevDecl->getLocation(), diag::err_previous_use);
1979 // Recover by making this an anonymous redefinition.
1980 Name = 0;
1981 PrevDecl = 0;
1982 } else {
1983 // If this is a use, return the original decl.
1984
1985 // FIXME: In the future, return a variant or some other clue
1986 // for the consumer of this Decl to know it doesn't own it.
1987 // For our current ASTs this shouldn't be a problem, but will
1988 // need to be changed with DeclGroups.
1989 if (TK == TK_Reference)
1990 return PrevDecl;
1991
1992 // The new decl is a definition?
1993 if (TK == TK_Definition) {
1994 // Diagnose attempts to redefine a tag.
1995 if (RecordDecl* DefRecord =
1996 cast<RecordDecl>(PrevTagDecl)->getDefinition(Context)) {
1997 Diag(NameLoc, diag::err_redefinition, Name->getName());
1998 Diag(DefRecord->getLocation(), diag::err_previous_definition);
1999 // If this is a redefinition, recover by making this struct be
2000 // anonymous, which will make any later references get the previous
2001 // definition.
2002 Name = 0;
2003 PrevDecl = 0;
2004 }
2005 // Okay, this is definition of a previously declared or referenced
2006 // tag. We're going to create a new Decl.
2007 }
2008 }
2009 // If we get here we have (another) forward declaration. Just create
2010 // a new decl.
2011 }
2012 else {
2013 // If we get here, this is a definition of a new struct type in a nested
2014 // scope, e.g. "struct foo; void bar() { struct foo; }", just create a
2015 // new decl/type. We set PrevDecl to NULL so that the Records
2016 // have distinct types.
2017 PrevDecl = 0;
2018 }
2019 } else {
2020 // PrevDecl is a namespace.
Argyrios Kyrtzidis15a12d02008-09-09 21:18:04 +00002021 if (isDeclInScope(PrevDecl, CurContext, S)) {
Ted Kremenek4b7c9832008-09-05 17:16:31 +00002022 // The tag name clashes with a namespace name, issue an error and
2023 // recover by making this tag be anonymous.
2024 Diag(NameLoc, diag::err_redefinition_different_kind, Name->getName());
2025 Diag(PrevDecl->getLocation(), diag::err_previous_definition);
2026 Name = 0;
2027 }
2028 }
2029 }
2030
2031 // If there is an identifier, use the location of the identifier as the
2032 // location of the decl, otherwise use the location of the struct/union
2033 // keyword.
2034 SourceLocation Loc = NameLoc.isValid() ? NameLoc : KWLoc;
2035
2036 // Otherwise, if this is the first time we've seen this tag, create the decl.
2037 TagDecl *New;
2038
2039 // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
2040 // struct X { int A; } D; D should chain to X.
2041 if (getLangOptions().CPlusPlus)
Ted Kremenek2b345eb2008-09-05 17:39:33 +00002042 // FIXME: Look for a way to use RecordDecl for simple structs.
Ted Kremenek4b7c9832008-09-05 17:16:31 +00002043 New = CXXRecordDecl::Create(Context, Kind, CurContext, Loc, Name,
2044 dyn_cast_or_null<CXXRecordDecl>(PrevDecl));
2045 else
2046 New = RecordDecl::Create(Context, Kind, CurContext, Loc, Name,
2047 dyn_cast_or_null<RecordDecl>(PrevDecl));
2048
2049 // If this has an identifier, add it to the scope stack.
2050 if ((TK == TK_Definition || !PrevDecl) && Name) {
2051 // The scope passed in may not be a decl scope. Zip up the scope tree until
2052 // we find one that is.
2053 while ((S->getFlags() & Scope::DeclScope) == 0)
2054 S = S->getParent();
2055
2056 // Add it to the decl chain.
2057 PushOnScopeChains(New, S);
2058 }
Daniel Dunbar3b0db902008-10-16 02:34:03 +00002059
2060 // Handle #pragma pack: if the #pragma pack stack has non-default
2061 // alignment, make up a packed attribute for this decl. These
2062 // attributes are checked when the ASTContext lays out the
2063 // structure.
2064 //
2065 // It is important for implementing the correct semantics that this
2066 // happen here (in act on tag decl). The #pragma pack stack is
2067 // maintained as a result of parser callbacks which can occur at
2068 // many points during the parsing of a struct declaration (because
2069 // the #pragma tokens are effectively skipped over during the
2070 // parsing of the struct).
2071 if (unsigned Alignment = PackContext.getAlignment())
2072 New->addAttr(new PackedAttr(Alignment * 8));
Ted Kremenek4b7c9832008-09-05 17:16:31 +00002073
2074 if (Attr)
2075 ProcessDeclAttributeList(New, Attr);
2076
2077 return New;
2078}
2079
2080
Chris Lattner5a6ddbf2008-06-21 19:39:06 +00002081/// Collect the instance variables declared in an Objective-C object. Used in
2082/// the creation of structures from objects using the @defs directive.
Ted Kremenek01e67792008-08-20 03:26:33 +00002083static void CollectIvars(ObjCInterfaceDecl *Class, ASTContext& Ctx,
Chris Lattner7caeabd2008-07-21 22:17:28 +00002084 llvm::SmallVectorImpl<Sema::DeclTy*> &ivars) {
Chris Lattner5a6ddbf2008-06-21 19:39:06 +00002085 if (Class->getSuperClass())
Ted Kremenek01e67792008-08-20 03:26:33 +00002086 CollectIvars(Class->getSuperClass(), Ctx, ivars);
2087
2088 // For each ivar, create a fresh ObjCAtDefsFieldDecl.
Ted Kremeneka89d1972008-09-03 18:03:35 +00002089 for (ObjCInterfaceDecl::ivar_iterator
2090 I=Class->ivar_begin(), E=Class->ivar_end(); I!=E; ++I) {
2091
Ted Kremenek01e67792008-08-20 03:26:33 +00002092 ObjCIvarDecl* ID = *I;
2093 ivars.push_back(ObjCAtDefsFieldDecl::Create(Ctx, ID->getLocation(),
2094 ID->getIdentifier(),
2095 ID->getType(),
2096 ID->getBitWidth()));
2097 }
Chris Lattner5a6ddbf2008-06-21 19:39:06 +00002098}
2099
2100/// Called whenever @defs(ClassName) is encountered in the source. Inserts the
2101/// instance variables of ClassName into Decls.
2102void Sema::ActOnDefs(Scope *S, SourceLocation DeclStart,
2103 IdentifierInfo *ClassName,
Chris Lattner7caeabd2008-07-21 22:17:28 +00002104 llvm::SmallVectorImpl<DeclTy*> &Decls) {
Chris Lattner5a6ddbf2008-06-21 19:39:06 +00002105 // Check that ClassName is a valid class
2106 ObjCInterfaceDecl *Class = getObjCInterfaceDecl(ClassName);
2107 if (!Class) {
2108 Diag(DeclStart, diag::err_undef_interface, ClassName->getName());
2109 return;
2110 }
Chris Lattner5a6ddbf2008-06-21 19:39:06 +00002111 // Collect the instance variables
Ted Kremenek01e67792008-08-20 03:26:33 +00002112 CollectIvars(Class, Context, Decls);
Chris Lattner5a6ddbf2008-06-21 19:39:06 +00002113}
2114
Eli Friedman1b76ada2008-06-03 21:01:11 +00002115QualType Sema::TryFixInvalidVariablyModifiedType(QualType T) {
2116 // This method tries to turn a variable array into a constant
2117 // array even when the size isn't an ICE. This is necessary
2118 // for compatibility with code that depends on gcc's buggy
2119 // constant expression folding, like struct {char x[(int)(char*)2];}
2120 if (const VariableArrayType* VLATy = dyn_cast<VariableArrayType>(T)) {
Anders Carlssonc44eec62008-07-03 04:20:39 +00002121 APValue Result;
Eli Friedman1b76ada2008-06-03 21:01:11 +00002122 if (VLATy->getSizeExpr() &&
Chris Lattnercf0f51d2008-07-11 19:19:21 +00002123 VLATy->getSizeExpr()->tryEvaluate(Result, Context) && Result.isInt()) {
2124 llvm::APSInt &Res = Result.getInt();
2125 if (Res > llvm::APSInt(Res.getBitWidth(), Res.isUnsigned()))
2126 return Context.getConstantArrayType(VLATy->getElementType(),
2127 Res, ArrayType::Normal, 0);
Eli Friedman1b76ada2008-06-03 21:01:11 +00002128 }
2129 }
2130 return QualType();
2131}
2132
Steve Naroff08d92e42007-09-15 18:49:24 +00002133/// ActOnField - Each field of a struct/union/class is passed into this in order
Reid Spencer5f016e22007-07-11 17:01:13 +00002134/// to create a FieldDecl object for it.
Fariborz Jahanian1d78cc42008-04-10 23:32:45 +00002135Sema::DeclTy *Sema::ActOnField(Scope *S,
Reid Spencer5f016e22007-07-11 17:01:13 +00002136 SourceLocation DeclStart,
2137 Declarator &D, ExprTy *BitfieldWidth) {
2138 IdentifierInfo *II = D.getIdentifier();
2139 Expr *BitWidth = (Expr*)BitfieldWidth;
Reid Spencer5f016e22007-07-11 17:01:13 +00002140 SourceLocation Loc = DeclStart;
2141 if (II) Loc = D.getIdentifierLoc();
2142
2143 // FIXME: Unnamed fields can be handled in various different ways, for
2144 // example, unnamed unions inject all members into the struct namespace!
Ted Kremeneka89d1972008-09-03 18:03:35 +00002145
Reid Spencer5f016e22007-07-11 17:01:13 +00002146 if (BitWidth) {
2147 // TODO: Validate.
2148 //printf("WARNING: BITFIELDS IGNORED!\n");
2149
2150 // 6.7.2.1p3
2151 // 6.7.2.1p4
2152
2153 } else {
2154 // Not a bitfield.
2155
2156 // validate II.
2157
2158 }
2159
2160 QualType T = GetTypeForDeclarator(D, S);
Steve Naroff5912a352007-08-28 20:14:24 +00002161 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
2162 bool InvalidDecl = false;
Steve Naroffd7444aa2007-08-31 17:20:07 +00002163
Reid Spencer5f016e22007-07-11 17:01:13 +00002164 // C99 6.7.2.1p8: A member of a structure or union may have any type other
2165 // than a variably modified type.
Eli Friedman9db13972008-02-15 12:53:51 +00002166 if (T->isVariablyModifiedType()) {
Eli Friedman1b76ada2008-06-03 21:01:11 +00002167 QualType FixedTy = TryFixInvalidVariablyModifiedType(T);
2168 if (!FixedTy.isNull()) {
2169 Diag(Loc, diag::warn_illegal_constant_array_size, Loc);
2170 T = FixedTy;
2171 } else {
2172 // FIXME: This diagnostic needs work
2173 Diag(Loc, diag::err_typecheck_illegal_vla, Loc);
2174 InvalidDecl = true;
2175 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002176 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002177 // FIXME: Chain fielddecls together.
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00002178 FieldDecl *NewFD;
2179
2180 if (getLangOptions().CPlusPlus) {
2181 // FIXME: Replace CXXFieldDecls with FieldDecls for simple structs.
2182 NewFD = CXXFieldDecl::Create(Context, cast<CXXRecordDecl>(CurContext),
2183 Loc, II, T, BitWidth);
2184 if (II)
2185 PushOnScopeChains(NewFD, S);
2186 }
2187 else
2188 NewFD = FieldDecl::Create(Context, Loc, II, T, BitWidth);
Steve Naroff44739212007-09-11 21:17:26 +00002189
Chris Lattner3ff30c82008-06-29 00:02:00 +00002190 ProcessDeclAttributes(NewFD, D);
Anders Carlssonad148062008-02-16 00:29:18 +00002191
Steve Naroff5912a352007-08-28 20:14:24 +00002192 if (D.getInvalidType() || InvalidDecl)
2193 NewFD->setInvalidDecl();
2194 return NewFD;
Reid Spencer5f016e22007-07-11 17:01:13 +00002195}
2196
Fariborz Jahanian89204a12007-10-01 16:53:59 +00002197/// TranslateIvarVisibility - Translate visibility from a token ID to an
2198/// AST enum value.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002199static ObjCIvarDecl::AccessControl
Fariborz Jahanian89204a12007-10-01 16:53:59 +00002200TranslateIvarVisibility(tok::ObjCKeywordKind ivarVisibility) {
Steve Narofff13271f2007-09-14 23:09:53 +00002201 switch (ivarVisibility) {
Chris Lattner33d34a62008-10-12 00:28:42 +00002202 default: assert(0 && "Unknown visitibility kind");
2203 case tok::objc_private: return ObjCIvarDecl::Private;
2204 case tok::objc_public: return ObjCIvarDecl::Public;
2205 case tok::objc_protected: return ObjCIvarDecl::Protected;
2206 case tok::objc_package: return ObjCIvarDecl::Package;
Steve Narofff13271f2007-09-14 23:09:53 +00002207 }
2208}
2209
Fariborz Jahanian45bc03f2008-04-11 16:55:42 +00002210/// ActOnIvar - Each ivar field of an objective-c class is passed into this
2211/// in order to create an IvarDecl object for it.
Fariborz Jahanian1d78cc42008-04-10 23:32:45 +00002212Sema::DeclTy *Sema::ActOnIvar(Scope *S,
Fariborz Jahanian45bc03f2008-04-11 16:55:42 +00002213 SourceLocation DeclStart,
2214 Declarator &D, ExprTy *BitfieldWidth,
2215 tok::ObjCKeywordKind Visibility) {
Fariborz Jahanian1d78cc42008-04-10 23:32:45 +00002216 IdentifierInfo *II = D.getIdentifier();
2217 Expr *BitWidth = (Expr*)BitfieldWidth;
2218 SourceLocation Loc = DeclStart;
2219 if (II) Loc = D.getIdentifierLoc();
2220
2221 // FIXME: Unnamed fields can be handled in various different ways, for
2222 // example, unnamed unions inject all members into the struct namespace!
2223
2224
2225 if (BitWidth) {
2226 // TODO: Validate.
2227 //printf("WARNING: BITFIELDS IGNORED!\n");
2228
2229 // 6.7.2.1p3
2230 // 6.7.2.1p4
2231
2232 } else {
2233 // Not a bitfield.
2234
2235 // validate II.
2236
2237 }
2238
2239 QualType T = GetTypeForDeclarator(D, S);
2240 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
2241 bool InvalidDecl = false;
2242
2243 // C99 6.7.2.1p8: A member of a structure or union may have any type other
2244 // than a variably modified type.
2245 if (T->isVariablyModifiedType()) {
2246 // FIXME: This diagnostic needs work
2247 Diag(Loc, diag::err_typecheck_illegal_vla, Loc);
2248 InvalidDecl = true;
2249 }
2250
Ted Kremenekb8db21d2008-07-23 18:04:17 +00002251 // Get the visibility (access control) for this ivar.
2252 ObjCIvarDecl::AccessControl ac =
2253 Visibility != tok::objc_not_keyword ? TranslateIvarVisibility(Visibility)
2254 : ObjCIvarDecl::None;
2255
2256 // Construct the decl.
2257 ObjCIvarDecl *NewID = ObjCIvarDecl::Create(Context, Loc, II, T, ac,
Steve Naroff8f3b2652008-07-16 18:22:22 +00002258 (Expr *)BitfieldWidth);
Fariborz Jahanian1d78cc42008-04-10 23:32:45 +00002259
Ted Kremenekb8db21d2008-07-23 18:04:17 +00002260 // Process attributes attached to the ivar.
Chris Lattner3ff30c82008-06-29 00:02:00 +00002261 ProcessDeclAttributes(NewID, D);
Fariborz Jahanian1d78cc42008-04-10 23:32:45 +00002262
2263 if (D.getInvalidType() || InvalidDecl)
2264 NewID->setInvalidDecl();
Ted Kremenekb8db21d2008-07-23 18:04:17 +00002265
Fariborz Jahanian1d78cc42008-04-10 23:32:45 +00002266 return NewID;
2267}
2268
Fariborz Jahanian9d048ff2007-09-29 00:54:24 +00002269void Sema::ActOnFields(Scope* S,
Fariborz Jahanian3f5faf72007-10-04 00:45:27 +00002270 SourceLocation RecLoc, DeclTy *RecDecl,
Steve Naroff08d92e42007-09-15 18:49:24 +00002271 DeclTy **Fields, unsigned NumFields,
Daniel Dunbar1bfe1c22008-10-03 02:03:53 +00002272 SourceLocation LBrac, SourceLocation RBrac,
Daniel Dunbar7d076642008-10-03 17:33:35 +00002273 AttributeList *Attr) {
Steve Naroff74216642007-09-14 22:20:54 +00002274 Decl *EnclosingDecl = static_cast<Decl*>(RecDecl);
2275 assert(EnclosingDecl && "missing record or interface decl");
2276 RecordDecl *Record = dyn_cast<RecordDecl>(EnclosingDecl);
2277
Ted Kremenek4b7c9832008-09-05 17:16:31 +00002278 if (Record)
2279 if (RecordDecl* DefRecord = Record->getDefinition(Context)) {
2280 // Diagnose code like:
2281 // struct S { struct S {} X; };
2282 // We discover this when we complete the outer S. Reject and ignore the
2283 // outer S.
2284 Diag(DefRecord->getLocation(), diag::err_nested_redefinition,
2285 DefRecord->getKindName());
2286 Diag(RecLoc, diag::err_previous_definition);
2287 Record->setInvalidDecl();
2288 return;
2289 }
2290
Reid Spencer5f016e22007-07-11 17:01:13 +00002291 // Verify that all the fields are okay.
2292 unsigned NumNamedMembers = 0;
2293 llvm::SmallVector<FieldDecl*, 32> RecFields;
2294 llvm::SmallSet<const IdentifierInfo*, 32> FieldIDs;
Steve Naroff74216642007-09-14 22:20:54 +00002295
Reid Spencer5f016e22007-07-11 17:01:13 +00002296 for (unsigned i = 0; i != NumFields; ++i) {
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00002297
Steve Naroff74216642007-09-14 22:20:54 +00002298 FieldDecl *FD = cast_or_null<FieldDecl>(static_cast<Decl*>(Fields[i]));
2299 assert(FD && "missing field decl");
2300
2301 // Remember all fields.
2302 RecFields.push_back(FD);
Reid Spencer5f016e22007-07-11 17:01:13 +00002303
2304 // Get the type for the field.
Chris Lattner02c642e2007-07-31 21:33:24 +00002305 Type *FDTy = FD->getType().getTypePtr();
Steve Narofff13271f2007-09-14 23:09:53 +00002306
Reid Spencer5f016e22007-07-11 17:01:13 +00002307 // C99 6.7.2.1p2 - A field may not be a function type.
Chris Lattner02c642e2007-07-31 21:33:24 +00002308 if (FDTy->isFunctionType()) {
Steve Naroff74216642007-09-14 22:20:54 +00002309 Diag(FD->getLocation(), diag::err_field_declared_as_function,
Reid Spencer5f016e22007-07-11 17:01:13 +00002310 FD->getName());
Steve Naroff74216642007-09-14 22:20:54 +00002311 FD->setInvalidDecl();
2312 EnclosingDecl->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00002313 continue;
2314 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002315 // C99 6.7.2.1p2 - A field may not be an incomplete type except...
2316 if (FDTy->isIncompleteType()) {
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00002317 if (!Record) { // Incomplete ivar type is always an error.
Fariborz Jahanian3f5faf72007-10-04 00:45:27 +00002318 Diag(FD->getLocation(), diag::err_field_incomplete, FD->getName());
Steve Naroff74216642007-09-14 22:20:54 +00002319 FD->setInvalidDecl();
2320 EnclosingDecl->setInvalidDecl();
Fariborz Jahanian3f5faf72007-10-04 00:45:27 +00002321 continue;
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00002322 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002323 if (i != NumFields-1 || // ... that the last member ...
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +00002324 !Record->isStruct() || // ... of a structure ...
Chris Lattner02c642e2007-07-31 21:33:24 +00002325 !FDTy->isArrayType()) { //... may have incomplete array type.
Reid Spencer5f016e22007-07-11 17:01:13 +00002326 Diag(FD->getLocation(), diag::err_field_incomplete, FD->getName());
Steve Naroff74216642007-09-14 22:20:54 +00002327 FD->setInvalidDecl();
2328 EnclosingDecl->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00002329 continue;
2330 }
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00002331 if (NumNamedMembers < 1) { //... must have more than named member ...
Reid Spencer5f016e22007-07-11 17:01:13 +00002332 Diag(FD->getLocation(), diag::err_flexible_array_empty_struct,
2333 FD->getName());
Steve Naroff74216642007-09-14 22:20:54 +00002334 FD->setInvalidDecl();
2335 EnclosingDecl->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00002336 continue;
2337 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002338 // Okay, we have a legal flexible array member at the end of the struct.
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00002339 if (Record)
2340 Record->setHasFlexibleArrayMember(true);
Reid Spencer5f016e22007-07-11 17:01:13 +00002341 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002342 /// C99 6.7.2.1p2 - a struct ending in a flexible array member cannot be the
2343 /// field of another structure or the element of an array.
Chris Lattner02c642e2007-07-31 21:33:24 +00002344 if (const RecordType *FDTTy = FDTy->getAsRecordType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002345 if (FDTTy->getDecl()->hasFlexibleArrayMember()) {
2346 // If this is a member of a union, then entire union becomes "flexible".
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +00002347 if (Record && Record->isUnion()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002348 Record->setHasFlexibleArrayMember(true);
2349 } else {
2350 // If this is a struct/class and this is not the last element, reject
2351 // it. Note that GCC supports variable sized arrays in the middle of
2352 // structures.
2353 if (i != NumFields-1) {
2354 Diag(FD->getLocation(), diag::err_variable_sized_type_in_struct,
2355 FD->getName());
Steve Naroff74216642007-09-14 22:20:54 +00002356 FD->setInvalidDecl();
2357 EnclosingDecl->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00002358 continue;
2359 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002360 // We support flexible arrays at the end of structs in other structs
2361 // as an extension.
2362 Diag(FD->getLocation(), diag::ext_flexible_array_in_struct,
2363 FD->getName());
Fariborz Jahanian3f5faf72007-10-04 00:45:27 +00002364 if (Record)
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00002365 Record->setHasFlexibleArrayMember(true);
Reid Spencer5f016e22007-07-11 17:01:13 +00002366 }
2367 }
2368 }
Fariborz Jahaniane7f64cc2007-10-12 22:10:42 +00002369 /// A field cannot be an Objective-c object
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002370 if (FDTy->isObjCInterfaceType()) {
Fariborz Jahaniane7f64cc2007-10-12 22:10:42 +00002371 Diag(FD->getLocation(), diag::err_statically_allocated_object,
2372 FD->getName());
2373 FD->setInvalidDecl();
2374 EnclosingDecl->setInvalidDecl();
2375 continue;
2376 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002377 // Keep track of the number of named members.
2378 if (IdentifierInfo *II = FD->getIdentifier()) {
2379 // Detect duplicate member names.
2380 if (!FieldIDs.insert(II)) {
2381 Diag(FD->getLocation(), diag::err_duplicate_member, II->getName());
2382 // Find the previous decl.
2383 SourceLocation PrevLoc;
Chris Lattner33d34a62008-10-12 00:28:42 +00002384 for (unsigned i = 0; ; ++i) {
2385 assert(i != RecFields.size() && "Didn't find previous def!");
Reid Spencer5f016e22007-07-11 17:01:13 +00002386 if (RecFields[i]->getIdentifier() == II) {
2387 PrevLoc = RecFields[i]->getLocation();
2388 break;
2389 }
2390 }
2391 Diag(PrevLoc, diag::err_previous_definition);
Steve Naroff74216642007-09-14 22:20:54 +00002392 FD->setInvalidDecl();
2393 EnclosingDecl->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00002394 continue;
2395 }
2396 ++NumNamedMembers;
2397 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002398 }
2399
Reid Spencer5f016e22007-07-11 17:01:13 +00002400 // Okay, we successfully defined 'Record'.
Chris Lattnere1e79852008-02-06 00:51:33 +00002401 if (Record) {
Ted Kremenek4b7c9832008-09-05 17:16:31 +00002402 Record->defineBody(Context, &RecFields[0], RecFields.size());
Argyrios Kyrtzidisa4755c62008-08-09 00:58:37 +00002403 // If this is a C++ record, HandleTagDeclDefinition will be invoked in
2404 // Sema::ActOnFinishCXXClassDef.
2405 if (!isa<CXXRecordDecl>(Record))
2406 Consumer.HandleTagDeclDefinition(Record);
Chris Lattnere1e79852008-02-06 00:51:33 +00002407 } else {
Chris Lattnera91d3812008-02-05 22:40:55 +00002408 ObjCIvarDecl **ClsFields = reinterpret_cast<ObjCIvarDecl**>(&RecFields[0]);
2409 if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(EnclosingDecl))
2410 ID->addInstanceVariablesToClass(ClsFields, RecFields.size(), RBrac);
2411 else if (ObjCImplementationDecl *IMPDecl =
2412 dyn_cast<ObjCImplementationDecl>(EnclosingDecl)) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002413 assert(IMPDecl && "ActOnFields - missing ObjCImplementationDecl");
2414 IMPDecl->ObjCAddInstanceVariablesToClassImpl(ClsFields, RecFields.size());
Fariborz Jahanian3a3ca1b2007-10-31 18:48:14 +00002415 CheckImplementationIvars(IMPDecl, ClsFields, RecFields.size(), RBrac);
Fariborz Jahaniand0b90bf2007-09-26 18:27:25 +00002416 }
Fariborz Jahanianb04a0212007-09-14 21:08:27 +00002417 }
Daniel Dunbar7d076642008-10-03 17:33:35 +00002418
2419 if (Attr)
2420 ProcessDeclAttributeList(Record, Attr);
Reid Spencer5f016e22007-07-11 17:01:13 +00002421}
2422
Steve Naroff08d92e42007-09-15 18:49:24 +00002423Sema::DeclTy *Sema::ActOnEnumConstant(Scope *S, DeclTy *theEnumDecl,
Reid Spencer5f016e22007-07-11 17:01:13 +00002424 DeclTy *lastEnumConst,
2425 SourceLocation IdLoc, IdentifierInfo *Id,
2426 SourceLocation EqualLoc, ExprTy *val) {
Chris Lattner0ed844b2008-04-04 06:12:32 +00002427 EnumDecl *TheEnumDecl = cast<EnumDecl>(static_cast<Decl*>(theEnumDecl));
Reid Spencer5f016e22007-07-11 17:01:13 +00002428 EnumConstantDecl *LastEnumConst =
2429 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(lastEnumConst));
2430 Expr *Val = static_cast<Expr*>(val);
2431
Chris Lattner31e05722007-08-26 06:24:45 +00002432 // The scope passed in may not be a decl scope. Zip up the scope tree until
2433 // we find one that is.
2434 while ((S->getFlags() & Scope::DeclScope) == 0)
2435 S = S->getParent();
2436
Reid Spencer5f016e22007-07-11 17:01:13 +00002437 // Verify that there isn't already something declared with this name in this
2438 // scope.
Steve Naroffb327ce02008-04-02 14:35:35 +00002439 if (Decl *PrevDecl = LookupDecl(Id, Decl::IDNS_Ordinary, S)) {
Argyrios Kyrtzidis0ff12f02008-07-16 21:01:53 +00002440 // When in C++, we may get a TagDecl with the same name; in this case the
2441 // enum constant will 'hide' the tag.
2442 assert((getLangOptions().CPlusPlus || !isa<TagDecl>(PrevDecl)) &&
2443 "Received TagDecl when not in C++!");
Argyrios Kyrtzidis15a12d02008-09-09 21:18:04 +00002444 if (!isa<TagDecl>(PrevDecl) && isDeclInScope(PrevDecl, CurContext, S)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002445 if (isa<EnumConstantDecl>(PrevDecl))
2446 Diag(IdLoc, diag::err_redefinition_of_enumerator, Id->getName());
2447 else
2448 Diag(IdLoc, diag::err_redefinition, Id->getName());
2449 Diag(PrevDecl->getLocation(), diag::err_previous_definition);
Chris Lattnera73349d2008-02-26 00:33:57 +00002450 delete Val;
Reid Spencer5f016e22007-07-11 17:01:13 +00002451 return 0;
2452 }
2453 }
2454
2455 llvm::APSInt EnumVal(32);
2456 QualType EltTy;
2457 if (Val) {
Chris Lattner421a23d2007-08-27 21:16:18 +00002458 // Make sure to promote the operand type to int.
2459 UsualUnaryConversions(Val);
2460
Reid Spencer5f016e22007-07-11 17:01:13 +00002461 // C99 6.7.2.2p2: Make sure we have an integer constant expression.
2462 SourceLocation ExpLoc;
Chris Lattner590b6642007-07-15 23:26:56 +00002463 if (!Val->isIntegerConstantExpr(EnumVal, Context, &ExpLoc)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002464 Diag(ExpLoc, diag::err_enum_value_not_integer_constant_expr,
2465 Id->getName());
Chris Lattnera73349d2008-02-26 00:33:57 +00002466 delete Val;
Chris Lattnerb7416f92007-08-27 17:37:24 +00002467 Val = 0; // Just forget about it.
Chris Lattnere9ca8512007-08-29 16:03:41 +00002468 } else {
2469 EltTy = Val->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00002470 }
Chris Lattnerb7416f92007-08-27 17:37:24 +00002471 }
2472
2473 if (!Val) {
2474 if (LastEnumConst) {
2475 // Assign the last value + 1.
2476 EnumVal = LastEnumConst->getInitVal();
2477 ++EnumVal;
Chris Lattner421a23d2007-08-27 21:16:18 +00002478
2479 // Check for overflow on increment.
2480 if (EnumVal < LastEnumConst->getInitVal())
2481 Diag(IdLoc, diag::warn_enum_value_overflow);
2482
Chris Lattnerb7416f92007-08-27 17:37:24 +00002483 EltTy = LastEnumConst->getType();
2484 } else {
2485 // First value, set to zero.
2486 EltTy = Context.IntTy;
Chris Lattner98be4942008-03-05 18:54:05 +00002487 EnumVal.zextOrTrunc(static_cast<uint32_t>(Context.getTypeSize(EltTy)));
Chris Lattnerb7416f92007-08-27 17:37:24 +00002488 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002489 }
2490
Chris Lattner6c2b6eb2008-03-15 06:12:44 +00002491 EnumConstantDecl *New =
Chris Lattner0ed844b2008-04-04 06:12:32 +00002492 EnumConstantDecl::Create(Context, TheEnumDecl, IdLoc, Id, EltTy,
2493 Val, EnumVal,
Chris Lattnerc63e6602008-03-15 21:32:50 +00002494 LastEnumConst);
Reid Spencer5f016e22007-07-11 17:01:13 +00002495
2496 // Register this decl in the current scope stack.
Argyrios Kyrtzidis87f3ff02008-04-12 00:47:19 +00002497 PushOnScopeChains(New, S);
Reid Spencer5f016e22007-07-11 17:01:13 +00002498 return New;
2499}
2500
Steve Naroff02408c62008-08-07 14:08:16 +00002501// FIXME: For consistency with ActOnFields(), we should have the parser
2502// pass in the source location for the left/right braces.
Steve Naroff08d92e42007-09-15 18:49:24 +00002503void Sema::ActOnEnumBody(SourceLocation EnumLoc, DeclTy *EnumDeclX,
Reid Spencer5f016e22007-07-11 17:01:13 +00002504 DeclTy **Elements, unsigned NumElements) {
2505 EnumDecl *Enum = cast<EnumDecl>(static_cast<Decl*>(EnumDeclX));
Reid Spencer5f016e22007-07-11 17:01:13 +00002506
Steve Naroff02408c62008-08-07 14:08:16 +00002507 if (Enum && Enum->isDefinition()) {
2508 // Diagnose code like:
2509 // enum e0 {
2510 // E0 = sizeof(enum e0 { E1 })
2511 // };
2512 Diag(Enum->getLocation(), diag::err_nested_redefinition,
2513 Enum->getName());
2514 Diag(EnumLoc, diag::err_previous_definition);
2515 Enum->setInvalidDecl();
2516 return;
2517 }
Chris Lattnere37f0be2007-08-28 05:10:31 +00002518 // TODO: If the result value doesn't fit in an int, it must be a long or long
2519 // long value. ISO C does not support this, but GCC does as an extension,
2520 // emit a warning.
Chris Lattner98be4942008-03-05 18:54:05 +00002521 unsigned IntWidth = Context.Target.getIntWidth();
Chris Lattnere37f0be2007-08-28 05:10:31 +00002522
Chris Lattnerac609682007-08-28 06:15:15 +00002523 // Verify that all the values are okay, compute the size of the values, and
2524 // reverse the list.
2525 unsigned NumNegativeBits = 0;
2526 unsigned NumPositiveBits = 0;
2527
2528 // Keep track of whether all elements have type int.
2529 bool AllElementsInt = true;
2530
Reid Spencer5f016e22007-07-11 17:01:13 +00002531 EnumConstantDecl *EltList = 0;
2532 for (unsigned i = 0; i != NumElements; ++i) {
2533 EnumConstantDecl *ECD =
2534 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(Elements[i]));
2535 if (!ECD) continue; // Already issued a diagnostic.
Chris Lattner211a30e2007-08-28 05:27:00 +00002536
2537 // If the enum value doesn't fit in an int, emit an extension warning.
Chris Lattner211a30e2007-08-28 05:27:00 +00002538 const llvm::APSInt &InitVal = ECD->getInitVal();
Chris Lattnera73349d2008-02-26 00:33:57 +00002539 assert(InitVal.getBitWidth() >= IntWidth &&
2540 "Should have promoted value to int");
Chris Lattner211a30e2007-08-28 05:27:00 +00002541 if (InitVal.getBitWidth() > IntWidth) {
2542 llvm::APSInt V(InitVal);
2543 V.trunc(IntWidth);
2544 V.extend(InitVal.getBitWidth());
2545 if (V != InitVal)
2546 Diag(ECD->getLocation(), diag::ext_enum_value_not_int,
Chris Lattner9aa77f12008-08-17 07:19:51 +00002547 InitVal.toString(10));
Chris Lattner211a30e2007-08-28 05:27:00 +00002548 }
Chris Lattnerac609682007-08-28 06:15:15 +00002549
2550 // Keep track of the size of positive and negative values.
Chris Lattnera73349d2008-02-26 00:33:57 +00002551 if (InitVal.isUnsigned() || InitVal.isNonNegative())
Chris Lattner21dd8212008-01-14 21:47:29 +00002552 NumPositiveBits = std::max(NumPositiveBits,
2553 (unsigned)InitVal.getActiveBits());
Chris Lattnerac609682007-08-28 06:15:15 +00002554 else
Chris Lattner21dd8212008-01-14 21:47:29 +00002555 NumNegativeBits = std::max(NumNegativeBits,
2556 (unsigned)InitVal.getMinSignedBits());
Reid Spencer5f016e22007-07-11 17:01:13 +00002557
Chris Lattnerac609682007-08-28 06:15:15 +00002558 // Keep track of whether every enum element has type int (very commmon).
2559 if (AllElementsInt)
2560 AllElementsInt = ECD->getType() == Context.IntTy;
2561
Reid Spencer5f016e22007-07-11 17:01:13 +00002562 ECD->setNextDeclarator(EltList);
2563 EltList = ECD;
2564 }
2565
Chris Lattnerac609682007-08-28 06:15:15 +00002566 // Figure out the type that should be used for this enum.
2567 // FIXME: Support attribute(packed) on enums and -fshort-enums.
2568 QualType BestType;
Chris Lattnerb7f6e082007-08-29 17:31:48 +00002569 unsigned BestWidth;
Chris Lattnerac609682007-08-28 06:15:15 +00002570
2571 if (NumNegativeBits) {
2572 // If there is a negative value, figure out the smallest integer type (of
2573 // int/long/longlong) that fits.
Chris Lattnerb7f6e082007-08-29 17:31:48 +00002574 if (NumNegativeBits <= IntWidth && NumPositiveBits < IntWidth) {
Chris Lattnerac609682007-08-28 06:15:15 +00002575 BestType = Context.IntTy;
Chris Lattnerb7f6e082007-08-29 17:31:48 +00002576 BestWidth = IntWidth;
2577 } else {
Chris Lattner98be4942008-03-05 18:54:05 +00002578 BestWidth = Context.Target.getLongWidth();
Ted Kremenek9c728dc2007-12-12 22:39:36 +00002579
Chris Lattnerb7f6e082007-08-29 17:31:48 +00002580 if (NumNegativeBits <= BestWidth && NumPositiveBits < BestWidth)
Chris Lattnerac609682007-08-28 06:15:15 +00002581 BestType = Context.LongTy;
2582 else {
Chris Lattner98be4942008-03-05 18:54:05 +00002583 BestWidth = Context.Target.getLongLongWidth();
Ted Kremenek9c728dc2007-12-12 22:39:36 +00002584
Chris Lattnerb7f6e082007-08-29 17:31:48 +00002585 if (NumNegativeBits > BestWidth || NumPositiveBits >= BestWidth)
Chris Lattnerac609682007-08-28 06:15:15 +00002586 Diag(Enum->getLocation(), diag::warn_enum_too_large);
2587 BestType = Context.LongLongTy;
2588 }
2589 }
2590 } else {
2591 // If there is no negative value, figure out which of uint, ulong, ulonglong
2592 // fits.
Chris Lattnerb7f6e082007-08-29 17:31:48 +00002593 if (NumPositiveBits <= IntWidth) {
Chris Lattnerac609682007-08-28 06:15:15 +00002594 BestType = Context.UnsignedIntTy;
Chris Lattnerb7f6e082007-08-29 17:31:48 +00002595 BestWidth = IntWidth;
2596 } else if (NumPositiveBits <=
Chris Lattner98be4942008-03-05 18:54:05 +00002597 (BestWidth = Context.Target.getLongWidth())) {
Chris Lattnerac609682007-08-28 06:15:15 +00002598 BestType = Context.UnsignedLongTy;
Chris Lattner98be4942008-03-05 18:54:05 +00002599 } else {
2600 BestWidth = Context.Target.getLongLongWidth();
Chris Lattnerb7f6e082007-08-29 17:31:48 +00002601 assert(NumPositiveBits <= BestWidth &&
Chris Lattnerac609682007-08-28 06:15:15 +00002602 "How could an initializer get larger than ULL?");
2603 BestType = Context.UnsignedLongLongTy;
2604 }
2605 }
2606
Chris Lattnerb7f6e082007-08-29 17:31:48 +00002607 // Loop over all of the enumerator constants, changing their types to match
2608 // the type of the enum if needed.
2609 for (unsigned i = 0; i != NumElements; ++i) {
2610 EnumConstantDecl *ECD =
2611 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(Elements[i]));
2612 if (!ECD) continue; // Already issued a diagnostic.
2613
2614 // Standard C says the enumerators have int type, but we allow, as an
2615 // extension, the enumerators to be larger than int size. If each
2616 // enumerator value fits in an int, type it as an int, otherwise type it the
2617 // same as the enumerator decl itself. This means that in "enum { X = 1U }"
2618 // that X has type 'int', not 'unsigned'.
Chris Lattnera73349d2008-02-26 00:33:57 +00002619 if (ECD->getType() == Context.IntTy) {
2620 // Make sure the init value is signed.
2621 llvm::APSInt IV = ECD->getInitVal();
2622 IV.setIsSigned(true);
2623 ECD->setInitVal(IV);
Chris Lattnerb7f6e082007-08-29 17:31:48 +00002624 continue; // Already int type.
Chris Lattnera73349d2008-02-26 00:33:57 +00002625 }
Chris Lattnerb7f6e082007-08-29 17:31:48 +00002626
2627 // Determine whether the value fits into an int.
2628 llvm::APSInt InitVal = ECD->getInitVal();
2629 bool FitsInInt;
2630 if (InitVal.isUnsigned() || !InitVal.isNegative())
2631 FitsInInt = InitVal.getActiveBits() < IntWidth;
2632 else
2633 FitsInInt = InitVal.getMinSignedBits() <= IntWidth;
2634
2635 // If it fits into an integer type, force it. Otherwise force it to match
2636 // the enum decl type.
2637 QualType NewTy;
2638 unsigned NewWidth;
2639 bool NewSign;
2640 if (FitsInInt) {
2641 NewTy = Context.IntTy;
2642 NewWidth = IntWidth;
2643 NewSign = true;
2644 } else if (ECD->getType() == BestType) {
2645 // Already the right type!
2646 continue;
2647 } else {
2648 NewTy = BestType;
2649 NewWidth = BestWidth;
2650 NewSign = BestType->isSignedIntegerType();
2651 }
2652
2653 // Adjust the APSInt value.
2654 InitVal.extOrTrunc(NewWidth);
2655 InitVal.setIsSigned(NewSign);
2656 ECD->setInitVal(InitVal);
2657
2658 // Adjust the Expr initializer and type.
2659 ECD->setInitExpr(new ImplicitCastExpr(NewTy, ECD->getInitExpr()));
2660 ECD->setType(NewTy);
2661 }
Chris Lattnerac609682007-08-28 06:15:15 +00002662
Chris Lattnere00b18c2007-08-28 18:24:31 +00002663 Enum->defineElements(EltList, BestType);
Chris Lattnere1e79852008-02-06 00:51:33 +00002664 Consumer.HandleTagDeclDefinition(Enum);
Reid Spencer5f016e22007-07-11 17:01:13 +00002665}
2666
Anders Carlssondfab6cb2008-02-08 00:33:21 +00002667Sema::DeclTy *Sema::ActOnFileScopeAsmDecl(SourceLocation Loc,
2668 ExprTy *expr) {
2669 StringLiteral *AsmString = cast<StringLiteral>((Expr*)expr);
2670
Chris Lattner8e25d862008-03-16 00:16:02 +00002671 return FileScopeAsmDecl::Create(Context, Loc, AsmString);
Anders Carlssondfab6cb2008-02-08 00:33:21 +00002672}
2673
Chris Lattnerc6fdc342008-01-12 07:05:38 +00002674Sema::DeclTy* Sema::ActOnLinkageSpec(SourceLocation Loc,
Chris Lattnerc81c8142008-02-25 21:04:36 +00002675 SourceLocation LBrace,
2676 SourceLocation RBrace,
2677 const char *Lang,
2678 unsigned StrSize,
2679 DeclTy *D) {
Chris Lattnerc6fdc342008-01-12 07:05:38 +00002680 LinkageSpecDecl::LanguageIDs Language;
2681 Decl *dcl = static_cast<Decl *>(D);
2682 if (strncmp(Lang, "\"C\"", StrSize) == 0)
2683 Language = LinkageSpecDecl::lang_c;
2684 else if (strncmp(Lang, "\"C++\"", StrSize) == 0)
2685 Language = LinkageSpecDecl::lang_cxx;
2686 else {
2687 Diag(Loc, diag::err_bad_language);
2688 return 0;
2689 }
2690
2691 // FIXME: Add all the various semantics of linkage specifications
Chris Lattner8e25d862008-03-16 00:16:02 +00002692 return LinkageSpecDecl::Create(Context, Loc, Language, dcl);
Chris Lattnerc6fdc342008-01-12 07:05:38 +00002693}
Daniel Dunbar4cde9272008-10-14 05:35:18 +00002694
2695void Sema::ActOnPragmaPack(PragmaPackKind Kind, IdentifierInfo *Name,
2696 ExprTy *alignment, SourceLocation PragmaLoc,
2697 SourceLocation LParenLoc, SourceLocation RParenLoc) {
2698 Expr *Alignment = static_cast<Expr *>(alignment);
2699
2700 // If specified then alignment must be a "small" power of two.
2701 unsigned AlignmentVal = 0;
2702 if (Alignment) {
2703 llvm::APSInt Val;
2704 if (!Alignment->isIntegerConstantExpr(Val, Context) ||
2705 !Val.isPowerOf2() ||
2706 Val.getZExtValue() > 16) {
2707 Diag(PragmaLoc, diag::warn_pragma_pack_invalid_alignment);
2708 delete Alignment;
2709 return; // Ignore
2710 }
2711
2712 AlignmentVal = (unsigned) Val.getZExtValue();
2713 }
2714
2715 switch (Kind) {
2716 case Action::PPK_Default: // pack([n])
2717 PackContext.setAlignment(AlignmentVal);
2718 break;
2719
2720 case Action::PPK_Show: // pack(show)
2721 // Show the current alignment, making sure to show the right value
2722 // for the default.
2723 AlignmentVal = PackContext.getAlignment();
2724 // FIXME: This should come from the target.
2725 if (AlignmentVal == 0)
2726 AlignmentVal = 8;
2727 Diag(PragmaLoc, diag::warn_pragma_pack_show, llvm::utostr(AlignmentVal));
2728 break;
2729
2730 case Action::PPK_Push: // pack(push [, id] [, [n])
2731 PackContext.push(Name);
2732 // Set the new alignment if specified.
2733 if (Alignment)
2734 PackContext.setAlignment(AlignmentVal);
2735 break;
2736
2737 case Action::PPK_Pop: // pack(pop [, id] [, n])
2738 // MSDN, C/C++ Preprocessor Reference > Pragma Directives > pack:
2739 // "#pragma pack(pop, identifier, n) is undefined"
2740 if (Alignment && Name)
2741 Diag(PragmaLoc, diag::warn_pragma_pack_pop_identifer_and_alignment);
2742
2743 // Do the pop.
2744 if (!PackContext.pop(Name)) {
2745 // If a name was specified then failure indicates the name
2746 // wasn't found. Otherwise failure indicates the stack was
2747 // empty.
2748 Diag(PragmaLoc, diag::warn_pragma_pack_pop_failed,
2749 Name ? "no record matching name" : "stack empty");
2750
2751 // FIXME: Warn about popping named records as MSVC does.
2752 } else {
2753 // Pop succeeded, set the new alignment if specified.
2754 if (Alignment)
2755 PackContext.setAlignment(AlignmentVal);
2756 }
2757 break;
2758
2759 default:
2760 assert(0 && "Invalid #pragma pack kind.");
2761 }
2762}
2763
2764bool PragmaPackStack::pop(IdentifierInfo *Name) {
2765 if (Stack.empty())
2766 return false;
2767
2768 // If name is empty just pop top.
2769 if (!Name) {
2770 Alignment = Stack.back().first;
2771 Stack.pop_back();
2772 return true;
2773 }
2774
2775 // Otherwise, find the named record.
2776 for (unsigned i = Stack.size(); i != 0; ) {
2777 --i;
2778 if (strcmp(Stack[i].second.c_str(), Name->getName()) == 0) {
2779 // Found it, pop up to and including this record.
2780 Alignment = Stack[i].first;
2781 Stack.erase(Stack.begin() + i, Stack.end());
2782 return true;
2783 }
2784 }
2785
2786 return false;
2787}