blob: 2960b13d6de26f161ee9755950f4783ea7cc5c4d [file] [log] [blame]
Chris Lattner1e03a562008-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 Dunbare91593e2008-08-11 04:54:23 +000016#include "clang/AST/Stmt.h"
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +000017#include "clang/AST/ASTMutationListener.h"
Steve Naroff0de21fd2009-02-22 19:35:57 +000018#include "llvm/ADT/STLExtras.h"
Chris Lattner1e03a562008-03-16 00:19:01 +000019using namespace clang;
20
Chris Lattner6c4ae5d2008-03-16 00:49:28 +000021//===----------------------------------------------------------------------===//
Chris Lattner11e1e1a2009-02-20 21:16:26 +000022// ObjCListBase
23//===----------------------------------------------------------------------===//
24
Chris Lattner38af2de2009-02-20 21:35:13 +000025void ObjCListBase::set(void *const* InList, unsigned Elts, ASTContext &Ctx) {
Douglas Gregorff331c12010-07-25 18:17:45 +000026 List = 0;
Chris Lattner11e1e1a2009-02-20 21:16:26 +000027 if (Elts == 0) return; // Setting to an empty list is a noop.
Mike Stump1eb44332009-09-09 15:08:12 +000028
29
Chris Lattner4ee413b2009-02-20 21:44:01 +000030 List = new (Ctx) void*[Elts];
Chris Lattner11e1e1a2009-02-20 21:16:26 +000031 NumElts = Elts;
32 memcpy(List, InList, sizeof(void*)*Elts);
33}
34
Douglas Gregor18df52b2010-01-16 15:02:53 +000035void ObjCProtocolList::set(ObjCProtocolDecl* const* InList, unsigned Elts,
36 const SourceLocation *Locs, ASTContext &Ctx) {
37 if (Elts == 0)
38 return;
39
40 Locations = new (Ctx) SourceLocation[Elts];
41 memcpy(Locations, Locs, sizeof(SourceLocation) * Elts);
42 set(InList, Elts, Ctx);
43}
44
Chris Lattner11e1e1a2009-02-20 21:16:26 +000045//===----------------------------------------------------------------------===//
Chris Lattnerab351632009-02-20 20:59:54 +000046// ObjCInterfaceDecl
Chris Lattner6c4ae5d2008-03-16 00:49:28 +000047//===----------------------------------------------------------------------===//
48
David Blaikie99ba9e32011-12-20 02:48:34 +000049void ObjCContainerDecl::anchor() { }
50
Fariborz Jahanian496b5a82009-06-05 18:16:35 +000051/// getIvarDecl - This method looks up an ivar in this ContextDecl.
52///
53ObjCIvarDecl *
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +000054ObjCContainerDecl::getIvarDecl(IdentifierInfo *Id) const {
Fariborz Jahanian496b5a82009-06-05 18:16:35 +000055 lookup_const_iterator Ivar, IvarEnd;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +000056 for (llvm::tie(Ivar, IvarEnd) = lookup(Id); Ivar != IvarEnd; ++Ivar) {
Fariborz Jahanian496b5a82009-06-05 18:16:35 +000057 if (ObjCIvarDecl *ivar = dyn_cast<ObjCIvarDecl>(*Ivar))
58 return ivar;
59 }
60 return 0;
61}
62
Argyrios Kyrtzidis467c0b12009-07-25 22:15:22 +000063// Get the local instance/class method declared in this interface.
Douglas Gregor6ab35242009-04-09 21:40:53 +000064ObjCMethodDecl *
Argyrios Kyrtzidis467c0b12009-07-25 22:15:22 +000065ObjCContainerDecl::getMethod(Selector Sel, bool isInstance) const {
Steve Naroff0de21fd2009-02-22 19:35:57 +000066 // Since instance & class methods can have the same name, the loop below
67 // ensures we get the correct method.
68 //
69 // @interface Whatever
70 // - (int) class_method;
71 // + (float) class_method;
72 // @end
73 //
74 lookup_const_iterator Meth, MethEnd;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +000075 for (llvm::tie(Meth, MethEnd) = lookup(Sel); Meth != MethEnd; ++Meth) {
Steve Naroff0de21fd2009-02-22 19:35:57 +000076 ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(*Meth);
Argyrios Kyrtzidis467c0b12009-07-25 22:15:22 +000077 if (MD && MD->isInstanceMethod() == isInstance)
Steve Naroff0de21fd2009-02-22 19:35:57 +000078 return MD;
79 }
Steve Naroff0701bbb2009-01-08 17:28:14 +000080 return 0;
81}
82
Ted Kremenek9f550ff2010-03-15 20:11:46 +000083ObjCPropertyDecl *
Ted Kremenekde09d0c2010-03-15 20:11:53 +000084ObjCPropertyDecl::findPropertyDecl(const DeclContext *DC,
Ted Kremenek9f550ff2010-03-15 20:11:46 +000085 IdentifierInfo *propertyID) {
86
Ted Kremenekde09d0c2010-03-15 20:11:53 +000087 DeclContext::lookup_const_iterator I, E;
Ted Kremenek9f550ff2010-03-15 20:11:46 +000088 llvm::tie(I, E) = DC->lookup(propertyID);
89 for ( ; I != E; ++I)
90 if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(*I))
91 return PD;
92
93 return 0;
94}
95
Fariborz Jahanian559c0c42008-04-21 19:04:53 +000096/// FindPropertyDeclaration - Finds declaration of the property given its name
97/// in 'PropertyId' and returns it. It returns 0, if not found.
Fariborz Jahanian559c0c42008-04-21 19:04:53 +000098ObjCPropertyDecl *
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +000099ObjCContainerDecl::FindPropertyDeclaration(IdentifierInfo *PropertyId) const {
Mike Stump1eb44332009-09-09 15:08:12 +0000100
Ted Kremenekde09d0c2010-03-15 20:11:53 +0000101 if (ObjCPropertyDecl *PD =
102 ObjCPropertyDecl::findPropertyDecl(cast<DeclContext>(this), PropertyId))
103 return PD;
Mike Stump1eb44332009-09-09 15:08:12 +0000104
Ted Kremenekde09d0c2010-03-15 20:11:53 +0000105 switch (getKind()) {
106 default:
107 break;
108 case Decl::ObjCProtocol: {
109 const ObjCProtocolDecl *PID = cast<ObjCProtocolDecl>(this);
110 for (ObjCProtocolDecl::protocol_iterator I = PID->protocol_begin(),
111 E = PID->protocol_end(); I != E; ++I)
Fariborz Jahanian25760612010-02-15 21:55:26 +0000112 if (ObjCPropertyDecl *P = (*I)->FindPropertyDeclaration(PropertyId))
113 return P;
Ted Kremenekde09d0c2010-03-15 20:11:53 +0000114 break;
115 }
116 case Decl::ObjCInterface: {
117 const ObjCInterfaceDecl *OID = cast<ObjCInterfaceDecl>(this);
118 // Look through categories.
119 for (ObjCCategoryDecl *Cat = OID->getCategoryList();
120 Cat; Cat = Cat->getNextClassCategory())
121 if (!Cat->IsClassExtension())
122 if (ObjCPropertyDecl *P = Cat->FindPropertyDeclaration(PropertyId))
123 return P;
124
125 // Look through protocols.
Ted Kremenek53b94412010-09-01 01:21:15 +0000126 for (ObjCInterfaceDecl::all_protocol_iterator
127 I = OID->all_referenced_protocol_begin(),
128 E = OID->all_referenced_protocol_end(); I != E; ++I)
Ted Kremenekde09d0c2010-03-15 20:11:53 +0000129 if (ObjCPropertyDecl *P = (*I)->FindPropertyDeclaration(PropertyId))
130 return P;
131
132 // Finally, check the super class.
133 if (const ObjCInterfaceDecl *superClass = OID->getSuperClass())
134 return superClass->FindPropertyDeclaration(PropertyId);
135 break;
136 }
137 case Decl::ObjCCategory: {
138 const ObjCCategoryDecl *OCD = cast<ObjCCategoryDecl>(this);
139 // Look through protocols.
140 if (!OCD->IsClassExtension())
141 for (ObjCCategoryDecl::protocol_iterator
142 I = OCD->protocol_begin(), E = OCD->protocol_end(); I != E; ++I)
143 if (ObjCPropertyDecl *P = (*I)->FindPropertyDeclaration(PropertyId))
144 return P;
145
146 break;
Fariborz Jahanianf034e9c2009-01-19 18:16:19 +0000147 }
148 }
Steve Naroff3d2c22b2008-06-05 13:55:23 +0000149 return 0;
150}
151
David Blaikie99ba9e32011-12-20 02:48:34 +0000152void ObjCInterfaceDecl::anchor() { }
153
Fariborz Jahaniana6f14e12009-11-02 22:45:15 +0000154/// FindPropertyVisibleInPrimaryClass - Finds declaration of the property
155/// with name 'PropertyId' in the primary class; including those in protocols
Ted Kremenek37cafb02010-03-15 20:30:07 +0000156/// (direct or indirect) used by the primary class.
Fariborz Jahaniana6f14e12009-11-02 22:45:15 +0000157///
158ObjCPropertyDecl *
Ted Kremenek37cafb02010-03-15 20:30:07 +0000159ObjCInterfaceDecl::FindPropertyVisibleInPrimaryClass(
Fariborz Jahaniana6f14e12009-11-02 22:45:15 +0000160 IdentifierInfo *PropertyId) const {
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000161 // FIXME: Should make sure no callers ever do this.
162 if (!hasDefinition())
163 return 0;
164
165 if (data().ExternallyCompleted)
Douglas Gregor26ac3f32010-12-01 23:49:52 +0000166 LoadExternalDefinition();
167
Ted Kremenek37cafb02010-03-15 20:30:07 +0000168 if (ObjCPropertyDecl *PD =
169 ObjCPropertyDecl::findPropertyDecl(cast<DeclContext>(this), PropertyId))
170 return PD;
171
Fariborz Jahaniana6f14e12009-11-02 22:45:15 +0000172 // Look through protocols.
Ted Kremenek53b94412010-09-01 01:21:15 +0000173 for (ObjCInterfaceDecl::all_protocol_iterator
174 I = all_referenced_protocol_begin(),
175 E = all_referenced_protocol_end(); I != E; ++I)
Fariborz Jahaniana6f14e12009-11-02 22:45:15 +0000176 if (ObjCPropertyDecl *P = (*I)->FindPropertyDeclaration(PropertyId))
177 return P;
Ted Kremenek37cafb02010-03-15 20:30:07 +0000178
Fariborz Jahaniana6f14e12009-11-02 22:45:15 +0000179 return 0;
180}
181
Fariborz Jahanian339798e2009-10-05 20:41:32 +0000182void ObjCInterfaceDecl::mergeClassExtensionProtocolList(
183 ObjCProtocolDecl *const* ExtList, unsigned ExtNum,
184 ASTContext &C)
185{
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000186 if (data().ExternallyCompleted)
Douglas Gregor26ac3f32010-12-01 23:49:52 +0000187 LoadExternalDefinition();
188
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000189 if (data().AllReferencedProtocols.empty() &&
190 data().ReferencedProtocols.empty()) {
191 data().AllReferencedProtocols.set(ExtList, ExtNum, C);
Fariborz Jahanian339798e2009-10-05 20:41:32 +0000192 return;
193 }
Ted Kremenek53b94412010-09-01 01:21:15 +0000194
Fariborz Jahanian339798e2009-10-05 20:41:32 +0000195 // Check for duplicate protocol in class's protocol list.
Ted Kremenek53b94412010-09-01 01:21:15 +0000196 // This is O(n*m). But it is extremely rare and number of protocols in
Fariborz Jahanian339798e2009-10-05 20:41:32 +0000197 // class or its extension are very few.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000198 SmallVector<ObjCProtocolDecl*, 8> ProtocolRefs;
Fariborz Jahanian339798e2009-10-05 20:41:32 +0000199 for (unsigned i = 0; i < ExtNum; i++) {
200 bool protocolExists = false;
201 ObjCProtocolDecl *ProtoInExtension = ExtList[i];
Ted Kremenek53b94412010-09-01 01:21:15 +0000202 for (all_protocol_iterator
203 p = all_referenced_protocol_begin(),
204 e = all_referenced_protocol_end(); p != e; ++p) {
Fariborz Jahanian339798e2009-10-05 20:41:32 +0000205 ObjCProtocolDecl *Proto = (*p);
206 if (C.ProtocolCompatibleWithProtocol(ProtoInExtension, Proto)) {
207 protocolExists = true;
208 break;
209 }
210 }
211 // Do we want to warn on a protocol in extension class which
212 // already exist in the class? Probably not.
Ted Kremenek53b94412010-09-01 01:21:15 +0000213 if (!protocolExists)
Fariborz Jahanian339798e2009-10-05 20:41:32 +0000214 ProtocolRefs.push_back(ProtoInExtension);
215 }
Ted Kremenek53b94412010-09-01 01:21:15 +0000216
Fariborz Jahanian339798e2009-10-05 20:41:32 +0000217 if (ProtocolRefs.empty())
218 return;
Ted Kremenek53b94412010-09-01 01:21:15 +0000219
Fariborz Jahanianb106fc62009-10-05 21:32:49 +0000220 // Merge ProtocolRefs into class's protocol list;
Ted Kremenek53b94412010-09-01 01:21:15 +0000221 for (all_protocol_iterator p = all_referenced_protocol_begin(),
222 e = all_referenced_protocol_end(); p != e; ++p) {
Fariborz Jahanian339798e2009-10-05 20:41:32 +0000223 ProtocolRefs.push_back(*p);
Douglas Gregor18df52b2010-01-16 15:02:53 +0000224 }
Ted Kremenek53b94412010-09-01 01:21:15 +0000225
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000226 data().AllReferencedProtocols.set(ProtocolRefs.data(), ProtocolRefs.size(),C);
Fariborz Jahanian339798e2009-10-05 20:41:32 +0000227}
228
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000229void ObjCInterfaceDecl::allocateDefinitionData() {
230 assert(!hasDefinition() && "ObjC class already has a definition");
Douglas Gregor26fec632011-12-15 18:17:27 +0000231 Data = new (getASTContext()) DefinitionData();
Douglas Gregor8d2dbbf2011-12-16 16:34:57 +0000232 Data->Definition = this;
233
234 // Make the type point at the definition, now that we have one.
235 if (TypeForDecl)
236 cast<ObjCInterfaceType>(TypeForDecl)->Decl = this;
Douglas Gregor0af55012011-12-16 03:12:41 +0000237}
238
239void ObjCInterfaceDecl::startDefinition() {
240 allocateDefinitionData();
241
Douglas Gregor53df7a12011-12-15 18:03:09 +0000242 // Update all of the declarations with a pointer to the definition.
243 for (redecl_iterator RD = redecls_begin(), RDEnd = redecls_end();
244 RD != RDEnd; ++RD) {
245 if (*RD != this)
Douglas Gregor26fec632011-12-15 18:17:27 +0000246 RD->Data = Data;
Douglas Gregor53df7a12011-12-15 18:03:09 +0000247 }
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000248
Argyrios Kyrtzidisad834d52011-11-12 21:07:46 +0000249 if (ASTMutationListener *L = getASTContext().getASTMutationListener())
250 L->CompletedObjCForwardRef(this);
251}
252
Fariborz Jahanian80aa1cd2010-06-22 23:20:40 +0000253/// getFirstClassExtension - Find first class extension of the given class.
254ObjCCategoryDecl* ObjCInterfaceDecl::getFirstClassExtension() const {
255 for (ObjCCategoryDecl *CDecl = getCategoryList(); CDecl;
Fariborz Jahanian0e5ad252010-02-23 01:26:30 +0000256 CDecl = CDecl->getNextClassCategory())
257 if (CDecl->IsClassExtension())
258 return CDecl;
259 return 0;
260}
261
Fariborz Jahanian80aa1cd2010-06-22 23:20:40 +0000262/// getNextClassCategory - Find next class extension in list of categories.
263const ObjCCategoryDecl* ObjCCategoryDecl::getNextClassExtension() const {
264 for (const ObjCCategoryDecl *CDecl = getNextClassCategory(); CDecl;
265 CDecl = CDecl->getNextClassCategory())
266 if (CDecl->IsClassExtension())
267 return CDecl;
268 return 0;
269}
270
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000271ObjCIvarDecl *ObjCInterfaceDecl::lookupInstanceVariable(IdentifierInfo *ID,
272 ObjCInterfaceDecl *&clsDeclared) {
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000273 // FIXME: Should make sure no callers ever do this.
274 if (!hasDefinition())
275 return 0;
276
277 if (data().ExternallyCompleted)
Argyrios Kyrtzidis7c81c2a2011-10-19 02:25:16 +0000278 LoadExternalDefinition();
279
Chris Lattner1e03a562008-03-16 00:19:01 +0000280 ObjCInterfaceDecl* ClassDecl = this;
281 while (ClassDecl != NULL) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000282 if (ObjCIvarDecl *I = ClassDecl->getIvarDecl(ID)) {
Fariborz Jahanian496b5a82009-06-05 18:16:35 +0000283 clsDeclared = ClassDecl;
284 return I;
Chris Lattner1e03a562008-03-16 00:19:01 +0000285 }
Fariborz Jahanian80aa1cd2010-06-22 23:20:40 +0000286 for (const ObjCCategoryDecl *CDecl = ClassDecl->getFirstClassExtension();
287 CDecl; CDecl = CDecl->getNextClassExtension()) {
Fariborz Jahanian0e5ad252010-02-23 01:26:30 +0000288 if (ObjCIvarDecl *I = CDecl->getIvarDecl(ID)) {
289 clsDeclared = ClassDecl;
290 return I;
291 }
Fariborz Jahanian80aa1cd2010-06-22 23:20:40 +0000292 }
Fariborz Jahanian0e5ad252010-02-23 01:26:30 +0000293
Chris Lattner1e03a562008-03-16 00:19:01 +0000294 ClassDecl = ClassDecl->getSuperClass();
295 }
296 return NULL;
297}
298
Fariborz Jahaniancd187622009-05-22 17:12:32 +0000299/// lookupInheritedClass - This method returns ObjCInterfaceDecl * of the super
300/// class whose name is passed as argument. If it is not one of the super classes
301/// the it returns NULL.
302ObjCInterfaceDecl *ObjCInterfaceDecl::lookupInheritedClass(
303 const IdentifierInfo*ICName) {
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000304 // FIXME: Should make sure no callers ever do this.
305 if (!hasDefinition())
306 return 0;
307
308 if (data().ExternallyCompleted)
Argyrios Kyrtzidis7c81c2a2011-10-19 02:25:16 +0000309 LoadExternalDefinition();
310
Fariborz Jahaniancd187622009-05-22 17:12:32 +0000311 ObjCInterfaceDecl* ClassDecl = this;
312 while (ClassDecl != NULL) {
313 if (ClassDecl->getIdentifier() == ICName)
314 return ClassDecl;
315 ClassDecl = ClassDecl->getSuperClass();
316 }
317 return NULL;
318}
319
Argyrios Kyrtzidisaa5420c2009-07-25 22:15:51 +0000320/// lookupMethod - This method returns an instance/class method by looking in
Chris Lattner1e03a562008-03-16 00:19:01 +0000321/// the class, its categories, and its super classes (using a linear search).
Argyrios Kyrtzidisaa5420c2009-07-25 22:15:51 +0000322ObjCMethodDecl *ObjCInterfaceDecl::lookupMethod(Selector Sel,
323 bool isInstance) const {
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000324 // FIXME: Should make sure no callers ever do this.
325 if (!hasDefinition())
326 return 0;
327
Argyrios Kyrtzidisaa5420c2009-07-25 22:15:51 +0000328 const ObjCInterfaceDecl* ClassDecl = this;
Chris Lattner1e03a562008-03-16 00:19:01 +0000329 ObjCMethodDecl *MethodDecl = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000330
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000331 if (data().ExternallyCompleted)
Douglas Gregor26ac3f32010-12-01 23:49:52 +0000332 LoadExternalDefinition();
333
Chris Lattner1e03a562008-03-16 00:19:01 +0000334 while (ClassDecl != NULL) {
Argyrios Kyrtzidisaa5420c2009-07-25 22:15:51 +0000335 if ((MethodDecl = ClassDecl->getMethod(Sel, isInstance)))
Chris Lattner1e03a562008-03-16 00:19:01 +0000336 return MethodDecl;
Mike Stump1eb44332009-09-09 15:08:12 +0000337
Chris Lattner1e03a562008-03-16 00:19:01 +0000338 // Didn't find one yet - look through protocols.
Chris Lattner3db6cae2008-07-21 18:19:38 +0000339 const ObjCList<ObjCProtocolDecl> &Protocols =
340 ClassDecl->getReferencedProtocols();
341 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
342 E = Protocols.end(); I != E; ++I)
Argyrios Kyrtzidisaa5420c2009-07-25 22:15:51 +0000343 if ((MethodDecl = (*I)->lookupMethod(Sel, isInstance)))
Chris Lattner1e03a562008-03-16 00:19:01 +0000344 return MethodDecl;
Mike Stump1eb44332009-09-09 15:08:12 +0000345
Chris Lattner1e03a562008-03-16 00:19:01 +0000346 // Didn't find one yet - now look through categories.
347 ObjCCategoryDecl *CatDecl = ClassDecl->getCategoryList();
348 while (CatDecl) {
Argyrios Kyrtzidisaa5420c2009-07-25 22:15:51 +0000349 if ((MethodDecl = CatDecl->getMethod(Sel, isInstance)))
Chris Lattner1e03a562008-03-16 00:19:01 +0000350 return MethodDecl;
Mike Stump1eb44332009-09-09 15:08:12 +0000351
Steve Naroffb79c01e2008-12-08 20:57:28 +0000352 // Didn't find one yet - look through protocols.
353 const ObjCList<ObjCProtocolDecl> &Protocols =
354 CatDecl->getReferencedProtocols();
355 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
356 E = Protocols.end(); I != E; ++I)
Argyrios Kyrtzidisaa5420c2009-07-25 22:15:51 +0000357 if ((MethodDecl = (*I)->lookupMethod(Sel, isInstance)))
Steve Naroffb5584222009-02-26 11:32:02 +0000358 return MethodDecl;
Chris Lattner1e03a562008-03-16 00:19:01 +0000359 CatDecl = CatDecl->getNextClassCategory();
360 }
361 ClassDecl = ClassDecl->getSuperClass();
362 }
363 return NULL;
364}
365
Fariborz Jahanian74b27562010-12-03 23:37:08 +0000366ObjCMethodDecl *ObjCInterfaceDecl::lookupPrivateMethod(
367 const Selector &Sel,
368 bool Instance) {
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000369 // FIXME: Should make sure no callers ever do this.
370 if (!hasDefinition())
371 return 0;
372
373 if (data().ExternallyCompleted)
Argyrios Kyrtzidis7c81c2a2011-10-19 02:25:16 +0000374 LoadExternalDefinition();
375
Steve Naroffd789d3d2009-10-01 23:46:04 +0000376 ObjCMethodDecl *Method = 0;
377 if (ObjCImplementationDecl *ImpDecl = getImplementation())
Fariborz Jahanian74b27562010-12-03 23:37:08 +0000378 Method = Instance ? ImpDecl->getInstanceMethod(Sel)
379 : ImpDecl->getClassMethod(Sel);
Steve Naroffd789d3d2009-10-01 23:46:04 +0000380
381 if (!Method && getSuperClass())
Fariborz Jahanian74b27562010-12-03 23:37:08 +0000382 return getSuperClass()->lookupPrivateMethod(Sel, Instance);
Steve Naroffd789d3d2009-10-01 23:46:04 +0000383 return Method;
384}
Chris Lattnerab351632009-02-20 20:59:54 +0000385
386//===----------------------------------------------------------------------===//
387// ObjCMethodDecl
388//===----------------------------------------------------------------------===//
389
390ObjCMethodDecl *ObjCMethodDecl::Create(ASTContext &C,
Mike Stump1eb44332009-09-09 15:08:12 +0000391 SourceLocation beginLoc,
Chris Lattnerab351632009-02-20 20:59:54 +0000392 SourceLocation endLoc,
393 Selector SelInfo, QualType T,
Douglas Gregor4bc1cb62010-03-08 14:59:44 +0000394 TypeSourceInfo *ResultTInfo,
Chris Lattnerab351632009-02-20 20:59:54 +0000395 DeclContext *contextDecl,
396 bool isInstance,
397 bool isVariadic,
398 bool isSynthesized,
Argyrios Kyrtzidis75cf3e82011-08-17 19:25:08 +0000399 bool isImplicitlyDeclared,
Fariborz Jahanian3fe10412010-07-22 18:24:20 +0000400 bool isDefined,
Fariborz Jahanian7732cc92010-04-08 21:29:11 +0000401 ImplementationControl impControl,
Argyrios Kyrtzidisda92a7f2011-10-03 06:36:29 +0000402 bool HasRelatedResultType) {
Chris Lattnerab351632009-02-20 20:59:54 +0000403 return new (C) ObjCMethodDecl(beginLoc, endLoc,
Douglas Gregor4bc1cb62010-03-08 14:59:44 +0000404 SelInfo, T, ResultTInfo, contextDecl,
405 isInstance,
Argyrios Kyrtzidis75cf3e82011-08-17 19:25:08 +0000406 isVariadic, isSynthesized, isImplicitlyDeclared,
407 isDefined,
Fariborz Jahanian3fe10412010-07-22 18:24:20 +0000408 impControl,
Argyrios Kyrtzidisda92a7f2011-10-03 06:36:29 +0000409 HasRelatedResultType);
Chris Lattner1e03a562008-03-16 00:19:01 +0000410}
411
Argyrios Kyrtzidis3a919e72011-10-14 08:02:31 +0000412void ObjCMethodDecl::setAsRedeclaration(const ObjCMethodDecl *PrevMethod) {
413 assert(PrevMethod);
414 getASTContext().setObjCMethodRedeclaration(PrevMethod, this);
415 IsRedeclaration = true;
Argyrios Kyrtzidis72b26252011-10-14 17:41:52 +0000416 PrevMethod->HasRedeclaration = true;
Argyrios Kyrtzidis3a919e72011-10-14 08:02:31 +0000417}
418
Argyrios Kyrtzidis491306a2011-10-03 06:37:04 +0000419void ObjCMethodDecl::setParamsAndSelLocs(ASTContext &C,
420 ArrayRef<ParmVarDecl*> Params,
421 ArrayRef<SourceLocation> SelLocs) {
422 ParamsAndSelLocs = 0;
423 NumParams = Params.size();
424 if (Params.empty() && SelLocs.empty())
425 return;
426
427 unsigned Size = sizeof(ParmVarDecl *) * NumParams +
428 sizeof(SourceLocation) * SelLocs.size();
429 ParamsAndSelLocs = C.Allocate(Size);
430 std::copy(Params.begin(), Params.end(), getParams());
431 std::copy(SelLocs.begin(), SelLocs.end(), getStoredSelLocs());
432}
433
434void ObjCMethodDecl::getSelectorLocs(
435 SmallVectorImpl<SourceLocation> &SelLocs) const {
436 for (unsigned i = 0, e = getNumSelectorLocs(); i != e; ++i)
437 SelLocs.push_back(getSelectorLoc(i));
438}
439
440void ObjCMethodDecl::setMethodParams(ASTContext &C,
441 ArrayRef<ParmVarDecl*> Params,
442 ArrayRef<SourceLocation> SelLocs) {
443 assert((!SelLocs.empty() || isImplicit()) &&
444 "No selector locs for non-implicit method");
445 if (isImplicit())
446 return setParamsAndSelLocs(C, Params, ArrayRef<SourceLocation>());
447
448 SelLocsKind = hasStandardSelectorLocs(getSelector(), SelLocs, Params, EndLoc);
449 if (SelLocsKind != SelLoc_NonStandard)
450 return setParamsAndSelLocs(C, Params, ArrayRef<SourceLocation>());
451
452 setParamsAndSelLocs(C, Params, SelLocs);
453}
454
Argyrios Kyrtzidis57ea6be2009-07-21 00:06:36 +0000455/// \brief A definition will return its interface declaration.
456/// An interface declaration will return its definition.
457/// Otherwise it will return itself.
458ObjCMethodDecl *ObjCMethodDecl::getNextRedeclaration() {
459 ASTContext &Ctx = getASTContext();
Argyrios Kyrtzidis72b26252011-10-14 17:41:52 +0000460 ObjCMethodDecl *Redecl = 0;
461 if (HasRedeclaration)
462 Redecl = const_cast<ObjCMethodDecl*>(Ctx.getObjCMethodRedeclaration(this));
Argyrios Kyrtzidisb40034c2011-10-14 06:48:06 +0000463 if (Redecl)
464 return Redecl;
465
Argyrios Kyrtzidis57ea6be2009-07-21 00:06:36 +0000466 Decl *CtxD = cast<Decl>(getDeclContext());
467
468 if (ObjCInterfaceDecl *IFD = dyn_cast<ObjCInterfaceDecl>(CtxD)) {
469 if (ObjCImplementationDecl *ImplD = Ctx.getObjCImplementation(IFD))
470 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod());
471
472 } else if (ObjCCategoryDecl *CD = dyn_cast<ObjCCategoryDecl>(CtxD)) {
473 if (ObjCCategoryImplDecl *ImplD = Ctx.getObjCImplementation(CD))
474 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod());
475
Argyrios Kyrtzidis42920732009-07-28 05:11:05 +0000476 } else if (ObjCImplementationDecl *ImplD =
477 dyn_cast<ObjCImplementationDecl>(CtxD)) {
Argyrios Kyrtzidis57ea6be2009-07-21 00:06:36 +0000478 if (ObjCInterfaceDecl *IFD = ImplD->getClassInterface())
479 Redecl = IFD->getMethod(getSelector(), isInstanceMethod());
Argyrios Kyrtzidis42920732009-07-28 05:11:05 +0000480
481 } else if (ObjCCategoryImplDecl *CImplD =
482 dyn_cast<ObjCCategoryImplDecl>(CtxD)) {
Steve Naroff0d69b8c2009-10-29 21:11:04 +0000483 if (ObjCCategoryDecl *CatD = CImplD->getCategoryDecl())
Argyrios Kyrtzidis42920732009-07-28 05:11:05 +0000484 Redecl = CatD->getMethod(getSelector(), isInstanceMethod());
Argyrios Kyrtzidis57ea6be2009-07-21 00:06:36 +0000485 }
486
Argyrios Kyrtzidis3a919e72011-10-14 08:02:31 +0000487 if (!Redecl && isRedeclaration()) {
488 // This is the last redeclaration, go back to the first method.
489 return cast<ObjCContainerDecl>(CtxD)->getMethod(getSelector(),
490 isInstanceMethod());
491 }
492
Argyrios Kyrtzidis57ea6be2009-07-21 00:06:36 +0000493 return Redecl ? Redecl : this;
494}
495
Argyrios Kyrtzidise7f9d302009-07-28 05:11:17 +0000496ObjCMethodDecl *ObjCMethodDecl::getCanonicalDecl() {
497 Decl *CtxD = cast<Decl>(getDeclContext());
498
499 if (ObjCImplementationDecl *ImplD = dyn_cast<ObjCImplementationDecl>(CtxD)) {
500 if (ObjCInterfaceDecl *IFD = ImplD->getClassInterface())
501 if (ObjCMethodDecl *MD = IFD->getMethod(getSelector(),
502 isInstanceMethod()))
503 return MD;
504
505 } else if (ObjCCategoryImplDecl *CImplD =
506 dyn_cast<ObjCCategoryImplDecl>(CtxD)) {
Steve Naroff0d69b8c2009-10-29 21:11:04 +0000507 if (ObjCCategoryDecl *CatD = CImplD->getCategoryDecl())
Argyrios Kyrtzidise7f9d302009-07-28 05:11:17 +0000508 if (ObjCMethodDecl *MD = CatD->getMethod(getSelector(),
509 isInstanceMethod()))
510 return MD;
511 }
512
Argyrios Kyrtzidis6d4740e2011-10-17 19:48:09 +0000513 if (isRedeclaration())
514 return cast<ObjCContainerDecl>(CtxD)->getMethod(getSelector(),
515 isInstanceMethod());
516
Argyrios Kyrtzidise7f9d302009-07-28 05:11:17 +0000517 return this;
518}
519
John McCall85f3d762011-03-02 01:50:55 +0000520ObjCMethodFamily ObjCMethodDecl::getMethodFamily() const {
521 ObjCMethodFamily family = static_cast<ObjCMethodFamily>(Family);
John McCalld976c8e2011-03-02 21:01:41 +0000522 if (family != static_cast<unsigned>(InvalidObjCMethodFamily))
John McCall85f3d762011-03-02 01:50:55 +0000523 return family;
524
John McCalld5313b02011-03-02 11:33:24 +0000525 // Check for an explicit attribute.
526 if (const ObjCMethodFamilyAttr *attr = getAttr<ObjCMethodFamilyAttr>()) {
527 // The unfortunate necessity of mapping between enums here is due
528 // to the attributes framework.
529 switch (attr->getFamily()) {
530 case ObjCMethodFamilyAttr::OMF_None: family = OMF_None; break;
531 case ObjCMethodFamilyAttr::OMF_alloc: family = OMF_alloc; break;
532 case ObjCMethodFamilyAttr::OMF_copy: family = OMF_copy; break;
533 case ObjCMethodFamilyAttr::OMF_init: family = OMF_init; break;
534 case ObjCMethodFamilyAttr::OMF_mutableCopy: family = OMF_mutableCopy; break;
535 case ObjCMethodFamilyAttr::OMF_new: family = OMF_new; break;
536 }
537 Family = static_cast<unsigned>(family);
538 return family;
539 }
540
John McCall85f3d762011-03-02 01:50:55 +0000541 family = getSelector().getMethodFamily();
542 switch (family) {
543 case OMF_None: break;
544
545 // init only has a conventional meaning for an instance method, and
546 // it has to return an object.
547 case OMF_init:
548 if (!isInstanceMethod() || !getResultType()->isObjCObjectPointerType())
549 family = OMF_None;
550 break;
551
552 // alloc/copy/new have a conventional meaning for both class and
553 // instance methods, but they require an object return.
554 case OMF_alloc:
555 case OMF_copy:
556 case OMF_mutableCopy:
557 case OMF_new:
558 if (!getResultType()->isObjCObjectPointerType())
559 family = OMF_None;
560 break;
561
562 // These selectors have a conventional meaning only for instance methods.
563 case OMF_dealloc:
Nico Weber80cb6e62011-08-28 22:35:17 +0000564 case OMF_finalize:
John McCall85f3d762011-03-02 01:50:55 +0000565 case OMF_retain:
566 case OMF_release:
567 case OMF_autorelease:
568 case OMF_retainCount:
Douglas Gregor926df6c2011-06-11 01:09:30 +0000569 case OMF_self:
John McCall85f3d762011-03-02 01:50:55 +0000570 if (!isInstanceMethod())
571 family = OMF_None;
572 break;
Fariborz Jahanian9670e172011-07-05 22:38:59 +0000573
574 case OMF_performSelector:
575 if (!isInstanceMethod() ||
576 !getResultType()->isObjCIdType())
577 family = OMF_None;
578 else {
579 unsigned noParams = param_size();
580 if (noParams < 1 || noParams > 3)
581 family = OMF_None;
582 else {
583 ObjCMethodDecl::arg_type_iterator it = arg_type_begin();
584 QualType ArgT = (*it);
585 if (!ArgT->isObjCSelType()) {
586 family = OMF_None;
587 break;
588 }
589 while (--noParams) {
590 it++;
591 ArgT = (*it);
592 if (!ArgT->isObjCIdType()) {
593 family = OMF_None;
594 break;
595 }
596 }
597 }
598 }
599 break;
600
John McCall85f3d762011-03-02 01:50:55 +0000601 }
602
603 // Cache the result.
604 Family = static_cast<unsigned>(family);
605 return family;
606}
607
Mike Stump1eb44332009-09-09 15:08:12 +0000608void ObjCMethodDecl::createImplicitParams(ASTContext &Context,
Chris Lattnerab351632009-02-20 20:59:54 +0000609 const ObjCInterfaceDecl *OID) {
610 QualType selfTy;
611 if (isInstanceMethod()) {
612 // There may be no interface context due to error in declaration
613 // of the interface (which has been reported). Recover gracefully.
614 if (OID) {
Daniel Dunbar3b3a4582009-04-22 04:34:53 +0000615 selfTy = Context.getObjCInterfaceType(OID);
Steve Naroff14108da2009-07-10 23:34:53 +0000616 selfTy = Context.getObjCObjectPointerType(selfTy);
Chris Lattnerab351632009-02-20 20:59:54 +0000617 } else {
618 selfTy = Context.getObjCIdType();
619 }
620 } else // we have a factory method.
621 selfTy = Context.getObjCClassType();
622
John McCall7acddac2011-06-17 06:42:21 +0000623 bool selfIsPseudoStrong = false;
John McCallf85e1932011-06-15 23:02:42 +0000624 bool selfIsConsumed = false;
Ted Kremenek2bbcd5c2011-11-14 21:59:25 +0000625
626 if (Context.getLangOptions().ObjCAutoRefCount) {
627 if (isInstanceMethod()) {
628 selfIsConsumed = hasAttr<NSConsumesSelfAttr>();
John McCallf85e1932011-06-15 23:02:42 +0000629
Ted Kremenek2bbcd5c2011-11-14 21:59:25 +0000630 // 'self' is always __strong. It's actually pseudo-strong except
631 // in init methods (or methods labeled ns_consumes_self), though.
632 Qualifiers qs;
633 qs.setObjCLifetime(Qualifiers::OCL_Strong);
634 selfTy = Context.getQualifiedType(selfTy, qs);
John McCallf85e1932011-06-15 23:02:42 +0000635
Ted Kremenek2bbcd5c2011-11-14 21:59:25 +0000636 // In addition, 'self' is const unless this is an init method.
637 if (getMethodFamily() != OMF_init && !selfIsConsumed) {
638 selfTy = selfTy.withConst();
639 selfIsPseudoStrong = true;
640 }
641 }
642 else {
643 assert(isClassMethod());
644 // 'self' is always const in class methods.
John McCallf85e1932011-06-15 23:02:42 +0000645 selfTy = selfTy.withConst();
John McCall7acddac2011-06-17 06:42:21 +0000646 selfIsPseudoStrong = true;
647 }
John McCallf85e1932011-06-15 23:02:42 +0000648 }
649
650 ImplicitParamDecl *self
651 = ImplicitParamDecl::Create(Context, this, SourceLocation(),
652 &Context.Idents.get("self"), selfTy);
653 setSelfDecl(self);
654
655 if (selfIsConsumed)
656 self->addAttr(new (Context) NSConsumedAttr(SourceLocation(), Context));
Chris Lattnerab351632009-02-20 20:59:54 +0000657
John McCall7acddac2011-06-17 06:42:21 +0000658 if (selfIsPseudoStrong)
659 self->setARCPseudoStrong(true);
660
Mike Stump1eb44332009-09-09 15:08:12 +0000661 setCmdDecl(ImplicitParamDecl::Create(Context, this, SourceLocation(),
662 &Context.Idents.get("_cmd"),
Steve Naroff53c9d8a2009-04-20 15:06:07 +0000663 Context.getObjCSelType()));
Chris Lattnerab351632009-02-20 20:59:54 +0000664}
665
Chris Lattnerab351632009-02-20 20:59:54 +0000666ObjCInterfaceDecl *ObjCMethodDecl::getClassInterface() {
667 if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(getDeclContext()))
668 return ID;
669 if (ObjCCategoryDecl *CD = dyn_cast<ObjCCategoryDecl>(getDeclContext()))
670 return CD->getClassInterface();
Argyrios Kyrtzidisa8530372009-07-28 05:10:52 +0000671 if (ObjCImplDecl *IMD = dyn_cast<ObjCImplDecl>(getDeclContext()))
Chris Lattnerab351632009-02-20 20:59:54 +0000672 return IMD->getClassInterface();
Argyrios Kyrtzidisa8530372009-07-28 05:10:52 +0000673
674 assert(!isa<ObjCProtocolDecl>(getDeclContext()) && "It's a protocol method");
David Blaikieb219cfc2011-09-23 05:06:16 +0000675 llvm_unreachable("unknown method context");
Fariborz Jahanianae6f6fd2008-12-05 22:32:48 +0000676}
677
Chris Lattnerab351632009-02-20 20:59:54 +0000678//===----------------------------------------------------------------------===//
679// ObjCInterfaceDecl
680//===----------------------------------------------------------------------===//
681
682ObjCInterfaceDecl *ObjCInterfaceDecl::Create(ASTContext &C,
683 DeclContext *DC,
684 SourceLocation atLoc,
Mike Stump1eb44332009-09-09 15:08:12 +0000685 IdentifierInfo *Id,
Douglas Gregor0af55012011-12-16 03:12:41 +0000686 ObjCInterfaceDecl *PrevDecl,
Chris Lattnerab351632009-02-20 20:59:54 +0000687 SourceLocation ClassLoc,
Douglas Gregor7723fec2011-12-15 20:29:51 +0000688 bool isInternal){
Douglas Gregor0af55012011-12-16 03:12:41 +0000689 ObjCInterfaceDecl *Result = new (C) ObjCInterfaceDecl(DC, atLoc, Id, ClassLoc,
Douglas Gregorfd002a72011-12-16 22:37:11 +0000690 PrevDecl, isInternal);
Douglas Gregor0af55012011-12-16 03:12:41 +0000691 C.getObjCInterfaceType(Result, PrevDecl);
Douglas Gregor0af55012011-12-16 03:12:41 +0000692 return Result;
693}
694
695ObjCInterfaceDecl *ObjCInterfaceDecl::CreateEmpty(ASTContext &C) {
696 return new (C) ObjCInterfaceDecl(0, SourceLocation(), 0, SourceLocation(),
Douglas Gregorfd002a72011-12-16 22:37:11 +0000697 0, false);
Chris Lattnerab351632009-02-20 20:59:54 +0000698}
699
700ObjCInterfaceDecl::
701ObjCInterfaceDecl(DeclContext *DC, SourceLocation atLoc, IdentifierInfo *Id,
Douglas Gregorfd002a72011-12-16 22:37:11 +0000702 SourceLocation CLoc, ObjCInterfaceDecl *PrevDecl,
703 bool isInternal)
Argyrios Kyrtzidis1711fc92011-10-04 04:48:02 +0000704 : ObjCContainerDecl(ObjCInterface, DC, Id, CLoc, atLoc),
Douglas Gregor7723fec2011-12-15 20:29:51 +0000705 TypeForDecl(0), Data()
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000706{
Douglas Gregorfd002a72011-12-16 22:37:11 +0000707 setPreviousDeclaration(PrevDecl);
708
709 // Copy the 'data' pointer over.
710 if (PrevDecl)
711 Data = PrevDecl->Data;
712
Argyrios Kyrtzidis40f57ee2011-11-15 06:20:21 +0000713 setImplicit(isInternal);
Chris Lattnerab351632009-02-20 20:59:54 +0000714}
715
Douglas Gregor26ac3f32010-12-01 23:49:52 +0000716void ObjCInterfaceDecl::LoadExternalDefinition() const {
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000717 assert(data().ExternallyCompleted && "Class is not externally completed");
718 data().ExternallyCompleted = false;
Douglas Gregor26ac3f32010-12-01 23:49:52 +0000719 getASTContext().getExternalSource()->CompleteType(
720 const_cast<ObjCInterfaceDecl *>(this));
721}
722
723void ObjCInterfaceDecl::setExternallyCompleted() {
724 assert(getASTContext().getExternalSource() &&
725 "Class can't be externally completed without an external source");
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000726 assert(hasDefinition() &&
Douglas Gregor26ac3f32010-12-01 23:49:52 +0000727 "Forward declarations can't be externally completed");
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000728 data().ExternallyCompleted = true;
Douglas Gregor26ac3f32010-12-01 23:49:52 +0000729}
730
Argyrios Kyrtzidis8a1d7222009-07-21 00:05:53 +0000731ObjCImplementationDecl *ObjCInterfaceDecl::getImplementation() const {
Douglas Gregor7723fec2011-12-15 20:29:51 +0000732 if (const ObjCInterfaceDecl *Def = getDefinition()) {
733 if (data().ExternallyCompleted)
734 LoadExternalDefinition();
735
736 return getASTContext().getObjCImplementation(
737 const_cast<ObjCInterfaceDecl*>(Def));
738 }
739
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000740 // FIXME: Should make sure no callers ever do this.
Douglas Gregor7723fec2011-12-15 20:29:51 +0000741 return 0;
Argyrios Kyrtzidis8a1d7222009-07-21 00:05:53 +0000742}
743
744void ObjCInterfaceDecl::setImplementation(ObjCImplementationDecl *ImplD) {
Douglas Gregor7723fec2011-12-15 20:29:51 +0000745 getASTContext().setObjCImplementation(getDefinition(), ImplD);
Argyrios Kyrtzidis8a1d7222009-07-21 00:05:53 +0000746}
747
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +0000748/// all_declared_ivar_begin - return first ivar declared in this class,
749/// its extensions and its implementation. Lazily build the list on first
750/// access.
751ObjCIvarDecl *ObjCInterfaceDecl::all_declared_ivar_begin() {
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000752 // FIXME: Should make sure no callers ever do this.
753 if (!hasDefinition())
754 return 0;
755
756 if (data().IvarList)
757 return data().IvarList;
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +0000758
759 ObjCIvarDecl *curIvar = 0;
760 if (!ivar_empty()) {
761 ObjCInterfaceDecl::ivar_iterator I = ivar_begin(), E = ivar_end();
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000762 data().IvarList = (*I); ++I;
763 for (curIvar = data().IvarList; I != E; curIvar = *I, ++I)
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +0000764 curIvar->setNextIvar(*I);
765 }
766
767 for (const ObjCCategoryDecl *CDecl = getFirstClassExtension(); CDecl;
768 CDecl = CDecl->getNextClassExtension()) {
769 if (!CDecl->ivar_empty()) {
770 ObjCCategoryDecl::ivar_iterator I = CDecl->ivar_begin(),
771 E = CDecl->ivar_end();
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000772 if (!data().IvarList) {
773 data().IvarList = (*I); ++I;
774 curIvar = data().IvarList;
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +0000775 }
776 for ( ;I != E; curIvar = *I, ++I)
777 curIvar->setNextIvar(*I);
778 }
779 }
780
781 if (ObjCImplementationDecl *ImplDecl = getImplementation()) {
782 if (!ImplDecl->ivar_empty()) {
783 ObjCImplementationDecl::ivar_iterator I = ImplDecl->ivar_begin(),
784 E = ImplDecl->ivar_end();
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000785 if (!data().IvarList) {
786 data().IvarList = (*I); ++I;
787 curIvar = data().IvarList;
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +0000788 }
789 for ( ;I != E; curIvar = *I, ++I)
790 curIvar->setNextIvar(*I);
791 }
792 }
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000793 return data().IvarList;
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +0000794}
Chris Lattnerab351632009-02-20 20:59:54 +0000795
796/// FindCategoryDeclaration - Finds category declaration in the list of
797/// categories for this class and returns it. Name of the category is passed
798/// in 'CategoryId'. If category not found, return 0;
Fariborz Jahanianae6f6fd2008-12-05 22:32:48 +0000799///
Chris Lattnerab351632009-02-20 20:59:54 +0000800ObjCCategoryDecl *
801ObjCInterfaceDecl::FindCategoryDeclaration(IdentifierInfo *CategoryId) const {
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000802 if (data().ExternallyCompleted)
Douglas Gregor26ac3f32010-12-01 23:49:52 +0000803 LoadExternalDefinition();
804
Chris Lattnerab351632009-02-20 20:59:54 +0000805 for (ObjCCategoryDecl *Category = getCategoryList();
806 Category; Category = Category->getNextClassCategory())
807 if (Category->getIdentifier() == CategoryId)
808 return Category;
Fariborz Jahanianae6f6fd2008-12-05 22:32:48 +0000809 return 0;
810}
811
Argyrios Kyrtzidis1cb35dd2009-07-21 00:06:20 +0000812ObjCMethodDecl *
813ObjCInterfaceDecl::getCategoryInstanceMethod(Selector Sel) const {
814 for (ObjCCategoryDecl *Category = getCategoryList();
815 Category; Category = Category->getNextClassCategory())
816 if (ObjCCategoryImplDecl *Impl = Category->getImplementation())
817 if (ObjCMethodDecl *MD = Impl->getInstanceMethod(Sel))
818 return MD;
819 return 0;
820}
821
822ObjCMethodDecl *ObjCInterfaceDecl::getCategoryClassMethod(Selector Sel) const {
823 for (ObjCCategoryDecl *Category = getCategoryList();
824 Category; Category = Category->getNextClassCategory())
825 if (ObjCCategoryImplDecl *Impl = Category->getImplementation())
826 if (ObjCMethodDecl *MD = Impl->getClassMethod(Sel))
827 return MD;
828 return 0;
829}
830
Fariborz Jahanian0fd89042009-08-11 22:02:25 +0000831/// ClassImplementsProtocol - Checks that 'lProto' protocol
832/// has been implemented in IDecl class, its super class or categories (if
833/// lookupCategory is true).
834bool ObjCInterfaceDecl::ClassImplementsProtocol(ObjCProtocolDecl *lProto,
835 bool lookupCategory,
836 bool RHSIsQualifiedID) {
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000837 if (!hasDefinition())
838 return false;
839
Fariborz Jahanian0fd89042009-08-11 22:02:25 +0000840 ObjCInterfaceDecl *IDecl = this;
841 // 1st, look up the class.
842 const ObjCList<ObjCProtocolDecl> &Protocols =
843 IDecl->getReferencedProtocols();
Mike Stump1eb44332009-09-09 15:08:12 +0000844
Fariborz Jahanian0fd89042009-08-11 22:02:25 +0000845 for (ObjCList<ObjCProtocolDecl>::iterator PI = Protocols.begin(),
846 E = Protocols.end(); PI != E; ++PI) {
847 if (getASTContext().ProtocolCompatibleWithProtocol(lProto, *PI))
848 return true;
849 // This is dubious and is added to be compatible with gcc. In gcc, it is
850 // also allowed assigning a protocol-qualified 'id' type to a LHS object
851 // when protocol in qualified LHS is in list of protocols in the rhs 'id'
852 // object. This IMO, should be a bug.
853 // FIXME: Treat this as an extension, and flag this as an error when GCC
854 // extensions are not enabled.
Mike Stump1eb44332009-09-09 15:08:12 +0000855 if (RHSIsQualifiedID &&
Fariborz Jahanian0fd89042009-08-11 22:02:25 +0000856 getASTContext().ProtocolCompatibleWithProtocol(*PI, lProto))
857 return true;
858 }
Mike Stump1eb44332009-09-09 15:08:12 +0000859
Fariborz Jahanian0fd89042009-08-11 22:02:25 +0000860 // 2nd, look up the category.
861 if (lookupCategory)
862 for (ObjCCategoryDecl *CDecl = IDecl->getCategoryList(); CDecl;
863 CDecl = CDecl->getNextClassCategory()) {
864 for (ObjCCategoryDecl::protocol_iterator PI = CDecl->protocol_begin(),
865 E = CDecl->protocol_end(); PI != E; ++PI)
866 if (getASTContext().ProtocolCompatibleWithProtocol(lProto, *PI))
867 return true;
868 }
Mike Stump1eb44332009-09-09 15:08:12 +0000869
Fariborz Jahanian0fd89042009-08-11 22:02:25 +0000870 // 3rd, look up the super class(s)
871 if (IDecl->getSuperClass())
872 return
873 IDecl->getSuperClass()->ClassImplementsProtocol(lProto, lookupCategory,
874 RHSIsQualifiedID);
Mike Stump1eb44332009-09-09 15:08:12 +0000875
Fariborz Jahanian0fd89042009-08-11 22:02:25 +0000876 return false;
877}
878
Chris Lattnerab351632009-02-20 20:59:54 +0000879//===----------------------------------------------------------------------===//
880// ObjCIvarDecl
881//===----------------------------------------------------------------------===//
882
David Blaikie99ba9e32011-12-20 02:48:34 +0000883void ObjCIvarDecl::anchor() { }
884
Daniel Dunbara0654922010-04-02 20:10:03 +0000885ObjCIvarDecl *ObjCIvarDecl::Create(ASTContext &C, ObjCContainerDecl *DC,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +0000886 SourceLocation StartLoc,
887 SourceLocation IdLoc, IdentifierInfo *Id,
John McCalla93c9342009-12-07 02:54:59 +0000888 QualType T, TypeSourceInfo *TInfo,
Fariborz Jahanianad51e742010-07-17 00:59:30 +0000889 AccessControl ac, Expr *BW,
890 bool synthesized) {
Daniel Dunbara0654922010-04-02 20:10:03 +0000891 if (DC) {
892 // Ivar's can only appear in interfaces, implementations (via synthesized
893 // properties), and class extensions (via direct declaration, or synthesized
894 // properties).
895 //
896 // FIXME: This should really be asserting this:
897 // (isa<ObjCCategoryDecl>(DC) &&
898 // cast<ObjCCategoryDecl>(DC)->IsClassExtension()))
899 // but unfortunately we sometimes place ivars into non-class extension
900 // categories on error. This breaks an AST invariant, and should not be
901 // fixed.
902 assert((isa<ObjCInterfaceDecl>(DC) || isa<ObjCImplementationDecl>(DC) ||
903 isa<ObjCCategoryDecl>(DC)) &&
904 "Invalid ivar decl context!");
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +0000905 // Once a new ivar is created in any of class/class-extension/implementation
906 // decl contexts, the previously built IvarList must be rebuilt.
907 ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(DC);
908 if (!ID) {
Fariborz Jahanian000835d2010-08-23 18:51:39 +0000909 if (ObjCImplementationDecl *IM = dyn_cast<ObjCImplementationDecl>(DC)) {
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +0000910 ID = IM->getClassInterface();
Fariborz Jahanian000835d2010-08-23 18:51:39 +0000911 if (BW)
912 IM->setHasSynthBitfield(true);
Chad Rosier30601782011-08-17 23:08:45 +0000913 } else {
Fariborz Jahanian000835d2010-08-23 18:51:39 +0000914 ObjCCategoryDecl *CD = cast<ObjCCategoryDecl>(DC);
915 ID = CD->getClassInterface();
916 if (BW)
917 CD->setHasSynthBitfield(true);
918 }
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +0000919 }
920 ID->setIvarList(0);
Daniel Dunbara0654922010-04-02 20:10:03 +0000921 }
922
Abramo Bagnaraff676cb2011-03-08 08:55:46 +0000923 return new (C) ObjCIvarDecl(DC, StartLoc, IdLoc, Id, T, TInfo,
924 ac, BW, synthesized);
Chris Lattnerab351632009-02-20 20:59:54 +0000925}
926
Daniel Dunbar27a961a2010-04-02 21:13:59 +0000927const ObjCInterfaceDecl *ObjCIvarDecl::getContainingInterface() const {
928 const ObjCContainerDecl *DC = cast<ObjCContainerDecl>(getDeclContext());
Chris Lattnerab351632009-02-20 20:59:54 +0000929
Daniel Dunbar27a961a2010-04-02 21:13:59 +0000930 switch (DC->getKind()) {
931 default:
932 case ObjCCategoryImpl:
933 case ObjCProtocol:
David Blaikieb219cfc2011-09-23 05:06:16 +0000934 llvm_unreachable("invalid ivar container!");
Daniel Dunbar27a961a2010-04-02 21:13:59 +0000935
936 // Ivars can only appear in class extension categories.
937 case ObjCCategory: {
938 const ObjCCategoryDecl *CD = cast<ObjCCategoryDecl>(DC);
939 assert(CD->IsClassExtension() && "invalid container for ivar!");
940 return CD->getClassInterface();
941 }
942
943 case ObjCImplementation:
944 return cast<ObjCImplementationDecl>(DC)->getClassInterface();
945
946 case ObjCInterface:
947 return cast<ObjCInterfaceDecl>(DC);
948 }
949}
Chris Lattnerab351632009-02-20 20:59:54 +0000950
951//===----------------------------------------------------------------------===//
952// ObjCAtDefsFieldDecl
953//===----------------------------------------------------------------------===//
954
David Blaikie99ba9e32011-12-20 02:48:34 +0000955void ObjCAtDefsFieldDecl::anchor() { }
956
Chris Lattnerab351632009-02-20 20:59:54 +0000957ObjCAtDefsFieldDecl
Abramo Bagnaraff676cb2011-03-08 08:55:46 +0000958*ObjCAtDefsFieldDecl::Create(ASTContext &C, DeclContext *DC,
959 SourceLocation StartLoc, SourceLocation IdLoc,
Chris Lattnerab351632009-02-20 20:59:54 +0000960 IdentifierInfo *Id, QualType T, Expr *BW) {
Abramo Bagnaraff676cb2011-03-08 08:55:46 +0000961 return new (C) ObjCAtDefsFieldDecl(DC, StartLoc, IdLoc, Id, T, BW);
Chris Lattnerab351632009-02-20 20:59:54 +0000962}
963
Chris Lattnerab351632009-02-20 20:59:54 +0000964//===----------------------------------------------------------------------===//
965// ObjCProtocolDecl
966//===----------------------------------------------------------------------===//
967
David Blaikie99ba9e32011-12-20 02:48:34 +0000968void ObjCProtocolDecl::anchor() { }
969
Chris Lattnerab351632009-02-20 20:59:54 +0000970ObjCProtocolDecl *ObjCProtocolDecl::Create(ASTContext &C, DeclContext *DC,
Argyrios Kyrtzidis1711fc92011-10-04 04:48:02 +0000971 IdentifierInfo *Id,
972 SourceLocation nameLoc,
Argyrios Kyrtzidisb05d7b22011-10-17 19:48:06 +0000973 SourceLocation atStartLoc,
974 bool isForwardDecl) {
975 return new (C) ObjCProtocolDecl(DC, Id, nameLoc, atStartLoc, isForwardDecl);
Chris Lattnerab351632009-02-20 20:59:54 +0000976}
977
Steve Naroff91b0b0c2009-03-01 16:12:44 +0000978ObjCProtocolDecl *ObjCProtocolDecl::lookupProtocolNamed(IdentifierInfo *Name) {
979 ObjCProtocolDecl *PDecl = this;
980
981 if (Name == getIdentifier())
982 return PDecl;
983
984 for (protocol_iterator I = protocol_begin(), E = protocol_end(); I != E; ++I)
985 if ((PDecl = (*I)->lookupProtocolNamed(Name)))
986 return PDecl;
Mike Stump1eb44332009-09-09 15:08:12 +0000987
Steve Naroff91b0b0c2009-03-01 16:12:44 +0000988 return NULL;
989}
990
Argyrios Kyrtzidis094e2bb2009-07-25 22:15:38 +0000991// lookupMethod - Lookup a instance/class method in the protocol and protocols
Chris Lattnerab351632009-02-20 20:59:54 +0000992// it inherited.
Argyrios Kyrtzidis094e2bb2009-07-25 22:15:38 +0000993ObjCMethodDecl *ObjCProtocolDecl::lookupMethod(Selector Sel,
994 bool isInstance) const {
Chris Lattnerab351632009-02-20 20:59:54 +0000995 ObjCMethodDecl *MethodDecl = NULL;
Mike Stump1eb44332009-09-09 15:08:12 +0000996
Argyrios Kyrtzidis094e2bb2009-07-25 22:15:38 +0000997 if ((MethodDecl = getMethod(Sel, isInstance)))
Chris Lattnerab351632009-02-20 20:59:54 +0000998 return MethodDecl;
Mike Stump1eb44332009-09-09 15:08:12 +0000999
Chris Lattnerab351632009-02-20 20:59:54 +00001000 for (protocol_iterator I = protocol_begin(), E = protocol_end(); I != E; ++I)
Argyrios Kyrtzidis094e2bb2009-07-25 22:15:38 +00001001 if ((MethodDecl = (*I)->lookupMethod(Sel, isInstance)))
Chris Lattnerab351632009-02-20 20:59:54 +00001002 return MethodDecl;
1003 return NULL;
1004}
1005
Argyrios Kyrtzidisad834d52011-11-12 21:07:46 +00001006void ObjCProtocolDecl::completedForwardDecl() {
1007 assert(isForwardDecl() && "Only valid to call for forward refs");
1008 isForwardProtoDecl = false;
1009 if (ASTMutationListener *L = getASTContext().getASTMutationListener())
1010 L->CompletedObjCForwardRef(this);
1011}
1012
Chris Lattnerab351632009-02-20 20:59:54 +00001013//===----------------------------------------------------------------------===//
1014// ObjCClassDecl
1015//===----------------------------------------------------------------------===//
1016
Mike Stump1eb44332009-09-09 15:08:12 +00001017ObjCClassDecl::ObjCClassDecl(DeclContext *DC, SourceLocation L,
Douglas Gregoraf764722011-12-14 17:12:03 +00001018 ObjCInterfaceDecl *Interface,
1019 SourceLocation InterfaceLoc)
1020 : Decl(ObjCClass, DC, L), Interface(Interface), InterfaceLoc(InterfaceLoc)
1021{
Ted Kremenek321c22f2009-11-18 00:28:11 +00001022}
Chris Lattner38af2de2009-02-20 21:35:13 +00001023
Chris Lattnerab351632009-02-20 20:59:54 +00001024ObjCClassDecl *ObjCClassDecl::Create(ASTContext &C, DeclContext *DC,
1025 SourceLocation L,
Douglas Gregoraf764722011-12-14 17:12:03 +00001026 ObjCInterfaceDecl *Interface,
1027 SourceLocation InterfaceLoc) {
1028 return new (C) ObjCClassDecl(DC, L, Interface, InterfaceLoc);
Chris Lattnerab351632009-02-20 20:59:54 +00001029}
1030
Ted Kremenek2dbdd622009-11-18 01:26:56 +00001031SourceRange ObjCClassDecl::getSourceRange() const {
Douglas Gregoraf764722011-12-14 17:12:03 +00001032 return SourceRange(getLocation(), InterfaceLoc);
Ted Kremenek2dbdd622009-11-18 01:26:56 +00001033}
1034
Chris Lattnerab351632009-02-20 20:59:54 +00001035//===----------------------------------------------------------------------===//
1036// ObjCForwardProtocolDecl
1037//===----------------------------------------------------------------------===//
1038
David Blaikie99ba9e32011-12-20 02:48:34 +00001039void ObjCForwardProtocolDecl::anchor() { }
1040
Chris Lattner38af2de2009-02-20 21:35:13 +00001041ObjCForwardProtocolDecl::
1042ObjCForwardProtocolDecl(DeclContext *DC, SourceLocation L,
1043 ObjCProtocolDecl *const *Elts, unsigned nElts,
Douglas Gregor18df52b2010-01-16 15:02:53 +00001044 const SourceLocation *Locs, ASTContext &C)
Mike Stump1eb44332009-09-09 15:08:12 +00001045: Decl(ObjCForwardProtocol, DC, L) {
Douglas Gregor18df52b2010-01-16 15:02:53 +00001046 ReferencedProtocols.set(Elts, nElts, Locs, C);
Chris Lattner38af2de2009-02-20 21:35:13 +00001047}
1048
1049
Chris Lattnerab351632009-02-20 20:59:54 +00001050ObjCForwardProtocolDecl *
1051ObjCForwardProtocolDecl::Create(ASTContext &C, DeclContext *DC,
Mike Stump1eb44332009-09-09 15:08:12 +00001052 SourceLocation L,
Chris Lattnerab351632009-02-20 20:59:54 +00001053 ObjCProtocolDecl *const *Elts,
Douglas Gregor18df52b2010-01-16 15:02:53 +00001054 unsigned NumElts,
1055 const SourceLocation *Locs) {
1056 return new (C) ObjCForwardProtocolDecl(DC, L, Elts, NumElts, Locs, C);
Chris Lattnerab351632009-02-20 20:59:54 +00001057}
1058
Chris Lattnerab351632009-02-20 20:59:54 +00001059//===----------------------------------------------------------------------===//
1060// ObjCCategoryDecl
1061//===----------------------------------------------------------------------===//
1062
David Blaikie99ba9e32011-12-20 02:48:34 +00001063void ObjCCategoryDecl::anchor() { }
1064
Chris Lattnerab351632009-02-20 20:59:54 +00001065ObjCCategoryDecl *ObjCCategoryDecl::Create(ASTContext &C, DeclContext *DC,
Douglas Gregor3db211b2010-01-16 16:38:58 +00001066 SourceLocation AtLoc,
1067 SourceLocation ClassNameLoc,
1068 SourceLocation CategoryNameLoc,
Argyrios Kyrtzidis955fadb2011-08-30 19:43:26 +00001069 IdentifierInfo *Id,
1070 ObjCInterfaceDecl *IDecl) {
1071 ObjCCategoryDecl *CatDecl = new (C) ObjCCategoryDecl(DC, AtLoc, ClassNameLoc,
1072 CategoryNameLoc, Id,
1073 IDecl);
1074 if (IDecl) {
1075 // Link this category into its class's category list.
1076 CatDecl->NextClassCategory = IDecl->getCategoryList();
Douglas Gregor2e5c15b2011-12-15 05:27:12 +00001077 if (IDecl->hasDefinition()) {
1078 IDecl->setCategoryList(CatDecl);
1079 if (ASTMutationListener *L = C.getASTMutationListener())
1080 L->AddedObjCCategoryToInterface(CatDecl, IDecl);
1081 }
Argyrios Kyrtzidis955fadb2011-08-30 19:43:26 +00001082 }
1083
1084 return CatDecl;
1085}
1086
1087ObjCCategoryDecl *ObjCCategoryDecl::Create(ASTContext &C, EmptyShell Empty) {
1088 return new (C) ObjCCategoryDecl(0, SourceLocation(), SourceLocation(),
1089 SourceLocation(), 0, 0);
Chris Lattnerab351632009-02-20 20:59:54 +00001090}
1091
Argyrios Kyrtzidis8a1d7222009-07-21 00:05:53 +00001092ObjCCategoryImplDecl *ObjCCategoryDecl::getImplementation() const {
1093 return getASTContext().getObjCImplementation(
1094 const_cast<ObjCCategoryDecl*>(this));
1095}
1096
1097void ObjCCategoryDecl::setImplementation(ObjCCategoryImplDecl *ImplD) {
1098 getASTContext().setObjCImplementation(this, ImplD);
1099}
1100
1101
Chris Lattnerab351632009-02-20 20:59:54 +00001102//===----------------------------------------------------------------------===//
1103// ObjCCategoryImplDecl
1104//===----------------------------------------------------------------------===//
1105
David Blaikie99ba9e32011-12-20 02:48:34 +00001106void ObjCCategoryImplDecl::anchor() { }
1107
Chris Lattnerab351632009-02-20 20:59:54 +00001108ObjCCategoryImplDecl *
1109ObjCCategoryImplDecl::Create(ASTContext &C, DeclContext *DC,
Argyrios Kyrtzidis1711fc92011-10-04 04:48:02 +00001110 IdentifierInfo *Id,
1111 ObjCInterfaceDecl *ClassInterface,
1112 SourceLocation nameLoc,
Argyrios Kyrtzidisc6994002011-12-09 00:31:40 +00001113 SourceLocation atStartLoc,
1114 SourceLocation CategoryNameLoc) {
Argyrios Kyrtzidis1711fc92011-10-04 04:48:02 +00001115 return new (C) ObjCCategoryImplDecl(DC, Id, ClassInterface,
Argyrios Kyrtzidisc6994002011-12-09 00:31:40 +00001116 nameLoc, atStartLoc, CategoryNameLoc);
Chris Lattnerab351632009-02-20 20:59:54 +00001117}
1118
Steve Naroff0d69b8c2009-10-29 21:11:04 +00001119ObjCCategoryDecl *ObjCCategoryImplDecl::getCategoryDecl() const {
Ted Kremenekebfa3392010-03-19 20:39:03 +00001120 // The class interface might be NULL if we are working with invalid code.
1121 if (const ObjCInterfaceDecl *ID = getClassInterface())
1122 return ID->FindCategoryDeclaration(getIdentifier());
1123 return 0;
Argyrios Kyrtzidis42920732009-07-28 05:11:05 +00001124}
1125
Chris Lattnerab351632009-02-20 20:59:54 +00001126
David Blaikie99ba9e32011-12-20 02:48:34 +00001127void ObjCImplDecl::anchor() { }
1128
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001129void ObjCImplDecl::addPropertyImplementation(ObjCPropertyImplDecl *property) {
Douglas Gregor2c2d43c2009-04-23 02:42:49 +00001130 // FIXME: The context should be correct before we get here.
Douglas Gregor653f1b12009-04-23 01:02:12 +00001131 property->setLexicalDeclContext(this);
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001132 addDecl(property);
Douglas Gregor653f1b12009-04-23 01:02:12 +00001133}
1134
Argyrios Kyrtzidis8a1d7222009-07-21 00:05:53 +00001135void ObjCImplDecl::setClassInterface(ObjCInterfaceDecl *IFace) {
1136 ASTContext &Ctx = getASTContext();
1137
1138 if (ObjCImplementationDecl *ImplD
Duncan Sands98f2cca2009-07-21 07:56:29 +00001139 = dyn_cast_or_null<ObjCImplementationDecl>(this)) {
Argyrios Kyrtzidis8a1d7222009-07-21 00:05:53 +00001140 if (IFace)
1141 Ctx.setObjCImplementation(IFace, ImplD);
1142
Duncan Sands98f2cca2009-07-21 07:56:29 +00001143 } else if (ObjCCategoryImplDecl *ImplD =
Argyrios Kyrtzidis8a1d7222009-07-21 00:05:53 +00001144 dyn_cast_or_null<ObjCCategoryImplDecl>(this)) {
1145 if (ObjCCategoryDecl *CD = IFace->FindCategoryDeclaration(getIdentifier()))
1146 Ctx.setObjCImplementation(CD, ImplD);
1147 }
1148
1149 ClassInterface = IFace;
1150}
1151
Fariborz Jahanianae6f6fd2008-12-05 22:32:48 +00001152/// FindPropertyImplIvarDecl - This method lookup the ivar in the list of
Chris Lattnerd6eed1c2009-02-16 19:24:31 +00001153/// properties implemented in this category @implementation block and returns
1154/// the implemented property that uses it.
Fariborz Jahanianae6f6fd2008-12-05 22:32:48 +00001155///
Chris Lattner3aa18612009-02-28 18:42:10 +00001156ObjCPropertyImplDecl *ObjCImplDecl::
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001157FindPropertyImplIvarDecl(IdentifierInfo *ivarId) const {
1158 for (propimpl_iterator i = propimpl_begin(), e = propimpl_end(); i != e; ++i){
Fariborz Jahanianae6f6fd2008-12-05 22:32:48 +00001159 ObjCPropertyImplDecl *PID = *i;
1160 if (PID->getPropertyIvarDecl() &&
1161 PID->getPropertyIvarDecl()->getIdentifier() == ivarId)
1162 return PID;
1163 }
1164 return 0;
1165}
1166
1167/// FindPropertyImplDecl - This method looks up a previous ObjCPropertyImplDecl
1168/// added to the list of those properties @synthesized/@dynamic in this
1169/// category @implementation block.
1170///
Chris Lattner3aa18612009-02-28 18:42:10 +00001171ObjCPropertyImplDecl *ObjCImplDecl::
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001172FindPropertyImplDecl(IdentifierInfo *Id) const {
1173 for (propimpl_iterator i = propimpl_begin(), e = propimpl_end(); i != e; ++i){
Fariborz Jahanianae6f6fd2008-12-05 22:32:48 +00001174 ObjCPropertyImplDecl *PID = *i;
1175 if (PID->getPropertyDecl()->getIdentifier() == Id)
1176 return PID;
1177 }
1178 return 0;
1179}
1180
Chris Lattner5f9e2722011-07-23 10:55:15 +00001181raw_ostream &clang::operator<<(raw_ostream &OS,
Benjamin Kramer900fc632010-04-17 09:33:03 +00001182 const ObjCCategoryImplDecl *CID) {
1183 OS << CID->getName();
1184 return OS;
1185}
1186
Chris Lattnerab351632009-02-20 20:59:54 +00001187//===----------------------------------------------------------------------===//
1188// ObjCImplementationDecl
1189//===----------------------------------------------------------------------===//
1190
David Blaikie99ba9e32011-12-20 02:48:34 +00001191void ObjCImplementationDecl::anchor() { }
1192
Chris Lattnerab351632009-02-20 20:59:54 +00001193ObjCImplementationDecl *
Mike Stump1eb44332009-09-09 15:08:12 +00001194ObjCImplementationDecl::Create(ASTContext &C, DeclContext *DC,
Chris Lattnerab351632009-02-20 20:59:54 +00001195 ObjCInterfaceDecl *ClassInterface,
Argyrios Kyrtzidis1711fc92011-10-04 04:48:02 +00001196 ObjCInterfaceDecl *SuperDecl,
1197 SourceLocation nameLoc,
1198 SourceLocation atStartLoc) {
1199 return new (C) ObjCImplementationDecl(DC, ClassInterface, SuperDecl,
1200 nameLoc, atStartLoc);
Chris Lattnerab351632009-02-20 20:59:54 +00001201}
1202
John McCallda6d9762011-07-22 04:15:06 +00001203void ObjCImplementationDecl::setIvarInitializers(ASTContext &C,
1204 CXXCtorInitializer ** initializers,
1205 unsigned numInitializers) {
1206 if (numInitializers > 0) {
1207 NumIvarInitializers = numInitializers;
1208 CXXCtorInitializer **ivarInitializers =
1209 new (C) CXXCtorInitializer*[NumIvarInitializers];
1210 memcpy(ivarInitializers, initializers,
1211 numInitializers * sizeof(CXXCtorInitializer*));
1212 IvarInitializers = ivarInitializers;
1213 }
1214}
1215
Chris Lattner5f9e2722011-07-23 10:55:15 +00001216raw_ostream &clang::operator<<(raw_ostream &OS,
Benjamin Kramer900fc632010-04-17 09:33:03 +00001217 const ObjCImplementationDecl *ID) {
1218 OS << ID->getName();
1219 return OS;
1220}
1221
Chris Lattnerab351632009-02-20 20:59:54 +00001222//===----------------------------------------------------------------------===//
1223// ObjCCompatibleAliasDecl
1224//===----------------------------------------------------------------------===//
1225
David Blaikie99ba9e32011-12-20 02:48:34 +00001226void ObjCCompatibleAliasDecl::anchor() { }
1227
Chris Lattnerab351632009-02-20 20:59:54 +00001228ObjCCompatibleAliasDecl *
1229ObjCCompatibleAliasDecl::Create(ASTContext &C, DeclContext *DC,
1230 SourceLocation L,
Mike Stump1eb44332009-09-09 15:08:12 +00001231 IdentifierInfo *Id,
Chris Lattnerab351632009-02-20 20:59:54 +00001232 ObjCInterfaceDecl* AliasedClass) {
1233 return new (C) ObjCCompatibleAliasDecl(DC, L, Id, AliasedClass);
1234}
1235
1236//===----------------------------------------------------------------------===//
1237// ObjCPropertyDecl
1238//===----------------------------------------------------------------------===//
1239
David Blaikie99ba9e32011-12-20 02:48:34 +00001240void ObjCPropertyDecl::anchor() { }
1241
Chris Lattnerab351632009-02-20 20:59:54 +00001242ObjCPropertyDecl *ObjCPropertyDecl::Create(ASTContext &C, DeclContext *DC,
1243 SourceLocation L,
1244 IdentifierInfo *Id,
Fariborz Jahaniand0502402010-01-21 17:36:00 +00001245 SourceLocation AtLoc,
John McCall83a230c2010-06-04 20:50:08 +00001246 TypeSourceInfo *T,
Chris Lattnerab351632009-02-20 20:59:54 +00001247 PropertyControl propControl) {
Fariborz Jahaniand0502402010-01-21 17:36:00 +00001248 return new (C) ObjCPropertyDecl(DC, L, Id, AtLoc, T);
Chris Lattnerab351632009-02-20 20:59:54 +00001249}
1250
Chris Lattnerab351632009-02-20 20:59:54 +00001251//===----------------------------------------------------------------------===//
1252// ObjCPropertyImplDecl
1253//===----------------------------------------------------------------------===//
1254
Fariborz Jahanian628b96f2008-04-23 00:06:01 +00001255ObjCPropertyImplDecl *ObjCPropertyImplDecl::Create(ASTContext &C,
Douglas Gregord0434102009-01-09 00:49:46 +00001256 DeclContext *DC,
Fariborz Jahanian628b96f2008-04-23 00:06:01 +00001257 SourceLocation atLoc,
1258 SourceLocation L,
1259 ObjCPropertyDecl *property,
Daniel Dunbar9f0afd42008-08-26 04:47:31 +00001260 Kind PK,
Douglas Gregora4ffd852010-11-17 01:03:52 +00001261 ObjCIvarDecl *ivar,
1262 SourceLocation ivarLoc) {
1263 return new (C) ObjCPropertyImplDecl(DC, atLoc, L, property, PK, ivar,
1264 ivarLoc);
Fariborz Jahanian628b96f2008-04-23 00:06:01 +00001265}
Chris Lattnerf4af5152008-03-17 01:19:02 +00001266
Douglas Gregora4ffd852010-11-17 01:03:52 +00001267SourceRange ObjCPropertyImplDecl::getSourceRange() const {
1268 SourceLocation EndLoc = getLocation();
1269 if (IvarLoc.isValid())
1270 EndLoc = IvarLoc;
Chris Lattner0ed844b2008-04-04 06:12:32 +00001271
Douglas Gregora4ffd852010-11-17 01:03:52 +00001272 return SourceRange(AtLoc, EndLoc);
1273}