blob: 015ba8c65d9e62ef52166a9ae9454abea70af379 [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
Steve Naroffb327ce02008-04-02 14:35:35 +000035Sema::DeclTy *Sema::isTypeName(const IdentifierInfo &II, Scope *S) {
36 Decl *IIDecl = LookupDecl(&II, Decl::IDNS_Ordinary, S, false);
37
Douglas Gregor2ce52f32008-04-13 21:07:44 +000038 if (IIDecl && (isa<TypedefDecl>(IIDecl) ||
39 isa<ObjCInterfaceDecl>(IIDecl) ||
40 isa<TagDecl>(IIDecl)))
Fariborz Jahanianbece4ac2007-10-12 16:34:10 +000041 return IIDecl;
Steve Naroff3536b442007-09-06 21:24:23 +000042 return 0;
Reid Spencer5f016e22007-07-11 17:01:13 +000043}
44
Chris Lattnerb048c982008-04-06 04:47:34 +000045void Sema::PushDeclContext(DeclContext *CD) {
Argyrios Kyrtzidisef177822008-04-17 14:40:12 +000046 assert( ( (CD->isFunctionOrMethod() && isa<TranslationUnitDecl>(CurContext))
47 || CD->getParent() == CurContext ) &&
Chris Lattnerb048c982008-04-06 04:47:34 +000048 "The next DeclContext should be directly contained in the current one.");
Chris Lattner0ed844b2008-04-04 06:12:32 +000049 CurContext = CD;
50}
51
Chris Lattnerb048c982008-04-06 04:47:34 +000052void Sema::PopDeclContext() {
53 assert(CurContext && "DeclContext imbalance!");
Argyrios Kyrtzidisef177822008-04-17 14:40:12 +000054 // If CurContext is a ObjC method, getParent() will return NULL.
55 CurContext = CurContext->isFunctionOrMethod()
56 ? Context.getTranslationUnitDecl()
57 : CurContext->getParent();
Chris Lattner0ed844b2008-04-04 06:12:32 +000058}
59
Argyrios Kyrtzidis87f3ff02008-04-12 00:47:19 +000060/// Add this decl to the scope shadowed decl chains.
61void Sema::PushOnScopeChains(NamedDecl *D, Scope *S) {
62 IdResolver.AddDecl(D, S);
63 S->AddDecl(D);
64}
65
Steve Naroffb216c882007-10-09 22:01:59 +000066void Sema::ActOnPopScope(SourceLocation Loc, Scope *S) {
Chris Lattner31e05722007-08-26 06:24:45 +000067 if (S->decl_empty()) return;
68 assert((S->getFlags() & Scope::DeclScope) &&"Scope shouldn't contain decls!");
69
Reid Spencer5f016e22007-07-11 17:01:13 +000070 for (Scope::decl_iterator I = S->decl_begin(), E = S->decl_end();
71 I != E; ++I) {
Steve Naroffc752d042007-09-13 18:10:37 +000072 Decl *TmpD = static_cast<Decl*>(*I);
73 assert(TmpD && "This decl didn't get pushed??");
74 ScopedDecl *D = dyn_cast<ScopedDecl>(TmpD);
75 assert(D && "This decl isn't a ScopedDecl?");
76
Reid Spencer5f016e22007-07-11 17:01:13 +000077 IdentifierInfo *II = D->getIdentifier();
78 if (!II) continue;
79
Chris Lattner7f925cc2008-04-11 07:00:53 +000080 // Unlink this decl from the identifier.
81 IdResolver.RemoveDecl(D);
82
Reid Spencer5f016e22007-07-11 17:01:13 +000083 // This will have to be revisited for C++: there we want to nest stuff in
84 // namespace decls etc. Even for C, we might want a top-level translation
85 // unit decl or something.
86 if (!CurFunctionDecl)
87 continue;
88
89 // Chain this decl to the containing function, it now owns the memory for
90 // the decl.
91 D->setNext(CurFunctionDecl->getDeclChain());
92 CurFunctionDecl->setDeclChain(D);
93 }
94}
95
Steve Naroffe8043c32008-04-01 23:04:06 +000096/// getObjCInterfaceDecl - Look up a for a class declaration in the scope.
97/// return 0 if one not found.
Steve Naroffe8043c32008-04-01 23:04:06 +000098ObjCInterfaceDecl *Sema::getObjCInterfaceDecl(IdentifierInfo *Id) {
Steve Naroff31102512008-04-02 18:30:49 +000099 // The third "scope" argument is 0 since we aren't enabling lazy built-in
100 // creation from this context.
101 Decl *IDecl = LookupDecl(Id, Decl::IDNS_Ordinary, 0, false);
Fariborz Jahanian4cabdfc2007-10-12 19:38:20 +0000102
Steve Naroffb327ce02008-04-02 14:35:35 +0000103 return dyn_cast_or_null<ObjCInterfaceDecl>(IDecl);
Fariborz Jahanian4cabdfc2007-10-12 19:38:20 +0000104}
105
Steve Naroffe8043c32008-04-01 23:04:06 +0000106/// LookupDecl - Look up the inner-most declaration in the specified
Reid Spencer5f016e22007-07-11 17:01:13 +0000107/// namespace.
Steve Naroffb327ce02008-04-02 14:35:35 +0000108Decl *Sema::LookupDecl(const IdentifierInfo *II, unsigned NSI,
109 Scope *S, bool enableLazyBuiltinCreation) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000110 if (II == 0) return 0;
Douglas Gregor2ce52f32008-04-13 21:07:44 +0000111 unsigned NS = NSI;
112 if (getLangOptions().CPlusPlus && (NS & Decl::IDNS_Ordinary))
113 NS |= Decl::IDNS_Tag;
Chris Lattner7f925cc2008-04-11 07:00:53 +0000114
Reid Spencer5f016e22007-07-11 17:01:13 +0000115 // Scan up the scope chain looking for a decl that matches this identifier
116 // that is in the appropriate namespace. This search should not take long, as
117 // shadowing of names is uncommon, and deep shadowing is extremely uncommon.
Chris Lattner7f925cc2008-04-11 07:00:53 +0000118 NamedDecl *ND = IdResolver.Lookup(II, NS);
119 if (ND) return ND;
120
Reid Spencer5f016e22007-07-11 17:01:13 +0000121 // If we didn't find a use of this identifier, and if the identifier
122 // corresponds to a compiler builtin, create the decl object for the builtin
123 // now, injecting it into translation unit scope, and return it.
Douglas Gregor2ce52f32008-04-13 21:07:44 +0000124 if (NS & Decl::IDNS_Ordinary) {
Steve Naroffb327ce02008-04-02 14:35:35 +0000125 if (enableLazyBuiltinCreation) {
126 // If this is a builtin on this (or all) targets, create the decl.
127 if (unsigned BuiltinID = II->getBuiltinID())
128 return LazilyCreateBuiltin((IdentifierInfo *)II, BuiltinID, S);
129 }
Steve Naroffe8043c32008-04-01 23:04:06 +0000130 if (getLangOptions().ObjC1) {
131 // @interface and @compatibility_alias introduce typedef-like names.
132 // Unlike typedef's, they can only be introduced at file-scope (and are
Steve Naroffc822ff42008-04-02 00:39:51 +0000133 // therefore not scoped decls). They can, however, be shadowed by
Steve Naroffe8043c32008-04-01 23:04:06 +0000134 // other names in IDNS_Ordinary.
Steve Naroff31102512008-04-02 18:30:49 +0000135 ObjCInterfaceDeclsTy::iterator IDI = ObjCInterfaceDecls.find(II);
136 if (IDI != ObjCInterfaceDecls.end())
137 return IDI->second;
Steve Naroffe8043c32008-04-01 23:04:06 +0000138 ObjCAliasTy::iterator I = ObjCAliasDecls.find(II);
139 if (I != ObjCAliasDecls.end())
140 return I->second->getClassInterface();
141 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000142 }
143 return 0;
144}
145
Anders Carlsson7c50aca2007-10-15 20:28:48 +0000146void Sema::InitBuiltinVaListType()
147{
148 if (!Context.getBuiltinVaListType().isNull())
149 return;
150
151 IdentifierInfo *VaIdent = &Context.Idents.get("__builtin_va_list");
Steve Naroffb327ce02008-04-02 14:35:35 +0000152 Decl *VaDecl = LookupDecl(VaIdent, Decl::IDNS_Ordinary, 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);
Argyrios Kyrtzidisff898cd2008-04-17 14:47:13 +0000169 FunctionDecl *New = FunctionDecl::Create(Context,
170 Context.getTranslationUnitDecl(),
Chris Lattner0ed844b2008-04-04 06:12:32 +0000171 SourceLocation(), II, R,
Chris Lattnera98e58d2008-03-15 21:24:04 +0000172 FunctionDecl::Extern, false, 0);
Reid Spencer5f016e22007-07-11 17:01:13 +0000173
Chris Lattner7f925cc2008-04-11 07:00:53 +0000174 // TUScope is the translation-unit scope to insert this function into.
175 TUScope->AddDecl(New);
Reid Spencer5f016e22007-07-11 17:01:13 +0000176
177 // Add this decl to the end of the identifier info.
Chris Lattner7f925cc2008-04-11 07:00:53 +0000178 IdResolver.AddGlobalDecl(New);
179
Reid Spencer5f016e22007-07-11 17:01:13 +0000180 return New;
181}
182
183/// MergeTypeDefDecl - We just parsed a typedef 'New' which has the same name
184/// and scope as a previous declaration 'Old'. Figure out how to resolve this
185/// situation, merging decls or emitting diagnostics as appropriate.
186///
Steve Naroffe8043c32008-04-01 23:04:06 +0000187TypedefDecl *Sema::MergeTypeDefDecl(TypedefDecl *New, Decl *OldD) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000188 // Verify the old decl was also a typedef.
189 TypedefDecl *Old = dyn_cast<TypedefDecl>(OldD);
190 if (!Old) {
191 Diag(New->getLocation(), diag::err_redefinition_different_kind,
192 New->getName());
193 Diag(OldD->getLocation(), diag::err_previous_definition);
194 return New;
195 }
196
Steve Naroff8ee529b2007-10-31 18:42:27 +0000197 // Allow multiple definitions for ObjC built-in typedefs.
198 // FIXME: Verify the underlying types are equivalent!
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000199 if (getLangOptions().ObjC1 && isBuiltinObjCType(New))
Steve Naroff8ee529b2007-10-31 18:42:27 +0000200 return Old;
Steve Naroff4c49a6c2008-01-30 23:46:05 +0000201
202 // Redeclaration of a type is a constraint violation (6.7.2.3p1).
203 // Apparently GCC, Intel, and Sun all silently ignore the redeclaration if
204 // *either* declaration is in a system header. The code below implements
205 // this adhoc compatibility rule. FIXME: The following code will not
206 // work properly when compiling ".i" files (containing preprocessed output).
207 SourceManager &SrcMgr = Context.getSourceManager();
208 const FileEntry *OldDeclFile = SrcMgr.getFileEntryForLoc(Old->getLocation());
209 const FileEntry *NewDeclFile = SrcMgr.getFileEntryForLoc(New->getLocation());
210 HeaderSearch &HdrInfo = PP.getHeaderSearchInfo();
211 DirectoryLookup::DirType OldDirType = HdrInfo.getFileDirFlavor(OldDeclFile);
212 DirectoryLookup::DirType NewDirType = HdrInfo.getFileDirFlavor(NewDeclFile);
213
Steve Naroffc5e2f342008-03-26 21:27:00 +0000214 // Allow reclarations in both SystemHeaderDir and ExternCSystemHeaderDir.
215 if ((OldDirType != DirectoryLookup::NormalHeaderDir ||
216 NewDirType != DirectoryLookup::NormalHeaderDir) ||
Steve Naroffd62701b2008-02-07 03:50:06 +0000217 getLangOptions().Microsoft)
Steve Naroff4c49a6c2008-01-30 23:46:05 +0000218 return New;
Steve Naroffc5e2f342008-03-26 21:27:00 +0000219
Reid Spencer5f016e22007-07-11 17:01:13 +0000220 // TODO: CHECK FOR CONFLICTS, multiple decls with same name in one scope.
221 // TODO: This is totally simplistic. It should handle merging functions
222 // together etc, merging extern int X; int X; ...
223 Diag(New->getLocation(), diag::err_redefinition, New->getName());
224 Diag(Old->getLocation(), diag::err_previous_definition);
225 return New;
226}
227
Chris Lattnerddee4232008-03-03 03:28:21 +0000228/// DeclhasAttr - returns true if decl Declaration already has the target attribute.
229static bool DeclHasAttr(const Decl *decl, const Attr *target) {
230 for (const Attr *attr = decl->getAttrs(); attr; attr = attr->getNext())
231 if (attr->getKind() == target->getKind())
232 return true;
233
234 return false;
235}
236
237/// MergeAttributes - append attributes from the Old decl to the New one.
238static void MergeAttributes(Decl *New, Decl *Old) {
239 Attr *attr = const_cast<Attr*>(Old->getAttrs()), *tmp;
240
241// FIXME: fix this code to cleanup the Old attrs correctly
242 while (attr) {
243 tmp = attr;
244 attr = attr->getNext();
245
246 if (!DeclHasAttr(New, tmp)) {
247 New->addAttr(tmp);
248 } else {
249 tmp->setNext(0);
250 delete(tmp);
251 }
252 }
253}
254
Chris Lattner04421082008-04-08 04:40:51 +0000255/// MergeFunctionDecl - We just parsed a function 'New' from
256/// declarator D which has the same name and scope as a previous
257/// declaration 'Old'. Figure out how to resolve this situation,
258/// merging decls or emitting diagnostics as appropriate.
Reid Spencer5f016e22007-07-11 17:01:13 +0000259///
Steve Naroffe8043c32008-04-01 23:04:06 +0000260FunctionDecl *Sema::MergeFunctionDecl(FunctionDecl *New, Decl *OldD) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000261 // Verify the old decl was also a function.
262 FunctionDecl *Old = dyn_cast<FunctionDecl>(OldD);
263 if (!Old) {
264 Diag(New->getLocation(), diag::err_redefinition_different_kind,
265 New->getName());
266 Diag(OldD->getLocation(), diag::err_previous_definition);
267 return New;
268 }
Chris Lattner04421082008-04-08 04:40:51 +0000269
Chris Lattnerddee4232008-03-03 03:28:21 +0000270 MergeAttributes(New, Old);
271
Chris Lattner8bcfc5b2008-04-06 23:10:54 +0000272 QualType OldQType = Context.getCanonicalType(Old->getType());
273 QualType NewQType = Context.getCanonicalType(New->getType());
Chris Lattner55196442007-11-20 19:04:50 +0000274
Chris Lattner04421082008-04-08 04:40:51 +0000275 // C++ [dcl.fct]p3:
276 // All declarations for a function shall agree exactly in both the
277 // return type and the parameter-type-list.
278 if (getLangOptions().CPlusPlus && OldQType == NewQType)
279 return MergeCXXFunctionDecl(New, Old);
280
281 // C: Function types need to be compatible, not identical. This handles
Steve Naroffadbbd0c2008-01-14 20:51:29 +0000282 // duplicate function decls like "void f(int); void f(enum X);" properly.
Chris Lattner04421082008-04-08 04:40:51 +0000283 if (!getLangOptions().CPlusPlus &&
284 Context.functionTypesAreCompatible(OldQType, NewQType)) {
Steve Naroffadbbd0c2008-01-14 20:51:29 +0000285 return New;
Chris Lattner04421082008-04-08 04:40:51 +0000286 }
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
Steve Naroffe2ef8152008-04-04 14:32:09 +0000290 diag::kind PrevDiag;
291 if (Old->getBody())
292 PrevDiag = diag::err_previous_definition;
293 else if (Old->isImplicit())
294 PrevDiag = diag::err_previous_implicit_declaration;
Chris Lattner04421082008-04-08 04:40:51 +0000295 else
Steve Naroffe2ef8152008-04-04 14:32:09 +0000296 PrevDiag = diag::err_previous_declaration;
Steve Naroff837618c2008-01-16 15:01:34 +0000297
Reid Spencer5f016e22007-07-11 17:01:13 +0000298 // TODO: CHECK FOR CONFLICTS, multiple decls with same name in one scope.
299 // TODO: This is totally simplistic. It should handle merging functions
300 // together etc, merging extern int X; int X; ...
Steve Naroff837618c2008-01-16 15:01:34 +0000301 Diag(New->getLocation(), diag::err_conflicting_types, New->getName());
302 Diag(Old->getLocation(), PrevDiag);
Reid Spencer5f016e22007-07-11 17:01:13 +0000303 return New;
304}
305
Chris Lattnerfcc2d262007-11-06 04:28:31 +0000306/// equivalentArrayTypes - Used to determine whether two array types are
307/// equivalent.
308/// We need to check this explicitly as an incomplete array definition is
309/// considered a VariableArrayType, so will not match a complete array
310/// definition that would be otherwise equivalent.
311static bool areEquivalentArrayTypes(QualType NewQType, QualType OldQType) {
312 const ArrayType *NewAT = NewQType->getAsArrayType();
313 const ArrayType *OldAT = OldQType->getAsArrayType();
314
315 if (!NewAT || !OldAT)
316 return false;
317
318 // If either (or both) array types in incomplete we need to strip off the
319 // outer VariableArrayType. Once the outer VAT is removed the remaining
320 // types must be identical if the array types are to be considered
321 // equivalent.
322 // eg. int[][1] and int[1][1] become
323 // VAT(null, CAT(1, int)) and CAT(1, CAT(1, int))
324 // removing the outermost VAT gives
325 // CAT(1, int) and CAT(1, int)
326 // which are equal, therefore the array types are equivalent.
Eli Friedman9db13972008-02-15 12:53:51 +0000327 if (NewAT->isIncompleteArrayType() || OldAT->isIncompleteArrayType()) {
Chris Lattnerfcc2d262007-11-06 04:28:31 +0000328 if (NewAT->getIndexTypeQualifier() != OldAT->getIndexTypeQualifier())
329 return false;
Eli Friedman04930252008-01-29 07:51:12 +0000330 NewQType = NewAT->getElementType().getCanonicalType();
331 OldQType = OldAT->getElementType().getCanonicalType();
Chris Lattnerfcc2d262007-11-06 04:28:31 +0000332 }
333
334 return NewQType == OldQType;
335}
336
Reid Spencer5f016e22007-07-11 17:01:13 +0000337/// MergeVarDecl - We just parsed a variable 'New' which has the same name
338/// and scope as a previous declaration 'Old'. Figure out how to resolve this
339/// situation, merging decls or emitting diagnostics as appropriate.
340///
341/// FIXME: Need to carefully consider tentative definition rules (C99 6.9.2p2).
342/// For example, we incorrectly complain about i1, i4 from C99 6.9.2p4.
343///
Steve Naroffe8043c32008-04-01 23:04:06 +0000344VarDecl *Sema::MergeVarDecl(VarDecl *New, Decl *OldD) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000345 // Verify the old decl was also a variable.
346 VarDecl *Old = dyn_cast<VarDecl>(OldD);
347 if (!Old) {
348 Diag(New->getLocation(), diag::err_redefinition_different_kind,
349 New->getName());
350 Diag(OldD->getLocation(), diag::err_previous_definition);
351 return New;
352 }
Chris Lattnerddee4232008-03-03 03:28:21 +0000353
354 MergeAttributes(New, Old);
355
Reid Spencer5f016e22007-07-11 17:01:13 +0000356 // Verify the types match.
Chris Lattner8bcfc5b2008-04-06 23:10:54 +0000357 QualType OldCType = Context.getCanonicalType(Old->getType());
358 QualType NewCType = Context.getCanonicalType(New->getType());
359 if (OldCType != NewCType && !areEquivalentArrayTypes(NewCType, OldCType)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000360 Diag(New->getLocation(), diag::err_redefinition, New->getName());
361 Diag(Old->getLocation(), diag::err_previous_definition);
362 return New;
363 }
Steve Naroffb7b032e2008-01-30 00:44:01 +0000364 // C99 6.2.2p4: Check if we have a static decl followed by a non-static.
365 if (New->getStorageClass() == VarDecl::Static &&
366 (Old->getStorageClass() == VarDecl::None ||
367 Old->getStorageClass() == VarDecl::Extern)) {
368 Diag(New->getLocation(), diag::err_static_non_static, New->getName());
369 Diag(Old->getLocation(), diag::err_previous_definition);
370 return New;
371 }
372 // C99 6.2.2p4: Check if we have a non-static decl followed by a static.
373 if (New->getStorageClass() != VarDecl::Static &&
374 Old->getStorageClass() == VarDecl::Static) {
375 Diag(New->getLocation(), diag::err_non_static_static, New->getName());
376 Diag(Old->getLocation(), diag::err_previous_definition);
377 return New;
378 }
379 // We've verified the types match, now handle "tentative" definitions.
Steve Naroff248a7532008-04-15 22:42:06 +0000380 if (Old->isFileVarDecl() && New->isFileVarDecl()) {
Steve Naroffb7b032e2008-01-30 00:44:01 +0000381 // Handle C "tentative" external object definitions (C99 6.9.2).
382 bool OldIsTentative = false;
383 bool NewIsTentative = false;
384
Steve Naroff248a7532008-04-15 22:42:06 +0000385 if (!Old->getInit() &&
386 (Old->getStorageClass() == VarDecl::None ||
387 Old->getStorageClass() == VarDecl::Static))
Steve Naroffb7b032e2008-01-30 00:44:01 +0000388 OldIsTentative = true;
389
390 // FIXME: this check doesn't work (since the initializer hasn't been
391 // attached yet). This check should be moved to FinalizeDeclaratorGroup.
392 // Unfortunately, by the time we get to FinializeDeclaratorGroup, we've
393 // thrown out the old decl.
Steve Naroff248a7532008-04-15 22:42:06 +0000394 if (!New->getInit() &&
395 (New->getStorageClass() == VarDecl::None ||
396 New->getStorageClass() == VarDecl::Static))
Steve Naroffb7b032e2008-01-30 00:44:01 +0000397 ; // change to NewIsTentative = true; once the code is moved.
398
399 if (NewIsTentative || OldIsTentative)
400 return New;
401 }
402 if (Old->getStorageClass() != VarDecl::Extern &&
403 New->getStorageClass() != VarDecl::Extern) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000404 Diag(New->getLocation(), diag::err_redefinition, New->getName());
405 Diag(Old->getLocation(), diag::err_previous_definition);
406 }
407 return New;
408}
409
Chris Lattner04421082008-04-08 04:40:51 +0000410/// CheckParmsForFunctionDef - Check that the parameters of the given
411/// function are appropriate for the definition of a function. This
412/// takes care of any checks that cannot be performed on the
413/// declaration itself, e.g., that the types of each of the function
414/// parameters are complete.
415bool Sema::CheckParmsForFunctionDef(FunctionDecl *FD) {
416 bool HasInvalidParm = false;
417 for (unsigned p = 0, NumParams = FD->getNumParams(); p < NumParams; ++p) {
418 ParmVarDecl *Param = FD->getParamDecl(p);
419
420 // C99 6.7.5.3p4: the parameters in a parameter type list in a
421 // function declarator that is part of a function definition of
422 // that function shall not have incomplete type.
423 if (Param->getType()->isIncompleteType() &&
424 !Param->isInvalidDecl()) {
425 Diag(Param->getLocation(), diag::err_typecheck_decl_incomplete_type,
426 Param->getType().getAsString());
427 Param->setInvalidDecl();
428 HasInvalidParm = true;
429 }
430 }
431
432 return HasInvalidParm;
433}
434
435/// CreateImplicitParameter - Creates an implicit function parameter
436/// in the scope S and with the given type. This routine is used, for
437/// example, to create the implicit "self" parameter in an Objective-C
438/// method.
439ParmVarDecl *
440Sema::CreateImplicitParameter(Scope *S, IdentifierInfo *Id,
441 SourceLocation IdLoc, QualType Type) {
442 ParmVarDecl *New = ParmVarDecl::Create(Context, CurContext, IdLoc, Id, Type,
443 VarDecl::None, 0, 0);
Argyrios Kyrtzidis87f3ff02008-04-12 00:47:19 +0000444 if (Id)
445 PushOnScopeChains(New, S);
Chris Lattner04421082008-04-08 04:40:51 +0000446
447 return New;
448}
449
Reid Spencer5f016e22007-07-11 17:01:13 +0000450/// ParsedFreeStandingDeclSpec - This method is invoked when a declspec with
451/// no declarator (e.g. "struct foo;") is parsed.
452Sema::DeclTy *Sema::ParsedFreeStandingDeclSpec(Scope *S, DeclSpec &DS) {
453 // TODO: emit error on 'int;' or 'const enum foo;'.
454 // TODO: emit error on 'typedef int;'
455 // if (!DS.isMissingDeclaratorOk()) Diag(...);
456
Steve Naroff92199282007-11-17 21:37:36 +0000457 return dyn_cast_or_null<TagDecl>(static_cast<Decl *>(DS.getTypeRep()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000458}
459
Steve Naroffd0091aa2008-01-10 22:15:12 +0000460bool Sema::CheckSingleInitializer(Expr *&Init, QualType DeclType) {
Steve Narofff0090632007-09-02 02:04:30 +0000461 // Get the type before calling CheckSingleAssignmentConstraints(), since
462 // it can promote the expression.
Chris Lattner5cf216b2008-01-04 18:04:52 +0000463 QualType InitType = Init->getType();
Steve Narofff0090632007-09-02 02:04:30 +0000464
Chris Lattner5cf216b2008-01-04 18:04:52 +0000465 AssignConvertType ConvTy = CheckSingleAssignmentConstraints(DeclType, Init);
466 return DiagnoseAssignmentResult(ConvTy, Init->getLocStart(), DeclType,
467 InitType, Init, "initializing");
Steve Narofff0090632007-09-02 02:04:30 +0000468}
469
Steve Naroff9e8925e2007-09-04 14:36:54 +0000470bool Sema::CheckInitExpr(Expr *expr, InitListExpr *IList, unsigned slot,
Steve Naroffd0091aa2008-01-10 22:15:12 +0000471 QualType ElementType) {
Chris Lattner33b7b062007-12-11 23:15:04 +0000472 Expr *savExpr = expr; // Might be promoted by CheckSingleInitializer.
Steve Naroffd0091aa2008-01-10 22:15:12 +0000473 if (CheckSingleInitializer(expr, ElementType))
Chris Lattner33b7b062007-12-11 23:15:04 +0000474 return true; // types weren't compatible.
475
Steve Naroff9e8925e2007-09-04 14:36:54 +0000476 if (savExpr != expr) // The type was promoted, update initializer list.
477 IList->setInit(slot, expr);
Steve Naroff371227d2007-09-04 02:20:04 +0000478 return false;
479}
480
Steve Naroffa49e1fa2008-01-22 00:55:40 +0000481bool Sema::CheckStringLiteralInit(StringLiteral *strLiteral, QualType &DeclT) {
Eli Friedmanc5773c42008-02-15 18:16:39 +0000482 if (const IncompleteArrayType *IAT = DeclT->getAsIncompleteArrayType()) {
Steve Naroffa49e1fa2008-01-22 00:55:40 +0000483 // C99 6.7.8p14. We have an array of character type with unknown size
484 // being initialized to a string literal.
485 llvm::APSInt ConstVal(32);
486 ConstVal = strLiteral->getByteLength() + 1;
487 // Return a new array type (C99 6.7.8p22).
Eli Friedmanc5773c42008-02-15 18:16:39 +0000488 DeclT = Context.getConstantArrayType(IAT->getElementType(), ConstVal,
Steve Naroffa49e1fa2008-01-22 00:55:40 +0000489 ArrayType::Normal, 0);
490 } else if (const ConstantArrayType *CAT = DeclT->getAsConstantArrayType()) {
491 // C99 6.7.8p14. We have an array of character type with known size.
492 if (strLiteral->getByteLength() > (unsigned)CAT->getMaximumElements())
493 Diag(strLiteral->getSourceRange().getBegin(),
494 diag::warn_initializer_string_for_char_array_too_long,
495 strLiteral->getSourceRange());
496 } else {
497 assert(0 && "HandleStringLiteralInit(): Invalid array type");
498 }
499 // Set type from "char *" to "constant array of char".
500 strLiteral->setType(DeclT);
501 // For now, we always return false (meaning success).
502 return false;
503}
504
505StringLiteral *Sema::IsStringLiteralInit(Expr *Init, QualType DeclType) {
Steve Naroffa49e1fa2008-01-22 00:55:40 +0000506 const ArrayType *AT = DeclType->getAsArrayType();
Steve Naroffa9960332008-01-25 00:51:06 +0000507 if (AT && AT->getElementType()->isCharType()) {
508 return dyn_cast<StringLiteral>(Init);
509 }
Steve Naroffa49e1fa2008-01-22 00:55:40 +0000510 return 0;
511}
512
Steve Naroffa9960332008-01-25 00:51:06 +0000513// CheckInitializerListTypes - Checks the types of elements of an initializer
514// list. This function is recursive: it calls itself to initialize subelements
515// of aggregate types. Note that the topLevel parameter essentially refers to
516// whether this expression "owns" the initializer list passed in, or if this
517// initialization is taking elements out of a parent initializer. Each
518// call to this function adds zero or more to startIndex, reports any errors,
519// and returns true if it found any inconsistent types.
520bool Sema::CheckInitializerListTypes(InitListExpr*& IList, QualType &DeclType,
521 bool topLevel, unsigned& startIndex) {
Steve Naroff2fdc3742007-12-10 22:44:33 +0000522 bool hadError = false;
Steve Naroffa9960332008-01-25 00:51:06 +0000523
524 if (DeclType->isScalarType()) {
525 // The simplest case: initializing a single scalar
526 if (topLevel) {
527 Diag(IList->getLocStart(), diag::warn_braces_around_scalar_init,
528 IList->getSourceRange());
529 }
530 if (startIndex < IList->getNumInits()) {
531 Expr* expr = IList->getInit(startIndex);
532 if (InitListExpr *SubInitList = dyn_cast<InitListExpr>(expr)) {
533 // FIXME: Should an error be reported here instead?
534 unsigned newIndex = 0;
535 CheckInitializerListTypes(SubInitList, DeclType, true, newIndex);
536 } else {
537 hadError |= CheckInitExpr(expr, IList, startIndex, DeclType);
538 }
539 ++startIndex;
540 }
541 // FIXME: Should an error be reported for empty initializer list + scalar?
542 } else if (DeclType->isVectorType()) {
543 if (startIndex < IList->getNumInits()) {
544 const VectorType *VT = DeclType->getAsVectorType();
545 int maxElements = VT->getNumElements();
546 QualType elementType = VT->getElementType();
547
548 for (int i = 0; i < maxElements; ++i) {
549 // Don't attempt to go past the end of the init list
550 if (startIndex >= IList->getNumInits())
551 break;
552 Expr* expr = IList->getInit(startIndex);
553 if (InitListExpr *SubInitList = dyn_cast<InitListExpr>(expr)) {
554 unsigned newIndex = 0;
555 hadError |= CheckInitializerListTypes(SubInitList, elementType,
556 true, newIndex);
557 ++startIndex;
558 } else {
559 hadError |= CheckInitializerListTypes(IList, elementType,
560 false, startIndex);
561 }
562 }
563 }
564 } else if (DeclType->isAggregateType() || DeclType->isUnionType()) {
565 if (DeclType->isStructureType() || DeclType->isUnionType()) {
Steve Naroff578edc62008-01-28 02:00:41 +0000566 if (startIndex < IList->getNumInits() && !topLevel &&
567 Context.typesAreCompatible(IList->getInit(startIndex)->getType(),
568 DeclType)) {
Steve Naroffa9960332008-01-25 00:51:06 +0000569 // We found a compatible struct; per the standard, this initializes the
570 // struct. (The C standard technically says that this only applies for
571 // initializers for declarations with automatic scope; however, this
572 // construct is unambiguous anyway because a struct cannot contain
573 // a type compatible with itself. We'll output an error when we check
574 // if the initializer is constant.)
575 // FIXME: Is a call to CheckSingleInitializer required here?
576 ++startIndex;
577 } else {
578 RecordDecl* structDecl = DeclType->getAsRecordType()->getDecl();
Steve Naroffb43eaa52008-02-11 00:06:17 +0000579
Steve Naroff406db932008-02-11 21:52:37 +0000580 // If the record is invalid, some of it's members are invalid. To avoid
581 // confusion, we forgo checking the intializer for the entire record.
Steve Naroffb43eaa52008-02-11 00:06:17 +0000582 if (structDecl->isInvalidDecl())
583 return true;
584
Steve Naroffa9960332008-01-25 00:51:06 +0000585 // If structDecl is a forward declaration, this loop won't do anything;
586 // That's okay, because an error should get printed out elsewhere. It
587 // might be worthwhile to skip over the rest of the initializer, though.
588 int numMembers = structDecl->getNumMembers() -
589 structDecl->hasFlexibleArrayMember();
590 for (int i = 0; i < numMembers; i++) {
591 // Don't attempt to go past the end of the init list
592 if (startIndex >= IList->getNumInits())
593 break;
594 FieldDecl * curField = structDecl->getMember(i);
595 if (!curField->getIdentifier()) {
596 // Don't initialize unnamed fields, e.g. "int : 20;"
597 continue;
598 }
599 QualType fieldType = curField->getType();
600 Expr* expr = IList->getInit(startIndex);
601 if (InitListExpr *SubInitList = dyn_cast<InitListExpr>(expr)) {
602 unsigned newStart = 0;
603 hadError |= CheckInitializerListTypes(SubInitList, fieldType,
604 true, newStart);
605 ++startIndex;
606 } else {
607 hadError |= CheckInitializerListTypes(IList, fieldType,
608 false, startIndex);
609 }
610 if (DeclType->isUnionType())
611 break;
612 }
613 // FIXME: Implement flexible array initialization GCC extension (it's a
614 // really messy extension to implement, unfortunately...the necessary
615 // information isn't actually even here!)
616 }
617 } else if (DeclType->isArrayType()) {
618 // Check for the special-case of initializing an array with a string.
619 if (startIndex < IList->getNumInits()) {
620 if (StringLiteral *lit = IsStringLiteralInit(IList->getInit(startIndex),
621 DeclType)) {
622 CheckStringLiteralInit(lit, DeclType);
623 ++startIndex;
624 if (topLevel && startIndex < IList->getNumInits()) {
625 // We have leftover initializers; warn
626 Diag(IList->getInit(startIndex)->getLocStart(),
627 diag::err_excess_initializers_in_char_array_initializer,
628 IList->getInit(startIndex)->getSourceRange());
629 }
630 return false;
631 }
632 }
633 int maxElements;
Eli Friedmanc5773c42008-02-15 18:16:39 +0000634 if (DeclType->isIncompleteArrayType()) {
Steve Naroffa9960332008-01-25 00:51:06 +0000635 // FIXME: use a proper constant
636 maxElements = 0x7FFFFFFF;
Chris Lattner212839c2008-02-20 23:17:35 +0000637 } else if (const VariableArrayType *VAT =
638 DeclType->getAsVariableArrayType()) {
Steve Naroffa9960332008-01-25 00:51:06 +0000639 // Check for VLAs; in standard C it would be possible to check this
640 // earlier, but I don't know where clang accepts VLAs (gcc accepts
641 // them in all sorts of strange places).
Eli Friedmanc5773c42008-02-15 18:16:39 +0000642 Diag(VAT->getSizeExpr()->getLocStart(),
643 diag::err_variable_object_no_init,
644 VAT->getSizeExpr()->getSourceRange());
645 hadError = true;
646 maxElements = 0x7FFFFFFF;
Steve Naroffa9960332008-01-25 00:51:06 +0000647 } else {
648 const ConstantArrayType *CAT = DeclType->getAsConstantArrayType();
649 maxElements = static_cast<int>(CAT->getSize().getZExtValue());
650 }
651 QualType elementType = DeclType->getAsArrayType()->getElementType();
652 int numElements = 0;
653 for (int i = 0; i < maxElements; ++i, ++numElements) {
654 // Don't attempt to go past the end of the init list
655 if (startIndex >= IList->getNumInits())
656 break;
657 Expr* expr = IList->getInit(startIndex);
658 if (InitListExpr *SubInitList = dyn_cast<InitListExpr>(expr)) {
659 unsigned newIndex = 0;
660 hadError |= CheckInitializerListTypes(SubInitList, elementType,
661 true, newIndex);
662 ++startIndex;
663 } else {
664 hadError |= CheckInitializerListTypes(IList, elementType,
665 false, startIndex);
666 }
667 }
Eli Friedman9db13972008-02-15 12:53:51 +0000668 if (DeclType->isIncompleteArrayType()) {
Steve Naroffa9960332008-01-25 00:51:06 +0000669 // If this is an incomplete array type, the actual type needs to
670 // be calculated here
671 if (numElements == 0) {
672 // Sizing an array implicitly to zero is not allowed
673 // (It could in theory be allowed, but it doesn't really matter.)
674 Diag(IList->getLocStart(),
675 diag::err_at_least_one_initializer_needed_to_size_array);
676 hadError = true;
677 } else {
678 llvm::APSInt ConstVal(32);
679 ConstVal = numElements;
680 DeclType = Context.getConstantArrayType(elementType, ConstVal,
681 ArrayType::Normal, 0);
682 }
683 }
684 } else {
685 assert(0 && "Aggregate that isn't a function or array?!");
686 }
687 } else {
688 // In C, all types are either scalars or aggregates, but
689 // additional handling is needed here for C++ (and possibly others?).
690 assert(0 && "Unsupported initializer type");
691 }
692
693 // If this init list is a base list, we set the type; an initializer doesn't
694 // fundamentally have a type, but this makes the ASTs a bit easier to read
695 if (topLevel)
696 IList->setType(DeclType);
697
698 if (topLevel && startIndex < IList->getNumInits()) {
699 // We have leftover initializers; warn
700 Diag(IList->getInit(startIndex)->getLocStart(),
701 diag::warn_excess_initializers,
702 IList->getInit(startIndex)->getSourceRange());
703 }
704 return hadError;
705}
706
707bool Sema::CheckInitializerTypes(Expr *&Init, QualType &DeclType) {
Steve Naroffca107302008-01-21 23:53:58 +0000708 // C99 6.7.8p3: The type of the entity to be initialized shall be an array
709 // of unknown size ("[]") or an object type that is not a variable array type.
Eli Friedmanc5773c42008-02-15 18:16:39 +0000710 if (const VariableArrayType *VAT = DeclType->getAsVariableArrayType())
Steve Naroffca107302008-01-21 23:53:58 +0000711 return Diag(VAT->getSizeExpr()->getLocStart(),
712 diag::err_variable_object_no_init,
713 VAT->getSizeExpr()->getSourceRange());
714
Steve Naroff2fdc3742007-12-10 22:44:33 +0000715 InitListExpr *InitList = dyn_cast<InitListExpr>(Init);
716 if (!InitList) {
Steve Naroffa49e1fa2008-01-22 00:55:40 +0000717 // FIXME: Handle wide strings
718 if (StringLiteral *strLiteral = IsStringLiteralInit(Init, DeclType))
719 return CheckStringLiteralInit(strLiteral, DeclType);
Eli Friedmana312ce22008-02-08 00:48:24 +0000720
721 if (DeclType->isArrayType())
722 return Diag(Init->getLocStart(),
723 diag::err_array_init_list_required,
724 Init->getSourceRange());
725
Steve Naroffd0091aa2008-01-10 22:15:12 +0000726 return CheckSingleInitializer(Init, DeclType);
Steve Naroff2fdc3742007-12-10 22:44:33 +0000727 }
Steve Naroffa9960332008-01-25 00:51:06 +0000728 unsigned newIndex = 0;
729 return CheckInitializerListTypes(InitList, DeclType, true, newIndex);
Steve Narofff0090632007-09-02 02:04:30 +0000730}
731
Fariborz Jahanian306d68f2007-11-08 23:49:49 +0000732Sema::DeclTy *
Steve Naroff08d92e42007-09-15 18:49:24 +0000733Sema::ActOnDeclarator(Scope *S, Declarator &D, DeclTy *lastDecl) {
Steve Naroff94745042007-09-13 23:52:58 +0000734 ScopedDecl *LastDeclarator = dyn_cast_or_null<ScopedDecl>((Decl *)lastDecl);
Reid Spencer5f016e22007-07-11 17:01:13 +0000735 IdentifierInfo *II = D.getIdentifier();
736
Chris Lattnere80a59c2007-07-25 00:24:17 +0000737 // All of these full declarators require an identifier. If it doesn't have
738 // one, the ParsedFreeStandingDeclSpec action should be used.
739 if (II == 0) {
Chris Lattner311ff022007-10-16 22:36:42 +0000740 Diag(D.getDeclSpec().getSourceRange().getBegin(),
Chris Lattner98e08632007-08-28 06:17:15 +0000741 diag::err_declarator_need_ident,
Chris Lattnere80a59c2007-07-25 00:24:17 +0000742 D.getDeclSpec().getSourceRange(), D.getSourceRange());
743 return 0;
744 }
745
Chris Lattner31e05722007-08-26 06:24:45 +0000746 // The scope passed in may not be a decl scope. Zip up the scope tree until
747 // we find one that is.
748 while ((S->getFlags() & Scope::DeclScope) == 0)
749 S = S->getParent();
750
Reid Spencer5f016e22007-07-11 17:01:13 +0000751 // See if this is a redefinition of a variable in the same scope.
Steve Naroffb327ce02008-04-02 14:35:35 +0000752 Decl *PrevDecl = LookupDecl(II, Decl::IDNS_Ordinary, S);
Steve Naroffc752d042007-09-13 18:10:37 +0000753 ScopedDecl *New;
Steve Naroff5912a352007-08-28 20:14:24 +0000754 bool InvalidDecl = false;
Douglas Gregor2ce52f32008-04-13 21:07:44 +0000755
756 // In C++, the previous declaration we find might be a tag type
757 // (class or enum). In this case, the new declaration will hide the
758 // tag type.
759 if (PrevDecl && PrevDecl->getIdentifierNamespace() == Decl::IDNS_Tag)
760 PrevDecl = 0;
761
Chris Lattner41af0932007-11-14 06:34:38 +0000762 QualType R = GetTypeForDeclarator(D, S);
763 assert(!R.isNull() && "GetTypeForDeclarator() returned null type");
764
Reid Spencer5f016e22007-07-11 17:01:13 +0000765 if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef) {
Chris Lattner41af0932007-11-14 06:34:38 +0000766 TypedefDecl *NewTD = ParseTypedefDecl(S, D, R, LastDeclarator);
Reid Spencer5f016e22007-07-11 17:01:13 +0000767 if (!NewTD) return 0;
768
769 // Handle attributes prior to checking for duplicates in MergeVarDecl
770 HandleDeclAttributes(NewTD, D.getDeclSpec().getAttributes(),
771 D.getAttributes());
Steve Naroffffce4d52008-01-09 23:34:55 +0000772 // Merge the decl with the existing one if appropriate. If the decl is
773 // in an outer scope, it isn't the same thing.
774 if (PrevDecl && S->isDeclScope(PrevDecl)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000775 NewTD = MergeTypeDefDecl(NewTD, PrevDecl);
776 if (NewTD == 0) return 0;
777 }
778 New = NewTD;
779 if (S->getParent() == 0) {
780 // C99 6.7.7p2: If a typedef name specifies a variably modified type
781 // then it shall have block scope.
Eli Friedman9db13972008-02-15 12:53:51 +0000782 if (NewTD->getUnderlyingType()->isVariablyModifiedType()) {
783 // FIXME: Diagnostic needs to be fixed.
784 Diag(D.getIdentifierLoc(), diag::err_typecheck_illegal_vla);
Steve Naroffd7444aa2007-08-31 17:20:07 +0000785 InvalidDecl = true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000786 }
787 }
Chris Lattner41af0932007-11-14 06:34:38 +0000788 } else if (R.getTypePtr()->isFunctionType()) {
Chris Lattner271f1a62007-09-27 15:15:46 +0000789 FunctionDecl::StorageClass SC = FunctionDecl::None;
Reid Spencer5f016e22007-07-11 17:01:13 +0000790 switch (D.getDeclSpec().getStorageClassSpec()) {
791 default: assert(0 && "Unknown storage class!");
792 case DeclSpec::SCS_auto:
793 case DeclSpec::SCS_register:
794 Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_func,
795 R.getAsString());
Steve Naroff5912a352007-08-28 20:14:24 +0000796 InvalidDecl = true;
797 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000798 case DeclSpec::SCS_unspecified: SC = FunctionDecl::None; break;
799 case DeclSpec::SCS_extern: SC = FunctionDecl::Extern; break;
800 case DeclSpec::SCS_static: SC = FunctionDecl::Static; break;
Steve Naroff7dd0bd42008-01-28 21:57:15 +0000801 case DeclSpec::SCS_private_extern: SC = FunctionDecl::PrivateExtern;break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000802 }
803
Chris Lattnera98e58d2008-03-15 21:24:04 +0000804 bool isInline = D.getDeclSpec().isInlineSpecified();
Chris Lattner0ed844b2008-04-04 06:12:32 +0000805 FunctionDecl *NewFD = FunctionDecl::Create(Context, CurContext,
806 D.getIdentifierLoc(),
Chris Lattnera98e58d2008-03-15 21:24:04 +0000807 II, R, SC, isInline,
808 LastDeclarator);
Ted Kremenekf5c93c12008-02-27 22:18:07 +0000809 // Handle attributes.
Ted Kremenekf5c93c12008-02-27 22:18:07 +0000810 HandleDeclAttributes(NewFD, D.getDeclSpec().getAttributes(),
811 D.getAttributes());
Chris Lattner04421082008-04-08 04:40:51 +0000812
813 // Copy the parameter declarations from the declarator D to
814 // the function declaration NewFD, if they are available.
815 if (D.getNumTypeObjects() > 0 &&
816 D.getTypeObject(0).Fun.hasPrototype) {
817 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
818
819 // Create Decl objects for each parameter, adding them to the
820 // FunctionDecl.
821 llvm::SmallVector<ParmVarDecl*, 16> Params;
822
823 // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs
824 // function that takes no arguments, not a function that takes a
Chris Lattner8123a952008-04-10 02:22:51 +0000825 // single void argument.
Chris Lattner04421082008-04-08 04:40:51 +0000826 if (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
827 FTI.ArgInfo[0].Param &&
828 !((ParmVarDecl*)FTI.ArgInfo[0].Param)->getType().getCVRQualifiers() &&
829 ((ParmVarDecl*)FTI.ArgInfo[0].Param)->getType()->isVoidType()) {
830 // empty arg list, don't push any params.
Chris Lattner8123a952008-04-10 02:22:51 +0000831 ParmVarDecl *Param = (ParmVarDecl*)FTI.ArgInfo[0].Param;
832
Chris Lattnerdef026a2008-04-10 02:26:16 +0000833 // In C++, the empty parameter-type-list must be spelled "void"; a
834 // typedef of void is not permitted.
835 if (getLangOptions().CPlusPlus &&
Chris Lattner8123a952008-04-10 02:22:51 +0000836 Param->getType() != Context.VoidTy) {
837 Diag(Param->getLocation(), diag::ext_param_typedef_of_void);
838 }
839
Chris Lattner04421082008-04-08 04:40:51 +0000840 } else {
841 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i)
842 Params.push_back((ParmVarDecl *)FTI.ArgInfo[i].Param);
843 }
844
845 NewFD->setParams(&Params[0], Params.size());
846 }
847
Steve Naroffffce4d52008-01-09 23:34:55 +0000848 // Merge the decl with the existing one if appropriate. Since C functions
849 // are in a flat namespace, make sure we consider decls in outer scopes.
Reid Spencer5f016e22007-07-11 17:01:13 +0000850 if (PrevDecl) {
851 NewFD = MergeFunctionDecl(NewFD, PrevDecl);
852 if (NewFD == 0) return 0;
853 }
854 New = NewFD;
Chris Lattner04421082008-04-08 04:40:51 +0000855
856 // In C++, check default arguments now that we have merged decls.
857 if (getLangOptions().CPlusPlus)
858 CheckCXXDefaultArguments(NewFD);
Reid Spencer5f016e22007-07-11 17:01:13 +0000859 } else {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000860 if (R.getTypePtr()->isObjCInterfaceType()) {
Fariborz Jahaniane7f64cc2007-10-12 22:10:42 +0000861 Diag(D.getIdentifierLoc(), diag::err_statically_allocated_object,
862 D.getIdentifier()->getName());
863 InvalidDecl = true;
864 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000865
866 VarDecl *NewVD;
867 VarDecl::StorageClass SC;
868 switch (D.getDeclSpec().getStorageClassSpec()) {
Chris Lattner9e151e12008-03-15 21:10:16 +0000869 default: assert(0 && "Unknown storage class!");
870 case DeclSpec::SCS_unspecified: SC = VarDecl::None; break;
871 case DeclSpec::SCS_extern: SC = VarDecl::Extern; break;
872 case DeclSpec::SCS_static: SC = VarDecl::Static; break;
873 case DeclSpec::SCS_auto: SC = VarDecl::Auto; break;
874 case DeclSpec::SCS_register: SC = VarDecl::Register; break;
875 case DeclSpec::SCS_private_extern: SC = VarDecl::PrivateExtern; break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000876 }
877 if (S->getParent() == 0) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000878 // C99 6.9p2: The storage-class specifiers auto and register shall not
879 // appear in the declaration specifiers in an external declaration.
880 if (SC == VarDecl::Auto || SC == VarDecl::Register) {
881 Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_fscope,
882 R.getAsString());
Steve Naroff53a32342007-08-28 18:45:29 +0000883 InvalidDecl = true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000884 }
Steve Naroff248a7532008-04-15 22:42:06 +0000885 NewVD = VarDecl::Create(Context, CurContext, D.getIdentifierLoc(),
886 II, R, SC, LastDeclarator);
Steve Narofff0090632007-09-02 02:04:30 +0000887 } else {
Steve Naroff248a7532008-04-15 22:42:06 +0000888 NewVD = VarDecl::Create(Context, CurContext, D.getIdentifierLoc(),
889 II, R, SC, LastDeclarator);
Steve Naroff53a32342007-08-28 18:45:29 +0000890 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000891 // Handle attributes prior to checking for duplicates in MergeVarDecl
892 HandleDeclAttributes(NewVD, D.getDeclSpec().getAttributes(),
893 D.getAttributes());
Nate Begemanc8e89a82008-03-14 18:07:10 +0000894
895 // Emit an error if an address space was applied to decl with local storage.
896 // This includes arrays of objects with address space qualifiers, but not
897 // automatic variables that point to other address spaces.
898 // ISO/IEC TR 18037 S5.1.2
Nate Begeman8e7dafe2008-03-25 18:36:32 +0000899 if (NewVD->hasLocalStorage() && (NewVD->getType().getAddressSpace() != 0)) {
900 Diag(D.getIdentifierLoc(), diag::err_as_qualified_auto_decl);
901 InvalidDecl = true;
Nate Begeman5af27e02008-03-14 00:22:18 +0000902 }
Steve Naroffffce4d52008-01-09 23:34:55 +0000903 // Merge the decl with the existing one if appropriate. If the decl is
904 // in an outer scope, it isn't the same thing.
905 if (PrevDecl && S->isDeclScope(PrevDecl)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000906 NewVD = MergeVarDecl(NewVD, PrevDecl);
907 if (NewVD == 0) return 0;
908 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000909 New = NewVD;
910 }
911
912 // If this has an identifier, add it to the scope stack.
Argyrios Kyrtzidis87f3ff02008-04-12 00:47:19 +0000913 if (II)
914 PushOnScopeChains(New, S);
Steve Naroff5912a352007-08-28 20:14:24 +0000915 // If any semantic error occurred, mark the decl as invalid.
916 if (D.getInvalidType() || InvalidDecl)
917 New->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +0000918
919 return New;
920}
921
Steve Naroffd0091aa2008-01-10 22:15:12 +0000922bool Sema::CheckForConstantInitializer(Expr *Init, QualType DclT) {
923 SourceLocation loc;
924 // FIXME: Remove the isReference check and handle assignment to a reference.
925 if (!DclT->isReferenceType() && !Init->isConstantExpr(Context, &loc)) {
926 assert(loc.isValid() && "isConstantExpr didn't return a loc!");
927 Diag(loc, diag::err_init_element_not_constant, Init->getSourceRange());
928 return true;
929 }
930 return false;
931}
932
Steve Naroffbb204692007-09-12 14:07:44 +0000933void Sema::AddInitializerToDecl(DeclTy *dcl, ExprTy *init) {
Steve Naroff410e3e22007-09-12 20:13:48 +0000934 Decl *RealDecl = static_cast<Decl *>(dcl);
Steve Naroffbb204692007-09-12 14:07:44 +0000935 Expr *Init = static_cast<Expr *>(init);
Chris Lattner9a11b9a2007-10-19 20:10:30 +0000936 assert(Init && "missing initializer");
Steve Naroffbb204692007-09-12 14:07:44 +0000937
Chris Lattner9a11b9a2007-10-19 20:10:30 +0000938 // If there is no declaration, there was an error parsing it. Just ignore
939 // the initializer.
940 if (RealDecl == 0) {
941 delete Init;
942 return;
943 }
Steve Naroffbb204692007-09-12 14:07:44 +0000944
Steve Naroff410e3e22007-09-12 20:13:48 +0000945 VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl);
946 if (!VDecl) {
Steve Naroff8e74c932007-09-13 21:41:19 +0000947 Diag(dyn_cast<ScopedDecl>(RealDecl)->getLocation(),
948 diag::err_illegal_initializer);
Steve Naroff410e3e22007-09-12 20:13:48 +0000949 RealDecl->setInvalidDecl();
950 return;
951 }
Steve Naroffbb204692007-09-12 14:07:44 +0000952 // Get the decls type and save a reference for later, since
Steve Naroffd0091aa2008-01-10 22:15:12 +0000953 // CheckInitializerTypes may change it.
Steve Naroff410e3e22007-09-12 20:13:48 +0000954 QualType DclT = VDecl->getType(), SavT = DclT;
Steve Naroff248a7532008-04-15 22:42:06 +0000955 if (VDecl->isBlockVarDecl()) {
956 VarDecl::StorageClass SC = VDecl->getStorageClass();
Steve Naroffbb204692007-09-12 14:07:44 +0000957 if (SC == VarDecl::Extern) { // C99 6.7.8p5
Steve Naroff410e3e22007-09-12 20:13:48 +0000958 Diag(VDecl->getLocation(), diag::err_block_extern_cant_init);
Steve Naroff248a7532008-04-15 22:42:06 +0000959 VDecl->setInvalidDecl();
960 } else if (!VDecl->isInvalidDecl()) {
Steve Naroffa9960332008-01-25 00:51:06 +0000961 if (CheckInitializerTypes(Init, DclT))
Steve Naroff248a7532008-04-15 22:42:06 +0000962 VDecl->setInvalidDecl();
Steve Naroffd0091aa2008-01-10 22:15:12 +0000963 if (SC == VarDecl::Static) // C99 6.7.8p4.
964 CheckForConstantInitializer(Init, DclT);
Steve Naroffbb204692007-09-12 14:07:44 +0000965 }
Steve Naroff248a7532008-04-15 22:42:06 +0000966 } else if (VDecl->isFileVarDecl()) {
967 if (VDecl->getStorageClass() == VarDecl::Extern)
Steve Naroff410e3e22007-09-12 20:13:48 +0000968 Diag(VDecl->getLocation(), diag::warn_extern_init);
Steve Naroff248a7532008-04-15 22:42:06 +0000969 if (!VDecl->isInvalidDecl())
Steve Naroffa9960332008-01-25 00:51:06 +0000970 if (CheckInitializerTypes(Init, DclT))
Steve Naroff248a7532008-04-15 22:42:06 +0000971 VDecl->setInvalidDecl();
Steve Naroffd0091aa2008-01-10 22:15:12 +0000972
973 // C99 6.7.8p4. All file scoped initializers need to be constant.
974 CheckForConstantInitializer(Init, DclT);
Steve Naroffbb204692007-09-12 14:07:44 +0000975 }
976 // If the type changed, it means we had an incomplete type that was
977 // completed by the initializer. For example:
978 // int ary[] = { 1, 3, 5 };
979 // "ary" transitions from a VariableArrayType to a ConstantArrayType.
Christopher Lamb48b12392007-11-29 19:09:19 +0000980 if (!VDecl->isInvalidDecl() && (DclT != SavT)) {
Steve Naroff410e3e22007-09-12 20:13:48 +0000981 VDecl->setType(DclT);
Christopher Lamb48b12392007-11-29 19:09:19 +0000982 Init->setType(DclT);
983 }
Steve Naroffbb204692007-09-12 14:07:44 +0000984
985 // Attach the initializer to the decl.
Steve Naroff410e3e22007-09-12 20:13:48 +0000986 VDecl->setInit(Init);
Steve Naroffbb204692007-09-12 14:07:44 +0000987 return;
988}
989
Reid Spencer5f016e22007-07-11 17:01:13 +0000990/// The declarators are chained together backwards, reverse the list.
991Sema::DeclTy *Sema::FinalizeDeclaratorGroup(Scope *S, DeclTy *group) {
992 // Often we have single declarators, handle them quickly.
Steve Naroff94745042007-09-13 23:52:58 +0000993 Decl *GroupDecl = static_cast<Decl*>(group);
994 if (GroupDecl == 0)
Steve Naroffbb204692007-09-12 14:07:44 +0000995 return 0;
Steve Naroff94745042007-09-13 23:52:58 +0000996
997 ScopedDecl *Group = dyn_cast<ScopedDecl>(GroupDecl);
998 ScopedDecl *NewGroup = 0;
Steve Naroffbb204692007-09-12 14:07:44 +0000999 if (Group->getNextDeclarator() == 0)
Reid Spencer5f016e22007-07-11 17:01:13 +00001000 NewGroup = Group;
Steve Naroffbb204692007-09-12 14:07:44 +00001001 else { // reverse the list.
1002 while (Group) {
Steve Naroff94745042007-09-13 23:52:58 +00001003 ScopedDecl *Next = Group->getNextDeclarator();
Steve Naroffbb204692007-09-12 14:07:44 +00001004 Group->setNextDeclarator(NewGroup);
1005 NewGroup = Group;
1006 Group = Next;
1007 }
1008 }
1009 // Perform semantic analysis that depends on having fully processed both
1010 // the declarator and initializer.
Steve Naroff94745042007-09-13 23:52:58 +00001011 for (ScopedDecl *ID = NewGroup; ID; ID = ID->getNextDeclarator()) {
Steve Naroffbb204692007-09-12 14:07:44 +00001012 VarDecl *IDecl = dyn_cast<VarDecl>(ID);
1013 if (!IDecl)
1014 continue;
Steve Naroffbb204692007-09-12 14:07:44 +00001015 QualType T = IDecl->getType();
1016
1017 // C99 6.7.5.2p2: If an identifier is declared to be an object with
1018 // static storage duration, it shall not have a variable length array.
Steve Naroff248a7532008-04-15 22:42:06 +00001019 if ((IDecl->isFileVarDecl() || IDecl->isBlockVarDecl()) &&
1020 IDecl->getStorageClass() == VarDecl::Static) {
Eli Friedman3fe02932008-02-15 19:53:52 +00001021 if (T->getAsVariableArrayType()) {
Eli Friedmanc5773c42008-02-15 18:16:39 +00001022 Diag(IDecl->getLocation(), diag::err_typecheck_illegal_vla);
1023 IDecl->setInvalidDecl();
Steve Naroffbb204692007-09-12 14:07:44 +00001024 }
1025 }
1026 // Block scope. C99 6.7p7: If an identifier for an object is declared with
1027 // no linkage (C99 6.2.2p6), the type for the object shall be complete...
Steve Naroff248a7532008-04-15 22:42:06 +00001028 if (IDecl->isBlockVarDecl() &&
1029 IDecl->getStorageClass() != VarDecl::Extern) {
Chris Lattnerfd89bc82008-04-02 01:05:10 +00001030 if (T->isIncompleteType() && !IDecl->isInvalidDecl()) {
Chris Lattner8b1be772007-12-02 07:50:03 +00001031 Diag(IDecl->getLocation(), diag::err_typecheck_decl_incomplete_type,
1032 T.getAsString());
Steve Naroffbb204692007-09-12 14:07:44 +00001033 IDecl->setInvalidDecl();
1034 }
1035 }
1036 // File scope. C99 6.9.2p2: A declaration of an identifier for and
1037 // object that has file scope without an initializer, and without a
1038 // storage-class specifier or with the storage-class specifier "static",
1039 // constitutes a tentative definition. Note: A tentative definition with
1040 // external linkage is valid (C99 6.2.2p5).
Steve Naroff248a7532008-04-15 22:42:06 +00001041 if (IDecl && !IDecl->getInit() &&
1042 (IDecl->getStorageClass() == VarDecl::Static ||
1043 IDecl->getStorageClass() == VarDecl::None)) {
Eli Friedman9db13972008-02-15 12:53:51 +00001044 if (T->isIncompleteArrayType()) {
Steve Naroff9a75f8a2008-01-18 20:40:52 +00001045 // C99 6.9.2 (p2, p5): Implicit initialization causes an incomplete
1046 // array to be completed. Don't issue a diagnostic.
Chris Lattnerfd89bc82008-04-02 01:05:10 +00001047 } else if (T->isIncompleteType() && !IDecl->isInvalidDecl()) {
Steve Naroff9a75f8a2008-01-18 20:40:52 +00001048 // C99 6.9.2p3: If the declaration of an identifier for an object is
1049 // a tentative definition and has internal linkage (C99 6.2.2p3), the
1050 // declared type shall not be an incomplete type.
Chris Lattner8b1be772007-12-02 07:50:03 +00001051 Diag(IDecl->getLocation(), diag::err_typecheck_decl_incomplete_type,
1052 T.getAsString());
Steve Naroffbb204692007-09-12 14:07:44 +00001053 IDecl->setInvalidDecl();
1054 }
1055 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001056 }
1057 return NewGroup;
1058}
Steve Naroffe1223f72007-08-28 03:03:08 +00001059
Chris Lattner04421082008-04-08 04:40:51 +00001060/// ActOnParamDeclarator - Called from Parser::ParseFunctionDeclarator()
1061/// to introduce parameters into function prototype scope.
1062Sema::DeclTy *
1063Sema::ActOnParamDeclarator(Scope *S, Declarator &D) {
1064 DeclSpec &DS = D.getDeclSpec();
1065
1066 // Verify C99 6.7.5.3p2: The only SCS allowed is 'register'.
1067 if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified &&
1068 DS.getStorageClassSpec() != DeclSpec::SCS_register) {
1069 Diag(DS.getStorageClassSpecLoc(),
1070 diag::err_invalid_storage_class_in_func_decl);
1071 DS.ClearStorageClassSpecs();
1072 }
1073 if (DS.isThreadSpecified()) {
1074 Diag(DS.getThreadSpecLoc(),
1075 diag::err_invalid_storage_class_in_func_decl);
1076 DS.ClearStorageClassSpecs();
1077 }
1078
1079
1080 // In this context, we *do not* check D.getInvalidType(). If the declarator
1081 // type was invalid, GetTypeForDeclarator() still returns a "valid" type,
1082 // though it will not reflect the user specified type.
1083 QualType parmDeclType = GetTypeForDeclarator(D, S);
1084
1085 assert(!parmDeclType.isNull() && "GetTypeForDeclarator() returned null type");
1086
Reid Spencer5f016e22007-07-11 17:01:13 +00001087 // TODO: CHECK FOR CONFLICTS, multiple decls with same name in one scope.
1088 // Can this happen for params? We already checked that they don't conflict
1089 // among each other. Here they can only shadow globals, which is ok.
Chris Lattner04421082008-04-08 04:40:51 +00001090 IdentifierInfo *II = D.getIdentifier();
1091 if (Decl *PrevDecl = LookupDecl(II, Decl::IDNS_Ordinary, S)) {
1092 if (S->isDeclScope(PrevDecl)) {
1093 Diag(D.getIdentifierLoc(), diag::err_param_redefinition,
1094 dyn_cast<NamedDecl>(PrevDecl)->getName());
1095
1096 // Recover by removing the name
1097 II = 0;
1098 D.SetIdentifier(0, D.getIdentifierLoc());
1099 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001100 }
Steve Naroff6a9f3e32007-08-07 22:44:21 +00001101
1102 // Perform the default function/array conversion (C99 6.7.5.3p[7,8]).
1103 // Doing the promotion here has a win and a loss. The win is the type for
1104 // both Decl's and DeclRefExpr's will match (a convenient invariant for the
1105 // code generator). The loss is the orginal type isn't preserved. For example:
1106 //
1107 // void func(int parmvardecl[5]) { // convert "int [5]" to "int *"
1108 // int blockvardecl[5];
1109 // sizeof(parmvardecl); // size == 4
1110 // sizeof(blockvardecl); // size == 20
1111 // }
1112 //
1113 // For expressions, all implicit conversions are captured using the
1114 // ImplicitCastExpr AST node (we have no such mechanism for Decl's).
1115 //
1116 // FIXME: If a source translation tool needs to see the original type, then
1117 // we need to consider storing both types (in ParmVarDecl)...
1118 //
Chris Lattnere6327742008-04-02 05:18:44 +00001119 if (parmDeclType->isArrayType()) {
Chris Lattner529bd022008-01-02 22:50:48 +00001120 // int x[restrict 4] -> int *restrict
Chris Lattnere6327742008-04-02 05:18:44 +00001121 parmDeclType = Context.getArrayDecayedType(parmDeclType);
Chris Lattner529bd022008-01-02 22:50:48 +00001122 } else if (parmDeclType->isFunctionType())
Steve Naroff6a9f3e32007-08-07 22:44:21 +00001123 parmDeclType = Context.getPointerType(parmDeclType);
1124
Chris Lattner04421082008-04-08 04:40:51 +00001125 ParmVarDecl *New = ParmVarDecl::Create(Context, CurContext,
1126 D.getIdentifierLoc(), II,
1127 parmDeclType, VarDecl::None,
1128 0, 0);
Anders Carlssonf78915f2008-02-15 07:04:12 +00001129
Chris Lattner04421082008-04-08 04:40:51 +00001130 if (D.getInvalidType())
Steve Naroff53a32342007-08-28 18:45:29 +00001131 New->setInvalidDecl();
1132
Argyrios Kyrtzidis87f3ff02008-04-12 00:47:19 +00001133 if (II)
1134 PushOnScopeChains(New, S);
Nate Begemanb7894b52008-02-17 21:20:31 +00001135
Chris Lattner04421082008-04-08 04:40:51 +00001136 HandleDeclAttributes(New, D.getAttributes(), 0);
Reid Spencer5f016e22007-07-11 17:01:13 +00001137 return New;
Chris Lattner04421082008-04-08 04:40:51 +00001138
Reid Spencer5f016e22007-07-11 17:01:13 +00001139}
Fariborz Jahanian306d68f2007-11-08 23:49:49 +00001140
Chris Lattnerb652cea2007-10-09 17:14:05 +00001141Sema::DeclTy *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Declarator &D) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001142 assert(CurFunctionDecl == 0 && "Function parsing confused");
1143 assert(D.getTypeObject(0).Kind == DeclaratorChunk::Function &&
1144 "Not a function declarator!");
1145 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
Chris Lattner04421082008-04-08 04:40:51 +00001146
Reid Spencer5f016e22007-07-11 17:01:13 +00001147 // Verify 6.9.1p6: 'every identifier in the identifier list shall be declared'
1148 // for a K&R function.
1149 if (!FTI.hasPrototype) {
1150 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) {
Chris Lattner04421082008-04-08 04:40:51 +00001151 if (FTI.ArgInfo[i].Param == 0) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001152 Diag(FTI.ArgInfo[i].IdentLoc, diag::ext_param_not_declared,
1153 FTI.ArgInfo[i].Ident->getName());
1154 // Implicitly declare the argument as type 'int' for lack of a better
1155 // type.
Chris Lattner04421082008-04-08 04:40:51 +00001156 DeclSpec DS;
1157 const char* PrevSpec; // unused
1158 DS.SetTypeSpecType(DeclSpec::TST_int, FTI.ArgInfo[i].IdentLoc,
1159 PrevSpec);
1160 Declarator ParamD(DS, Declarator::KNRTypeListContext);
1161 ParamD.SetIdentifier(FTI.ArgInfo[i].Ident, FTI.ArgInfo[i].IdentLoc);
1162 FTI.ArgInfo[i].Param = ActOnParamDeclarator(FnBodyScope, ParamD);
Reid Spencer5f016e22007-07-11 17:01:13 +00001163 }
1164 }
Chris Lattner52804082008-02-17 19:31:09 +00001165
Reid Spencer5f016e22007-07-11 17:01:13 +00001166 // Since this is a function definition, act as though we have information
1167 // about the arguments.
Chris Lattner52804082008-02-17 19:31:09 +00001168 if (FTI.NumArgs)
1169 FTI.hasPrototype = true;
Reid Spencer5f016e22007-07-11 17:01:13 +00001170 } else {
Chris Lattner04421082008-04-08 04:40:51 +00001171 // FIXME: Diagnose arguments without names in C.
Reid Spencer5f016e22007-07-11 17:01:13 +00001172 }
1173
1174 Scope *GlobalScope = FnBodyScope->getParent();
Steve Naroffadbbd0c2008-01-14 20:51:29 +00001175
1176 // See if this is a redefinition.
Steve Naroffe8043c32008-04-01 23:04:06 +00001177 Decl *PrevDcl = LookupDecl(D.getIdentifier(), Decl::IDNS_Ordinary,
Steve Naroffb327ce02008-04-02 14:35:35 +00001178 GlobalScope);
Steve Naroffadbbd0c2008-01-14 20:51:29 +00001179 if (FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(PrevDcl)) {
1180 if (FD->getBody()) {
1181 Diag(D.getIdentifierLoc(), diag::err_redefinition,
1182 D.getIdentifier()->getName());
1183 Diag(FD->getLocation(), diag::err_previous_definition);
1184 }
1185 }
Steve Narofffabbc342008-02-12 01:09:36 +00001186 Decl *decl = static_cast<Decl*>(ActOnDeclarator(GlobalScope, D, 0));
Chris Lattnere9ba3232008-02-16 01:20:36 +00001187 FunctionDecl *FD = cast<FunctionDecl>(decl);
Reid Spencer5f016e22007-07-11 17:01:13 +00001188 CurFunctionDecl = FD;
Chris Lattnerb048c982008-04-06 04:47:34 +00001189 PushDeclContext(FD);
Chris Lattner04421082008-04-08 04:40:51 +00001190
1191 // Check the validity of our function parameters
1192 CheckParmsForFunctionDef(FD);
1193
1194 // Introduce our parameters into the function scope
1195 for (unsigned p = 0, NumParams = FD->getNumParams(); p < NumParams; ++p) {
1196 ParmVarDecl *Param = FD->getParamDecl(p);
1197 // If this has an identifier, add it to the scope stack.
Argyrios Kyrtzidis87f3ff02008-04-12 00:47:19 +00001198 if (Param->getIdentifier())
1199 PushOnScopeChains(Param, FnBodyScope);
Reid Spencer5f016e22007-07-11 17:01:13 +00001200 }
Chris Lattner04421082008-04-08 04:40:51 +00001201
Reid Spencer5f016e22007-07-11 17:01:13 +00001202 return FD;
1203}
1204
Steve Naroffd6d054d2007-11-11 23:20:51 +00001205Sema::DeclTy *Sema::ActOnFinishFunctionBody(DeclTy *D, StmtTy *Body) {
1206 Decl *dcl = static_cast<Decl *>(D);
1207 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(dcl)) {
1208 FD->setBody((Stmt*)Body);
1209 assert(FD == CurFunctionDecl && "Function parsing confused");
Steve Naroff4d832202007-12-13 18:18:56 +00001210 CurFunctionDecl = 0;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001211 } else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(dcl)) {
Steve Naroffd6d054d2007-11-11 23:20:51 +00001212 MD->setBody((Stmt*)Body);
Steve Naroff03300712007-11-12 13:56:41 +00001213 CurMethodDecl = 0;
Steve Naroff4d832202007-12-13 18:18:56 +00001214 }
Chris Lattnerb048c982008-04-06 04:47:34 +00001215 PopDeclContext();
Reid Spencer5f016e22007-07-11 17:01:13 +00001216 // Verify and clean out per-function state.
1217
1218 // Check goto/label use.
1219 for (llvm::DenseMap<IdentifierInfo*, LabelStmt*>::iterator
1220 I = LabelMap.begin(), E = LabelMap.end(); I != E; ++I) {
1221 // Verify that we have no forward references left. If so, there was a goto
1222 // or address of a label taken, but no definition of it. Label fwd
1223 // definitions are indicated with a null substmt.
1224 if (I->second->getSubStmt() == 0) {
1225 LabelStmt *L = I->second;
1226 // Emit error.
1227 Diag(L->getIdentLoc(), diag::err_undeclared_label_use, L->getName());
1228
1229 // At this point, we have gotos that use the bogus label. Stitch it into
1230 // the function body so that they aren't leaked and that the AST is well
1231 // formed.
Chris Lattner0cbc2152008-01-25 00:01:10 +00001232 if (Body) {
1233 L->setSubStmt(new NullStmt(L->getIdentLoc()));
1234 cast<CompoundStmt>((Stmt*)Body)->push_back(L);
1235 } else {
1236 // The whole function wasn't parsed correctly, just delete this.
1237 delete L;
1238 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001239 }
1240 }
1241 LabelMap.clear();
1242
Steve Naroffd6d054d2007-11-11 23:20:51 +00001243 return D;
Fariborz Jahanian60fbca02007-11-10 16:31:34 +00001244}
1245
Reid Spencer5f016e22007-07-11 17:01:13 +00001246/// ImplicitlyDefineFunction - An undeclared identifier was used in a function
1247/// call, forming a call to an implicitly defined function (per C99 6.5.1p2).
Steve Naroff8c9f13e2007-09-16 16:16:00 +00001248ScopedDecl *Sema::ImplicitlyDefineFunction(SourceLocation Loc,
1249 IdentifierInfo &II, Scope *S) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001250 if (getLangOptions().C99) // Extension in C99.
1251 Diag(Loc, diag::ext_implicit_function_decl, II.getName());
1252 else // Legal in C90, but warn about it.
1253 Diag(Loc, diag::warn_implicit_function_decl, II.getName());
1254
1255 // FIXME: handle stuff like:
1256 // void foo() { extern float X(); }
1257 // void bar() { X(); } <-- implicit decl for X in another scope.
1258
1259 // Set a Declarator for the implicit definition: int foo();
1260 const char *Dummy;
1261 DeclSpec DS;
1262 bool Error = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, Dummy);
1263 Error = Error; // Silence warning.
1264 assert(!Error && "Error setting up implicit decl!");
1265 Declarator D(DS, Declarator::BlockContext);
1266 D.AddTypeInfo(DeclaratorChunk::getFunction(false, false, 0, 0, Loc));
1267 D.SetIdentifier(&II, Loc);
1268
1269 // Find translation-unit scope to insert this function into.
Chris Lattner31e05722007-08-26 06:24:45 +00001270 if (Scope *FnS = S->getFnParent())
1271 S = FnS->getParent(); // Skip all scopes in a function at once.
Reid Spencer5f016e22007-07-11 17:01:13 +00001272 while (S->getParent())
1273 S = S->getParent();
1274
Steve Naroffe2ef8152008-04-04 14:32:09 +00001275 FunctionDecl *FD =
1276 dyn_cast<FunctionDecl>(static_cast<Decl*>(ActOnDeclarator(S, D, 0)));
1277 FD->setImplicit();
1278 return FD;
Reid Spencer5f016e22007-07-11 17:01:13 +00001279}
1280
1281
Chris Lattner41af0932007-11-14 06:34:38 +00001282TypedefDecl *Sema::ParseTypedefDecl(Scope *S, Declarator &D, QualType T,
Steve Naroff94745042007-09-13 23:52:58 +00001283 ScopedDecl *LastDeclarator) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001284 assert(D.getIdentifier() && "Wrong callback for declspec without declarator");
Steve Naroff5912a352007-08-28 20:14:24 +00001285 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
Reid Spencer5f016e22007-07-11 17:01:13 +00001286
1287 // Scope manipulation handled by caller.
Chris Lattner0ed844b2008-04-04 06:12:32 +00001288 TypedefDecl *NewTD = TypedefDecl::Create(Context, CurContext,
1289 D.getIdentifierLoc(),
Chris Lattner6c2b6eb2008-03-15 06:12:44 +00001290 D.getIdentifier(),
Chris Lattnerc63e6602008-03-15 21:32:50 +00001291 T, LastDeclarator);
Steve Naroff5912a352007-08-28 20:14:24 +00001292 if (D.getInvalidType())
1293 NewTD->setInvalidDecl();
1294 return NewTD;
Reid Spencer5f016e22007-07-11 17:01:13 +00001295}
1296
Steve Naroff08d92e42007-09-15 18:49:24 +00001297/// ActOnTag - This is invoked when we see 'struct foo' or 'struct {'. In the
Reid Spencer5f016e22007-07-11 17:01:13 +00001298/// former case, Name will be non-null. In the later case, Name will be null.
1299/// TagType indicates what kind of tag this is. TK indicates whether this is a
1300/// reference/declaration/definition of a tag.
Steve Naroff08d92e42007-09-15 18:49:24 +00001301Sema::DeclTy *Sema::ActOnTag(Scope *S, unsigned TagType, TagKind TK,
Reid Spencer5f016e22007-07-11 17:01:13 +00001302 SourceLocation KWLoc, IdentifierInfo *Name,
1303 SourceLocation NameLoc, AttributeList *Attr) {
1304 // If this is a use of an existing tag, it must have a name.
1305 assert((Name != 0 || TK == TK_Definition) &&
1306 "Nameless record must be a definition!");
1307
1308 Decl::Kind Kind;
1309 switch (TagType) {
1310 default: assert(0 && "Unknown tag type!");
1311 case DeclSpec::TST_struct: Kind = Decl::Struct; break;
1312 case DeclSpec::TST_union: Kind = Decl::Union; break;
Chris Lattner99dc9142008-04-13 18:59:07 +00001313 case DeclSpec::TST_class: Kind = Decl::Class; break;
Reid Spencer5f016e22007-07-11 17:01:13 +00001314 case DeclSpec::TST_enum: Kind = Decl::Enum; break;
1315 }
1316
1317 // If this is a named struct, check to see if there was a previous forward
1318 // declaration or definition.
1319 if (TagDecl *PrevDecl =
Steve Naroffb327ce02008-04-02 14:35:35 +00001320 dyn_cast_or_null<TagDecl>(LookupDecl(Name, Decl::IDNS_Tag, S))) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001321
1322 // If this is a use of a previous tag, or if the tag is already declared in
1323 // the same scope (so that the definition/declaration completes or
1324 // rementions the tag), reuse the decl.
1325 if (TK == TK_Reference || S->isDeclScope(PrevDecl)) {
1326 // Make sure that this wasn't declared as an enum and now used as a struct
1327 // or something similar.
1328 if (PrevDecl->getKind() != Kind) {
1329 Diag(KWLoc, diag::err_use_with_wrong_tag, Name->getName());
1330 Diag(PrevDecl->getLocation(), diag::err_previous_use);
1331 }
1332
1333 // If this is a use or a forward declaration, we're good.
1334 if (TK != TK_Definition)
1335 return PrevDecl;
1336
1337 // Diagnose attempts to redefine a tag.
1338 if (PrevDecl->isDefinition()) {
1339 Diag(NameLoc, diag::err_redefinition, Name->getName());
1340 Diag(PrevDecl->getLocation(), diag::err_previous_definition);
1341 // If this is a redefinition, recover by making this struct be
1342 // anonymous, which will make any later references get the previous
1343 // definition.
1344 Name = 0;
1345 } else {
1346 // Okay, this is definition of a previously declared or referenced tag.
1347 // Move the location of the decl to be the definition site.
1348 PrevDecl->setLocation(NameLoc);
1349 return PrevDecl;
1350 }
1351 }
1352 // If we get here, this is a definition of a new struct type in a nested
1353 // scope, e.g. "struct foo; void bar() { struct foo; }", just create a new
1354 // type.
1355 }
1356
1357 // If there is an identifier, use the location of the identifier as the
1358 // location of the decl, otherwise use the location of the struct/union
1359 // keyword.
1360 SourceLocation Loc = NameLoc.isValid() ? NameLoc : KWLoc;
1361
1362 // Otherwise, if this is the first time we've seen this tag, create the decl.
1363 TagDecl *New;
1364 switch (Kind) {
1365 default: assert(0 && "Unknown tag kind!");
1366 case Decl::Enum:
1367 // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
1368 // enum X { A, B, C } D; D should chain to X.
Chris Lattner0ed844b2008-04-04 06:12:32 +00001369 New = EnumDecl::Create(Context, CurContext, Loc, Name, 0);
Reid Spencer5f016e22007-07-11 17:01:13 +00001370 // If this is an undefined enum, warn.
1371 if (TK != TK_Definition) Diag(Loc, diag::ext_forward_ref_enum);
1372 break;
1373 case Decl::Union:
1374 case Decl::Struct:
1375 case Decl::Class:
1376 // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
1377 // struct X { int A; } D; D should chain to X.
Chris Lattner0ed844b2008-04-04 06:12:32 +00001378 New = RecordDecl::Create(Context, Kind, CurContext, Loc, Name, 0);
Reid Spencer5f016e22007-07-11 17:01:13 +00001379 break;
1380 }
1381
1382 // If this has an identifier, add it to the scope stack.
1383 if (Name) {
Chris Lattner31e05722007-08-26 06:24:45 +00001384 // The scope passed in may not be a decl scope. Zip up the scope tree until
1385 // we find one that is.
1386 while ((S->getFlags() & Scope::DeclScope) == 0)
1387 S = S->getParent();
1388
1389 // Add it to the decl chain.
Argyrios Kyrtzidis87f3ff02008-04-12 00:47:19 +00001390 PushOnScopeChains(New, S);
Reid Spencer5f016e22007-07-11 17:01:13 +00001391 }
Chris Lattnere1e79852008-02-06 00:51:33 +00001392
Anders Carlssonad148062008-02-16 00:29:18 +00001393 HandleDeclAttributes(New, Attr, 0);
Reid Spencer5f016e22007-07-11 17:01:13 +00001394 return New;
1395}
1396
Steve Naroff08d92e42007-09-15 18:49:24 +00001397/// ActOnField - Each field of a struct/union/class is passed into this in order
Reid Spencer5f016e22007-07-11 17:01:13 +00001398/// to create a FieldDecl object for it.
Fariborz Jahanian1d78cc42008-04-10 23:32:45 +00001399Sema::DeclTy *Sema::ActOnField(Scope *S,
Reid Spencer5f016e22007-07-11 17:01:13 +00001400 SourceLocation DeclStart,
1401 Declarator &D, ExprTy *BitfieldWidth) {
1402 IdentifierInfo *II = D.getIdentifier();
1403 Expr *BitWidth = (Expr*)BitfieldWidth;
Reid Spencer5f016e22007-07-11 17:01:13 +00001404 SourceLocation Loc = DeclStart;
1405 if (II) Loc = D.getIdentifierLoc();
1406
1407 // FIXME: Unnamed fields can be handled in various different ways, for
1408 // example, unnamed unions inject all members into the struct namespace!
1409
1410
1411 if (BitWidth) {
1412 // TODO: Validate.
1413 //printf("WARNING: BITFIELDS IGNORED!\n");
1414
1415 // 6.7.2.1p3
1416 // 6.7.2.1p4
1417
1418 } else {
1419 // Not a bitfield.
1420
1421 // validate II.
1422
1423 }
1424
1425 QualType T = GetTypeForDeclarator(D, S);
Steve Naroff5912a352007-08-28 20:14:24 +00001426 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
1427 bool InvalidDecl = false;
Steve Naroffd7444aa2007-08-31 17:20:07 +00001428
Reid Spencer5f016e22007-07-11 17:01:13 +00001429 // C99 6.7.2.1p8: A member of a structure or union may have any type other
1430 // than a variably modified type.
Eli Friedman9db13972008-02-15 12:53:51 +00001431 if (T->isVariablyModifiedType()) {
1432 // FIXME: This diagnostic needs work
1433 Diag(Loc, diag::err_typecheck_illegal_vla, Loc);
Steve Naroffd7444aa2007-08-31 17:20:07 +00001434 InvalidDecl = true;
Reid Spencer5f016e22007-07-11 17:01:13 +00001435 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001436 // FIXME: Chain fielddecls together.
Fariborz Jahanian45bc03f2008-04-11 16:55:42 +00001437 FieldDecl *NewFD = FieldDecl::Create(Context, Loc, II, T, BitWidth);
Steve Naroff44739212007-09-11 21:17:26 +00001438
Anders Carlssonad148062008-02-16 00:29:18 +00001439 HandleDeclAttributes(NewFD, D.getDeclSpec().getAttributes(),
1440 D.getAttributes());
1441
Steve Naroff5912a352007-08-28 20:14:24 +00001442 if (D.getInvalidType() || InvalidDecl)
1443 NewFD->setInvalidDecl();
1444 return NewFD;
Reid Spencer5f016e22007-07-11 17:01:13 +00001445}
1446
Fariborz Jahanian89204a12007-10-01 16:53:59 +00001447/// TranslateIvarVisibility - Translate visibility from a token ID to an
1448/// AST enum value.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001449static ObjCIvarDecl::AccessControl
Fariborz Jahanian89204a12007-10-01 16:53:59 +00001450TranslateIvarVisibility(tok::ObjCKeywordKind ivarVisibility) {
Steve Narofff13271f2007-09-14 23:09:53 +00001451 switch (ivarVisibility) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001452 case tok::objc_private: return ObjCIvarDecl::Private;
1453 case tok::objc_public: return ObjCIvarDecl::Public;
1454 case tok::objc_protected: return ObjCIvarDecl::Protected;
1455 case tok::objc_package: return ObjCIvarDecl::Package;
Fariborz Jahanian89204a12007-10-01 16:53:59 +00001456 default: assert(false && "Unknown visitibility kind");
Steve Narofff13271f2007-09-14 23:09:53 +00001457 }
1458}
1459
Fariborz Jahanian45bc03f2008-04-11 16:55:42 +00001460/// ActOnIvar - Each ivar field of an objective-c class is passed into this
1461/// in order to create an IvarDecl object for it.
Fariborz Jahanian1d78cc42008-04-10 23:32:45 +00001462Sema::DeclTy *Sema::ActOnIvar(Scope *S,
Fariborz Jahanian45bc03f2008-04-11 16:55:42 +00001463 SourceLocation DeclStart,
1464 Declarator &D, ExprTy *BitfieldWidth,
1465 tok::ObjCKeywordKind Visibility) {
Fariborz Jahanian1d78cc42008-04-10 23:32:45 +00001466 IdentifierInfo *II = D.getIdentifier();
1467 Expr *BitWidth = (Expr*)BitfieldWidth;
1468 SourceLocation Loc = DeclStart;
1469 if (II) Loc = D.getIdentifierLoc();
1470
1471 // FIXME: Unnamed fields can be handled in various different ways, for
1472 // example, unnamed unions inject all members into the struct namespace!
1473
1474
1475 if (BitWidth) {
1476 // TODO: Validate.
1477 //printf("WARNING: BITFIELDS IGNORED!\n");
1478
1479 // 6.7.2.1p3
1480 // 6.7.2.1p4
1481
1482 } else {
1483 // Not a bitfield.
1484
1485 // validate II.
1486
1487 }
1488
1489 QualType T = GetTypeForDeclarator(D, S);
1490 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
1491 bool InvalidDecl = false;
1492
1493 // C99 6.7.2.1p8: A member of a structure or union may have any type other
1494 // than a variably modified type.
1495 if (T->isVariablyModifiedType()) {
1496 // FIXME: This diagnostic needs work
1497 Diag(Loc, diag::err_typecheck_illegal_vla, Loc);
1498 InvalidDecl = true;
1499 }
1500
Fariborz Jahanian45bc03f2008-04-11 16:55:42 +00001501 ObjCIvarDecl *NewID = ObjCIvarDecl::Create(Context, Loc, II, T);
Fariborz Jahanian1d78cc42008-04-10 23:32:45 +00001502
1503 HandleDeclAttributes(NewID, D.getDeclSpec().getAttributes(),
1504 D.getAttributes());
1505
1506 if (D.getInvalidType() || InvalidDecl)
1507 NewID->setInvalidDecl();
1508 // If we have visibility info, make sure the AST is set accordingly.
Fariborz Jahanian45bc03f2008-04-11 16:55:42 +00001509 if (Visibility != tok::objc_not_keyword)
1510 NewID->setAccessControl(TranslateIvarVisibility(Visibility));
Fariborz Jahanian1d78cc42008-04-10 23:32:45 +00001511 return NewID;
1512}
1513
Fariborz Jahanian9d048ff2007-09-29 00:54:24 +00001514void Sema::ActOnFields(Scope* S,
Fariborz Jahanian3f5faf72007-10-04 00:45:27 +00001515 SourceLocation RecLoc, DeclTy *RecDecl,
Steve Naroff08d92e42007-09-15 18:49:24 +00001516 DeclTy **Fields, unsigned NumFields,
Fariborz Jahanian1d78cc42008-04-10 23:32:45 +00001517 SourceLocation LBrac, SourceLocation RBrac) {
Steve Naroff74216642007-09-14 22:20:54 +00001518 Decl *EnclosingDecl = static_cast<Decl*>(RecDecl);
1519 assert(EnclosingDecl && "missing record or interface decl");
1520 RecordDecl *Record = dyn_cast<RecordDecl>(EnclosingDecl);
1521
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001522 if (Record && Record->isDefinition()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001523 // Diagnose code like:
1524 // struct S { struct S {} X; };
1525 // We discover this when we complete the outer S. Reject and ignore the
1526 // outer S.
1527 Diag(Record->getLocation(), diag::err_nested_redefinition,
1528 Record->getKindName());
1529 Diag(RecLoc, diag::err_previous_definition);
Steve Naroff74216642007-09-14 22:20:54 +00001530 Record->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00001531 return;
1532 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001533 // Verify that all the fields are okay.
1534 unsigned NumNamedMembers = 0;
1535 llvm::SmallVector<FieldDecl*, 32> RecFields;
1536 llvm::SmallSet<const IdentifierInfo*, 32> FieldIDs;
Steve Naroff74216642007-09-14 22:20:54 +00001537
Reid Spencer5f016e22007-07-11 17:01:13 +00001538 for (unsigned i = 0; i != NumFields; ++i) {
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001539
Steve Naroff74216642007-09-14 22:20:54 +00001540 FieldDecl *FD = cast_or_null<FieldDecl>(static_cast<Decl*>(Fields[i]));
1541 assert(FD && "missing field decl");
1542
1543 // Remember all fields.
1544 RecFields.push_back(FD);
Reid Spencer5f016e22007-07-11 17:01:13 +00001545
1546 // Get the type for the field.
Chris Lattner02c642e2007-07-31 21:33:24 +00001547 Type *FDTy = FD->getType().getTypePtr();
Steve Narofff13271f2007-09-14 23:09:53 +00001548
Reid Spencer5f016e22007-07-11 17:01:13 +00001549 // C99 6.7.2.1p2 - A field may not be a function type.
Chris Lattner02c642e2007-07-31 21:33:24 +00001550 if (FDTy->isFunctionType()) {
Steve Naroff74216642007-09-14 22:20:54 +00001551 Diag(FD->getLocation(), diag::err_field_declared_as_function,
Reid Spencer5f016e22007-07-11 17:01:13 +00001552 FD->getName());
Steve Naroff74216642007-09-14 22:20:54 +00001553 FD->setInvalidDecl();
1554 EnclosingDecl->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00001555 continue;
1556 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001557 // C99 6.7.2.1p2 - A field may not be an incomplete type except...
1558 if (FDTy->isIncompleteType()) {
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001559 if (!Record) { // Incomplete ivar type is always an error.
Fariborz Jahanian3f5faf72007-10-04 00:45:27 +00001560 Diag(FD->getLocation(), diag::err_field_incomplete, FD->getName());
Steve Naroff74216642007-09-14 22:20:54 +00001561 FD->setInvalidDecl();
1562 EnclosingDecl->setInvalidDecl();
Fariborz Jahanian3f5faf72007-10-04 00:45:27 +00001563 continue;
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001564 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001565 if (i != NumFields-1 || // ... that the last member ...
1566 Record->getKind() != Decl::Struct || // ... of a structure ...
Chris Lattner02c642e2007-07-31 21:33:24 +00001567 !FDTy->isArrayType()) { //... may have incomplete array type.
Reid Spencer5f016e22007-07-11 17:01:13 +00001568 Diag(FD->getLocation(), diag::err_field_incomplete, FD->getName());
Steve Naroff74216642007-09-14 22:20:54 +00001569 FD->setInvalidDecl();
1570 EnclosingDecl->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00001571 continue;
1572 }
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001573 if (NumNamedMembers < 1) { //... must have more than named member ...
Reid Spencer5f016e22007-07-11 17:01:13 +00001574 Diag(FD->getLocation(), diag::err_flexible_array_empty_struct,
1575 FD->getName());
Steve Naroff74216642007-09-14 22:20:54 +00001576 FD->setInvalidDecl();
1577 EnclosingDecl->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00001578 continue;
1579 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001580 // Okay, we have a legal flexible array member at the end of the struct.
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001581 if (Record)
1582 Record->setHasFlexibleArrayMember(true);
Reid Spencer5f016e22007-07-11 17:01:13 +00001583 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001584 /// C99 6.7.2.1p2 - a struct ending in a flexible array member cannot be the
1585 /// field of another structure or the element of an array.
Chris Lattner02c642e2007-07-31 21:33:24 +00001586 if (const RecordType *FDTTy = FDTy->getAsRecordType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001587 if (FDTTy->getDecl()->hasFlexibleArrayMember()) {
1588 // If this is a member of a union, then entire union becomes "flexible".
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001589 if (Record && Record->getKind() == Decl::Union) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001590 Record->setHasFlexibleArrayMember(true);
1591 } else {
1592 // If this is a struct/class and this is not the last element, reject
1593 // it. Note that GCC supports variable sized arrays in the middle of
1594 // structures.
1595 if (i != NumFields-1) {
1596 Diag(FD->getLocation(), diag::err_variable_sized_type_in_struct,
1597 FD->getName());
Steve Naroff74216642007-09-14 22:20:54 +00001598 FD->setInvalidDecl();
1599 EnclosingDecl->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00001600 continue;
1601 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001602 // We support flexible arrays at the end of structs in other structs
1603 // as an extension.
1604 Diag(FD->getLocation(), diag::ext_flexible_array_in_struct,
1605 FD->getName());
Fariborz Jahanian3f5faf72007-10-04 00:45:27 +00001606 if (Record)
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001607 Record->setHasFlexibleArrayMember(true);
Reid Spencer5f016e22007-07-11 17:01:13 +00001608 }
1609 }
1610 }
Fariborz Jahaniane7f64cc2007-10-12 22:10:42 +00001611 /// A field cannot be an Objective-c object
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001612 if (FDTy->isObjCInterfaceType()) {
Fariborz Jahaniane7f64cc2007-10-12 22:10:42 +00001613 Diag(FD->getLocation(), diag::err_statically_allocated_object,
1614 FD->getName());
1615 FD->setInvalidDecl();
1616 EnclosingDecl->setInvalidDecl();
1617 continue;
1618 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001619 // Keep track of the number of named members.
1620 if (IdentifierInfo *II = FD->getIdentifier()) {
1621 // Detect duplicate member names.
1622 if (!FieldIDs.insert(II)) {
1623 Diag(FD->getLocation(), diag::err_duplicate_member, II->getName());
1624 // Find the previous decl.
1625 SourceLocation PrevLoc;
1626 for (unsigned i = 0, e = RecFields.size(); ; ++i) {
1627 assert(i != e && "Didn't find previous def!");
1628 if (RecFields[i]->getIdentifier() == II) {
1629 PrevLoc = RecFields[i]->getLocation();
1630 break;
1631 }
1632 }
1633 Diag(PrevLoc, diag::err_previous_definition);
Steve Naroff74216642007-09-14 22:20:54 +00001634 FD->setInvalidDecl();
1635 EnclosingDecl->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00001636 continue;
1637 }
1638 ++NumNamedMembers;
1639 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001640 }
1641
Reid Spencer5f016e22007-07-11 17:01:13 +00001642 // Okay, we successfully defined 'Record'.
Chris Lattnere1e79852008-02-06 00:51:33 +00001643 if (Record) {
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001644 Record->defineBody(&RecFields[0], RecFields.size());
Chris Lattnere1e79852008-02-06 00:51:33 +00001645 Consumer.HandleTagDeclDefinition(Record);
1646 } else {
Chris Lattnera91d3812008-02-05 22:40:55 +00001647 ObjCIvarDecl **ClsFields = reinterpret_cast<ObjCIvarDecl**>(&RecFields[0]);
1648 if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(EnclosingDecl))
1649 ID->addInstanceVariablesToClass(ClsFields, RecFields.size(), RBrac);
1650 else if (ObjCImplementationDecl *IMPDecl =
1651 dyn_cast<ObjCImplementationDecl>(EnclosingDecl)) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001652 assert(IMPDecl && "ActOnFields - missing ObjCImplementationDecl");
1653 IMPDecl->ObjCAddInstanceVariablesToClassImpl(ClsFields, RecFields.size());
Fariborz Jahanian3a3ca1b2007-10-31 18:48:14 +00001654 CheckImplementationIvars(IMPDecl, ClsFields, RecFields.size(), RBrac);
Fariborz Jahaniand0b90bf2007-09-26 18:27:25 +00001655 }
Fariborz Jahanianb04a0212007-09-14 21:08:27 +00001656 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001657}
1658
Steve Naroff08d92e42007-09-15 18:49:24 +00001659Sema::DeclTy *Sema::ActOnEnumConstant(Scope *S, DeclTy *theEnumDecl,
Reid Spencer5f016e22007-07-11 17:01:13 +00001660 DeclTy *lastEnumConst,
1661 SourceLocation IdLoc, IdentifierInfo *Id,
1662 SourceLocation EqualLoc, ExprTy *val) {
Chris Lattner0ed844b2008-04-04 06:12:32 +00001663 EnumDecl *TheEnumDecl = cast<EnumDecl>(static_cast<Decl*>(theEnumDecl));
Reid Spencer5f016e22007-07-11 17:01:13 +00001664 EnumConstantDecl *LastEnumConst =
1665 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(lastEnumConst));
1666 Expr *Val = static_cast<Expr*>(val);
1667
Chris Lattner31e05722007-08-26 06:24:45 +00001668 // The scope passed in may not be a decl scope. Zip up the scope tree until
1669 // we find one that is.
1670 while ((S->getFlags() & Scope::DeclScope) == 0)
1671 S = S->getParent();
1672
Reid Spencer5f016e22007-07-11 17:01:13 +00001673 // Verify that there isn't already something declared with this name in this
1674 // scope.
Steve Naroffb327ce02008-04-02 14:35:35 +00001675 if (Decl *PrevDecl = LookupDecl(Id, Decl::IDNS_Ordinary, S)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001676 if (S->isDeclScope(PrevDecl)) {
1677 if (isa<EnumConstantDecl>(PrevDecl))
1678 Diag(IdLoc, diag::err_redefinition_of_enumerator, Id->getName());
1679 else
1680 Diag(IdLoc, diag::err_redefinition, Id->getName());
1681 Diag(PrevDecl->getLocation(), diag::err_previous_definition);
Chris Lattnera73349d2008-02-26 00:33:57 +00001682 delete Val;
Reid Spencer5f016e22007-07-11 17:01:13 +00001683 return 0;
1684 }
1685 }
1686
1687 llvm::APSInt EnumVal(32);
1688 QualType EltTy;
1689 if (Val) {
Chris Lattner421a23d2007-08-27 21:16:18 +00001690 // Make sure to promote the operand type to int.
1691 UsualUnaryConversions(Val);
1692
Reid Spencer5f016e22007-07-11 17:01:13 +00001693 // C99 6.7.2.2p2: Make sure we have an integer constant expression.
1694 SourceLocation ExpLoc;
Chris Lattner590b6642007-07-15 23:26:56 +00001695 if (!Val->isIntegerConstantExpr(EnumVal, Context, &ExpLoc)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001696 Diag(ExpLoc, diag::err_enum_value_not_integer_constant_expr,
1697 Id->getName());
Chris Lattnera73349d2008-02-26 00:33:57 +00001698 delete Val;
Chris Lattnerb7416f92007-08-27 17:37:24 +00001699 Val = 0; // Just forget about it.
Chris Lattnere9ca8512007-08-29 16:03:41 +00001700 } else {
1701 EltTy = Val->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001702 }
Chris Lattnerb7416f92007-08-27 17:37:24 +00001703 }
1704
1705 if (!Val) {
1706 if (LastEnumConst) {
1707 // Assign the last value + 1.
1708 EnumVal = LastEnumConst->getInitVal();
1709 ++EnumVal;
Chris Lattner421a23d2007-08-27 21:16:18 +00001710
1711 // Check for overflow on increment.
1712 if (EnumVal < LastEnumConst->getInitVal())
1713 Diag(IdLoc, diag::warn_enum_value_overflow);
1714
Chris Lattnerb7416f92007-08-27 17:37:24 +00001715 EltTy = LastEnumConst->getType();
1716 } else {
1717 // First value, set to zero.
1718 EltTy = Context.IntTy;
Chris Lattner98be4942008-03-05 18:54:05 +00001719 EnumVal.zextOrTrunc(static_cast<uint32_t>(Context.getTypeSize(EltTy)));
Chris Lattnerb7416f92007-08-27 17:37:24 +00001720 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001721 }
1722
Chris Lattner6c2b6eb2008-03-15 06:12:44 +00001723 EnumConstantDecl *New =
Chris Lattner0ed844b2008-04-04 06:12:32 +00001724 EnumConstantDecl::Create(Context, TheEnumDecl, IdLoc, Id, EltTy,
1725 Val, EnumVal,
Chris Lattnerc63e6602008-03-15 21:32:50 +00001726 LastEnumConst);
Reid Spencer5f016e22007-07-11 17:01:13 +00001727
1728 // Register this decl in the current scope stack.
Argyrios Kyrtzidis87f3ff02008-04-12 00:47:19 +00001729 PushOnScopeChains(New, S);
Reid Spencer5f016e22007-07-11 17:01:13 +00001730 return New;
1731}
1732
Steve Naroff08d92e42007-09-15 18:49:24 +00001733void Sema::ActOnEnumBody(SourceLocation EnumLoc, DeclTy *EnumDeclX,
Reid Spencer5f016e22007-07-11 17:01:13 +00001734 DeclTy **Elements, unsigned NumElements) {
1735 EnumDecl *Enum = cast<EnumDecl>(static_cast<Decl*>(EnumDeclX));
1736 assert(!Enum->isDefinition() && "Enum redefinitions can't reach here");
1737
Chris Lattnere37f0be2007-08-28 05:10:31 +00001738 // TODO: If the result value doesn't fit in an int, it must be a long or long
1739 // long value. ISO C does not support this, but GCC does as an extension,
1740 // emit a warning.
Chris Lattner98be4942008-03-05 18:54:05 +00001741 unsigned IntWidth = Context.Target.getIntWidth();
Chris Lattnere37f0be2007-08-28 05:10:31 +00001742
Chris Lattnerac609682007-08-28 06:15:15 +00001743 // Verify that all the values are okay, compute the size of the values, and
1744 // reverse the list.
1745 unsigned NumNegativeBits = 0;
1746 unsigned NumPositiveBits = 0;
1747
1748 // Keep track of whether all elements have type int.
1749 bool AllElementsInt = true;
1750
Reid Spencer5f016e22007-07-11 17:01:13 +00001751 EnumConstantDecl *EltList = 0;
1752 for (unsigned i = 0; i != NumElements; ++i) {
1753 EnumConstantDecl *ECD =
1754 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(Elements[i]));
1755 if (!ECD) continue; // Already issued a diagnostic.
Chris Lattner211a30e2007-08-28 05:27:00 +00001756
1757 // If the enum value doesn't fit in an int, emit an extension warning.
Chris Lattner211a30e2007-08-28 05:27:00 +00001758 const llvm::APSInt &InitVal = ECD->getInitVal();
Chris Lattnera73349d2008-02-26 00:33:57 +00001759 assert(InitVal.getBitWidth() >= IntWidth &&
1760 "Should have promoted value to int");
Chris Lattner211a30e2007-08-28 05:27:00 +00001761 if (InitVal.getBitWidth() > IntWidth) {
1762 llvm::APSInt V(InitVal);
1763 V.trunc(IntWidth);
1764 V.extend(InitVal.getBitWidth());
1765 if (V != InitVal)
1766 Diag(ECD->getLocation(), diag::ext_enum_value_not_int,
1767 InitVal.toString());
1768 }
Chris Lattnerac609682007-08-28 06:15:15 +00001769
1770 // Keep track of the size of positive and negative values.
Chris Lattnera73349d2008-02-26 00:33:57 +00001771 if (InitVal.isUnsigned() || InitVal.isNonNegative())
Chris Lattner21dd8212008-01-14 21:47:29 +00001772 NumPositiveBits = std::max(NumPositiveBits,
1773 (unsigned)InitVal.getActiveBits());
Chris Lattnerac609682007-08-28 06:15:15 +00001774 else
Chris Lattner21dd8212008-01-14 21:47:29 +00001775 NumNegativeBits = std::max(NumNegativeBits,
1776 (unsigned)InitVal.getMinSignedBits());
Reid Spencer5f016e22007-07-11 17:01:13 +00001777
Chris Lattnerac609682007-08-28 06:15:15 +00001778 // Keep track of whether every enum element has type int (very commmon).
1779 if (AllElementsInt)
1780 AllElementsInt = ECD->getType() == Context.IntTy;
1781
Reid Spencer5f016e22007-07-11 17:01:13 +00001782 ECD->setNextDeclarator(EltList);
1783 EltList = ECD;
1784 }
1785
Chris Lattnerac609682007-08-28 06:15:15 +00001786 // Figure out the type that should be used for this enum.
1787 // FIXME: Support attribute(packed) on enums and -fshort-enums.
1788 QualType BestType;
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001789 unsigned BestWidth;
Chris Lattnerac609682007-08-28 06:15:15 +00001790
1791 if (NumNegativeBits) {
1792 // If there is a negative value, figure out the smallest integer type (of
1793 // int/long/longlong) that fits.
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001794 if (NumNegativeBits <= IntWidth && NumPositiveBits < IntWidth) {
Chris Lattnerac609682007-08-28 06:15:15 +00001795 BestType = Context.IntTy;
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001796 BestWidth = IntWidth;
1797 } else {
Chris Lattner98be4942008-03-05 18:54:05 +00001798 BestWidth = Context.Target.getLongWidth();
Ted Kremenek9c728dc2007-12-12 22:39:36 +00001799
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001800 if (NumNegativeBits <= BestWidth && NumPositiveBits < BestWidth)
Chris Lattnerac609682007-08-28 06:15:15 +00001801 BestType = Context.LongTy;
1802 else {
Chris Lattner98be4942008-03-05 18:54:05 +00001803 BestWidth = Context.Target.getLongLongWidth();
Ted Kremenek9c728dc2007-12-12 22:39:36 +00001804
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001805 if (NumNegativeBits > BestWidth || NumPositiveBits >= BestWidth)
Chris Lattnerac609682007-08-28 06:15:15 +00001806 Diag(Enum->getLocation(), diag::warn_enum_too_large);
1807 BestType = Context.LongLongTy;
1808 }
1809 }
1810 } else {
1811 // If there is no negative value, figure out which of uint, ulong, ulonglong
1812 // fits.
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001813 if (NumPositiveBits <= IntWidth) {
Chris Lattnerac609682007-08-28 06:15:15 +00001814 BestType = Context.UnsignedIntTy;
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001815 BestWidth = IntWidth;
1816 } else if (NumPositiveBits <=
Chris Lattner98be4942008-03-05 18:54:05 +00001817 (BestWidth = Context.Target.getLongWidth())) {
Chris Lattnerac609682007-08-28 06:15:15 +00001818 BestType = Context.UnsignedLongTy;
Chris Lattner98be4942008-03-05 18:54:05 +00001819 } else {
1820 BestWidth = Context.Target.getLongLongWidth();
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001821 assert(NumPositiveBits <= BestWidth &&
Chris Lattnerac609682007-08-28 06:15:15 +00001822 "How could an initializer get larger than ULL?");
1823 BestType = Context.UnsignedLongLongTy;
1824 }
1825 }
1826
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001827 // Loop over all of the enumerator constants, changing their types to match
1828 // the type of the enum if needed.
1829 for (unsigned i = 0; i != NumElements; ++i) {
1830 EnumConstantDecl *ECD =
1831 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(Elements[i]));
1832 if (!ECD) continue; // Already issued a diagnostic.
1833
1834 // Standard C says the enumerators have int type, but we allow, as an
1835 // extension, the enumerators to be larger than int size. If each
1836 // enumerator value fits in an int, type it as an int, otherwise type it the
1837 // same as the enumerator decl itself. This means that in "enum { X = 1U }"
1838 // that X has type 'int', not 'unsigned'.
Chris Lattnera73349d2008-02-26 00:33:57 +00001839 if (ECD->getType() == Context.IntTy) {
1840 // Make sure the init value is signed.
1841 llvm::APSInt IV = ECD->getInitVal();
1842 IV.setIsSigned(true);
1843 ECD->setInitVal(IV);
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001844 continue; // Already int type.
Chris Lattnera73349d2008-02-26 00:33:57 +00001845 }
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001846
1847 // Determine whether the value fits into an int.
1848 llvm::APSInt InitVal = ECD->getInitVal();
1849 bool FitsInInt;
1850 if (InitVal.isUnsigned() || !InitVal.isNegative())
1851 FitsInInt = InitVal.getActiveBits() < IntWidth;
1852 else
1853 FitsInInt = InitVal.getMinSignedBits() <= IntWidth;
1854
1855 // If it fits into an integer type, force it. Otherwise force it to match
1856 // the enum decl type.
1857 QualType NewTy;
1858 unsigned NewWidth;
1859 bool NewSign;
1860 if (FitsInInt) {
1861 NewTy = Context.IntTy;
1862 NewWidth = IntWidth;
1863 NewSign = true;
1864 } else if (ECD->getType() == BestType) {
1865 // Already the right type!
1866 continue;
1867 } else {
1868 NewTy = BestType;
1869 NewWidth = BestWidth;
1870 NewSign = BestType->isSignedIntegerType();
1871 }
1872
1873 // Adjust the APSInt value.
1874 InitVal.extOrTrunc(NewWidth);
1875 InitVal.setIsSigned(NewSign);
1876 ECD->setInitVal(InitVal);
1877
1878 // Adjust the Expr initializer and type.
1879 ECD->setInitExpr(new ImplicitCastExpr(NewTy, ECD->getInitExpr()));
1880 ECD->setType(NewTy);
1881 }
Chris Lattnerac609682007-08-28 06:15:15 +00001882
Chris Lattnere00b18c2007-08-28 18:24:31 +00001883 Enum->defineElements(EltList, BestType);
Chris Lattnere1e79852008-02-06 00:51:33 +00001884 Consumer.HandleTagDeclDefinition(Enum);
Reid Spencer5f016e22007-07-11 17:01:13 +00001885}
1886
Anders Carlssondfab6cb2008-02-08 00:33:21 +00001887Sema::DeclTy *Sema::ActOnFileScopeAsmDecl(SourceLocation Loc,
1888 ExprTy *expr) {
1889 StringLiteral *AsmString = cast<StringLiteral>((Expr*)expr);
1890
Chris Lattner8e25d862008-03-16 00:16:02 +00001891 return FileScopeAsmDecl::Create(Context, Loc, AsmString);
Anders Carlssondfab6cb2008-02-08 00:33:21 +00001892}
1893
Chris Lattnerc6fdc342008-01-12 07:05:38 +00001894Sema::DeclTy* Sema::ActOnLinkageSpec(SourceLocation Loc,
Chris Lattnerc81c8142008-02-25 21:04:36 +00001895 SourceLocation LBrace,
1896 SourceLocation RBrace,
1897 const char *Lang,
1898 unsigned StrSize,
1899 DeclTy *D) {
Chris Lattnerc6fdc342008-01-12 07:05:38 +00001900 LinkageSpecDecl::LanguageIDs Language;
1901 Decl *dcl = static_cast<Decl *>(D);
1902 if (strncmp(Lang, "\"C\"", StrSize) == 0)
1903 Language = LinkageSpecDecl::lang_c;
1904 else if (strncmp(Lang, "\"C++\"", StrSize) == 0)
1905 Language = LinkageSpecDecl::lang_cxx;
1906 else {
1907 Diag(Loc, diag::err_bad_language);
1908 return 0;
1909 }
1910
1911 // FIXME: Add all the various semantics of linkage specifications
Chris Lattner8e25d862008-03-16 00:16:02 +00001912 return LinkageSpecDecl::Create(Context, Loc, Language, dcl);
Chris Lattnerc6fdc342008-01-12 07:05:38 +00001913}
1914
Chris Lattner74788ba2008-02-21 00:48:22 +00001915void Sema::HandleDeclAttribute(Decl *New, AttributeList *Attr) {
Anders Carlsson6ede0ff2007-12-19 06:16:30 +00001916
Chris Lattner74788ba2008-02-21 00:48:22 +00001917 switch (Attr->getKind()) {
Chris Lattner212839c2008-02-20 23:17:35 +00001918 case AttributeList::AT_vector_size:
Reid Spencer5f016e22007-07-11 17:01:13 +00001919 if (ValueDecl *vDecl = dyn_cast<ValueDecl>(New)) {
Chris Lattner74788ba2008-02-21 00:48:22 +00001920 QualType newType = HandleVectorTypeAttribute(vDecl->getType(), Attr);
Reid Spencer5f016e22007-07-11 17:01:13 +00001921 if (!newType.isNull()) // install the new vector type into the decl
1922 vDecl->setType(newType);
1923 }
1924 if (TypedefDecl *tDecl = dyn_cast<TypedefDecl>(New)) {
1925 QualType newType = HandleVectorTypeAttribute(tDecl->getUnderlyingType(),
Chris Lattner74788ba2008-02-21 00:48:22 +00001926 Attr);
Reid Spencer5f016e22007-07-11 17:01:13 +00001927 if (!newType.isNull()) // install the new vector type into the decl
1928 tDecl->setUnderlyingType(newType);
1929 }
Chris Lattner212839c2008-02-20 23:17:35 +00001930 break;
1931 case AttributeList::AT_ocu_vector_type:
Steve Naroffbea0b342007-07-29 16:33:31 +00001932 if (TypedefDecl *tDecl = dyn_cast<TypedefDecl>(New))
Chris Lattner74788ba2008-02-21 00:48:22 +00001933 HandleOCUVectorTypeAttribute(tDecl, Attr);
Steve Naroffbea0b342007-07-29 16:33:31 +00001934 else
Chris Lattner74788ba2008-02-21 00:48:22 +00001935 Diag(Attr->getLoc(),
Steve Naroff73322922007-07-18 18:00:27 +00001936 diag::err_typecheck_ocu_vector_not_typedef);
Chris Lattner212839c2008-02-20 23:17:35 +00001937 break;
1938 case AttributeList::AT_address_space:
Christopher Lambebb97e92008-02-04 02:31:56 +00001939 if (TypedefDecl *tDecl = dyn_cast<TypedefDecl>(New)) {
1940 QualType newType = HandleAddressSpaceTypeAttribute(
1941 tDecl->getUnderlyingType(),
Chris Lattner74788ba2008-02-21 00:48:22 +00001942 Attr);
1943 tDecl->setUnderlyingType(newType);
Christopher Lambebb97e92008-02-04 02:31:56 +00001944 } else if (ValueDecl *vDecl = dyn_cast<ValueDecl>(New)) {
1945 QualType newType = HandleAddressSpaceTypeAttribute(vDecl->getType(),
Chris Lattner74788ba2008-02-21 00:48:22 +00001946 Attr);
1947 // install the new addr spaced type into the decl
1948 vDecl->setType(newType);
Christopher Lambebb97e92008-02-04 02:31:56 +00001949 }
Chris Lattner212839c2008-02-20 23:17:35 +00001950 break;
Chris Lattner7e669b22008-02-29 16:48:43 +00001951 case AttributeList::AT_deprecated:
Chris Lattnerddee4232008-03-03 03:28:21 +00001952 HandleDeprecatedAttribute(New, Attr);
1953 break;
1954 case AttributeList::AT_visibility:
1955 HandleVisibilityAttribute(New, Attr);
1956 break;
1957 case AttributeList::AT_weak:
1958 HandleWeakAttribute(New, Attr);
1959 break;
1960 case AttributeList::AT_dllimport:
1961 HandleDLLImportAttribute(New, Attr);
1962 break;
1963 case AttributeList::AT_dllexport:
1964 HandleDLLExportAttribute(New, Attr);
1965 break;
1966 case AttributeList::AT_nothrow:
1967 HandleNothrowAttribute(New, Attr);
Chris Lattner7e669b22008-02-29 16:48:43 +00001968 break;
Nate Begeman440b4562008-03-07 20:04:22 +00001969 case AttributeList::AT_stdcall:
1970 HandleStdCallAttribute(New, Attr);
1971 break;
1972 case AttributeList::AT_fastcall:
1973 HandleFastCallAttribute(New, Attr);
1974 break;
Chris Lattner212839c2008-02-20 23:17:35 +00001975 case AttributeList::AT_aligned:
Chris Lattner74788ba2008-02-21 00:48:22 +00001976 HandleAlignedAttribute(New, Attr);
Chris Lattner212839c2008-02-20 23:17:35 +00001977 break;
1978 case AttributeList::AT_packed:
Chris Lattner74788ba2008-02-21 00:48:22 +00001979 HandlePackedAttribute(New, Attr);
Chris Lattner212839c2008-02-20 23:17:35 +00001980 break;
Nate Begemanc398f0b2008-02-21 19:30:49 +00001981 case AttributeList::AT_annotate:
1982 HandleAnnotateAttribute(New, Attr);
1983 break;
Ted Kremenekaecb3832008-02-27 20:43:06 +00001984 case AttributeList::AT_noreturn:
1985 HandleNoReturnAttribute(New, Attr);
1986 break;
Chris Lattnerddee4232008-03-03 03:28:21 +00001987 case AttributeList::AT_format:
1988 HandleFormatAttribute(New, Attr);
1989 break;
Chris Lattner212839c2008-02-20 23:17:35 +00001990 default:
Chris Lattner7e669b22008-02-29 16:48:43 +00001991#if 0
1992 // TODO: when we have the full set of attributes, warn about unknown ones.
1993 Diag(Attr->getLoc(), diag::warn_attribute_ignored,
1994 Attr->getName()->getName());
1995#endif
Chris Lattner212839c2008-02-20 23:17:35 +00001996 break;
1997 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001998}
1999
2000void Sema::HandleDeclAttributes(Decl *New, AttributeList *declspec_prefix,
2001 AttributeList *declarator_postfix) {
2002 while (declspec_prefix) {
2003 HandleDeclAttribute(New, declspec_prefix);
2004 declspec_prefix = declspec_prefix->getNext();
2005 }
2006 while (declarator_postfix) {
2007 HandleDeclAttribute(New, declarator_postfix);
2008 declarator_postfix = declarator_postfix->getNext();
2009 }
2010}
2011
Steve Naroffbea0b342007-07-29 16:33:31 +00002012void Sema::HandleOCUVectorTypeAttribute(TypedefDecl *tDecl,
2013 AttributeList *rawAttr) {
2014 QualType curType = tDecl->getUnderlyingType();
Anders Carlsson78aaae92007-12-19 07:19:40 +00002015 // check the attribute arguments.
Steve Naroff73322922007-07-18 18:00:27 +00002016 if (rawAttr->getNumArgs() != 1) {
Chris Lattner2070d802008-02-20 23:25:22 +00002017 Diag(rawAttr->getLoc(), diag::err_attribute_wrong_number_arguments,
Steve Naroff73322922007-07-18 18:00:27 +00002018 std::string("1"));
Steve Naroffbea0b342007-07-29 16:33:31 +00002019 return;
Steve Naroff73322922007-07-18 18:00:27 +00002020 }
2021 Expr *sizeExpr = static_cast<Expr *>(rawAttr->getArg(0));
2022 llvm::APSInt vecSize(32);
2023 if (!sizeExpr->isIntegerConstantExpr(vecSize, Context)) {
Chris Lattner2070d802008-02-20 23:25:22 +00002024 Diag(rawAttr->getLoc(), diag::err_attribute_argument_not_int,
Anders Carlsson042c4e72008-02-16 19:51:27 +00002025 "ocu_vector_type", sizeExpr->getSourceRange());
Steve Naroffbea0b342007-07-29 16:33:31 +00002026 return;
Steve Naroff73322922007-07-18 18:00:27 +00002027 }
2028 // unlike gcc's vector_size attribute, we do not allow vectors to be defined
2029 // in conjunction with complex types (pointers, arrays, functions, etc.).
2030 Type *canonType = curType.getCanonicalType().getTypePtr();
2031 if (!(canonType->isIntegerType() || canonType->isRealFloatingType())) {
Chris Lattner2070d802008-02-20 23:25:22 +00002032 Diag(rawAttr->getLoc(), diag::err_attribute_invalid_vector_type,
Steve Naroff73322922007-07-18 18:00:27 +00002033 curType.getCanonicalType().getAsString());
Steve Naroffbea0b342007-07-29 16:33:31 +00002034 return;
Steve Naroff73322922007-07-18 18:00:27 +00002035 }
2036 // unlike gcc's vector_size attribute, the size is specified as the
2037 // number of elements, not the number of bytes.
Chris Lattner701e5eb2007-09-04 02:45:27 +00002038 unsigned vectorSize = static_cast<unsigned>(vecSize.getZExtValue());
Steve Naroff73322922007-07-18 18:00:27 +00002039
2040 if (vectorSize == 0) {
Chris Lattner2070d802008-02-20 23:25:22 +00002041 Diag(rawAttr->getLoc(), diag::err_attribute_zero_size,
Steve Naroff73322922007-07-18 18:00:27 +00002042 sizeExpr->getSourceRange());
Steve Naroffbea0b342007-07-29 16:33:31 +00002043 return;
Steve Naroff73322922007-07-18 18:00:27 +00002044 }
Steve Naroffbea0b342007-07-29 16:33:31 +00002045 // Instantiate/Install the vector type, the number of elements is > 0.
2046 tDecl->setUnderlyingType(Context.getOCUVectorType(curType, vectorSize));
2047 // Remember this typedef decl, we will need it later for diagnostics.
2048 OCUVectorDecls.push_back(tDecl);
Steve Naroff73322922007-07-18 18:00:27 +00002049}
2050
Reid Spencer5f016e22007-07-11 17:01:13 +00002051QualType Sema::HandleVectorTypeAttribute(QualType curType,
Chris Lattnera7674d82007-07-13 22:13:22 +00002052 AttributeList *rawAttr) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002053 // check the attribute arugments.
2054 if (rawAttr->getNumArgs() != 1) {
Chris Lattner2070d802008-02-20 23:25:22 +00002055 Diag(rawAttr->getLoc(), diag::err_attribute_wrong_number_arguments,
Reid Spencer5f016e22007-07-11 17:01:13 +00002056 std::string("1"));
2057 return QualType();
2058 }
2059 Expr *sizeExpr = static_cast<Expr *>(rawAttr->getArg(0));
2060 llvm::APSInt vecSize(32);
Chris Lattner590b6642007-07-15 23:26:56 +00002061 if (!sizeExpr->isIntegerConstantExpr(vecSize, Context)) {
Chris Lattner2070d802008-02-20 23:25:22 +00002062 Diag(rawAttr->getLoc(), diag::err_attribute_argument_not_int,
Anders Carlsson042c4e72008-02-16 19:51:27 +00002063 "vector_size", sizeExpr->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +00002064 return QualType();
2065 }
2066 // navigate to the base type - we need to provide for vector pointers,
2067 // vector arrays, and functions returning vectors.
2068 Type *canonType = curType.getCanonicalType().getTypePtr();
2069
Steve Naroff73322922007-07-18 18:00:27 +00002070 if (canonType->isPointerType() || canonType->isArrayType() ||
2071 canonType->isFunctionType()) {
Chris Lattner54b263b2007-12-19 05:38:06 +00002072 assert(0 && "HandleVector(): Complex type construction unimplemented");
Steve Naroff73322922007-07-18 18:00:27 +00002073 /* FIXME: rebuild the type from the inside out, vectorizing the inner type.
2074 do {
2075 if (PointerType *PT = dyn_cast<PointerType>(canonType))
2076 canonType = PT->getPointeeType().getTypePtr();
2077 else if (ArrayType *AT = dyn_cast<ArrayType>(canonType))
2078 canonType = AT->getElementType().getTypePtr();
2079 else if (FunctionType *FT = dyn_cast<FunctionType>(canonType))
2080 canonType = FT->getResultType().getTypePtr();
2081 } while (canonType->isPointerType() || canonType->isArrayType() ||
2082 canonType->isFunctionType());
2083 */
Reid Spencer5f016e22007-07-11 17:01:13 +00002084 }
2085 // the base type must be integer or float.
2086 if (!(canonType->isIntegerType() || canonType->isRealFloatingType())) {
Chris Lattner2070d802008-02-20 23:25:22 +00002087 Diag(rawAttr->getLoc(), diag::err_attribute_invalid_vector_type,
Reid Spencer5f016e22007-07-11 17:01:13 +00002088 curType.getCanonicalType().getAsString());
2089 return QualType();
2090 }
Chris Lattner98be4942008-03-05 18:54:05 +00002091 unsigned typeSize = static_cast<unsigned>(Context.getTypeSize(curType));
Reid Spencer5f016e22007-07-11 17:01:13 +00002092 // vecSize is specified in bytes - convert to bits.
Chris Lattner701e5eb2007-09-04 02:45:27 +00002093 unsigned vectorSize = static_cast<unsigned>(vecSize.getZExtValue() * 8);
Reid Spencer5f016e22007-07-11 17:01:13 +00002094
2095 // the vector size needs to be an integral multiple of the type size.
2096 if (vectorSize % typeSize) {
Chris Lattner2070d802008-02-20 23:25:22 +00002097 Diag(rawAttr->getLoc(), diag::err_attribute_invalid_size,
Reid Spencer5f016e22007-07-11 17:01:13 +00002098 sizeExpr->getSourceRange());
2099 return QualType();
2100 }
2101 if (vectorSize == 0) {
Chris Lattner2070d802008-02-20 23:25:22 +00002102 Diag(rawAttr->getLoc(), diag::err_attribute_zero_size,
Reid Spencer5f016e22007-07-11 17:01:13 +00002103 sizeExpr->getSourceRange());
2104 return QualType();
2105 }
Nate Begemanc398f0b2008-02-21 19:30:49 +00002106 // Instantiate the vector type, the number of elements is > 0, and not
2107 // required to be a power of 2, unlike GCC.
Steve Naroff73322922007-07-18 18:00:27 +00002108 return Context.getVectorType(curType, vectorSize/typeSize);
Reid Spencer5f016e22007-07-11 17:01:13 +00002109}
2110
Chris Lattner2070d802008-02-20 23:25:22 +00002111void Sema::HandlePackedAttribute(Decl *d, AttributeList *rawAttr) {
Anders Carlssonad148062008-02-16 00:29:18 +00002112 // check the attribute arguments.
2113 if (rawAttr->getNumArgs() > 0) {
Chris Lattner2070d802008-02-20 23:25:22 +00002114 Diag(rawAttr->getLoc(), diag::err_attribute_wrong_number_arguments,
Anders Carlssonad148062008-02-16 00:29:18 +00002115 std::string("0"));
2116 return;
2117 }
2118
2119 if (TagDecl *TD = dyn_cast<TagDecl>(d))
2120 TD->addAttr(new PackedAttr);
2121 else if (FieldDecl *FD = dyn_cast<FieldDecl>(d)) {
2122 // If the alignment is less than or equal to 8 bits, the packed attribute
2123 // has no effect.
Chris Lattner98be4942008-03-05 18:54:05 +00002124 if (Context.getTypeAlign(FD->getType()) <= 8)
Chris Lattner2070d802008-02-20 23:25:22 +00002125 Diag(rawAttr->getLoc(),
Anders Carlssonad148062008-02-16 00:29:18 +00002126 diag::warn_attribute_ignored_for_field_of_type,
Chris Lattner2070d802008-02-20 23:25:22 +00002127 rawAttr->getName()->getName(), FD->getType().getAsString());
Anders Carlssonad148062008-02-16 00:29:18 +00002128 else
Anders Carlsson425a6092008-02-16 00:39:40 +00002129 FD->addAttr(new PackedAttr);
Anders Carlssonad148062008-02-16 00:29:18 +00002130 } else
Chris Lattner2070d802008-02-20 23:25:22 +00002131 Diag(rawAttr->getLoc(), diag::warn_attribute_ignored,
2132 rawAttr->getName()->getName());
Anders Carlssonad148062008-02-16 00:29:18 +00002133}
Nate Begemanc398f0b2008-02-21 19:30:49 +00002134
Ted Kremenekaecb3832008-02-27 20:43:06 +00002135void Sema::HandleNoReturnAttribute(Decl *d, AttributeList *rawAttr) {
2136 // check the attribute arguments.
2137 if (rawAttr->getNumArgs() != 0) {
2138 Diag(rawAttr->getLoc(), diag::err_attribute_wrong_number_arguments,
2139 std::string("0"));
2140 return;
2141 }
2142
Ted Kremenek3465fb32008-03-03 16:52:27 +00002143 FunctionDecl *Fn = dyn_cast<FunctionDecl>(d);
2144
2145 if (!Fn) {
2146 Diag(rawAttr->getLoc(), diag::warn_attribute_wrong_decl_type,
2147 "noreturn", "function");
2148 return;
2149 }
2150
Ted Kremenekaecb3832008-02-27 20:43:06 +00002151 d->addAttr(new NoReturnAttr());
2152}
2153
Chris Lattnerddee4232008-03-03 03:28:21 +00002154void Sema::HandleDeprecatedAttribute(Decl *d, AttributeList *rawAttr) {
2155 // check the attribute arguments.
2156 if (rawAttr->getNumArgs() != 0) {
2157 Diag(rawAttr->getLoc(), diag::err_attribute_wrong_number_arguments,
2158 std::string("0"));
2159 return;
2160 }
2161
2162 d->addAttr(new DeprecatedAttr());
2163}
2164
2165void Sema::HandleVisibilityAttribute(Decl *d, AttributeList *rawAttr) {
2166 // check the attribute arguments.
Chris Lattner7b937ae2008-03-04 18:08:48 +00002167 if (rawAttr->getNumArgs() != 1) {
Chris Lattnerddee4232008-03-03 03:28:21 +00002168 Diag(rawAttr->getLoc(), diag::err_attribute_wrong_number_arguments,
2169 std::string("1"));
2170 return;
2171 }
2172
Chris Lattner7b937ae2008-03-04 18:08:48 +00002173 Expr *Arg = static_cast<Expr*>(rawAttr->getArg(0));
2174 Arg = Arg->IgnoreParenCasts();
2175 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
2176
2177 if (Str == 0 || Str->isWide()) {
Chris Lattnerddee4232008-03-03 03:28:21 +00002178 Diag(rawAttr->getLoc(), diag::err_attribute_argument_n_not_string,
Chris Lattner7b937ae2008-03-04 18:08:48 +00002179 "visibility", std::string("1"));
Chris Lattnerddee4232008-03-03 03:28:21 +00002180 return;
2181 }
2182
Chris Lattner7b937ae2008-03-04 18:08:48 +00002183 const char *TypeStr = Str->getStrData();
2184 unsigned TypeLen = Str->getByteLength();
Chris Lattnerddee4232008-03-03 03:28:21 +00002185 llvm::GlobalValue::VisibilityTypes type;
2186
Chris Lattner7b937ae2008-03-04 18:08:48 +00002187 if (TypeLen == 7 && !memcmp(TypeStr, "default", 7))
Chris Lattnerddee4232008-03-03 03:28:21 +00002188 type = llvm::GlobalValue::DefaultVisibility;
Chris Lattner7b937ae2008-03-04 18:08:48 +00002189 else if (TypeLen == 6 && !memcmp(TypeStr, "hidden", 6))
Chris Lattnerddee4232008-03-03 03:28:21 +00002190 type = llvm::GlobalValue::HiddenVisibility;
Chris Lattner7b937ae2008-03-04 18:08:48 +00002191 else if (TypeLen == 8 && !memcmp(TypeStr, "internal", 8))
Chris Lattnerddee4232008-03-03 03:28:21 +00002192 type = llvm::GlobalValue::HiddenVisibility; // FIXME
Chris Lattner7b937ae2008-03-04 18:08:48 +00002193 else if (TypeLen == 9 && !memcmp(TypeStr, "protected", 9))
Chris Lattnerddee4232008-03-03 03:28:21 +00002194 type = llvm::GlobalValue::ProtectedVisibility;
2195 else {
2196 Diag(rawAttr->getLoc(), diag::warn_attribute_type_not_supported,
Chris Lattner7b937ae2008-03-04 18:08:48 +00002197 "visibility", TypeStr);
Chris Lattnerddee4232008-03-03 03:28:21 +00002198 return;
2199 }
2200
2201 d->addAttr(new VisibilityAttr(type));
2202}
2203
2204void Sema::HandleWeakAttribute(Decl *d, AttributeList *rawAttr) {
2205 // check the attribute arguments.
2206 if (rawAttr->getNumArgs() != 0) {
2207 Diag(rawAttr->getLoc(), diag::err_attribute_wrong_number_arguments,
2208 std::string("0"));
2209 return;
2210 }
2211
2212 d->addAttr(new WeakAttr());
2213}
2214
2215void Sema::HandleDLLImportAttribute(Decl *d, AttributeList *rawAttr) {
2216 // check the attribute arguments.
2217 if (rawAttr->getNumArgs() != 0) {
2218 Diag(rawAttr->getLoc(), diag::err_attribute_wrong_number_arguments,
2219 std::string("0"));
2220 return;
2221 }
2222
2223 d->addAttr(new DLLImportAttr());
2224}
2225
2226void Sema::HandleDLLExportAttribute(Decl *d, AttributeList *rawAttr) {
2227 // check the attribute arguments.
2228 if (rawAttr->getNumArgs() != 0) {
2229 Diag(rawAttr->getLoc(), diag::err_attribute_wrong_number_arguments,
2230 std::string("0"));
2231 return;
2232 }
2233
2234 d->addAttr(new DLLExportAttr());
2235}
2236
Nate Begeman440b4562008-03-07 20:04:22 +00002237void Sema::HandleStdCallAttribute(Decl *d, AttributeList *rawAttr) {
2238 // check the attribute arguments.
2239 if (rawAttr->getNumArgs() != 0) {
2240 Diag(rawAttr->getLoc(), diag::err_attribute_wrong_number_arguments,
2241 std::string("0"));
2242 return;
2243 }
2244
2245 d->addAttr(new StdCallAttr());
2246}
2247
2248void Sema::HandleFastCallAttribute(Decl *d, AttributeList *rawAttr) {
2249 // check the attribute arguments.
2250 if (rawAttr->getNumArgs() != 0) {
2251 Diag(rawAttr->getLoc(), diag::err_attribute_wrong_number_arguments,
2252 std::string("0"));
2253 return;
2254 }
2255
2256 d->addAttr(new FastCallAttr());
2257}
2258
Chris Lattnerddee4232008-03-03 03:28:21 +00002259void Sema::HandleNothrowAttribute(Decl *d, AttributeList *rawAttr) {
2260 // check the attribute arguments.
2261 if (rawAttr->getNumArgs() != 0) {
2262 Diag(rawAttr->getLoc(), diag::err_attribute_wrong_number_arguments,
2263 std::string("0"));
2264 return;
2265 }
2266
2267 d->addAttr(new NoThrowAttr());
2268}
2269
Nuno Lopes8c1a9a82008-03-25 23:01:48 +00002270static const FunctionTypeProto *getFunctionProto(Decl *d) {
2271 ValueDecl *decl = dyn_cast<ValueDecl>(d);
2272 if (!decl) return 0;
2273
2274 QualType Ty = decl->getType();
2275
2276 if (Ty->isFunctionPointerType()) {
2277 const PointerType *PtrTy = Ty->getAsPointerType();
2278 Ty = PtrTy->getPointeeType();
2279 }
2280
2281 if (const FunctionType *FnTy = Ty->getAsFunctionType())
2282 return dyn_cast<FunctionTypeProto>(FnTy->getAsFunctionType());
2283
2284 return 0;
2285}
2286
2287
Ted Kremenekaa8f9762008-03-07 18:43:49 +00002288/// Handle __attribute__((format(type,idx,firstarg))) attributes
2289/// based on http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chris Lattnerddee4232008-03-03 03:28:21 +00002290void Sema::HandleFormatAttribute(Decl *d, AttributeList *rawAttr) {
2291
2292 if (!rawAttr->getParameterName()) {
2293 Diag(rawAttr->getLoc(), diag::err_attribute_argument_n_not_string,
2294 "format", std::string("1"));
2295 return;
2296 }
2297
2298 if (rawAttr->getNumArgs() != 2) {
2299 Diag(rawAttr->getLoc(), diag::err_attribute_wrong_number_arguments,
2300 std::string("3"));
2301 return;
2302 }
2303
Nuno Lopes8c1a9a82008-03-25 23:01:48 +00002304 // GCC ignores the format attribute on K&R style function
2305 // prototypes, so we ignore it as well
2306 const FunctionTypeProto *proto = getFunctionProto(d);
2307
2308 if (!proto) {
Chris Lattnerddee4232008-03-03 03:28:21 +00002309 Diag(rawAttr->getLoc(), diag::warn_attribute_wrong_decl_type,
2310 "format", "function");
2311 return;
2312 }
2313
2314 // FIXME: in C++ the implicit 'this' function parameter also counts.
Ted Kremenekaa8f9762008-03-07 18:43:49 +00002315 // this is needed in order to be compatible with GCC
Chris Lattnerddee4232008-03-03 03:28:21 +00002316 // the index must start in 1 and the limit is numargs+1
Nuno Lopes8c1a9a82008-03-25 23:01:48 +00002317 unsigned NumArgs = proto->getNumArgs();
Ted Kremenekaa8f9762008-03-07 18:43:49 +00002318 unsigned FirstIdx = 1;
Chris Lattnerddee4232008-03-03 03:28:21 +00002319
2320 const char *Format = rawAttr->getParameterName()->getName();
2321 unsigned FormatLen = rawAttr->getParameterName()->getLength();
2322
2323 // Normalize the argument, __foo__ becomes foo.
2324 if (FormatLen > 4 && Format[0] == '_' && Format[1] == '_' &&
2325 Format[FormatLen - 2] == '_' && Format[FormatLen - 1] == '_') {
2326 Format += 2;
2327 FormatLen -= 4;
2328 }
2329
2330 if (!((FormatLen == 5 && !memcmp(Format, "scanf", 5))
2331 || (FormatLen == 6 && !memcmp(Format, "printf", 6))
2332 || (FormatLen == 7 && !memcmp(Format, "strfmon", 7))
2333 || (FormatLen == 8 && !memcmp(Format, "strftime", 8)))) {
2334 Diag(rawAttr->getLoc(), diag::warn_attribute_type_not_supported,
2335 "format", rawAttr->getParameterName()->getName());
2336 return;
2337 }
2338
Ted Kremenekaa8f9762008-03-07 18:43:49 +00002339 // checks for the 2nd argument
Chris Lattnerddee4232008-03-03 03:28:21 +00002340 Expr *IdxExpr = static_cast<Expr *>(rawAttr->getArg(0));
Ted Kremenekaa8f9762008-03-07 18:43:49 +00002341 llvm::APSInt Idx(Context.getTypeSize(IdxExpr->getType()));
Chris Lattnerddee4232008-03-03 03:28:21 +00002342 if (!IdxExpr->isIntegerConstantExpr(Idx, Context)) {
2343 Diag(rawAttr->getLoc(), diag::err_attribute_argument_n_not_int,
2344 "format", std::string("2"), IdxExpr->getSourceRange());
2345 return;
2346 }
2347
Ted Kremenekaa8f9762008-03-07 18:43:49 +00002348 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
Chris Lattnerddee4232008-03-03 03:28:21 +00002349 Diag(rawAttr->getLoc(), diag::err_attribute_argument_out_of_bounds,
2350 "format", std::string("2"), IdxExpr->getSourceRange());
2351 return;
2352 }
2353
Ted Kremenekaa8f9762008-03-07 18:43:49 +00002354 // make sure the format string is really a string
2355 QualType Ty = proto->getArgType(Idx.getZExtValue()-1);
2356 if (!Ty->isPointerType() ||
2357 !Ty->getAsPointerType()->getPointeeType()->isCharType()) {
2358 Diag(rawAttr->getLoc(), diag::err_format_attribute_not_string,
2359 IdxExpr->getSourceRange());
2360 return;
2361 }
2362
2363
2364 // check the 3rd argument
Chris Lattnerddee4232008-03-03 03:28:21 +00002365 Expr *FirstArgExpr = static_cast<Expr *>(rawAttr->getArg(1));
Ted Kremenekaa8f9762008-03-07 18:43:49 +00002366 llvm::APSInt FirstArg(Context.getTypeSize(FirstArgExpr->getType()));
Chris Lattnerddee4232008-03-03 03:28:21 +00002367 if (!FirstArgExpr->isIntegerConstantExpr(FirstArg, Context)) {
2368 Diag(rawAttr->getLoc(), diag::err_attribute_argument_n_not_int,
2369 "format", std::string("3"), FirstArgExpr->getSourceRange());
2370 return;
2371 }
2372
Ted Kremenekaa8f9762008-03-07 18:43:49 +00002373 // check if the function is variadic if the 3rd argument non-zero
2374 if (FirstArg != 0) {
2375 if (proto->isVariadic()) {
2376 ++NumArgs; // +1 for ...
2377 } else {
2378 Diag(d->getLocation(), diag::err_format_attribute_requires_variadic);
2379 return;
2380 }
2381 }
2382
2383 // strftime requires FirstArg to be 0 because it doesn't read from any variable
2384 // the input is just the current time + the format string
Chris Lattnerddee4232008-03-03 03:28:21 +00002385 if (FormatLen == 8 && !memcmp(Format, "strftime", 8)) {
Ted Kremenekaa8f9762008-03-07 18:43:49 +00002386 if (FirstArg != 0) {
Chris Lattnerddee4232008-03-03 03:28:21 +00002387 Diag(rawAttr->getLoc(), diag::err_format_strftime_third_parameter,
2388 FirstArgExpr->getSourceRange());
2389 return;
2390 }
Ted Kremenekaa8f9762008-03-07 18:43:49 +00002391 // if 0 it disables parameter checking (to use with e.g. va_list)
2392 } else if (FirstArg != 0 && FirstArg != NumArgs) {
Chris Lattnerddee4232008-03-03 03:28:21 +00002393 Diag(rawAttr->getLoc(), diag::err_attribute_argument_out_of_bounds,
2394 "format", std::string("3"), FirstArgExpr->getSourceRange());
2395 return;
2396 }
2397
2398 d->addAttr(new FormatAttr(std::string(Format, FormatLen),
2399 Idx.getZExtValue(), FirstArg.getZExtValue()));
2400}
2401
Nate Begemanc398f0b2008-02-21 19:30:49 +00002402void Sema::HandleAnnotateAttribute(Decl *d, AttributeList *rawAttr) {
2403 // check the attribute arguments.
2404 if (rawAttr->getNumArgs() != 1) {
2405 Diag(rawAttr->getLoc(), diag::err_attribute_wrong_number_arguments,
2406 std::string("1"));
2407 return;
2408 }
2409 Expr *argExpr = static_cast<Expr *>(rawAttr->getArg(0));
2410 StringLiteral *SE = dyn_cast<StringLiteral>(argExpr);
Anders Carlssonad148062008-02-16 00:29:18 +00002411
Nate Begemanc398f0b2008-02-21 19:30:49 +00002412 // Make sure that there is a string literal as the annotation's single
2413 // argument.
2414 if (!SE) {
2415 Diag(rawAttr->getLoc(), diag::err_attribute_annotate_no_string);
2416 return;
2417 }
2418 d->addAttr(new AnnotateAttr(std::string(SE->getStrData(),
2419 SE->getByteLength())));
2420}
2421
Anders Carlsson78aaae92007-12-19 07:19:40 +00002422void Sema::HandleAlignedAttribute(Decl *d, AttributeList *rawAttr)
2423{
2424 // check the attribute arguments.
Eli Friedman4ca08672008-01-30 17:38:42 +00002425 if (rawAttr->getNumArgs() > 1) {
Chris Lattner2070d802008-02-20 23:25:22 +00002426 Diag(rawAttr->getLoc(), diag::err_attribute_wrong_number_arguments,
Anders Carlsson78aaae92007-12-19 07:19:40 +00002427 std::string("1"));
2428 return;
2429 }
Eli Friedman4ca08672008-01-30 17:38:42 +00002430
Anders Carlsson042c4e72008-02-16 19:51:27 +00002431 unsigned Align = 0;
2432
2433 if (rawAttr->getNumArgs() == 0) {
2434 // FIXME: This should be the target specific maximum alignment.
2435 // (For now we just use 128 bits which is the maximum on X86.
2436 Align = 128;
Eli Friedman4ca08672008-01-30 17:38:42 +00002437 return;
Anders Carlsson042c4e72008-02-16 19:51:27 +00002438 } else {
2439 Expr *alignmentExpr = static_cast<Expr *>(rawAttr->getArg(0));
2440 llvm::APSInt alignment(32);
2441 if (!alignmentExpr->isIntegerConstantExpr(alignment, Context)) {
Chris Lattner2070d802008-02-20 23:25:22 +00002442 Diag(rawAttr->getLoc(), diag::err_attribute_argument_not_int,
Anders Carlsson042c4e72008-02-16 19:51:27 +00002443 "aligned", alignmentExpr->getSourceRange());
2444 return;
2445 }
2446
2447 Align = alignment.getZExtValue() * 8;
2448 }
Eli Friedman4ca08672008-01-30 17:38:42 +00002449
Anders Carlsson042c4e72008-02-16 19:51:27 +00002450 d->addAttr(new AlignedAttr(Align));
Anders Carlsson78aaae92007-12-19 07:19:40 +00002451}