blob: 186a7417b6580c6d0e4007320b83c0e30c6e2956 [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"
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +000016#include "clang/AST/ASTMutationListener.h"
Benjamin Kramer2fa67ef2012-12-01 15:09:41 +000017#include "clang/AST/Attr.h"
18#include "clang/AST/Stmt.h"
Steve Naroff0de21fd2009-02-22 19:35:57 +000019#include "llvm/ADT/STLExtras.h"
Anna Zaksad0ce532012-09-27 19:45:11 +000020#include "llvm/ADT/SmallString.h"
Chris Lattner1e03a562008-03-16 00:19:01 +000021using namespace clang;
22
Chris Lattner6c4ae5d2008-03-16 00:49:28 +000023//===----------------------------------------------------------------------===//
Chris Lattner11e1e1a2009-02-20 21:16:26 +000024// ObjCListBase
25//===----------------------------------------------------------------------===//
26
Chris Lattner38af2de2009-02-20 21:35:13 +000027void ObjCListBase::set(void *const* InList, unsigned Elts, ASTContext &Ctx) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -070028 List = nullptr;
Chris Lattner11e1e1a2009-02-20 21:16:26 +000029 if (Elts == 0) return; // Setting to an empty list is a noop.
Mike Stump1eb44332009-09-09 15:08:12 +000030
31
Chris Lattner4ee413b2009-02-20 21:44:01 +000032 List = new (Ctx) void*[Elts];
Chris Lattner11e1e1a2009-02-20 21:16:26 +000033 NumElts = Elts;
34 memcpy(List, InList, sizeof(void*)*Elts);
35}
36
Douglas Gregor18df52b2010-01-16 15:02:53 +000037void ObjCProtocolList::set(ObjCProtocolDecl* const* InList, unsigned Elts,
38 const SourceLocation *Locs, ASTContext &Ctx) {
39 if (Elts == 0)
40 return;
41
42 Locations = new (Ctx) SourceLocation[Elts];
43 memcpy(Locations, Locs, sizeof(SourceLocation) * Elts);
44 set(InList, Elts, Ctx);
45}
46
Chris Lattner11e1e1a2009-02-20 21:16:26 +000047//===----------------------------------------------------------------------===//
Chris Lattnerab351632009-02-20 20:59:54 +000048// ObjCInterfaceDecl
Chris Lattner6c4ae5d2008-03-16 00:49:28 +000049//===----------------------------------------------------------------------===//
50
David Blaikie99ba9e32011-12-20 02:48:34 +000051void ObjCContainerDecl::anchor() { }
52
Fariborz Jahanian496b5a82009-06-05 18:16:35 +000053/// getIvarDecl - This method looks up an ivar in this ContextDecl.
54///
55ObjCIvarDecl *
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +000056ObjCContainerDecl::getIvarDecl(IdentifierInfo *Id) const {
David Blaikie3bc93e32012-12-19 00:45:41 +000057 lookup_const_result R = lookup(Id);
58 for (lookup_const_iterator Ivar = R.begin(), IvarEnd = R.end();
59 Ivar != IvarEnd; ++Ivar) {
Fariborz Jahanian496b5a82009-06-05 18:16:35 +000060 if (ObjCIvarDecl *ivar = dyn_cast<ObjCIvarDecl>(*Ivar))
61 return ivar;
62 }
Stephen Hines6bcf27b2014-05-29 04:14:42 -070063 return nullptr;
Fariborz Jahanian496b5a82009-06-05 18:16:35 +000064}
65
Argyrios Kyrtzidis467c0b12009-07-25 22:15:22 +000066// Get the local instance/class method declared in this interface.
Douglas Gregor6ab35242009-04-09 21:40:53 +000067ObjCMethodDecl *
Argyrios Kyrtzidis04593d02013-03-29 21:51:48 +000068ObjCContainerDecl::getMethod(Selector Sel, bool isInstance,
69 bool AllowHidden) const {
Douglas Gregor0f9b9f32013-01-17 00:38:46 +000070 // If this context is a hidden protocol definition, don't find any
71 // methods there.
72 if (const ObjCProtocolDecl *Proto = dyn_cast<ObjCProtocolDecl>(this)) {
73 if (const ObjCProtocolDecl *Def = Proto->getDefinition())
Argyrios Kyrtzidis04593d02013-03-29 21:51:48 +000074 if (Def->isHidden() && !AllowHidden)
Stephen Hines6bcf27b2014-05-29 04:14:42 -070075 return nullptr;
Douglas Gregor0f9b9f32013-01-17 00:38:46 +000076 }
77
Steve Naroff0de21fd2009-02-22 19:35:57 +000078 // Since instance & class methods can have the same name, the loop below
79 // ensures we get the correct method.
80 //
81 // @interface Whatever
82 // - (int) class_method;
83 // + (float) class_method;
84 // @end
85 //
David Blaikie3bc93e32012-12-19 00:45:41 +000086 lookup_const_result R = lookup(Sel);
87 for (lookup_const_iterator Meth = R.begin(), MethEnd = R.end();
88 Meth != MethEnd; ++Meth) {
Steve Naroff0de21fd2009-02-22 19:35:57 +000089 ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(*Meth);
Argyrios Kyrtzidis467c0b12009-07-25 22:15:22 +000090 if (MD && MD->isInstanceMethod() == isInstance)
Steve Naroff0de21fd2009-02-22 19:35:57 +000091 return MD;
92 }
Stephen Hines6bcf27b2014-05-29 04:14:42 -070093 return nullptr;
Steve Naroff0701bbb2009-01-08 17:28:14 +000094}
95
Fariborz Jahanian5bdaef52013-03-21 20:50:53 +000096/// HasUserDeclaredSetterMethod - This routine returns 'true' if a user declared setter
97/// method was found in the class, its protocols, its super classes or categories.
98/// It also returns 'true' if one of its categories has declared a 'readwrite' property.
99/// This is because, user must provide a setter method for the category's 'readwrite'
100/// property.
101bool
102ObjCContainerDecl::HasUserDeclaredSetterMethod(const ObjCPropertyDecl *Property) const {
103 Selector Sel = Property->getSetterName();
104 lookup_const_result R = lookup(Sel);
105 for (lookup_const_iterator Meth = R.begin(), MethEnd = R.end();
106 Meth != MethEnd; ++Meth) {
107 ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(*Meth);
108 if (MD && MD->isInstanceMethod() && !MD->isImplicit())
109 return true;
110 }
111
112 if (const ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(this)) {
113 // Also look into categories, including class extensions, looking
114 // for a user declared instance method.
Stephen Hines651f13c2014-04-23 16:59:28 -0700115 for (const auto *Cat : ID->visible_categories()) {
Fariborz Jahanian5bdaef52013-03-21 20:50:53 +0000116 if (ObjCMethodDecl *MD = Cat->getInstanceMethod(Sel))
117 if (!MD->isImplicit())
118 return true;
119 if (Cat->IsClassExtension())
120 continue;
121 // Also search through the categories looking for a 'readwrite' declaration
122 // of this property. If one found, presumably a setter will be provided
123 // (properties declared in categories will not get auto-synthesized).
Stephen Hines651f13c2014-04-23 16:59:28 -0700124 for (const auto *P : Cat->properties())
Fariborz Jahanian5bdaef52013-03-21 20:50:53 +0000125 if (P->getIdentifier() == Property->getIdentifier()) {
126 if (P->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_readwrite)
127 return true;
128 break;
129 }
130 }
131
132 // Also look into protocols, for a user declared instance method.
Stephen Hines651f13c2014-04-23 16:59:28 -0700133 for (const auto *Proto : ID->all_referenced_protocols())
Fariborz Jahanian5bdaef52013-03-21 20:50:53 +0000134 if (Proto->HasUserDeclaredSetterMethod(Property))
135 return true;
Stephen Hines651f13c2014-04-23 16:59:28 -0700136
Fariborz Jahanian5bdaef52013-03-21 20:50:53 +0000137 // And in its super class.
138 ObjCInterfaceDecl *OSC = ID->getSuperClass();
139 while (OSC) {
140 if (OSC->HasUserDeclaredSetterMethod(Property))
141 return true;
142 OSC = OSC->getSuperClass();
143 }
144 }
145 if (const ObjCProtocolDecl *PD = dyn_cast<ObjCProtocolDecl>(this))
Stephen Hines651f13c2014-04-23 16:59:28 -0700146 for (const auto *PI : PD->protocols())
147 if (PI->HasUserDeclaredSetterMethod(Property))
Fariborz Jahanian5bdaef52013-03-21 20:50:53 +0000148 return true;
Fariborz Jahanian5bdaef52013-03-21 20:50:53 +0000149 return false;
150}
151
Ted Kremenek9f550ff2010-03-15 20:11:46 +0000152ObjCPropertyDecl *
Ted Kremenekde09d0c2010-03-15 20:11:53 +0000153ObjCPropertyDecl::findPropertyDecl(const DeclContext *DC,
Ted Kremenek9f550ff2010-03-15 20:11:46 +0000154 IdentifierInfo *propertyID) {
Douglas Gregor0f9b9f32013-01-17 00:38:46 +0000155 // If this context is a hidden protocol definition, don't find any
156 // property.
157 if (const ObjCProtocolDecl *Proto = dyn_cast<ObjCProtocolDecl>(DC)) {
158 if (const ObjCProtocolDecl *Def = Proto->getDefinition())
159 if (Def->isHidden())
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700160 return nullptr;
Douglas Gregor0f9b9f32013-01-17 00:38:46 +0000161 }
Ted Kremenek9f550ff2010-03-15 20:11:46 +0000162
David Blaikie3bc93e32012-12-19 00:45:41 +0000163 DeclContext::lookup_const_result R = DC->lookup(propertyID);
164 for (DeclContext::lookup_const_iterator I = R.begin(), E = R.end(); I != E;
165 ++I)
Ted Kremenek9f550ff2010-03-15 20:11:46 +0000166 if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(*I))
167 return PD;
168
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700169 return nullptr;
Ted Kremenek9f550ff2010-03-15 20:11:46 +0000170}
171
Anna Zaksad0ce532012-09-27 19:45:11 +0000172IdentifierInfo *
173ObjCPropertyDecl::getDefaultSynthIvarName(ASTContext &Ctx) const {
174 SmallString<128> ivarName;
175 {
176 llvm::raw_svector_ostream os(ivarName);
177 os << '_' << getIdentifier()->getName();
178 }
179 return &Ctx.Idents.get(ivarName.str());
180}
181
Fariborz Jahanian559c0c42008-04-21 19:04:53 +0000182/// FindPropertyDeclaration - Finds declaration of the property given its name
183/// in 'PropertyId' and returns it. It returns 0, if not found.
Fariborz Jahanian559c0c42008-04-21 19:04:53 +0000184ObjCPropertyDecl *
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000185ObjCContainerDecl::FindPropertyDeclaration(IdentifierInfo *PropertyId) const {
Douglas Gregor0f9b9f32013-01-17 00:38:46 +0000186 // Don't find properties within hidden protocol definitions.
187 if (const ObjCProtocolDecl *Proto = dyn_cast<ObjCProtocolDecl>(this)) {
188 if (const ObjCProtocolDecl *Def = Proto->getDefinition())
189 if (Def->isHidden())
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700190 return nullptr;
Douglas Gregor0f9b9f32013-01-17 00:38:46 +0000191 }
Mike Stump1eb44332009-09-09 15:08:12 +0000192
Ted Kremenekde09d0c2010-03-15 20:11:53 +0000193 if (ObjCPropertyDecl *PD =
194 ObjCPropertyDecl::findPropertyDecl(cast<DeclContext>(this), PropertyId))
195 return PD;
Mike Stump1eb44332009-09-09 15:08:12 +0000196
Ted Kremenekde09d0c2010-03-15 20:11:53 +0000197 switch (getKind()) {
198 default:
199 break;
200 case Decl::ObjCProtocol: {
201 const ObjCProtocolDecl *PID = cast<ObjCProtocolDecl>(this);
Stephen Hines651f13c2014-04-23 16:59:28 -0700202 for (const auto *I : PID->protocols())
203 if (ObjCPropertyDecl *P = I->FindPropertyDeclaration(PropertyId))
Fariborz Jahanian25760612010-02-15 21:55:26 +0000204 return P;
Ted Kremenekde09d0c2010-03-15 20:11:53 +0000205 break;
206 }
207 case Decl::ObjCInterface: {
208 const ObjCInterfaceDecl *OID = cast<ObjCInterfaceDecl>(this);
Douglas Gregord3297242013-01-16 23:00:23 +0000209 // Look through categories (but not extensions).
Stephen Hines651f13c2014-04-23 16:59:28 -0700210 for (const auto *Cat : OID->visible_categories()) {
Ted Kremenekde09d0c2010-03-15 20:11:53 +0000211 if (!Cat->IsClassExtension())
212 if (ObjCPropertyDecl *P = Cat->FindPropertyDeclaration(PropertyId))
213 return P;
Douglas Gregord3297242013-01-16 23:00:23 +0000214 }
Ted Kremenekde09d0c2010-03-15 20:11:53 +0000215
216 // Look through protocols.
Stephen Hines651f13c2014-04-23 16:59:28 -0700217 for (const auto *I : OID->all_referenced_protocols())
218 if (ObjCPropertyDecl *P = I->FindPropertyDeclaration(PropertyId))
Ted Kremenekde09d0c2010-03-15 20:11:53 +0000219 return P;
220
221 // Finally, check the super class.
222 if (const ObjCInterfaceDecl *superClass = OID->getSuperClass())
223 return superClass->FindPropertyDeclaration(PropertyId);
224 break;
225 }
226 case Decl::ObjCCategory: {
227 const ObjCCategoryDecl *OCD = cast<ObjCCategoryDecl>(this);
228 // Look through protocols.
229 if (!OCD->IsClassExtension())
Stephen Hines651f13c2014-04-23 16:59:28 -0700230 for (const auto *I : OCD->protocols())
231 if (ObjCPropertyDecl *P = I->FindPropertyDeclaration(PropertyId))
232 return P;
Ted Kremenekde09d0c2010-03-15 20:11:53 +0000233 break;
Fariborz Jahanianf034e9c2009-01-19 18:16:19 +0000234 }
235 }
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700236 return nullptr;
Steve Naroff3d2c22b2008-06-05 13:55:23 +0000237}
238
David Blaikie99ba9e32011-12-20 02:48:34 +0000239void ObjCInterfaceDecl::anchor() { }
240
Fariborz Jahaniana6f14e12009-11-02 22:45:15 +0000241/// FindPropertyVisibleInPrimaryClass - Finds declaration of the property
242/// with name 'PropertyId' in the primary class; including those in protocols
Ted Kremenek37cafb02010-03-15 20:30:07 +0000243/// (direct or indirect) used by the primary class.
Fariborz Jahaniana6f14e12009-11-02 22:45:15 +0000244///
245ObjCPropertyDecl *
Ted Kremenek37cafb02010-03-15 20:30:07 +0000246ObjCInterfaceDecl::FindPropertyVisibleInPrimaryClass(
Fariborz Jahaniana6f14e12009-11-02 22:45:15 +0000247 IdentifierInfo *PropertyId) const {
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000248 // FIXME: Should make sure no callers ever do this.
249 if (!hasDefinition())
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700250 return nullptr;
251
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000252 if (data().ExternallyCompleted)
Douglas Gregor26ac3f32010-12-01 23:49:52 +0000253 LoadExternalDefinition();
254
Ted Kremenek37cafb02010-03-15 20:30:07 +0000255 if (ObjCPropertyDecl *PD =
256 ObjCPropertyDecl::findPropertyDecl(cast<DeclContext>(this), PropertyId))
257 return PD;
258
Fariborz Jahaniana6f14e12009-11-02 22:45:15 +0000259 // Look through protocols.
Stephen Hines651f13c2014-04-23 16:59:28 -0700260 for (const auto *I : all_referenced_protocols())
261 if (ObjCPropertyDecl *P = I->FindPropertyDeclaration(PropertyId))
Fariborz Jahaniana6f14e12009-11-02 22:45:15 +0000262 return P;
Ted Kremenek37cafb02010-03-15 20:30:07 +0000263
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700264 return nullptr;
Fariborz Jahaniana6f14e12009-11-02 22:45:15 +0000265}
266
Fariborz Jahaniancfaed8d2013-02-14 22:33:34 +0000267void ObjCInterfaceDecl::collectPropertiesToImplement(PropertyMap &PM,
268 PropertyDeclOrder &PO) const {
Stephen Hines651f13c2014-04-23 16:59:28 -0700269 for (auto *Prop : properties()) {
Anna Zaksb36ea372012-10-18 19:17:53 +0000270 PM[Prop->getIdentifier()] = Prop;
Fariborz Jahaniancfaed8d2013-02-14 22:33:34 +0000271 PO.push_back(Prop);
Anna Zaksb36ea372012-10-18 19:17:53 +0000272 }
Stephen Hines651f13c2014-04-23 16:59:28 -0700273 for (const auto *PI : all_referenced_protocols())
274 PI->collectPropertiesToImplement(PM, PO);
Anna Zakse63aedd2012-10-31 01:18:22 +0000275 // Note, the properties declared only in class extensions are still copied
276 // into the main @interface's property list, and therefore we don't
277 // explicitly, have to search class extension properties.
Anna Zaksb36ea372012-10-18 19:17:53 +0000278}
279
Benjamin Kramer2fa67ef2012-12-01 15:09:41 +0000280bool ObjCInterfaceDecl::isArcWeakrefUnavailable() const {
281 const ObjCInterfaceDecl *Class = this;
282 while (Class) {
283 if (Class->hasAttr<ArcWeakrefUnavailableAttr>())
284 return true;
285 Class = Class->getSuperClass();
286 }
287 return false;
288}
289
290const ObjCInterfaceDecl *ObjCInterfaceDecl::isObjCRequiresPropertyDefs() const {
291 const ObjCInterfaceDecl *Class = this;
292 while (Class) {
293 if (Class->hasAttr<ObjCRequiresPropertyDefsAttr>())
294 return Class;
295 Class = Class->getSuperClass();
296 }
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700297 return nullptr;
Benjamin Kramer2fa67ef2012-12-01 15:09:41 +0000298}
299
Fariborz Jahanian339798e2009-10-05 20:41:32 +0000300void ObjCInterfaceDecl::mergeClassExtensionProtocolList(
301 ObjCProtocolDecl *const* ExtList, unsigned ExtNum,
302 ASTContext &C)
303{
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000304 if (data().ExternallyCompleted)
Douglas Gregor26ac3f32010-12-01 23:49:52 +0000305 LoadExternalDefinition();
306
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000307 if (data().AllReferencedProtocols.empty() &&
308 data().ReferencedProtocols.empty()) {
309 data().AllReferencedProtocols.set(ExtList, ExtNum, C);
Fariborz Jahanian339798e2009-10-05 20:41:32 +0000310 return;
311 }
Ted Kremenek53b94412010-09-01 01:21:15 +0000312
Fariborz Jahanian339798e2009-10-05 20:41:32 +0000313 // Check for duplicate protocol in class's protocol list.
Ted Kremenek53b94412010-09-01 01:21:15 +0000314 // This is O(n*m). But it is extremely rare and number of protocols in
Fariborz Jahanian339798e2009-10-05 20:41:32 +0000315 // class or its extension are very few.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000316 SmallVector<ObjCProtocolDecl*, 8> ProtocolRefs;
Fariborz Jahanian339798e2009-10-05 20:41:32 +0000317 for (unsigned i = 0; i < ExtNum; i++) {
318 bool protocolExists = false;
319 ObjCProtocolDecl *ProtoInExtension = ExtList[i];
Stephen Hines651f13c2014-04-23 16:59:28 -0700320 for (auto *Proto : all_referenced_protocols()) {
Fariborz Jahanian339798e2009-10-05 20:41:32 +0000321 if (C.ProtocolCompatibleWithProtocol(ProtoInExtension, Proto)) {
322 protocolExists = true;
323 break;
324 }
325 }
326 // Do we want to warn on a protocol in extension class which
327 // already exist in the class? Probably not.
Ted Kremenek53b94412010-09-01 01:21:15 +0000328 if (!protocolExists)
Fariborz Jahanian339798e2009-10-05 20:41:32 +0000329 ProtocolRefs.push_back(ProtoInExtension);
330 }
Ted Kremenek53b94412010-09-01 01:21:15 +0000331
Fariborz Jahanian339798e2009-10-05 20:41:32 +0000332 if (ProtocolRefs.empty())
333 return;
Ted Kremenek53b94412010-09-01 01:21:15 +0000334
Fariborz Jahanianb106fc62009-10-05 21:32:49 +0000335 // Merge ProtocolRefs into class's protocol list;
Stephen Hines651f13c2014-04-23 16:59:28 -0700336 for (auto *P : all_referenced_protocols()) {
337 ProtocolRefs.push_back(P);
Douglas Gregor18df52b2010-01-16 15:02:53 +0000338 }
Ted Kremenek53b94412010-09-01 01:21:15 +0000339
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000340 data().AllReferencedProtocols.set(ProtocolRefs.data(), ProtocolRefs.size(),C);
Fariborz Jahanian339798e2009-10-05 20:41:32 +0000341}
342
Stephen Hines651f13c2014-04-23 16:59:28 -0700343const ObjCInterfaceDecl *
344ObjCInterfaceDecl::findInterfaceWithDesignatedInitializers() const {
345 const ObjCInterfaceDecl *IFace = this;
346 while (IFace) {
347 if (IFace->hasDesignatedInitializers())
348 return IFace;
349 if (!IFace->inheritsDesignatedInitializers())
350 break;
351 IFace = IFace->getSuperClass();
352 }
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700353 return nullptr;
Stephen Hines651f13c2014-04-23 16:59:28 -0700354}
355
356static bool isIntroducingInitializers(const ObjCInterfaceDecl *D) {
357 for (const auto *MD : D->instance_methods()) {
358 if (MD->getMethodFamily() == OMF_init && !MD->isOverriding())
359 return true;
360 }
361 for (const auto *Ext : D->visible_extensions()) {
362 for (const auto *MD : Ext->instance_methods()) {
363 if (MD->getMethodFamily() == OMF_init && !MD->isOverriding())
364 return true;
365 }
366 }
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700367 if (const auto *ImplD = D->getImplementation()) {
368 for (const auto *MD : ImplD->instance_methods()) {
369 if (MD->getMethodFamily() == OMF_init && !MD->isOverriding())
370 return true;
371 }
372 }
Stephen Hines651f13c2014-04-23 16:59:28 -0700373 return false;
374}
375
376bool ObjCInterfaceDecl::inheritsDesignatedInitializers() const {
377 switch (data().InheritedDesignatedInitializers) {
378 case DefinitionData::IDI_Inherited:
379 return true;
380 case DefinitionData::IDI_NotInherited:
381 return false;
382 case DefinitionData::IDI_Unknown: {
383 // If the class introduced initializers we conservatively assume that we
384 // don't know if any of them is a designated initializer to avoid possible
385 // misleading warnings.
386 if (isIntroducingInitializers(this)) {
387 data().InheritedDesignatedInitializers = DefinitionData::IDI_NotInherited;
Stephen Hines651f13c2014-04-23 16:59:28 -0700388 } else {
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700389 if (auto SuperD = getSuperClass()) {
390 data().InheritedDesignatedInitializers =
391 SuperD->declaresOrInheritsDesignatedInitializers() ?
392 DefinitionData::IDI_Inherited :
393 DefinitionData::IDI_NotInherited;
394 } else {
395 data().InheritedDesignatedInitializers =
396 DefinitionData::IDI_NotInherited;
397 }
Stephen Hines651f13c2014-04-23 16:59:28 -0700398 }
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700399 assert(data().InheritedDesignatedInitializers
400 != DefinitionData::IDI_Unknown);
401 return data().InheritedDesignatedInitializers ==
402 DefinitionData::IDI_Inherited;
Stephen Hines651f13c2014-04-23 16:59:28 -0700403 }
404 }
405
406 llvm_unreachable("unexpected InheritedDesignatedInitializers value");
407}
408
409void ObjCInterfaceDecl::getDesignatedInitializers(
410 llvm::SmallVectorImpl<const ObjCMethodDecl *> &Methods) const {
411 // Check for a complete definition and recover if not so.
412 if (!isThisDeclarationADefinition())
413 return;
414 if (data().ExternallyCompleted)
415 LoadExternalDefinition();
416
417 const ObjCInterfaceDecl *IFace= findInterfaceWithDesignatedInitializers();
418 if (!IFace)
419 return;
420
421 for (const auto *MD : IFace->instance_methods())
422 if (MD->isThisDeclarationADesignatedInitializer())
423 Methods.push_back(MD);
424 for (const auto *Ext : IFace->visible_extensions()) {
425 for (const auto *MD : Ext->instance_methods())
426 if (MD->isThisDeclarationADesignatedInitializer())
427 Methods.push_back(MD);
428 }
429}
430
431bool ObjCInterfaceDecl::isDesignatedInitializer(Selector Sel,
432 const ObjCMethodDecl **InitMethod) const {
433 // Check for a complete definition and recover if not so.
434 if (!isThisDeclarationADefinition())
435 return false;
436 if (data().ExternallyCompleted)
437 LoadExternalDefinition();
438
439 const ObjCInterfaceDecl *IFace= findInterfaceWithDesignatedInitializers();
440 if (!IFace)
441 return false;
442
443 if (const ObjCMethodDecl *MD = IFace->getInstanceMethod(Sel)) {
444 if (MD->isThisDeclarationADesignatedInitializer()) {
445 if (InitMethod)
446 *InitMethod = MD;
447 return true;
448 }
449 }
450 for (const auto *Ext : IFace->visible_extensions()) {
451 if (const ObjCMethodDecl *MD = Ext->getInstanceMethod(Sel)) {
452 if (MD->isThisDeclarationADesignatedInitializer()) {
453 if (InitMethod)
454 *InitMethod = MD;
455 return true;
456 }
457 }
458 }
459 return false;
460}
461
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000462void ObjCInterfaceDecl::allocateDefinitionData() {
463 assert(!hasDefinition() && "ObjC class already has a definition");
Douglas Gregor6bd99292013-02-09 01:35:03 +0000464 Data.setPointer(new (getASTContext()) DefinitionData());
465 Data.getPointer()->Definition = this;
Douglas Gregor8d2dbbf2011-12-16 16:34:57 +0000466
467 // Make the type point at the definition, now that we have one.
468 if (TypeForDecl)
469 cast<ObjCInterfaceType>(TypeForDecl)->Decl = this;
Douglas Gregor0af55012011-12-16 03:12:41 +0000470}
471
472void ObjCInterfaceDecl::startDefinition() {
473 allocateDefinitionData();
474
Douglas Gregor53df7a12011-12-15 18:03:09 +0000475 // Update all of the declarations with a pointer to the definition.
Stephen Hines651f13c2014-04-23 16:59:28 -0700476 for (auto RD : redecls()) {
477 if (RD != this)
Douglas Gregor26fec632011-12-15 18:17:27 +0000478 RD->Data = Data;
Douglas Gregor53df7a12011-12-15 18:03:09 +0000479 }
Argyrios Kyrtzidisad834d52011-11-12 21:07:46 +0000480}
481
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000482ObjCIvarDecl *ObjCInterfaceDecl::lookupInstanceVariable(IdentifierInfo *ID,
483 ObjCInterfaceDecl *&clsDeclared) {
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000484 // FIXME: Should make sure no callers ever do this.
485 if (!hasDefinition())
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700486 return nullptr;
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000487
488 if (data().ExternallyCompleted)
Argyrios Kyrtzidis7c81c2a2011-10-19 02:25:16 +0000489 LoadExternalDefinition();
490
Chris Lattner1e03a562008-03-16 00:19:01 +0000491 ObjCInterfaceDecl* ClassDecl = this;
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700492 while (ClassDecl != nullptr) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000493 if (ObjCIvarDecl *I = ClassDecl->getIvarDecl(ID)) {
Fariborz Jahanian496b5a82009-06-05 18:16:35 +0000494 clsDeclared = ClassDecl;
495 return I;
Chris Lattner1e03a562008-03-16 00:19:01 +0000496 }
Douglas Gregord3297242013-01-16 23:00:23 +0000497
Stephen Hines651f13c2014-04-23 16:59:28 -0700498 for (const auto *Ext : ClassDecl->visible_extensions()) {
Douglas Gregord3297242013-01-16 23:00:23 +0000499 if (ObjCIvarDecl *I = Ext->getIvarDecl(ID)) {
Fariborz Jahanian0e5ad252010-02-23 01:26:30 +0000500 clsDeclared = ClassDecl;
501 return I;
502 }
Fariborz Jahanian80aa1cd2010-06-22 23:20:40 +0000503 }
Fariborz Jahanian0e5ad252010-02-23 01:26:30 +0000504
Chris Lattner1e03a562008-03-16 00:19:01 +0000505 ClassDecl = ClassDecl->getSuperClass();
506 }
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700507 return nullptr;
Chris Lattner1e03a562008-03-16 00:19:01 +0000508}
509
Fariborz Jahaniancd187622009-05-22 17:12:32 +0000510/// lookupInheritedClass - This method returns ObjCInterfaceDecl * of the super
511/// class whose name is passed as argument. If it is not one of the super classes
512/// the it returns NULL.
513ObjCInterfaceDecl *ObjCInterfaceDecl::lookupInheritedClass(
514 const IdentifierInfo*ICName) {
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000515 // FIXME: Should make sure no callers ever do this.
516 if (!hasDefinition())
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700517 return nullptr;
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000518
519 if (data().ExternallyCompleted)
Argyrios Kyrtzidis7c81c2a2011-10-19 02:25:16 +0000520 LoadExternalDefinition();
521
Fariborz Jahaniancd187622009-05-22 17:12:32 +0000522 ObjCInterfaceDecl* ClassDecl = this;
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700523 while (ClassDecl != nullptr) {
Fariborz Jahaniancd187622009-05-22 17:12:32 +0000524 if (ClassDecl->getIdentifier() == ICName)
525 return ClassDecl;
526 ClassDecl = ClassDecl->getSuperClass();
527 }
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700528 return nullptr;
Fariborz Jahaniancd187622009-05-22 17:12:32 +0000529}
530
Fariborz Jahanian07b1bbe2013-07-10 21:30:22 +0000531ObjCProtocolDecl *
532ObjCInterfaceDecl::lookupNestedProtocol(IdentifierInfo *Name) {
Stephen Hines651f13c2014-04-23 16:59:28 -0700533 for (auto *P : all_referenced_protocols())
534 if (P->lookupProtocolNamed(Name))
535 return P;
Fariborz Jahanian07b1bbe2013-07-10 21:30:22 +0000536 ObjCInterfaceDecl *SuperClass = getSuperClass();
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700537 return SuperClass ? SuperClass->lookupNestedProtocol(Name) : nullptr;
Fariborz Jahanian07b1bbe2013-07-10 21:30:22 +0000538}
539
Argyrios Kyrtzidisaa5420c2009-07-25 22:15:51 +0000540/// lookupMethod - This method returns an instance/class method by looking in
Chris Lattner1e03a562008-03-16 00:19:01 +0000541/// the class, its categories, and its super classes (using a linear search).
Fariborz Jahanianf3f0f352013-04-25 21:59:34 +0000542/// When argument category "C" is specified, any implicit method found
543/// in this category is ignored.
Fariborz Jahanianbf393be2012-04-05 22:14:12 +0000544ObjCMethodDecl *ObjCInterfaceDecl::lookupMethod(Selector Sel,
Stephen Hines651f13c2014-04-23 16:59:28 -0700545 bool isInstance,
546 bool shallowCategoryLookup,
547 bool followSuper,
548 const ObjCCategoryDecl *C) const
549{
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000550 // FIXME: Should make sure no callers ever do this.
551 if (!hasDefinition())
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700552 return nullptr;
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000553
Argyrios Kyrtzidisaa5420c2009-07-25 22:15:51 +0000554 const ObjCInterfaceDecl* ClassDecl = this;
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700555 ObjCMethodDecl *MethodDecl = nullptr;
Mike Stump1eb44332009-09-09 15:08:12 +0000556
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000557 if (data().ExternallyCompleted)
Douglas Gregor26ac3f32010-12-01 23:49:52 +0000558 LoadExternalDefinition();
559
Stephen Hines651f13c2014-04-23 16:59:28 -0700560 while (ClassDecl) {
Argyrios Kyrtzidisaa5420c2009-07-25 22:15:51 +0000561 if ((MethodDecl = ClassDecl->getMethod(Sel, isInstance)))
Chris Lattner1e03a562008-03-16 00:19:01 +0000562 return MethodDecl;
Mike Stump1eb44332009-09-09 15:08:12 +0000563
Chris Lattner1e03a562008-03-16 00:19:01 +0000564 // Didn't find one yet - look through protocols.
Stephen Hines651f13c2014-04-23 16:59:28 -0700565 for (const auto *I : ClassDecl->protocols())
566 if ((MethodDecl = I->lookupMethod(Sel, isInstance)))
Chris Lattner1e03a562008-03-16 00:19:01 +0000567 return MethodDecl;
Fariborz Jahanianbf393be2012-04-05 22:14:12 +0000568
569 // Didn't find one yet - now look through categories.
Stephen Hines651f13c2014-04-23 16:59:28 -0700570 for (const auto *Cat : ClassDecl->visible_categories()) {
Fariborz Jahanianf3f0f352013-04-25 21:59:34 +0000571 if ((MethodDecl = Cat->getMethod(Sel, isInstance)))
Stephen Hines651f13c2014-04-23 16:59:28 -0700572 if (C != Cat || !MethodDecl->isImplicit())
Fariborz Jahanianc775b1a2013-04-24 17:06:38 +0000573 return MethodDecl;
Fariborz Jahanianbb3d14e2012-02-09 21:30:24 +0000574
Fariborz Jahanianf3f0f352013-04-25 21:59:34 +0000575 if (!shallowCategoryLookup) {
576 // Didn't find one yet - look through protocols.
577 const ObjCList<ObjCProtocolDecl> &Protocols =
578 Cat->getReferencedProtocols();
579 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
580 E = Protocols.end(); I != E; ++I)
581 if ((MethodDecl = (*I)->lookupMethod(Sel, isInstance)))
Stephen Hines651f13c2014-04-23 16:59:28 -0700582 if (C != Cat || !MethodDecl->isImplicit())
Fariborz Jahanianc775b1a2013-04-24 17:06:38 +0000583 return MethodDecl;
Fariborz Jahanianbb3d14e2012-02-09 21:30:24 +0000584 }
Fariborz Jahanianf3f0f352013-04-25 21:59:34 +0000585 }
Stephen Hines651f13c2014-04-23 16:59:28 -0700586
587 if (!followSuper)
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700588 return nullptr;
Stephen Hines651f13c2014-04-23 16:59:28 -0700589
590 // Get the super class (if any).
Chris Lattner1e03a562008-03-16 00:19:01 +0000591 ClassDecl = ClassDecl->getSuperClass();
592 }
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700593 return nullptr;
Chris Lattner1e03a562008-03-16 00:19:01 +0000594}
595
Anna Zakse61354b2012-07-27 19:07:44 +0000596// Will search "local" class/category implementations for a method decl.
597// If failed, then we search in class's root for an instance method.
598// Returns 0 if no method is found.
Fariborz Jahanian74b27562010-12-03 23:37:08 +0000599ObjCMethodDecl *ObjCInterfaceDecl::lookupPrivateMethod(
600 const Selector &Sel,
Anna Zaksca93ee72012-07-30 20:31:21 +0000601 bool Instance) const {
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000602 // FIXME: Should make sure no callers ever do this.
603 if (!hasDefinition())
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700604 return nullptr;
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000605
606 if (data().ExternallyCompleted)
Argyrios Kyrtzidis7c81c2a2011-10-19 02:25:16 +0000607 LoadExternalDefinition();
608
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700609 ObjCMethodDecl *Method = nullptr;
Steve Naroffd789d3d2009-10-01 23:46:04 +0000610 if (ObjCImplementationDecl *ImpDecl = getImplementation())
Fariborz Jahanian74b27562010-12-03 23:37:08 +0000611 Method = Instance ? ImpDecl->getInstanceMethod(Sel)
612 : ImpDecl->getClassMethod(Sel);
Anna Zakse61354b2012-07-27 19:07:44 +0000613
614 // Look through local category implementations associated with the class.
615 if (!Method)
616 Method = Instance ? getCategoryInstanceMethod(Sel)
617 : getCategoryClassMethod(Sel);
618
619 // Before we give up, check if the selector is an instance method.
620 // But only in the root. This matches gcc's behavior and what the
621 // runtime expects.
622 if (!Instance && !Method && !getSuperClass()) {
623 Method = lookupInstanceMethod(Sel);
624 // Look through local category implementations associated
625 // with the root class.
626 if (!Method)
627 Method = lookupPrivateMethod(Sel, true);
628 }
629
Steve Naroffd789d3d2009-10-01 23:46:04 +0000630 if (!Method && getSuperClass())
Fariborz Jahanian74b27562010-12-03 23:37:08 +0000631 return getSuperClass()->lookupPrivateMethod(Sel, Instance);
Steve Naroffd789d3d2009-10-01 23:46:04 +0000632 return Method;
633}
Chris Lattnerab351632009-02-20 20:59:54 +0000634
635//===----------------------------------------------------------------------===//
636// ObjCMethodDecl
637//===----------------------------------------------------------------------===//
638
Stephen Hines651f13c2014-04-23 16:59:28 -0700639ObjCMethodDecl *ObjCMethodDecl::Create(
640 ASTContext &C, SourceLocation beginLoc, SourceLocation endLoc,
641 Selector SelInfo, QualType T, TypeSourceInfo *ReturnTInfo,
642 DeclContext *contextDecl, bool isInstance, bool isVariadic,
643 bool isPropertyAccessor, bool isImplicitlyDeclared, bool isDefined,
644 ImplementationControl impControl, bool HasRelatedResultType) {
645 return new (C, contextDecl) ObjCMethodDecl(
646 beginLoc, endLoc, SelInfo, T, ReturnTInfo, contextDecl, isInstance,
647 isVariadic, isPropertyAccessor, isImplicitlyDeclared, isDefined,
648 impControl, HasRelatedResultType);
Chris Lattner1e03a562008-03-16 00:19:01 +0000649}
650
Douglas Gregor1e68ecc2012-01-05 21:55:30 +0000651ObjCMethodDecl *ObjCMethodDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
Stephen Hines651f13c2014-04-23 16:59:28 -0700652 return new (C, ID) ObjCMethodDecl(SourceLocation(), SourceLocation(),
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700653 Selector(), QualType(), nullptr, nullptr);
Stephen Hines651f13c2014-04-23 16:59:28 -0700654}
655
656bool ObjCMethodDecl::isThisDeclarationADesignatedInitializer() const {
657 return getMethodFamily() == OMF_init &&
658 hasAttr<ObjCDesignatedInitializerAttr>();
659}
660
661bool ObjCMethodDecl::isDesignatedInitializerForTheInterface(
662 const ObjCMethodDecl **InitMethod) const {
663 if (getMethodFamily() != OMF_init)
664 return false;
665 const DeclContext *DC = getDeclContext();
666 if (isa<ObjCProtocolDecl>(DC))
667 return false;
668 if (const ObjCInterfaceDecl *ID = getClassInterface())
669 return ID->isDesignatedInitializer(getSelector(), InitMethod);
670 return false;
Douglas Gregor1e68ecc2012-01-05 21:55:30 +0000671}
672
Douglas Gregor5456b0fe2012-10-09 17:21:28 +0000673Stmt *ObjCMethodDecl::getBody() const {
674 return Body.get(getASTContext().getExternalSource());
675}
676
Argyrios Kyrtzidis3a919e72011-10-14 08:02:31 +0000677void ObjCMethodDecl::setAsRedeclaration(const ObjCMethodDecl *PrevMethod) {
678 assert(PrevMethod);
679 getASTContext().setObjCMethodRedeclaration(PrevMethod, this);
680 IsRedeclaration = true;
Argyrios Kyrtzidis72b26252011-10-14 17:41:52 +0000681 PrevMethod->HasRedeclaration = true;
Argyrios Kyrtzidis3a919e72011-10-14 08:02:31 +0000682}
683
Argyrios Kyrtzidis491306a2011-10-03 06:37:04 +0000684void ObjCMethodDecl::setParamsAndSelLocs(ASTContext &C,
685 ArrayRef<ParmVarDecl*> Params,
686 ArrayRef<SourceLocation> SelLocs) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700687 ParamsAndSelLocs = nullptr;
Argyrios Kyrtzidis491306a2011-10-03 06:37:04 +0000688 NumParams = Params.size();
689 if (Params.empty() && SelLocs.empty())
690 return;
691
692 unsigned Size = sizeof(ParmVarDecl *) * NumParams +
693 sizeof(SourceLocation) * SelLocs.size();
694 ParamsAndSelLocs = C.Allocate(Size);
695 std::copy(Params.begin(), Params.end(), getParams());
696 std::copy(SelLocs.begin(), SelLocs.end(), getStoredSelLocs());
697}
698
699void ObjCMethodDecl::getSelectorLocs(
700 SmallVectorImpl<SourceLocation> &SelLocs) const {
701 for (unsigned i = 0, e = getNumSelectorLocs(); i != e; ++i)
702 SelLocs.push_back(getSelectorLoc(i));
703}
704
705void ObjCMethodDecl::setMethodParams(ASTContext &C,
706 ArrayRef<ParmVarDecl*> Params,
707 ArrayRef<SourceLocation> SelLocs) {
708 assert((!SelLocs.empty() || isImplicit()) &&
709 "No selector locs for non-implicit method");
710 if (isImplicit())
Dmitri Gribenko55431692013-05-05 00:41:58 +0000711 return setParamsAndSelLocs(C, Params, llvm::None);
Argyrios Kyrtzidis491306a2011-10-03 06:37:04 +0000712
Argyrios Kyrtzidisa0cff722012-06-16 00:46:02 +0000713 SelLocsKind = hasStandardSelectorLocs(getSelector(), SelLocs, Params,
714 DeclEndLoc);
Argyrios Kyrtzidis491306a2011-10-03 06:37:04 +0000715 if (SelLocsKind != SelLoc_NonStandard)
Dmitri Gribenko55431692013-05-05 00:41:58 +0000716 return setParamsAndSelLocs(C, Params, llvm::None);
Argyrios Kyrtzidis491306a2011-10-03 06:37:04 +0000717
718 setParamsAndSelLocs(C, Params, SelLocs);
719}
720
Argyrios Kyrtzidis57ea6be2009-07-21 00:06:36 +0000721/// \brief A definition will return its interface declaration.
722/// An interface declaration will return its definition.
723/// Otherwise it will return itself.
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700724ObjCMethodDecl *ObjCMethodDecl::getNextRedeclarationImpl() {
Argyrios Kyrtzidis57ea6be2009-07-21 00:06:36 +0000725 ASTContext &Ctx = getASTContext();
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700726 ObjCMethodDecl *Redecl = nullptr;
Argyrios Kyrtzidis72b26252011-10-14 17:41:52 +0000727 if (HasRedeclaration)
728 Redecl = const_cast<ObjCMethodDecl*>(Ctx.getObjCMethodRedeclaration(this));
Argyrios Kyrtzidisb40034c2011-10-14 06:48:06 +0000729 if (Redecl)
730 return Redecl;
731
Argyrios Kyrtzidis57ea6be2009-07-21 00:06:36 +0000732 Decl *CtxD = cast<Decl>(getDeclContext());
733
Argyrios Kyrtzidisdf08c4b2013-05-30 18:53:21 +0000734 if (!CtxD->isInvalidDecl()) {
735 if (ObjCInterfaceDecl *IFD = dyn_cast<ObjCInterfaceDecl>(CtxD)) {
736 if (ObjCImplementationDecl *ImplD = Ctx.getObjCImplementation(IFD))
737 if (!ImplD->isInvalidDecl())
738 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod());
Argyrios Kyrtzidis57ea6be2009-07-21 00:06:36 +0000739
Argyrios Kyrtzidisdf08c4b2013-05-30 18:53:21 +0000740 } else if (ObjCCategoryDecl *CD = dyn_cast<ObjCCategoryDecl>(CtxD)) {
741 if (ObjCCategoryImplDecl *ImplD = Ctx.getObjCImplementation(CD))
742 if (!ImplD->isInvalidDecl())
743 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod());
Argyrios Kyrtzidis57ea6be2009-07-21 00:06:36 +0000744
Argyrios Kyrtzidisdf08c4b2013-05-30 18:53:21 +0000745 } else if (ObjCImplementationDecl *ImplD =
746 dyn_cast<ObjCImplementationDecl>(CtxD)) {
747 if (ObjCInterfaceDecl *IFD = ImplD->getClassInterface())
748 if (!IFD->isInvalidDecl())
749 Redecl = IFD->getMethod(getSelector(), isInstanceMethod());
Argyrios Kyrtzidis42920732009-07-28 05:11:05 +0000750
Argyrios Kyrtzidisdf08c4b2013-05-30 18:53:21 +0000751 } else if (ObjCCategoryImplDecl *CImplD =
752 dyn_cast<ObjCCategoryImplDecl>(CtxD)) {
753 if (ObjCCategoryDecl *CatD = CImplD->getCategoryDecl())
754 if (!CatD->isInvalidDecl())
755 Redecl = CatD->getMethod(getSelector(), isInstanceMethod());
756 }
Argyrios Kyrtzidis57ea6be2009-07-21 00:06:36 +0000757 }
758
Argyrios Kyrtzidis3a919e72011-10-14 08:02:31 +0000759 if (!Redecl && isRedeclaration()) {
760 // This is the last redeclaration, go back to the first method.
761 return cast<ObjCContainerDecl>(CtxD)->getMethod(getSelector(),
762 isInstanceMethod());
763 }
764
Argyrios Kyrtzidis57ea6be2009-07-21 00:06:36 +0000765 return Redecl ? Redecl : this;
766}
767
Argyrios Kyrtzidise7f9d302009-07-28 05:11:17 +0000768ObjCMethodDecl *ObjCMethodDecl::getCanonicalDecl() {
769 Decl *CtxD = cast<Decl>(getDeclContext());
770
771 if (ObjCImplementationDecl *ImplD = dyn_cast<ObjCImplementationDecl>(CtxD)) {
772 if (ObjCInterfaceDecl *IFD = ImplD->getClassInterface())
773 if (ObjCMethodDecl *MD = IFD->getMethod(getSelector(),
774 isInstanceMethod()))
775 return MD;
776
777 } else if (ObjCCategoryImplDecl *CImplD =
778 dyn_cast<ObjCCategoryImplDecl>(CtxD)) {
Steve Naroff0d69b8c2009-10-29 21:11:04 +0000779 if (ObjCCategoryDecl *CatD = CImplD->getCategoryDecl())
Argyrios Kyrtzidise7f9d302009-07-28 05:11:17 +0000780 if (ObjCMethodDecl *MD = CatD->getMethod(getSelector(),
781 isInstanceMethod()))
782 return MD;
783 }
784
Argyrios Kyrtzidis6d4740e2011-10-17 19:48:09 +0000785 if (isRedeclaration())
786 return cast<ObjCContainerDecl>(CtxD)->getMethod(getSelector(),
787 isInstanceMethod());
788
Argyrios Kyrtzidise7f9d302009-07-28 05:11:17 +0000789 return this;
790}
791
Argyrios Kyrtzidisa0cff722012-06-16 00:46:02 +0000792SourceLocation ObjCMethodDecl::getLocEnd() const {
793 if (Stmt *Body = getBody())
794 return Body->getLocEnd();
795 return DeclEndLoc;
796}
797
John McCall85f3d762011-03-02 01:50:55 +0000798ObjCMethodFamily ObjCMethodDecl::getMethodFamily() const {
799 ObjCMethodFamily family = static_cast<ObjCMethodFamily>(Family);
John McCalld976c8e2011-03-02 21:01:41 +0000800 if (family != static_cast<unsigned>(InvalidObjCMethodFamily))
John McCall85f3d762011-03-02 01:50:55 +0000801 return family;
802
John McCalld5313b02011-03-02 11:33:24 +0000803 // Check for an explicit attribute.
804 if (const ObjCMethodFamilyAttr *attr = getAttr<ObjCMethodFamilyAttr>()) {
805 // The unfortunate necessity of mapping between enums here is due
806 // to the attributes framework.
807 switch (attr->getFamily()) {
808 case ObjCMethodFamilyAttr::OMF_None: family = OMF_None; break;
809 case ObjCMethodFamilyAttr::OMF_alloc: family = OMF_alloc; break;
810 case ObjCMethodFamilyAttr::OMF_copy: family = OMF_copy; break;
811 case ObjCMethodFamilyAttr::OMF_init: family = OMF_init; break;
812 case ObjCMethodFamilyAttr::OMF_mutableCopy: family = OMF_mutableCopy; break;
813 case ObjCMethodFamilyAttr::OMF_new: family = OMF_new; break;
814 }
815 Family = static_cast<unsigned>(family);
816 return family;
817 }
818
John McCall85f3d762011-03-02 01:50:55 +0000819 family = getSelector().getMethodFamily();
820 switch (family) {
821 case OMF_None: break;
822
823 // init only has a conventional meaning for an instance method, and
824 // it has to return an object.
825 case OMF_init:
Stephen Hines651f13c2014-04-23 16:59:28 -0700826 if (!isInstanceMethod() || !getReturnType()->isObjCObjectPointerType())
John McCall85f3d762011-03-02 01:50:55 +0000827 family = OMF_None;
828 break;
829
830 // alloc/copy/new have a conventional meaning for both class and
831 // instance methods, but they require an object return.
832 case OMF_alloc:
833 case OMF_copy:
834 case OMF_mutableCopy:
835 case OMF_new:
Stephen Hines651f13c2014-04-23 16:59:28 -0700836 if (!getReturnType()->isObjCObjectPointerType())
John McCall85f3d762011-03-02 01:50:55 +0000837 family = OMF_None;
838 break;
839
840 // These selectors have a conventional meaning only for instance methods.
841 case OMF_dealloc:
Nico Weber80cb6e62011-08-28 22:35:17 +0000842 case OMF_finalize:
John McCall85f3d762011-03-02 01:50:55 +0000843 case OMF_retain:
844 case OMF_release:
845 case OMF_autorelease:
846 case OMF_retainCount:
Douglas Gregor926df6c2011-06-11 01:09:30 +0000847 case OMF_self:
John McCall85f3d762011-03-02 01:50:55 +0000848 if (!isInstanceMethod())
849 family = OMF_None;
850 break;
Fariborz Jahanian9670e172011-07-05 22:38:59 +0000851
852 case OMF_performSelector:
Stephen Hines651f13c2014-04-23 16:59:28 -0700853 if (!isInstanceMethod() || !getReturnType()->isObjCIdType())
Fariborz Jahanian9670e172011-07-05 22:38:59 +0000854 family = OMF_None;
855 else {
856 unsigned noParams = param_size();
857 if (noParams < 1 || noParams > 3)
858 family = OMF_None;
859 else {
Stephen Hines651f13c2014-04-23 16:59:28 -0700860 ObjCMethodDecl::param_type_iterator it = param_type_begin();
Fariborz Jahanian9670e172011-07-05 22:38:59 +0000861 QualType ArgT = (*it);
862 if (!ArgT->isObjCSelType()) {
863 family = OMF_None;
864 break;
865 }
866 while (--noParams) {
867 it++;
868 ArgT = (*it);
869 if (!ArgT->isObjCIdType()) {
870 family = OMF_None;
871 break;
872 }
873 }
874 }
875 }
876 break;
877
John McCall85f3d762011-03-02 01:50:55 +0000878 }
879
880 // Cache the result.
881 Family = static_cast<unsigned>(family);
882 return family;
883}
884
Mike Stump1eb44332009-09-09 15:08:12 +0000885void ObjCMethodDecl::createImplicitParams(ASTContext &Context,
Chris Lattnerab351632009-02-20 20:59:54 +0000886 const ObjCInterfaceDecl *OID) {
887 QualType selfTy;
888 if (isInstanceMethod()) {
889 // There may be no interface context due to error in declaration
890 // of the interface (which has been reported). Recover gracefully.
891 if (OID) {
Daniel Dunbar3b3a4582009-04-22 04:34:53 +0000892 selfTy = Context.getObjCInterfaceType(OID);
Steve Naroff14108da2009-07-10 23:34:53 +0000893 selfTy = Context.getObjCObjectPointerType(selfTy);
Chris Lattnerab351632009-02-20 20:59:54 +0000894 } else {
895 selfTy = Context.getObjCIdType();
896 }
897 } else // we have a factory method.
898 selfTy = Context.getObjCClassType();
899
John McCall7acddac2011-06-17 06:42:21 +0000900 bool selfIsPseudoStrong = false;
John McCallf85e1932011-06-15 23:02:42 +0000901 bool selfIsConsumed = false;
Ted Kremenek2bbcd5c2011-11-14 21:59:25 +0000902
David Blaikie4e4d0842012-03-11 07:00:24 +0000903 if (Context.getLangOpts().ObjCAutoRefCount) {
Ted Kremenek2bbcd5c2011-11-14 21:59:25 +0000904 if (isInstanceMethod()) {
905 selfIsConsumed = hasAttr<NSConsumesSelfAttr>();
John McCallf85e1932011-06-15 23:02:42 +0000906
Ted Kremenek2bbcd5c2011-11-14 21:59:25 +0000907 // 'self' is always __strong. It's actually pseudo-strong except
908 // in init methods (or methods labeled ns_consumes_self), though.
909 Qualifiers qs;
910 qs.setObjCLifetime(Qualifiers::OCL_Strong);
911 selfTy = Context.getQualifiedType(selfTy, qs);
John McCallf85e1932011-06-15 23:02:42 +0000912
Ted Kremenek2bbcd5c2011-11-14 21:59:25 +0000913 // In addition, 'self' is const unless this is an init method.
914 if (getMethodFamily() != OMF_init && !selfIsConsumed) {
915 selfTy = selfTy.withConst();
916 selfIsPseudoStrong = true;
917 }
918 }
919 else {
920 assert(isClassMethod());
921 // 'self' is always const in class methods.
John McCallf85e1932011-06-15 23:02:42 +0000922 selfTy = selfTy.withConst();
John McCall7acddac2011-06-17 06:42:21 +0000923 selfIsPseudoStrong = true;
924 }
John McCallf85e1932011-06-15 23:02:42 +0000925 }
926
927 ImplicitParamDecl *self
928 = ImplicitParamDecl::Create(Context, this, SourceLocation(),
929 &Context.Idents.get("self"), selfTy);
930 setSelfDecl(self);
931
932 if (selfIsConsumed)
Stephen Hines651f13c2014-04-23 16:59:28 -0700933 self->addAttr(NSConsumedAttr::CreateImplicit(Context));
Chris Lattnerab351632009-02-20 20:59:54 +0000934
John McCall7acddac2011-06-17 06:42:21 +0000935 if (selfIsPseudoStrong)
936 self->setARCPseudoStrong(true);
937
Mike Stump1eb44332009-09-09 15:08:12 +0000938 setCmdDecl(ImplicitParamDecl::Create(Context, this, SourceLocation(),
939 &Context.Idents.get("_cmd"),
Steve Naroff53c9d8a2009-04-20 15:06:07 +0000940 Context.getObjCSelType()));
Chris Lattnerab351632009-02-20 20:59:54 +0000941}
942
Chris Lattnerab351632009-02-20 20:59:54 +0000943ObjCInterfaceDecl *ObjCMethodDecl::getClassInterface() {
944 if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(getDeclContext()))
945 return ID;
946 if (ObjCCategoryDecl *CD = dyn_cast<ObjCCategoryDecl>(getDeclContext()))
947 return CD->getClassInterface();
Argyrios Kyrtzidisa8530372009-07-28 05:10:52 +0000948 if (ObjCImplDecl *IMD = dyn_cast<ObjCImplDecl>(getDeclContext()))
Chris Lattnerab351632009-02-20 20:59:54 +0000949 return IMD->getClassInterface();
Stephen Hines651f13c2014-04-23 16:59:28 -0700950 if (isa<ObjCProtocolDecl>(getDeclContext()))
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700951 return nullptr;
David Blaikieb219cfc2011-09-23 05:06:16 +0000952 llvm_unreachable("unknown method context");
Fariborz Jahanianae6f6fd2008-12-05 22:32:48 +0000953}
954
Argyrios Kyrtzidis740ae672012-10-09 18:19:01 +0000955static void CollectOverriddenMethodsRecurse(const ObjCContainerDecl *Container,
956 const ObjCMethodDecl *Method,
957 SmallVectorImpl<const ObjCMethodDecl *> &Methods,
958 bool MovedToSuper) {
959 if (!Container)
960 return;
961
962 // In categories look for overriden methods from protocols. A method from
963 // category is not "overriden" since it is considered as the "same" method
964 // (same USR) as the one from the interface.
965 if (const ObjCCategoryDecl *
966 Category = dyn_cast<ObjCCategoryDecl>(Container)) {
967 // Check whether we have a matching method at this category but only if we
968 // are at the super class level.
969 if (MovedToSuper)
970 if (ObjCMethodDecl *
971 Overridden = Container->getMethod(Method->getSelector(),
Argyrios Kyrtzidis04593d02013-03-29 21:51:48 +0000972 Method->isInstanceMethod(),
973 /*AllowHidden=*/true))
Argyrios Kyrtzidis740ae672012-10-09 18:19:01 +0000974 if (Method != Overridden) {
975 // We found an override at this category; there is no need to look
976 // into its protocols.
977 Methods.push_back(Overridden);
978 return;
979 }
980
Stephen Hines651f13c2014-04-23 16:59:28 -0700981 for (const auto *P : Category->protocols())
982 CollectOverriddenMethodsRecurse(P, Method, Methods, MovedToSuper);
Argyrios Kyrtzidis740ae672012-10-09 18:19:01 +0000983 return;
984 }
985
986 // Check whether we have a matching method at this level.
987 if (const ObjCMethodDecl *
988 Overridden = Container->getMethod(Method->getSelector(),
Argyrios Kyrtzidis04593d02013-03-29 21:51:48 +0000989 Method->isInstanceMethod(),
990 /*AllowHidden=*/true))
Argyrios Kyrtzidis740ae672012-10-09 18:19:01 +0000991 if (Method != Overridden) {
992 // We found an override at this level; there is no need to look
993 // into other protocols or categories.
994 Methods.push_back(Overridden);
995 return;
996 }
997
998 if (const ObjCProtocolDecl *Protocol = dyn_cast<ObjCProtocolDecl>(Container)){
Stephen Hines651f13c2014-04-23 16:59:28 -0700999 for (const auto *P : Protocol->protocols())
1000 CollectOverriddenMethodsRecurse(P, Method, Methods, MovedToSuper);
Argyrios Kyrtzidis740ae672012-10-09 18:19:01 +00001001 }
1002
1003 if (const ObjCInterfaceDecl *
1004 Interface = dyn_cast<ObjCInterfaceDecl>(Container)) {
Stephen Hines651f13c2014-04-23 16:59:28 -07001005 for (const auto *P : Interface->protocols())
1006 CollectOverriddenMethodsRecurse(P, Method, Methods, MovedToSuper);
Argyrios Kyrtzidis740ae672012-10-09 18:19:01 +00001007
Stephen Hines651f13c2014-04-23 16:59:28 -07001008 for (const auto *Cat : Interface->known_categories())
1009 CollectOverriddenMethodsRecurse(Cat, Method, Methods, MovedToSuper);
Argyrios Kyrtzidis740ae672012-10-09 18:19:01 +00001010
1011 if (const ObjCInterfaceDecl *Super = Interface->getSuperClass())
1012 return CollectOverriddenMethodsRecurse(Super, Method, Methods,
1013 /*MovedToSuper=*/true);
1014 }
1015}
1016
1017static inline void CollectOverriddenMethods(const ObjCContainerDecl *Container,
1018 const ObjCMethodDecl *Method,
1019 SmallVectorImpl<const ObjCMethodDecl *> &Methods) {
1020 CollectOverriddenMethodsRecurse(Container, Method, Methods,
1021 /*MovedToSuper=*/false);
1022}
1023
1024static void collectOverriddenMethodsSlow(const ObjCMethodDecl *Method,
1025 SmallVectorImpl<const ObjCMethodDecl *> &overridden) {
1026 assert(Method->isOverriding());
1027
1028 if (const ObjCProtocolDecl *
1029 ProtD = dyn_cast<ObjCProtocolDecl>(Method->getDeclContext())) {
1030 CollectOverriddenMethods(ProtD, Method, overridden);
1031
1032 } else if (const ObjCImplDecl *
1033 IMD = dyn_cast<ObjCImplDecl>(Method->getDeclContext())) {
1034 const ObjCInterfaceDecl *ID = IMD->getClassInterface();
1035 if (!ID)
1036 return;
1037 // Start searching for overridden methods using the method from the
1038 // interface as starting point.
1039 if (const ObjCMethodDecl *IFaceMeth = ID->getMethod(Method->getSelector(),
Argyrios Kyrtzidis04593d02013-03-29 21:51:48 +00001040 Method->isInstanceMethod(),
1041 /*AllowHidden=*/true))
Argyrios Kyrtzidis740ae672012-10-09 18:19:01 +00001042 Method = IFaceMeth;
1043 CollectOverriddenMethods(ID, Method, overridden);
1044
1045 } else if (const ObjCCategoryDecl *
1046 CatD = dyn_cast<ObjCCategoryDecl>(Method->getDeclContext())) {
1047 const ObjCInterfaceDecl *ID = CatD->getClassInterface();
1048 if (!ID)
1049 return;
1050 // Start searching for overridden methods using the method from the
1051 // interface as starting point.
1052 if (const ObjCMethodDecl *IFaceMeth = ID->getMethod(Method->getSelector(),
Argyrios Kyrtzidis04593d02013-03-29 21:51:48 +00001053 Method->isInstanceMethod(),
1054 /*AllowHidden=*/true))
Argyrios Kyrtzidis740ae672012-10-09 18:19:01 +00001055 Method = IFaceMeth;
1056 CollectOverriddenMethods(ID, Method, overridden);
1057
1058 } else {
1059 CollectOverriddenMethods(
1060 dyn_cast_or_null<ObjCContainerDecl>(Method->getDeclContext()),
1061 Method, overridden);
1062 }
1063}
1064
Argyrios Kyrtzidis740ae672012-10-09 18:19:01 +00001065void ObjCMethodDecl::getOverriddenMethods(
1066 SmallVectorImpl<const ObjCMethodDecl *> &Overridden) const {
1067 const ObjCMethodDecl *Method = this;
1068
1069 if (Method->isRedeclaration()) {
1070 Method = cast<ObjCContainerDecl>(Method->getDeclContext())->
1071 getMethod(Method->getSelector(), Method->isInstanceMethod());
1072 }
1073
Argyrios Kyrtzidise7a77722013-04-17 00:09:08 +00001074 if (Method->isOverriding()) {
Argyrios Kyrtzidis740ae672012-10-09 18:19:01 +00001075 collectOverriddenMethodsSlow(Method, Overridden);
1076 assert(!Overridden.empty() &&
1077 "ObjCMethodDecl's overriding bit is not as expected");
1078 }
1079}
1080
Jordan Rose04bec392012-10-10 16:42:54 +00001081const ObjCPropertyDecl *
1082ObjCMethodDecl::findPropertyDecl(bool CheckOverrides) const {
1083 Selector Sel = getSelector();
1084 unsigned NumArgs = Sel.getNumArgs();
1085 if (NumArgs > 1)
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001086 return nullptr;
Jordan Rose04bec392012-10-10 16:42:54 +00001087
Jordan Rose50d2b262012-10-11 16:02:02 +00001088 if (!isInstanceMethod() || getMethodFamily() != OMF_None)
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001089 return nullptr;
1090
Jordan Rose04bec392012-10-10 16:42:54 +00001091 if (isPropertyAccessor()) {
1092 const ObjCContainerDecl *Container = cast<ObjCContainerDecl>(getParent());
Fariborz Jahanianc328d9c2013-01-12 00:28:34 +00001093 // If container is class extension, find its primary class.
1094 if (const ObjCCategoryDecl *CatDecl = dyn_cast<ObjCCategoryDecl>(Container))
1095 if (CatDecl->IsClassExtension())
1096 Container = CatDecl->getClassInterface();
1097
Jordan Rose04bec392012-10-10 16:42:54 +00001098 bool IsGetter = (NumArgs == 0);
1099
Stephen Hines651f13c2014-04-23 16:59:28 -07001100 for (const auto *I : Container->properties()) {
1101 Selector NextSel = IsGetter ? I->getGetterName()
1102 : I->getSetterName();
Jordan Rose04bec392012-10-10 16:42:54 +00001103 if (NextSel == Sel)
Stephen Hines651f13c2014-04-23 16:59:28 -07001104 return I;
Jordan Rose04bec392012-10-10 16:42:54 +00001105 }
1106
1107 llvm_unreachable("Marked as a property accessor but no property found!");
1108 }
1109
1110 if (!CheckOverrides)
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001111 return nullptr;
Jordan Rose04bec392012-10-10 16:42:54 +00001112
1113 typedef SmallVector<const ObjCMethodDecl *, 8> OverridesTy;
1114 OverridesTy Overrides;
1115 getOverriddenMethods(Overrides);
1116 for (OverridesTy::const_iterator I = Overrides.begin(), E = Overrides.end();
1117 I != E; ++I) {
1118 if (const ObjCPropertyDecl *Prop = (*I)->findPropertyDecl(false))
1119 return Prop;
1120 }
1121
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001122 return nullptr;
Jordan Rose04bec392012-10-10 16:42:54 +00001123}
1124
Chris Lattnerab351632009-02-20 20:59:54 +00001125//===----------------------------------------------------------------------===//
1126// ObjCInterfaceDecl
1127//===----------------------------------------------------------------------===//
1128
Douglas Gregora6ea10e2012-01-17 18:09:05 +00001129ObjCInterfaceDecl *ObjCInterfaceDecl::Create(const ASTContext &C,
Chris Lattnerab351632009-02-20 20:59:54 +00001130 DeclContext *DC,
1131 SourceLocation atLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00001132 IdentifierInfo *Id,
Douglas Gregor0af55012011-12-16 03:12:41 +00001133 ObjCInterfaceDecl *PrevDecl,
Chris Lattnerab351632009-02-20 20:59:54 +00001134 SourceLocation ClassLoc,
Douglas Gregor7723fec2011-12-15 20:29:51 +00001135 bool isInternal){
Stephen Hines651f13c2014-04-23 16:59:28 -07001136 ObjCInterfaceDecl *Result = new (C, DC)
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001137 ObjCInterfaceDecl(C, DC, atLoc, Id, ClassLoc, PrevDecl, isInternal);
Douglas Gregor6bd99292013-02-09 01:35:03 +00001138 Result->Data.setInt(!C.getLangOpts().Modules);
Douglas Gregor0af55012011-12-16 03:12:41 +00001139 C.getObjCInterfaceType(Result, PrevDecl);
Douglas Gregor0af55012011-12-16 03:12:41 +00001140 return Result;
1141}
1142
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001143ObjCInterfaceDecl *ObjCInterfaceDecl::CreateDeserialized(const ASTContext &C,
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00001144 unsigned ID) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001145 ObjCInterfaceDecl *Result = new (C, ID) ObjCInterfaceDecl(C, nullptr,
1146 SourceLocation(),
1147 nullptr,
1148 SourceLocation(),
1149 nullptr, false);
Douglas Gregor6bd99292013-02-09 01:35:03 +00001150 Result->Data.setInt(!C.getLangOpts().Modules);
1151 return Result;
Chris Lattnerab351632009-02-20 20:59:54 +00001152}
1153
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001154ObjCInterfaceDecl::ObjCInterfaceDecl(const ASTContext &C, DeclContext *DC,
1155 SourceLocation AtLoc, IdentifierInfo *Id,
1156 SourceLocation CLoc,
1157 ObjCInterfaceDecl *PrevDecl,
1158 bool IsInternal)
1159 : ObjCContainerDecl(ObjCInterface, DC, Id, CLoc, AtLoc),
1160 redeclarable_base(C), TypeForDecl(nullptr), Data() {
Rafael Espindolabc650912013-10-17 15:37:26 +00001161 setPreviousDecl(PrevDecl);
Douglas Gregorfd002a72011-12-16 22:37:11 +00001162
1163 // Copy the 'data' pointer over.
1164 if (PrevDecl)
1165 Data = PrevDecl->Data;
1166
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001167 setImplicit(IsInternal);
Chris Lattnerab351632009-02-20 20:59:54 +00001168}
1169
Douglas Gregor26ac3f32010-12-01 23:49:52 +00001170void ObjCInterfaceDecl::LoadExternalDefinition() const {
Douglas Gregor2e5c15b2011-12-15 05:27:12 +00001171 assert(data().ExternallyCompleted && "Class is not externally completed");
1172 data().ExternallyCompleted = false;
Douglas Gregor26ac3f32010-12-01 23:49:52 +00001173 getASTContext().getExternalSource()->CompleteType(
1174 const_cast<ObjCInterfaceDecl *>(this));
1175}
1176
1177void ObjCInterfaceDecl::setExternallyCompleted() {
1178 assert(getASTContext().getExternalSource() &&
1179 "Class can't be externally completed without an external source");
Douglas Gregor2e5c15b2011-12-15 05:27:12 +00001180 assert(hasDefinition() &&
Douglas Gregor26ac3f32010-12-01 23:49:52 +00001181 "Forward declarations can't be externally completed");
Douglas Gregor2e5c15b2011-12-15 05:27:12 +00001182 data().ExternallyCompleted = true;
Douglas Gregor26ac3f32010-12-01 23:49:52 +00001183}
1184
Stephen Hines651f13c2014-04-23 16:59:28 -07001185void ObjCInterfaceDecl::setHasDesignatedInitializers() {
1186 // Check for a complete definition and recover if not so.
1187 if (!isThisDeclarationADefinition())
1188 return;
1189 data().HasDesignatedInitializers = true;
1190}
1191
1192bool ObjCInterfaceDecl::hasDesignatedInitializers() const {
1193 // Check for a complete definition and recover if not so.
1194 if (!isThisDeclarationADefinition())
1195 return false;
1196 if (data().ExternallyCompleted)
1197 LoadExternalDefinition();
1198
1199 return data().HasDesignatedInitializers;
1200}
1201
Argyrios Kyrtzidis8a1d7222009-07-21 00:05:53 +00001202ObjCImplementationDecl *ObjCInterfaceDecl::getImplementation() const {
Douglas Gregor7723fec2011-12-15 20:29:51 +00001203 if (const ObjCInterfaceDecl *Def = getDefinition()) {
1204 if (data().ExternallyCompleted)
1205 LoadExternalDefinition();
1206
1207 return getASTContext().getObjCImplementation(
1208 const_cast<ObjCInterfaceDecl*>(Def));
1209 }
1210
Douglas Gregor2e5c15b2011-12-15 05:27:12 +00001211 // FIXME: Should make sure no callers ever do this.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001212 return nullptr;
Argyrios Kyrtzidis8a1d7222009-07-21 00:05:53 +00001213}
1214
1215void ObjCInterfaceDecl::setImplementation(ObjCImplementationDecl *ImplD) {
Douglas Gregor7723fec2011-12-15 20:29:51 +00001216 getASTContext().setObjCImplementation(getDefinition(), ImplD);
Argyrios Kyrtzidis8a1d7222009-07-21 00:05:53 +00001217}
1218
Fariborz Jahanian2c5d8452013-02-13 22:50:36 +00001219namespace {
1220 struct SynthesizeIvarChunk {
1221 uint64_t Size;
1222 ObjCIvarDecl *Ivar;
1223 SynthesizeIvarChunk(uint64_t size, ObjCIvarDecl *ivar)
1224 : Size(size), Ivar(ivar) {}
1225 };
1226
1227 bool operator<(const SynthesizeIvarChunk & LHS,
1228 const SynthesizeIvarChunk &RHS) {
1229 return LHS.Size < RHS.Size;
1230 }
1231}
1232
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +00001233/// all_declared_ivar_begin - return first ivar declared in this class,
1234/// its extensions and its implementation. Lazily build the list on first
1235/// access.
Adrian Prantl4919de62013-03-06 22:03:30 +00001236///
1237/// Caveat: The list returned by this method reflects the current
1238/// state of the parser. The cache will be updated for every ivar
1239/// added by an extension or the implementation when they are
1240/// encountered.
1241/// See also ObjCIvarDecl::Create().
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +00001242ObjCIvarDecl *ObjCInterfaceDecl::all_declared_ivar_begin() {
Douglas Gregor2e5c15b2011-12-15 05:27:12 +00001243 // FIXME: Should make sure no callers ever do this.
1244 if (!hasDefinition())
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001245 return nullptr;
1246
1247 ObjCIvarDecl *curIvar = nullptr;
Adrian Prantl4919de62013-03-06 22:03:30 +00001248 if (!data().IvarList) {
1249 if (!ivar_empty()) {
1250 ObjCInterfaceDecl::ivar_iterator I = ivar_begin(), E = ivar_end();
1251 data().IvarList = *I; ++I;
1252 for (curIvar = data().IvarList; I != E; curIvar = *I, ++I)
Adrian Prantl10b4df72013-02-27 01:31:55 +00001253 curIvar->setNextIvar(*I);
1254 }
Adrian Prantl4919de62013-03-06 22:03:30 +00001255
Stephen Hines651f13c2014-04-23 16:59:28 -07001256 for (const auto *Ext : known_extensions()) {
Adrian Prantl4919de62013-03-06 22:03:30 +00001257 if (!Ext->ivar_empty()) {
1258 ObjCCategoryDecl::ivar_iterator
1259 I = Ext->ivar_begin(),
1260 E = Ext->ivar_end();
1261 if (!data().IvarList) {
1262 data().IvarList = *I; ++I;
1263 curIvar = data().IvarList;
1264 }
1265 for ( ;I != E; curIvar = *I, ++I)
1266 curIvar->setNextIvar(*I);
1267 }
1268 }
1269 data().IvarListMissingImplementation = true;
Adrian Prantl10b4df72013-02-27 01:31:55 +00001270 }
Adrian Prantl4919de62013-03-06 22:03:30 +00001271
1272 // cached and complete!
1273 if (!data().IvarListMissingImplementation)
1274 return data().IvarList;
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +00001275
1276 if (ObjCImplementationDecl *ImplDecl = getImplementation()) {
Adrian Prantl4919de62013-03-06 22:03:30 +00001277 data().IvarListMissingImplementation = false;
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +00001278 if (!ImplDecl->ivar_empty()) {
Fariborz Jahanian2c5d8452013-02-13 22:50:36 +00001279 SmallVector<SynthesizeIvarChunk, 16> layout;
Stephen Hines651f13c2014-04-23 16:59:28 -07001280 for (auto *IV : ImplDecl->ivars()) {
Fariborz Jahanian2c5d8452013-02-13 22:50:36 +00001281 if (IV->getSynthesize() && !IV->isInvalidDecl()) {
1282 layout.push_back(SynthesizeIvarChunk(
1283 IV->getASTContext().getTypeSize(IV->getType()), IV));
1284 continue;
1285 }
1286 if (!data().IvarList)
Stephen Hines651f13c2014-04-23 16:59:28 -07001287 data().IvarList = IV;
Fariborz Jahanian2c5d8452013-02-13 22:50:36 +00001288 else
Stephen Hines651f13c2014-04-23 16:59:28 -07001289 curIvar->setNextIvar(IV);
1290 curIvar = IV;
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +00001291 }
Fariborz Jahanian2c5d8452013-02-13 22:50:36 +00001292
1293 if (!layout.empty()) {
1294 // Order synthesized ivars by their size.
1295 std::stable_sort(layout.begin(), layout.end());
1296 unsigned Ix = 0, EIx = layout.size();
1297 if (!data().IvarList) {
1298 data().IvarList = layout[0].Ivar; Ix++;
1299 curIvar = data().IvarList;
1300 }
1301 for ( ; Ix != EIx; curIvar = layout[Ix].Ivar, Ix++)
1302 curIvar->setNextIvar(layout[Ix].Ivar);
1303 }
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +00001304 }
1305 }
Douglas Gregor2e5c15b2011-12-15 05:27:12 +00001306 return data().IvarList;
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +00001307}
Chris Lattnerab351632009-02-20 20:59:54 +00001308
1309/// FindCategoryDeclaration - Finds category declaration in the list of
1310/// categories for this class and returns it. Name of the category is passed
1311/// in 'CategoryId'. If category not found, return 0;
Fariborz Jahanianae6f6fd2008-12-05 22:32:48 +00001312///
Chris Lattnerab351632009-02-20 20:59:54 +00001313ObjCCategoryDecl *
1314ObjCInterfaceDecl::FindCategoryDeclaration(IdentifierInfo *CategoryId) const {
Argyrios Kyrtzidis5a61e0c2012-03-02 19:14:29 +00001315 // FIXME: Should make sure no callers ever do this.
1316 if (!hasDefinition())
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001317 return nullptr;
Argyrios Kyrtzidis5a61e0c2012-03-02 19:14:29 +00001318
Douglas Gregor2e5c15b2011-12-15 05:27:12 +00001319 if (data().ExternallyCompleted)
Douglas Gregor26ac3f32010-12-01 23:49:52 +00001320 LoadExternalDefinition();
1321
Stephen Hines651f13c2014-04-23 16:59:28 -07001322 for (auto *Cat : visible_categories())
Douglas Gregord3297242013-01-16 23:00:23 +00001323 if (Cat->getIdentifier() == CategoryId)
Stephen Hines651f13c2014-04-23 16:59:28 -07001324 return Cat;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001325
1326 return nullptr;
Fariborz Jahanianae6f6fd2008-12-05 22:32:48 +00001327}
1328
Argyrios Kyrtzidis1cb35dd2009-07-21 00:06:20 +00001329ObjCMethodDecl *
1330ObjCInterfaceDecl::getCategoryInstanceMethod(Selector Sel) const {
Stephen Hines651f13c2014-04-23 16:59:28 -07001331 for (const auto *Cat : visible_categories()) {
Douglas Gregord3297242013-01-16 23:00:23 +00001332 if (ObjCCategoryImplDecl *Impl = Cat->getImplementation())
Argyrios Kyrtzidis1cb35dd2009-07-21 00:06:20 +00001333 if (ObjCMethodDecl *MD = Impl->getInstanceMethod(Sel))
1334 return MD;
Douglas Gregord3297242013-01-16 23:00:23 +00001335 }
1336
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001337 return nullptr;
Argyrios Kyrtzidis1cb35dd2009-07-21 00:06:20 +00001338}
1339
1340ObjCMethodDecl *ObjCInterfaceDecl::getCategoryClassMethod(Selector Sel) const {
Stephen Hines651f13c2014-04-23 16:59:28 -07001341 for (const auto *Cat : visible_categories()) {
Douglas Gregord3297242013-01-16 23:00:23 +00001342 if (ObjCCategoryImplDecl *Impl = Cat->getImplementation())
Argyrios Kyrtzidis1cb35dd2009-07-21 00:06:20 +00001343 if (ObjCMethodDecl *MD = Impl->getClassMethod(Sel))
1344 return MD;
Douglas Gregord3297242013-01-16 23:00:23 +00001345 }
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001346
1347 return nullptr;
Argyrios Kyrtzidis1cb35dd2009-07-21 00:06:20 +00001348}
1349
Fariborz Jahanian0fd89042009-08-11 22:02:25 +00001350/// ClassImplementsProtocol - Checks that 'lProto' protocol
1351/// has been implemented in IDecl class, its super class or categories (if
1352/// lookupCategory is true).
1353bool ObjCInterfaceDecl::ClassImplementsProtocol(ObjCProtocolDecl *lProto,
1354 bool lookupCategory,
1355 bool RHSIsQualifiedID) {
Douglas Gregor2e5c15b2011-12-15 05:27:12 +00001356 if (!hasDefinition())
1357 return false;
1358
Fariborz Jahanian0fd89042009-08-11 22:02:25 +00001359 ObjCInterfaceDecl *IDecl = this;
1360 // 1st, look up the class.
Stephen Hines651f13c2014-04-23 16:59:28 -07001361 for (auto *PI : IDecl->protocols()){
1362 if (getASTContext().ProtocolCompatibleWithProtocol(lProto, PI))
Fariborz Jahanian0fd89042009-08-11 22:02:25 +00001363 return true;
1364 // This is dubious and is added to be compatible with gcc. In gcc, it is
1365 // also allowed assigning a protocol-qualified 'id' type to a LHS object
1366 // when protocol in qualified LHS is in list of protocols in the rhs 'id'
1367 // object. This IMO, should be a bug.
1368 // FIXME: Treat this as an extension, and flag this as an error when GCC
1369 // extensions are not enabled.
Mike Stump1eb44332009-09-09 15:08:12 +00001370 if (RHSIsQualifiedID &&
Stephen Hines651f13c2014-04-23 16:59:28 -07001371 getASTContext().ProtocolCompatibleWithProtocol(PI, lProto))
Fariborz Jahanian0fd89042009-08-11 22:02:25 +00001372 return true;
1373 }
Mike Stump1eb44332009-09-09 15:08:12 +00001374
Fariborz Jahanian0fd89042009-08-11 22:02:25 +00001375 // 2nd, look up the category.
1376 if (lookupCategory)
Stephen Hines651f13c2014-04-23 16:59:28 -07001377 for (const auto *Cat : visible_categories()) {
1378 for (auto *PI : Cat->protocols())
1379 if (getASTContext().ProtocolCompatibleWithProtocol(lProto, PI))
Fariborz Jahanian0fd89042009-08-11 22:02:25 +00001380 return true;
1381 }
Mike Stump1eb44332009-09-09 15:08:12 +00001382
Fariborz Jahanian0fd89042009-08-11 22:02:25 +00001383 // 3rd, look up the super class(s)
1384 if (IDecl->getSuperClass())
1385 return
1386 IDecl->getSuperClass()->ClassImplementsProtocol(lProto, lookupCategory,
1387 RHSIsQualifiedID);
Mike Stump1eb44332009-09-09 15:08:12 +00001388
Fariborz Jahanian0fd89042009-08-11 22:02:25 +00001389 return false;
1390}
1391
Chris Lattnerab351632009-02-20 20:59:54 +00001392//===----------------------------------------------------------------------===//
1393// ObjCIvarDecl
1394//===----------------------------------------------------------------------===//
1395
David Blaikie99ba9e32011-12-20 02:48:34 +00001396void ObjCIvarDecl::anchor() { }
1397
Daniel Dunbara0654922010-04-02 20:10:03 +00001398ObjCIvarDecl *ObjCIvarDecl::Create(ASTContext &C, ObjCContainerDecl *DC,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001399 SourceLocation StartLoc,
1400 SourceLocation IdLoc, IdentifierInfo *Id,
John McCalla93c9342009-12-07 02:54:59 +00001401 QualType T, TypeSourceInfo *TInfo,
Fariborz Jahanianad51e742010-07-17 00:59:30 +00001402 AccessControl ac, Expr *BW,
Stephen Hines651f13c2014-04-23 16:59:28 -07001403 bool synthesized) {
Daniel Dunbara0654922010-04-02 20:10:03 +00001404 if (DC) {
1405 // Ivar's can only appear in interfaces, implementations (via synthesized
1406 // properties), and class extensions (via direct declaration, or synthesized
1407 // properties).
1408 //
1409 // FIXME: This should really be asserting this:
1410 // (isa<ObjCCategoryDecl>(DC) &&
1411 // cast<ObjCCategoryDecl>(DC)->IsClassExtension()))
1412 // but unfortunately we sometimes place ivars into non-class extension
1413 // categories on error. This breaks an AST invariant, and should not be
1414 // fixed.
1415 assert((isa<ObjCInterfaceDecl>(DC) || isa<ObjCImplementationDecl>(DC) ||
1416 isa<ObjCCategoryDecl>(DC)) &&
1417 "Invalid ivar decl context!");
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +00001418 // Once a new ivar is created in any of class/class-extension/implementation
1419 // decl contexts, the previously built IvarList must be rebuilt.
1420 ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(DC);
1421 if (!ID) {
Eric Christopherffb0c3a2012-07-19 22:22:55 +00001422 if (ObjCImplementationDecl *IM = dyn_cast<ObjCImplementationDecl>(DC))
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +00001423 ID = IM->getClassInterface();
Eric Christopherffb0c3a2012-07-19 22:22:55 +00001424 else
1425 ID = cast<ObjCCategoryDecl>(DC)->getClassInterface();
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +00001426 }
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001427 ID->setIvarList(nullptr);
Daniel Dunbara0654922010-04-02 20:10:03 +00001428 }
1429
Stephen Hines651f13c2014-04-23 16:59:28 -07001430 return new (C, DC) ObjCIvarDecl(DC, StartLoc, IdLoc, Id, T, TInfo, ac, BW,
1431 synthesized);
Chris Lattnerab351632009-02-20 20:59:54 +00001432}
1433
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00001434ObjCIvarDecl *ObjCIvarDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001435 return new (C, ID) ObjCIvarDecl(nullptr, SourceLocation(), SourceLocation(),
1436 nullptr, QualType(), nullptr,
1437 ObjCIvarDecl::None, nullptr, false);
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00001438}
1439
Daniel Dunbar27a961a2010-04-02 21:13:59 +00001440const ObjCInterfaceDecl *ObjCIvarDecl::getContainingInterface() const {
1441 const ObjCContainerDecl *DC = cast<ObjCContainerDecl>(getDeclContext());
Chris Lattnerab351632009-02-20 20:59:54 +00001442
Daniel Dunbar27a961a2010-04-02 21:13:59 +00001443 switch (DC->getKind()) {
1444 default:
1445 case ObjCCategoryImpl:
1446 case ObjCProtocol:
David Blaikieb219cfc2011-09-23 05:06:16 +00001447 llvm_unreachable("invalid ivar container!");
Daniel Dunbar27a961a2010-04-02 21:13:59 +00001448
1449 // Ivars can only appear in class extension categories.
1450 case ObjCCategory: {
1451 const ObjCCategoryDecl *CD = cast<ObjCCategoryDecl>(DC);
1452 assert(CD->IsClassExtension() && "invalid container for ivar!");
1453 return CD->getClassInterface();
1454 }
1455
1456 case ObjCImplementation:
1457 return cast<ObjCImplementationDecl>(DC)->getClassInterface();
1458
1459 case ObjCInterface:
1460 return cast<ObjCInterfaceDecl>(DC);
1461 }
1462}
Chris Lattnerab351632009-02-20 20:59:54 +00001463
1464//===----------------------------------------------------------------------===//
1465// ObjCAtDefsFieldDecl
1466//===----------------------------------------------------------------------===//
1467
David Blaikie99ba9e32011-12-20 02:48:34 +00001468void ObjCAtDefsFieldDecl::anchor() { }
1469
Chris Lattnerab351632009-02-20 20:59:54 +00001470ObjCAtDefsFieldDecl
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001471*ObjCAtDefsFieldDecl::Create(ASTContext &C, DeclContext *DC,
1472 SourceLocation StartLoc, SourceLocation IdLoc,
Chris Lattnerab351632009-02-20 20:59:54 +00001473 IdentifierInfo *Id, QualType T, Expr *BW) {
Stephen Hines651f13c2014-04-23 16:59:28 -07001474 return new (C, DC) ObjCAtDefsFieldDecl(DC, StartLoc, IdLoc, Id, T, BW);
Chris Lattnerab351632009-02-20 20:59:54 +00001475}
1476
Stephen Hines651f13c2014-04-23 16:59:28 -07001477ObjCAtDefsFieldDecl *ObjCAtDefsFieldDecl::CreateDeserialized(ASTContext &C,
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00001478 unsigned ID) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001479 return new (C, ID) ObjCAtDefsFieldDecl(nullptr, SourceLocation(),
1480 SourceLocation(), nullptr, QualType(),
1481 nullptr);
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00001482}
1483
Chris Lattnerab351632009-02-20 20:59:54 +00001484//===----------------------------------------------------------------------===//
1485// ObjCProtocolDecl
1486//===----------------------------------------------------------------------===//
1487
David Blaikie99ba9e32011-12-20 02:48:34 +00001488void ObjCProtocolDecl::anchor() { }
1489
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001490ObjCProtocolDecl::ObjCProtocolDecl(ASTContext &C, DeclContext *DC,
1491 IdentifierInfo *Id, SourceLocation nameLoc,
Douglas Gregor27c6da22012-01-01 20:30:41 +00001492 SourceLocation atStartLoc,
Douglas Gregorc9d3c7e2012-01-01 22:06:18 +00001493 ObjCProtocolDecl *PrevDecl)
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001494 : ObjCContainerDecl(ObjCProtocol, DC, Id, nameLoc, atStartLoc),
1495 redeclarable_base(C), Data() {
Rafael Espindolabc650912013-10-17 15:37:26 +00001496 setPreviousDecl(PrevDecl);
Douglas Gregor27c6da22012-01-01 20:30:41 +00001497 if (PrevDecl)
1498 Data = PrevDecl->Data;
1499}
1500
Chris Lattnerab351632009-02-20 20:59:54 +00001501ObjCProtocolDecl *ObjCProtocolDecl::Create(ASTContext &C, DeclContext *DC,
Argyrios Kyrtzidis1711fc92011-10-04 04:48:02 +00001502 IdentifierInfo *Id,
1503 SourceLocation nameLoc,
Argyrios Kyrtzidisb05d7b22011-10-17 19:48:06 +00001504 SourceLocation atStartLoc,
Douglas Gregorc9d3c7e2012-01-01 22:06:18 +00001505 ObjCProtocolDecl *PrevDecl) {
Stephen Hines651f13c2014-04-23 16:59:28 -07001506 ObjCProtocolDecl *Result =
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001507 new (C, DC) ObjCProtocolDecl(C, DC, Id, nameLoc, atStartLoc, PrevDecl);
Douglas Gregor6bd99292013-02-09 01:35:03 +00001508 Result->Data.setInt(!C.getLangOpts().Modules);
Douglas Gregor27c6da22012-01-01 20:30:41 +00001509 return Result;
Chris Lattnerab351632009-02-20 20:59:54 +00001510}
1511
Stephen Hines651f13c2014-04-23 16:59:28 -07001512ObjCProtocolDecl *ObjCProtocolDecl::CreateDeserialized(ASTContext &C,
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00001513 unsigned ID) {
Stephen Hines651f13c2014-04-23 16:59:28 -07001514 ObjCProtocolDecl *Result =
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001515 new (C, ID) ObjCProtocolDecl(C, nullptr, nullptr, SourceLocation(),
1516 SourceLocation(), nullptr);
Douglas Gregor6bd99292013-02-09 01:35:03 +00001517 Result->Data.setInt(!C.getLangOpts().Modules);
1518 return Result;
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00001519}
1520
Steve Naroff91b0b0c2009-03-01 16:12:44 +00001521ObjCProtocolDecl *ObjCProtocolDecl::lookupProtocolNamed(IdentifierInfo *Name) {
1522 ObjCProtocolDecl *PDecl = this;
1523
1524 if (Name == getIdentifier())
1525 return PDecl;
1526
Stephen Hines651f13c2014-04-23 16:59:28 -07001527 for (auto *I : protocols())
1528 if ((PDecl = I->lookupProtocolNamed(Name)))
Steve Naroff91b0b0c2009-03-01 16:12:44 +00001529 return PDecl;
Mike Stump1eb44332009-09-09 15:08:12 +00001530
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001531 return nullptr;
Steve Naroff91b0b0c2009-03-01 16:12:44 +00001532}
1533
Argyrios Kyrtzidis094e2bb2009-07-25 22:15:38 +00001534// lookupMethod - Lookup a instance/class method in the protocol and protocols
Chris Lattnerab351632009-02-20 20:59:54 +00001535// it inherited.
Argyrios Kyrtzidis094e2bb2009-07-25 22:15:38 +00001536ObjCMethodDecl *ObjCProtocolDecl::lookupMethod(Selector Sel,
1537 bool isInstance) const {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001538 ObjCMethodDecl *MethodDecl = nullptr;
Mike Stump1eb44332009-09-09 15:08:12 +00001539
Douglas Gregor0f9b9f32013-01-17 00:38:46 +00001540 // If there is no definition or the definition is hidden, we don't find
1541 // anything.
1542 const ObjCProtocolDecl *Def = getDefinition();
1543 if (!Def || Def->isHidden())
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001544 return nullptr;
Douglas Gregor0f9b9f32013-01-17 00:38:46 +00001545
Argyrios Kyrtzidis094e2bb2009-07-25 22:15:38 +00001546 if ((MethodDecl = getMethod(Sel, isInstance)))
Chris Lattnerab351632009-02-20 20:59:54 +00001547 return MethodDecl;
Mike Stump1eb44332009-09-09 15:08:12 +00001548
Stephen Hines651f13c2014-04-23 16:59:28 -07001549 for (const auto *I : protocols())
1550 if ((MethodDecl = I->lookupMethod(Sel, isInstance)))
Chris Lattnerab351632009-02-20 20:59:54 +00001551 return MethodDecl;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001552 return nullptr;
Chris Lattnerab351632009-02-20 20:59:54 +00001553}
1554
Douglas Gregor5e2a1ff2012-01-01 19:29:29 +00001555void ObjCProtocolDecl::allocateDefinitionData() {
Douglas Gregor6bd99292013-02-09 01:35:03 +00001556 assert(!Data.getPointer() && "Protocol already has a definition!");
1557 Data.setPointer(new (getASTContext()) DefinitionData);
1558 Data.getPointer()->Definition = this;
Douglas Gregor5e2a1ff2012-01-01 19:29:29 +00001559}
1560
1561void ObjCProtocolDecl::startDefinition() {
1562 allocateDefinitionData();
Douglas Gregor1d784b22012-01-01 19:51:50 +00001563
1564 // Update all of the declarations with a pointer to the definition.
Stephen Hines651f13c2014-04-23 16:59:28 -07001565 for (auto RD : redecls())
Douglas Gregor1d784b22012-01-01 19:51:50 +00001566 RD->Data = this->Data;
Argyrios Kyrtzidisad834d52011-11-12 21:07:46 +00001567}
1568
Fariborz Jahaniancfaed8d2013-02-14 22:33:34 +00001569void ObjCProtocolDecl::collectPropertiesToImplement(PropertyMap &PM,
1570 PropertyDeclOrder &PO) const {
Fariborz Jahaniancc5a28a2013-01-07 21:31:08 +00001571
1572 if (const ObjCProtocolDecl *PDecl = getDefinition()) {
Stephen Hines651f13c2014-04-23 16:59:28 -07001573 for (auto *Prop : PDecl->properties()) {
Fariborz Jahaniancc5a28a2013-01-07 21:31:08 +00001574 // Insert into PM if not there already.
1575 PM.insert(std::make_pair(Prop->getIdentifier(), Prop));
Fariborz Jahaniancfaed8d2013-02-14 22:33:34 +00001576 PO.push_back(Prop);
Fariborz Jahaniancc5a28a2013-01-07 21:31:08 +00001577 }
1578 // Scan through protocol's protocols.
Stephen Hines651f13c2014-04-23 16:59:28 -07001579 for (const auto *PI : PDecl->protocols())
1580 PI->collectPropertiesToImplement(PM, PO);
Anna Zaksb36ea372012-10-18 19:17:53 +00001581 }
Anna Zaksb36ea372012-10-18 19:17:53 +00001582}
1583
Fariborz Jahanian8dbda512013-05-20 21:20:24 +00001584
1585void ObjCProtocolDecl::collectInheritedProtocolProperties(
1586 const ObjCPropertyDecl *Property,
1587 ProtocolPropertyMap &PM) const {
1588 if (const ObjCProtocolDecl *PDecl = getDefinition()) {
1589 bool MatchFound = false;
Stephen Hines651f13c2014-04-23 16:59:28 -07001590 for (auto *Prop : PDecl->properties()) {
Fariborz Jahanian8dbda512013-05-20 21:20:24 +00001591 if (Prop == Property)
1592 continue;
1593 if (Prop->getIdentifier() == Property->getIdentifier()) {
1594 PM[PDecl] = Prop;
1595 MatchFound = true;
1596 break;
1597 }
1598 }
1599 // Scan through protocol's protocols which did not have a matching property.
1600 if (!MatchFound)
Stephen Hines651f13c2014-04-23 16:59:28 -07001601 for (const auto *PI : PDecl->protocols())
1602 PI->collectInheritedProtocolProperties(Property, PM);
Fariborz Jahanian8dbda512013-05-20 21:20:24 +00001603 }
1604}
Anna Zaksb36ea372012-10-18 19:17:53 +00001605
Chris Lattnerab351632009-02-20 20:59:54 +00001606//===----------------------------------------------------------------------===//
Chris Lattnerab351632009-02-20 20:59:54 +00001607// ObjCCategoryDecl
1608//===----------------------------------------------------------------------===//
1609
David Blaikie99ba9e32011-12-20 02:48:34 +00001610void ObjCCategoryDecl::anchor() { }
1611
Chris Lattnerab351632009-02-20 20:59:54 +00001612ObjCCategoryDecl *ObjCCategoryDecl::Create(ASTContext &C, DeclContext *DC,
Stephen Hines651f13c2014-04-23 16:59:28 -07001613 SourceLocation AtLoc,
Douglas Gregor3db211b2010-01-16 16:38:58 +00001614 SourceLocation ClassNameLoc,
1615 SourceLocation CategoryNameLoc,
Argyrios Kyrtzidis955fadb2011-08-30 19:43:26 +00001616 IdentifierInfo *Id,
Fariborz Jahanianaf300292012-02-20 20:09:20 +00001617 ObjCInterfaceDecl *IDecl,
1618 SourceLocation IvarLBraceLoc,
1619 SourceLocation IvarRBraceLoc) {
Stephen Hines651f13c2014-04-23 16:59:28 -07001620 ObjCCategoryDecl *CatDecl =
1621 new (C, DC) ObjCCategoryDecl(DC, AtLoc, ClassNameLoc, CategoryNameLoc, Id,
1622 IDecl, IvarLBraceLoc, IvarRBraceLoc);
Argyrios Kyrtzidis955fadb2011-08-30 19:43:26 +00001623 if (IDecl) {
1624 // Link this category into its class's category list.
Douglas Gregord3297242013-01-16 23:00:23 +00001625 CatDecl->NextClassCategory = IDecl->getCategoryListRaw();
Douglas Gregor2e5c15b2011-12-15 05:27:12 +00001626 if (IDecl->hasDefinition()) {
Douglas Gregord3297242013-01-16 23:00:23 +00001627 IDecl->setCategoryListRaw(CatDecl);
Douglas Gregor2e5c15b2011-12-15 05:27:12 +00001628 if (ASTMutationListener *L = C.getASTMutationListener())
1629 L->AddedObjCCategoryToInterface(CatDecl, IDecl);
1630 }
Argyrios Kyrtzidis955fadb2011-08-30 19:43:26 +00001631 }
1632
1633 return CatDecl;
1634}
1635
Stephen Hines651f13c2014-04-23 16:59:28 -07001636ObjCCategoryDecl *ObjCCategoryDecl::CreateDeserialized(ASTContext &C,
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00001637 unsigned ID) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001638 return new (C, ID) ObjCCategoryDecl(nullptr, SourceLocation(),
1639 SourceLocation(), SourceLocation(),
1640 nullptr, nullptr);
Chris Lattnerab351632009-02-20 20:59:54 +00001641}
1642
Argyrios Kyrtzidis8a1d7222009-07-21 00:05:53 +00001643ObjCCategoryImplDecl *ObjCCategoryDecl::getImplementation() const {
1644 return getASTContext().getObjCImplementation(
1645 const_cast<ObjCCategoryDecl*>(this));
1646}
1647
1648void ObjCCategoryDecl::setImplementation(ObjCCategoryImplDecl *ImplD) {
1649 getASTContext().setObjCImplementation(this, ImplD);
1650}
1651
1652
Chris Lattnerab351632009-02-20 20:59:54 +00001653//===----------------------------------------------------------------------===//
1654// ObjCCategoryImplDecl
1655//===----------------------------------------------------------------------===//
1656
David Blaikie99ba9e32011-12-20 02:48:34 +00001657void ObjCCategoryImplDecl::anchor() { }
1658
Chris Lattnerab351632009-02-20 20:59:54 +00001659ObjCCategoryImplDecl *
1660ObjCCategoryImplDecl::Create(ASTContext &C, DeclContext *DC,
Argyrios Kyrtzidis1711fc92011-10-04 04:48:02 +00001661 IdentifierInfo *Id,
1662 ObjCInterfaceDecl *ClassInterface,
1663 SourceLocation nameLoc,
Argyrios Kyrtzidisc6994002011-12-09 00:31:40 +00001664 SourceLocation atStartLoc,
1665 SourceLocation CategoryNameLoc) {
Fariborz Jahanian712ef872011-12-23 00:31:02 +00001666 if (ClassInterface && ClassInterface->hasDefinition())
1667 ClassInterface = ClassInterface->getDefinition();
Stephen Hines651f13c2014-04-23 16:59:28 -07001668 return new (C, DC) ObjCCategoryImplDecl(DC, Id, ClassInterface, nameLoc,
1669 atStartLoc, CategoryNameLoc);
Chris Lattnerab351632009-02-20 20:59:54 +00001670}
1671
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00001672ObjCCategoryImplDecl *ObjCCategoryImplDecl::CreateDeserialized(ASTContext &C,
1673 unsigned ID) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001674 return new (C, ID) ObjCCategoryImplDecl(nullptr, nullptr, nullptr,
1675 SourceLocation(), SourceLocation(),
1676 SourceLocation());
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00001677}
1678
Steve Naroff0d69b8c2009-10-29 21:11:04 +00001679ObjCCategoryDecl *ObjCCategoryImplDecl::getCategoryDecl() const {
Ted Kremenekebfa3392010-03-19 20:39:03 +00001680 // The class interface might be NULL if we are working with invalid code.
1681 if (const ObjCInterfaceDecl *ID = getClassInterface())
1682 return ID->FindCategoryDeclaration(getIdentifier());
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001683 return nullptr;
Argyrios Kyrtzidis42920732009-07-28 05:11:05 +00001684}
1685
Chris Lattnerab351632009-02-20 20:59:54 +00001686
David Blaikie99ba9e32011-12-20 02:48:34 +00001687void ObjCImplDecl::anchor() { }
1688
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001689void ObjCImplDecl::addPropertyImplementation(ObjCPropertyImplDecl *property) {
Douglas Gregor2c2d43c2009-04-23 02:42:49 +00001690 // FIXME: The context should be correct before we get here.
Douglas Gregor653f1b12009-04-23 01:02:12 +00001691 property->setLexicalDeclContext(this);
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001692 addDecl(property);
Douglas Gregor653f1b12009-04-23 01:02:12 +00001693}
1694
Argyrios Kyrtzidis8a1d7222009-07-21 00:05:53 +00001695void ObjCImplDecl::setClassInterface(ObjCInterfaceDecl *IFace) {
1696 ASTContext &Ctx = getASTContext();
1697
1698 if (ObjCImplementationDecl *ImplD
Duncan Sands98f2cca2009-07-21 07:56:29 +00001699 = dyn_cast_or_null<ObjCImplementationDecl>(this)) {
Argyrios Kyrtzidis8a1d7222009-07-21 00:05:53 +00001700 if (IFace)
1701 Ctx.setObjCImplementation(IFace, ImplD);
1702
Duncan Sands98f2cca2009-07-21 07:56:29 +00001703 } else if (ObjCCategoryImplDecl *ImplD =
Argyrios Kyrtzidis8a1d7222009-07-21 00:05:53 +00001704 dyn_cast_or_null<ObjCCategoryImplDecl>(this)) {
1705 if (ObjCCategoryDecl *CD = IFace->FindCategoryDeclaration(getIdentifier()))
1706 Ctx.setObjCImplementation(CD, ImplD);
1707 }
1708
1709 ClassInterface = IFace;
1710}
1711
Fariborz Jahanianae6f6fd2008-12-05 22:32:48 +00001712/// FindPropertyImplIvarDecl - This method lookup the ivar in the list of
Fariborz Jahanian6d1cb5c2013-03-12 17:43:00 +00001713/// properties implemented in this \@implementation block and returns
Chris Lattnerd6eed1c2009-02-16 19:24:31 +00001714/// the implemented property that uses it.
Fariborz Jahanianae6f6fd2008-12-05 22:32:48 +00001715///
Chris Lattner3aa18612009-02-28 18:42:10 +00001716ObjCPropertyImplDecl *ObjCImplDecl::
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001717FindPropertyImplIvarDecl(IdentifierInfo *ivarId) const {
Stephen Hines651f13c2014-04-23 16:59:28 -07001718 for (auto *PID : property_impls())
Fariborz Jahanianae6f6fd2008-12-05 22:32:48 +00001719 if (PID->getPropertyIvarDecl() &&
1720 PID->getPropertyIvarDecl()->getIdentifier() == ivarId)
1721 return PID;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001722 return nullptr;
Fariborz Jahanianae6f6fd2008-12-05 22:32:48 +00001723}
1724
1725/// FindPropertyImplDecl - This method looks up a previous ObjCPropertyImplDecl
James Dennett1c3a46a2012-06-15 22:30:14 +00001726/// added to the list of those properties \@synthesized/\@dynamic in this
1727/// category \@implementation block.
Fariborz Jahanianae6f6fd2008-12-05 22:32:48 +00001728///
Chris Lattner3aa18612009-02-28 18:42:10 +00001729ObjCPropertyImplDecl *ObjCImplDecl::
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001730FindPropertyImplDecl(IdentifierInfo *Id) const {
Stephen Hines651f13c2014-04-23 16:59:28 -07001731 for (auto *PID : property_impls())
Fariborz Jahanianae6f6fd2008-12-05 22:32:48 +00001732 if (PID->getPropertyDecl()->getIdentifier() == Id)
1733 return PID;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001734 return nullptr;
Fariborz Jahanianae6f6fd2008-12-05 22:32:48 +00001735}
1736
Chris Lattner5f9e2722011-07-23 10:55:15 +00001737raw_ostream &clang::operator<<(raw_ostream &OS,
Benjamin Kramerf9780592012-02-07 11:57:45 +00001738 const ObjCCategoryImplDecl &CID) {
1739 OS << CID.getName();
Benjamin Kramer900fc632010-04-17 09:33:03 +00001740 return OS;
1741}
1742
Chris Lattnerab351632009-02-20 20:59:54 +00001743//===----------------------------------------------------------------------===//
1744// ObjCImplementationDecl
1745//===----------------------------------------------------------------------===//
1746
David Blaikie99ba9e32011-12-20 02:48:34 +00001747void ObjCImplementationDecl::anchor() { }
1748
Chris Lattnerab351632009-02-20 20:59:54 +00001749ObjCImplementationDecl *
Mike Stump1eb44332009-09-09 15:08:12 +00001750ObjCImplementationDecl::Create(ASTContext &C, DeclContext *DC,
Chris Lattnerab351632009-02-20 20:59:54 +00001751 ObjCInterfaceDecl *ClassInterface,
Argyrios Kyrtzidis1711fc92011-10-04 04:48:02 +00001752 ObjCInterfaceDecl *SuperDecl,
1753 SourceLocation nameLoc,
Fariborz Jahanianaf300292012-02-20 20:09:20 +00001754 SourceLocation atStartLoc,
Argyrios Kyrtzidis634c5632013-05-03 18:05:44 +00001755 SourceLocation superLoc,
Fariborz Jahanianaf300292012-02-20 20:09:20 +00001756 SourceLocation IvarLBraceLoc,
1757 SourceLocation IvarRBraceLoc) {
Fariborz Jahanian712ef872011-12-23 00:31:02 +00001758 if (ClassInterface && ClassInterface->hasDefinition())
1759 ClassInterface = ClassInterface->getDefinition();
Stephen Hines651f13c2014-04-23 16:59:28 -07001760 return new (C, DC) ObjCImplementationDecl(DC, ClassInterface, SuperDecl,
1761 nameLoc, atStartLoc, superLoc,
1762 IvarLBraceLoc, IvarRBraceLoc);
Chris Lattnerab351632009-02-20 20:59:54 +00001763}
1764
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00001765ObjCImplementationDecl *
1766ObjCImplementationDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001767 return new (C, ID) ObjCImplementationDecl(nullptr, nullptr, nullptr,
1768 SourceLocation(), SourceLocation());
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00001769}
1770
John McCallda6d9762011-07-22 04:15:06 +00001771void ObjCImplementationDecl::setIvarInitializers(ASTContext &C,
1772 CXXCtorInitializer ** initializers,
1773 unsigned numInitializers) {
1774 if (numInitializers > 0) {
1775 NumIvarInitializers = numInitializers;
1776 CXXCtorInitializer **ivarInitializers =
1777 new (C) CXXCtorInitializer*[NumIvarInitializers];
1778 memcpy(ivarInitializers, initializers,
1779 numInitializers * sizeof(CXXCtorInitializer*));
1780 IvarInitializers = ivarInitializers;
1781 }
1782}
1783
Chris Lattner5f9e2722011-07-23 10:55:15 +00001784raw_ostream &clang::operator<<(raw_ostream &OS,
Benjamin Kramerf9780592012-02-07 11:57:45 +00001785 const ObjCImplementationDecl &ID) {
1786 OS << ID.getName();
Benjamin Kramer900fc632010-04-17 09:33:03 +00001787 return OS;
1788}
1789
Chris Lattnerab351632009-02-20 20:59:54 +00001790//===----------------------------------------------------------------------===//
1791// ObjCCompatibleAliasDecl
1792//===----------------------------------------------------------------------===//
1793
David Blaikie99ba9e32011-12-20 02:48:34 +00001794void ObjCCompatibleAliasDecl::anchor() { }
1795
Chris Lattnerab351632009-02-20 20:59:54 +00001796ObjCCompatibleAliasDecl *
1797ObjCCompatibleAliasDecl::Create(ASTContext &C, DeclContext *DC,
1798 SourceLocation L,
Mike Stump1eb44332009-09-09 15:08:12 +00001799 IdentifierInfo *Id,
Chris Lattnerab351632009-02-20 20:59:54 +00001800 ObjCInterfaceDecl* AliasedClass) {
Stephen Hines651f13c2014-04-23 16:59:28 -07001801 return new (C, DC) ObjCCompatibleAliasDecl(DC, L, Id, AliasedClass);
Chris Lattnerab351632009-02-20 20:59:54 +00001802}
1803
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00001804ObjCCompatibleAliasDecl *
1805ObjCCompatibleAliasDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001806 return new (C, ID) ObjCCompatibleAliasDecl(nullptr, SourceLocation(),
1807 nullptr, nullptr);
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00001808}
1809
Chris Lattnerab351632009-02-20 20:59:54 +00001810//===----------------------------------------------------------------------===//
1811// ObjCPropertyDecl
1812//===----------------------------------------------------------------------===//
1813
David Blaikie99ba9e32011-12-20 02:48:34 +00001814void ObjCPropertyDecl::anchor() { }
1815
Chris Lattnerab351632009-02-20 20:59:54 +00001816ObjCPropertyDecl *ObjCPropertyDecl::Create(ASTContext &C, DeclContext *DC,
1817 SourceLocation L,
1818 IdentifierInfo *Id,
Fariborz Jahaniand0502402010-01-21 17:36:00 +00001819 SourceLocation AtLoc,
Fariborz Jahanian77bfb8b2012-02-29 22:18:55 +00001820 SourceLocation LParenLoc,
John McCall83a230c2010-06-04 20:50:08 +00001821 TypeSourceInfo *T,
Chris Lattnerab351632009-02-20 20:59:54 +00001822 PropertyControl propControl) {
Stephen Hines651f13c2014-04-23 16:59:28 -07001823 return new (C, DC) ObjCPropertyDecl(DC, L, Id, AtLoc, LParenLoc, T);
Chris Lattnerab351632009-02-20 20:59:54 +00001824}
1825
Stephen Hines651f13c2014-04-23 16:59:28 -07001826ObjCPropertyDecl *ObjCPropertyDecl::CreateDeserialized(ASTContext &C,
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00001827 unsigned ID) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001828 return new (C, ID) ObjCPropertyDecl(nullptr, SourceLocation(), nullptr,
1829 SourceLocation(), SourceLocation(),
1830 nullptr);
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00001831}
1832
Chris Lattnerab351632009-02-20 20:59:54 +00001833//===----------------------------------------------------------------------===//
1834// ObjCPropertyImplDecl
1835//===----------------------------------------------------------------------===//
1836
Fariborz Jahanian628b96f2008-04-23 00:06:01 +00001837ObjCPropertyImplDecl *ObjCPropertyImplDecl::Create(ASTContext &C,
Douglas Gregord0434102009-01-09 00:49:46 +00001838 DeclContext *DC,
Fariborz Jahanian628b96f2008-04-23 00:06:01 +00001839 SourceLocation atLoc,
1840 SourceLocation L,
1841 ObjCPropertyDecl *property,
Daniel Dunbar9f0afd42008-08-26 04:47:31 +00001842 Kind PK,
Douglas Gregora4ffd852010-11-17 01:03:52 +00001843 ObjCIvarDecl *ivar,
1844 SourceLocation ivarLoc) {
Stephen Hines651f13c2014-04-23 16:59:28 -07001845 return new (C, DC) ObjCPropertyImplDecl(DC, atLoc, L, property, PK, ivar,
1846 ivarLoc);
Fariborz Jahanian628b96f2008-04-23 00:06:01 +00001847}
Chris Lattnerf4af5152008-03-17 01:19:02 +00001848
Stephen Hines651f13c2014-04-23 16:59:28 -07001849ObjCPropertyImplDecl *ObjCPropertyImplDecl::CreateDeserialized(ASTContext &C,
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00001850 unsigned ID) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001851 return new (C, ID) ObjCPropertyImplDecl(nullptr, SourceLocation(),
1852 SourceLocation(), nullptr, Dynamic,
1853 nullptr, SourceLocation());
Douglas Gregor1e68ecc2012-01-05 21:55:30 +00001854}
1855
Douglas Gregora4ffd852010-11-17 01:03:52 +00001856SourceRange ObjCPropertyImplDecl::getSourceRange() const {
1857 SourceLocation EndLoc = getLocation();
1858 if (IvarLoc.isValid())
1859 EndLoc = IvarLoc;
Chris Lattner0ed844b2008-04-04 06:12:32 +00001860
Douglas Gregora4ffd852010-11-17 01:03:52 +00001861 return SourceRange(AtLoc, EndLoc);
1862}