blob: 051a4c192a29dc50d6ad0263500d022251298caf [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- SemaDecl.cpp - Semantic Analysis for Declarations ----------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Chris Lattner and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
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"
Steve Naroff980e5082007-10-01 19:00:59 +000018#include "clang/AST/DeclObjC.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000019#include "clang/AST/Expr.h"
20#include "clang/AST/Type.h"
21#include "clang/Parse/DeclSpec.h"
22#include "clang/Parse/Scope.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000023#include "clang/Basic/LangOptions.h"
24#include "clang/Basic/TargetInfo.h"
Steve Naroff563477d2007-09-18 23:55:05 +000025#include "llvm/ADT/SmallString.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000026#include "llvm/ADT/SmallSet.h"
Fariborz Jahanian85ff2642007-10-05 18:00:57 +000027#include "llvm/ADT/DenseSet.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000028using namespace clang;
29
Reid Spencer5f016e22007-07-11 17:01:13 +000030Sema::DeclTy *Sema::isTypeName(const IdentifierInfo &II, Scope *S) const {
Chris Lattner5c0fa302007-09-30 08:31:00 +000031 if (Decl *IIDecl = II.getFETokenInfo<Decl>())
32 if (isa<TypedefDecl>(IIDecl) || isa<ObjcInterfaceDecl>(IIDecl))
33 return IIDecl;
Steve Naroff3536b442007-09-06 21:24:23 +000034 return 0;
Reid Spencer5f016e22007-07-11 17:01:13 +000035}
36
Steve Naroffb216c882007-10-09 22:01:59 +000037void Sema::ActOnPopScope(SourceLocation Loc, Scope *S) {
Chris Lattner31e05722007-08-26 06:24:45 +000038 if (S->decl_empty()) return;
39 assert((S->getFlags() & Scope::DeclScope) &&"Scope shouldn't contain decls!");
40
Reid Spencer5f016e22007-07-11 17:01:13 +000041 for (Scope::decl_iterator I = S->decl_begin(), E = S->decl_end();
42 I != E; ++I) {
Steve Naroffc752d042007-09-13 18:10:37 +000043 Decl *TmpD = static_cast<Decl*>(*I);
44 assert(TmpD && "This decl didn't get pushed??");
45 ScopedDecl *D = dyn_cast<ScopedDecl>(TmpD);
46 assert(D && "This decl isn't a ScopedDecl?");
47
Reid Spencer5f016e22007-07-11 17:01:13 +000048 IdentifierInfo *II = D->getIdentifier();
49 if (!II) continue;
50
51 // Unlink this decl from the identifier. Because the scope contains decls
52 // in an unordered collection, and because we have multiple identifier
53 // namespaces (e.g. tag, normal, label),the decl may not be the first entry.
54 if (II->getFETokenInfo<Decl>() == D) {
55 // Normal case, no multiple decls in different namespaces.
56 II->setFETokenInfo(D->getNext());
57 } else {
58 // Scan ahead. There are only three namespaces in C, so this loop can
59 // never execute more than 3 times.
Steve Naroffc752d042007-09-13 18:10:37 +000060 ScopedDecl *SomeDecl = II->getFETokenInfo<ScopedDecl>();
Reid Spencer5f016e22007-07-11 17:01:13 +000061 while (SomeDecl->getNext() != D) {
62 SomeDecl = SomeDecl->getNext();
63 assert(SomeDecl && "Didn't find this decl on its identifier's chain!");
64 }
65 SomeDecl->setNext(D->getNext());
66 }
67
68 // This will have to be revisited for C++: there we want to nest stuff in
69 // namespace decls etc. Even for C, we might want a top-level translation
70 // unit decl or something.
71 if (!CurFunctionDecl)
72 continue;
73
74 // Chain this decl to the containing function, it now owns the memory for
75 // the decl.
76 D->setNext(CurFunctionDecl->getDeclChain());
77 CurFunctionDecl->setDeclChain(D);
78 }
79}
80
Fariborz Jahanian1b6351f2007-09-29 17:04:06 +000081/// getObjcInterfaceDecl - Look up a for a class declaration in the scope.
Fariborz Jahanian9d048ff2007-09-29 00:54:24 +000082/// return 0 if one not found.
Steve Naroff6a8a9a42007-10-02 20:01:56 +000083ObjcInterfaceDecl *Sema::getObjCInterfaceDecl(IdentifierInfo *Id) {
84
85 // Scan up the scope chain looking for a decl that matches this identifier
86 // that is in the appropriate namespace. This search should not take long, as
87 // shadowing of names is uncommon, and deep shadowing is extremely uncommon.
88 ScopedDecl *IdDecl = NULL;
89 for (ScopedDecl *D = Id->getFETokenInfo<ScopedDecl>(); D; D = D->getNext()) {
90 if (D->getIdentifierNamespace() == Decl::IDNS_Ordinary) {
91 IdDecl = D;
92 break;
93 }
94 }
Fariborz Jahanian9d048ff2007-09-29 00:54:24 +000095 if (IdDecl && !isa<ObjcInterfaceDecl>(IdDecl))
96 IdDecl = 0;
97 return cast_or_null<ObjcInterfaceDecl>(static_cast<Decl*>(IdDecl));
98}
99
Reid Spencer5f016e22007-07-11 17:01:13 +0000100/// LookupScopedDecl - Look up the inner-most declaration in the specified
101/// namespace.
Steve Naroffc752d042007-09-13 18:10:37 +0000102ScopedDecl *Sema::LookupScopedDecl(IdentifierInfo *II, unsigned NSI,
103 SourceLocation IdLoc, Scope *S) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000104 if (II == 0) return 0;
105 Decl::IdentifierNamespace NS = (Decl::IdentifierNamespace)NSI;
106
107 // Scan up the scope chain looking for a decl that matches this identifier
108 // that is in the appropriate namespace. This search should not take long, as
109 // shadowing of names is uncommon, and deep shadowing is extremely uncommon.
Steve Naroffc752d042007-09-13 18:10:37 +0000110 for (ScopedDecl *D = II->getFETokenInfo<ScopedDecl>(); D; D = D->getNext())
Reid Spencer5f016e22007-07-11 17:01:13 +0000111 if (D->getIdentifierNamespace() == NS)
112 return D;
113
114 // If we didn't find a use of this identifier, and if the identifier
115 // corresponds to a compiler builtin, create the decl object for the builtin
116 // now, injecting it into translation unit scope, and return it.
117 if (NS == Decl::IDNS_Ordinary) {
118 // If this is a builtin on some other target, or if this builtin varies
119 // across targets (e.g. in type), emit a diagnostic and mark the translation
120 // unit non-portable for using it.
121 if (II->isNonPortableBuiltin()) {
122 // Only emit this diagnostic once for this builtin.
123 II->setNonPortableBuiltin(false);
124 Context.Target.DiagnoseNonPortability(IdLoc,
125 diag::port_target_builtin_use);
126 }
127 // If this is a builtin on this (or all) targets, create the decl.
128 if (unsigned BuiltinID = II->getBuiltinID())
129 return LazilyCreateBuiltin(II, BuiltinID, S);
130 }
131 return 0;
132}
133
134/// LazilyCreateBuiltin - The specified Builtin-ID was first used at file scope.
135/// lazily create a decl for it.
Chris Lattner22b73ba2007-10-10 23:42:28 +0000136ScopedDecl *Sema::LazilyCreateBuiltin(IdentifierInfo *II, unsigned bid,
137 Scope *S) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000138 Builtin::ID BID = (Builtin::ID)bid;
139
140 QualType R = Context.BuiltinInfo.GetBuiltinType(BID, Context);
141 FunctionDecl *New = new FunctionDecl(SourceLocation(), II, R,
Chris Lattner70c8b2e2007-08-26 04:02:13 +0000142 FunctionDecl::Extern, false, 0);
Reid Spencer5f016e22007-07-11 17:01:13 +0000143
144 // Find translation-unit scope to insert this function into.
Chris Lattner31e05722007-08-26 06:24:45 +0000145 if (Scope *FnS = S->getFnParent())
146 S = FnS->getParent(); // Skip all scopes in a function at once.
Reid Spencer5f016e22007-07-11 17:01:13 +0000147 while (S->getParent())
148 S = S->getParent();
149 S->AddDecl(New);
150
151 // Add this decl to the end of the identifier info.
Steve Naroffc752d042007-09-13 18:10:37 +0000152 if (ScopedDecl *LastDecl = II->getFETokenInfo<ScopedDecl>()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000153 // Scan until we find the last (outermost) decl in the id chain.
154 while (LastDecl->getNext())
155 LastDecl = LastDecl->getNext();
156 // Insert before (outside) it.
157 LastDecl->setNext(New);
158 } else {
159 II->setFETokenInfo(New);
160 }
161 // Make sure clients iterating over decls see this.
162 LastInGroupList.push_back(New);
163
164 return New;
165}
166
167/// MergeTypeDefDecl - We just parsed a typedef 'New' which has the same name
168/// and scope as a previous declaration 'Old'. Figure out how to resolve this
169/// situation, merging decls or emitting diagnostics as appropriate.
170///
Steve Naroff8e74c932007-09-13 21:41:19 +0000171TypedefDecl *Sema::MergeTypeDefDecl(TypedefDecl *New, ScopedDecl *OldD) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000172 // Verify the old decl was also a typedef.
173 TypedefDecl *Old = dyn_cast<TypedefDecl>(OldD);
174 if (!Old) {
175 Diag(New->getLocation(), diag::err_redefinition_different_kind,
176 New->getName());
177 Diag(OldD->getLocation(), diag::err_previous_definition);
178 return New;
179 }
180
181 // TODO: CHECK FOR CONFLICTS, multiple decls with same name in one scope.
182 // TODO: This is totally simplistic. It should handle merging functions
183 // together etc, merging extern int X; int X; ...
184 Diag(New->getLocation(), diag::err_redefinition, New->getName());
185 Diag(Old->getLocation(), diag::err_previous_definition);
186 return New;
187}
188
189/// MergeFunctionDecl - We just parsed a function 'New' which has the same name
190/// and scope as a previous declaration 'Old'. Figure out how to resolve this
191/// situation, merging decls or emitting diagnostics as appropriate.
192///
Steve Naroff8e74c932007-09-13 21:41:19 +0000193FunctionDecl *Sema::MergeFunctionDecl(FunctionDecl *New, ScopedDecl *OldD) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000194 // Verify the old decl was also a function.
195 FunctionDecl *Old = dyn_cast<FunctionDecl>(OldD);
196 if (!Old) {
197 Diag(New->getLocation(), diag::err_redefinition_different_kind,
198 New->getName());
199 Diag(OldD->getLocation(), diag::err_previous_definition);
200 return New;
201 }
202
203 // This is not right, but it's a start. If 'Old' is a function prototype with
204 // the same type as 'New', silently allow this. FIXME: We should link up decl
205 // objects here.
206 if (Old->getBody() == 0 &&
207 Old->getCanonicalType() == New->getCanonicalType()) {
208 return New;
209 }
210
211 // TODO: CHECK FOR CONFLICTS, multiple decls with same name in one scope.
212 // TODO: This is totally simplistic. It should handle merging functions
213 // together etc, merging extern int X; int X; ...
214 Diag(New->getLocation(), diag::err_redefinition, New->getName());
215 Diag(Old->getLocation(), diag::err_previous_definition);
216 return New;
217}
218
219/// MergeVarDecl - We just parsed a variable 'New' which has the same name
220/// and scope as a previous declaration 'Old'. Figure out how to resolve this
221/// situation, merging decls or emitting diagnostics as appropriate.
222///
223/// FIXME: Need to carefully consider tentative definition rules (C99 6.9.2p2).
224/// For example, we incorrectly complain about i1, i4 from C99 6.9.2p4.
225///
Steve Naroff8e74c932007-09-13 21:41:19 +0000226VarDecl *Sema::MergeVarDecl(VarDecl *New, ScopedDecl *OldD) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000227 // Verify the old decl was also a variable.
228 VarDecl *Old = dyn_cast<VarDecl>(OldD);
229 if (!Old) {
230 Diag(New->getLocation(), diag::err_redefinition_different_kind,
231 New->getName());
232 Diag(OldD->getLocation(), diag::err_previous_definition);
233 return New;
234 }
Steve Narofffb22d962007-08-30 01:06:46 +0000235 FileVarDecl *OldFSDecl = dyn_cast<FileVarDecl>(Old);
236 FileVarDecl *NewFSDecl = dyn_cast<FileVarDecl>(New);
237 bool OldIsTentative = false;
238
239 if (OldFSDecl && NewFSDecl) { // C99 6.9.2
240 // Handle C "tentative" external object definitions. FIXME: finish!
241 if (!OldFSDecl->getInit() &&
242 (OldFSDecl->getStorageClass() == VarDecl::None ||
243 OldFSDecl->getStorageClass() == VarDecl::Static))
244 OldIsTentative = true;
245 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000246 // Verify the types match.
247 if (Old->getCanonicalType() != New->getCanonicalType()) {
248 Diag(New->getLocation(), diag::err_redefinition, New->getName());
249 Diag(Old->getLocation(), diag::err_previous_definition);
250 return New;
251 }
252 // We've verified the types match, now check if Old is "extern".
253 if (Old->getStorageClass() != VarDecl::Extern) {
254 Diag(New->getLocation(), diag::err_redefinition, New->getName());
255 Diag(Old->getLocation(), diag::err_previous_definition);
256 }
257 return New;
258}
259
260/// ParsedFreeStandingDeclSpec - This method is invoked when a declspec with
261/// no declarator (e.g. "struct foo;") is parsed.
262Sema::DeclTy *Sema::ParsedFreeStandingDeclSpec(Scope *S, DeclSpec &DS) {
263 // TODO: emit error on 'int;' or 'const enum foo;'.
264 // TODO: emit error on 'typedef int;'
265 // if (!DS.isMissingDeclaratorOk()) Diag(...);
266
267 return 0;
268}
269
Steve Naroff9e8925e2007-09-04 14:36:54 +0000270bool Sema::CheckSingleInitializer(Expr *&Init, QualType DeclType) {
Steve Narofff0090632007-09-02 02:04:30 +0000271 AssignmentCheckResult result;
272 SourceLocation loc = Init->getLocStart();
273 // Get the type before calling CheckSingleAssignmentConstraints(), since
274 // it can promote the expression.
275 QualType rhsType = Init->getType();
276
277 result = CheckSingleAssignmentConstraints(DeclType, Init);
278
279 // decode the result (notice that extensions still return a type).
280 switch (result) {
281 case Compatible:
282 break;
283 case Incompatible:
Steve Naroff6f9f3072007-09-02 15:34:30 +0000284 // FIXME: tighten up this check which should allow:
285 // char s[] = "abc", which is identical to char s[] = { 'a', 'b', 'c' };
286 if (rhsType == Context.getPointerType(Context.CharTy))
287 break;
Steve Narofff0090632007-09-02 02:04:30 +0000288 Diag(loc, diag::err_typecheck_assign_incompatible,
289 DeclType.getAsString(), rhsType.getAsString(),
290 Init->getSourceRange());
291 return true;
292 case PointerFromInt:
293 // check for null pointer constant (C99 6.3.2.3p3)
294 if (!Init->isNullPointerConstant(Context)) {
295 Diag(loc, diag::ext_typecheck_assign_pointer_int,
296 DeclType.getAsString(), rhsType.getAsString(),
297 Init->getSourceRange());
298 return true;
299 }
300 break;
301 case IntFromPointer:
302 Diag(loc, diag::ext_typecheck_assign_pointer_int,
303 DeclType.getAsString(), rhsType.getAsString(),
304 Init->getSourceRange());
305 break;
306 case IncompatiblePointer:
307 Diag(loc, diag::ext_typecheck_assign_incompatible_pointer,
308 DeclType.getAsString(), rhsType.getAsString(),
309 Init->getSourceRange());
310 break;
311 case CompatiblePointerDiscardsQualifiers:
312 Diag(loc, diag::ext_typecheck_assign_discards_qualifiers,
313 DeclType.getAsString(), rhsType.getAsString(),
314 Init->getSourceRange());
315 break;
316 }
317 return false;
318}
319
Steve Naroff9e8925e2007-09-04 14:36:54 +0000320bool Sema::CheckInitExpr(Expr *expr, InitListExpr *IList, unsigned slot,
321 bool isStatic, QualType ElementType) {
Steve Naroff371227d2007-09-04 02:20:04 +0000322 SourceLocation loc;
Steve Naroff9e8925e2007-09-04 14:36:54 +0000323 Expr *savExpr = expr; // Might be promoted by CheckSingleInitializer.
Steve Naroff371227d2007-09-04 02:20:04 +0000324
325 if (isStatic && !expr->isConstantExpr(Context, &loc)) { // C99 6.7.8p4.
326 Diag(loc, diag::err_init_element_not_constant, expr->getSourceRange());
327 return true;
328 } else if (CheckSingleInitializer(expr, ElementType)) {
329 return true; // types weren't compatible.
330 }
Steve Naroff9e8925e2007-09-04 14:36:54 +0000331 if (savExpr != expr) // The type was promoted, update initializer list.
332 IList->setInit(slot, expr);
Steve Naroff371227d2007-09-04 02:20:04 +0000333 return false;
334}
335
336void Sema::CheckVariableInitList(QualType DeclType, InitListExpr *IList,
337 QualType ElementType, bool isStatic,
338 int &nInitializers, bool &hadError) {
Steve Naroff6f9f3072007-09-02 15:34:30 +0000339 for (unsigned i = 0; i < IList->getNumInits(); i++) {
340 Expr *expr = IList->getInit(i);
341
Steve Naroff371227d2007-09-04 02:20:04 +0000342 if (InitListExpr *InitList = dyn_cast<InitListExpr>(expr)) {
343 if (const ConstantArrayType *CAT = DeclType->getAsConstantArrayType()) {
Steve Naroff7cf8c442007-09-04 21:13:33 +0000344 int maxElements = CAT->getMaximumElements();
Steve Naroff371227d2007-09-04 02:20:04 +0000345 CheckConstantInitList(DeclType, InitList, ElementType, isStatic,
346 maxElements, hadError);
Steve Naroff6f9f3072007-09-02 15:34:30 +0000347 }
Steve Naroff371227d2007-09-04 02:20:04 +0000348 } else {
Steve Naroff9e8925e2007-09-04 14:36:54 +0000349 hadError = CheckInitExpr(expr, IList, i, isStatic, ElementType);
Steve Naroff6f9f3072007-09-02 15:34:30 +0000350 }
Steve Naroff371227d2007-09-04 02:20:04 +0000351 nInitializers++;
352 }
353 return;
354}
355
356// FIXME: Doesn't deal with arrays of structures yet.
357void Sema::CheckConstantInitList(QualType DeclType, InitListExpr *IList,
358 QualType ElementType, bool isStatic,
359 int &totalInits, bool &hadError) {
360 int maxElementsAtThisLevel = 0;
361 int nInitsAtLevel = 0;
362
363 if (const ConstantArrayType *CAT = DeclType->getAsConstantArrayType()) {
364 // We have a constant array type, compute maxElements *at this level*.
Steve Naroff7cf8c442007-09-04 21:13:33 +0000365 maxElementsAtThisLevel = CAT->getMaximumElements();
366 // Set DeclType, used below to recurse (for multi-dimensional arrays).
367 DeclType = CAT->getElementType();
Steve Naroff371227d2007-09-04 02:20:04 +0000368 } else if (DeclType->isScalarType()) {
369 Diag(IList->getLocStart(), diag::warn_braces_around_scalar_init,
370 IList->getSourceRange());
371 maxElementsAtThisLevel = 1;
372 }
373 // The empty init list "{ }" is treated specially below.
374 unsigned numInits = IList->getNumInits();
375 if (numInits) {
376 for (unsigned i = 0; i < numInits; i++) {
377 Expr *expr = IList->getInit(i);
378
379 if (InitListExpr *InitList = dyn_cast<InitListExpr>(expr)) {
380 CheckConstantInitList(DeclType, InitList, ElementType, isStatic,
381 totalInits, hadError);
382 } else {
Steve Naroff9e8925e2007-09-04 14:36:54 +0000383 hadError = CheckInitExpr(expr, IList, i, isStatic, ElementType);
Steve Naroff371227d2007-09-04 02:20:04 +0000384 nInitsAtLevel++; // increment the number of initializers at this level.
385 totalInits--; // decrement the total number of initializers.
386
387 // Check if we have space for another initializer.
388 if ((nInitsAtLevel > maxElementsAtThisLevel) || (totalInits < 0))
389 Diag(expr->getLocStart(), diag::warn_excess_initializers,
390 expr->getSourceRange());
391 }
392 }
393 if (nInitsAtLevel < maxElementsAtThisLevel) // fill the remaining elements.
394 totalInits -= (maxElementsAtThisLevel - nInitsAtLevel);
395 } else {
396 // we have an initializer list with no elements.
397 totalInits -= maxElementsAtThisLevel;
398 if (totalInits < 0)
399 Diag(IList->getLocStart(), diag::warn_excess_initializers,
400 IList->getSourceRange());
Steve Naroff6f9f3072007-09-02 15:34:30 +0000401 }
Steve Naroffd35005e2007-09-03 01:24:23 +0000402 return;
Steve Naroff6f9f3072007-09-02 15:34:30 +0000403}
404
Steve Naroff9e8925e2007-09-04 14:36:54 +0000405bool Sema::CheckInitializer(Expr *&Init, QualType &DeclType, bool isStatic) {
Steve Narofff0090632007-09-02 02:04:30 +0000406 InitListExpr *InitList = dyn_cast<InitListExpr>(Init);
Steve Naroffd35005e2007-09-03 01:24:23 +0000407 if (!InitList)
408 return CheckSingleInitializer(Init, DeclType);
409
Steve Narofff0090632007-09-02 02:04:30 +0000410 // We have an InitListExpr, make sure we set the type.
411 Init->setType(DeclType);
Steve Naroffd35005e2007-09-03 01:24:23 +0000412
413 bool hadError = false;
Steve Naroff6f9f3072007-09-02 15:34:30 +0000414
Steve Naroff38374b02007-09-02 20:30:18 +0000415 // C99 6.7.8p3: The type of the entity to be initialized shall be an array
416 // of unknown size ("[]") or an object type that is not a variable array type.
417 if (const VariableArrayType *VAT = DeclType->getAsVariableArrayType()) {
418 Expr *expr = VAT->getSizeExpr();
Steve Naroffd35005e2007-09-03 01:24:23 +0000419 if (expr)
420 return Diag(expr->getLocStart(), diag::err_variable_object_no_init,
421 expr->getSourceRange());
422
Steve Naroff7cf8c442007-09-04 21:13:33 +0000423 // We have a VariableArrayType with unknown size. Note that only the first
424 // array can have unknown size. For example, "int [][]" is illegal.
Steve Naroff371227d2007-09-04 02:20:04 +0000425 int numInits = 0;
Steve Naroff7cf8c442007-09-04 21:13:33 +0000426 CheckVariableInitList(VAT->getElementType(), InitList, VAT->getBaseType(),
427 isStatic, numInits, hadError);
Steve Naroffd35005e2007-09-03 01:24:23 +0000428 if (!hadError) {
429 // Return a new array type from the number of initializers (C99 6.7.8p22).
430 llvm::APSInt ConstVal(32);
Steve Naroff371227d2007-09-04 02:20:04 +0000431 ConstVal = numInits;
432 DeclType = Context.getConstantArrayType(DeclType, ConstVal,
Steve Naroffd35005e2007-09-03 01:24:23 +0000433 ArrayType::Normal, 0);
434 }
435 return hadError;
436 }
437 if (const ConstantArrayType *CAT = DeclType->getAsConstantArrayType()) {
Steve Naroff7cf8c442007-09-04 21:13:33 +0000438 int maxElements = CAT->getMaximumElements();
439 CheckConstantInitList(DeclType, InitList, CAT->getBaseType(),
440 isStatic, maxElements, hadError);
Steve Naroffd35005e2007-09-03 01:24:23 +0000441 return hadError;
442 }
Steve Naroff371227d2007-09-04 02:20:04 +0000443 if (DeclType->isScalarType()) { // C99 6.7.8p11: Allow "int x = { 1, 2 };"
444 int maxElements = 1;
445 CheckConstantInitList(DeclType, InitList, DeclType, isStatic, maxElements,
446 hadError);
Steve Naroffd35005e2007-09-03 01:24:23 +0000447 return hadError;
Steve Naroff38374b02007-09-02 20:30:18 +0000448 }
449 // FIXME: Handle struct/union types.
Steve Naroffd35005e2007-09-03 01:24:23 +0000450 return hadError;
Steve Narofff0090632007-09-02 02:04:30 +0000451}
452
Reid Spencer5f016e22007-07-11 17:01:13 +0000453Sema::DeclTy *
Steve Naroff08d92e42007-09-15 18:49:24 +0000454Sema::ActOnDeclarator(Scope *S, Declarator &D, DeclTy *lastDecl) {
Steve Naroff94745042007-09-13 23:52:58 +0000455 ScopedDecl *LastDeclarator = dyn_cast_or_null<ScopedDecl>((Decl *)lastDecl);
Reid Spencer5f016e22007-07-11 17:01:13 +0000456 IdentifierInfo *II = D.getIdentifier();
457
Chris Lattnere80a59c2007-07-25 00:24:17 +0000458 // All of these full declarators require an identifier. If it doesn't have
459 // one, the ParsedFreeStandingDeclSpec action should be used.
460 if (II == 0) {
Chris Lattner98e08632007-08-28 06:17:15 +0000461 Diag(D.getDeclSpec().getSourceRange().Begin(),
462 diag::err_declarator_need_ident,
Chris Lattnere80a59c2007-07-25 00:24:17 +0000463 D.getDeclSpec().getSourceRange(), D.getSourceRange());
464 return 0;
465 }
466
Chris Lattner31e05722007-08-26 06:24:45 +0000467 // The scope passed in may not be a decl scope. Zip up the scope tree until
468 // we find one that is.
469 while ((S->getFlags() & Scope::DeclScope) == 0)
470 S = S->getParent();
471
Reid Spencer5f016e22007-07-11 17:01:13 +0000472 // See if this is a redefinition of a variable in the same scope.
Steve Naroffc752d042007-09-13 18:10:37 +0000473 ScopedDecl *PrevDecl = LookupScopedDecl(II, Decl::IDNS_Ordinary,
474 D.getIdentifierLoc(), S);
Reid Spencer5f016e22007-07-11 17:01:13 +0000475 if (PrevDecl && !S->isDeclScope(PrevDecl))
476 PrevDecl = 0; // If in outer scope, it isn't the same thing.
477
Steve Naroffc752d042007-09-13 18:10:37 +0000478 ScopedDecl *New;
Steve Naroff5912a352007-08-28 20:14:24 +0000479 bool InvalidDecl = false;
480
Reid Spencer5f016e22007-07-11 17:01:13 +0000481 if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef) {
482 TypedefDecl *NewTD = ParseTypedefDecl(S, D, LastDeclarator);
483 if (!NewTD) return 0;
484
485 // Handle attributes prior to checking for duplicates in MergeVarDecl
486 HandleDeclAttributes(NewTD, D.getDeclSpec().getAttributes(),
487 D.getAttributes());
488 // Merge the decl with the existing one if appropriate.
489 if (PrevDecl) {
490 NewTD = MergeTypeDefDecl(NewTD, PrevDecl);
491 if (NewTD == 0) return 0;
492 }
493 New = NewTD;
494 if (S->getParent() == 0) {
495 // C99 6.7.7p2: If a typedef name specifies a variably modified type
496 // then it shall have block scope.
Steve Naroffd7444aa2007-08-31 17:20:07 +0000497 if (const VariableArrayType *VAT =
498 NewTD->getUnderlyingType()->getAsVariablyModifiedType()) {
499 Diag(D.getIdentifierLoc(), diag::err_typecheck_illegal_vla,
500 VAT->getSizeExpr()->getSourceRange());
501 InvalidDecl = true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000502 }
503 }
504 } else if (D.isFunctionDeclarator()) {
505 QualType R = GetTypeForDeclarator(D, S);
Steve Naroff5912a352007-08-28 20:14:24 +0000506 assert(!R.isNull() && "GetTypeForDeclarator() returned null type");
Steve Naroff49b45262007-07-13 16:58:59 +0000507
Chris Lattner271f1a62007-09-27 15:15:46 +0000508 FunctionDecl::StorageClass SC = FunctionDecl::None;
Reid Spencer5f016e22007-07-11 17:01:13 +0000509 switch (D.getDeclSpec().getStorageClassSpec()) {
510 default: assert(0 && "Unknown storage class!");
511 case DeclSpec::SCS_auto:
512 case DeclSpec::SCS_register:
513 Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_func,
514 R.getAsString());
Steve Naroff5912a352007-08-28 20:14:24 +0000515 InvalidDecl = true;
516 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000517 case DeclSpec::SCS_unspecified: SC = FunctionDecl::None; break;
518 case DeclSpec::SCS_extern: SC = FunctionDecl::Extern; break;
519 case DeclSpec::SCS_static: SC = FunctionDecl::Static; break;
520 }
521
522 FunctionDecl *NewFD = new FunctionDecl(D.getIdentifierLoc(), II, R, SC,
Chris Lattner70c8b2e2007-08-26 04:02:13 +0000523 D.getDeclSpec().isInlineSpecified(),
Reid Spencer5f016e22007-07-11 17:01:13 +0000524 LastDeclarator);
525
526 // Merge the decl with the existing one if appropriate.
527 if (PrevDecl) {
528 NewFD = MergeFunctionDecl(NewFD, PrevDecl);
529 if (NewFD == 0) return 0;
530 }
531 New = NewFD;
532 } else {
533 QualType R = GetTypeForDeclarator(D, S);
Steve Naroff53a32342007-08-28 18:45:29 +0000534 assert(!R.isNull() && "GetTypeForDeclarator() returned null type");
Reid Spencer5f016e22007-07-11 17:01:13 +0000535
536 VarDecl *NewVD;
537 VarDecl::StorageClass SC;
538 switch (D.getDeclSpec().getStorageClassSpec()) {
539 default: assert(0 && "Unknown storage class!");
540 case DeclSpec::SCS_unspecified: SC = VarDecl::None; break;
541 case DeclSpec::SCS_extern: SC = VarDecl::Extern; break;
542 case DeclSpec::SCS_static: SC = VarDecl::Static; break;
543 case DeclSpec::SCS_auto: SC = VarDecl::Auto; break;
544 case DeclSpec::SCS_register: SC = VarDecl::Register; break;
545 }
546 if (S->getParent() == 0) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000547 // C99 6.9p2: The storage-class specifiers auto and register shall not
548 // appear in the declaration specifiers in an external declaration.
549 if (SC == VarDecl::Auto || SC == VarDecl::Register) {
550 Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_fscope,
551 R.getAsString());
Steve Naroff53a32342007-08-28 18:45:29 +0000552 InvalidDecl = true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000553 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000554 NewVD = new FileVarDecl(D.getIdentifierLoc(), II, R, SC, LastDeclarator);
Steve Narofff0090632007-09-02 02:04:30 +0000555 } else {
Reid Spencer5f016e22007-07-11 17:01:13 +0000556 NewVD = new BlockVarDecl(D.getIdentifierLoc(), II, R, SC, LastDeclarator);
Steve Naroff53a32342007-08-28 18:45:29 +0000557 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000558 // Handle attributes prior to checking for duplicates in MergeVarDecl
559 HandleDeclAttributes(NewVD, D.getDeclSpec().getAttributes(),
560 D.getAttributes());
561
562 // Merge the decl with the existing one if appropriate.
563 if (PrevDecl) {
564 NewVD = MergeVarDecl(NewVD, PrevDecl);
565 if (NewVD == 0) return 0;
566 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000567 New = NewVD;
568 }
569
570 // If this has an identifier, add it to the scope stack.
571 if (II) {
Steve Naroffc752d042007-09-13 18:10:37 +0000572 New->setNext(II->getFETokenInfo<ScopedDecl>());
Reid Spencer5f016e22007-07-11 17:01:13 +0000573 II->setFETokenInfo(New);
574 S->AddDecl(New);
575 }
576
577 if (S->getParent() == 0)
578 AddTopLevelDecl(New, LastDeclarator);
Steve Naroff5912a352007-08-28 20:14:24 +0000579
580 // If any semantic error occurred, mark the decl as invalid.
581 if (D.getInvalidType() || InvalidDecl)
582 New->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +0000583
584 return New;
585}
586
Steve Naroffbb204692007-09-12 14:07:44 +0000587void Sema::AddInitializerToDecl(DeclTy *dcl, ExprTy *init) {
Steve Naroff410e3e22007-09-12 20:13:48 +0000588 Decl *RealDecl = static_cast<Decl *>(dcl);
Steve Naroffbb204692007-09-12 14:07:44 +0000589 Expr *Init = static_cast<Expr *>(init);
590
Steve Naroff410e3e22007-09-12 20:13:48 +0000591 assert((RealDecl && Init) && "missing decl or initializer");
Steve Naroffbb204692007-09-12 14:07:44 +0000592
Steve Naroff410e3e22007-09-12 20:13:48 +0000593 VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl);
594 if (!VDecl) {
Steve Naroff8e74c932007-09-13 21:41:19 +0000595 Diag(dyn_cast<ScopedDecl>(RealDecl)->getLocation(),
596 diag::err_illegal_initializer);
Steve Naroff410e3e22007-09-12 20:13:48 +0000597 RealDecl->setInvalidDecl();
598 return;
599 }
Steve Naroffbb204692007-09-12 14:07:44 +0000600 // Get the decls type and save a reference for later, since
601 // CheckInitializer may change it.
Steve Naroff410e3e22007-09-12 20:13:48 +0000602 QualType DclT = VDecl->getType(), SavT = DclT;
603 if (BlockVarDecl *BVD = dyn_cast<BlockVarDecl>(VDecl)) {
Steve Naroffbb204692007-09-12 14:07:44 +0000604 VarDecl::StorageClass SC = BVD->getStorageClass();
605 if (SC == VarDecl::Extern) { // C99 6.7.8p5
Steve Naroff410e3e22007-09-12 20:13:48 +0000606 Diag(VDecl->getLocation(), diag::err_block_extern_cant_init);
Steve Naroffbb204692007-09-12 14:07:44 +0000607 BVD->setInvalidDecl();
608 } else if (!BVD->isInvalidDecl()) {
609 CheckInitializer(Init, DclT, SC == VarDecl::Static);
610 }
Steve Naroff410e3e22007-09-12 20:13:48 +0000611 } else if (FileVarDecl *FVD = dyn_cast<FileVarDecl>(VDecl)) {
Steve Naroffbb204692007-09-12 14:07:44 +0000612 if (FVD->getStorageClass() == VarDecl::Extern)
Steve Naroff410e3e22007-09-12 20:13:48 +0000613 Diag(VDecl->getLocation(), diag::warn_extern_init);
Steve Naroffbb204692007-09-12 14:07:44 +0000614 if (!FVD->isInvalidDecl())
615 CheckInitializer(Init, DclT, true);
616 }
617 // If the type changed, it means we had an incomplete type that was
618 // completed by the initializer. For example:
619 // int ary[] = { 1, 3, 5 };
620 // "ary" transitions from a VariableArrayType to a ConstantArrayType.
Steve Naroff410e3e22007-09-12 20:13:48 +0000621 if (!VDecl->isInvalidDecl() && (DclT != SavT))
622 VDecl->setType(DclT);
Steve Naroffbb204692007-09-12 14:07:44 +0000623
624 // Attach the initializer to the decl.
Steve Naroff410e3e22007-09-12 20:13:48 +0000625 VDecl->setInit(Init);
Steve Naroffbb204692007-09-12 14:07:44 +0000626 return;
627}
628
Reid Spencer5f016e22007-07-11 17:01:13 +0000629/// The declarators are chained together backwards, reverse the list.
630Sema::DeclTy *Sema::FinalizeDeclaratorGroup(Scope *S, DeclTy *group) {
631 // Often we have single declarators, handle them quickly.
Steve Naroff94745042007-09-13 23:52:58 +0000632 Decl *GroupDecl = static_cast<Decl*>(group);
633 if (GroupDecl == 0)
Steve Naroffbb204692007-09-12 14:07:44 +0000634 return 0;
Steve Naroff94745042007-09-13 23:52:58 +0000635
636 ScopedDecl *Group = dyn_cast<ScopedDecl>(GroupDecl);
637 ScopedDecl *NewGroup = 0;
Steve Naroffbb204692007-09-12 14:07:44 +0000638 if (Group->getNextDeclarator() == 0)
Reid Spencer5f016e22007-07-11 17:01:13 +0000639 NewGroup = Group;
Steve Naroffbb204692007-09-12 14:07:44 +0000640 else { // reverse the list.
641 while (Group) {
Steve Naroff94745042007-09-13 23:52:58 +0000642 ScopedDecl *Next = Group->getNextDeclarator();
Steve Naroffbb204692007-09-12 14:07:44 +0000643 Group->setNextDeclarator(NewGroup);
644 NewGroup = Group;
645 Group = Next;
646 }
647 }
648 // Perform semantic analysis that depends on having fully processed both
649 // the declarator and initializer.
Steve Naroff94745042007-09-13 23:52:58 +0000650 for (ScopedDecl *ID = NewGroup; ID; ID = ID->getNextDeclarator()) {
Steve Naroffbb204692007-09-12 14:07:44 +0000651 VarDecl *IDecl = dyn_cast<VarDecl>(ID);
652 if (!IDecl)
653 continue;
654 FileVarDecl *FVD = dyn_cast<FileVarDecl>(IDecl);
655 BlockVarDecl *BVD = dyn_cast<BlockVarDecl>(IDecl);
656 QualType T = IDecl->getType();
657
658 // C99 6.7.5.2p2: If an identifier is declared to be an object with
659 // static storage duration, it shall not have a variable length array.
660 if ((FVD || BVD) && IDecl->getStorageClass() == VarDecl::Static) {
661 if (const VariableArrayType *VLA = T->getAsVariableArrayType()) {
662 if (VLA->getSizeExpr()) {
663 Diag(IDecl->getLocation(), diag::err_typecheck_illegal_vla);
664 IDecl->setInvalidDecl();
665 }
666 }
667 }
668 // Block scope. C99 6.7p7: If an identifier for an object is declared with
669 // no linkage (C99 6.2.2p6), the type for the object shall be complete...
670 if (BVD && IDecl->getStorageClass() != VarDecl::Extern) {
671 if (T->isIncompleteType()) {
672 Diag(IDecl->getLocation(), diag::err_typecheck_decl_incomplete_type,
673 T.getAsString());
674 IDecl->setInvalidDecl();
675 }
676 }
677 // File scope. C99 6.9.2p2: A declaration of an identifier for and
678 // object that has file scope without an initializer, and without a
679 // storage-class specifier or with the storage-class specifier "static",
680 // constitutes a tentative definition. Note: A tentative definition with
681 // external linkage is valid (C99 6.2.2p5).
682 if (FVD && !FVD->getInit() && FVD->getStorageClass() == VarDecl::Static) {
683 // C99 6.9.2p3: If the declaration of an identifier for an object is
684 // a tentative definition and has internal linkage (C99 6.2.2p3), the
685 // declared type shall not be an incomplete type.
686 if (T->isIncompleteType()) {
687 Diag(IDecl->getLocation(), diag::err_typecheck_decl_incomplete_type,
688 T.getAsString());
689 IDecl->setInvalidDecl();
690 }
691 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000692 }
693 return NewGroup;
694}
Steve Naroffe1223f72007-08-28 03:03:08 +0000695
696// Called from Sema::ParseStartOfFunctionDef().
Reid Spencer5f016e22007-07-11 17:01:13 +0000697ParmVarDecl *
698Sema::ParseParamDeclarator(DeclaratorChunk &FTI, unsigned ArgNo,
699 Scope *FnScope) {
700 const DeclaratorChunk::ParamInfo &PI = FTI.Fun.ArgInfo[ArgNo];
701
702 IdentifierInfo *II = PI.Ident;
703 // TODO: CHECK FOR CONFLICTS, multiple decls with same name in one scope.
704 // Can this happen for params? We already checked that they don't conflict
705 // among each other. Here they can only shadow globals, which is ok.
Chris Lattner8b9023b2007-07-13 03:05:23 +0000706 if (/*Decl *PrevDecl = */LookupScopedDecl(II, Decl::IDNS_Ordinary,
Reid Spencer5f016e22007-07-11 17:01:13 +0000707 PI.IdentLoc, FnScope)) {
708
709 }
710
711 // FIXME: Handle storage class (auto, register). No declarator?
712 // TODO: Chain to previous parameter with the prevdeclarator chain?
Steve Naroff6a9f3e32007-08-07 22:44:21 +0000713
714 // Perform the default function/array conversion (C99 6.7.5.3p[7,8]).
715 // Doing the promotion here has a win and a loss. The win is the type for
716 // both Decl's and DeclRefExpr's will match (a convenient invariant for the
717 // code generator). The loss is the orginal type isn't preserved. For example:
718 //
719 // void func(int parmvardecl[5]) { // convert "int [5]" to "int *"
720 // int blockvardecl[5];
721 // sizeof(parmvardecl); // size == 4
722 // sizeof(blockvardecl); // size == 20
723 // }
724 //
725 // For expressions, all implicit conversions are captured using the
726 // ImplicitCastExpr AST node (we have no such mechanism for Decl's).
727 //
728 // FIXME: If a source translation tool needs to see the original type, then
729 // we need to consider storing both types (in ParmVarDecl)...
730 //
731 QualType parmDeclType = QualType::getFromOpaquePtr(PI.TypeInfo);
732 if (const ArrayType *AT = parmDeclType->getAsArrayType())
733 parmDeclType = Context.getPointerType(AT->getElementType());
734 else if (parmDeclType->isFunctionType())
735 parmDeclType = Context.getPointerType(parmDeclType);
736
737 ParmVarDecl *New = new ParmVarDecl(PI.IdentLoc, II, parmDeclType,
Steve Naroff53a32342007-08-28 18:45:29 +0000738 VarDecl::None, 0);
739 if (PI.InvalidType)
740 New->setInvalidDecl();
741
Reid Spencer5f016e22007-07-11 17:01:13 +0000742 // If this has an identifier, add it to the scope stack.
743 if (II) {
Steve Naroffc752d042007-09-13 18:10:37 +0000744 New->setNext(II->getFETokenInfo<ScopedDecl>());
Reid Spencer5f016e22007-07-11 17:01:13 +0000745 II->setFETokenInfo(New);
746 FnScope->AddDecl(New);
747 }
748
749 return New;
750}
751
752
Chris Lattnerb652cea2007-10-09 17:14:05 +0000753Sema::DeclTy *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Declarator &D) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000754 assert(CurFunctionDecl == 0 && "Function parsing confused");
755 assert(D.getTypeObject(0).Kind == DeclaratorChunk::Function &&
756 "Not a function declarator!");
757 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
758
759 // Verify 6.9.1p6: 'every identifier in the identifier list shall be declared'
760 // for a K&R function.
761 if (!FTI.hasPrototype) {
762 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) {
763 if (FTI.ArgInfo[i].TypeInfo == 0) {
764 Diag(FTI.ArgInfo[i].IdentLoc, diag::ext_param_not_declared,
765 FTI.ArgInfo[i].Ident->getName());
766 // Implicitly declare the argument as type 'int' for lack of a better
767 // type.
768 FTI.ArgInfo[i].TypeInfo = Context.IntTy.getAsOpaquePtr();
769 }
770 }
771
772 // Since this is a function definition, act as though we have information
773 // about the arguments.
774 FTI.hasPrototype = true;
775 } else {
776 // FIXME: Diagnose arguments without names in C.
777
778 }
779
780 Scope *GlobalScope = FnBodyScope->getParent();
781
782 FunctionDecl *FD =
Steve Naroff08d92e42007-09-15 18:49:24 +0000783 static_cast<FunctionDecl*>(ActOnDeclarator(GlobalScope, D, 0));
Reid Spencer5f016e22007-07-11 17:01:13 +0000784 CurFunctionDecl = FD;
785
786 // Create Decl objects for each parameter, adding them to the FunctionDecl.
787 llvm::SmallVector<ParmVarDecl*, 16> Params;
788
789 // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs function that takes
790 // no arguments, not a function that takes a single void argument.
791 if (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
792 FTI.ArgInfo[0].TypeInfo == Context.VoidTy.getAsOpaquePtr()) {
793 // empty arg list, don't push any params.
794 } else {
795 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i)
796 Params.push_back(ParseParamDeclarator(D.getTypeObject(0), i,FnBodyScope));
797 }
798
799 FD->setParams(&Params[0], Params.size());
800
801 return FD;
802}
803
Chris Lattnerb652cea2007-10-09 17:14:05 +0000804Sema::DeclTy *Sema::ActOnFunctionDefBody(DeclTy *D, StmtTy *Body) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000805 FunctionDecl *FD = static_cast<FunctionDecl*>(D);
806 FD->setBody((Stmt*)Body);
807
808 assert(FD == CurFunctionDecl && "Function parsing confused");
809 CurFunctionDecl = 0;
810
811 // Verify and clean out per-function state.
812
813 // Check goto/label use.
814 for (llvm::DenseMap<IdentifierInfo*, LabelStmt*>::iterator
815 I = LabelMap.begin(), E = LabelMap.end(); I != E; ++I) {
816 // Verify that we have no forward references left. If so, there was a goto
817 // or address of a label taken, but no definition of it. Label fwd
818 // definitions are indicated with a null substmt.
819 if (I->second->getSubStmt() == 0) {
820 LabelStmt *L = I->second;
821 // Emit error.
822 Diag(L->getIdentLoc(), diag::err_undeclared_label_use, L->getName());
823
824 // At this point, we have gotos that use the bogus label. Stitch it into
825 // the function body so that they aren't leaked and that the AST is well
826 // formed.
827 L->setSubStmt(new NullStmt(L->getIdentLoc()));
828 cast<CompoundStmt>((Stmt*)Body)->push_back(L);
829 }
830 }
831 LabelMap.clear();
832
833 return FD;
834}
835
836
837/// ImplicitlyDefineFunction - An undeclared identifier was used in a function
838/// call, forming a call to an implicitly defined function (per C99 6.5.1p2).
Steve Naroff8c9f13e2007-09-16 16:16:00 +0000839ScopedDecl *Sema::ImplicitlyDefineFunction(SourceLocation Loc,
840 IdentifierInfo &II, Scope *S) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000841 if (getLangOptions().C99) // Extension in C99.
842 Diag(Loc, diag::ext_implicit_function_decl, II.getName());
843 else // Legal in C90, but warn about it.
844 Diag(Loc, diag::warn_implicit_function_decl, II.getName());
845
846 // FIXME: handle stuff like:
847 // void foo() { extern float X(); }
848 // void bar() { X(); } <-- implicit decl for X in another scope.
849
850 // Set a Declarator for the implicit definition: int foo();
851 const char *Dummy;
852 DeclSpec DS;
853 bool Error = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, Dummy);
854 Error = Error; // Silence warning.
855 assert(!Error && "Error setting up implicit decl!");
856 Declarator D(DS, Declarator::BlockContext);
857 D.AddTypeInfo(DeclaratorChunk::getFunction(false, false, 0, 0, Loc));
858 D.SetIdentifier(&II, Loc);
859
860 // Find translation-unit scope to insert this function into.
Chris Lattner31e05722007-08-26 06:24:45 +0000861 if (Scope *FnS = S->getFnParent())
862 S = FnS->getParent(); // Skip all scopes in a function at once.
Reid Spencer5f016e22007-07-11 17:01:13 +0000863 while (S->getParent())
864 S = S->getParent();
865
Steve Naroff8c9f13e2007-09-16 16:16:00 +0000866 return dyn_cast<ScopedDecl>(static_cast<Decl*>(ActOnDeclarator(S, D, 0)));
Reid Spencer5f016e22007-07-11 17:01:13 +0000867}
868
869
870TypedefDecl *Sema::ParseTypedefDecl(Scope *S, Declarator &D,
Steve Naroff94745042007-09-13 23:52:58 +0000871 ScopedDecl *LastDeclarator) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000872 assert(D.getIdentifier() && "Wrong callback for declspec without declarator");
873
874 QualType T = GetTypeForDeclarator(D, S);
Steve Naroff5912a352007-08-28 20:14:24 +0000875 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
Reid Spencer5f016e22007-07-11 17:01:13 +0000876
877 // Scope manipulation handled by caller.
Steve Naroff5912a352007-08-28 20:14:24 +0000878 TypedefDecl *NewTD = new TypedefDecl(D.getIdentifierLoc(), D.getIdentifier(),
879 T, LastDeclarator);
880 if (D.getInvalidType())
881 NewTD->setInvalidDecl();
882 return NewTD;
Reid Spencer5f016e22007-07-11 17:01:13 +0000883}
884
Steve Naroffe440eb82007-10-10 17:32:04 +0000885Sema::DeclTy *Sema::ActOnStartClassInterface(
Fariborz Jahanianccb4f312007-09-25 18:38:09 +0000886 SourceLocation AtInterfaceLoc,
Steve Naroff3536b442007-09-06 21:24:23 +0000887 IdentifierInfo *ClassName, SourceLocation ClassLoc,
888 IdentifierInfo *SuperName, SourceLocation SuperLoc,
889 IdentifierInfo **ProtocolNames, unsigned NumProtocols,
890 AttributeList *AttrList) {
891 assert(ClassName && "Missing class identifier");
Fariborz Jahanianccb4f312007-09-25 18:38:09 +0000892
893 // Check for another declaration kind with the same name.
894 ScopedDecl *PrevDecl = LookupScopedDecl(ClassName, Decl::IDNS_Ordinary,
Steve Naroffe440eb82007-10-10 17:32:04 +0000895 ClassLoc, TUScope);
Fariborz Jahanian05672a02007-10-09 18:03:53 +0000896 if (PrevDecl && !isa<ObjcInterfaceDecl>(PrevDecl)) {
Fariborz Jahanianccb4f312007-09-25 18:38:09 +0000897 Diag(ClassLoc, diag::err_redefinition_different_kind,
898 ClassName->getName());
899 Diag(PrevDecl->getLocation(), diag::err_previous_definition);
900 }
901
Steve Naroff6a8a9a42007-10-02 20:01:56 +0000902 ObjcInterfaceDecl* IDecl = getObjCInterfaceDecl(ClassName);
Fariborz Jahanianbd51b872007-09-20 20:26:44 +0000903 if (IDecl) {
904 // Class already seen. Is it a forward declaration?
Steve Naroff768f26e2007-10-02 20:26:23 +0000905 if (!IDecl->isForwardDecl())
Fariborz Jahanianbd51b872007-09-20 20:26:44 +0000906 Diag(AtInterfaceLoc, diag::err_duplicate_class_def, ClassName->getName());
Fariborz Jahanianb27c1562007-09-22 00:01:35 +0000907 else {
Steve Naroff768f26e2007-10-02 20:26:23 +0000908 IDecl->setForwardDecl(false);
Fariborz Jahanianb27c1562007-09-22 00:01:35 +0000909 IDecl->AllocIntfRefProtocols(NumProtocols);
910 }
Fariborz Jahanianbd51b872007-09-20 20:26:44 +0000911 }
912 else {
Fariborz Jahanianb27c1562007-09-22 00:01:35 +0000913 IDecl = new ObjcInterfaceDecl(AtInterfaceLoc, NumProtocols, ClassName);
Fariborz Jahanian1d5b0e32007-09-20 17:54:07 +0000914
Fariborz Jahanianbd51b872007-09-20 20:26:44 +0000915 // Chain & install the interface decl into the identifier.
916 IDecl->setNext(ClassName->getFETokenInfo<ScopedDecl>());
917 ClassName->setFETokenInfo(IDecl);
918 }
Fariborz Jahanian1d5b0e32007-09-20 17:54:07 +0000919
920 if (SuperName) {
Fariborz Jahanianccb4f312007-09-25 18:38:09 +0000921 ObjcInterfaceDecl* SuperClassEntry = 0;
922 // Check if a different kind of symbol declared in this scope.
923 PrevDecl = LookupScopedDecl(SuperName, Decl::IDNS_Ordinary,
Steve Naroffe440eb82007-10-10 17:32:04 +0000924 SuperLoc, TUScope);
Fariborz Jahanian05672a02007-10-09 18:03:53 +0000925 if (PrevDecl && !isa<ObjcInterfaceDecl>(PrevDecl)) {
Fariborz Jahanianccb4f312007-09-25 18:38:09 +0000926 Diag(SuperLoc, diag::err_redefinition_different_kind,
927 SuperName->getName());
928 Diag(PrevDecl->getLocation(), diag::err_previous_definition);
Fariborz Jahanian1d5b0e32007-09-20 17:54:07 +0000929 }
Fariborz Jahanianccb4f312007-09-25 18:38:09 +0000930 else {
931 // Check that super class is previously defined
Steve Naroff6a8a9a42007-10-02 20:01:56 +0000932 SuperClassEntry = getObjCInterfaceDecl(SuperName);
Fariborz Jahanianccb4f312007-09-25 18:38:09 +0000933
Steve Naroff768f26e2007-10-02 20:26:23 +0000934 if (!SuperClassEntry || SuperClassEntry->isForwardDecl()) {
Fariborz Jahanianccb4f312007-09-25 18:38:09 +0000935 Diag(AtInterfaceLoc, diag::err_undef_superclass, SuperName->getName(),
936 ClassName->getName());
937 }
938 }
939 IDecl->setSuperClass(SuperClassEntry);
Fariborz Jahanian1d5b0e32007-09-20 17:54:07 +0000940 }
941
Fariborz Jahanianb27c1562007-09-22 00:01:35 +0000942 /// Check then save referenced protocols
943 for (unsigned int i = 0; i != NumProtocols; i++) {
Fariborz Jahanian05672a02007-10-09 18:03:53 +0000944 ObjcProtocolDecl* RefPDecl = ObjcProtocols[ProtocolNames[i]];
Steve Naroff768f26e2007-10-02 20:26:23 +0000945 if (!RefPDecl || RefPDecl->isForwardDecl())
Fariborz Jahanianb27c1562007-09-22 00:01:35 +0000946 Diag(ClassLoc, diag::err_undef_protocolref,
947 ProtocolNames[i]->getName(),
948 ClassName->getName());
949 IDecl->setIntfRefProtocols((int)i, RefPDecl);
950 }
951
Steve Naroff3536b442007-09-06 21:24:23 +0000952 return IDecl;
953}
954
Steve Naroffe440eb82007-10-10 17:32:04 +0000955Sema::DeclTy *Sema::ActOnStartProtocolInterface(
Fariborz Jahanian3f5faf72007-10-04 00:45:27 +0000956 SourceLocation AtProtoInterfaceLoc,
Fariborz Jahanian25e077d2007-09-17 21:07:36 +0000957 IdentifierInfo *ProtocolName, SourceLocation ProtocolLoc,
958 IdentifierInfo **ProtoRefNames, unsigned NumProtoRefs) {
959 assert(ProtocolName && "Missing protocol identifier");
Fariborz Jahanian05672a02007-10-09 18:03:53 +0000960 ObjcProtocolDecl *PDecl = ObjcProtocols[ProtocolName];
Fariborz Jahanian894c57f2007-09-21 15:40:54 +0000961 if (PDecl) {
962 // Protocol already seen. Better be a forward protocol declaration
Steve Naroff768f26e2007-10-02 20:26:23 +0000963 if (!PDecl->isForwardDecl())
Fariborz Jahanian894c57f2007-09-21 15:40:54 +0000964 Diag(ProtocolLoc, diag::err_duplicate_protocol_def,
965 ProtocolName->getName());
966 else {
Steve Naroff768f26e2007-10-02 20:26:23 +0000967 PDecl->setForwardDecl(false);
Fariborz Jahanian894c57f2007-09-21 15:40:54 +0000968 PDecl->AllocReferencedProtocols(NumProtoRefs);
969 }
970 }
971 else {
972 PDecl = new ObjcProtocolDecl(AtProtoInterfaceLoc, NumProtoRefs,
973 ProtocolName);
Fariborz Jahanian05672a02007-10-09 18:03:53 +0000974 ObjcProtocols[ProtocolName] = PDecl;
Fariborz Jahanian894c57f2007-09-21 15:40:54 +0000975 }
976
977 /// Check then save referenced protocols
978 for (unsigned int i = 0; i != NumProtoRefs; i++) {
Fariborz Jahanian05672a02007-10-09 18:03:53 +0000979 ObjcProtocolDecl* RefPDecl = ObjcProtocols[ProtoRefNames[i]];
Steve Naroff768f26e2007-10-02 20:26:23 +0000980 if (!RefPDecl || RefPDecl->isForwardDecl())
Fariborz Jahanian894c57f2007-09-21 15:40:54 +0000981 Diag(ProtocolLoc, diag::err_undef_protocolref,
Fariborz Jahanian3f5faf72007-10-04 00:45:27 +0000982 ProtoRefNames[i]->getName(),
Fariborz Jahanian894c57f2007-09-21 15:40:54 +0000983 ProtocolName->getName());
984 PDecl->setReferencedProtocols((int)i, RefPDecl);
985 }
Fariborz Jahanian25e077d2007-09-17 21:07:36 +0000986
Fariborz Jahanian25e077d2007-09-17 21:07:36 +0000987 return PDecl;
988}
989
Fariborz Jahanian245f92a2007-10-05 21:01:53 +0000990/// ActOnFindProtocolDeclaration - This routine looks for a previously
991/// declared protocol and returns it. If not found, issues diagnostic.
992/// Will build a list of previously protocol declarations found in the list.
993Action::DeclTy **
Steve Naroffe440eb82007-10-10 17:32:04 +0000994Sema::ActOnFindProtocolDeclaration(SourceLocation TypeLoc,
Fariborz Jahanian245f92a2007-10-05 21:01:53 +0000995 IdentifierInfo **ProtocolId,
996 unsigned NumProtocols) {
997 for (unsigned i = 0; i != NumProtocols; ++i) {
Fariborz Jahanian05672a02007-10-09 18:03:53 +0000998 ObjcProtocolDecl *PDecl = ObjcProtocols[ProtocolId[i]];
Fariborz Jahanian245f92a2007-10-05 21:01:53 +0000999 if (!PDecl)
1000 Diag(TypeLoc, diag::err_undeclared_protocol,
1001 ProtocolId[i]->getName());
1002 }
1003 return 0;
1004}
1005
Steve Naroff37e58d12007-10-02 22:39:18 +00001006/// ActOnForwardProtocolDeclaration -
Fariborz Jahanian894c57f2007-09-21 15:40:54 +00001007Action::DeclTy *
Steve Naroffe440eb82007-10-10 17:32:04 +00001008Sema::ActOnForwardProtocolDeclaration(SourceLocation AtProtocolLoc,
Fariborz Jahanian894c57f2007-09-21 15:40:54 +00001009 IdentifierInfo **IdentList, unsigned NumElts) {
Chris Lattnerb97de3e2007-10-06 20:05:59 +00001010 llvm::SmallVector<ObjcProtocolDecl*, 32> Protocols;
Fariborz Jahanian894c57f2007-09-21 15:40:54 +00001011
1012 for (unsigned i = 0; i != NumElts; ++i) {
Chris Lattner60c52182007-10-07 07:05:08 +00001013 IdentifierInfo *P = IdentList[i];
Fariborz Jahanian05672a02007-10-09 18:03:53 +00001014 ObjcProtocolDecl *PDecl = ObjcProtocols[P];
Chris Lattner60c52182007-10-07 07:05:08 +00001015 if (!PDecl) { // Not already seen?
1016 // FIXME: Pass in the location of the identifier!
1017 PDecl = new ObjcProtocolDecl(AtProtocolLoc, 0, P, true);
Fariborz Jahanian05672a02007-10-09 18:03:53 +00001018 ObjcProtocols[P] = PDecl;
Fariborz Jahanian894c57f2007-09-21 15:40:54 +00001019 }
Fariborz Jahanian894c57f2007-09-21 15:40:54 +00001020
Chris Lattnerb97de3e2007-10-06 20:05:59 +00001021 Protocols.push_back(PDecl);
Fariborz Jahanian894c57f2007-09-21 15:40:54 +00001022 }
Chris Lattnerb97de3e2007-10-06 20:05:59 +00001023 return new ObjcForwardProtocolDecl(AtProtocolLoc,
1024 &Protocols[0], Protocols.size());
Fariborz Jahanian894c57f2007-09-21 15:40:54 +00001025}
1026
Steve Naroffe440eb82007-10-10 17:32:04 +00001027Sema::DeclTy *Sema::ActOnStartCategoryInterface(
Fariborz Jahanian3f5faf72007-10-04 00:45:27 +00001028 SourceLocation AtInterfaceLoc,
Fariborz Jahanianfd225cc2007-09-18 20:26:58 +00001029 IdentifierInfo *ClassName, SourceLocation ClassLoc,
1030 IdentifierInfo *CategoryName, SourceLocation CategoryLoc,
1031 IdentifierInfo **ProtoRefNames, unsigned NumProtoRefs) {
Chris Lattnerfd5de472007-10-06 22:53:46 +00001032 ObjcInterfaceDecl *IDecl = getObjCInterfaceDecl(ClassName);
Fariborz Jahanian22d71d62007-10-09 17:05:22 +00001033
Fariborz Jahanianb27c1562007-09-22 00:01:35 +00001034 /// Check that class of this category is already completely declared.
Fariborz Jahanian0332b6c2007-10-08 16:07:03 +00001035 if (!IDecl || IDecl->isForwardDecl()) {
Fariborz Jahanianb27c1562007-09-22 00:01:35 +00001036 Diag(ClassLoc, diag::err_undef_interface, ClassName->getName());
Fariborz Jahanian22d71d62007-10-09 17:05:22 +00001037 return 0;
Fariborz Jahanian0332b6c2007-10-08 16:07:03 +00001038 }
Fariborz Jahanian8fe5c2a2007-10-09 18:22:59 +00001039 ObjcCategoryDecl *CDecl = new ObjcCategoryDecl(AtInterfaceLoc, NumProtoRefs,
1040 CategoryName);
1041 CDecl->setClassInterface(IDecl);
1042 /// Check for duplicate interface declaration for this category
1043 ObjcCategoryDecl *CDeclChain;
1044 for (CDeclChain = IDecl->getListCategories(); CDeclChain;
1045 CDeclChain = CDeclChain->getNextClassCategory()) {
1046 if (CDeclChain->getIdentifier() == CategoryName) {
1047 Diag(CategoryLoc, diag::err_dup_category_def, ClassName->getName(),
1048 CategoryName->getName());
1049 break;
Fariborz Jahanianb27c1562007-09-22 00:01:35 +00001050 }
Fariborz Jahanianb27c1562007-09-22 00:01:35 +00001051 }
Fariborz Jahanian8fe5c2a2007-10-09 18:22:59 +00001052 if (!CDeclChain)
1053 CDecl->insertNextClassCategory();
1054
Fariborz Jahanianb27c1562007-09-22 00:01:35 +00001055 /// Check then save referenced protocols
1056 for (unsigned int i = 0; i != NumProtoRefs; i++) {
Fariborz Jahanian05672a02007-10-09 18:03:53 +00001057 ObjcProtocolDecl* RefPDecl = ObjcProtocols[ProtoRefNames[i]];
Fariborz Jahanian0332b6c2007-10-08 16:07:03 +00001058 if (!RefPDecl || RefPDecl->isForwardDecl()) {
Fariborz Jahanianb27c1562007-09-22 00:01:35 +00001059 Diag(CategoryLoc, diag::err_undef_protocolref,
Fariborz Jahanian3f5faf72007-10-04 00:45:27 +00001060 ProtoRefNames[i]->getName(),
Fariborz Jahanianb27c1562007-09-22 00:01:35 +00001061 CategoryName->getName());
Fariborz Jahanian0332b6c2007-10-08 16:07:03 +00001062 }
Fariborz Jahanianb27c1562007-09-22 00:01:35 +00001063 CDecl->setCatReferencedProtocols((int)i, RefPDecl);
1064 }
1065
Fariborz Jahanian22d71d62007-10-09 17:05:22 +00001066 return CDecl;
Fariborz Jahanianfd225cc2007-09-18 20:26:58 +00001067}
Fariborz Jahanianbd51b872007-09-20 20:26:44 +00001068
Steve Naroff3a165b02007-10-03 21:00:46 +00001069/// ActOnStartCategoryImplementation - Perform semantic checks on the
Fariborz Jahanian8f3fde02007-10-02 16:38:50 +00001070/// category implementation declaration and build an ObjcCategoryImplDecl
1071/// object.
Steve Naroffe440eb82007-10-10 17:32:04 +00001072Sema::DeclTy *Sema::ActOnStartCategoryImplementation(
Fariborz Jahanian8f3fde02007-10-02 16:38:50 +00001073 SourceLocation AtCatImplLoc,
1074 IdentifierInfo *ClassName, SourceLocation ClassLoc,
1075 IdentifierInfo *CatName, SourceLocation CatLoc) {
Steve Naroff6a8a9a42007-10-02 20:01:56 +00001076 ObjcInterfaceDecl *IDecl = getObjCInterfaceDecl(ClassName);
Fariborz Jahanian8f3fde02007-10-02 16:38:50 +00001077 ObjcCategoryImplDecl *CDecl = new ObjcCategoryImplDecl(AtCatImplLoc,
Chris Lattner6a0e89e2007-10-06 23:12:31 +00001078 CatName, IDecl);
Fariborz Jahanian8f3fde02007-10-02 16:38:50 +00001079 /// Check that class of this category is already completely declared.
Steve Naroff768f26e2007-10-02 20:26:23 +00001080 if (!IDecl || IDecl->isForwardDecl())
Fariborz Jahanian8f3fde02007-10-02 16:38:50 +00001081 Diag(ClassLoc, diag::err_undef_interface, ClassName->getName());
1082 /// TODO: Check that CatName, category name, is not used in another
1083 // implementation.
1084 return CDecl;
1085}
1086
Steve Naroffe440eb82007-10-10 17:32:04 +00001087Sema::DeclTy *Sema::ActOnStartClassImplementation(
Fariborz Jahanianccb4f312007-09-25 18:38:09 +00001088 SourceLocation AtClassImplLoc,
1089 IdentifierInfo *ClassName, SourceLocation ClassLoc,
1090 IdentifierInfo *SuperClassname,
1091 SourceLocation SuperClassLoc) {
1092 ObjcInterfaceDecl* IDecl = 0;
1093 // Check for another declaration kind with the same name.
1094 ScopedDecl *PrevDecl = LookupScopedDecl(ClassName, Decl::IDNS_Ordinary,
Steve Naroffe440eb82007-10-10 17:32:04 +00001095 ClassLoc, TUScope);
Fariborz Jahanianccb4f312007-09-25 18:38:09 +00001096 if (PrevDecl && !isa<ObjcInterfaceDecl>(PrevDecl)) {
1097 Diag(ClassLoc, diag::err_redefinition_different_kind,
1098 ClassName->getName());
1099 Diag(PrevDecl->getLocation(), diag::err_previous_definition);
1100 }
1101 else {
1102 // Is there an interface declaration of this class; if not, warn!
Steve Naroff6a8a9a42007-10-02 20:01:56 +00001103 IDecl = getObjCInterfaceDecl(ClassName);
Fariborz Jahanianccb4f312007-09-25 18:38:09 +00001104 if (!IDecl)
1105 Diag(ClassLoc, diag::warn_undef_interface, ClassName->getName());
1106 }
1107
1108 // Check that super class name is valid class name
1109 ObjcInterfaceDecl* SDecl = 0;
1110 if (SuperClassname) {
1111 // Check if a different kind of symbol declared in this scope.
1112 PrevDecl = LookupScopedDecl(SuperClassname, Decl::IDNS_Ordinary,
Steve Naroffe440eb82007-10-10 17:32:04 +00001113 SuperClassLoc, TUScope);
Fariborz Jahanian05672a02007-10-09 18:03:53 +00001114 if (PrevDecl && !isa<ObjcInterfaceDecl>(PrevDecl)) {
Fariborz Jahanianccb4f312007-09-25 18:38:09 +00001115 Diag(SuperClassLoc, diag::err_redefinition_different_kind,
1116 SuperClassname->getName());
1117 Diag(PrevDecl->getLocation(), diag::err_previous_definition);
1118 }
1119 else {
Steve Naroff6a8a9a42007-10-02 20:01:56 +00001120 SDecl = getObjCInterfaceDecl(SuperClassname);
Fariborz Jahanianccb4f312007-09-25 18:38:09 +00001121 if (!SDecl)
1122 Diag(SuperClassLoc, diag::err_undef_superclass,
1123 SuperClassname->getName(), ClassName->getName());
1124 else if (IDecl && IDecl->getSuperClass() != SDecl) {
1125 // This implementation and its interface do not have the same
1126 // super class.
1127 Diag(SuperClassLoc, diag::err_conflicting_super_class,
1128 SuperClassname->getName());
1129 Diag(SDecl->getLocation(), diag::err_previous_definition);
1130 }
1131 }
1132 }
1133
1134 ObjcImplementationDecl* IMPDecl =
1135 new ObjcImplementationDecl(AtClassImplLoc, ClassName, SDecl);
Fariborz Jahanian0da1c102007-09-25 21:00:20 +00001136 if (!IDecl) {
1137 // Legacy case of @implementation with no corresponding @interface.
1138 // Build, chain & install the interface decl into the identifier.
Fariborz Jahanian4b6df3f2007-10-04 00:22:33 +00001139 IDecl = new ObjcInterfaceDecl(SourceLocation(), 0, ClassName);
Fariborz Jahanian0da1c102007-09-25 21:00:20 +00001140 IDecl->setNext(ClassName->getFETokenInfo<ScopedDecl>());
1141 ClassName->setFETokenInfo(IDecl);
1142
1143 }
Fariborz Jahanianccb4f312007-09-25 18:38:09 +00001144
1145 // Check that there is no duplicate implementation of this class.
Chris Lattnerf3876682007-10-07 01:13:46 +00001146 if (!ObjcImplementations.insert(ClassName))
1147 Diag(ClassLoc, diag::err_dup_implementation_class, ClassName->getName());
Fariborz Jahanianccb4f312007-09-25 18:38:09 +00001148
1149 return IMPDecl;
1150}
1151
Steve Naroffa5997c42007-10-02 21:43:37 +00001152void Sema::CheckImplementationIvars(ObjcImplementationDecl *ImpDecl,
1153 ObjcIvarDecl **ivars, unsigned numIvars) {
1154 assert(ImpDecl && "missing implementation decl");
1155 ObjcInterfaceDecl* IDecl = getObjCInterfaceDecl(ImpDecl->getIdentifier());
Fariborz Jahanian4b6df3f2007-10-04 00:22:33 +00001156 /// 2nd check is added to accomodate case of non-existing @interface decl.
1157 /// (legacy objective-c @implementation decl without an @interface decl).
1158 if (!IDecl || IDecl->ImplicitInterfaceDecl())
Steve Naroffa5997c42007-10-02 21:43:37 +00001159 return;
Fariborz Jahaniand0b90bf2007-09-26 18:27:25 +00001160 assert(ivars && "missing @implementation ivars");
1161
Steve Naroffa5997c42007-10-02 21:43:37 +00001162 // Check interface's Ivar list against those in the implementation.
1163 // names and types must match.
1164 //
Fariborz Jahaniand0b90bf2007-09-26 18:27:25 +00001165 ObjcIvarDecl** IntfIvars = IDecl->getIntfDeclIvars();
1166 int IntfNumIvars = IDecl->getIntfDeclNumIvars();
1167 unsigned j = 0;
1168 bool err = false;
1169 while (numIvars > 0 && IntfNumIvars > 0) {
1170 ObjcIvarDecl* ImplIvar = ivars[j];
1171 ObjcIvarDecl* ClsIvar = IntfIvars[j++];
1172 assert (ImplIvar && "missing implementation ivar");
1173 assert (ClsIvar && "missing class ivar");
1174 if (ImplIvar->getCanonicalType() != ClsIvar->getCanonicalType()) {
1175 Diag(ImplIvar->getLocation(), diag::err_conflicting_ivar_type,
1176 ImplIvar->getIdentifier()->getName());
1177 Diag(ClsIvar->getLocation(), diag::err_previous_definition,
1178 ClsIvar->getIdentifier()->getName());
1179 }
1180 // TODO: Two mismatched (unequal width) Ivar bitfields should be diagnosed
1181 // as error.
1182 else if (ImplIvar->getIdentifier() != ClsIvar->getIdentifier()) {
1183 Diag(ImplIvar->getLocation(), diag::err_conflicting_ivar_name,
1184 ImplIvar->getIdentifier()->getName());
1185 Diag(ClsIvar->getLocation(), diag::err_previous_definition,
1186 ClsIvar->getIdentifier()->getName());
1187 err = true;
1188 break;
1189 }
1190 --numIvars;
1191 --IntfNumIvars;
1192 }
1193 if (!err && (numIvars > 0 || IntfNumIvars > 0))
1194 Diag(numIvars > 0 ? ivars[j]->getLocation() : IntfIvars[j]->getLocation(),
1195 diag::err_inconsistant_ivar);
1196
1197}
1198
Fariborz Jahanian00ae8d52007-09-28 17:40:07 +00001199/// CheckProtocolMethodDefs - This routine checks unimpletented methods
1200/// Declared in protocol, and those referenced by it.
Fariborz Jahanian8c74fa42007-09-29 17:14:55 +00001201void Sema::CheckProtocolMethodDefs(ObjcProtocolDecl *PDecl,
Fariborz Jahanianca3adf72007-10-02 20:06:01 +00001202 bool& IncompleteImpl,
Steve Naroffeefc4182007-10-08 21:05:34 +00001203 const llvm::DenseSet<Selector> &InsMap,
Chris Lattner85994262007-10-05 20:15:24 +00001204 const llvm::DenseSet<Selector> &ClsMap) {
Fariborz Jahanian00ae8d52007-09-28 17:40:07 +00001205 // check unimplemented instance methods.
Fariborz Jahanian7ed9e0f2007-10-02 22:05:16 +00001206 ObjcMethodDecl** methods = PDecl->getInstanceMethods();
Fariborz Jahanian85ff2642007-10-05 18:00:57 +00001207 for (int j = 0; j < PDecl->getNumInstanceMethods(); j++) {
Steve Naroffeefc4182007-10-08 21:05:34 +00001208 if (!InsMap.count(methods[j]->getSelector())) {
Fariborz Jahanian8c74fa42007-09-29 17:14:55 +00001209 Diag(methods[j]->getLocation(), diag::warn_undef_method_impl,
Chris Lattnerf836e3f2007-10-07 01:33:16 +00001210 methods[j]->getSelector().getName());
Fariborz Jahanianca3adf72007-10-02 20:06:01 +00001211 IncompleteImpl = true;
Fariborz Jahanian00ae8d52007-09-28 17:40:07 +00001212 }
Fariborz Jahanian85ff2642007-10-05 18:00:57 +00001213 }
Fariborz Jahanian00ae8d52007-09-28 17:40:07 +00001214 // check unimplemented class methods
Fariborz Jahanian7ed9e0f2007-10-02 22:05:16 +00001215 methods = PDecl->getClassMethods();
1216 for (int j = 0; j < PDecl->getNumClassMethods(); j++)
Chris Lattner85994262007-10-05 20:15:24 +00001217 if (!ClsMap.count(methods[j]->getSelector())) {
Fariborz Jahanian8c74fa42007-09-29 17:14:55 +00001218 Diag(methods[j]->getLocation(), diag::warn_undef_method_impl,
Chris Lattnerf836e3f2007-10-07 01:33:16 +00001219 methods[j]->getSelector().getName());
Fariborz Jahanianca3adf72007-10-02 20:06:01 +00001220 IncompleteImpl = true;
Fariborz Jahanian00ae8d52007-09-28 17:40:07 +00001221 }
Fariborz Jahaniand0b01542007-09-27 18:57:03 +00001222
Fariborz Jahanian00ae8d52007-09-28 17:40:07 +00001223 // Check on this protocols's referenced protocols, recursively
1224 ObjcProtocolDecl** RefPDecl = PDecl->getReferencedProtocols();
1225 for (int i = 0; i < PDecl->getNumReferencedProtocols(); i++)
Fariborz Jahanianca3adf72007-10-02 20:06:01 +00001226 CheckProtocolMethodDefs(RefPDecl[i], IncompleteImpl, InsMap, ClsMap);
Fariborz Jahanian00ae8d52007-09-28 17:40:07 +00001227}
1228
Fariborz Jahanian8c74fa42007-09-29 17:14:55 +00001229void Sema::ImplMethodsVsClassMethods(ObjcImplementationDecl* IMPDecl,
1230 ObjcInterfaceDecl* IDecl) {
Steve Naroffeefc4182007-10-08 21:05:34 +00001231 llvm::DenseSet<Selector> InsMap;
Fariborz Jahaniand0b01542007-09-27 18:57:03 +00001232 // Check and see if instance methods in class interface have been
1233 // implemented in the implementation class.
Fariborz Jahanian7ed9e0f2007-10-02 22:05:16 +00001234 ObjcMethodDecl **methods = IMPDecl->getInstanceMethods();
Fariborz Jahanian85ff2642007-10-05 18:00:57 +00001235 for (int i=0; i < IMPDecl->getNumInstanceMethods(); i++)
Steve Naroffeefc4182007-10-08 21:05:34 +00001236 InsMap.insert(methods[i]->getSelector());
Fariborz Jahaniand0b01542007-09-27 18:57:03 +00001237
Fariborz Jahanianca3adf72007-10-02 20:06:01 +00001238 bool IncompleteImpl = false;
Fariborz Jahanian7ed9e0f2007-10-02 22:05:16 +00001239 methods = IDecl->getInstanceMethods();
1240 for (int j = 0; j < IDecl->getNumInstanceMethods(); j++)
Steve Naroffeefc4182007-10-08 21:05:34 +00001241 if (!InsMap.count(methods[j]->getSelector())) {
Fariborz Jahanian8c74fa42007-09-29 17:14:55 +00001242 Diag(methods[j]->getLocation(), diag::warn_undef_method_impl,
Chris Lattnerf836e3f2007-10-07 01:33:16 +00001243 methods[j]->getSelector().getName());
Fariborz Jahanianca3adf72007-10-02 20:06:01 +00001244 IncompleteImpl = true;
Fariborz Jahaniand0b01542007-09-27 18:57:03 +00001245 }
Chris Lattner85994262007-10-05 20:15:24 +00001246 llvm::DenseSet<Selector> ClsMap;
Fariborz Jahaniand0b01542007-09-27 18:57:03 +00001247 // Check and see if class methods in class interface have been
1248 // implemented in the implementation class.
Fariborz Jahanian7ed9e0f2007-10-02 22:05:16 +00001249 methods = IMPDecl->getClassMethods();
Fariborz Jahanian85ff2642007-10-05 18:00:57 +00001250 for (int i=0; i < IMPDecl->getNumClassMethods(); i++)
Chris Lattner85994262007-10-05 20:15:24 +00001251 ClsMap.insert(methods[i]->getSelector());
Fariborz Jahaniand0b01542007-09-27 18:57:03 +00001252
Fariborz Jahanian7ed9e0f2007-10-02 22:05:16 +00001253 methods = IDecl->getClassMethods();
1254 for (int j = 0; j < IDecl->getNumClassMethods(); j++)
Chris Lattner85994262007-10-05 20:15:24 +00001255 if (!ClsMap.count(methods[j]->getSelector())) {
Fariborz Jahanian8c74fa42007-09-29 17:14:55 +00001256 Diag(methods[j]->getLocation(), diag::warn_undef_method_impl,
Chris Lattnerf836e3f2007-10-07 01:33:16 +00001257 methods[j]->getSelector().getName());
Fariborz Jahanianca3adf72007-10-02 20:06:01 +00001258 IncompleteImpl = true;
Fariborz Jahaniand0b01542007-09-27 18:57:03 +00001259 }
Fariborz Jahanian00ae8d52007-09-28 17:40:07 +00001260
1261 // Check the protocol list for unimplemented methods in the @implementation
1262 // class.
Fariborz Jahanian7ed9e0f2007-10-02 22:05:16 +00001263 ObjcProtocolDecl** protocols = IDecl->getReferencedProtocols();
Chris Lattner85994262007-10-05 20:15:24 +00001264 for (int i = 0; i < IDecl->getNumIntfRefProtocols(); i++)
1265 CheckProtocolMethodDefs(protocols[i], IncompleteImpl, InsMap, ClsMap);
1266
Fariborz Jahanianca3adf72007-10-02 20:06:01 +00001267 if (IncompleteImpl)
Fariborz Jahanian4b6df3f2007-10-04 00:22:33 +00001268 Diag(IMPDecl->getLocation(), diag::warn_incomplete_impl_class,
1269 IMPDecl->getName());
Fariborz Jahanian8f3fde02007-10-02 16:38:50 +00001270}
1271
1272/// ImplCategoryMethodsVsIntfMethods - Checks that methods declared in the
1273/// category interface is implemented in the category @implementation.
1274void Sema::ImplCategoryMethodsVsIntfMethods(ObjcCategoryImplDecl *CatImplDecl,
1275 ObjcCategoryDecl *CatClassDecl) {
Steve Naroffeefc4182007-10-08 21:05:34 +00001276 llvm::DenseSet<Selector> InsMap;
Fariborz Jahanian8f3fde02007-10-02 16:38:50 +00001277 // Check and see if instance methods in category interface have been
1278 // implemented in its implementation class.
Fariborz Jahanian7ed9e0f2007-10-02 22:05:16 +00001279 ObjcMethodDecl **methods = CatImplDecl->getInstanceMethods();
Fariborz Jahanian85ff2642007-10-05 18:00:57 +00001280 for (int i=0; i < CatImplDecl->getNumInstanceMethods(); i++)
Steve Naroffeefc4182007-10-08 21:05:34 +00001281 InsMap.insert(methods[i]->getSelector());
Fariborz Jahanian8f3fde02007-10-02 16:38:50 +00001282
Fariborz Jahanianca3adf72007-10-02 20:06:01 +00001283 bool IncompleteImpl = false;
Fariborz Jahanian7ed9e0f2007-10-02 22:05:16 +00001284 methods = CatClassDecl->getInstanceMethods();
1285 for (int j = 0; j < CatClassDecl->getNumInstanceMethods(); j++)
Steve Naroffeefc4182007-10-08 21:05:34 +00001286 if (!InsMap.count(methods[j]->getSelector())) {
Fariborz Jahanian8f3fde02007-10-02 16:38:50 +00001287 Diag(methods[j]->getLocation(), diag::warn_undef_method_impl,
Chris Lattnerf836e3f2007-10-07 01:33:16 +00001288 methods[j]->getSelector().getName());
Fariborz Jahanianca3adf72007-10-02 20:06:01 +00001289 IncompleteImpl = true;
Fariborz Jahanian8f3fde02007-10-02 16:38:50 +00001290 }
Chris Lattner85994262007-10-05 20:15:24 +00001291 llvm::DenseSet<Selector> ClsMap;
Fariborz Jahanian8f3fde02007-10-02 16:38:50 +00001292 // Check and see if class methods in category interface have been
1293 // implemented in its implementation class.
Fariborz Jahanian7ed9e0f2007-10-02 22:05:16 +00001294 methods = CatImplDecl->getClassMethods();
Fariborz Jahanian85ff2642007-10-05 18:00:57 +00001295 for (int i=0; i < CatImplDecl->getNumClassMethods(); i++)
Chris Lattner85994262007-10-05 20:15:24 +00001296 ClsMap.insert(methods[i]->getSelector());
Fariborz Jahanian8f3fde02007-10-02 16:38:50 +00001297
Fariborz Jahanian7ed9e0f2007-10-02 22:05:16 +00001298 methods = CatClassDecl->getClassMethods();
1299 for (int j = 0; j < CatClassDecl->getNumClassMethods(); j++)
Chris Lattner85994262007-10-05 20:15:24 +00001300 if (!ClsMap.count(methods[j]->getSelector())) {
Fariborz Jahanian8f3fde02007-10-02 16:38:50 +00001301 Diag(methods[j]->getLocation(), diag::warn_undef_method_impl,
Chris Lattnerf836e3f2007-10-07 01:33:16 +00001302 methods[j]->getSelector().getName());
Fariborz Jahanianca3adf72007-10-02 20:06:01 +00001303 IncompleteImpl = true;
Fariborz Jahanian8f3fde02007-10-02 16:38:50 +00001304 }
1305
1306 // Check the protocol list for unimplemented methods in the @implementation
1307 // class.
Fariborz Jahanian7ed9e0f2007-10-02 22:05:16 +00001308 ObjcProtocolDecl** protocols = CatClassDecl->getReferencedProtocols();
1309 for (int i = 0; i < CatClassDecl->getNumReferencedProtocols(); i++) {
Fariborz Jahanian8f3fde02007-10-02 16:38:50 +00001310 ObjcProtocolDecl* PDecl = protocols[i];
Fariborz Jahanianca3adf72007-10-02 20:06:01 +00001311 CheckProtocolMethodDefs(PDecl, IncompleteImpl, InsMap, ClsMap);
Fariborz Jahanian8f3fde02007-10-02 16:38:50 +00001312 }
Fariborz Jahanianca3adf72007-10-02 20:06:01 +00001313 if (IncompleteImpl)
Fariborz Jahanian4b6df3f2007-10-04 00:22:33 +00001314 Diag(CatImplDecl->getLocation(), diag::warn_incomplete_impl_category,
Chris Lattnerfd5de472007-10-06 22:53:46 +00001315 CatClassDecl->getName());
Fariborz Jahaniand0b01542007-09-27 18:57:03 +00001316}
1317
Steve Naroff37e58d12007-10-02 22:39:18 +00001318/// ActOnForwardClassDeclaration -
Steve Naroff3536b442007-09-06 21:24:23 +00001319Action::DeclTy *
Steve Naroffe440eb82007-10-10 17:32:04 +00001320Sema::ActOnForwardClassDeclaration(SourceLocation AtClassLoc,
Steve Naroff37e58d12007-10-02 22:39:18 +00001321 IdentifierInfo **IdentList, unsigned NumElts)
1322{
Chris Lattner7e620722007-10-06 20:08:36 +00001323 llvm::SmallVector<ObjcInterfaceDecl*, 32> Interfaces;
1324
Steve Naroff3536b442007-09-06 21:24:23 +00001325 for (unsigned i = 0; i != NumElts; ++i) {
Chris Lattner7e620722007-10-06 20:08:36 +00001326 ObjcInterfaceDecl *IDecl = getObjCInterfaceDecl(IdentList[i]);
1327 if (!IDecl) { // Not already seen? Make a forward decl.
Fariborz Jahanianb27c1562007-09-22 00:01:35 +00001328 IDecl = new ObjcInterfaceDecl(SourceLocation(), 0, IdentList[i], true);
Fariborz Jahanianbd51b872007-09-20 20:26:44 +00001329 // Chain & install the interface decl into the identifier.
1330 IDecl->setNext(IdentList[i]->getFETokenInfo<ScopedDecl>());
1331 IdentList[i]->setFETokenInfo(IDecl);
Chris Lattner60c52182007-10-07 07:05:08 +00001332
1333 // Remember that this needs to be removed when the scope is popped.
Steve Naroffe440eb82007-10-10 17:32:04 +00001334 TUScope->AddDecl(IDecl);
Fariborz Jahanianbd51b872007-09-20 20:26:44 +00001335 }
Chris Lattner7e620722007-10-06 20:08:36 +00001336
1337 Interfaces.push_back(IDecl);
Steve Naroff3536b442007-09-06 21:24:23 +00001338 }
Chris Lattner7e620722007-10-06 20:08:36 +00001339
1340 return new ObjcClassDecl(AtClassLoc, &Interfaces[0], Interfaces.size());
Steve Naroff3536b442007-09-06 21:24:23 +00001341}
1342
Reid Spencer5f016e22007-07-11 17:01:13 +00001343
Steve Naroff08d92e42007-09-15 18:49:24 +00001344/// ActOnTag - This is invoked when we see 'struct foo' or 'struct {'. In the
Reid Spencer5f016e22007-07-11 17:01:13 +00001345/// former case, Name will be non-null. In the later case, Name will be null.
1346/// TagType indicates what kind of tag this is. TK indicates whether this is a
1347/// reference/declaration/definition of a tag.
Steve Naroff08d92e42007-09-15 18:49:24 +00001348Sema::DeclTy *Sema::ActOnTag(Scope *S, unsigned TagType, TagKind TK,
Reid Spencer5f016e22007-07-11 17:01:13 +00001349 SourceLocation KWLoc, IdentifierInfo *Name,
1350 SourceLocation NameLoc, AttributeList *Attr) {
1351 // If this is a use of an existing tag, it must have a name.
1352 assert((Name != 0 || TK == TK_Definition) &&
1353 "Nameless record must be a definition!");
1354
1355 Decl::Kind Kind;
1356 switch (TagType) {
1357 default: assert(0 && "Unknown tag type!");
1358 case DeclSpec::TST_struct: Kind = Decl::Struct; break;
1359 case DeclSpec::TST_union: Kind = Decl::Union; break;
1360//case DeclSpec::TST_class: Kind = Decl::Class; break;
1361 case DeclSpec::TST_enum: Kind = Decl::Enum; break;
1362 }
1363
1364 // If this is a named struct, check to see if there was a previous forward
1365 // declaration or definition.
1366 if (TagDecl *PrevDecl =
1367 dyn_cast_or_null<TagDecl>(LookupScopedDecl(Name, Decl::IDNS_Tag,
1368 NameLoc, S))) {
1369
1370 // If this is a use of a previous tag, or if the tag is already declared in
1371 // the same scope (so that the definition/declaration completes or
1372 // rementions the tag), reuse the decl.
1373 if (TK == TK_Reference || S->isDeclScope(PrevDecl)) {
1374 // Make sure that this wasn't declared as an enum and now used as a struct
1375 // or something similar.
1376 if (PrevDecl->getKind() != Kind) {
1377 Diag(KWLoc, diag::err_use_with_wrong_tag, Name->getName());
1378 Diag(PrevDecl->getLocation(), diag::err_previous_use);
1379 }
1380
1381 // If this is a use or a forward declaration, we're good.
1382 if (TK != TK_Definition)
1383 return PrevDecl;
1384
1385 // Diagnose attempts to redefine a tag.
1386 if (PrevDecl->isDefinition()) {
1387 Diag(NameLoc, diag::err_redefinition, Name->getName());
1388 Diag(PrevDecl->getLocation(), diag::err_previous_definition);
1389 // If this is a redefinition, recover by making this struct be
1390 // anonymous, which will make any later references get the previous
1391 // definition.
1392 Name = 0;
1393 } else {
1394 // Okay, this is definition of a previously declared or referenced tag.
1395 // Move the location of the decl to be the definition site.
1396 PrevDecl->setLocation(NameLoc);
1397 return PrevDecl;
1398 }
1399 }
1400 // If we get here, this is a definition of a new struct type in a nested
1401 // scope, e.g. "struct foo; void bar() { struct foo; }", just create a new
1402 // type.
1403 }
1404
1405 // If there is an identifier, use the location of the identifier as the
1406 // location of the decl, otherwise use the location of the struct/union
1407 // keyword.
1408 SourceLocation Loc = NameLoc.isValid() ? NameLoc : KWLoc;
1409
1410 // Otherwise, if this is the first time we've seen this tag, create the decl.
1411 TagDecl *New;
1412 switch (Kind) {
1413 default: assert(0 && "Unknown tag kind!");
1414 case Decl::Enum:
1415 // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
1416 // enum X { A, B, C } D; D should chain to X.
1417 New = new EnumDecl(Loc, Name, 0);
1418 // If this is an undefined enum, warn.
1419 if (TK != TK_Definition) Diag(Loc, diag::ext_forward_ref_enum);
1420 break;
1421 case Decl::Union:
1422 case Decl::Struct:
1423 case Decl::Class:
1424 // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
1425 // struct X { int A; } D; D should chain to X.
1426 New = new RecordDecl(Kind, Loc, Name, 0);
1427 break;
1428 }
1429
1430 // If this has an identifier, add it to the scope stack.
1431 if (Name) {
Chris Lattner31e05722007-08-26 06:24:45 +00001432 // The scope passed in may not be a decl scope. Zip up the scope tree until
1433 // we find one that is.
1434 while ((S->getFlags() & Scope::DeclScope) == 0)
1435 S = S->getParent();
1436
1437 // Add it to the decl chain.
Steve Naroffc752d042007-09-13 18:10:37 +00001438 New->setNext(Name->getFETokenInfo<ScopedDecl>());
Reid Spencer5f016e22007-07-11 17:01:13 +00001439 Name->setFETokenInfo(New);
1440 S->AddDecl(New);
1441 }
1442
1443 return New;
1444}
1445
Steve Naroff08d92e42007-09-15 18:49:24 +00001446/// ActOnField - Each field of a struct/union/class is passed into this in order
Reid Spencer5f016e22007-07-11 17:01:13 +00001447/// to create a FieldDecl object for it.
Steve Naroff08d92e42007-09-15 18:49:24 +00001448Sema::DeclTy *Sema::ActOnField(Scope *S, DeclTy *TagDecl,
Reid Spencer5f016e22007-07-11 17:01:13 +00001449 SourceLocation DeclStart,
1450 Declarator &D, ExprTy *BitfieldWidth) {
1451 IdentifierInfo *II = D.getIdentifier();
1452 Expr *BitWidth = (Expr*)BitfieldWidth;
Reid Spencer5f016e22007-07-11 17:01:13 +00001453 SourceLocation Loc = DeclStart;
1454 if (II) Loc = D.getIdentifierLoc();
1455
1456 // FIXME: Unnamed fields can be handled in various different ways, for
1457 // example, unnamed unions inject all members into the struct namespace!
1458
1459
1460 if (BitWidth) {
1461 // TODO: Validate.
1462 //printf("WARNING: BITFIELDS IGNORED!\n");
1463
1464 // 6.7.2.1p3
1465 // 6.7.2.1p4
1466
1467 } else {
1468 // Not a bitfield.
1469
1470 // validate II.
1471
1472 }
1473
1474 QualType T = GetTypeForDeclarator(D, S);
Steve Naroff5912a352007-08-28 20:14:24 +00001475 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
1476 bool InvalidDecl = false;
Steve Naroffd7444aa2007-08-31 17:20:07 +00001477
Reid Spencer5f016e22007-07-11 17:01:13 +00001478 // C99 6.7.2.1p8: A member of a structure or union may have any type other
1479 // than a variably modified type.
Steve Naroffd7444aa2007-08-31 17:20:07 +00001480 if (const VariableArrayType *VAT = T->getAsVariablyModifiedType()) {
1481 Diag(Loc, diag::err_typecheck_illegal_vla,
1482 VAT->getSizeExpr()->getSourceRange());
1483 InvalidDecl = true;
Reid Spencer5f016e22007-07-11 17:01:13 +00001484 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001485 // FIXME: Chain fielddecls together.
Steve Naroff44739212007-09-11 21:17:26 +00001486 FieldDecl *NewFD;
1487
1488 if (isa<RecordDecl>(static_cast<Decl *>(TagDecl)))
Steve Narofff38661e2007-09-14 02:20:46 +00001489 NewFD = new FieldDecl(Loc, II, T);
Fariborz Jahanianccb4f312007-09-25 18:38:09 +00001490 else if (isa<ObjcInterfaceDecl>(static_cast<Decl *>(TagDecl))
Fariborz Jahanian3f5faf72007-10-04 00:45:27 +00001491 || isa<ObjcImplementationDecl>(static_cast<Decl *>(TagDecl)))
Steve Narofff38661e2007-09-14 02:20:46 +00001492 NewFD = new ObjcIvarDecl(Loc, II, T);
Steve Naroff44739212007-09-11 21:17:26 +00001493 else
Steve Naroff08d92e42007-09-15 18:49:24 +00001494 assert(0 && "Sema::ActOnField(): Unknown TagDecl");
Steve Naroff44739212007-09-11 21:17:26 +00001495
Steve Naroff5912a352007-08-28 20:14:24 +00001496 if (D.getInvalidType() || InvalidDecl)
1497 NewFD->setInvalidDecl();
1498 return NewFD;
Reid Spencer5f016e22007-07-11 17:01:13 +00001499}
1500
Fariborz Jahanian89204a12007-10-01 16:53:59 +00001501/// TranslateIvarVisibility - Translate visibility from a token ID to an
1502/// AST enum value.
1503static ObjcIvarDecl::AccessControl
1504TranslateIvarVisibility(tok::ObjCKeywordKind ivarVisibility) {
Steve Narofff13271f2007-09-14 23:09:53 +00001505 switch (ivarVisibility) {
Fariborz Jahanian89204a12007-10-01 16:53:59 +00001506 case tok::objc_private: return ObjcIvarDecl::Private;
1507 case tok::objc_public: return ObjcIvarDecl::Public;
1508 case tok::objc_protected: return ObjcIvarDecl::Protected;
1509 case tok::objc_package: return ObjcIvarDecl::Package;
1510 default: assert(false && "Unknown visitibility kind");
Steve Narofff13271f2007-09-14 23:09:53 +00001511 }
1512}
1513
Fariborz Jahanian9d048ff2007-09-29 00:54:24 +00001514void Sema::ActOnFields(Scope* S,
Fariborz Jahanian3f5faf72007-10-04 00:45:27 +00001515 SourceLocation RecLoc, DeclTy *RecDecl,
Steve Naroff08d92e42007-09-15 18:49:24 +00001516 DeclTy **Fields, unsigned NumFields,
1517 tok::ObjCKeywordKind *visibility) {
Steve Naroff74216642007-09-14 22:20:54 +00001518 Decl *EnclosingDecl = static_cast<Decl*>(RecDecl);
1519 assert(EnclosingDecl && "missing record or interface decl");
1520 RecordDecl *Record = dyn_cast<RecordDecl>(EnclosingDecl);
1521
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001522 if (Record && Record->isDefinition()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001523 // Diagnose code like:
1524 // struct S { struct S {} X; };
1525 // We discover this when we complete the outer S. Reject and ignore the
1526 // outer S.
1527 Diag(Record->getLocation(), diag::err_nested_redefinition,
1528 Record->getKindName());
1529 Diag(RecLoc, diag::err_previous_definition);
Steve Naroff74216642007-09-14 22:20:54 +00001530 Record->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00001531 return;
1532 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001533 // Verify that all the fields are okay.
1534 unsigned NumNamedMembers = 0;
1535 llvm::SmallVector<FieldDecl*, 32> RecFields;
1536 llvm::SmallSet<const IdentifierInfo*, 32> FieldIDs;
Steve Naroff74216642007-09-14 22:20:54 +00001537
Reid Spencer5f016e22007-07-11 17:01:13 +00001538 for (unsigned i = 0; i != NumFields; ++i) {
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001539
Steve Naroff74216642007-09-14 22:20:54 +00001540 FieldDecl *FD = cast_or_null<FieldDecl>(static_cast<Decl*>(Fields[i]));
1541 assert(FD && "missing field decl");
1542
1543 // Remember all fields.
1544 RecFields.push_back(FD);
Reid Spencer5f016e22007-07-11 17:01:13 +00001545
1546 // Get the type for the field.
Chris Lattner02c642e2007-07-31 21:33:24 +00001547 Type *FDTy = FD->getType().getTypePtr();
Reid Spencer5f016e22007-07-11 17:01:13 +00001548
Steve Narofff13271f2007-09-14 23:09:53 +00001549 // If we have visibility info, make sure the AST is set accordingly.
1550 if (visibility)
Fariborz Jahanian89204a12007-10-01 16:53:59 +00001551 cast<ObjcIvarDecl>(FD)->setAccessControl(
1552 TranslateIvarVisibility(visibility[i]));
Steve Narofff13271f2007-09-14 23:09:53 +00001553
Reid Spencer5f016e22007-07-11 17:01:13 +00001554 // C99 6.7.2.1p2 - A field may not be a function type.
Chris Lattner02c642e2007-07-31 21:33:24 +00001555 if (FDTy->isFunctionType()) {
Steve Naroff74216642007-09-14 22:20:54 +00001556 Diag(FD->getLocation(), diag::err_field_declared_as_function,
Reid Spencer5f016e22007-07-11 17:01:13 +00001557 FD->getName());
Steve Naroff74216642007-09-14 22:20:54 +00001558 FD->setInvalidDecl();
1559 EnclosingDecl->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00001560 continue;
1561 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001562 // C99 6.7.2.1p2 - A field may not be an incomplete type except...
1563 if (FDTy->isIncompleteType()) {
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001564 if (!Record) { // Incomplete ivar type is always an error.
Fariborz Jahanian3f5faf72007-10-04 00:45:27 +00001565 Diag(FD->getLocation(), diag::err_field_incomplete, FD->getName());
Steve Naroff74216642007-09-14 22:20:54 +00001566 FD->setInvalidDecl();
1567 EnclosingDecl->setInvalidDecl();
Fariborz Jahanian3f5faf72007-10-04 00:45:27 +00001568 continue;
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001569 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001570 if (i != NumFields-1 || // ... that the last member ...
1571 Record->getKind() != Decl::Struct || // ... of a structure ...
Chris Lattner02c642e2007-07-31 21:33:24 +00001572 !FDTy->isArrayType()) { //... may have incomplete array type.
Reid Spencer5f016e22007-07-11 17:01:13 +00001573 Diag(FD->getLocation(), diag::err_field_incomplete, FD->getName());
Steve Naroff74216642007-09-14 22:20:54 +00001574 FD->setInvalidDecl();
1575 EnclosingDecl->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00001576 continue;
1577 }
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001578 if (NumNamedMembers < 1) { //... must have more than named member ...
Reid Spencer5f016e22007-07-11 17:01:13 +00001579 Diag(FD->getLocation(), diag::err_flexible_array_empty_struct,
1580 FD->getName());
Steve Naroff74216642007-09-14 22:20:54 +00001581 FD->setInvalidDecl();
1582 EnclosingDecl->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00001583 continue;
1584 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001585 // Okay, we have a legal flexible array member at the end of the struct.
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001586 if (Record)
1587 Record->setHasFlexibleArrayMember(true);
Reid Spencer5f016e22007-07-11 17:01:13 +00001588 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001589 /// C99 6.7.2.1p2 - a struct ending in a flexible array member cannot be the
1590 /// field of another structure or the element of an array.
Chris Lattner02c642e2007-07-31 21:33:24 +00001591 if (const RecordType *FDTTy = FDTy->getAsRecordType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001592 if (FDTTy->getDecl()->hasFlexibleArrayMember()) {
1593 // If this is a member of a union, then entire union becomes "flexible".
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001594 if (Record && Record->getKind() == Decl::Union) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001595 Record->setHasFlexibleArrayMember(true);
1596 } else {
1597 // If this is a struct/class and this is not the last element, reject
1598 // it. Note that GCC supports variable sized arrays in the middle of
1599 // structures.
1600 if (i != NumFields-1) {
1601 Diag(FD->getLocation(), diag::err_variable_sized_type_in_struct,
1602 FD->getName());
Steve Naroff74216642007-09-14 22:20:54 +00001603 FD->setInvalidDecl();
1604 EnclosingDecl->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00001605 continue;
1606 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001607 // We support flexible arrays at the end of structs in other structs
1608 // as an extension.
1609 Diag(FD->getLocation(), diag::ext_flexible_array_in_struct,
1610 FD->getName());
Fariborz Jahanian3f5faf72007-10-04 00:45:27 +00001611 if (Record)
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001612 Record->setHasFlexibleArrayMember(true);
Reid Spencer5f016e22007-07-11 17:01:13 +00001613 }
1614 }
1615 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001616 // Keep track of the number of named members.
1617 if (IdentifierInfo *II = FD->getIdentifier()) {
1618 // Detect duplicate member names.
1619 if (!FieldIDs.insert(II)) {
1620 Diag(FD->getLocation(), diag::err_duplicate_member, II->getName());
1621 // Find the previous decl.
1622 SourceLocation PrevLoc;
1623 for (unsigned i = 0, e = RecFields.size(); ; ++i) {
1624 assert(i != e && "Didn't find previous def!");
1625 if (RecFields[i]->getIdentifier() == II) {
1626 PrevLoc = RecFields[i]->getLocation();
1627 break;
1628 }
1629 }
1630 Diag(PrevLoc, diag::err_previous_definition);
Steve Naroff74216642007-09-14 22:20:54 +00001631 FD->setInvalidDecl();
1632 EnclosingDecl->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00001633 continue;
1634 }
1635 ++NumNamedMembers;
1636 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001637 }
1638
Reid Spencer5f016e22007-07-11 17:01:13 +00001639 // Okay, we successfully defined 'Record'.
Fariborz Jahaniane267ab62007-09-14 16:27:55 +00001640 if (Record)
1641 Record->defineBody(&RecFields[0], RecFields.size());
Fariborz Jahanianb04a0212007-09-14 21:08:27 +00001642 else {
1643 ObjcIvarDecl **ClsFields =
1644 reinterpret_cast<ObjcIvarDecl**>(&RecFields[0]);
Fariborz Jahaniand0b90bf2007-09-26 18:27:25 +00001645 if (isa<ObjcInterfaceDecl>(static_cast<Decl*>(RecDecl)))
1646 cast<ObjcInterfaceDecl>(static_cast<Decl*>(RecDecl))->
1647 ObjcAddInstanceVariablesToClass(ClsFields, RecFields.size());
1648 else if (isa<ObjcImplementationDecl>(static_cast<Decl*>(RecDecl))) {
1649 ObjcImplementationDecl* IMPDecl =
Fariborz Jahanian3f5faf72007-10-04 00:45:27 +00001650 cast<ObjcImplementationDecl>(static_cast<Decl*>(RecDecl));
Fariborz Jahaniand0b90bf2007-09-26 18:27:25 +00001651 assert(IMPDecl && "ActOnFields - missing ObjcImplementationDecl");
1652 IMPDecl->ObjcAddInstanceVariablesToClassImpl(ClsFields, RecFields.size());
Steve Naroffa5997c42007-10-02 21:43:37 +00001653 CheckImplementationIvars(IMPDecl, ClsFields, RecFields.size());
Fariborz Jahaniand0b90bf2007-09-26 18:27:25 +00001654 }
Fariborz Jahanianb04a0212007-09-14 21:08:27 +00001655 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001656}
1657
Fariborz Jahanian85ff2642007-10-05 18:00:57 +00001658/// MatchTwoMethodDeclarations - Checks that two methods have matching type and
1659/// returns true, or false, accordingly.
1660/// TODO: Handle protocol list; such as id<p1,p2> in type comparisons
1661bool Sema:: MatchTwoMethodDeclarations(const ObjcMethodDecl *Method,
1662 const ObjcMethodDecl *PrevMethod) {
1663 if (Method->getMethodType().getCanonicalType() !=
1664 PrevMethod->getMethodType().getCanonicalType())
1665 return false;
1666 for (int i = 0; i < Method->getNumParams(); i++) {
1667 ParmVarDecl *ParamDecl = Method->getParamDecl(i);
1668 ParmVarDecl *PrevParamDecl = PrevMethod->getParamDecl(i);
1669 if (ParamDecl->getCanonicalType() != PrevParamDecl->getCanonicalType())
1670 return false;
1671 }
1672 return true;
1673}
1674
Chris Lattnerfd5de472007-10-06 22:53:46 +00001675void Sema::ActOnAddMethodsToObjcDecl(Scope* S, DeclTy *classDecl,
Steve Naroff3a165b02007-10-03 21:00:46 +00001676 DeclTy **allMethods, unsigned allNum) {
Chris Lattnerfd5de472007-10-06 22:53:46 +00001677 Decl *ClassDecl = static_cast<Decl *>(classDecl);
1678
Fariborz Jahaniane55cd002007-09-12 18:23:47 +00001679 // FIXME: Fix this when we can handle methods declared in protocols.
1680 // See Parser::ParseObjCAtProtocolDeclaration
1681 if (!ClassDecl)
1682 return;
Fariborz Jahaniane3a2ca72007-09-10 20:33:04 +00001683 llvm::SmallVector<ObjcMethodDecl*, 32> insMethods;
1684 llvm::SmallVector<ObjcMethodDecl*, 16> clsMethods;
Fariborz Jahanian85ff2642007-10-05 18:00:57 +00001685
Steve Naroffeefc4182007-10-08 21:05:34 +00001686 llvm::DenseMap<Selector, const ObjcMethodDecl*> InsMap;
1687 llvm::DenseMap<Selector, const ObjcMethodDecl*> ClsMap;
Fariborz Jahanian85ff2642007-10-05 18:00:57 +00001688
1689 bool isClassDeclaration =
Chris Lattnerfd5de472007-10-06 22:53:46 +00001690 (isa<ObjcInterfaceDecl>(ClassDecl) || isa<ObjcCategoryDecl>(ClassDecl));
Fariborz Jahanian85ff2642007-10-05 18:00:57 +00001691
Fariborz Jahaniane3a2ca72007-09-10 20:33:04 +00001692 for (unsigned i = 0; i < allNum; i++ ) {
Fariborz Jahanian25e077d2007-09-17 21:07:36 +00001693 ObjcMethodDecl *Method =
Fariborz Jahaniane3a2ca72007-09-10 20:33:04 +00001694 cast_or_null<ObjcMethodDecl>(static_cast<Decl*>(allMethods[i]));
1695 if (!Method) continue; // Already issued a diagnostic.
Fariborz Jahanian85ff2642007-10-05 18:00:57 +00001696 if (Method->isInstance()) {
1697 if (isClassDeclaration) {
1698 /// Check for instance method of the same name with incompatible types
Steve Naroffeefc4182007-10-08 21:05:34 +00001699 const ObjcMethodDecl *&PrevMethod = InsMap[Method->getSelector()];
Fariborz Jahanian85ff2642007-10-05 18:00:57 +00001700 if (PrevMethod && !MatchTwoMethodDeclarations(Method, PrevMethod)) {
Fariborz Jahanian85ff2642007-10-05 18:00:57 +00001701 Diag(Method->getLocation(), diag::error_duplicate_method_decl,
Chris Lattnerf836e3f2007-10-07 01:33:16 +00001702 Method->getSelector().getName());
Fariborz Jahanian85ff2642007-10-05 18:00:57 +00001703 Diag(PrevMethod->getLocation(), diag::err_previous_declaration);
1704 }
1705 else {
1706 insMethods.push_back(Method);
Steve Naroffeefc4182007-10-08 21:05:34 +00001707 InsMap[Method->getSelector()] = Method;
Fariborz Jahanian85ff2642007-10-05 18:00:57 +00001708 }
1709 }
1710 else
1711 insMethods.push_back(Method);
1712 }
1713 else {
1714 if (isClassDeclaration) {
1715 /// Check for class method of the same name with incompatible types
Steve Naroffeefc4182007-10-08 21:05:34 +00001716 const ObjcMethodDecl *&PrevMethod = ClsMap[Method->getSelector()];
Fariborz Jahanian85ff2642007-10-05 18:00:57 +00001717 if (PrevMethod && !MatchTwoMethodDeclarations(Method, PrevMethod)) {
Fariborz Jahanian85ff2642007-10-05 18:00:57 +00001718 Diag(Method->getLocation(), diag::error_duplicate_method_decl,
Chris Lattnerf836e3f2007-10-07 01:33:16 +00001719 Method->getSelector().getName());
Fariborz Jahanian85ff2642007-10-05 18:00:57 +00001720 Diag(PrevMethod->getLocation(), diag::err_previous_declaration);
1721 }
1722 else {
1723 clsMethods.push_back(Method);
Steve Naroffeefc4182007-10-08 21:05:34 +00001724 ClsMap[Method->getSelector()] = Method;
Fariborz Jahanian85ff2642007-10-05 18:00:57 +00001725 }
1726 }
1727 else
1728 clsMethods.push_back(Method);
1729 }
Fariborz Jahaniane3a2ca72007-09-10 20:33:04 +00001730 }
Chris Lattnerfd5de472007-10-06 22:53:46 +00001731
1732 if (ObjcInterfaceDecl *I = dyn_cast<ObjcInterfaceDecl>(ClassDecl)) {
1733 I->ObjcAddMethods(&insMethods[0], insMethods.size(),
1734 &clsMethods[0], clsMethods.size());
1735 } else if (ObjcProtocolDecl *P = dyn_cast<ObjcProtocolDecl>(ClassDecl)) {
1736 P->ObjcAddProtoMethods(&insMethods[0], insMethods.size(),
1737 &clsMethods[0], clsMethods.size());
Fariborz Jahanian25e077d2007-09-17 21:07:36 +00001738 }
Chris Lattnerfd5de472007-10-06 22:53:46 +00001739 else if (ObjcCategoryDecl *C = dyn_cast<ObjcCategoryDecl>(ClassDecl)) {
1740 C->ObjcAddCatMethods(&insMethods[0], insMethods.size(),
1741 &clsMethods[0], clsMethods.size());
Fariborz Jahanian25e077d2007-09-17 21:07:36 +00001742 }
Chris Lattnerfd5de472007-10-06 22:53:46 +00001743 else if (ObjcImplementationDecl *IC =
1744 dyn_cast<ObjcImplementationDecl>(ClassDecl)) {
1745 IC->ObjcAddImplMethods(&insMethods[0], insMethods.size(),
1746 &clsMethods[0], clsMethods.size());
1747 if (ObjcInterfaceDecl* IDecl = getObjCInterfaceDecl(IC->getIdentifier()))
1748 ImplMethodsVsClassMethods(IC, IDecl);
1749 } else {
1750 ObjcCategoryImplDecl* CatImplClass = cast<ObjcCategoryImplDecl>(ClassDecl);
1751 CatImplClass->ObjcAddCatImplMethods(&insMethods[0], insMethods.size(),
1752 &clsMethods[0], clsMethods.size());
1753 ObjcInterfaceDecl* IDecl = CatImplClass->getClassInterface();
1754 // Find category interface decl and then check that all methods declared
1755 // in this interface is implemented in the category @implementation.
1756 if (IDecl) {
1757 for (ObjcCategoryDecl *Categories = IDecl->getListCategories();
1758 Categories; Categories = Categories->getNextClassCategory()) {
Chris Lattner6a0e89e2007-10-06 23:12:31 +00001759 if (Categories->getIdentifier() == CatImplClass->getIdentifier()) {
Chris Lattnerfd5de472007-10-06 22:53:46 +00001760 ImplCategoryMethodsVsIntfMethods(CatImplClass, Categories);
1761 break;
Fariborz Jahanian8f3fde02007-10-02 16:38:50 +00001762 }
1763 }
1764 }
1765 }
Fariborz Jahaniane3a2ca72007-09-10 20:33:04 +00001766}
1767
Steve Naroff37e58d12007-10-02 22:39:18 +00001768Sema::DeclTy *Sema::ActOnMethodDeclaration(SourceLocation MethodLoc,
Steve Naroffbcfb06a2007-09-28 22:22:11 +00001769 tok::TokenKind MethodType, TypeTy *ReturnType, Selector Sel,
Steve Naroff68d331a2007-09-27 14:38:14 +00001770 // optional arguments. The number of types/arguments is obtained
1771 // from the Sel.getNumArgs().
1772 TypeTy **ArgTypes, IdentifierInfo **ArgNames,
1773 AttributeList *AttrList, tok::ObjCKeywordKind MethodDeclKind) {
Fariborz Jahaniane55cd002007-09-12 18:23:47 +00001774 llvm::SmallVector<ParmVarDecl*, 16> Params;
1775
Steve Naroffbcfb06a2007-09-28 22:22:11 +00001776 for (unsigned i = 0; i < Sel.getNumArgs(); i++) {
Fariborz Jahaniane55cd002007-09-12 18:23:47 +00001777 // FIXME: arg->AttrList must be stored too!
Steve Naroff3b950172007-10-10 21:53:07 +00001778 QualType argType;
1779
1780 if (ArgTypes[i])
1781 argType = QualType::getFromOpaquePtr(ArgTypes[i]);
1782 else
Steve Naroffe21b5732007-10-10 23:24:43 +00001783 argType = GetObjcIdType(MethodLoc);
Steve Naroff68d331a2007-09-27 14:38:14 +00001784 ParmVarDecl* Param = new ParmVarDecl(SourceLocation(/*FIXME*/), ArgNames[i],
Steve Naroff3b950172007-10-10 21:53:07 +00001785 argType, VarDecl::None, 0);
Fariborz Jahaniane55cd002007-09-12 18:23:47 +00001786 Params.push_back(Param);
1787 }
Steve Naroffb216c882007-10-09 22:01:59 +00001788 QualType resultDeclType;
1789
1790 if (ReturnType)
1791 resultDeclType = QualType::getFromOpaquePtr(ReturnType);
Steve Naroff3b950172007-10-10 21:53:07 +00001792 else // get the type for "id".
Steve Naroffe21b5732007-10-10 23:24:43 +00001793 resultDeclType = GetObjcIdType(MethodLoc);
Steve Naroff3b950172007-10-10 21:53:07 +00001794
Steve Naroff68d331a2007-09-27 14:38:14 +00001795 ObjcMethodDecl* ObjcMethod = new ObjcMethodDecl(MethodLoc, Sel,
1796 resultDeclType, 0, -1, AttrList,
Fariborz Jahanian3a63da72007-09-29 18:24:58 +00001797 MethodType == tok::minus,
Fariborz Jahanian3f5faf72007-10-04 00:45:27 +00001798 MethodDeclKind == tok::objc_optional ?
1799 ObjcMethodDecl::Optional :
1800 ObjcMethodDecl::Required);
Steve Naroffbcfb06a2007-09-28 22:22:11 +00001801 ObjcMethod->setMethodParams(&Params[0], Sel.getNumArgs());
Fariborz Jahanian25e077d2007-09-17 21:07:36 +00001802 return ObjcMethod;
Fariborz Jahaniane55cd002007-09-12 18:23:47 +00001803}
1804
Steve Naroff08d92e42007-09-15 18:49:24 +00001805Sema::DeclTy *Sema::ActOnEnumConstant(Scope *S, DeclTy *theEnumDecl,
Reid Spencer5f016e22007-07-11 17:01:13 +00001806 DeclTy *lastEnumConst,
1807 SourceLocation IdLoc, IdentifierInfo *Id,
1808 SourceLocation EqualLoc, ExprTy *val) {
1809 theEnumDecl = theEnumDecl; // silence unused warning.
1810 EnumConstantDecl *LastEnumConst =
1811 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(lastEnumConst));
1812 Expr *Val = static_cast<Expr*>(val);
1813
Chris Lattner31e05722007-08-26 06:24:45 +00001814 // The scope passed in may not be a decl scope. Zip up the scope tree until
1815 // we find one that is.
1816 while ((S->getFlags() & Scope::DeclScope) == 0)
1817 S = S->getParent();
1818
Reid Spencer5f016e22007-07-11 17:01:13 +00001819 // Verify that there isn't already something declared with this name in this
1820 // scope.
Steve Naroff8e74c932007-09-13 21:41:19 +00001821 if (ScopedDecl *PrevDecl = LookupScopedDecl(Id, Decl::IDNS_Ordinary,
1822 IdLoc, S)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001823 if (S->isDeclScope(PrevDecl)) {
1824 if (isa<EnumConstantDecl>(PrevDecl))
1825 Diag(IdLoc, diag::err_redefinition_of_enumerator, Id->getName());
1826 else
1827 Diag(IdLoc, diag::err_redefinition, Id->getName());
1828 Diag(PrevDecl->getLocation(), diag::err_previous_definition);
1829 // FIXME: Don't leak memory: delete Val;
1830 return 0;
1831 }
1832 }
1833
1834 llvm::APSInt EnumVal(32);
1835 QualType EltTy;
1836 if (Val) {
Chris Lattner421a23d2007-08-27 21:16:18 +00001837 // Make sure to promote the operand type to int.
1838 UsualUnaryConversions(Val);
1839
Reid Spencer5f016e22007-07-11 17:01:13 +00001840 // C99 6.7.2.2p2: Make sure we have an integer constant expression.
1841 SourceLocation ExpLoc;
Chris Lattner590b6642007-07-15 23:26:56 +00001842 if (!Val->isIntegerConstantExpr(EnumVal, Context, &ExpLoc)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001843 Diag(ExpLoc, diag::err_enum_value_not_integer_constant_expr,
1844 Id->getName());
1845 // FIXME: Don't leak memory: delete Val;
Chris Lattnerb7416f92007-08-27 17:37:24 +00001846 Val = 0; // Just forget about it.
Chris Lattnere9ca8512007-08-29 16:03:41 +00001847 } else {
1848 EltTy = Val->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001849 }
Chris Lattnerb7416f92007-08-27 17:37:24 +00001850 }
1851
1852 if (!Val) {
1853 if (LastEnumConst) {
1854 // Assign the last value + 1.
1855 EnumVal = LastEnumConst->getInitVal();
1856 ++EnumVal;
Chris Lattner421a23d2007-08-27 21:16:18 +00001857
1858 // Check for overflow on increment.
1859 if (EnumVal < LastEnumConst->getInitVal())
1860 Diag(IdLoc, diag::warn_enum_value_overflow);
1861
Chris Lattnerb7416f92007-08-27 17:37:24 +00001862 EltTy = LastEnumConst->getType();
1863 } else {
1864 // First value, set to zero.
1865 EltTy = Context.IntTy;
Chris Lattner701e5eb2007-09-04 02:45:27 +00001866 EnumVal.zextOrTrunc(
1867 static_cast<uint32_t>(Context.getTypeSize(EltTy, IdLoc)));
Chris Lattnerb7416f92007-08-27 17:37:24 +00001868 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001869 }
1870
Reid Spencer5f016e22007-07-11 17:01:13 +00001871 EnumConstantDecl *New = new EnumConstantDecl(IdLoc, Id, EltTy, Val, EnumVal,
1872 LastEnumConst);
1873
1874 // Register this decl in the current scope stack.
Steve Naroffc752d042007-09-13 18:10:37 +00001875 New->setNext(Id->getFETokenInfo<ScopedDecl>());
Reid Spencer5f016e22007-07-11 17:01:13 +00001876 Id->setFETokenInfo(New);
1877 S->AddDecl(New);
1878 return New;
1879}
1880
Steve Naroff08d92e42007-09-15 18:49:24 +00001881void Sema::ActOnEnumBody(SourceLocation EnumLoc, DeclTy *EnumDeclX,
Reid Spencer5f016e22007-07-11 17:01:13 +00001882 DeclTy **Elements, unsigned NumElements) {
1883 EnumDecl *Enum = cast<EnumDecl>(static_cast<Decl*>(EnumDeclX));
1884 assert(!Enum->isDefinition() && "Enum redefinitions can't reach here");
1885
Chris Lattnere37f0be2007-08-28 05:10:31 +00001886 // TODO: If the result value doesn't fit in an int, it must be a long or long
1887 // long value. ISO C does not support this, but GCC does as an extension,
1888 // emit a warning.
Chris Lattnerac609682007-08-28 06:15:15 +00001889 unsigned IntWidth = Context.Target.getIntWidth(Enum->getLocation());
Chris Lattnere37f0be2007-08-28 05:10:31 +00001890
1891
Chris Lattnerac609682007-08-28 06:15:15 +00001892 // Verify that all the values are okay, compute the size of the values, and
1893 // reverse the list.
1894 unsigned NumNegativeBits = 0;
1895 unsigned NumPositiveBits = 0;
1896
1897 // Keep track of whether all elements have type int.
1898 bool AllElementsInt = true;
1899
Reid Spencer5f016e22007-07-11 17:01:13 +00001900 EnumConstantDecl *EltList = 0;
1901 for (unsigned i = 0; i != NumElements; ++i) {
1902 EnumConstantDecl *ECD =
1903 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(Elements[i]));
1904 if (!ECD) continue; // Already issued a diagnostic.
Chris Lattner211a30e2007-08-28 05:27:00 +00001905
1906 // If the enum value doesn't fit in an int, emit an extension warning.
1907 assert(ECD->getInitVal().getBitWidth() >= IntWidth &&
1908 "Should have promoted value to int");
1909 const llvm::APSInt &InitVal = ECD->getInitVal();
1910 if (InitVal.getBitWidth() > IntWidth) {
1911 llvm::APSInt V(InitVal);
1912 V.trunc(IntWidth);
1913 V.extend(InitVal.getBitWidth());
1914 if (V != InitVal)
1915 Diag(ECD->getLocation(), diag::ext_enum_value_not_int,
1916 InitVal.toString());
1917 }
Chris Lattnerac609682007-08-28 06:15:15 +00001918
1919 // Keep track of the size of positive and negative values.
1920 if (InitVal.isUnsigned() || !InitVal.isNegative())
1921 NumPositiveBits = std::max(NumPositiveBits, InitVal.getActiveBits());
1922 else
1923 NumNegativeBits = std::max(NumNegativeBits, InitVal.getMinSignedBits());
Reid Spencer5f016e22007-07-11 17:01:13 +00001924
Chris Lattnerac609682007-08-28 06:15:15 +00001925 // Keep track of whether every enum element has type int (very commmon).
1926 if (AllElementsInt)
1927 AllElementsInt = ECD->getType() == Context.IntTy;
1928
Reid Spencer5f016e22007-07-11 17:01:13 +00001929 ECD->setNextDeclarator(EltList);
1930 EltList = ECD;
1931 }
1932
Chris Lattnerac609682007-08-28 06:15:15 +00001933 // Figure out the type that should be used for this enum.
1934 // FIXME: Support attribute(packed) on enums and -fshort-enums.
1935 QualType BestType;
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001936 unsigned BestWidth;
Chris Lattnerac609682007-08-28 06:15:15 +00001937
1938 if (NumNegativeBits) {
1939 // If there is a negative value, figure out the smallest integer type (of
1940 // int/long/longlong) that fits.
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001941 if (NumNegativeBits <= IntWidth && NumPositiveBits < IntWidth) {
Chris Lattnerac609682007-08-28 06:15:15 +00001942 BestType = Context.IntTy;
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001943 BestWidth = IntWidth;
1944 } else {
1945 BestWidth = Context.Target.getLongWidth(Enum->getLocation());
1946 if (NumNegativeBits <= BestWidth && NumPositiveBits < BestWidth)
Chris Lattnerac609682007-08-28 06:15:15 +00001947 BestType = Context.LongTy;
1948 else {
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001949 BestWidth = Context.Target.getLongLongWidth(Enum->getLocation());
1950 if (NumNegativeBits > BestWidth || NumPositiveBits >= BestWidth)
Chris Lattnerac609682007-08-28 06:15:15 +00001951 Diag(Enum->getLocation(), diag::warn_enum_too_large);
1952 BestType = Context.LongLongTy;
1953 }
1954 }
1955 } else {
1956 // If there is no negative value, figure out which of uint, ulong, ulonglong
1957 // fits.
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001958 if (NumPositiveBits <= IntWidth) {
Chris Lattnerac609682007-08-28 06:15:15 +00001959 BestType = Context.UnsignedIntTy;
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001960 BestWidth = IntWidth;
1961 } else if (NumPositiveBits <=
1962 (BestWidth = Context.Target.getLongWidth(Enum->getLocation())))
Chris Lattnerac609682007-08-28 06:15:15 +00001963 BestType = Context.UnsignedLongTy;
1964 else {
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001965 BestWidth = Context.Target.getLongLongWidth(Enum->getLocation());
1966 assert(NumPositiveBits <= BestWidth &&
Chris Lattnerac609682007-08-28 06:15:15 +00001967 "How could an initializer get larger than ULL?");
1968 BestType = Context.UnsignedLongLongTy;
1969 }
1970 }
1971
Chris Lattnerb7f6e082007-08-29 17:31:48 +00001972 // Loop over all of the enumerator constants, changing their types to match
1973 // the type of the enum if needed.
1974 for (unsigned i = 0; i != NumElements; ++i) {
1975 EnumConstantDecl *ECD =
1976 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(Elements[i]));
1977 if (!ECD) continue; // Already issued a diagnostic.
1978
1979 // Standard C says the enumerators have int type, but we allow, as an
1980 // extension, the enumerators to be larger than int size. If each
1981 // enumerator value fits in an int, type it as an int, otherwise type it the
1982 // same as the enumerator decl itself. This means that in "enum { X = 1U }"
1983 // that X has type 'int', not 'unsigned'.
1984 if (ECD->getType() == Context.IntTy)
1985 continue; // Already int type.
1986
1987 // Determine whether the value fits into an int.
1988 llvm::APSInt InitVal = ECD->getInitVal();
1989 bool FitsInInt;
1990 if (InitVal.isUnsigned() || !InitVal.isNegative())
1991 FitsInInt = InitVal.getActiveBits() < IntWidth;
1992 else
1993 FitsInInt = InitVal.getMinSignedBits() <= IntWidth;
1994
1995 // If it fits into an integer type, force it. Otherwise force it to match
1996 // the enum decl type.
1997 QualType NewTy;
1998 unsigned NewWidth;
1999 bool NewSign;
2000 if (FitsInInt) {
2001 NewTy = Context.IntTy;
2002 NewWidth = IntWidth;
2003 NewSign = true;
2004 } else if (ECD->getType() == BestType) {
2005 // Already the right type!
2006 continue;
2007 } else {
2008 NewTy = BestType;
2009 NewWidth = BestWidth;
2010 NewSign = BestType->isSignedIntegerType();
2011 }
2012
2013 // Adjust the APSInt value.
2014 InitVal.extOrTrunc(NewWidth);
2015 InitVal.setIsSigned(NewSign);
2016 ECD->setInitVal(InitVal);
2017
2018 // Adjust the Expr initializer and type.
2019 ECD->setInitExpr(new ImplicitCastExpr(NewTy, ECD->getInitExpr()));
2020 ECD->setType(NewTy);
2021 }
Chris Lattnerac609682007-08-28 06:15:15 +00002022
Chris Lattnere00b18c2007-08-28 18:24:31 +00002023 Enum->defineElements(EltList, BestType);
Reid Spencer5f016e22007-07-11 17:01:13 +00002024}
2025
2026void Sema::AddTopLevelDecl(Decl *current, Decl *last) {
2027 if (!current) return;
2028
2029 // If this is a top-level decl that is chained to some other (e.g. int A,B,C;)
2030 // remember this in the LastInGroupList list.
2031 if (last)
2032 LastInGroupList.push_back((Decl*)last);
2033}
2034
2035void Sema::HandleDeclAttribute(Decl *New, AttributeList *rawAttr) {
2036 if (strcmp(rawAttr->getAttributeName()->getName(), "vector_size") == 0) {
2037 if (ValueDecl *vDecl = dyn_cast<ValueDecl>(New)) {
2038 QualType newType = HandleVectorTypeAttribute(vDecl->getType(), rawAttr);
2039 if (!newType.isNull()) // install the new vector type into the decl
2040 vDecl->setType(newType);
2041 }
2042 if (TypedefDecl *tDecl = dyn_cast<TypedefDecl>(New)) {
2043 QualType newType = HandleVectorTypeAttribute(tDecl->getUnderlyingType(),
2044 rawAttr);
2045 if (!newType.isNull()) // install the new vector type into the decl
2046 tDecl->setUnderlyingType(newType);
2047 }
2048 }
Steve Naroff73322922007-07-18 18:00:27 +00002049 if (strcmp(rawAttr->getAttributeName()->getName(), "ocu_vector_type") == 0) {
Steve Naroffbea0b342007-07-29 16:33:31 +00002050 if (TypedefDecl *tDecl = dyn_cast<TypedefDecl>(New))
2051 HandleOCUVectorTypeAttribute(tDecl, rawAttr);
2052 else
Steve Naroff73322922007-07-18 18:00:27 +00002053 Diag(rawAttr->getAttributeLoc(),
2054 diag::err_typecheck_ocu_vector_not_typedef);
Steve Naroff73322922007-07-18 18:00:27 +00002055 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002056 // FIXME: add other attributes...
2057}
2058
2059void Sema::HandleDeclAttributes(Decl *New, AttributeList *declspec_prefix,
2060 AttributeList *declarator_postfix) {
2061 while (declspec_prefix) {
2062 HandleDeclAttribute(New, declspec_prefix);
2063 declspec_prefix = declspec_prefix->getNext();
2064 }
2065 while (declarator_postfix) {
2066 HandleDeclAttribute(New, declarator_postfix);
2067 declarator_postfix = declarator_postfix->getNext();
2068 }
2069}
2070
Steve Naroffbea0b342007-07-29 16:33:31 +00002071void Sema::HandleOCUVectorTypeAttribute(TypedefDecl *tDecl,
2072 AttributeList *rawAttr) {
2073 QualType curType = tDecl->getUnderlyingType();
Steve Naroff73322922007-07-18 18:00:27 +00002074 // check the attribute arugments.
2075 if (rawAttr->getNumArgs() != 1) {
2076 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_wrong_number_arguments,
2077 std::string("1"));
Steve Naroffbea0b342007-07-29 16:33:31 +00002078 return;
Steve Naroff73322922007-07-18 18:00:27 +00002079 }
2080 Expr *sizeExpr = static_cast<Expr *>(rawAttr->getArg(0));
2081 llvm::APSInt vecSize(32);
2082 if (!sizeExpr->isIntegerConstantExpr(vecSize, Context)) {
2083 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_vector_size_not_int,
2084 sizeExpr->getSourceRange());
Steve Naroffbea0b342007-07-29 16:33:31 +00002085 return;
Steve Naroff73322922007-07-18 18:00:27 +00002086 }
2087 // unlike gcc's vector_size attribute, we do not allow vectors to be defined
2088 // in conjunction with complex types (pointers, arrays, functions, etc.).
2089 Type *canonType = curType.getCanonicalType().getTypePtr();
2090 if (!(canonType->isIntegerType() || canonType->isRealFloatingType())) {
2091 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_invalid_vector_type,
2092 curType.getCanonicalType().getAsString());
Steve Naroffbea0b342007-07-29 16:33:31 +00002093 return;
Steve Naroff73322922007-07-18 18:00:27 +00002094 }
2095 // unlike gcc's vector_size attribute, the size is specified as the
2096 // number of elements, not the number of bytes.
Chris Lattner701e5eb2007-09-04 02:45:27 +00002097 unsigned vectorSize = static_cast<unsigned>(vecSize.getZExtValue());
Steve Naroff73322922007-07-18 18:00:27 +00002098
2099 if (vectorSize == 0) {
2100 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_zero_size,
2101 sizeExpr->getSourceRange());
Steve Naroffbea0b342007-07-29 16:33:31 +00002102 return;
Steve Naroff73322922007-07-18 18:00:27 +00002103 }
Steve Naroffbea0b342007-07-29 16:33:31 +00002104 // Instantiate/Install the vector type, the number of elements is > 0.
2105 tDecl->setUnderlyingType(Context.getOCUVectorType(curType, vectorSize));
2106 // Remember this typedef decl, we will need it later for diagnostics.
2107 OCUVectorDecls.push_back(tDecl);
Steve Naroff73322922007-07-18 18:00:27 +00002108}
2109
Reid Spencer5f016e22007-07-11 17:01:13 +00002110QualType Sema::HandleVectorTypeAttribute(QualType curType,
Chris Lattnera7674d82007-07-13 22:13:22 +00002111 AttributeList *rawAttr) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002112 // check the attribute arugments.
2113 if (rawAttr->getNumArgs() != 1) {
2114 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_wrong_number_arguments,
2115 std::string("1"));
2116 return QualType();
2117 }
2118 Expr *sizeExpr = static_cast<Expr *>(rawAttr->getArg(0));
2119 llvm::APSInt vecSize(32);
Chris Lattner590b6642007-07-15 23:26:56 +00002120 if (!sizeExpr->isIntegerConstantExpr(vecSize, Context)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002121 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_vector_size_not_int,
2122 sizeExpr->getSourceRange());
2123 return QualType();
2124 }
2125 // navigate to the base type - we need to provide for vector pointers,
2126 // vector arrays, and functions returning vectors.
2127 Type *canonType = curType.getCanonicalType().getTypePtr();
2128
Steve Naroff73322922007-07-18 18:00:27 +00002129 if (canonType->isPointerType() || canonType->isArrayType() ||
2130 canonType->isFunctionType()) {
2131 assert(1 && "HandleVector(): Complex type construction unimplemented");
2132 /* FIXME: rebuild the type from the inside out, vectorizing the inner type.
2133 do {
2134 if (PointerType *PT = dyn_cast<PointerType>(canonType))
2135 canonType = PT->getPointeeType().getTypePtr();
2136 else if (ArrayType *AT = dyn_cast<ArrayType>(canonType))
2137 canonType = AT->getElementType().getTypePtr();
2138 else if (FunctionType *FT = dyn_cast<FunctionType>(canonType))
2139 canonType = FT->getResultType().getTypePtr();
2140 } while (canonType->isPointerType() || canonType->isArrayType() ||
2141 canonType->isFunctionType());
2142 */
Reid Spencer5f016e22007-07-11 17:01:13 +00002143 }
2144 // the base type must be integer or float.
2145 if (!(canonType->isIntegerType() || canonType->isRealFloatingType())) {
2146 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_invalid_vector_type,
2147 curType.getCanonicalType().getAsString());
2148 return QualType();
2149 }
Chris Lattner701e5eb2007-09-04 02:45:27 +00002150 unsigned typeSize = static_cast<unsigned>(
2151 Context.getTypeSize(curType, rawAttr->getAttributeLoc()));
Reid Spencer5f016e22007-07-11 17:01:13 +00002152 // vecSize is specified in bytes - convert to bits.
Chris Lattner701e5eb2007-09-04 02:45:27 +00002153 unsigned vectorSize = static_cast<unsigned>(vecSize.getZExtValue() * 8);
Reid Spencer5f016e22007-07-11 17:01:13 +00002154
2155 // the vector size needs to be an integral multiple of the type size.
2156 if (vectorSize % typeSize) {
2157 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_invalid_size,
2158 sizeExpr->getSourceRange());
2159 return QualType();
2160 }
2161 if (vectorSize == 0) {
2162 Diag(rawAttr->getAttributeLoc(), diag::err_attribute_zero_size,
2163 sizeExpr->getSourceRange());
2164 return QualType();
2165 }
2166 // Since OpenCU requires 3 element vectors (OpenCU 5.1.2), we don't restrict
2167 // the number of elements to be a power of two (unlike GCC).
2168 // Instantiate the vector type, the number of elements is > 0.
Steve Naroff73322922007-07-18 18:00:27 +00002169 return Context.getVectorType(curType, vectorSize/typeSize);
Reid Spencer5f016e22007-07-11 17:01:13 +00002170}
2171