blob: 2358bdf391d705c460fc6e5a3d2445a759734eef [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"
Chris Lattnere1e79852008-02-06 00:51:33 +000015#include "clang/AST/ASTConsumer.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000016#include "clang/AST/ASTContext.h"
Anders Carlssonf78915f2008-02-15 07:04:12 +000017#include "clang/AST/Attr.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000018#include "clang/AST/Builtins.h"
19#include "clang/AST/Decl.h"
20#include "clang/AST/Expr.h"
21#include "clang/AST/Type.h"
22#include "clang/Parse/DeclSpec.h"
23#include "clang/Parse/Scope.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000024#include "clang/Basic/LangOptions.h"
25#include "clang/Basic/TargetInfo.h"
Steve Naroff4c49a6c2008-01-30 23:46:05 +000026#include "clang/Basic/SourceManager.h"
27// FIXME: layering (ideally, Sema shouldn't be dependent on Lex API's)
Chris Lattnere1e79852008-02-06 00:51:33 +000028#include "clang/Lex/Preprocessor.h"
Steve Naroff4c49a6c2008-01-30 23:46:05 +000029#include "clang/Lex/HeaderSearch.h"
Steve Naroff563477d2007-09-18 23:55:05 +000030#include "llvm/ADT/SmallString.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000031#include "llvm/ADT/SmallSet.h"
Fariborz Jahanian85ff2642007-10-05 18:00:57 +000032#include "llvm/ADT/DenseSet.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000033using namespace clang;
34
Reid Spencer5f016e22007-07-11 17:01:13 +000035Sema::DeclTy *Sema::isTypeName(const IdentifierInfo &II, Scope *S) const {
Fariborz Jahanianbece4ac2007-10-12 16:34:10 +000036 Decl *IIDecl = II.getFETokenInfo<Decl>();
37 // Find first occurance of none-tagged declaration
38 while(IIDecl && IIDecl->getIdentifierNamespace() != Decl::IDNS_Ordinary)
39 IIDecl = cast<ScopedDecl>(IIDecl)->getNext();
40 if (!IIDecl)
41 return 0;
Ted Kremeneka526c5c2008-01-07 19:49:32 +000042 if (isa<TypedefDecl>(IIDecl) || isa<ObjCInterfaceDecl>(IIDecl))
Fariborz Jahanianbece4ac2007-10-12 16:34:10 +000043 return IIDecl;
Ted Kremeneka526c5c2008-01-07 19:49:32 +000044 if (ObjCCompatibleAliasDecl *ADecl =
45 dyn_cast<ObjCCompatibleAliasDecl>(IIDecl))
Fariborz Jahanianbece4ac2007-10-12 16:34:10 +000046 return ADecl->getClassInterface();
Steve Naroff3536b442007-09-06 21:24:23 +000047 return 0;
Reid Spencer5f016e22007-07-11 17:01:13 +000048}
49
Steve Naroffb216c882007-10-09 22:01:59 +000050void Sema::ActOnPopScope(SourceLocation Loc, Scope *S) {
Chris Lattner31e05722007-08-26 06:24:45 +000051 if (S->decl_empty()) return;
52 assert((S->getFlags() & Scope::DeclScope) &&"Scope shouldn't contain decls!");
53
Reid Spencer5f016e22007-07-11 17:01:13 +000054 for (Scope::decl_iterator I = S->decl_begin(), E = S->decl_end();
55 I != E; ++I) {
Steve Naroffc752d042007-09-13 18:10:37 +000056 Decl *TmpD = static_cast<Decl*>(*I);
57 assert(TmpD && "This decl didn't get pushed??");
58 ScopedDecl *D = dyn_cast<ScopedDecl>(TmpD);
59 assert(D && "This decl isn't a ScopedDecl?");
60
Reid Spencer5f016e22007-07-11 17:01:13 +000061 IdentifierInfo *II = D->getIdentifier();
62 if (!II) continue;
63
64 // Unlink this decl from the identifier. Because the scope contains decls
65 // in an unordered collection, and because we have multiple identifier
66 // namespaces (e.g. tag, normal, label),the decl may not be the first entry.
67 if (II->getFETokenInfo<Decl>() == D) {
68 // Normal case, no multiple decls in different namespaces.
69 II->setFETokenInfo(D->getNext());
70 } else {
71 // Scan ahead. There are only three namespaces in C, so this loop can
72 // never execute more than 3 times.
Steve Naroffc752d042007-09-13 18:10:37 +000073 ScopedDecl *SomeDecl = II->getFETokenInfo<ScopedDecl>();
Reid Spencer5f016e22007-07-11 17:01:13 +000074 while (SomeDecl->getNext() != D) {
75 SomeDecl = SomeDecl->getNext();
76 assert(SomeDecl && "Didn't find this decl on its identifier's chain!");
77 }
78 SomeDecl->setNext(D->getNext());
79 }
80
81 // This will have to be revisited for C++: there we want to nest stuff in
82 // namespace decls etc. Even for C, we might want a top-level translation
83 // unit decl or something.
84 if (!CurFunctionDecl)
85 continue;
86
87 // Chain this decl to the containing function, it now owns the memory for
88 // the decl.
89 D->setNext(CurFunctionDecl->getDeclChain());
90 CurFunctionDecl->setDeclChain(D);
91 }
92}
93
Fariborz Jahanian4cabdfc2007-10-12 19:38:20 +000094/// LookupInterfaceDecl - Lookup interface declaration in the scope chain.
95/// Return the first declaration found (which may or may not be a class
Fariborz Jahanian3fe44e42007-10-12 19:53:08 +000096/// declaration. Caller is responsible for handling the none-class case.
Fariborz Jahanian4cabdfc2007-10-12 19:38:20 +000097/// Bypassing the alias of a class by returning the aliased class.
98ScopedDecl *Sema::LookupInterfaceDecl(IdentifierInfo *ClassName) {
99 ScopedDecl *IDecl;
100 // Scan up the scope chain looking for a decl that matches this identifier
101 // that is in the appropriate namespace.
102 for (IDecl = ClassName->getFETokenInfo<ScopedDecl>(); IDecl;
103 IDecl = IDecl->getNext())
104 if (IDecl->getIdentifierNamespace() == Decl::IDNS_Ordinary)
105 break;
106
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000107 if (ObjCCompatibleAliasDecl *ADecl =
108 dyn_cast_or_null<ObjCCompatibleAliasDecl>(IDecl))
Fariborz Jahanian4cabdfc2007-10-12 19:38:20 +0000109 return ADecl->getClassInterface();
110 return IDecl;
111}
112
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000113/// getObjCInterfaceDecl - Look up a for a class declaration in the scope.
Fariborz Jahanian9d048ff2007-09-29 00:54:24 +0000114/// return 0 if one not found.
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000115ObjCInterfaceDecl *Sema::getObjCInterfaceDecl(IdentifierInfo *Id) {
Fariborz Jahanian4cabdfc2007-10-12 19:38:20 +0000116 ScopedDecl *IdDecl = LookupInterfaceDecl(Id);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000117 return cast_or_null<ObjCInterfaceDecl>(IdDecl);
Fariborz Jahanian9d048ff2007-09-29 00:54:24 +0000118}
119
Reid Spencer5f016e22007-07-11 17:01:13 +0000120/// LookupScopedDecl - Look up the inner-most declaration in the specified
121/// namespace.
Steve Naroffc752d042007-09-13 18:10:37 +0000122ScopedDecl *Sema::LookupScopedDecl(IdentifierInfo *II, unsigned NSI,
123 SourceLocation IdLoc, Scope *S) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000124 if (II == 0) return 0;
125 Decl::IdentifierNamespace NS = (Decl::IdentifierNamespace)NSI;
126
127 // Scan up the scope chain looking for a decl that matches this identifier
128 // that is in the appropriate namespace. This search should not take long, as
129 // shadowing of names is uncommon, and deep shadowing is extremely uncommon.
Steve Naroffc752d042007-09-13 18:10:37 +0000130 for (ScopedDecl *D = II->getFETokenInfo<ScopedDecl>(); D; D = D->getNext())
Reid Spencer5f016e22007-07-11 17:01:13 +0000131 if (D->getIdentifierNamespace() == NS)
132 return D;
133
134 // If we didn't find a use of this identifier, and if the identifier
135 // corresponds to a compiler builtin, create the decl object for the builtin
136 // now, injecting it into translation unit scope, and return it.
137 if (NS == Decl::IDNS_Ordinary) {
138 // If this is a builtin on some other target, or if this builtin varies
139 // across targets (e.g. in type), emit a diagnostic and mark the translation
140 // unit non-portable for using it.
141 if (II->isNonPortableBuiltin()) {
142 // Only emit this diagnostic once for this builtin.
143 II->setNonPortableBuiltin(false);
Ted Kremenek9c728dc2007-12-12 22:39:36 +0000144 Context.Target.DiagnoseNonPortability(Context.getFullLoc(IdLoc),
Reid Spencer5f016e22007-07-11 17:01:13 +0000145 diag::port_target_builtin_use);
146 }
147 // If this is a builtin on this (or all) targets, create the decl.
148 if (unsigned BuiltinID = II->getBuiltinID())
149 return LazilyCreateBuiltin(II, BuiltinID, S);
150 }
151 return 0;
152}
153
Anders Carlsson7c50aca2007-10-15 20:28:48 +0000154void Sema::InitBuiltinVaListType()
155{
156 if (!Context.getBuiltinVaListType().isNull())
157 return;
158
159 IdentifierInfo *VaIdent = &Context.Idents.get("__builtin_va_list");
160 ScopedDecl *VaDecl = LookupScopedDecl(VaIdent, Decl::IDNS_Ordinary,
161 SourceLocation(), TUScope);
Steve Naroff733002f2007-10-18 22:17:45 +0000162 TypedefDecl *VaTypedef = cast<TypedefDecl>(VaDecl);
Anders Carlsson7c50aca2007-10-15 20:28:48 +0000163 Context.setBuiltinVaListType(Context.getTypedefType(VaTypedef));
164}
165
Reid Spencer5f016e22007-07-11 17:01:13 +0000166/// LazilyCreateBuiltin - The specified Builtin-ID was first used at file scope.
167/// lazily create a decl for it.
Chris Lattner22b73ba2007-10-10 23:42:28 +0000168ScopedDecl *Sema::LazilyCreateBuiltin(IdentifierInfo *II, unsigned bid,
169 Scope *S) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000170 Builtin::ID BID = (Builtin::ID)bid;
171
Anders Carlsson7c50aca2007-10-15 20:28:48 +0000172 if (BID == Builtin::BI__builtin_va_start ||
Anders Carlsson793680e2007-10-12 23:56:29 +0000173 BID == Builtin::BI__builtin_va_copy ||
Anders Carlsson7c50aca2007-10-15 20:28:48 +0000174 BID == Builtin::BI__builtin_va_end)
175 InitBuiltinVaListType();
176
Anders Carlssonb2cf3572007-10-11 01:00:40 +0000177 QualType R = Context.BuiltinInfo.GetBuiltinType(BID, Context);
Reid Spencer5f016e22007-07-11 17:01:13 +0000178 FunctionDecl *New = new FunctionDecl(SourceLocation(), II, R,
Chris Lattner70c8b2e2007-08-26 04:02:13 +0000179 FunctionDecl::Extern, false, 0);
Reid Spencer5f016e22007-07-11 17:01:13 +0000180
181 // Find translation-unit scope to insert this function into.
Chris Lattner31e05722007-08-26 06:24:45 +0000182 if (Scope *FnS = S->getFnParent())
183 S = FnS->getParent(); // Skip all scopes in a function at once.
Reid Spencer5f016e22007-07-11 17:01:13 +0000184 while (S->getParent())
185 S = S->getParent();
186 S->AddDecl(New);
187
188 // Add this decl to the end of the identifier info.
Steve Naroffc752d042007-09-13 18:10:37 +0000189 if (ScopedDecl *LastDecl = II->getFETokenInfo<ScopedDecl>()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000190 // Scan until we find the last (outermost) decl in the id chain.
191 while (LastDecl->getNext())
192 LastDecl = LastDecl->getNext();
193 // Insert before (outside) it.
194 LastDecl->setNext(New);
195 } else {
196 II->setFETokenInfo(New);
197 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000198 return New;
199}
200
201/// MergeTypeDefDecl - We just parsed a typedef 'New' which has the same name
202/// and scope as a previous declaration 'Old'. Figure out how to resolve this
203/// situation, merging decls or emitting diagnostics as appropriate.
204///
Steve Naroff8e74c932007-09-13 21:41:19 +0000205TypedefDecl *Sema::MergeTypeDefDecl(TypedefDecl *New, ScopedDecl *OldD) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000206 // Verify the old decl was also a typedef.
207 TypedefDecl *Old = dyn_cast<TypedefDecl>(OldD);
208 if (!Old) {
209 Diag(New->getLocation(), diag::err_redefinition_different_kind,
210 New->getName());
211 Diag(OldD->getLocation(), diag::err_previous_definition);
212 return New;
213 }
214
Steve Naroff8ee529b2007-10-31 18:42:27 +0000215 // Allow multiple definitions for ObjC built-in typedefs.
216 // FIXME: Verify the underlying types are equivalent!
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000217 if (getLangOptions().ObjC1 && isBuiltinObjCType(New))
Steve Naroff8ee529b2007-10-31 18:42:27 +0000218 return Old;
Steve Naroff4c49a6c2008-01-30 23:46:05 +0000219
220 // Redeclaration of a type is a constraint violation (6.7.2.3p1).
221 // Apparently GCC, Intel, and Sun all silently ignore the redeclaration if
222 // *either* declaration is in a system header. The code below implements
223 // this adhoc compatibility rule. FIXME: The following code will not
224 // work properly when compiling ".i" files (containing preprocessed output).
225 SourceManager &SrcMgr = Context.getSourceManager();
226 const FileEntry *OldDeclFile = SrcMgr.getFileEntryForLoc(Old->getLocation());
227 const FileEntry *NewDeclFile = SrcMgr.getFileEntryForLoc(New->getLocation());
228 HeaderSearch &HdrInfo = PP.getHeaderSearchInfo();
229 DirectoryLookup::DirType OldDirType = HdrInfo.getFileDirFlavor(OldDeclFile);
230 DirectoryLookup::DirType NewDirType = HdrInfo.getFileDirFlavor(NewDeclFile);
231
Steve Naroffd62701b2008-02-07 03:50:06 +0000232 if ((OldDirType == DirectoryLookup::ExternCSystemHeaderDir ||
233 NewDirType == DirectoryLookup::ExternCSystemHeaderDir) ||
234 getLangOptions().Microsoft)
Steve Naroff4c49a6c2008-01-30 23:46:05 +0000235 return New;
Steve Naroff8ee529b2007-10-31 18:42:27 +0000236
Reid Spencer5f016e22007-07-11 17:01:13 +0000237 // TODO: CHECK FOR CONFLICTS, multiple decls with same name in one scope.
238 // TODO: This is totally simplistic. It should handle merging functions
239 // together etc, merging extern int X; int X; ...
240 Diag(New->getLocation(), diag::err_redefinition, New->getName());
241 Diag(Old->getLocation(), diag::err_previous_definition);
242 return New;
243}
244
245/// MergeFunctionDecl - We just parsed a function 'New' which has the same name
246/// and scope as a previous declaration 'Old'. Figure out how to resolve this
247/// situation, merging decls or emitting diagnostics as appropriate.
248///
Steve Naroff8e74c932007-09-13 21:41:19 +0000249FunctionDecl *Sema::MergeFunctionDecl(FunctionDecl *New, ScopedDecl *OldD) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000250 // Verify the old decl was also a function.
251 FunctionDecl *Old = dyn_cast<FunctionDecl>(OldD);
252 if (!Old) {
253 Diag(New->getLocation(), diag::err_redefinition_different_kind,
254 New->getName());
255 Diag(OldD->getLocation(), diag::err_previous_definition);
256 return New;
257 }
258
Chris Lattner55196442007-11-20 19:04:50 +0000259 QualType OldQType = Old->getCanonicalType();
260 QualType NewQType = New->getCanonicalType();
261
Steve Naroffadbbd0c2008-01-14 20:51:29 +0000262 // Function types need to be compatible, not identical. This handles
263 // duplicate function decls like "void f(int); void f(enum X);" properly.
264 if (Context.functionTypesAreCompatible(OldQType, NewQType))
265 return New;
Chris Lattnere3995fe2007-11-06 06:07:26 +0000266
Steve Naroff837618c2008-01-16 15:01:34 +0000267 // A function that has already been declared has been redeclared or defined
268 // with a different type- show appropriate diagnostic
269 diag::kind PrevDiag = Old->getBody() ? diag::err_previous_definition :
270 diag::err_previous_declaration;
271
Reid Spencer5f016e22007-07-11 17:01:13 +0000272 // TODO: CHECK FOR CONFLICTS, multiple decls with same name in one scope.
273 // TODO: This is totally simplistic. It should handle merging functions
274 // together etc, merging extern int X; int X; ...
Steve Naroff837618c2008-01-16 15:01:34 +0000275 Diag(New->getLocation(), diag::err_conflicting_types, New->getName());
276 Diag(Old->getLocation(), PrevDiag);
Reid Spencer5f016e22007-07-11 17:01:13 +0000277 return New;
278}
279
Chris Lattnerfcc2d262007-11-06 04:28:31 +0000280/// equivalentArrayTypes - Used to determine whether two array types are
281/// equivalent.
282/// We need to check this explicitly as an incomplete array definition is
283/// considered a VariableArrayType, so will not match a complete array
284/// definition that would be otherwise equivalent.
285static bool areEquivalentArrayTypes(QualType NewQType, QualType OldQType) {
286 const ArrayType *NewAT = NewQType->getAsArrayType();
287 const ArrayType *OldAT = OldQType->getAsArrayType();
288
289 if (!NewAT || !OldAT)
290 return false;
291
292 // If either (or both) array types in incomplete we need to strip off the
293 // outer VariableArrayType. Once the outer VAT is removed the remaining
294 // types must be identical if the array types are to be considered
295 // equivalent.
296 // eg. int[][1] and int[1][1] become
297 // VAT(null, CAT(1, int)) and CAT(1, CAT(1, int))
298 // removing the outermost VAT gives
299 // CAT(1, int) and CAT(1, int)
300 // which are equal, therefore the array types are equivalent.
Eli Friedman9db13972008-02-15 12:53:51 +0000301 if (NewAT->isIncompleteArrayType() || OldAT->isIncompleteArrayType()) {
Chris Lattnerfcc2d262007-11-06 04:28:31 +0000302 if (NewAT->getIndexTypeQualifier() != OldAT->getIndexTypeQualifier())
303 return false;
Eli Friedman04930252008-01-29 07:51:12 +0000304 NewQType = NewAT->getElementType().getCanonicalType();
305 OldQType = OldAT->getElementType().getCanonicalType();
Chris Lattnerfcc2d262007-11-06 04:28:31 +0000306 }
307
308 return NewQType == OldQType;
309}
310
Reid Spencer5f016e22007-07-11 17:01:13 +0000311/// MergeVarDecl - We just parsed a variable 'New' which has the same name
312/// and scope as a previous declaration 'Old'. Figure out how to resolve this
313/// situation, merging decls or emitting diagnostics as appropriate.
314///
315/// FIXME: Need to carefully consider tentative definition rules (C99 6.9.2p2).
316/// For example, we incorrectly complain about i1, i4 from C99 6.9.2p4.
317///
Steve Naroff8e74c932007-09-13 21:41:19 +0000318VarDecl *Sema::MergeVarDecl(VarDecl *New, ScopedDecl *OldD) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000319 // Verify the old decl was also a variable.
320 VarDecl *Old = dyn_cast<VarDecl>(OldD);
321 if (!Old) {
322 Diag(New->getLocation(), diag::err_redefinition_different_kind,
323 New->getName());
324 Diag(OldD->getLocation(), diag::err_previous_definition);
325 return New;
326 }
327 // Verify the types match.
Chris Lattnerfcc2d262007-11-06 04:28:31 +0000328 if (Old->getCanonicalType() != New->getCanonicalType() &&
329 !areEquivalentArrayTypes(New->getCanonicalType(), Old->getCanonicalType())) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000330 Diag(New->getLocation(), diag::err_redefinition, New->getName());
331 Diag(Old->getLocation(), diag::err_previous_definition);
332 return New;
333 }
Steve Naroffb7b032e2008-01-30 00:44:01 +0000334 // C99 6.2.2p4: Check if we have a static decl followed by a non-static.
335 if (New->getStorageClass() == VarDecl::Static &&
336 (Old->getStorageClass() == VarDecl::None ||
337 Old->getStorageClass() == VarDecl::Extern)) {
338 Diag(New->getLocation(), diag::err_static_non_static, New->getName());
339 Diag(Old->getLocation(), diag::err_previous_definition);
340 return New;
341 }
342 // C99 6.2.2p4: Check if we have a non-static decl followed by a static.
343 if (New->getStorageClass() != VarDecl::Static &&
344 Old->getStorageClass() == VarDecl::Static) {
345 Diag(New->getLocation(), diag::err_non_static_static, New->getName());
346 Diag(Old->getLocation(), diag::err_previous_definition);
347 return New;
348 }
349 // We've verified the types match, now handle "tentative" definitions.
350 FileVarDecl *OldFSDecl = dyn_cast<FileVarDecl>(Old);
351 FileVarDecl *NewFSDecl = dyn_cast<FileVarDecl>(New);
352
353 if (OldFSDecl && NewFSDecl) {
354 // Handle C "tentative" external object definitions (C99 6.9.2).
355 bool OldIsTentative = false;
356 bool NewIsTentative = false;
357
358 if (!OldFSDecl->getInit() &&
359 (OldFSDecl->getStorageClass() == VarDecl::None ||
360 OldFSDecl->getStorageClass() == VarDecl::Static))
361 OldIsTentative = true;
362
363 // FIXME: this check doesn't work (since the initializer hasn't been
364 // attached yet). This check should be moved to FinalizeDeclaratorGroup.
365 // Unfortunately, by the time we get to FinializeDeclaratorGroup, we've
366 // thrown out the old decl.
367 if (!NewFSDecl->getInit() &&
368 (NewFSDecl->getStorageClass() == VarDecl::None ||
369 NewFSDecl->getStorageClass() == VarDecl::Static))
370 ; // change to NewIsTentative = true; once the code is moved.
371
372 if (NewIsTentative || OldIsTentative)
373 return New;
374 }
375 if (Old->getStorageClass() != VarDecl::Extern &&
376 New->getStorageClass() != VarDecl::Extern) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000377 Diag(New->getLocation(), diag::err_redefinition, New->getName());
378 Diag(Old->getLocation(), diag::err_previous_definition);
379 }
380 return New;
381}
382
383/// ParsedFreeStandingDeclSpec - This method is invoked when a declspec with
384/// no declarator (e.g. "struct foo;") is parsed.
385Sema::DeclTy *Sema::ParsedFreeStandingDeclSpec(Scope *S, DeclSpec &DS) {
386 // TODO: emit error on 'int;' or 'const enum foo;'.
387 // TODO: emit error on 'typedef int;'
388 // if (!DS.isMissingDeclaratorOk()) Diag(...);
389
Steve Naroff92199282007-11-17 21:37:36 +0000390 return dyn_cast_or_null<TagDecl>(static_cast<Decl *>(DS.getTypeRep()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000391}
392
Steve Naroffd0091aa2008-01-10 22:15:12 +0000393bool Sema::CheckSingleInitializer(Expr *&Init, QualType DeclType) {
Steve Narofff0090632007-09-02 02:04:30 +0000394 // Get the type before calling CheckSingleAssignmentConstraints(), since
395 // it can promote the expression.
Chris Lattner5cf216b2008-01-04 18:04:52 +0000396 QualType InitType = Init->getType();
Steve Narofff0090632007-09-02 02:04:30 +0000397
Chris Lattner5cf216b2008-01-04 18:04:52 +0000398 AssignConvertType ConvTy = CheckSingleAssignmentConstraints(DeclType, Init);
399 return DiagnoseAssignmentResult(ConvTy, Init->getLocStart(), DeclType,
400 InitType, Init, "initializing");
Steve Narofff0090632007-09-02 02:04:30 +0000401}
402
Steve Naroff9e8925e2007-09-04 14:36:54 +0000403bool Sema::CheckInitExpr(Expr *expr, InitListExpr *IList, unsigned slot,
Steve Naroffd0091aa2008-01-10 22:15:12 +0000404 QualType ElementType) {
Chris Lattner33b7b062007-12-11 23:15:04 +0000405 Expr *savExpr = expr; // Might be promoted by CheckSingleInitializer.
Steve Naroffd0091aa2008-01-10 22:15:12 +0000406 if (CheckSingleInitializer(expr, ElementType))
Chris Lattner33b7b062007-12-11 23:15:04 +0000407 return true; // types weren't compatible.
408
Steve Naroff9e8925e2007-09-04 14:36:54 +0000409 if (savExpr != expr) // The type was promoted, update initializer list.
410 IList->setInit(slot, expr);
Steve Naroff371227d2007-09-04 02:20:04 +0000411 return false;
412}
413
Steve Naroffa49e1fa2008-01-22 00:55:40 +0000414bool Sema::CheckStringLiteralInit(StringLiteral *strLiteral, QualType &DeclT) {
415 if (const VariableArrayType *VAT = DeclT->getAsIncompleteArrayType()) {
416 // C99 6.7.8p14. We have an array of character type with unknown size
417 // being initialized to a string literal.
418 llvm::APSInt ConstVal(32);
419 ConstVal = strLiteral->getByteLength() + 1;
420 // Return a new array type (C99 6.7.8p22).
421 DeclT = Context.getConstantArrayType(VAT->getElementType(), ConstVal,
422 ArrayType::Normal, 0);
423 } else if (const ConstantArrayType *CAT = DeclT->getAsConstantArrayType()) {
424 // C99 6.7.8p14. We have an array of character type with known size.
425 if (strLiteral->getByteLength() > (unsigned)CAT->getMaximumElements())
426 Diag(strLiteral->getSourceRange().getBegin(),
427 diag::warn_initializer_string_for_char_array_too_long,
428 strLiteral->getSourceRange());
429 } else {
430 assert(0 && "HandleStringLiteralInit(): Invalid array type");
431 }
432 // Set type from "char *" to "constant array of char".
433 strLiteral->setType(DeclT);
434 // For now, we always return false (meaning success).
435 return false;
436}
437
438StringLiteral *Sema::IsStringLiteralInit(Expr *Init, QualType DeclType) {
Steve Naroffa49e1fa2008-01-22 00:55:40 +0000439 const ArrayType *AT = DeclType->getAsArrayType();
Steve Naroffa9960332008-01-25 00:51:06 +0000440 if (AT && AT->getElementType()->isCharType()) {
441 return dyn_cast<StringLiteral>(Init);
442 }
Steve Naroffa49e1fa2008-01-22 00:55:40 +0000443 return 0;
444}
445
Steve Naroffa9960332008-01-25 00:51:06 +0000446// CheckInitializerListTypes - Checks the types of elements of an initializer
447// list. This function is recursive: it calls itself to initialize subelements
448// of aggregate types. Note that the topLevel parameter essentially refers to
449// whether this expression "owns" the initializer list passed in, or if this
450// initialization is taking elements out of a parent initializer. Each
451// call to this function adds zero or more to startIndex, reports any errors,
452// and returns true if it found any inconsistent types.
453bool Sema::CheckInitializerListTypes(InitListExpr*& IList, QualType &DeclType,
454 bool topLevel, unsigned& startIndex) {
Steve Naroff2fdc3742007-12-10 22:44:33 +0000455 bool hadError = false;
Steve Naroffa9960332008-01-25 00:51:06 +0000456
457 if (DeclType->isScalarType()) {
458 // The simplest case: initializing a single scalar
459 if (topLevel) {
460 Diag(IList->getLocStart(), diag::warn_braces_around_scalar_init,
461 IList->getSourceRange());
462 }
463 if (startIndex < IList->getNumInits()) {
464 Expr* expr = IList->getInit(startIndex);
465 if (InitListExpr *SubInitList = dyn_cast<InitListExpr>(expr)) {
466 // FIXME: Should an error be reported here instead?
467 unsigned newIndex = 0;
468 CheckInitializerListTypes(SubInitList, DeclType, true, newIndex);
469 } else {
470 hadError |= CheckInitExpr(expr, IList, startIndex, DeclType);
471 }
472 ++startIndex;
473 }
474 // FIXME: Should an error be reported for empty initializer list + scalar?
475 } else if (DeclType->isVectorType()) {
476 if (startIndex < IList->getNumInits()) {
477 const VectorType *VT = DeclType->getAsVectorType();
478 int maxElements = VT->getNumElements();
479 QualType elementType = VT->getElementType();
480
481 for (int i = 0; i < maxElements; ++i) {
482 // Don't attempt to go past the end of the init list
483 if (startIndex >= IList->getNumInits())
484 break;
485 Expr* expr = IList->getInit(startIndex);
486 if (InitListExpr *SubInitList = dyn_cast<InitListExpr>(expr)) {
487 unsigned newIndex = 0;
488 hadError |= CheckInitializerListTypes(SubInitList, elementType,
489 true, newIndex);
490 ++startIndex;
491 } else {
492 hadError |= CheckInitializerListTypes(IList, elementType,
493 false, startIndex);
494 }
495 }
496 }
497 } else if (DeclType->isAggregateType() || DeclType->isUnionType()) {
498 if (DeclType->isStructureType() || DeclType->isUnionType()) {
Steve Naroff578edc62008-01-28 02:00:41 +0000499 if (startIndex < IList->getNumInits() && !topLevel &&
500 Context.typesAreCompatible(IList->getInit(startIndex)->getType(),
501 DeclType)) {
Steve Naroffa9960332008-01-25 00:51:06 +0000502 // We found a compatible struct; per the standard, this initializes the
503 // struct. (The C standard technically says that this only applies for
504 // initializers for declarations with automatic scope; however, this
505 // construct is unambiguous anyway because a struct cannot contain
506 // a type compatible with itself. We'll output an error when we check
507 // if the initializer is constant.)
508 // FIXME: Is a call to CheckSingleInitializer required here?
509 ++startIndex;
510 } else {
511 RecordDecl* structDecl = DeclType->getAsRecordType()->getDecl();
Steve Naroffb43eaa52008-02-11 00:06:17 +0000512
Steve Naroff406db932008-02-11 21:52:37 +0000513 // If the record is invalid, some of it's members are invalid. To avoid
514 // confusion, we forgo checking the intializer for the entire record.
Steve Naroffb43eaa52008-02-11 00:06:17 +0000515 if (structDecl->isInvalidDecl())
516 return true;
517
Steve Naroffa9960332008-01-25 00:51:06 +0000518 // If structDecl is a forward declaration, this loop won't do anything;
519 // That's okay, because an error should get printed out elsewhere. It
520 // might be worthwhile to skip over the rest of the initializer, though.
521 int numMembers = structDecl->getNumMembers() -
522 structDecl->hasFlexibleArrayMember();
523 for (int i = 0; i < numMembers; i++) {
524 // Don't attempt to go past the end of the init list
525 if (startIndex >= IList->getNumInits())
526 break;
527 FieldDecl * curField = structDecl->getMember(i);
528 if (!curField->getIdentifier()) {
529 // Don't initialize unnamed fields, e.g. "int : 20;"
530 continue;
531 }
532 QualType fieldType = curField->getType();
533 Expr* expr = IList->getInit(startIndex);
534 if (InitListExpr *SubInitList = dyn_cast<InitListExpr>(expr)) {
535 unsigned newStart = 0;
536 hadError |= CheckInitializerListTypes(SubInitList, fieldType,
537 true, newStart);
538 ++startIndex;
539 } else {
540 hadError |= CheckInitializerListTypes(IList, fieldType,
541 false, startIndex);
542 }
543 if (DeclType->isUnionType())
544 break;
545 }
546 // FIXME: Implement flexible array initialization GCC extension (it's a
547 // really messy extension to implement, unfortunately...the necessary
548 // information isn't actually even here!)
549 }
550 } else if (DeclType->isArrayType()) {
551 // Check for the special-case of initializing an array with a string.
552 if (startIndex < IList->getNumInits()) {
553 if (StringLiteral *lit = IsStringLiteralInit(IList->getInit(startIndex),
554 DeclType)) {
555 CheckStringLiteralInit(lit, DeclType);
556 ++startIndex;
557 if (topLevel && startIndex < IList->getNumInits()) {
558 // We have leftover initializers; warn
559 Diag(IList->getInit(startIndex)->getLocStart(),
560 diag::err_excess_initializers_in_char_array_initializer,
561 IList->getInit(startIndex)->getSourceRange());
562 }
563 return false;
564 }
565 }
566 int maxElements;
567 if (const VariableArrayType *VAT = DeclType->getAsVariableArrayType()) {
568 // FIXME: use a proper constant
569 maxElements = 0x7FFFFFFF;
570 // Check for VLAs; in standard C it would be possible to check this
571 // earlier, but I don't know where clang accepts VLAs (gcc accepts
572 // them in all sorts of strange places).
573 if (const Expr *expr = VAT->getSizeExpr()) {
574 Diag(expr->getLocStart(), diag::err_variable_object_no_init,
575 expr->getSourceRange());
576 hadError = true;
577 }
578 } else {
579 const ConstantArrayType *CAT = DeclType->getAsConstantArrayType();
580 maxElements = static_cast<int>(CAT->getSize().getZExtValue());
581 }
582 QualType elementType = DeclType->getAsArrayType()->getElementType();
583 int numElements = 0;
584 for (int i = 0; i < maxElements; ++i, ++numElements) {
585 // Don't attempt to go past the end of the init list
586 if (startIndex >= IList->getNumInits())
587 break;
588 Expr* expr = IList->getInit(startIndex);
589 if (InitListExpr *SubInitList = dyn_cast<InitListExpr>(expr)) {
590 unsigned newIndex = 0;
591 hadError |= CheckInitializerListTypes(SubInitList, elementType,
592 true, newIndex);
593 ++startIndex;
594 } else {
595 hadError |= CheckInitializerListTypes(IList, elementType,
596 false, startIndex);
597 }
598 }
Eli Friedman9db13972008-02-15 12:53:51 +0000599 if (DeclType->isIncompleteArrayType()) {
Steve Naroffa9960332008-01-25 00:51:06 +0000600 // If this is an incomplete array type, the actual type needs to
601 // be calculated here
602 if (numElements == 0) {
603 // Sizing an array implicitly to zero is not allowed
604 // (It could in theory be allowed, but it doesn't really matter.)
605 Diag(IList->getLocStart(),
606 diag::err_at_least_one_initializer_needed_to_size_array);
607 hadError = true;
608 } else {
609 llvm::APSInt ConstVal(32);
610 ConstVal = numElements;
611 DeclType = Context.getConstantArrayType(elementType, ConstVal,
612 ArrayType::Normal, 0);
613 }
614 }
615 } else {
616 assert(0 && "Aggregate that isn't a function or array?!");
617 }
618 } else {
619 // In C, all types are either scalars or aggregates, but
620 // additional handling is needed here for C++ (and possibly others?).
621 assert(0 && "Unsupported initializer type");
622 }
623
624 // If this init list is a base list, we set the type; an initializer doesn't
625 // fundamentally have a type, but this makes the ASTs a bit easier to read
626 if (topLevel)
627 IList->setType(DeclType);
628
629 if (topLevel && startIndex < IList->getNumInits()) {
630 // We have leftover initializers; warn
631 Diag(IList->getInit(startIndex)->getLocStart(),
632 diag::warn_excess_initializers,
633 IList->getInit(startIndex)->getSourceRange());
634 }
635 return hadError;
636}
637
638bool Sema::CheckInitializerTypes(Expr *&Init, QualType &DeclType) {
Steve Naroffca107302008-01-21 23:53:58 +0000639 // C99 6.7.8p3: The type of the entity to be initialized shall be an array
640 // of unknown size ("[]") or an object type that is not a variable array type.
641 if (const VariableArrayType *VAT = DeclType->getAsVariablyModifiedType())
642 return Diag(VAT->getSizeExpr()->getLocStart(),
643 diag::err_variable_object_no_init,
644 VAT->getSizeExpr()->getSourceRange());
645
Steve Naroff2fdc3742007-12-10 22:44:33 +0000646 InitListExpr *InitList = dyn_cast<InitListExpr>(Init);
647 if (!InitList) {
Steve Naroffa49e1fa2008-01-22 00:55:40 +0000648 // FIXME: Handle wide strings
649 if (StringLiteral *strLiteral = IsStringLiteralInit(Init, DeclType))
650 return CheckStringLiteralInit(strLiteral, DeclType);
Eli Friedmana312ce22008-02-08 00:48:24 +0000651
652 if (DeclType->isArrayType())
653 return Diag(Init->getLocStart(),
654 diag::err_array_init_list_required,
655 Init->getSourceRange());
656
Steve Naroffd0091aa2008-01-10 22:15:12 +0000657 return CheckSingleInitializer(Init, DeclType);
Steve Naroff2fdc3742007-12-10 22:44:33 +0000658 }
Steve Naroffa9960332008-01-25 00:51:06 +0000659 unsigned newIndex = 0;
660 return CheckInitializerListTypes(InitList, DeclType, true, newIndex);
Steve Narofff0090632007-09-02 02:04:30 +0000661}
662
Fariborz Jahanian306d68f2007-11-08 23:49:49 +0000663Sema::DeclTy *
Steve Naroff08d92e42007-09-15 18:49:24 +0000664Sema::ActOnDeclarator(Scope *S, Declarator &D, DeclTy *lastDecl) {
Steve Naroff94745042007-09-13 23:52:58 +0000665 ScopedDecl *LastDeclarator = dyn_cast_or_null<ScopedDecl>((Decl *)lastDecl);
Reid Spencer5f016e22007-07-11 17:01:13 +0000666 IdentifierInfo *II = D.getIdentifier();
667
Chris Lattnere80a59c2007-07-25 00:24:17 +0000668 // All of these full declarators require an identifier. If it doesn't have
669 // one, the ParsedFreeStandingDeclSpec action should be used.
670 if (II == 0) {
Chris Lattner311ff022007-10-16 22:36:42 +0000671 Diag(D.getDeclSpec().getSourceRange().getBegin(),
Chris Lattner98e08632007-08-28 06:17:15 +0000672 diag::err_declarator_need_ident,
Chris Lattnere80a59c2007-07-25 00:24:17 +0000673 D.getDeclSpec().getSourceRange(), D.getSourceRange());
674 return 0;
675 }
676
Chris Lattner31e05722007-08-26 06:24:45 +0000677 // The scope passed in may not be a decl scope. Zip up the scope tree until
678 // we find one that is.
679 while ((S->getFlags() & Scope::DeclScope) == 0)
680 S = S->getParent();
681
Reid Spencer5f016e22007-07-11 17:01:13 +0000682 // See if this is a redefinition of a variable in the same scope.
Steve Naroffc752d042007-09-13 18:10:37 +0000683 ScopedDecl *PrevDecl = LookupScopedDecl(II, Decl::IDNS_Ordinary,
684 D.getIdentifierLoc(), S);
Steve Naroffc752d042007-09-13 18:10:37 +0000685 ScopedDecl *New;
Steve Naroff5912a352007-08-28 20:14:24 +0000686 bool InvalidDecl = false;
687
Chris Lattner41af0932007-11-14 06:34:38 +0000688 QualType R = GetTypeForDeclarator(D, S);
689 assert(!R.isNull() && "GetTypeForDeclarator() returned null type");
690
Reid Spencer5f016e22007-07-11 17:01:13 +0000691 if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef) {
Chris Lattner41af0932007-11-14 06:34:38 +0000692 TypedefDecl *NewTD = ParseTypedefDecl(S, D, R, LastDeclarator);
Reid Spencer5f016e22007-07-11 17:01:13 +0000693 if (!NewTD) return 0;
694
695 // Handle attributes prior to checking for duplicates in MergeVarDecl
696 HandleDeclAttributes(NewTD, D.getDeclSpec().getAttributes(),
697 D.getAttributes());
Steve Naroffffce4d52008-01-09 23:34:55 +0000698 // Merge the decl with the existing one if appropriate. If the decl is
699 // in an outer scope, it isn't the same thing.
700 if (PrevDecl && S->isDeclScope(PrevDecl)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000701 NewTD = MergeTypeDefDecl(NewTD, PrevDecl);
702 if (NewTD == 0) return 0;
703 }
704 New = NewTD;
705 if (S->getParent() == 0) {
706 // C99 6.7.7p2: If a typedef name specifies a variably modified type
707 // then it shall have block scope.
Eli Friedman9db13972008-02-15 12:53:51 +0000708 if (NewTD->getUnderlyingType()->isVariablyModifiedType()) {
709 // FIXME: Diagnostic needs to be fixed.
710 Diag(D.getIdentifierLoc(), diag::err_typecheck_illegal_vla);
Steve Naroffd7444aa2007-08-31 17:20:07 +0000711 InvalidDecl = true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000712 }
713 }
Chris Lattner41af0932007-11-14 06:34:38 +0000714 } else if (R.getTypePtr()->isFunctionType()) {
Chris Lattner271f1a62007-09-27 15:15:46 +0000715 FunctionDecl::StorageClass SC = FunctionDecl::None;
Reid Spencer5f016e22007-07-11 17:01:13 +0000716 switch (D.getDeclSpec().getStorageClassSpec()) {
717 default: assert(0 && "Unknown storage class!");
718 case DeclSpec::SCS_auto:
719 case DeclSpec::SCS_register:
720 Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_func,
721 R.getAsString());
Steve Naroff5912a352007-08-28 20:14:24 +0000722 InvalidDecl = true;
723 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000724 case DeclSpec::SCS_unspecified: SC = FunctionDecl::None; break;
725 case DeclSpec::SCS_extern: SC = FunctionDecl::Extern; break;
726 case DeclSpec::SCS_static: SC = FunctionDecl::Static; break;
Steve Naroff7dd0bd42008-01-28 21:57:15 +0000727 case DeclSpec::SCS_private_extern: SC = FunctionDecl::PrivateExtern;break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000728 }
729
730 FunctionDecl *NewFD = new FunctionDecl(D.getIdentifierLoc(), II, R, SC,
Chris Lattner70c8b2e2007-08-26 04:02:13 +0000731 D.getDeclSpec().isInlineSpecified(),
Anders Carlssonf78915f2008-02-15 07:04:12 +0000732 LastDeclarator);
733 // FIXME: Handle attributes.
Nate Begeman1b4e2512007-11-13 22:14:47 +0000734 D.getDeclSpec().clearAttributes();
Reid Spencer5f016e22007-07-11 17:01:13 +0000735
Steve Naroffffce4d52008-01-09 23:34:55 +0000736 // Merge the decl with the existing one if appropriate. Since C functions
737 // are in a flat namespace, make sure we consider decls in outer scopes.
Reid Spencer5f016e22007-07-11 17:01:13 +0000738 if (PrevDecl) {
739 NewFD = MergeFunctionDecl(NewFD, PrevDecl);
740 if (NewFD == 0) return 0;
741 }
742 New = NewFD;
743 } else {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000744 if (R.getTypePtr()->isObjCInterfaceType()) {
Fariborz Jahaniane7f64cc2007-10-12 22:10:42 +0000745 Diag(D.getIdentifierLoc(), diag::err_statically_allocated_object,
746 D.getIdentifier()->getName());
747 InvalidDecl = true;
748 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000749
750 VarDecl *NewVD;
751 VarDecl::StorageClass SC;
752 switch (D.getDeclSpec().getStorageClassSpec()) {
753 default: assert(0 && "Unknown storage class!");
Steve Naroffd6326c62008-01-25 22:14:40 +0000754 case DeclSpec::SCS_unspecified: SC = VarDecl::None; break;
755 case DeclSpec::SCS_extern: SC = VarDecl::Extern; break;
756 case DeclSpec::SCS_static: SC = VarDecl::Static; break;
757 case DeclSpec::SCS_auto: SC = VarDecl::Auto; break;
758 case DeclSpec::SCS_register: SC = VarDecl::Register; break;
759 case DeclSpec::SCS_private_extern: SC = VarDecl::PrivateExtern; break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000760 }
761 if (S->getParent() == 0) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000762 // C99 6.9p2: The storage-class specifiers auto and register shall not
763 // appear in the declaration specifiers in an external declaration.
764 if (SC == VarDecl::Auto || SC == VarDecl::Register) {
765 Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_fscope,
766 R.getAsString());
Steve Naroff53a32342007-08-28 18:45:29 +0000767 InvalidDecl = true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000768 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000769 NewVD = new FileVarDecl(D.getIdentifierLoc(), II, R, SC, LastDeclarator);
Steve Narofff0090632007-09-02 02:04:30 +0000770 } else {
Reid Spencer5f016e22007-07-11 17:01:13 +0000771 NewVD = new BlockVarDecl(D.getIdentifierLoc(), II, R, SC, LastDeclarator);
Steve Naroff53a32342007-08-28 18:45:29 +0000772 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000773 // Handle attributes prior to checking for duplicates in MergeVarDecl
774 HandleDeclAttributes(NewVD, D.getDeclSpec().getAttributes(),
775 D.getAttributes());
776
Steve Naroffffce4d52008-01-09 23:34:55 +0000777 // Merge the decl with the existing one if appropriate. If the decl is
778 // in an outer scope, it isn't the same thing.
779 if (PrevDecl && S->isDeclScope(PrevDecl)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000780 NewVD = MergeVarDecl(NewVD, PrevDecl);
781 if (NewVD == 0) return 0;
782 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000783 New = NewVD;
784 }
785
786 // If this has an identifier, add it to the scope stack.
787 if (II) {
Steve Naroffc752d042007-09-13 18:10:37 +0000788 New->setNext(II->getFETokenInfo<ScopedDecl>());
Reid Spencer5f016e22007-07-11 17:01:13 +0000789 II->setFETokenInfo(New);
790 S->AddDecl(New);
791 }
Steve Naroff5912a352007-08-28 20:14:24 +0000792 // If any semantic error occurred, mark the decl as invalid.
793 if (D.getInvalidType() || InvalidDecl)
794 New->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +0000795
796 return New;
797}
798
Steve Naroffd0091aa2008-01-10 22:15:12 +0000799bool Sema::CheckForConstantInitializer(Expr *Init, QualType DclT) {
800 SourceLocation loc;
801 // FIXME: Remove the isReference check and handle assignment to a reference.
802 if (!DclT->isReferenceType() && !Init->isConstantExpr(Context, &loc)) {
803 assert(loc.isValid() && "isConstantExpr didn't return a loc!");
804 Diag(loc, diag::err_init_element_not_constant, Init->getSourceRange());
805 return true;
806 }
807 return false;
808}
809
Steve Naroffbb204692007-09-12 14:07:44 +0000810void Sema::AddInitializerToDecl(DeclTy *dcl, ExprTy *init) {
Steve Naroff410e3e22007-09-12 20:13:48 +0000811 Decl *RealDecl = static_cast<Decl *>(dcl);
Steve Naroffbb204692007-09-12 14:07:44 +0000812 Expr *Init = static_cast<Expr *>(init);
Chris Lattner9a11b9a2007-10-19 20:10:30 +0000813 assert(Init && "missing initializer");
Steve Naroffbb204692007-09-12 14:07:44 +0000814
Chris Lattner9a11b9a2007-10-19 20:10:30 +0000815 // If there is no declaration, there was an error parsing it. Just ignore
816 // the initializer.
817 if (RealDecl == 0) {
818 delete Init;
819 return;
820 }
Steve Naroffbb204692007-09-12 14:07:44 +0000821
Steve Naroff410e3e22007-09-12 20:13:48 +0000822 VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl);
823 if (!VDecl) {
Steve Naroff8e74c932007-09-13 21:41:19 +0000824 Diag(dyn_cast<ScopedDecl>(RealDecl)->getLocation(),
825 diag::err_illegal_initializer);
Steve Naroff410e3e22007-09-12 20:13:48 +0000826 RealDecl->setInvalidDecl();
827 return;
828 }
Steve Naroffbb204692007-09-12 14:07:44 +0000829 // Get the decls type and save a reference for later, since
Steve Naroffd0091aa2008-01-10 22:15:12 +0000830 // CheckInitializerTypes may change it.
Steve Naroff410e3e22007-09-12 20:13:48 +0000831 QualType DclT = VDecl->getType(), SavT = DclT;
832 if (BlockVarDecl *BVD = dyn_cast<BlockVarDecl>(VDecl)) {
Steve Naroffbb204692007-09-12 14:07:44 +0000833 VarDecl::StorageClass SC = BVD->getStorageClass();
834 if (SC == VarDecl::Extern) { // C99 6.7.8p5
Steve Naroff410e3e22007-09-12 20:13:48 +0000835 Diag(VDecl->getLocation(), diag::err_block_extern_cant_init);
Steve Naroffbb204692007-09-12 14:07:44 +0000836 BVD->setInvalidDecl();
837 } else if (!BVD->isInvalidDecl()) {
Steve Naroffa9960332008-01-25 00:51:06 +0000838 if (CheckInitializerTypes(Init, DclT))
839 BVD->setInvalidDecl();
Steve Naroffd0091aa2008-01-10 22:15:12 +0000840 if (SC == VarDecl::Static) // C99 6.7.8p4.
841 CheckForConstantInitializer(Init, DclT);
Steve Naroffbb204692007-09-12 14:07:44 +0000842 }
Steve Naroff410e3e22007-09-12 20:13:48 +0000843 } else if (FileVarDecl *FVD = dyn_cast<FileVarDecl>(VDecl)) {
Steve Naroffbb204692007-09-12 14:07:44 +0000844 if (FVD->getStorageClass() == VarDecl::Extern)
Steve Naroff410e3e22007-09-12 20:13:48 +0000845 Diag(VDecl->getLocation(), diag::warn_extern_init);
Steve Naroffbb204692007-09-12 14:07:44 +0000846 if (!FVD->isInvalidDecl())
Steve Naroffa9960332008-01-25 00:51:06 +0000847 if (CheckInitializerTypes(Init, DclT))
848 FVD->setInvalidDecl();
Steve Naroffd0091aa2008-01-10 22:15:12 +0000849
850 // C99 6.7.8p4. All file scoped initializers need to be constant.
851 CheckForConstantInitializer(Init, DclT);
Steve Naroffbb204692007-09-12 14:07:44 +0000852 }
853 // If the type changed, it means we had an incomplete type that was
854 // completed by the initializer. For example:
855 // int ary[] = { 1, 3, 5 };
856 // "ary" transitions from a VariableArrayType to a ConstantArrayType.
Christopher Lamb48b12392007-11-29 19:09:19 +0000857 if (!VDecl->isInvalidDecl() && (DclT != SavT)) {
Steve Naroff410e3e22007-09-12 20:13:48 +0000858 VDecl->setType(DclT);
Christopher Lamb48b12392007-11-29 19:09:19 +0000859 Init->setType(DclT);
860 }
Steve Naroffbb204692007-09-12 14:07:44 +0000861
862 // Attach the initializer to the decl.
Steve Naroff410e3e22007-09-12 20:13:48 +0000863 VDecl->setInit(Init);
Steve Naroffbb204692007-09-12 14:07:44 +0000864 return;
865}
866
Reid Spencer5f016e22007-07-11 17:01:13 +0000867/// The declarators are chained together backwards, reverse the list.
868Sema::DeclTy *Sema::FinalizeDeclaratorGroup(Scope *S, DeclTy *group) {
869 // Often we have single declarators, handle them quickly.
Steve Naroff94745042007-09-13 23:52:58 +0000870 Decl *GroupDecl = static_cast<Decl*>(group);
871 if (GroupDecl == 0)
Steve Naroffbb204692007-09-12 14:07:44 +0000872 return 0;
Steve Naroff94745042007-09-13 23:52:58 +0000873
874 ScopedDecl *Group = dyn_cast<ScopedDecl>(GroupDecl);
875 ScopedDecl *NewGroup = 0;
Steve Naroffbb204692007-09-12 14:07:44 +0000876 if (Group->getNextDeclarator() == 0)
Reid Spencer5f016e22007-07-11 17:01:13 +0000877 NewGroup = Group;
Steve Naroffbb204692007-09-12 14:07:44 +0000878 else { // reverse the list.
879 while (Group) {
Steve Naroff94745042007-09-13 23:52:58 +0000880 ScopedDecl *Next = Group->getNextDeclarator();
Steve Naroffbb204692007-09-12 14:07:44 +0000881 Group->setNextDeclarator(NewGroup);
882 NewGroup = Group;
883 Group = Next;
884 }
885 }
886 // Perform semantic analysis that depends on having fully processed both
887 // the declarator and initializer.
Steve Naroff94745042007-09-13 23:52:58 +0000888 for (ScopedDecl *ID = NewGroup; ID; ID = ID->getNextDeclarator()) {
Steve Naroffbb204692007-09-12 14:07:44 +0000889 VarDecl *IDecl = dyn_cast<VarDecl>(ID);
890 if (!IDecl)
891 continue;
892 FileVarDecl *FVD = dyn_cast<FileVarDecl>(IDecl);
893 BlockVarDecl *BVD = dyn_cast<BlockVarDecl>(IDecl);
894 QualType T = IDecl->getType();
895
896 // C99 6.7.5.2p2: If an identifier is declared to be an object with
897 // static storage duration, it shall not have a variable length array.
898 if ((FVD || BVD) && IDecl->getStorageClass() == VarDecl::Static) {
899 if (const VariableArrayType *VLA = T->getAsVariableArrayType()) {
900 if (VLA->getSizeExpr()) {
901 Diag(IDecl->getLocation(), diag::err_typecheck_illegal_vla);
902 IDecl->setInvalidDecl();
903 }
904 }
905 }
906 // Block scope. C99 6.7p7: If an identifier for an object is declared with
907 // no linkage (C99 6.2.2p6), the type for the object shall be complete...
908 if (BVD && IDecl->getStorageClass() != VarDecl::Extern) {
909 if (T->isIncompleteType()) {
Chris Lattner8b1be772007-12-02 07:50:03 +0000910 Diag(IDecl->getLocation(), diag::err_typecheck_decl_incomplete_type,
911 T.getAsString());
Steve Naroffbb204692007-09-12 14:07:44 +0000912 IDecl->setInvalidDecl();
913 }
914 }
915 // File scope. C99 6.9.2p2: A declaration of an identifier for and
916 // object that has file scope without an initializer, and without a
917 // storage-class specifier or with the storage-class specifier "static",
918 // constitutes a tentative definition. Note: A tentative definition with
919 // external linkage is valid (C99 6.2.2p5).
Steve Naroffd3cd1e52008-01-18 00:39:39 +0000920 if (FVD && !FVD->getInit() && (FVD->getStorageClass() == VarDecl::Static ||
921 FVD->getStorageClass() == VarDecl::None)) {
Eli Friedman9db13972008-02-15 12:53:51 +0000922 if (T->isIncompleteArrayType()) {
Steve Naroff9a75f8a2008-01-18 20:40:52 +0000923 // C99 6.9.2 (p2, p5): Implicit initialization causes an incomplete
924 // array to be completed. Don't issue a diagnostic.
925 } else if (T->isIncompleteType()) {
926 // C99 6.9.2p3: If the declaration of an identifier for an object is
927 // a tentative definition and has internal linkage (C99 6.2.2p3), the
928 // declared type shall not be an incomplete type.
Chris Lattner8b1be772007-12-02 07:50:03 +0000929 Diag(IDecl->getLocation(), diag::err_typecheck_decl_incomplete_type,
930 T.getAsString());
Steve Naroffbb204692007-09-12 14:07:44 +0000931 IDecl->setInvalidDecl();
932 }
933 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000934 }
935 return NewGroup;
936}
Steve Naroffe1223f72007-08-28 03:03:08 +0000937
938// Called from Sema::ParseStartOfFunctionDef().
Reid Spencer5f016e22007-07-11 17:01:13 +0000939ParmVarDecl *
Nate Begemanbff5f5c2007-11-13 21:49:48 +0000940Sema::ActOnParamDeclarator(struct DeclaratorChunk::ParamInfo &PI, Scope *FnScope)
Steve Naroff66499922007-11-12 03:44:46 +0000941{
Reid Spencer5f016e22007-07-11 17:01:13 +0000942 IdentifierInfo *II = PI.Ident;
943 // TODO: CHECK FOR CONFLICTS, multiple decls with same name in one scope.
944 // Can this happen for params? We already checked that they don't conflict
945 // among each other. Here they can only shadow globals, which is ok.
Chris Lattner8b9023b2007-07-13 03:05:23 +0000946 if (/*Decl *PrevDecl = */LookupScopedDecl(II, Decl::IDNS_Ordinary,
Reid Spencer5f016e22007-07-11 17:01:13 +0000947 PI.IdentLoc, FnScope)) {
948
949 }
950
951 // FIXME: Handle storage class (auto, register). No declarator?
952 // TODO: Chain to previous parameter with the prevdeclarator chain?
Steve Naroff6a9f3e32007-08-07 22:44:21 +0000953
954 // Perform the default function/array conversion (C99 6.7.5.3p[7,8]).
955 // Doing the promotion here has a win and a loss. The win is the type for
956 // both Decl's and DeclRefExpr's will match (a convenient invariant for the
957 // code generator). The loss is the orginal type isn't preserved. For example:
958 //
959 // void func(int parmvardecl[5]) { // convert "int [5]" to "int *"
960 // int blockvardecl[5];
961 // sizeof(parmvardecl); // size == 4
962 // sizeof(blockvardecl); // size == 20
963 // }
964 //
965 // For expressions, all implicit conversions are captured using the
966 // ImplicitCastExpr AST node (we have no such mechanism for Decl's).
967 //
968 // FIXME: If a source translation tool needs to see the original type, then
969 // we need to consider storing both types (in ParmVarDecl)...
970 //
971 QualType parmDeclType = QualType::getFromOpaquePtr(PI.TypeInfo);
Chris Lattner529bd022008-01-02 22:50:48 +0000972 if (const ArrayType *AT = parmDeclType->getAsArrayType()) {
973 // int x[restrict 4] -> int *restrict
Steve Naroff6a9f3e32007-08-07 22:44:21 +0000974 parmDeclType = Context.getPointerType(AT->getElementType());
Chris Lattner529bd022008-01-02 22:50:48 +0000975 parmDeclType = parmDeclType.getQualifiedType(AT->getIndexTypeQualifier());
976 } else if (parmDeclType->isFunctionType())
Steve Naroff6a9f3e32007-08-07 22:44:21 +0000977 parmDeclType = Context.getPointerType(parmDeclType);
978
979 ParmVarDecl *New = new ParmVarDecl(PI.IdentLoc, II, parmDeclType,
Anders Carlssonf78915f2008-02-15 07:04:12 +0000980 VarDecl::None, 0);
981 // FIXME: Handle attributes
982
Steve Naroff53a32342007-08-28 18:45:29 +0000983 if (PI.InvalidType)
984 New->setInvalidDecl();
985
Reid Spencer5f016e22007-07-11 17:01:13 +0000986 // If this has an identifier, add it to the scope stack.
987 if (II) {
Steve Naroffc752d042007-09-13 18:10:37 +0000988 New->setNext(II->getFETokenInfo<ScopedDecl>());
Reid Spencer5f016e22007-07-11 17:01:13 +0000989 II->setFETokenInfo(New);
990 FnScope->AddDecl(New);
991 }
992
993 return New;
994}
Fariborz Jahanian306d68f2007-11-08 23:49:49 +0000995
Chris Lattnerb652cea2007-10-09 17:14:05 +0000996Sema::DeclTy *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Declarator &D) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000997 assert(CurFunctionDecl == 0 && "Function parsing confused");
998 assert(D.getTypeObject(0).Kind == DeclaratorChunk::Function &&
999 "Not a function declarator!");
1000 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
1001
1002 // Verify 6.9.1p6: 'every identifier in the identifier list shall be declared'
1003 // for a K&R function.
1004 if (!FTI.hasPrototype) {
1005 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) {
1006 if (FTI.ArgInfo[i].TypeInfo == 0) {
1007 Diag(FTI.ArgInfo[i].IdentLoc, diag::ext_param_not_declared,
1008 FTI.ArgInfo[i].Ident->getName());
1009 // Implicitly declare the argument as type 'int' for lack of a better
1010 // type.
1011 FTI.ArgInfo[i].TypeInfo = Context.IntTy.getAsOpaquePtr();
1012 }
1013 }
1014
1015 // Since this is a function definition, act as though we have information
1016 // about the arguments.
1017 FTI.hasPrototype = true;
1018 } else {
1019 // FIXME: Diagnose arguments without names in C.
1020
1021 }
1022
1023 Scope *GlobalScope = FnBodyScope->getParent();
Steve Naroffadbbd0c2008-01-14 20:51:29 +00001024
1025 // See if this is a redefinition.
1026 ScopedDecl *PrevDcl = LookupScopedDecl(D.getIdentifier(), Decl::IDNS_Ordinary,
1027 D.getIdentifierLoc(), GlobalScope);
1028 if (FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(PrevDcl)) {
1029 if (FD->getBody()) {
1030 Diag(D.getIdentifierLoc(), diag::err_redefinition,
1031 D.getIdentifier()->getName());
1032 Diag(FD->getLocation(), diag::err_previous_definition);
1033 }
1034 }
Steve Narofffabbc342008-02-12 01:09:36 +00001035 Decl *decl = static_cast<Decl*>(ActOnDeclarator(GlobalScope, D, 0));
1036 FunctionDecl *FD = dyn_cast<FunctionDecl>(decl);
Steve Naroffadbbd0c2008-01-14 20:51:29 +00001037 assert(FD != 0 && "ActOnDeclarator() didn't return a FunctionDecl");
Reid Spencer5f016e22007-07-11 17:01:13 +00001038 CurFunctionDecl = FD;
1039
1040 // Create Decl objects for each parameter, adding them to the FunctionDecl.
1041 llvm::SmallVector<ParmVarDecl*, 16> Params;
1042
1043 // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs function that takes
1044 // no arguments, not a function that takes a single void argument.
1045 if (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
Chris Lattnerb751c282007-11-28 18:51:29 +00001046 !QualType::getFromOpaquePtr(FTI.ArgInfo[0].TypeInfo).getQualifiers() &&
1047 QualType::getFromOpaquePtr(FTI.ArgInfo[0].TypeInfo)->isVoidType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001048 // empty arg list, don't push any params.
1049 } else {
Steve Naroff66499922007-11-12 03:44:46 +00001050 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) {
Nate Begemanbff5f5c2007-11-13 21:49:48 +00001051 Params.push_back(ActOnParamDeclarator(D.getTypeObject(0).Fun.ArgInfo[i],
Steve Naroff66499922007-11-12 03:44:46 +00001052 FnBodyScope));
1053 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001054 }
1055
1056 FD->setParams(&Params[0], Params.size());
1057
1058 return FD;
1059}
1060
Steve Naroffd6d054d2007-11-11 23:20:51 +00001061Sema::DeclTy *Sema::ActOnFinishFunctionBody(DeclTy *D, StmtTy *Body) {
1062 Decl *dcl = static_cast<Decl *>(D);
1063 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(dcl)) {
1064 FD->setBody((Stmt*)Body);
1065 assert(FD == CurFunctionDecl && "Function parsing confused");
Steve Naroff4d832202007-12-13 18:18:56 +00001066 CurFunctionDecl = 0;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001067 } else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(dcl)) {
Steve Naroffd6d054d2007-11-11 23:20:51 +00001068 MD->setBody((Stmt*)Body);
Steve Naroff03300712007-11-12 13:56:41 +00001069 CurMethodDecl = 0;
Steve Naroff4d832202007-12-13 18:18:56 +00001070 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001071 // Verify and clean out per-function state.
1072
1073 // Check goto/label use.
1074 for (llvm::DenseMap<IdentifierInfo*, LabelStmt*>::iterator
1075 I = LabelMap.begin(), E = LabelMap.end(); I != E; ++I) {
1076 // Verify that we have no forward references left. If so, there was a goto
1077 // or address of a label taken, but no definition of it. Label fwd
1078 // definitions are indicated with a null substmt.
1079 if (I->second->getSubStmt() == 0) {
1080 LabelStmt *L = I->second;
1081 // Emit error.
1082 Diag(L->getIdentLoc(), diag::err_undeclared_label_use, L->getName());
1083
1084 // At this point, we have gotos that use the bogus label. Stitch it into
1085 // the function body so that they aren't leaked and that the AST is well
1086 // formed.
Chris Lattner0cbc2152008-01-25 00:01:10 +00001087 if (Body) {
1088 L->setSubStmt(new NullStmt(L->getIdentLoc()));
1089 cast<CompoundStmt>((Stmt*)Body)->push_back(L);
1090 } else {
1091 // The whole function wasn't parsed correctly, just delete this.
1092 delete L;
1093 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001094 }
1095 }
1096 LabelMap.clear();
1097
Steve Naroffd6d054d2007-11-11 23:20:51 +00001098 return D;
Fariborz Jahanian60fbca02007-11-10 16:31:34 +00001099}
1100
Reid Spencer5f016e22007-07-11 17:01:13 +00001101/// ImplicitlyDefineFunction - An undeclared identifier was used in a function
1102/// call, forming a call to an implicitly defined function (per C99 6.5.1p2).
Steve Naroff8c9f13e2007-09-16 16:16:00 +00001103ScopedDecl *Sema::ImplicitlyDefineFunction(SourceLocation Loc,
1104 IdentifierInfo &II, Scope *S) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001105 if (getLangOptions().C99) // Extension in C99.
1106 Diag(Loc, diag::ext_implicit_function_decl, II.getName());
1107 else // Legal in C90, but warn about it.
1108 Diag(Loc, diag::warn_implicit_function_decl, II.getName());
1109
1110 // FIXME: handle stuff like:
1111 // void foo() { extern float X(); }
1112 // void bar() { X(); } <-- implicit decl for X in another scope.
1113
1114 // Set a Declarator for the implicit definition: int foo();
1115 const char *Dummy;
1116 DeclSpec DS;
1117 bool Error = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, Dummy);
1118 Error = Error; // Silence warning.
1119 assert(!Error && "Error setting up implicit decl!");
1120 Declarator D(DS, Declarator::BlockContext);
1121 D.AddTypeInfo(DeclaratorChunk::getFunction(false, false, 0, 0, Loc));
1122 D.SetIdentifier(&II, Loc);
1123
1124 // Find translation-unit scope to insert this function into.
Chris Lattner31e05722007-08-26 06:24:45 +00001125 if (Scope *FnS = S->getFnParent())
1126 S = FnS->getParent(); // Skip all scopes in a function at once.
Reid Spencer5f016e22007-07-11 17:01:13 +00001127 while (S->getParent())
1128 S = S->getParent();
1129
Steve Naroff8c9f13e2007-09-16 16:16:00 +00001130 return dyn_cast<ScopedDecl>(static_cast<Decl*>(ActOnDeclarator(S, D, 0)));
Reid Spencer5f016e22007-07-11 17:01:13 +00001131}
1132
1133
Chris Lattner41af0932007-11-14 06:34:38 +00001134TypedefDecl *Sema::ParseTypedefDecl(Scope *S, Declarator &D, QualType T,
Steve Naroff94745042007-09-13 23:52:58 +00001135 ScopedDecl *LastDeclarator) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001136 assert(D.getIdentifier() && "Wrong callback for declspec without declarator");
Steve Naroff5912a352007-08-28 20:14:24 +00001137 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
Reid Spencer5f016e22007-07-11 17:01:13 +00001138
1139 // Scope manipulation handled by caller.
Steve Naroff5912a352007-08-28 20:14:24 +00001140 TypedefDecl *NewTD = new TypedefDecl(D.getIdentifierLoc(), D.getIdentifier(),
1141 T, LastDeclarator);
1142 if (D.getInvalidType())
1143 NewTD->setInvalidDecl();
1144 return NewTD;
Reid Spencer5f016e22007-07-11 17:01:13 +00001145}
1146
Steve Naroff08d92e42007-09-15 18:49:24 +00001147/// ActOnTag - This is invoked when we see 'struct foo' or 'struct {'. In the
Reid Spencer5f016e22007-07-11 17:01:13 +00001148/// former case, Name will be non-null. In the later case, Name will be null.
1149/// TagType indicates what kind of tag this is. TK indicates whether this is a
1150/// reference/declaration/definition of a tag.
Steve Naroff08d92e42007-09-15 18:49:24 +00001151Sema::DeclTy *Sema::ActOnTag(Scope *S, unsigned TagType, TagKind TK,
Reid Spencer5f016e22007-07-11 17:01:13 +00001152 SourceLocation KWLoc, IdentifierInfo *Name,
1153 SourceLocation NameLoc, AttributeList *Attr) {
1154 // If this is a use of an existing tag, it must have a name.
1155 assert((Name != 0 || TK == TK_Definition) &&
1156 "Nameless record must be a definition!");
1157
1158 Decl::Kind Kind;
1159 switch (TagType) {
1160 default: assert(0 && "Unknown tag type!");
1161 case DeclSpec::TST_struct: Kind = Decl::Struct; break;
1162 case DeclSpec::TST_union: Kind = Decl::Union; break;
1163//case DeclSpec::TST_class: Kind = Decl::Class; break;
1164 case DeclSpec::TST_enum: Kind = Decl::Enum; break;
1165 }
1166
1167 // If this is a named struct, check to see if there was a previous forward
1168 // declaration or definition.
1169 if (TagDecl *PrevDecl =
1170 dyn_cast_or_null<TagDecl>(LookupScopedDecl(Name, Decl::IDNS_Tag,
1171 NameLoc, S))) {
1172
1173 // If this is a use of a previous tag, or if the tag is already declared in
1174 // the same scope (so that the definition/declaration completes or
1175 // rementions the tag), reuse the decl.
1176 if (TK == TK_Reference || S->isDeclScope(PrevDecl)) {
1177 // Make sure that this wasn't declared as an enum and now used as a struct
1178 // or something similar.
1179 if (PrevDecl->getKind() != Kind) {
1180 Diag(KWLoc, diag::err_use_with_wrong_tag, Name->getName());
1181 Diag(PrevDecl->getLocation(), diag::err_previous_use);
1182 }
1183
1184 // If this is a use or a forward declaration, we're good.
1185 if (TK != TK_Definition)
1186 return PrevDecl;
1187
1188 // Diagnose attempts to redefine a tag.
1189 if (PrevDecl->isDefinition()) {
1190 Diag(NameLoc, diag::err_redefinition, Name->getName());
1191 Diag(PrevDecl->getLocation(), diag::err_previous_definition);
1192 // If this is a redefinition, recover by making this struct be
1193 // anonymous, which will make any later references get the previous
1194 // definition.
1195 Name = 0;
1196 } else {
1197 // Okay, this is definition of a previously declared or referenced tag.
1198 // Move the location of the decl to be the definition site.
1199 PrevDecl->setLocation(NameLoc);
1200 return PrevDecl;
1201 }
1202 }
1203 // If we get here, this is a definition of a new struct type in a nested
1204 // scope, e.g. "struct foo; void bar() { struct foo; }", just create a new
1205 // type.
1206 }
1207
1208 // If there is an identifier, use the location of the identifier as the
1209 // location of the decl, otherwise use the location of the struct/union
1210 // keyword.
1211 SourceLocation Loc = NameLoc.isValid() ? NameLoc : KWLoc;
1212
1213 // Otherwise, if this is the first time we've seen this tag, create the decl.
1214 TagDecl *New;
1215 switch (Kind) {
1216 default: assert(0 && "Unknown tag kind!");
1217 case Decl::Enum:
1218 // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
1219 // enum X { A, B, C } D; D should chain to X.
1220 New = new EnumDecl(Loc, Name, 0);
1221 // If this is an undefined enum, warn.
1222 if (TK != TK_Definition) Diag(Loc, diag::ext_forward_ref_enum);
1223 break;
1224 case Decl::Union:
1225 case Decl::Struct:
1226 case Decl::Class:
1227 // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
1228 // struct X { int A; } D; D should chain to X.
1229 New = new RecordDecl(Kind, Loc, Name, 0);
1230 break;
1231 }
1232
1233 // If this has an identifier, add it to the scope stack.
1234 if (Name) {
Chris Lattner31e05722007-08-26 06:24:45 +00001235 // The scope passed in may not be a decl scope. Zip up the scope tree until
1236 // we find one that is.
1237 while ((S->getFlags() & Scope::DeclScope) == 0)
1238 S = S->getParent();
1239
1240 // Add it to the decl chain.
Steve Naroffc752d042007-09-13 18:10:37 +00001241 New->setNext(Name->getFETokenInfo<ScopedDecl>());
Reid Spencer5f016e22007-07-11 17:01:13 +00001242 Name->setFETokenInfo(New);
1243 S->AddDecl(New);
1244 }
Chris Lattnere1e79852008-02-06 00:51:33 +00001245
Reid Spencer5f016e22007-07-11 17:01:13 +00001246 return New;
1247}
1248
Steve Naroff08d92e42007-09-15 18:49:24 +00001249/// ActOnField - Each field of a struct/union/class is passed into this in order
Reid Spencer5f016e22007-07-11 17:01:13 +00001250/// to create a FieldDecl object for it.
Steve Naroff08d92e42007-09-15 18:49:24 +00001251Sema::DeclTy *Sema::ActOnField(Scope *S, DeclTy *TagDecl,
Reid Spencer5f016e22007-07-11 17:01:13 +00001252 SourceLocation DeclStart,
1253 Declarator &D, ExprTy *BitfieldWidth) {
1254 IdentifierInfo *II = D.getIdentifier();
1255 Expr *BitWidth = (Expr*)BitfieldWidth;
Reid Spencer5f016e22007-07-11 17:01:13 +00001256 SourceLocation Loc = DeclStart;
1257 if (II) Loc = D.getIdentifierLoc();
1258
1259 // FIXME: Unnamed fields can be handled in various different ways, for
1260 // example, unnamed unions inject all members into the struct namespace!
1261
1262
1263 if (BitWidth) {
1264 // TODO: Validate.
1265 //printf("WARNING: BITFIELDS IGNORED!\n");
1266
1267 // 6.7.2.1p3
1268 // 6.7.2.1p4
1269
1270 } else {
1271 // Not a bitfield.
1272
1273 // validate II.
1274
1275 }
1276
1277 QualType T = GetTypeForDeclarator(D, S);
Steve Naroff5912a352007-08-28 20:14:24 +00001278 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
1279 bool InvalidDecl = false;
Steve Naroffd7444aa2007-08-31 17:20:07 +00001280
Reid Spencer5f016e22007-07-11 17:01:13 +00001281 // C99 6.7.2.1p8: A member of a structure or union may have any type other
1282 // than a variably modified type.
Eli Friedman9db13972008-02-15 12:53:51 +00001283 if (T->isVariablyModifiedType()) {
1284 // FIXME: This diagnostic needs work
1285 Diag(Loc, diag::err_typecheck_illegal_vla, Loc);
Steve Naroffd7444aa2007-08-31 17:20:07 +00001286 InvalidDecl = true;
Reid Spencer5f016e22007-07-11 17:01:13 +00001287 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001288 // FIXME: Chain fielddecls together.
Steve Naroff44739212007-09-11 21:17:26 +00001289 FieldDecl *NewFD;
1290
1291 if (isa<RecordDecl>(static_cast<Decl *>(TagDecl)))
Devang Patel54e62352007-11-01 16:29:56 +00001292 NewFD = new FieldDecl(Loc, II, T, BitWidth);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001293 else if (isa<ObjCInterfaceDecl>(static_cast<Decl *>(TagDecl)) ||
1294 isa<ObjCImplementationDecl>(static_cast<Decl *>(TagDecl)) ||
1295 isa<ObjCCategoryDecl>(static_cast<Decl *>(TagDecl)) ||
Steve Naroffddd600f2007-11-14 14:15:31 +00001296 // FIXME: ivars are currently used to model properties, and
1297 // properties can appear within a protocol.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001298 // See corresponding FIXME in DeclObjC.h:ObjCPropertyDecl.
1299 isa<ObjCProtocolDecl>(static_cast<Decl *>(TagDecl)))
1300 NewFD = new ObjCIvarDecl(Loc, II, T);
Steve Naroff44739212007-09-11 21:17:26 +00001301 else
Steve Naroff08d92e42007-09-15 18:49:24 +00001302 assert(0 && "Sema::ActOnField(): Unknown TagDecl");
Steve Naroff44739212007-09-11 21:17:26 +00001303
Steve Naroff5912a352007-08-28 20:14:24 +00001304 if (D.getInvalidType() || InvalidDecl)
1305 NewFD->setInvalidDecl();
1306 return NewFD;
Reid Spencer5f016e22007-07-11 17:01:13 +00001307}
1308
Fariborz Jahanian89204a12007-10-01 16:53:59 +00001309/// TranslateIvarVisibility - Translate visibility from a token ID to an
1310/// AST enum value.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001311static ObjCIvarDecl::AccessControl
Fariborz Jahanian89204a12007-10-01 16:53:59 +00001312TranslateIvarVisibility(tok::ObjCKeywordKind ivarVisibility) {
Steve Narofff13271f2007-09-14 23:09:53 +00001313 switch (ivarVisibility) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001314 case tok::objc_private: return ObjCIvarDecl::Private;
1315 case tok::objc_public: return ObjCIvarDecl::Public;
1316 case tok::objc_protected: return ObjCIvarDecl::Protected;
1317 case tok::objc_package: return ObjCIvarDecl::Package;
Fariborz Jahanian89204a12007-10-01 16:53:59 +00001318 default: assert(false && "Unknown visitibility kind");
Steve Narofff13271f2007-09-14 23:09:53 +00001319 }
1320}
1321
Fariborz Jahanian9d048ff2007-09-29 00:54:24 +00001322void Sema::ActOnFields(Scope* S,
Fariborz Jahanian3f5faf72007-10-04 00:45:27 +00001323 SourceLocation RecLoc, DeclTy *RecDecl,
Steve Naroff08d92e42007-09-15 18:49:24 +00001324 DeclTy **Fields, unsigned NumFields,
Steve Naroff60fccee2007-10-29 21:38:07 +00001325 SourceLocation LBrac, SourceLocation RBrac,
Steve Naroff08d92e42007-09-15 18:49:24 +00001326 tok::ObjCKeywordKind *visibility) {
Steve Naroff74216642007-09-14 22:20:54 +00001327 Decl *EnclosingDecl = static_cast<Decl*>(RecDecl);
1328 assert(EnclosingDecl && "missing record or interface decl");
1329 RecordDecl *Record = dyn_cast<RecordDecl>(EnclosingDecl);
1330
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001331 if (Record && Record->isDefinition()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001332 // Diagnose code like:
1333 // struct S { struct S {} X; };
1334 // We discover this when we complete the outer S. Reject and ignore the
1335 // outer S.
1336 Diag(Record->getLocation(), diag::err_nested_redefinition,
1337 Record->getKindName());
1338 Diag(RecLoc, diag::err_previous_definition);
Steve Naroff74216642007-09-14 22:20:54 +00001339 Record->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00001340 return;
1341 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001342 // Verify that all the fields are okay.
1343 unsigned NumNamedMembers = 0;
1344 llvm::SmallVector<FieldDecl*, 32> RecFields;
1345 llvm::SmallSet<const IdentifierInfo*, 32> FieldIDs;
Steve Naroff74216642007-09-14 22:20:54 +00001346
Reid Spencer5f016e22007-07-11 17:01:13 +00001347 for (unsigned i = 0; i != NumFields; ++i) {
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001348
Steve Naroff74216642007-09-14 22:20:54 +00001349 FieldDecl *FD = cast_or_null<FieldDecl>(static_cast<Decl*>(Fields[i]));
1350 assert(FD && "missing field decl");
1351
1352 // Remember all fields.
1353 RecFields.push_back(FD);
Reid Spencer5f016e22007-07-11 17:01:13 +00001354
1355 // Get the type for the field.
Chris Lattner02c642e2007-07-31 21:33:24 +00001356 Type *FDTy = FD->getType().getTypePtr();
Reid Spencer5f016e22007-07-11 17:01:13 +00001357
Steve Narofff13271f2007-09-14 23:09:53 +00001358 // If we have visibility info, make sure the AST is set accordingly.
1359 if (visibility)
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001360 cast<ObjCIvarDecl>(FD)->setAccessControl(
Fariborz Jahanian89204a12007-10-01 16:53:59 +00001361 TranslateIvarVisibility(visibility[i]));
Steve Narofff13271f2007-09-14 23:09:53 +00001362
Reid Spencer5f016e22007-07-11 17:01:13 +00001363 // C99 6.7.2.1p2 - A field may not be a function type.
Chris Lattner02c642e2007-07-31 21:33:24 +00001364 if (FDTy->isFunctionType()) {
Steve Naroff74216642007-09-14 22:20:54 +00001365 Diag(FD->getLocation(), diag::err_field_declared_as_function,
Reid Spencer5f016e22007-07-11 17:01:13 +00001366 FD->getName());
Steve Naroff74216642007-09-14 22:20:54 +00001367 FD->setInvalidDecl();
1368 EnclosingDecl->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00001369 continue;
1370 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001371 // C99 6.7.2.1p2 - A field may not be an incomplete type except...
1372 if (FDTy->isIncompleteType()) {
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001373 if (!Record) { // Incomplete ivar type is always an error.
Fariborz Jahanian3f5faf72007-10-04 00:45:27 +00001374 Diag(FD->getLocation(), diag::err_field_incomplete, FD->getName());
Steve Naroff74216642007-09-14 22:20:54 +00001375 FD->setInvalidDecl();
1376 EnclosingDecl->setInvalidDecl();
Fariborz Jahanian3f5faf72007-10-04 00:45:27 +00001377 continue;
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001378 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001379 if (i != NumFields-1 || // ... that the last member ...
1380 Record->getKind() != Decl::Struct || // ... of a structure ...
Chris Lattner02c642e2007-07-31 21:33:24 +00001381 !FDTy->isArrayType()) { //... may have incomplete array type.
Reid Spencer5f016e22007-07-11 17:01:13 +00001382 Diag(FD->getLocation(), diag::err_field_incomplete, FD->getName());
Steve Naroff74216642007-09-14 22:20:54 +00001383 FD->setInvalidDecl();
1384 EnclosingDecl->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00001385 continue;
1386 }
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001387 if (NumNamedMembers < 1) { //... must have more than named member ...
Reid Spencer5f016e22007-07-11 17:01:13 +00001388 Diag(FD->getLocation(), diag::err_flexible_array_empty_struct,
1389 FD->getName());
Steve Naroff74216642007-09-14 22:20:54 +00001390 FD->setInvalidDecl();
1391 EnclosingDecl->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00001392 continue;
1393 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001394 // Okay, we have a legal flexible array member at the end of the struct.
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001395 if (Record)
1396 Record->setHasFlexibleArrayMember(true);
Reid Spencer5f016e22007-07-11 17:01:13 +00001397 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001398 /// C99 6.7.2.1p2 - a struct ending in a flexible array member cannot be the
1399 /// field of another structure or the element of an array.
Chris Lattner02c642e2007-07-31 21:33:24 +00001400 if (const RecordType *FDTTy = FDTy->getAsRecordType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001401 if (FDTTy->getDecl()->hasFlexibleArrayMember()) {
1402 // If this is a member of a union, then entire union becomes "flexible".
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001403 if (Record && Record->getKind() == Decl::Union) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001404 Record->setHasFlexibleArrayMember(true);
1405 } else {
1406 // If this is a struct/class and this is not the last element, reject
1407 // it. Note that GCC supports variable sized arrays in the middle of
1408 // structures.
1409 if (i != NumFields-1) {
1410 Diag(FD->getLocation(), diag::err_variable_sized_type_in_struct,
1411 FD->getName());
Steve Naroff74216642007-09-14 22:20:54 +00001412 FD->setInvalidDecl();
1413 EnclosingDecl->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00001414 continue;
1415 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001416 // We support flexible arrays at the end of structs in other structs
1417 // as an extension.
1418 Diag(FD->getLocation(), diag::ext_flexible_array_in_struct,
1419 FD->getName());
Fariborz Jahanian3f5faf72007-10-04 00:45:27 +00001420 if (Record)
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001421 Record->setHasFlexibleArrayMember(true);
Reid Spencer5f016e22007-07-11 17:01:13 +00001422 }
1423 }
1424 }
Fariborz Jahaniane7f64cc2007-10-12 22:10:42 +00001425 /// A field cannot be an Objective-c object
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001426 if (FDTy->isObjCInterfaceType()) {
Fariborz Jahaniane7f64cc2007-10-12 22:10:42 +00001427 Diag(FD->getLocation(), diag::err_statically_allocated_object,
1428 FD->getName());
1429 FD->setInvalidDecl();
1430 EnclosingDecl->setInvalidDecl();
1431 continue;
1432 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001433 // Keep track of the number of named members.
1434 if (IdentifierInfo *II = FD->getIdentifier()) {
1435 // Detect duplicate member names.
1436 if (!FieldIDs.insert(II)) {
1437 Diag(FD->getLocation(), diag::err_duplicate_member, II->getName());
1438 // Find the previous decl.
1439 SourceLocation PrevLoc;
1440 for (unsigned i = 0, e = RecFields.size(); ; ++i) {
1441 assert(i != e && "Didn't find previous def!");
1442 if (RecFields[i]->getIdentifier() == II) {
1443 PrevLoc = RecFields[i]->getLocation();
1444 break;
1445 }
1446 }
1447 Diag(PrevLoc, diag::err_previous_definition);
Steve Naroff74216642007-09-14 22:20:54 +00001448 FD->setInvalidDecl();
1449 EnclosingDecl->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00001450 continue;
1451 }
1452 ++NumNamedMembers;
1453 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001454 }
1455
Reid Spencer5f016e22007-07-11 17:01:13 +00001456 // Okay, we successfully defined 'Record'.
Chris Lattnere1e79852008-02-06 00:51:33 +00001457 if (Record) {
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001458 Record->defineBody(&RecFields[0], RecFields.size());
Chris Lattnere1e79852008-02-06 00:51:33 +00001459 Consumer.HandleTagDeclDefinition(Record);
1460 } else {
Chris Lattnera91d3812008-02-05 22:40:55 +00001461 ObjCIvarDecl **ClsFields = reinterpret_cast<ObjCIvarDecl**>(&RecFields[0]);
1462 if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(EnclosingDecl))
1463 ID->addInstanceVariablesToClass(ClsFields, RecFields.size(), RBrac);
1464 else if (ObjCImplementationDecl *IMPDecl =
1465 dyn_cast<ObjCImplementationDecl>(EnclosingDecl)) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001466 assert(IMPDecl && "ActOnFields - missing ObjCImplementationDecl");
1467 IMPDecl->ObjCAddInstanceVariablesToClassImpl(ClsFields, RecFields.size());
Fariborz Jahanian3a3ca1b2007-10-31 18:48:14 +00001468 CheckImplementationIvars(IMPDecl, ClsFields, RecFields.size(), RBrac);
Fariborz Jahaniand0b90bf2007-09-26 18:27:25 +00001469 }
Fariborz Jahanianb04a0212007-09-14 21:08:27 +00001470 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001471}
1472
Steve Naroff08d92e42007-09-15 18:49:24 +00001473Sema::DeclTy *Sema::ActOnEnumConstant(Scope *S, DeclTy *theEnumDecl,
Reid Spencer5f016e22007-07-11 17:01:13 +00001474 DeclTy *lastEnumConst,
1475 SourceLocation IdLoc, IdentifierInfo *Id,
1476 SourceLocation EqualLoc, ExprTy *val) {
1477 theEnumDecl = theEnumDecl; // silence unused warning.
1478 EnumConstantDecl *LastEnumConst =
1479 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(lastEnumConst));
1480 Expr *Val = static_cast<Expr*>(val);
1481
Chris Lattner31e05722007-08-26 06:24:45 +00001482 // The scope passed in may not be a decl scope. Zip up the scope tree until
1483 // we find one that is.
1484 while ((S->getFlags() & Scope::DeclScope) == 0)
1485 S = S->getParent();
1486
Reid Spencer5f016e22007-07-11 17:01:13 +00001487 // Verify that there isn't already something declared with this name in this
1488 // scope.
Steve Naroff8e74c932007-09-13 21:41:19 +00001489 if (ScopedDecl *PrevDecl = LookupScopedDecl(Id, Decl::IDNS_Ordinary,
1490 IdLoc, S)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001491 if (S->isDeclScope(PrevDecl)) {
1492 if (isa<EnumConstantDecl>(PrevDecl))
1493 Diag(IdLoc, diag::err_redefinition_of_enumerator, Id->getName());
1494 else
1495 Diag(IdLoc, diag::err_redefinition, Id->getName());
1496 Diag(PrevDecl->getLocation(), diag::err_previous_definition);
1497 // FIXME: Don't leak memory: delete Val;
1498 return 0;
1499 }
1500 }
1501
1502 llvm::APSInt EnumVal(32);
1503 QualType EltTy;
1504 if (Val) {
Chris Lattner421a23d2007-08-27 21:16:18 +00001505 // Make sure to promote the operand type to int.
1506 UsualUnaryConversions(Val);
1507
Reid Spencer5f016e22007-07-11 17:01:13 +00001508 // C99 6.7.2.2p2: Make sure we have an integer constant expression.
1509 SourceLocation ExpLoc;
Chris Lattner590b6642007-07-15 23:26:56 +00001510 if (!Val->isIntegerConstantExpr(EnumVal, Context, &ExpLoc)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001511 Diag(ExpLoc, diag::err_enum_value_not_integer_constant_expr,
1512 Id->getName());
1513 // FIXME: Don't leak memory: delete Val;
Chris Lattnerb7416f92007-08-27 17:37:24 +00001514 Val = 0; // Just forget about it.
Chris Lattnere9ca8512007-08-29 16:03:41 +00001515 } else {
1516 EltTy = Val->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001517 }
Chris Lattnerb7416f92007-08-27 17:37:24 +00001518 }
1519
1520 if (!Val) {
1521 if (LastEnumConst) {
1522 // Assign the last value + 1.
1523 EnumVal = LastEnumConst->getInitVal();
1524 ++EnumVal;
Chris Lattner421a23d2007-08-27 21:16:18 +00001525
1526 // Check for overflow on increment.
1527 if (EnumVal < LastEnumConst->getInitVal())
1528 Diag(IdLoc, diag::warn_enum_value_overflow);
1529
Chris Lattnerb7416f92007-08-27 17:37:24 +00001530 EltTy = LastEnumConst->getType();
1531 } else {
1532 // First value, set to zero.
1533 EltTy = Context.IntTy;
Chris Lattner701e5eb2007-09-04 02:45:27 +00001534 EnumVal.zextOrTrunc(
1535 static_cast<uint32_t>(Context.getTypeSize(EltTy, IdLoc)));
Chris Lattnerb7416f92007-08-27 17:37:24 +00001536 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001537 }
1538
Reid Spencer5f016e22007-07-11 17:01:13 +00001539 EnumConstantDecl *New = new EnumConstantDecl(IdLoc, Id, EltTy, Val, EnumVal,
1540 LastEnumConst);
1541
1542 // Register this decl in the current scope stack.
Steve Naroffc752d042007-09-13 18:10:37 +00001543 New->setNext(Id->getFETokenInfo<ScopedDecl>());
Reid Spencer5f016e22007-07-11 17:01:13 +00001544 Id->setFETokenInfo(New);
1545 S->AddDecl(New);
1546 return New;
1547}
1548
Steve Naroff08d92e42007-09-15 18:49:24 +00001549void Sema::ActOnEnumBody(SourceLocation EnumLoc, DeclTy *EnumDeclX,
Reid Spencer5f016e22007-07-11 17:01:13 +00001550 DeclTy **Elements, unsigned NumElements) {
1551 EnumDecl *Enum = cast<EnumDecl>(static_cast<Decl*>(EnumDeclX));
1552 assert(!Enum->isDefinition() && "Enum redefinitions can't reach here");
1553
Chris Lattnere37f0be2007-08-28 05:10:31 +00001554 // TODO: If the result value doesn't fit in an int, it must be a long or long
1555 // long value. ISO C does not support this, but GCC does as an extension,
1556 // emit a warning.
Ted Kremenek9c728dc2007-12-12 22:39:36 +00001557 unsigned IntWidth =
1558 Context.Target.getIntWidth(Context.getFullLoc(Enum->getLocation()));
Chris Lattnere37f0be2007-08-28 05:10:31 +00001559
1560
Chris Lattnerac609682007-08-28 06:15:15 +00001561 // Verify that all the values are okay, compute the size of the values, and
1562 // reverse the list.
1563 unsigned NumNegativeBits = 0;
1564 unsigned NumPositiveBits = 0;
1565
1566 // Keep track of whether all elements have type int.
1567 bool AllElementsInt = true;
1568
Reid Spencer5f016e22007-07-11 17:01:13 +00001569 EnumConstantDecl *EltList = 0;
1570 for (unsigned i = 0; i != NumElements; ++i) {
1571 EnumConstantDecl *ECD =
1572 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(Elements[i]));
1573 if (!ECD) continue; // Already issued a diagnostic.
Chris Lattner211a30e2007-08-28 05:27:00 +00001574
1575 // If the enum value doesn't fit in an int, emit an extension warning.
1576 assert(ECD->getInitVal().getBitWidth() >= IntWidth &&
1577 "Should have promoted value to int");
1578 const llvm::APSInt &InitVal = ECD->getInitVal();
1579 if (InitVal.getBitWidth() > IntWidth) {
1580 llvm::APSInt V(InitVal);
1581 V.trunc(IntWidth);
1582 V.extend(InitVal.getBitWidth());
1583 if (V != InitVal)
1584 Diag(ECD->getLocation(), diag::ext_enum_value_not_int,
1585 InitVal.toString());
1586 }
Chris Lattnerac609682007-08-28 06:15:15 +00001587
1588 // Keep track of the size of positive and negative values.
1589 if (InitVal.isUnsigned() || !InitVal.isNegative())
Chris Lattner21dd8212008-01-14 21:47:29 +00001590 NumPositiveBits = std::max(NumPositiveBits,
1591 (unsigned)InitVal.getActiveBits());
Chris Lattnerac609682007-08-28 06:15:15 +00001592 else
Chris Lattner21dd8212008-01-14 21:47:29 +00001593 NumNegativeBits = std::max(NumNegativeBits,
1594 (unsigned)InitVal.getMinSignedBits());
Reid Spencer5f016e22007-07-11 17:01:13 +00001595
Chris Lattnerac609682007-08-28 06:15:15 +00001596 // Keep track of whether every enum element has type int (very commmon).
1597 if (AllElementsInt)
1598 AllElementsInt = ECD->getType() == Context.IntTy;
1599
Reid Spencer5f016e22007-07-11 17:01:13 +00001600 ECD->setNextDeclarator(EltList);
1601 EltList = ECD;
1602 }
1603
Chris Lattnerac609682007-08-28 06:15:15 +00001604 // Figure out the type that should be used for this enum.
1605 // FIXME: Support attribute(packed) on enums and -fshort-enums.
1606 QualType BestType;
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001607 unsigned BestWidth;
Chris Lattnerac609682007-08-28 06:15:15 +00001608
1609 if (NumNegativeBits) {
1610 // If there is a negative value, figure out the smallest integer type (of
1611 // int/long/longlong) that fits.
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001612 if (NumNegativeBits <= IntWidth && NumPositiveBits < IntWidth) {
Chris Lattnerac609682007-08-28 06:15:15 +00001613 BestType = Context.IntTy;
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001614 BestWidth = IntWidth;
1615 } else {
Ted Kremenek9c728dc2007-12-12 22:39:36 +00001616 BestWidth =
1617 Context.Target.getLongWidth(Context.getFullLoc(Enum->getLocation()));
1618
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001619 if (NumNegativeBits <= BestWidth && NumPositiveBits < BestWidth)
Chris Lattnerac609682007-08-28 06:15:15 +00001620 BestType = Context.LongTy;
1621 else {
Ted Kremenek9c728dc2007-12-12 22:39:36 +00001622 BestWidth = Context.Target.getLongLongWidth(
1623 Context.getFullLoc(Enum->getLocation()));
1624
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001625 if (NumNegativeBits > BestWidth || NumPositiveBits >= BestWidth)
Chris Lattnerac609682007-08-28 06:15:15 +00001626 Diag(Enum->getLocation(), diag::warn_enum_too_large);
1627 BestType = Context.LongLongTy;
1628 }
1629 }
1630 } else {
1631 // If there is no negative value, figure out which of uint, ulong, ulonglong
1632 // fits.
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001633 if (NumPositiveBits <= IntWidth) {
Chris Lattnerac609682007-08-28 06:15:15 +00001634 BestType = Context.UnsignedIntTy;
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001635 BestWidth = IntWidth;
1636 } else if (NumPositiveBits <=
Ted Kremenek9c728dc2007-12-12 22:39:36 +00001637 (BestWidth = Context.Target.getLongWidth(
1638 Context.getFullLoc(Enum->getLocation()))))
1639
Chris Lattnerac609682007-08-28 06:15:15 +00001640 BestType = Context.UnsignedLongTy;
1641 else {
Ted Kremenek9c728dc2007-12-12 22:39:36 +00001642 BestWidth =
1643 Context.Target.getLongLongWidth(Context.getFullLoc(Enum->getLocation()));
1644
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001645 assert(NumPositiveBits <= BestWidth &&
Chris Lattnerac609682007-08-28 06:15:15 +00001646 "How could an initializer get larger than ULL?");
1647 BestType = Context.UnsignedLongLongTy;
1648 }
1649 }
1650
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001651 // Loop over all of the enumerator constants, changing their types to match
1652 // the type of the enum if needed.
1653 for (unsigned i = 0; i != NumElements; ++i) {
1654 EnumConstantDecl *ECD =
1655 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(Elements[i]));
1656 if (!ECD) continue; // Already issued a diagnostic.
1657
1658 // Standard C says the enumerators have int type, but we allow, as an
1659 // extension, the enumerators to be larger than int size. If each
1660 // enumerator value fits in an int, type it as an int, otherwise type it the
1661 // same as the enumerator decl itself. This means that in "enum { X = 1U }"
1662 // that X has type 'int', not 'unsigned'.
1663 if (ECD->getType() == Context.IntTy)
1664 continue; // Already int type.
1665
1666 // Determine whether the value fits into an int.
1667 llvm::APSInt InitVal = ECD->getInitVal();
1668 bool FitsInInt;
1669 if (InitVal.isUnsigned() || !InitVal.isNegative())
1670 FitsInInt = InitVal.getActiveBits() < IntWidth;
1671 else
1672 FitsInInt = InitVal.getMinSignedBits() <= IntWidth;
1673
1674 // If it fits into an integer type, force it. Otherwise force it to match
1675 // the enum decl type.
1676 QualType NewTy;
1677 unsigned NewWidth;
1678 bool NewSign;
1679 if (FitsInInt) {
1680 NewTy = Context.IntTy;
1681 NewWidth = IntWidth;
1682 NewSign = true;
1683 } else if (ECD->getType() == BestType) {
1684 // Already the right type!
1685 continue;
1686 } else {
1687 NewTy = BestType;
1688 NewWidth = BestWidth;
1689 NewSign = BestType->isSignedIntegerType();
1690 }
1691
1692 // Adjust the APSInt value.
1693 InitVal.extOrTrunc(NewWidth);
1694 InitVal.setIsSigned(NewSign);
1695 ECD->setInitVal(InitVal);
1696
1697 // Adjust the Expr initializer and type.
1698 ECD->setInitExpr(new ImplicitCastExpr(NewTy, ECD->getInitExpr()));
1699 ECD->setType(NewTy);
1700 }
Chris Lattnerac609682007-08-28 06:15:15 +00001701
Chris Lattnere00b18c2007-08-28 18:24:31 +00001702 Enum->defineElements(EltList, BestType);
Chris Lattnere1e79852008-02-06 00:51:33 +00001703 Consumer.HandleTagDeclDefinition(Enum);
Reid Spencer5f016e22007-07-11 17:01:13 +00001704}
1705
Anders Carlssondfab6cb2008-02-08 00:33:21 +00001706Sema::DeclTy *Sema::ActOnFileScopeAsmDecl(SourceLocation Loc,
1707 ExprTy *expr) {
1708 StringLiteral *AsmString = cast<StringLiteral>((Expr*)expr);
1709
1710 return new FileScopeAsmDecl(Loc, AsmString);
1711}
1712
Chris Lattnerc6fdc342008-01-12 07:05:38 +00001713Sema::DeclTy* Sema::ActOnLinkageSpec(SourceLocation Loc,
1714 SourceLocation LBrace,
1715 SourceLocation RBrace,
1716 const char *Lang,
1717 unsigned StrSize,
1718 DeclTy *D) {
1719 LinkageSpecDecl::LanguageIDs Language;
1720 Decl *dcl = static_cast<Decl *>(D);
1721 if (strncmp(Lang, "\"C\"", StrSize) == 0)
1722 Language = LinkageSpecDecl::lang_c;
1723 else if (strncmp(Lang, "\"C++\"", StrSize) == 0)
1724 Language = LinkageSpecDecl::lang_cxx;
1725 else {
1726 Diag(Loc, diag::err_bad_language);
1727 return 0;
1728 }
1729
1730 // FIXME: Add all the various semantics of linkage specifications
1731 return new LinkageSpecDecl(Loc, Language, dcl);
1732}
1733
Reid Spencer5f016e22007-07-11 17:01:13 +00001734void Sema::HandleDeclAttribute(Decl *New, AttributeList *rawAttr) {
Anders Carlsson6ede0ff2007-12-19 06:16:30 +00001735 const char *attrName = rawAttr->getAttributeName()->getName();
1736 unsigned attrLen = rawAttr->getAttributeName()->getLength();
1737
Anders Carlssonabf5ad02007-12-19 17:43:24 +00001738 // Normalize the attribute name, __foo__ becomes foo.
1739 if (attrLen > 4 && attrName[0] == '_' && attrName[1] == '_' &&
1740 attrName[attrLen - 2] == '_' && attrName[attrLen - 1] == '_') {
1741 attrName += 2;
1742 attrLen -= 4;
1743 }
1744
1745 if (attrLen == 11 && !memcmp(attrName, "vector_size", 11)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001746 if (ValueDecl *vDecl = dyn_cast<ValueDecl>(New)) {
1747 QualType newType = HandleVectorTypeAttribute(vDecl->getType(), rawAttr);
1748 if (!newType.isNull()) // install the new vector type into the decl
1749 vDecl->setType(newType);
1750 }
1751 if (TypedefDecl *tDecl = dyn_cast<TypedefDecl>(New)) {
1752 QualType newType = HandleVectorTypeAttribute(tDecl->getUnderlyingType(),
1753 rawAttr);
1754 if (!newType.isNull()) // install the new vector type into the decl
1755 tDecl->setUnderlyingType(newType);
1756 }
Anders Carlssonabf5ad02007-12-19 17:43:24 +00001757 } else if (attrLen == 15 && !memcmp(attrName, "ocu_vector_type", 15)) {
Steve Naroffbea0b342007-07-29 16:33:31 +00001758 if (TypedefDecl *tDecl = dyn_cast<TypedefDecl>(New))
1759 HandleOCUVectorTypeAttribute(tDecl, rawAttr);
1760 else
Steve Naroff73322922007-07-18 18:00:27 +00001761 Diag(rawAttr->getAttributeLoc(),
1762 diag::err_typecheck_ocu_vector_not_typedef);
Christopher Lambebb97e92008-02-04 02:31:56 +00001763 } else if (attrLen == 13 && !memcmp(attrName, "address_space", 13)) {
1764 if (TypedefDecl *tDecl = dyn_cast<TypedefDecl>(New)) {
1765 QualType newType = HandleAddressSpaceTypeAttribute(
1766 tDecl->getUnderlyingType(),
1767 rawAttr);
1768 if (!newType.isNull()) // install the new addr spaced type into the decl
1769 tDecl->setUnderlyingType(newType);
1770 } else if (ValueDecl *vDecl = dyn_cast<ValueDecl>(New)) {
1771 QualType newType = HandleAddressSpaceTypeAttribute(vDecl->getType(),
1772 rawAttr);
1773 if (!newType.isNull()) // install the new addr spaced type into the decl
1774 vDecl->setType(newType);
1775 }
Anders Carlsson78aaae92007-12-19 07:19:40 +00001776 } else if (attrLen == 7 && !memcmp(attrName, "aligned", 7)) {
1777 HandleAlignedAttribute(New, rawAttr);
Steve Naroff73322922007-07-18 18:00:27 +00001778 }
Anders Carlsson78aaae92007-12-19 07:19:40 +00001779
Reid Spencer5f016e22007-07-11 17:01:13 +00001780 // FIXME: add other attributes...
1781}
1782
1783void Sema::HandleDeclAttributes(Decl *New, AttributeList *declspec_prefix,
1784 AttributeList *declarator_postfix) {
1785 while (declspec_prefix) {
1786 HandleDeclAttribute(New, declspec_prefix);
1787 declspec_prefix = declspec_prefix->getNext();
1788 }
1789 while (declarator_postfix) {
1790 HandleDeclAttribute(New, declarator_postfix);
1791 declarator_postfix = declarator_postfix->getNext();
1792 }
1793}
1794
Christopher Lambebb97e92008-02-04 02:31:56 +00001795QualType Sema::HandleAddressSpaceTypeAttribute(QualType curType,
1796 AttributeList *rawAttr) {
1797 // check the attribute arugments.
1798 if (rawAttr->getNumArgs() != 1) {
1799 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_wrong_number_arguments,
1800 std::string("1"));
1801 return QualType();
1802 }
1803 Expr *addrSpaceExpr = static_cast<Expr *>(rawAttr->getArg(0));
1804 llvm::APSInt addrSpace(32);
1805 if (!addrSpaceExpr->isIntegerConstantExpr(addrSpace, Context)) {
1806 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_address_space_not_int,
1807 addrSpaceExpr->getSourceRange());
1808 return QualType();
1809 }
1810 unsigned addressSpace = static_cast<unsigned>(addrSpace.getZExtValue());
1811
1812 // Zero is the default memory space, so no qualification is needed
1813 if (addressSpace == 0)
1814 return curType;
1815
1816 // TODO: Should we convert contained types of address space
1817 // qualified types here or or where they directly participate in conversions
1818 // (i.e. elsewhere)
1819
1820 return Context.getASQualType(curType, addressSpace);
1821}
1822
Steve Naroffbea0b342007-07-29 16:33:31 +00001823void Sema::HandleOCUVectorTypeAttribute(TypedefDecl *tDecl,
1824 AttributeList *rawAttr) {
1825 QualType curType = tDecl->getUnderlyingType();
Anders Carlsson78aaae92007-12-19 07:19:40 +00001826 // check the attribute arguments.
Steve Naroff73322922007-07-18 18:00:27 +00001827 if (rawAttr->getNumArgs() != 1) {
1828 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_wrong_number_arguments,
1829 std::string("1"));
Steve Naroffbea0b342007-07-29 16:33:31 +00001830 return;
Steve Naroff73322922007-07-18 18:00:27 +00001831 }
1832 Expr *sizeExpr = static_cast<Expr *>(rawAttr->getArg(0));
1833 llvm::APSInt vecSize(32);
1834 if (!sizeExpr->isIntegerConstantExpr(vecSize, Context)) {
1835 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_vector_size_not_int,
1836 sizeExpr->getSourceRange());
Steve Naroffbea0b342007-07-29 16:33:31 +00001837 return;
Steve Naroff73322922007-07-18 18:00:27 +00001838 }
1839 // unlike gcc's vector_size attribute, we do not allow vectors to be defined
1840 // in conjunction with complex types (pointers, arrays, functions, etc.).
1841 Type *canonType = curType.getCanonicalType().getTypePtr();
1842 if (!(canonType->isIntegerType() || canonType->isRealFloatingType())) {
1843 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_invalid_vector_type,
1844 curType.getCanonicalType().getAsString());
Steve Naroffbea0b342007-07-29 16:33:31 +00001845 return;
Steve Naroff73322922007-07-18 18:00:27 +00001846 }
1847 // unlike gcc's vector_size attribute, the size is specified as the
1848 // number of elements, not the number of bytes.
Chris Lattner701e5eb2007-09-04 02:45:27 +00001849 unsigned vectorSize = static_cast<unsigned>(vecSize.getZExtValue());
Steve Naroff73322922007-07-18 18:00:27 +00001850
1851 if (vectorSize == 0) {
1852 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_zero_size,
1853 sizeExpr->getSourceRange());
Steve Naroffbea0b342007-07-29 16:33:31 +00001854 return;
Steve Naroff73322922007-07-18 18:00:27 +00001855 }
Steve Naroffbea0b342007-07-29 16:33:31 +00001856 // Instantiate/Install the vector type, the number of elements is > 0.
1857 tDecl->setUnderlyingType(Context.getOCUVectorType(curType, vectorSize));
1858 // Remember this typedef decl, we will need it later for diagnostics.
1859 OCUVectorDecls.push_back(tDecl);
Steve Naroff73322922007-07-18 18:00:27 +00001860}
1861
Reid Spencer5f016e22007-07-11 17:01:13 +00001862QualType Sema::HandleVectorTypeAttribute(QualType curType,
Chris Lattnera7674d82007-07-13 22:13:22 +00001863 AttributeList *rawAttr) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001864 // check the attribute arugments.
1865 if (rawAttr->getNumArgs() != 1) {
1866 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_wrong_number_arguments,
1867 std::string("1"));
1868 return QualType();
1869 }
1870 Expr *sizeExpr = static_cast<Expr *>(rawAttr->getArg(0));
1871 llvm::APSInt vecSize(32);
Chris Lattner590b6642007-07-15 23:26:56 +00001872 if (!sizeExpr->isIntegerConstantExpr(vecSize, Context)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001873 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_vector_size_not_int,
1874 sizeExpr->getSourceRange());
1875 return QualType();
1876 }
1877 // navigate to the base type - we need to provide for vector pointers,
1878 // vector arrays, and functions returning vectors.
1879 Type *canonType = curType.getCanonicalType().getTypePtr();
1880
Steve Naroff73322922007-07-18 18:00:27 +00001881 if (canonType->isPointerType() || canonType->isArrayType() ||
1882 canonType->isFunctionType()) {
Chris Lattner54b263b2007-12-19 05:38:06 +00001883 assert(0 && "HandleVector(): Complex type construction unimplemented");
Steve Naroff73322922007-07-18 18:00:27 +00001884 /* FIXME: rebuild the type from the inside out, vectorizing the inner type.
1885 do {
1886 if (PointerType *PT = dyn_cast<PointerType>(canonType))
1887 canonType = PT->getPointeeType().getTypePtr();
1888 else if (ArrayType *AT = dyn_cast<ArrayType>(canonType))
1889 canonType = AT->getElementType().getTypePtr();
1890 else if (FunctionType *FT = dyn_cast<FunctionType>(canonType))
1891 canonType = FT->getResultType().getTypePtr();
1892 } while (canonType->isPointerType() || canonType->isArrayType() ||
1893 canonType->isFunctionType());
1894 */
Reid Spencer5f016e22007-07-11 17:01:13 +00001895 }
1896 // the base type must be integer or float.
1897 if (!(canonType->isIntegerType() || canonType->isRealFloatingType())) {
1898 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_invalid_vector_type,
1899 curType.getCanonicalType().getAsString());
1900 return QualType();
1901 }
Chris Lattner701e5eb2007-09-04 02:45:27 +00001902 unsigned typeSize = static_cast<unsigned>(
1903 Context.getTypeSize(curType, rawAttr->getAttributeLoc()));
Reid Spencer5f016e22007-07-11 17:01:13 +00001904 // vecSize is specified in bytes - convert to bits.
Chris Lattner701e5eb2007-09-04 02:45:27 +00001905 unsigned vectorSize = static_cast<unsigned>(vecSize.getZExtValue() * 8);
Reid Spencer5f016e22007-07-11 17:01:13 +00001906
1907 // the vector size needs to be an integral multiple of the type size.
1908 if (vectorSize % typeSize) {
1909 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_invalid_size,
1910 sizeExpr->getSourceRange());
1911 return QualType();
1912 }
1913 if (vectorSize == 0) {
1914 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_zero_size,
1915 sizeExpr->getSourceRange());
1916 return QualType();
1917 }
1918 // Since OpenCU requires 3 element vectors (OpenCU 5.1.2), we don't restrict
1919 // the number of elements to be a power of two (unlike GCC).
1920 // Instantiate the vector type, the number of elements is > 0.
Steve Naroff73322922007-07-18 18:00:27 +00001921 return Context.getVectorType(curType, vectorSize/typeSize);
Reid Spencer5f016e22007-07-11 17:01:13 +00001922}
1923
Anders Carlsson78aaae92007-12-19 07:19:40 +00001924void Sema::HandleAlignedAttribute(Decl *d, AttributeList *rawAttr)
1925{
1926 // check the attribute arguments.
Eli Friedman4ca08672008-01-30 17:38:42 +00001927 if (rawAttr->getNumArgs() > 1) {
Anders Carlsson78aaae92007-12-19 07:19:40 +00001928 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_wrong_number_arguments,
1929 std::string("1"));
1930 return;
1931 }
Eli Friedman4ca08672008-01-30 17:38:42 +00001932
Devang Patel6c751c22008-01-30 18:00:07 +00001933 // TODO: We probably need to actually do something with aligned attribute.
Eli Friedman4ca08672008-01-30 17:38:42 +00001934 if (rawAttr->getNumArgs() == 0)
1935 return;
1936
Anders Carlsson78aaae92007-12-19 07:19:40 +00001937 Expr *alignmentExpr = static_cast<Expr *>(rawAttr->getArg(0));
1938 llvm::APSInt alignment(32);
1939 if (!alignmentExpr->isIntegerConstantExpr(alignment, Context)) {
1940 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_vector_size_not_int,
1941 alignmentExpr->getSourceRange());
1942 return;
1943 }
1944}