Chris Lattner | 1e03a56 | 2008-03-16 00:19:01 +0000 | [diff] [blame] | 1 | //===--- DeclObjC.cpp - ObjC Declaration AST Node Implementation ----------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements the Objective-C related Decl classes. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "clang/AST/DeclObjC.h" |
| 15 | #include "clang/AST/ASTContext.h" |
Daniel Dunbar | e91593e | 2008-08-11 04:54:23 +0000 | [diff] [blame] | 16 | #include "clang/AST/Stmt.h" |
Argyrios Kyrtzidis | e6b8d68 | 2011-09-01 00:58:55 +0000 | [diff] [blame] | 17 | #include "clang/AST/ASTMutationListener.h" |
Steve Naroff | 0de21fd | 2009-02-22 19:35:57 +0000 | [diff] [blame] | 18 | #include "llvm/ADT/STLExtras.h" |
Chris Lattner | 1e03a56 | 2008-03-16 00:19:01 +0000 | [diff] [blame] | 19 | using namespace clang; |
| 20 | |
Chris Lattner | 6c4ae5d | 2008-03-16 00:49:28 +0000 | [diff] [blame] | 21 | //===----------------------------------------------------------------------===// |
Chris Lattner | 11e1e1a | 2009-02-20 21:16:26 +0000 | [diff] [blame] | 22 | // ObjCListBase |
| 23 | //===----------------------------------------------------------------------===// |
| 24 | |
Chris Lattner | 38af2de | 2009-02-20 21:35:13 +0000 | [diff] [blame] | 25 | void ObjCListBase::set(void *const* InList, unsigned Elts, ASTContext &Ctx) { |
Douglas Gregor | ff331c1 | 2010-07-25 18:17:45 +0000 | [diff] [blame] | 26 | List = 0; |
Chris Lattner | 11e1e1a | 2009-02-20 21:16:26 +0000 | [diff] [blame] | 27 | if (Elts == 0) return; // Setting to an empty list is a noop. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 28 | |
| 29 | |
Chris Lattner | 4ee413b | 2009-02-20 21:44:01 +0000 | [diff] [blame] | 30 | List = new (Ctx) void*[Elts]; |
Chris Lattner | 11e1e1a | 2009-02-20 21:16:26 +0000 | [diff] [blame] | 31 | NumElts = Elts; |
| 32 | memcpy(List, InList, sizeof(void*)*Elts); |
| 33 | } |
| 34 | |
Douglas Gregor | 18df52b | 2010-01-16 15:02:53 +0000 | [diff] [blame] | 35 | void ObjCProtocolList::set(ObjCProtocolDecl* const* InList, unsigned Elts, |
| 36 | const SourceLocation *Locs, ASTContext &Ctx) { |
| 37 | if (Elts == 0) |
| 38 | return; |
| 39 | |
| 40 | Locations = new (Ctx) SourceLocation[Elts]; |
| 41 | memcpy(Locations, Locs, sizeof(SourceLocation) * Elts); |
| 42 | set(InList, Elts, Ctx); |
| 43 | } |
| 44 | |
Chris Lattner | 11e1e1a | 2009-02-20 21:16:26 +0000 | [diff] [blame] | 45 | //===----------------------------------------------------------------------===// |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 46 | // ObjCInterfaceDecl |
Chris Lattner | 6c4ae5d | 2008-03-16 00:49:28 +0000 | [diff] [blame] | 47 | //===----------------------------------------------------------------------===// |
| 48 | |
David Blaikie | 99ba9e3 | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 49 | void ObjCContainerDecl::anchor() { } |
| 50 | |
Fariborz Jahanian | 496b5a8 | 2009-06-05 18:16:35 +0000 | [diff] [blame] | 51 | /// getIvarDecl - This method looks up an ivar in this ContextDecl. |
| 52 | /// |
| 53 | ObjCIvarDecl * |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 54 | ObjCContainerDecl::getIvarDecl(IdentifierInfo *Id) const { |
Fariborz Jahanian | 496b5a8 | 2009-06-05 18:16:35 +0000 | [diff] [blame] | 55 | lookup_const_iterator Ivar, IvarEnd; |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 56 | for (llvm::tie(Ivar, IvarEnd) = lookup(Id); Ivar != IvarEnd; ++Ivar) { |
Fariborz Jahanian | 496b5a8 | 2009-06-05 18:16:35 +0000 | [diff] [blame] | 57 | if (ObjCIvarDecl *ivar = dyn_cast<ObjCIvarDecl>(*Ivar)) |
| 58 | return ivar; |
| 59 | } |
| 60 | return 0; |
| 61 | } |
| 62 | |
Argyrios Kyrtzidis | 467c0b1 | 2009-07-25 22:15:22 +0000 | [diff] [blame] | 63 | // Get the local instance/class method declared in this interface. |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 64 | ObjCMethodDecl * |
Argyrios Kyrtzidis | 467c0b1 | 2009-07-25 22:15:22 +0000 | [diff] [blame] | 65 | ObjCContainerDecl::getMethod(Selector Sel, bool isInstance) const { |
Steve Naroff | 0de21fd | 2009-02-22 19:35:57 +0000 | [diff] [blame] | 66 | // Since instance & class methods can have the same name, the loop below |
| 67 | // ensures we get the correct method. |
| 68 | // |
| 69 | // @interface Whatever |
| 70 | // - (int) class_method; |
| 71 | // + (float) class_method; |
| 72 | // @end |
| 73 | // |
| 74 | lookup_const_iterator Meth, MethEnd; |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 75 | for (llvm::tie(Meth, MethEnd) = lookup(Sel); Meth != MethEnd; ++Meth) { |
Steve Naroff | 0de21fd | 2009-02-22 19:35:57 +0000 | [diff] [blame] | 76 | ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(*Meth); |
Argyrios Kyrtzidis | 467c0b1 | 2009-07-25 22:15:22 +0000 | [diff] [blame] | 77 | if (MD && MD->isInstanceMethod() == isInstance) |
Steve Naroff | 0de21fd | 2009-02-22 19:35:57 +0000 | [diff] [blame] | 78 | return MD; |
| 79 | } |
Steve Naroff | 0701bbb | 2009-01-08 17:28:14 +0000 | [diff] [blame] | 80 | return 0; |
| 81 | } |
| 82 | |
Ted Kremenek | 9f550ff | 2010-03-15 20:11:46 +0000 | [diff] [blame] | 83 | ObjCPropertyDecl * |
Ted Kremenek | de09d0c | 2010-03-15 20:11:53 +0000 | [diff] [blame] | 84 | ObjCPropertyDecl::findPropertyDecl(const DeclContext *DC, |
Ted Kremenek | 9f550ff | 2010-03-15 20:11:46 +0000 | [diff] [blame] | 85 | IdentifierInfo *propertyID) { |
| 86 | |
Ted Kremenek | de09d0c | 2010-03-15 20:11:53 +0000 | [diff] [blame] | 87 | DeclContext::lookup_const_iterator I, E; |
Ted Kremenek | 9f550ff | 2010-03-15 20:11:46 +0000 | [diff] [blame] | 88 | llvm::tie(I, E) = DC->lookup(propertyID); |
| 89 | for ( ; I != E; ++I) |
| 90 | if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(*I)) |
| 91 | return PD; |
| 92 | |
| 93 | return 0; |
| 94 | } |
| 95 | |
Fariborz Jahanian | 559c0c4 | 2008-04-21 19:04:53 +0000 | [diff] [blame] | 96 | /// FindPropertyDeclaration - Finds declaration of the property given its name |
| 97 | /// in 'PropertyId' and returns it. It returns 0, if not found. |
Fariborz Jahanian | 559c0c4 | 2008-04-21 19:04:53 +0000 | [diff] [blame] | 98 | ObjCPropertyDecl * |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 99 | ObjCContainerDecl::FindPropertyDeclaration(IdentifierInfo *PropertyId) const { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 100 | |
Ted Kremenek | de09d0c | 2010-03-15 20:11:53 +0000 | [diff] [blame] | 101 | if (ObjCPropertyDecl *PD = |
| 102 | ObjCPropertyDecl::findPropertyDecl(cast<DeclContext>(this), PropertyId)) |
| 103 | return PD; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 104 | |
Ted Kremenek | de09d0c | 2010-03-15 20:11:53 +0000 | [diff] [blame] | 105 | switch (getKind()) { |
| 106 | default: |
| 107 | break; |
| 108 | case Decl::ObjCProtocol: { |
| 109 | const ObjCProtocolDecl *PID = cast<ObjCProtocolDecl>(this); |
| 110 | for (ObjCProtocolDecl::protocol_iterator I = PID->protocol_begin(), |
| 111 | E = PID->protocol_end(); I != E; ++I) |
Fariborz Jahanian | 2576061 | 2010-02-15 21:55:26 +0000 | [diff] [blame] | 112 | if (ObjCPropertyDecl *P = (*I)->FindPropertyDeclaration(PropertyId)) |
| 113 | return P; |
Ted Kremenek | de09d0c | 2010-03-15 20:11:53 +0000 | [diff] [blame] | 114 | break; |
| 115 | } |
| 116 | case Decl::ObjCInterface: { |
| 117 | const ObjCInterfaceDecl *OID = cast<ObjCInterfaceDecl>(this); |
| 118 | // Look through categories. |
| 119 | for (ObjCCategoryDecl *Cat = OID->getCategoryList(); |
| 120 | Cat; Cat = Cat->getNextClassCategory()) |
| 121 | if (!Cat->IsClassExtension()) |
| 122 | if (ObjCPropertyDecl *P = Cat->FindPropertyDeclaration(PropertyId)) |
| 123 | return P; |
| 124 | |
| 125 | // Look through protocols. |
Ted Kremenek | 53b9441 | 2010-09-01 01:21:15 +0000 | [diff] [blame] | 126 | for (ObjCInterfaceDecl::all_protocol_iterator |
| 127 | I = OID->all_referenced_protocol_begin(), |
| 128 | E = OID->all_referenced_protocol_end(); I != E; ++I) |
Ted Kremenek | de09d0c | 2010-03-15 20:11:53 +0000 | [diff] [blame] | 129 | if (ObjCPropertyDecl *P = (*I)->FindPropertyDeclaration(PropertyId)) |
| 130 | return P; |
| 131 | |
| 132 | // Finally, check the super class. |
| 133 | if (const ObjCInterfaceDecl *superClass = OID->getSuperClass()) |
| 134 | return superClass->FindPropertyDeclaration(PropertyId); |
| 135 | break; |
| 136 | } |
| 137 | case Decl::ObjCCategory: { |
| 138 | const ObjCCategoryDecl *OCD = cast<ObjCCategoryDecl>(this); |
| 139 | // Look through protocols. |
| 140 | if (!OCD->IsClassExtension()) |
| 141 | for (ObjCCategoryDecl::protocol_iterator |
| 142 | I = OCD->protocol_begin(), E = OCD->protocol_end(); I != E; ++I) |
| 143 | if (ObjCPropertyDecl *P = (*I)->FindPropertyDeclaration(PropertyId)) |
| 144 | return P; |
| 145 | |
| 146 | break; |
Fariborz Jahanian | f034e9c | 2009-01-19 18:16:19 +0000 | [diff] [blame] | 147 | } |
| 148 | } |
Steve Naroff | 3d2c22b | 2008-06-05 13:55:23 +0000 | [diff] [blame] | 149 | return 0; |
| 150 | } |
| 151 | |
David Blaikie | 99ba9e3 | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 152 | void ObjCInterfaceDecl::anchor() { } |
| 153 | |
Fariborz Jahanian | a6f14e1 | 2009-11-02 22:45:15 +0000 | [diff] [blame] | 154 | /// FindPropertyVisibleInPrimaryClass - Finds declaration of the property |
| 155 | /// with name 'PropertyId' in the primary class; including those in protocols |
Ted Kremenek | 37cafb0 | 2010-03-15 20:30:07 +0000 | [diff] [blame] | 156 | /// (direct or indirect) used by the primary class. |
Fariborz Jahanian | a6f14e1 | 2009-11-02 22:45:15 +0000 | [diff] [blame] | 157 | /// |
| 158 | ObjCPropertyDecl * |
Ted Kremenek | 37cafb0 | 2010-03-15 20:30:07 +0000 | [diff] [blame] | 159 | ObjCInterfaceDecl::FindPropertyVisibleInPrimaryClass( |
Fariborz Jahanian | a6f14e1 | 2009-11-02 22:45:15 +0000 | [diff] [blame] | 160 | IdentifierInfo *PropertyId) const { |
Douglas Gregor | 2e5c15b | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 161 | // FIXME: Should make sure no callers ever do this. |
| 162 | if (!hasDefinition()) |
| 163 | return 0; |
| 164 | |
| 165 | if (data().ExternallyCompleted) |
Douglas Gregor | 26ac3f3 | 2010-12-01 23:49:52 +0000 | [diff] [blame] | 166 | LoadExternalDefinition(); |
| 167 | |
Ted Kremenek | 37cafb0 | 2010-03-15 20:30:07 +0000 | [diff] [blame] | 168 | if (ObjCPropertyDecl *PD = |
| 169 | ObjCPropertyDecl::findPropertyDecl(cast<DeclContext>(this), PropertyId)) |
| 170 | return PD; |
| 171 | |
Fariborz Jahanian | a6f14e1 | 2009-11-02 22:45:15 +0000 | [diff] [blame] | 172 | // Look through protocols. |
Ted Kremenek | 53b9441 | 2010-09-01 01:21:15 +0000 | [diff] [blame] | 173 | for (ObjCInterfaceDecl::all_protocol_iterator |
| 174 | I = all_referenced_protocol_begin(), |
| 175 | E = all_referenced_protocol_end(); I != E; ++I) |
Fariborz Jahanian | a6f14e1 | 2009-11-02 22:45:15 +0000 | [diff] [blame] | 176 | if (ObjCPropertyDecl *P = (*I)->FindPropertyDeclaration(PropertyId)) |
| 177 | return P; |
Ted Kremenek | 37cafb0 | 2010-03-15 20:30:07 +0000 | [diff] [blame] | 178 | |
Fariborz Jahanian | a6f14e1 | 2009-11-02 22:45:15 +0000 | [diff] [blame] | 179 | return 0; |
| 180 | } |
| 181 | |
Fariborz Jahanian | 339798e | 2009-10-05 20:41:32 +0000 | [diff] [blame] | 182 | void ObjCInterfaceDecl::mergeClassExtensionProtocolList( |
| 183 | ObjCProtocolDecl *const* ExtList, unsigned ExtNum, |
| 184 | ASTContext &C) |
| 185 | { |
Douglas Gregor | 2e5c15b | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 186 | if (data().ExternallyCompleted) |
Douglas Gregor | 26ac3f3 | 2010-12-01 23:49:52 +0000 | [diff] [blame] | 187 | LoadExternalDefinition(); |
| 188 | |
Douglas Gregor | 2e5c15b | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 189 | if (data().AllReferencedProtocols.empty() && |
| 190 | data().ReferencedProtocols.empty()) { |
| 191 | data().AllReferencedProtocols.set(ExtList, ExtNum, C); |
Fariborz Jahanian | 339798e | 2009-10-05 20:41:32 +0000 | [diff] [blame] | 192 | return; |
| 193 | } |
Ted Kremenek | 53b9441 | 2010-09-01 01:21:15 +0000 | [diff] [blame] | 194 | |
Fariborz Jahanian | 339798e | 2009-10-05 20:41:32 +0000 | [diff] [blame] | 195 | // Check for duplicate protocol in class's protocol list. |
Ted Kremenek | 53b9441 | 2010-09-01 01:21:15 +0000 | [diff] [blame] | 196 | // This is O(n*m). But it is extremely rare and number of protocols in |
Fariborz Jahanian | 339798e | 2009-10-05 20:41:32 +0000 | [diff] [blame] | 197 | // class or its extension are very few. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 198 | SmallVector<ObjCProtocolDecl*, 8> ProtocolRefs; |
Fariborz Jahanian | 339798e | 2009-10-05 20:41:32 +0000 | [diff] [blame] | 199 | for (unsigned i = 0; i < ExtNum; i++) { |
| 200 | bool protocolExists = false; |
| 201 | ObjCProtocolDecl *ProtoInExtension = ExtList[i]; |
Ted Kremenek | 53b9441 | 2010-09-01 01:21:15 +0000 | [diff] [blame] | 202 | for (all_protocol_iterator |
| 203 | p = all_referenced_protocol_begin(), |
| 204 | e = all_referenced_protocol_end(); p != e; ++p) { |
Fariborz Jahanian | 339798e | 2009-10-05 20:41:32 +0000 | [diff] [blame] | 205 | ObjCProtocolDecl *Proto = (*p); |
| 206 | if (C.ProtocolCompatibleWithProtocol(ProtoInExtension, Proto)) { |
| 207 | protocolExists = true; |
| 208 | break; |
| 209 | } |
| 210 | } |
| 211 | // Do we want to warn on a protocol in extension class which |
| 212 | // already exist in the class? Probably not. |
Ted Kremenek | 53b9441 | 2010-09-01 01:21:15 +0000 | [diff] [blame] | 213 | if (!protocolExists) |
Fariborz Jahanian | 339798e | 2009-10-05 20:41:32 +0000 | [diff] [blame] | 214 | ProtocolRefs.push_back(ProtoInExtension); |
| 215 | } |
Ted Kremenek | 53b9441 | 2010-09-01 01:21:15 +0000 | [diff] [blame] | 216 | |
Fariborz Jahanian | 339798e | 2009-10-05 20:41:32 +0000 | [diff] [blame] | 217 | if (ProtocolRefs.empty()) |
| 218 | return; |
Ted Kremenek | 53b9441 | 2010-09-01 01:21:15 +0000 | [diff] [blame] | 219 | |
Fariborz Jahanian | b106fc6 | 2009-10-05 21:32:49 +0000 | [diff] [blame] | 220 | // Merge ProtocolRefs into class's protocol list; |
Ted Kremenek | 53b9441 | 2010-09-01 01:21:15 +0000 | [diff] [blame] | 221 | for (all_protocol_iterator p = all_referenced_protocol_begin(), |
| 222 | e = all_referenced_protocol_end(); p != e; ++p) { |
Fariborz Jahanian | 339798e | 2009-10-05 20:41:32 +0000 | [diff] [blame] | 223 | ProtocolRefs.push_back(*p); |
Douglas Gregor | 18df52b | 2010-01-16 15:02:53 +0000 | [diff] [blame] | 224 | } |
Ted Kremenek | 53b9441 | 2010-09-01 01:21:15 +0000 | [diff] [blame] | 225 | |
Douglas Gregor | 2e5c15b | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 226 | data().AllReferencedProtocols.set(ProtocolRefs.data(), ProtocolRefs.size(),C); |
Fariborz Jahanian | 339798e | 2009-10-05 20:41:32 +0000 | [diff] [blame] | 227 | } |
| 228 | |
Douglas Gregor | 2e5c15b | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 229 | void ObjCInterfaceDecl::allocateDefinitionData() { |
| 230 | assert(!hasDefinition() && "ObjC class already has a definition"); |
Douglas Gregor | 26fec63 | 2011-12-15 18:17:27 +0000 | [diff] [blame] | 231 | Data = new (getASTContext()) DefinitionData(); |
Douglas Gregor | 8d2dbbf | 2011-12-16 16:34:57 +0000 | [diff] [blame] | 232 | Data->Definition = this; |
| 233 | |
| 234 | // Make the type point at the definition, now that we have one. |
| 235 | if (TypeForDecl) |
| 236 | cast<ObjCInterfaceType>(TypeForDecl)->Decl = this; |
Douglas Gregor | 0af5501 | 2011-12-16 03:12:41 +0000 | [diff] [blame] | 237 | } |
| 238 | |
| 239 | void ObjCInterfaceDecl::startDefinition() { |
| 240 | allocateDefinitionData(); |
| 241 | |
Douglas Gregor | 53df7a1 | 2011-12-15 18:03:09 +0000 | [diff] [blame] | 242 | // Update all of the declarations with a pointer to the definition. |
| 243 | for (redecl_iterator RD = redecls_begin(), RDEnd = redecls_end(); |
| 244 | RD != RDEnd; ++RD) { |
| 245 | if (*RD != this) |
Douglas Gregor | 26fec63 | 2011-12-15 18:17:27 +0000 | [diff] [blame] | 246 | RD->Data = Data; |
Douglas Gregor | 53df7a1 | 2011-12-15 18:03:09 +0000 | [diff] [blame] | 247 | } |
Argyrios Kyrtzidis | ad834d5 | 2011-11-12 21:07:46 +0000 | [diff] [blame] | 248 | } |
| 249 | |
Fariborz Jahanian | 80aa1cd | 2010-06-22 23:20:40 +0000 | [diff] [blame] | 250 | /// getFirstClassExtension - Find first class extension of the given class. |
| 251 | ObjCCategoryDecl* ObjCInterfaceDecl::getFirstClassExtension() const { |
| 252 | for (ObjCCategoryDecl *CDecl = getCategoryList(); CDecl; |
Fariborz Jahanian | 0e5ad25 | 2010-02-23 01:26:30 +0000 | [diff] [blame] | 253 | CDecl = CDecl->getNextClassCategory()) |
| 254 | if (CDecl->IsClassExtension()) |
| 255 | return CDecl; |
| 256 | return 0; |
| 257 | } |
| 258 | |
Fariborz Jahanian | 80aa1cd | 2010-06-22 23:20:40 +0000 | [diff] [blame] | 259 | /// getNextClassCategory - Find next class extension in list of categories. |
| 260 | const ObjCCategoryDecl* ObjCCategoryDecl::getNextClassExtension() const { |
| 261 | for (const ObjCCategoryDecl *CDecl = getNextClassCategory(); CDecl; |
| 262 | CDecl = CDecl->getNextClassCategory()) |
| 263 | if (CDecl->IsClassExtension()) |
| 264 | return CDecl; |
| 265 | return 0; |
| 266 | } |
| 267 | |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 268 | ObjCIvarDecl *ObjCInterfaceDecl::lookupInstanceVariable(IdentifierInfo *ID, |
| 269 | ObjCInterfaceDecl *&clsDeclared) { |
Douglas Gregor | 2e5c15b | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 270 | // FIXME: Should make sure no callers ever do this. |
| 271 | if (!hasDefinition()) |
| 272 | return 0; |
| 273 | |
| 274 | if (data().ExternallyCompleted) |
Argyrios Kyrtzidis | 7c81c2a | 2011-10-19 02:25:16 +0000 | [diff] [blame] | 275 | LoadExternalDefinition(); |
| 276 | |
Chris Lattner | 1e03a56 | 2008-03-16 00:19:01 +0000 | [diff] [blame] | 277 | ObjCInterfaceDecl* ClassDecl = this; |
| 278 | while (ClassDecl != NULL) { |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 279 | if (ObjCIvarDecl *I = ClassDecl->getIvarDecl(ID)) { |
Fariborz Jahanian | 496b5a8 | 2009-06-05 18:16:35 +0000 | [diff] [blame] | 280 | clsDeclared = ClassDecl; |
| 281 | return I; |
Chris Lattner | 1e03a56 | 2008-03-16 00:19:01 +0000 | [diff] [blame] | 282 | } |
Fariborz Jahanian | 80aa1cd | 2010-06-22 23:20:40 +0000 | [diff] [blame] | 283 | for (const ObjCCategoryDecl *CDecl = ClassDecl->getFirstClassExtension(); |
| 284 | CDecl; CDecl = CDecl->getNextClassExtension()) { |
Fariborz Jahanian | 0e5ad25 | 2010-02-23 01:26:30 +0000 | [diff] [blame] | 285 | if (ObjCIvarDecl *I = CDecl->getIvarDecl(ID)) { |
| 286 | clsDeclared = ClassDecl; |
| 287 | return I; |
| 288 | } |
Fariborz Jahanian | 80aa1cd | 2010-06-22 23:20:40 +0000 | [diff] [blame] | 289 | } |
Fariborz Jahanian | 0e5ad25 | 2010-02-23 01:26:30 +0000 | [diff] [blame] | 290 | |
Chris Lattner | 1e03a56 | 2008-03-16 00:19:01 +0000 | [diff] [blame] | 291 | ClassDecl = ClassDecl->getSuperClass(); |
| 292 | } |
| 293 | return NULL; |
| 294 | } |
| 295 | |
Fariborz Jahanian | cd18762 | 2009-05-22 17:12:32 +0000 | [diff] [blame] | 296 | /// lookupInheritedClass - This method returns ObjCInterfaceDecl * of the super |
| 297 | /// class whose name is passed as argument. If it is not one of the super classes |
| 298 | /// the it returns NULL. |
| 299 | ObjCInterfaceDecl *ObjCInterfaceDecl::lookupInheritedClass( |
| 300 | const IdentifierInfo*ICName) { |
Douglas Gregor | 2e5c15b | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 301 | // FIXME: Should make sure no callers ever do this. |
| 302 | if (!hasDefinition()) |
| 303 | return 0; |
| 304 | |
| 305 | if (data().ExternallyCompleted) |
Argyrios Kyrtzidis | 7c81c2a | 2011-10-19 02:25:16 +0000 | [diff] [blame] | 306 | LoadExternalDefinition(); |
| 307 | |
Fariborz Jahanian | cd18762 | 2009-05-22 17:12:32 +0000 | [diff] [blame] | 308 | ObjCInterfaceDecl* ClassDecl = this; |
| 309 | while (ClassDecl != NULL) { |
| 310 | if (ClassDecl->getIdentifier() == ICName) |
| 311 | return ClassDecl; |
| 312 | ClassDecl = ClassDecl->getSuperClass(); |
| 313 | } |
| 314 | return NULL; |
| 315 | } |
| 316 | |
Argyrios Kyrtzidis | aa5420c | 2009-07-25 22:15:51 +0000 | [diff] [blame] | 317 | /// lookupMethod - This method returns an instance/class method by looking in |
Chris Lattner | 1e03a56 | 2008-03-16 00:19:01 +0000 | [diff] [blame] | 318 | /// the class, its categories, and its super classes (using a linear search). |
Fariborz Jahanian | bf393be | 2012-04-05 22:14:12 +0000 | [diff] [blame] | 319 | ObjCMethodDecl *ObjCInterfaceDecl::lookupMethod(Selector Sel, |
| 320 | bool isInstance, |
| 321 | bool shallowCategoryLookup) const { |
Douglas Gregor | 2e5c15b | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 322 | // FIXME: Should make sure no callers ever do this. |
| 323 | if (!hasDefinition()) |
| 324 | return 0; |
| 325 | |
Argyrios Kyrtzidis | aa5420c | 2009-07-25 22:15:51 +0000 | [diff] [blame] | 326 | const ObjCInterfaceDecl* ClassDecl = this; |
Chris Lattner | 1e03a56 | 2008-03-16 00:19:01 +0000 | [diff] [blame] | 327 | ObjCMethodDecl *MethodDecl = 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 328 | |
Douglas Gregor | 2e5c15b | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 329 | if (data().ExternallyCompleted) |
Douglas Gregor | 26ac3f3 | 2010-12-01 23:49:52 +0000 | [diff] [blame] | 330 | LoadExternalDefinition(); |
| 331 | |
Chris Lattner | 1e03a56 | 2008-03-16 00:19:01 +0000 | [diff] [blame] | 332 | while (ClassDecl != NULL) { |
Argyrios Kyrtzidis | aa5420c | 2009-07-25 22:15:51 +0000 | [diff] [blame] | 333 | if ((MethodDecl = ClassDecl->getMethod(Sel, isInstance))) |
Chris Lattner | 1e03a56 | 2008-03-16 00:19:01 +0000 | [diff] [blame] | 334 | return MethodDecl; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 335 | |
Chris Lattner | 1e03a56 | 2008-03-16 00:19:01 +0000 | [diff] [blame] | 336 | // Didn't find one yet - look through protocols. |
Argyrios Kyrtzidis | a5f4441 | 2012-03-13 01:09:41 +0000 | [diff] [blame] | 337 | for (ObjCInterfaceDecl::protocol_iterator I = ClassDecl->protocol_begin(), |
| 338 | E = ClassDecl->protocol_end(); |
| 339 | I != E; ++I) |
Argyrios Kyrtzidis | aa5420c | 2009-07-25 22:15:51 +0000 | [diff] [blame] | 340 | if ((MethodDecl = (*I)->lookupMethod(Sel, isInstance))) |
Chris Lattner | 1e03a56 | 2008-03-16 00:19:01 +0000 | [diff] [blame] | 341 | return MethodDecl; |
Fariborz Jahanian | bf393be | 2012-04-05 22:14:12 +0000 | [diff] [blame] | 342 | |
| 343 | // Didn't find one yet - now look through categories. |
| 344 | ObjCCategoryDecl *CatDecl = ClassDecl->getCategoryList(); |
| 345 | while (CatDecl) { |
| 346 | if ((MethodDecl = CatDecl->getMethod(Sel, isInstance))) |
| 347 | return MethodDecl; |
Fariborz Jahanian | bb3d14e | 2012-02-09 21:30:24 +0000 | [diff] [blame] | 348 | |
Fariborz Jahanian | bf393be | 2012-04-05 22:14:12 +0000 | [diff] [blame] | 349 | if (!shallowCategoryLookup) { |
Fariborz Jahanian | bb3d14e | 2012-02-09 21:30:24 +0000 | [diff] [blame] | 350 | // Didn't find one yet - look through protocols. |
| 351 | const ObjCList<ObjCProtocolDecl> &Protocols = |
| 352 | CatDecl->getReferencedProtocols(); |
| 353 | for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(), |
| 354 | E = Protocols.end(); I != E; ++I) |
| 355 | if ((MethodDecl = (*I)->lookupMethod(Sel, isInstance))) |
| 356 | return MethodDecl; |
Fariborz Jahanian | bb3d14e | 2012-02-09 21:30:24 +0000 | [diff] [blame] | 357 | } |
Fariborz Jahanian | bf393be | 2012-04-05 22:14:12 +0000 | [diff] [blame] | 358 | CatDecl = CatDecl->getNextClassCategory(); |
Chris Lattner | 1e03a56 | 2008-03-16 00:19:01 +0000 | [diff] [blame] | 359 | } |
Fariborz Jahanian | bf393be | 2012-04-05 22:14:12 +0000 | [diff] [blame] | 360 | |
Chris Lattner | 1e03a56 | 2008-03-16 00:19:01 +0000 | [diff] [blame] | 361 | ClassDecl = ClassDecl->getSuperClass(); |
| 362 | } |
| 363 | return NULL; |
| 364 | } |
| 365 | |
Fariborz Jahanian | 74b2756 | 2010-12-03 23:37:08 +0000 | [diff] [blame] | 366 | ObjCMethodDecl *ObjCInterfaceDecl::lookupPrivateMethod( |
| 367 | const Selector &Sel, |
| 368 | bool Instance) { |
Douglas Gregor | 2e5c15b | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 369 | // FIXME: Should make sure no callers ever do this. |
| 370 | if (!hasDefinition()) |
| 371 | return 0; |
| 372 | |
| 373 | if (data().ExternallyCompleted) |
Argyrios Kyrtzidis | 7c81c2a | 2011-10-19 02:25:16 +0000 | [diff] [blame] | 374 | LoadExternalDefinition(); |
| 375 | |
Steve Naroff | d789d3d | 2009-10-01 23:46:04 +0000 | [diff] [blame] | 376 | ObjCMethodDecl *Method = 0; |
| 377 | if (ObjCImplementationDecl *ImpDecl = getImplementation()) |
Fariborz Jahanian | 74b2756 | 2010-12-03 23:37:08 +0000 | [diff] [blame] | 378 | Method = Instance ? ImpDecl->getInstanceMethod(Sel) |
| 379 | : ImpDecl->getClassMethod(Sel); |
Steve Naroff | d789d3d | 2009-10-01 23:46:04 +0000 | [diff] [blame] | 380 | |
| 381 | if (!Method && getSuperClass()) |
Fariborz Jahanian | 74b2756 | 2010-12-03 23:37:08 +0000 | [diff] [blame] | 382 | return getSuperClass()->lookupPrivateMethod(Sel, Instance); |
Steve Naroff | d789d3d | 2009-10-01 23:46:04 +0000 | [diff] [blame] | 383 | return Method; |
| 384 | } |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 385 | |
| 386 | //===----------------------------------------------------------------------===// |
| 387 | // ObjCMethodDecl |
| 388 | //===----------------------------------------------------------------------===// |
| 389 | |
| 390 | ObjCMethodDecl *ObjCMethodDecl::Create(ASTContext &C, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 391 | SourceLocation beginLoc, |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 392 | SourceLocation endLoc, |
| 393 | Selector SelInfo, QualType T, |
Douglas Gregor | 4bc1cb6 | 2010-03-08 14:59:44 +0000 | [diff] [blame] | 394 | TypeSourceInfo *ResultTInfo, |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 395 | DeclContext *contextDecl, |
| 396 | bool isInstance, |
| 397 | bool isVariadic, |
| 398 | bool isSynthesized, |
Argyrios Kyrtzidis | 75cf3e8 | 2011-08-17 19:25:08 +0000 | [diff] [blame] | 399 | bool isImplicitlyDeclared, |
Fariborz Jahanian | 3fe1041 | 2010-07-22 18:24:20 +0000 | [diff] [blame] | 400 | bool isDefined, |
Fariborz Jahanian | 7732cc9 | 2010-04-08 21:29:11 +0000 | [diff] [blame] | 401 | ImplementationControl impControl, |
Argyrios Kyrtzidis | da92a7f | 2011-10-03 06:36:29 +0000 | [diff] [blame] | 402 | bool HasRelatedResultType) { |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 403 | return new (C) ObjCMethodDecl(beginLoc, endLoc, |
Douglas Gregor | 4bc1cb6 | 2010-03-08 14:59:44 +0000 | [diff] [blame] | 404 | SelInfo, T, ResultTInfo, contextDecl, |
| 405 | isInstance, |
Argyrios Kyrtzidis | 75cf3e8 | 2011-08-17 19:25:08 +0000 | [diff] [blame] | 406 | isVariadic, isSynthesized, isImplicitlyDeclared, |
| 407 | isDefined, |
Fariborz Jahanian | 3fe1041 | 2010-07-22 18:24:20 +0000 | [diff] [blame] | 408 | impControl, |
Argyrios Kyrtzidis | da92a7f | 2011-10-03 06:36:29 +0000 | [diff] [blame] | 409 | HasRelatedResultType); |
Chris Lattner | 1e03a56 | 2008-03-16 00:19:01 +0000 | [diff] [blame] | 410 | } |
| 411 | |
Douglas Gregor | 1e68ecc | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 412 | ObjCMethodDecl *ObjCMethodDecl::CreateDeserialized(ASTContext &C, unsigned ID) { |
| 413 | void *Mem = AllocateDeserializedDecl(C, ID, sizeof(ObjCMethodDecl)); |
| 414 | return new (Mem) ObjCMethodDecl(SourceLocation(), SourceLocation(), |
| 415 | Selector(), QualType(), 0, 0); |
| 416 | } |
| 417 | |
Argyrios Kyrtzidis | 3a919e7 | 2011-10-14 08:02:31 +0000 | [diff] [blame] | 418 | void ObjCMethodDecl::setAsRedeclaration(const ObjCMethodDecl *PrevMethod) { |
| 419 | assert(PrevMethod); |
| 420 | getASTContext().setObjCMethodRedeclaration(PrevMethod, this); |
| 421 | IsRedeclaration = true; |
Argyrios Kyrtzidis | 72b2625 | 2011-10-14 17:41:52 +0000 | [diff] [blame] | 422 | PrevMethod->HasRedeclaration = true; |
Argyrios Kyrtzidis | 3a919e7 | 2011-10-14 08:02:31 +0000 | [diff] [blame] | 423 | } |
| 424 | |
Argyrios Kyrtzidis | 491306a | 2011-10-03 06:37:04 +0000 | [diff] [blame] | 425 | void ObjCMethodDecl::setParamsAndSelLocs(ASTContext &C, |
| 426 | ArrayRef<ParmVarDecl*> Params, |
| 427 | ArrayRef<SourceLocation> SelLocs) { |
| 428 | ParamsAndSelLocs = 0; |
| 429 | NumParams = Params.size(); |
| 430 | if (Params.empty() && SelLocs.empty()) |
| 431 | return; |
| 432 | |
| 433 | unsigned Size = sizeof(ParmVarDecl *) * NumParams + |
| 434 | sizeof(SourceLocation) * SelLocs.size(); |
| 435 | ParamsAndSelLocs = C.Allocate(Size); |
| 436 | std::copy(Params.begin(), Params.end(), getParams()); |
| 437 | std::copy(SelLocs.begin(), SelLocs.end(), getStoredSelLocs()); |
| 438 | } |
| 439 | |
| 440 | void ObjCMethodDecl::getSelectorLocs( |
| 441 | SmallVectorImpl<SourceLocation> &SelLocs) const { |
| 442 | for (unsigned i = 0, e = getNumSelectorLocs(); i != e; ++i) |
| 443 | SelLocs.push_back(getSelectorLoc(i)); |
| 444 | } |
| 445 | |
| 446 | void ObjCMethodDecl::setMethodParams(ASTContext &C, |
| 447 | ArrayRef<ParmVarDecl*> Params, |
| 448 | ArrayRef<SourceLocation> SelLocs) { |
| 449 | assert((!SelLocs.empty() || isImplicit()) && |
| 450 | "No selector locs for non-implicit method"); |
| 451 | if (isImplicit()) |
| 452 | return setParamsAndSelLocs(C, Params, ArrayRef<SourceLocation>()); |
| 453 | |
Argyrios Kyrtzidis | a0cff72 | 2012-06-16 00:46:02 +0000 | [diff] [blame^] | 454 | SelLocsKind = hasStandardSelectorLocs(getSelector(), SelLocs, Params, |
| 455 | DeclEndLoc); |
Argyrios Kyrtzidis | 491306a | 2011-10-03 06:37:04 +0000 | [diff] [blame] | 456 | if (SelLocsKind != SelLoc_NonStandard) |
| 457 | return setParamsAndSelLocs(C, Params, ArrayRef<SourceLocation>()); |
| 458 | |
| 459 | setParamsAndSelLocs(C, Params, SelLocs); |
| 460 | } |
| 461 | |
Argyrios Kyrtzidis | 57ea6be | 2009-07-21 00:06:36 +0000 | [diff] [blame] | 462 | /// \brief A definition will return its interface declaration. |
| 463 | /// An interface declaration will return its definition. |
| 464 | /// Otherwise it will return itself. |
| 465 | ObjCMethodDecl *ObjCMethodDecl::getNextRedeclaration() { |
| 466 | ASTContext &Ctx = getASTContext(); |
Argyrios Kyrtzidis | 72b2625 | 2011-10-14 17:41:52 +0000 | [diff] [blame] | 467 | ObjCMethodDecl *Redecl = 0; |
| 468 | if (HasRedeclaration) |
| 469 | Redecl = const_cast<ObjCMethodDecl*>(Ctx.getObjCMethodRedeclaration(this)); |
Argyrios Kyrtzidis | b40034c | 2011-10-14 06:48:06 +0000 | [diff] [blame] | 470 | if (Redecl) |
| 471 | return Redecl; |
| 472 | |
Argyrios Kyrtzidis | 57ea6be | 2009-07-21 00:06:36 +0000 | [diff] [blame] | 473 | Decl *CtxD = cast<Decl>(getDeclContext()); |
| 474 | |
| 475 | if (ObjCInterfaceDecl *IFD = dyn_cast<ObjCInterfaceDecl>(CtxD)) { |
| 476 | if (ObjCImplementationDecl *ImplD = Ctx.getObjCImplementation(IFD)) |
| 477 | Redecl = ImplD->getMethod(getSelector(), isInstanceMethod()); |
| 478 | |
| 479 | } else if (ObjCCategoryDecl *CD = dyn_cast<ObjCCategoryDecl>(CtxD)) { |
| 480 | if (ObjCCategoryImplDecl *ImplD = Ctx.getObjCImplementation(CD)) |
| 481 | Redecl = ImplD->getMethod(getSelector(), isInstanceMethod()); |
| 482 | |
Argyrios Kyrtzidis | 4292073 | 2009-07-28 05:11:05 +0000 | [diff] [blame] | 483 | } else if (ObjCImplementationDecl *ImplD = |
| 484 | dyn_cast<ObjCImplementationDecl>(CtxD)) { |
Argyrios Kyrtzidis | 57ea6be | 2009-07-21 00:06:36 +0000 | [diff] [blame] | 485 | if (ObjCInterfaceDecl *IFD = ImplD->getClassInterface()) |
| 486 | Redecl = IFD->getMethod(getSelector(), isInstanceMethod()); |
Argyrios Kyrtzidis | 4292073 | 2009-07-28 05:11:05 +0000 | [diff] [blame] | 487 | |
| 488 | } else if (ObjCCategoryImplDecl *CImplD = |
| 489 | dyn_cast<ObjCCategoryImplDecl>(CtxD)) { |
Steve Naroff | 0d69b8c | 2009-10-29 21:11:04 +0000 | [diff] [blame] | 490 | if (ObjCCategoryDecl *CatD = CImplD->getCategoryDecl()) |
Argyrios Kyrtzidis | 4292073 | 2009-07-28 05:11:05 +0000 | [diff] [blame] | 491 | Redecl = CatD->getMethod(getSelector(), isInstanceMethod()); |
Argyrios Kyrtzidis | 57ea6be | 2009-07-21 00:06:36 +0000 | [diff] [blame] | 492 | } |
| 493 | |
Argyrios Kyrtzidis | 3a919e7 | 2011-10-14 08:02:31 +0000 | [diff] [blame] | 494 | if (!Redecl && isRedeclaration()) { |
| 495 | // This is the last redeclaration, go back to the first method. |
| 496 | return cast<ObjCContainerDecl>(CtxD)->getMethod(getSelector(), |
| 497 | isInstanceMethod()); |
| 498 | } |
| 499 | |
Argyrios Kyrtzidis | 57ea6be | 2009-07-21 00:06:36 +0000 | [diff] [blame] | 500 | return Redecl ? Redecl : this; |
| 501 | } |
| 502 | |
Argyrios Kyrtzidis | e7f9d30 | 2009-07-28 05:11:17 +0000 | [diff] [blame] | 503 | ObjCMethodDecl *ObjCMethodDecl::getCanonicalDecl() { |
| 504 | Decl *CtxD = cast<Decl>(getDeclContext()); |
| 505 | |
| 506 | if (ObjCImplementationDecl *ImplD = dyn_cast<ObjCImplementationDecl>(CtxD)) { |
| 507 | if (ObjCInterfaceDecl *IFD = ImplD->getClassInterface()) |
| 508 | if (ObjCMethodDecl *MD = IFD->getMethod(getSelector(), |
| 509 | isInstanceMethod())) |
| 510 | return MD; |
| 511 | |
| 512 | } else if (ObjCCategoryImplDecl *CImplD = |
| 513 | dyn_cast<ObjCCategoryImplDecl>(CtxD)) { |
Steve Naroff | 0d69b8c | 2009-10-29 21:11:04 +0000 | [diff] [blame] | 514 | if (ObjCCategoryDecl *CatD = CImplD->getCategoryDecl()) |
Argyrios Kyrtzidis | e7f9d30 | 2009-07-28 05:11:17 +0000 | [diff] [blame] | 515 | if (ObjCMethodDecl *MD = CatD->getMethod(getSelector(), |
| 516 | isInstanceMethod())) |
| 517 | return MD; |
| 518 | } |
| 519 | |
Argyrios Kyrtzidis | 6d4740e | 2011-10-17 19:48:09 +0000 | [diff] [blame] | 520 | if (isRedeclaration()) |
| 521 | return cast<ObjCContainerDecl>(CtxD)->getMethod(getSelector(), |
| 522 | isInstanceMethod()); |
| 523 | |
Argyrios Kyrtzidis | e7f9d30 | 2009-07-28 05:11:17 +0000 | [diff] [blame] | 524 | return this; |
| 525 | } |
| 526 | |
Argyrios Kyrtzidis | a0cff72 | 2012-06-16 00:46:02 +0000 | [diff] [blame^] | 527 | SourceLocation ObjCMethodDecl::getLocEnd() const { |
| 528 | if (Stmt *Body = getBody()) |
| 529 | return Body->getLocEnd(); |
| 530 | return DeclEndLoc; |
| 531 | } |
| 532 | |
John McCall | 85f3d76 | 2011-03-02 01:50:55 +0000 | [diff] [blame] | 533 | ObjCMethodFamily ObjCMethodDecl::getMethodFamily() const { |
| 534 | ObjCMethodFamily family = static_cast<ObjCMethodFamily>(Family); |
John McCall | d976c8e | 2011-03-02 21:01:41 +0000 | [diff] [blame] | 535 | if (family != static_cast<unsigned>(InvalidObjCMethodFamily)) |
John McCall | 85f3d76 | 2011-03-02 01:50:55 +0000 | [diff] [blame] | 536 | return family; |
| 537 | |
John McCall | d5313b0 | 2011-03-02 11:33:24 +0000 | [diff] [blame] | 538 | // Check for an explicit attribute. |
| 539 | if (const ObjCMethodFamilyAttr *attr = getAttr<ObjCMethodFamilyAttr>()) { |
| 540 | // The unfortunate necessity of mapping between enums here is due |
| 541 | // to the attributes framework. |
| 542 | switch (attr->getFamily()) { |
| 543 | case ObjCMethodFamilyAttr::OMF_None: family = OMF_None; break; |
| 544 | case ObjCMethodFamilyAttr::OMF_alloc: family = OMF_alloc; break; |
| 545 | case ObjCMethodFamilyAttr::OMF_copy: family = OMF_copy; break; |
| 546 | case ObjCMethodFamilyAttr::OMF_init: family = OMF_init; break; |
| 547 | case ObjCMethodFamilyAttr::OMF_mutableCopy: family = OMF_mutableCopy; break; |
| 548 | case ObjCMethodFamilyAttr::OMF_new: family = OMF_new; break; |
| 549 | } |
| 550 | Family = static_cast<unsigned>(family); |
| 551 | return family; |
| 552 | } |
| 553 | |
John McCall | 85f3d76 | 2011-03-02 01:50:55 +0000 | [diff] [blame] | 554 | family = getSelector().getMethodFamily(); |
| 555 | switch (family) { |
| 556 | case OMF_None: break; |
| 557 | |
| 558 | // init only has a conventional meaning for an instance method, and |
| 559 | // it has to return an object. |
| 560 | case OMF_init: |
| 561 | if (!isInstanceMethod() || !getResultType()->isObjCObjectPointerType()) |
| 562 | family = OMF_None; |
| 563 | break; |
| 564 | |
| 565 | // alloc/copy/new have a conventional meaning for both class and |
| 566 | // instance methods, but they require an object return. |
| 567 | case OMF_alloc: |
| 568 | case OMF_copy: |
| 569 | case OMF_mutableCopy: |
| 570 | case OMF_new: |
| 571 | if (!getResultType()->isObjCObjectPointerType()) |
| 572 | family = OMF_None; |
| 573 | break; |
| 574 | |
| 575 | // These selectors have a conventional meaning only for instance methods. |
| 576 | case OMF_dealloc: |
Nico Weber | 80cb6e6 | 2011-08-28 22:35:17 +0000 | [diff] [blame] | 577 | case OMF_finalize: |
John McCall | 85f3d76 | 2011-03-02 01:50:55 +0000 | [diff] [blame] | 578 | case OMF_retain: |
| 579 | case OMF_release: |
| 580 | case OMF_autorelease: |
| 581 | case OMF_retainCount: |
Douglas Gregor | 926df6c | 2011-06-11 01:09:30 +0000 | [diff] [blame] | 582 | case OMF_self: |
John McCall | 85f3d76 | 2011-03-02 01:50:55 +0000 | [diff] [blame] | 583 | if (!isInstanceMethod()) |
| 584 | family = OMF_None; |
| 585 | break; |
Fariborz Jahanian | 9670e17 | 2011-07-05 22:38:59 +0000 | [diff] [blame] | 586 | |
| 587 | case OMF_performSelector: |
| 588 | if (!isInstanceMethod() || |
| 589 | !getResultType()->isObjCIdType()) |
| 590 | family = OMF_None; |
| 591 | else { |
| 592 | unsigned noParams = param_size(); |
| 593 | if (noParams < 1 || noParams > 3) |
| 594 | family = OMF_None; |
| 595 | else { |
| 596 | ObjCMethodDecl::arg_type_iterator it = arg_type_begin(); |
| 597 | QualType ArgT = (*it); |
| 598 | if (!ArgT->isObjCSelType()) { |
| 599 | family = OMF_None; |
| 600 | break; |
| 601 | } |
| 602 | while (--noParams) { |
| 603 | it++; |
| 604 | ArgT = (*it); |
| 605 | if (!ArgT->isObjCIdType()) { |
| 606 | family = OMF_None; |
| 607 | break; |
| 608 | } |
| 609 | } |
| 610 | } |
| 611 | } |
| 612 | break; |
| 613 | |
John McCall | 85f3d76 | 2011-03-02 01:50:55 +0000 | [diff] [blame] | 614 | } |
| 615 | |
| 616 | // Cache the result. |
| 617 | Family = static_cast<unsigned>(family); |
| 618 | return family; |
| 619 | } |
| 620 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 621 | void ObjCMethodDecl::createImplicitParams(ASTContext &Context, |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 622 | const ObjCInterfaceDecl *OID) { |
| 623 | QualType selfTy; |
| 624 | if (isInstanceMethod()) { |
| 625 | // There may be no interface context due to error in declaration |
| 626 | // of the interface (which has been reported). Recover gracefully. |
| 627 | if (OID) { |
Daniel Dunbar | 3b3a458 | 2009-04-22 04:34:53 +0000 | [diff] [blame] | 628 | selfTy = Context.getObjCInterfaceType(OID); |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 629 | selfTy = Context.getObjCObjectPointerType(selfTy); |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 630 | } else { |
| 631 | selfTy = Context.getObjCIdType(); |
| 632 | } |
| 633 | } else // we have a factory method. |
| 634 | selfTy = Context.getObjCClassType(); |
| 635 | |
John McCall | 7acddac | 2011-06-17 06:42:21 +0000 | [diff] [blame] | 636 | bool selfIsPseudoStrong = false; |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 637 | bool selfIsConsumed = false; |
Ted Kremenek | 2bbcd5c | 2011-11-14 21:59:25 +0000 | [diff] [blame] | 638 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 639 | if (Context.getLangOpts().ObjCAutoRefCount) { |
Ted Kremenek | 2bbcd5c | 2011-11-14 21:59:25 +0000 | [diff] [blame] | 640 | if (isInstanceMethod()) { |
| 641 | selfIsConsumed = hasAttr<NSConsumesSelfAttr>(); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 642 | |
Ted Kremenek | 2bbcd5c | 2011-11-14 21:59:25 +0000 | [diff] [blame] | 643 | // 'self' is always __strong. It's actually pseudo-strong except |
| 644 | // in init methods (or methods labeled ns_consumes_self), though. |
| 645 | Qualifiers qs; |
| 646 | qs.setObjCLifetime(Qualifiers::OCL_Strong); |
| 647 | selfTy = Context.getQualifiedType(selfTy, qs); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 648 | |
Ted Kremenek | 2bbcd5c | 2011-11-14 21:59:25 +0000 | [diff] [blame] | 649 | // In addition, 'self' is const unless this is an init method. |
| 650 | if (getMethodFamily() != OMF_init && !selfIsConsumed) { |
| 651 | selfTy = selfTy.withConst(); |
| 652 | selfIsPseudoStrong = true; |
| 653 | } |
| 654 | } |
| 655 | else { |
| 656 | assert(isClassMethod()); |
| 657 | // 'self' is always const in class methods. |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 658 | selfTy = selfTy.withConst(); |
John McCall | 7acddac | 2011-06-17 06:42:21 +0000 | [diff] [blame] | 659 | selfIsPseudoStrong = true; |
| 660 | } |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 661 | } |
| 662 | |
| 663 | ImplicitParamDecl *self |
| 664 | = ImplicitParamDecl::Create(Context, this, SourceLocation(), |
| 665 | &Context.Idents.get("self"), selfTy); |
| 666 | setSelfDecl(self); |
| 667 | |
| 668 | if (selfIsConsumed) |
| 669 | self->addAttr(new (Context) NSConsumedAttr(SourceLocation(), Context)); |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 670 | |
John McCall | 7acddac | 2011-06-17 06:42:21 +0000 | [diff] [blame] | 671 | if (selfIsPseudoStrong) |
| 672 | self->setARCPseudoStrong(true); |
| 673 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 674 | setCmdDecl(ImplicitParamDecl::Create(Context, this, SourceLocation(), |
| 675 | &Context.Idents.get("_cmd"), |
Steve Naroff | 53c9d8a | 2009-04-20 15:06:07 +0000 | [diff] [blame] | 676 | Context.getObjCSelType())); |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 677 | } |
| 678 | |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 679 | ObjCInterfaceDecl *ObjCMethodDecl::getClassInterface() { |
| 680 | if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(getDeclContext())) |
| 681 | return ID; |
| 682 | if (ObjCCategoryDecl *CD = dyn_cast<ObjCCategoryDecl>(getDeclContext())) |
| 683 | return CD->getClassInterface(); |
Argyrios Kyrtzidis | a853037 | 2009-07-28 05:10:52 +0000 | [diff] [blame] | 684 | if (ObjCImplDecl *IMD = dyn_cast<ObjCImplDecl>(getDeclContext())) |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 685 | return IMD->getClassInterface(); |
Argyrios Kyrtzidis | a853037 | 2009-07-28 05:10:52 +0000 | [diff] [blame] | 686 | |
| 687 | assert(!isa<ObjCProtocolDecl>(getDeclContext()) && "It's a protocol method"); |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 688 | llvm_unreachable("unknown method context"); |
Fariborz Jahanian | ae6f6fd | 2008-12-05 22:32:48 +0000 | [diff] [blame] | 689 | } |
| 690 | |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 691 | //===----------------------------------------------------------------------===// |
| 692 | // ObjCInterfaceDecl |
| 693 | //===----------------------------------------------------------------------===// |
| 694 | |
Douglas Gregor | a6ea10e | 2012-01-17 18:09:05 +0000 | [diff] [blame] | 695 | ObjCInterfaceDecl *ObjCInterfaceDecl::Create(const ASTContext &C, |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 696 | DeclContext *DC, |
| 697 | SourceLocation atLoc, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 698 | IdentifierInfo *Id, |
Douglas Gregor | 0af5501 | 2011-12-16 03:12:41 +0000 | [diff] [blame] | 699 | ObjCInterfaceDecl *PrevDecl, |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 700 | SourceLocation ClassLoc, |
Douglas Gregor | 7723fec | 2011-12-15 20:29:51 +0000 | [diff] [blame] | 701 | bool isInternal){ |
Douglas Gregor | 0af5501 | 2011-12-16 03:12:41 +0000 | [diff] [blame] | 702 | ObjCInterfaceDecl *Result = new (C) ObjCInterfaceDecl(DC, atLoc, Id, ClassLoc, |
Douglas Gregor | fd002a7 | 2011-12-16 22:37:11 +0000 | [diff] [blame] | 703 | PrevDecl, isInternal); |
Douglas Gregor | 0af5501 | 2011-12-16 03:12:41 +0000 | [diff] [blame] | 704 | C.getObjCInterfaceType(Result, PrevDecl); |
Douglas Gregor | 0af5501 | 2011-12-16 03:12:41 +0000 | [diff] [blame] | 705 | return Result; |
| 706 | } |
| 707 | |
Douglas Gregor | 1e68ecc | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 708 | ObjCInterfaceDecl *ObjCInterfaceDecl::CreateDeserialized(ASTContext &C, |
| 709 | unsigned ID) { |
| 710 | void *Mem = AllocateDeserializedDecl(C, ID, sizeof(ObjCInterfaceDecl)); |
| 711 | return new (Mem) ObjCInterfaceDecl(0, SourceLocation(), 0, SourceLocation(), |
| 712 | 0, false); |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 713 | } |
| 714 | |
| 715 | ObjCInterfaceDecl:: |
| 716 | ObjCInterfaceDecl(DeclContext *DC, SourceLocation atLoc, IdentifierInfo *Id, |
Douglas Gregor | fd002a7 | 2011-12-16 22:37:11 +0000 | [diff] [blame] | 717 | SourceLocation CLoc, ObjCInterfaceDecl *PrevDecl, |
| 718 | bool isInternal) |
Argyrios Kyrtzidis | 1711fc9 | 2011-10-04 04:48:02 +0000 | [diff] [blame] | 719 | : ObjCContainerDecl(ObjCInterface, DC, Id, CLoc, atLoc), |
Douglas Gregor | 7723fec | 2011-12-15 20:29:51 +0000 | [diff] [blame] | 720 | TypeForDecl(0), Data() |
Douglas Gregor | 2e5c15b | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 721 | { |
Douglas Gregor | fd002a7 | 2011-12-16 22:37:11 +0000 | [diff] [blame] | 722 | setPreviousDeclaration(PrevDecl); |
| 723 | |
| 724 | // Copy the 'data' pointer over. |
| 725 | if (PrevDecl) |
| 726 | Data = PrevDecl->Data; |
| 727 | |
Argyrios Kyrtzidis | 40f57ee | 2011-11-15 06:20:21 +0000 | [diff] [blame] | 728 | setImplicit(isInternal); |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 729 | } |
| 730 | |
Douglas Gregor | 26ac3f3 | 2010-12-01 23:49:52 +0000 | [diff] [blame] | 731 | void ObjCInterfaceDecl::LoadExternalDefinition() const { |
Douglas Gregor | 2e5c15b | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 732 | assert(data().ExternallyCompleted && "Class is not externally completed"); |
| 733 | data().ExternallyCompleted = false; |
Douglas Gregor | 26ac3f3 | 2010-12-01 23:49:52 +0000 | [diff] [blame] | 734 | getASTContext().getExternalSource()->CompleteType( |
| 735 | const_cast<ObjCInterfaceDecl *>(this)); |
| 736 | } |
| 737 | |
| 738 | void ObjCInterfaceDecl::setExternallyCompleted() { |
| 739 | assert(getASTContext().getExternalSource() && |
| 740 | "Class can't be externally completed without an external source"); |
Douglas Gregor | 2e5c15b | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 741 | assert(hasDefinition() && |
Douglas Gregor | 26ac3f3 | 2010-12-01 23:49:52 +0000 | [diff] [blame] | 742 | "Forward declarations can't be externally completed"); |
Douglas Gregor | 2e5c15b | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 743 | data().ExternallyCompleted = true; |
Douglas Gregor | 26ac3f3 | 2010-12-01 23:49:52 +0000 | [diff] [blame] | 744 | } |
| 745 | |
Argyrios Kyrtzidis | 8a1d722 | 2009-07-21 00:05:53 +0000 | [diff] [blame] | 746 | ObjCImplementationDecl *ObjCInterfaceDecl::getImplementation() const { |
Douglas Gregor | 7723fec | 2011-12-15 20:29:51 +0000 | [diff] [blame] | 747 | if (const ObjCInterfaceDecl *Def = getDefinition()) { |
| 748 | if (data().ExternallyCompleted) |
| 749 | LoadExternalDefinition(); |
| 750 | |
| 751 | return getASTContext().getObjCImplementation( |
| 752 | const_cast<ObjCInterfaceDecl*>(Def)); |
| 753 | } |
| 754 | |
Douglas Gregor | 2e5c15b | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 755 | // FIXME: Should make sure no callers ever do this. |
Douglas Gregor | 7723fec | 2011-12-15 20:29:51 +0000 | [diff] [blame] | 756 | return 0; |
Argyrios Kyrtzidis | 8a1d722 | 2009-07-21 00:05:53 +0000 | [diff] [blame] | 757 | } |
| 758 | |
| 759 | void ObjCInterfaceDecl::setImplementation(ObjCImplementationDecl *ImplD) { |
Douglas Gregor | 7723fec | 2011-12-15 20:29:51 +0000 | [diff] [blame] | 760 | getASTContext().setObjCImplementation(getDefinition(), ImplD); |
Argyrios Kyrtzidis | 8a1d722 | 2009-07-21 00:05:53 +0000 | [diff] [blame] | 761 | } |
| 762 | |
Fariborz Jahanian | 2c18bb7 | 2010-08-20 21:21:08 +0000 | [diff] [blame] | 763 | /// all_declared_ivar_begin - return first ivar declared in this class, |
| 764 | /// its extensions and its implementation. Lazily build the list on first |
| 765 | /// access. |
| 766 | ObjCIvarDecl *ObjCInterfaceDecl::all_declared_ivar_begin() { |
Douglas Gregor | 2e5c15b | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 767 | // FIXME: Should make sure no callers ever do this. |
| 768 | if (!hasDefinition()) |
| 769 | return 0; |
| 770 | |
| 771 | if (data().IvarList) |
| 772 | return data().IvarList; |
Fariborz Jahanian | 2c18bb7 | 2010-08-20 21:21:08 +0000 | [diff] [blame] | 773 | |
| 774 | ObjCIvarDecl *curIvar = 0; |
| 775 | if (!ivar_empty()) { |
| 776 | ObjCInterfaceDecl::ivar_iterator I = ivar_begin(), E = ivar_end(); |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 777 | data().IvarList = *I; ++I; |
| 778 | for (curIvar = data().IvarList; I != E; curIvar = *I, ++I) |
| 779 | curIvar->setNextIvar(*I); |
Fariborz Jahanian | 2c18bb7 | 2010-08-20 21:21:08 +0000 | [diff] [blame] | 780 | } |
| 781 | |
| 782 | for (const ObjCCategoryDecl *CDecl = getFirstClassExtension(); CDecl; |
| 783 | CDecl = CDecl->getNextClassExtension()) { |
| 784 | if (!CDecl->ivar_empty()) { |
| 785 | ObjCCategoryDecl::ivar_iterator I = CDecl->ivar_begin(), |
| 786 | E = CDecl->ivar_end(); |
Douglas Gregor | 2e5c15b | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 787 | if (!data().IvarList) { |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 788 | data().IvarList = *I; ++I; |
Douglas Gregor | 2e5c15b | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 789 | curIvar = data().IvarList; |
Fariborz Jahanian | 2c18bb7 | 2010-08-20 21:21:08 +0000 | [diff] [blame] | 790 | } |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 791 | for ( ;I != E; curIvar = *I, ++I) |
| 792 | curIvar->setNextIvar(*I); |
Fariborz Jahanian | 2c18bb7 | 2010-08-20 21:21:08 +0000 | [diff] [blame] | 793 | } |
| 794 | } |
| 795 | |
| 796 | if (ObjCImplementationDecl *ImplDecl = getImplementation()) { |
| 797 | if (!ImplDecl->ivar_empty()) { |
| 798 | ObjCImplementationDecl::ivar_iterator I = ImplDecl->ivar_begin(), |
| 799 | E = ImplDecl->ivar_end(); |
Douglas Gregor | 2e5c15b | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 800 | if (!data().IvarList) { |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 801 | data().IvarList = *I; ++I; |
Douglas Gregor | 2e5c15b | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 802 | curIvar = data().IvarList; |
Fariborz Jahanian | 2c18bb7 | 2010-08-20 21:21:08 +0000 | [diff] [blame] | 803 | } |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 804 | for ( ;I != E; curIvar = *I, ++I) |
| 805 | curIvar->setNextIvar(*I); |
Fariborz Jahanian | 2c18bb7 | 2010-08-20 21:21:08 +0000 | [diff] [blame] | 806 | } |
| 807 | } |
Douglas Gregor | 2e5c15b | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 808 | return data().IvarList; |
Fariborz Jahanian | 2c18bb7 | 2010-08-20 21:21:08 +0000 | [diff] [blame] | 809 | } |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 810 | |
| 811 | /// FindCategoryDeclaration - Finds category declaration in the list of |
| 812 | /// categories for this class and returns it. Name of the category is passed |
| 813 | /// in 'CategoryId'. If category not found, return 0; |
Fariborz Jahanian | ae6f6fd | 2008-12-05 22:32:48 +0000 | [diff] [blame] | 814 | /// |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 815 | ObjCCategoryDecl * |
| 816 | ObjCInterfaceDecl::FindCategoryDeclaration(IdentifierInfo *CategoryId) const { |
Argyrios Kyrtzidis | 5a61e0c | 2012-03-02 19:14:29 +0000 | [diff] [blame] | 817 | // FIXME: Should make sure no callers ever do this. |
| 818 | if (!hasDefinition()) |
| 819 | return 0; |
| 820 | |
Douglas Gregor | 2e5c15b | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 821 | if (data().ExternallyCompleted) |
Douglas Gregor | 26ac3f3 | 2010-12-01 23:49:52 +0000 | [diff] [blame] | 822 | LoadExternalDefinition(); |
| 823 | |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 824 | for (ObjCCategoryDecl *Category = getCategoryList(); |
| 825 | Category; Category = Category->getNextClassCategory()) |
| 826 | if (Category->getIdentifier() == CategoryId) |
| 827 | return Category; |
Fariborz Jahanian | ae6f6fd | 2008-12-05 22:32:48 +0000 | [diff] [blame] | 828 | return 0; |
| 829 | } |
| 830 | |
Argyrios Kyrtzidis | 1cb35dd | 2009-07-21 00:06:20 +0000 | [diff] [blame] | 831 | ObjCMethodDecl * |
| 832 | ObjCInterfaceDecl::getCategoryInstanceMethod(Selector Sel) const { |
| 833 | for (ObjCCategoryDecl *Category = getCategoryList(); |
| 834 | Category; Category = Category->getNextClassCategory()) |
| 835 | if (ObjCCategoryImplDecl *Impl = Category->getImplementation()) |
| 836 | if (ObjCMethodDecl *MD = Impl->getInstanceMethod(Sel)) |
| 837 | return MD; |
| 838 | return 0; |
| 839 | } |
| 840 | |
| 841 | ObjCMethodDecl *ObjCInterfaceDecl::getCategoryClassMethod(Selector Sel) const { |
| 842 | for (ObjCCategoryDecl *Category = getCategoryList(); |
| 843 | Category; Category = Category->getNextClassCategory()) |
| 844 | if (ObjCCategoryImplDecl *Impl = Category->getImplementation()) |
| 845 | if (ObjCMethodDecl *MD = Impl->getClassMethod(Sel)) |
| 846 | return MD; |
| 847 | return 0; |
| 848 | } |
| 849 | |
Fariborz Jahanian | 0fd8904 | 2009-08-11 22:02:25 +0000 | [diff] [blame] | 850 | /// ClassImplementsProtocol - Checks that 'lProto' protocol |
| 851 | /// has been implemented in IDecl class, its super class or categories (if |
| 852 | /// lookupCategory is true). |
| 853 | bool ObjCInterfaceDecl::ClassImplementsProtocol(ObjCProtocolDecl *lProto, |
| 854 | bool lookupCategory, |
| 855 | bool RHSIsQualifiedID) { |
Douglas Gregor | 2e5c15b | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 856 | if (!hasDefinition()) |
| 857 | return false; |
| 858 | |
Fariborz Jahanian | 0fd8904 | 2009-08-11 22:02:25 +0000 | [diff] [blame] | 859 | ObjCInterfaceDecl *IDecl = this; |
| 860 | // 1st, look up the class. |
Argyrios Kyrtzidis | a5f4441 | 2012-03-13 01:09:41 +0000 | [diff] [blame] | 861 | for (ObjCInterfaceDecl::protocol_iterator |
| 862 | PI = IDecl->protocol_begin(), E = IDecl->protocol_end(); PI != E; ++PI){ |
Fariborz Jahanian | 0fd8904 | 2009-08-11 22:02:25 +0000 | [diff] [blame] | 863 | if (getASTContext().ProtocolCompatibleWithProtocol(lProto, *PI)) |
| 864 | return true; |
| 865 | // This is dubious and is added to be compatible with gcc. In gcc, it is |
| 866 | // also allowed assigning a protocol-qualified 'id' type to a LHS object |
| 867 | // when protocol in qualified LHS is in list of protocols in the rhs 'id' |
| 868 | // object. This IMO, should be a bug. |
| 869 | // FIXME: Treat this as an extension, and flag this as an error when GCC |
| 870 | // extensions are not enabled. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 871 | if (RHSIsQualifiedID && |
Fariborz Jahanian | 0fd8904 | 2009-08-11 22:02:25 +0000 | [diff] [blame] | 872 | getASTContext().ProtocolCompatibleWithProtocol(*PI, lProto)) |
| 873 | return true; |
| 874 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 875 | |
Fariborz Jahanian | 0fd8904 | 2009-08-11 22:02:25 +0000 | [diff] [blame] | 876 | // 2nd, look up the category. |
| 877 | if (lookupCategory) |
| 878 | for (ObjCCategoryDecl *CDecl = IDecl->getCategoryList(); CDecl; |
| 879 | CDecl = CDecl->getNextClassCategory()) { |
| 880 | for (ObjCCategoryDecl::protocol_iterator PI = CDecl->protocol_begin(), |
| 881 | E = CDecl->protocol_end(); PI != E; ++PI) |
| 882 | if (getASTContext().ProtocolCompatibleWithProtocol(lProto, *PI)) |
| 883 | return true; |
| 884 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 885 | |
Fariborz Jahanian | 0fd8904 | 2009-08-11 22:02:25 +0000 | [diff] [blame] | 886 | // 3rd, look up the super class(s) |
| 887 | if (IDecl->getSuperClass()) |
| 888 | return |
| 889 | IDecl->getSuperClass()->ClassImplementsProtocol(lProto, lookupCategory, |
| 890 | RHSIsQualifiedID); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 891 | |
Fariborz Jahanian | 0fd8904 | 2009-08-11 22:02:25 +0000 | [diff] [blame] | 892 | return false; |
| 893 | } |
| 894 | |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 895 | //===----------------------------------------------------------------------===// |
| 896 | // ObjCIvarDecl |
| 897 | //===----------------------------------------------------------------------===// |
| 898 | |
David Blaikie | 99ba9e3 | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 899 | void ObjCIvarDecl::anchor() { } |
| 900 | |
Daniel Dunbar | a065492 | 2010-04-02 20:10:03 +0000 | [diff] [blame] | 901 | ObjCIvarDecl *ObjCIvarDecl::Create(ASTContext &C, ObjCContainerDecl *DC, |
Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 902 | SourceLocation StartLoc, |
| 903 | SourceLocation IdLoc, IdentifierInfo *Id, |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 904 | QualType T, TypeSourceInfo *TInfo, |
Fariborz Jahanian | ad51e74 | 2010-07-17 00:59:30 +0000 | [diff] [blame] | 905 | AccessControl ac, Expr *BW, |
| 906 | bool synthesized) { |
Daniel Dunbar | a065492 | 2010-04-02 20:10:03 +0000 | [diff] [blame] | 907 | if (DC) { |
| 908 | // Ivar's can only appear in interfaces, implementations (via synthesized |
| 909 | // properties), and class extensions (via direct declaration, or synthesized |
| 910 | // properties). |
| 911 | // |
| 912 | // FIXME: This should really be asserting this: |
| 913 | // (isa<ObjCCategoryDecl>(DC) && |
| 914 | // cast<ObjCCategoryDecl>(DC)->IsClassExtension())) |
| 915 | // but unfortunately we sometimes place ivars into non-class extension |
| 916 | // categories on error. This breaks an AST invariant, and should not be |
| 917 | // fixed. |
| 918 | assert((isa<ObjCInterfaceDecl>(DC) || isa<ObjCImplementationDecl>(DC) || |
| 919 | isa<ObjCCategoryDecl>(DC)) && |
| 920 | "Invalid ivar decl context!"); |
Fariborz Jahanian | 2c18bb7 | 2010-08-20 21:21:08 +0000 | [diff] [blame] | 921 | // Once a new ivar is created in any of class/class-extension/implementation |
| 922 | // decl contexts, the previously built IvarList must be rebuilt. |
| 923 | ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(DC); |
| 924 | if (!ID) { |
Fariborz Jahanian | 000835d | 2010-08-23 18:51:39 +0000 | [diff] [blame] | 925 | if (ObjCImplementationDecl *IM = dyn_cast<ObjCImplementationDecl>(DC)) { |
Fariborz Jahanian | 2c18bb7 | 2010-08-20 21:21:08 +0000 | [diff] [blame] | 926 | ID = IM->getClassInterface(); |
Fariborz Jahanian | 000835d | 2010-08-23 18:51:39 +0000 | [diff] [blame] | 927 | if (BW) |
| 928 | IM->setHasSynthBitfield(true); |
Chad Rosier | 3060178 | 2011-08-17 23:08:45 +0000 | [diff] [blame] | 929 | } else { |
Fariborz Jahanian | 000835d | 2010-08-23 18:51:39 +0000 | [diff] [blame] | 930 | ObjCCategoryDecl *CD = cast<ObjCCategoryDecl>(DC); |
| 931 | ID = CD->getClassInterface(); |
| 932 | if (BW) |
| 933 | CD->setHasSynthBitfield(true); |
| 934 | } |
Fariborz Jahanian | 2c18bb7 | 2010-08-20 21:21:08 +0000 | [diff] [blame] | 935 | } |
| 936 | ID->setIvarList(0); |
Daniel Dunbar | a065492 | 2010-04-02 20:10:03 +0000 | [diff] [blame] | 937 | } |
| 938 | |
Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 939 | return new (C) ObjCIvarDecl(DC, StartLoc, IdLoc, Id, T, TInfo, |
| 940 | ac, BW, synthesized); |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 941 | } |
| 942 | |
Douglas Gregor | 1e68ecc | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 943 | ObjCIvarDecl *ObjCIvarDecl::CreateDeserialized(ASTContext &C, unsigned ID) { |
| 944 | void *Mem = AllocateDeserializedDecl(C, ID, sizeof(ObjCIvarDecl)); |
| 945 | return new (Mem) ObjCIvarDecl(0, SourceLocation(), SourceLocation(), 0, |
| 946 | QualType(), 0, ObjCIvarDecl::None, 0, false); |
| 947 | } |
| 948 | |
Daniel Dunbar | 27a961a | 2010-04-02 21:13:59 +0000 | [diff] [blame] | 949 | const ObjCInterfaceDecl *ObjCIvarDecl::getContainingInterface() const { |
| 950 | const ObjCContainerDecl *DC = cast<ObjCContainerDecl>(getDeclContext()); |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 951 | |
Daniel Dunbar | 27a961a | 2010-04-02 21:13:59 +0000 | [diff] [blame] | 952 | switch (DC->getKind()) { |
| 953 | default: |
| 954 | case ObjCCategoryImpl: |
| 955 | case ObjCProtocol: |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 956 | llvm_unreachable("invalid ivar container!"); |
Daniel Dunbar | 27a961a | 2010-04-02 21:13:59 +0000 | [diff] [blame] | 957 | |
| 958 | // Ivars can only appear in class extension categories. |
| 959 | case ObjCCategory: { |
| 960 | const ObjCCategoryDecl *CD = cast<ObjCCategoryDecl>(DC); |
| 961 | assert(CD->IsClassExtension() && "invalid container for ivar!"); |
| 962 | return CD->getClassInterface(); |
| 963 | } |
| 964 | |
| 965 | case ObjCImplementation: |
| 966 | return cast<ObjCImplementationDecl>(DC)->getClassInterface(); |
| 967 | |
| 968 | case ObjCInterface: |
| 969 | return cast<ObjCInterfaceDecl>(DC); |
| 970 | } |
| 971 | } |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 972 | |
| 973 | //===----------------------------------------------------------------------===// |
| 974 | // ObjCAtDefsFieldDecl |
| 975 | //===----------------------------------------------------------------------===// |
| 976 | |
David Blaikie | 99ba9e3 | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 977 | void ObjCAtDefsFieldDecl::anchor() { } |
| 978 | |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 979 | ObjCAtDefsFieldDecl |
Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 980 | *ObjCAtDefsFieldDecl::Create(ASTContext &C, DeclContext *DC, |
| 981 | SourceLocation StartLoc, SourceLocation IdLoc, |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 982 | IdentifierInfo *Id, QualType T, Expr *BW) { |
Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 983 | return new (C) ObjCAtDefsFieldDecl(DC, StartLoc, IdLoc, Id, T, BW); |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 984 | } |
| 985 | |
Douglas Gregor | 1e68ecc | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 986 | ObjCAtDefsFieldDecl *ObjCAtDefsFieldDecl::CreateDeserialized(ASTContext &C, |
| 987 | unsigned ID) { |
| 988 | void *Mem = AllocateDeserializedDecl(C, ID, sizeof(ObjCAtDefsFieldDecl)); |
| 989 | return new (Mem) ObjCAtDefsFieldDecl(0, SourceLocation(), SourceLocation(), |
| 990 | 0, QualType(), 0); |
| 991 | } |
| 992 | |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 993 | //===----------------------------------------------------------------------===// |
| 994 | // ObjCProtocolDecl |
| 995 | //===----------------------------------------------------------------------===// |
| 996 | |
David Blaikie | 99ba9e3 | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 997 | void ObjCProtocolDecl::anchor() { } |
| 998 | |
Douglas Gregor | 27c6da2 | 2012-01-01 20:30:41 +0000 | [diff] [blame] | 999 | ObjCProtocolDecl::ObjCProtocolDecl(DeclContext *DC, IdentifierInfo *Id, |
| 1000 | SourceLocation nameLoc, |
| 1001 | SourceLocation atStartLoc, |
Douglas Gregor | c9d3c7e | 2012-01-01 22:06:18 +0000 | [diff] [blame] | 1002 | ObjCProtocolDecl *PrevDecl) |
| 1003 | : ObjCContainerDecl(ObjCProtocol, DC, Id, nameLoc, atStartLoc), Data() |
Douglas Gregor | 27c6da2 | 2012-01-01 20:30:41 +0000 | [diff] [blame] | 1004 | { |
| 1005 | setPreviousDeclaration(PrevDecl); |
| 1006 | if (PrevDecl) |
| 1007 | Data = PrevDecl->Data; |
| 1008 | } |
| 1009 | |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1010 | ObjCProtocolDecl *ObjCProtocolDecl::Create(ASTContext &C, DeclContext *DC, |
Argyrios Kyrtzidis | 1711fc9 | 2011-10-04 04:48:02 +0000 | [diff] [blame] | 1011 | IdentifierInfo *Id, |
| 1012 | SourceLocation nameLoc, |
Argyrios Kyrtzidis | b05d7b2 | 2011-10-17 19:48:06 +0000 | [diff] [blame] | 1013 | SourceLocation atStartLoc, |
Douglas Gregor | c9d3c7e | 2012-01-01 22:06:18 +0000 | [diff] [blame] | 1014 | ObjCProtocolDecl *PrevDecl) { |
Douglas Gregor | 27c6da2 | 2012-01-01 20:30:41 +0000 | [diff] [blame] | 1015 | ObjCProtocolDecl *Result |
Douglas Gregor | c9d3c7e | 2012-01-01 22:06:18 +0000 | [diff] [blame] | 1016 | = new (C) ObjCProtocolDecl(DC, Id, nameLoc, atStartLoc, PrevDecl); |
Douglas Gregor | 27c6da2 | 2012-01-01 20:30:41 +0000 | [diff] [blame] | 1017 | |
| 1018 | return Result; |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1019 | } |
| 1020 | |
Douglas Gregor | 1e68ecc | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 1021 | ObjCProtocolDecl *ObjCProtocolDecl::CreateDeserialized(ASTContext &C, |
| 1022 | unsigned ID) { |
| 1023 | void *Mem = AllocateDeserializedDecl(C, ID, sizeof(ObjCProtocolDecl)); |
| 1024 | return new (Mem) ObjCProtocolDecl(0, 0, SourceLocation(), SourceLocation(), |
| 1025 | 0); |
| 1026 | } |
| 1027 | |
Steve Naroff | 91b0b0c | 2009-03-01 16:12:44 +0000 | [diff] [blame] | 1028 | ObjCProtocolDecl *ObjCProtocolDecl::lookupProtocolNamed(IdentifierInfo *Name) { |
| 1029 | ObjCProtocolDecl *PDecl = this; |
| 1030 | |
| 1031 | if (Name == getIdentifier()) |
| 1032 | return PDecl; |
| 1033 | |
| 1034 | for (protocol_iterator I = protocol_begin(), E = protocol_end(); I != E; ++I) |
| 1035 | if ((PDecl = (*I)->lookupProtocolNamed(Name))) |
| 1036 | return PDecl; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1037 | |
Steve Naroff | 91b0b0c | 2009-03-01 16:12:44 +0000 | [diff] [blame] | 1038 | return NULL; |
| 1039 | } |
| 1040 | |
Argyrios Kyrtzidis | 094e2bb | 2009-07-25 22:15:38 +0000 | [diff] [blame] | 1041 | // lookupMethod - Lookup a instance/class method in the protocol and protocols |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1042 | // it inherited. |
Argyrios Kyrtzidis | 094e2bb | 2009-07-25 22:15:38 +0000 | [diff] [blame] | 1043 | ObjCMethodDecl *ObjCProtocolDecl::lookupMethod(Selector Sel, |
| 1044 | bool isInstance) const { |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1045 | ObjCMethodDecl *MethodDecl = NULL; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1046 | |
Argyrios Kyrtzidis | 094e2bb | 2009-07-25 22:15:38 +0000 | [diff] [blame] | 1047 | if ((MethodDecl = getMethod(Sel, isInstance))) |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1048 | return MethodDecl; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1049 | |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1050 | for (protocol_iterator I = protocol_begin(), E = protocol_end(); I != E; ++I) |
Argyrios Kyrtzidis | 094e2bb | 2009-07-25 22:15:38 +0000 | [diff] [blame] | 1051 | if ((MethodDecl = (*I)->lookupMethod(Sel, isInstance))) |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1052 | return MethodDecl; |
| 1053 | return NULL; |
| 1054 | } |
| 1055 | |
Douglas Gregor | 5e2a1ff | 2012-01-01 19:29:29 +0000 | [diff] [blame] | 1056 | void ObjCProtocolDecl::allocateDefinitionData() { |
| 1057 | assert(!Data && "Protocol already has a definition!"); |
Douglas Gregor | 1d784b2 | 2012-01-01 19:51:50 +0000 | [diff] [blame] | 1058 | Data = new (getASTContext()) DefinitionData; |
| 1059 | Data->Definition = this; |
Douglas Gregor | 5e2a1ff | 2012-01-01 19:29:29 +0000 | [diff] [blame] | 1060 | } |
| 1061 | |
| 1062 | void ObjCProtocolDecl::startDefinition() { |
| 1063 | allocateDefinitionData(); |
Douglas Gregor | 1d784b2 | 2012-01-01 19:51:50 +0000 | [diff] [blame] | 1064 | |
| 1065 | // Update all of the declarations with a pointer to the definition. |
| 1066 | for (redecl_iterator RD = redecls_begin(), RDEnd = redecls_end(); |
| 1067 | RD != RDEnd; ++RD) |
| 1068 | RD->Data = this->Data; |
Argyrios Kyrtzidis | ad834d5 | 2011-11-12 21:07:46 +0000 | [diff] [blame] | 1069 | } |
| 1070 | |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1071 | //===----------------------------------------------------------------------===// |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1072 | // ObjCCategoryDecl |
| 1073 | //===----------------------------------------------------------------------===// |
| 1074 | |
David Blaikie | 99ba9e3 | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 1075 | void ObjCCategoryDecl::anchor() { } |
| 1076 | |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1077 | ObjCCategoryDecl *ObjCCategoryDecl::Create(ASTContext &C, DeclContext *DC, |
Douglas Gregor | 3db211b | 2010-01-16 16:38:58 +0000 | [diff] [blame] | 1078 | SourceLocation AtLoc, |
| 1079 | SourceLocation ClassNameLoc, |
| 1080 | SourceLocation CategoryNameLoc, |
Argyrios Kyrtzidis | 955fadb | 2011-08-30 19:43:26 +0000 | [diff] [blame] | 1081 | IdentifierInfo *Id, |
Fariborz Jahanian | af30029 | 2012-02-20 20:09:20 +0000 | [diff] [blame] | 1082 | ObjCInterfaceDecl *IDecl, |
| 1083 | SourceLocation IvarLBraceLoc, |
| 1084 | SourceLocation IvarRBraceLoc) { |
Argyrios Kyrtzidis | 955fadb | 2011-08-30 19:43:26 +0000 | [diff] [blame] | 1085 | ObjCCategoryDecl *CatDecl = new (C) ObjCCategoryDecl(DC, AtLoc, ClassNameLoc, |
| 1086 | CategoryNameLoc, Id, |
Fariborz Jahanian | af30029 | 2012-02-20 20:09:20 +0000 | [diff] [blame] | 1087 | IDecl, |
| 1088 | IvarLBraceLoc, IvarRBraceLoc); |
Argyrios Kyrtzidis | 955fadb | 2011-08-30 19:43:26 +0000 | [diff] [blame] | 1089 | if (IDecl) { |
| 1090 | // Link this category into its class's category list. |
| 1091 | CatDecl->NextClassCategory = IDecl->getCategoryList(); |
Douglas Gregor | 2e5c15b | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 1092 | if (IDecl->hasDefinition()) { |
| 1093 | IDecl->setCategoryList(CatDecl); |
| 1094 | if (ASTMutationListener *L = C.getASTMutationListener()) |
| 1095 | L->AddedObjCCategoryToInterface(CatDecl, IDecl); |
| 1096 | } |
Argyrios Kyrtzidis | 955fadb | 2011-08-30 19:43:26 +0000 | [diff] [blame] | 1097 | } |
| 1098 | |
| 1099 | return CatDecl; |
| 1100 | } |
| 1101 | |
Douglas Gregor | 1e68ecc | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 1102 | ObjCCategoryDecl *ObjCCategoryDecl::CreateDeserialized(ASTContext &C, |
| 1103 | unsigned ID) { |
| 1104 | void *Mem = AllocateDeserializedDecl(C, ID, sizeof(ObjCCategoryDecl)); |
| 1105 | return new (Mem) ObjCCategoryDecl(0, SourceLocation(), SourceLocation(), |
| 1106 | SourceLocation(), 0, 0); |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1107 | } |
| 1108 | |
Argyrios Kyrtzidis | 8a1d722 | 2009-07-21 00:05:53 +0000 | [diff] [blame] | 1109 | ObjCCategoryImplDecl *ObjCCategoryDecl::getImplementation() const { |
| 1110 | return getASTContext().getObjCImplementation( |
| 1111 | const_cast<ObjCCategoryDecl*>(this)); |
| 1112 | } |
| 1113 | |
| 1114 | void ObjCCategoryDecl::setImplementation(ObjCCategoryImplDecl *ImplD) { |
| 1115 | getASTContext().setObjCImplementation(this, ImplD); |
| 1116 | } |
| 1117 | |
| 1118 | |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1119 | //===----------------------------------------------------------------------===// |
| 1120 | // ObjCCategoryImplDecl |
| 1121 | //===----------------------------------------------------------------------===// |
| 1122 | |
David Blaikie | 99ba9e3 | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 1123 | void ObjCCategoryImplDecl::anchor() { } |
| 1124 | |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1125 | ObjCCategoryImplDecl * |
| 1126 | ObjCCategoryImplDecl::Create(ASTContext &C, DeclContext *DC, |
Argyrios Kyrtzidis | 1711fc9 | 2011-10-04 04:48:02 +0000 | [diff] [blame] | 1127 | IdentifierInfo *Id, |
| 1128 | ObjCInterfaceDecl *ClassInterface, |
| 1129 | SourceLocation nameLoc, |
Argyrios Kyrtzidis | c699400 | 2011-12-09 00:31:40 +0000 | [diff] [blame] | 1130 | SourceLocation atStartLoc, |
| 1131 | SourceLocation CategoryNameLoc) { |
Fariborz Jahanian | 712ef87 | 2011-12-23 00:31:02 +0000 | [diff] [blame] | 1132 | if (ClassInterface && ClassInterface->hasDefinition()) |
| 1133 | ClassInterface = ClassInterface->getDefinition(); |
Argyrios Kyrtzidis | 1711fc9 | 2011-10-04 04:48:02 +0000 | [diff] [blame] | 1134 | return new (C) ObjCCategoryImplDecl(DC, Id, ClassInterface, |
Argyrios Kyrtzidis | c699400 | 2011-12-09 00:31:40 +0000 | [diff] [blame] | 1135 | nameLoc, atStartLoc, CategoryNameLoc); |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1136 | } |
| 1137 | |
Douglas Gregor | 1e68ecc | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 1138 | ObjCCategoryImplDecl *ObjCCategoryImplDecl::CreateDeserialized(ASTContext &C, |
| 1139 | unsigned ID) { |
| 1140 | void *Mem = AllocateDeserializedDecl(C, ID, sizeof(ObjCCategoryImplDecl)); |
| 1141 | return new (Mem) ObjCCategoryImplDecl(0, 0, 0, SourceLocation(), |
| 1142 | SourceLocation(), SourceLocation()); |
| 1143 | } |
| 1144 | |
Steve Naroff | 0d69b8c | 2009-10-29 21:11:04 +0000 | [diff] [blame] | 1145 | ObjCCategoryDecl *ObjCCategoryImplDecl::getCategoryDecl() const { |
Ted Kremenek | ebfa339 | 2010-03-19 20:39:03 +0000 | [diff] [blame] | 1146 | // The class interface might be NULL if we are working with invalid code. |
| 1147 | if (const ObjCInterfaceDecl *ID = getClassInterface()) |
| 1148 | return ID->FindCategoryDeclaration(getIdentifier()); |
| 1149 | return 0; |
Argyrios Kyrtzidis | 4292073 | 2009-07-28 05:11:05 +0000 | [diff] [blame] | 1150 | } |
| 1151 | |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1152 | |
David Blaikie | 99ba9e3 | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 1153 | void ObjCImplDecl::anchor() { } |
| 1154 | |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1155 | void ObjCImplDecl::addPropertyImplementation(ObjCPropertyImplDecl *property) { |
Douglas Gregor | 2c2d43c | 2009-04-23 02:42:49 +0000 | [diff] [blame] | 1156 | // FIXME: The context should be correct before we get here. |
Douglas Gregor | 653f1b1 | 2009-04-23 01:02:12 +0000 | [diff] [blame] | 1157 | property->setLexicalDeclContext(this); |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1158 | addDecl(property); |
Douglas Gregor | 653f1b1 | 2009-04-23 01:02:12 +0000 | [diff] [blame] | 1159 | } |
| 1160 | |
Argyrios Kyrtzidis | 8a1d722 | 2009-07-21 00:05:53 +0000 | [diff] [blame] | 1161 | void ObjCImplDecl::setClassInterface(ObjCInterfaceDecl *IFace) { |
| 1162 | ASTContext &Ctx = getASTContext(); |
| 1163 | |
| 1164 | if (ObjCImplementationDecl *ImplD |
Duncan Sands | 98f2cca | 2009-07-21 07:56:29 +0000 | [diff] [blame] | 1165 | = dyn_cast_or_null<ObjCImplementationDecl>(this)) { |
Argyrios Kyrtzidis | 8a1d722 | 2009-07-21 00:05:53 +0000 | [diff] [blame] | 1166 | if (IFace) |
| 1167 | Ctx.setObjCImplementation(IFace, ImplD); |
| 1168 | |
Duncan Sands | 98f2cca | 2009-07-21 07:56:29 +0000 | [diff] [blame] | 1169 | } else if (ObjCCategoryImplDecl *ImplD = |
Argyrios Kyrtzidis | 8a1d722 | 2009-07-21 00:05:53 +0000 | [diff] [blame] | 1170 | dyn_cast_or_null<ObjCCategoryImplDecl>(this)) { |
| 1171 | if (ObjCCategoryDecl *CD = IFace->FindCategoryDeclaration(getIdentifier())) |
| 1172 | Ctx.setObjCImplementation(CD, ImplD); |
| 1173 | } |
| 1174 | |
| 1175 | ClassInterface = IFace; |
| 1176 | } |
| 1177 | |
Fariborz Jahanian | ae6f6fd | 2008-12-05 22:32:48 +0000 | [diff] [blame] | 1178 | /// FindPropertyImplIvarDecl - This method lookup the ivar in the list of |
James Dennett | 1c3a46a | 2012-06-15 22:30:14 +0000 | [diff] [blame] | 1179 | /// properties implemented in this category \@implementation block and returns |
Chris Lattner | d6eed1c | 2009-02-16 19:24:31 +0000 | [diff] [blame] | 1180 | /// the implemented property that uses it. |
Fariborz Jahanian | ae6f6fd | 2008-12-05 22:32:48 +0000 | [diff] [blame] | 1181 | /// |
Chris Lattner | 3aa1861 | 2009-02-28 18:42:10 +0000 | [diff] [blame] | 1182 | ObjCPropertyImplDecl *ObjCImplDecl:: |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1183 | FindPropertyImplIvarDecl(IdentifierInfo *ivarId) const { |
| 1184 | for (propimpl_iterator i = propimpl_begin(), e = propimpl_end(); i != e; ++i){ |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 1185 | ObjCPropertyImplDecl *PID = *i; |
Fariborz Jahanian | ae6f6fd | 2008-12-05 22:32:48 +0000 | [diff] [blame] | 1186 | if (PID->getPropertyIvarDecl() && |
| 1187 | PID->getPropertyIvarDecl()->getIdentifier() == ivarId) |
| 1188 | return PID; |
| 1189 | } |
| 1190 | return 0; |
| 1191 | } |
| 1192 | |
| 1193 | /// FindPropertyImplDecl - This method looks up a previous ObjCPropertyImplDecl |
James Dennett | 1c3a46a | 2012-06-15 22:30:14 +0000 | [diff] [blame] | 1194 | /// added to the list of those properties \@synthesized/\@dynamic in this |
| 1195 | /// category \@implementation block. |
Fariborz Jahanian | ae6f6fd | 2008-12-05 22:32:48 +0000 | [diff] [blame] | 1196 | /// |
Chris Lattner | 3aa1861 | 2009-02-28 18:42:10 +0000 | [diff] [blame] | 1197 | ObjCPropertyImplDecl *ObjCImplDecl:: |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1198 | FindPropertyImplDecl(IdentifierInfo *Id) const { |
| 1199 | for (propimpl_iterator i = propimpl_begin(), e = propimpl_end(); i != e; ++i){ |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 1200 | ObjCPropertyImplDecl *PID = *i; |
Fariborz Jahanian | ae6f6fd | 2008-12-05 22:32:48 +0000 | [diff] [blame] | 1201 | if (PID->getPropertyDecl()->getIdentifier() == Id) |
| 1202 | return PID; |
| 1203 | } |
| 1204 | return 0; |
| 1205 | } |
| 1206 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1207 | raw_ostream &clang::operator<<(raw_ostream &OS, |
Benjamin Kramer | f978059 | 2012-02-07 11:57:45 +0000 | [diff] [blame] | 1208 | const ObjCCategoryImplDecl &CID) { |
| 1209 | OS << CID.getName(); |
Benjamin Kramer | 900fc63 | 2010-04-17 09:33:03 +0000 | [diff] [blame] | 1210 | return OS; |
| 1211 | } |
| 1212 | |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1213 | //===----------------------------------------------------------------------===// |
| 1214 | // ObjCImplementationDecl |
| 1215 | //===----------------------------------------------------------------------===// |
| 1216 | |
David Blaikie | 99ba9e3 | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 1217 | void ObjCImplementationDecl::anchor() { } |
| 1218 | |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1219 | ObjCImplementationDecl * |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1220 | ObjCImplementationDecl::Create(ASTContext &C, DeclContext *DC, |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1221 | ObjCInterfaceDecl *ClassInterface, |
Argyrios Kyrtzidis | 1711fc9 | 2011-10-04 04:48:02 +0000 | [diff] [blame] | 1222 | ObjCInterfaceDecl *SuperDecl, |
| 1223 | SourceLocation nameLoc, |
Fariborz Jahanian | af30029 | 2012-02-20 20:09:20 +0000 | [diff] [blame] | 1224 | SourceLocation atStartLoc, |
| 1225 | SourceLocation IvarLBraceLoc, |
| 1226 | SourceLocation IvarRBraceLoc) { |
Fariborz Jahanian | 712ef87 | 2011-12-23 00:31:02 +0000 | [diff] [blame] | 1227 | if (ClassInterface && ClassInterface->hasDefinition()) |
| 1228 | ClassInterface = ClassInterface->getDefinition(); |
Argyrios Kyrtzidis | 1711fc9 | 2011-10-04 04:48:02 +0000 | [diff] [blame] | 1229 | return new (C) ObjCImplementationDecl(DC, ClassInterface, SuperDecl, |
Fariborz Jahanian | af30029 | 2012-02-20 20:09:20 +0000 | [diff] [blame] | 1230 | nameLoc, atStartLoc, |
| 1231 | IvarLBraceLoc, IvarRBraceLoc); |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1232 | } |
| 1233 | |
Douglas Gregor | 1e68ecc | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 1234 | ObjCImplementationDecl * |
| 1235 | ObjCImplementationDecl::CreateDeserialized(ASTContext &C, unsigned ID) { |
| 1236 | void *Mem = AllocateDeserializedDecl(C, ID, sizeof(ObjCImplementationDecl)); |
| 1237 | return new (Mem) ObjCImplementationDecl(0, 0, 0, SourceLocation(), |
| 1238 | SourceLocation()); |
| 1239 | } |
| 1240 | |
John McCall | da6d976 | 2011-07-22 04:15:06 +0000 | [diff] [blame] | 1241 | void ObjCImplementationDecl::setIvarInitializers(ASTContext &C, |
| 1242 | CXXCtorInitializer ** initializers, |
| 1243 | unsigned numInitializers) { |
| 1244 | if (numInitializers > 0) { |
| 1245 | NumIvarInitializers = numInitializers; |
| 1246 | CXXCtorInitializer **ivarInitializers = |
| 1247 | new (C) CXXCtorInitializer*[NumIvarInitializers]; |
| 1248 | memcpy(ivarInitializers, initializers, |
| 1249 | numInitializers * sizeof(CXXCtorInitializer*)); |
| 1250 | IvarInitializers = ivarInitializers; |
| 1251 | } |
| 1252 | } |
| 1253 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1254 | raw_ostream &clang::operator<<(raw_ostream &OS, |
Benjamin Kramer | f978059 | 2012-02-07 11:57:45 +0000 | [diff] [blame] | 1255 | const ObjCImplementationDecl &ID) { |
| 1256 | OS << ID.getName(); |
Benjamin Kramer | 900fc63 | 2010-04-17 09:33:03 +0000 | [diff] [blame] | 1257 | return OS; |
| 1258 | } |
| 1259 | |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1260 | //===----------------------------------------------------------------------===// |
| 1261 | // ObjCCompatibleAliasDecl |
| 1262 | //===----------------------------------------------------------------------===// |
| 1263 | |
David Blaikie | 99ba9e3 | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 1264 | void ObjCCompatibleAliasDecl::anchor() { } |
| 1265 | |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1266 | ObjCCompatibleAliasDecl * |
| 1267 | ObjCCompatibleAliasDecl::Create(ASTContext &C, DeclContext *DC, |
| 1268 | SourceLocation L, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1269 | IdentifierInfo *Id, |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1270 | ObjCInterfaceDecl* AliasedClass) { |
| 1271 | return new (C) ObjCCompatibleAliasDecl(DC, L, Id, AliasedClass); |
| 1272 | } |
| 1273 | |
Douglas Gregor | 1e68ecc | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 1274 | ObjCCompatibleAliasDecl * |
| 1275 | ObjCCompatibleAliasDecl::CreateDeserialized(ASTContext &C, unsigned ID) { |
| 1276 | void *Mem = AllocateDeserializedDecl(C, ID, sizeof(ObjCCompatibleAliasDecl)); |
| 1277 | return new (Mem) ObjCCompatibleAliasDecl(0, SourceLocation(), 0, 0); |
| 1278 | } |
| 1279 | |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1280 | //===----------------------------------------------------------------------===// |
| 1281 | // ObjCPropertyDecl |
| 1282 | //===----------------------------------------------------------------------===// |
| 1283 | |
David Blaikie | 99ba9e3 | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 1284 | void ObjCPropertyDecl::anchor() { } |
| 1285 | |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1286 | ObjCPropertyDecl *ObjCPropertyDecl::Create(ASTContext &C, DeclContext *DC, |
| 1287 | SourceLocation L, |
| 1288 | IdentifierInfo *Id, |
Fariborz Jahanian | d050240 | 2010-01-21 17:36:00 +0000 | [diff] [blame] | 1289 | SourceLocation AtLoc, |
Fariborz Jahanian | 77bfb8b | 2012-02-29 22:18:55 +0000 | [diff] [blame] | 1290 | SourceLocation LParenLoc, |
John McCall | 83a230c | 2010-06-04 20:50:08 +0000 | [diff] [blame] | 1291 | TypeSourceInfo *T, |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1292 | PropertyControl propControl) { |
Fariborz Jahanian | 77bfb8b | 2012-02-29 22:18:55 +0000 | [diff] [blame] | 1293 | return new (C) ObjCPropertyDecl(DC, L, Id, AtLoc, LParenLoc, T); |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1294 | } |
| 1295 | |
Douglas Gregor | 1e68ecc | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 1296 | ObjCPropertyDecl *ObjCPropertyDecl::CreateDeserialized(ASTContext &C, |
| 1297 | unsigned ID) { |
| 1298 | void * Mem = AllocateDeserializedDecl(C, ID, sizeof(ObjCPropertyDecl)); |
| 1299 | return new (Mem) ObjCPropertyDecl(0, SourceLocation(), 0, SourceLocation(), |
Fariborz Jahanian | 77bfb8b | 2012-02-29 22:18:55 +0000 | [diff] [blame] | 1300 | SourceLocation(), |
Douglas Gregor | 1e68ecc | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 1301 | 0); |
| 1302 | } |
| 1303 | |
Chris Lattner | ab35163 | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1304 | //===----------------------------------------------------------------------===// |
| 1305 | // ObjCPropertyImplDecl |
| 1306 | //===----------------------------------------------------------------------===// |
| 1307 | |
Fariborz Jahanian | 628b96f | 2008-04-23 00:06:01 +0000 | [diff] [blame] | 1308 | ObjCPropertyImplDecl *ObjCPropertyImplDecl::Create(ASTContext &C, |
Douglas Gregor | d043410 | 2009-01-09 00:49:46 +0000 | [diff] [blame] | 1309 | DeclContext *DC, |
Fariborz Jahanian | 628b96f | 2008-04-23 00:06:01 +0000 | [diff] [blame] | 1310 | SourceLocation atLoc, |
| 1311 | SourceLocation L, |
| 1312 | ObjCPropertyDecl *property, |
Daniel Dunbar | 9f0afd4 | 2008-08-26 04:47:31 +0000 | [diff] [blame] | 1313 | Kind PK, |
Douglas Gregor | a4ffd85 | 2010-11-17 01:03:52 +0000 | [diff] [blame] | 1314 | ObjCIvarDecl *ivar, |
| 1315 | SourceLocation ivarLoc) { |
| 1316 | return new (C) ObjCPropertyImplDecl(DC, atLoc, L, property, PK, ivar, |
| 1317 | ivarLoc); |
Fariborz Jahanian | 628b96f | 2008-04-23 00:06:01 +0000 | [diff] [blame] | 1318 | } |
Chris Lattner | f4af515 | 2008-03-17 01:19:02 +0000 | [diff] [blame] | 1319 | |
Douglas Gregor | 1e68ecc | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 1320 | ObjCPropertyImplDecl *ObjCPropertyImplDecl::CreateDeserialized(ASTContext &C, |
| 1321 | unsigned ID) { |
| 1322 | void *Mem = AllocateDeserializedDecl(C, ID, sizeof(ObjCPropertyImplDecl)); |
| 1323 | return new (Mem) ObjCPropertyImplDecl(0, SourceLocation(), SourceLocation(), |
| 1324 | 0, Dynamic, 0, SourceLocation()); |
| 1325 | } |
| 1326 | |
Douglas Gregor | a4ffd85 | 2010-11-17 01:03:52 +0000 | [diff] [blame] | 1327 | SourceRange ObjCPropertyImplDecl::getSourceRange() const { |
| 1328 | SourceLocation EndLoc = getLocation(); |
| 1329 | if (IvarLoc.isValid()) |
| 1330 | EndLoc = IvarLoc; |
Chris Lattner | 0ed844b | 2008-04-04 06:12:32 +0000 | [diff] [blame] | 1331 | |
Douglas Gregor | a4ffd85 | 2010-11-17 01:03:52 +0000 | [diff] [blame] | 1332 | return SourceRange(AtLoc, EndLoc); |
| 1333 | } |