blob: 021673bf071276c014ba006425bd5c9f567a6f61 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- SemaDecl.cpp - Semantic Analysis for Declarations ----------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements semantic analysis for declarations.
11//
12//===----------------------------------------------------------------------===//
13
14#include "Sema.h"
Anders Carlssonc44eec62008-07-03 04:20:39 +000015#include "clang/AST/APValue.h"
Chris Lattnere1e79852008-02-06 00:51:33 +000016#include "clang/AST/ASTConsumer.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000017#include "clang/AST/ASTContext.h"
Daniel Dunbarc4a1dea2008-08-11 05:35:13 +000018#include "clang/AST/DeclObjC.h"
Chris Lattner6b6b5372008-06-26 18:38:35 +000019#include "clang/AST/ExprCXX.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000020#include "clang/Parse/DeclSpec.h"
Daniel Dunbare4858a62008-08-11 03:45:03 +000021#include "clang/Basic/Diagnostic.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000022#include "clang/Basic/TargetInfo.h"
Steve Naroff4c49a6c2008-01-30 23:46:05 +000023#include "clang/Basic/SourceManager.h"
24// FIXME: layering (ideally, Sema shouldn't be dependent on Lex API's)
Chris Lattnere1e79852008-02-06 00:51:33 +000025#include "clang/Lex/Preprocessor.h"
Steve Naroff4c49a6c2008-01-30 23:46:05 +000026#include "clang/Lex/HeaderSearch.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000027#include "llvm/ADT/SmallSet.h"
28using namespace clang;
29
Argyrios Kyrtzidis39caa082008-08-01 10:35:27 +000030Sema::TypeTy *Sema::isTypeName(const IdentifierInfo &II, Scope *S) {
Steve Naroffb327ce02008-04-02 14:35:35 +000031 Decl *IIDecl = LookupDecl(&II, Decl::IDNS_Ordinary, S, false);
32
Douglas Gregor2ce52f32008-04-13 21:07:44 +000033 if (IIDecl && (isa<TypedefDecl>(IIDecl) ||
34 isa<ObjCInterfaceDecl>(IIDecl) ||
35 isa<TagDecl>(IIDecl)))
Fariborz Jahanianbece4ac2007-10-12 16:34:10 +000036 return IIDecl;
Steve Naroff3536b442007-09-06 21:24:23 +000037 return 0;
Reid Spencer5f016e22007-07-11 17:01:13 +000038}
39
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +000040DeclContext *Sema::getDCParent(DeclContext *DC) {
41 // If CurContext is a ObjC method, getParent() will return NULL.
42 if (isa<ObjCMethodDecl>(DC))
43 return Context.getTranslationUnitDecl();
44
45 // A C++ inline method is parsed *after* the topmost class it was declared in
46 // is fully parsed (it's "complete").
47 // The parsing of a C++ inline method happens at the declaration context of
48 // the topmost (non-nested) class it is declared in.
49 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(DC)) {
50 assert(isa<CXXRecordDecl>(MD->getParent()) && "C++ method not in Record.");
51 DC = MD->getParent();
52 while (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(DC->getParent()))
53 DC = RD;
54
55 // Return the declaration context of the topmost class the inline method is
56 // declared in.
57 return DC;
58 }
59
60 return DC->getParent();
61}
62
Chris Lattner9fdf9c62008-04-22 18:39:57 +000063void Sema::PushDeclContext(DeclContext *DC) {
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +000064 assert(getDCParent(DC) == CurContext &&
65 "The next DeclContext should be directly contained in the current one.");
Chris Lattner9fdf9c62008-04-22 18:39:57 +000066 CurContext = DC;
Chris Lattner0ed844b2008-04-04 06:12:32 +000067}
68
Chris Lattnerb048c982008-04-06 04:47:34 +000069void Sema::PopDeclContext() {
70 assert(CurContext && "DeclContext imbalance!");
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +000071 CurContext = getDCParent(CurContext);
Chris Lattner0ed844b2008-04-04 06:12:32 +000072}
73
Argyrios Kyrtzidis87f3ff02008-04-12 00:47:19 +000074/// Add this decl to the scope shadowed decl chains.
75void Sema::PushOnScopeChains(NamedDecl *D, Scope *S) {
Argyrios Kyrtzidis87f3ff02008-04-12 00:47:19 +000076 S->AddDecl(D);
Argyrios Kyrtzidis00bc6452008-05-09 23:39:43 +000077
78 // C++ [basic.scope]p4:
79 // -- exactly one declaration shall declare a class name or
80 // enumeration name that is not a typedef name and the other
81 // declarations shall all refer to the same object or
82 // enumerator, or all refer to functions and function templates;
83 // in this case the class name or enumeration name is hidden.
84 if (TagDecl *TD = dyn_cast<TagDecl>(D)) {
85 // We are pushing the name of a tag (enum or class).
Argyrios Kyrtzidis90eb5392008-07-17 17:49:50 +000086 IdentifierResolver::iterator
87 I = IdResolver.begin(TD->getIdentifier(),
88 TD->getDeclContext(), false/*LookInParentCtx*/);
89 if (I != IdResolver.end() &&
90 IdResolver.isDeclInScope(*I, TD->getDeclContext(), S)) {
Argyrios Kyrtzidis00bc6452008-05-09 23:39:43 +000091 // There is already a declaration with the same name in the same
92 // scope. It must be found before we find the new declaration,
93 // so swap the order on the shadowed declaration chain.
94
Argyrios Kyrtzidis90eb5392008-07-17 17:49:50 +000095 IdResolver.AddShadowedDecl(TD, *I);
Argyrios Kyrtzidis00bc6452008-05-09 23:39:43 +000096 return;
97 }
98 }
Argyrios Kyrtzidis00bc6452008-05-09 23:39:43 +000099 IdResolver.AddDecl(D);
Argyrios Kyrtzidis87f3ff02008-04-12 00:47:19 +0000100}
101
Steve Naroffb216c882007-10-09 22:01:59 +0000102void Sema::ActOnPopScope(SourceLocation Loc, Scope *S) {
Chris Lattner31e05722007-08-26 06:24:45 +0000103 if (S->decl_empty()) return;
104 assert((S->getFlags() & Scope::DeclScope) &&"Scope shouldn't contain decls!");
Argyrios Kyrtzidis00bc6452008-05-09 23:39:43 +0000105
Reid Spencer5f016e22007-07-11 17:01:13 +0000106 for (Scope::decl_iterator I = S->decl_begin(), E = S->decl_end();
107 I != E; ++I) {
Steve Naroffc752d042007-09-13 18:10:37 +0000108 Decl *TmpD = static_cast<Decl*>(*I);
109 assert(TmpD && "This decl didn't get pushed??");
Argyrios Kyrtzidis76435362008-06-10 01:32:09 +0000110
111 if (isa<CXXFieldDecl>(TmpD)) continue;
112
113 assert(isa<ScopedDecl>(TmpD) && "Decl isn't ScopedDecl?");
114 ScopedDecl *D = cast<ScopedDecl>(TmpD);
Steve Naroffc752d042007-09-13 18:10:37 +0000115
Reid Spencer5f016e22007-07-11 17:01:13 +0000116 IdentifierInfo *II = D->getIdentifier();
117 if (!II) continue;
118
Argyrios Kyrtzidis76435362008-06-10 01:32:09 +0000119 // We only want to remove the decls from the identifier decl chains for local
120 // scopes, when inside a function/method.
121 if (S->getFnParent() != 0)
122 IdResolver.RemoveDecl(D);
Chris Lattner7f925cc2008-04-11 07:00:53 +0000123
Argyrios Kyrtzidis76435362008-06-10 01:32:09 +0000124 // Chain this decl to the containing DeclContext.
125 D->setNext(CurContext->getDeclChain());
126 CurContext->setDeclChain(D);
Reid Spencer5f016e22007-07-11 17:01:13 +0000127 }
128}
129
Steve Naroffe8043c32008-04-01 23:04:06 +0000130/// getObjCInterfaceDecl - Look up a for a class declaration in the scope.
131/// return 0 if one not found.
Steve Naroffe8043c32008-04-01 23:04:06 +0000132ObjCInterfaceDecl *Sema::getObjCInterfaceDecl(IdentifierInfo *Id) {
Steve Naroff31102512008-04-02 18:30:49 +0000133 // The third "scope" argument is 0 since we aren't enabling lazy built-in
134 // creation from this context.
135 Decl *IDecl = LookupDecl(Id, Decl::IDNS_Ordinary, 0, false);
Fariborz Jahanian4cabdfc2007-10-12 19:38:20 +0000136
Steve Naroffb327ce02008-04-02 14:35:35 +0000137 return dyn_cast_or_null<ObjCInterfaceDecl>(IDecl);
Fariborz Jahanian4cabdfc2007-10-12 19:38:20 +0000138}
139
Steve Naroffe8043c32008-04-01 23:04:06 +0000140/// LookupDecl - Look up the inner-most declaration in the specified
Reid Spencer5f016e22007-07-11 17:01:13 +0000141/// namespace.
Steve Naroffb327ce02008-04-02 14:35:35 +0000142Decl *Sema::LookupDecl(const IdentifierInfo *II, unsigned NSI,
143 Scope *S, bool enableLazyBuiltinCreation) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000144 if (II == 0) return 0;
Douglas Gregor2ce52f32008-04-13 21:07:44 +0000145 unsigned NS = NSI;
146 if (getLangOptions().CPlusPlus && (NS & Decl::IDNS_Ordinary))
147 NS |= Decl::IDNS_Tag;
Chris Lattner7f925cc2008-04-11 07:00:53 +0000148
Reid Spencer5f016e22007-07-11 17:01:13 +0000149 // Scan up the scope chain looking for a decl that matches this identifier
150 // that is in the appropriate namespace. This search should not take long, as
151 // shadowing of names is uncommon, and deep shadowing is extremely uncommon.
Argyrios Kyrtzidis00bc6452008-05-09 23:39:43 +0000152 for (IdentifierResolver::iterator
Argyrios Kyrtzidis90eb5392008-07-17 17:49:50 +0000153 I = IdResolver.begin(II, CurContext), E = IdResolver.end(); I != E; ++I)
Argyrios Kyrtzidis00bc6452008-05-09 23:39:43 +0000154 if ((*I)->getIdentifierNamespace() & NS)
155 return *I;
Chris Lattner7f925cc2008-04-11 07:00:53 +0000156
Reid Spencer5f016e22007-07-11 17:01:13 +0000157 // If we didn't find a use of this identifier, and if the identifier
158 // corresponds to a compiler builtin, create the decl object for the builtin
159 // now, injecting it into translation unit scope, and return it.
Douglas Gregor2ce52f32008-04-13 21:07:44 +0000160 if (NS & Decl::IDNS_Ordinary) {
Steve Naroffb327ce02008-04-02 14:35:35 +0000161 if (enableLazyBuiltinCreation) {
162 // If this is a builtin on this (or all) targets, create the decl.
163 if (unsigned BuiltinID = II->getBuiltinID())
164 return LazilyCreateBuiltin((IdentifierInfo *)II, BuiltinID, S);
165 }
Steve Naroffe8043c32008-04-01 23:04:06 +0000166 if (getLangOptions().ObjC1) {
167 // @interface and @compatibility_alias introduce typedef-like names.
168 // Unlike typedef's, they can only be introduced at file-scope (and are
Steve Naroffc822ff42008-04-02 00:39:51 +0000169 // therefore not scoped decls). They can, however, be shadowed by
Steve Naroffe8043c32008-04-01 23:04:06 +0000170 // other names in IDNS_Ordinary.
Steve Naroff31102512008-04-02 18:30:49 +0000171 ObjCInterfaceDeclsTy::iterator IDI = ObjCInterfaceDecls.find(II);
172 if (IDI != ObjCInterfaceDecls.end())
173 return IDI->second;
Steve Naroffe8043c32008-04-01 23:04:06 +0000174 ObjCAliasTy::iterator I = ObjCAliasDecls.find(II);
175 if (I != ObjCAliasDecls.end())
176 return I->second->getClassInterface();
177 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000178 }
179 return 0;
180}
181
Chris Lattner95e2c712008-05-05 22:18:14 +0000182void Sema::InitBuiltinVaListType() {
Anders Carlsson7c50aca2007-10-15 20:28:48 +0000183 if (!Context.getBuiltinVaListType().isNull())
184 return;
185
186 IdentifierInfo *VaIdent = &Context.Idents.get("__builtin_va_list");
Steve Naroffb327ce02008-04-02 14:35:35 +0000187 Decl *VaDecl = LookupDecl(VaIdent, Decl::IDNS_Ordinary, TUScope);
Steve Naroff733002f2007-10-18 22:17:45 +0000188 TypedefDecl *VaTypedef = cast<TypedefDecl>(VaDecl);
Anders Carlsson7c50aca2007-10-15 20:28:48 +0000189 Context.setBuiltinVaListType(Context.getTypedefType(VaTypedef));
190}
191
Reid Spencer5f016e22007-07-11 17:01:13 +0000192/// LazilyCreateBuiltin - The specified Builtin-ID was first used at file scope.
193/// lazily create a decl for it.
Chris Lattner22b73ba2007-10-10 23:42:28 +0000194ScopedDecl *Sema::LazilyCreateBuiltin(IdentifierInfo *II, unsigned bid,
195 Scope *S) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000196 Builtin::ID BID = (Builtin::ID)bid;
197
Anders Carlsson7c50aca2007-10-15 20:28:48 +0000198 if (BID == Builtin::BI__builtin_va_start ||
Chris Lattner95e2c712008-05-05 22:18:14 +0000199 BID == Builtin::BI__builtin_va_copy ||
Chris Lattnerf8396b62008-07-09 17:26:36 +0000200 BID == Builtin::BI__builtin_va_end ||
201 BID == Builtin::BI__builtin_stdarg_start)
Anders Carlsson7c50aca2007-10-15 20:28:48 +0000202 InitBuiltinVaListType();
203
Anders Carlssonb2cf3572007-10-11 01:00:40 +0000204 QualType R = Context.BuiltinInfo.GetBuiltinType(BID, Context);
Argyrios Kyrtzidisff898cd2008-04-17 14:47:13 +0000205 FunctionDecl *New = FunctionDecl::Create(Context,
206 Context.getTranslationUnitDecl(),
Chris Lattner0ed844b2008-04-04 06:12:32 +0000207 SourceLocation(), II, R,
Chris Lattnera98e58d2008-03-15 21:24:04 +0000208 FunctionDecl::Extern, false, 0);
Reid Spencer5f016e22007-07-11 17:01:13 +0000209
Chris Lattner95e2c712008-05-05 22:18:14 +0000210 // Create Decl objects for each parameter, adding them to the
211 // FunctionDecl.
212 if (FunctionTypeProto *FT = dyn_cast<FunctionTypeProto>(R)) {
213 llvm::SmallVector<ParmVarDecl*, 16> Params;
214 for (unsigned i = 0, e = FT->getNumArgs(); i != e; ++i)
215 Params.push_back(ParmVarDecl::Create(Context, New, SourceLocation(), 0,
216 FT->getArgType(i), VarDecl::None, 0,
217 0));
218 New->setParams(&Params[0], Params.size());
219 }
220
221
222
Chris Lattner7f925cc2008-04-11 07:00:53 +0000223 // TUScope is the translation-unit scope to insert this function into.
Argyrios Kyrtzidis00bc6452008-05-09 23:39:43 +0000224 PushOnScopeChains(New, TUScope);
Reid Spencer5f016e22007-07-11 17:01:13 +0000225 return New;
226}
227
228/// MergeTypeDefDecl - We just parsed a typedef 'New' which has the same name
229/// and scope as a previous declaration 'Old'. Figure out how to resolve this
230/// situation, merging decls or emitting diagnostics as appropriate.
231///
Steve Naroffe8043c32008-04-01 23:04:06 +0000232TypedefDecl *Sema::MergeTypeDefDecl(TypedefDecl *New, Decl *OldD) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000233 // Verify the old decl was also a typedef.
234 TypedefDecl *Old = dyn_cast<TypedefDecl>(OldD);
235 if (!Old) {
236 Diag(New->getLocation(), diag::err_redefinition_different_kind,
237 New->getName());
238 Diag(OldD->getLocation(), diag::err_previous_definition);
239 return New;
240 }
241
Chris Lattner99cb9972008-07-25 18:44:27 +0000242 // If the typedef types are not identical, reject them in all languages and
243 // with any extensions enabled.
244 if (Old->getUnderlyingType() != New->getUnderlyingType() &&
245 Context.getCanonicalType(Old->getUnderlyingType()) !=
246 Context.getCanonicalType(New->getUnderlyingType())) {
247 Diag(New->getLocation(), diag::err_redefinition_different_typedef,
248 New->getUnderlyingType().getAsString(),
249 Old->getUnderlyingType().getAsString());
250 Diag(Old->getLocation(), diag::err_previous_definition);
251 return Old;
252 }
253
Steve Naroff8ee529b2007-10-31 18:42:27 +0000254 // Allow multiple definitions for ObjC built-in typedefs.
255 // FIXME: Verify the underlying types are equivalent!
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000256 if (getLangOptions().ObjC1 && isBuiltinObjCType(New))
Steve Naroff8ee529b2007-10-31 18:42:27 +0000257 return Old;
Eli Friedman54ecfce2008-06-11 06:20:39 +0000258
259 if (getLangOptions().Microsoft) return New;
260
Steve Naroff4c49a6c2008-01-30 23:46:05 +0000261 // Redeclaration of a type is a constraint violation (6.7.2.3p1).
262 // Apparently GCC, Intel, and Sun all silently ignore the redeclaration if
263 // *either* declaration is in a system header. The code below implements
264 // this adhoc compatibility rule. FIXME: The following code will not
265 // work properly when compiling ".i" files (containing preprocessed output).
266 SourceManager &SrcMgr = Context.getSourceManager();
Steve Naroff4c49a6c2008-01-30 23:46:05 +0000267 HeaderSearch &HdrInfo = PP.getHeaderSearchInfo();
Eli Friedman54ecfce2008-06-11 06:20:39 +0000268 const FileEntry *OldDeclFile = SrcMgr.getFileEntryForLoc(Old->getLocation());
269 if (OldDeclFile) {
270 DirectoryLookup::DirType OldDirType = HdrInfo.getFileDirFlavor(OldDeclFile);
271 // Allow reclarations in both SystemHeaderDir and ExternCSystemHeaderDir.
272 if (OldDirType != DirectoryLookup::NormalHeaderDir)
273 return New;
274 }
275 const FileEntry *NewDeclFile = SrcMgr.getFileEntryForLoc(New->getLocation());
276 if (NewDeclFile) {
277 DirectoryLookup::DirType NewDirType = HdrInfo.getFileDirFlavor(NewDeclFile);
278 // Allow reclarations in both SystemHeaderDir and ExternCSystemHeaderDir.
279 if (NewDirType != DirectoryLookup::NormalHeaderDir)
280 return New;
281 }
282
Ted Kremenek2d05c082008-05-23 21:28:18 +0000283 Diag(New->getLocation(), diag::err_redefinition, New->getName());
284 Diag(Old->getLocation(), diag::err_previous_definition);
Reid Spencer5f016e22007-07-11 17:01:13 +0000285 return New;
286}
287
Chris Lattner6b6b5372008-06-26 18:38:35 +0000288/// DeclhasAttr - returns true if decl Declaration already has the target
289/// attribute.
Chris Lattnerddee4232008-03-03 03:28:21 +0000290static bool DeclHasAttr(const Decl *decl, const Attr *target) {
291 for (const Attr *attr = decl->getAttrs(); attr; attr = attr->getNext())
292 if (attr->getKind() == target->getKind())
293 return true;
294
295 return false;
296}
297
298/// MergeAttributes - append attributes from the Old decl to the New one.
299static void MergeAttributes(Decl *New, Decl *Old) {
300 Attr *attr = const_cast<Attr*>(Old->getAttrs()), *tmp;
301
Chris Lattnerddee4232008-03-03 03:28:21 +0000302 while (attr) {
303 tmp = attr;
304 attr = attr->getNext();
305
306 if (!DeclHasAttr(New, tmp)) {
307 New->addAttr(tmp);
308 } else {
309 tmp->setNext(0);
310 delete(tmp);
311 }
312 }
Nuno Lopes9141bee2008-06-01 22:53:53 +0000313
314 Old->invalidateAttrs();
Chris Lattnerddee4232008-03-03 03:28:21 +0000315}
316
Chris Lattner04421082008-04-08 04:40:51 +0000317/// MergeFunctionDecl - We just parsed a function 'New' from
318/// declarator D which has the same name and scope as a previous
319/// declaration 'Old'. Figure out how to resolve this situation,
320/// merging decls or emitting diagnostics as appropriate.
Douglas Gregorf0097952008-04-21 02:02:58 +0000321/// Redeclaration will be set true if thisNew is a redeclaration OldD.
322FunctionDecl *
323Sema::MergeFunctionDecl(FunctionDecl *New, Decl *OldD, bool &Redeclaration) {
324 Redeclaration = false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000325 // Verify the old decl was also a function.
326 FunctionDecl *Old = dyn_cast<FunctionDecl>(OldD);
327 if (!Old) {
328 Diag(New->getLocation(), diag::err_redefinition_different_kind,
329 New->getName());
330 Diag(OldD->getLocation(), diag::err_previous_definition);
331 return New;
332 }
Chris Lattner04421082008-04-08 04:40:51 +0000333
Chris Lattner8bcfc5b2008-04-06 23:10:54 +0000334 QualType OldQType = Context.getCanonicalType(Old->getType());
335 QualType NewQType = Context.getCanonicalType(New->getType());
Chris Lattner55196442007-11-20 19:04:50 +0000336
Chris Lattner04421082008-04-08 04:40:51 +0000337 // C++ [dcl.fct]p3:
338 // All declarations for a function shall agree exactly in both the
339 // return type and the parameter-type-list.
Douglas Gregorf0097952008-04-21 02:02:58 +0000340 if (getLangOptions().CPlusPlus && OldQType == NewQType) {
341 MergeAttributes(New, Old);
342 Redeclaration = true;
Chris Lattner04421082008-04-08 04:40:51 +0000343 return MergeCXXFunctionDecl(New, Old);
Douglas Gregorf0097952008-04-21 02:02:58 +0000344 }
Chris Lattner04421082008-04-08 04:40:51 +0000345
346 // C: Function types need to be compatible, not identical. This handles
Steve Naroffadbbd0c2008-01-14 20:51:29 +0000347 // duplicate function decls like "void f(int); void f(enum X);" properly.
Chris Lattner04421082008-04-08 04:40:51 +0000348 if (!getLangOptions().CPlusPlus &&
Eli Friedman3d815e72008-08-22 00:56:42 +0000349 Context.typesAreCompatible(OldQType, NewQType)) {
Douglas Gregorf0097952008-04-21 02:02:58 +0000350 MergeAttributes(New, Old);
351 Redeclaration = true;
Steve Naroffadbbd0c2008-01-14 20:51:29 +0000352 return New;
Chris Lattner04421082008-04-08 04:40:51 +0000353 }
Chris Lattnere3995fe2007-11-06 06:07:26 +0000354
Steve Naroff837618c2008-01-16 15:01:34 +0000355 // A function that has already been declared has been redeclared or defined
356 // with a different type- show appropriate diagnostic
Steve Naroffe2ef8152008-04-04 14:32:09 +0000357 diag::kind PrevDiag;
Douglas Gregorf0097952008-04-21 02:02:58 +0000358 if (Old->isThisDeclarationADefinition())
Steve Naroffe2ef8152008-04-04 14:32:09 +0000359 PrevDiag = diag::err_previous_definition;
360 else if (Old->isImplicit())
361 PrevDiag = diag::err_previous_implicit_declaration;
Chris Lattner04421082008-04-08 04:40:51 +0000362 else
Steve Naroffe2ef8152008-04-04 14:32:09 +0000363 PrevDiag = diag::err_previous_declaration;
Steve Naroff837618c2008-01-16 15:01:34 +0000364
Reid Spencer5f016e22007-07-11 17:01:13 +0000365 // TODO: CHECK FOR CONFLICTS, multiple decls with same name in one scope.
366 // TODO: This is totally simplistic. It should handle merging functions
367 // together etc, merging extern int X; int X; ...
Steve Naroff837618c2008-01-16 15:01:34 +0000368 Diag(New->getLocation(), diag::err_conflicting_types, New->getName());
369 Diag(Old->getLocation(), PrevDiag);
Reid Spencer5f016e22007-07-11 17:01:13 +0000370 return New;
371}
372
Steve Naroffff9eb1f2008-08-08 17:50:35 +0000373/// Predicate for C "tentative" external object definitions (C99 6.9.2).
Steve Naroffd4d46cd2008-08-10 15:28:06 +0000374static bool isTentativeDefinition(VarDecl *VD) {
Steve Naroffff9eb1f2008-08-08 17:50:35 +0000375 if (VD->isFileVarDecl())
376 return (!VD->getInit() &&
377 (VD->getStorageClass() == VarDecl::None ||
378 VD->getStorageClass() == VarDecl::Static));
379 return false;
380}
381
382/// CheckForFileScopedRedefinitions - Make sure we forgo redefinition errors
383/// when dealing with C "tentative" external object definitions (C99 6.9.2).
384void Sema::CheckForFileScopedRedefinitions(Scope *S, VarDecl *VD) {
385 bool VDIsTentative = isTentativeDefinition(VD);
Steve Narofff855e6f2008-08-10 15:20:13 +0000386 bool VDIsIncompleteArray = VD->getType()->isIncompleteArrayType();
Steve Naroffff9eb1f2008-08-08 17:50:35 +0000387
388 for (IdentifierResolver::iterator
389 I = IdResolver.begin(VD->getIdentifier(),
390 VD->getDeclContext(), false/*LookInParentCtx*/),
391 E = IdResolver.end(); I != E; ++I) {
392 if (*I != VD && IdResolver.isDeclInScope(*I, VD->getDeclContext(), S)) {
393 VarDecl *OldDecl = dyn_cast<VarDecl>(*I);
394
Steve Narofff855e6f2008-08-10 15:20:13 +0000395 // Handle the following case:
396 // int a[10];
397 // int a[]; - the code below makes sure we set the correct type.
398 // int a[11]; - this is an error, size isn't 10.
399 if (OldDecl && VDIsTentative && VDIsIncompleteArray &&
400 OldDecl->getType()->isConstantArrayType())
401 VD->setType(OldDecl->getType());
402
Steve Naroffff9eb1f2008-08-08 17:50:35 +0000403 // Check for "tentative" definitions. We can't accomplish this in
404 // MergeVarDecl since the initializer hasn't been attached.
405 if (!OldDecl || isTentativeDefinition(OldDecl) || VDIsTentative)
406 continue;
407
408 // Handle __private_extern__ just like extern.
409 if (OldDecl->getStorageClass() != VarDecl::Extern &&
410 OldDecl->getStorageClass() != VarDecl::PrivateExtern &&
411 VD->getStorageClass() != VarDecl::Extern &&
412 VD->getStorageClass() != VarDecl::PrivateExtern) {
413 Diag(VD->getLocation(), diag::err_redefinition, VD->getName());
414 Diag(OldDecl->getLocation(), diag::err_previous_definition);
415 }
416 }
417 }
418}
419
Reid Spencer5f016e22007-07-11 17:01:13 +0000420/// MergeVarDecl - We just parsed a variable 'New' which has the same name
421/// and scope as a previous declaration 'Old'. Figure out how to resolve this
422/// situation, merging decls or emitting diagnostics as appropriate.
423///
Steve Naroffff9eb1f2008-08-08 17:50:35 +0000424/// Tentative definition rules (C99 6.9.2p2) are checked by
425/// FinalizeDeclaratorGroup. Unfortunately, we can't analyze tentative
426/// definitions here, since the initializer hasn't been attached.
Reid Spencer5f016e22007-07-11 17:01:13 +0000427///
Steve Naroffe8043c32008-04-01 23:04:06 +0000428VarDecl *Sema::MergeVarDecl(VarDecl *New, Decl *OldD) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000429 // Verify the old decl was also a variable.
430 VarDecl *Old = dyn_cast<VarDecl>(OldD);
431 if (!Old) {
432 Diag(New->getLocation(), diag::err_redefinition_different_kind,
433 New->getName());
434 Diag(OldD->getLocation(), diag::err_previous_definition);
435 return New;
436 }
Chris Lattnerddee4232008-03-03 03:28:21 +0000437
438 MergeAttributes(New, Old);
439
Reid Spencer5f016e22007-07-11 17:01:13 +0000440 // Verify the types match.
Chris Lattner8bcfc5b2008-04-06 23:10:54 +0000441 QualType OldCType = Context.getCanonicalType(Old->getType());
442 QualType NewCType = Context.getCanonicalType(New->getType());
Steve Naroff907747b2008-08-09 16:04:40 +0000443 if (OldCType != NewCType && !Context.typesAreCompatible(OldCType, NewCType)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000444 Diag(New->getLocation(), diag::err_redefinition, New->getName());
445 Diag(Old->getLocation(), diag::err_previous_definition);
446 return New;
447 }
Steve Naroffb7b032e2008-01-30 00:44:01 +0000448 // C99 6.2.2p4: Check if we have a static decl followed by a non-static.
449 if (New->getStorageClass() == VarDecl::Static &&
450 (Old->getStorageClass() == VarDecl::None ||
451 Old->getStorageClass() == VarDecl::Extern)) {
452 Diag(New->getLocation(), diag::err_static_non_static, New->getName());
453 Diag(Old->getLocation(), diag::err_previous_definition);
454 return New;
455 }
456 // C99 6.2.2p4: Check if we have a non-static decl followed by a static.
457 if (New->getStorageClass() != VarDecl::Static &&
458 Old->getStorageClass() == VarDecl::Static) {
459 Diag(New->getLocation(), diag::err_non_static_static, New->getName());
460 Diag(Old->getLocation(), diag::err_previous_definition);
461 return New;
462 }
Steve Naroffff9eb1f2008-08-08 17:50:35 +0000463 // File scoped variables are analyzed in FinalizeDeclaratorGroup.
464 if (!New->isFileVarDecl()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000465 Diag(New->getLocation(), diag::err_redefinition, New->getName());
466 Diag(Old->getLocation(), diag::err_previous_definition);
467 }
468 return New;
469}
470
Chris Lattner04421082008-04-08 04:40:51 +0000471/// CheckParmsForFunctionDef - Check that the parameters of the given
472/// function are appropriate for the definition of a function. This
473/// takes care of any checks that cannot be performed on the
474/// declaration itself, e.g., that the types of each of the function
475/// parameters are complete.
476bool Sema::CheckParmsForFunctionDef(FunctionDecl *FD) {
477 bool HasInvalidParm = false;
478 for (unsigned p = 0, NumParams = FD->getNumParams(); p < NumParams; ++p) {
479 ParmVarDecl *Param = FD->getParamDecl(p);
480
481 // C99 6.7.5.3p4: the parameters in a parameter type list in a
482 // function declarator that is part of a function definition of
483 // that function shall not have incomplete type.
484 if (Param->getType()->isIncompleteType() &&
485 !Param->isInvalidDecl()) {
486 Diag(Param->getLocation(), diag::err_typecheck_decl_incomplete_type,
487 Param->getType().getAsString());
488 Param->setInvalidDecl();
489 HasInvalidParm = true;
490 }
491 }
492
493 return HasInvalidParm;
494}
495
496/// CreateImplicitParameter - Creates an implicit function parameter
497/// in the scope S and with the given type. This routine is used, for
498/// example, to create the implicit "self" parameter in an Objective-C
499/// method.
Chris Lattner41110242008-06-17 18:05:57 +0000500ImplicitParamDecl *
Chris Lattner04421082008-04-08 04:40:51 +0000501Sema::CreateImplicitParameter(Scope *S, IdentifierInfo *Id,
502 SourceLocation IdLoc, QualType Type) {
Chris Lattner41110242008-06-17 18:05:57 +0000503 ImplicitParamDecl *New = ImplicitParamDecl::Create(Context, CurContext,
504 IdLoc, Id, Type, 0);
Argyrios Kyrtzidis87f3ff02008-04-12 00:47:19 +0000505 if (Id)
506 PushOnScopeChains(New, S);
Chris Lattner04421082008-04-08 04:40:51 +0000507
508 return New;
509}
510
Reid Spencer5f016e22007-07-11 17:01:13 +0000511/// ParsedFreeStandingDeclSpec - This method is invoked when a declspec with
512/// no declarator (e.g. "struct foo;") is parsed.
513Sema::DeclTy *Sema::ParsedFreeStandingDeclSpec(Scope *S, DeclSpec &DS) {
514 // TODO: emit error on 'int;' or 'const enum foo;'.
515 // TODO: emit error on 'typedef int;'
516 // if (!DS.isMissingDeclaratorOk()) Diag(...);
517
Steve Naroff92199282007-11-17 21:37:36 +0000518 return dyn_cast_or_null<TagDecl>(static_cast<Decl *>(DS.getTypeRep()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000519}
520
Steve Naroffd0091aa2008-01-10 22:15:12 +0000521bool Sema::CheckSingleInitializer(Expr *&Init, QualType DeclType) {
Steve Narofff0090632007-09-02 02:04:30 +0000522 // Get the type before calling CheckSingleAssignmentConstraints(), since
523 // it can promote the expression.
Chris Lattner5cf216b2008-01-04 18:04:52 +0000524 QualType InitType = Init->getType();
Steve Narofff0090632007-09-02 02:04:30 +0000525
Chris Lattner5cf216b2008-01-04 18:04:52 +0000526 AssignConvertType ConvTy = CheckSingleAssignmentConstraints(DeclType, Init);
527 return DiagnoseAssignmentResult(ConvTy, Init->getLocStart(), DeclType,
528 InitType, Init, "initializing");
Steve Narofff0090632007-09-02 02:04:30 +0000529}
530
Steve Naroffa49e1fa2008-01-22 00:55:40 +0000531bool Sema::CheckStringLiteralInit(StringLiteral *strLiteral, QualType &DeclT) {
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000532 const ArrayType *AT = Context.getAsArrayType(DeclT);
533
534 if (const IncompleteArrayType *IAT = dyn_cast<IncompleteArrayType>(AT)) {
Steve Naroffa49e1fa2008-01-22 00:55:40 +0000535 // C99 6.7.8p14. We have an array of character type with unknown size
536 // being initialized to a string literal.
537 llvm::APSInt ConstVal(32);
538 ConstVal = strLiteral->getByteLength() + 1;
539 // Return a new array type (C99 6.7.8p22).
Eli Friedmanc5773c42008-02-15 18:16:39 +0000540 DeclT = Context.getConstantArrayType(IAT->getElementType(), ConstVal,
Steve Naroffa49e1fa2008-01-22 00:55:40 +0000541 ArrayType::Normal, 0);
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000542 } else {
543 const ConstantArrayType *CAT = cast<ConstantArrayType>(AT);
Steve Naroffa49e1fa2008-01-22 00:55:40 +0000544 // C99 6.7.8p14. We have an array of character type with known size.
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000545 // FIXME: Avoid truncation for 64-bit length strings.
546 if (strLiteral->getByteLength() > (unsigned)CAT->getSize().getZExtValue())
Steve Naroffa49e1fa2008-01-22 00:55:40 +0000547 Diag(strLiteral->getSourceRange().getBegin(),
548 diag::warn_initializer_string_for_char_array_too_long,
549 strLiteral->getSourceRange());
Steve Naroffa49e1fa2008-01-22 00:55:40 +0000550 }
551 // Set type from "char *" to "constant array of char".
552 strLiteral->setType(DeclT);
553 // For now, we always return false (meaning success).
554 return false;
555}
556
557StringLiteral *Sema::IsStringLiteralInit(Expr *Init, QualType DeclType) {
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000558 const ArrayType *AT = Context.getAsArrayType(DeclType);
Steve Naroffa9960332008-01-25 00:51:06 +0000559 if (AT && AT->getElementType()->isCharType()) {
560 return dyn_cast<StringLiteral>(Init);
561 }
Steve Naroffa49e1fa2008-01-22 00:55:40 +0000562 return 0;
563}
564
Steve Naroffa9960332008-01-25 00:51:06 +0000565bool Sema::CheckInitializerTypes(Expr *&Init, QualType &DeclType) {
Steve Naroffca107302008-01-21 23:53:58 +0000566 // C99 6.7.8p3: The type of the entity to be initialized shall be an array
567 // of unknown size ("[]") or an object type that is not a variable array type.
Chris Lattnerc63a1f22008-08-04 07:31:14 +0000568 if (const VariableArrayType *VAT = Context.getAsVariableArrayType(DeclType))
Steve Naroffca107302008-01-21 23:53:58 +0000569 return Diag(VAT->getSizeExpr()->getLocStart(),
570 diag::err_variable_object_no_init,
571 VAT->getSizeExpr()->getSourceRange());
572
Steve Naroff2fdc3742007-12-10 22:44:33 +0000573 InitListExpr *InitList = dyn_cast<InitListExpr>(Init);
574 if (!InitList) {
Steve Naroffa49e1fa2008-01-22 00:55:40 +0000575 // FIXME: Handle wide strings
576 if (StringLiteral *strLiteral = IsStringLiteralInit(Init, DeclType))
577 return CheckStringLiteralInit(strLiteral, DeclType);
Eli Friedmana312ce22008-02-08 00:48:24 +0000578
579 if (DeclType->isArrayType())
580 return Diag(Init->getLocStart(),
581 diag::err_array_init_list_required,
582 Init->getSourceRange());
583
Steve Naroffd0091aa2008-01-10 22:15:12 +0000584 return CheckSingleInitializer(Init, DeclType);
Steve Naroff2fdc3742007-12-10 22:44:33 +0000585 }
Eli Friedmane6f058f2008-06-06 19:40:52 +0000586
Steve Naroff0cca7492008-05-01 22:18:59 +0000587 InitListChecker CheckInitList(this, InitList, DeclType);
588 return CheckInitList.HadError();
Steve Narofff0090632007-09-02 02:04:30 +0000589}
590
Fariborz Jahanian306d68f2007-11-08 23:49:49 +0000591Sema::DeclTy *
Daniel Dunbar914701e2008-08-05 16:28:08 +0000592Sema::ActOnDeclarator(Scope *S, Declarator &D, DeclTy *lastDecl) {
Steve Naroff94745042007-09-13 23:52:58 +0000593 ScopedDecl *LastDeclarator = dyn_cast_or_null<ScopedDecl>((Decl *)lastDecl);
Reid Spencer5f016e22007-07-11 17:01:13 +0000594 IdentifierInfo *II = D.getIdentifier();
595
Chris Lattnere80a59c2007-07-25 00:24:17 +0000596 // All of these full declarators require an identifier. If it doesn't have
597 // one, the ParsedFreeStandingDeclSpec action should be used.
598 if (II == 0) {
Chris Lattner311ff022007-10-16 22:36:42 +0000599 Diag(D.getDeclSpec().getSourceRange().getBegin(),
Chris Lattner98e08632007-08-28 06:17:15 +0000600 diag::err_declarator_need_ident,
Chris Lattnere80a59c2007-07-25 00:24:17 +0000601 D.getDeclSpec().getSourceRange(), D.getSourceRange());
602 return 0;
603 }
604
Chris Lattner31e05722007-08-26 06:24:45 +0000605 // The scope passed in may not be a decl scope. Zip up the scope tree until
606 // we find one that is.
607 while ((S->getFlags() & Scope::DeclScope) == 0)
608 S = S->getParent();
609
Reid Spencer5f016e22007-07-11 17:01:13 +0000610 // See if this is a redefinition of a variable in the same scope.
Steve Naroffb327ce02008-04-02 14:35:35 +0000611 Decl *PrevDecl = LookupDecl(II, Decl::IDNS_Ordinary, S);
Steve Naroffc752d042007-09-13 18:10:37 +0000612 ScopedDecl *New;
Steve Naroff5912a352007-08-28 20:14:24 +0000613 bool InvalidDecl = false;
Douglas Gregor2ce52f32008-04-13 21:07:44 +0000614
615 // In C++, the previous declaration we find might be a tag type
616 // (class or enum). In this case, the new declaration will hide the
617 // tag type.
618 if (PrevDecl && PrevDecl->getIdentifierNamespace() == Decl::IDNS_Tag)
619 PrevDecl = 0;
620
Chris Lattner41af0932007-11-14 06:34:38 +0000621 QualType R = GetTypeForDeclarator(D, S);
622 assert(!R.isNull() && "GetTypeForDeclarator() returned null type");
623
Reid Spencer5f016e22007-07-11 17:01:13 +0000624 if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef) {
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000625 // Check that there are no default arguments (C++ only).
626 if (getLangOptions().CPlusPlus)
627 CheckExtraCXXDefaultArguments(D);
628
Chris Lattner41af0932007-11-14 06:34:38 +0000629 TypedefDecl *NewTD = ParseTypedefDecl(S, D, R, LastDeclarator);
Reid Spencer5f016e22007-07-11 17:01:13 +0000630 if (!NewTD) return 0;
631
632 // Handle attributes prior to checking for duplicates in MergeVarDecl
Chris Lattner3ff30c82008-06-29 00:02:00 +0000633 ProcessDeclAttributes(NewTD, D);
Steve Naroffffce4d52008-01-09 23:34:55 +0000634 // Merge the decl with the existing one if appropriate. If the decl is
635 // in an outer scope, it isn't the same thing.
Argyrios Kyrtzidis00bc6452008-05-09 23:39:43 +0000636 if (PrevDecl && IdResolver.isDeclInScope(PrevDecl, CurContext, S)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000637 NewTD = MergeTypeDefDecl(NewTD, PrevDecl);
638 if (NewTD == 0) return 0;
639 }
640 New = NewTD;
Argyrios Kyrtzidis00bc6452008-05-09 23:39:43 +0000641 if (S->getFnParent() == 0) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000642 // C99 6.7.7p2: If a typedef name specifies a variably modified type
643 // then it shall have block scope.
Eli Friedman9db13972008-02-15 12:53:51 +0000644 if (NewTD->getUnderlyingType()->isVariablyModifiedType()) {
645 // FIXME: Diagnostic needs to be fixed.
646 Diag(D.getIdentifierLoc(), diag::err_typecheck_illegal_vla);
Steve Naroffd7444aa2007-08-31 17:20:07 +0000647 InvalidDecl = true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000648 }
649 }
Chris Lattner41af0932007-11-14 06:34:38 +0000650 } else if (R.getTypePtr()->isFunctionType()) {
Chris Lattner271f1a62007-09-27 15:15:46 +0000651 FunctionDecl::StorageClass SC = FunctionDecl::None;
Reid Spencer5f016e22007-07-11 17:01:13 +0000652 switch (D.getDeclSpec().getStorageClassSpec()) {
653 default: assert(0 && "Unknown storage class!");
654 case DeclSpec::SCS_auto:
655 case DeclSpec::SCS_register:
656 Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_func,
657 R.getAsString());
Steve Naroff5912a352007-08-28 20:14:24 +0000658 InvalidDecl = true;
659 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000660 case DeclSpec::SCS_unspecified: SC = FunctionDecl::None; break;
661 case DeclSpec::SCS_extern: SC = FunctionDecl::Extern; break;
662 case DeclSpec::SCS_static: SC = FunctionDecl::Static; break;
Steve Naroff7dd0bd42008-01-28 21:57:15 +0000663 case DeclSpec::SCS_private_extern: SC = FunctionDecl::PrivateExtern;break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000664 }
665
Chris Lattnera98e58d2008-03-15 21:24:04 +0000666 bool isInline = D.getDeclSpec().isInlineSpecified();
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000667 FunctionDecl *NewFD;
668 if (D.getContext() == Declarator::MemberContext) {
669 // This is a C++ method declaration.
670 NewFD = CXXMethodDecl::Create(Context, cast<CXXRecordDecl>(CurContext),
671 D.getIdentifierLoc(), II, R,
672 (SC == FunctionDecl::Static), isInline,
673 LastDeclarator);
674 } else {
675 NewFD = FunctionDecl::Create(Context, CurContext,
676 D.getIdentifierLoc(),
677 II, R, SC, isInline,
678 LastDeclarator);
679 }
Ted Kremenekf5c93c12008-02-27 22:18:07 +0000680 // Handle attributes.
Chris Lattner3ff30c82008-06-29 00:02:00 +0000681 ProcessDeclAttributes(NewFD, D);
Chris Lattner04421082008-04-08 04:40:51 +0000682
Daniel Dunbara80f8742008-08-05 01:35:17 +0000683 // Handle GNU asm-label extension (encoded as an attribute).
Daniel Dunbar914701e2008-08-05 16:28:08 +0000684 if (Expr *E = (Expr*) D.getAsmLabel()) {
Daniel Dunbara80f8742008-08-05 01:35:17 +0000685 // The parser guarantees this is a string.
686 StringLiteral *SE = cast<StringLiteral>(E);
687 NewFD->addAttr(new AsmLabelAttr(std::string(SE->getStrData(),
688 SE->getByteLength())));
689 }
690
Chris Lattner04421082008-04-08 04:40:51 +0000691 // Copy the parameter declarations from the declarator D to
692 // the function declaration NewFD, if they are available.
693 if (D.getNumTypeObjects() > 0 &&
694 D.getTypeObject(0).Fun.hasPrototype) {
695 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
696
697 // Create Decl objects for each parameter, adding them to the
698 // FunctionDecl.
699 llvm::SmallVector<ParmVarDecl*, 16> Params;
700
701 // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs
702 // function that takes no arguments, not a function that takes a
Chris Lattner8123a952008-04-10 02:22:51 +0000703 // single void argument.
Eli Friedman6d1e4b52008-05-22 08:54:03 +0000704 // We let through "const void" here because Sema::GetTypeForDeclarator
705 // already checks for that case.
Chris Lattner04421082008-04-08 04:40:51 +0000706 if (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
707 FTI.ArgInfo[0].Param &&
Chris Lattner04421082008-04-08 04:40:51 +0000708 ((ParmVarDecl*)FTI.ArgInfo[0].Param)->getType()->isVoidType()) {
709 // empty arg list, don't push any params.
Chris Lattner8123a952008-04-10 02:22:51 +0000710 ParmVarDecl *Param = (ParmVarDecl*)FTI.ArgInfo[0].Param;
711
Chris Lattnerdef026a2008-04-10 02:26:16 +0000712 // In C++, the empty parameter-type-list must be spelled "void"; a
713 // typedef of void is not permitted.
714 if (getLangOptions().CPlusPlus &&
Eli Friedman6d1e4b52008-05-22 08:54:03 +0000715 Param->getType().getUnqualifiedType() != Context.VoidTy) {
Chris Lattner8123a952008-04-10 02:22:51 +0000716 Diag(Param->getLocation(), diag::ext_param_typedef_of_void);
717 }
718
Chris Lattner04421082008-04-08 04:40:51 +0000719 } else {
720 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i)
721 Params.push_back((ParmVarDecl *)FTI.ArgInfo[i].Param);
722 }
723
724 NewFD->setParams(&Params[0], Params.size());
725 }
726
Steve Naroffffce4d52008-01-09 23:34:55 +0000727 // Merge the decl with the existing one if appropriate. Since C functions
728 // are in a flat namespace, make sure we consider decls in outer scopes.
Argyrios Kyrtzidis00bc6452008-05-09 23:39:43 +0000729 if (PrevDecl &&
730 (!getLangOptions().CPlusPlus ||
731 IdResolver.isDeclInScope(PrevDecl, CurContext, S)) ) {
Douglas Gregorf0097952008-04-21 02:02:58 +0000732 bool Redeclaration = false;
733 NewFD = MergeFunctionDecl(NewFD, PrevDecl, Redeclaration);
Reid Spencer5f016e22007-07-11 17:01:13 +0000734 if (NewFD == 0) return 0;
Douglas Gregorf0097952008-04-21 02:02:58 +0000735 if (Redeclaration) {
Eli Friedman27424962008-05-27 05:07:37 +0000736 NewFD->setPreviousDeclaration(cast<FunctionDecl>(PrevDecl));
Douglas Gregorf0097952008-04-21 02:02:58 +0000737 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000738 }
739 New = NewFD;
Chris Lattner04421082008-04-08 04:40:51 +0000740
741 // In C++, check default arguments now that we have merged decls.
742 if (getLangOptions().CPlusPlus)
743 CheckCXXDefaultArguments(NewFD);
Reid Spencer5f016e22007-07-11 17:01:13 +0000744 } else {
Douglas Gregor6d6eb572008-05-07 04:49:29 +0000745 // Check that there are no default arguments (C++ only).
746 if (getLangOptions().CPlusPlus)
747 CheckExtraCXXDefaultArguments(D);
748
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000749 if (R.getTypePtr()->isObjCInterfaceType()) {
Fariborz Jahaniane7f64cc2007-10-12 22:10:42 +0000750 Diag(D.getIdentifierLoc(), diag::err_statically_allocated_object,
751 D.getIdentifier()->getName());
752 InvalidDecl = true;
753 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000754
755 VarDecl *NewVD;
756 VarDecl::StorageClass SC;
757 switch (D.getDeclSpec().getStorageClassSpec()) {
Chris Lattner9e151e12008-03-15 21:10:16 +0000758 default: assert(0 && "Unknown storage class!");
759 case DeclSpec::SCS_unspecified: SC = VarDecl::None; break;
760 case DeclSpec::SCS_extern: SC = VarDecl::Extern; break;
761 case DeclSpec::SCS_static: SC = VarDecl::Static; break;
762 case DeclSpec::SCS_auto: SC = VarDecl::Auto; break;
763 case DeclSpec::SCS_register: SC = VarDecl::Register; break;
764 case DeclSpec::SCS_private_extern: SC = VarDecl::PrivateExtern; break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000765 }
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000766 if (D.getContext() == Declarator::MemberContext) {
767 assert(SC == VarDecl::Static && "Invalid storage class for member!");
768 // This is a static data member for a C++ class.
769 NewVD = CXXClassVarDecl::Create(Context, cast<CXXRecordDecl>(CurContext),
770 D.getIdentifierLoc(), II,
771 R, LastDeclarator);
Steve Narofff0090632007-09-02 02:04:30 +0000772 } else {
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000773 if (S->getFnParent() == 0) {
774 // C99 6.9p2: The storage-class specifiers auto and register shall not
775 // appear in the declaration specifiers in an external declaration.
776 if (SC == VarDecl::Auto || SC == VarDecl::Register) {
777 Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_fscope,
778 R.getAsString());
779 InvalidDecl = true;
780 }
781 NewVD = VarDecl::Create(Context, CurContext, D.getIdentifierLoc(),
782 II, R, SC, LastDeclarator);
783 } else {
784 NewVD = VarDecl::Create(Context, CurContext, D.getIdentifierLoc(),
785 II, R, SC, LastDeclarator);
786 }
Steve Naroff53a32342007-08-28 18:45:29 +0000787 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000788 // Handle attributes prior to checking for duplicates in MergeVarDecl
Chris Lattner3ff30c82008-06-29 00:02:00 +0000789 ProcessDeclAttributes(NewVD, D);
Nate Begemanc8e89a82008-03-14 18:07:10 +0000790
Daniel Dunbara735ad82008-08-06 00:03:29 +0000791 // Handle GNU asm-label extension (encoded as an attribute).
792 if (Expr *E = (Expr*) D.getAsmLabel()) {
793 // The parser guarantees this is a string.
794 StringLiteral *SE = cast<StringLiteral>(E);
795 NewVD->addAttr(new AsmLabelAttr(std::string(SE->getStrData(),
796 SE->getByteLength())));
797 }
798
Nate Begemanc8e89a82008-03-14 18:07:10 +0000799 // Emit an error if an address space was applied to decl with local storage.
800 // This includes arrays of objects with address space qualifiers, but not
801 // automatic variables that point to other address spaces.
802 // ISO/IEC TR 18037 S5.1.2
Nate Begeman8e7dafe2008-03-25 18:36:32 +0000803 if (NewVD->hasLocalStorage() && (NewVD->getType().getAddressSpace() != 0)) {
804 Diag(D.getIdentifierLoc(), diag::err_as_qualified_auto_decl);
805 InvalidDecl = true;
Nate Begeman5af27e02008-03-14 00:22:18 +0000806 }
Steve Naroffffce4d52008-01-09 23:34:55 +0000807 // Merge the decl with the existing one if appropriate. If the decl is
808 // in an outer scope, it isn't the same thing.
Argyrios Kyrtzidis00bc6452008-05-09 23:39:43 +0000809 if (PrevDecl && IdResolver.isDeclInScope(PrevDecl, CurContext, S)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000810 NewVD = MergeVarDecl(NewVD, PrevDecl);
811 if (NewVD == 0) return 0;
812 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000813 New = NewVD;
814 }
815
816 // If this has an identifier, add it to the scope stack.
Argyrios Kyrtzidis87f3ff02008-04-12 00:47:19 +0000817 if (II)
818 PushOnScopeChains(New, S);
Steve Naroff5912a352007-08-28 20:14:24 +0000819 // If any semantic error occurred, mark the decl as invalid.
820 if (D.getInvalidType() || InvalidDecl)
821 New->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +0000822
823 return New;
824}
825
Eli Friedmanc594b322008-05-20 13:48:25 +0000826bool Sema::CheckAddressConstantExpressionLValue(const Expr* Init) {
827 switch (Init->getStmtClass()) {
828 default:
829 Diag(Init->getExprLoc(),
830 diag::err_init_element_not_constant, Init->getSourceRange());
831 return true;
832 case Expr::ParenExprClass: {
833 const ParenExpr* PE = cast<ParenExpr>(Init);
834 return CheckAddressConstantExpressionLValue(PE->getSubExpr());
835 }
836 case Expr::CompoundLiteralExprClass:
837 return cast<CompoundLiteralExpr>(Init)->isFileScope();
838 case Expr::DeclRefExprClass: {
839 const Decl *D = cast<DeclRefExpr>(Init)->getDecl();
Eli Friedman97c0a392008-05-21 03:39:11 +0000840 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
841 if (VD->hasGlobalStorage())
842 return false;
843 Diag(Init->getExprLoc(),
844 diag::err_init_element_not_constant, Init->getSourceRange());
845 return true;
846 }
Eli Friedmanc594b322008-05-20 13:48:25 +0000847 if (isa<FunctionDecl>(D))
848 return false;
849 Diag(Init->getExprLoc(),
850 diag::err_init_element_not_constant, Init->getSourceRange());
Steve Naroffd0091aa2008-01-10 22:15:12 +0000851 return true;
852 }
Eli Friedmanc594b322008-05-20 13:48:25 +0000853 case Expr::MemberExprClass: {
854 const MemberExpr *M = cast<MemberExpr>(Init);
855 if (M->isArrow())
856 return CheckAddressConstantExpression(M->getBase());
857 return CheckAddressConstantExpressionLValue(M->getBase());
858 }
859 case Expr::ArraySubscriptExprClass: {
860 // FIXME: Should we pedwarn for "x[0+0]" (where x is a pointer)?
861 const ArraySubscriptExpr *ASE = cast<ArraySubscriptExpr>(Init);
862 return CheckAddressConstantExpression(ASE->getBase()) ||
863 CheckArithmeticConstantExpression(ASE->getIdx());
864 }
865 case Expr::StringLiteralClass:
Chris Lattnerd9f69102008-08-10 01:53:14 +0000866 case Expr::PredefinedExprClass:
Eli Friedmanc594b322008-05-20 13:48:25 +0000867 return false;
868 case Expr::UnaryOperatorClass: {
869 const UnaryOperator *Exp = cast<UnaryOperator>(Init);
870
871 // C99 6.6p9
872 if (Exp->getOpcode() == UnaryOperator::Deref)
Eli Friedman97c0a392008-05-21 03:39:11 +0000873 return CheckAddressConstantExpression(Exp->getSubExpr());
Eli Friedmanc594b322008-05-20 13:48:25 +0000874
875 Diag(Init->getExprLoc(),
876 diag::err_init_element_not_constant, Init->getSourceRange());
877 return true;
878 }
879 }
880}
881
882bool Sema::CheckAddressConstantExpression(const Expr* Init) {
883 switch (Init->getStmtClass()) {
884 default:
885 Diag(Init->getExprLoc(),
886 diag::err_init_element_not_constant, Init->getSourceRange());
887 return true;
888 case Expr::ParenExprClass: {
889 const ParenExpr* PE = cast<ParenExpr>(Init);
890 return CheckAddressConstantExpression(PE->getSubExpr());
891 }
892 case Expr::StringLiteralClass:
893 case Expr::ObjCStringLiteralClass:
894 return false;
895 case Expr::CallExprClass: {
896 const CallExpr *CE = cast<CallExpr>(Init);
897 if (CE->isBuiltinConstantExpr())
898 return false;
899 Diag(Init->getExprLoc(),
900 diag::err_init_element_not_constant, Init->getSourceRange());
901 return true;
902 }
903 case Expr::UnaryOperatorClass: {
904 const UnaryOperator *Exp = cast<UnaryOperator>(Init);
905
906 // C99 6.6p9
907 if (Exp->getOpcode() == UnaryOperator::AddrOf)
908 return CheckAddressConstantExpressionLValue(Exp->getSubExpr());
909
910 if (Exp->getOpcode() == UnaryOperator::Extension)
911 return CheckAddressConstantExpression(Exp->getSubExpr());
912
913 Diag(Init->getExprLoc(),
914 diag::err_init_element_not_constant, Init->getSourceRange());
915 return true;
916 }
917 case Expr::BinaryOperatorClass: {
918 // FIXME: Should we pedwarn for expressions like "a + 1 + 2"?
919 const BinaryOperator *Exp = cast<BinaryOperator>(Init);
920
921 Expr *PExp = Exp->getLHS();
922 Expr *IExp = Exp->getRHS();
923 if (IExp->getType()->isPointerType())
924 std::swap(PExp, IExp);
925
926 // FIXME: Should we pedwarn if IExp isn't an integer constant expression?
927 return CheckAddressConstantExpression(PExp) ||
928 CheckArithmeticConstantExpression(IExp);
929 }
930 case Expr::ImplicitCastExprClass: {
931 const Expr* SubExpr = cast<ImplicitCastExpr>(Init)->getSubExpr();
932
933 // Check for implicit promotion
934 if (SubExpr->getType()->isFunctionType() ||
935 SubExpr->getType()->isArrayType())
936 return CheckAddressConstantExpressionLValue(SubExpr);
937
938 // Check for pointer->pointer cast
939 if (SubExpr->getType()->isPointerType())
940 return CheckAddressConstantExpression(SubExpr);
941
942 if (SubExpr->getType()->isArithmeticType())
943 return CheckArithmeticConstantExpression(SubExpr);
944
945 Diag(Init->getExprLoc(),
946 diag::err_init_element_not_constant, Init->getSourceRange());
947 return true;
948 }
Argyrios Kyrtzidis0835a3c2008-08-18 23:01:59 +0000949 case Expr::ExplicitCastExprClass: {
Eli Friedmanc594b322008-05-20 13:48:25 +0000950 const Expr* SubExpr = cast<CastExpr>(Init)->getSubExpr();
951
952 // Check for pointer->pointer cast
953 if (SubExpr->getType()->isPointerType())
954 return CheckAddressConstantExpression(SubExpr);
955
956 // FIXME: Should we pedwarn for (int*)(0+0)?
957 if (SubExpr->getType()->isArithmeticType())
958 return CheckArithmeticConstantExpression(SubExpr);
959
960 Diag(Init->getExprLoc(),
961 diag::err_init_element_not_constant, Init->getSourceRange());
962 return true;
963 }
964 case Expr::ConditionalOperatorClass: {
965 // FIXME: Should we pedwarn here?
966 const ConditionalOperator *Exp = cast<ConditionalOperator>(Init);
967 if (!Exp->getCond()->getType()->isArithmeticType()) {
968 Diag(Init->getExprLoc(),
969 diag::err_init_element_not_constant, Init->getSourceRange());
970 return true;
971 }
972 if (CheckArithmeticConstantExpression(Exp->getCond()))
973 return true;
974 if (Exp->getLHS() &&
975 CheckAddressConstantExpression(Exp->getLHS()))
976 return true;
977 return CheckAddressConstantExpression(Exp->getRHS());
978 }
979 case Expr::AddrLabelExprClass:
980 return false;
981 }
982}
983
Eli Friedman4caf0552008-06-09 05:05:07 +0000984static const Expr* FindExpressionBaseAddress(const Expr* E);
985
986static const Expr* FindExpressionBaseAddressLValue(const Expr* E) {
987 switch (E->getStmtClass()) {
988 default:
989 return E;
990 case Expr::ParenExprClass: {
991 const ParenExpr* PE = cast<ParenExpr>(E);
992 return FindExpressionBaseAddressLValue(PE->getSubExpr());
993 }
994 case Expr::MemberExprClass: {
995 const MemberExpr *M = cast<MemberExpr>(E);
996 if (M->isArrow())
997 return FindExpressionBaseAddress(M->getBase());
998 return FindExpressionBaseAddressLValue(M->getBase());
999 }
1000 case Expr::ArraySubscriptExprClass: {
1001 const ArraySubscriptExpr *ASE = cast<ArraySubscriptExpr>(E);
1002 return FindExpressionBaseAddress(ASE->getBase());
1003 }
1004 case Expr::UnaryOperatorClass: {
1005 const UnaryOperator *Exp = cast<UnaryOperator>(E);
1006
1007 if (Exp->getOpcode() == UnaryOperator::Deref)
1008 return FindExpressionBaseAddress(Exp->getSubExpr());
1009
1010 return E;
1011 }
1012 }
1013}
1014
1015static const Expr* FindExpressionBaseAddress(const Expr* E) {
1016 switch (E->getStmtClass()) {
1017 default:
1018 return E;
1019 case Expr::ParenExprClass: {
1020 const ParenExpr* PE = cast<ParenExpr>(E);
1021 return FindExpressionBaseAddress(PE->getSubExpr());
1022 }
1023 case Expr::UnaryOperatorClass: {
1024 const UnaryOperator *Exp = cast<UnaryOperator>(E);
1025
1026 // C99 6.6p9
1027 if (Exp->getOpcode() == UnaryOperator::AddrOf)
1028 return FindExpressionBaseAddressLValue(Exp->getSubExpr());
1029
1030 if (Exp->getOpcode() == UnaryOperator::Extension)
1031 return FindExpressionBaseAddress(Exp->getSubExpr());
1032
1033 return E;
1034 }
1035 case Expr::BinaryOperatorClass: {
1036 const BinaryOperator *Exp = cast<BinaryOperator>(E);
1037
1038 Expr *PExp = Exp->getLHS();
1039 Expr *IExp = Exp->getRHS();
1040 if (IExp->getType()->isPointerType())
1041 std::swap(PExp, IExp);
1042
1043 return FindExpressionBaseAddress(PExp);
1044 }
1045 case Expr::ImplicitCastExprClass: {
1046 const Expr* SubExpr = cast<ImplicitCastExpr>(E)->getSubExpr();
1047
1048 // Check for implicit promotion
1049 if (SubExpr->getType()->isFunctionType() ||
1050 SubExpr->getType()->isArrayType())
1051 return FindExpressionBaseAddressLValue(SubExpr);
1052
1053 // Check for pointer->pointer cast
1054 if (SubExpr->getType()->isPointerType())
1055 return FindExpressionBaseAddress(SubExpr);
1056
1057 // We assume that we have an arithmetic expression here;
1058 // if we don't, we'll figure it out later
1059 return 0;
1060 }
Argyrios Kyrtzidis0835a3c2008-08-18 23:01:59 +00001061 case Expr::ExplicitCastExprClass: {
Eli Friedman4caf0552008-06-09 05:05:07 +00001062 const Expr* SubExpr = cast<CastExpr>(E)->getSubExpr();
1063
1064 // Check for pointer->pointer cast
1065 if (SubExpr->getType()->isPointerType())
1066 return FindExpressionBaseAddress(SubExpr);
1067
1068 // We assume that we have an arithmetic expression here;
1069 // if we don't, we'll figure it out later
1070 return 0;
1071 }
1072 }
1073}
1074
Eli Friedmanc594b322008-05-20 13:48:25 +00001075bool Sema::CheckArithmeticConstantExpression(const Expr* Init) {
1076 switch (Init->getStmtClass()) {
1077 default:
1078 Diag(Init->getExprLoc(),
1079 diag::err_init_element_not_constant, Init->getSourceRange());
1080 return true;
1081 case Expr::ParenExprClass: {
1082 const ParenExpr* PE = cast<ParenExpr>(Init);
1083 return CheckArithmeticConstantExpression(PE->getSubExpr());
1084 }
1085 case Expr::FloatingLiteralClass:
1086 case Expr::IntegerLiteralClass:
1087 case Expr::CharacterLiteralClass:
1088 case Expr::ImaginaryLiteralClass:
1089 case Expr::TypesCompatibleExprClass:
1090 case Expr::CXXBoolLiteralExprClass:
1091 return false;
1092 case Expr::CallExprClass: {
1093 const CallExpr *CE = cast<CallExpr>(Init);
1094 if (CE->isBuiltinConstantExpr())
1095 return false;
1096 Diag(Init->getExprLoc(),
1097 diag::err_init_element_not_constant, Init->getSourceRange());
1098 return true;
1099 }
1100 case Expr::DeclRefExprClass: {
1101 const Decl *D = cast<DeclRefExpr>(Init)->getDecl();
1102 if (isa<EnumConstantDecl>(D))
1103 return false;
1104 Diag(Init->getExprLoc(),
1105 diag::err_init_element_not_constant, Init->getSourceRange());
1106 return true;
1107 }
1108 case Expr::CompoundLiteralExprClass:
1109 // Allow "(vector type){2,4}"; normal C constraints don't allow this,
1110 // but vectors are allowed to be magic.
1111 if (Init->getType()->isVectorType())
1112 return false;
1113 Diag(Init->getExprLoc(),
1114 diag::err_init_element_not_constant, Init->getSourceRange());
1115 return true;
1116 case Expr::UnaryOperatorClass: {
1117 const UnaryOperator *Exp = cast<UnaryOperator>(Init);
1118
1119 switch (Exp->getOpcode()) {
1120 // Address, indirect, pre/post inc/dec, etc are not valid constant exprs.
1121 // See C99 6.6p3.
1122 default:
1123 Diag(Init->getExprLoc(),
1124 diag::err_init_element_not_constant, Init->getSourceRange());
1125 return true;
1126 case UnaryOperator::SizeOf:
1127 case UnaryOperator::AlignOf:
1128 case UnaryOperator::OffsetOf:
1129 // sizeof(E) is a constantexpr if and only if E is not evaluted.
1130 // See C99 6.5.3.4p2 and 6.6p3.
1131 if (Exp->getSubExpr()->getType()->isConstantSizeType())
1132 return false;
1133 Diag(Init->getExprLoc(),
1134 diag::err_init_element_not_constant, Init->getSourceRange());
1135 return true;
1136 case UnaryOperator::Extension:
1137 case UnaryOperator::LNot:
1138 case UnaryOperator::Plus:
1139 case UnaryOperator::Minus:
1140 case UnaryOperator::Not:
1141 return CheckArithmeticConstantExpression(Exp->getSubExpr());
1142 }
1143 }
1144 case Expr::SizeOfAlignOfTypeExprClass: {
1145 const SizeOfAlignOfTypeExpr *Exp = cast<SizeOfAlignOfTypeExpr>(Init);
1146 // Special check for void types, which are allowed as an extension
1147 if (Exp->getArgumentType()->isVoidType())
1148 return false;
1149 // alignof always evaluates to a constant.
1150 // FIXME: is sizeof(int[3.0]) a constant expression?
1151 if (Exp->isSizeOf() && !Exp->getArgumentType()->isConstantSizeType()) {
1152 Diag(Init->getExprLoc(),
1153 diag::err_init_element_not_constant, Init->getSourceRange());
1154 return true;
1155 }
1156 return false;
1157 }
1158 case Expr::BinaryOperatorClass: {
1159 const BinaryOperator *Exp = cast<BinaryOperator>(Init);
1160
1161 if (Exp->getLHS()->getType()->isArithmeticType() &&
1162 Exp->getRHS()->getType()->isArithmeticType()) {
1163 return CheckArithmeticConstantExpression(Exp->getLHS()) ||
1164 CheckArithmeticConstantExpression(Exp->getRHS());
1165 }
1166
Eli Friedman4caf0552008-06-09 05:05:07 +00001167 if (Exp->getLHS()->getType()->isPointerType() &&
1168 Exp->getRHS()->getType()->isPointerType()) {
1169 const Expr* LHSBase = FindExpressionBaseAddress(Exp->getLHS());
1170 const Expr* RHSBase = FindExpressionBaseAddress(Exp->getRHS());
1171
1172 // Only allow a null (constant integer) base; we could
1173 // allow some additional cases if necessary, but this
1174 // is sufficient to cover offsetof-like constructs.
1175 if (!LHSBase && !RHSBase) {
1176 return CheckAddressConstantExpression(Exp->getLHS()) ||
1177 CheckAddressConstantExpression(Exp->getRHS());
1178 }
1179 }
1180
Eli Friedmanc594b322008-05-20 13:48:25 +00001181 Diag(Init->getExprLoc(),
1182 diag::err_init_element_not_constant, Init->getSourceRange());
1183 return true;
1184 }
1185 case Expr::ImplicitCastExprClass:
Argyrios Kyrtzidis0835a3c2008-08-18 23:01:59 +00001186 case Expr::ExplicitCastExprClass: {
1187 const Expr *SubExpr = cast<CastExpr>(Init)->getSubExpr();
Eli Friedmanc594b322008-05-20 13:48:25 +00001188 if (SubExpr->getType()->isArithmeticType())
1189 return CheckArithmeticConstantExpression(SubExpr);
1190
1191 Diag(Init->getExprLoc(),
1192 diag::err_init_element_not_constant, Init->getSourceRange());
1193 return true;
1194 }
1195 case Expr::ConditionalOperatorClass: {
1196 const ConditionalOperator *Exp = cast<ConditionalOperator>(Init);
1197 if (CheckArithmeticConstantExpression(Exp->getCond()))
1198 return true;
1199 if (Exp->getLHS() &&
1200 CheckArithmeticConstantExpression(Exp->getLHS()))
1201 return true;
1202 return CheckArithmeticConstantExpression(Exp->getRHS());
1203 }
1204 }
1205}
1206
1207bool Sema::CheckForConstantInitializer(Expr *Init, QualType DclT) {
Nuno Lopes9a979c32008-07-07 16:46:50 +00001208 Init = Init->IgnoreParens();
1209
Eli Friedmanc594b322008-05-20 13:48:25 +00001210 // Look through CXXDefaultArgExprs; they have no meaning in this context.
1211 if (CXXDefaultArgExpr* DAE = dyn_cast<CXXDefaultArgExpr>(Init))
1212 return CheckForConstantInitializer(DAE->getExpr(), DclT);
1213
Nuno Lopes9a979c32008-07-07 16:46:50 +00001214 if (CompoundLiteralExpr *e = dyn_cast<CompoundLiteralExpr>(Init))
1215 return CheckForConstantInitializer(e->getInitializer(), DclT);
1216
Eli Friedmanc594b322008-05-20 13:48:25 +00001217 if (Init->getType()->isReferenceType()) {
1218 // FIXME: Work out how the heck reference types work
1219 return false;
1220#if 0
1221 // A reference is constant if the address of the expression
1222 // is constant
1223 // We look through initlists here to simplify
1224 // CheckAddressConstantExpressionLValue.
1225 if (InitListExpr *Exp = dyn_cast<InitListExpr>(Init)) {
1226 assert(Exp->getNumInits() > 0 &&
1227 "Refernce initializer cannot be empty");
1228 Init = Exp->getInit(0);
1229 }
1230 return CheckAddressConstantExpressionLValue(Init);
1231#endif
1232 }
1233
1234 if (InitListExpr *Exp = dyn_cast<InitListExpr>(Init)) {
1235 unsigned numInits = Exp->getNumInits();
1236 for (unsigned i = 0; i < numInits; i++) {
1237 // FIXME: Need to get the type of the declaration for C++,
1238 // because it could be a reference?
1239 if (CheckForConstantInitializer(Exp->getInit(i),
1240 Exp->getInit(i)->getType()))
1241 return true;
1242 }
1243 return false;
1244 }
1245
1246 if (Init->isNullPointerConstant(Context))
1247 return false;
1248 if (Init->getType()->isArithmeticType()) {
Chris Lattnerb77792e2008-07-26 22:17:49 +00001249 QualType InitTy = Context.getCanonicalType(Init->getType())
1250 .getUnqualifiedType();
Eli Friedmanc1cc6dc2008-05-30 18:14:48 +00001251 if (InitTy == Context.BoolTy) {
1252 // Special handling for pointers implicitly cast to bool;
1253 // (e.g. "_Bool rr = &rr;"). This is only legal at the top level.
1254 if (ImplicitCastExpr* ICE = dyn_cast<ImplicitCastExpr>(Init)) {
1255 Expr* SubE = ICE->getSubExpr();
1256 if (SubE->getType()->isPointerType() ||
1257 SubE->getType()->isArrayType() ||
1258 SubE->getType()->isFunctionType()) {
1259 return CheckAddressConstantExpression(Init);
1260 }
1261 }
1262 } else if (InitTy->isIntegralType()) {
1263 Expr* SubE = 0;
Argyrios Kyrtzidis0835a3c2008-08-18 23:01:59 +00001264 if (CastExpr* CE = dyn_cast<CastExpr>(Init))
Eli Friedmanc1cc6dc2008-05-30 18:14:48 +00001265 SubE = CE->getSubExpr();
1266 // Special check for pointer cast to int; we allow as an extension
1267 // an address constant cast to an integer if the integer
1268 // is of an appropriate width (this sort of code is apparently used
1269 // in some places).
1270 // FIXME: Add pedwarn?
1271 // FIXME: Don't allow bitfields here! Need the FieldDecl for that.
1272 if (SubE && (SubE->getType()->isPointerType() ||
1273 SubE->getType()->isArrayType() ||
1274 SubE->getType()->isFunctionType())) {
1275 unsigned IntWidth = Context.getTypeSize(Init->getType());
1276 unsigned PointerWidth = Context.getTypeSize(Context.VoidPtrTy);
1277 if (IntWidth >= PointerWidth)
1278 return CheckAddressConstantExpression(Init);
1279 }
Eli Friedmanc594b322008-05-20 13:48:25 +00001280 }
1281
1282 return CheckArithmeticConstantExpression(Init);
1283 }
1284
1285 if (Init->getType()->isPointerType())
1286 return CheckAddressConstantExpression(Init);
1287
Eli Friedmanc1cc6dc2008-05-30 18:14:48 +00001288 // An array type at the top level that isn't an init-list must
1289 // be a string literal
Eli Friedmanc594b322008-05-20 13:48:25 +00001290 if (Init->getType()->isArrayType())
1291 return false;
1292
1293 Diag(Init->getExprLoc(), diag::err_init_element_not_constant,
1294 Init->getSourceRange());
1295 return true;
Steve Naroffd0091aa2008-01-10 22:15:12 +00001296}
1297
Steve Naroffbb204692007-09-12 14:07:44 +00001298void Sema::AddInitializerToDecl(DeclTy *dcl, ExprTy *init) {
Steve Naroff410e3e22007-09-12 20:13:48 +00001299 Decl *RealDecl = static_cast<Decl *>(dcl);
Steve Naroffbb204692007-09-12 14:07:44 +00001300 Expr *Init = static_cast<Expr *>(init);
Chris Lattner9a11b9a2007-10-19 20:10:30 +00001301 assert(Init && "missing initializer");
Steve Naroffbb204692007-09-12 14:07:44 +00001302
Chris Lattner9a11b9a2007-10-19 20:10:30 +00001303 // If there is no declaration, there was an error parsing it. Just ignore
1304 // the initializer.
1305 if (RealDecl == 0) {
1306 delete Init;
1307 return;
1308 }
Steve Naroffbb204692007-09-12 14:07:44 +00001309
Steve Naroff410e3e22007-09-12 20:13:48 +00001310 VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl);
1311 if (!VDecl) {
Steve Naroff8e74c932007-09-13 21:41:19 +00001312 Diag(dyn_cast<ScopedDecl>(RealDecl)->getLocation(),
1313 diag::err_illegal_initializer);
Steve Naroff410e3e22007-09-12 20:13:48 +00001314 RealDecl->setInvalidDecl();
1315 return;
1316 }
Steve Naroffbb204692007-09-12 14:07:44 +00001317 // Get the decls type and save a reference for later, since
Steve Naroffd0091aa2008-01-10 22:15:12 +00001318 // CheckInitializerTypes may change it.
Steve Naroff410e3e22007-09-12 20:13:48 +00001319 QualType DclT = VDecl->getType(), SavT = DclT;
Steve Naroff248a7532008-04-15 22:42:06 +00001320 if (VDecl->isBlockVarDecl()) {
1321 VarDecl::StorageClass SC = VDecl->getStorageClass();
Steve Naroffbb204692007-09-12 14:07:44 +00001322 if (SC == VarDecl::Extern) { // C99 6.7.8p5
Steve Naroff410e3e22007-09-12 20:13:48 +00001323 Diag(VDecl->getLocation(), diag::err_block_extern_cant_init);
Steve Naroff248a7532008-04-15 22:42:06 +00001324 VDecl->setInvalidDecl();
1325 } else if (!VDecl->isInvalidDecl()) {
Steve Naroffa9960332008-01-25 00:51:06 +00001326 if (CheckInitializerTypes(Init, DclT))
Steve Naroff248a7532008-04-15 22:42:06 +00001327 VDecl->setInvalidDecl();
Steve Naroffd0091aa2008-01-10 22:15:12 +00001328 if (SC == VarDecl::Static) // C99 6.7.8p4.
1329 CheckForConstantInitializer(Init, DclT);
Steve Naroffbb204692007-09-12 14:07:44 +00001330 }
Steve Naroff248a7532008-04-15 22:42:06 +00001331 } else if (VDecl->isFileVarDecl()) {
1332 if (VDecl->getStorageClass() == VarDecl::Extern)
Steve Naroff410e3e22007-09-12 20:13:48 +00001333 Diag(VDecl->getLocation(), diag::warn_extern_init);
Steve Naroff248a7532008-04-15 22:42:06 +00001334 if (!VDecl->isInvalidDecl())
Steve Naroffa9960332008-01-25 00:51:06 +00001335 if (CheckInitializerTypes(Init, DclT))
Steve Naroff248a7532008-04-15 22:42:06 +00001336 VDecl->setInvalidDecl();
Steve Naroffd0091aa2008-01-10 22:15:12 +00001337
1338 // C99 6.7.8p4. All file scoped initializers need to be constant.
1339 CheckForConstantInitializer(Init, DclT);
Steve Naroffbb204692007-09-12 14:07:44 +00001340 }
1341 // If the type changed, it means we had an incomplete type that was
1342 // completed by the initializer. For example:
1343 // int ary[] = { 1, 3, 5 };
1344 // "ary" transitions from a VariableArrayType to a ConstantArrayType.
Christopher Lamb48b12392007-11-29 19:09:19 +00001345 if (!VDecl->isInvalidDecl() && (DclT != SavT)) {
Steve Naroff410e3e22007-09-12 20:13:48 +00001346 VDecl->setType(DclT);
Christopher Lamb48b12392007-11-29 19:09:19 +00001347 Init->setType(DclT);
1348 }
Steve Naroffbb204692007-09-12 14:07:44 +00001349
1350 // Attach the initializer to the decl.
Steve Naroff410e3e22007-09-12 20:13:48 +00001351 VDecl->setInit(Init);
Steve Naroffbb204692007-09-12 14:07:44 +00001352 return;
1353}
1354
Reid Spencer5f016e22007-07-11 17:01:13 +00001355/// The declarators are chained together backwards, reverse the list.
1356Sema::DeclTy *Sema::FinalizeDeclaratorGroup(Scope *S, DeclTy *group) {
1357 // Often we have single declarators, handle them quickly.
Steve Naroff94745042007-09-13 23:52:58 +00001358 Decl *GroupDecl = static_cast<Decl*>(group);
1359 if (GroupDecl == 0)
Steve Naroffbb204692007-09-12 14:07:44 +00001360 return 0;
Steve Naroff94745042007-09-13 23:52:58 +00001361
1362 ScopedDecl *Group = dyn_cast<ScopedDecl>(GroupDecl);
1363 ScopedDecl *NewGroup = 0;
Steve Naroffbb204692007-09-12 14:07:44 +00001364 if (Group->getNextDeclarator() == 0)
Reid Spencer5f016e22007-07-11 17:01:13 +00001365 NewGroup = Group;
Steve Naroffbb204692007-09-12 14:07:44 +00001366 else { // reverse the list.
1367 while (Group) {
Steve Naroff94745042007-09-13 23:52:58 +00001368 ScopedDecl *Next = Group->getNextDeclarator();
Steve Naroffbb204692007-09-12 14:07:44 +00001369 Group->setNextDeclarator(NewGroup);
1370 NewGroup = Group;
1371 Group = Next;
1372 }
1373 }
1374 // Perform semantic analysis that depends on having fully processed both
1375 // the declarator and initializer.
Steve Naroff94745042007-09-13 23:52:58 +00001376 for (ScopedDecl *ID = NewGroup; ID; ID = ID->getNextDeclarator()) {
Steve Naroffbb204692007-09-12 14:07:44 +00001377 VarDecl *IDecl = dyn_cast<VarDecl>(ID);
1378 if (!IDecl)
1379 continue;
Steve Naroffbb204692007-09-12 14:07:44 +00001380 QualType T = IDecl->getType();
1381
1382 // C99 6.7.5.2p2: If an identifier is declared to be an object with
1383 // static storage duration, it shall not have a variable length array.
Steve Naroff248a7532008-04-15 22:42:06 +00001384 if ((IDecl->isFileVarDecl() || IDecl->isBlockVarDecl()) &&
1385 IDecl->getStorageClass() == VarDecl::Static) {
Chris Lattnerc63a1f22008-08-04 07:31:14 +00001386 if (T->isVariableArrayType()) {
Eli Friedmanc5773c42008-02-15 18:16:39 +00001387 Diag(IDecl->getLocation(), diag::err_typecheck_illegal_vla);
1388 IDecl->setInvalidDecl();
Steve Naroffbb204692007-09-12 14:07:44 +00001389 }
1390 }
1391 // Block scope. C99 6.7p7: If an identifier for an object is declared with
1392 // no linkage (C99 6.2.2p6), the type for the object shall be complete...
Steve Naroff248a7532008-04-15 22:42:06 +00001393 if (IDecl->isBlockVarDecl() &&
1394 IDecl->getStorageClass() != VarDecl::Extern) {
Chris Lattnerfd89bc82008-04-02 01:05:10 +00001395 if (T->isIncompleteType() && !IDecl->isInvalidDecl()) {
Chris Lattner8b1be772007-12-02 07:50:03 +00001396 Diag(IDecl->getLocation(), diag::err_typecheck_decl_incomplete_type,
1397 T.getAsString());
Steve Naroffbb204692007-09-12 14:07:44 +00001398 IDecl->setInvalidDecl();
1399 }
1400 }
1401 // File scope. C99 6.9.2p2: A declaration of an identifier for and
1402 // object that has file scope without an initializer, and without a
1403 // storage-class specifier or with the storage-class specifier "static",
1404 // constitutes a tentative definition. Note: A tentative definition with
1405 // external linkage is valid (C99 6.2.2p5).
Steve Naroffff9eb1f2008-08-08 17:50:35 +00001406 if (isTentativeDefinition(IDecl)) {
Eli Friedman9db13972008-02-15 12:53:51 +00001407 if (T->isIncompleteArrayType()) {
Steve Naroff9a75f8a2008-01-18 20:40:52 +00001408 // C99 6.9.2 (p2, p5): Implicit initialization causes an incomplete
1409 // array to be completed. Don't issue a diagnostic.
Chris Lattnerfd89bc82008-04-02 01:05:10 +00001410 } else if (T->isIncompleteType() && !IDecl->isInvalidDecl()) {
Steve Naroff9a75f8a2008-01-18 20:40:52 +00001411 // C99 6.9.2p3: If the declaration of an identifier for an object is
1412 // a tentative definition and has internal linkage (C99 6.2.2p3), the
1413 // declared type shall not be an incomplete type.
Chris Lattner8b1be772007-12-02 07:50:03 +00001414 Diag(IDecl->getLocation(), diag::err_typecheck_decl_incomplete_type,
1415 T.getAsString());
Steve Naroffbb204692007-09-12 14:07:44 +00001416 IDecl->setInvalidDecl();
1417 }
1418 }
Steve Naroffff9eb1f2008-08-08 17:50:35 +00001419 if (IDecl->isFileVarDecl())
1420 CheckForFileScopedRedefinitions(S, IDecl);
Reid Spencer5f016e22007-07-11 17:01:13 +00001421 }
1422 return NewGroup;
1423}
Steve Naroffe1223f72007-08-28 03:03:08 +00001424
Chris Lattner04421082008-04-08 04:40:51 +00001425/// ActOnParamDeclarator - Called from Parser::ParseFunctionDeclarator()
1426/// to introduce parameters into function prototype scope.
1427Sema::DeclTy *
1428Sema::ActOnParamDeclarator(Scope *S, Declarator &D) {
Chris Lattner985abd92008-06-26 06:49:43 +00001429 const DeclSpec &DS = D.getDeclSpec();
Chris Lattner04421082008-04-08 04:40:51 +00001430
1431 // Verify C99 6.7.5.3p2: The only SCS allowed is 'register'.
1432 if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified &&
1433 DS.getStorageClassSpec() != DeclSpec::SCS_register) {
1434 Diag(DS.getStorageClassSpecLoc(),
1435 diag::err_invalid_storage_class_in_func_decl);
Chris Lattner985abd92008-06-26 06:49:43 +00001436 D.getMutableDeclSpec().ClearStorageClassSpecs();
Chris Lattner04421082008-04-08 04:40:51 +00001437 }
1438 if (DS.isThreadSpecified()) {
1439 Diag(DS.getThreadSpecLoc(),
1440 diag::err_invalid_storage_class_in_func_decl);
Chris Lattner985abd92008-06-26 06:49:43 +00001441 D.getMutableDeclSpec().ClearStorageClassSpecs();
Chris Lattner04421082008-04-08 04:40:51 +00001442 }
1443
Douglas Gregor6d6eb572008-05-07 04:49:29 +00001444 // Check that there are no default arguments inside the type of this
1445 // parameter (C++ only).
1446 if (getLangOptions().CPlusPlus)
1447 CheckExtraCXXDefaultArguments(D);
1448
Chris Lattner04421082008-04-08 04:40:51 +00001449 // In this context, we *do not* check D.getInvalidType(). If the declarator
1450 // type was invalid, GetTypeForDeclarator() still returns a "valid" type,
1451 // though it will not reflect the user specified type.
1452 QualType parmDeclType = GetTypeForDeclarator(D, S);
1453
1454 assert(!parmDeclType.isNull() && "GetTypeForDeclarator() returned null type");
1455
Reid Spencer5f016e22007-07-11 17:01:13 +00001456 // TODO: CHECK FOR CONFLICTS, multiple decls with same name in one scope.
1457 // Can this happen for params? We already checked that they don't conflict
1458 // among each other. Here they can only shadow globals, which is ok.
Chris Lattner04421082008-04-08 04:40:51 +00001459 IdentifierInfo *II = D.getIdentifier();
1460 if (Decl *PrevDecl = LookupDecl(II, Decl::IDNS_Ordinary, S)) {
1461 if (S->isDeclScope(PrevDecl)) {
1462 Diag(D.getIdentifierLoc(), diag::err_param_redefinition,
1463 dyn_cast<NamedDecl>(PrevDecl)->getName());
1464
1465 // Recover by removing the name
1466 II = 0;
1467 D.SetIdentifier(0, D.getIdentifierLoc());
1468 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001469 }
Steve Naroff6a9f3e32007-08-07 22:44:21 +00001470
1471 // Perform the default function/array conversion (C99 6.7.5.3p[7,8]).
1472 // Doing the promotion here has a win and a loss. The win is the type for
1473 // both Decl's and DeclRefExpr's will match (a convenient invariant for the
1474 // code generator). The loss is the orginal type isn't preserved. For example:
1475 //
1476 // void func(int parmvardecl[5]) { // convert "int [5]" to "int *"
1477 // int blockvardecl[5];
1478 // sizeof(parmvardecl); // size == 4
1479 // sizeof(blockvardecl); // size == 20
1480 // }
1481 //
1482 // For expressions, all implicit conversions are captured using the
1483 // ImplicitCastExpr AST node (we have no such mechanism for Decl's).
1484 //
1485 // FIXME: If a source translation tool needs to see the original type, then
1486 // we need to consider storing both types (in ParmVarDecl)...
1487 //
Chris Lattnere6327742008-04-02 05:18:44 +00001488 if (parmDeclType->isArrayType()) {
Chris Lattner529bd022008-01-02 22:50:48 +00001489 // int x[restrict 4] -> int *restrict
Chris Lattnere6327742008-04-02 05:18:44 +00001490 parmDeclType = Context.getArrayDecayedType(parmDeclType);
Chris Lattner529bd022008-01-02 22:50:48 +00001491 } else if (parmDeclType->isFunctionType())
Steve Naroff6a9f3e32007-08-07 22:44:21 +00001492 parmDeclType = Context.getPointerType(parmDeclType);
1493
Chris Lattner04421082008-04-08 04:40:51 +00001494 ParmVarDecl *New = ParmVarDecl::Create(Context, CurContext,
1495 D.getIdentifierLoc(), II,
1496 parmDeclType, VarDecl::None,
1497 0, 0);
Anders Carlssonf78915f2008-02-15 07:04:12 +00001498
Chris Lattner04421082008-04-08 04:40:51 +00001499 if (D.getInvalidType())
Steve Naroff53a32342007-08-28 18:45:29 +00001500 New->setInvalidDecl();
1501
Argyrios Kyrtzidis87f3ff02008-04-12 00:47:19 +00001502 if (II)
1503 PushOnScopeChains(New, S);
Nate Begemanb7894b52008-02-17 21:20:31 +00001504
Chris Lattner3ff30c82008-06-29 00:02:00 +00001505 ProcessDeclAttributes(New, D);
Reid Spencer5f016e22007-07-11 17:01:13 +00001506 return New;
Chris Lattner04421082008-04-08 04:40:51 +00001507
Reid Spencer5f016e22007-07-11 17:01:13 +00001508}
Fariborz Jahanian306d68f2007-11-08 23:49:49 +00001509
Chris Lattnerb652cea2007-10-09 17:14:05 +00001510Sema::DeclTy *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Declarator &D) {
Argyrios Kyrtzidis53d0ea52008-06-28 06:07:14 +00001511 assert(getCurFunctionDecl() == 0 && "Function parsing confused");
Reid Spencer5f016e22007-07-11 17:01:13 +00001512 assert(D.getTypeObject(0).Kind == DeclaratorChunk::Function &&
1513 "Not a function declarator!");
1514 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
Chris Lattner04421082008-04-08 04:40:51 +00001515
Reid Spencer5f016e22007-07-11 17:01:13 +00001516 // Verify 6.9.1p6: 'every identifier in the identifier list shall be declared'
1517 // for a K&R function.
1518 if (!FTI.hasPrototype) {
1519 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) {
Chris Lattner04421082008-04-08 04:40:51 +00001520 if (FTI.ArgInfo[i].Param == 0) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001521 Diag(FTI.ArgInfo[i].IdentLoc, diag::ext_param_not_declared,
1522 FTI.ArgInfo[i].Ident->getName());
1523 // Implicitly declare the argument as type 'int' for lack of a better
1524 // type.
Chris Lattner04421082008-04-08 04:40:51 +00001525 DeclSpec DS;
1526 const char* PrevSpec; // unused
1527 DS.SetTypeSpecType(DeclSpec::TST_int, FTI.ArgInfo[i].IdentLoc,
1528 PrevSpec);
1529 Declarator ParamD(DS, Declarator::KNRTypeListContext);
1530 ParamD.SetIdentifier(FTI.ArgInfo[i].Ident, FTI.ArgInfo[i].IdentLoc);
1531 FTI.ArgInfo[i].Param = ActOnParamDeclarator(FnBodyScope, ParamD);
Reid Spencer5f016e22007-07-11 17:01:13 +00001532 }
1533 }
Chris Lattner52804082008-02-17 19:31:09 +00001534
Reid Spencer5f016e22007-07-11 17:01:13 +00001535 // Since this is a function definition, act as though we have information
1536 // about the arguments.
Chris Lattner52804082008-02-17 19:31:09 +00001537 if (FTI.NumArgs)
1538 FTI.hasPrototype = true;
Reid Spencer5f016e22007-07-11 17:01:13 +00001539 } else {
Chris Lattner04421082008-04-08 04:40:51 +00001540 // FIXME: Diagnose arguments without names in C.
Reid Spencer5f016e22007-07-11 17:01:13 +00001541 }
1542
1543 Scope *GlobalScope = FnBodyScope->getParent();
Steve Naroffadbbd0c2008-01-14 20:51:29 +00001544
1545 // See if this is a redefinition.
Steve Naroffe8043c32008-04-01 23:04:06 +00001546 Decl *PrevDcl = LookupDecl(D.getIdentifier(), Decl::IDNS_Ordinary,
Steve Naroffb327ce02008-04-02 14:35:35 +00001547 GlobalScope);
Argyrios Kyrtzidis00bc6452008-05-09 23:39:43 +00001548 if (PrevDcl && IdResolver.isDeclInScope(PrevDcl, CurContext)) {
1549 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(PrevDcl)) {
1550 const FunctionDecl *Definition;
1551 if (FD->getBody(Definition)) {
1552 Diag(D.getIdentifierLoc(), diag::err_redefinition,
1553 D.getIdentifier()->getName());
1554 Diag(Definition->getLocation(), diag::err_previous_definition);
1555 }
Steve Naroffadbbd0c2008-01-14 20:51:29 +00001556 }
1557 }
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001558
1559 return ActOnStartOfFunctionDef(FnBodyScope,
Daniel Dunbar914701e2008-08-05 16:28:08 +00001560 ActOnDeclarator(GlobalScope, D, 0));
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001561}
1562
1563Sema::DeclTy *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, DeclTy *D) {
1564 Decl *decl = static_cast<Decl*>(D);
Chris Lattnere9ba3232008-02-16 01:20:36 +00001565 FunctionDecl *FD = cast<FunctionDecl>(decl);
Chris Lattnerb048c982008-04-06 04:47:34 +00001566 PushDeclContext(FD);
Chris Lattner04421082008-04-08 04:40:51 +00001567
1568 // Check the validity of our function parameters
1569 CheckParmsForFunctionDef(FD);
1570
1571 // Introduce our parameters into the function scope
1572 for (unsigned p = 0, NumParams = FD->getNumParams(); p < NumParams; ++p) {
1573 ParmVarDecl *Param = FD->getParamDecl(p);
1574 // If this has an identifier, add it to the scope stack.
Argyrios Kyrtzidis87f3ff02008-04-12 00:47:19 +00001575 if (Param->getIdentifier())
1576 PushOnScopeChains(Param, FnBodyScope);
Reid Spencer5f016e22007-07-11 17:01:13 +00001577 }
Chris Lattner04421082008-04-08 04:40:51 +00001578
Reid Spencer5f016e22007-07-11 17:01:13 +00001579 return FD;
1580}
1581
Steve Naroffd6d054d2007-11-11 23:20:51 +00001582Sema::DeclTy *Sema::ActOnFinishFunctionBody(DeclTy *D, StmtTy *Body) {
1583 Decl *dcl = static_cast<Decl *>(D);
Steve Naroff394f3f42008-07-25 17:57:26 +00001584 if (FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(dcl)) {
Steve Naroffd6d054d2007-11-11 23:20:51 +00001585 FD->setBody((Stmt*)Body);
Argyrios Kyrtzidis53d0ea52008-06-28 06:07:14 +00001586 assert(FD == getCurFunctionDecl() && "Function parsing confused");
Steve Naroff394f3f42008-07-25 17:57:26 +00001587 } else if (ObjCMethodDecl *MD = dyn_cast_or_null<ObjCMethodDecl>(dcl)) {
Steve Naroffd6d054d2007-11-11 23:20:51 +00001588 MD->setBody((Stmt*)Body);
Steve Naroff394f3f42008-07-25 17:57:26 +00001589 } else
1590 return 0;
Chris Lattnerb048c982008-04-06 04:47:34 +00001591 PopDeclContext();
Reid Spencer5f016e22007-07-11 17:01:13 +00001592 // Verify and clean out per-function state.
1593
1594 // Check goto/label use.
1595 for (llvm::DenseMap<IdentifierInfo*, LabelStmt*>::iterator
1596 I = LabelMap.begin(), E = LabelMap.end(); I != E; ++I) {
1597 // Verify that we have no forward references left. If so, there was a goto
1598 // or address of a label taken, but no definition of it. Label fwd
1599 // definitions are indicated with a null substmt.
1600 if (I->second->getSubStmt() == 0) {
1601 LabelStmt *L = I->second;
1602 // Emit error.
1603 Diag(L->getIdentLoc(), diag::err_undeclared_label_use, L->getName());
1604
1605 // At this point, we have gotos that use the bogus label. Stitch it into
1606 // the function body so that they aren't leaked and that the AST is well
1607 // formed.
Chris Lattner0cbc2152008-01-25 00:01:10 +00001608 if (Body) {
1609 L->setSubStmt(new NullStmt(L->getIdentLoc()));
1610 cast<CompoundStmt>((Stmt*)Body)->push_back(L);
1611 } else {
1612 // The whole function wasn't parsed correctly, just delete this.
1613 delete L;
1614 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001615 }
1616 }
1617 LabelMap.clear();
1618
Steve Naroffd6d054d2007-11-11 23:20:51 +00001619 return D;
Fariborz Jahanian60fbca02007-11-10 16:31:34 +00001620}
1621
Reid Spencer5f016e22007-07-11 17:01:13 +00001622/// ImplicitlyDefineFunction - An undeclared identifier was used in a function
1623/// call, forming a call to an implicitly defined function (per C99 6.5.1p2).
Steve Naroff8c9f13e2007-09-16 16:16:00 +00001624ScopedDecl *Sema::ImplicitlyDefineFunction(SourceLocation Loc,
1625 IdentifierInfo &II, Scope *S) {
Chris Lattner37d10842008-05-05 21:18:06 +00001626 // Extension in C99. Legal in C90, but warn about it.
1627 if (getLangOptions().C99)
Reid Spencer5f016e22007-07-11 17:01:13 +00001628 Diag(Loc, diag::ext_implicit_function_decl, II.getName());
Chris Lattner37d10842008-05-05 21:18:06 +00001629 else
Reid Spencer5f016e22007-07-11 17:01:13 +00001630 Diag(Loc, diag::warn_implicit_function_decl, II.getName());
1631
1632 // FIXME: handle stuff like:
1633 // void foo() { extern float X(); }
1634 // void bar() { X(); } <-- implicit decl for X in another scope.
1635
1636 // Set a Declarator for the implicit definition: int foo();
1637 const char *Dummy;
1638 DeclSpec DS;
1639 bool Error = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, Dummy);
1640 Error = Error; // Silence warning.
1641 assert(!Error && "Error setting up implicit decl!");
1642 Declarator D(DS, Declarator::BlockContext);
1643 D.AddTypeInfo(DeclaratorChunk::getFunction(false, false, 0, 0, Loc));
1644 D.SetIdentifier(&II, Loc);
1645
Argyrios Kyrtzidis93213bb2008-05-01 21:04:16 +00001646 // Insert this function into translation-unit scope.
1647
1648 DeclContext *PrevDC = CurContext;
1649 CurContext = Context.getTranslationUnitDecl();
1650
Steve Naroffe2ef8152008-04-04 14:32:09 +00001651 FunctionDecl *FD =
Daniel Dunbar914701e2008-08-05 16:28:08 +00001652 dyn_cast<FunctionDecl>(static_cast<Decl*>(ActOnDeclarator(TUScope, D, 0)));
Steve Naroffe2ef8152008-04-04 14:32:09 +00001653 FD->setImplicit();
Argyrios Kyrtzidis93213bb2008-05-01 21:04:16 +00001654
1655 CurContext = PrevDC;
1656
Steve Naroffe2ef8152008-04-04 14:32:09 +00001657 return FD;
Reid Spencer5f016e22007-07-11 17:01:13 +00001658}
1659
1660
Chris Lattner41af0932007-11-14 06:34:38 +00001661TypedefDecl *Sema::ParseTypedefDecl(Scope *S, Declarator &D, QualType T,
Steve Naroff94745042007-09-13 23:52:58 +00001662 ScopedDecl *LastDeclarator) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001663 assert(D.getIdentifier() && "Wrong callback for declspec without declarator");
Steve Naroff5912a352007-08-28 20:14:24 +00001664 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
Reid Spencer5f016e22007-07-11 17:01:13 +00001665
1666 // Scope manipulation handled by caller.
Chris Lattner0ed844b2008-04-04 06:12:32 +00001667 TypedefDecl *NewTD = TypedefDecl::Create(Context, CurContext,
1668 D.getIdentifierLoc(),
Chris Lattner6c2b6eb2008-03-15 06:12:44 +00001669 D.getIdentifier(),
Chris Lattnerc63e6602008-03-15 21:32:50 +00001670 T, LastDeclarator);
Steve Naroff5912a352007-08-28 20:14:24 +00001671 if (D.getInvalidType())
1672 NewTD->setInvalidDecl();
1673 return NewTD;
Reid Spencer5f016e22007-07-11 17:01:13 +00001674}
1675
Steve Naroff08d92e42007-09-15 18:49:24 +00001676/// ActOnTag - This is invoked when we see 'struct foo' or 'struct {'. In the
Reid Spencer5f016e22007-07-11 17:01:13 +00001677/// former case, Name will be non-null. In the later case, Name will be null.
1678/// TagType indicates what kind of tag this is. TK indicates whether this is a
1679/// reference/declaration/definition of a tag.
Steve Naroff08d92e42007-09-15 18:49:24 +00001680Sema::DeclTy *Sema::ActOnTag(Scope *S, unsigned TagType, TagKind TK,
Reid Spencer5f016e22007-07-11 17:01:13 +00001681 SourceLocation KWLoc, IdentifierInfo *Name,
1682 SourceLocation NameLoc, AttributeList *Attr) {
1683 // If this is a use of an existing tag, it must have a name.
1684 assert((Name != 0 || TK == TK_Definition) &&
1685 "Nameless record must be a definition!");
1686
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +00001687 TagDecl::TagKind Kind;
Reid Spencer5f016e22007-07-11 17:01:13 +00001688 switch (TagType) {
1689 default: assert(0 && "Unknown tag type!");
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +00001690 case DeclSpec::TST_struct: Kind = TagDecl::TK_struct; break;
1691 case DeclSpec::TST_union: Kind = TagDecl::TK_union; break;
1692 case DeclSpec::TST_class: Kind = TagDecl::TK_class; break;
1693 case DeclSpec::TST_enum: Kind = TagDecl::TK_enum; break;
Reid Spencer5f016e22007-07-11 17:01:13 +00001694 }
1695
1696 // If this is a named struct, check to see if there was a previous forward
1697 // declaration or definition.
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00001698 // Use ScopedDecl instead of TagDecl, because a NamespaceDecl may come up.
1699 if (ScopedDecl *PrevDecl =
1700 dyn_cast_or_null<ScopedDecl>(LookupDecl(Name, Decl::IDNS_Tag, S))) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001701
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00001702 assert((isa<TagDecl>(PrevDecl) || isa<NamespaceDecl>(PrevDecl)) &&
1703 "unexpected Decl type");
1704 if (TagDecl *PrevTagDecl = dyn_cast<TagDecl>(PrevDecl)) {
Chris Lattner14943b92008-07-03 03:30:58 +00001705 // If this is a use of a previous tag, or if the tag is already declared
1706 // in the same scope (so that the definition/declaration completes or
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00001707 // rementions the tag), reuse the decl.
Argyrios Kyrtzidis00bc6452008-05-09 23:39:43 +00001708 if (TK == TK_Reference ||
1709 IdResolver.isDeclInScope(PrevDecl, CurContext, S)) {
Chris Lattner14943b92008-07-03 03:30:58 +00001710 // Make sure that this wasn't declared as an enum and now used as a
1711 // struct or something similar.
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +00001712 if (PrevTagDecl->getTagKind() != Kind) {
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00001713 Diag(KWLoc, diag::err_use_with_wrong_tag, Name->getName());
1714 Diag(PrevDecl->getLocation(), diag::err_previous_use);
Chris Lattner14943b92008-07-03 03:30:58 +00001715 // Recover by making this an anonymous redefinition.
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00001716 Name = 0;
Chris Lattner14943b92008-07-03 03:30:58 +00001717 PrevDecl = 0;
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00001718 } else {
Chris Lattner14943b92008-07-03 03:30:58 +00001719 // If this is a use or a forward declaration, we're good.
1720 if (TK != TK_Definition)
1721 return PrevDecl;
1722
1723 // Diagnose attempts to redefine a tag.
1724 if (PrevTagDecl->isDefinition()) {
1725 Diag(NameLoc, diag::err_redefinition, Name->getName());
1726 Diag(PrevDecl->getLocation(), diag::err_previous_definition);
1727 // If this is a redefinition, recover by making this struct be
1728 // anonymous, which will make any later references get the previous
1729 // definition.
1730 Name = 0;
1731 } else {
1732 // Okay, this is definition of a previously declared or referenced
1733 // tag. Move the location of the decl to be the definition site.
1734 PrevDecl->setLocation(NameLoc);
1735 return PrevDecl;
1736 }
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00001737 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001738 }
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +00001739 // If we get here, this is a definition of a new struct type in a nested
1740 // scope, e.g. "struct foo; void bar() { struct foo; }", just create a new
1741 // type.
1742 } else {
Argyrios Kyrtzidisb02ef242008-07-16 07:45:46 +00001743 // PrevDecl is a namespace.
1744 if (IdResolver.isDeclInScope(PrevDecl, CurContext, S)) {
1745 // The tag name clashes with a namespace name, issue an error and recover
1746 // by making this tag be anonymous.
1747 Diag(NameLoc, diag::err_redefinition_different_kind, Name->getName());
1748 Diag(PrevDecl->getLocation(), diag::err_previous_definition);
1749 Name = 0;
1750 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001751 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001752 }
1753
1754 // If there is an identifier, use the location of the identifier as the
1755 // location of the decl, otherwise use the location of the struct/union
1756 // keyword.
1757 SourceLocation Loc = NameLoc.isValid() ? NameLoc : KWLoc;
1758
1759 // Otherwise, if this is the first time we've seen this tag, create the decl.
1760 TagDecl *New;
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +00001761 if (Kind == TagDecl::TK_enum) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001762 // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
1763 // enum X { A, B, C } D; D should chain to X.
Chris Lattner0ed844b2008-04-04 06:12:32 +00001764 New = EnumDecl::Create(Context, CurContext, Loc, Name, 0);
Reid Spencer5f016e22007-07-11 17:01:13 +00001765 // If this is an undefined enum, warn.
1766 if (TK != TK_Definition) Diag(Loc, diag::ext_forward_ref_enum);
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +00001767 } else {
1768 // struct/union/class
1769
Reid Spencer5f016e22007-07-11 17:01:13 +00001770 // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
1771 // struct X { int A; } D; D should chain to X.
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001772 if (getLangOptions().CPlusPlus)
1773 // FIXME: Look for a way to use RecordDecl for simple structs.
1774 New = CXXRecordDecl::Create(Context, Kind, CurContext, Loc, Name, 0);
1775 else
1776 New = RecordDecl::Create(Context, Kind, CurContext, Loc, Name, 0);
1777 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001778
1779 // If this has an identifier, add it to the scope stack.
1780 if (Name) {
Chris Lattner31e05722007-08-26 06:24:45 +00001781 // The scope passed in may not be a decl scope. Zip up the scope tree until
1782 // we find one that is.
1783 while ((S->getFlags() & Scope::DeclScope) == 0)
1784 S = S->getParent();
1785
1786 // Add it to the decl chain.
Argyrios Kyrtzidis87f3ff02008-04-12 00:47:19 +00001787 PushOnScopeChains(New, S);
Reid Spencer5f016e22007-07-11 17:01:13 +00001788 }
Chris Lattnere1e79852008-02-06 00:51:33 +00001789
Chris Lattnerf2e4bd52008-06-28 23:58:55 +00001790 if (Attr)
1791 ProcessDeclAttributeList(New, Attr);
Reid Spencer5f016e22007-07-11 17:01:13 +00001792 return New;
1793}
1794
Chris Lattner5a6ddbf2008-06-21 19:39:06 +00001795/// Collect the instance variables declared in an Objective-C object. Used in
1796/// the creation of structures from objects using the @defs directive.
Ted Kremenek01e67792008-08-20 03:26:33 +00001797static void CollectIvars(ObjCInterfaceDecl *Class, ASTContext& Ctx,
Chris Lattner7caeabd2008-07-21 22:17:28 +00001798 llvm::SmallVectorImpl<Sema::DeclTy*> &ivars) {
Chris Lattner5a6ddbf2008-06-21 19:39:06 +00001799 if (Class->getSuperClass())
Ted Kremenek01e67792008-08-20 03:26:33 +00001800 CollectIvars(Class->getSuperClass(), Ctx, ivars);
1801
1802 // For each ivar, create a fresh ObjCAtDefsFieldDecl.
1803 for (ObjCInterfaceDecl::ivar_iterator I=Class->ivar_begin(), E=Class->ivar_end();
1804 I!=E; ++I) {
1805
1806 ObjCIvarDecl* ID = *I;
1807 ivars.push_back(ObjCAtDefsFieldDecl::Create(Ctx, ID->getLocation(),
1808 ID->getIdentifier(),
1809 ID->getType(),
1810 ID->getBitWidth()));
1811 }
Chris Lattner5a6ddbf2008-06-21 19:39:06 +00001812}
1813
1814/// Called whenever @defs(ClassName) is encountered in the source. Inserts the
1815/// instance variables of ClassName into Decls.
1816void Sema::ActOnDefs(Scope *S, SourceLocation DeclStart,
1817 IdentifierInfo *ClassName,
Chris Lattner7caeabd2008-07-21 22:17:28 +00001818 llvm::SmallVectorImpl<DeclTy*> &Decls) {
Chris Lattner5a6ddbf2008-06-21 19:39:06 +00001819 // Check that ClassName is a valid class
1820 ObjCInterfaceDecl *Class = getObjCInterfaceDecl(ClassName);
1821 if (!Class) {
1822 Diag(DeclStart, diag::err_undef_interface, ClassName->getName());
1823 return;
1824 }
Chris Lattner5a6ddbf2008-06-21 19:39:06 +00001825 // Collect the instance variables
Ted Kremenek01e67792008-08-20 03:26:33 +00001826 CollectIvars(Class, Context, Decls);
Chris Lattner5a6ddbf2008-06-21 19:39:06 +00001827}
1828
Eli Friedman1b76ada2008-06-03 21:01:11 +00001829QualType Sema::TryFixInvalidVariablyModifiedType(QualType T) {
1830 // This method tries to turn a variable array into a constant
1831 // array even when the size isn't an ICE. This is necessary
1832 // for compatibility with code that depends on gcc's buggy
1833 // constant expression folding, like struct {char x[(int)(char*)2];}
1834 if (const VariableArrayType* VLATy = dyn_cast<VariableArrayType>(T)) {
Anders Carlssonc44eec62008-07-03 04:20:39 +00001835 APValue Result;
Eli Friedman1b76ada2008-06-03 21:01:11 +00001836 if (VLATy->getSizeExpr() &&
Chris Lattnercf0f51d2008-07-11 19:19:21 +00001837 VLATy->getSizeExpr()->tryEvaluate(Result, Context) && Result.isInt()) {
1838 llvm::APSInt &Res = Result.getInt();
1839 if (Res > llvm::APSInt(Res.getBitWidth(), Res.isUnsigned()))
1840 return Context.getConstantArrayType(VLATy->getElementType(),
1841 Res, ArrayType::Normal, 0);
Eli Friedman1b76ada2008-06-03 21:01:11 +00001842 }
1843 }
1844 return QualType();
1845}
1846
Steve Naroff08d92e42007-09-15 18:49:24 +00001847/// ActOnField - Each field of a struct/union/class is passed into this in order
Reid Spencer5f016e22007-07-11 17:01:13 +00001848/// to create a FieldDecl object for it.
Fariborz Jahanian1d78cc42008-04-10 23:32:45 +00001849Sema::DeclTy *Sema::ActOnField(Scope *S,
Reid Spencer5f016e22007-07-11 17:01:13 +00001850 SourceLocation DeclStart,
1851 Declarator &D, ExprTy *BitfieldWidth) {
1852 IdentifierInfo *II = D.getIdentifier();
1853 Expr *BitWidth = (Expr*)BitfieldWidth;
Reid Spencer5f016e22007-07-11 17:01:13 +00001854 SourceLocation Loc = DeclStart;
1855 if (II) Loc = D.getIdentifierLoc();
1856
1857 // FIXME: Unnamed fields can be handled in various different ways, for
1858 // example, unnamed unions inject all members into the struct namespace!
1859
1860
1861 if (BitWidth) {
1862 // TODO: Validate.
1863 //printf("WARNING: BITFIELDS IGNORED!\n");
1864
1865 // 6.7.2.1p3
1866 // 6.7.2.1p4
1867
1868 } else {
1869 // Not a bitfield.
1870
1871 // validate II.
1872
1873 }
1874
1875 QualType T = GetTypeForDeclarator(D, S);
Steve Naroff5912a352007-08-28 20:14:24 +00001876 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
1877 bool InvalidDecl = false;
Steve Naroffd7444aa2007-08-31 17:20:07 +00001878
Reid Spencer5f016e22007-07-11 17:01:13 +00001879 // C99 6.7.2.1p8: A member of a structure or union may have any type other
1880 // than a variably modified type.
Eli Friedman9db13972008-02-15 12:53:51 +00001881 if (T->isVariablyModifiedType()) {
Eli Friedman1b76ada2008-06-03 21:01:11 +00001882 QualType FixedTy = TryFixInvalidVariablyModifiedType(T);
1883 if (!FixedTy.isNull()) {
1884 Diag(Loc, diag::warn_illegal_constant_array_size, Loc);
1885 T = FixedTy;
1886 } else {
1887 // FIXME: This diagnostic needs work
1888 Diag(Loc, diag::err_typecheck_illegal_vla, Loc);
1889 InvalidDecl = true;
1890 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001891 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001892 // FIXME: Chain fielddecls together.
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00001893 FieldDecl *NewFD;
1894
1895 if (getLangOptions().CPlusPlus) {
1896 // FIXME: Replace CXXFieldDecls with FieldDecls for simple structs.
1897 NewFD = CXXFieldDecl::Create(Context, cast<CXXRecordDecl>(CurContext),
1898 Loc, II, T, BitWidth);
1899 if (II)
1900 PushOnScopeChains(NewFD, S);
1901 }
1902 else
1903 NewFD = FieldDecl::Create(Context, Loc, II, T, BitWidth);
Steve Naroff44739212007-09-11 21:17:26 +00001904
Chris Lattner3ff30c82008-06-29 00:02:00 +00001905 ProcessDeclAttributes(NewFD, D);
Anders Carlssonad148062008-02-16 00:29:18 +00001906
Steve Naroff5912a352007-08-28 20:14:24 +00001907 if (D.getInvalidType() || InvalidDecl)
1908 NewFD->setInvalidDecl();
1909 return NewFD;
Reid Spencer5f016e22007-07-11 17:01:13 +00001910}
1911
Fariborz Jahanian89204a12007-10-01 16:53:59 +00001912/// TranslateIvarVisibility - Translate visibility from a token ID to an
1913/// AST enum value.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001914static ObjCIvarDecl::AccessControl
Fariborz Jahanian89204a12007-10-01 16:53:59 +00001915TranslateIvarVisibility(tok::ObjCKeywordKind ivarVisibility) {
Steve Narofff13271f2007-09-14 23:09:53 +00001916 switch (ivarVisibility) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001917 case tok::objc_private: return ObjCIvarDecl::Private;
1918 case tok::objc_public: return ObjCIvarDecl::Public;
1919 case tok::objc_protected: return ObjCIvarDecl::Protected;
1920 case tok::objc_package: return ObjCIvarDecl::Package;
Fariborz Jahanian89204a12007-10-01 16:53:59 +00001921 default: assert(false && "Unknown visitibility kind");
Steve Narofff13271f2007-09-14 23:09:53 +00001922 }
1923}
1924
Fariborz Jahanian45bc03f2008-04-11 16:55:42 +00001925/// ActOnIvar - Each ivar field of an objective-c class is passed into this
1926/// in order to create an IvarDecl object for it.
Fariborz Jahanian1d78cc42008-04-10 23:32:45 +00001927Sema::DeclTy *Sema::ActOnIvar(Scope *S,
Fariborz Jahanian45bc03f2008-04-11 16:55:42 +00001928 SourceLocation DeclStart,
1929 Declarator &D, ExprTy *BitfieldWidth,
1930 tok::ObjCKeywordKind Visibility) {
Fariborz Jahanian1d78cc42008-04-10 23:32:45 +00001931 IdentifierInfo *II = D.getIdentifier();
1932 Expr *BitWidth = (Expr*)BitfieldWidth;
1933 SourceLocation Loc = DeclStart;
1934 if (II) Loc = D.getIdentifierLoc();
1935
1936 // FIXME: Unnamed fields can be handled in various different ways, for
1937 // example, unnamed unions inject all members into the struct namespace!
1938
1939
1940 if (BitWidth) {
1941 // TODO: Validate.
1942 //printf("WARNING: BITFIELDS IGNORED!\n");
1943
1944 // 6.7.2.1p3
1945 // 6.7.2.1p4
1946
1947 } else {
1948 // Not a bitfield.
1949
1950 // validate II.
1951
1952 }
1953
1954 QualType T = GetTypeForDeclarator(D, S);
1955 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
1956 bool InvalidDecl = false;
1957
1958 // C99 6.7.2.1p8: A member of a structure or union may have any type other
1959 // than a variably modified type.
1960 if (T->isVariablyModifiedType()) {
1961 // FIXME: This diagnostic needs work
1962 Diag(Loc, diag::err_typecheck_illegal_vla, Loc);
1963 InvalidDecl = true;
1964 }
1965
Ted Kremenekb8db21d2008-07-23 18:04:17 +00001966 // Get the visibility (access control) for this ivar.
1967 ObjCIvarDecl::AccessControl ac =
1968 Visibility != tok::objc_not_keyword ? TranslateIvarVisibility(Visibility)
1969 : ObjCIvarDecl::None;
1970
1971 // Construct the decl.
1972 ObjCIvarDecl *NewID = ObjCIvarDecl::Create(Context, Loc, II, T, ac,
Steve Naroff8f3b2652008-07-16 18:22:22 +00001973 (Expr *)BitfieldWidth);
Fariborz Jahanian1d78cc42008-04-10 23:32:45 +00001974
Ted Kremenekb8db21d2008-07-23 18:04:17 +00001975 // Process attributes attached to the ivar.
Chris Lattner3ff30c82008-06-29 00:02:00 +00001976 ProcessDeclAttributes(NewID, D);
Fariborz Jahanian1d78cc42008-04-10 23:32:45 +00001977
1978 if (D.getInvalidType() || InvalidDecl)
1979 NewID->setInvalidDecl();
Ted Kremenekb8db21d2008-07-23 18:04:17 +00001980
Fariborz Jahanian1d78cc42008-04-10 23:32:45 +00001981 return NewID;
1982}
1983
Fariborz Jahanian9d048ff2007-09-29 00:54:24 +00001984void Sema::ActOnFields(Scope* S,
Fariborz Jahanian3f5faf72007-10-04 00:45:27 +00001985 SourceLocation RecLoc, DeclTy *RecDecl,
Steve Naroff08d92e42007-09-15 18:49:24 +00001986 DeclTy **Fields, unsigned NumFields,
Fariborz Jahanian1d78cc42008-04-10 23:32:45 +00001987 SourceLocation LBrac, SourceLocation RBrac) {
Steve Naroff74216642007-09-14 22:20:54 +00001988 Decl *EnclosingDecl = static_cast<Decl*>(RecDecl);
1989 assert(EnclosingDecl && "missing record or interface decl");
1990 RecordDecl *Record = dyn_cast<RecordDecl>(EnclosingDecl);
1991
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001992 if (Record && Record->isDefinition()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001993 // Diagnose code like:
1994 // struct S { struct S {} X; };
1995 // We discover this when we complete the outer S. Reject and ignore the
1996 // outer S.
1997 Diag(Record->getLocation(), diag::err_nested_redefinition,
1998 Record->getKindName());
1999 Diag(RecLoc, diag::err_previous_definition);
Steve Naroff74216642007-09-14 22:20:54 +00002000 Record->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00002001 return;
2002 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002003 // Verify that all the fields are okay.
2004 unsigned NumNamedMembers = 0;
2005 llvm::SmallVector<FieldDecl*, 32> RecFields;
2006 llvm::SmallSet<const IdentifierInfo*, 32> FieldIDs;
Steve Naroff74216642007-09-14 22:20:54 +00002007
Reid Spencer5f016e22007-07-11 17:01:13 +00002008 for (unsigned i = 0; i != NumFields; ++i) {
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00002009
Steve Naroff74216642007-09-14 22:20:54 +00002010 FieldDecl *FD = cast_or_null<FieldDecl>(static_cast<Decl*>(Fields[i]));
2011 assert(FD && "missing field decl");
2012
2013 // Remember all fields.
2014 RecFields.push_back(FD);
Reid Spencer5f016e22007-07-11 17:01:13 +00002015
2016 // Get the type for the field.
Chris Lattner02c642e2007-07-31 21:33:24 +00002017 Type *FDTy = FD->getType().getTypePtr();
Steve Narofff13271f2007-09-14 23:09:53 +00002018
Reid Spencer5f016e22007-07-11 17:01:13 +00002019 // C99 6.7.2.1p2 - A field may not be a function type.
Chris Lattner02c642e2007-07-31 21:33:24 +00002020 if (FDTy->isFunctionType()) {
Steve Naroff74216642007-09-14 22:20:54 +00002021 Diag(FD->getLocation(), diag::err_field_declared_as_function,
Reid Spencer5f016e22007-07-11 17:01:13 +00002022 FD->getName());
Steve Naroff74216642007-09-14 22:20:54 +00002023 FD->setInvalidDecl();
2024 EnclosingDecl->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00002025 continue;
2026 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002027 // C99 6.7.2.1p2 - A field may not be an incomplete type except...
2028 if (FDTy->isIncompleteType()) {
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00002029 if (!Record) { // Incomplete ivar type is always an error.
Fariborz Jahanian3f5faf72007-10-04 00:45:27 +00002030 Diag(FD->getLocation(), diag::err_field_incomplete, FD->getName());
Steve Naroff74216642007-09-14 22:20:54 +00002031 FD->setInvalidDecl();
2032 EnclosingDecl->setInvalidDecl();
Fariborz Jahanian3f5faf72007-10-04 00:45:27 +00002033 continue;
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00002034 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002035 if (i != NumFields-1 || // ... that the last member ...
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +00002036 !Record->isStruct() || // ... of a structure ...
Chris Lattner02c642e2007-07-31 21:33:24 +00002037 !FDTy->isArrayType()) { //... may have incomplete array type.
Reid Spencer5f016e22007-07-11 17:01:13 +00002038 Diag(FD->getLocation(), diag::err_field_incomplete, FD->getName());
Steve Naroff74216642007-09-14 22:20:54 +00002039 FD->setInvalidDecl();
2040 EnclosingDecl->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00002041 continue;
2042 }
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00002043 if (NumNamedMembers < 1) { //... must have more than named member ...
Reid Spencer5f016e22007-07-11 17:01:13 +00002044 Diag(FD->getLocation(), diag::err_flexible_array_empty_struct,
2045 FD->getName());
Steve Naroff74216642007-09-14 22:20:54 +00002046 FD->setInvalidDecl();
2047 EnclosingDecl->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00002048 continue;
2049 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002050 // Okay, we have a legal flexible array member at the end of the struct.
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00002051 if (Record)
2052 Record->setHasFlexibleArrayMember(true);
Reid Spencer5f016e22007-07-11 17:01:13 +00002053 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002054 /// C99 6.7.2.1p2 - a struct ending in a flexible array member cannot be the
2055 /// field of another structure or the element of an array.
Chris Lattner02c642e2007-07-31 21:33:24 +00002056 if (const RecordType *FDTTy = FDTy->getAsRecordType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002057 if (FDTTy->getDecl()->hasFlexibleArrayMember()) {
2058 // If this is a member of a union, then entire union becomes "flexible".
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +00002059 if (Record && Record->isUnion()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002060 Record->setHasFlexibleArrayMember(true);
2061 } else {
2062 // If this is a struct/class and this is not the last element, reject
2063 // it. Note that GCC supports variable sized arrays in the middle of
2064 // structures.
2065 if (i != NumFields-1) {
2066 Diag(FD->getLocation(), diag::err_variable_sized_type_in_struct,
2067 FD->getName());
Steve Naroff74216642007-09-14 22:20:54 +00002068 FD->setInvalidDecl();
2069 EnclosingDecl->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00002070 continue;
2071 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002072 // We support flexible arrays at the end of structs in other structs
2073 // as an extension.
2074 Diag(FD->getLocation(), diag::ext_flexible_array_in_struct,
2075 FD->getName());
Fariborz Jahanian3f5faf72007-10-04 00:45:27 +00002076 if (Record)
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00002077 Record->setHasFlexibleArrayMember(true);
Reid Spencer5f016e22007-07-11 17:01:13 +00002078 }
2079 }
2080 }
Fariborz Jahaniane7f64cc2007-10-12 22:10:42 +00002081 /// A field cannot be an Objective-c object
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002082 if (FDTy->isObjCInterfaceType()) {
Fariborz Jahaniane7f64cc2007-10-12 22:10:42 +00002083 Diag(FD->getLocation(), diag::err_statically_allocated_object,
2084 FD->getName());
2085 FD->setInvalidDecl();
2086 EnclosingDecl->setInvalidDecl();
2087 continue;
2088 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002089 // Keep track of the number of named members.
2090 if (IdentifierInfo *II = FD->getIdentifier()) {
2091 // Detect duplicate member names.
2092 if (!FieldIDs.insert(II)) {
2093 Diag(FD->getLocation(), diag::err_duplicate_member, II->getName());
2094 // Find the previous decl.
2095 SourceLocation PrevLoc;
2096 for (unsigned i = 0, e = RecFields.size(); ; ++i) {
2097 assert(i != e && "Didn't find previous def!");
2098 if (RecFields[i]->getIdentifier() == II) {
2099 PrevLoc = RecFields[i]->getLocation();
2100 break;
2101 }
2102 }
2103 Diag(PrevLoc, diag::err_previous_definition);
Steve Naroff74216642007-09-14 22:20:54 +00002104 FD->setInvalidDecl();
2105 EnclosingDecl->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00002106 continue;
2107 }
2108 ++NumNamedMembers;
2109 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002110 }
2111
Reid Spencer5f016e22007-07-11 17:01:13 +00002112 // Okay, we successfully defined 'Record'.
Chris Lattnere1e79852008-02-06 00:51:33 +00002113 if (Record) {
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00002114 Record->defineBody(&RecFields[0], RecFields.size());
Argyrios Kyrtzidisa4755c62008-08-09 00:58:37 +00002115 // If this is a C++ record, HandleTagDeclDefinition will be invoked in
2116 // Sema::ActOnFinishCXXClassDef.
2117 if (!isa<CXXRecordDecl>(Record))
2118 Consumer.HandleTagDeclDefinition(Record);
Chris Lattnere1e79852008-02-06 00:51:33 +00002119 } else {
Chris Lattnera91d3812008-02-05 22:40:55 +00002120 ObjCIvarDecl **ClsFields = reinterpret_cast<ObjCIvarDecl**>(&RecFields[0]);
2121 if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(EnclosingDecl))
2122 ID->addInstanceVariablesToClass(ClsFields, RecFields.size(), RBrac);
2123 else if (ObjCImplementationDecl *IMPDecl =
2124 dyn_cast<ObjCImplementationDecl>(EnclosingDecl)) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002125 assert(IMPDecl && "ActOnFields - missing ObjCImplementationDecl");
2126 IMPDecl->ObjCAddInstanceVariablesToClassImpl(ClsFields, RecFields.size());
Fariborz Jahanian3a3ca1b2007-10-31 18:48:14 +00002127 CheckImplementationIvars(IMPDecl, ClsFields, RecFields.size(), RBrac);
Fariborz Jahaniand0b90bf2007-09-26 18:27:25 +00002128 }
Fariborz Jahanianb04a0212007-09-14 21:08:27 +00002129 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002130}
2131
Steve Naroff08d92e42007-09-15 18:49:24 +00002132Sema::DeclTy *Sema::ActOnEnumConstant(Scope *S, DeclTy *theEnumDecl,
Reid Spencer5f016e22007-07-11 17:01:13 +00002133 DeclTy *lastEnumConst,
2134 SourceLocation IdLoc, IdentifierInfo *Id,
2135 SourceLocation EqualLoc, ExprTy *val) {
Chris Lattner0ed844b2008-04-04 06:12:32 +00002136 EnumDecl *TheEnumDecl = cast<EnumDecl>(static_cast<Decl*>(theEnumDecl));
Reid Spencer5f016e22007-07-11 17:01:13 +00002137 EnumConstantDecl *LastEnumConst =
2138 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(lastEnumConst));
2139 Expr *Val = static_cast<Expr*>(val);
2140
Chris Lattner31e05722007-08-26 06:24:45 +00002141 // The scope passed in may not be a decl scope. Zip up the scope tree until
2142 // we find one that is.
2143 while ((S->getFlags() & Scope::DeclScope) == 0)
2144 S = S->getParent();
2145
Reid Spencer5f016e22007-07-11 17:01:13 +00002146 // Verify that there isn't already something declared with this name in this
2147 // scope.
Steve Naroffb327ce02008-04-02 14:35:35 +00002148 if (Decl *PrevDecl = LookupDecl(Id, Decl::IDNS_Ordinary, S)) {
Argyrios Kyrtzidis0ff12f02008-07-16 21:01:53 +00002149 // When in C++, we may get a TagDecl with the same name; in this case the
2150 // enum constant will 'hide' the tag.
2151 assert((getLangOptions().CPlusPlus || !isa<TagDecl>(PrevDecl)) &&
2152 "Received TagDecl when not in C++!");
2153 if (!isa<TagDecl>(PrevDecl) &&
2154 IdResolver.isDeclInScope(PrevDecl, CurContext, S)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002155 if (isa<EnumConstantDecl>(PrevDecl))
2156 Diag(IdLoc, diag::err_redefinition_of_enumerator, Id->getName());
2157 else
2158 Diag(IdLoc, diag::err_redefinition, Id->getName());
2159 Diag(PrevDecl->getLocation(), diag::err_previous_definition);
Chris Lattnera73349d2008-02-26 00:33:57 +00002160 delete Val;
Reid Spencer5f016e22007-07-11 17:01:13 +00002161 return 0;
2162 }
2163 }
2164
2165 llvm::APSInt EnumVal(32);
2166 QualType EltTy;
2167 if (Val) {
Chris Lattner421a23d2007-08-27 21:16:18 +00002168 // Make sure to promote the operand type to int.
2169 UsualUnaryConversions(Val);
2170
Reid Spencer5f016e22007-07-11 17:01:13 +00002171 // C99 6.7.2.2p2: Make sure we have an integer constant expression.
2172 SourceLocation ExpLoc;
Chris Lattner590b6642007-07-15 23:26:56 +00002173 if (!Val->isIntegerConstantExpr(EnumVal, Context, &ExpLoc)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002174 Diag(ExpLoc, diag::err_enum_value_not_integer_constant_expr,
2175 Id->getName());
Chris Lattnera73349d2008-02-26 00:33:57 +00002176 delete Val;
Chris Lattnerb7416f92007-08-27 17:37:24 +00002177 Val = 0; // Just forget about it.
Chris Lattnere9ca8512007-08-29 16:03:41 +00002178 } else {
2179 EltTy = Val->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00002180 }
Chris Lattnerb7416f92007-08-27 17:37:24 +00002181 }
2182
2183 if (!Val) {
2184 if (LastEnumConst) {
2185 // Assign the last value + 1.
2186 EnumVal = LastEnumConst->getInitVal();
2187 ++EnumVal;
Chris Lattner421a23d2007-08-27 21:16:18 +00002188
2189 // Check for overflow on increment.
2190 if (EnumVal < LastEnumConst->getInitVal())
2191 Diag(IdLoc, diag::warn_enum_value_overflow);
2192
Chris Lattnerb7416f92007-08-27 17:37:24 +00002193 EltTy = LastEnumConst->getType();
2194 } else {
2195 // First value, set to zero.
2196 EltTy = Context.IntTy;
Chris Lattner98be4942008-03-05 18:54:05 +00002197 EnumVal.zextOrTrunc(static_cast<uint32_t>(Context.getTypeSize(EltTy)));
Chris Lattnerb7416f92007-08-27 17:37:24 +00002198 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002199 }
2200
Chris Lattner6c2b6eb2008-03-15 06:12:44 +00002201 EnumConstantDecl *New =
Chris Lattner0ed844b2008-04-04 06:12:32 +00002202 EnumConstantDecl::Create(Context, TheEnumDecl, IdLoc, Id, EltTy,
2203 Val, EnumVal,
Chris Lattnerc63e6602008-03-15 21:32:50 +00002204 LastEnumConst);
Reid Spencer5f016e22007-07-11 17:01:13 +00002205
2206 // Register this decl in the current scope stack.
Argyrios Kyrtzidis87f3ff02008-04-12 00:47:19 +00002207 PushOnScopeChains(New, S);
Reid Spencer5f016e22007-07-11 17:01:13 +00002208 return New;
2209}
2210
Steve Naroff02408c62008-08-07 14:08:16 +00002211// FIXME: For consistency with ActOnFields(), we should have the parser
2212// pass in the source location for the left/right braces.
Steve Naroff08d92e42007-09-15 18:49:24 +00002213void Sema::ActOnEnumBody(SourceLocation EnumLoc, DeclTy *EnumDeclX,
Reid Spencer5f016e22007-07-11 17:01:13 +00002214 DeclTy **Elements, unsigned NumElements) {
2215 EnumDecl *Enum = cast<EnumDecl>(static_cast<Decl*>(EnumDeclX));
Reid Spencer5f016e22007-07-11 17:01:13 +00002216
Steve Naroff02408c62008-08-07 14:08:16 +00002217 if (Enum && Enum->isDefinition()) {
2218 // Diagnose code like:
2219 // enum e0 {
2220 // E0 = sizeof(enum e0 { E1 })
2221 // };
2222 Diag(Enum->getLocation(), diag::err_nested_redefinition,
2223 Enum->getName());
2224 Diag(EnumLoc, diag::err_previous_definition);
2225 Enum->setInvalidDecl();
2226 return;
2227 }
Chris Lattnere37f0be2007-08-28 05:10:31 +00002228 // TODO: If the result value doesn't fit in an int, it must be a long or long
2229 // long value. ISO C does not support this, but GCC does as an extension,
2230 // emit a warning.
Chris Lattner98be4942008-03-05 18:54:05 +00002231 unsigned IntWidth = Context.Target.getIntWidth();
Chris Lattnere37f0be2007-08-28 05:10:31 +00002232
Chris Lattnerac609682007-08-28 06:15:15 +00002233 // Verify that all the values are okay, compute the size of the values, and
2234 // reverse the list.
2235 unsigned NumNegativeBits = 0;
2236 unsigned NumPositiveBits = 0;
2237
2238 // Keep track of whether all elements have type int.
2239 bool AllElementsInt = true;
2240
Reid Spencer5f016e22007-07-11 17:01:13 +00002241 EnumConstantDecl *EltList = 0;
2242 for (unsigned i = 0; i != NumElements; ++i) {
2243 EnumConstantDecl *ECD =
2244 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(Elements[i]));
2245 if (!ECD) continue; // Already issued a diagnostic.
Chris Lattner211a30e2007-08-28 05:27:00 +00002246
2247 // If the enum value doesn't fit in an int, emit an extension warning.
Chris Lattner211a30e2007-08-28 05:27:00 +00002248 const llvm::APSInt &InitVal = ECD->getInitVal();
Chris Lattnera73349d2008-02-26 00:33:57 +00002249 assert(InitVal.getBitWidth() >= IntWidth &&
2250 "Should have promoted value to int");
Chris Lattner211a30e2007-08-28 05:27:00 +00002251 if (InitVal.getBitWidth() > IntWidth) {
2252 llvm::APSInt V(InitVal);
2253 V.trunc(IntWidth);
2254 V.extend(InitVal.getBitWidth());
2255 if (V != InitVal)
2256 Diag(ECD->getLocation(), diag::ext_enum_value_not_int,
Chris Lattner9aa77f12008-08-17 07:19:51 +00002257 InitVal.toString(10));
Chris Lattner211a30e2007-08-28 05:27:00 +00002258 }
Chris Lattnerac609682007-08-28 06:15:15 +00002259
2260 // Keep track of the size of positive and negative values.
Chris Lattnera73349d2008-02-26 00:33:57 +00002261 if (InitVal.isUnsigned() || InitVal.isNonNegative())
Chris Lattner21dd8212008-01-14 21:47:29 +00002262 NumPositiveBits = std::max(NumPositiveBits,
2263 (unsigned)InitVal.getActiveBits());
Chris Lattnerac609682007-08-28 06:15:15 +00002264 else
Chris Lattner21dd8212008-01-14 21:47:29 +00002265 NumNegativeBits = std::max(NumNegativeBits,
2266 (unsigned)InitVal.getMinSignedBits());
Reid Spencer5f016e22007-07-11 17:01:13 +00002267
Chris Lattnerac609682007-08-28 06:15:15 +00002268 // Keep track of whether every enum element has type int (very commmon).
2269 if (AllElementsInt)
2270 AllElementsInt = ECD->getType() == Context.IntTy;
2271
Reid Spencer5f016e22007-07-11 17:01:13 +00002272 ECD->setNextDeclarator(EltList);
2273 EltList = ECD;
2274 }
2275
Chris Lattnerac609682007-08-28 06:15:15 +00002276 // Figure out the type that should be used for this enum.
2277 // FIXME: Support attribute(packed) on enums and -fshort-enums.
2278 QualType BestType;
Chris Lattnerb7f6e082007-08-29 17:31:48 +00002279 unsigned BestWidth;
Chris Lattnerac609682007-08-28 06:15:15 +00002280
2281 if (NumNegativeBits) {
2282 // If there is a negative value, figure out the smallest integer type (of
2283 // int/long/longlong) that fits.
Chris Lattnerb7f6e082007-08-29 17:31:48 +00002284 if (NumNegativeBits <= IntWidth && NumPositiveBits < IntWidth) {
Chris Lattnerac609682007-08-28 06:15:15 +00002285 BestType = Context.IntTy;
Chris Lattnerb7f6e082007-08-29 17:31:48 +00002286 BestWidth = IntWidth;
2287 } else {
Chris Lattner98be4942008-03-05 18:54:05 +00002288 BestWidth = Context.Target.getLongWidth();
Ted Kremenek9c728dc2007-12-12 22:39:36 +00002289
Chris Lattnerb7f6e082007-08-29 17:31:48 +00002290 if (NumNegativeBits <= BestWidth && NumPositiveBits < BestWidth)
Chris Lattnerac609682007-08-28 06:15:15 +00002291 BestType = Context.LongTy;
2292 else {
Chris Lattner98be4942008-03-05 18:54:05 +00002293 BestWidth = Context.Target.getLongLongWidth();
Ted Kremenek9c728dc2007-12-12 22:39:36 +00002294
Chris Lattnerb7f6e082007-08-29 17:31:48 +00002295 if (NumNegativeBits > BestWidth || NumPositiveBits >= BestWidth)
Chris Lattnerac609682007-08-28 06:15:15 +00002296 Diag(Enum->getLocation(), diag::warn_enum_too_large);
2297 BestType = Context.LongLongTy;
2298 }
2299 }
2300 } else {
2301 // If there is no negative value, figure out which of uint, ulong, ulonglong
2302 // fits.
Chris Lattnerb7f6e082007-08-29 17:31:48 +00002303 if (NumPositiveBits <= IntWidth) {
Chris Lattnerac609682007-08-28 06:15:15 +00002304 BestType = Context.UnsignedIntTy;
Chris Lattnerb7f6e082007-08-29 17:31:48 +00002305 BestWidth = IntWidth;
2306 } else if (NumPositiveBits <=
Chris Lattner98be4942008-03-05 18:54:05 +00002307 (BestWidth = Context.Target.getLongWidth())) {
Chris Lattnerac609682007-08-28 06:15:15 +00002308 BestType = Context.UnsignedLongTy;
Chris Lattner98be4942008-03-05 18:54:05 +00002309 } else {
2310 BestWidth = Context.Target.getLongLongWidth();
Chris Lattnerb7f6e082007-08-29 17:31:48 +00002311 assert(NumPositiveBits <= BestWidth &&
Chris Lattnerac609682007-08-28 06:15:15 +00002312 "How could an initializer get larger than ULL?");
2313 BestType = Context.UnsignedLongLongTy;
2314 }
2315 }
2316
Chris Lattnerb7f6e082007-08-29 17:31:48 +00002317 // Loop over all of the enumerator constants, changing their types to match
2318 // the type of the enum if needed.
2319 for (unsigned i = 0; i != NumElements; ++i) {
2320 EnumConstantDecl *ECD =
2321 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(Elements[i]));
2322 if (!ECD) continue; // Already issued a diagnostic.
2323
2324 // Standard C says the enumerators have int type, but we allow, as an
2325 // extension, the enumerators to be larger than int size. If each
2326 // enumerator value fits in an int, type it as an int, otherwise type it the
2327 // same as the enumerator decl itself. This means that in "enum { X = 1U }"
2328 // that X has type 'int', not 'unsigned'.
Chris Lattnera73349d2008-02-26 00:33:57 +00002329 if (ECD->getType() == Context.IntTy) {
2330 // Make sure the init value is signed.
2331 llvm::APSInt IV = ECD->getInitVal();
2332 IV.setIsSigned(true);
2333 ECD->setInitVal(IV);
Chris Lattnerb7f6e082007-08-29 17:31:48 +00002334 continue; // Already int type.
Chris Lattnera73349d2008-02-26 00:33:57 +00002335 }
Chris Lattnerb7f6e082007-08-29 17:31:48 +00002336
2337 // Determine whether the value fits into an int.
2338 llvm::APSInt InitVal = ECD->getInitVal();
2339 bool FitsInInt;
2340 if (InitVal.isUnsigned() || !InitVal.isNegative())
2341 FitsInInt = InitVal.getActiveBits() < IntWidth;
2342 else
2343 FitsInInt = InitVal.getMinSignedBits() <= IntWidth;
2344
2345 // If it fits into an integer type, force it. Otherwise force it to match
2346 // the enum decl type.
2347 QualType NewTy;
2348 unsigned NewWidth;
2349 bool NewSign;
2350 if (FitsInInt) {
2351 NewTy = Context.IntTy;
2352 NewWidth = IntWidth;
2353 NewSign = true;
2354 } else if (ECD->getType() == BestType) {
2355 // Already the right type!
2356 continue;
2357 } else {
2358 NewTy = BestType;
2359 NewWidth = BestWidth;
2360 NewSign = BestType->isSignedIntegerType();
2361 }
2362
2363 // Adjust the APSInt value.
2364 InitVal.extOrTrunc(NewWidth);
2365 InitVal.setIsSigned(NewSign);
2366 ECD->setInitVal(InitVal);
2367
2368 // Adjust the Expr initializer and type.
2369 ECD->setInitExpr(new ImplicitCastExpr(NewTy, ECD->getInitExpr()));
2370 ECD->setType(NewTy);
2371 }
Chris Lattnerac609682007-08-28 06:15:15 +00002372
Chris Lattnere00b18c2007-08-28 18:24:31 +00002373 Enum->defineElements(EltList, BestType);
Chris Lattnere1e79852008-02-06 00:51:33 +00002374 Consumer.HandleTagDeclDefinition(Enum);
Reid Spencer5f016e22007-07-11 17:01:13 +00002375}
2376
Anders Carlssondfab6cb2008-02-08 00:33:21 +00002377Sema::DeclTy *Sema::ActOnFileScopeAsmDecl(SourceLocation Loc,
2378 ExprTy *expr) {
2379 StringLiteral *AsmString = cast<StringLiteral>((Expr*)expr);
2380
Chris Lattner8e25d862008-03-16 00:16:02 +00002381 return FileScopeAsmDecl::Create(Context, Loc, AsmString);
Anders Carlssondfab6cb2008-02-08 00:33:21 +00002382}
2383
Chris Lattnerc6fdc342008-01-12 07:05:38 +00002384Sema::DeclTy* Sema::ActOnLinkageSpec(SourceLocation Loc,
Chris Lattnerc81c8142008-02-25 21:04:36 +00002385 SourceLocation LBrace,
2386 SourceLocation RBrace,
2387 const char *Lang,
2388 unsigned StrSize,
2389 DeclTy *D) {
Chris Lattnerc6fdc342008-01-12 07:05:38 +00002390 LinkageSpecDecl::LanguageIDs Language;
2391 Decl *dcl = static_cast<Decl *>(D);
2392 if (strncmp(Lang, "\"C\"", StrSize) == 0)
2393 Language = LinkageSpecDecl::lang_c;
2394 else if (strncmp(Lang, "\"C++\"", StrSize) == 0)
2395 Language = LinkageSpecDecl::lang_cxx;
2396 else {
2397 Diag(Loc, diag::err_bad_language);
2398 return 0;
2399 }
2400
2401 // FIXME: Add all the various semantics of linkage specifications
Chris Lattner8e25d862008-03-16 00:16:02 +00002402 return LinkageSpecDecl::Create(Context, Loc, Language, dcl);
Chris Lattnerc6fdc342008-01-12 07:05:38 +00002403}