blob: 226d33773f3c2050b32bf57d78425aef758babef [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"
15#include "clang/AST/ASTContext.h"
16#include "clang/AST/Builtins.h"
17#include "clang/AST/Decl.h"
18#include "clang/AST/Expr.h"
19#include "clang/AST/Type.h"
20#include "clang/Parse/DeclSpec.h"
21#include "clang/Parse/Scope.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000022#include "clang/Basic/LangOptions.h"
23#include "clang/Basic/TargetInfo.h"
Steve Naroff4c49a6c2008-01-30 23:46:05 +000024#include "clang/Basic/SourceManager.h"
25// FIXME: layering (ideally, Sema shouldn't be dependent on Lex API's)
26#include "clang/Lex/Preprocessor.h"
27#include "clang/Lex/HeaderSearch.h"
Steve Naroff563477d2007-09-18 23:55:05 +000028#include "llvm/ADT/SmallString.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000029#include "llvm/ADT/SmallSet.h"
Fariborz Jahanian85ff2642007-10-05 18:00:57 +000030#include "llvm/ADT/DenseSet.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000031using namespace clang;
32
Reid Spencer5f016e22007-07-11 17:01:13 +000033Sema::DeclTy *Sema::isTypeName(const IdentifierInfo &II, Scope *S) const {
Fariborz Jahanianbece4ac2007-10-12 16:34:10 +000034 Decl *IIDecl = II.getFETokenInfo<Decl>();
35 // Find first occurance of none-tagged declaration
36 while(IIDecl && IIDecl->getIdentifierNamespace() != Decl::IDNS_Ordinary)
37 IIDecl = cast<ScopedDecl>(IIDecl)->getNext();
38 if (!IIDecl)
39 return 0;
Ted Kremeneka526c5c2008-01-07 19:49:32 +000040 if (isa<TypedefDecl>(IIDecl) || isa<ObjCInterfaceDecl>(IIDecl))
Fariborz Jahanianbece4ac2007-10-12 16:34:10 +000041 return IIDecl;
Ted Kremeneka526c5c2008-01-07 19:49:32 +000042 if (ObjCCompatibleAliasDecl *ADecl =
43 dyn_cast<ObjCCompatibleAliasDecl>(IIDecl))
Fariborz Jahanianbece4ac2007-10-12 16:34:10 +000044 return ADecl->getClassInterface();
Steve Naroff3536b442007-09-06 21:24:23 +000045 return 0;
Reid Spencer5f016e22007-07-11 17:01:13 +000046}
47
Steve Naroffb216c882007-10-09 22:01:59 +000048void Sema::ActOnPopScope(SourceLocation Loc, Scope *S) {
Chris Lattner31e05722007-08-26 06:24:45 +000049 if (S->decl_empty()) return;
50 assert((S->getFlags() & Scope::DeclScope) &&"Scope shouldn't contain decls!");
51
Reid Spencer5f016e22007-07-11 17:01:13 +000052 for (Scope::decl_iterator I = S->decl_begin(), E = S->decl_end();
53 I != E; ++I) {
Steve Naroffc752d042007-09-13 18:10:37 +000054 Decl *TmpD = static_cast<Decl*>(*I);
55 assert(TmpD && "This decl didn't get pushed??");
56 ScopedDecl *D = dyn_cast<ScopedDecl>(TmpD);
57 assert(D && "This decl isn't a ScopedDecl?");
58
Reid Spencer5f016e22007-07-11 17:01:13 +000059 IdentifierInfo *II = D->getIdentifier();
60 if (!II) continue;
61
62 // Unlink this decl from the identifier. Because the scope contains decls
63 // in an unordered collection, and because we have multiple identifier
64 // namespaces (e.g. tag, normal, label),the decl may not be the first entry.
65 if (II->getFETokenInfo<Decl>() == D) {
66 // Normal case, no multiple decls in different namespaces.
67 II->setFETokenInfo(D->getNext());
68 } else {
69 // Scan ahead. There are only three namespaces in C, so this loop can
70 // never execute more than 3 times.
Steve Naroffc752d042007-09-13 18:10:37 +000071 ScopedDecl *SomeDecl = II->getFETokenInfo<ScopedDecl>();
Reid Spencer5f016e22007-07-11 17:01:13 +000072 while (SomeDecl->getNext() != D) {
73 SomeDecl = SomeDecl->getNext();
74 assert(SomeDecl && "Didn't find this decl on its identifier's chain!");
75 }
76 SomeDecl->setNext(D->getNext());
77 }
78
79 // This will have to be revisited for C++: there we want to nest stuff in
80 // namespace decls etc. Even for C, we might want a top-level translation
81 // unit decl or something.
82 if (!CurFunctionDecl)
83 continue;
84
85 // Chain this decl to the containing function, it now owns the memory for
86 // the decl.
87 D->setNext(CurFunctionDecl->getDeclChain());
88 CurFunctionDecl->setDeclChain(D);
89 }
90}
91
Fariborz Jahanian4cabdfc2007-10-12 19:38:20 +000092/// LookupInterfaceDecl - Lookup interface declaration in the scope chain.
93/// Return the first declaration found (which may or may not be a class
Fariborz Jahanian3fe44e42007-10-12 19:53:08 +000094/// declaration. Caller is responsible for handling the none-class case.
Fariborz Jahanian4cabdfc2007-10-12 19:38:20 +000095/// Bypassing the alias of a class by returning the aliased class.
96ScopedDecl *Sema::LookupInterfaceDecl(IdentifierInfo *ClassName) {
97 ScopedDecl *IDecl;
98 // Scan up the scope chain looking for a decl that matches this identifier
99 // that is in the appropriate namespace.
100 for (IDecl = ClassName->getFETokenInfo<ScopedDecl>(); IDecl;
101 IDecl = IDecl->getNext())
102 if (IDecl->getIdentifierNamespace() == Decl::IDNS_Ordinary)
103 break;
104
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000105 if (ObjCCompatibleAliasDecl *ADecl =
106 dyn_cast_or_null<ObjCCompatibleAliasDecl>(IDecl))
Fariborz Jahanian4cabdfc2007-10-12 19:38:20 +0000107 return ADecl->getClassInterface();
108 return IDecl;
109}
110
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000111/// getObjCInterfaceDecl - Look up a for a class declaration in the scope.
Fariborz Jahanian9d048ff2007-09-29 00:54:24 +0000112/// return 0 if one not found.
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000113ObjCInterfaceDecl *Sema::getObjCInterfaceDecl(IdentifierInfo *Id) {
Fariborz Jahanian4cabdfc2007-10-12 19:38:20 +0000114 ScopedDecl *IdDecl = LookupInterfaceDecl(Id);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000115 return cast_or_null<ObjCInterfaceDecl>(IdDecl);
Fariborz Jahanian9d048ff2007-09-29 00:54:24 +0000116}
117
Reid Spencer5f016e22007-07-11 17:01:13 +0000118/// LookupScopedDecl - Look up the inner-most declaration in the specified
119/// namespace.
Steve Naroffc752d042007-09-13 18:10:37 +0000120ScopedDecl *Sema::LookupScopedDecl(IdentifierInfo *II, unsigned NSI,
121 SourceLocation IdLoc, Scope *S) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000122 if (II == 0) return 0;
123 Decl::IdentifierNamespace NS = (Decl::IdentifierNamespace)NSI;
124
125 // Scan up the scope chain looking for a decl that matches this identifier
126 // that is in the appropriate namespace. This search should not take long, as
127 // shadowing of names is uncommon, and deep shadowing is extremely uncommon.
Steve Naroffc752d042007-09-13 18:10:37 +0000128 for (ScopedDecl *D = II->getFETokenInfo<ScopedDecl>(); D; D = D->getNext())
Reid Spencer5f016e22007-07-11 17:01:13 +0000129 if (D->getIdentifierNamespace() == NS)
130 return D;
131
132 // If we didn't find a use of this identifier, and if the identifier
133 // corresponds to a compiler builtin, create the decl object for the builtin
134 // now, injecting it into translation unit scope, and return it.
135 if (NS == Decl::IDNS_Ordinary) {
136 // If this is a builtin on some other target, or if this builtin varies
137 // across targets (e.g. in type), emit a diagnostic and mark the translation
138 // unit non-portable for using it.
139 if (II->isNonPortableBuiltin()) {
140 // Only emit this diagnostic once for this builtin.
141 II->setNonPortableBuiltin(false);
Ted Kremenek9c728dc2007-12-12 22:39:36 +0000142 Context.Target.DiagnoseNonPortability(Context.getFullLoc(IdLoc),
Reid Spencer5f016e22007-07-11 17:01:13 +0000143 diag::port_target_builtin_use);
144 }
145 // If this is a builtin on this (or all) targets, create the decl.
146 if (unsigned BuiltinID = II->getBuiltinID())
147 return LazilyCreateBuiltin(II, BuiltinID, S);
148 }
149 return 0;
150}
151
Anders Carlsson7c50aca2007-10-15 20:28:48 +0000152void Sema::InitBuiltinVaListType()
153{
154 if (!Context.getBuiltinVaListType().isNull())
155 return;
156
157 IdentifierInfo *VaIdent = &Context.Idents.get("__builtin_va_list");
158 ScopedDecl *VaDecl = LookupScopedDecl(VaIdent, Decl::IDNS_Ordinary,
159 SourceLocation(), TUScope);
Steve Naroff733002f2007-10-18 22:17:45 +0000160 TypedefDecl *VaTypedef = cast<TypedefDecl>(VaDecl);
Anders Carlsson7c50aca2007-10-15 20:28:48 +0000161 Context.setBuiltinVaListType(Context.getTypedefType(VaTypedef));
162}
163
Reid Spencer5f016e22007-07-11 17:01:13 +0000164/// LazilyCreateBuiltin - The specified Builtin-ID was first used at file scope.
165/// lazily create a decl for it.
Chris Lattner22b73ba2007-10-10 23:42:28 +0000166ScopedDecl *Sema::LazilyCreateBuiltin(IdentifierInfo *II, unsigned bid,
167 Scope *S) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000168 Builtin::ID BID = (Builtin::ID)bid;
169
Anders Carlsson7c50aca2007-10-15 20:28:48 +0000170 if (BID == Builtin::BI__builtin_va_start ||
Anders Carlsson793680e2007-10-12 23:56:29 +0000171 BID == Builtin::BI__builtin_va_copy ||
Anders Carlsson7c50aca2007-10-15 20:28:48 +0000172 BID == Builtin::BI__builtin_va_end)
173 InitBuiltinVaListType();
174
Anders Carlssonb2cf3572007-10-11 01:00:40 +0000175 QualType R = Context.BuiltinInfo.GetBuiltinType(BID, Context);
Reid Spencer5f016e22007-07-11 17:01:13 +0000176 FunctionDecl *New = new FunctionDecl(SourceLocation(), II, R,
Chris Lattner70c8b2e2007-08-26 04:02:13 +0000177 FunctionDecl::Extern, false, 0);
Reid Spencer5f016e22007-07-11 17:01:13 +0000178
179 // Find translation-unit scope to insert this function into.
Chris Lattner31e05722007-08-26 06:24:45 +0000180 if (Scope *FnS = S->getFnParent())
181 S = FnS->getParent(); // Skip all scopes in a function at once.
Reid Spencer5f016e22007-07-11 17:01:13 +0000182 while (S->getParent())
183 S = S->getParent();
184 S->AddDecl(New);
185
186 // Add this decl to the end of the identifier info.
Steve Naroffc752d042007-09-13 18:10:37 +0000187 if (ScopedDecl *LastDecl = II->getFETokenInfo<ScopedDecl>()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000188 // Scan until we find the last (outermost) decl in the id chain.
189 while (LastDecl->getNext())
190 LastDecl = LastDecl->getNext();
191 // Insert before (outside) it.
192 LastDecl->setNext(New);
193 } else {
194 II->setFETokenInfo(New);
195 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000196 return New;
197}
198
199/// MergeTypeDefDecl - We just parsed a typedef 'New' which has the same name
200/// and scope as a previous declaration 'Old'. Figure out how to resolve this
201/// situation, merging decls or emitting diagnostics as appropriate.
202///
Steve Naroff8e74c932007-09-13 21:41:19 +0000203TypedefDecl *Sema::MergeTypeDefDecl(TypedefDecl *New, ScopedDecl *OldD) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000204 // Verify the old decl was also a typedef.
205 TypedefDecl *Old = dyn_cast<TypedefDecl>(OldD);
206 if (!Old) {
207 Diag(New->getLocation(), diag::err_redefinition_different_kind,
208 New->getName());
209 Diag(OldD->getLocation(), diag::err_previous_definition);
210 return New;
211 }
212
Steve Naroff8ee529b2007-10-31 18:42:27 +0000213 // Allow multiple definitions for ObjC built-in typedefs.
214 // FIXME: Verify the underlying types are equivalent!
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000215 if (getLangOptions().ObjC1 && isBuiltinObjCType(New))
Steve Naroff8ee529b2007-10-31 18:42:27 +0000216 return Old;
Steve Naroff4c49a6c2008-01-30 23:46:05 +0000217
218 // Redeclaration of a type is a constraint violation (6.7.2.3p1).
219 // Apparently GCC, Intel, and Sun all silently ignore the redeclaration if
220 // *either* declaration is in a system header. The code below implements
221 // this adhoc compatibility rule. FIXME: The following code will not
222 // work properly when compiling ".i" files (containing preprocessed output).
223 SourceManager &SrcMgr = Context.getSourceManager();
224 const FileEntry *OldDeclFile = SrcMgr.getFileEntryForLoc(Old->getLocation());
225 const FileEntry *NewDeclFile = SrcMgr.getFileEntryForLoc(New->getLocation());
226 HeaderSearch &HdrInfo = PP.getHeaderSearchInfo();
227 DirectoryLookup::DirType OldDirType = HdrInfo.getFileDirFlavor(OldDeclFile);
228 DirectoryLookup::DirType NewDirType = HdrInfo.getFileDirFlavor(NewDeclFile);
229
230 if (OldDirType == DirectoryLookup::ExternCSystemHeaderDir ||
231 NewDirType == DirectoryLookup::ExternCSystemHeaderDir)
232 return New;
Steve Naroff8ee529b2007-10-31 18:42:27 +0000233
Reid Spencer5f016e22007-07-11 17:01:13 +0000234 // TODO: CHECK FOR CONFLICTS, multiple decls with same name in one scope.
235 // TODO: This is totally simplistic. It should handle merging functions
236 // together etc, merging extern int X; int X; ...
237 Diag(New->getLocation(), diag::err_redefinition, New->getName());
238 Diag(Old->getLocation(), diag::err_previous_definition);
239 return New;
240}
241
242/// MergeFunctionDecl - We just parsed a function 'New' which has the same name
243/// and scope as a previous declaration 'Old'. Figure out how to resolve this
244/// situation, merging decls or emitting diagnostics as appropriate.
245///
Steve Naroff8e74c932007-09-13 21:41:19 +0000246FunctionDecl *Sema::MergeFunctionDecl(FunctionDecl *New, ScopedDecl *OldD) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000247 // Verify the old decl was also a function.
248 FunctionDecl *Old = dyn_cast<FunctionDecl>(OldD);
249 if (!Old) {
250 Diag(New->getLocation(), diag::err_redefinition_different_kind,
251 New->getName());
252 Diag(OldD->getLocation(), diag::err_previous_definition);
253 return New;
254 }
255
Chris Lattner55196442007-11-20 19:04:50 +0000256 QualType OldQType = Old->getCanonicalType();
257 QualType NewQType = New->getCanonicalType();
258
259 // This is not right, but it's a start.
260 // If Old is a function prototype with no defined arguments we only compare
261 // the return type; If arguments are defined on the prototype we validate the
262 // entire function type.
263 // FIXME: We should link up decl objects here.
264 if (Old->getBody() == 0) {
265 if (OldQType.getTypePtr()->getTypeClass() == Type::FunctionNoProto &&
266 Old->getResultType() == New->getResultType())
267 return New;
Reid Spencer5f016e22007-07-11 17:01:13 +0000268 }
Steve Naroffadbbd0c2008-01-14 20:51:29 +0000269 // Function types need to be compatible, not identical. This handles
270 // duplicate function decls like "void f(int); void f(enum X);" properly.
271 if (Context.functionTypesAreCompatible(OldQType, NewQType))
272 return New;
Chris Lattnere3995fe2007-11-06 06:07:26 +0000273
Steve Naroff837618c2008-01-16 15:01:34 +0000274 // A function that has already been declared has been redeclared or defined
275 // with a different type- show appropriate diagnostic
276 diag::kind PrevDiag = Old->getBody() ? diag::err_previous_definition :
277 diag::err_previous_declaration;
278
Reid Spencer5f016e22007-07-11 17:01:13 +0000279 // TODO: CHECK FOR CONFLICTS, multiple decls with same name in one scope.
280 // TODO: This is totally simplistic. It should handle merging functions
281 // together etc, merging extern int X; int X; ...
Steve Naroff837618c2008-01-16 15:01:34 +0000282 Diag(New->getLocation(), diag::err_conflicting_types, New->getName());
283 Diag(Old->getLocation(), PrevDiag);
Reid Spencer5f016e22007-07-11 17:01:13 +0000284 return New;
285}
286
Chris Lattnerfcc2d262007-11-06 04:28:31 +0000287
288/// hasUndefinedLength - Used by equivalentArrayTypes to determine whether the
289/// the outermost VariableArrayType has no size defined.
290static bool hasUndefinedLength(const ArrayType *Array) {
291 const VariableArrayType *VAT = Array->getAsVariableArrayType();
292 return VAT && !VAT->getSizeExpr();
293}
294
295/// equivalentArrayTypes - Used to determine whether two array types are
296/// equivalent.
297/// We need to check this explicitly as an incomplete array definition is
298/// considered a VariableArrayType, so will not match a complete array
299/// definition that would be otherwise equivalent.
300static bool areEquivalentArrayTypes(QualType NewQType, QualType OldQType) {
301 const ArrayType *NewAT = NewQType->getAsArrayType();
302 const ArrayType *OldAT = OldQType->getAsArrayType();
303
304 if (!NewAT || !OldAT)
305 return false;
306
307 // If either (or both) array types in incomplete we need to strip off the
308 // outer VariableArrayType. Once the outer VAT is removed the remaining
309 // types must be identical if the array types are to be considered
310 // equivalent.
311 // eg. int[][1] and int[1][1] become
312 // VAT(null, CAT(1, int)) and CAT(1, CAT(1, int))
313 // removing the outermost VAT gives
314 // CAT(1, int) and CAT(1, int)
315 // which are equal, therefore the array types are equivalent.
316 if (hasUndefinedLength(NewAT) || hasUndefinedLength(OldAT)) {
317 if (NewAT->getIndexTypeQualifier() != OldAT->getIndexTypeQualifier())
318 return false;
Eli Friedman04930252008-01-29 07:51:12 +0000319 NewQType = NewAT->getElementType().getCanonicalType();
320 OldQType = OldAT->getElementType().getCanonicalType();
Chris Lattnerfcc2d262007-11-06 04:28:31 +0000321 }
322
323 return NewQType == OldQType;
324}
325
Reid Spencer5f016e22007-07-11 17:01:13 +0000326/// MergeVarDecl - We just parsed a variable 'New' which has the same name
327/// and scope as a previous declaration 'Old'. Figure out how to resolve this
328/// situation, merging decls or emitting diagnostics as appropriate.
329///
330/// FIXME: Need to carefully consider tentative definition rules (C99 6.9.2p2).
331/// For example, we incorrectly complain about i1, i4 from C99 6.9.2p4.
332///
Steve Naroff8e74c932007-09-13 21:41:19 +0000333VarDecl *Sema::MergeVarDecl(VarDecl *New, ScopedDecl *OldD) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000334 // Verify the old decl was also a variable.
335 VarDecl *Old = dyn_cast<VarDecl>(OldD);
336 if (!Old) {
337 Diag(New->getLocation(), diag::err_redefinition_different_kind,
338 New->getName());
339 Diag(OldD->getLocation(), diag::err_previous_definition);
340 return New;
341 }
342 // Verify the types match.
Chris Lattnerfcc2d262007-11-06 04:28:31 +0000343 if (Old->getCanonicalType() != New->getCanonicalType() &&
344 !areEquivalentArrayTypes(New->getCanonicalType(), Old->getCanonicalType())) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000345 Diag(New->getLocation(), diag::err_redefinition, New->getName());
346 Diag(Old->getLocation(), diag::err_previous_definition);
347 return New;
348 }
Steve Naroffb7b032e2008-01-30 00:44:01 +0000349 // C99 6.2.2p4: Check if we have a static decl followed by a non-static.
350 if (New->getStorageClass() == VarDecl::Static &&
351 (Old->getStorageClass() == VarDecl::None ||
352 Old->getStorageClass() == VarDecl::Extern)) {
353 Diag(New->getLocation(), diag::err_static_non_static, New->getName());
354 Diag(Old->getLocation(), diag::err_previous_definition);
355 return New;
356 }
357 // C99 6.2.2p4: Check if we have a non-static decl followed by a static.
358 if (New->getStorageClass() != VarDecl::Static &&
359 Old->getStorageClass() == VarDecl::Static) {
360 Diag(New->getLocation(), diag::err_non_static_static, New->getName());
361 Diag(Old->getLocation(), diag::err_previous_definition);
362 return New;
363 }
364 // We've verified the types match, now handle "tentative" definitions.
365 FileVarDecl *OldFSDecl = dyn_cast<FileVarDecl>(Old);
366 FileVarDecl *NewFSDecl = dyn_cast<FileVarDecl>(New);
367
368 if (OldFSDecl && NewFSDecl) {
369 // Handle C "tentative" external object definitions (C99 6.9.2).
370 bool OldIsTentative = false;
371 bool NewIsTentative = false;
372
373 if (!OldFSDecl->getInit() &&
374 (OldFSDecl->getStorageClass() == VarDecl::None ||
375 OldFSDecl->getStorageClass() == VarDecl::Static))
376 OldIsTentative = true;
377
378 // FIXME: this check doesn't work (since the initializer hasn't been
379 // attached yet). This check should be moved to FinalizeDeclaratorGroup.
380 // Unfortunately, by the time we get to FinializeDeclaratorGroup, we've
381 // thrown out the old decl.
382 if (!NewFSDecl->getInit() &&
383 (NewFSDecl->getStorageClass() == VarDecl::None ||
384 NewFSDecl->getStorageClass() == VarDecl::Static))
385 ; // change to NewIsTentative = true; once the code is moved.
386
387 if (NewIsTentative || OldIsTentative)
388 return New;
389 }
390 if (Old->getStorageClass() != VarDecl::Extern &&
391 New->getStorageClass() != VarDecl::Extern) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000392 Diag(New->getLocation(), diag::err_redefinition, New->getName());
393 Diag(Old->getLocation(), diag::err_previous_definition);
394 }
395 return New;
396}
397
398/// ParsedFreeStandingDeclSpec - This method is invoked when a declspec with
399/// no declarator (e.g. "struct foo;") is parsed.
400Sema::DeclTy *Sema::ParsedFreeStandingDeclSpec(Scope *S, DeclSpec &DS) {
401 // TODO: emit error on 'int;' or 'const enum foo;'.
402 // TODO: emit error on 'typedef int;'
403 // if (!DS.isMissingDeclaratorOk()) Diag(...);
404
Steve Naroff92199282007-11-17 21:37:36 +0000405 return dyn_cast_or_null<TagDecl>(static_cast<Decl *>(DS.getTypeRep()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000406}
407
Steve Naroffd0091aa2008-01-10 22:15:12 +0000408bool Sema::CheckSingleInitializer(Expr *&Init, QualType DeclType) {
Steve Narofff0090632007-09-02 02:04:30 +0000409 // Get the type before calling CheckSingleAssignmentConstraints(), since
410 // it can promote the expression.
Chris Lattner5cf216b2008-01-04 18:04:52 +0000411 QualType InitType = Init->getType();
Steve Narofff0090632007-09-02 02:04:30 +0000412
Chris Lattner5cf216b2008-01-04 18:04:52 +0000413 AssignConvertType ConvTy = CheckSingleAssignmentConstraints(DeclType, Init);
414 return DiagnoseAssignmentResult(ConvTy, Init->getLocStart(), DeclType,
415 InitType, Init, "initializing");
Steve Narofff0090632007-09-02 02:04:30 +0000416}
417
Steve Naroff9e8925e2007-09-04 14:36:54 +0000418bool Sema::CheckInitExpr(Expr *expr, InitListExpr *IList, unsigned slot,
Steve Naroffd0091aa2008-01-10 22:15:12 +0000419 QualType ElementType) {
Chris Lattner33b7b062007-12-11 23:15:04 +0000420 Expr *savExpr = expr; // Might be promoted by CheckSingleInitializer.
Steve Naroffd0091aa2008-01-10 22:15:12 +0000421 if (CheckSingleInitializer(expr, ElementType))
Chris Lattner33b7b062007-12-11 23:15:04 +0000422 return true; // types weren't compatible.
423
Steve Naroff9e8925e2007-09-04 14:36:54 +0000424 if (savExpr != expr) // The type was promoted, update initializer list.
425 IList->setInit(slot, expr);
Steve Naroff371227d2007-09-04 02:20:04 +0000426 return false;
427}
428
Steve Naroffa49e1fa2008-01-22 00:55:40 +0000429bool Sema::CheckStringLiteralInit(StringLiteral *strLiteral, QualType &DeclT) {
430 if (const VariableArrayType *VAT = DeclT->getAsIncompleteArrayType()) {
431 // C99 6.7.8p14. We have an array of character type with unknown size
432 // being initialized to a string literal.
433 llvm::APSInt ConstVal(32);
434 ConstVal = strLiteral->getByteLength() + 1;
435 // Return a new array type (C99 6.7.8p22).
436 DeclT = Context.getConstantArrayType(VAT->getElementType(), ConstVal,
437 ArrayType::Normal, 0);
438 } else if (const ConstantArrayType *CAT = DeclT->getAsConstantArrayType()) {
439 // C99 6.7.8p14. We have an array of character type with known size.
440 if (strLiteral->getByteLength() > (unsigned)CAT->getMaximumElements())
441 Diag(strLiteral->getSourceRange().getBegin(),
442 diag::warn_initializer_string_for_char_array_too_long,
443 strLiteral->getSourceRange());
444 } else {
445 assert(0 && "HandleStringLiteralInit(): Invalid array type");
446 }
447 // Set type from "char *" to "constant array of char".
448 strLiteral->setType(DeclT);
449 // For now, we always return false (meaning success).
450 return false;
451}
452
453StringLiteral *Sema::IsStringLiteralInit(Expr *Init, QualType DeclType) {
Steve Naroffa49e1fa2008-01-22 00:55:40 +0000454 const ArrayType *AT = DeclType->getAsArrayType();
Steve Naroffa9960332008-01-25 00:51:06 +0000455 if (AT && AT->getElementType()->isCharType()) {
456 return dyn_cast<StringLiteral>(Init);
457 }
Steve Naroffa49e1fa2008-01-22 00:55:40 +0000458 return 0;
459}
460
Steve Naroffa9960332008-01-25 00:51:06 +0000461// CheckInitializerListTypes - Checks the types of elements of an initializer
462// list. This function is recursive: it calls itself to initialize subelements
463// of aggregate types. Note that the topLevel parameter essentially refers to
464// whether this expression "owns" the initializer list passed in, or if this
465// initialization is taking elements out of a parent initializer. Each
466// call to this function adds zero or more to startIndex, reports any errors,
467// and returns true if it found any inconsistent types.
468bool Sema::CheckInitializerListTypes(InitListExpr*& IList, QualType &DeclType,
469 bool topLevel, unsigned& startIndex) {
Steve Naroff2fdc3742007-12-10 22:44:33 +0000470 bool hadError = false;
Steve Naroffa9960332008-01-25 00:51:06 +0000471
472 if (DeclType->isScalarType()) {
473 // The simplest case: initializing a single scalar
474 if (topLevel) {
475 Diag(IList->getLocStart(), diag::warn_braces_around_scalar_init,
476 IList->getSourceRange());
477 }
478 if (startIndex < IList->getNumInits()) {
479 Expr* expr = IList->getInit(startIndex);
480 if (InitListExpr *SubInitList = dyn_cast<InitListExpr>(expr)) {
481 // FIXME: Should an error be reported here instead?
482 unsigned newIndex = 0;
483 CheckInitializerListTypes(SubInitList, DeclType, true, newIndex);
484 } else {
485 hadError |= CheckInitExpr(expr, IList, startIndex, DeclType);
486 }
487 ++startIndex;
488 }
489 // FIXME: Should an error be reported for empty initializer list + scalar?
490 } else if (DeclType->isVectorType()) {
491 if (startIndex < IList->getNumInits()) {
492 const VectorType *VT = DeclType->getAsVectorType();
493 int maxElements = VT->getNumElements();
494 QualType elementType = VT->getElementType();
495
496 for (int i = 0; i < maxElements; ++i) {
497 // Don't attempt to go past the end of the init list
498 if (startIndex >= IList->getNumInits())
499 break;
500 Expr* expr = IList->getInit(startIndex);
501 if (InitListExpr *SubInitList = dyn_cast<InitListExpr>(expr)) {
502 unsigned newIndex = 0;
503 hadError |= CheckInitializerListTypes(SubInitList, elementType,
504 true, newIndex);
505 ++startIndex;
506 } else {
507 hadError |= CheckInitializerListTypes(IList, elementType,
508 false, startIndex);
509 }
510 }
511 }
512 } else if (DeclType->isAggregateType() || DeclType->isUnionType()) {
513 if (DeclType->isStructureType() || DeclType->isUnionType()) {
Steve Naroff578edc62008-01-28 02:00:41 +0000514 if (startIndex < IList->getNumInits() && !topLevel &&
515 Context.typesAreCompatible(IList->getInit(startIndex)->getType(),
516 DeclType)) {
Steve Naroffa9960332008-01-25 00:51:06 +0000517 // We found a compatible struct; per the standard, this initializes the
518 // struct. (The C standard technically says that this only applies for
519 // initializers for declarations with automatic scope; however, this
520 // construct is unambiguous anyway because a struct cannot contain
521 // a type compatible with itself. We'll output an error when we check
522 // if the initializer is constant.)
523 // FIXME: Is a call to CheckSingleInitializer required here?
524 ++startIndex;
525 } else {
526 RecordDecl* structDecl = DeclType->getAsRecordType()->getDecl();
527 // If structDecl is a forward declaration, this loop won't do anything;
528 // That's okay, because an error should get printed out elsewhere. It
529 // might be worthwhile to skip over the rest of the initializer, though.
530 int numMembers = structDecl->getNumMembers() -
531 structDecl->hasFlexibleArrayMember();
532 for (int i = 0; i < numMembers; i++) {
533 // Don't attempt to go past the end of the init list
534 if (startIndex >= IList->getNumInits())
535 break;
536 FieldDecl * curField = structDecl->getMember(i);
537 if (!curField->getIdentifier()) {
538 // Don't initialize unnamed fields, e.g. "int : 20;"
539 continue;
540 }
541 QualType fieldType = curField->getType();
542 Expr* expr = IList->getInit(startIndex);
543 if (InitListExpr *SubInitList = dyn_cast<InitListExpr>(expr)) {
544 unsigned newStart = 0;
545 hadError |= CheckInitializerListTypes(SubInitList, fieldType,
546 true, newStart);
547 ++startIndex;
548 } else {
549 hadError |= CheckInitializerListTypes(IList, fieldType,
550 false, startIndex);
551 }
552 if (DeclType->isUnionType())
553 break;
554 }
555 // FIXME: Implement flexible array initialization GCC extension (it's a
556 // really messy extension to implement, unfortunately...the necessary
557 // information isn't actually even here!)
558 }
559 } else if (DeclType->isArrayType()) {
560 // Check for the special-case of initializing an array with a string.
561 if (startIndex < IList->getNumInits()) {
562 if (StringLiteral *lit = IsStringLiteralInit(IList->getInit(startIndex),
563 DeclType)) {
564 CheckStringLiteralInit(lit, DeclType);
565 ++startIndex;
566 if (topLevel && startIndex < IList->getNumInits()) {
567 // We have leftover initializers; warn
568 Diag(IList->getInit(startIndex)->getLocStart(),
569 diag::err_excess_initializers_in_char_array_initializer,
570 IList->getInit(startIndex)->getSourceRange());
571 }
572 return false;
573 }
574 }
575 int maxElements;
576 if (const VariableArrayType *VAT = DeclType->getAsVariableArrayType()) {
577 // FIXME: use a proper constant
578 maxElements = 0x7FFFFFFF;
579 // Check for VLAs; in standard C it would be possible to check this
580 // earlier, but I don't know where clang accepts VLAs (gcc accepts
581 // them in all sorts of strange places).
582 if (const Expr *expr = VAT->getSizeExpr()) {
583 Diag(expr->getLocStart(), diag::err_variable_object_no_init,
584 expr->getSourceRange());
585 hadError = true;
586 }
587 } else {
588 const ConstantArrayType *CAT = DeclType->getAsConstantArrayType();
589 maxElements = static_cast<int>(CAT->getSize().getZExtValue());
590 }
591 QualType elementType = DeclType->getAsArrayType()->getElementType();
592 int numElements = 0;
593 for (int i = 0; i < maxElements; ++i, ++numElements) {
594 // Don't attempt to go past the end of the init list
595 if (startIndex >= IList->getNumInits())
596 break;
597 Expr* expr = IList->getInit(startIndex);
598 if (InitListExpr *SubInitList = dyn_cast<InitListExpr>(expr)) {
599 unsigned newIndex = 0;
600 hadError |= CheckInitializerListTypes(SubInitList, elementType,
601 true, newIndex);
602 ++startIndex;
603 } else {
604 hadError |= CheckInitializerListTypes(IList, elementType,
605 false, startIndex);
606 }
607 }
608 if (DeclType->getAsVariableArrayType()) {
609 // If this is an incomplete array type, the actual type needs to
610 // be calculated here
611 if (numElements == 0) {
612 // Sizing an array implicitly to zero is not allowed
613 // (It could in theory be allowed, but it doesn't really matter.)
614 Diag(IList->getLocStart(),
615 diag::err_at_least_one_initializer_needed_to_size_array);
616 hadError = true;
617 } else {
618 llvm::APSInt ConstVal(32);
619 ConstVal = numElements;
620 DeclType = Context.getConstantArrayType(elementType, ConstVal,
621 ArrayType::Normal, 0);
622 }
623 }
624 } else {
625 assert(0 && "Aggregate that isn't a function or array?!");
626 }
627 } else {
628 // In C, all types are either scalars or aggregates, but
629 // additional handling is needed here for C++ (and possibly others?).
630 assert(0 && "Unsupported initializer type");
631 }
632
633 // If this init list is a base list, we set the type; an initializer doesn't
634 // fundamentally have a type, but this makes the ASTs a bit easier to read
635 if (topLevel)
636 IList->setType(DeclType);
637
638 if (topLevel && startIndex < IList->getNumInits()) {
639 // We have leftover initializers; warn
640 Diag(IList->getInit(startIndex)->getLocStart(),
641 diag::warn_excess_initializers,
642 IList->getInit(startIndex)->getSourceRange());
643 }
644 return hadError;
645}
646
647bool Sema::CheckInitializerTypes(Expr *&Init, QualType &DeclType) {
Steve Naroffca107302008-01-21 23:53:58 +0000648 // C99 6.7.8p3: The type of the entity to be initialized shall be an array
649 // of unknown size ("[]") or an object type that is not a variable array type.
650 if (const VariableArrayType *VAT = DeclType->getAsVariablyModifiedType())
651 return Diag(VAT->getSizeExpr()->getLocStart(),
652 diag::err_variable_object_no_init,
653 VAT->getSizeExpr()->getSourceRange());
654
Steve Naroff2fdc3742007-12-10 22:44:33 +0000655 InitListExpr *InitList = dyn_cast<InitListExpr>(Init);
656 if (!InitList) {
Steve Naroffa49e1fa2008-01-22 00:55:40 +0000657 // FIXME: Handle wide strings
658 if (StringLiteral *strLiteral = IsStringLiteralInit(Init, DeclType))
659 return CheckStringLiteralInit(strLiteral, DeclType);
Steve Naroffd0091aa2008-01-10 22:15:12 +0000660 return CheckSingleInitializer(Init, DeclType);
Steve Naroff2fdc3742007-12-10 22:44:33 +0000661 }
Steve Naroffa9960332008-01-25 00:51:06 +0000662 unsigned newIndex = 0;
663 return CheckInitializerListTypes(InitList, DeclType, true, newIndex);
Steve Narofff0090632007-09-02 02:04:30 +0000664}
665
Fariborz Jahanian306d68f2007-11-08 23:49:49 +0000666Sema::DeclTy *
Steve Naroff08d92e42007-09-15 18:49:24 +0000667Sema::ActOnDeclarator(Scope *S, Declarator &D, DeclTy *lastDecl) {
Steve Naroff94745042007-09-13 23:52:58 +0000668 ScopedDecl *LastDeclarator = dyn_cast_or_null<ScopedDecl>((Decl *)lastDecl);
Reid Spencer5f016e22007-07-11 17:01:13 +0000669 IdentifierInfo *II = D.getIdentifier();
670
Chris Lattnere80a59c2007-07-25 00:24:17 +0000671 // All of these full declarators require an identifier. If it doesn't have
672 // one, the ParsedFreeStandingDeclSpec action should be used.
673 if (II == 0) {
Chris Lattner311ff022007-10-16 22:36:42 +0000674 Diag(D.getDeclSpec().getSourceRange().getBegin(),
Chris Lattner98e08632007-08-28 06:17:15 +0000675 diag::err_declarator_need_ident,
Chris Lattnere80a59c2007-07-25 00:24:17 +0000676 D.getDeclSpec().getSourceRange(), D.getSourceRange());
677 return 0;
678 }
679
Chris Lattner31e05722007-08-26 06:24:45 +0000680 // The scope passed in may not be a decl scope. Zip up the scope tree until
681 // we find one that is.
682 while ((S->getFlags() & Scope::DeclScope) == 0)
683 S = S->getParent();
684
Reid Spencer5f016e22007-07-11 17:01:13 +0000685 // See if this is a redefinition of a variable in the same scope.
Steve Naroffc752d042007-09-13 18:10:37 +0000686 ScopedDecl *PrevDecl = LookupScopedDecl(II, Decl::IDNS_Ordinary,
687 D.getIdentifierLoc(), S);
Steve Naroffc752d042007-09-13 18:10:37 +0000688 ScopedDecl *New;
Steve Naroff5912a352007-08-28 20:14:24 +0000689 bool InvalidDecl = false;
690
Chris Lattner41af0932007-11-14 06:34:38 +0000691 QualType R = GetTypeForDeclarator(D, S);
692 assert(!R.isNull() && "GetTypeForDeclarator() returned null type");
693
Reid Spencer5f016e22007-07-11 17:01:13 +0000694 if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef) {
Chris Lattner41af0932007-11-14 06:34:38 +0000695 TypedefDecl *NewTD = ParseTypedefDecl(S, D, R, LastDeclarator);
Reid Spencer5f016e22007-07-11 17:01:13 +0000696 if (!NewTD) return 0;
697
698 // Handle attributes prior to checking for duplicates in MergeVarDecl
699 HandleDeclAttributes(NewTD, D.getDeclSpec().getAttributes(),
700 D.getAttributes());
Steve Naroffffce4d52008-01-09 23:34:55 +0000701 // Merge the decl with the existing one if appropriate. If the decl is
702 // in an outer scope, it isn't the same thing.
703 if (PrevDecl && S->isDeclScope(PrevDecl)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000704 NewTD = MergeTypeDefDecl(NewTD, PrevDecl);
705 if (NewTD == 0) return 0;
706 }
707 New = NewTD;
708 if (S->getParent() == 0) {
709 // C99 6.7.7p2: If a typedef name specifies a variably modified type
710 // then it shall have block scope.
Steve Naroffd7444aa2007-08-31 17:20:07 +0000711 if (const VariableArrayType *VAT =
712 NewTD->getUnderlyingType()->getAsVariablyModifiedType()) {
713 Diag(D.getIdentifierLoc(), diag::err_typecheck_illegal_vla,
714 VAT->getSizeExpr()->getSourceRange());
715 InvalidDecl = true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000716 }
717 }
Chris Lattner41af0932007-11-14 06:34:38 +0000718 } else if (R.getTypePtr()->isFunctionType()) {
Chris Lattner271f1a62007-09-27 15:15:46 +0000719 FunctionDecl::StorageClass SC = FunctionDecl::None;
Reid Spencer5f016e22007-07-11 17:01:13 +0000720 switch (D.getDeclSpec().getStorageClassSpec()) {
721 default: assert(0 && "Unknown storage class!");
722 case DeclSpec::SCS_auto:
723 case DeclSpec::SCS_register:
724 Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_func,
725 R.getAsString());
Steve Naroff5912a352007-08-28 20:14:24 +0000726 InvalidDecl = true;
727 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000728 case DeclSpec::SCS_unspecified: SC = FunctionDecl::None; break;
729 case DeclSpec::SCS_extern: SC = FunctionDecl::Extern; break;
730 case DeclSpec::SCS_static: SC = FunctionDecl::Static; break;
Steve Naroff7dd0bd42008-01-28 21:57:15 +0000731 case DeclSpec::SCS_private_extern: SC = FunctionDecl::PrivateExtern;break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000732 }
733
734 FunctionDecl *NewFD = new FunctionDecl(D.getIdentifierLoc(), II, R, SC,
Chris Lattner70c8b2e2007-08-26 04:02:13 +0000735 D.getDeclSpec().isInlineSpecified(),
Nate Begeman1b4e2512007-11-13 22:14:47 +0000736 LastDeclarator,
737 D.getDeclSpec().getAttributes());
738
739 // Transfer ownership of DeclSpec attributes to FunctionDecl
740 D.getDeclSpec().clearAttributes();
Reid Spencer5f016e22007-07-11 17:01:13 +0000741
Steve Naroffffce4d52008-01-09 23:34:55 +0000742 // Merge the decl with the existing one if appropriate. Since C functions
743 // are in a flat namespace, make sure we consider decls in outer scopes.
Reid Spencer5f016e22007-07-11 17:01:13 +0000744 if (PrevDecl) {
745 NewFD = MergeFunctionDecl(NewFD, PrevDecl);
746 if (NewFD == 0) return 0;
747 }
748 New = NewFD;
749 } else {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000750 if (R.getTypePtr()->isObjCInterfaceType()) {
Fariborz Jahaniane7f64cc2007-10-12 22:10:42 +0000751 Diag(D.getIdentifierLoc(), diag::err_statically_allocated_object,
752 D.getIdentifier()->getName());
753 InvalidDecl = true;
754 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000755
756 VarDecl *NewVD;
757 VarDecl::StorageClass SC;
758 switch (D.getDeclSpec().getStorageClassSpec()) {
759 default: assert(0 && "Unknown storage class!");
Steve Naroffd6326c62008-01-25 22:14:40 +0000760 case DeclSpec::SCS_unspecified: SC = VarDecl::None; break;
761 case DeclSpec::SCS_extern: SC = VarDecl::Extern; break;
762 case DeclSpec::SCS_static: SC = VarDecl::Static; break;
763 case DeclSpec::SCS_auto: SC = VarDecl::Auto; break;
764 case DeclSpec::SCS_register: SC = VarDecl::Register; break;
765 case DeclSpec::SCS_private_extern: SC = VarDecl::PrivateExtern; break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000766 }
767 if (S->getParent() == 0) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000768 // C99 6.9p2: The storage-class specifiers auto and register shall not
769 // appear in the declaration specifiers in an external declaration.
770 if (SC == VarDecl::Auto || SC == VarDecl::Register) {
771 Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_fscope,
772 R.getAsString());
Steve Naroff53a32342007-08-28 18:45:29 +0000773 InvalidDecl = true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000774 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000775 NewVD = new FileVarDecl(D.getIdentifierLoc(), II, R, SC, LastDeclarator);
Steve Narofff0090632007-09-02 02:04:30 +0000776 } else {
Reid Spencer5f016e22007-07-11 17:01:13 +0000777 NewVD = new BlockVarDecl(D.getIdentifierLoc(), II, R, SC, LastDeclarator);
Steve Naroff53a32342007-08-28 18:45:29 +0000778 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000779 // Handle attributes prior to checking for duplicates in MergeVarDecl
780 HandleDeclAttributes(NewVD, D.getDeclSpec().getAttributes(),
781 D.getAttributes());
782
Steve Naroffffce4d52008-01-09 23:34:55 +0000783 // Merge the decl with the existing one if appropriate. If the decl is
784 // in an outer scope, it isn't the same thing.
785 if (PrevDecl && S->isDeclScope(PrevDecl)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000786 NewVD = MergeVarDecl(NewVD, PrevDecl);
787 if (NewVD == 0) return 0;
788 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000789 New = NewVD;
790 }
791
792 // If this has an identifier, add it to the scope stack.
793 if (II) {
Steve Naroffc752d042007-09-13 18:10:37 +0000794 New->setNext(II->getFETokenInfo<ScopedDecl>());
Reid Spencer5f016e22007-07-11 17:01:13 +0000795 II->setFETokenInfo(New);
796 S->AddDecl(New);
797 }
Steve Naroff5912a352007-08-28 20:14:24 +0000798 // If any semantic error occurred, mark the decl as invalid.
799 if (D.getInvalidType() || InvalidDecl)
800 New->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +0000801
802 return New;
803}
804
Steve Naroffd0091aa2008-01-10 22:15:12 +0000805bool Sema::CheckForConstantInitializer(Expr *Init, QualType DclT) {
806 SourceLocation loc;
807 // FIXME: Remove the isReference check and handle assignment to a reference.
808 if (!DclT->isReferenceType() && !Init->isConstantExpr(Context, &loc)) {
809 assert(loc.isValid() && "isConstantExpr didn't return a loc!");
810 Diag(loc, diag::err_init_element_not_constant, Init->getSourceRange());
811 return true;
812 }
813 return false;
814}
815
Steve Naroffbb204692007-09-12 14:07:44 +0000816void Sema::AddInitializerToDecl(DeclTy *dcl, ExprTy *init) {
Steve Naroff410e3e22007-09-12 20:13:48 +0000817 Decl *RealDecl = static_cast<Decl *>(dcl);
Steve Naroffbb204692007-09-12 14:07:44 +0000818 Expr *Init = static_cast<Expr *>(init);
Chris Lattner9a11b9a2007-10-19 20:10:30 +0000819 assert(Init && "missing initializer");
Steve Naroffbb204692007-09-12 14:07:44 +0000820
Chris Lattner9a11b9a2007-10-19 20:10:30 +0000821 // If there is no declaration, there was an error parsing it. Just ignore
822 // the initializer.
823 if (RealDecl == 0) {
824 delete Init;
825 return;
826 }
Steve Naroffbb204692007-09-12 14:07:44 +0000827
Steve Naroff410e3e22007-09-12 20:13:48 +0000828 VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl);
829 if (!VDecl) {
Steve Naroff8e74c932007-09-13 21:41:19 +0000830 Diag(dyn_cast<ScopedDecl>(RealDecl)->getLocation(),
831 diag::err_illegal_initializer);
Steve Naroff410e3e22007-09-12 20:13:48 +0000832 RealDecl->setInvalidDecl();
833 return;
834 }
Steve Naroffbb204692007-09-12 14:07:44 +0000835 // Get the decls type and save a reference for later, since
Steve Naroffd0091aa2008-01-10 22:15:12 +0000836 // CheckInitializerTypes may change it.
Steve Naroff410e3e22007-09-12 20:13:48 +0000837 QualType DclT = VDecl->getType(), SavT = DclT;
838 if (BlockVarDecl *BVD = dyn_cast<BlockVarDecl>(VDecl)) {
Steve Naroffbb204692007-09-12 14:07:44 +0000839 VarDecl::StorageClass SC = BVD->getStorageClass();
840 if (SC == VarDecl::Extern) { // C99 6.7.8p5
Steve Naroff410e3e22007-09-12 20:13:48 +0000841 Diag(VDecl->getLocation(), diag::err_block_extern_cant_init);
Steve Naroffbb204692007-09-12 14:07:44 +0000842 BVD->setInvalidDecl();
843 } else if (!BVD->isInvalidDecl()) {
Steve Naroffa9960332008-01-25 00:51:06 +0000844 if (CheckInitializerTypes(Init, DclT))
845 BVD->setInvalidDecl();
Steve Naroffd0091aa2008-01-10 22:15:12 +0000846 if (SC == VarDecl::Static) // C99 6.7.8p4.
847 CheckForConstantInitializer(Init, DclT);
Steve Naroffbb204692007-09-12 14:07:44 +0000848 }
Steve Naroff410e3e22007-09-12 20:13:48 +0000849 } else if (FileVarDecl *FVD = dyn_cast<FileVarDecl>(VDecl)) {
Steve Naroffbb204692007-09-12 14:07:44 +0000850 if (FVD->getStorageClass() == VarDecl::Extern)
Steve Naroff410e3e22007-09-12 20:13:48 +0000851 Diag(VDecl->getLocation(), diag::warn_extern_init);
Steve Naroffbb204692007-09-12 14:07:44 +0000852 if (!FVD->isInvalidDecl())
Steve Naroffa9960332008-01-25 00:51:06 +0000853 if (CheckInitializerTypes(Init, DclT))
854 FVD->setInvalidDecl();
Steve Naroffd0091aa2008-01-10 22:15:12 +0000855
856 // C99 6.7.8p4. All file scoped initializers need to be constant.
857 CheckForConstantInitializer(Init, DclT);
Steve Naroffbb204692007-09-12 14:07:44 +0000858 }
859 // If the type changed, it means we had an incomplete type that was
860 // completed by the initializer. For example:
861 // int ary[] = { 1, 3, 5 };
862 // "ary" transitions from a VariableArrayType to a ConstantArrayType.
Christopher Lamb48b12392007-11-29 19:09:19 +0000863 if (!VDecl->isInvalidDecl() && (DclT != SavT)) {
Steve Naroff410e3e22007-09-12 20:13:48 +0000864 VDecl->setType(DclT);
Christopher Lamb48b12392007-11-29 19:09:19 +0000865 Init->setType(DclT);
866 }
Steve Naroffbb204692007-09-12 14:07:44 +0000867
868 // Attach the initializer to the decl.
Steve Naroff410e3e22007-09-12 20:13:48 +0000869 VDecl->setInit(Init);
Steve Naroffbb204692007-09-12 14:07:44 +0000870 return;
871}
872
Reid Spencer5f016e22007-07-11 17:01:13 +0000873/// The declarators are chained together backwards, reverse the list.
874Sema::DeclTy *Sema::FinalizeDeclaratorGroup(Scope *S, DeclTy *group) {
875 // Often we have single declarators, handle them quickly.
Steve Naroff94745042007-09-13 23:52:58 +0000876 Decl *GroupDecl = static_cast<Decl*>(group);
877 if (GroupDecl == 0)
Steve Naroffbb204692007-09-12 14:07:44 +0000878 return 0;
Steve Naroff94745042007-09-13 23:52:58 +0000879
880 ScopedDecl *Group = dyn_cast<ScopedDecl>(GroupDecl);
881 ScopedDecl *NewGroup = 0;
Steve Naroffbb204692007-09-12 14:07:44 +0000882 if (Group->getNextDeclarator() == 0)
Reid Spencer5f016e22007-07-11 17:01:13 +0000883 NewGroup = Group;
Steve Naroffbb204692007-09-12 14:07:44 +0000884 else { // reverse the list.
885 while (Group) {
Steve Naroff94745042007-09-13 23:52:58 +0000886 ScopedDecl *Next = Group->getNextDeclarator();
Steve Naroffbb204692007-09-12 14:07:44 +0000887 Group->setNextDeclarator(NewGroup);
888 NewGroup = Group;
889 Group = Next;
890 }
891 }
892 // Perform semantic analysis that depends on having fully processed both
893 // the declarator and initializer.
Steve Naroff94745042007-09-13 23:52:58 +0000894 for (ScopedDecl *ID = NewGroup; ID; ID = ID->getNextDeclarator()) {
Steve Naroffbb204692007-09-12 14:07:44 +0000895 VarDecl *IDecl = dyn_cast<VarDecl>(ID);
896 if (!IDecl)
897 continue;
898 FileVarDecl *FVD = dyn_cast<FileVarDecl>(IDecl);
899 BlockVarDecl *BVD = dyn_cast<BlockVarDecl>(IDecl);
900 QualType T = IDecl->getType();
901
902 // C99 6.7.5.2p2: If an identifier is declared to be an object with
903 // static storage duration, it shall not have a variable length array.
904 if ((FVD || BVD) && IDecl->getStorageClass() == VarDecl::Static) {
905 if (const VariableArrayType *VLA = T->getAsVariableArrayType()) {
906 if (VLA->getSizeExpr()) {
907 Diag(IDecl->getLocation(), diag::err_typecheck_illegal_vla);
908 IDecl->setInvalidDecl();
909 }
910 }
911 }
912 // Block scope. C99 6.7p7: If an identifier for an object is declared with
913 // no linkage (C99 6.2.2p6), the type for the object shall be complete...
914 if (BVD && IDecl->getStorageClass() != VarDecl::Extern) {
915 if (T->isIncompleteType()) {
Chris Lattner8b1be772007-12-02 07:50:03 +0000916 Diag(IDecl->getLocation(), diag::err_typecheck_decl_incomplete_type,
917 T.getAsString());
Steve Naroffbb204692007-09-12 14:07:44 +0000918 IDecl->setInvalidDecl();
919 }
920 }
921 // File scope. C99 6.9.2p2: A declaration of an identifier for and
922 // object that has file scope without an initializer, and without a
923 // storage-class specifier or with the storage-class specifier "static",
924 // constitutes a tentative definition. Note: A tentative definition with
925 // external linkage is valid (C99 6.2.2p5).
Steve Naroffd3cd1e52008-01-18 00:39:39 +0000926 if (FVD && !FVD->getInit() && (FVD->getStorageClass() == VarDecl::Static ||
927 FVD->getStorageClass() == VarDecl::None)) {
Steve Naroff9a75f8a2008-01-18 20:40:52 +0000928 const VariableArrayType *VAT = T->getAsVariableArrayType();
929
930 if (VAT && VAT->getSizeExpr() == 0) {
931 // C99 6.9.2 (p2, p5): Implicit initialization causes an incomplete
932 // array to be completed. Don't issue a diagnostic.
933 } else if (T->isIncompleteType()) {
934 // C99 6.9.2p3: If the declaration of an identifier for an object is
935 // a tentative definition and has internal linkage (C99 6.2.2p3), the
936 // declared type shall not be an incomplete type.
Chris Lattner8b1be772007-12-02 07:50:03 +0000937 Diag(IDecl->getLocation(), diag::err_typecheck_decl_incomplete_type,
938 T.getAsString());
Steve Naroffbb204692007-09-12 14:07:44 +0000939 IDecl->setInvalidDecl();
940 }
941 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000942 }
943 return NewGroup;
944}
Steve Naroffe1223f72007-08-28 03:03:08 +0000945
946// Called from Sema::ParseStartOfFunctionDef().
Reid Spencer5f016e22007-07-11 17:01:13 +0000947ParmVarDecl *
Nate Begemanbff5f5c2007-11-13 21:49:48 +0000948Sema::ActOnParamDeclarator(struct DeclaratorChunk::ParamInfo &PI, Scope *FnScope)
Steve Naroff66499922007-11-12 03:44:46 +0000949{
Reid Spencer5f016e22007-07-11 17:01:13 +0000950 IdentifierInfo *II = PI.Ident;
951 // TODO: CHECK FOR CONFLICTS, multiple decls with same name in one scope.
952 // Can this happen for params? We already checked that they don't conflict
953 // among each other. Here they can only shadow globals, which is ok.
Chris Lattner8b9023b2007-07-13 03:05:23 +0000954 if (/*Decl *PrevDecl = */LookupScopedDecl(II, Decl::IDNS_Ordinary,
Reid Spencer5f016e22007-07-11 17:01:13 +0000955 PI.IdentLoc, FnScope)) {
956
957 }
958
959 // FIXME: Handle storage class (auto, register). No declarator?
960 // TODO: Chain to previous parameter with the prevdeclarator chain?
Steve Naroff6a9f3e32007-08-07 22:44:21 +0000961
962 // Perform the default function/array conversion (C99 6.7.5.3p[7,8]).
963 // Doing the promotion here has a win and a loss. The win is the type for
964 // both Decl's and DeclRefExpr's will match (a convenient invariant for the
965 // code generator). The loss is the orginal type isn't preserved. For example:
966 //
967 // void func(int parmvardecl[5]) { // convert "int [5]" to "int *"
968 // int blockvardecl[5];
969 // sizeof(parmvardecl); // size == 4
970 // sizeof(blockvardecl); // size == 20
971 // }
972 //
973 // For expressions, all implicit conversions are captured using the
974 // ImplicitCastExpr AST node (we have no such mechanism for Decl's).
975 //
976 // FIXME: If a source translation tool needs to see the original type, then
977 // we need to consider storing both types (in ParmVarDecl)...
978 //
979 QualType parmDeclType = QualType::getFromOpaquePtr(PI.TypeInfo);
Chris Lattner529bd022008-01-02 22:50:48 +0000980 if (const ArrayType *AT = parmDeclType->getAsArrayType()) {
981 // int x[restrict 4] -> int *restrict
Steve Naroff6a9f3e32007-08-07 22:44:21 +0000982 parmDeclType = Context.getPointerType(AT->getElementType());
Chris Lattner529bd022008-01-02 22:50:48 +0000983 parmDeclType = parmDeclType.getQualifiedType(AT->getIndexTypeQualifier());
984 } else if (parmDeclType->isFunctionType())
Steve Naroff6a9f3e32007-08-07 22:44:21 +0000985 parmDeclType = Context.getPointerType(parmDeclType);
986
987 ParmVarDecl *New = new ParmVarDecl(PI.IdentLoc, II, parmDeclType,
Nate Begeman1b4e2512007-11-13 22:14:47 +0000988 VarDecl::None, 0, PI.AttrList);
Steve Naroff53a32342007-08-28 18:45:29 +0000989 if (PI.InvalidType)
990 New->setInvalidDecl();
991
Reid Spencer5f016e22007-07-11 17:01:13 +0000992 // If this has an identifier, add it to the scope stack.
993 if (II) {
Steve Naroffc752d042007-09-13 18:10:37 +0000994 New->setNext(II->getFETokenInfo<ScopedDecl>());
Reid Spencer5f016e22007-07-11 17:01:13 +0000995 II->setFETokenInfo(New);
996 FnScope->AddDecl(New);
997 }
998
999 return New;
1000}
Fariborz Jahanian306d68f2007-11-08 23:49:49 +00001001
Chris Lattnerb652cea2007-10-09 17:14:05 +00001002Sema::DeclTy *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Declarator &D) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001003 assert(CurFunctionDecl == 0 && "Function parsing confused");
1004 assert(D.getTypeObject(0).Kind == DeclaratorChunk::Function &&
1005 "Not a function declarator!");
1006 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
1007
1008 // Verify 6.9.1p6: 'every identifier in the identifier list shall be declared'
1009 // for a K&R function.
1010 if (!FTI.hasPrototype) {
1011 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) {
1012 if (FTI.ArgInfo[i].TypeInfo == 0) {
1013 Diag(FTI.ArgInfo[i].IdentLoc, diag::ext_param_not_declared,
1014 FTI.ArgInfo[i].Ident->getName());
1015 // Implicitly declare the argument as type 'int' for lack of a better
1016 // type.
1017 FTI.ArgInfo[i].TypeInfo = Context.IntTy.getAsOpaquePtr();
1018 }
1019 }
1020
1021 // Since this is a function definition, act as though we have information
1022 // about the arguments.
1023 FTI.hasPrototype = true;
1024 } else {
1025 // FIXME: Diagnose arguments without names in C.
1026
1027 }
1028
1029 Scope *GlobalScope = FnBodyScope->getParent();
Steve Naroffadbbd0c2008-01-14 20:51:29 +00001030
1031 // See if this is a redefinition.
1032 ScopedDecl *PrevDcl = LookupScopedDecl(D.getIdentifier(), Decl::IDNS_Ordinary,
1033 D.getIdentifierLoc(), GlobalScope);
1034 if (FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(PrevDcl)) {
1035 if (FD->getBody()) {
1036 Diag(D.getIdentifierLoc(), diag::err_redefinition,
1037 D.getIdentifier()->getName());
1038 Diag(FD->getLocation(), diag::err_previous_definition);
1039 }
1040 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001041 FunctionDecl *FD =
Steve Naroff08d92e42007-09-15 18:49:24 +00001042 static_cast<FunctionDecl*>(ActOnDeclarator(GlobalScope, D, 0));
Steve Naroffadbbd0c2008-01-14 20:51:29 +00001043 assert(FD != 0 && "ActOnDeclarator() didn't return a FunctionDecl");
Reid Spencer5f016e22007-07-11 17:01:13 +00001044 CurFunctionDecl = FD;
1045
1046 // Create Decl objects for each parameter, adding them to the FunctionDecl.
1047 llvm::SmallVector<ParmVarDecl*, 16> Params;
1048
1049 // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs function that takes
1050 // no arguments, not a function that takes a single void argument.
1051 if (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
Chris Lattnerb751c282007-11-28 18:51:29 +00001052 !QualType::getFromOpaquePtr(FTI.ArgInfo[0].TypeInfo).getQualifiers() &&
1053 QualType::getFromOpaquePtr(FTI.ArgInfo[0].TypeInfo)->isVoidType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001054 // empty arg list, don't push any params.
1055 } else {
Steve Naroff66499922007-11-12 03:44:46 +00001056 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) {
Nate Begemanbff5f5c2007-11-13 21:49:48 +00001057 Params.push_back(ActOnParamDeclarator(D.getTypeObject(0).Fun.ArgInfo[i],
Steve Naroff66499922007-11-12 03:44:46 +00001058 FnBodyScope));
1059 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001060 }
1061
1062 FD->setParams(&Params[0], Params.size());
1063
1064 return FD;
1065}
1066
Steve Naroffd6d054d2007-11-11 23:20:51 +00001067Sema::DeclTy *Sema::ActOnFinishFunctionBody(DeclTy *D, StmtTy *Body) {
1068 Decl *dcl = static_cast<Decl *>(D);
1069 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(dcl)) {
1070 FD->setBody((Stmt*)Body);
1071 assert(FD == CurFunctionDecl && "Function parsing confused");
Steve Naroff4d832202007-12-13 18:18:56 +00001072 CurFunctionDecl = 0;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001073 } else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(dcl)) {
Steve Naroffd6d054d2007-11-11 23:20:51 +00001074 MD->setBody((Stmt*)Body);
Steve Naroff03300712007-11-12 13:56:41 +00001075 CurMethodDecl = 0;
Steve Naroff4d832202007-12-13 18:18:56 +00001076 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001077 // Verify and clean out per-function state.
1078
1079 // Check goto/label use.
1080 for (llvm::DenseMap<IdentifierInfo*, LabelStmt*>::iterator
1081 I = LabelMap.begin(), E = LabelMap.end(); I != E; ++I) {
1082 // Verify that we have no forward references left. If so, there was a goto
1083 // or address of a label taken, but no definition of it. Label fwd
1084 // definitions are indicated with a null substmt.
1085 if (I->second->getSubStmt() == 0) {
1086 LabelStmt *L = I->second;
1087 // Emit error.
1088 Diag(L->getIdentLoc(), diag::err_undeclared_label_use, L->getName());
1089
1090 // At this point, we have gotos that use the bogus label. Stitch it into
1091 // the function body so that they aren't leaked and that the AST is well
1092 // formed.
Chris Lattner0cbc2152008-01-25 00:01:10 +00001093 if (Body) {
1094 L->setSubStmt(new NullStmt(L->getIdentLoc()));
1095 cast<CompoundStmt>((Stmt*)Body)->push_back(L);
1096 } else {
1097 // The whole function wasn't parsed correctly, just delete this.
1098 delete L;
1099 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001100 }
1101 }
1102 LabelMap.clear();
1103
Steve Naroffd6d054d2007-11-11 23:20:51 +00001104 return D;
Fariborz Jahanian60fbca02007-11-10 16:31:34 +00001105}
1106
Reid Spencer5f016e22007-07-11 17:01:13 +00001107/// ImplicitlyDefineFunction - An undeclared identifier was used in a function
1108/// call, forming a call to an implicitly defined function (per C99 6.5.1p2).
Steve Naroff8c9f13e2007-09-16 16:16:00 +00001109ScopedDecl *Sema::ImplicitlyDefineFunction(SourceLocation Loc,
1110 IdentifierInfo &II, Scope *S) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001111 if (getLangOptions().C99) // Extension in C99.
1112 Diag(Loc, diag::ext_implicit_function_decl, II.getName());
1113 else // Legal in C90, but warn about it.
1114 Diag(Loc, diag::warn_implicit_function_decl, II.getName());
1115
1116 // FIXME: handle stuff like:
1117 // void foo() { extern float X(); }
1118 // void bar() { X(); } <-- implicit decl for X in another scope.
1119
1120 // Set a Declarator for the implicit definition: int foo();
1121 const char *Dummy;
1122 DeclSpec DS;
1123 bool Error = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, Dummy);
1124 Error = Error; // Silence warning.
1125 assert(!Error && "Error setting up implicit decl!");
1126 Declarator D(DS, Declarator::BlockContext);
1127 D.AddTypeInfo(DeclaratorChunk::getFunction(false, false, 0, 0, Loc));
1128 D.SetIdentifier(&II, Loc);
1129
1130 // Find translation-unit scope to insert this function into.
Chris Lattner31e05722007-08-26 06:24:45 +00001131 if (Scope *FnS = S->getFnParent())
1132 S = FnS->getParent(); // Skip all scopes in a function at once.
Reid Spencer5f016e22007-07-11 17:01:13 +00001133 while (S->getParent())
1134 S = S->getParent();
1135
Steve Naroff8c9f13e2007-09-16 16:16:00 +00001136 return dyn_cast<ScopedDecl>(static_cast<Decl*>(ActOnDeclarator(S, D, 0)));
Reid Spencer5f016e22007-07-11 17:01:13 +00001137}
1138
1139
Chris Lattner41af0932007-11-14 06:34:38 +00001140TypedefDecl *Sema::ParseTypedefDecl(Scope *S, Declarator &D, QualType T,
Steve Naroff94745042007-09-13 23:52:58 +00001141 ScopedDecl *LastDeclarator) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001142 assert(D.getIdentifier() && "Wrong callback for declspec without declarator");
Steve Naroff5912a352007-08-28 20:14:24 +00001143 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
Reid Spencer5f016e22007-07-11 17:01:13 +00001144
1145 // Scope manipulation handled by caller.
Steve Naroff5912a352007-08-28 20:14:24 +00001146 TypedefDecl *NewTD = new TypedefDecl(D.getIdentifierLoc(), D.getIdentifier(),
1147 T, LastDeclarator);
1148 if (D.getInvalidType())
1149 NewTD->setInvalidDecl();
1150 return NewTD;
Reid Spencer5f016e22007-07-11 17:01:13 +00001151}
1152
Steve Naroff08d92e42007-09-15 18:49:24 +00001153/// ActOnTag - This is invoked when we see 'struct foo' or 'struct {'. In the
Reid Spencer5f016e22007-07-11 17:01:13 +00001154/// former case, Name will be non-null. In the later case, Name will be null.
1155/// TagType indicates what kind of tag this is. TK indicates whether this is a
1156/// reference/declaration/definition of a tag.
Steve Naroff08d92e42007-09-15 18:49:24 +00001157Sema::DeclTy *Sema::ActOnTag(Scope *S, unsigned TagType, TagKind TK,
Reid Spencer5f016e22007-07-11 17:01:13 +00001158 SourceLocation KWLoc, IdentifierInfo *Name,
1159 SourceLocation NameLoc, AttributeList *Attr) {
1160 // If this is a use of an existing tag, it must have a name.
1161 assert((Name != 0 || TK == TK_Definition) &&
1162 "Nameless record must be a definition!");
1163
1164 Decl::Kind Kind;
1165 switch (TagType) {
1166 default: assert(0 && "Unknown tag type!");
1167 case DeclSpec::TST_struct: Kind = Decl::Struct; break;
1168 case DeclSpec::TST_union: Kind = Decl::Union; break;
1169//case DeclSpec::TST_class: Kind = Decl::Class; break;
1170 case DeclSpec::TST_enum: Kind = Decl::Enum; break;
1171 }
1172
1173 // If this is a named struct, check to see if there was a previous forward
1174 // declaration or definition.
1175 if (TagDecl *PrevDecl =
1176 dyn_cast_or_null<TagDecl>(LookupScopedDecl(Name, Decl::IDNS_Tag,
1177 NameLoc, S))) {
1178
1179 // If this is a use of a previous tag, or if the tag is already declared in
1180 // the same scope (so that the definition/declaration completes or
1181 // rementions the tag), reuse the decl.
1182 if (TK == TK_Reference || S->isDeclScope(PrevDecl)) {
1183 // Make sure that this wasn't declared as an enum and now used as a struct
1184 // or something similar.
1185 if (PrevDecl->getKind() != Kind) {
1186 Diag(KWLoc, diag::err_use_with_wrong_tag, Name->getName());
1187 Diag(PrevDecl->getLocation(), diag::err_previous_use);
1188 }
1189
1190 // If this is a use or a forward declaration, we're good.
1191 if (TK != TK_Definition)
1192 return PrevDecl;
1193
1194 // Diagnose attempts to redefine a tag.
1195 if (PrevDecl->isDefinition()) {
1196 Diag(NameLoc, diag::err_redefinition, Name->getName());
1197 Diag(PrevDecl->getLocation(), diag::err_previous_definition);
1198 // If this is a redefinition, recover by making this struct be
1199 // anonymous, which will make any later references get the previous
1200 // definition.
1201 Name = 0;
1202 } else {
1203 // Okay, this is definition of a previously declared or referenced tag.
1204 // Move the location of the decl to be the definition site.
1205 PrevDecl->setLocation(NameLoc);
1206 return PrevDecl;
1207 }
1208 }
1209 // If we get here, this is a definition of a new struct type in a nested
1210 // scope, e.g. "struct foo; void bar() { struct foo; }", just create a new
1211 // type.
1212 }
1213
1214 // If there is an identifier, use the location of the identifier as the
1215 // location of the decl, otherwise use the location of the struct/union
1216 // keyword.
1217 SourceLocation Loc = NameLoc.isValid() ? NameLoc : KWLoc;
1218
1219 // Otherwise, if this is the first time we've seen this tag, create the decl.
1220 TagDecl *New;
1221 switch (Kind) {
1222 default: assert(0 && "Unknown tag kind!");
1223 case Decl::Enum:
1224 // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
1225 // enum X { A, B, C } D; D should chain to X.
1226 New = new EnumDecl(Loc, Name, 0);
1227 // If this is an undefined enum, warn.
1228 if (TK != TK_Definition) Diag(Loc, diag::ext_forward_ref_enum);
1229 break;
1230 case Decl::Union:
1231 case Decl::Struct:
1232 case Decl::Class:
1233 // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
1234 // struct X { int A; } D; D should chain to X.
1235 New = new RecordDecl(Kind, Loc, Name, 0);
1236 break;
1237 }
1238
1239 // If this has an identifier, add it to the scope stack.
1240 if (Name) {
Chris Lattner31e05722007-08-26 06:24:45 +00001241 // The scope passed in may not be a decl scope. Zip up the scope tree until
1242 // we find one that is.
1243 while ((S->getFlags() & Scope::DeclScope) == 0)
1244 S = S->getParent();
1245
1246 // Add it to the decl chain.
Steve Naroffc752d042007-09-13 18:10:37 +00001247 New->setNext(Name->getFETokenInfo<ScopedDecl>());
Reid Spencer5f016e22007-07-11 17:01:13 +00001248 Name->setFETokenInfo(New);
1249 S->AddDecl(New);
1250 }
Steve Naroff1f644322007-11-28 22:54:11 +00001251
Reid Spencer5f016e22007-07-11 17:01:13 +00001252 return New;
1253}
1254
Steve Naroff08d92e42007-09-15 18:49:24 +00001255/// ActOnField - Each field of a struct/union/class is passed into this in order
Reid Spencer5f016e22007-07-11 17:01:13 +00001256/// to create a FieldDecl object for it.
Steve Naroff08d92e42007-09-15 18:49:24 +00001257Sema::DeclTy *Sema::ActOnField(Scope *S, DeclTy *TagDecl,
Reid Spencer5f016e22007-07-11 17:01:13 +00001258 SourceLocation DeclStart,
1259 Declarator &D, ExprTy *BitfieldWidth) {
1260 IdentifierInfo *II = D.getIdentifier();
1261 Expr *BitWidth = (Expr*)BitfieldWidth;
Reid Spencer5f016e22007-07-11 17:01:13 +00001262 SourceLocation Loc = DeclStart;
1263 if (II) Loc = D.getIdentifierLoc();
1264
1265 // FIXME: Unnamed fields can be handled in various different ways, for
1266 // example, unnamed unions inject all members into the struct namespace!
1267
1268
1269 if (BitWidth) {
1270 // TODO: Validate.
1271 //printf("WARNING: BITFIELDS IGNORED!\n");
1272
1273 // 6.7.2.1p3
1274 // 6.7.2.1p4
1275
1276 } else {
1277 // Not a bitfield.
1278
1279 // validate II.
1280
1281 }
1282
1283 QualType T = GetTypeForDeclarator(D, S);
Steve Naroff5912a352007-08-28 20:14:24 +00001284 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
1285 bool InvalidDecl = false;
Steve Naroffd7444aa2007-08-31 17:20:07 +00001286
Reid Spencer5f016e22007-07-11 17:01:13 +00001287 // C99 6.7.2.1p8: A member of a structure or union may have any type other
1288 // than a variably modified type.
Steve Naroffd7444aa2007-08-31 17:20:07 +00001289 if (const VariableArrayType *VAT = T->getAsVariablyModifiedType()) {
1290 Diag(Loc, diag::err_typecheck_illegal_vla,
1291 VAT->getSizeExpr()->getSourceRange());
1292 InvalidDecl = true;
Reid Spencer5f016e22007-07-11 17:01:13 +00001293 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001294 // FIXME: Chain fielddecls together.
Steve Naroff44739212007-09-11 21:17:26 +00001295 FieldDecl *NewFD;
1296
1297 if (isa<RecordDecl>(static_cast<Decl *>(TagDecl)))
Devang Patel54e62352007-11-01 16:29:56 +00001298 NewFD = new FieldDecl(Loc, II, T, BitWidth);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001299 else if (isa<ObjCInterfaceDecl>(static_cast<Decl *>(TagDecl)) ||
1300 isa<ObjCImplementationDecl>(static_cast<Decl *>(TagDecl)) ||
1301 isa<ObjCCategoryDecl>(static_cast<Decl *>(TagDecl)) ||
Steve Naroffddd600f2007-11-14 14:15:31 +00001302 // FIXME: ivars are currently used to model properties, and
1303 // properties can appear within a protocol.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001304 // See corresponding FIXME in DeclObjC.h:ObjCPropertyDecl.
1305 isa<ObjCProtocolDecl>(static_cast<Decl *>(TagDecl)))
1306 NewFD = new ObjCIvarDecl(Loc, II, T);
Steve Naroff44739212007-09-11 21:17:26 +00001307 else
Steve Naroff08d92e42007-09-15 18:49:24 +00001308 assert(0 && "Sema::ActOnField(): Unknown TagDecl");
Steve Naroff44739212007-09-11 21:17:26 +00001309
Steve Naroff5912a352007-08-28 20:14:24 +00001310 if (D.getInvalidType() || InvalidDecl)
1311 NewFD->setInvalidDecl();
1312 return NewFD;
Reid Spencer5f016e22007-07-11 17:01:13 +00001313}
1314
Fariborz Jahanian89204a12007-10-01 16:53:59 +00001315/// TranslateIvarVisibility - Translate visibility from a token ID to an
1316/// AST enum value.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001317static ObjCIvarDecl::AccessControl
Fariborz Jahanian89204a12007-10-01 16:53:59 +00001318TranslateIvarVisibility(tok::ObjCKeywordKind ivarVisibility) {
Steve Narofff13271f2007-09-14 23:09:53 +00001319 switch (ivarVisibility) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001320 case tok::objc_private: return ObjCIvarDecl::Private;
1321 case tok::objc_public: return ObjCIvarDecl::Public;
1322 case tok::objc_protected: return ObjCIvarDecl::Protected;
1323 case tok::objc_package: return ObjCIvarDecl::Package;
Fariborz Jahanian89204a12007-10-01 16:53:59 +00001324 default: assert(false && "Unknown visitibility kind");
Steve Narofff13271f2007-09-14 23:09:53 +00001325 }
1326}
1327
Fariborz Jahanian9d048ff2007-09-29 00:54:24 +00001328void Sema::ActOnFields(Scope* S,
Fariborz Jahanian3f5faf72007-10-04 00:45:27 +00001329 SourceLocation RecLoc, DeclTy *RecDecl,
Steve Naroff08d92e42007-09-15 18:49:24 +00001330 DeclTy **Fields, unsigned NumFields,
Steve Naroff60fccee2007-10-29 21:38:07 +00001331 SourceLocation LBrac, SourceLocation RBrac,
Steve Naroff08d92e42007-09-15 18:49:24 +00001332 tok::ObjCKeywordKind *visibility) {
Steve Naroff74216642007-09-14 22:20:54 +00001333 Decl *EnclosingDecl = static_cast<Decl*>(RecDecl);
1334 assert(EnclosingDecl && "missing record or interface decl");
1335 RecordDecl *Record = dyn_cast<RecordDecl>(EnclosingDecl);
1336
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001337 if (Record && Record->isDefinition()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001338 // Diagnose code like:
1339 // struct S { struct S {} X; };
1340 // We discover this when we complete the outer S. Reject and ignore the
1341 // outer S.
1342 Diag(Record->getLocation(), diag::err_nested_redefinition,
1343 Record->getKindName());
1344 Diag(RecLoc, diag::err_previous_definition);
Steve Naroff74216642007-09-14 22:20:54 +00001345 Record->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00001346 return;
1347 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001348 // Verify that all the fields are okay.
1349 unsigned NumNamedMembers = 0;
1350 llvm::SmallVector<FieldDecl*, 32> RecFields;
1351 llvm::SmallSet<const IdentifierInfo*, 32> FieldIDs;
Steve Naroff74216642007-09-14 22:20:54 +00001352
Reid Spencer5f016e22007-07-11 17:01:13 +00001353 for (unsigned i = 0; i != NumFields; ++i) {
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001354
Steve Naroff74216642007-09-14 22:20:54 +00001355 FieldDecl *FD = cast_or_null<FieldDecl>(static_cast<Decl*>(Fields[i]));
1356 assert(FD && "missing field decl");
1357
1358 // Remember all fields.
1359 RecFields.push_back(FD);
Reid Spencer5f016e22007-07-11 17:01:13 +00001360
1361 // Get the type for the field.
Chris Lattner02c642e2007-07-31 21:33:24 +00001362 Type *FDTy = FD->getType().getTypePtr();
Reid Spencer5f016e22007-07-11 17:01:13 +00001363
Steve Narofff13271f2007-09-14 23:09:53 +00001364 // If we have visibility info, make sure the AST is set accordingly.
1365 if (visibility)
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001366 cast<ObjCIvarDecl>(FD)->setAccessControl(
Fariborz Jahanian89204a12007-10-01 16:53:59 +00001367 TranslateIvarVisibility(visibility[i]));
Steve Narofff13271f2007-09-14 23:09:53 +00001368
Reid Spencer5f016e22007-07-11 17:01:13 +00001369 // C99 6.7.2.1p2 - A field may not be a function type.
Chris Lattner02c642e2007-07-31 21:33:24 +00001370 if (FDTy->isFunctionType()) {
Steve Naroff74216642007-09-14 22:20:54 +00001371 Diag(FD->getLocation(), diag::err_field_declared_as_function,
Reid Spencer5f016e22007-07-11 17:01:13 +00001372 FD->getName());
Steve Naroff74216642007-09-14 22:20:54 +00001373 FD->setInvalidDecl();
1374 EnclosingDecl->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00001375 continue;
1376 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001377 // C99 6.7.2.1p2 - A field may not be an incomplete type except...
1378 if (FDTy->isIncompleteType()) {
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001379 if (!Record) { // Incomplete ivar type is always an error.
Fariborz Jahanian3f5faf72007-10-04 00:45:27 +00001380 Diag(FD->getLocation(), diag::err_field_incomplete, FD->getName());
Steve Naroff74216642007-09-14 22:20:54 +00001381 FD->setInvalidDecl();
1382 EnclosingDecl->setInvalidDecl();
Fariborz Jahanian3f5faf72007-10-04 00:45:27 +00001383 continue;
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001384 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001385 if (i != NumFields-1 || // ... that the last member ...
1386 Record->getKind() != Decl::Struct || // ... of a structure ...
Chris Lattner02c642e2007-07-31 21:33:24 +00001387 !FDTy->isArrayType()) { //... may have incomplete array type.
Reid Spencer5f016e22007-07-11 17:01:13 +00001388 Diag(FD->getLocation(), diag::err_field_incomplete, FD->getName());
Steve Naroff74216642007-09-14 22:20:54 +00001389 FD->setInvalidDecl();
1390 EnclosingDecl->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00001391 continue;
1392 }
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001393 if (NumNamedMembers < 1) { //... must have more than named member ...
Reid Spencer5f016e22007-07-11 17:01:13 +00001394 Diag(FD->getLocation(), diag::err_flexible_array_empty_struct,
1395 FD->getName());
Steve Naroff74216642007-09-14 22:20:54 +00001396 FD->setInvalidDecl();
1397 EnclosingDecl->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00001398 continue;
1399 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001400 // Okay, we have a legal flexible array member at the end of the struct.
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001401 if (Record)
1402 Record->setHasFlexibleArrayMember(true);
Reid Spencer5f016e22007-07-11 17:01:13 +00001403 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001404 /// C99 6.7.2.1p2 - a struct ending in a flexible array member cannot be the
1405 /// field of another structure or the element of an array.
Chris Lattner02c642e2007-07-31 21:33:24 +00001406 if (const RecordType *FDTTy = FDTy->getAsRecordType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001407 if (FDTTy->getDecl()->hasFlexibleArrayMember()) {
1408 // If this is a member of a union, then entire union becomes "flexible".
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001409 if (Record && Record->getKind() == Decl::Union) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001410 Record->setHasFlexibleArrayMember(true);
1411 } else {
1412 // If this is a struct/class and this is not the last element, reject
1413 // it. Note that GCC supports variable sized arrays in the middle of
1414 // structures.
1415 if (i != NumFields-1) {
1416 Diag(FD->getLocation(), diag::err_variable_sized_type_in_struct,
1417 FD->getName());
Steve Naroff74216642007-09-14 22:20:54 +00001418 FD->setInvalidDecl();
1419 EnclosingDecl->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00001420 continue;
1421 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001422 // We support flexible arrays at the end of structs in other structs
1423 // as an extension.
1424 Diag(FD->getLocation(), diag::ext_flexible_array_in_struct,
1425 FD->getName());
Fariborz Jahanian3f5faf72007-10-04 00:45:27 +00001426 if (Record)
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001427 Record->setHasFlexibleArrayMember(true);
Reid Spencer5f016e22007-07-11 17:01:13 +00001428 }
1429 }
1430 }
Fariborz Jahaniane7f64cc2007-10-12 22:10:42 +00001431 /// A field cannot be an Objective-c object
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001432 if (FDTy->isObjCInterfaceType()) {
Fariborz Jahaniane7f64cc2007-10-12 22:10:42 +00001433 Diag(FD->getLocation(), diag::err_statically_allocated_object,
1434 FD->getName());
1435 FD->setInvalidDecl();
1436 EnclosingDecl->setInvalidDecl();
1437 continue;
1438 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001439 // Keep track of the number of named members.
1440 if (IdentifierInfo *II = FD->getIdentifier()) {
1441 // Detect duplicate member names.
1442 if (!FieldIDs.insert(II)) {
1443 Diag(FD->getLocation(), diag::err_duplicate_member, II->getName());
1444 // Find the previous decl.
1445 SourceLocation PrevLoc;
1446 for (unsigned i = 0, e = RecFields.size(); ; ++i) {
1447 assert(i != e && "Didn't find previous def!");
1448 if (RecFields[i]->getIdentifier() == II) {
1449 PrevLoc = RecFields[i]->getLocation();
1450 break;
1451 }
1452 }
1453 Diag(PrevLoc, diag::err_previous_definition);
Steve Naroff74216642007-09-14 22:20:54 +00001454 FD->setInvalidDecl();
1455 EnclosingDecl->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00001456 continue;
1457 }
1458 ++NumNamedMembers;
1459 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001460 }
1461
Reid Spencer5f016e22007-07-11 17:01:13 +00001462 // Okay, we successfully defined 'Record'.
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001463 if (Record)
1464 Record->defineBody(&RecFields[0], RecFields.size());
Fariborz Jahanianb04a0212007-09-14 21:08:27 +00001465 else {
Chris Lattnera91d3812008-02-05 22:40:55 +00001466 ObjCIvarDecl **ClsFields = reinterpret_cast<ObjCIvarDecl**>(&RecFields[0]);
1467 if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(EnclosingDecl))
1468 ID->addInstanceVariablesToClass(ClsFields, RecFields.size(), RBrac);
1469 else if (ObjCImplementationDecl *IMPDecl =
1470 dyn_cast<ObjCImplementationDecl>(EnclosingDecl)) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001471 assert(IMPDecl && "ActOnFields - missing ObjCImplementationDecl");
1472 IMPDecl->ObjCAddInstanceVariablesToClassImpl(ClsFields, RecFields.size());
Fariborz Jahanian3a3ca1b2007-10-31 18:48:14 +00001473 CheckImplementationIvars(IMPDecl, ClsFields, RecFields.size(), RBrac);
Fariborz Jahaniand0b90bf2007-09-26 18:27:25 +00001474 }
Fariborz Jahanianb04a0212007-09-14 21:08:27 +00001475 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001476}
1477
Steve Naroff08d92e42007-09-15 18:49:24 +00001478Sema::DeclTy *Sema::ActOnEnumConstant(Scope *S, DeclTy *theEnumDecl,
Reid Spencer5f016e22007-07-11 17:01:13 +00001479 DeclTy *lastEnumConst,
1480 SourceLocation IdLoc, IdentifierInfo *Id,
1481 SourceLocation EqualLoc, ExprTy *val) {
1482 theEnumDecl = theEnumDecl; // silence unused warning.
1483 EnumConstantDecl *LastEnumConst =
1484 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(lastEnumConst));
1485 Expr *Val = static_cast<Expr*>(val);
1486
Chris Lattner31e05722007-08-26 06:24:45 +00001487 // The scope passed in may not be a decl scope. Zip up the scope tree until
1488 // we find one that is.
1489 while ((S->getFlags() & Scope::DeclScope) == 0)
1490 S = S->getParent();
1491
Reid Spencer5f016e22007-07-11 17:01:13 +00001492 // Verify that there isn't already something declared with this name in this
1493 // scope.
Steve Naroff8e74c932007-09-13 21:41:19 +00001494 if (ScopedDecl *PrevDecl = LookupScopedDecl(Id, Decl::IDNS_Ordinary,
1495 IdLoc, S)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001496 if (S->isDeclScope(PrevDecl)) {
1497 if (isa<EnumConstantDecl>(PrevDecl))
1498 Diag(IdLoc, diag::err_redefinition_of_enumerator, Id->getName());
1499 else
1500 Diag(IdLoc, diag::err_redefinition, Id->getName());
1501 Diag(PrevDecl->getLocation(), diag::err_previous_definition);
1502 // FIXME: Don't leak memory: delete Val;
1503 return 0;
1504 }
1505 }
1506
1507 llvm::APSInt EnumVal(32);
1508 QualType EltTy;
1509 if (Val) {
Chris Lattner421a23d2007-08-27 21:16:18 +00001510 // Make sure to promote the operand type to int.
1511 UsualUnaryConversions(Val);
1512
Reid Spencer5f016e22007-07-11 17:01:13 +00001513 // C99 6.7.2.2p2: Make sure we have an integer constant expression.
1514 SourceLocation ExpLoc;
Chris Lattner590b6642007-07-15 23:26:56 +00001515 if (!Val->isIntegerConstantExpr(EnumVal, Context, &ExpLoc)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001516 Diag(ExpLoc, diag::err_enum_value_not_integer_constant_expr,
1517 Id->getName());
1518 // FIXME: Don't leak memory: delete Val;
Chris Lattnerb7416f92007-08-27 17:37:24 +00001519 Val = 0; // Just forget about it.
Chris Lattnere9ca8512007-08-29 16:03:41 +00001520 } else {
1521 EltTy = Val->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001522 }
Chris Lattnerb7416f92007-08-27 17:37:24 +00001523 }
1524
1525 if (!Val) {
1526 if (LastEnumConst) {
1527 // Assign the last value + 1.
1528 EnumVal = LastEnumConst->getInitVal();
1529 ++EnumVal;
Chris Lattner421a23d2007-08-27 21:16:18 +00001530
1531 // Check for overflow on increment.
1532 if (EnumVal < LastEnumConst->getInitVal())
1533 Diag(IdLoc, diag::warn_enum_value_overflow);
1534
Chris Lattnerb7416f92007-08-27 17:37:24 +00001535 EltTy = LastEnumConst->getType();
1536 } else {
1537 // First value, set to zero.
1538 EltTy = Context.IntTy;
Chris Lattner701e5eb2007-09-04 02:45:27 +00001539 EnumVal.zextOrTrunc(
1540 static_cast<uint32_t>(Context.getTypeSize(EltTy, IdLoc)));
Chris Lattnerb7416f92007-08-27 17:37:24 +00001541 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001542 }
1543
Reid Spencer5f016e22007-07-11 17:01:13 +00001544 EnumConstantDecl *New = new EnumConstantDecl(IdLoc, Id, EltTy, Val, EnumVal,
1545 LastEnumConst);
1546
1547 // Register this decl in the current scope stack.
Steve Naroffc752d042007-09-13 18:10:37 +00001548 New->setNext(Id->getFETokenInfo<ScopedDecl>());
Reid Spencer5f016e22007-07-11 17:01:13 +00001549 Id->setFETokenInfo(New);
1550 S->AddDecl(New);
1551 return New;
1552}
1553
Steve Naroff08d92e42007-09-15 18:49:24 +00001554void Sema::ActOnEnumBody(SourceLocation EnumLoc, DeclTy *EnumDeclX,
Reid Spencer5f016e22007-07-11 17:01:13 +00001555 DeclTy **Elements, unsigned NumElements) {
1556 EnumDecl *Enum = cast<EnumDecl>(static_cast<Decl*>(EnumDeclX));
1557 assert(!Enum->isDefinition() && "Enum redefinitions can't reach here");
1558
Chris Lattnere37f0be2007-08-28 05:10:31 +00001559 // TODO: If the result value doesn't fit in an int, it must be a long or long
1560 // long value. ISO C does not support this, but GCC does as an extension,
1561 // emit a warning.
Ted Kremenek9c728dc2007-12-12 22:39:36 +00001562 unsigned IntWidth =
1563 Context.Target.getIntWidth(Context.getFullLoc(Enum->getLocation()));
Chris Lattnere37f0be2007-08-28 05:10:31 +00001564
1565
Chris Lattnerac609682007-08-28 06:15:15 +00001566 // Verify that all the values are okay, compute the size of the values, and
1567 // reverse the list.
1568 unsigned NumNegativeBits = 0;
1569 unsigned NumPositiveBits = 0;
1570
1571 // Keep track of whether all elements have type int.
1572 bool AllElementsInt = true;
1573
Reid Spencer5f016e22007-07-11 17:01:13 +00001574 EnumConstantDecl *EltList = 0;
1575 for (unsigned i = 0; i != NumElements; ++i) {
1576 EnumConstantDecl *ECD =
1577 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(Elements[i]));
1578 if (!ECD) continue; // Already issued a diagnostic.
Chris Lattner211a30e2007-08-28 05:27:00 +00001579
1580 // If the enum value doesn't fit in an int, emit an extension warning.
1581 assert(ECD->getInitVal().getBitWidth() >= IntWidth &&
1582 "Should have promoted value to int");
1583 const llvm::APSInt &InitVal = ECD->getInitVal();
1584 if (InitVal.getBitWidth() > IntWidth) {
1585 llvm::APSInt V(InitVal);
1586 V.trunc(IntWidth);
1587 V.extend(InitVal.getBitWidth());
1588 if (V != InitVal)
1589 Diag(ECD->getLocation(), diag::ext_enum_value_not_int,
1590 InitVal.toString());
1591 }
Chris Lattnerac609682007-08-28 06:15:15 +00001592
1593 // Keep track of the size of positive and negative values.
1594 if (InitVal.isUnsigned() || !InitVal.isNegative())
Chris Lattner21dd8212008-01-14 21:47:29 +00001595 NumPositiveBits = std::max(NumPositiveBits,
1596 (unsigned)InitVal.getActiveBits());
Chris Lattnerac609682007-08-28 06:15:15 +00001597 else
Chris Lattner21dd8212008-01-14 21:47:29 +00001598 NumNegativeBits = std::max(NumNegativeBits,
1599 (unsigned)InitVal.getMinSignedBits());
Reid Spencer5f016e22007-07-11 17:01:13 +00001600
Chris Lattnerac609682007-08-28 06:15:15 +00001601 // Keep track of whether every enum element has type int (very commmon).
1602 if (AllElementsInt)
1603 AllElementsInt = ECD->getType() == Context.IntTy;
1604
Reid Spencer5f016e22007-07-11 17:01:13 +00001605 ECD->setNextDeclarator(EltList);
1606 EltList = ECD;
1607 }
1608
Chris Lattnerac609682007-08-28 06:15:15 +00001609 // Figure out the type that should be used for this enum.
1610 // FIXME: Support attribute(packed) on enums and -fshort-enums.
1611 QualType BestType;
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001612 unsigned BestWidth;
Chris Lattnerac609682007-08-28 06:15:15 +00001613
1614 if (NumNegativeBits) {
1615 // If there is a negative value, figure out the smallest integer type (of
1616 // int/long/longlong) that fits.
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001617 if (NumNegativeBits <= IntWidth && NumPositiveBits < IntWidth) {
Chris Lattnerac609682007-08-28 06:15:15 +00001618 BestType = Context.IntTy;
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001619 BestWidth = IntWidth;
1620 } else {
Ted Kremenek9c728dc2007-12-12 22:39:36 +00001621 BestWidth =
1622 Context.Target.getLongWidth(Context.getFullLoc(Enum->getLocation()));
1623
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001624 if (NumNegativeBits <= BestWidth && NumPositiveBits < BestWidth)
Chris Lattnerac609682007-08-28 06:15:15 +00001625 BestType = Context.LongTy;
1626 else {
Ted Kremenek9c728dc2007-12-12 22:39:36 +00001627 BestWidth = Context.Target.getLongLongWidth(
1628 Context.getFullLoc(Enum->getLocation()));
1629
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001630 if (NumNegativeBits > BestWidth || NumPositiveBits >= BestWidth)
Chris Lattnerac609682007-08-28 06:15:15 +00001631 Diag(Enum->getLocation(), diag::warn_enum_too_large);
1632 BestType = Context.LongLongTy;
1633 }
1634 }
1635 } else {
1636 // If there is no negative value, figure out which of uint, ulong, ulonglong
1637 // fits.
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001638 if (NumPositiveBits <= IntWidth) {
Chris Lattnerac609682007-08-28 06:15:15 +00001639 BestType = Context.UnsignedIntTy;
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001640 BestWidth = IntWidth;
1641 } else if (NumPositiveBits <=
Ted Kremenek9c728dc2007-12-12 22:39:36 +00001642 (BestWidth = Context.Target.getLongWidth(
1643 Context.getFullLoc(Enum->getLocation()))))
1644
Chris Lattnerac609682007-08-28 06:15:15 +00001645 BestType = Context.UnsignedLongTy;
1646 else {
Ted Kremenek9c728dc2007-12-12 22:39:36 +00001647 BestWidth =
1648 Context.Target.getLongLongWidth(Context.getFullLoc(Enum->getLocation()));
1649
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001650 assert(NumPositiveBits <= BestWidth &&
Chris Lattnerac609682007-08-28 06:15:15 +00001651 "How could an initializer get larger than ULL?");
1652 BestType = Context.UnsignedLongLongTy;
1653 }
1654 }
1655
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001656 // Loop over all of the enumerator constants, changing their types to match
1657 // the type of the enum if needed.
1658 for (unsigned i = 0; i != NumElements; ++i) {
1659 EnumConstantDecl *ECD =
1660 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(Elements[i]));
1661 if (!ECD) continue; // Already issued a diagnostic.
1662
1663 // Standard C says the enumerators have int type, but we allow, as an
1664 // extension, the enumerators to be larger than int size. If each
1665 // enumerator value fits in an int, type it as an int, otherwise type it the
1666 // same as the enumerator decl itself. This means that in "enum { X = 1U }"
1667 // that X has type 'int', not 'unsigned'.
1668 if (ECD->getType() == Context.IntTy)
1669 continue; // Already int type.
1670
1671 // Determine whether the value fits into an int.
1672 llvm::APSInt InitVal = ECD->getInitVal();
1673 bool FitsInInt;
1674 if (InitVal.isUnsigned() || !InitVal.isNegative())
1675 FitsInInt = InitVal.getActiveBits() < IntWidth;
1676 else
1677 FitsInInt = InitVal.getMinSignedBits() <= IntWidth;
1678
1679 // If it fits into an integer type, force it. Otherwise force it to match
1680 // the enum decl type.
1681 QualType NewTy;
1682 unsigned NewWidth;
1683 bool NewSign;
1684 if (FitsInInt) {
1685 NewTy = Context.IntTy;
1686 NewWidth = IntWidth;
1687 NewSign = true;
1688 } else if (ECD->getType() == BestType) {
1689 // Already the right type!
1690 continue;
1691 } else {
1692 NewTy = BestType;
1693 NewWidth = BestWidth;
1694 NewSign = BestType->isSignedIntegerType();
1695 }
1696
1697 // Adjust the APSInt value.
1698 InitVal.extOrTrunc(NewWidth);
1699 InitVal.setIsSigned(NewSign);
1700 ECD->setInitVal(InitVal);
1701
1702 // Adjust the Expr initializer and type.
1703 ECD->setInitExpr(new ImplicitCastExpr(NewTy, ECD->getInitExpr()));
1704 ECD->setType(NewTy);
1705 }
Chris Lattnerac609682007-08-28 06:15:15 +00001706
Chris Lattnere00b18c2007-08-28 18:24:31 +00001707 Enum->defineElements(EltList, BestType);
Reid Spencer5f016e22007-07-11 17:01:13 +00001708}
1709
Chris Lattnerc6fdc342008-01-12 07:05:38 +00001710Sema::DeclTy* Sema::ActOnLinkageSpec(SourceLocation Loc,
1711 SourceLocation LBrace,
1712 SourceLocation RBrace,
1713 const char *Lang,
1714 unsigned StrSize,
1715 DeclTy *D) {
1716 LinkageSpecDecl::LanguageIDs Language;
1717 Decl *dcl = static_cast<Decl *>(D);
1718 if (strncmp(Lang, "\"C\"", StrSize) == 0)
1719 Language = LinkageSpecDecl::lang_c;
1720 else if (strncmp(Lang, "\"C++\"", StrSize) == 0)
1721 Language = LinkageSpecDecl::lang_cxx;
1722 else {
1723 Diag(Loc, diag::err_bad_language);
1724 return 0;
1725 }
1726
1727 // FIXME: Add all the various semantics of linkage specifications
1728 return new LinkageSpecDecl(Loc, Language, dcl);
1729}
1730
Reid Spencer5f016e22007-07-11 17:01:13 +00001731void Sema::HandleDeclAttribute(Decl *New, AttributeList *rawAttr) {
Anders Carlsson6ede0ff2007-12-19 06:16:30 +00001732 const char *attrName = rawAttr->getAttributeName()->getName();
1733 unsigned attrLen = rawAttr->getAttributeName()->getLength();
1734
Anders Carlssonabf5ad02007-12-19 17:43:24 +00001735 // Normalize the attribute name, __foo__ becomes foo.
1736 if (attrLen > 4 && attrName[0] == '_' && attrName[1] == '_' &&
1737 attrName[attrLen - 2] == '_' && attrName[attrLen - 1] == '_') {
1738 attrName += 2;
1739 attrLen -= 4;
1740 }
1741
1742 if (attrLen == 11 && !memcmp(attrName, "vector_size", 11)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001743 if (ValueDecl *vDecl = dyn_cast<ValueDecl>(New)) {
1744 QualType newType = HandleVectorTypeAttribute(vDecl->getType(), rawAttr);
1745 if (!newType.isNull()) // install the new vector type into the decl
1746 vDecl->setType(newType);
1747 }
1748 if (TypedefDecl *tDecl = dyn_cast<TypedefDecl>(New)) {
1749 QualType newType = HandleVectorTypeAttribute(tDecl->getUnderlyingType(),
1750 rawAttr);
1751 if (!newType.isNull()) // install the new vector type into the decl
1752 tDecl->setUnderlyingType(newType);
1753 }
Anders Carlssonabf5ad02007-12-19 17:43:24 +00001754 } else if (attrLen == 15 && !memcmp(attrName, "ocu_vector_type", 15)) {
Steve Naroffbea0b342007-07-29 16:33:31 +00001755 if (TypedefDecl *tDecl = dyn_cast<TypedefDecl>(New))
1756 HandleOCUVectorTypeAttribute(tDecl, rawAttr);
1757 else
Steve Naroff73322922007-07-18 18:00:27 +00001758 Diag(rawAttr->getAttributeLoc(),
1759 diag::err_typecheck_ocu_vector_not_typedef);
Christopher Lambebb97e92008-02-04 02:31:56 +00001760 } else if (attrLen == 13 && !memcmp(attrName, "address_space", 13)) {
1761 if (TypedefDecl *tDecl = dyn_cast<TypedefDecl>(New)) {
1762 QualType newType = HandleAddressSpaceTypeAttribute(
1763 tDecl->getUnderlyingType(),
1764 rawAttr);
1765 if (!newType.isNull()) // install the new addr spaced type into the decl
1766 tDecl->setUnderlyingType(newType);
1767 } else if (ValueDecl *vDecl = dyn_cast<ValueDecl>(New)) {
1768 QualType newType = HandleAddressSpaceTypeAttribute(vDecl->getType(),
1769 rawAttr);
1770 if (!newType.isNull()) // install the new addr spaced type into the decl
1771 vDecl->setType(newType);
1772 }
Anders Carlsson78aaae92007-12-19 07:19:40 +00001773 } else if (attrLen == 7 && !memcmp(attrName, "aligned", 7)) {
1774 HandleAlignedAttribute(New, rawAttr);
Steve Naroff73322922007-07-18 18:00:27 +00001775 }
Anders Carlsson78aaae92007-12-19 07:19:40 +00001776
Reid Spencer5f016e22007-07-11 17:01:13 +00001777 // FIXME: add other attributes...
1778}
1779
1780void Sema::HandleDeclAttributes(Decl *New, AttributeList *declspec_prefix,
1781 AttributeList *declarator_postfix) {
1782 while (declspec_prefix) {
1783 HandleDeclAttribute(New, declspec_prefix);
1784 declspec_prefix = declspec_prefix->getNext();
1785 }
1786 while (declarator_postfix) {
1787 HandleDeclAttribute(New, declarator_postfix);
1788 declarator_postfix = declarator_postfix->getNext();
1789 }
1790}
1791
Christopher Lambebb97e92008-02-04 02:31:56 +00001792QualType Sema::HandleAddressSpaceTypeAttribute(QualType curType,
1793 AttributeList *rawAttr) {
1794 // check the attribute arugments.
1795 if (rawAttr->getNumArgs() != 1) {
1796 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_wrong_number_arguments,
1797 std::string("1"));
1798 return QualType();
1799 }
1800 Expr *addrSpaceExpr = static_cast<Expr *>(rawAttr->getArg(0));
1801 llvm::APSInt addrSpace(32);
1802 if (!addrSpaceExpr->isIntegerConstantExpr(addrSpace, Context)) {
1803 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_address_space_not_int,
1804 addrSpaceExpr->getSourceRange());
1805 return QualType();
1806 }
1807 unsigned addressSpace = static_cast<unsigned>(addrSpace.getZExtValue());
1808
1809 // Zero is the default memory space, so no qualification is needed
1810 if (addressSpace == 0)
1811 return curType;
1812
1813 // TODO: Should we convert contained types of address space
1814 // qualified types here or or where they directly participate in conversions
1815 // (i.e. elsewhere)
1816
1817 return Context.getASQualType(curType, addressSpace);
1818}
1819
Steve Naroffbea0b342007-07-29 16:33:31 +00001820void Sema::HandleOCUVectorTypeAttribute(TypedefDecl *tDecl,
1821 AttributeList *rawAttr) {
1822 QualType curType = tDecl->getUnderlyingType();
Anders Carlsson78aaae92007-12-19 07:19:40 +00001823 // check the attribute arguments.
Steve Naroff73322922007-07-18 18:00:27 +00001824 if (rawAttr->getNumArgs() != 1) {
1825 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_wrong_number_arguments,
1826 std::string("1"));
Steve Naroffbea0b342007-07-29 16:33:31 +00001827 return;
Steve Naroff73322922007-07-18 18:00:27 +00001828 }
1829 Expr *sizeExpr = static_cast<Expr *>(rawAttr->getArg(0));
1830 llvm::APSInt vecSize(32);
1831 if (!sizeExpr->isIntegerConstantExpr(vecSize, Context)) {
1832 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_vector_size_not_int,
1833 sizeExpr->getSourceRange());
Steve Naroffbea0b342007-07-29 16:33:31 +00001834 return;
Steve Naroff73322922007-07-18 18:00:27 +00001835 }
1836 // unlike gcc's vector_size attribute, we do not allow vectors to be defined
1837 // in conjunction with complex types (pointers, arrays, functions, etc.).
1838 Type *canonType = curType.getCanonicalType().getTypePtr();
1839 if (!(canonType->isIntegerType() || canonType->isRealFloatingType())) {
1840 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_invalid_vector_type,
1841 curType.getCanonicalType().getAsString());
Steve Naroffbea0b342007-07-29 16:33:31 +00001842 return;
Steve Naroff73322922007-07-18 18:00:27 +00001843 }
1844 // unlike gcc's vector_size attribute, the size is specified as the
1845 // number of elements, not the number of bytes.
Chris Lattner701e5eb2007-09-04 02:45:27 +00001846 unsigned vectorSize = static_cast<unsigned>(vecSize.getZExtValue());
Steve Naroff73322922007-07-18 18:00:27 +00001847
1848 if (vectorSize == 0) {
1849 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_zero_size,
1850 sizeExpr->getSourceRange());
Steve Naroffbea0b342007-07-29 16:33:31 +00001851 return;
Steve Naroff73322922007-07-18 18:00:27 +00001852 }
Steve Naroffbea0b342007-07-29 16:33:31 +00001853 // Instantiate/Install the vector type, the number of elements is > 0.
1854 tDecl->setUnderlyingType(Context.getOCUVectorType(curType, vectorSize));
1855 // Remember this typedef decl, we will need it later for diagnostics.
1856 OCUVectorDecls.push_back(tDecl);
Steve Naroff73322922007-07-18 18:00:27 +00001857}
1858
Reid Spencer5f016e22007-07-11 17:01:13 +00001859QualType Sema::HandleVectorTypeAttribute(QualType curType,
Chris Lattnera7674d82007-07-13 22:13:22 +00001860 AttributeList *rawAttr) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001861 // check the attribute arugments.
1862 if (rawAttr->getNumArgs() != 1) {
1863 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_wrong_number_arguments,
1864 std::string("1"));
1865 return QualType();
1866 }
1867 Expr *sizeExpr = static_cast<Expr *>(rawAttr->getArg(0));
1868 llvm::APSInt vecSize(32);
Chris Lattner590b6642007-07-15 23:26:56 +00001869 if (!sizeExpr->isIntegerConstantExpr(vecSize, Context)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001870 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_vector_size_not_int,
1871 sizeExpr->getSourceRange());
1872 return QualType();
1873 }
1874 // navigate to the base type - we need to provide for vector pointers,
1875 // vector arrays, and functions returning vectors.
1876 Type *canonType = curType.getCanonicalType().getTypePtr();
1877
Steve Naroff73322922007-07-18 18:00:27 +00001878 if (canonType->isPointerType() || canonType->isArrayType() ||
1879 canonType->isFunctionType()) {
Chris Lattner54b263b2007-12-19 05:38:06 +00001880 assert(0 && "HandleVector(): Complex type construction unimplemented");
Steve Naroff73322922007-07-18 18:00:27 +00001881 /* FIXME: rebuild the type from the inside out, vectorizing the inner type.
1882 do {
1883 if (PointerType *PT = dyn_cast<PointerType>(canonType))
1884 canonType = PT->getPointeeType().getTypePtr();
1885 else if (ArrayType *AT = dyn_cast<ArrayType>(canonType))
1886 canonType = AT->getElementType().getTypePtr();
1887 else if (FunctionType *FT = dyn_cast<FunctionType>(canonType))
1888 canonType = FT->getResultType().getTypePtr();
1889 } while (canonType->isPointerType() || canonType->isArrayType() ||
1890 canonType->isFunctionType());
1891 */
Reid Spencer5f016e22007-07-11 17:01:13 +00001892 }
1893 // the base type must be integer or float.
1894 if (!(canonType->isIntegerType() || canonType->isRealFloatingType())) {
1895 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_invalid_vector_type,
1896 curType.getCanonicalType().getAsString());
1897 return QualType();
1898 }
Chris Lattner701e5eb2007-09-04 02:45:27 +00001899 unsigned typeSize = static_cast<unsigned>(
1900 Context.getTypeSize(curType, rawAttr->getAttributeLoc()));
Reid Spencer5f016e22007-07-11 17:01:13 +00001901 // vecSize is specified in bytes - convert to bits.
Chris Lattner701e5eb2007-09-04 02:45:27 +00001902 unsigned vectorSize = static_cast<unsigned>(vecSize.getZExtValue() * 8);
Reid Spencer5f016e22007-07-11 17:01:13 +00001903
1904 // the vector size needs to be an integral multiple of the type size.
1905 if (vectorSize % typeSize) {
1906 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_invalid_size,
1907 sizeExpr->getSourceRange());
1908 return QualType();
1909 }
1910 if (vectorSize == 0) {
1911 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_zero_size,
1912 sizeExpr->getSourceRange());
1913 return QualType();
1914 }
1915 // Since OpenCU requires 3 element vectors (OpenCU 5.1.2), we don't restrict
1916 // the number of elements to be a power of two (unlike GCC).
1917 // Instantiate the vector type, the number of elements is > 0.
Steve Naroff73322922007-07-18 18:00:27 +00001918 return Context.getVectorType(curType, vectorSize/typeSize);
Reid Spencer5f016e22007-07-11 17:01:13 +00001919}
1920
Anders Carlsson78aaae92007-12-19 07:19:40 +00001921void Sema::HandleAlignedAttribute(Decl *d, AttributeList *rawAttr)
1922{
1923 // check the attribute arguments.
Eli Friedman4ca08672008-01-30 17:38:42 +00001924 if (rawAttr->getNumArgs() > 1) {
Anders Carlsson78aaae92007-12-19 07:19:40 +00001925 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_wrong_number_arguments,
1926 std::string("1"));
1927 return;
1928 }
Eli Friedman4ca08672008-01-30 17:38:42 +00001929
Devang Patel6c751c22008-01-30 18:00:07 +00001930 // TODO: We probably need to actually do something with aligned attribute.
Eli Friedman4ca08672008-01-30 17:38:42 +00001931 if (rawAttr->getNumArgs() == 0)
1932 return;
1933
Anders Carlsson78aaae92007-12-19 07:19:40 +00001934 Expr *alignmentExpr = static_cast<Expr *>(rawAttr->getArg(0));
1935 llvm::APSInt alignment(32);
1936 if (!alignmentExpr->isIntegerConstantExpr(alignment, Context)) {
1937 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_vector_size_not_int,
1938 alignmentExpr->getSourceRange());
1939 return;
1940 }
1941}