blob: 28940ac9392f60d60e874c609e5091f020df52e4 [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) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000138 // If this is a builtin on this (or all) targets, create the decl.
139 if (unsigned BuiltinID = II->getBuiltinID())
140 return LazilyCreateBuiltin(II, BuiltinID, S);
141 }
142 return 0;
143}
144
Anders Carlsson7c50aca2007-10-15 20:28:48 +0000145void Sema::InitBuiltinVaListType()
146{
147 if (!Context.getBuiltinVaListType().isNull())
148 return;
149
150 IdentifierInfo *VaIdent = &Context.Idents.get("__builtin_va_list");
151 ScopedDecl *VaDecl = LookupScopedDecl(VaIdent, Decl::IDNS_Ordinary,
152 SourceLocation(), TUScope);
Steve Naroff733002f2007-10-18 22:17:45 +0000153 TypedefDecl *VaTypedef = cast<TypedefDecl>(VaDecl);
Anders Carlsson7c50aca2007-10-15 20:28:48 +0000154 Context.setBuiltinVaListType(Context.getTypedefType(VaTypedef));
155}
156
Reid Spencer5f016e22007-07-11 17:01:13 +0000157/// LazilyCreateBuiltin - The specified Builtin-ID was first used at file scope.
158/// lazily create a decl for it.
Chris Lattner22b73ba2007-10-10 23:42:28 +0000159ScopedDecl *Sema::LazilyCreateBuiltin(IdentifierInfo *II, unsigned bid,
160 Scope *S) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000161 Builtin::ID BID = (Builtin::ID)bid;
162
Anders Carlsson7c50aca2007-10-15 20:28:48 +0000163 if (BID == Builtin::BI__builtin_va_start ||
Anders Carlsson793680e2007-10-12 23:56:29 +0000164 BID == Builtin::BI__builtin_va_copy ||
Anders Carlsson7c50aca2007-10-15 20:28:48 +0000165 BID == Builtin::BI__builtin_va_end)
166 InitBuiltinVaListType();
167
Anders Carlssonb2cf3572007-10-11 01:00:40 +0000168 QualType R = Context.BuiltinInfo.GetBuiltinType(BID, Context);
Reid Spencer5f016e22007-07-11 17:01:13 +0000169 FunctionDecl *New = new FunctionDecl(SourceLocation(), II, R,
Chris Lattner70c8b2e2007-08-26 04:02:13 +0000170 FunctionDecl::Extern, false, 0);
Reid Spencer5f016e22007-07-11 17:01:13 +0000171
172 // Find translation-unit scope to insert this function into.
Chris Lattner31e05722007-08-26 06:24:45 +0000173 if (Scope *FnS = S->getFnParent())
174 S = FnS->getParent(); // Skip all scopes in a function at once.
Reid Spencer5f016e22007-07-11 17:01:13 +0000175 while (S->getParent())
176 S = S->getParent();
177 S->AddDecl(New);
178
179 // Add this decl to the end of the identifier info.
Steve Naroffc752d042007-09-13 18:10:37 +0000180 if (ScopedDecl *LastDecl = II->getFETokenInfo<ScopedDecl>()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000181 // Scan until we find the last (outermost) decl in the id chain.
182 while (LastDecl->getNext())
183 LastDecl = LastDecl->getNext();
184 // Insert before (outside) it.
185 LastDecl->setNext(New);
186 } else {
187 II->setFETokenInfo(New);
188 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000189 return New;
190}
191
192/// MergeTypeDefDecl - We just parsed a typedef 'New' which has the same name
193/// and scope as a previous declaration 'Old'. Figure out how to resolve this
194/// situation, merging decls or emitting diagnostics as appropriate.
195///
Steve Naroff8e74c932007-09-13 21:41:19 +0000196TypedefDecl *Sema::MergeTypeDefDecl(TypedefDecl *New, ScopedDecl *OldD) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000197 // Verify the old decl was also a typedef.
198 TypedefDecl *Old = dyn_cast<TypedefDecl>(OldD);
199 if (!Old) {
200 Diag(New->getLocation(), diag::err_redefinition_different_kind,
201 New->getName());
202 Diag(OldD->getLocation(), diag::err_previous_definition);
203 return New;
204 }
205
Steve Naroff8ee529b2007-10-31 18:42:27 +0000206 // Allow multiple definitions for ObjC built-in typedefs.
207 // FIXME: Verify the underlying types are equivalent!
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000208 if (getLangOptions().ObjC1 && isBuiltinObjCType(New))
Steve Naroff8ee529b2007-10-31 18:42:27 +0000209 return Old;
Steve Naroff4c49a6c2008-01-30 23:46:05 +0000210
211 // Redeclaration of a type is a constraint violation (6.7.2.3p1).
212 // Apparently GCC, Intel, and Sun all silently ignore the redeclaration if
213 // *either* declaration is in a system header. The code below implements
214 // this adhoc compatibility rule. FIXME: The following code will not
215 // work properly when compiling ".i" files (containing preprocessed output).
216 SourceManager &SrcMgr = Context.getSourceManager();
217 const FileEntry *OldDeclFile = SrcMgr.getFileEntryForLoc(Old->getLocation());
218 const FileEntry *NewDeclFile = SrcMgr.getFileEntryForLoc(New->getLocation());
219 HeaderSearch &HdrInfo = PP.getHeaderSearchInfo();
220 DirectoryLookup::DirType OldDirType = HdrInfo.getFileDirFlavor(OldDeclFile);
221 DirectoryLookup::DirType NewDirType = HdrInfo.getFileDirFlavor(NewDeclFile);
222
Steve Naroffd62701b2008-02-07 03:50:06 +0000223 if ((OldDirType == DirectoryLookup::ExternCSystemHeaderDir ||
224 NewDirType == DirectoryLookup::ExternCSystemHeaderDir) ||
225 getLangOptions().Microsoft)
Steve Naroff4c49a6c2008-01-30 23:46:05 +0000226 return New;
Steve Naroff8ee529b2007-10-31 18:42:27 +0000227
Reid Spencer5f016e22007-07-11 17:01:13 +0000228 // TODO: CHECK FOR CONFLICTS, multiple decls with same name in one scope.
229 // TODO: This is totally simplistic. It should handle merging functions
230 // together etc, merging extern int X; int X; ...
231 Diag(New->getLocation(), diag::err_redefinition, New->getName());
232 Diag(Old->getLocation(), diag::err_previous_definition);
233 return New;
234}
235
Chris Lattnerddee4232008-03-03 03:28:21 +0000236/// DeclhasAttr - returns true if decl Declaration already has the target attribute.
237static bool DeclHasAttr(const Decl *decl, const Attr *target) {
238 for (const Attr *attr = decl->getAttrs(); attr; attr = attr->getNext())
239 if (attr->getKind() == target->getKind())
240 return true;
241
242 return false;
243}
244
245/// MergeAttributes - append attributes from the Old decl to the New one.
246static void MergeAttributes(Decl *New, Decl *Old) {
247 Attr *attr = const_cast<Attr*>(Old->getAttrs()), *tmp;
248
249// FIXME: fix this code to cleanup the Old attrs correctly
250 while (attr) {
251 tmp = attr;
252 attr = attr->getNext();
253
254 if (!DeclHasAttr(New, tmp)) {
255 New->addAttr(tmp);
256 } else {
257 tmp->setNext(0);
258 delete(tmp);
259 }
260 }
261}
262
Reid Spencer5f016e22007-07-11 17:01:13 +0000263/// MergeFunctionDecl - We just parsed a function 'New' which has the same name
264/// and scope as a previous declaration 'Old'. Figure out how to resolve this
265/// situation, merging decls or emitting diagnostics as appropriate.
266///
Steve Naroff8e74c932007-09-13 21:41:19 +0000267FunctionDecl *Sema::MergeFunctionDecl(FunctionDecl *New, ScopedDecl *OldD) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000268 // Verify the old decl was also a function.
269 FunctionDecl *Old = dyn_cast<FunctionDecl>(OldD);
270 if (!Old) {
271 Diag(New->getLocation(), diag::err_redefinition_different_kind,
272 New->getName());
273 Diag(OldD->getLocation(), diag::err_previous_definition);
274 return New;
275 }
Chris Lattner7e669b22008-02-29 16:48:43 +0000276
Chris Lattnerddee4232008-03-03 03:28:21 +0000277 MergeAttributes(New, Old);
278
Reid Spencer5f016e22007-07-11 17:01:13 +0000279
Chris Lattner55196442007-11-20 19:04:50 +0000280 QualType OldQType = Old->getCanonicalType();
281 QualType NewQType = New->getCanonicalType();
282
Steve Naroffadbbd0c2008-01-14 20:51:29 +0000283 // Function types need to be compatible, not identical. This handles
284 // duplicate function decls like "void f(int); void f(enum X);" properly.
285 if (Context.functionTypesAreCompatible(OldQType, NewQType))
286 return New;
Chris Lattnere3995fe2007-11-06 06:07:26 +0000287
Steve Naroff837618c2008-01-16 15:01:34 +0000288 // A function that has already been declared has been redeclared or defined
289 // with a different type- show appropriate diagnostic
290 diag::kind PrevDiag = Old->getBody() ? diag::err_previous_definition :
291 diag::err_previous_declaration;
292
Reid Spencer5f016e22007-07-11 17:01:13 +0000293 // TODO: CHECK FOR CONFLICTS, multiple decls with same name in one scope.
294 // TODO: This is totally simplistic. It should handle merging functions
295 // together etc, merging extern int X; int X; ...
Steve Naroff837618c2008-01-16 15:01:34 +0000296 Diag(New->getLocation(), diag::err_conflicting_types, New->getName());
297 Diag(Old->getLocation(), PrevDiag);
Reid Spencer5f016e22007-07-11 17:01:13 +0000298 return New;
299}
300
Chris Lattnerfcc2d262007-11-06 04:28:31 +0000301/// equivalentArrayTypes - Used to determine whether two array types are
302/// equivalent.
303/// We need to check this explicitly as an incomplete array definition is
304/// considered a VariableArrayType, so will not match a complete array
305/// definition that would be otherwise equivalent.
306static bool areEquivalentArrayTypes(QualType NewQType, QualType OldQType) {
307 const ArrayType *NewAT = NewQType->getAsArrayType();
308 const ArrayType *OldAT = OldQType->getAsArrayType();
309
310 if (!NewAT || !OldAT)
311 return false;
312
313 // If either (or both) array types in incomplete we need to strip off the
314 // outer VariableArrayType. Once the outer VAT is removed the remaining
315 // types must be identical if the array types are to be considered
316 // equivalent.
317 // eg. int[][1] and int[1][1] become
318 // VAT(null, CAT(1, int)) and CAT(1, CAT(1, int))
319 // removing the outermost VAT gives
320 // CAT(1, int) and CAT(1, int)
321 // which are equal, therefore the array types are equivalent.
Eli Friedman9db13972008-02-15 12:53:51 +0000322 if (NewAT->isIncompleteArrayType() || OldAT->isIncompleteArrayType()) {
Chris Lattnerfcc2d262007-11-06 04:28:31 +0000323 if (NewAT->getIndexTypeQualifier() != OldAT->getIndexTypeQualifier())
324 return false;
Eli Friedman04930252008-01-29 07:51:12 +0000325 NewQType = NewAT->getElementType().getCanonicalType();
326 OldQType = OldAT->getElementType().getCanonicalType();
Chris Lattnerfcc2d262007-11-06 04:28:31 +0000327 }
328
329 return NewQType == OldQType;
330}
331
Reid Spencer5f016e22007-07-11 17:01:13 +0000332/// MergeVarDecl - We just parsed a variable 'New' which has the same name
333/// and scope as a previous declaration 'Old'. Figure out how to resolve this
334/// situation, merging decls or emitting diagnostics as appropriate.
335///
336/// FIXME: Need to carefully consider tentative definition rules (C99 6.9.2p2).
337/// For example, we incorrectly complain about i1, i4 from C99 6.9.2p4.
338///
Steve Naroff8e74c932007-09-13 21:41:19 +0000339VarDecl *Sema::MergeVarDecl(VarDecl *New, ScopedDecl *OldD) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000340 // Verify the old decl was also a variable.
341 VarDecl *Old = dyn_cast<VarDecl>(OldD);
342 if (!Old) {
343 Diag(New->getLocation(), diag::err_redefinition_different_kind,
344 New->getName());
345 Diag(OldD->getLocation(), diag::err_previous_definition);
346 return New;
347 }
Chris Lattnerddee4232008-03-03 03:28:21 +0000348
349 MergeAttributes(New, Old);
350
Reid Spencer5f016e22007-07-11 17:01:13 +0000351 // Verify the types match.
Chris Lattnerfcc2d262007-11-06 04:28:31 +0000352 if (Old->getCanonicalType() != New->getCanonicalType() &&
353 !areEquivalentArrayTypes(New->getCanonicalType(), Old->getCanonicalType())) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000354 Diag(New->getLocation(), diag::err_redefinition, New->getName());
355 Diag(Old->getLocation(), diag::err_previous_definition);
356 return New;
357 }
Steve Naroffb7b032e2008-01-30 00:44:01 +0000358 // C99 6.2.2p4: Check if we have a static decl followed by a non-static.
359 if (New->getStorageClass() == VarDecl::Static &&
360 (Old->getStorageClass() == VarDecl::None ||
361 Old->getStorageClass() == VarDecl::Extern)) {
362 Diag(New->getLocation(), diag::err_static_non_static, New->getName());
363 Diag(Old->getLocation(), diag::err_previous_definition);
364 return New;
365 }
366 // C99 6.2.2p4: Check if we have a non-static decl followed by a static.
367 if (New->getStorageClass() != VarDecl::Static &&
368 Old->getStorageClass() == VarDecl::Static) {
369 Diag(New->getLocation(), diag::err_non_static_static, New->getName());
370 Diag(Old->getLocation(), diag::err_previous_definition);
371 return New;
372 }
373 // We've verified the types match, now handle "tentative" definitions.
374 FileVarDecl *OldFSDecl = dyn_cast<FileVarDecl>(Old);
375 FileVarDecl *NewFSDecl = dyn_cast<FileVarDecl>(New);
376
377 if (OldFSDecl && NewFSDecl) {
378 // Handle C "tentative" external object definitions (C99 6.9.2).
379 bool OldIsTentative = false;
380 bool NewIsTentative = false;
381
382 if (!OldFSDecl->getInit() &&
383 (OldFSDecl->getStorageClass() == VarDecl::None ||
384 OldFSDecl->getStorageClass() == VarDecl::Static))
385 OldIsTentative = true;
386
387 // FIXME: this check doesn't work (since the initializer hasn't been
388 // attached yet). This check should be moved to FinalizeDeclaratorGroup.
389 // Unfortunately, by the time we get to FinializeDeclaratorGroup, we've
390 // thrown out the old decl.
391 if (!NewFSDecl->getInit() &&
392 (NewFSDecl->getStorageClass() == VarDecl::None ||
393 NewFSDecl->getStorageClass() == VarDecl::Static))
394 ; // change to NewIsTentative = true; once the code is moved.
395
396 if (NewIsTentative || OldIsTentative)
397 return New;
398 }
399 if (Old->getStorageClass() != VarDecl::Extern &&
400 New->getStorageClass() != VarDecl::Extern) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000401 Diag(New->getLocation(), diag::err_redefinition, New->getName());
402 Diag(Old->getLocation(), diag::err_previous_definition);
403 }
404 return New;
405}
406
407/// ParsedFreeStandingDeclSpec - This method is invoked when a declspec with
408/// no declarator (e.g. "struct foo;") is parsed.
409Sema::DeclTy *Sema::ParsedFreeStandingDeclSpec(Scope *S, DeclSpec &DS) {
410 // TODO: emit error on 'int;' or 'const enum foo;'.
411 // TODO: emit error on 'typedef int;'
412 // if (!DS.isMissingDeclaratorOk()) Diag(...);
413
Steve Naroff92199282007-11-17 21:37:36 +0000414 return dyn_cast_or_null<TagDecl>(static_cast<Decl *>(DS.getTypeRep()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000415}
416
Steve Naroffd0091aa2008-01-10 22:15:12 +0000417bool Sema::CheckSingleInitializer(Expr *&Init, QualType DeclType) {
Steve Narofff0090632007-09-02 02:04:30 +0000418 // Get the type before calling CheckSingleAssignmentConstraints(), since
419 // it can promote the expression.
Chris Lattner5cf216b2008-01-04 18:04:52 +0000420 QualType InitType = Init->getType();
Steve Narofff0090632007-09-02 02:04:30 +0000421
Chris Lattner5cf216b2008-01-04 18:04:52 +0000422 AssignConvertType ConvTy = CheckSingleAssignmentConstraints(DeclType, Init);
423 return DiagnoseAssignmentResult(ConvTy, Init->getLocStart(), DeclType,
424 InitType, Init, "initializing");
Steve Narofff0090632007-09-02 02:04:30 +0000425}
426
Steve Naroff9e8925e2007-09-04 14:36:54 +0000427bool Sema::CheckInitExpr(Expr *expr, InitListExpr *IList, unsigned slot,
Steve Naroffd0091aa2008-01-10 22:15:12 +0000428 QualType ElementType) {
Chris Lattner33b7b062007-12-11 23:15:04 +0000429 Expr *savExpr = expr; // Might be promoted by CheckSingleInitializer.
Steve Naroffd0091aa2008-01-10 22:15:12 +0000430 if (CheckSingleInitializer(expr, ElementType))
Chris Lattner33b7b062007-12-11 23:15:04 +0000431 return true; // types weren't compatible.
432
Steve Naroff9e8925e2007-09-04 14:36:54 +0000433 if (savExpr != expr) // The type was promoted, update initializer list.
434 IList->setInit(slot, expr);
Steve Naroff371227d2007-09-04 02:20:04 +0000435 return false;
436}
437
Steve Naroffa49e1fa2008-01-22 00:55:40 +0000438bool Sema::CheckStringLiteralInit(StringLiteral *strLiteral, QualType &DeclT) {
Eli Friedmanc5773c42008-02-15 18:16:39 +0000439 if (const IncompleteArrayType *IAT = DeclT->getAsIncompleteArrayType()) {
Steve Naroffa49e1fa2008-01-22 00:55:40 +0000440 // C99 6.7.8p14. We have an array of character type with unknown size
441 // being initialized to a string literal.
442 llvm::APSInt ConstVal(32);
443 ConstVal = strLiteral->getByteLength() + 1;
444 // Return a new array type (C99 6.7.8p22).
Eli Friedmanc5773c42008-02-15 18:16:39 +0000445 DeclT = Context.getConstantArrayType(IAT->getElementType(), ConstVal,
Steve Naroffa49e1fa2008-01-22 00:55:40 +0000446 ArrayType::Normal, 0);
447 } else if (const ConstantArrayType *CAT = DeclT->getAsConstantArrayType()) {
448 // C99 6.7.8p14. We have an array of character type with known size.
449 if (strLiteral->getByteLength() > (unsigned)CAT->getMaximumElements())
450 Diag(strLiteral->getSourceRange().getBegin(),
451 diag::warn_initializer_string_for_char_array_too_long,
452 strLiteral->getSourceRange());
453 } else {
454 assert(0 && "HandleStringLiteralInit(): Invalid array type");
455 }
456 // Set type from "char *" to "constant array of char".
457 strLiteral->setType(DeclT);
458 // For now, we always return false (meaning success).
459 return false;
460}
461
462StringLiteral *Sema::IsStringLiteralInit(Expr *Init, QualType DeclType) {
Steve Naroffa49e1fa2008-01-22 00:55:40 +0000463 const ArrayType *AT = DeclType->getAsArrayType();
Steve Naroffa9960332008-01-25 00:51:06 +0000464 if (AT && AT->getElementType()->isCharType()) {
465 return dyn_cast<StringLiteral>(Init);
466 }
Steve Naroffa49e1fa2008-01-22 00:55:40 +0000467 return 0;
468}
469
Steve Naroffa9960332008-01-25 00:51:06 +0000470// CheckInitializerListTypes - Checks the types of elements of an initializer
471// list. This function is recursive: it calls itself to initialize subelements
472// of aggregate types. Note that the topLevel parameter essentially refers to
473// whether this expression "owns" the initializer list passed in, or if this
474// initialization is taking elements out of a parent initializer. Each
475// call to this function adds zero or more to startIndex, reports any errors,
476// and returns true if it found any inconsistent types.
477bool Sema::CheckInitializerListTypes(InitListExpr*& IList, QualType &DeclType,
478 bool topLevel, unsigned& startIndex) {
Steve Naroff2fdc3742007-12-10 22:44:33 +0000479 bool hadError = false;
Steve Naroffa9960332008-01-25 00:51:06 +0000480
481 if (DeclType->isScalarType()) {
482 // The simplest case: initializing a single scalar
483 if (topLevel) {
484 Diag(IList->getLocStart(), diag::warn_braces_around_scalar_init,
485 IList->getSourceRange());
486 }
487 if (startIndex < IList->getNumInits()) {
488 Expr* expr = IList->getInit(startIndex);
489 if (InitListExpr *SubInitList = dyn_cast<InitListExpr>(expr)) {
490 // FIXME: Should an error be reported here instead?
491 unsigned newIndex = 0;
492 CheckInitializerListTypes(SubInitList, DeclType, true, newIndex);
493 } else {
494 hadError |= CheckInitExpr(expr, IList, startIndex, DeclType);
495 }
496 ++startIndex;
497 }
498 // FIXME: Should an error be reported for empty initializer list + scalar?
499 } else if (DeclType->isVectorType()) {
500 if (startIndex < IList->getNumInits()) {
501 const VectorType *VT = DeclType->getAsVectorType();
502 int maxElements = VT->getNumElements();
503 QualType elementType = VT->getElementType();
504
505 for (int i = 0; i < maxElements; ++i) {
506 // Don't attempt to go past the end of the init list
507 if (startIndex >= IList->getNumInits())
508 break;
509 Expr* expr = IList->getInit(startIndex);
510 if (InitListExpr *SubInitList = dyn_cast<InitListExpr>(expr)) {
511 unsigned newIndex = 0;
512 hadError |= CheckInitializerListTypes(SubInitList, elementType,
513 true, newIndex);
514 ++startIndex;
515 } else {
516 hadError |= CheckInitializerListTypes(IList, elementType,
517 false, startIndex);
518 }
519 }
520 }
521 } else if (DeclType->isAggregateType() || DeclType->isUnionType()) {
522 if (DeclType->isStructureType() || DeclType->isUnionType()) {
Steve Naroff578edc62008-01-28 02:00:41 +0000523 if (startIndex < IList->getNumInits() && !topLevel &&
524 Context.typesAreCompatible(IList->getInit(startIndex)->getType(),
525 DeclType)) {
Steve Naroffa9960332008-01-25 00:51:06 +0000526 // We found a compatible struct; per the standard, this initializes the
527 // struct. (The C standard technically says that this only applies for
528 // initializers for declarations with automatic scope; however, this
529 // construct is unambiguous anyway because a struct cannot contain
530 // a type compatible with itself. We'll output an error when we check
531 // if the initializer is constant.)
532 // FIXME: Is a call to CheckSingleInitializer required here?
533 ++startIndex;
534 } else {
535 RecordDecl* structDecl = DeclType->getAsRecordType()->getDecl();
Steve Naroffb43eaa52008-02-11 00:06:17 +0000536
Steve Naroff406db932008-02-11 21:52:37 +0000537 // If the record is invalid, some of it's members are invalid. To avoid
538 // confusion, we forgo checking the intializer for the entire record.
Steve Naroffb43eaa52008-02-11 00:06:17 +0000539 if (structDecl->isInvalidDecl())
540 return true;
541
Steve Naroffa9960332008-01-25 00:51:06 +0000542 // If structDecl is a forward declaration, this loop won't do anything;
543 // That's okay, because an error should get printed out elsewhere. It
544 // might be worthwhile to skip over the rest of the initializer, though.
545 int numMembers = structDecl->getNumMembers() -
546 structDecl->hasFlexibleArrayMember();
547 for (int i = 0; i < numMembers; i++) {
548 // Don't attempt to go past the end of the init list
549 if (startIndex >= IList->getNumInits())
550 break;
551 FieldDecl * curField = structDecl->getMember(i);
552 if (!curField->getIdentifier()) {
553 // Don't initialize unnamed fields, e.g. "int : 20;"
554 continue;
555 }
556 QualType fieldType = curField->getType();
557 Expr* expr = IList->getInit(startIndex);
558 if (InitListExpr *SubInitList = dyn_cast<InitListExpr>(expr)) {
559 unsigned newStart = 0;
560 hadError |= CheckInitializerListTypes(SubInitList, fieldType,
561 true, newStart);
562 ++startIndex;
563 } else {
564 hadError |= CheckInitializerListTypes(IList, fieldType,
565 false, startIndex);
566 }
567 if (DeclType->isUnionType())
568 break;
569 }
570 // FIXME: Implement flexible array initialization GCC extension (it's a
571 // really messy extension to implement, unfortunately...the necessary
572 // information isn't actually even here!)
573 }
574 } else if (DeclType->isArrayType()) {
575 // Check for the special-case of initializing an array with a string.
576 if (startIndex < IList->getNumInits()) {
577 if (StringLiteral *lit = IsStringLiteralInit(IList->getInit(startIndex),
578 DeclType)) {
579 CheckStringLiteralInit(lit, DeclType);
580 ++startIndex;
581 if (topLevel && startIndex < IList->getNumInits()) {
582 // We have leftover initializers; warn
583 Diag(IList->getInit(startIndex)->getLocStart(),
584 diag::err_excess_initializers_in_char_array_initializer,
585 IList->getInit(startIndex)->getSourceRange());
586 }
587 return false;
588 }
589 }
590 int maxElements;
Eli Friedmanc5773c42008-02-15 18:16:39 +0000591 if (DeclType->isIncompleteArrayType()) {
Steve Naroffa9960332008-01-25 00:51:06 +0000592 // FIXME: use a proper constant
593 maxElements = 0x7FFFFFFF;
Chris Lattner212839c2008-02-20 23:17:35 +0000594 } else if (const VariableArrayType *VAT =
595 DeclType->getAsVariableArrayType()) {
Steve Naroffa9960332008-01-25 00:51:06 +0000596 // Check for VLAs; in standard C it would be possible to check this
597 // earlier, but I don't know where clang accepts VLAs (gcc accepts
598 // them in all sorts of strange places).
Eli Friedmanc5773c42008-02-15 18:16:39 +0000599 Diag(VAT->getSizeExpr()->getLocStart(),
600 diag::err_variable_object_no_init,
601 VAT->getSizeExpr()->getSourceRange());
602 hadError = true;
603 maxElements = 0x7FFFFFFF;
Steve Naroffa9960332008-01-25 00:51:06 +0000604 } else {
605 const ConstantArrayType *CAT = DeclType->getAsConstantArrayType();
606 maxElements = static_cast<int>(CAT->getSize().getZExtValue());
607 }
608 QualType elementType = DeclType->getAsArrayType()->getElementType();
609 int numElements = 0;
610 for (int i = 0; i < maxElements; ++i, ++numElements) {
611 // Don't attempt to go past the end of the init list
612 if (startIndex >= IList->getNumInits())
613 break;
614 Expr* expr = IList->getInit(startIndex);
615 if (InitListExpr *SubInitList = dyn_cast<InitListExpr>(expr)) {
616 unsigned newIndex = 0;
617 hadError |= CheckInitializerListTypes(SubInitList, elementType,
618 true, newIndex);
619 ++startIndex;
620 } else {
621 hadError |= CheckInitializerListTypes(IList, elementType,
622 false, startIndex);
623 }
624 }
Eli Friedman9db13972008-02-15 12:53:51 +0000625 if (DeclType->isIncompleteArrayType()) {
Steve Naroffa9960332008-01-25 00:51:06 +0000626 // If this is an incomplete array type, the actual type needs to
627 // be calculated here
628 if (numElements == 0) {
629 // Sizing an array implicitly to zero is not allowed
630 // (It could in theory be allowed, but it doesn't really matter.)
631 Diag(IList->getLocStart(),
632 diag::err_at_least_one_initializer_needed_to_size_array);
633 hadError = true;
634 } else {
635 llvm::APSInt ConstVal(32);
636 ConstVal = numElements;
637 DeclType = Context.getConstantArrayType(elementType, ConstVal,
638 ArrayType::Normal, 0);
639 }
640 }
641 } else {
642 assert(0 && "Aggregate that isn't a function or array?!");
643 }
644 } else {
645 // In C, all types are either scalars or aggregates, but
646 // additional handling is needed here for C++ (and possibly others?).
647 assert(0 && "Unsupported initializer type");
648 }
649
650 // If this init list is a base list, we set the type; an initializer doesn't
651 // fundamentally have a type, but this makes the ASTs a bit easier to read
652 if (topLevel)
653 IList->setType(DeclType);
654
655 if (topLevel && startIndex < IList->getNumInits()) {
656 // We have leftover initializers; warn
657 Diag(IList->getInit(startIndex)->getLocStart(),
658 diag::warn_excess_initializers,
659 IList->getInit(startIndex)->getSourceRange());
660 }
661 return hadError;
662}
663
664bool Sema::CheckInitializerTypes(Expr *&Init, QualType &DeclType) {
Steve Naroffca107302008-01-21 23:53:58 +0000665 // C99 6.7.8p3: The type of the entity to be initialized shall be an array
666 // of unknown size ("[]") or an object type that is not a variable array type.
Eli Friedmanc5773c42008-02-15 18:16:39 +0000667 if (const VariableArrayType *VAT = DeclType->getAsVariableArrayType())
Steve Naroffca107302008-01-21 23:53:58 +0000668 return Diag(VAT->getSizeExpr()->getLocStart(),
669 diag::err_variable_object_no_init,
670 VAT->getSizeExpr()->getSourceRange());
671
Steve Naroff2fdc3742007-12-10 22:44:33 +0000672 InitListExpr *InitList = dyn_cast<InitListExpr>(Init);
673 if (!InitList) {
Steve Naroffa49e1fa2008-01-22 00:55:40 +0000674 // FIXME: Handle wide strings
675 if (StringLiteral *strLiteral = IsStringLiteralInit(Init, DeclType))
676 return CheckStringLiteralInit(strLiteral, DeclType);
Eli Friedmana312ce22008-02-08 00:48:24 +0000677
678 if (DeclType->isArrayType())
679 return Diag(Init->getLocStart(),
680 diag::err_array_init_list_required,
681 Init->getSourceRange());
682
Steve Naroffd0091aa2008-01-10 22:15:12 +0000683 return CheckSingleInitializer(Init, DeclType);
Steve Naroff2fdc3742007-12-10 22:44:33 +0000684 }
Steve Naroffa9960332008-01-25 00:51:06 +0000685 unsigned newIndex = 0;
686 return CheckInitializerListTypes(InitList, DeclType, true, newIndex);
Steve Narofff0090632007-09-02 02:04:30 +0000687}
688
Fariborz Jahanian306d68f2007-11-08 23:49:49 +0000689Sema::DeclTy *
Steve Naroff08d92e42007-09-15 18:49:24 +0000690Sema::ActOnDeclarator(Scope *S, Declarator &D, DeclTy *lastDecl) {
Steve Naroff94745042007-09-13 23:52:58 +0000691 ScopedDecl *LastDeclarator = dyn_cast_or_null<ScopedDecl>((Decl *)lastDecl);
Reid Spencer5f016e22007-07-11 17:01:13 +0000692 IdentifierInfo *II = D.getIdentifier();
693
Chris Lattnere80a59c2007-07-25 00:24:17 +0000694 // All of these full declarators require an identifier. If it doesn't have
695 // one, the ParsedFreeStandingDeclSpec action should be used.
696 if (II == 0) {
Chris Lattner311ff022007-10-16 22:36:42 +0000697 Diag(D.getDeclSpec().getSourceRange().getBegin(),
Chris Lattner98e08632007-08-28 06:17:15 +0000698 diag::err_declarator_need_ident,
Chris Lattnere80a59c2007-07-25 00:24:17 +0000699 D.getDeclSpec().getSourceRange(), D.getSourceRange());
700 return 0;
701 }
702
Chris Lattner31e05722007-08-26 06:24:45 +0000703 // The scope passed in may not be a decl scope. Zip up the scope tree until
704 // we find one that is.
705 while ((S->getFlags() & Scope::DeclScope) == 0)
706 S = S->getParent();
707
Reid Spencer5f016e22007-07-11 17:01:13 +0000708 // See if this is a redefinition of a variable in the same scope.
Steve Naroffc752d042007-09-13 18:10:37 +0000709 ScopedDecl *PrevDecl = LookupScopedDecl(II, Decl::IDNS_Ordinary,
710 D.getIdentifierLoc(), S);
Steve Naroffc752d042007-09-13 18:10:37 +0000711 ScopedDecl *New;
Steve Naroff5912a352007-08-28 20:14:24 +0000712 bool InvalidDecl = false;
713
Chris Lattner41af0932007-11-14 06:34:38 +0000714 QualType R = GetTypeForDeclarator(D, S);
715 assert(!R.isNull() && "GetTypeForDeclarator() returned null type");
716
Reid Spencer5f016e22007-07-11 17:01:13 +0000717 if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef) {
Chris Lattner41af0932007-11-14 06:34:38 +0000718 TypedefDecl *NewTD = ParseTypedefDecl(S, D, R, LastDeclarator);
Reid Spencer5f016e22007-07-11 17:01:13 +0000719 if (!NewTD) return 0;
720
721 // Handle attributes prior to checking for duplicates in MergeVarDecl
722 HandleDeclAttributes(NewTD, D.getDeclSpec().getAttributes(),
723 D.getAttributes());
Steve Naroffffce4d52008-01-09 23:34:55 +0000724 // Merge the decl with the existing one if appropriate. If the decl is
725 // in an outer scope, it isn't the same thing.
726 if (PrevDecl && S->isDeclScope(PrevDecl)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000727 NewTD = MergeTypeDefDecl(NewTD, PrevDecl);
728 if (NewTD == 0) return 0;
729 }
730 New = NewTD;
731 if (S->getParent() == 0) {
732 // C99 6.7.7p2: If a typedef name specifies a variably modified type
733 // then it shall have block scope.
Eli Friedman9db13972008-02-15 12:53:51 +0000734 if (NewTD->getUnderlyingType()->isVariablyModifiedType()) {
735 // FIXME: Diagnostic needs to be fixed.
736 Diag(D.getIdentifierLoc(), diag::err_typecheck_illegal_vla);
Steve Naroffd7444aa2007-08-31 17:20:07 +0000737 InvalidDecl = true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000738 }
739 }
Chris Lattner41af0932007-11-14 06:34:38 +0000740 } else if (R.getTypePtr()->isFunctionType()) {
Chris Lattner271f1a62007-09-27 15:15:46 +0000741 FunctionDecl::StorageClass SC = FunctionDecl::None;
Reid Spencer5f016e22007-07-11 17:01:13 +0000742 switch (D.getDeclSpec().getStorageClassSpec()) {
743 default: assert(0 && "Unknown storage class!");
744 case DeclSpec::SCS_auto:
745 case DeclSpec::SCS_register:
746 Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_func,
747 R.getAsString());
Steve Naroff5912a352007-08-28 20:14:24 +0000748 InvalidDecl = true;
749 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000750 case DeclSpec::SCS_unspecified: SC = FunctionDecl::None; break;
751 case DeclSpec::SCS_extern: SC = FunctionDecl::Extern; break;
752 case DeclSpec::SCS_static: SC = FunctionDecl::Static; break;
Steve Naroff7dd0bd42008-01-28 21:57:15 +0000753 case DeclSpec::SCS_private_extern: SC = FunctionDecl::PrivateExtern;break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000754 }
755
756 FunctionDecl *NewFD = new FunctionDecl(D.getIdentifierLoc(), II, R, SC,
Chris Lattner70c8b2e2007-08-26 04:02:13 +0000757 D.getDeclSpec().isInlineSpecified(),
Anders Carlssonf78915f2008-02-15 07:04:12 +0000758 LastDeclarator);
Ted Kremenekf5c93c12008-02-27 22:18:07 +0000759 // Handle attributes.
Ted Kremenekf5c93c12008-02-27 22:18:07 +0000760 HandleDeclAttributes(NewFD, D.getDeclSpec().getAttributes(),
761 D.getAttributes());
Reid Spencer5f016e22007-07-11 17:01:13 +0000762
Steve Naroffffce4d52008-01-09 23:34:55 +0000763 // Merge the decl with the existing one if appropriate. Since C functions
764 // are in a flat namespace, make sure we consider decls in outer scopes.
Reid Spencer5f016e22007-07-11 17:01:13 +0000765 if (PrevDecl) {
766 NewFD = MergeFunctionDecl(NewFD, PrevDecl);
767 if (NewFD == 0) return 0;
768 }
769 New = NewFD;
770 } else {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000771 if (R.getTypePtr()->isObjCInterfaceType()) {
Fariborz Jahaniane7f64cc2007-10-12 22:10:42 +0000772 Diag(D.getIdentifierLoc(), diag::err_statically_allocated_object,
773 D.getIdentifier()->getName());
774 InvalidDecl = true;
775 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000776
777 VarDecl *NewVD;
778 VarDecl::StorageClass SC;
779 switch (D.getDeclSpec().getStorageClassSpec()) {
780 default: assert(0 && "Unknown storage class!");
Steve Naroffd6326c62008-01-25 22:14:40 +0000781 case DeclSpec::SCS_unspecified: SC = VarDecl::None; break;
782 case DeclSpec::SCS_extern: SC = VarDecl::Extern; break;
783 case DeclSpec::SCS_static: SC = VarDecl::Static; break;
784 case DeclSpec::SCS_auto: SC = VarDecl::Auto; break;
785 case DeclSpec::SCS_register: SC = VarDecl::Register; break;
786 case DeclSpec::SCS_private_extern: SC = VarDecl::PrivateExtern; break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000787 }
788 if (S->getParent() == 0) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000789 // C99 6.9p2: The storage-class specifiers auto and register shall not
790 // appear in the declaration specifiers in an external declaration.
791 if (SC == VarDecl::Auto || SC == VarDecl::Register) {
792 Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_fscope,
793 R.getAsString());
Steve Naroff53a32342007-08-28 18:45:29 +0000794 InvalidDecl = true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000795 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000796 NewVD = new FileVarDecl(D.getIdentifierLoc(), II, R, SC, LastDeclarator);
Steve Narofff0090632007-09-02 02:04:30 +0000797 } else {
Reid Spencer5f016e22007-07-11 17:01:13 +0000798 NewVD = new BlockVarDecl(D.getIdentifierLoc(), II, R, SC, LastDeclarator);
Steve Naroff53a32342007-08-28 18:45:29 +0000799 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000800 // Handle attributes prior to checking for duplicates in MergeVarDecl
801 HandleDeclAttributes(NewVD, D.getDeclSpec().getAttributes(),
802 D.getAttributes());
Nate Begeman5af27e02008-03-14 00:22:18 +0000803 // Emit a warning (error?) if an address space was applied to decl with
804 // local storage.
805 if (NewVD->hasLocalStorage() &&
806 (NewVD->getCanonicalType().getAddressSpace() != 0)) {
807 Diag(D.getIdentifierLoc(), diag::err_as_qualified_auto_decl);
808 InvalidDecl = true;
809 }
Steve Naroffffce4d52008-01-09 23:34:55 +0000810 // Merge the decl with the existing one if appropriate. If the decl is
811 // in an outer scope, it isn't the same thing.
812 if (PrevDecl && S->isDeclScope(PrevDecl)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000813 NewVD = MergeVarDecl(NewVD, PrevDecl);
814 if (NewVD == 0) return 0;
815 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000816 New = NewVD;
817 }
818
819 // If this has an identifier, add it to the scope stack.
820 if (II) {
Steve Naroffc752d042007-09-13 18:10:37 +0000821 New->setNext(II->getFETokenInfo<ScopedDecl>());
Reid Spencer5f016e22007-07-11 17:01:13 +0000822 II->setFETokenInfo(New);
823 S->AddDecl(New);
824 }
Steve Naroff5912a352007-08-28 20:14:24 +0000825 // If any semantic error occurred, mark the decl as invalid.
826 if (D.getInvalidType() || InvalidDecl)
827 New->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +0000828
829 return New;
830}
831
Steve Naroffd0091aa2008-01-10 22:15:12 +0000832bool Sema::CheckForConstantInitializer(Expr *Init, QualType DclT) {
833 SourceLocation loc;
834 // FIXME: Remove the isReference check and handle assignment to a reference.
835 if (!DclT->isReferenceType() && !Init->isConstantExpr(Context, &loc)) {
836 assert(loc.isValid() && "isConstantExpr didn't return a loc!");
837 Diag(loc, diag::err_init_element_not_constant, Init->getSourceRange());
838 return true;
839 }
840 return false;
841}
842
Steve Naroffbb204692007-09-12 14:07:44 +0000843void Sema::AddInitializerToDecl(DeclTy *dcl, ExprTy *init) {
Steve Naroff410e3e22007-09-12 20:13:48 +0000844 Decl *RealDecl = static_cast<Decl *>(dcl);
Steve Naroffbb204692007-09-12 14:07:44 +0000845 Expr *Init = static_cast<Expr *>(init);
Chris Lattner9a11b9a2007-10-19 20:10:30 +0000846 assert(Init && "missing initializer");
Steve Naroffbb204692007-09-12 14:07:44 +0000847
Chris Lattner9a11b9a2007-10-19 20:10:30 +0000848 // If there is no declaration, there was an error parsing it. Just ignore
849 // the initializer.
850 if (RealDecl == 0) {
851 delete Init;
852 return;
853 }
Steve Naroffbb204692007-09-12 14:07:44 +0000854
Steve Naroff410e3e22007-09-12 20:13:48 +0000855 VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl);
856 if (!VDecl) {
Steve Naroff8e74c932007-09-13 21:41:19 +0000857 Diag(dyn_cast<ScopedDecl>(RealDecl)->getLocation(),
858 diag::err_illegal_initializer);
Steve Naroff410e3e22007-09-12 20:13:48 +0000859 RealDecl->setInvalidDecl();
860 return;
861 }
Steve Naroffbb204692007-09-12 14:07:44 +0000862 // Get the decls type and save a reference for later, since
Steve Naroffd0091aa2008-01-10 22:15:12 +0000863 // CheckInitializerTypes may change it.
Steve Naroff410e3e22007-09-12 20:13:48 +0000864 QualType DclT = VDecl->getType(), SavT = DclT;
865 if (BlockVarDecl *BVD = dyn_cast<BlockVarDecl>(VDecl)) {
Steve Naroffbb204692007-09-12 14:07:44 +0000866 VarDecl::StorageClass SC = BVD->getStorageClass();
867 if (SC == VarDecl::Extern) { // C99 6.7.8p5
Steve Naroff410e3e22007-09-12 20:13:48 +0000868 Diag(VDecl->getLocation(), diag::err_block_extern_cant_init);
Steve Naroffbb204692007-09-12 14:07:44 +0000869 BVD->setInvalidDecl();
870 } else if (!BVD->isInvalidDecl()) {
Steve Naroffa9960332008-01-25 00:51:06 +0000871 if (CheckInitializerTypes(Init, DclT))
872 BVD->setInvalidDecl();
Steve Naroffd0091aa2008-01-10 22:15:12 +0000873 if (SC == VarDecl::Static) // C99 6.7.8p4.
874 CheckForConstantInitializer(Init, DclT);
Steve Naroffbb204692007-09-12 14:07:44 +0000875 }
Steve Naroff410e3e22007-09-12 20:13:48 +0000876 } else if (FileVarDecl *FVD = dyn_cast<FileVarDecl>(VDecl)) {
Steve Naroffbb204692007-09-12 14:07:44 +0000877 if (FVD->getStorageClass() == VarDecl::Extern)
Steve Naroff410e3e22007-09-12 20:13:48 +0000878 Diag(VDecl->getLocation(), diag::warn_extern_init);
Steve Naroffbb204692007-09-12 14:07:44 +0000879 if (!FVD->isInvalidDecl())
Steve Naroffa9960332008-01-25 00:51:06 +0000880 if (CheckInitializerTypes(Init, DclT))
881 FVD->setInvalidDecl();
Steve Naroffd0091aa2008-01-10 22:15:12 +0000882
883 // C99 6.7.8p4. All file scoped initializers need to be constant.
884 CheckForConstantInitializer(Init, DclT);
Steve Naroffbb204692007-09-12 14:07:44 +0000885 }
886 // If the type changed, it means we had an incomplete type that was
887 // completed by the initializer. For example:
888 // int ary[] = { 1, 3, 5 };
889 // "ary" transitions from a VariableArrayType to a ConstantArrayType.
Christopher Lamb48b12392007-11-29 19:09:19 +0000890 if (!VDecl->isInvalidDecl() && (DclT != SavT)) {
Steve Naroff410e3e22007-09-12 20:13:48 +0000891 VDecl->setType(DclT);
Christopher Lamb48b12392007-11-29 19:09:19 +0000892 Init->setType(DclT);
893 }
Steve Naroffbb204692007-09-12 14:07:44 +0000894
895 // Attach the initializer to the decl.
Steve Naroff410e3e22007-09-12 20:13:48 +0000896 VDecl->setInit(Init);
Steve Naroffbb204692007-09-12 14:07:44 +0000897 return;
898}
899
Reid Spencer5f016e22007-07-11 17:01:13 +0000900/// The declarators are chained together backwards, reverse the list.
901Sema::DeclTy *Sema::FinalizeDeclaratorGroup(Scope *S, DeclTy *group) {
902 // Often we have single declarators, handle them quickly.
Steve Naroff94745042007-09-13 23:52:58 +0000903 Decl *GroupDecl = static_cast<Decl*>(group);
904 if (GroupDecl == 0)
Steve Naroffbb204692007-09-12 14:07:44 +0000905 return 0;
Steve Naroff94745042007-09-13 23:52:58 +0000906
907 ScopedDecl *Group = dyn_cast<ScopedDecl>(GroupDecl);
908 ScopedDecl *NewGroup = 0;
Steve Naroffbb204692007-09-12 14:07:44 +0000909 if (Group->getNextDeclarator() == 0)
Reid Spencer5f016e22007-07-11 17:01:13 +0000910 NewGroup = Group;
Steve Naroffbb204692007-09-12 14:07:44 +0000911 else { // reverse the list.
912 while (Group) {
Steve Naroff94745042007-09-13 23:52:58 +0000913 ScopedDecl *Next = Group->getNextDeclarator();
Steve Naroffbb204692007-09-12 14:07:44 +0000914 Group->setNextDeclarator(NewGroup);
915 NewGroup = Group;
916 Group = Next;
917 }
918 }
919 // Perform semantic analysis that depends on having fully processed both
920 // the declarator and initializer.
Steve Naroff94745042007-09-13 23:52:58 +0000921 for (ScopedDecl *ID = NewGroup; ID; ID = ID->getNextDeclarator()) {
Steve Naroffbb204692007-09-12 14:07:44 +0000922 VarDecl *IDecl = dyn_cast<VarDecl>(ID);
923 if (!IDecl)
924 continue;
925 FileVarDecl *FVD = dyn_cast<FileVarDecl>(IDecl);
926 BlockVarDecl *BVD = dyn_cast<BlockVarDecl>(IDecl);
927 QualType T = IDecl->getType();
928
929 // C99 6.7.5.2p2: If an identifier is declared to be an object with
930 // static storage duration, it shall not have a variable length array.
931 if ((FVD || BVD) && IDecl->getStorageClass() == VarDecl::Static) {
Eli Friedman3fe02932008-02-15 19:53:52 +0000932 if (T->getAsVariableArrayType()) {
Eli Friedmanc5773c42008-02-15 18:16:39 +0000933 Diag(IDecl->getLocation(), diag::err_typecheck_illegal_vla);
934 IDecl->setInvalidDecl();
Steve Naroffbb204692007-09-12 14:07:44 +0000935 }
936 }
937 // Block scope. C99 6.7p7: If an identifier for an object is declared with
938 // no linkage (C99 6.2.2p6), the type for the object shall be complete...
939 if (BVD && IDecl->getStorageClass() != VarDecl::Extern) {
940 if (T->isIncompleteType()) {
Chris Lattner8b1be772007-12-02 07:50:03 +0000941 Diag(IDecl->getLocation(), diag::err_typecheck_decl_incomplete_type,
942 T.getAsString());
Steve Naroffbb204692007-09-12 14:07:44 +0000943 IDecl->setInvalidDecl();
944 }
945 }
946 // File scope. C99 6.9.2p2: A declaration of an identifier for and
947 // object that has file scope without an initializer, and without a
948 // storage-class specifier or with the storage-class specifier "static",
949 // constitutes a tentative definition. Note: A tentative definition with
950 // external linkage is valid (C99 6.2.2p5).
Steve Naroffd3cd1e52008-01-18 00:39:39 +0000951 if (FVD && !FVD->getInit() && (FVD->getStorageClass() == VarDecl::Static ||
952 FVD->getStorageClass() == VarDecl::None)) {
Eli Friedman9db13972008-02-15 12:53:51 +0000953 if (T->isIncompleteArrayType()) {
Steve Naroff9a75f8a2008-01-18 20:40:52 +0000954 // C99 6.9.2 (p2, p5): Implicit initialization causes an incomplete
955 // array to be completed. Don't issue a diagnostic.
956 } else if (T->isIncompleteType()) {
957 // C99 6.9.2p3: If the declaration of an identifier for an object is
958 // a tentative definition and has internal linkage (C99 6.2.2p3), the
959 // declared type shall not be an incomplete type.
Chris Lattner8b1be772007-12-02 07:50:03 +0000960 Diag(IDecl->getLocation(), diag::err_typecheck_decl_incomplete_type,
961 T.getAsString());
Steve Naroffbb204692007-09-12 14:07:44 +0000962 IDecl->setInvalidDecl();
963 }
964 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000965 }
966 return NewGroup;
967}
Steve Naroffe1223f72007-08-28 03:03:08 +0000968
969// Called from Sema::ParseStartOfFunctionDef().
Reid Spencer5f016e22007-07-11 17:01:13 +0000970ParmVarDecl *
Nate Begeman6d20d032008-02-17 21:02:04 +0000971Sema::ActOnParamDeclarator(struct DeclaratorChunk::ParamInfo &PI,
972 Scope *FnScope) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000973 IdentifierInfo *II = PI.Ident;
974 // TODO: CHECK FOR CONFLICTS, multiple decls with same name in one scope.
975 // Can this happen for params? We already checked that they don't conflict
976 // among each other. Here they can only shadow globals, which is ok.
Chris Lattner8b9023b2007-07-13 03:05:23 +0000977 if (/*Decl *PrevDecl = */LookupScopedDecl(II, Decl::IDNS_Ordinary,
Reid Spencer5f016e22007-07-11 17:01:13 +0000978 PI.IdentLoc, FnScope)) {
979
980 }
981
982 // FIXME: Handle storage class (auto, register). No declarator?
983 // TODO: Chain to previous parameter with the prevdeclarator chain?
Steve Naroff6a9f3e32007-08-07 22:44:21 +0000984
985 // Perform the default function/array conversion (C99 6.7.5.3p[7,8]).
986 // Doing the promotion here has a win and a loss. The win is the type for
987 // both Decl's and DeclRefExpr's will match (a convenient invariant for the
988 // code generator). The loss is the orginal type isn't preserved. For example:
989 //
990 // void func(int parmvardecl[5]) { // convert "int [5]" to "int *"
991 // int blockvardecl[5];
992 // sizeof(parmvardecl); // size == 4
993 // sizeof(blockvardecl); // size == 20
994 // }
995 //
996 // For expressions, all implicit conversions are captured using the
997 // ImplicitCastExpr AST node (we have no such mechanism for Decl's).
998 //
999 // FIXME: If a source translation tool needs to see the original type, then
1000 // we need to consider storing both types (in ParmVarDecl)...
1001 //
1002 QualType parmDeclType = QualType::getFromOpaquePtr(PI.TypeInfo);
Chris Lattner529bd022008-01-02 22:50:48 +00001003 if (const ArrayType *AT = parmDeclType->getAsArrayType()) {
1004 // int x[restrict 4] -> int *restrict
Steve Naroff6a9f3e32007-08-07 22:44:21 +00001005 parmDeclType = Context.getPointerType(AT->getElementType());
Chris Lattner529bd022008-01-02 22:50:48 +00001006 parmDeclType = parmDeclType.getQualifiedType(AT->getIndexTypeQualifier());
1007 } else if (parmDeclType->isFunctionType())
Steve Naroff6a9f3e32007-08-07 22:44:21 +00001008 parmDeclType = Context.getPointerType(parmDeclType);
1009
1010 ParmVarDecl *New = new ParmVarDecl(PI.IdentLoc, II, parmDeclType,
Anders Carlssonf78915f2008-02-15 07:04:12 +00001011 VarDecl::None, 0);
Anders Carlssonf78915f2008-02-15 07:04:12 +00001012
Steve Naroff53a32342007-08-28 18:45:29 +00001013 if (PI.InvalidType)
1014 New->setInvalidDecl();
1015
Reid Spencer5f016e22007-07-11 17:01:13 +00001016 // If this has an identifier, add it to the scope stack.
1017 if (II) {
Steve Naroffc752d042007-09-13 18:10:37 +00001018 New->setNext(II->getFETokenInfo<ScopedDecl>());
Reid Spencer5f016e22007-07-11 17:01:13 +00001019 II->setFETokenInfo(New);
1020 FnScope->AddDecl(New);
1021 }
Nate Begemanb7894b52008-02-17 21:20:31 +00001022
1023 HandleDeclAttributes(New, PI.AttrList, 0);
Reid Spencer5f016e22007-07-11 17:01:13 +00001024 return New;
1025}
Fariborz Jahanian306d68f2007-11-08 23:49:49 +00001026
Chris Lattnerb652cea2007-10-09 17:14:05 +00001027Sema::DeclTy *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Declarator &D) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001028 assert(CurFunctionDecl == 0 && "Function parsing confused");
1029 assert(D.getTypeObject(0).Kind == DeclaratorChunk::Function &&
1030 "Not a function declarator!");
1031 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
1032
1033 // Verify 6.9.1p6: 'every identifier in the identifier list shall be declared'
1034 // for a K&R function.
1035 if (!FTI.hasPrototype) {
1036 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) {
1037 if (FTI.ArgInfo[i].TypeInfo == 0) {
1038 Diag(FTI.ArgInfo[i].IdentLoc, diag::ext_param_not_declared,
1039 FTI.ArgInfo[i].Ident->getName());
1040 // Implicitly declare the argument as type 'int' for lack of a better
1041 // type.
1042 FTI.ArgInfo[i].TypeInfo = Context.IntTy.getAsOpaquePtr();
1043 }
1044 }
Chris Lattner52804082008-02-17 19:31:09 +00001045
Reid Spencer5f016e22007-07-11 17:01:13 +00001046 // Since this is a function definition, act as though we have information
1047 // about the arguments.
Chris Lattner52804082008-02-17 19:31:09 +00001048 if (FTI.NumArgs)
1049 FTI.hasPrototype = true;
Reid Spencer5f016e22007-07-11 17:01:13 +00001050 } else {
1051 // FIXME: Diagnose arguments without names in C.
1052
1053 }
1054
1055 Scope *GlobalScope = FnBodyScope->getParent();
Steve Naroffadbbd0c2008-01-14 20:51:29 +00001056
1057 // See if this is a redefinition.
1058 ScopedDecl *PrevDcl = LookupScopedDecl(D.getIdentifier(), Decl::IDNS_Ordinary,
1059 D.getIdentifierLoc(), GlobalScope);
1060 if (FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(PrevDcl)) {
1061 if (FD->getBody()) {
1062 Diag(D.getIdentifierLoc(), diag::err_redefinition,
1063 D.getIdentifier()->getName());
1064 Diag(FD->getLocation(), diag::err_previous_definition);
1065 }
1066 }
Steve Narofffabbc342008-02-12 01:09:36 +00001067 Decl *decl = static_cast<Decl*>(ActOnDeclarator(GlobalScope, D, 0));
Chris Lattnere9ba3232008-02-16 01:20:36 +00001068 FunctionDecl *FD = cast<FunctionDecl>(decl);
Reid Spencer5f016e22007-07-11 17:01:13 +00001069 CurFunctionDecl = FD;
1070
1071 // Create Decl objects for each parameter, adding them to the FunctionDecl.
1072 llvm::SmallVector<ParmVarDecl*, 16> Params;
1073
1074 // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs function that takes
1075 // no arguments, not a function that takes a single void argument.
1076 if (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
Chris Lattnerf46699c2008-02-20 20:55:12 +00001077 !QualType::getFromOpaquePtr(FTI.ArgInfo[0].TypeInfo).getCVRQualifiers() &&
Chris Lattnerb751c282007-11-28 18:51:29 +00001078 QualType::getFromOpaquePtr(FTI.ArgInfo[0].TypeInfo)->isVoidType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001079 // empty arg list, don't push any params.
1080 } else {
Steve Naroff66499922007-11-12 03:44:46 +00001081 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) {
Nate Begemanbff5f5c2007-11-13 21:49:48 +00001082 Params.push_back(ActOnParamDeclarator(D.getTypeObject(0).Fun.ArgInfo[i],
Steve Naroff66499922007-11-12 03:44:46 +00001083 FnBodyScope));
1084 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001085 }
1086
1087 FD->setParams(&Params[0], Params.size());
1088
1089 return FD;
1090}
1091
Steve Naroffd6d054d2007-11-11 23:20:51 +00001092Sema::DeclTy *Sema::ActOnFinishFunctionBody(DeclTy *D, StmtTy *Body) {
1093 Decl *dcl = static_cast<Decl *>(D);
1094 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(dcl)) {
1095 FD->setBody((Stmt*)Body);
1096 assert(FD == CurFunctionDecl && "Function parsing confused");
Steve Naroff4d832202007-12-13 18:18:56 +00001097 CurFunctionDecl = 0;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001098 } else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(dcl)) {
Steve Naroffd6d054d2007-11-11 23:20:51 +00001099 MD->setBody((Stmt*)Body);
Steve Naroff03300712007-11-12 13:56:41 +00001100 CurMethodDecl = 0;
Steve Naroff4d832202007-12-13 18:18:56 +00001101 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001102 // Verify and clean out per-function state.
1103
1104 // Check goto/label use.
1105 for (llvm::DenseMap<IdentifierInfo*, LabelStmt*>::iterator
1106 I = LabelMap.begin(), E = LabelMap.end(); I != E; ++I) {
1107 // Verify that we have no forward references left. If so, there was a goto
1108 // or address of a label taken, but no definition of it. Label fwd
1109 // definitions are indicated with a null substmt.
1110 if (I->second->getSubStmt() == 0) {
1111 LabelStmt *L = I->second;
1112 // Emit error.
1113 Diag(L->getIdentLoc(), diag::err_undeclared_label_use, L->getName());
1114
1115 // At this point, we have gotos that use the bogus label. Stitch it into
1116 // the function body so that they aren't leaked and that the AST is well
1117 // formed.
Chris Lattner0cbc2152008-01-25 00:01:10 +00001118 if (Body) {
1119 L->setSubStmt(new NullStmt(L->getIdentLoc()));
1120 cast<CompoundStmt>((Stmt*)Body)->push_back(L);
1121 } else {
1122 // The whole function wasn't parsed correctly, just delete this.
1123 delete L;
1124 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001125 }
1126 }
1127 LabelMap.clear();
1128
Steve Naroffd6d054d2007-11-11 23:20:51 +00001129 return D;
Fariborz Jahanian60fbca02007-11-10 16:31:34 +00001130}
1131
Reid Spencer5f016e22007-07-11 17:01:13 +00001132/// ImplicitlyDefineFunction - An undeclared identifier was used in a function
1133/// call, forming a call to an implicitly defined function (per C99 6.5.1p2).
Steve Naroff8c9f13e2007-09-16 16:16:00 +00001134ScopedDecl *Sema::ImplicitlyDefineFunction(SourceLocation Loc,
1135 IdentifierInfo &II, Scope *S) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001136 if (getLangOptions().C99) // Extension in C99.
1137 Diag(Loc, diag::ext_implicit_function_decl, II.getName());
1138 else // Legal in C90, but warn about it.
1139 Diag(Loc, diag::warn_implicit_function_decl, II.getName());
1140
1141 // FIXME: handle stuff like:
1142 // void foo() { extern float X(); }
1143 // void bar() { X(); } <-- implicit decl for X in another scope.
1144
1145 // Set a Declarator for the implicit definition: int foo();
1146 const char *Dummy;
1147 DeclSpec DS;
1148 bool Error = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, Dummy);
1149 Error = Error; // Silence warning.
1150 assert(!Error && "Error setting up implicit decl!");
1151 Declarator D(DS, Declarator::BlockContext);
1152 D.AddTypeInfo(DeclaratorChunk::getFunction(false, false, 0, 0, Loc));
1153 D.SetIdentifier(&II, Loc);
1154
1155 // Find translation-unit scope to insert this function into.
Chris Lattner31e05722007-08-26 06:24:45 +00001156 if (Scope *FnS = S->getFnParent())
1157 S = FnS->getParent(); // Skip all scopes in a function at once.
Reid Spencer5f016e22007-07-11 17:01:13 +00001158 while (S->getParent())
1159 S = S->getParent();
1160
Steve Naroff8c9f13e2007-09-16 16:16:00 +00001161 return dyn_cast<ScopedDecl>(static_cast<Decl*>(ActOnDeclarator(S, D, 0)));
Reid Spencer5f016e22007-07-11 17:01:13 +00001162}
1163
1164
Chris Lattner41af0932007-11-14 06:34:38 +00001165TypedefDecl *Sema::ParseTypedefDecl(Scope *S, Declarator &D, QualType T,
Steve Naroff94745042007-09-13 23:52:58 +00001166 ScopedDecl *LastDeclarator) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001167 assert(D.getIdentifier() && "Wrong callback for declspec without declarator");
Steve Naroff5912a352007-08-28 20:14:24 +00001168 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
Reid Spencer5f016e22007-07-11 17:01:13 +00001169
1170 // Scope manipulation handled by caller.
Steve Naroff5912a352007-08-28 20:14:24 +00001171 TypedefDecl *NewTD = new TypedefDecl(D.getIdentifierLoc(), D.getIdentifier(),
1172 T, LastDeclarator);
1173 if (D.getInvalidType())
1174 NewTD->setInvalidDecl();
1175 return NewTD;
Reid Spencer5f016e22007-07-11 17:01:13 +00001176}
1177
Steve Naroff08d92e42007-09-15 18:49:24 +00001178/// ActOnTag - This is invoked when we see 'struct foo' or 'struct {'. In the
Reid Spencer5f016e22007-07-11 17:01:13 +00001179/// former case, Name will be non-null. In the later case, Name will be null.
1180/// TagType indicates what kind of tag this is. TK indicates whether this is a
1181/// reference/declaration/definition of a tag.
Steve Naroff08d92e42007-09-15 18:49:24 +00001182Sema::DeclTy *Sema::ActOnTag(Scope *S, unsigned TagType, TagKind TK,
Reid Spencer5f016e22007-07-11 17:01:13 +00001183 SourceLocation KWLoc, IdentifierInfo *Name,
1184 SourceLocation NameLoc, AttributeList *Attr) {
1185 // If this is a use of an existing tag, it must have a name.
1186 assert((Name != 0 || TK == TK_Definition) &&
1187 "Nameless record must be a definition!");
1188
1189 Decl::Kind Kind;
1190 switch (TagType) {
1191 default: assert(0 && "Unknown tag type!");
1192 case DeclSpec::TST_struct: Kind = Decl::Struct; break;
1193 case DeclSpec::TST_union: Kind = Decl::Union; break;
1194//case DeclSpec::TST_class: Kind = Decl::Class; break;
1195 case DeclSpec::TST_enum: Kind = Decl::Enum; break;
1196 }
1197
1198 // If this is a named struct, check to see if there was a previous forward
1199 // declaration or definition.
1200 if (TagDecl *PrevDecl =
1201 dyn_cast_or_null<TagDecl>(LookupScopedDecl(Name, Decl::IDNS_Tag,
1202 NameLoc, S))) {
1203
1204 // If this is a use of a previous tag, or if the tag is already declared in
1205 // the same scope (so that the definition/declaration completes or
1206 // rementions the tag), reuse the decl.
1207 if (TK == TK_Reference || S->isDeclScope(PrevDecl)) {
1208 // Make sure that this wasn't declared as an enum and now used as a struct
1209 // or something similar.
1210 if (PrevDecl->getKind() != Kind) {
1211 Diag(KWLoc, diag::err_use_with_wrong_tag, Name->getName());
1212 Diag(PrevDecl->getLocation(), diag::err_previous_use);
1213 }
1214
1215 // If this is a use or a forward declaration, we're good.
1216 if (TK != TK_Definition)
1217 return PrevDecl;
1218
1219 // Diagnose attempts to redefine a tag.
1220 if (PrevDecl->isDefinition()) {
1221 Diag(NameLoc, diag::err_redefinition, Name->getName());
1222 Diag(PrevDecl->getLocation(), diag::err_previous_definition);
1223 // If this is a redefinition, recover by making this struct be
1224 // anonymous, which will make any later references get the previous
1225 // definition.
1226 Name = 0;
1227 } else {
1228 // Okay, this is definition of a previously declared or referenced tag.
1229 // Move the location of the decl to be the definition site.
1230 PrevDecl->setLocation(NameLoc);
1231 return PrevDecl;
1232 }
1233 }
1234 // If we get here, this is a definition of a new struct type in a nested
1235 // scope, e.g. "struct foo; void bar() { struct foo; }", just create a new
1236 // type.
1237 }
1238
1239 // If there is an identifier, use the location of the identifier as the
1240 // location of the decl, otherwise use the location of the struct/union
1241 // keyword.
1242 SourceLocation Loc = NameLoc.isValid() ? NameLoc : KWLoc;
1243
1244 // Otherwise, if this is the first time we've seen this tag, create the decl.
1245 TagDecl *New;
1246 switch (Kind) {
1247 default: assert(0 && "Unknown tag kind!");
1248 case Decl::Enum:
1249 // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
1250 // enum X { A, B, C } D; D should chain to X.
1251 New = new EnumDecl(Loc, Name, 0);
1252 // If this is an undefined enum, warn.
1253 if (TK != TK_Definition) Diag(Loc, diag::ext_forward_ref_enum);
1254 break;
1255 case Decl::Union:
1256 case Decl::Struct:
1257 case Decl::Class:
1258 // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
1259 // struct X { int A; } D; D should chain to X.
1260 New = new RecordDecl(Kind, Loc, Name, 0);
1261 break;
1262 }
1263
1264 // If this has an identifier, add it to the scope stack.
1265 if (Name) {
Chris Lattner31e05722007-08-26 06:24:45 +00001266 // The scope passed in may not be a decl scope. Zip up the scope tree until
1267 // we find one that is.
1268 while ((S->getFlags() & Scope::DeclScope) == 0)
1269 S = S->getParent();
1270
1271 // Add it to the decl chain.
Steve Naroffc752d042007-09-13 18:10:37 +00001272 New->setNext(Name->getFETokenInfo<ScopedDecl>());
Reid Spencer5f016e22007-07-11 17:01:13 +00001273 Name->setFETokenInfo(New);
1274 S->AddDecl(New);
1275 }
Chris Lattnere1e79852008-02-06 00:51:33 +00001276
Anders Carlssonad148062008-02-16 00:29:18 +00001277 HandleDeclAttributes(New, Attr, 0);
Reid Spencer5f016e22007-07-11 17:01:13 +00001278 return New;
1279}
1280
Steve Naroff08d92e42007-09-15 18:49:24 +00001281/// ActOnField - Each field of a struct/union/class is passed into this in order
Reid Spencer5f016e22007-07-11 17:01:13 +00001282/// to create a FieldDecl object for it.
Steve Naroff08d92e42007-09-15 18:49:24 +00001283Sema::DeclTy *Sema::ActOnField(Scope *S, DeclTy *TagDecl,
Reid Spencer5f016e22007-07-11 17:01:13 +00001284 SourceLocation DeclStart,
1285 Declarator &D, ExprTy *BitfieldWidth) {
1286 IdentifierInfo *II = D.getIdentifier();
1287 Expr *BitWidth = (Expr*)BitfieldWidth;
Reid Spencer5f016e22007-07-11 17:01:13 +00001288 SourceLocation Loc = DeclStart;
1289 if (II) Loc = D.getIdentifierLoc();
1290
1291 // FIXME: Unnamed fields can be handled in various different ways, for
1292 // example, unnamed unions inject all members into the struct namespace!
1293
1294
1295 if (BitWidth) {
1296 // TODO: Validate.
1297 //printf("WARNING: BITFIELDS IGNORED!\n");
1298
1299 // 6.7.2.1p3
1300 // 6.7.2.1p4
1301
1302 } else {
1303 // Not a bitfield.
1304
1305 // validate II.
1306
1307 }
1308
1309 QualType T = GetTypeForDeclarator(D, S);
Steve Naroff5912a352007-08-28 20:14:24 +00001310 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
1311 bool InvalidDecl = false;
Steve Naroffd7444aa2007-08-31 17:20:07 +00001312
Reid Spencer5f016e22007-07-11 17:01:13 +00001313 // C99 6.7.2.1p8: A member of a structure or union may have any type other
1314 // than a variably modified type.
Eli Friedman9db13972008-02-15 12:53:51 +00001315 if (T->isVariablyModifiedType()) {
1316 // FIXME: This diagnostic needs work
1317 Diag(Loc, diag::err_typecheck_illegal_vla, Loc);
Steve Naroffd7444aa2007-08-31 17:20:07 +00001318 InvalidDecl = true;
Reid Spencer5f016e22007-07-11 17:01:13 +00001319 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001320 // FIXME: Chain fielddecls together.
Steve Naroff44739212007-09-11 21:17:26 +00001321 FieldDecl *NewFD;
1322
1323 if (isa<RecordDecl>(static_cast<Decl *>(TagDecl)))
Devang Patel54e62352007-11-01 16:29:56 +00001324 NewFD = new FieldDecl(Loc, II, T, BitWidth);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001325 else if (isa<ObjCInterfaceDecl>(static_cast<Decl *>(TagDecl)) ||
1326 isa<ObjCImplementationDecl>(static_cast<Decl *>(TagDecl)) ||
1327 isa<ObjCCategoryDecl>(static_cast<Decl *>(TagDecl)) ||
Steve Naroffddd600f2007-11-14 14:15:31 +00001328 // FIXME: ivars are currently used to model properties, and
1329 // properties can appear within a protocol.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001330 // See corresponding FIXME in DeclObjC.h:ObjCPropertyDecl.
1331 isa<ObjCProtocolDecl>(static_cast<Decl *>(TagDecl)))
1332 NewFD = new ObjCIvarDecl(Loc, II, T);
Steve Naroff44739212007-09-11 21:17:26 +00001333 else
Steve Naroff08d92e42007-09-15 18:49:24 +00001334 assert(0 && "Sema::ActOnField(): Unknown TagDecl");
Steve Naroff44739212007-09-11 21:17:26 +00001335
Anders Carlssonad148062008-02-16 00:29:18 +00001336 HandleDeclAttributes(NewFD, D.getDeclSpec().getAttributes(),
1337 D.getAttributes());
1338
Steve Naroff5912a352007-08-28 20:14:24 +00001339 if (D.getInvalidType() || InvalidDecl)
1340 NewFD->setInvalidDecl();
1341 return NewFD;
Reid Spencer5f016e22007-07-11 17:01:13 +00001342}
1343
Fariborz Jahanian89204a12007-10-01 16:53:59 +00001344/// TranslateIvarVisibility - Translate visibility from a token ID to an
1345/// AST enum value.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001346static ObjCIvarDecl::AccessControl
Fariborz Jahanian89204a12007-10-01 16:53:59 +00001347TranslateIvarVisibility(tok::ObjCKeywordKind ivarVisibility) {
Steve Narofff13271f2007-09-14 23:09:53 +00001348 switch (ivarVisibility) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001349 case tok::objc_private: return ObjCIvarDecl::Private;
1350 case tok::objc_public: return ObjCIvarDecl::Public;
1351 case tok::objc_protected: return ObjCIvarDecl::Protected;
1352 case tok::objc_package: return ObjCIvarDecl::Package;
Fariborz Jahanian89204a12007-10-01 16:53:59 +00001353 default: assert(false && "Unknown visitibility kind");
Steve Narofff13271f2007-09-14 23:09:53 +00001354 }
1355}
1356
Fariborz Jahanian9d048ff2007-09-29 00:54:24 +00001357void Sema::ActOnFields(Scope* S,
Fariborz Jahanian3f5faf72007-10-04 00:45:27 +00001358 SourceLocation RecLoc, DeclTy *RecDecl,
Steve Naroff08d92e42007-09-15 18:49:24 +00001359 DeclTy **Fields, unsigned NumFields,
Steve Naroff60fccee2007-10-29 21:38:07 +00001360 SourceLocation LBrac, SourceLocation RBrac,
Steve Naroff08d92e42007-09-15 18:49:24 +00001361 tok::ObjCKeywordKind *visibility) {
Steve Naroff74216642007-09-14 22:20:54 +00001362 Decl *EnclosingDecl = static_cast<Decl*>(RecDecl);
1363 assert(EnclosingDecl && "missing record or interface decl");
1364 RecordDecl *Record = dyn_cast<RecordDecl>(EnclosingDecl);
1365
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001366 if (Record && Record->isDefinition()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001367 // Diagnose code like:
1368 // struct S { struct S {} X; };
1369 // We discover this when we complete the outer S. Reject and ignore the
1370 // outer S.
1371 Diag(Record->getLocation(), diag::err_nested_redefinition,
1372 Record->getKindName());
1373 Diag(RecLoc, diag::err_previous_definition);
Steve Naroff74216642007-09-14 22:20:54 +00001374 Record->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00001375 return;
1376 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001377 // Verify that all the fields are okay.
1378 unsigned NumNamedMembers = 0;
1379 llvm::SmallVector<FieldDecl*, 32> RecFields;
1380 llvm::SmallSet<const IdentifierInfo*, 32> FieldIDs;
Steve Naroff74216642007-09-14 22:20:54 +00001381
Reid Spencer5f016e22007-07-11 17:01:13 +00001382 for (unsigned i = 0; i != NumFields; ++i) {
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001383
Steve Naroff74216642007-09-14 22:20:54 +00001384 FieldDecl *FD = cast_or_null<FieldDecl>(static_cast<Decl*>(Fields[i]));
1385 assert(FD && "missing field decl");
1386
1387 // Remember all fields.
1388 RecFields.push_back(FD);
Reid Spencer5f016e22007-07-11 17:01:13 +00001389
1390 // Get the type for the field.
Chris Lattner02c642e2007-07-31 21:33:24 +00001391 Type *FDTy = FD->getType().getTypePtr();
Reid Spencer5f016e22007-07-11 17:01:13 +00001392
Steve Narofff13271f2007-09-14 23:09:53 +00001393 // If we have visibility info, make sure the AST is set accordingly.
1394 if (visibility)
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001395 cast<ObjCIvarDecl>(FD)->setAccessControl(
Fariborz Jahanian89204a12007-10-01 16:53:59 +00001396 TranslateIvarVisibility(visibility[i]));
Steve Narofff13271f2007-09-14 23:09:53 +00001397
Reid Spencer5f016e22007-07-11 17:01:13 +00001398 // C99 6.7.2.1p2 - A field may not be a function type.
Chris Lattner02c642e2007-07-31 21:33:24 +00001399 if (FDTy->isFunctionType()) {
Steve Naroff74216642007-09-14 22:20:54 +00001400 Diag(FD->getLocation(), diag::err_field_declared_as_function,
Reid Spencer5f016e22007-07-11 17:01:13 +00001401 FD->getName());
Steve Naroff74216642007-09-14 22:20:54 +00001402 FD->setInvalidDecl();
1403 EnclosingDecl->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00001404 continue;
1405 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001406 // C99 6.7.2.1p2 - A field may not be an incomplete type except...
1407 if (FDTy->isIncompleteType()) {
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001408 if (!Record) { // Incomplete ivar type is always an error.
Fariborz Jahanian3f5faf72007-10-04 00:45:27 +00001409 Diag(FD->getLocation(), diag::err_field_incomplete, FD->getName());
Steve Naroff74216642007-09-14 22:20:54 +00001410 FD->setInvalidDecl();
1411 EnclosingDecl->setInvalidDecl();
Fariborz Jahanian3f5faf72007-10-04 00:45:27 +00001412 continue;
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001413 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001414 if (i != NumFields-1 || // ... that the last member ...
1415 Record->getKind() != Decl::Struct || // ... of a structure ...
Chris Lattner02c642e2007-07-31 21:33:24 +00001416 !FDTy->isArrayType()) { //... may have incomplete array type.
Reid Spencer5f016e22007-07-11 17:01:13 +00001417 Diag(FD->getLocation(), diag::err_field_incomplete, FD->getName());
Steve Naroff74216642007-09-14 22:20:54 +00001418 FD->setInvalidDecl();
1419 EnclosingDecl->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00001420 continue;
1421 }
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001422 if (NumNamedMembers < 1) { //... must have more than named member ...
Reid Spencer5f016e22007-07-11 17:01:13 +00001423 Diag(FD->getLocation(), diag::err_flexible_array_empty_struct,
1424 FD->getName());
Steve Naroff74216642007-09-14 22:20:54 +00001425 FD->setInvalidDecl();
1426 EnclosingDecl->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00001427 continue;
1428 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001429 // Okay, we have a legal flexible array member at the end of the struct.
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001430 if (Record)
1431 Record->setHasFlexibleArrayMember(true);
Reid Spencer5f016e22007-07-11 17:01:13 +00001432 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001433 /// C99 6.7.2.1p2 - a struct ending in a flexible array member cannot be the
1434 /// field of another structure or the element of an array.
Chris Lattner02c642e2007-07-31 21:33:24 +00001435 if (const RecordType *FDTTy = FDTy->getAsRecordType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001436 if (FDTTy->getDecl()->hasFlexibleArrayMember()) {
1437 // If this is a member of a union, then entire union becomes "flexible".
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001438 if (Record && Record->getKind() == Decl::Union) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001439 Record->setHasFlexibleArrayMember(true);
1440 } else {
1441 // If this is a struct/class and this is not the last element, reject
1442 // it. Note that GCC supports variable sized arrays in the middle of
1443 // structures.
1444 if (i != NumFields-1) {
1445 Diag(FD->getLocation(), diag::err_variable_sized_type_in_struct,
1446 FD->getName());
Steve Naroff74216642007-09-14 22:20:54 +00001447 FD->setInvalidDecl();
1448 EnclosingDecl->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00001449 continue;
1450 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001451 // We support flexible arrays at the end of structs in other structs
1452 // as an extension.
1453 Diag(FD->getLocation(), diag::ext_flexible_array_in_struct,
1454 FD->getName());
Fariborz Jahanian3f5faf72007-10-04 00:45:27 +00001455 if (Record)
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001456 Record->setHasFlexibleArrayMember(true);
Reid Spencer5f016e22007-07-11 17:01:13 +00001457 }
1458 }
1459 }
Fariborz Jahaniane7f64cc2007-10-12 22:10:42 +00001460 /// A field cannot be an Objective-c object
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001461 if (FDTy->isObjCInterfaceType()) {
Fariborz Jahaniane7f64cc2007-10-12 22:10:42 +00001462 Diag(FD->getLocation(), diag::err_statically_allocated_object,
1463 FD->getName());
1464 FD->setInvalidDecl();
1465 EnclosingDecl->setInvalidDecl();
1466 continue;
1467 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001468 // Keep track of the number of named members.
1469 if (IdentifierInfo *II = FD->getIdentifier()) {
1470 // Detect duplicate member names.
1471 if (!FieldIDs.insert(II)) {
1472 Diag(FD->getLocation(), diag::err_duplicate_member, II->getName());
1473 // Find the previous decl.
1474 SourceLocation PrevLoc;
1475 for (unsigned i = 0, e = RecFields.size(); ; ++i) {
1476 assert(i != e && "Didn't find previous def!");
1477 if (RecFields[i]->getIdentifier() == II) {
1478 PrevLoc = RecFields[i]->getLocation();
1479 break;
1480 }
1481 }
1482 Diag(PrevLoc, diag::err_previous_definition);
Steve Naroff74216642007-09-14 22:20:54 +00001483 FD->setInvalidDecl();
1484 EnclosingDecl->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00001485 continue;
1486 }
1487 ++NumNamedMembers;
1488 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001489 }
1490
Reid Spencer5f016e22007-07-11 17:01:13 +00001491 // Okay, we successfully defined 'Record'.
Chris Lattnere1e79852008-02-06 00:51:33 +00001492 if (Record) {
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001493 Record->defineBody(&RecFields[0], RecFields.size());
Chris Lattnere1e79852008-02-06 00:51:33 +00001494 Consumer.HandleTagDeclDefinition(Record);
1495 } else {
Chris Lattnera91d3812008-02-05 22:40:55 +00001496 ObjCIvarDecl **ClsFields = reinterpret_cast<ObjCIvarDecl**>(&RecFields[0]);
1497 if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(EnclosingDecl))
1498 ID->addInstanceVariablesToClass(ClsFields, RecFields.size(), RBrac);
1499 else if (ObjCImplementationDecl *IMPDecl =
1500 dyn_cast<ObjCImplementationDecl>(EnclosingDecl)) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001501 assert(IMPDecl && "ActOnFields - missing ObjCImplementationDecl");
1502 IMPDecl->ObjCAddInstanceVariablesToClassImpl(ClsFields, RecFields.size());
Fariborz Jahanian3a3ca1b2007-10-31 18:48:14 +00001503 CheckImplementationIvars(IMPDecl, ClsFields, RecFields.size(), RBrac);
Fariborz Jahaniand0b90bf2007-09-26 18:27:25 +00001504 }
Fariborz Jahanianb04a0212007-09-14 21:08:27 +00001505 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001506}
1507
Steve Naroff08d92e42007-09-15 18:49:24 +00001508Sema::DeclTy *Sema::ActOnEnumConstant(Scope *S, DeclTy *theEnumDecl,
Reid Spencer5f016e22007-07-11 17:01:13 +00001509 DeclTy *lastEnumConst,
1510 SourceLocation IdLoc, IdentifierInfo *Id,
1511 SourceLocation EqualLoc, ExprTy *val) {
1512 theEnumDecl = theEnumDecl; // silence unused warning.
1513 EnumConstantDecl *LastEnumConst =
1514 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(lastEnumConst));
1515 Expr *Val = static_cast<Expr*>(val);
1516
Chris Lattner31e05722007-08-26 06:24:45 +00001517 // The scope passed in may not be a decl scope. Zip up the scope tree until
1518 // we find one that is.
1519 while ((S->getFlags() & Scope::DeclScope) == 0)
1520 S = S->getParent();
1521
Reid Spencer5f016e22007-07-11 17:01:13 +00001522 // Verify that there isn't already something declared with this name in this
1523 // scope.
Steve Naroff8e74c932007-09-13 21:41:19 +00001524 if (ScopedDecl *PrevDecl = LookupScopedDecl(Id, Decl::IDNS_Ordinary,
1525 IdLoc, S)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001526 if (S->isDeclScope(PrevDecl)) {
1527 if (isa<EnumConstantDecl>(PrevDecl))
1528 Diag(IdLoc, diag::err_redefinition_of_enumerator, Id->getName());
1529 else
1530 Diag(IdLoc, diag::err_redefinition, Id->getName());
1531 Diag(PrevDecl->getLocation(), diag::err_previous_definition);
Chris Lattnera73349d2008-02-26 00:33:57 +00001532 delete Val;
Reid Spencer5f016e22007-07-11 17:01:13 +00001533 return 0;
1534 }
1535 }
1536
1537 llvm::APSInt EnumVal(32);
1538 QualType EltTy;
1539 if (Val) {
Chris Lattner421a23d2007-08-27 21:16:18 +00001540 // Make sure to promote the operand type to int.
1541 UsualUnaryConversions(Val);
1542
Reid Spencer5f016e22007-07-11 17:01:13 +00001543 // C99 6.7.2.2p2: Make sure we have an integer constant expression.
1544 SourceLocation ExpLoc;
Chris Lattner590b6642007-07-15 23:26:56 +00001545 if (!Val->isIntegerConstantExpr(EnumVal, Context, &ExpLoc)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001546 Diag(ExpLoc, diag::err_enum_value_not_integer_constant_expr,
1547 Id->getName());
Chris Lattnera73349d2008-02-26 00:33:57 +00001548 delete Val;
Chris Lattnerb7416f92007-08-27 17:37:24 +00001549 Val = 0; // Just forget about it.
Chris Lattnere9ca8512007-08-29 16:03:41 +00001550 } else {
1551 EltTy = Val->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001552 }
Chris Lattnerb7416f92007-08-27 17:37:24 +00001553 }
1554
1555 if (!Val) {
1556 if (LastEnumConst) {
1557 // Assign the last value + 1.
1558 EnumVal = LastEnumConst->getInitVal();
1559 ++EnumVal;
Chris Lattner421a23d2007-08-27 21:16:18 +00001560
1561 // Check for overflow on increment.
1562 if (EnumVal < LastEnumConst->getInitVal())
1563 Diag(IdLoc, diag::warn_enum_value_overflow);
1564
Chris Lattnerb7416f92007-08-27 17:37:24 +00001565 EltTy = LastEnumConst->getType();
1566 } else {
1567 // First value, set to zero.
1568 EltTy = Context.IntTy;
Chris Lattner98be4942008-03-05 18:54:05 +00001569 EnumVal.zextOrTrunc(static_cast<uint32_t>(Context.getTypeSize(EltTy)));
Chris Lattnerb7416f92007-08-27 17:37:24 +00001570 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001571 }
1572
Reid Spencer5f016e22007-07-11 17:01:13 +00001573 EnumConstantDecl *New = new EnumConstantDecl(IdLoc, Id, EltTy, Val, EnumVal,
1574 LastEnumConst);
1575
1576 // Register this decl in the current scope stack.
Steve Naroffc752d042007-09-13 18:10:37 +00001577 New->setNext(Id->getFETokenInfo<ScopedDecl>());
Reid Spencer5f016e22007-07-11 17:01:13 +00001578 Id->setFETokenInfo(New);
1579 S->AddDecl(New);
1580 return New;
1581}
1582
Steve Naroff08d92e42007-09-15 18:49:24 +00001583void Sema::ActOnEnumBody(SourceLocation EnumLoc, DeclTy *EnumDeclX,
Reid Spencer5f016e22007-07-11 17:01:13 +00001584 DeclTy **Elements, unsigned NumElements) {
1585 EnumDecl *Enum = cast<EnumDecl>(static_cast<Decl*>(EnumDeclX));
1586 assert(!Enum->isDefinition() && "Enum redefinitions can't reach here");
1587
Chris Lattnere37f0be2007-08-28 05:10:31 +00001588 // TODO: If the result value doesn't fit in an int, it must be a long or long
1589 // long value. ISO C does not support this, but GCC does as an extension,
1590 // emit a warning.
Chris Lattner98be4942008-03-05 18:54:05 +00001591 unsigned IntWidth = Context.Target.getIntWidth();
Chris Lattnere37f0be2007-08-28 05:10:31 +00001592
Chris Lattnerac609682007-08-28 06:15:15 +00001593 // Verify that all the values are okay, compute the size of the values, and
1594 // reverse the list.
1595 unsigned NumNegativeBits = 0;
1596 unsigned NumPositiveBits = 0;
1597
1598 // Keep track of whether all elements have type int.
1599 bool AllElementsInt = true;
1600
Reid Spencer5f016e22007-07-11 17:01:13 +00001601 EnumConstantDecl *EltList = 0;
1602 for (unsigned i = 0; i != NumElements; ++i) {
1603 EnumConstantDecl *ECD =
1604 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(Elements[i]));
1605 if (!ECD) continue; // Already issued a diagnostic.
Chris Lattner211a30e2007-08-28 05:27:00 +00001606
1607 // If the enum value doesn't fit in an int, emit an extension warning.
Chris Lattner211a30e2007-08-28 05:27:00 +00001608 const llvm::APSInt &InitVal = ECD->getInitVal();
Chris Lattnera73349d2008-02-26 00:33:57 +00001609 assert(InitVal.getBitWidth() >= IntWidth &&
1610 "Should have promoted value to int");
Chris Lattner211a30e2007-08-28 05:27:00 +00001611 if (InitVal.getBitWidth() > IntWidth) {
1612 llvm::APSInt V(InitVal);
1613 V.trunc(IntWidth);
1614 V.extend(InitVal.getBitWidth());
1615 if (V != InitVal)
1616 Diag(ECD->getLocation(), diag::ext_enum_value_not_int,
1617 InitVal.toString());
1618 }
Chris Lattnerac609682007-08-28 06:15:15 +00001619
1620 // Keep track of the size of positive and negative values.
Chris Lattnera73349d2008-02-26 00:33:57 +00001621 if (InitVal.isUnsigned() || InitVal.isNonNegative())
Chris Lattner21dd8212008-01-14 21:47:29 +00001622 NumPositiveBits = std::max(NumPositiveBits,
1623 (unsigned)InitVal.getActiveBits());
Chris Lattnerac609682007-08-28 06:15:15 +00001624 else
Chris Lattner21dd8212008-01-14 21:47:29 +00001625 NumNegativeBits = std::max(NumNegativeBits,
1626 (unsigned)InitVal.getMinSignedBits());
Reid Spencer5f016e22007-07-11 17:01:13 +00001627
Chris Lattnerac609682007-08-28 06:15:15 +00001628 // Keep track of whether every enum element has type int (very commmon).
1629 if (AllElementsInt)
1630 AllElementsInt = ECD->getType() == Context.IntTy;
1631
Reid Spencer5f016e22007-07-11 17:01:13 +00001632 ECD->setNextDeclarator(EltList);
1633 EltList = ECD;
1634 }
1635
Chris Lattnerac609682007-08-28 06:15:15 +00001636 // Figure out the type that should be used for this enum.
1637 // FIXME: Support attribute(packed) on enums and -fshort-enums.
1638 QualType BestType;
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001639 unsigned BestWidth;
Chris Lattnerac609682007-08-28 06:15:15 +00001640
1641 if (NumNegativeBits) {
1642 // If there is a negative value, figure out the smallest integer type (of
1643 // int/long/longlong) that fits.
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001644 if (NumNegativeBits <= IntWidth && NumPositiveBits < IntWidth) {
Chris Lattnerac609682007-08-28 06:15:15 +00001645 BestType = Context.IntTy;
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001646 BestWidth = IntWidth;
1647 } else {
Chris Lattner98be4942008-03-05 18:54:05 +00001648 BestWidth = Context.Target.getLongWidth();
Ted Kremenek9c728dc2007-12-12 22:39:36 +00001649
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001650 if (NumNegativeBits <= BestWidth && NumPositiveBits < BestWidth)
Chris Lattnerac609682007-08-28 06:15:15 +00001651 BestType = Context.LongTy;
1652 else {
Chris Lattner98be4942008-03-05 18:54:05 +00001653 BestWidth = Context.Target.getLongLongWidth();
Ted Kremenek9c728dc2007-12-12 22:39:36 +00001654
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001655 if (NumNegativeBits > BestWidth || NumPositiveBits >= BestWidth)
Chris Lattnerac609682007-08-28 06:15:15 +00001656 Diag(Enum->getLocation(), diag::warn_enum_too_large);
1657 BestType = Context.LongLongTy;
1658 }
1659 }
1660 } else {
1661 // If there is no negative value, figure out which of uint, ulong, ulonglong
1662 // fits.
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001663 if (NumPositiveBits <= IntWidth) {
Chris Lattnerac609682007-08-28 06:15:15 +00001664 BestType = Context.UnsignedIntTy;
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001665 BestWidth = IntWidth;
1666 } else if (NumPositiveBits <=
Chris Lattner98be4942008-03-05 18:54:05 +00001667 (BestWidth = Context.Target.getLongWidth())) {
Chris Lattnerac609682007-08-28 06:15:15 +00001668 BestType = Context.UnsignedLongTy;
Chris Lattner98be4942008-03-05 18:54:05 +00001669 } else {
1670 BestWidth = Context.Target.getLongLongWidth();
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001671 assert(NumPositiveBits <= BestWidth &&
Chris Lattnerac609682007-08-28 06:15:15 +00001672 "How could an initializer get larger than ULL?");
1673 BestType = Context.UnsignedLongLongTy;
1674 }
1675 }
1676
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001677 // Loop over all of the enumerator constants, changing their types to match
1678 // the type of the enum if needed.
1679 for (unsigned i = 0; i != NumElements; ++i) {
1680 EnumConstantDecl *ECD =
1681 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(Elements[i]));
1682 if (!ECD) continue; // Already issued a diagnostic.
1683
1684 // Standard C says the enumerators have int type, but we allow, as an
1685 // extension, the enumerators to be larger than int size. If each
1686 // enumerator value fits in an int, type it as an int, otherwise type it the
1687 // same as the enumerator decl itself. This means that in "enum { X = 1U }"
1688 // that X has type 'int', not 'unsigned'.
Chris Lattnera73349d2008-02-26 00:33:57 +00001689 if (ECD->getType() == Context.IntTy) {
1690 // Make sure the init value is signed.
1691 llvm::APSInt IV = ECD->getInitVal();
1692 IV.setIsSigned(true);
1693 ECD->setInitVal(IV);
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001694 continue; // Already int type.
Chris Lattnera73349d2008-02-26 00:33:57 +00001695 }
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001696
1697 // Determine whether the value fits into an int.
1698 llvm::APSInt InitVal = ECD->getInitVal();
1699 bool FitsInInt;
1700 if (InitVal.isUnsigned() || !InitVal.isNegative())
1701 FitsInInt = InitVal.getActiveBits() < IntWidth;
1702 else
1703 FitsInInt = InitVal.getMinSignedBits() <= IntWidth;
1704
1705 // If it fits into an integer type, force it. Otherwise force it to match
1706 // the enum decl type.
1707 QualType NewTy;
1708 unsigned NewWidth;
1709 bool NewSign;
1710 if (FitsInInt) {
1711 NewTy = Context.IntTy;
1712 NewWidth = IntWidth;
1713 NewSign = true;
1714 } else if (ECD->getType() == BestType) {
1715 // Already the right type!
1716 continue;
1717 } else {
1718 NewTy = BestType;
1719 NewWidth = BestWidth;
1720 NewSign = BestType->isSignedIntegerType();
1721 }
1722
1723 // Adjust the APSInt value.
1724 InitVal.extOrTrunc(NewWidth);
1725 InitVal.setIsSigned(NewSign);
1726 ECD->setInitVal(InitVal);
1727
1728 // Adjust the Expr initializer and type.
1729 ECD->setInitExpr(new ImplicitCastExpr(NewTy, ECD->getInitExpr()));
1730 ECD->setType(NewTy);
1731 }
Chris Lattnerac609682007-08-28 06:15:15 +00001732
Chris Lattnere00b18c2007-08-28 18:24:31 +00001733 Enum->defineElements(EltList, BestType);
Chris Lattnere1e79852008-02-06 00:51:33 +00001734 Consumer.HandleTagDeclDefinition(Enum);
Reid Spencer5f016e22007-07-11 17:01:13 +00001735}
1736
Anders Carlssondfab6cb2008-02-08 00:33:21 +00001737Sema::DeclTy *Sema::ActOnFileScopeAsmDecl(SourceLocation Loc,
1738 ExprTy *expr) {
1739 StringLiteral *AsmString = cast<StringLiteral>((Expr*)expr);
1740
1741 return new FileScopeAsmDecl(Loc, AsmString);
1742}
1743
Chris Lattnerc6fdc342008-01-12 07:05:38 +00001744Sema::DeclTy* Sema::ActOnLinkageSpec(SourceLocation Loc,
Chris Lattnerc81c8142008-02-25 21:04:36 +00001745 SourceLocation LBrace,
1746 SourceLocation RBrace,
1747 const char *Lang,
1748 unsigned StrSize,
1749 DeclTy *D) {
Chris Lattnerc6fdc342008-01-12 07:05:38 +00001750 LinkageSpecDecl::LanguageIDs Language;
1751 Decl *dcl = static_cast<Decl *>(D);
1752 if (strncmp(Lang, "\"C\"", StrSize) == 0)
1753 Language = LinkageSpecDecl::lang_c;
1754 else if (strncmp(Lang, "\"C++\"", StrSize) == 0)
1755 Language = LinkageSpecDecl::lang_cxx;
1756 else {
1757 Diag(Loc, diag::err_bad_language);
1758 return 0;
1759 }
1760
1761 // FIXME: Add all the various semantics of linkage specifications
1762 return new LinkageSpecDecl(Loc, Language, dcl);
1763}
1764
Chris Lattner74788ba2008-02-21 00:48:22 +00001765void Sema::HandleDeclAttribute(Decl *New, AttributeList *Attr) {
Anders Carlsson6ede0ff2007-12-19 06:16:30 +00001766
Chris Lattner74788ba2008-02-21 00:48:22 +00001767 switch (Attr->getKind()) {
Chris Lattner212839c2008-02-20 23:17:35 +00001768 case AttributeList::AT_vector_size:
Reid Spencer5f016e22007-07-11 17:01:13 +00001769 if (ValueDecl *vDecl = dyn_cast<ValueDecl>(New)) {
Chris Lattner74788ba2008-02-21 00:48:22 +00001770 QualType newType = HandleVectorTypeAttribute(vDecl->getType(), Attr);
Reid Spencer5f016e22007-07-11 17:01:13 +00001771 if (!newType.isNull()) // install the new vector type into the decl
1772 vDecl->setType(newType);
1773 }
1774 if (TypedefDecl *tDecl = dyn_cast<TypedefDecl>(New)) {
1775 QualType newType = HandleVectorTypeAttribute(tDecl->getUnderlyingType(),
Chris Lattner74788ba2008-02-21 00:48:22 +00001776 Attr);
Reid Spencer5f016e22007-07-11 17:01:13 +00001777 if (!newType.isNull()) // install the new vector type into the decl
1778 tDecl->setUnderlyingType(newType);
1779 }
Chris Lattner212839c2008-02-20 23:17:35 +00001780 break;
1781 case AttributeList::AT_ocu_vector_type:
Steve Naroffbea0b342007-07-29 16:33:31 +00001782 if (TypedefDecl *tDecl = dyn_cast<TypedefDecl>(New))
Chris Lattner74788ba2008-02-21 00:48:22 +00001783 HandleOCUVectorTypeAttribute(tDecl, Attr);
Steve Naroffbea0b342007-07-29 16:33:31 +00001784 else
Chris Lattner74788ba2008-02-21 00:48:22 +00001785 Diag(Attr->getLoc(),
Steve Naroff73322922007-07-18 18:00:27 +00001786 diag::err_typecheck_ocu_vector_not_typedef);
Chris Lattner212839c2008-02-20 23:17:35 +00001787 break;
1788 case AttributeList::AT_address_space:
Christopher Lambebb97e92008-02-04 02:31:56 +00001789 if (TypedefDecl *tDecl = dyn_cast<TypedefDecl>(New)) {
1790 QualType newType = HandleAddressSpaceTypeAttribute(
1791 tDecl->getUnderlyingType(),
Chris Lattner74788ba2008-02-21 00:48:22 +00001792 Attr);
1793 tDecl->setUnderlyingType(newType);
Christopher Lambebb97e92008-02-04 02:31:56 +00001794 } else if (ValueDecl *vDecl = dyn_cast<ValueDecl>(New)) {
1795 QualType newType = HandleAddressSpaceTypeAttribute(vDecl->getType(),
Chris Lattner74788ba2008-02-21 00:48:22 +00001796 Attr);
1797 // install the new addr spaced type into the decl
1798 vDecl->setType(newType);
Christopher Lambebb97e92008-02-04 02:31:56 +00001799 }
Chris Lattner212839c2008-02-20 23:17:35 +00001800 break;
Chris Lattner7e669b22008-02-29 16:48:43 +00001801 case AttributeList::AT_deprecated:
Chris Lattnerddee4232008-03-03 03:28:21 +00001802 HandleDeprecatedAttribute(New, Attr);
1803 break;
1804 case AttributeList::AT_visibility:
1805 HandleVisibilityAttribute(New, Attr);
1806 break;
1807 case AttributeList::AT_weak:
1808 HandleWeakAttribute(New, Attr);
1809 break;
1810 case AttributeList::AT_dllimport:
1811 HandleDLLImportAttribute(New, Attr);
1812 break;
1813 case AttributeList::AT_dllexport:
1814 HandleDLLExportAttribute(New, Attr);
1815 break;
1816 case AttributeList::AT_nothrow:
1817 HandleNothrowAttribute(New, Attr);
Chris Lattner7e669b22008-02-29 16:48:43 +00001818 break;
Nate Begeman440b4562008-03-07 20:04:22 +00001819 case AttributeList::AT_stdcall:
1820 HandleStdCallAttribute(New, Attr);
1821 break;
1822 case AttributeList::AT_fastcall:
1823 HandleFastCallAttribute(New, Attr);
1824 break;
Chris Lattner212839c2008-02-20 23:17:35 +00001825 case AttributeList::AT_aligned:
Chris Lattner74788ba2008-02-21 00:48:22 +00001826 HandleAlignedAttribute(New, Attr);
Chris Lattner212839c2008-02-20 23:17:35 +00001827 break;
1828 case AttributeList::AT_packed:
Chris Lattner74788ba2008-02-21 00:48:22 +00001829 HandlePackedAttribute(New, Attr);
Chris Lattner212839c2008-02-20 23:17:35 +00001830 break;
Nate Begemanc398f0b2008-02-21 19:30:49 +00001831 case AttributeList::AT_annotate:
1832 HandleAnnotateAttribute(New, Attr);
1833 break;
Ted Kremenekaecb3832008-02-27 20:43:06 +00001834 case AttributeList::AT_noreturn:
1835 HandleNoReturnAttribute(New, Attr);
1836 break;
Chris Lattnerddee4232008-03-03 03:28:21 +00001837 case AttributeList::AT_format:
1838 HandleFormatAttribute(New, Attr);
1839 break;
Chris Lattner212839c2008-02-20 23:17:35 +00001840 default:
Chris Lattner7e669b22008-02-29 16:48:43 +00001841#if 0
1842 // TODO: when we have the full set of attributes, warn about unknown ones.
1843 Diag(Attr->getLoc(), diag::warn_attribute_ignored,
1844 Attr->getName()->getName());
1845#endif
Chris Lattner212839c2008-02-20 23:17:35 +00001846 break;
1847 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001848}
1849
1850void Sema::HandleDeclAttributes(Decl *New, AttributeList *declspec_prefix,
1851 AttributeList *declarator_postfix) {
1852 while (declspec_prefix) {
1853 HandleDeclAttribute(New, declspec_prefix);
1854 declspec_prefix = declspec_prefix->getNext();
1855 }
1856 while (declarator_postfix) {
1857 HandleDeclAttribute(New, declarator_postfix);
1858 declarator_postfix = declarator_postfix->getNext();
1859 }
1860}
1861
Steve Naroffbea0b342007-07-29 16:33:31 +00001862void Sema::HandleOCUVectorTypeAttribute(TypedefDecl *tDecl,
1863 AttributeList *rawAttr) {
1864 QualType curType = tDecl->getUnderlyingType();
Anders Carlsson78aaae92007-12-19 07:19:40 +00001865 // check the attribute arguments.
Steve Naroff73322922007-07-18 18:00:27 +00001866 if (rawAttr->getNumArgs() != 1) {
Chris Lattner2070d802008-02-20 23:25:22 +00001867 Diag(rawAttr->getLoc(), diag::err_attribute_wrong_number_arguments,
Steve Naroff73322922007-07-18 18:00:27 +00001868 std::string("1"));
Steve Naroffbea0b342007-07-29 16:33:31 +00001869 return;
Steve Naroff73322922007-07-18 18:00:27 +00001870 }
1871 Expr *sizeExpr = static_cast<Expr *>(rawAttr->getArg(0));
1872 llvm::APSInt vecSize(32);
1873 if (!sizeExpr->isIntegerConstantExpr(vecSize, Context)) {
Chris Lattner2070d802008-02-20 23:25:22 +00001874 Diag(rawAttr->getLoc(), diag::err_attribute_argument_not_int,
Anders Carlsson042c4e72008-02-16 19:51:27 +00001875 "ocu_vector_type", sizeExpr->getSourceRange());
Steve Naroffbea0b342007-07-29 16:33:31 +00001876 return;
Steve Naroff73322922007-07-18 18:00:27 +00001877 }
1878 // unlike gcc's vector_size attribute, we do not allow vectors to be defined
1879 // in conjunction with complex types (pointers, arrays, functions, etc.).
1880 Type *canonType = curType.getCanonicalType().getTypePtr();
1881 if (!(canonType->isIntegerType() || canonType->isRealFloatingType())) {
Chris Lattner2070d802008-02-20 23:25:22 +00001882 Diag(rawAttr->getLoc(), diag::err_attribute_invalid_vector_type,
Steve Naroff73322922007-07-18 18:00:27 +00001883 curType.getCanonicalType().getAsString());
Steve Naroffbea0b342007-07-29 16:33:31 +00001884 return;
Steve Naroff73322922007-07-18 18:00:27 +00001885 }
1886 // unlike gcc's vector_size attribute, the size is specified as the
1887 // number of elements, not the number of bytes.
Chris Lattner701e5eb2007-09-04 02:45:27 +00001888 unsigned vectorSize = static_cast<unsigned>(vecSize.getZExtValue());
Steve Naroff73322922007-07-18 18:00:27 +00001889
1890 if (vectorSize == 0) {
Chris Lattner2070d802008-02-20 23:25:22 +00001891 Diag(rawAttr->getLoc(), diag::err_attribute_zero_size,
Steve Naroff73322922007-07-18 18:00:27 +00001892 sizeExpr->getSourceRange());
Steve Naroffbea0b342007-07-29 16:33:31 +00001893 return;
Steve Naroff73322922007-07-18 18:00:27 +00001894 }
Steve Naroffbea0b342007-07-29 16:33:31 +00001895 // Instantiate/Install the vector type, the number of elements is > 0.
1896 tDecl->setUnderlyingType(Context.getOCUVectorType(curType, vectorSize));
1897 // Remember this typedef decl, we will need it later for diagnostics.
1898 OCUVectorDecls.push_back(tDecl);
Steve Naroff73322922007-07-18 18:00:27 +00001899}
1900
Reid Spencer5f016e22007-07-11 17:01:13 +00001901QualType Sema::HandleVectorTypeAttribute(QualType curType,
Chris Lattnera7674d82007-07-13 22:13:22 +00001902 AttributeList *rawAttr) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001903 // check the attribute arugments.
1904 if (rawAttr->getNumArgs() != 1) {
Chris Lattner2070d802008-02-20 23:25:22 +00001905 Diag(rawAttr->getLoc(), diag::err_attribute_wrong_number_arguments,
Reid Spencer5f016e22007-07-11 17:01:13 +00001906 std::string("1"));
1907 return QualType();
1908 }
1909 Expr *sizeExpr = static_cast<Expr *>(rawAttr->getArg(0));
1910 llvm::APSInt vecSize(32);
Chris Lattner590b6642007-07-15 23:26:56 +00001911 if (!sizeExpr->isIntegerConstantExpr(vecSize, Context)) {
Chris Lattner2070d802008-02-20 23:25:22 +00001912 Diag(rawAttr->getLoc(), diag::err_attribute_argument_not_int,
Anders Carlsson042c4e72008-02-16 19:51:27 +00001913 "vector_size", sizeExpr->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +00001914 return QualType();
1915 }
1916 // navigate to the base type - we need to provide for vector pointers,
1917 // vector arrays, and functions returning vectors.
1918 Type *canonType = curType.getCanonicalType().getTypePtr();
1919
Steve Naroff73322922007-07-18 18:00:27 +00001920 if (canonType->isPointerType() || canonType->isArrayType() ||
1921 canonType->isFunctionType()) {
Chris Lattner54b263b2007-12-19 05:38:06 +00001922 assert(0 && "HandleVector(): Complex type construction unimplemented");
Steve Naroff73322922007-07-18 18:00:27 +00001923 /* FIXME: rebuild the type from the inside out, vectorizing the inner type.
1924 do {
1925 if (PointerType *PT = dyn_cast<PointerType>(canonType))
1926 canonType = PT->getPointeeType().getTypePtr();
1927 else if (ArrayType *AT = dyn_cast<ArrayType>(canonType))
1928 canonType = AT->getElementType().getTypePtr();
1929 else if (FunctionType *FT = dyn_cast<FunctionType>(canonType))
1930 canonType = FT->getResultType().getTypePtr();
1931 } while (canonType->isPointerType() || canonType->isArrayType() ||
1932 canonType->isFunctionType());
1933 */
Reid Spencer5f016e22007-07-11 17:01:13 +00001934 }
1935 // the base type must be integer or float.
1936 if (!(canonType->isIntegerType() || canonType->isRealFloatingType())) {
Chris Lattner2070d802008-02-20 23:25:22 +00001937 Diag(rawAttr->getLoc(), diag::err_attribute_invalid_vector_type,
Reid Spencer5f016e22007-07-11 17:01:13 +00001938 curType.getCanonicalType().getAsString());
1939 return QualType();
1940 }
Chris Lattner98be4942008-03-05 18:54:05 +00001941 unsigned typeSize = static_cast<unsigned>(Context.getTypeSize(curType));
Reid Spencer5f016e22007-07-11 17:01:13 +00001942 // vecSize is specified in bytes - convert to bits.
Chris Lattner701e5eb2007-09-04 02:45:27 +00001943 unsigned vectorSize = static_cast<unsigned>(vecSize.getZExtValue() * 8);
Reid Spencer5f016e22007-07-11 17:01:13 +00001944
1945 // the vector size needs to be an integral multiple of the type size.
1946 if (vectorSize % typeSize) {
Chris Lattner2070d802008-02-20 23:25:22 +00001947 Diag(rawAttr->getLoc(), diag::err_attribute_invalid_size,
Reid Spencer5f016e22007-07-11 17:01:13 +00001948 sizeExpr->getSourceRange());
1949 return QualType();
1950 }
1951 if (vectorSize == 0) {
Chris Lattner2070d802008-02-20 23:25:22 +00001952 Diag(rawAttr->getLoc(), diag::err_attribute_zero_size,
Reid Spencer5f016e22007-07-11 17:01:13 +00001953 sizeExpr->getSourceRange());
1954 return QualType();
1955 }
Nate Begemanc398f0b2008-02-21 19:30:49 +00001956 // Instantiate the vector type, the number of elements is > 0, and not
1957 // required to be a power of 2, unlike GCC.
Steve Naroff73322922007-07-18 18:00:27 +00001958 return Context.getVectorType(curType, vectorSize/typeSize);
Reid Spencer5f016e22007-07-11 17:01:13 +00001959}
1960
Chris Lattner2070d802008-02-20 23:25:22 +00001961void Sema::HandlePackedAttribute(Decl *d, AttributeList *rawAttr) {
Anders Carlssonad148062008-02-16 00:29:18 +00001962 // check the attribute arguments.
1963 if (rawAttr->getNumArgs() > 0) {
Chris Lattner2070d802008-02-20 23:25:22 +00001964 Diag(rawAttr->getLoc(), diag::err_attribute_wrong_number_arguments,
Anders Carlssonad148062008-02-16 00:29:18 +00001965 std::string("0"));
1966 return;
1967 }
1968
1969 if (TagDecl *TD = dyn_cast<TagDecl>(d))
1970 TD->addAttr(new PackedAttr);
1971 else if (FieldDecl *FD = dyn_cast<FieldDecl>(d)) {
1972 // If the alignment is less than or equal to 8 bits, the packed attribute
1973 // has no effect.
Chris Lattner98be4942008-03-05 18:54:05 +00001974 if (Context.getTypeAlign(FD->getType()) <= 8)
Chris Lattner2070d802008-02-20 23:25:22 +00001975 Diag(rawAttr->getLoc(),
Anders Carlssonad148062008-02-16 00:29:18 +00001976 diag::warn_attribute_ignored_for_field_of_type,
Chris Lattner2070d802008-02-20 23:25:22 +00001977 rawAttr->getName()->getName(), FD->getType().getAsString());
Anders Carlssonad148062008-02-16 00:29:18 +00001978 else
Anders Carlsson425a6092008-02-16 00:39:40 +00001979 FD->addAttr(new PackedAttr);
Anders Carlssonad148062008-02-16 00:29:18 +00001980 } else
Chris Lattner2070d802008-02-20 23:25:22 +00001981 Diag(rawAttr->getLoc(), diag::warn_attribute_ignored,
1982 rawAttr->getName()->getName());
Anders Carlssonad148062008-02-16 00:29:18 +00001983}
Nate Begemanc398f0b2008-02-21 19:30:49 +00001984
Ted Kremenekaecb3832008-02-27 20:43:06 +00001985void Sema::HandleNoReturnAttribute(Decl *d, AttributeList *rawAttr) {
1986 // check the attribute arguments.
1987 if (rawAttr->getNumArgs() != 0) {
1988 Diag(rawAttr->getLoc(), diag::err_attribute_wrong_number_arguments,
1989 std::string("0"));
1990 return;
1991 }
1992
Ted Kremenek3465fb32008-03-03 16:52:27 +00001993 FunctionDecl *Fn = dyn_cast<FunctionDecl>(d);
1994
1995 if (!Fn) {
1996 Diag(rawAttr->getLoc(), diag::warn_attribute_wrong_decl_type,
1997 "noreturn", "function");
1998 return;
1999 }
2000
Ted Kremenekaecb3832008-02-27 20:43:06 +00002001 d->addAttr(new NoReturnAttr());
2002}
2003
Chris Lattnerddee4232008-03-03 03:28:21 +00002004void Sema::HandleDeprecatedAttribute(Decl *d, AttributeList *rawAttr) {
2005 // check the attribute arguments.
2006 if (rawAttr->getNumArgs() != 0) {
2007 Diag(rawAttr->getLoc(), diag::err_attribute_wrong_number_arguments,
2008 std::string("0"));
2009 return;
2010 }
2011
2012 d->addAttr(new DeprecatedAttr());
2013}
2014
2015void Sema::HandleVisibilityAttribute(Decl *d, AttributeList *rawAttr) {
2016 // check the attribute arguments.
Chris Lattner7b937ae2008-03-04 18:08:48 +00002017 if (rawAttr->getNumArgs() != 1) {
Chris Lattnerddee4232008-03-03 03:28:21 +00002018 Diag(rawAttr->getLoc(), diag::err_attribute_wrong_number_arguments,
2019 std::string("1"));
2020 return;
2021 }
2022
Chris Lattner7b937ae2008-03-04 18:08:48 +00002023 Expr *Arg = static_cast<Expr*>(rawAttr->getArg(0));
2024 Arg = Arg->IgnoreParenCasts();
2025 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
2026
2027 if (Str == 0 || Str->isWide()) {
Chris Lattnerddee4232008-03-03 03:28:21 +00002028 Diag(rawAttr->getLoc(), diag::err_attribute_argument_n_not_string,
Chris Lattner7b937ae2008-03-04 18:08:48 +00002029 "visibility", std::string("1"));
Chris Lattnerddee4232008-03-03 03:28:21 +00002030 return;
2031 }
2032
Chris Lattner7b937ae2008-03-04 18:08:48 +00002033 const char *TypeStr = Str->getStrData();
2034 unsigned TypeLen = Str->getByteLength();
Chris Lattnerddee4232008-03-03 03:28:21 +00002035 llvm::GlobalValue::VisibilityTypes type;
2036
Chris Lattner7b937ae2008-03-04 18:08:48 +00002037 if (TypeLen == 7 && !memcmp(TypeStr, "default", 7))
Chris Lattnerddee4232008-03-03 03:28:21 +00002038 type = llvm::GlobalValue::DefaultVisibility;
Chris Lattner7b937ae2008-03-04 18:08:48 +00002039 else if (TypeLen == 6 && !memcmp(TypeStr, "hidden", 6))
Chris Lattnerddee4232008-03-03 03:28:21 +00002040 type = llvm::GlobalValue::HiddenVisibility;
Chris Lattner7b937ae2008-03-04 18:08:48 +00002041 else if (TypeLen == 8 && !memcmp(TypeStr, "internal", 8))
Chris Lattnerddee4232008-03-03 03:28:21 +00002042 type = llvm::GlobalValue::HiddenVisibility; // FIXME
Chris Lattner7b937ae2008-03-04 18:08:48 +00002043 else if (TypeLen == 9 && !memcmp(TypeStr, "protected", 9))
Chris Lattnerddee4232008-03-03 03:28:21 +00002044 type = llvm::GlobalValue::ProtectedVisibility;
2045 else {
2046 Diag(rawAttr->getLoc(), diag::warn_attribute_type_not_supported,
Chris Lattner7b937ae2008-03-04 18:08:48 +00002047 "visibility", TypeStr);
Chris Lattnerddee4232008-03-03 03:28:21 +00002048 return;
2049 }
2050
2051 d->addAttr(new VisibilityAttr(type));
2052}
2053
2054void Sema::HandleWeakAttribute(Decl *d, AttributeList *rawAttr) {
2055 // check the attribute arguments.
2056 if (rawAttr->getNumArgs() != 0) {
2057 Diag(rawAttr->getLoc(), diag::err_attribute_wrong_number_arguments,
2058 std::string("0"));
2059 return;
2060 }
2061
2062 d->addAttr(new WeakAttr());
2063}
2064
2065void Sema::HandleDLLImportAttribute(Decl *d, AttributeList *rawAttr) {
2066 // check the attribute arguments.
2067 if (rawAttr->getNumArgs() != 0) {
2068 Diag(rawAttr->getLoc(), diag::err_attribute_wrong_number_arguments,
2069 std::string("0"));
2070 return;
2071 }
2072
2073 d->addAttr(new DLLImportAttr());
2074}
2075
2076void Sema::HandleDLLExportAttribute(Decl *d, AttributeList *rawAttr) {
2077 // check the attribute arguments.
2078 if (rawAttr->getNumArgs() != 0) {
2079 Diag(rawAttr->getLoc(), diag::err_attribute_wrong_number_arguments,
2080 std::string("0"));
2081 return;
2082 }
2083
2084 d->addAttr(new DLLExportAttr());
2085}
2086
Nate Begeman440b4562008-03-07 20:04:22 +00002087void Sema::HandleStdCallAttribute(Decl *d, AttributeList *rawAttr) {
2088 // check the attribute arguments.
2089 if (rawAttr->getNumArgs() != 0) {
2090 Diag(rawAttr->getLoc(), diag::err_attribute_wrong_number_arguments,
2091 std::string("0"));
2092 return;
2093 }
2094
2095 d->addAttr(new StdCallAttr());
2096}
2097
2098void Sema::HandleFastCallAttribute(Decl *d, AttributeList *rawAttr) {
2099 // check the attribute arguments.
2100 if (rawAttr->getNumArgs() != 0) {
2101 Diag(rawAttr->getLoc(), diag::err_attribute_wrong_number_arguments,
2102 std::string("0"));
2103 return;
2104 }
2105
2106 d->addAttr(new FastCallAttr());
2107}
2108
Chris Lattnerddee4232008-03-03 03:28:21 +00002109void Sema::HandleNothrowAttribute(Decl *d, AttributeList *rawAttr) {
2110 // check the attribute arguments.
2111 if (rawAttr->getNumArgs() != 0) {
2112 Diag(rawAttr->getLoc(), diag::err_attribute_wrong_number_arguments,
2113 std::string("0"));
2114 return;
2115 }
2116
2117 d->addAttr(new NoThrowAttr());
2118}
2119
Ted Kremenekaa8f9762008-03-07 18:43:49 +00002120/// Handle __attribute__((format(type,idx,firstarg))) attributes
2121/// based on http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chris Lattnerddee4232008-03-03 03:28:21 +00002122void Sema::HandleFormatAttribute(Decl *d, AttributeList *rawAttr) {
2123
2124 if (!rawAttr->getParameterName()) {
2125 Diag(rawAttr->getLoc(), diag::err_attribute_argument_n_not_string,
2126 "format", std::string("1"));
2127 return;
2128 }
2129
2130 if (rawAttr->getNumArgs() != 2) {
2131 Diag(rawAttr->getLoc(), diag::err_attribute_wrong_number_arguments,
2132 std::string("3"));
2133 return;
2134 }
2135
2136 FunctionDecl *Fn = dyn_cast<FunctionDecl>(d);
2137 if (!Fn) {
2138 Diag(rawAttr->getLoc(), diag::warn_attribute_wrong_decl_type,
2139 "format", "function");
2140 return;
2141 }
2142
Ted Kremenekaa8f9762008-03-07 18:43:49 +00002143 const FunctionTypeProto *proto =
2144 dyn_cast<FunctionTypeProto>(Fn->getType()->getAsFunctionType());
2145 if (!proto)
2146 return;
2147
Chris Lattnerddee4232008-03-03 03:28:21 +00002148 // FIXME: in C++ the implicit 'this' function parameter also counts.
Ted Kremenekaa8f9762008-03-07 18:43:49 +00002149 // this is needed in order to be compatible with GCC
Chris Lattnerddee4232008-03-03 03:28:21 +00002150 // the index must start in 1 and the limit is numargs+1
Ted Kremenekaa8f9762008-03-07 18:43:49 +00002151 unsigned NumArgs = Fn->getNumParams();
2152 unsigned FirstIdx = 1;
Chris Lattnerddee4232008-03-03 03:28:21 +00002153
2154 const char *Format = rawAttr->getParameterName()->getName();
2155 unsigned FormatLen = rawAttr->getParameterName()->getLength();
2156
2157 // Normalize the argument, __foo__ becomes foo.
2158 if (FormatLen > 4 && Format[0] == '_' && Format[1] == '_' &&
2159 Format[FormatLen - 2] == '_' && Format[FormatLen - 1] == '_') {
2160 Format += 2;
2161 FormatLen -= 4;
2162 }
2163
2164 if (!((FormatLen == 5 && !memcmp(Format, "scanf", 5))
2165 || (FormatLen == 6 && !memcmp(Format, "printf", 6))
2166 || (FormatLen == 7 && !memcmp(Format, "strfmon", 7))
2167 || (FormatLen == 8 && !memcmp(Format, "strftime", 8)))) {
2168 Diag(rawAttr->getLoc(), diag::warn_attribute_type_not_supported,
2169 "format", rawAttr->getParameterName()->getName());
2170 return;
2171 }
2172
Ted Kremenekaa8f9762008-03-07 18:43:49 +00002173 // checks for the 2nd argument
Chris Lattnerddee4232008-03-03 03:28:21 +00002174 Expr *IdxExpr = static_cast<Expr *>(rawAttr->getArg(0));
Ted Kremenekaa8f9762008-03-07 18:43:49 +00002175 llvm::APSInt Idx(Context.getTypeSize(IdxExpr->getType()));
Chris Lattnerddee4232008-03-03 03:28:21 +00002176 if (!IdxExpr->isIntegerConstantExpr(Idx, Context)) {
2177 Diag(rawAttr->getLoc(), diag::err_attribute_argument_n_not_int,
2178 "format", std::string("2"), IdxExpr->getSourceRange());
2179 return;
2180 }
2181
Ted Kremenekaa8f9762008-03-07 18:43:49 +00002182 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
Chris Lattnerddee4232008-03-03 03:28:21 +00002183 Diag(rawAttr->getLoc(), diag::err_attribute_argument_out_of_bounds,
2184 "format", std::string("2"), IdxExpr->getSourceRange());
2185 return;
2186 }
2187
Ted Kremenekaa8f9762008-03-07 18:43:49 +00002188 // make sure the format string is really a string
2189 QualType Ty = proto->getArgType(Idx.getZExtValue()-1);
2190 if (!Ty->isPointerType() ||
2191 !Ty->getAsPointerType()->getPointeeType()->isCharType()) {
2192 Diag(rawAttr->getLoc(), diag::err_format_attribute_not_string,
2193 IdxExpr->getSourceRange());
2194 return;
2195 }
2196
2197
2198 // check the 3rd argument
Chris Lattnerddee4232008-03-03 03:28:21 +00002199 Expr *FirstArgExpr = static_cast<Expr *>(rawAttr->getArg(1));
Ted Kremenekaa8f9762008-03-07 18:43:49 +00002200 llvm::APSInt FirstArg(Context.getTypeSize(FirstArgExpr->getType()));
Chris Lattnerddee4232008-03-03 03:28:21 +00002201 if (!FirstArgExpr->isIntegerConstantExpr(FirstArg, Context)) {
2202 Diag(rawAttr->getLoc(), diag::err_attribute_argument_n_not_int,
2203 "format", std::string("3"), FirstArgExpr->getSourceRange());
2204 return;
2205 }
2206
Ted Kremenekaa8f9762008-03-07 18:43:49 +00002207 // check if the function is variadic if the 3rd argument non-zero
2208 if (FirstArg != 0) {
2209 if (proto->isVariadic()) {
2210 ++NumArgs; // +1 for ...
2211 } else {
2212 Diag(d->getLocation(), diag::err_format_attribute_requires_variadic);
2213 return;
2214 }
2215 }
2216
2217 // strftime requires FirstArg to be 0 because it doesn't read from any variable
2218 // the input is just the current time + the format string
Chris Lattnerddee4232008-03-03 03:28:21 +00002219 if (FormatLen == 8 && !memcmp(Format, "strftime", 8)) {
Ted Kremenekaa8f9762008-03-07 18:43:49 +00002220 if (FirstArg != 0) {
Chris Lattnerddee4232008-03-03 03:28:21 +00002221 Diag(rawAttr->getLoc(), diag::err_format_strftime_third_parameter,
2222 FirstArgExpr->getSourceRange());
2223 return;
2224 }
Ted Kremenekaa8f9762008-03-07 18:43:49 +00002225 // if 0 it disables parameter checking (to use with e.g. va_list)
2226 } else if (FirstArg != 0 && FirstArg != NumArgs) {
Chris Lattnerddee4232008-03-03 03:28:21 +00002227 Diag(rawAttr->getLoc(), diag::err_attribute_argument_out_of_bounds,
2228 "format", std::string("3"), FirstArgExpr->getSourceRange());
2229 return;
2230 }
2231
2232 d->addAttr(new FormatAttr(std::string(Format, FormatLen),
2233 Idx.getZExtValue(), FirstArg.getZExtValue()));
2234}
2235
Nate Begemanc398f0b2008-02-21 19:30:49 +00002236void Sema::HandleAnnotateAttribute(Decl *d, AttributeList *rawAttr) {
2237 // check the attribute arguments.
2238 if (rawAttr->getNumArgs() != 1) {
2239 Diag(rawAttr->getLoc(), diag::err_attribute_wrong_number_arguments,
2240 std::string("1"));
2241 return;
2242 }
2243 Expr *argExpr = static_cast<Expr *>(rawAttr->getArg(0));
2244 StringLiteral *SE = dyn_cast<StringLiteral>(argExpr);
Anders Carlssonad148062008-02-16 00:29:18 +00002245
Nate Begemanc398f0b2008-02-21 19:30:49 +00002246 // Make sure that there is a string literal as the annotation's single
2247 // argument.
2248 if (!SE) {
2249 Diag(rawAttr->getLoc(), diag::err_attribute_annotate_no_string);
2250 return;
2251 }
2252 d->addAttr(new AnnotateAttr(std::string(SE->getStrData(),
2253 SE->getByteLength())));
2254}
2255
Anders Carlsson78aaae92007-12-19 07:19:40 +00002256void Sema::HandleAlignedAttribute(Decl *d, AttributeList *rawAttr)
2257{
2258 // check the attribute arguments.
Eli Friedman4ca08672008-01-30 17:38:42 +00002259 if (rawAttr->getNumArgs() > 1) {
Chris Lattner2070d802008-02-20 23:25:22 +00002260 Diag(rawAttr->getLoc(), diag::err_attribute_wrong_number_arguments,
Anders Carlsson78aaae92007-12-19 07:19:40 +00002261 std::string("1"));
2262 return;
2263 }
Eli Friedman4ca08672008-01-30 17:38:42 +00002264
Anders Carlsson042c4e72008-02-16 19:51:27 +00002265 unsigned Align = 0;
2266
2267 if (rawAttr->getNumArgs() == 0) {
2268 // FIXME: This should be the target specific maximum alignment.
2269 // (For now we just use 128 bits which is the maximum on X86.
2270 Align = 128;
Eli Friedman4ca08672008-01-30 17:38:42 +00002271 return;
Anders Carlsson042c4e72008-02-16 19:51:27 +00002272 } else {
2273 Expr *alignmentExpr = static_cast<Expr *>(rawAttr->getArg(0));
2274 llvm::APSInt alignment(32);
2275 if (!alignmentExpr->isIntegerConstantExpr(alignment, Context)) {
Chris Lattner2070d802008-02-20 23:25:22 +00002276 Diag(rawAttr->getLoc(), diag::err_attribute_argument_not_int,
Anders Carlsson042c4e72008-02-16 19:51:27 +00002277 "aligned", alignmentExpr->getSourceRange());
2278 return;
2279 }
2280
2281 Align = alignment.getZExtValue() * 8;
2282 }
Eli Friedman4ca08672008-01-30 17:38:42 +00002283
Anders Carlsson042c4e72008-02-16 19:51:27 +00002284 d->addAttr(new AlignedAttr(Align));
Anders Carlsson78aaae92007-12-19 07:19:40 +00002285}