blob: 61de36faf69d5547691b405a1db928bd2102e520 [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) {
Eli Friedmanc5773c42008-02-15 18:16:39 +0000415 if (const IncompleteArrayType *IAT = DeclT->getAsIncompleteArrayType()) {
Steve Naroffa49e1fa2008-01-22 00:55:40 +0000416 // 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).
Eli Friedmanc5773c42008-02-15 18:16:39 +0000421 DeclT = Context.getConstantArrayType(IAT->getElementType(), ConstVal,
Steve Naroffa49e1fa2008-01-22 00:55:40 +0000422 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;
Eli Friedmanc5773c42008-02-15 18:16:39 +0000567 if (DeclType->isIncompleteArrayType()) {
Steve Naroffa9960332008-01-25 00:51:06 +0000568 // FIXME: use a proper constant
569 maxElements = 0x7FFFFFFF;
Eli Friedmanc5773c42008-02-15 18:16:39 +0000570 } else if (const VariableArrayType *VAT = DeclType->getAsVariableArrayType()) {
Steve Naroffa9960332008-01-25 00:51:06 +0000571 // Check for VLAs; in standard C it would be possible to check this
572 // earlier, but I don't know where clang accepts VLAs (gcc accepts
573 // them in all sorts of strange places).
Eli Friedmanc5773c42008-02-15 18:16:39 +0000574 Diag(VAT->getSizeExpr()->getLocStart(),
575 diag::err_variable_object_no_init,
576 VAT->getSizeExpr()->getSourceRange());
577 hadError = true;
578 maxElements = 0x7FFFFFFF;
Steve Naroffa9960332008-01-25 00:51:06 +0000579 } else {
580 const ConstantArrayType *CAT = DeclType->getAsConstantArrayType();
581 maxElements = static_cast<int>(CAT->getSize().getZExtValue());
582 }
583 QualType elementType = DeclType->getAsArrayType()->getElementType();
584 int numElements = 0;
585 for (int i = 0; i < maxElements; ++i, ++numElements) {
586 // Don't attempt to go past the end of the init list
587 if (startIndex >= IList->getNumInits())
588 break;
589 Expr* expr = IList->getInit(startIndex);
590 if (InitListExpr *SubInitList = dyn_cast<InitListExpr>(expr)) {
591 unsigned newIndex = 0;
592 hadError |= CheckInitializerListTypes(SubInitList, elementType,
593 true, newIndex);
594 ++startIndex;
595 } else {
596 hadError |= CheckInitializerListTypes(IList, elementType,
597 false, startIndex);
598 }
599 }
Eli Friedman9db13972008-02-15 12:53:51 +0000600 if (DeclType->isIncompleteArrayType()) {
Steve Naroffa9960332008-01-25 00:51:06 +0000601 // If this is an incomplete array type, the actual type needs to
602 // be calculated here
603 if (numElements == 0) {
604 // Sizing an array implicitly to zero is not allowed
605 // (It could in theory be allowed, but it doesn't really matter.)
606 Diag(IList->getLocStart(),
607 diag::err_at_least_one_initializer_needed_to_size_array);
608 hadError = true;
609 } else {
610 llvm::APSInt ConstVal(32);
611 ConstVal = numElements;
612 DeclType = Context.getConstantArrayType(elementType, ConstVal,
613 ArrayType::Normal, 0);
614 }
615 }
616 } else {
617 assert(0 && "Aggregate that isn't a function or array?!");
618 }
619 } else {
620 // In C, all types are either scalars or aggregates, but
621 // additional handling is needed here for C++ (and possibly others?).
622 assert(0 && "Unsupported initializer type");
623 }
624
625 // If this init list is a base list, we set the type; an initializer doesn't
626 // fundamentally have a type, but this makes the ASTs a bit easier to read
627 if (topLevel)
628 IList->setType(DeclType);
629
630 if (topLevel && startIndex < IList->getNumInits()) {
631 // We have leftover initializers; warn
632 Diag(IList->getInit(startIndex)->getLocStart(),
633 diag::warn_excess_initializers,
634 IList->getInit(startIndex)->getSourceRange());
635 }
636 return hadError;
637}
638
639bool Sema::CheckInitializerTypes(Expr *&Init, QualType &DeclType) {
Steve Naroffca107302008-01-21 23:53:58 +0000640 // C99 6.7.8p3: The type of the entity to be initialized shall be an array
641 // of unknown size ("[]") or an object type that is not a variable array type.
Eli Friedmanc5773c42008-02-15 18:16:39 +0000642 if (const VariableArrayType *VAT = DeclType->getAsVariableArrayType())
Steve Naroffca107302008-01-21 23:53:58 +0000643 return Diag(VAT->getSizeExpr()->getLocStart(),
644 diag::err_variable_object_no_init,
645 VAT->getSizeExpr()->getSourceRange());
646
Steve Naroff2fdc3742007-12-10 22:44:33 +0000647 InitListExpr *InitList = dyn_cast<InitListExpr>(Init);
648 if (!InitList) {
Steve Naroffa49e1fa2008-01-22 00:55:40 +0000649 // FIXME: Handle wide strings
650 if (StringLiteral *strLiteral = IsStringLiteralInit(Init, DeclType))
651 return CheckStringLiteralInit(strLiteral, DeclType);
Eli Friedmana312ce22008-02-08 00:48:24 +0000652
653 if (DeclType->isArrayType())
654 return Diag(Init->getLocStart(),
655 diag::err_array_init_list_required,
656 Init->getSourceRange());
657
Steve Naroffd0091aa2008-01-10 22:15:12 +0000658 return CheckSingleInitializer(Init, DeclType);
Steve Naroff2fdc3742007-12-10 22:44:33 +0000659 }
Steve Naroffa9960332008-01-25 00:51:06 +0000660 unsigned newIndex = 0;
661 return CheckInitializerListTypes(InitList, DeclType, true, newIndex);
Steve Narofff0090632007-09-02 02:04:30 +0000662}
663
Fariborz Jahanian306d68f2007-11-08 23:49:49 +0000664Sema::DeclTy *
Steve Naroff08d92e42007-09-15 18:49:24 +0000665Sema::ActOnDeclarator(Scope *S, Declarator &D, DeclTy *lastDecl) {
Steve Naroff94745042007-09-13 23:52:58 +0000666 ScopedDecl *LastDeclarator = dyn_cast_or_null<ScopedDecl>((Decl *)lastDecl);
Reid Spencer5f016e22007-07-11 17:01:13 +0000667 IdentifierInfo *II = D.getIdentifier();
668
Chris Lattnere80a59c2007-07-25 00:24:17 +0000669 // All of these full declarators require an identifier. If it doesn't have
670 // one, the ParsedFreeStandingDeclSpec action should be used.
671 if (II == 0) {
Chris Lattner311ff022007-10-16 22:36:42 +0000672 Diag(D.getDeclSpec().getSourceRange().getBegin(),
Chris Lattner98e08632007-08-28 06:17:15 +0000673 diag::err_declarator_need_ident,
Chris Lattnere80a59c2007-07-25 00:24:17 +0000674 D.getDeclSpec().getSourceRange(), D.getSourceRange());
675 return 0;
676 }
677
Chris Lattner31e05722007-08-26 06:24:45 +0000678 // The scope passed in may not be a decl scope. Zip up the scope tree until
679 // we find one that is.
680 while ((S->getFlags() & Scope::DeclScope) == 0)
681 S = S->getParent();
682
Reid Spencer5f016e22007-07-11 17:01:13 +0000683 // See if this is a redefinition of a variable in the same scope.
Steve Naroffc752d042007-09-13 18:10:37 +0000684 ScopedDecl *PrevDecl = LookupScopedDecl(II, Decl::IDNS_Ordinary,
685 D.getIdentifierLoc(), S);
Steve Naroffc752d042007-09-13 18:10:37 +0000686 ScopedDecl *New;
Steve Naroff5912a352007-08-28 20:14:24 +0000687 bool InvalidDecl = false;
688
Chris Lattner41af0932007-11-14 06:34:38 +0000689 QualType R = GetTypeForDeclarator(D, S);
690 assert(!R.isNull() && "GetTypeForDeclarator() returned null type");
691
Reid Spencer5f016e22007-07-11 17:01:13 +0000692 if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef) {
Chris Lattner41af0932007-11-14 06:34:38 +0000693 TypedefDecl *NewTD = ParseTypedefDecl(S, D, R, LastDeclarator);
Reid Spencer5f016e22007-07-11 17:01:13 +0000694 if (!NewTD) return 0;
695
696 // Handle attributes prior to checking for duplicates in MergeVarDecl
697 HandleDeclAttributes(NewTD, D.getDeclSpec().getAttributes(),
698 D.getAttributes());
Steve Naroffffce4d52008-01-09 23:34:55 +0000699 // Merge the decl with the existing one if appropriate. If the decl is
700 // in an outer scope, it isn't the same thing.
701 if (PrevDecl && S->isDeclScope(PrevDecl)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000702 NewTD = MergeTypeDefDecl(NewTD, PrevDecl);
703 if (NewTD == 0) return 0;
704 }
705 New = NewTD;
706 if (S->getParent() == 0) {
707 // C99 6.7.7p2: If a typedef name specifies a variably modified type
708 // then it shall have block scope.
Eli Friedman9db13972008-02-15 12:53:51 +0000709 if (NewTD->getUnderlyingType()->isVariablyModifiedType()) {
710 // FIXME: Diagnostic needs to be fixed.
711 Diag(D.getIdentifierLoc(), diag::err_typecheck_illegal_vla);
Steve Naroffd7444aa2007-08-31 17:20:07 +0000712 InvalidDecl = true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000713 }
714 }
Chris Lattner41af0932007-11-14 06:34:38 +0000715 } else if (R.getTypePtr()->isFunctionType()) {
Chris Lattner271f1a62007-09-27 15:15:46 +0000716 FunctionDecl::StorageClass SC = FunctionDecl::None;
Reid Spencer5f016e22007-07-11 17:01:13 +0000717 switch (D.getDeclSpec().getStorageClassSpec()) {
718 default: assert(0 && "Unknown storage class!");
719 case DeclSpec::SCS_auto:
720 case DeclSpec::SCS_register:
721 Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_func,
722 R.getAsString());
Steve Naroff5912a352007-08-28 20:14:24 +0000723 InvalidDecl = true;
724 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000725 case DeclSpec::SCS_unspecified: SC = FunctionDecl::None; break;
726 case DeclSpec::SCS_extern: SC = FunctionDecl::Extern; break;
727 case DeclSpec::SCS_static: SC = FunctionDecl::Static; break;
Steve Naroff7dd0bd42008-01-28 21:57:15 +0000728 case DeclSpec::SCS_private_extern: SC = FunctionDecl::PrivateExtern;break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000729 }
730
731 FunctionDecl *NewFD = new FunctionDecl(D.getIdentifierLoc(), II, R, SC,
Chris Lattner70c8b2e2007-08-26 04:02:13 +0000732 D.getDeclSpec().isInlineSpecified(),
Anders Carlssonf78915f2008-02-15 07:04:12 +0000733 LastDeclarator);
734 // FIXME: Handle attributes.
Nate Begeman1b4e2512007-11-13 22:14:47 +0000735 D.getDeclSpec().clearAttributes();
Reid Spencer5f016e22007-07-11 17:01:13 +0000736
Steve Naroffffce4d52008-01-09 23:34:55 +0000737 // Merge the decl with the existing one if appropriate. Since C functions
738 // are in a flat namespace, make sure we consider decls in outer scopes.
Reid Spencer5f016e22007-07-11 17:01:13 +0000739 if (PrevDecl) {
740 NewFD = MergeFunctionDecl(NewFD, PrevDecl);
741 if (NewFD == 0) return 0;
742 }
743 New = NewFD;
744 } else {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000745 if (R.getTypePtr()->isObjCInterfaceType()) {
Fariborz Jahaniane7f64cc2007-10-12 22:10:42 +0000746 Diag(D.getIdentifierLoc(), diag::err_statically_allocated_object,
747 D.getIdentifier()->getName());
748 InvalidDecl = true;
749 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000750
751 VarDecl *NewVD;
752 VarDecl::StorageClass SC;
753 switch (D.getDeclSpec().getStorageClassSpec()) {
754 default: assert(0 && "Unknown storage class!");
Steve Naroffd6326c62008-01-25 22:14:40 +0000755 case DeclSpec::SCS_unspecified: SC = VarDecl::None; break;
756 case DeclSpec::SCS_extern: SC = VarDecl::Extern; break;
757 case DeclSpec::SCS_static: SC = VarDecl::Static; break;
758 case DeclSpec::SCS_auto: SC = VarDecl::Auto; break;
759 case DeclSpec::SCS_register: SC = VarDecl::Register; break;
760 case DeclSpec::SCS_private_extern: SC = VarDecl::PrivateExtern; break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000761 }
762 if (S->getParent() == 0) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000763 // C99 6.9p2: The storage-class specifiers auto and register shall not
764 // appear in the declaration specifiers in an external declaration.
765 if (SC == VarDecl::Auto || SC == VarDecl::Register) {
766 Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_fscope,
767 R.getAsString());
Steve Naroff53a32342007-08-28 18:45:29 +0000768 InvalidDecl = true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000769 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000770 NewVD = new FileVarDecl(D.getIdentifierLoc(), II, R, SC, LastDeclarator);
Steve Narofff0090632007-09-02 02:04:30 +0000771 } else {
Reid Spencer5f016e22007-07-11 17:01:13 +0000772 NewVD = new BlockVarDecl(D.getIdentifierLoc(), II, R, SC, LastDeclarator);
Steve Naroff53a32342007-08-28 18:45:29 +0000773 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000774 // Handle attributes prior to checking for duplicates in MergeVarDecl
775 HandleDeclAttributes(NewVD, D.getDeclSpec().getAttributes(),
776 D.getAttributes());
777
Steve Naroffffce4d52008-01-09 23:34:55 +0000778 // Merge the decl with the existing one if appropriate. If the decl is
779 // in an outer scope, it isn't the same thing.
780 if (PrevDecl && S->isDeclScope(PrevDecl)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000781 NewVD = MergeVarDecl(NewVD, PrevDecl);
782 if (NewVD == 0) return 0;
783 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000784 New = NewVD;
785 }
786
787 // If this has an identifier, add it to the scope stack.
788 if (II) {
Steve Naroffc752d042007-09-13 18:10:37 +0000789 New->setNext(II->getFETokenInfo<ScopedDecl>());
Reid Spencer5f016e22007-07-11 17:01:13 +0000790 II->setFETokenInfo(New);
791 S->AddDecl(New);
792 }
Steve Naroff5912a352007-08-28 20:14:24 +0000793 // If any semantic error occurred, mark the decl as invalid.
794 if (D.getInvalidType() || InvalidDecl)
795 New->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +0000796
797 return New;
798}
799
Steve Naroffd0091aa2008-01-10 22:15:12 +0000800bool Sema::CheckForConstantInitializer(Expr *Init, QualType DclT) {
801 SourceLocation loc;
802 // FIXME: Remove the isReference check and handle assignment to a reference.
803 if (!DclT->isReferenceType() && !Init->isConstantExpr(Context, &loc)) {
804 assert(loc.isValid() && "isConstantExpr didn't return a loc!");
805 Diag(loc, diag::err_init_element_not_constant, Init->getSourceRange());
806 return true;
807 }
808 return false;
809}
810
Steve Naroffbb204692007-09-12 14:07:44 +0000811void Sema::AddInitializerToDecl(DeclTy *dcl, ExprTy *init) {
Steve Naroff410e3e22007-09-12 20:13:48 +0000812 Decl *RealDecl = static_cast<Decl *>(dcl);
Steve Naroffbb204692007-09-12 14:07:44 +0000813 Expr *Init = static_cast<Expr *>(init);
Chris Lattner9a11b9a2007-10-19 20:10:30 +0000814 assert(Init && "missing initializer");
Steve Naroffbb204692007-09-12 14:07:44 +0000815
Chris Lattner9a11b9a2007-10-19 20:10:30 +0000816 // If there is no declaration, there was an error parsing it. Just ignore
817 // the initializer.
818 if (RealDecl == 0) {
819 delete Init;
820 return;
821 }
Steve Naroffbb204692007-09-12 14:07:44 +0000822
Steve Naroff410e3e22007-09-12 20:13:48 +0000823 VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl);
824 if (!VDecl) {
Steve Naroff8e74c932007-09-13 21:41:19 +0000825 Diag(dyn_cast<ScopedDecl>(RealDecl)->getLocation(),
826 diag::err_illegal_initializer);
Steve Naroff410e3e22007-09-12 20:13:48 +0000827 RealDecl->setInvalidDecl();
828 return;
829 }
Steve Naroffbb204692007-09-12 14:07:44 +0000830 // Get the decls type and save a reference for later, since
Steve Naroffd0091aa2008-01-10 22:15:12 +0000831 // CheckInitializerTypes may change it.
Steve Naroff410e3e22007-09-12 20:13:48 +0000832 QualType DclT = VDecl->getType(), SavT = DclT;
833 if (BlockVarDecl *BVD = dyn_cast<BlockVarDecl>(VDecl)) {
Steve Naroffbb204692007-09-12 14:07:44 +0000834 VarDecl::StorageClass SC = BVD->getStorageClass();
835 if (SC == VarDecl::Extern) { // C99 6.7.8p5
Steve Naroff410e3e22007-09-12 20:13:48 +0000836 Diag(VDecl->getLocation(), diag::err_block_extern_cant_init);
Steve Naroffbb204692007-09-12 14:07:44 +0000837 BVD->setInvalidDecl();
838 } else if (!BVD->isInvalidDecl()) {
Steve Naroffa9960332008-01-25 00:51:06 +0000839 if (CheckInitializerTypes(Init, DclT))
840 BVD->setInvalidDecl();
Steve Naroffd0091aa2008-01-10 22:15:12 +0000841 if (SC == VarDecl::Static) // C99 6.7.8p4.
842 CheckForConstantInitializer(Init, DclT);
Steve Naroffbb204692007-09-12 14:07:44 +0000843 }
Steve Naroff410e3e22007-09-12 20:13:48 +0000844 } else if (FileVarDecl *FVD = dyn_cast<FileVarDecl>(VDecl)) {
Steve Naroffbb204692007-09-12 14:07:44 +0000845 if (FVD->getStorageClass() == VarDecl::Extern)
Steve Naroff410e3e22007-09-12 20:13:48 +0000846 Diag(VDecl->getLocation(), diag::warn_extern_init);
Steve Naroffbb204692007-09-12 14:07:44 +0000847 if (!FVD->isInvalidDecl())
Steve Naroffa9960332008-01-25 00:51:06 +0000848 if (CheckInitializerTypes(Init, DclT))
849 FVD->setInvalidDecl();
Steve Naroffd0091aa2008-01-10 22:15:12 +0000850
851 // C99 6.7.8p4. All file scoped initializers need to be constant.
852 CheckForConstantInitializer(Init, DclT);
Steve Naroffbb204692007-09-12 14:07:44 +0000853 }
854 // If the type changed, it means we had an incomplete type that was
855 // completed by the initializer. For example:
856 // int ary[] = { 1, 3, 5 };
857 // "ary" transitions from a VariableArrayType to a ConstantArrayType.
Christopher Lamb48b12392007-11-29 19:09:19 +0000858 if (!VDecl->isInvalidDecl() && (DclT != SavT)) {
Steve Naroff410e3e22007-09-12 20:13:48 +0000859 VDecl->setType(DclT);
Christopher Lamb48b12392007-11-29 19:09:19 +0000860 Init->setType(DclT);
861 }
Steve Naroffbb204692007-09-12 14:07:44 +0000862
863 // Attach the initializer to the decl.
Steve Naroff410e3e22007-09-12 20:13:48 +0000864 VDecl->setInit(Init);
Steve Naroffbb204692007-09-12 14:07:44 +0000865 return;
866}
867
Reid Spencer5f016e22007-07-11 17:01:13 +0000868/// The declarators are chained together backwards, reverse the list.
869Sema::DeclTy *Sema::FinalizeDeclaratorGroup(Scope *S, DeclTy *group) {
870 // Often we have single declarators, handle them quickly.
Steve Naroff94745042007-09-13 23:52:58 +0000871 Decl *GroupDecl = static_cast<Decl*>(group);
872 if (GroupDecl == 0)
Steve Naroffbb204692007-09-12 14:07:44 +0000873 return 0;
Steve Naroff94745042007-09-13 23:52:58 +0000874
875 ScopedDecl *Group = dyn_cast<ScopedDecl>(GroupDecl);
876 ScopedDecl *NewGroup = 0;
Steve Naroffbb204692007-09-12 14:07:44 +0000877 if (Group->getNextDeclarator() == 0)
Reid Spencer5f016e22007-07-11 17:01:13 +0000878 NewGroup = Group;
Steve Naroffbb204692007-09-12 14:07:44 +0000879 else { // reverse the list.
880 while (Group) {
Steve Naroff94745042007-09-13 23:52:58 +0000881 ScopedDecl *Next = Group->getNextDeclarator();
Steve Naroffbb204692007-09-12 14:07:44 +0000882 Group->setNextDeclarator(NewGroup);
883 NewGroup = Group;
884 Group = Next;
885 }
886 }
887 // Perform semantic analysis that depends on having fully processed both
888 // the declarator and initializer.
Steve Naroff94745042007-09-13 23:52:58 +0000889 for (ScopedDecl *ID = NewGroup; ID; ID = ID->getNextDeclarator()) {
Steve Naroffbb204692007-09-12 14:07:44 +0000890 VarDecl *IDecl = dyn_cast<VarDecl>(ID);
891 if (!IDecl)
892 continue;
893 FileVarDecl *FVD = dyn_cast<FileVarDecl>(IDecl);
894 BlockVarDecl *BVD = dyn_cast<BlockVarDecl>(IDecl);
895 QualType T = IDecl->getType();
896
897 // C99 6.7.5.2p2: If an identifier is declared to be an object with
898 // static storage duration, it shall not have a variable length array.
899 if ((FVD || BVD) && IDecl->getStorageClass() == VarDecl::Static) {
Eli Friedman3fe02932008-02-15 19:53:52 +0000900 if (T->getAsVariableArrayType()) {
Eli Friedmanc5773c42008-02-15 18:16:39 +0000901 Diag(IDecl->getLocation(), diag::err_typecheck_illegal_vla);
902 IDecl->setInvalidDecl();
Steve Naroffbb204692007-09-12 14:07:44 +0000903 }
904 }
905 // Block scope. C99 6.7p7: If an identifier for an object is declared with
906 // no linkage (C99 6.2.2p6), the type for the object shall be complete...
907 if (BVD && IDecl->getStorageClass() != VarDecl::Extern) {
908 if (T->isIncompleteType()) {
Chris Lattner8b1be772007-12-02 07:50:03 +0000909 Diag(IDecl->getLocation(), diag::err_typecheck_decl_incomplete_type,
910 T.getAsString());
Steve Naroffbb204692007-09-12 14:07:44 +0000911 IDecl->setInvalidDecl();
912 }
913 }
914 // File scope. C99 6.9.2p2: A declaration of an identifier for and
915 // object that has file scope without an initializer, and without a
916 // storage-class specifier or with the storage-class specifier "static",
917 // constitutes a tentative definition. Note: A tentative definition with
918 // external linkage is valid (C99 6.2.2p5).
Steve Naroffd3cd1e52008-01-18 00:39:39 +0000919 if (FVD && !FVD->getInit() && (FVD->getStorageClass() == VarDecl::Static ||
920 FVD->getStorageClass() == VarDecl::None)) {
Eli Friedman9db13972008-02-15 12:53:51 +0000921 if (T->isIncompleteArrayType()) {
Steve Naroff9a75f8a2008-01-18 20:40:52 +0000922 // C99 6.9.2 (p2, p5): Implicit initialization causes an incomplete
923 // array to be completed. Don't issue a diagnostic.
924 } else if (T->isIncompleteType()) {
925 // C99 6.9.2p3: If the declaration of an identifier for an object is
926 // a tentative definition and has internal linkage (C99 6.2.2p3), the
927 // declared type shall not be an incomplete type.
Chris Lattner8b1be772007-12-02 07:50:03 +0000928 Diag(IDecl->getLocation(), diag::err_typecheck_decl_incomplete_type,
929 T.getAsString());
Steve Naroffbb204692007-09-12 14:07:44 +0000930 IDecl->setInvalidDecl();
931 }
932 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000933 }
934 return NewGroup;
935}
Steve Naroffe1223f72007-08-28 03:03:08 +0000936
937// Called from Sema::ParseStartOfFunctionDef().
Reid Spencer5f016e22007-07-11 17:01:13 +0000938ParmVarDecl *
Nate Begemanbff5f5c2007-11-13 21:49:48 +0000939Sema::ActOnParamDeclarator(struct DeclaratorChunk::ParamInfo &PI, Scope *FnScope)
Steve Naroff66499922007-11-12 03:44:46 +0000940{
Reid Spencer5f016e22007-07-11 17:01:13 +0000941 IdentifierInfo *II = PI.Ident;
942 // TODO: CHECK FOR CONFLICTS, multiple decls with same name in one scope.
943 // Can this happen for params? We already checked that they don't conflict
944 // among each other. Here they can only shadow globals, which is ok.
Chris Lattner8b9023b2007-07-13 03:05:23 +0000945 if (/*Decl *PrevDecl = */LookupScopedDecl(II, Decl::IDNS_Ordinary,
Reid Spencer5f016e22007-07-11 17:01:13 +0000946 PI.IdentLoc, FnScope)) {
947
948 }
949
950 // FIXME: Handle storage class (auto, register). No declarator?
951 // TODO: Chain to previous parameter with the prevdeclarator chain?
Steve Naroff6a9f3e32007-08-07 22:44:21 +0000952
953 // Perform the default function/array conversion (C99 6.7.5.3p[7,8]).
954 // Doing the promotion here has a win and a loss. The win is the type for
955 // both Decl's and DeclRefExpr's will match (a convenient invariant for the
956 // code generator). The loss is the orginal type isn't preserved. For example:
957 //
958 // void func(int parmvardecl[5]) { // convert "int [5]" to "int *"
959 // int blockvardecl[5];
960 // sizeof(parmvardecl); // size == 4
961 // sizeof(blockvardecl); // size == 20
962 // }
963 //
964 // For expressions, all implicit conversions are captured using the
965 // ImplicitCastExpr AST node (we have no such mechanism for Decl's).
966 //
967 // FIXME: If a source translation tool needs to see the original type, then
968 // we need to consider storing both types (in ParmVarDecl)...
969 //
970 QualType parmDeclType = QualType::getFromOpaquePtr(PI.TypeInfo);
Chris Lattner529bd022008-01-02 22:50:48 +0000971 if (const ArrayType *AT = parmDeclType->getAsArrayType()) {
972 // int x[restrict 4] -> int *restrict
Steve Naroff6a9f3e32007-08-07 22:44:21 +0000973 parmDeclType = Context.getPointerType(AT->getElementType());
Chris Lattner529bd022008-01-02 22:50:48 +0000974 parmDeclType = parmDeclType.getQualifiedType(AT->getIndexTypeQualifier());
975 } else if (parmDeclType->isFunctionType())
Steve Naroff6a9f3e32007-08-07 22:44:21 +0000976 parmDeclType = Context.getPointerType(parmDeclType);
977
978 ParmVarDecl *New = new ParmVarDecl(PI.IdentLoc, II, parmDeclType,
Anders Carlssonf78915f2008-02-15 07:04:12 +0000979 VarDecl::None, 0);
980 // FIXME: Handle attributes
981
Steve Naroff53a32342007-08-28 18:45:29 +0000982 if (PI.InvalidType)
983 New->setInvalidDecl();
984
Reid Spencer5f016e22007-07-11 17:01:13 +0000985 // If this has an identifier, add it to the scope stack.
986 if (II) {
Steve Naroffc752d042007-09-13 18:10:37 +0000987 New->setNext(II->getFETokenInfo<ScopedDecl>());
Reid Spencer5f016e22007-07-11 17:01:13 +0000988 II->setFETokenInfo(New);
989 FnScope->AddDecl(New);
990 }
991
992 return New;
993}
Fariborz Jahanian306d68f2007-11-08 23:49:49 +0000994
Chris Lattnerb652cea2007-10-09 17:14:05 +0000995Sema::DeclTy *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Declarator &D) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000996 assert(CurFunctionDecl == 0 && "Function parsing confused");
997 assert(D.getTypeObject(0).Kind == DeclaratorChunk::Function &&
998 "Not a function declarator!");
999 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
1000
1001 // Verify 6.9.1p6: 'every identifier in the identifier list shall be declared'
1002 // for a K&R function.
1003 if (!FTI.hasPrototype) {
1004 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) {
1005 if (FTI.ArgInfo[i].TypeInfo == 0) {
1006 Diag(FTI.ArgInfo[i].IdentLoc, diag::ext_param_not_declared,
1007 FTI.ArgInfo[i].Ident->getName());
1008 // Implicitly declare the argument as type 'int' for lack of a better
1009 // type.
1010 FTI.ArgInfo[i].TypeInfo = Context.IntTy.getAsOpaquePtr();
1011 }
1012 }
1013
1014 // Since this is a function definition, act as though we have information
1015 // about the arguments.
1016 FTI.hasPrototype = true;
1017 } else {
1018 // FIXME: Diagnose arguments without names in C.
1019
1020 }
1021
1022 Scope *GlobalScope = FnBodyScope->getParent();
Steve Naroffadbbd0c2008-01-14 20:51:29 +00001023
1024 // See if this is a redefinition.
1025 ScopedDecl *PrevDcl = LookupScopedDecl(D.getIdentifier(), Decl::IDNS_Ordinary,
1026 D.getIdentifierLoc(), GlobalScope);
1027 if (FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(PrevDcl)) {
1028 if (FD->getBody()) {
1029 Diag(D.getIdentifierLoc(), diag::err_redefinition,
1030 D.getIdentifier()->getName());
1031 Diag(FD->getLocation(), diag::err_previous_definition);
1032 }
1033 }
Steve Narofffabbc342008-02-12 01:09:36 +00001034 Decl *decl = static_cast<Decl*>(ActOnDeclarator(GlobalScope, D, 0));
Chris Lattnere9ba3232008-02-16 01:20:36 +00001035 FunctionDecl *FD = cast<FunctionDecl>(decl);
Reid Spencer5f016e22007-07-11 17:01:13 +00001036 CurFunctionDecl = FD;
1037
1038 // Create Decl objects for each parameter, adding them to the FunctionDecl.
1039 llvm::SmallVector<ParmVarDecl*, 16> Params;
1040
1041 // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs function that takes
1042 // no arguments, not a function that takes a single void argument.
1043 if (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
Chris Lattnerb751c282007-11-28 18:51:29 +00001044 !QualType::getFromOpaquePtr(FTI.ArgInfo[0].TypeInfo).getQualifiers() &&
1045 QualType::getFromOpaquePtr(FTI.ArgInfo[0].TypeInfo)->isVoidType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001046 // empty arg list, don't push any params.
1047 } else {
Steve Naroff66499922007-11-12 03:44:46 +00001048 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) {
Nate Begemanbff5f5c2007-11-13 21:49:48 +00001049 Params.push_back(ActOnParamDeclarator(D.getTypeObject(0).Fun.ArgInfo[i],
Steve Naroff66499922007-11-12 03:44:46 +00001050 FnBodyScope));
1051 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001052 }
1053
1054 FD->setParams(&Params[0], Params.size());
1055
1056 return FD;
1057}
1058
Steve Naroffd6d054d2007-11-11 23:20:51 +00001059Sema::DeclTy *Sema::ActOnFinishFunctionBody(DeclTy *D, StmtTy *Body) {
1060 Decl *dcl = static_cast<Decl *>(D);
1061 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(dcl)) {
1062 FD->setBody((Stmt*)Body);
1063 assert(FD == CurFunctionDecl && "Function parsing confused");
Steve Naroff4d832202007-12-13 18:18:56 +00001064 CurFunctionDecl = 0;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001065 } else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(dcl)) {
Steve Naroffd6d054d2007-11-11 23:20:51 +00001066 MD->setBody((Stmt*)Body);
Steve Naroff03300712007-11-12 13:56:41 +00001067 CurMethodDecl = 0;
Steve Naroff4d832202007-12-13 18:18:56 +00001068 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001069 // Verify and clean out per-function state.
1070
1071 // Check goto/label use.
1072 for (llvm::DenseMap<IdentifierInfo*, LabelStmt*>::iterator
1073 I = LabelMap.begin(), E = LabelMap.end(); I != E; ++I) {
1074 // Verify that we have no forward references left. If so, there was a goto
1075 // or address of a label taken, but no definition of it. Label fwd
1076 // definitions are indicated with a null substmt.
1077 if (I->second->getSubStmt() == 0) {
1078 LabelStmt *L = I->second;
1079 // Emit error.
1080 Diag(L->getIdentLoc(), diag::err_undeclared_label_use, L->getName());
1081
1082 // At this point, we have gotos that use the bogus label. Stitch it into
1083 // the function body so that they aren't leaked and that the AST is well
1084 // formed.
Chris Lattner0cbc2152008-01-25 00:01:10 +00001085 if (Body) {
1086 L->setSubStmt(new NullStmt(L->getIdentLoc()));
1087 cast<CompoundStmt>((Stmt*)Body)->push_back(L);
1088 } else {
1089 // The whole function wasn't parsed correctly, just delete this.
1090 delete L;
1091 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001092 }
1093 }
1094 LabelMap.clear();
1095
Steve Naroffd6d054d2007-11-11 23:20:51 +00001096 return D;
Fariborz Jahanian60fbca02007-11-10 16:31:34 +00001097}
1098
Reid Spencer5f016e22007-07-11 17:01:13 +00001099/// ImplicitlyDefineFunction - An undeclared identifier was used in a function
1100/// call, forming a call to an implicitly defined function (per C99 6.5.1p2).
Steve Naroff8c9f13e2007-09-16 16:16:00 +00001101ScopedDecl *Sema::ImplicitlyDefineFunction(SourceLocation Loc,
1102 IdentifierInfo &II, Scope *S) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001103 if (getLangOptions().C99) // Extension in C99.
1104 Diag(Loc, diag::ext_implicit_function_decl, II.getName());
1105 else // Legal in C90, but warn about it.
1106 Diag(Loc, diag::warn_implicit_function_decl, II.getName());
1107
1108 // FIXME: handle stuff like:
1109 // void foo() { extern float X(); }
1110 // void bar() { X(); } <-- implicit decl for X in another scope.
1111
1112 // Set a Declarator for the implicit definition: int foo();
1113 const char *Dummy;
1114 DeclSpec DS;
1115 bool Error = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, Dummy);
1116 Error = Error; // Silence warning.
1117 assert(!Error && "Error setting up implicit decl!");
1118 Declarator D(DS, Declarator::BlockContext);
1119 D.AddTypeInfo(DeclaratorChunk::getFunction(false, false, 0, 0, Loc));
1120 D.SetIdentifier(&II, Loc);
1121
1122 // Find translation-unit scope to insert this function into.
Chris Lattner31e05722007-08-26 06:24:45 +00001123 if (Scope *FnS = S->getFnParent())
1124 S = FnS->getParent(); // Skip all scopes in a function at once.
Reid Spencer5f016e22007-07-11 17:01:13 +00001125 while (S->getParent())
1126 S = S->getParent();
1127
Steve Naroff8c9f13e2007-09-16 16:16:00 +00001128 return dyn_cast<ScopedDecl>(static_cast<Decl*>(ActOnDeclarator(S, D, 0)));
Reid Spencer5f016e22007-07-11 17:01:13 +00001129}
1130
1131
Chris Lattner41af0932007-11-14 06:34:38 +00001132TypedefDecl *Sema::ParseTypedefDecl(Scope *S, Declarator &D, QualType T,
Steve Naroff94745042007-09-13 23:52:58 +00001133 ScopedDecl *LastDeclarator) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001134 assert(D.getIdentifier() && "Wrong callback for declspec without declarator");
Steve Naroff5912a352007-08-28 20:14:24 +00001135 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
Reid Spencer5f016e22007-07-11 17:01:13 +00001136
1137 // Scope manipulation handled by caller.
Steve Naroff5912a352007-08-28 20:14:24 +00001138 TypedefDecl *NewTD = new TypedefDecl(D.getIdentifierLoc(), D.getIdentifier(),
1139 T, LastDeclarator);
1140 if (D.getInvalidType())
1141 NewTD->setInvalidDecl();
1142 return NewTD;
Reid Spencer5f016e22007-07-11 17:01:13 +00001143}
1144
Steve Naroff08d92e42007-09-15 18:49:24 +00001145/// ActOnTag - This is invoked when we see 'struct foo' or 'struct {'. In the
Reid Spencer5f016e22007-07-11 17:01:13 +00001146/// former case, Name will be non-null. In the later case, Name will be null.
1147/// TagType indicates what kind of tag this is. TK indicates whether this is a
1148/// reference/declaration/definition of a tag.
Steve Naroff08d92e42007-09-15 18:49:24 +00001149Sema::DeclTy *Sema::ActOnTag(Scope *S, unsigned TagType, TagKind TK,
Reid Spencer5f016e22007-07-11 17:01:13 +00001150 SourceLocation KWLoc, IdentifierInfo *Name,
1151 SourceLocation NameLoc, AttributeList *Attr) {
1152 // If this is a use of an existing tag, it must have a name.
1153 assert((Name != 0 || TK == TK_Definition) &&
1154 "Nameless record must be a definition!");
1155
1156 Decl::Kind Kind;
1157 switch (TagType) {
1158 default: assert(0 && "Unknown tag type!");
1159 case DeclSpec::TST_struct: Kind = Decl::Struct; break;
1160 case DeclSpec::TST_union: Kind = Decl::Union; break;
1161//case DeclSpec::TST_class: Kind = Decl::Class; break;
1162 case DeclSpec::TST_enum: Kind = Decl::Enum; break;
1163 }
1164
1165 // If this is a named struct, check to see if there was a previous forward
1166 // declaration or definition.
1167 if (TagDecl *PrevDecl =
1168 dyn_cast_or_null<TagDecl>(LookupScopedDecl(Name, Decl::IDNS_Tag,
1169 NameLoc, S))) {
1170
1171 // If this is a use of a previous tag, or if the tag is already declared in
1172 // the same scope (so that the definition/declaration completes or
1173 // rementions the tag), reuse the decl.
1174 if (TK == TK_Reference || S->isDeclScope(PrevDecl)) {
1175 // Make sure that this wasn't declared as an enum and now used as a struct
1176 // or something similar.
1177 if (PrevDecl->getKind() != Kind) {
1178 Diag(KWLoc, diag::err_use_with_wrong_tag, Name->getName());
1179 Diag(PrevDecl->getLocation(), diag::err_previous_use);
1180 }
1181
1182 // If this is a use or a forward declaration, we're good.
1183 if (TK != TK_Definition)
1184 return PrevDecl;
1185
1186 // Diagnose attempts to redefine a tag.
1187 if (PrevDecl->isDefinition()) {
1188 Diag(NameLoc, diag::err_redefinition, Name->getName());
1189 Diag(PrevDecl->getLocation(), diag::err_previous_definition);
1190 // If this is a redefinition, recover by making this struct be
1191 // anonymous, which will make any later references get the previous
1192 // definition.
1193 Name = 0;
1194 } else {
1195 // Okay, this is definition of a previously declared or referenced tag.
1196 // Move the location of the decl to be the definition site.
1197 PrevDecl->setLocation(NameLoc);
1198 return PrevDecl;
1199 }
1200 }
1201 // If we get here, this is a definition of a new struct type in a nested
1202 // scope, e.g. "struct foo; void bar() { struct foo; }", just create a new
1203 // type.
1204 }
1205
1206 // If there is an identifier, use the location of the identifier as the
1207 // location of the decl, otherwise use the location of the struct/union
1208 // keyword.
1209 SourceLocation Loc = NameLoc.isValid() ? NameLoc : KWLoc;
1210
1211 // Otherwise, if this is the first time we've seen this tag, create the decl.
1212 TagDecl *New;
1213 switch (Kind) {
1214 default: assert(0 && "Unknown tag kind!");
1215 case Decl::Enum:
1216 // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
1217 // enum X { A, B, C } D; D should chain to X.
1218 New = new EnumDecl(Loc, Name, 0);
1219 // If this is an undefined enum, warn.
1220 if (TK != TK_Definition) Diag(Loc, diag::ext_forward_ref_enum);
1221 break;
1222 case Decl::Union:
1223 case Decl::Struct:
1224 case Decl::Class:
1225 // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
1226 // struct X { int A; } D; D should chain to X.
1227 New = new RecordDecl(Kind, Loc, Name, 0);
1228 break;
1229 }
1230
1231 // If this has an identifier, add it to the scope stack.
1232 if (Name) {
Chris Lattner31e05722007-08-26 06:24:45 +00001233 // The scope passed in may not be a decl scope. Zip up the scope tree until
1234 // we find one that is.
1235 while ((S->getFlags() & Scope::DeclScope) == 0)
1236 S = S->getParent();
1237
1238 // Add it to the decl chain.
Steve Naroffc752d042007-09-13 18:10:37 +00001239 New->setNext(Name->getFETokenInfo<ScopedDecl>());
Reid Spencer5f016e22007-07-11 17:01:13 +00001240 Name->setFETokenInfo(New);
1241 S->AddDecl(New);
1242 }
Chris Lattnere1e79852008-02-06 00:51:33 +00001243
Anders Carlssonad148062008-02-16 00:29:18 +00001244 HandleDeclAttributes(New, Attr, 0);
Reid Spencer5f016e22007-07-11 17:01:13 +00001245 return New;
1246}
1247
Steve Naroff08d92e42007-09-15 18:49:24 +00001248/// ActOnField - Each field of a struct/union/class is passed into this in order
Reid Spencer5f016e22007-07-11 17:01:13 +00001249/// to create a FieldDecl object for it.
Steve Naroff08d92e42007-09-15 18:49:24 +00001250Sema::DeclTy *Sema::ActOnField(Scope *S, DeclTy *TagDecl,
Reid Spencer5f016e22007-07-11 17:01:13 +00001251 SourceLocation DeclStart,
1252 Declarator &D, ExprTy *BitfieldWidth) {
1253 IdentifierInfo *II = D.getIdentifier();
1254 Expr *BitWidth = (Expr*)BitfieldWidth;
Reid Spencer5f016e22007-07-11 17:01:13 +00001255 SourceLocation Loc = DeclStart;
1256 if (II) Loc = D.getIdentifierLoc();
1257
1258 // FIXME: Unnamed fields can be handled in various different ways, for
1259 // example, unnamed unions inject all members into the struct namespace!
1260
1261
1262 if (BitWidth) {
1263 // TODO: Validate.
1264 //printf("WARNING: BITFIELDS IGNORED!\n");
1265
1266 // 6.7.2.1p3
1267 // 6.7.2.1p4
1268
1269 } else {
1270 // Not a bitfield.
1271
1272 // validate II.
1273
1274 }
1275
1276 QualType T = GetTypeForDeclarator(D, S);
Steve Naroff5912a352007-08-28 20:14:24 +00001277 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
1278 bool InvalidDecl = false;
Steve Naroffd7444aa2007-08-31 17:20:07 +00001279
Reid Spencer5f016e22007-07-11 17:01:13 +00001280 // C99 6.7.2.1p8: A member of a structure or union may have any type other
1281 // than a variably modified type.
Eli Friedman9db13972008-02-15 12:53:51 +00001282 if (T->isVariablyModifiedType()) {
1283 // FIXME: This diagnostic needs work
1284 Diag(Loc, diag::err_typecheck_illegal_vla, Loc);
Steve Naroffd7444aa2007-08-31 17:20:07 +00001285 InvalidDecl = true;
Reid Spencer5f016e22007-07-11 17:01:13 +00001286 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001287 // FIXME: Chain fielddecls together.
Steve Naroff44739212007-09-11 21:17:26 +00001288 FieldDecl *NewFD;
1289
1290 if (isa<RecordDecl>(static_cast<Decl *>(TagDecl)))
Devang Patel54e62352007-11-01 16:29:56 +00001291 NewFD = new FieldDecl(Loc, II, T, BitWidth);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001292 else if (isa<ObjCInterfaceDecl>(static_cast<Decl *>(TagDecl)) ||
1293 isa<ObjCImplementationDecl>(static_cast<Decl *>(TagDecl)) ||
1294 isa<ObjCCategoryDecl>(static_cast<Decl *>(TagDecl)) ||
Steve Naroffddd600f2007-11-14 14:15:31 +00001295 // FIXME: ivars are currently used to model properties, and
1296 // properties can appear within a protocol.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001297 // See corresponding FIXME in DeclObjC.h:ObjCPropertyDecl.
1298 isa<ObjCProtocolDecl>(static_cast<Decl *>(TagDecl)))
1299 NewFD = new ObjCIvarDecl(Loc, II, T);
Steve Naroff44739212007-09-11 21:17:26 +00001300 else
Steve Naroff08d92e42007-09-15 18:49:24 +00001301 assert(0 && "Sema::ActOnField(): Unknown TagDecl");
Steve Naroff44739212007-09-11 21:17:26 +00001302
Anders Carlssonad148062008-02-16 00:29:18 +00001303 HandleDeclAttributes(NewFD, D.getDeclSpec().getAttributes(),
1304 D.getAttributes());
1305
Steve Naroff5912a352007-08-28 20:14:24 +00001306 if (D.getInvalidType() || InvalidDecl)
1307 NewFD->setInvalidDecl();
1308 return NewFD;
Reid Spencer5f016e22007-07-11 17:01:13 +00001309}
1310
Fariborz Jahanian89204a12007-10-01 16:53:59 +00001311/// TranslateIvarVisibility - Translate visibility from a token ID to an
1312/// AST enum value.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001313static ObjCIvarDecl::AccessControl
Fariborz Jahanian89204a12007-10-01 16:53:59 +00001314TranslateIvarVisibility(tok::ObjCKeywordKind ivarVisibility) {
Steve Narofff13271f2007-09-14 23:09:53 +00001315 switch (ivarVisibility) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001316 case tok::objc_private: return ObjCIvarDecl::Private;
1317 case tok::objc_public: return ObjCIvarDecl::Public;
1318 case tok::objc_protected: return ObjCIvarDecl::Protected;
1319 case tok::objc_package: return ObjCIvarDecl::Package;
Fariborz Jahanian89204a12007-10-01 16:53:59 +00001320 default: assert(false && "Unknown visitibility kind");
Steve Narofff13271f2007-09-14 23:09:53 +00001321 }
1322}
1323
Fariborz Jahanian9d048ff2007-09-29 00:54:24 +00001324void Sema::ActOnFields(Scope* S,
Fariborz Jahanian3f5faf72007-10-04 00:45:27 +00001325 SourceLocation RecLoc, DeclTy *RecDecl,
Steve Naroff08d92e42007-09-15 18:49:24 +00001326 DeclTy **Fields, unsigned NumFields,
Steve Naroff60fccee2007-10-29 21:38:07 +00001327 SourceLocation LBrac, SourceLocation RBrac,
Steve Naroff08d92e42007-09-15 18:49:24 +00001328 tok::ObjCKeywordKind *visibility) {
Steve Naroff74216642007-09-14 22:20:54 +00001329 Decl *EnclosingDecl = static_cast<Decl*>(RecDecl);
1330 assert(EnclosingDecl && "missing record or interface decl");
1331 RecordDecl *Record = dyn_cast<RecordDecl>(EnclosingDecl);
1332
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001333 if (Record && Record->isDefinition()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001334 // Diagnose code like:
1335 // struct S { struct S {} X; };
1336 // We discover this when we complete the outer S. Reject and ignore the
1337 // outer S.
1338 Diag(Record->getLocation(), diag::err_nested_redefinition,
1339 Record->getKindName());
1340 Diag(RecLoc, diag::err_previous_definition);
Steve Naroff74216642007-09-14 22:20:54 +00001341 Record->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00001342 return;
1343 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001344 // Verify that all the fields are okay.
1345 unsigned NumNamedMembers = 0;
1346 llvm::SmallVector<FieldDecl*, 32> RecFields;
1347 llvm::SmallSet<const IdentifierInfo*, 32> FieldIDs;
Steve Naroff74216642007-09-14 22:20:54 +00001348
Reid Spencer5f016e22007-07-11 17:01:13 +00001349 for (unsigned i = 0; i != NumFields; ++i) {
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001350
Steve Naroff74216642007-09-14 22:20:54 +00001351 FieldDecl *FD = cast_or_null<FieldDecl>(static_cast<Decl*>(Fields[i]));
1352 assert(FD && "missing field decl");
1353
1354 // Remember all fields.
1355 RecFields.push_back(FD);
Reid Spencer5f016e22007-07-11 17:01:13 +00001356
1357 // Get the type for the field.
Chris Lattner02c642e2007-07-31 21:33:24 +00001358 Type *FDTy = FD->getType().getTypePtr();
Reid Spencer5f016e22007-07-11 17:01:13 +00001359
Steve Narofff13271f2007-09-14 23:09:53 +00001360 // If we have visibility info, make sure the AST is set accordingly.
1361 if (visibility)
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001362 cast<ObjCIvarDecl>(FD)->setAccessControl(
Fariborz Jahanian89204a12007-10-01 16:53:59 +00001363 TranslateIvarVisibility(visibility[i]));
Steve Narofff13271f2007-09-14 23:09:53 +00001364
Reid Spencer5f016e22007-07-11 17:01:13 +00001365 // C99 6.7.2.1p2 - A field may not be a function type.
Chris Lattner02c642e2007-07-31 21:33:24 +00001366 if (FDTy->isFunctionType()) {
Steve Naroff74216642007-09-14 22:20:54 +00001367 Diag(FD->getLocation(), diag::err_field_declared_as_function,
Reid Spencer5f016e22007-07-11 17:01:13 +00001368 FD->getName());
Steve Naroff74216642007-09-14 22:20:54 +00001369 FD->setInvalidDecl();
1370 EnclosingDecl->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00001371 continue;
1372 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001373 // C99 6.7.2.1p2 - A field may not be an incomplete type except...
1374 if (FDTy->isIncompleteType()) {
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001375 if (!Record) { // Incomplete ivar type is always an error.
Fariborz Jahanian3f5faf72007-10-04 00:45:27 +00001376 Diag(FD->getLocation(), diag::err_field_incomplete, FD->getName());
Steve Naroff74216642007-09-14 22:20:54 +00001377 FD->setInvalidDecl();
1378 EnclosingDecl->setInvalidDecl();
Fariborz Jahanian3f5faf72007-10-04 00:45:27 +00001379 continue;
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001380 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001381 if (i != NumFields-1 || // ... that the last member ...
1382 Record->getKind() != Decl::Struct || // ... of a structure ...
Chris Lattner02c642e2007-07-31 21:33:24 +00001383 !FDTy->isArrayType()) { //... may have incomplete array type.
Reid Spencer5f016e22007-07-11 17:01:13 +00001384 Diag(FD->getLocation(), diag::err_field_incomplete, FD->getName());
Steve Naroff74216642007-09-14 22:20:54 +00001385 FD->setInvalidDecl();
1386 EnclosingDecl->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00001387 continue;
1388 }
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001389 if (NumNamedMembers < 1) { //... must have more than named member ...
Reid Spencer5f016e22007-07-11 17:01:13 +00001390 Diag(FD->getLocation(), diag::err_flexible_array_empty_struct,
1391 FD->getName());
Steve Naroff74216642007-09-14 22:20:54 +00001392 FD->setInvalidDecl();
1393 EnclosingDecl->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00001394 continue;
1395 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001396 // Okay, we have a legal flexible array member at the end of the struct.
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001397 if (Record)
1398 Record->setHasFlexibleArrayMember(true);
Reid Spencer5f016e22007-07-11 17:01:13 +00001399 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001400 /// C99 6.7.2.1p2 - a struct ending in a flexible array member cannot be the
1401 /// field of another structure or the element of an array.
Chris Lattner02c642e2007-07-31 21:33:24 +00001402 if (const RecordType *FDTTy = FDTy->getAsRecordType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001403 if (FDTTy->getDecl()->hasFlexibleArrayMember()) {
1404 // If this is a member of a union, then entire union becomes "flexible".
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001405 if (Record && Record->getKind() == Decl::Union) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001406 Record->setHasFlexibleArrayMember(true);
1407 } else {
1408 // If this is a struct/class and this is not the last element, reject
1409 // it. Note that GCC supports variable sized arrays in the middle of
1410 // structures.
1411 if (i != NumFields-1) {
1412 Diag(FD->getLocation(), diag::err_variable_sized_type_in_struct,
1413 FD->getName());
Steve Naroff74216642007-09-14 22:20:54 +00001414 FD->setInvalidDecl();
1415 EnclosingDecl->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00001416 continue;
1417 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001418 // We support flexible arrays at the end of structs in other structs
1419 // as an extension.
1420 Diag(FD->getLocation(), diag::ext_flexible_array_in_struct,
1421 FD->getName());
Fariborz Jahanian3f5faf72007-10-04 00:45:27 +00001422 if (Record)
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001423 Record->setHasFlexibleArrayMember(true);
Reid Spencer5f016e22007-07-11 17:01:13 +00001424 }
1425 }
1426 }
Fariborz Jahaniane7f64cc2007-10-12 22:10:42 +00001427 /// A field cannot be an Objective-c object
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001428 if (FDTy->isObjCInterfaceType()) {
Fariborz Jahaniane7f64cc2007-10-12 22:10:42 +00001429 Diag(FD->getLocation(), diag::err_statically_allocated_object,
1430 FD->getName());
1431 FD->setInvalidDecl();
1432 EnclosingDecl->setInvalidDecl();
1433 continue;
1434 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001435 // Keep track of the number of named members.
1436 if (IdentifierInfo *II = FD->getIdentifier()) {
1437 // Detect duplicate member names.
1438 if (!FieldIDs.insert(II)) {
1439 Diag(FD->getLocation(), diag::err_duplicate_member, II->getName());
1440 // Find the previous decl.
1441 SourceLocation PrevLoc;
1442 for (unsigned i = 0, e = RecFields.size(); ; ++i) {
1443 assert(i != e && "Didn't find previous def!");
1444 if (RecFields[i]->getIdentifier() == II) {
1445 PrevLoc = RecFields[i]->getLocation();
1446 break;
1447 }
1448 }
1449 Diag(PrevLoc, diag::err_previous_definition);
Steve Naroff74216642007-09-14 22:20:54 +00001450 FD->setInvalidDecl();
1451 EnclosingDecl->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00001452 continue;
1453 }
1454 ++NumNamedMembers;
1455 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001456 }
1457
Reid Spencer5f016e22007-07-11 17:01:13 +00001458 // Okay, we successfully defined 'Record'.
Chris Lattnere1e79852008-02-06 00:51:33 +00001459 if (Record) {
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001460 Record->defineBody(&RecFields[0], RecFields.size());
Chris Lattnere1e79852008-02-06 00:51:33 +00001461 Consumer.HandleTagDeclDefinition(Record);
1462 } else {
Chris Lattnera91d3812008-02-05 22:40:55 +00001463 ObjCIvarDecl **ClsFields = reinterpret_cast<ObjCIvarDecl**>(&RecFields[0]);
1464 if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(EnclosingDecl))
1465 ID->addInstanceVariablesToClass(ClsFields, RecFields.size(), RBrac);
1466 else if (ObjCImplementationDecl *IMPDecl =
1467 dyn_cast<ObjCImplementationDecl>(EnclosingDecl)) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001468 assert(IMPDecl && "ActOnFields - missing ObjCImplementationDecl");
1469 IMPDecl->ObjCAddInstanceVariablesToClassImpl(ClsFields, RecFields.size());
Fariborz Jahanian3a3ca1b2007-10-31 18:48:14 +00001470 CheckImplementationIvars(IMPDecl, ClsFields, RecFields.size(), RBrac);
Fariborz Jahaniand0b90bf2007-09-26 18:27:25 +00001471 }
Fariborz Jahanianb04a0212007-09-14 21:08:27 +00001472 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001473}
1474
Steve Naroff08d92e42007-09-15 18:49:24 +00001475Sema::DeclTy *Sema::ActOnEnumConstant(Scope *S, DeclTy *theEnumDecl,
Reid Spencer5f016e22007-07-11 17:01:13 +00001476 DeclTy *lastEnumConst,
1477 SourceLocation IdLoc, IdentifierInfo *Id,
1478 SourceLocation EqualLoc, ExprTy *val) {
1479 theEnumDecl = theEnumDecl; // silence unused warning.
1480 EnumConstantDecl *LastEnumConst =
1481 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(lastEnumConst));
1482 Expr *Val = static_cast<Expr*>(val);
1483
Chris Lattner31e05722007-08-26 06:24:45 +00001484 // The scope passed in may not be a decl scope. Zip up the scope tree until
1485 // we find one that is.
1486 while ((S->getFlags() & Scope::DeclScope) == 0)
1487 S = S->getParent();
1488
Reid Spencer5f016e22007-07-11 17:01:13 +00001489 // Verify that there isn't already something declared with this name in this
1490 // scope.
Steve Naroff8e74c932007-09-13 21:41:19 +00001491 if (ScopedDecl *PrevDecl = LookupScopedDecl(Id, Decl::IDNS_Ordinary,
1492 IdLoc, S)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001493 if (S->isDeclScope(PrevDecl)) {
1494 if (isa<EnumConstantDecl>(PrevDecl))
1495 Diag(IdLoc, diag::err_redefinition_of_enumerator, Id->getName());
1496 else
1497 Diag(IdLoc, diag::err_redefinition, Id->getName());
1498 Diag(PrevDecl->getLocation(), diag::err_previous_definition);
1499 // FIXME: Don't leak memory: delete Val;
1500 return 0;
1501 }
1502 }
1503
1504 llvm::APSInt EnumVal(32);
1505 QualType EltTy;
1506 if (Val) {
Chris Lattner421a23d2007-08-27 21:16:18 +00001507 // Make sure to promote the operand type to int.
1508 UsualUnaryConversions(Val);
1509
Reid Spencer5f016e22007-07-11 17:01:13 +00001510 // C99 6.7.2.2p2: Make sure we have an integer constant expression.
1511 SourceLocation ExpLoc;
Chris Lattner590b6642007-07-15 23:26:56 +00001512 if (!Val->isIntegerConstantExpr(EnumVal, Context, &ExpLoc)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001513 Diag(ExpLoc, diag::err_enum_value_not_integer_constant_expr,
1514 Id->getName());
1515 // FIXME: Don't leak memory: delete Val;
Chris Lattnerb7416f92007-08-27 17:37:24 +00001516 Val = 0; // Just forget about it.
Chris Lattnere9ca8512007-08-29 16:03:41 +00001517 } else {
1518 EltTy = Val->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001519 }
Chris Lattnerb7416f92007-08-27 17:37:24 +00001520 }
1521
1522 if (!Val) {
1523 if (LastEnumConst) {
1524 // Assign the last value + 1.
1525 EnumVal = LastEnumConst->getInitVal();
1526 ++EnumVal;
Chris Lattner421a23d2007-08-27 21:16:18 +00001527
1528 // Check for overflow on increment.
1529 if (EnumVal < LastEnumConst->getInitVal())
1530 Diag(IdLoc, diag::warn_enum_value_overflow);
1531
Chris Lattnerb7416f92007-08-27 17:37:24 +00001532 EltTy = LastEnumConst->getType();
1533 } else {
1534 // First value, set to zero.
1535 EltTy = Context.IntTy;
Chris Lattner701e5eb2007-09-04 02:45:27 +00001536 EnumVal.zextOrTrunc(
1537 static_cast<uint32_t>(Context.getTypeSize(EltTy, IdLoc)));
Chris Lattnerb7416f92007-08-27 17:37:24 +00001538 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001539 }
1540
Reid Spencer5f016e22007-07-11 17:01:13 +00001541 EnumConstantDecl *New = new EnumConstantDecl(IdLoc, Id, EltTy, Val, EnumVal,
1542 LastEnumConst);
1543
1544 // Register this decl in the current scope stack.
Steve Naroffc752d042007-09-13 18:10:37 +00001545 New->setNext(Id->getFETokenInfo<ScopedDecl>());
Reid Spencer5f016e22007-07-11 17:01:13 +00001546 Id->setFETokenInfo(New);
1547 S->AddDecl(New);
1548 return New;
1549}
1550
Steve Naroff08d92e42007-09-15 18:49:24 +00001551void Sema::ActOnEnumBody(SourceLocation EnumLoc, DeclTy *EnumDeclX,
Reid Spencer5f016e22007-07-11 17:01:13 +00001552 DeclTy **Elements, unsigned NumElements) {
1553 EnumDecl *Enum = cast<EnumDecl>(static_cast<Decl*>(EnumDeclX));
1554 assert(!Enum->isDefinition() && "Enum redefinitions can't reach here");
1555
Chris Lattnere37f0be2007-08-28 05:10:31 +00001556 // TODO: If the result value doesn't fit in an int, it must be a long or long
1557 // long value. ISO C does not support this, but GCC does as an extension,
1558 // emit a warning.
Ted Kremenek9c728dc2007-12-12 22:39:36 +00001559 unsigned IntWidth =
1560 Context.Target.getIntWidth(Context.getFullLoc(Enum->getLocation()));
Chris Lattnere37f0be2007-08-28 05:10:31 +00001561
1562
Chris Lattnerac609682007-08-28 06:15:15 +00001563 // Verify that all the values are okay, compute the size of the values, and
1564 // reverse the list.
1565 unsigned NumNegativeBits = 0;
1566 unsigned NumPositiveBits = 0;
1567
1568 // Keep track of whether all elements have type int.
1569 bool AllElementsInt = true;
1570
Reid Spencer5f016e22007-07-11 17:01:13 +00001571 EnumConstantDecl *EltList = 0;
1572 for (unsigned i = 0; i != NumElements; ++i) {
1573 EnumConstantDecl *ECD =
1574 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(Elements[i]));
1575 if (!ECD) continue; // Already issued a diagnostic.
Chris Lattner211a30e2007-08-28 05:27:00 +00001576
1577 // If the enum value doesn't fit in an int, emit an extension warning.
1578 assert(ECD->getInitVal().getBitWidth() >= IntWidth &&
1579 "Should have promoted value to int");
1580 const llvm::APSInt &InitVal = ECD->getInitVal();
1581 if (InitVal.getBitWidth() > IntWidth) {
1582 llvm::APSInt V(InitVal);
1583 V.trunc(IntWidth);
1584 V.extend(InitVal.getBitWidth());
1585 if (V != InitVal)
1586 Diag(ECD->getLocation(), diag::ext_enum_value_not_int,
1587 InitVal.toString());
1588 }
Chris Lattnerac609682007-08-28 06:15:15 +00001589
1590 // Keep track of the size of positive and negative values.
1591 if (InitVal.isUnsigned() || !InitVal.isNegative())
Chris Lattner21dd8212008-01-14 21:47:29 +00001592 NumPositiveBits = std::max(NumPositiveBits,
1593 (unsigned)InitVal.getActiveBits());
Chris Lattnerac609682007-08-28 06:15:15 +00001594 else
Chris Lattner21dd8212008-01-14 21:47:29 +00001595 NumNegativeBits = std::max(NumNegativeBits,
1596 (unsigned)InitVal.getMinSignedBits());
Reid Spencer5f016e22007-07-11 17:01:13 +00001597
Chris Lattnerac609682007-08-28 06:15:15 +00001598 // Keep track of whether every enum element has type int (very commmon).
1599 if (AllElementsInt)
1600 AllElementsInt = ECD->getType() == Context.IntTy;
1601
Reid Spencer5f016e22007-07-11 17:01:13 +00001602 ECD->setNextDeclarator(EltList);
1603 EltList = ECD;
1604 }
1605
Chris Lattnerac609682007-08-28 06:15:15 +00001606 // Figure out the type that should be used for this enum.
1607 // FIXME: Support attribute(packed) on enums and -fshort-enums.
1608 QualType BestType;
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001609 unsigned BestWidth;
Chris Lattnerac609682007-08-28 06:15:15 +00001610
1611 if (NumNegativeBits) {
1612 // If there is a negative value, figure out the smallest integer type (of
1613 // int/long/longlong) that fits.
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001614 if (NumNegativeBits <= IntWidth && NumPositiveBits < IntWidth) {
Chris Lattnerac609682007-08-28 06:15:15 +00001615 BestType = Context.IntTy;
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001616 BestWidth = IntWidth;
1617 } else {
Ted Kremenek9c728dc2007-12-12 22:39:36 +00001618 BestWidth =
1619 Context.Target.getLongWidth(Context.getFullLoc(Enum->getLocation()));
1620
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001621 if (NumNegativeBits <= BestWidth && NumPositiveBits < BestWidth)
Chris Lattnerac609682007-08-28 06:15:15 +00001622 BestType = Context.LongTy;
1623 else {
Ted Kremenek9c728dc2007-12-12 22:39:36 +00001624 BestWidth = Context.Target.getLongLongWidth(
1625 Context.getFullLoc(Enum->getLocation()));
1626
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001627 if (NumNegativeBits > BestWidth || NumPositiveBits >= BestWidth)
Chris Lattnerac609682007-08-28 06:15:15 +00001628 Diag(Enum->getLocation(), diag::warn_enum_too_large);
1629 BestType = Context.LongLongTy;
1630 }
1631 }
1632 } else {
1633 // If there is no negative value, figure out which of uint, ulong, ulonglong
1634 // fits.
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001635 if (NumPositiveBits <= IntWidth) {
Chris Lattnerac609682007-08-28 06:15:15 +00001636 BestType = Context.UnsignedIntTy;
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001637 BestWidth = IntWidth;
1638 } else if (NumPositiveBits <=
Ted Kremenek9c728dc2007-12-12 22:39:36 +00001639 (BestWidth = Context.Target.getLongWidth(
1640 Context.getFullLoc(Enum->getLocation()))))
1641
Chris Lattnerac609682007-08-28 06:15:15 +00001642 BestType = Context.UnsignedLongTy;
1643 else {
Ted Kremenek9c728dc2007-12-12 22:39:36 +00001644 BestWidth =
1645 Context.Target.getLongLongWidth(Context.getFullLoc(Enum->getLocation()));
1646
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001647 assert(NumPositiveBits <= BestWidth &&
Chris Lattnerac609682007-08-28 06:15:15 +00001648 "How could an initializer get larger than ULL?");
1649 BestType = Context.UnsignedLongLongTy;
1650 }
1651 }
1652
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001653 // Loop over all of the enumerator constants, changing their types to match
1654 // the type of the enum if needed.
1655 for (unsigned i = 0; i != NumElements; ++i) {
1656 EnumConstantDecl *ECD =
1657 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(Elements[i]));
1658 if (!ECD) continue; // Already issued a diagnostic.
1659
1660 // Standard C says the enumerators have int type, but we allow, as an
1661 // extension, the enumerators to be larger than int size. If each
1662 // enumerator value fits in an int, type it as an int, otherwise type it the
1663 // same as the enumerator decl itself. This means that in "enum { X = 1U }"
1664 // that X has type 'int', not 'unsigned'.
1665 if (ECD->getType() == Context.IntTy)
1666 continue; // Already int type.
1667
1668 // Determine whether the value fits into an int.
1669 llvm::APSInt InitVal = ECD->getInitVal();
1670 bool FitsInInt;
1671 if (InitVal.isUnsigned() || !InitVal.isNegative())
1672 FitsInInt = InitVal.getActiveBits() < IntWidth;
1673 else
1674 FitsInInt = InitVal.getMinSignedBits() <= IntWidth;
1675
1676 // If it fits into an integer type, force it. Otherwise force it to match
1677 // the enum decl type.
1678 QualType NewTy;
1679 unsigned NewWidth;
1680 bool NewSign;
1681 if (FitsInInt) {
1682 NewTy = Context.IntTy;
1683 NewWidth = IntWidth;
1684 NewSign = true;
1685 } else if (ECD->getType() == BestType) {
1686 // Already the right type!
1687 continue;
1688 } else {
1689 NewTy = BestType;
1690 NewWidth = BestWidth;
1691 NewSign = BestType->isSignedIntegerType();
1692 }
1693
1694 // Adjust the APSInt value.
1695 InitVal.extOrTrunc(NewWidth);
1696 InitVal.setIsSigned(NewSign);
1697 ECD->setInitVal(InitVal);
1698
1699 // Adjust the Expr initializer and type.
1700 ECD->setInitExpr(new ImplicitCastExpr(NewTy, ECD->getInitExpr()));
1701 ECD->setType(NewTy);
1702 }
Chris Lattnerac609682007-08-28 06:15:15 +00001703
Chris Lattnere00b18c2007-08-28 18:24:31 +00001704 Enum->defineElements(EltList, BestType);
Chris Lattnere1e79852008-02-06 00:51:33 +00001705 Consumer.HandleTagDeclDefinition(Enum);
Reid Spencer5f016e22007-07-11 17:01:13 +00001706}
1707
Anders Carlssondfab6cb2008-02-08 00:33:21 +00001708Sema::DeclTy *Sema::ActOnFileScopeAsmDecl(SourceLocation Loc,
1709 ExprTy *expr) {
1710 StringLiteral *AsmString = cast<StringLiteral>((Expr*)expr);
1711
1712 return new FileScopeAsmDecl(Loc, AsmString);
1713}
1714
Chris Lattnerc6fdc342008-01-12 07:05:38 +00001715Sema::DeclTy* Sema::ActOnLinkageSpec(SourceLocation Loc,
1716 SourceLocation LBrace,
1717 SourceLocation RBrace,
1718 const char *Lang,
1719 unsigned StrSize,
1720 DeclTy *D) {
1721 LinkageSpecDecl::LanguageIDs Language;
1722 Decl *dcl = static_cast<Decl *>(D);
1723 if (strncmp(Lang, "\"C\"", StrSize) == 0)
1724 Language = LinkageSpecDecl::lang_c;
1725 else if (strncmp(Lang, "\"C++\"", StrSize) == 0)
1726 Language = LinkageSpecDecl::lang_cxx;
1727 else {
1728 Diag(Loc, diag::err_bad_language);
1729 return 0;
1730 }
1731
1732 // FIXME: Add all the various semantics of linkage specifications
1733 return new LinkageSpecDecl(Loc, Language, dcl);
1734}
1735
Reid Spencer5f016e22007-07-11 17:01:13 +00001736void Sema::HandleDeclAttribute(Decl *New, AttributeList *rawAttr) {
Anders Carlsson6ede0ff2007-12-19 06:16:30 +00001737 const char *attrName = rawAttr->getAttributeName()->getName();
1738 unsigned attrLen = rawAttr->getAttributeName()->getLength();
1739
Anders Carlssonabf5ad02007-12-19 17:43:24 +00001740 // Normalize the attribute name, __foo__ becomes foo.
1741 if (attrLen > 4 && attrName[0] == '_' && attrName[1] == '_' &&
1742 attrName[attrLen - 2] == '_' && attrName[attrLen - 1] == '_') {
1743 attrName += 2;
1744 attrLen -= 4;
1745 }
1746
1747 if (attrLen == 11 && !memcmp(attrName, "vector_size", 11)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001748 if (ValueDecl *vDecl = dyn_cast<ValueDecl>(New)) {
1749 QualType newType = HandleVectorTypeAttribute(vDecl->getType(), rawAttr);
1750 if (!newType.isNull()) // install the new vector type into the decl
1751 vDecl->setType(newType);
1752 }
1753 if (TypedefDecl *tDecl = dyn_cast<TypedefDecl>(New)) {
1754 QualType newType = HandleVectorTypeAttribute(tDecl->getUnderlyingType(),
1755 rawAttr);
1756 if (!newType.isNull()) // install the new vector type into the decl
1757 tDecl->setUnderlyingType(newType);
1758 }
Anders Carlssonabf5ad02007-12-19 17:43:24 +00001759 } else if (attrLen == 15 && !memcmp(attrName, "ocu_vector_type", 15)) {
Steve Naroffbea0b342007-07-29 16:33:31 +00001760 if (TypedefDecl *tDecl = dyn_cast<TypedefDecl>(New))
1761 HandleOCUVectorTypeAttribute(tDecl, rawAttr);
1762 else
Steve Naroff73322922007-07-18 18:00:27 +00001763 Diag(rawAttr->getAttributeLoc(),
1764 diag::err_typecheck_ocu_vector_not_typedef);
Christopher Lambebb97e92008-02-04 02:31:56 +00001765 } else if (attrLen == 13 && !memcmp(attrName, "address_space", 13)) {
1766 if (TypedefDecl *tDecl = dyn_cast<TypedefDecl>(New)) {
1767 QualType newType = HandleAddressSpaceTypeAttribute(
1768 tDecl->getUnderlyingType(),
1769 rawAttr);
1770 if (!newType.isNull()) // install the new addr spaced type into the decl
1771 tDecl->setUnderlyingType(newType);
1772 } else if (ValueDecl *vDecl = dyn_cast<ValueDecl>(New)) {
1773 QualType newType = HandleAddressSpaceTypeAttribute(vDecl->getType(),
1774 rawAttr);
1775 if (!newType.isNull()) // install the new addr spaced type into the decl
1776 vDecl->setType(newType);
1777 }
Anders Carlssonad148062008-02-16 00:29:18 +00001778 } else if (attrLen == 7 && !memcmp(attrName, "aligned", 7))
1779 HandleAlignedAttribute(New, rawAttr);
1780 else if (attrLen == 6 && !memcmp(attrName, "packed", 6))
1781 HandlePackedAttribute(New, rawAttr);
1782
Reid Spencer5f016e22007-07-11 17:01:13 +00001783 // FIXME: add other attributes...
1784}
1785
1786void Sema::HandleDeclAttributes(Decl *New, AttributeList *declspec_prefix,
1787 AttributeList *declarator_postfix) {
1788 while (declspec_prefix) {
1789 HandleDeclAttribute(New, declspec_prefix);
1790 declspec_prefix = declspec_prefix->getNext();
1791 }
1792 while (declarator_postfix) {
1793 HandleDeclAttribute(New, declarator_postfix);
1794 declarator_postfix = declarator_postfix->getNext();
1795 }
1796}
1797
Christopher Lambebb97e92008-02-04 02:31:56 +00001798QualType Sema::HandleAddressSpaceTypeAttribute(QualType curType,
1799 AttributeList *rawAttr) {
1800 // check the attribute arugments.
1801 if (rawAttr->getNumArgs() != 1) {
1802 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_wrong_number_arguments,
1803 std::string("1"));
1804 return QualType();
1805 }
1806 Expr *addrSpaceExpr = static_cast<Expr *>(rawAttr->getArg(0));
1807 llvm::APSInt addrSpace(32);
1808 if (!addrSpaceExpr->isIntegerConstantExpr(addrSpace, Context)) {
1809 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_address_space_not_int,
1810 addrSpaceExpr->getSourceRange());
1811 return QualType();
1812 }
1813 unsigned addressSpace = static_cast<unsigned>(addrSpace.getZExtValue());
1814
1815 // Zero is the default memory space, so no qualification is needed
1816 if (addressSpace == 0)
1817 return curType;
1818
1819 // TODO: Should we convert contained types of address space
1820 // qualified types here or or where they directly participate in conversions
1821 // (i.e. elsewhere)
1822
1823 return Context.getASQualType(curType, addressSpace);
1824}
1825
Steve Naroffbea0b342007-07-29 16:33:31 +00001826void Sema::HandleOCUVectorTypeAttribute(TypedefDecl *tDecl,
1827 AttributeList *rawAttr) {
1828 QualType curType = tDecl->getUnderlyingType();
Anders Carlsson78aaae92007-12-19 07:19:40 +00001829 // check the attribute arguments.
Steve Naroff73322922007-07-18 18:00:27 +00001830 if (rawAttr->getNumArgs() != 1) {
1831 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_wrong_number_arguments,
1832 std::string("1"));
Steve Naroffbea0b342007-07-29 16:33:31 +00001833 return;
Steve Naroff73322922007-07-18 18:00:27 +00001834 }
1835 Expr *sizeExpr = static_cast<Expr *>(rawAttr->getArg(0));
1836 llvm::APSInt vecSize(32);
1837 if (!sizeExpr->isIntegerConstantExpr(vecSize, Context)) {
1838 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_vector_size_not_int,
1839 sizeExpr->getSourceRange());
Steve Naroffbea0b342007-07-29 16:33:31 +00001840 return;
Steve Naroff73322922007-07-18 18:00:27 +00001841 }
1842 // unlike gcc's vector_size attribute, we do not allow vectors to be defined
1843 // in conjunction with complex types (pointers, arrays, functions, etc.).
1844 Type *canonType = curType.getCanonicalType().getTypePtr();
1845 if (!(canonType->isIntegerType() || canonType->isRealFloatingType())) {
1846 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_invalid_vector_type,
1847 curType.getCanonicalType().getAsString());
Steve Naroffbea0b342007-07-29 16:33:31 +00001848 return;
Steve Naroff73322922007-07-18 18:00:27 +00001849 }
1850 // unlike gcc's vector_size attribute, the size is specified as the
1851 // number of elements, not the number of bytes.
Chris Lattner701e5eb2007-09-04 02:45:27 +00001852 unsigned vectorSize = static_cast<unsigned>(vecSize.getZExtValue());
Steve Naroff73322922007-07-18 18:00:27 +00001853
1854 if (vectorSize == 0) {
1855 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_zero_size,
1856 sizeExpr->getSourceRange());
Steve Naroffbea0b342007-07-29 16:33:31 +00001857 return;
Steve Naroff73322922007-07-18 18:00:27 +00001858 }
Steve Naroffbea0b342007-07-29 16:33:31 +00001859 // Instantiate/Install the vector type, the number of elements is > 0.
1860 tDecl->setUnderlyingType(Context.getOCUVectorType(curType, vectorSize));
1861 // Remember this typedef decl, we will need it later for diagnostics.
1862 OCUVectorDecls.push_back(tDecl);
Steve Naroff73322922007-07-18 18:00:27 +00001863}
1864
Reid Spencer5f016e22007-07-11 17:01:13 +00001865QualType Sema::HandleVectorTypeAttribute(QualType curType,
Chris Lattnera7674d82007-07-13 22:13:22 +00001866 AttributeList *rawAttr) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001867 // check the attribute arugments.
1868 if (rawAttr->getNumArgs() != 1) {
1869 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_wrong_number_arguments,
1870 std::string("1"));
1871 return QualType();
1872 }
1873 Expr *sizeExpr = static_cast<Expr *>(rawAttr->getArg(0));
1874 llvm::APSInt vecSize(32);
Chris Lattner590b6642007-07-15 23:26:56 +00001875 if (!sizeExpr->isIntegerConstantExpr(vecSize, Context)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001876 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_vector_size_not_int,
1877 sizeExpr->getSourceRange());
1878 return QualType();
1879 }
1880 // navigate to the base type - we need to provide for vector pointers,
1881 // vector arrays, and functions returning vectors.
1882 Type *canonType = curType.getCanonicalType().getTypePtr();
1883
Steve Naroff73322922007-07-18 18:00:27 +00001884 if (canonType->isPointerType() || canonType->isArrayType() ||
1885 canonType->isFunctionType()) {
Chris Lattner54b263b2007-12-19 05:38:06 +00001886 assert(0 && "HandleVector(): Complex type construction unimplemented");
Steve Naroff73322922007-07-18 18:00:27 +00001887 /* FIXME: rebuild the type from the inside out, vectorizing the inner type.
1888 do {
1889 if (PointerType *PT = dyn_cast<PointerType>(canonType))
1890 canonType = PT->getPointeeType().getTypePtr();
1891 else if (ArrayType *AT = dyn_cast<ArrayType>(canonType))
1892 canonType = AT->getElementType().getTypePtr();
1893 else if (FunctionType *FT = dyn_cast<FunctionType>(canonType))
1894 canonType = FT->getResultType().getTypePtr();
1895 } while (canonType->isPointerType() || canonType->isArrayType() ||
1896 canonType->isFunctionType());
1897 */
Reid Spencer5f016e22007-07-11 17:01:13 +00001898 }
1899 // the base type must be integer or float.
1900 if (!(canonType->isIntegerType() || canonType->isRealFloatingType())) {
1901 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_invalid_vector_type,
1902 curType.getCanonicalType().getAsString());
1903 return QualType();
1904 }
Chris Lattner701e5eb2007-09-04 02:45:27 +00001905 unsigned typeSize = static_cast<unsigned>(
1906 Context.getTypeSize(curType, rawAttr->getAttributeLoc()));
Reid Spencer5f016e22007-07-11 17:01:13 +00001907 // vecSize is specified in bytes - convert to bits.
Chris Lattner701e5eb2007-09-04 02:45:27 +00001908 unsigned vectorSize = static_cast<unsigned>(vecSize.getZExtValue() * 8);
Reid Spencer5f016e22007-07-11 17:01:13 +00001909
1910 // the vector size needs to be an integral multiple of the type size.
1911 if (vectorSize % typeSize) {
1912 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_invalid_size,
1913 sizeExpr->getSourceRange());
1914 return QualType();
1915 }
1916 if (vectorSize == 0) {
1917 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_zero_size,
1918 sizeExpr->getSourceRange());
1919 return QualType();
1920 }
1921 // Since OpenCU requires 3 element vectors (OpenCU 5.1.2), we don't restrict
1922 // the number of elements to be a power of two (unlike GCC).
1923 // Instantiate the vector type, the number of elements is > 0.
Steve Naroff73322922007-07-18 18:00:27 +00001924 return Context.getVectorType(curType, vectorSize/typeSize);
Reid Spencer5f016e22007-07-11 17:01:13 +00001925}
1926
Anders Carlssonad148062008-02-16 00:29:18 +00001927void Sema::HandlePackedAttribute(Decl *d, AttributeList *rawAttr)
1928{
1929 // check the attribute arguments.
1930 if (rawAttr->getNumArgs() > 0) {
1931 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_wrong_number_arguments,
1932 std::string("0"));
1933 return;
1934 }
1935
1936 if (TagDecl *TD = dyn_cast<TagDecl>(d))
1937 TD->addAttr(new PackedAttr);
1938 else if (FieldDecl *FD = dyn_cast<FieldDecl>(d)) {
1939 // If the alignment is less than or equal to 8 bits, the packed attribute
1940 // has no effect.
1941 if (Context.getTypeAlign(FD->getType(), SourceLocation()) <= 8)
1942 Diag(rawAttr->getAttributeLoc(),
1943 diag::warn_attribute_ignored_for_field_of_type,
1944 rawAttr->getAttributeName()->getName(),
1945 FD->getType().getAsString());
1946 else
Anders Carlsson425a6092008-02-16 00:39:40 +00001947 FD->addAttr(new PackedAttr);
Anders Carlssonad148062008-02-16 00:29:18 +00001948 } else
1949 Diag(rawAttr->getAttributeLoc(), diag::warn_attribute_ignored,
1950 rawAttr->getAttributeName()->getName());
1951}
1952
Anders Carlsson78aaae92007-12-19 07:19:40 +00001953void Sema::HandleAlignedAttribute(Decl *d, AttributeList *rawAttr)
1954{
1955 // check the attribute arguments.
Eli Friedman4ca08672008-01-30 17:38:42 +00001956 if (rawAttr->getNumArgs() > 1) {
Anders Carlsson78aaae92007-12-19 07:19:40 +00001957 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_wrong_number_arguments,
1958 std::string("1"));
1959 return;
1960 }
Eli Friedman4ca08672008-01-30 17:38:42 +00001961
Devang Patel6c751c22008-01-30 18:00:07 +00001962 // TODO: We probably need to actually do something with aligned attribute.
Eli Friedman4ca08672008-01-30 17:38:42 +00001963 if (rawAttr->getNumArgs() == 0)
1964 return;
1965
Anders Carlsson78aaae92007-12-19 07:19:40 +00001966 Expr *alignmentExpr = static_cast<Expr *>(rawAttr->getArg(0));
1967 llvm::APSInt alignment(32);
1968 if (!alignmentExpr->isIntegerConstantExpr(alignment, Context)) {
1969 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_vector_size_not_int,
1970 alignmentExpr->getSourceRange());
1971 return;
1972 }
1973}