blob: 613dc58a57631513094e24280ba408a93763275a [file] [log] [blame]
Chris Lattner10318b82008-03-16 00:19:01 +00001//===--- DeclObjC.cpp - ObjC Declaration AST Node Implementation ----------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the Objective-C related Decl classes.
11//
12//===----------------------------------------------------------------------===//
13
14#include "clang/AST/DeclObjC.h"
15#include "clang/AST/ASTContext.h"
Daniel Dunbarde300732008-08-11 04:54:23 +000016#include "clang/AST/Stmt.h"
Steve Naroffd85ba922009-02-22 19:35:57 +000017#include "llvm/ADT/STLExtras.h"
Chris Lattner10318b82008-03-16 00:19:01 +000018using namespace clang;
19
Chris Lattner114add62008-03-16 00:49:28 +000020//===----------------------------------------------------------------------===//
Chris Lattner217eb8c2009-02-20 21:16:26 +000021// ObjCListBase
22//===----------------------------------------------------------------------===//
23
Chris Lattnerdf6133b2009-02-20 21:35:13 +000024void ObjCListBase::Destroy(ASTContext &Ctx) {
Chris Lattnercf6c8282009-02-20 21:44:01 +000025 Ctx.Deallocate(List);
Chris Lattner217eb8c2009-02-20 21:16:26 +000026 NumElts = 0;
27 List = 0;
28}
29
Chris Lattnerdf6133b2009-02-20 21:35:13 +000030void ObjCListBase::set(void *const* InList, unsigned Elts, ASTContext &Ctx) {
Chris Lattner217eb8c2009-02-20 21:16:26 +000031 assert(List == 0 && "Elements already set!");
32 if (Elts == 0) return; // Setting to an empty list is a noop.
33
Chris Lattnercf6c8282009-02-20 21:44:01 +000034
35 List = new (Ctx) void*[Elts];
Chris Lattner217eb8c2009-02-20 21:16:26 +000036 NumElts = Elts;
37 memcpy(List, InList, sizeof(void*)*Elts);
38}
39
40
41//===----------------------------------------------------------------------===//
Chris Lattner13f63602009-02-20 20:59:54 +000042// ObjCInterfaceDecl
Chris Lattner114add62008-03-16 00:49:28 +000043//===----------------------------------------------------------------------===//
44
Fariborz Jahanian074cf972009-06-05 18:16:35 +000045/// getIvarDecl - This method looks up an ivar in this ContextDecl.
46///
47ObjCIvarDecl *
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +000048ObjCContainerDecl::getIvarDecl(IdentifierInfo *Id) const {
Fariborz Jahanian074cf972009-06-05 18:16:35 +000049 lookup_const_iterator Ivar, IvarEnd;
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +000050 for (llvm::tie(Ivar, IvarEnd) = lookup(Id); Ivar != IvarEnd; ++Ivar) {
Fariborz Jahanian074cf972009-06-05 18:16:35 +000051 if (ObjCIvarDecl *ivar = dyn_cast<ObjCIvarDecl>(*Ivar))
52 return ivar;
53 }
54 return 0;
55}
56
Steve Naroffab63fd62009-01-08 17:28:14 +000057// Get the local instance method declared in this interface.
Douglas Gregorc55b0b02009-04-09 21:40:53 +000058ObjCMethodDecl *
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +000059ObjCContainerDecl::getInstanceMethod(Selector Sel) const {
Steve Naroffd85ba922009-02-22 19:35:57 +000060 // Since instance & class methods can have the same name, the loop below
61 // ensures we get the correct method.
62 //
63 // @interface Whatever
64 // - (int) class_method;
65 // + (float) class_method;
66 // @end
67 //
68 lookup_const_iterator Meth, MethEnd;
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +000069 for (llvm::tie(Meth, MethEnd) = lookup(Sel); Meth != MethEnd; ++Meth) {
Steve Naroffd85ba922009-02-22 19:35:57 +000070 ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(*Meth);
71 if (MD && MD->isInstanceMethod())
72 return MD;
73 }
Steve Naroffab63fd62009-01-08 17:28:14 +000074 return 0;
75}
76
77// Get the local class method declared in this interface.
Douglas Gregorc55b0b02009-04-09 21:40:53 +000078ObjCMethodDecl *
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +000079ObjCContainerDecl::getClassMethod(Selector Sel) const {
Steve Naroffd85ba922009-02-22 19:35:57 +000080 // Since instance & class methods can have the same name, the loop below
81 // ensures we get the correct method.
82 //
83 // @interface Whatever
84 // - (int) class_method;
85 // + (float) class_method;
86 // @end
87 //
88 lookup_const_iterator Meth, MethEnd;
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +000089 for (llvm::tie(Meth, MethEnd) = lookup(Sel); Meth != MethEnd; ++Meth) {
Steve Naroffd85ba922009-02-22 19:35:57 +000090 ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(*Meth);
91 if (MD && MD->isClassMethod())
92 return MD;
93 }
Steve Naroffab63fd62009-01-08 17:28:14 +000094 return 0;
95}
96
Fariborz Jahanianef8a3df2008-04-21 19:04:53 +000097/// FindPropertyDeclaration - Finds declaration of the property given its name
98/// in 'PropertyId' and returns it. It returns 0, if not found.
Steve Naroffdcf1e842009-01-11 12:47:58 +000099/// FIXME: Convert to DeclContext lookup...
Fariborz Jahanianef8a3df2008-04-21 19:04:53 +0000100///
101ObjCPropertyDecl *
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +0000102ObjCContainerDecl::FindPropertyDeclaration(IdentifierInfo *PropertyId) const {
103 for (prop_iterator I = prop_begin(), E = prop_end(); I != E; ++I)
Chris Lattner13f63602009-02-20 20:59:54 +0000104 if ((*I)->getIdentifier() == PropertyId)
105 return *I;
106
Fariborz Jahanianfaca5e22009-01-09 21:04:52 +0000107 const ObjCProtocolDecl *PID = dyn_cast<ObjCProtocolDecl>(this);
108 if (PID) {
Chris Lattner13f63602009-02-20 20:59:54 +0000109 for (ObjCProtocolDecl::protocol_iterator I = PID->protocol_begin(),
110 E = PID->protocol_end(); I != E; ++I)
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +0000111 if (ObjCPropertyDecl *P = (*I)->FindPropertyDeclaration(PropertyId))
Chris Lattner13f63602009-02-20 20:59:54 +0000112 return P;
Fariborz Jahanianfaca5e22009-01-09 21:04:52 +0000113 }
114
Fariborz Jahanian6b0ed6f2009-01-19 18:16:19 +0000115 if (const ObjCInterfaceDecl *OID = dyn_cast<ObjCInterfaceDecl>(this)) {
Steve Naroff451f83c2009-01-09 15:36:25 +0000116 // Look through categories.
117 for (ObjCCategoryDecl *Category = OID->getCategoryList();
118 Category; Category = Category->getNextClassCategory()) {
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +0000119 if (ObjCPropertyDecl *P = Category->FindPropertyDeclaration(PropertyId))
Chris Lattner13f63602009-02-20 20:59:54 +0000120 return P;
Steve Naroff451f83c2009-01-09 15:36:25 +0000121 }
122 // Look through protocols.
123 for (ObjCInterfaceDecl::protocol_iterator I = OID->protocol_begin(),
124 E = OID->protocol_end(); I != E; ++I) {
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +0000125 if (ObjCPropertyDecl *P = (*I)->FindPropertyDeclaration(PropertyId))
Chris Lattner13f63602009-02-20 20:59:54 +0000126 return P;
Steve Naroff451f83c2009-01-09 15:36:25 +0000127 }
128 if (OID->getSuperClass())
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +0000129 return OID->getSuperClass()->FindPropertyDeclaration(PropertyId);
Chris Lattner13f63602009-02-20 20:59:54 +0000130 } else if (const ObjCCategoryDecl *OCD = dyn_cast<ObjCCategoryDecl>(this)) {
Fariborz Jahanian6b0ed6f2009-01-19 18:16:19 +0000131 // Look through protocols.
132 for (ObjCInterfaceDecl::protocol_iterator I = OCD->protocol_begin(),
133 E = OCD->protocol_end(); I != E; ++I) {
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +0000134 if (ObjCPropertyDecl *P = (*I)->FindPropertyDeclaration(PropertyId))
Chris Lattner13f63602009-02-20 20:59:54 +0000135 return P;
Fariborz Jahanian6b0ed6f2009-01-19 18:16:19 +0000136 }
137 }
Steve Naroffd1f0eb42008-06-05 13:55:23 +0000138 return 0;
139}
140
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +0000141ObjCIvarDecl *ObjCInterfaceDecl::lookupInstanceVariable(IdentifierInfo *ID,
142 ObjCInterfaceDecl *&clsDeclared) {
Chris Lattner10318b82008-03-16 00:19:01 +0000143 ObjCInterfaceDecl* ClassDecl = this;
144 while (ClassDecl != NULL) {
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +0000145 if (ObjCIvarDecl *I = ClassDecl->getIvarDecl(ID)) {
Fariborz Jahanian074cf972009-06-05 18:16:35 +0000146 clsDeclared = ClassDecl;
147 return I;
Chris Lattner10318b82008-03-16 00:19:01 +0000148 }
149 ClassDecl = ClassDecl->getSuperClass();
150 }
151 return NULL;
152}
153
Fariborz Jahanianc0672e42009-05-22 17:12:32 +0000154/// lookupInheritedClass - This method returns ObjCInterfaceDecl * of the super
155/// class whose name is passed as argument. If it is not one of the super classes
156/// the it returns NULL.
157ObjCInterfaceDecl *ObjCInterfaceDecl::lookupInheritedClass(
158 const IdentifierInfo*ICName) {
159 ObjCInterfaceDecl* ClassDecl = this;
160 while (ClassDecl != NULL) {
161 if (ClassDecl->getIdentifier() == ICName)
162 return ClassDecl;
163 ClassDecl = ClassDecl->getSuperClass();
164 }
165 return NULL;
166}
167
Chris Lattner10318b82008-03-16 00:19:01 +0000168/// lookupInstanceMethod - This method returns an instance method by looking in
169/// the class, its categories, and its super classes (using a linear search).
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +0000170ObjCMethodDecl *ObjCInterfaceDecl::lookupInstanceMethod(Selector Sel) {
Chris Lattner10318b82008-03-16 00:19:01 +0000171 ObjCInterfaceDecl* ClassDecl = this;
172 ObjCMethodDecl *MethodDecl = 0;
173
174 while (ClassDecl != NULL) {
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +0000175 if ((MethodDecl = ClassDecl->getInstanceMethod(Sel)))
Chris Lattner10318b82008-03-16 00:19:01 +0000176 return MethodDecl;
177
178 // Didn't find one yet - look through protocols.
Chris Lattner8bcb5252008-07-21 18:19:38 +0000179 const ObjCList<ObjCProtocolDecl> &Protocols =
180 ClassDecl->getReferencedProtocols();
181 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
182 E = Protocols.end(); I != E; ++I)
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +0000183 if ((MethodDecl = (*I)->lookupInstanceMethod(Sel)))
Chris Lattner10318b82008-03-16 00:19:01 +0000184 return MethodDecl;
Chris Lattner8bcb5252008-07-21 18:19:38 +0000185
Chris Lattner10318b82008-03-16 00:19:01 +0000186 // Didn't find one yet - now look through categories.
187 ObjCCategoryDecl *CatDecl = ClassDecl->getCategoryList();
188 while (CatDecl) {
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +0000189 if ((MethodDecl = CatDecl->getInstanceMethod(Sel)))
Chris Lattner10318b82008-03-16 00:19:01 +0000190 return MethodDecl;
Steve Naroffaf151802008-12-08 20:57:28 +0000191
192 // Didn't find one yet - look through protocols.
193 const ObjCList<ObjCProtocolDecl> &Protocols =
194 CatDecl->getReferencedProtocols();
195 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
196 E = Protocols.end(); I != E; ++I)
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +0000197 if ((MethodDecl = (*I)->lookupInstanceMethod(Sel)))
Steve Naroffaf151802008-12-08 20:57:28 +0000198 return MethodDecl;
Chris Lattner10318b82008-03-16 00:19:01 +0000199 CatDecl = CatDecl->getNextClassCategory();
200 }
201 ClassDecl = ClassDecl->getSuperClass();
202 }
203 return NULL;
204}
205
206// lookupClassMethod - This method returns a class method by looking in the
207// class, its categories, and its super classes (using a linear search).
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +0000208ObjCMethodDecl *ObjCInterfaceDecl::lookupClassMethod(Selector Sel) {
Chris Lattner10318b82008-03-16 00:19:01 +0000209 ObjCInterfaceDecl* ClassDecl = this;
210 ObjCMethodDecl *MethodDecl = 0;
211
212 while (ClassDecl != NULL) {
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +0000213 if ((MethodDecl = ClassDecl->getClassMethod(Sel)))
Chris Lattner10318b82008-03-16 00:19:01 +0000214 return MethodDecl;
215
216 // Didn't find one yet - look through protocols.
Chris Lattner0be08822008-07-21 21:32:27 +0000217 for (ObjCInterfaceDecl::protocol_iterator I = ClassDecl->protocol_begin(),
218 E = ClassDecl->protocol_end(); I != E; ++I)
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +0000219 if ((MethodDecl = (*I)->lookupClassMethod(Sel)))
Chris Lattner10318b82008-03-16 00:19:01 +0000220 return MethodDecl;
Chris Lattner0be08822008-07-21 21:32:27 +0000221
Chris Lattner10318b82008-03-16 00:19:01 +0000222 // Didn't find one yet - now look through categories.
223 ObjCCategoryDecl *CatDecl = ClassDecl->getCategoryList();
224 while (CatDecl) {
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +0000225 if ((MethodDecl = CatDecl->getClassMethod(Sel)))
Chris Lattner10318b82008-03-16 00:19:01 +0000226 return MethodDecl;
Steve Naroff0ba24842009-02-26 11:32:02 +0000227
228 // Didn't find one yet - look through protocols.
229 const ObjCList<ObjCProtocolDecl> &Protocols =
230 CatDecl->getReferencedProtocols();
231 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
232 E = Protocols.end(); I != E; ++I)
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +0000233 if ((MethodDecl = (*I)->lookupClassMethod(Sel)))
Steve Naroff0ba24842009-02-26 11:32:02 +0000234 return MethodDecl;
Chris Lattner10318b82008-03-16 00:19:01 +0000235 CatDecl = CatDecl->getNextClassCategory();
236 }
237 ClassDecl = ClassDecl->getSuperClass();
238 }
239 return NULL;
240}
241
Chris Lattner13f63602009-02-20 20:59:54 +0000242
243
244//===----------------------------------------------------------------------===//
245// ObjCMethodDecl
246//===----------------------------------------------------------------------===//
247
248ObjCMethodDecl *ObjCMethodDecl::Create(ASTContext &C,
249 SourceLocation beginLoc,
250 SourceLocation endLoc,
251 Selector SelInfo, QualType T,
252 DeclContext *contextDecl,
253 bool isInstance,
254 bool isVariadic,
255 bool isSynthesized,
256 ImplementationControl impControl) {
257 return new (C) ObjCMethodDecl(beginLoc, endLoc,
258 SelInfo, T, contextDecl,
259 isInstance,
260 isVariadic, isSynthesized, impControl);
Chris Lattner10318b82008-03-16 00:19:01 +0000261}
262
Chris Lattnerdf6133b2009-02-20 21:35:13 +0000263void ObjCMethodDecl::Destroy(ASTContext &C) {
Chris Lattner13f63602009-02-20 20:59:54 +0000264 if (Body) Body->Destroy(C);
265 if (SelfDecl) SelfDecl->Destroy(C);
266
267 for (param_iterator I=param_begin(), E=param_end(); I!=E; ++I)
268 if (*I) (*I)->Destroy(C);
269
Chris Lattnerdf6133b2009-02-20 21:35:13 +0000270 ParamInfo.Destroy(C);
Chris Lattner13f63602009-02-20 20:59:54 +0000271
272 Decl::Destroy(C);
Chris Lattner10318b82008-03-16 00:19:01 +0000273}
274
Chris Lattner13f63602009-02-20 20:59:54 +0000275void ObjCMethodDecl::createImplicitParams(ASTContext &Context,
276 const ObjCInterfaceDecl *OID) {
277 QualType selfTy;
278 if (isInstanceMethod()) {
279 // There may be no interface context due to error in declaration
280 // of the interface (which has been reported). Recover gracefully.
281 if (OID) {
Daniel Dunbarbe1ff272009-04-22 04:34:53 +0000282 selfTy = Context.getObjCInterfaceType(OID);
Steve Naroff329ec222009-07-10 23:34:53 +0000283 selfTy = Context.getObjCObjectPointerType(selfTy);
Chris Lattner13f63602009-02-20 20:59:54 +0000284 } else {
285 selfTy = Context.getObjCIdType();
286 }
287 } else // we have a factory method.
288 selfTy = Context.getObjCClassType();
289
Steve Naroff79ea0e02009-04-20 15:06:07 +0000290 setSelfDecl(ImplicitParamDecl::Create(Context, this, SourceLocation(),
291 &Context.Idents.get("self"), selfTy));
Chris Lattner13f63602009-02-20 20:59:54 +0000292
Steve Naroff79ea0e02009-04-20 15:06:07 +0000293 setCmdDecl(ImplicitParamDecl::Create(Context, this, SourceLocation(),
294 &Context.Idents.get("_cmd"),
295 Context.getObjCSelType()));
Chris Lattner13f63602009-02-20 20:59:54 +0000296}
297
298
299
300/// getSynthesizedMethodSize - Compute size of synthesized method name
301/// as done be the rewrite.
Fariborz Jahanian68342282008-12-05 22:32:48 +0000302///
Chris Lattner13f63602009-02-20 20:59:54 +0000303unsigned ObjCMethodDecl::getSynthesizedMethodSize() const {
304 // syntesized method name is a concatenation of -/+[class-name selector]
305 // Get length of this name.
306 unsigned length = 3; // _I_ or _C_
307 length += getClassInterface()->getNameAsString().size()+1; // extra for _
308 if (const ObjCCategoryImplDecl *CID =
309 dyn_cast<ObjCCategoryImplDecl>(getDeclContext()))
310 length += CID->getNameAsString().size()+1;
311 length += getSelector().getAsString().size(); // selector name
312 return length;
313}
314
315ObjCInterfaceDecl *ObjCMethodDecl::getClassInterface() {
316 if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(getDeclContext()))
317 return ID;
318 if (ObjCCategoryDecl *CD = dyn_cast<ObjCCategoryDecl>(getDeclContext()))
319 return CD->getClassInterface();
320 if (ObjCImplementationDecl *IMD =
321 dyn_cast<ObjCImplementationDecl>(getDeclContext()))
322 return IMD->getClassInterface();
323 if (ObjCCategoryImplDecl *CID =
324 dyn_cast<ObjCCategoryImplDecl>(getDeclContext()))
325 return CID->getClassInterface();
326 assert(false && "unknown method context");
Fariborz Jahanian68342282008-12-05 22:32:48 +0000327 return 0;
328}
329
Chris Lattner13f63602009-02-20 20:59:54 +0000330//===----------------------------------------------------------------------===//
331// ObjCInterfaceDecl
332//===----------------------------------------------------------------------===//
333
334ObjCInterfaceDecl *ObjCInterfaceDecl::Create(ASTContext &C,
335 DeclContext *DC,
336 SourceLocation atLoc,
337 IdentifierInfo *Id,
338 SourceLocation ClassLoc,
339 bool ForwardDecl, bool isInternal){
340 return new (C) ObjCInterfaceDecl(DC, atLoc, Id, ClassLoc, ForwardDecl,
341 isInternal);
342}
343
344ObjCInterfaceDecl::
345ObjCInterfaceDecl(DeclContext *DC, SourceLocation atLoc, IdentifierInfo *Id,
346 SourceLocation CLoc, bool FD, bool isInternal)
347 : ObjCContainerDecl(ObjCInterface, DC, atLoc, Id),
348 TypeForDecl(0), SuperClass(0),
349 CategoryList(0), ForwardDecl(FD), InternalInterface(isInternal),
350 ClassLoc(CLoc) {
351}
352
353void ObjCInterfaceDecl::Destroy(ASTContext &C) {
Chris Lattnereff36ed2009-03-31 08:36:08 +0000354 for (ivar_iterator I = ivar_begin(), E = ivar_end(); I != E; ++I)
Chris Lattner13f63602009-02-20 20:59:54 +0000355 if (*I) (*I)->Destroy(C);
356
Chris Lattnerdf6133b2009-02-20 21:35:13 +0000357 IVars.Destroy(C);
Chris Lattner13f63602009-02-20 20:59:54 +0000358 // FIXME: CategoryList?
359
360 // FIXME: Because there is no clear ownership
361 // role between ObjCInterfaceDecls and the ObjCPropertyDecls that they
362 // reference, we destroy ObjCPropertyDecls in ~TranslationUnit.
363 Decl::Destroy(C);
364}
365
366
367/// FindCategoryDeclaration - Finds category declaration in the list of
368/// categories for this class and returns it. Name of the category is passed
369/// in 'CategoryId'. If category not found, return 0;
Fariborz Jahanian68342282008-12-05 22:32:48 +0000370///
Chris Lattner13f63602009-02-20 20:59:54 +0000371ObjCCategoryDecl *
372ObjCInterfaceDecl::FindCategoryDeclaration(IdentifierInfo *CategoryId) const {
373 for (ObjCCategoryDecl *Category = getCategoryList();
374 Category; Category = Category->getNextClassCategory())
375 if (Category->getIdentifier() == CategoryId)
376 return Category;
Fariborz Jahanian68342282008-12-05 22:32:48 +0000377 return 0;
378}
379
Chris Lattner13f63602009-02-20 20:59:54 +0000380//===----------------------------------------------------------------------===//
381// ObjCIvarDecl
382//===----------------------------------------------------------------------===//
383
384ObjCIvarDecl *ObjCIvarDecl::Create(ASTContext &C, DeclContext *DC,
385 SourceLocation L, IdentifierInfo *Id,
386 QualType T, AccessControl ac, Expr *BW) {
387 return new (C) ObjCIvarDecl(DC, L, Id, T, ac, BW);
388}
389
390
391
392//===----------------------------------------------------------------------===//
393// ObjCAtDefsFieldDecl
394//===----------------------------------------------------------------------===//
395
396ObjCAtDefsFieldDecl
397*ObjCAtDefsFieldDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L,
398 IdentifierInfo *Id, QualType T, Expr *BW) {
399 return new (C) ObjCAtDefsFieldDecl(DC, L, Id, T, BW);
400}
401
402void ObjCAtDefsFieldDecl::Destroy(ASTContext& C) {
403 this->~ObjCAtDefsFieldDecl();
404 C.Deallocate((void *)this);
405}
406
407//===----------------------------------------------------------------------===//
408// ObjCProtocolDecl
409//===----------------------------------------------------------------------===//
410
411ObjCProtocolDecl *ObjCProtocolDecl::Create(ASTContext &C, DeclContext *DC,
412 SourceLocation L,
413 IdentifierInfo *Id) {
414 return new (C) ObjCProtocolDecl(DC, L, Id);
415}
416
417void ObjCProtocolDecl::Destroy(ASTContext &C) {
Chris Lattnerdf6133b2009-02-20 21:35:13 +0000418 ReferencedProtocols.Destroy(C);
Chris Lattner13f63602009-02-20 20:59:54 +0000419 ObjCContainerDecl::Destroy(C);
420}
421
Steve Naroff98e71b82009-03-01 16:12:44 +0000422ObjCProtocolDecl *ObjCProtocolDecl::lookupProtocolNamed(IdentifierInfo *Name) {
423 ObjCProtocolDecl *PDecl = this;
424
425 if (Name == getIdentifier())
426 return PDecl;
427
428 for (protocol_iterator I = protocol_begin(), E = protocol_end(); I != E; ++I)
429 if ((PDecl = (*I)->lookupProtocolNamed(Name)))
430 return PDecl;
431
432 return NULL;
433}
434
Chris Lattner13f63602009-02-20 20:59:54 +0000435// lookupInstanceMethod - Lookup a instance method in the protocol and protocols
436// it inherited.
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +0000437ObjCMethodDecl *ObjCProtocolDecl::lookupInstanceMethod(Selector Sel) {
Chris Lattner13f63602009-02-20 20:59:54 +0000438 ObjCMethodDecl *MethodDecl = NULL;
439
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +0000440 if ((MethodDecl = getInstanceMethod(Sel)))
Chris Lattner13f63602009-02-20 20:59:54 +0000441 return MethodDecl;
442
443 for (protocol_iterator I = protocol_begin(), E = protocol_end(); I != E; ++I)
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +0000444 if ((MethodDecl = (*I)->lookupInstanceMethod(Sel)))
Chris Lattner13f63602009-02-20 20:59:54 +0000445 return MethodDecl;
446 return NULL;
447}
448
449// lookupInstanceMethod - Lookup a class method in the protocol and protocols
450// it inherited.
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +0000451ObjCMethodDecl *ObjCProtocolDecl::lookupClassMethod(Selector Sel) {
Chris Lattner13f63602009-02-20 20:59:54 +0000452 ObjCMethodDecl *MethodDecl = NULL;
453
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +0000454 if ((MethodDecl = getClassMethod(Sel)))
Chris Lattner13f63602009-02-20 20:59:54 +0000455 return MethodDecl;
456
457 for (protocol_iterator I = protocol_begin(), E = protocol_end(); I != E; ++I)
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +0000458 if ((MethodDecl = (*I)->lookupClassMethod(Sel)))
Chris Lattner13f63602009-02-20 20:59:54 +0000459 return MethodDecl;
460 return NULL;
461}
462
463//===----------------------------------------------------------------------===//
464// ObjCClassDecl
465//===----------------------------------------------------------------------===//
466
Chris Lattnerdf6133b2009-02-20 21:35:13 +0000467ObjCClassDecl::ObjCClassDecl(DeclContext *DC, SourceLocation L,
468 ObjCInterfaceDecl *const *Elts, unsigned nElts,
469 ASTContext &C)
470 : Decl(ObjCClass, DC, L) {
471 ForwardDecls.set(Elts, nElts, C);
472}
473
474
Chris Lattner13f63602009-02-20 20:59:54 +0000475ObjCClassDecl *ObjCClassDecl::Create(ASTContext &C, DeclContext *DC,
476 SourceLocation L,
477 ObjCInterfaceDecl *const *Elts,
478 unsigned nElts) {
Chris Lattnerdf6133b2009-02-20 21:35:13 +0000479 return new (C) ObjCClassDecl(DC, L, Elts, nElts, C);
Chris Lattner13f63602009-02-20 20:59:54 +0000480}
481
482void ObjCClassDecl::Destroy(ASTContext &C) {
483
484 // FIXME: There is no clear ownership policy now for referenced
485 // ObjCInterfaceDecls. Some of them can be forward declarations that
486 // are never later defined (in which case the ObjCClassDecl owns them)
487 // or the ObjCInterfaceDecl later becomes a real definition later. Ideally
488 // we should have separate objects for forward declarations and definitions,
489 // obviating this problem. Because of this situation, referenced
490 // ObjCInterfaceDecls are destroyed in ~TranslationUnit.
491
Chris Lattnerdf6133b2009-02-20 21:35:13 +0000492 ForwardDecls.Destroy(C);
Chris Lattner13f63602009-02-20 20:59:54 +0000493 Decl::Destroy(C);
494}
495
496//===----------------------------------------------------------------------===//
497// ObjCForwardProtocolDecl
498//===----------------------------------------------------------------------===//
499
Chris Lattnerdf6133b2009-02-20 21:35:13 +0000500ObjCForwardProtocolDecl::
501ObjCForwardProtocolDecl(DeclContext *DC, SourceLocation L,
502 ObjCProtocolDecl *const *Elts, unsigned nElts,
503 ASTContext &C)
504: Decl(ObjCForwardProtocol, DC, L) {
505 ReferencedProtocols.set(Elts, nElts, C);
506}
507
508
Chris Lattner13f63602009-02-20 20:59:54 +0000509ObjCForwardProtocolDecl *
510ObjCForwardProtocolDecl::Create(ASTContext &C, DeclContext *DC,
511 SourceLocation L,
512 ObjCProtocolDecl *const *Elts,
513 unsigned NumElts) {
Chris Lattnerdf6133b2009-02-20 21:35:13 +0000514 return new (C) ObjCForwardProtocolDecl(DC, L, Elts, NumElts, C);
Chris Lattner13f63602009-02-20 20:59:54 +0000515}
516
517void ObjCForwardProtocolDecl::Destroy(ASTContext &C) {
Chris Lattnerdf6133b2009-02-20 21:35:13 +0000518 ReferencedProtocols.Destroy(C);
Chris Lattner13f63602009-02-20 20:59:54 +0000519 Decl::Destroy(C);
520}
521
522//===----------------------------------------------------------------------===//
523// ObjCCategoryDecl
524//===----------------------------------------------------------------------===//
525
526ObjCCategoryDecl *ObjCCategoryDecl::Create(ASTContext &C, DeclContext *DC,
527 SourceLocation L,
528 IdentifierInfo *Id) {
529 return new (C) ObjCCategoryDecl(DC, L, Id);
530}
531
532//===----------------------------------------------------------------------===//
533// ObjCCategoryImplDecl
534//===----------------------------------------------------------------------===//
535
536ObjCCategoryImplDecl *
537ObjCCategoryImplDecl::Create(ASTContext &C, DeclContext *DC,
538 SourceLocation L,IdentifierInfo *Id,
539 ObjCInterfaceDecl *ClassInterface) {
540 return new (C) ObjCCategoryImplDecl(DC, L, Id, ClassInterface);
541}
542
543
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +0000544void ObjCImplDecl::addPropertyImplementation(ObjCPropertyImplDecl *property) {
Douglas Gregorbd336c52009-04-23 02:42:49 +0000545 // FIXME: The context should be correct before we get here.
Douglas Gregorcd19b572009-04-23 01:02:12 +0000546 property->setLexicalDeclContext(this);
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +0000547 addDecl(property);
Douglas Gregorcd19b572009-04-23 01:02:12 +0000548}
549
Fariborz Jahanian68342282008-12-05 22:32:48 +0000550/// FindPropertyImplIvarDecl - This method lookup the ivar in the list of
Chris Lattner715e8482009-02-16 19:24:31 +0000551/// properties implemented in this category @implementation block and returns
552/// the implemented property that uses it.
Fariborz Jahanian68342282008-12-05 22:32:48 +0000553///
Chris Lattner649b3da2009-02-28 18:42:10 +0000554ObjCPropertyImplDecl *ObjCImplDecl::
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +0000555FindPropertyImplIvarDecl(IdentifierInfo *ivarId) const {
556 for (propimpl_iterator i = propimpl_begin(), e = propimpl_end(); i != e; ++i){
Fariborz Jahanian68342282008-12-05 22:32:48 +0000557 ObjCPropertyImplDecl *PID = *i;
558 if (PID->getPropertyIvarDecl() &&
559 PID->getPropertyIvarDecl()->getIdentifier() == ivarId)
560 return PID;
561 }
562 return 0;
563}
564
565/// FindPropertyImplDecl - This method looks up a previous ObjCPropertyImplDecl
566/// added to the list of those properties @synthesized/@dynamic in this
567/// category @implementation block.
568///
Chris Lattner649b3da2009-02-28 18:42:10 +0000569ObjCPropertyImplDecl *ObjCImplDecl::
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +0000570FindPropertyImplDecl(IdentifierInfo *Id) const {
571 for (propimpl_iterator i = propimpl_begin(), e = propimpl_end(); i != e; ++i){
Fariborz Jahanian68342282008-12-05 22:32:48 +0000572 ObjCPropertyImplDecl *PID = *i;
573 if (PID->getPropertyDecl()->getIdentifier() == Id)
574 return PID;
575 }
576 return 0;
577}
578
Chris Lattner649b3da2009-02-28 18:42:10 +0000579// getInstanceMethod - This method returns an instance method by looking in
Chris Lattner10318b82008-03-16 00:19:01 +0000580// the class implementation. Unlike interfaces, we don't look outside the
581// implementation.
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +0000582ObjCMethodDecl *ObjCImplDecl::getInstanceMethod(Selector Sel) const {
Douglas Gregorcd19b572009-04-23 01:02:12 +0000583 // Since instance & class methods can have the same name, the loop below
584 // ensures we get the correct method.
585 //
586 // @interface Whatever
587 // - (int) class_method;
588 // + (float) class_method;
589 // @end
590 //
591 lookup_const_iterator Meth, MethEnd;
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +0000592 for (llvm::tie(Meth, MethEnd) = lookup(Sel);
Douglas Gregorcd19b572009-04-23 01:02:12 +0000593 Meth != MethEnd; ++Meth) {
594 ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(*Meth);
595 if (MD && MD->isInstanceMethod())
596 return MD;
597 }
598 return 0;
Chris Lattner10318b82008-03-16 00:19:01 +0000599}
600
Chris Lattner649b3da2009-02-28 18:42:10 +0000601// getClassMethod - This method returns an instance method by looking in
Chris Lattner10318b82008-03-16 00:19:01 +0000602// the class implementation. Unlike interfaces, we don't look outside the
603// implementation.
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +0000604ObjCMethodDecl *ObjCImplDecl::getClassMethod(Selector Sel) const {
Douglas Gregorcd19b572009-04-23 01:02:12 +0000605 // Since instance & class methods can have the same name, the loop below
606 // ensures we get the correct method.
607 //
608 // @interface Whatever
609 // - (int) class_method;
610 // + (float) class_method;
611 // @end
612 //
613 lookup_const_iterator Meth, MethEnd;
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +0000614 for (llvm::tie(Meth, MethEnd) = lookup(Sel);
Douglas Gregorcd19b572009-04-23 01:02:12 +0000615 Meth != MethEnd; ++Meth) {
616 ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(*Meth);
617 if (MD && MD->isClassMethod())
618 return MD;
619 }
620 return 0;
Chris Lattner10318b82008-03-16 00:19:01 +0000621}
622
Chris Lattner13f63602009-02-20 20:59:54 +0000623//===----------------------------------------------------------------------===//
624// ObjCImplementationDecl
625//===----------------------------------------------------------------------===//
626
627ObjCImplementationDecl *
628ObjCImplementationDecl::Create(ASTContext &C, DeclContext *DC,
629 SourceLocation L,
630 ObjCInterfaceDecl *ClassInterface,
631 ObjCInterfaceDecl *SuperDecl) {
632 return new (C) ObjCImplementationDecl(DC, L, ClassInterface, SuperDecl);
633}
634
Chris Lattner13f63602009-02-20 20:59:54 +0000635//===----------------------------------------------------------------------===//
636// ObjCCompatibleAliasDecl
637//===----------------------------------------------------------------------===//
638
639ObjCCompatibleAliasDecl *
640ObjCCompatibleAliasDecl::Create(ASTContext &C, DeclContext *DC,
641 SourceLocation L,
642 IdentifierInfo *Id,
643 ObjCInterfaceDecl* AliasedClass) {
644 return new (C) ObjCCompatibleAliasDecl(DC, L, Id, AliasedClass);
645}
646
647//===----------------------------------------------------------------------===//
648// ObjCPropertyDecl
649//===----------------------------------------------------------------------===//
650
651ObjCPropertyDecl *ObjCPropertyDecl::Create(ASTContext &C, DeclContext *DC,
652 SourceLocation L,
653 IdentifierInfo *Id,
654 QualType T,
655 PropertyControl propControl) {
656 return new (C) ObjCPropertyDecl(DC, L, Id, T);
657}
658
659
660//===----------------------------------------------------------------------===//
661// ObjCPropertyImplDecl
662//===----------------------------------------------------------------------===//
663
Fariborz Jahaniandc0569e2008-04-23 00:06:01 +0000664ObjCPropertyImplDecl *ObjCPropertyImplDecl::Create(ASTContext &C,
Douglas Gregor6e4fa2c2009-01-09 00:49:46 +0000665 DeclContext *DC,
Fariborz Jahaniandc0569e2008-04-23 00:06:01 +0000666 SourceLocation atLoc,
667 SourceLocation L,
668 ObjCPropertyDecl *property,
Daniel Dunbar14117fc2008-08-26 04:47:31 +0000669 Kind PK,
Fariborz Jahaniandc0569e2008-04-23 00:06:01 +0000670 ObjCIvarDecl *ivar) {
Steve Naroff5abb0282009-01-27 21:25:57 +0000671 return new (C) ObjCPropertyImplDecl(DC, atLoc, L, property, PK, ivar);
Fariborz Jahaniandc0569e2008-04-23 00:06:01 +0000672}
Chris Lattner44859612008-03-17 01:19:02 +0000673
Chris Lattnereee57c02008-04-04 06:12:32 +0000674