| Eugene Zelenko | 2f8e66b | 2017-11-22 21:32:07 +0000 | [diff] [blame] | 1 | //===- DeclObjC.cpp - ObjC Declaration AST Node Implementation ------------===// |
| Chris Lattner | 8937519 | 2008-03-16 00:19:01 +0000 | [diff] [blame] | 2 | // |
| Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
| Chris Lattner | 8937519 | 2008-03-16 00:19:01 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | // |
| 9 | // This file implements the Objective-C related Decl classes. |
| 10 | // |
| 11 | //===----------------------------------------------------------------------===// |
| 12 | |
| 13 | #include "clang/AST/DeclObjC.h" |
| 14 | #include "clang/AST/ASTContext.h" |
| Argyrios Kyrtzidis | 7d847c9 | 2011-09-01 00:58:55 +0000 | [diff] [blame] | 15 | #include "clang/AST/ASTMutationListener.h" |
| Benjamin Kramer | ea70eb3 | 2012-12-01 15:09:41 +0000 | [diff] [blame] | 16 | #include "clang/AST/Attr.h" |
| Eugene Zelenko | 2f8e66b | 2017-11-22 21:32:07 +0000 | [diff] [blame] | 17 | #include "clang/AST/Decl.h" |
| 18 | #include "clang/AST/DeclBase.h" |
| Benjamin Kramer | ea70eb3 | 2012-12-01 15:09:41 +0000 | [diff] [blame] | 19 | #include "clang/AST/Stmt.h" |
| Eugene Zelenko | 2f8e66b | 2017-11-22 21:32:07 +0000 | [diff] [blame] | 20 | #include "clang/AST/Type.h" |
| 21 | #include "clang/AST/TypeLoc.h" |
| 22 | #include "clang/Basic/IdentifierTable.h" |
| 23 | #include "clang/Basic/LLVM.h" |
| 24 | #include "clang/Basic/LangOptions.h" |
| 25 | #include "clang/Basic/SourceLocation.h" |
| 26 | #include "llvm/ADT/None.h" |
| Anna Zaks | 454477c | 2012-09-27 19:45:11 +0000 | [diff] [blame] | 27 | #include "llvm/ADT/SmallString.h" |
| Eugene Zelenko | 2f8e66b | 2017-11-22 21:32:07 +0000 | [diff] [blame] | 28 | #include "llvm/ADT/SmallVector.h" |
| 29 | #include "llvm/Support/Casting.h" |
| 30 | #include "llvm/Support/ErrorHandling.h" |
| 31 | #include "llvm/Support/raw_ostream.h" |
| 32 | #include <algorithm> |
| 33 | #include <cassert> |
| 34 | #include <cstdint> |
| 35 | #include <cstring> |
| 36 | #include <utility> |
| 37 | |
| Chris Lattner | 8937519 | 2008-03-16 00:19:01 +0000 | [diff] [blame] | 38 | using namespace clang; |
| 39 | |
| Chris Lattner | 8d8829e | 2008-03-16 00:49:28 +0000 | [diff] [blame] | 40 | //===----------------------------------------------------------------------===// |
| Chris Lattner | 4d1eb76 | 2009-02-20 21:16:26 +0000 | [diff] [blame] | 41 | // ObjCListBase |
| 42 | //===----------------------------------------------------------------------===// |
| 43 | |
| Chris Lattner | 2229872 | 2009-02-20 21:35:13 +0000 | [diff] [blame] | 44 | void ObjCListBase::set(void *const* InList, unsigned Elts, ASTContext &Ctx) { |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 45 | List = nullptr; |
| Chris Lattner | 4d1eb76 | 2009-02-20 21:16:26 +0000 | [diff] [blame] | 46 | if (Elts == 0) return; // Setting to an empty list is a noop. |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 47 | |
| Chris Lattner | 7c981a7 | 2009-02-20 21:44:01 +0000 | [diff] [blame] | 48 | List = new (Ctx) void*[Elts]; |
| Chris Lattner | 4d1eb76 | 2009-02-20 21:16:26 +0000 | [diff] [blame] | 49 | NumElts = Elts; |
| 50 | memcpy(List, InList, sizeof(void*)*Elts); |
| 51 | } |
| 52 | |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 53 | void ObjCProtocolList::set(ObjCProtocolDecl* const* InList, unsigned Elts, |
| Douglas Gregor | 002b671 | 2010-01-16 15:02:53 +0000 | [diff] [blame] | 54 | const SourceLocation *Locs, ASTContext &Ctx) { |
| 55 | if (Elts == 0) |
| 56 | return; |
| 57 | |
| 58 | Locations = new (Ctx) SourceLocation[Elts]; |
| 59 | memcpy(Locations, Locs, sizeof(SourceLocation) * Elts); |
| 60 | set(InList, Elts, Ctx); |
| 61 | } |
| 62 | |
| Chris Lattner | 4d1eb76 | 2009-02-20 21:16:26 +0000 | [diff] [blame] | 63 | //===----------------------------------------------------------------------===// |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 64 | // ObjCInterfaceDecl |
| Chris Lattner | 8d8829e | 2008-03-16 00:49:28 +0000 | [diff] [blame] | 65 | //===----------------------------------------------------------------------===// |
| 66 | |
| Erich Keane | 9b18eca | 2018-08-01 21:31:08 +0000 | [diff] [blame] | 67 | ObjCContainerDecl::ObjCContainerDecl(Kind DK, DeclContext *DC, |
| 68 | IdentifierInfo *Id, SourceLocation nameLoc, |
| 69 | SourceLocation atStartLoc) |
| 70 | : NamedDecl(DK, DC, nameLoc, Id), DeclContext(DK) { |
| 71 | setAtStartLoc(atStartLoc); |
| 72 | } |
| 73 | |
| Eugene Zelenko | 2f8e66b | 2017-11-22 21:32:07 +0000 | [diff] [blame] | 74 | void ObjCContainerDecl::anchor() {} |
| David Blaikie | 68e081d | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 75 | |
| Fariborz Jahanian | 6845383 | 2009-06-05 18:16:35 +0000 | [diff] [blame] | 76 | /// getIvarDecl - This method looks up an ivar in this ContextDecl. |
| 77 | /// |
| 78 | ObjCIvarDecl * |
| Argyrios Kyrtzidis | cfbfe78 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 79 | ObjCContainerDecl::getIvarDecl(IdentifierInfo *Id) const { |
| Richard Smith | cf4bdde | 2015-02-21 02:45:19 +0000 | [diff] [blame] | 80 | lookup_result R = lookup(Id); |
| 81 | for (lookup_iterator Ivar = R.begin(), IvarEnd = R.end(); |
| David Blaikie | ff7d47a | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 82 | Ivar != IvarEnd; ++Ivar) { |
| Eugene Zelenko | 2a1ba94 | 2018-04-09 22:14:10 +0000 | [diff] [blame] | 83 | if (auto *ivar = dyn_cast<ObjCIvarDecl>(*Ivar)) |
| Fariborz Jahanian | 6845383 | 2009-06-05 18:16:35 +0000 | [diff] [blame] | 84 | return ivar; |
| 85 | } |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 86 | return nullptr; |
| Fariborz Jahanian | 6845383 | 2009-06-05 18:16:35 +0000 | [diff] [blame] | 87 | } |
| 88 | |
| Argyrios Kyrtzidis | 6de0560 | 2009-07-25 22:15:22 +0000 | [diff] [blame] | 89 | // Get the local instance/class method declared in this interface. |
| Douglas Gregor | bcced4e | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 90 | ObjCMethodDecl * |
| Argyrios Kyrtzidis | bd8cd3e | 2013-03-29 21:51:48 +0000 | [diff] [blame] | 91 | ObjCContainerDecl::getMethod(Selector Sel, bool isInstance, |
| 92 | bool AllowHidden) const { |
| Douglas Gregor | eed4979 | 2013-01-17 00:38:46 +0000 | [diff] [blame] | 93 | // If this context is a hidden protocol definition, don't find any |
| 94 | // methods there. |
| Eugene Zelenko | 2a1ba94 | 2018-04-09 22:14:10 +0000 | [diff] [blame] | 95 | if (const auto *Proto = dyn_cast<ObjCProtocolDecl>(this)) { |
| Douglas Gregor | eed4979 | 2013-01-17 00:38:46 +0000 | [diff] [blame] | 96 | if (const ObjCProtocolDecl *Def = Proto->getDefinition()) |
| Argyrios Kyrtzidis | bd8cd3e | 2013-03-29 21:51:48 +0000 | [diff] [blame] | 97 | if (Def->isHidden() && !AllowHidden) |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 98 | return nullptr; |
| Douglas Gregor | eed4979 | 2013-01-17 00:38:46 +0000 | [diff] [blame] | 99 | } |
| 100 | |
| Steve Naroff | c4173fa | 2009-02-22 19:35:57 +0000 | [diff] [blame] | 101 | // Since instance & class methods can have the same name, the loop below |
| 102 | // ensures we get the correct method. |
| 103 | // |
| 104 | // @interface Whatever |
| 105 | // - (int) class_method; |
| 106 | // + (float) class_method; |
| 107 | // @end |
| Richard Smith | cf4bdde | 2015-02-21 02:45:19 +0000 | [diff] [blame] | 108 | lookup_result R = lookup(Sel); |
| 109 | for (lookup_iterator Meth = R.begin(), MethEnd = R.end(); |
| David Blaikie | ff7d47a | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 110 | Meth != MethEnd; ++Meth) { |
| Eugene Zelenko | 2a1ba94 | 2018-04-09 22:14:10 +0000 | [diff] [blame] | 111 | auto *MD = dyn_cast<ObjCMethodDecl>(*Meth); |
| Argyrios Kyrtzidis | 6de0560 | 2009-07-25 22:15:22 +0000 | [diff] [blame] | 112 | if (MD && MD->isInstanceMethod() == isInstance) |
| Steve Naroff | c4173fa | 2009-02-22 19:35:57 +0000 | [diff] [blame] | 113 | return MD; |
| 114 | } |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 115 | return nullptr; |
| Steve Naroff | 35c62ae | 2009-01-08 17:28:14 +0000 | [diff] [blame] | 116 | } |
| 117 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 118 | /// This routine returns 'true' if a user declared setter method was |
| Nico Weber | 4701ffd | 2014-12-22 05:21:03 +0000 | [diff] [blame] | 119 | /// found in the class, its protocols, its super classes or categories. |
| 120 | /// It also returns 'true' if one of its categories has declared a 'readwrite' |
| 121 | /// property. This is because, user must provide a setter method for the |
| 122 | /// category's 'readwrite' property. |
| 123 | bool ObjCContainerDecl::HasUserDeclaredSetterMethod( |
| 124 | const ObjCPropertyDecl *Property) const { |
| Fariborz Jahanian | 1446b34 | 2013-03-21 20:50:53 +0000 | [diff] [blame] | 125 | Selector Sel = Property->getSetterName(); |
| Richard Smith | cf4bdde | 2015-02-21 02:45:19 +0000 | [diff] [blame] | 126 | lookup_result R = lookup(Sel); |
| 127 | for (lookup_iterator Meth = R.begin(), MethEnd = R.end(); |
| Fariborz Jahanian | 1446b34 | 2013-03-21 20:50:53 +0000 | [diff] [blame] | 128 | Meth != MethEnd; ++Meth) { |
| Eugene Zelenko | 2a1ba94 | 2018-04-09 22:14:10 +0000 | [diff] [blame] | 129 | auto *MD = dyn_cast<ObjCMethodDecl>(*Meth); |
| Fariborz Jahanian | 1446b34 | 2013-03-21 20:50:53 +0000 | [diff] [blame] | 130 | if (MD && MD->isInstanceMethod() && !MD->isImplicit()) |
| 131 | return true; |
| 132 | } |
| 133 | |
| Eugene Zelenko | 2a1ba94 | 2018-04-09 22:14:10 +0000 | [diff] [blame] | 134 | if (const auto *ID = dyn_cast<ObjCInterfaceDecl>(this)) { |
| Fariborz Jahanian | 1446b34 | 2013-03-21 20:50:53 +0000 | [diff] [blame] | 135 | // Also look into categories, including class extensions, looking |
| 136 | // for a user declared instance method. |
| Aaron Ballman | 3fe486a | 2014-03-13 21:23:55 +0000 | [diff] [blame] | 137 | for (const auto *Cat : ID->visible_categories()) { |
| Fariborz Jahanian | 1446b34 | 2013-03-21 20:50:53 +0000 | [diff] [blame] | 138 | if (ObjCMethodDecl *MD = Cat->getInstanceMethod(Sel)) |
| 139 | if (!MD->isImplicit()) |
| 140 | return true; |
| 141 | if (Cat->IsClassExtension()) |
| 142 | continue; |
| Nico Weber | 4701ffd | 2014-12-22 05:21:03 +0000 | [diff] [blame] | 143 | // Also search through the categories looking for a 'readwrite' |
| 144 | // declaration of this property. If one found, presumably a setter will |
| 145 | // be provided (properties declared in categories will not get |
| 146 | // auto-synthesized). |
| Manman Ren | efe1bac | 2016-01-27 20:00:32 +0000 | [diff] [blame] | 147 | for (const auto *P : Cat->properties()) |
| Fariborz Jahanian | 1446b34 | 2013-03-21 20:50:53 +0000 | [diff] [blame] | 148 | if (P->getIdentifier() == Property->getIdentifier()) { |
| 149 | if (P->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_readwrite) |
| 150 | return true; |
| 151 | break; |
| 152 | } |
| 153 | } |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 154 | |
| Fariborz Jahanian | 1446b34 | 2013-03-21 20:50:53 +0000 | [diff] [blame] | 155 | // Also look into protocols, for a user declared instance method. |
| Aaron Ballman | a9f49e3 | 2014-03-13 20:55:22 +0000 | [diff] [blame] | 156 | for (const auto *Proto : ID->all_referenced_protocols()) |
| Fariborz Jahanian | 1446b34 | 2013-03-21 20:50:53 +0000 | [diff] [blame] | 157 | if (Proto->HasUserDeclaredSetterMethod(Property)) |
| 158 | return true; |
| Aaron Ballman | a9f49e3 | 2014-03-13 20:55:22 +0000 | [diff] [blame] | 159 | |
| Fariborz Jahanian | 1446b34 | 2013-03-21 20:50:53 +0000 | [diff] [blame] | 160 | // And in its super class. |
| 161 | ObjCInterfaceDecl *OSC = ID->getSuperClass(); |
| 162 | while (OSC) { |
| 163 | if (OSC->HasUserDeclaredSetterMethod(Property)) |
| 164 | return true; |
| 165 | OSC = OSC->getSuperClass(); |
| 166 | } |
| 167 | } |
| Eugene Zelenko | 2a1ba94 | 2018-04-09 22:14:10 +0000 | [diff] [blame] | 168 | if (const auto *PD = dyn_cast<ObjCProtocolDecl>(this)) |
| Aaron Ballman | 0f6e64d | 2014-03-13 22:58:06 +0000 | [diff] [blame] | 169 | for (const auto *PI : PD->protocols()) |
| 170 | if (PI->HasUserDeclaredSetterMethod(Property)) |
| Fariborz Jahanian | 1446b34 | 2013-03-21 20:50:53 +0000 | [diff] [blame] | 171 | return true; |
| Fariborz Jahanian | 1446b34 | 2013-03-21 20:50:53 +0000 | [diff] [blame] | 172 | return false; |
| 173 | } |
| 174 | |
| Ted Kremenek | 4fb821e | 2010-03-15 20:11:46 +0000 | [diff] [blame] | 175 | ObjCPropertyDecl * |
| Ted Kremenek | ddcd109 | 2010-03-15 20:11:53 +0000 | [diff] [blame] | 176 | ObjCPropertyDecl::findPropertyDecl(const DeclContext *DC, |
| Manman Ren | 5b78640 | 2016-01-28 18:49:28 +0000 | [diff] [blame] | 177 | const IdentifierInfo *propertyID, |
| 178 | ObjCPropertyQueryKind queryKind) { |
| Douglas Gregor | eed4979 | 2013-01-17 00:38:46 +0000 | [diff] [blame] | 179 | // If this context is a hidden protocol definition, don't find any |
| 180 | // property. |
| Eugene Zelenko | 2a1ba94 | 2018-04-09 22:14:10 +0000 | [diff] [blame] | 181 | if (const auto *Proto = dyn_cast<ObjCProtocolDecl>(DC)) { |
| Douglas Gregor | eed4979 | 2013-01-17 00:38:46 +0000 | [diff] [blame] | 182 | if (const ObjCProtocolDecl *Def = Proto->getDefinition()) |
| 183 | if (Def->isHidden()) |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 184 | return nullptr; |
| Douglas Gregor | eed4979 | 2013-01-17 00:38:46 +0000 | [diff] [blame] | 185 | } |
| Ted Kremenek | 4fb821e | 2010-03-15 20:11:46 +0000 | [diff] [blame] | 186 | |
| Alex Lorenz | f9a28a2 | 2017-02-22 23:18:49 +0000 | [diff] [blame] | 187 | // If context is class, then lookup property in its visible extensions. |
| Douglas Gregor | acf4fd3 | 2015-11-03 01:15:46 +0000 | [diff] [blame] | 188 | // This comes before property is looked up in primary class. |
| 189 | if (auto *IDecl = dyn_cast<ObjCInterfaceDecl>(DC)) { |
| Alex Lorenz | f9a28a2 | 2017-02-22 23:18:49 +0000 | [diff] [blame] | 190 | for (const auto *Ext : IDecl->visible_extensions()) |
| Douglas Gregor | acf4fd3 | 2015-11-03 01:15:46 +0000 | [diff] [blame] | 191 | if (ObjCPropertyDecl *PD = ObjCPropertyDecl::findPropertyDecl(Ext, |
| Manman Ren | 5b78640 | 2016-01-28 18:49:28 +0000 | [diff] [blame] | 192 | propertyID, |
| 193 | queryKind)) |
| Douglas Gregor | acf4fd3 | 2015-11-03 01:15:46 +0000 | [diff] [blame] | 194 | return PD; |
| 195 | } |
| 196 | |
| Richard Smith | cf4bdde | 2015-02-21 02:45:19 +0000 | [diff] [blame] | 197 | DeclContext::lookup_result R = DC->lookup(propertyID); |
| Manman Ren | 5b78640 | 2016-01-28 18:49:28 +0000 | [diff] [blame] | 198 | ObjCPropertyDecl *classProp = nullptr; |
| Richard Smith | cf4bdde | 2015-02-21 02:45:19 +0000 | [diff] [blame] | 199 | for (DeclContext::lookup_iterator I = R.begin(), E = R.end(); I != E; |
| David Blaikie | ff7d47a | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 200 | ++I) |
| Eugene Zelenko | 2a1ba94 | 2018-04-09 22:14:10 +0000 | [diff] [blame] | 201 | if (auto *PD = dyn_cast<ObjCPropertyDecl>(*I)) { |
| Manman Ren | 5b78640 | 2016-01-28 18:49:28 +0000 | [diff] [blame] | 202 | // If queryKind is unknown, we return the instance property if one |
| 203 | // exists; otherwise we return the class property. |
| 204 | if ((queryKind == ObjCPropertyQueryKind::OBJC_PR_query_unknown && |
| 205 | !PD->isClassProperty()) || |
| 206 | (queryKind == ObjCPropertyQueryKind::OBJC_PR_query_class && |
| 207 | PD->isClassProperty()) || |
| 208 | (queryKind == ObjCPropertyQueryKind::OBJC_PR_query_instance && |
| 209 | !PD->isClassProperty())) |
| 210 | return PD; |
| 211 | |
| 212 | if (PD->isClassProperty()) |
| 213 | classProp = PD; |
| 214 | } |
| 215 | |
| 216 | if (queryKind == ObjCPropertyQueryKind::OBJC_PR_query_unknown) |
| 217 | // We can't find the instance property, return the class property. |
| 218 | return classProp; |
| Ted Kremenek | 4fb821e | 2010-03-15 20:11:46 +0000 | [diff] [blame] | 219 | |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 220 | return nullptr; |
| Ted Kremenek | 4fb821e | 2010-03-15 20:11:46 +0000 | [diff] [blame] | 221 | } |
| 222 | |
| Anna Zaks | 454477c | 2012-09-27 19:45:11 +0000 | [diff] [blame] | 223 | IdentifierInfo * |
| 224 | ObjCPropertyDecl::getDefaultSynthIvarName(ASTContext &Ctx) const { |
| 225 | SmallString<128> ivarName; |
| 226 | { |
| 227 | llvm::raw_svector_ostream os(ivarName); |
| 228 | os << '_' << getIdentifier()->getName(); |
| 229 | } |
| 230 | return &Ctx.Idents.get(ivarName.str()); |
| 231 | } |
| 232 | |
| Fariborz Jahanian | a054e99 | 2008-04-21 19:04:53 +0000 | [diff] [blame] | 233 | /// FindPropertyDeclaration - Finds declaration of the property given its name |
| 234 | /// in 'PropertyId' and returns it. It returns 0, if not found. |
| Jordan Rose | 210bfe9 | 2014-11-19 22:03:46 +0000 | [diff] [blame] | 235 | ObjCPropertyDecl *ObjCContainerDecl::FindPropertyDeclaration( |
| Manman Ren | 5b78640 | 2016-01-28 18:49:28 +0000 | [diff] [blame] | 236 | const IdentifierInfo *PropertyId, |
| 237 | ObjCPropertyQueryKind QueryKind) const { |
| Douglas Gregor | eed4979 | 2013-01-17 00:38:46 +0000 | [diff] [blame] | 238 | // Don't find properties within hidden protocol definitions. |
| Eugene Zelenko | 2a1ba94 | 2018-04-09 22:14:10 +0000 | [diff] [blame] | 239 | if (const auto *Proto = dyn_cast<ObjCProtocolDecl>(this)) { |
| Douglas Gregor | eed4979 | 2013-01-17 00:38:46 +0000 | [diff] [blame] | 240 | if (const ObjCProtocolDecl *Def = Proto->getDefinition()) |
| 241 | if (Def->isHidden()) |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 242 | return nullptr; |
| Douglas Gregor | eed4979 | 2013-01-17 00:38:46 +0000 | [diff] [blame] | 243 | } |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 244 | |
| Douglas Gregor | acf4fd3 | 2015-11-03 01:15:46 +0000 | [diff] [blame] | 245 | // Search the extensions of a class first; they override what's in |
| 246 | // the class itself. |
| 247 | if (const auto *ClassDecl = dyn_cast<ObjCInterfaceDecl>(this)) { |
| 248 | for (const auto *Ext : ClassDecl->visible_extensions()) { |
| Manman Ren | 5b78640 | 2016-01-28 18:49:28 +0000 | [diff] [blame] | 249 | if (auto *P = Ext->FindPropertyDeclaration(PropertyId, QueryKind)) |
| Douglas Gregor | acf4fd3 | 2015-11-03 01:15:46 +0000 | [diff] [blame] | 250 | return P; |
| 251 | } |
| 252 | } |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 253 | |
| Ted Kremenek | ddcd109 | 2010-03-15 20:11:53 +0000 | [diff] [blame] | 254 | if (ObjCPropertyDecl *PD = |
| Manman Ren | 5b78640 | 2016-01-28 18:49:28 +0000 | [diff] [blame] | 255 | ObjCPropertyDecl::findPropertyDecl(cast<DeclContext>(this), PropertyId, |
| 256 | QueryKind)) |
| Ted Kremenek | ddcd109 | 2010-03-15 20:11:53 +0000 | [diff] [blame] | 257 | return PD; |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 258 | |
| Ted Kremenek | ddcd109 | 2010-03-15 20:11:53 +0000 | [diff] [blame] | 259 | switch (getKind()) { |
| 260 | default: |
| 261 | break; |
| 262 | case Decl::ObjCProtocol: { |
| Eugene Zelenko | 2a1ba94 | 2018-04-09 22:14:10 +0000 | [diff] [blame] | 263 | const auto *PID = cast<ObjCProtocolDecl>(this); |
| Aaron Ballman | 0f6e64d | 2014-03-13 22:58:06 +0000 | [diff] [blame] | 264 | for (const auto *I : PID->protocols()) |
| Manman Ren | 5b78640 | 2016-01-28 18:49:28 +0000 | [diff] [blame] | 265 | if (ObjCPropertyDecl *P = I->FindPropertyDeclaration(PropertyId, |
| 266 | QueryKind)) |
| Fariborz Jahanian | 30a4292 | 2010-02-15 21:55:26 +0000 | [diff] [blame] | 267 | return P; |
| Ted Kremenek | ddcd109 | 2010-03-15 20:11:53 +0000 | [diff] [blame] | 268 | break; |
| 269 | } |
| 270 | case Decl::ObjCInterface: { |
| Eugene Zelenko | 2a1ba94 | 2018-04-09 22:14:10 +0000 | [diff] [blame] | 271 | const auto *OID = cast<ObjCInterfaceDecl>(this); |
| Douglas Gregor | acf4fd3 | 2015-11-03 01:15:46 +0000 | [diff] [blame] | 272 | // Look through categories (but not extensions; they were handled above). |
| Aaron Ballman | 3fe486a | 2014-03-13 21:23:55 +0000 | [diff] [blame] | 273 | for (const auto *Cat : OID->visible_categories()) { |
| Ted Kremenek | ddcd109 | 2010-03-15 20:11:53 +0000 | [diff] [blame] | 274 | if (!Cat->IsClassExtension()) |
| Manman Ren | 5b78640 | 2016-01-28 18:49:28 +0000 | [diff] [blame] | 275 | if (ObjCPropertyDecl *P = Cat->FindPropertyDeclaration( |
| 276 | PropertyId, QueryKind)) |
| Ted Kremenek | ddcd109 | 2010-03-15 20:11:53 +0000 | [diff] [blame] | 277 | return P; |
| Douglas Gregor | 048fbfa | 2013-01-16 23:00:23 +0000 | [diff] [blame] | 278 | } |
| Ted Kremenek | ddcd109 | 2010-03-15 20:11:53 +0000 | [diff] [blame] | 279 | |
| 280 | // Look through protocols. |
| Aaron Ballman | a9f49e3 | 2014-03-13 20:55:22 +0000 | [diff] [blame] | 281 | for (const auto *I : OID->all_referenced_protocols()) |
| Manman Ren | 5b78640 | 2016-01-28 18:49:28 +0000 | [diff] [blame] | 282 | if (ObjCPropertyDecl *P = I->FindPropertyDeclaration(PropertyId, |
| 283 | QueryKind)) |
| Ted Kremenek | ddcd109 | 2010-03-15 20:11:53 +0000 | [diff] [blame] | 284 | return P; |
| 285 | |
| 286 | // Finally, check the super class. |
| 287 | if (const ObjCInterfaceDecl *superClass = OID->getSuperClass()) |
| Manman Ren | 5b78640 | 2016-01-28 18:49:28 +0000 | [diff] [blame] | 288 | return superClass->FindPropertyDeclaration(PropertyId, QueryKind); |
| Ted Kremenek | ddcd109 | 2010-03-15 20:11:53 +0000 | [diff] [blame] | 289 | break; |
| 290 | } |
| 291 | case Decl::ObjCCategory: { |
| Eugene Zelenko | 2a1ba94 | 2018-04-09 22:14:10 +0000 | [diff] [blame] | 292 | const auto *OCD = cast<ObjCCategoryDecl>(this); |
| Ted Kremenek | ddcd109 | 2010-03-15 20:11:53 +0000 | [diff] [blame] | 293 | // Look through protocols. |
| 294 | if (!OCD->IsClassExtension()) |
| Aaron Ballman | 19a4176 | 2014-03-14 12:55:57 +0000 | [diff] [blame] | 295 | for (const auto *I : OCD->protocols()) |
| Manman Ren | 5b78640 | 2016-01-28 18:49:28 +0000 | [diff] [blame] | 296 | if (ObjCPropertyDecl *P = I->FindPropertyDeclaration(PropertyId, |
| 297 | QueryKind)) |
| Aaron Ballman | 19a4176 | 2014-03-14 12:55:57 +0000 | [diff] [blame] | 298 | return P; |
| Ted Kremenek | ddcd109 | 2010-03-15 20:11:53 +0000 | [diff] [blame] | 299 | break; |
| Fariborz Jahanian | dab0484 | 2009-01-19 18:16:19 +0000 | [diff] [blame] | 300 | } |
| 301 | } |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 302 | return nullptr; |
| Steve Naroff | f9c6524 | 2008-06-05 13:55:23 +0000 | [diff] [blame] | 303 | } |
| 304 | |
| Eugene Zelenko | 2f8e66b | 2017-11-22 21:32:07 +0000 | [diff] [blame] | 305 | void ObjCInterfaceDecl::anchor() {} |
| David Blaikie | 68e081d | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 306 | |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 307 | ObjCTypeParamList *ObjCInterfaceDecl::getTypeParamList() const { |
| 308 | // If this particular declaration has a type parameter list, return it. |
| 309 | if (ObjCTypeParamList *written = getTypeParamListAsWritten()) |
| 310 | return written; |
| 311 | |
| 312 | // If there is a definition, return its type parameter list. |
| 313 | if (const ObjCInterfaceDecl *def = getDefinition()) |
| 314 | return def->getTypeParamListAsWritten(); |
| 315 | |
| 316 | // Otherwise, look at previous declarations to determine whether any |
| 317 | // of them has a type parameter list, skipping over those |
| 318 | // declarations that do not. |
| Eugene Zelenko | 2a1ba94 | 2018-04-09 22:14:10 +0000 | [diff] [blame] | 319 | for (const ObjCInterfaceDecl *decl = getMostRecentDecl(); decl; |
| 320 | decl = decl->getPreviousDecl()) { |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 321 | if (ObjCTypeParamList *written = decl->getTypeParamListAsWritten()) |
| 322 | return written; |
| 323 | } |
| 324 | |
| 325 | return nullptr; |
| 326 | } |
| 327 | |
| Douglas Gregor | ab7f0b3 | 2015-07-07 06:20:12 +0000 | [diff] [blame] | 328 | void ObjCInterfaceDecl::setTypeParamList(ObjCTypeParamList *TPL) { |
| 329 | TypeParamList = TPL; |
| 330 | if (!TPL) |
| 331 | return; |
| 332 | // Set the declaration context of each of the type parameters. |
| Eugene Zelenko | 2a1ba94 | 2018-04-09 22:14:10 +0000 | [diff] [blame] | 333 | for (auto *typeParam : *TypeParamList) |
| Douglas Gregor | ab7f0b3 | 2015-07-07 06:20:12 +0000 | [diff] [blame] | 334 | typeParam->setDeclContext(this); |
| 335 | } |
| 336 | |
| Douglas Gregor | e9d95f1 | 2015-07-07 03:57:35 +0000 | [diff] [blame] | 337 | ObjCInterfaceDecl *ObjCInterfaceDecl::getSuperClass() const { |
| 338 | // FIXME: Should make sure no callers ever do this. |
| 339 | if (!hasDefinition()) |
| 340 | return nullptr; |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 341 | |
| Douglas Gregor | e9d95f1 | 2015-07-07 03:57:35 +0000 | [diff] [blame] | 342 | if (data().ExternallyCompleted) |
| 343 | LoadExternalDefinition(); |
| 344 | |
| 345 | if (const ObjCObjectType *superType = getSuperClassType()) { |
| 346 | if (ObjCInterfaceDecl *superDecl = superType->getInterface()) { |
| 347 | if (ObjCInterfaceDecl *superDef = superDecl->getDefinition()) |
| 348 | return superDef; |
| 349 | |
| 350 | return superDecl; |
| 351 | } |
| 352 | } |
| 353 | |
| 354 | return nullptr; |
| 355 | } |
| 356 | |
| 357 | SourceLocation ObjCInterfaceDecl::getSuperClassLoc() const { |
| 358 | if (TypeSourceInfo *superTInfo = getSuperClassTInfo()) |
| Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 359 | return superTInfo->getTypeLoc().getBeginLoc(); |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 360 | |
| Douglas Gregor | e9d95f1 | 2015-07-07 03:57:35 +0000 | [diff] [blame] | 361 | return SourceLocation(); |
| 362 | } |
| 363 | |
| Fariborz Jahanian | de8db16 | 2009-11-02 22:45:15 +0000 | [diff] [blame] | 364 | /// FindPropertyVisibleInPrimaryClass - Finds declaration of the property |
| 365 | /// with name 'PropertyId' in the primary class; including those in protocols |
| Ted Kremenek | d133a86 | 2010-03-15 20:30:07 +0000 | [diff] [blame] | 366 | /// (direct or indirect) used by the primary class. |
| Fariborz Jahanian | de8db16 | 2009-11-02 22:45:15 +0000 | [diff] [blame] | 367 | ObjCPropertyDecl * |
| Ted Kremenek | d133a86 | 2010-03-15 20:30:07 +0000 | [diff] [blame] | 368 | ObjCInterfaceDecl::FindPropertyVisibleInPrimaryClass( |
| Manman Ren | 5b78640 | 2016-01-28 18:49:28 +0000 | [diff] [blame] | 369 | IdentifierInfo *PropertyId, |
| 370 | ObjCPropertyQueryKind QueryKind) const { |
| Douglas Gregor | c0ac7d6 | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 371 | // FIXME: Should make sure no callers ever do this. |
| 372 | if (!hasDefinition()) |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 373 | return nullptr; |
| 374 | |
| Douglas Gregor | c0ac7d6 | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 375 | if (data().ExternallyCompleted) |
| Douglas Gregor | 7369302 | 2010-12-01 23:49:52 +0000 | [diff] [blame] | 376 | LoadExternalDefinition(); |
| 377 | |
| Ted Kremenek | d133a86 | 2010-03-15 20:30:07 +0000 | [diff] [blame] | 378 | if (ObjCPropertyDecl *PD = |
| Manman Ren | 5b78640 | 2016-01-28 18:49:28 +0000 | [diff] [blame] | 379 | ObjCPropertyDecl::findPropertyDecl(cast<DeclContext>(this), PropertyId, |
| 380 | QueryKind)) |
| Ted Kremenek | d133a86 | 2010-03-15 20:30:07 +0000 | [diff] [blame] | 381 | return PD; |
| 382 | |
| Fariborz Jahanian | de8db16 | 2009-11-02 22:45:15 +0000 | [diff] [blame] | 383 | // Look through protocols. |
| Aaron Ballman | a9f49e3 | 2014-03-13 20:55:22 +0000 | [diff] [blame] | 384 | for (const auto *I : all_referenced_protocols()) |
| Manman Ren | 5b78640 | 2016-01-28 18:49:28 +0000 | [diff] [blame] | 385 | if (ObjCPropertyDecl *P = I->FindPropertyDeclaration(PropertyId, |
| 386 | QueryKind)) |
| Fariborz Jahanian | de8db16 | 2009-11-02 22:45:15 +0000 | [diff] [blame] | 387 | return P; |
| Ted Kremenek | d133a86 | 2010-03-15 20:30:07 +0000 | [diff] [blame] | 388 | |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 389 | return nullptr; |
| Fariborz Jahanian | de8db16 | 2009-11-02 22:45:15 +0000 | [diff] [blame] | 390 | } |
| 391 | |
| Fariborz Jahanian | aedaaa4 | 2013-02-14 22:33:34 +0000 | [diff] [blame] | 392 | void ObjCInterfaceDecl::collectPropertiesToImplement(PropertyMap &PM, |
| 393 | PropertyDeclOrder &PO) const { |
| Manman Ren | 494ee5b | 2016-01-28 23:36:05 +0000 | [diff] [blame] | 394 | for (auto *Prop : properties()) { |
| 395 | PM[std::make_pair(Prop->getIdentifier(), Prop->isClassProperty())] = Prop; |
| Fariborz Jahanian | aedaaa4 | 2013-02-14 22:33:34 +0000 | [diff] [blame] | 396 | PO.push_back(Prop); |
| Anna Zaks | 673d76b | 2012-10-18 19:17:53 +0000 | [diff] [blame] | 397 | } |
| Douglas Gregor | acf4fd3 | 2015-11-03 01:15:46 +0000 | [diff] [blame] | 398 | for (const auto *Ext : known_extensions()) { |
| 399 | const ObjCCategoryDecl *ClassExt = Ext; |
| Manman Ren | 494ee5b | 2016-01-28 23:36:05 +0000 | [diff] [blame] | 400 | for (auto *Prop : ClassExt->properties()) { |
| 401 | PM[std::make_pair(Prop->getIdentifier(), Prop->isClassProperty())] = Prop; |
| Douglas Gregor | acf4fd3 | 2015-11-03 01:15:46 +0000 | [diff] [blame] | 402 | PO.push_back(Prop); |
| 403 | } |
| 404 | } |
| Aaron Ballman | a9f49e3 | 2014-03-13 20:55:22 +0000 | [diff] [blame] | 405 | for (const auto *PI : all_referenced_protocols()) |
| 406 | PI->collectPropertiesToImplement(PM, PO); |
| Anna Zaks | 408f7d0 | 2012-10-31 01:18:22 +0000 | [diff] [blame] | 407 | // Note, the properties declared only in class extensions are still copied |
| 408 | // into the main @interface's property list, and therefore we don't |
| 409 | // explicitly, have to search class extension properties. |
| Anna Zaks | 673d76b | 2012-10-18 19:17:53 +0000 | [diff] [blame] | 410 | } |
| 411 | |
| Benjamin Kramer | ea70eb3 | 2012-12-01 15:09:41 +0000 | [diff] [blame] | 412 | bool ObjCInterfaceDecl::isArcWeakrefUnavailable() const { |
| 413 | const ObjCInterfaceDecl *Class = this; |
| 414 | while (Class) { |
| 415 | if (Class->hasAttr<ArcWeakrefUnavailableAttr>()) |
| 416 | return true; |
| 417 | Class = Class->getSuperClass(); |
| 418 | } |
| 419 | return false; |
| 420 | } |
| 421 | |
| 422 | const ObjCInterfaceDecl *ObjCInterfaceDecl::isObjCRequiresPropertyDefs() const { |
| 423 | const ObjCInterfaceDecl *Class = this; |
| 424 | while (Class) { |
| 425 | if (Class->hasAttr<ObjCRequiresPropertyDefsAttr>()) |
| 426 | return Class; |
| 427 | Class = Class->getSuperClass(); |
| 428 | } |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 429 | return nullptr; |
| Benjamin Kramer | ea70eb3 | 2012-12-01 15:09:41 +0000 | [diff] [blame] | 430 | } |
| 431 | |
| Fariborz Jahanian | 092cd6e | 2009-10-05 20:41:32 +0000 | [diff] [blame] | 432 | void ObjCInterfaceDecl::mergeClassExtensionProtocolList( |
| 433 | ObjCProtocolDecl *const* ExtList, unsigned ExtNum, |
| Eugene Zelenko | 2f8e66b | 2017-11-22 21:32:07 +0000 | [diff] [blame] | 434 | ASTContext &C) { |
| Douglas Gregor | c0ac7d6 | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 435 | if (data().ExternallyCompleted) |
| Douglas Gregor | 7369302 | 2010-12-01 23:49:52 +0000 | [diff] [blame] | 436 | LoadExternalDefinition(); |
| 437 | |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 438 | if (data().AllReferencedProtocols.empty() && |
| Douglas Gregor | c0ac7d6 | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 439 | data().ReferencedProtocols.empty()) { |
| 440 | data().AllReferencedProtocols.set(ExtList, ExtNum, C); |
| Fariborz Jahanian | 092cd6e | 2009-10-05 20:41:32 +0000 | [diff] [blame] | 441 | return; |
| 442 | } |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 443 | |
| Fariborz Jahanian | 092cd6e | 2009-10-05 20:41:32 +0000 | [diff] [blame] | 444 | // Check for duplicate protocol in class's protocol list. |
| Ted Kremenek | 0ef508d | 2010-09-01 01:21:15 +0000 | [diff] [blame] | 445 | // This is O(n*m). But it is extremely rare and number of protocols in |
| Fariborz Jahanian | 092cd6e | 2009-10-05 20:41:32 +0000 | [diff] [blame] | 446 | // class or its extension are very few. |
| Eugene Zelenko | 2a1ba94 | 2018-04-09 22:14:10 +0000 | [diff] [blame] | 447 | SmallVector<ObjCProtocolDecl *, 8> ProtocolRefs; |
| Fariborz Jahanian | 092cd6e | 2009-10-05 20:41:32 +0000 | [diff] [blame] | 448 | for (unsigned i = 0; i < ExtNum; i++) { |
| 449 | bool protocolExists = false; |
| 450 | ObjCProtocolDecl *ProtoInExtension = ExtList[i]; |
| Aaron Ballman | a9f49e3 | 2014-03-13 20:55:22 +0000 | [diff] [blame] | 451 | for (auto *Proto : all_referenced_protocols()) { |
| Fariborz Jahanian | 092cd6e | 2009-10-05 20:41:32 +0000 | [diff] [blame] | 452 | if (C.ProtocolCompatibleWithProtocol(ProtoInExtension, Proto)) { |
| 453 | protocolExists = true; |
| 454 | break; |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 455 | } |
| Fariborz Jahanian | 092cd6e | 2009-10-05 20:41:32 +0000 | [diff] [blame] | 456 | } |
| 457 | // Do we want to warn on a protocol in extension class which |
| 458 | // already exist in the class? Probably not. |
| Ted Kremenek | 0ef508d | 2010-09-01 01:21:15 +0000 | [diff] [blame] | 459 | if (!protocolExists) |
| Fariborz Jahanian | 092cd6e | 2009-10-05 20:41:32 +0000 | [diff] [blame] | 460 | ProtocolRefs.push_back(ProtoInExtension); |
| 461 | } |
| Ted Kremenek | 0ef508d | 2010-09-01 01:21:15 +0000 | [diff] [blame] | 462 | |
| Fariborz Jahanian | 092cd6e | 2009-10-05 20:41:32 +0000 | [diff] [blame] | 463 | if (ProtocolRefs.empty()) |
| 464 | return; |
| Ted Kremenek | 0ef508d | 2010-09-01 01:21:15 +0000 | [diff] [blame] | 465 | |
| Fariborz Jahanian | 8764c74 | 2009-10-05 21:32:49 +0000 | [diff] [blame] | 466 | // Merge ProtocolRefs into class's protocol list; |
| Benjamin Kramer | f989042 | 2015-02-17 16:48:30 +0000 | [diff] [blame] | 467 | ProtocolRefs.append(all_referenced_protocol_begin(), |
| 468 | all_referenced_protocol_end()); |
| Ted Kremenek | 0ef508d | 2010-09-01 01:21:15 +0000 | [diff] [blame] | 469 | |
| Douglas Gregor | c0ac7d6 | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 470 | data().AllReferencedProtocols.set(ProtocolRefs.data(), ProtocolRefs.size(),C); |
| Fariborz Jahanian | 092cd6e | 2009-10-05 20:41:32 +0000 | [diff] [blame] | 471 | } |
| 472 | |
| Argyrios Kyrtzidis | b9a405b | 2013-12-05 07:07:03 +0000 | [diff] [blame] | 473 | const ObjCInterfaceDecl * |
| 474 | ObjCInterfaceDecl::findInterfaceWithDesignatedInitializers() const { |
| 475 | const ObjCInterfaceDecl *IFace = this; |
| 476 | while (IFace) { |
| 477 | if (IFace->hasDesignatedInitializers()) |
| 478 | return IFace; |
| 479 | if (!IFace->inheritsDesignatedInitializers()) |
| 480 | break; |
| 481 | IFace = IFace->getSuperClass(); |
| 482 | } |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 483 | return nullptr; |
| Argyrios Kyrtzidis | b9a405b | 2013-12-05 07:07:03 +0000 | [diff] [blame] | 484 | } |
| 485 | |
| Argyrios Kyrtzidis | 6af9bc5 | 2014-03-28 22:45:38 +0000 | [diff] [blame] | 486 | static bool isIntroducingInitializers(const ObjCInterfaceDecl *D) { |
| 487 | for (const auto *MD : D->instance_methods()) { |
| 488 | if (MD->getMethodFamily() == OMF_init && !MD->isOverriding()) |
| 489 | return true; |
| 490 | } |
| 491 | for (const auto *Ext : D->visible_extensions()) { |
| 492 | for (const auto *MD : Ext->instance_methods()) { |
| 493 | if (MD->getMethodFamily() == OMF_init && !MD->isOverriding()) |
| 494 | return true; |
| 495 | } |
| 496 | } |
| Argyrios Kyrtzidis | 441f626 | 2014-04-16 18:32:42 +0000 | [diff] [blame] | 497 | if (const auto *ImplD = D->getImplementation()) { |
| Argyrios Kyrtzidis | c747960 | 2014-04-16 18:45:32 +0000 | [diff] [blame] | 498 | for (const auto *MD : ImplD->instance_methods()) { |
| 499 | if (MD->getMethodFamily() == OMF_init && !MD->isOverriding()) |
| 500 | return true; |
| 501 | } |
| Argyrios Kyrtzidis | 441f626 | 2014-04-16 18:32:42 +0000 | [diff] [blame] | 502 | } |
| Argyrios Kyrtzidis | 6af9bc5 | 2014-03-28 22:45:38 +0000 | [diff] [blame] | 503 | return false; |
| 504 | } |
| 505 | |
| Argyrios Kyrtzidis | b9a405b | 2013-12-05 07:07:03 +0000 | [diff] [blame] | 506 | bool ObjCInterfaceDecl::inheritsDesignatedInitializers() const { |
| 507 | switch (data().InheritedDesignatedInitializers) { |
| 508 | case DefinitionData::IDI_Inherited: |
| 509 | return true; |
| 510 | case DefinitionData::IDI_NotInherited: |
| 511 | return false; |
| Eugene Zelenko | 2f8e66b | 2017-11-22 21:32:07 +0000 | [diff] [blame] | 512 | case DefinitionData::IDI_Unknown: |
| Argyrios Kyrtzidis | b9a405b | 2013-12-05 07:07:03 +0000 | [diff] [blame] | 513 | // If the class introduced initializers we conservatively assume that we |
| 514 | // don't know if any of them is a designated initializer to avoid possible |
| 515 | // misleading warnings. |
| Argyrios Kyrtzidis | 6af9bc5 | 2014-03-28 22:45:38 +0000 | [diff] [blame] | 516 | if (isIntroducingInitializers(this)) { |
| Argyrios Kyrtzidis | b9a405b | 2013-12-05 07:07:03 +0000 | [diff] [blame] | 517 | data().InheritedDesignatedInitializers = DefinitionData::IDI_NotInherited; |
| Argyrios Kyrtzidis | b9a405b | 2013-12-05 07:07:03 +0000 | [diff] [blame] | 518 | } else { |
| Argyrios Kyrtzidis | 357b36a | 2014-04-26 21:28:41 +0000 | [diff] [blame] | 519 | if (auto SuperD = getSuperClass()) { |
| 520 | data().InheritedDesignatedInitializers = |
| 521 | SuperD->declaresOrInheritsDesignatedInitializers() ? |
| 522 | DefinitionData::IDI_Inherited : |
| 523 | DefinitionData::IDI_NotInherited; |
| 524 | } else { |
| 525 | data().InheritedDesignatedInitializers = |
| 526 | DefinitionData::IDI_NotInherited; |
| 527 | } |
| Argyrios Kyrtzidis | b9a405b | 2013-12-05 07:07:03 +0000 | [diff] [blame] | 528 | } |
| Argyrios Kyrtzidis | 357b36a | 2014-04-26 21:28:41 +0000 | [diff] [blame] | 529 | assert(data().InheritedDesignatedInitializers |
| 530 | != DefinitionData::IDI_Unknown); |
| 531 | return data().InheritedDesignatedInitializers == |
| 532 | DefinitionData::IDI_Inherited; |
| Argyrios Kyrtzidis | b9a405b | 2013-12-05 07:07:03 +0000 | [diff] [blame] | 533 | } |
| Argyrios Kyrtzidis | b9a405b | 2013-12-05 07:07:03 +0000 | [diff] [blame] | 534 | |
| 535 | llvm_unreachable("unexpected InheritedDesignatedInitializers value"); |
| 536 | } |
| 537 | |
| Argyrios Kyrtzidis | 9ed9e5f | 2013-12-03 21:11:30 +0000 | [diff] [blame] | 538 | void ObjCInterfaceDecl::getDesignatedInitializers( |
| 539 | llvm::SmallVectorImpl<const ObjCMethodDecl *> &Methods) const { |
| Fariborz Jahanian | 0c32531 | 2014-03-11 18:56:18 +0000 | [diff] [blame] | 540 | // Check for a complete definition and recover if not so. |
| 541 | if (!isThisDeclarationADefinition()) |
| 542 | return; |
| Argyrios Kyrtzidis | 9ed9e5f | 2013-12-03 21:11:30 +0000 | [diff] [blame] | 543 | if (data().ExternallyCompleted) |
| 544 | LoadExternalDefinition(); |
| 545 | |
| Argyrios Kyrtzidis | b9a405b | 2013-12-05 07:07:03 +0000 | [diff] [blame] | 546 | const ObjCInterfaceDecl *IFace= findInterfaceWithDesignatedInitializers(); |
| Argyrios Kyrtzidis | 9ed9e5f | 2013-12-03 21:11:30 +0000 | [diff] [blame] | 547 | if (!IFace) |
| 548 | return; |
| Argyrios Kyrtzidis | b9a405b | 2013-12-05 07:07:03 +0000 | [diff] [blame] | 549 | |
| Aaron Ballman | f26acce | 2014-03-13 19:50:17 +0000 | [diff] [blame] | 550 | for (const auto *MD : IFace->instance_methods()) |
| Argyrios Kyrtzidis | 22bfa2c | 2013-12-03 21:11:36 +0000 | [diff] [blame] | 551 | if (MD->isThisDeclarationADesignatedInitializer()) |
| Argyrios Kyrtzidis | 9ed9e5f | 2013-12-03 21:11:30 +0000 | [diff] [blame] | 552 | Methods.push_back(MD); |
| Argyrios Kyrtzidis | 6af9bc5 | 2014-03-28 22:45:38 +0000 | [diff] [blame] | 553 | for (const auto *Ext : IFace->visible_extensions()) { |
| 554 | for (const auto *MD : Ext->instance_methods()) |
| 555 | if (MD->isThisDeclarationADesignatedInitializer()) |
| 556 | Methods.push_back(MD); |
| 557 | } |
| Argyrios Kyrtzidis | 9ed9e5f | 2013-12-03 21:11:30 +0000 | [diff] [blame] | 558 | } |
| 559 | |
| Argyrios Kyrtzidis | 22bfa2c | 2013-12-03 21:11:36 +0000 | [diff] [blame] | 560 | bool ObjCInterfaceDecl::isDesignatedInitializer(Selector Sel, |
| 561 | const ObjCMethodDecl **InitMethod) const { |
| Bruno Cardoso Lopes | faaeae5 | 2017-04-26 05:06:20 +0000 | [diff] [blame] | 562 | bool HasCompleteDef = isThisDeclarationADefinition(); |
| 563 | // During deserialization the data record for the ObjCInterfaceDecl could |
| 564 | // be made invariant by reusing the canonical decl. Take this into account |
| 565 | // when checking for the complete definition. |
| 566 | if (!HasCompleteDef && getCanonicalDecl()->hasDefinition() && |
| 567 | getCanonicalDecl()->getDefinition() == getDefinition()) |
| 568 | HasCompleteDef = true; |
| 569 | |
| Fariborz Jahanian | 0c32531 | 2014-03-11 18:56:18 +0000 | [diff] [blame] | 570 | // Check for a complete definition and recover if not so. |
| Bruno Cardoso Lopes | faaeae5 | 2017-04-26 05:06:20 +0000 | [diff] [blame] | 571 | if (!HasCompleteDef) |
| Fariborz Jahanian | 0c32531 | 2014-03-11 18:56:18 +0000 | [diff] [blame] | 572 | return false; |
| Bruno Cardoso Lopes | faaeae5 | 2017-04-26 05:06:20 +0000 | [diff] [blame] | 573 | |
| Argyrios Kyrtzidis | 22bfa2c | 2013-12-03 21:11:36 +0000 | [diff] [blame] | 574 | if (data().ExternallyCompleted) |
| 575 | LoadExternalDefinition(); |
| 576 | |
| Argyrios Kyrtzidis | b9a405b | 2013-12-05 07:07:03 +0000 | [diff] [blame] | 577 | const ObjCInterfaceDecl *IFace= findInterfaceWithDesignatedInitializers(); |
| Argyrios Kyrtzidis | 22bfa2c | 2013-12-03 21:11:36 +0000 | [diff] [blame] | 578 | if (!IFace) |
| 579 | return false; |
| 580 | |
| Argyrios Kyrtzidis | 6af9bc5 | 2014-03-28 22:45:38 +0000 | [diff] [blame] | 581 | if (const ObjCMethodDecl *MD = IFace->getInstanceMethod(Sel)) { |
| Argyrios Kyrtzidis | 22bfa2c | 2013-12-03 21:11:36 +0000 | [diff] [blame] | 582 | if (MD->isThisDeclarationADesignatedInitializer()) { |
| 583 | if (InitMethod) |
| 584 | *InitMethod = MD; |
| 585 | return true; |
| 586 | } |
| 587 | } |
| Argyrios Kyrtzidis | 6af9bc5 | 2014-03-28 22:45:38 +0000 | [diff] [blame] | 588 | for (const auto *Ext : IFace->visible_extensions()) { |
| 589 | if (const ObjCMethodDecl *MD = Ext->getInstanceMethod(Sel)) { |
| 590 | if (MD->isThisDeclarationADesignatedInitializer()) { |
| 591 | if (InitMethod) |
| 592 | *InitMethod = MD; |
| 593 | return true; |
| 594 | } |
| 595 | } |
| 596 | } |
| Argyrios Kyrtzidis | 22bfa2c | 2013-12-03 21:11:36 +0000 | [diff] [blame] | 597 | return false; |
| 598 | } |
| 599 | |
| Douglas Gregor | c0ac7d6 | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 600 | void ObjCInterfaceDecl::allocateDefinitionData() { |
| 601 | assert(!hasDefinition() && "ObjC class already has a definition"); |
| Douglas Gregor | 7dab26b | 2013-02-09 01:35:03 +0000 | [diff] [blame] | 602 | Data.setPointer(new (getASTContext()) DefinitionData()); |
| 603 | Data.getPointer()->Definition = this; |
| Douglas Gregor | 7671e53 | 2011-12-16 16:34:57 +0000 | [diff] [blame] | 604 | |
| 605 | // Make the type point at the definition, now that we have one. |
| 606 | if (TypeForDecl) |
| 607 | cast<ObjCInterfaceType>(TypeForDecl)->Decl = this; |
| Douglas Gregor | ab1ec82e | 2011-12-16 03:12:41 +0000 | [diff] [blame] | 608 | } |
| 609 | |
| 610 | void ObjCInterfaceDecl::startDefinition() { |
| 611 | allocateDefinitionData(); |
| 612 | |
| Douglas Gregor | 66b310c | 2011-12-15 18:03:09 +0000 | [diff] [blame] | 613 | // Update all of the declarations with a pointer to the definition. |
| Eugene Zelenko | 2a1ba94 | 2018-04-09 22:14:10 +0000 | [diff] [blame] | 614 | for (auto *RD : redecls()) { |
| Aaron Ballman | 86c9390 | 2014-03-06 23:45:36 +0000 | [diff] [blame] | 615 | if (RD != this) |
| Douglas Gregor | a323c4c | 2011-12-15 18:17:27 +0000 | [diff] [blame] | 616 | RD->Data = Data; |
| Douglas Gregor | 66b310c | 2011-12-15 18:03:09 +0000 | [diff] [blame] | 617 | } |
| Argyrios Kyrtzidis | b97a402 | 2011-11-12 21:07:46 +0000 | [diff] [blame] | 618 | } |
| 619 | |
| Argyrios Kyrtzidis | cfbfe78 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 620 | ObjCIvarDecl *ObjCInterfaceDecl::lookupInstanceVariable(IdentifierInfo *ID, |
| 621 | ObjCInterfaceDecl *&clsDeclared) { |
| Douglas Gregor | c0ac7d6 | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 622 | // FIXME: Should make sure no callers ever do this. |
| 623 | if (!hasDefinition()) |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 624 | return nullptr; |
| Douglas Gregor | c0ac7d6 | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 625 | |
| 626 | if (data().ExternallyCompleted) |
| Argyrios Kyrtzidis | 4e8b136 | 2011-10-19 02:25:16 +0000 | [diff] [blame] | 627 | LoadExternalDefinition(); |
| 628 | |
| Chris Lattner | 8937519 | 2008-03-16 00:19:01 +0000 | [diff] [blame] | 629 | ObjCInterfaceDecl* ClassDecl = this; |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 630 | while (ClassDecl != nullptr) { |
| Argyrios Kyrtzidis | cfbfe78 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 631 | if (ObjCIvarDecl *I = ClassDecl->getIvarDecl(ID)) { |
| Fariborz Jahanian | 6845383 | 2009-06-05 18:16:35 +0000 | [diff] [blame] | 632 | clsDeclared = ClassDecl; |
| 633 | return I; |
| Chris Lattner | 8937519 | 2008-03-16 00:19:01 +0000 | [diff] [blame] | 634 | } |
| Douglas Gregor | 048fbfa | 2013-01-16 23:00:23 +0000 | [diff] [blame] | 635 | |
| Aaron Ballman | f53d8dd | 2014-03-13 21:47:07 +0000 | [diff] [blame] | 636 | for (const auto *Ext : ClassDecl->visible_extensions()) { |
| Douglas Gregor | 048fbfa | 2013-01-16 23:00:23 +0000 | [diff] [blame] | 637 | if (ObjCIvarDecl *I = Ext->getIvarDecl(ID)) { |
| Fariborz Jahanian | afe1386 | 2010-02-23 01:26:30 +0000 | [diff] [blame] | 638 | clsDeclared = ClassDecl; |
| 639 | return I; |
| 640 | } |
| Fariborz Jahanian | 3bf0ded | 2010-06-22 23:20:40 +0000 | [diff] [blame] | 641 | } |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 642 | |
| Chris Lattner | 8937519 | 2008-03-16 00:19:01 +0000 | [diff] [blame] | 643 | ClassDecl = ClassDecl->getSuperClass(); |
| 644 | } |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 645 | return nullptr; |
| Chris Lattner | 8937519 | 2008-03-16 00:19:01 +0000 | [diff] [blame] | 646 | } |
| 647 | |
| Fariborz Jahanian | db3a4c1 | 2009-05-22 17:12:32 +0000 | [diff] [blame] | 648 | /// lookupInheritedClass - This method returns ObjCInterfaceDecl * of the super |
| 649 | /// class whose name is passed as argument. If it is not one of the super classes |
| 650 | /// the it returns NULL. |
| 651 | ObjCInterfaceDecl *ObjCInterfaceDecl::lookupInheritedClass( |
| 652 | const IdentifierInfo*ICName) { |
| Douglas Gregor | c0ac7d6 | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 653 | // FIXME: Should make sure no callers ever do this. |
| 654 | if (!hasDefinition()) |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 655 | return nullptr; |
| Douglas Gregor | c0ac7d6 | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 656 | |
| 657 | if (data().ExternallyCompleted) |
| Argyrios Kyrtzidis | 4e8b136 | 2011-10-19 02:25:16 +0000 | [diff] [blame] | 658 | LoadExternalDefinition(); |
| 659 | |
| Fariborz Jahanian | db3a4c1 | 2009-05-22 17:12:32 +0000 | [diff] [blame] | 660 | ObjCInterfaceDecl* ClassDecl = this; |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 661 | while (ClassDecl != nullptr) { |
| Fariborz Jahanian | db3a4c1 | 2009-05-22 17:12:32 +0000 | [diff] [blame] | 662 | if (ClassDecl->getIdentifier() == ICName) |
| 663 | return ClassDecl; |
| 664 | ClassDecl = ClassDecl->getSuperClass(); |
| 665 | } |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 666 | return nullptr; |
| Fariborz Jahanian | db3a4c1 | 2009-05-22 17:12:32 +0000 | [diff] [blame] | 667 | } |
| 668 | |
| Fariborz Jahanian | 56f48d0 | 2013-07-10 21:30:22 +0000 | [diff] [blame] | 669 | ObjCProtocolDecl * |
| 670 | ObjCInterfaceDecl::lookupNestedProtocol(IdentifierInfo *Name) { |
| Aaron Ballman | a9f49e3 | 2014-03-13 20:55:22 +0000 | [diff] [blame] | 671 | for (auto *P : all_referenced_protocols()) |
| 672 | if (P->lookupProtocolNamed(Name)) |
| 673 | return P; |
| Fariborz Jahanian | 56f48d0 | 2013-07-10 21:30:22 +0000 | [diff] [blame] | 674 | ObjCInterfaceDecl *SuperClass = getSuperClass(); |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 675 | return SuperClass ? SuperClass->lookupNestedProtocol(Name) : nullptr; |
| Fariborz Jahanian | 56f48d0 | 2013-07-10 21:30:22 +0000 | [diff] [blame] | 676 | } |
| 677 | |
| Argyrios Kyrtzidis | 553376b | 2009-07-25 22:15:51 +0000 | [diff] [blame] | 678 | /// lookupMethod - This method returns an instance/class method by looking in |
| Chris Lattner | 8937519 | 2008-03-16 00:19:01 +0000 | [diff] [blame] | 679 | /// the class, its categories, and its super classes (using a linear search). |
| Fariborz Jahanian | 73e244a | 2013-04-25 21:59:34 +0000 | [diff] [blame] | 680 | /// When argument category "C" is specified, any implicit method found |
| 681 | /// in this category is ignored. |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 682 | ObjCMethodDecl *ObjCInterfaceDecl::lookupMethod(Selector Sel, |
| Ted Kremenek | 0078150 | 2013-11-23 01:01:29 +0000 | [diff] [blame] | 683 | bool isInstance, |
| 684 | bool shallowCategoryLookup, |
| 685 | bool followSuper, |
| Ted Kremenek | f41cf7f1 | 2013-12-10 19:43:48 +0000 | [diff] [blame] | 686 | const ObjCCategoryDecl *C) const |
| Ted Kremenek | 0078150 | 2013-11-23 01:01:29 +0000 | [diff] [blame] | 687 | { |
| Douglas Gregor | c0ac7d6 | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 688 | // FIXME: Should make sure no callers ever do this. |
| 689 | if (!hasDefinition()) |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 690 | return nullptr; |
| Douglas Gregor | c0ac7d6 | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 691 | |
| Argyrios Kyrtzidis | 553376b | 2009-07-25 22:15:51 +0000 | [diff] [blame] | 692 | const ObjCInterfaceDecl* ClassDecl = this; |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 693 | ObjCMethodDecl *MethodDecl = nullptr; |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 694 | |
| Douglas Gregor | c0ac7d6 | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 695 | if (data().ExternallyCompleted) |
| Douglas Gregor | 7369302 | 2010-12-01 23:49:52 +0000 | [diff] [blame] | 696 | LoadExternalDefinition(); |
| 697 | |
| Ted Kremenek | 0078150 | 2013-11-23 01:01:29 +0000 | [diff] [blame] | 698 | while (ClassDecl) { |
| Fariborz Jahanian | 7e3e291 | 2014-08-27 20:34:29 +0000 | [diff] [blame] | 699 | // 1. Look through primary class. |
| Argyrios Kyrtzidis | 553376b | 2009-07-25 22:15:51 +0000 | [diff] [blame] | 700 | if ((MethodDecl = ClassDecl->getMethod(Sel, isInstance))) |
| Chris Lattner | 8937519 | 2008-03-16 00:19:01 +0000 | [diff] [blame] | 701 | return MethodDecl; |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 702 | |
| Fariborz Jahanian | 7e3e291 | 2014-08-27 20:34:29 +0000 | [diff] [blame] | 703 | // 2. Didn't find one yet - now look through categories. |
| 704 | for (const auto *Cat : ClassDecl->visible_categories()) |
| Fariborz Jahanian | 73e244a | 2013-04-25 21:59:34 +0000 | [diff] [blame] | 705 | if ((MethodDecl = Cat->getMethod(Sel, isInstance))) |
| Aaron Ballman | 3fe486a | 2014-03-13 21:23:55 +0000 | [diff] [blame] | 706 | if (C != Cat || !MethodDecl->isImplicit()) |
| Fariborz Jahanian | eb3f100 | 2013-04-24 17:06:38 +0000 | [diff] [blame] | 707 | return MethodDecl; |
| Fariborz Jahanian | 29082a5 | 2012-02-09 21:30:24 +0000 | [diff] [blame] | 708 | |
| Fariborz Jahanian | 7e3e291 | 2014-08-27 20:34:29 +0000 | [diff] [blame] | 709 | // 3. Didn't find one yet - look through primary class's protocols. |
| 710 | for (const auto *I : ClassDecl->protocols()) |
| 711 | if ((MethodDecl = I->lookupMethod(Sel, isInstance))) |
| 712 | return MethodDecl; |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 713 | |
| Fariborz Jahanian | 7e3e291 | 2014-08-27 20:34:29 +0000 | [diff] [blame] | 714 | // 4. Didn't find one yet - now look through categories' protocols |
| 715 | if (!shallowCategoryLookup) |
| 716 | for (const auto *Cat : ClassDecl->visible_categories()) { |
| Fariborz Jahanian | 73e244a | 2013-04-25 21:59:34 +0000 | [diff] [blame] | 717 | // Didn't find one yet - look through protocols. |
| 718 | const ObjCList<ObjCProtocolDecl> &Protocols = |
| Fariborz Jahanian | 7e3e291 | 2014-08-27 20:34:29 +0000 | [diff] [blame] | 719 | Cat->getReferencedProtocols(); |
| Eugene Zelenko | 2a1ba94 | 2018-04-09 22:14:10 +0000 | [diff] [blame] | 720 | for (auto *Protocol : Protocols) |
| 721 | if ((MethodDecl = Protocol->lookupMethod(Sel, isInstance))) |
| Aaron Ballman | 3fe486a | 2014-03-13 21:23:55 +0000 | [diff] [blame] | 722 | if (C != Cat || !MethodDecl->isImplicit()) |
| Fariborz Jahanian | eb3f100 | 2013-04-24 17:06:38 +0000 | [diff] [blame] | 723 | return MethodDecl; |
| Fariborz Jahanian | 29082a5 | 2012-02-09 21:30:24 +0000 | [diff] [blame] | 724 | } |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 725 | |
| 726 | |
| Ted Kremenek | 0078150 | 2013-11-23 01:01:29 +0000 | [diff] [blame] | 727 | if (!followSuper) |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 728 | return nullptr; |
| Ted Kremenek | 0078150 | 2013-11-23 01:01:29 +0000 | [diff] [blame] | 729 | |
| Fariborz Jahanian | 7e3e291 | 2014-08-27 20:34:29 +0000 | [diff] [blame] | 730 | // 5. Get to the super class (if any). |
| Chris Lattner | 8937519 | 2008-03-16 00:19:01 +0000 | [diff] [blame] | 731 | ClassDecl = ClassDecl->getSuperClass(); |
| 732 | } |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 733 | return nullptr; |
| Chris Lattner | 8937519 | 2008-03-16 00:19:01 +0000 | [diff] [blame] | 734 | } |
| 735 | |
| Anna Zaks | c77a3b1 | 2012-07-27 19:07:44 +0000 | [diff] [blame] | 736 | // Will search "local" class/category implementations for a method decl. |
| 737 | // If failed, then we search in class's root for an instance method. |
| 738 | // Returns 0 if no method is found. |
| Fariborz Jahanian | ecbbb6e | 2010-12-03 23:37:08 +0000 | [diff] [blame] | 739 | ObjCMethodDecl *ObjCInterfaceDecl::lookupPrivateMethod( |
| 740 | const Selector &Sel, |
| Anna Zaks | 7044adc | 2012-07-30 20:31:21 +0000 | [diff] [blame] | 741 | bool Instance) const { |
| Douglas Gregor | c0ac7d6 | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 742 | // FIXME: Should make sure no callers ever do this. |
| 743 | if (!hasDefinition()) |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 744 | return nullptr; |
| Douglas Gregor | c0ac7d6 | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 745 | |
| 746 | if (data().ExternallyCompleted) |
| Argyrios Kyrtzidis | 4e8b136 | 2011-10-19 02:25:16 +0000 | [diff] [blame] | 747 | LoadExternalDefinition(); |
| 748 | |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 749 | ObjCMethodDecl *Method = nullptr; |
| Steve Naroff | bb69c94 | 2009-10-01 23:46:04 +0000 | [diff] [blame] | 750 | if (ObjCImplementationDecl *ImpDecl = getImplementation()) |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 751 | Method = Instance ? ImpDecl->getInstanceMethod(Sel) |
| Fariborz Jahanian | ecbbb6e | 2010-12-03 23:37:08 +0000 | [diff] [blame] | 752 | : ImpDecl->getClassMethod(Sel); |
| Anna Zaks | c77a3b1 | 2012-07-27 19:07:44 +0000 | [diff] [blame] | 753 | |
| 754 | // Look through local category implementations associated with the class. |
| 755 | if (!Method) |
| Nico Weber | f609839 | 2015-03-02 01:12:28 +0000 | [diff] [blame] | 756 | Method = getCategoryMethod(Sel, Instance); |
| Anna Zaks | c77a3b1 | 2012-07-27 19:07:44 +0000 | [diff] [blame] | 757 | |
| 758 | // Before we give up, check if the selector is an instance method. |
| 759 | // But only in the root. This matches gcc's behavior and what the |
| 760 | // runtime expects. |
| 761 | if (!Instance && !Method && !getSuperClass()) { |
| 762 | Method = lookupInstanceMethod(Sel); |
| 763 | // Look through local category implementations associated |
| 764 | // with the root class. |
| 765 | if (!Method) |
| 766 | Method = lookupPrivateMethod(Sel, true); |
| 767 | } |
| 768 | |
| Steve Naroff | bb69c94 | 2009-10-01 23:46:04 +0000 | [diff] [blame] | 769 | if (!Method && getSuperClass()) |
| Fariborz Jahanian | ecbbb6e | 2010-12-03 23:37:08 +0000 | [diff] [blame] | 770 | return getSuperClass()->lookupPrivateMethod(Sel, Instance); |
| Steve Naroff | bb69c94 | 2009-10-01 23:46:04 +0000 | [diff] [blame] | 771 | return Method; |
| 772 | } |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 773 | |
| 774 | //===----------------------------------------------------------------------===// |
| 775 | // ObjCMethodDecl |
| 776 | //===----------------------------------------------------------------------===// |
| 777 | |
| Adrian Prantl | 2073dd2 | 2019-11-04 14:28:14 -0800 | [diff] [blame] | 778 | ObjCMethodDecl::ObjCMethodDecl( |
| 779 | SourceLocation beginLoc, SourceLocation endLoc, Selector SelInfo, |
| 780 | QualType T, TypeSourceInfo *ReturnTInfo, DeclContext *contextDecl, |
| 781 | bool isInstance, bool isVariadic, bool isPropertyAccessor, |
| 782 | bool isSynthesizedAccessorStub, bool isImplicitlyDeclared, bool isDefined, |
| 783 | ImplementationControl impControl, bool HasRelatedResultType) |
| Erich Keane | 9b18eca | 2018-08-01 21:31:08 +0000 | [diff] [blame] | 784 | : NamedDecl(ObjCMethod, contextDecl, beginLoc, SelInfo), |
| 785 | DeclContext(ObjCMethod), MethodDeclType(T), ReturnTInfo(ReturnTInfo), |
| 786 | DeclEndLoc(endLoc) { |
| Erich Keane | 9b18eca | 2018-08-01 21:31:08 +0000 | [diff] [blame] | 787 | |
| 788 | // Initialized the bits stored in DeclContext. |
| 789 | ObjCMethodDeclBits.Family = |
| 790 | static_cast<ObjCMethodFamily>(InvalidObjCMethodFamily); |
| 791 | setInstanceMethod(isInstance); |
| 792 | setVariadic(isVariadic); |
| 793 | setPropertyAccessor(isPropertyAccessor); |
| Adrian Prantl | 2073dd2 | 2019-11-04 14:28:14 -0800 | [diff] [blame] | 794 | setSynthesizedAccessorStub(isSynthesizedAccessorStub); |
| Erich Keane | 9b18eca | 2018-08-01 21:31:08 +0000 | [diff] [blame] | 795 | setDefined(isDefined); |
| 796 | setIsRedeclaration(false); |
| 797 | setHasRedeclaration(false); |
| 798 | setDeclImplementation(impControl); |
| 799 | setObjCDeclQualifier(OBJC_TQ_None); |
| 800 | setRelatedResultType(HasRelatedResultType); |
| 801 | setSelLocsKind(SelLoc_StandardNoSpace); |
| 802 | setOverriding(false); |
| 803 | setHasSkippedBody(false); |
| 804 | |
| 805 | setImplicit(isImplicitlyDeclared); |
| 806 | } |
| 807 | |
| Alp Toker | 314cc81 | 2014-01-25 16:55:45 +0000 | [diff] [blame] | 808 | ObjCMethodDecl *ObjCMethodDecl::Create( |
| 809 | ASTContext &C, SourceLocation beginLoc, SourceLocation endLoc, |
| 810 | Selector SelInfo, QualType T, TypeSourceInfo *ReturnTInfo, |
| 811 | DeclContext *contextDecl, bool isInstance, bool isVariadic, |
| Adrian Prantl | 2073dd2 | 2019-11-04 14:28:14 -0800 | [diff] [blame] | 812 | bool isPropertyAccessor, bool isSynthesizedAccessorStub, |
| 813 | bool isImplicitlyDeclared, bool isDefined, ImplementationControl impControl, |
| 814 | bool HasRelatedResultType) { |
| Richard Smith | f798172 | 2013-11-22 09:01:48 +0000 | [diff] [blame] | 815 | return new (C, contextDecl) ObjCMethodDecl( |
| Alp Toker | 314cc81 | 2014-01-25 16:55:45 +0000 | [diff] [blame] | 816 | beginLoc, endLoc, SelInfo, T, ReturnTInfo, contextDecl, isInstance, |
| Adrian Prantl | 2073dd2 | 2019-11-04 14:28:14 -0800 | [diff] [blame] | 817 | isVariadic, isPropertyAccessor, isSynthesizedAccessorStub, |
| 818 | isImplicitlyDeclared, isDefined, impControl, HasRelatedResultType); |
| Chris Lattner | 8937519 | 2008-03-16 00:19:01 +0000 | [diff] [blame] | 819 | } |
| 820 | |
| Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 821 | ObjCMethodDecl *ObjCMethodDecl::CreateDeserialized(ASTContext &C, unsigned ID) { |
| Richard Smith | f798172 | 2013-11-22 09:01:48 +0000 | [diff] [blame] | 822 | return new (C, ID) ObjCMethodDecl(SourceLocation(), SourceLocation(), |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 823 | Selector(), QualType(), nullptr, nullptr); |
| Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 824 | } |
| 825 | |
| Pierre Habouzit | d4e1ba3 | 2019-11-07 23:14:58 -0800 | [diff] [blame] | 826 | bool ObjCMethodDecl::isDirectMethod() const { |
| 827 | return hasAttr<ObjCDirectAttr>(); |
| 828 | } |
| 829 | |
| Argyrios Kyrtzidis | 22bfa2c | 2013-12-03 21:11:36 +0000 | [diff] [blame] | 830 | bool ObjCMethodDecl::isThisDeclarationADesignatedInitializer() const { |
| 831 | return getMethodFamily() == OMF_init && |
| 832 | hasAttr<ObjCDesignatedInitializerAttr>(); |
| 833 | } |
| 834 | |
| Erik Pilkington | 4257857 | 2018-09-10 22:20:09 +0000 | [diff] [blame] | 835 | bool ObjCMethodDecl::definedInNSObject(const ASTContext &Ctx) const { |
| 836 | if (const auto *PD = dyn_cast<const ObjCProtocolDecl>(getDeclContext())) |
| 837 | return PD->getIdentifier() == Ctx.getNSObjectName(); |
| 838 | if (const auto *ID = dyn_cast<const ObjCInterfaceDecl>(getDeclContext())) |
| 839 | return ID->getIdentifier() == Ctx.getNSObjectName(); |
| 840 | return false; |
| 841 | } |
| 842 | |
| Argyrios Kyrtzidis | fcded9b | 2013-12-03 21:11:43 +0000 | [diff] [blame] | 843 | bool ObjCMethodDecl::isDesignatedInitializerForTheInterface( |
| 844 | const ObjCMethodDecl **InitMethod) const { |
| 845 | if (getMethodFamily() != OMF_init) |
| 846 | return false; |
| Argyrios Kyrtzidis | 22bfa2c | 2013-12-03 21:11:36 +0000 | [diff] [blame] | 847 | const DeclContext *DC = getDeclContext(); |
| 848 | if (isa<ObjCProtocolDecl>(DC)) |
| 849 | return false; |
| 850 | if (const ObjCInterfaceDecl *ID = getClassInterface()) |
| Argyrios Kyrtzidis | fcded9b | 2013-12-03 21:11:43 +0000 | [diff] [blame] | 851 | return ID->isDesignatedInitializer(getSelector(), InitMethod); |
| Argyrios Kyrtzidis | 22bfa2c | 2013-12-03 21:11:36 +0000 | [diff] [blame] | 852 | return false; |
| 853 | } |
| 854 | |
| Douglas Gregor | a6017bb | 2012-10-09 17:21:28 +0000 | [diff] [blame] | 855 | Stmt *ObjCMethodDecl::getBody() const { |
| 856 | return Body.get(getASTContext().getExternalSource()); |
| 857 | } |
| 858 | |
| Argyrios Kyrtzidis | dcaaa21 | 2011-10-14 08:02:31 +0000 | [diff] [blame] | 859 | void ObjCMethodDecl::setAsRedeclaration(const ObjCMethodDecl *PrevMethod) { |
| 860 | assert(PrevMethod); |
| 861 | getASTContext().setObjCMethodRedeclaration(PrevMethod, this); |
| Erich Keane | 9b18eca | 2018-08-01 21:31:08 +0000 | [diff] [blame] | 862 | setIsRedeclaration(true); |
| 863 | PrevMethod->setHasRedeclaration(true); |
| Argyrios Kyrtzidis | dcaaa21 | 2011-10-14 08:02:31 +0000 | [diff] [blame] | 864 | } |
| 865 | |
| Argyrios Kyrtzidis | b8c3aaf | 2011-10-03 06:37:04 +0000 | [diff] [blame] | 866 | void ObjCMethodDecl::setParamsAndSelLocs(ASTContext &C, |
| 867 | ArrayRef<ParmVarDecl*> Params, |
| 868 | ArrayRef<SourceLocation> SelLocs) { |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 869 | ParamsAndSelLocs = nullptr; |
| Argyrios Kyrtzidis | b8c3aaf | 2011-10-03 06:37:04 +0000 | [diff] [blame] | 870 | NumParams = Params.size(); |
| 871 | if (Params.empty() && SelLocs.empty()) |
| 872 | return; |
| 873 | |
| Benjamin Kramer | c3f8925 | 2016-10-20 14:27:22 +0000 | [diff] [blame] | 874 | static_assert(alignof(ParmVarDecl *) >= alignof(SourceLocation), |
| James Y Knight | 967eb20 | 2015-12-29 22:13:13 +0000 | [diff] [blame] | 875 | "Alignment not sufficient for SourceLocation"); |
| 876 | |
| Argyrios Kyrtzidis | b8c3aaf | 2011-10-03 06:37:04 +0000 | [diff] [blame] | 877 | unsigned Size = sizeof(ParmVarDecl *) * NumParams + |
| 878 | sizeof(SourceLocation) * SelLocs.size(); |
| 879 | ParamsAndSelLocs = C.Allocate(Size); |
| 880 | std::copy(Params.begin(), Params.end(), getParams()); |
| 881 | std::copy(SelLocs.begin(), SelLocs.end(), getStoredSelLocs()); |
| 882 | } |
| 883 | |
| 884 | void ObjCMethodDecl::getSelectorLocs( |
| 885 | SmallVectorImpl<SourceLocation> &SelLocs) const { |
| 886 | for (unsigned i = 0, e = getNumSelectorLocs(); i != e; ++i) |
| 887 | SelLocs.push_back(getSelectorLoc(i)); |
| 888 | } |
| 889 | |
| 890 | void ObjCMethodDecl::setMethodParams(ASTContext &C, |
| 891 | ArrayRef<ParmVarDecl*> Params, |
| 892 | ArrayRef<SourceLocation> SelLocs) { |
| 893 | assert((!SelLocs.empty() || isImplicit()) && |
| 894 | "No selector locs for non-implicit method"); |
| 895 | if (isImplicit()) |
| Dmitri Gribenko | 44ebbd5 | 2013-05-05 00:41:58 +0000 | [diff] [blame] | 896 | return setParamsAndSelLocs(C, Params, llvm::None); |
| Argyrios Kyrtzidis | b8c3aaf | 2011-10-03 06:37:04 +0000 | [diff] [blame] | 897 | |
| Erich Keane | 9b18eca | 2018-08-01 21:31:08 +0000 | [diff] [blame] | 898 | setSelLocsKind(hasStandardSelectorLocs(getSelector(), SelLocs, Params, |
| 899 | DeclEndLoc)); |
| 900 | if (getSelLocsKind() != SelLoc_NonStandard) |
| Dmitri Gribenko | 44ebbd5 | 2013-05-05 00:41:58 +0000 | [diff] [blame] | 901 | return setParamsAndSelLocs(C, Params, llvm::None); |
| Argyrios Kyrtzidis | b8c3aaf | 2011-10-03 06:37:04 +0000 | [diff] [blame] | 902 | |
| 903 | setParamsAndSelLocs(C, Params, SelLocs); |
| 904 | } |
| 905 | |
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 906 | /// A definition will return its interface declaration. |
| Argyrios Kyrtzidis | a8cf0be | 2009-07-21 00:06:36 +0000 | [diff] [blame] | 907 | /// An interface declaration will return its definition. |
| 908 | /// Otherwise it will return itself. |
| Richard Smith | d7af8a3 | 2014-05-10 01:17:36 +0000 | [diff] [blame] | 909 | ObjCMethodDecl *ObjCMethodDecl::getNextRedeclarationImpl() { |
| Argyrios Kyrtzidis | a8cf0be | 2009-07-21 00:06:36 +0000 | [diff] [blame] | 910 | ASTContext &Ctx = getASTContext(); |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 911 | ObjCMethodDecl *Redecl = nullptr; |
| Erich Keane | 9b18eca | 2018-08-01 21:31:08 +0000 | [diff] [blame] | 912 | if (hasRedeclaration()) |
| Argyrios Kyrtzidis | db21596 | 2011-10-14 17:41:52 +0000 | [diff] [blame] | 913 | Redecl = const_cast<ObjCMethodDecl*>(Ctx.getObjCMethodRedeclaration(this)); |
| Argyrios Kyrtzidis | c5e829c | 2011-10-14 06:48:06 +0000 | [diff] [blame] | 914 | if (Redecl) |
| 915 | return Redecl; |
| 916 | |
| Eugene Zelenko | 2a1ba94 | 2018-04-09 22:14:10 +0000 | [diff] [blame] | 917 | auto *CtxD = cast<Decl>(getDeclContext()); |
| Argyrios Kyrtzidis | a8cf0be | 2009-07-21 00:06:36 +0000 | [diff] [blame] | 918 | |
| Argyrios Kyrtzidis | 0f6d5ca | 2013-05-30 18:53:21 +0000 | [diff] [blame] | 919 | if (!CtxD->isInvalidDecl()) { |
| Eugene Zelenko | 2a1ba94 | 2018-04-09 22:14:10 +0000 | [diff] [blame] | 920 | if (auto *IFD = dyn_cast<ObjCInterfaceDecl>(CtxD)) { |
| Argyrios Kyrtzidis | 0f6d5ca | 2013-05-30 18:53:21 +0000 | [diff] [blame] | 921 | if (ObjCImplementationDecl *ImplD = Ctx.getObjCImplementation(IFD)) |
| 922 | if (!ImplD->isInvalidDecl()) |
| 923 | Redecl = ImplD->getMethod(getSelector(), isInstanceMethod()); |
| Argyrios Kyrtzidis | a8cf0be | 2009-07-21 00:06:36 +0000 | [diff] [blame] | 924 | |
| Eugene Zelenko | 2a1ba94 | 2018-04-09 22:14:10 +0000 | [diff] [blame] | 925 | } else if (auto *CD = dyn_cast<ObjCCategoryDecl>(CtxD)) { |
| Argyrios Kyrtzidis | 0f6d5ca | 2013-05-30 18:53:21 +0000 | [diff] [blame] | 926 | if (ObjCCategoryImplDecl *ImplD = Ctx.getObjCImplementation(CD)) |
| 927 | if (!ImplD->isInvalidDecl()) |
| 928 | Redecl = ImplD->getMethod(getSelector(), isInstanceMethod()); |
| Argyrios Kyrtzidis | a8cf0be | 2009-07-21 00:06:36 +0000 | [diff] [blame] | 929 | |
| Eugene Zelenko | 2a1ba94 | 2018-04-09 22:14:10 +0000 | [diff] [blame] | 930 | } else if (auto *ImplD = dyn_cast<ObjCImplementationDecl>(CtxD)) { |
| Argyrios Kyrtzidis | 0f6d5ca | 2013-05-30 18:53:21 +0000 | [diff] [blame] | 931 | if (ObjCInterfaceDecl *IFD = ImplD->getClassInterface()) |
| 932 | if (!IFD->isInvalidDecl()) |
| 933 | Redecl = IFD->getMethod(getSelector(), isInstanceMethod()); |
| Argyrios Kyrtzidis | a56fa19 | 2009-07-28 05:11:05 +0000 | [diff] [blame] | 934 | |
| Eugene Zelenko | 2a1ba94 | 2018-04-09 22:14:10 +0000 | [diff] [blame] | 935 | } else if (auto *CImplD = dyn_cast<ObjCCategoryImplDecl>(CtxD)) { |
| Argyrios Kyrtzidis | 0f6d5ca | 2013-05-30 18:53:21 +0000 | [diff] [blame] | 936 | if (ObjCCategoryDecl *CatD = CImplD->getCategoryDecl()) |
| 937 | if (!CatD->isInvalidDecl()) |
| 938 | Redecl = CatD->getMethod(getSelector(), isInstanceMethod()); |
| 939 | } |
| Argyrios Kyrtzidis | a8cf0be | 2009-07-21 00:06:36 +0000 | [diff] [blame] | 940 | } |
| 941 | |
| Alex Lorenz | ff6c34b | 2016-11-21 11:16:30 +0000 | [diff] [blame] | 942 | // Ensure that the discovered method redeclaration has a valid declaration |
| 943 | // context. Used to prevent infinite loops when iterating redeclarations in |
| 944 | // a partially invalid AST. |
| 945 | if (Redecl && cast<Decl>(Redecl->getDeclContext())->isInvalidDecl()) |
| 946 | Redecl = nullptr; |
| 947 | |
| Argyrios Kyrtzidis | dcaaa21 | 2011-10-14 08:02:31 +0000 | [diff] [blame] | 948 | if (!Redecl && isRedeclaration()) { |
| 949 | // This is the last redeclaration, go back to the first method. |
| 950 | return cast<ObjCContainerDecl>(CtxD)->getMethod(getSelector(), |
| 951 | isInstanceMethod()); |
| 952 | } |
| 953 | |
| Argyrios Kyrtzidis | a8cf0be | 2009-07-21 00:06:36 +0000 | [diff] [blame] | 954 | return Redecl ? Redecl : this; |
| 955 | } |
| 956 | |
| Argyrios Kyrtzidis | f390c43 | 2009-07-28 05:11:17 +0000 | [diff] [blame] | 957 | ObjCMethodDecl *ObjCMethodDecl::getCanonicalDecl() { |
| Eugene Zelenko | 2a1ba94 | 2018-04-09 22:14:10 +0000 | [diff] [blame] | 958 | auto *CtxD = cast<Decl>(getDeclContext()); |
| Pierre Habouzit | 42f9d0c | 2019-12-19 01:25:03 -0800 | [diff] [blame] | 959 | const auto &Sel = getSelector(); |
| Argyrios Kyrtzidis | f390c43 | 2009-07-28 05:11:17 +0000 | [diff] [blame] | 960 | |
| Eugene Zelenko | 2a1ba94 | 2018-04-09 22:14:10 +0000 | [diff] [blame] | 961 | if (auto *ImplD = dyn_cast<ObjCImplementationDecl>(CtxD)) { |
| Pierre Habouzit | a4e1819 | 2019-12-17 11:06:17 -0800 | [diff] [blame] | 962 | if (ObjCInterfaceDecl *IFD = ImplD->getClassInterface()) { |
| Pierre Habouzit | 42f9d0c | 2019-12-19 01:25:03 -0800 | [diff] [blame] | 963 | // When the container is the ObjCImplementationDecl (the primary |
| 964 | // @implementation), then the canonical Decl is either in |
| 965 | // the class Interface, or in any of its extension. |
| 966 | // |
| 967 | // So when we don't find it in the ObjCInterfaceDecl, |
| 968 | // sift through extensions too. |
| 969 | if (ObjCMethodDecl *MD = IFD->getMethod(Sel, isInstanceMethod())) |
| Argyrios Kyrtzidis | f390c43 | 2009-07-28 05:11:17 +0000 | [diff] [blame] | 970 | return MD; |
| Pierre Habouzit | 42f9d0c | 2019-12-19 01:25:03 -0800 | [diff] [blame] | 971 | for (auto *Ext : IFD->known_extensions()) |
| 972 | if (ObjCMethodDecl *MD = Ext->getMethod(Sel, isInstanceMethod())) |
| 973 | return MD; |
| Pierre Habouzit | a4e1819 | 2019-12-17 11:06:17 -0800 | [diff] [blame] | 974 | } |
| Eugene Zelenko | 2a1ba94 | 2018-04-09 22:14:10 +0000 | [diff] [blame] | 975 | } else if (auto *CImplD = dyn_cast<ObjCCategoryImplDecl>(CtxD)) { |
| Steve Naroff | f406f4d | 2009-10-29 21:11:04 +0000 | [diff] [blame] | 976 | if (ObjCCategoryDecl *CatD = CImplD->getCategoryDecl()) |
| Pierre Habouzit | 42f9d0c | 2019-12-19 01:25:03 -0800 | [diff] [blame] | 977 | if (ObjCMethodDecl *MD = CatD->getMethod(Sel, isInstanceMethod())) |
| Argyrios Kyrtzidis | f390c43 | 2009-07-28 05:11:17 +0000 | [diff] [blame] | 978 | return MD; |
| 979 | } |
| 980 | |
| Manman Ren | a0042c4 | 2016-10-03 21:26:46 +0000 | [diff] [blame] | 981 | if (isRedeclaration()) { |
| 982 | // It is possible that we have not done deserializing the ObjCMethod yet. |
| 983 | ObjCMethodDecl *MD = |
| Pierre Habouzit | 42f9d0c | 2019-12-19 01:25:03 -0800 | [diff] [blame] | 984 | cast<ObjCContainerDecl>(CtxD)->getMethod(Sel, isInstanceMethod()); |
| Manman Ren | a0042c4 | 2016-10-03 21:26:46 +0000 | [diff] [blame] | 985 | return MD ? MD : this; |
| 986 | } |
| Argyrios Kyrtzidis | 690dccd | 2011-10-17 19:48:09 +0000 | [diff] [blame] | 987 | |
| Argyrios Kyrtzidis | f390c43 | 2009-07-28 05:11:17 +0000 | [diff] [blame] | 988 | return this; |
| 989 | } |
| 990 | |
| Stephen Kelly | 02a67ba | 2018-08-09 20:05:47 +0000 | [diff] [blame] | 991 | SourceLocation ObjCMethodDecl::getEndLoc() const { |
| Argyrios Kyrtzidis | 33b4bfc | 2012-06-16 00:46:02 +0000 | [diff] [blame] | 992 | if (Stmt *Body = getBody()) |
| Stephen Kelly | 1c301dc | 2018-08-09 21:09:38 +0000 | [diff] [blame] | 993 | return Body->getEndLoc(); |
| Argyrios Kyrtzidis | 33b4bfc | 2012-06-16 00:46:02 +0000 | [diff] [blame] | 994 | return DeclEndLoc; |
| 995 | } |
| 996 | |
| John McCall | b452625 | 2011-03-02 01:50:55 +0000 | [diff] [blame] | 997 | ObjCMethodFamily ObjCMethodDecl::getMethodFamily() const { |
| Erich Keane | 9b18eca | 2018-08-01 21:31:08 +0000 | [diff] [blame] | 998 | auto family = static_cast<ObjCMethodFamily>(ObjCMethodDeclBits.Family); |
| John McCall | fb55f85 | 2011-03-02 21:01:41 +0000 | [diff] [blame] | 999 | if (family != static_cast<unsigned>(InvalidObjCMethodFamily)) |
| John McCall | b452625 | 2011-03-02 01:50:55 +0000 | [diff] [blame] | 1000 | return family; |
| 1001 | |
| John McCall | 86bc21f | 2011-03-02 11:33:24 +0000 | [diff] [blame] | 1002 | // Check for an explicit attribute. |
| 1003 | if (const ObjCMethodFamilyAttr *attr = getAttr<ObjCMethodFamilyAttr>()) { |
| 1004 | // The unfortunate necessity of mapping between enums here is due |
| 1005 | // to the attributes framework. |
| 1006 | switch (attr->getFamily()) { |
| 1007 | case ObjCMethodFamilyAttr::OMF_None: family = OMF_None; break; |
| 1008 | case ObjCMethodFamilyAttr::OMF_alloc: family = OMF_alloc; break; |
| 1009 | case ObjCMethodFamilyAttr::OMF_copy: family = OMF_copy; break; |
| 1010 | case ObjCMethodFamilyAttr::OMF_init: family = OMF_init; break; |
| 1011 | case ObjCMethodFamilyAttr::OMF_mutableCopy: family = OMF_mutableCopy; break; |
| 1012 | case ObjCMethodFamilyAttr::OMF_new: family = OMF_new; break; |
| 1013 | } |
| Erich Keane | 9b18eca | 2018-08-01 21:31:08 +0000 | [diff] [blame] | 1014 | ObjCMethodDeclBits.Family = family; |
| John McCall | 86bc21f | 2011-03-02 11:33:24 +0000 | [diff] [blame] | 1015 | return family; |
| 1016 | } |
| 1017 | |
| John McCall | b452625 | 2011-03-02 01:50:55 +0000 | [diff] [blame] | 1018 | family = getSelector().getMethodFamily(); |
| 1019 | switch (family) { |
| 1020 | case OMF_None: break; |
| 1021 | |
| 1022 | // init only has a conventional meaning for an instance method, and |
| 1023 | // it has to return an object. |
| 1024 | case OMF_init: |
| Alp Toker | 314cc81 | 2014-01-25 16:55:45 +0000 | [diff] [blame] | 1025 | if (!isInstanceMethod() || !getReturnType()->isObjCObjectPointerType()) |
| John McCall | b452625 | 2011-03-02 01:50:55 +0000 | [diff] [blame] | 1026 | family = OMF_None; |
| 1027 | break; |
| 1028 | |
| 1029 | // alloc/copy/new have a conventional meaning for both class and |
| 1030 | // instance methods, but they require an object return. |
| 1031 | case OMF_alloc: |
| 1032 | case OMF_copy: |
| 1033 | case OMF_mutableCopy: |
| 1034 | case OMF_new: |
| Alp Toker | 314cc81 | 2014-01-25 16:55:45 +0000 | [diff] [blame] | 1035 | if (!getReturnType()->isObjCObjectPointerType()) |
| John McCall | b452625 | 2011-03-02 01:50:55 +0000 | [diff] [blame] | 1036 | family = OMF_None; |
| 1037 | break; |
| 1038 | |
| 1039 | // These selectors have a conventional meaning only for instance methods. |
| 1040 | case OMF_dealloc: |
| Nico Weber | 1fb8266 | 2011-08-28 22:35:17 +0000 | [diff] [blame] | 1041 | case OMF_finalize: |
| John McCall | b452625 | 2011-03-02 01:50:55 +0000 | [diff] [blame] | 1042 | case OMF_retain: |
| 1043 | case OMF_release: |
| 1044 | case OMF_autorelease: |
| 1045 | case OMF_retainCount: |
| Douglas Gregor | 3382372 | 2011-06-11 01:09:30 +0000 | [diff] [blame] | 1046 | case OMF_self: |
| John McCall | b452625 | 2011-03-02 01:50:55 +0000 | [diff] [blame] | 1047 | if (!isInstanceMethod()) |
| 1048 | family = OMF_None; |
| 1049 | break; |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1050 | |
| Fariborz Jahanian | 78e9deb | 2014-08-22 16:57:26 +0000 | [diff] [blame] | 1051 | case OMF_initialize: |
| 1052 | if (isInstanceMethod() || !getReturnType()->isVoidType()) |
| 1053 | family = OMF_None; |
| 1054 | break; |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1055 | |
| Fariborz Jahanian | b7a7736 | 2011-07-05 22:38:59 +0000 | [diff] [blame] | 1056 | case OMF_performSelector: |
| Alex Lorenz | 5ffe4e1 | 2017-03-23 10:46:05 +0000 | [diff] [blame] | 1057 | if (!isInstanceMethod() || !getReturnType()->isObjCIdType()) |
| Fariborz Jahanian | b7a7736 | 2011-07-05 22:38:59 +0000 | [diff] [blame] | 1058 | family = OMF_None; |
| 1059 | else { |
| 1060 | unsigned noParams = param_size(); |
| Alex Lorenz | 5ffe4e1 | 2017-03-23 10:46:05 +0000 | [diff] [blame] | 1061 | if (noParams < 1 || noParams > 3) |
| Fariborz Jahanian | b7a7736 | 2011-07-05 22:38:59 +0000 | [diff] [blame] | 1062 | family = OMF_None; |
| 1063 | else { |
| Alp Toker | 1f307f4 | 2014-01-25 17:32:04 +0000 | [diff] [blame] | 1064 | ObjCMethodDecl::param_type_iterator it = param_type_begin(); |
| Fariborz Jahanian | b7a7736 | 2011-07-05 22:38:59 +0000 | [diff] [blame] | 1065 | QualType ArgT = (*it); |
| 1066 | if (!ArgT->isObjCSelType()) { |
| 1067 | family = OMF_None; |
| 1068 | break; |
| 1069 | } |
| Alex Lorenz | 5ffe4e1 | 2017-03-23 10:46:05 +0000 | [diff] [blame] | 1070 | while (--noParams) { |
| 1071 | it++; |
| 1072 | ArgT = (*it); |
| 1073 | if (!ArgT->isObjCIdType()) { |
| Fariborz Jahanian | b7a7736 | 2011-07-05 22:38:59 +0000 | [diff] [blame] | 1074 | family = OMF_None; |
| 1075 | break; |
| 1076 | } |
| 1077 | } |
| 1078 | } |
| 1079 | } |
| 1080 | break; |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1081 | |
| John McCall | b452625 | 2011-03-02 01:50:55 +0000 | [diff] [blame] | 1082 | } |
| 1083 | |
| 1084 | // Cache the result. |
| Erich Keane | 9b18eca | 2018-08-01 21:31:08 +0000 | [diff] [blame] | 1085 | ObjCMethodDeclBits.Family = family; |
| John McCall | b452625 | 2011-03-02 01:50:55 +0000 | [diff] [blame] | 1086 | return family; |
| 1087 | } |
| 1088 | |
| Adrian Prantl | 2ecf89e | 2015-07-08 22:15:59 +0000 | [diff] [blame] | 1089 | QualType ObjCMethodDecl::getSelfType(ASTContext &Context, |
| 1090 | const ObjCInterfaceDecl *OID, |
| 1091 | bool &selfIsPseudoStrong, |
| Pierre Habouzit | d4e1ba3 | 2019-11-07 23:14:58 -0800 | [diff] [blame] | 1092 | bool &selfIsConsumed) const { |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1093 | QualType selfTy; |
| Adrian Prantl | 2ecf89e | 2015-07-08 22:15:59 +0000 | [diff] [blame] | 1094 | selfIsPseudoStrong = false; |
| 1095 | selfIsConsumed = false; |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1096 | if (isInstanceMethod()) { |
| 1097 | // There may be no interface context due to error in declaration |
| 1098 | // of the interface (which has been reported). Recover gracefully. |
| 1099 | if (OID) { |
| Daniel Dunbar | aefc2b9 | 2009-04-22 04:34:53 +0000 | [diff] [blame] | 1100 | selfTy = Context.getObjCInterfaceType(OID); |
| Steve Naroff | 7cae42b | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 1101 | selfTy = Context.getObjCObjectPointerType(selfTy); |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1102 | } else { |
| 1103 | selfTy = Context.getObjCIdType(); |
| 1104 | } |
| 1105 | } else // we have a factory method. |
| 1106 | selfTy = Context.getObjCClassType(); |
| 1107 | |
| David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1108 | if (Context.getLangOpts().ObjCAutoRefCount) { |
| Ted Kremenek | 1fcdaa9 | 2011-11-14 21:59:25 +0000 | [diff] [blame] | 1109 | if (isInstanceMethod()) { |
| 1110 | selfIsConsumed = hasAttr<NSConsumesSelfAttr>(); |
| John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1111 | |
| Ted Kremenek | 1fcdaa9 | 2011-11-14 21:59:25 +0000 | [diff] [blame] | 1112 | // 'self' is always __strong. It's actually pseudo-strong except |
| 1113 | // in init methods (or methods labeled ns_consumes_self), though. |
| 1114 | Qualifiers qs; |
| 1115 | qs.setObjCLifetime(Qualifiers::OCL_Strong); |
| 1116 | selfTy = Context.getQualifiedType(selfTy, qs); |
| John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1117 | |
| Ted Kremenek | 1fcdaa9 | 2011-11-14 21:59:25 +0000 | [diff] [blame] | 1118 | // In addition, 'self' is const unless this is an init method. |
| 1119 | if (getMethodFamily() != OMF_init && !selfIsConsumed) { |
| 1120 | selfTy = selfTy.withConst(); |
| 1121 | selfIsPseudoStrong = true; |
| 1122 | } |
| 1123 | } |
| 1124 | else { |
| 1125 | assert(isClassMethod()); |
| 1126 | // 'self' is always const in class methods. |
| John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1127 | selfTy = selfTy.withConst(); |
| John McCall | d463132 | 2011-06-17 06:42:21 +0000 | [diff] [blame] | 1128 | selfIsPseudoStrong = true; |
| 1129 | } |
| John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1130 | } |
| Adrian Prantl | 2ecf89e | 2015-07-08 22:15:59 +0000 | [diff] [blame] | 1131 | return selfTy; |
| 1132 | } |
| John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1133 | |
| Adrian Prantl | 2ecf89e | 2015-07-08 22:15:59 +0000 | [diff] [blame] | 1134 | void ObjCMethodDecl::createImplicitParams(ASTContext &Context, |
| 1135 | const ObjCInterfaceDecl *OID) { |
| 1136 | bool selfIsPseudoStrong, selfIsConsumed; |
| 1137 | QualType selfTy = |
| 1138 | getSelfType(Context, OID, selfIsPseudoStrong, selfIsConsumed); |
| Alexey Bataev | 5622323 | 2017-06-09 13:40:18 +0000 | [diff] [blame] | 1139 | auto *Self = ImplicitParamDecl::Create(Context, this, SourceLocation(), |
| 1140 | &Context.Idents.get("self"), selfTy, |
| 1141 | ImplicitParamDecl::ObjCSelf); |
| 1142 | setSelfDecl(Self); |
| John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1143 | |
| 1144 | if (selfIsConsumed) |
| Alexey Bataev | 5622323 | 2017-06-09 13:40:18 +0000 | [diff] [blame] | 1145 | Self->addAttr(NSConsumedAttr::CreateImplicit(Context)); |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1146 | |
| John McCall | d463132 | 2011-06-17 06:42:21 +0000 | [diff] [blame] | 1147 | if (selfIsPseudoStrong) |
| Alexey Bataev | 5622323 | 2017-06-09 13:40:18 +0000 | [diff] [blame] | 1148 | Self->setARCPseudoStrong(true); |
| John McCall | d463132 | 2011-06-17 06:42:21 +0000 | [diff] [blame] | 1149 | |
| Alexey Bataev | 5622323 | 2017-06-09 13:40:18 +0000 | [diff] [blame] | 1150 | setCmdDecl(ImplicitParamDecl::Create( |
| 1151 | Context, this, SourceLocation(), &Context.Idents.get("_cmd"), |
| 1152 | Context.getObjCSelType(), ImplicitParamDecl::ObjCCmd)); |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1153 | } |
| 1154 | |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1155 | ObjCInterfaceDecl *ObjCMethodDecl::getClassInterface() { |
| Eugene Zelenko | 2a1ba94 | 2018-04-09 22:14:10 +0000 | [diff] [blame] | 1156 | if (auto *ID = dyn_cast<ObjCInterfaceDecl>(getDeclContext())) |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1157 | return ID; |
| Eugene Zelenko | 2a1ba94 | 2018-04-09 22:14:10 +0000 | [diff] [blame] | 1158 | if (auto *CD = dyn_cast<ObjCCategoryDecl>(getDeclContext())) |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1159 | return CD->getClassInterface(); |
| Eugene Zelenko | 2a1ba94 | 2018-04-09 22:14:10 +0000 | [diff] [blame] | 1160 | if (auto *IMD = dyn_cast<ObjCImplDecl>(getDeclContext())) |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1161 | return IMD->getClassInterface(); |
| Fariborz Jahanian | 7a58302 | 2014-03-04 22:57:32 +0000 | [diff] [blame] | 1162 | if (isa<ObjCProtocolDecl>(getDeclContext())) |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 1163 | return nullptr; |
| David Blaikie | 83d382b | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 1164 | llvm_unreachable("unknown method context"); |
| Fariborz Jahanian | fbbaf6a | 2008-12-05 22:32:48 +0000 | [diff] [blame] | 1165 | } |
| 1166 | |
| Aaron Ballman | 4bfa0de | 2014-08-01 12:58:11 +0000 | [diff] [blame] | 1167 | SourceRange ObjCMethodDecl::getReturnTypeSourceRange() const { |
| 1168 | const auto *TSI = getReturnTypeSourceInfo(); |
| 1169 | if (TSI) |
| 1170 | return TSI->getTypeLoc().getSourceRange(); |
| 1171 | return SourceRange(); |
| 1172 | } |
| 1173 | |
| Douglas Gregor | 9b7b3e9 | 2015-07-07 06:20:27 +0000 | [diff] [blame] | 1174 | QualType ObjCMethodDecl::getSendResultType() const { |
| 1175 | ASTContext &Ctx = getASTContext(); |
| 1176 | return getReturnType().getNonLValueExprType(Ctx) |
| 1177 | .substObjCTypeArgs(Ctx, {}, ObjCSubstitutionContext::Result); |
| 1178 | } |
| 1179 | |
| Douglas Gregor | e83b956 | 2015-07-07 03:57:53 +0000 | [diff] [blame] | 1180 | QualType ObjCMethodDecl::getSendResultType(QualType receiverType) const { |
| 1181 | // FIXME: Handle related result types here. |
| 1182 | |
| 1183 | return getReturnType().getNonLValueExprType(getASTContext()) |
| 1184 | .substObjCMemberType(receiverType, getDeclContext(), |
| 1185 | ObjCSubstitutionContext::Result); |
| 1186 | } |
| 1187 | |
| Argyrios Kyrtzidis | 353f6a4 | 2012-10-09 18:19:01 +0000 | [diff] [blame] | 1188 | static void CollectOverriddenMethodsRecurse(const ObjCContainerDecl *Container, |
| 1189 | const ObjCMethodDecl *Method, |
| 1190 | SmallVectorImpl<const ObjCMethodDecl *> &Methods, |
| 1191 | bool MovedToSuper) { |
| 1192 | if (!Container) |
| 1193 | return; |
| 1194 | |
| Alexander Kornienko | 2a8c18d | 2018-04-06 15:14:32 +0000 | [diff] [blame] | 1195 | // In categories look for overridden methods from protocols. A method from |
| 1196 | // category is not "overridden" since it is considered as the "same" method |
| Argyrios Kyrtzidis | 353f6a4 | 2012-10-09 18:19:01 +0000 | [diff] [blame] | 1197 | // (same USR) as the one from the interface. |
| Eugene Zelenko | 2a1ba94 | 2018-04-09 22:14:10 +0000 | [diff] [blame] | 1198 | if (const auto *Category = dyn_cast<ObjCCategoryDecl>(Container)) { |
| Argyrios Kyrtzidis | 353f6a4 | 2012-10-09 18:19:01 +0000 | [diff] [blame] | 1199 | // Check whether we have a matching method at this category but only if we |
| 1200 | // are at the super class level. |
| 1201 | if (MovedToSuper) |
| 1202 | if (ObjCMethodDecl * |
| 1203 | Overridden = Container->getMethod(Method->getSelector(), |
| Argyrios Kyrtzidis | bd8cd3e | 2013-03-29 21:51:48 +0000 | [diff] [blame] | 1204 | Method->isInstanceMethod(), |
| 1205 | /*AllowHidden=*/true)) |
| Argyrios Kyrtzidis | 353f6a4 | 2012-10-09 18:19:01 +0000 | [diff] [blame] | 1206 | if (Method != Overridden) { |
| 1207 | // We found an override at this category; there is no need to look |
| 1208 | // into its protocols. |
| 1209 | Methods.push_back(Overridden); |
| 1210 | return; |
| 1211 | } |
| 1212 | |
| Aaron Ballman | 19a4176 | 2014-03-14 12:55:57 +0000 | [diff] [blame] | 1213 | for (const auto *P : Category->protocols()) |
| 1214 | CollectOverriddenMethodsRecurse(P, Method, Methods, MovedToSuper); |
| Argyrios Kyrtzidis | 353f6a4 | 2012-10-09 18:19:01 +0000 | [diff] [blame] | 1215 | return; |
| 1216 | } |
| 1217 | |
| 1218 | // Check whether we have a matching method at this level. |
| 1219 | if (const ObjCMethodDecl * |
| 1220 | Overridden = Container->getMethod(Method->getSelector(), |
| Argyrios Kyrtzidis | bd8cd3e | 2013-03-29 21:51:48 +0000 | [diff] [blame] | 1221 | Method->isInstanceMethod(), |
| 1222 | /*AllowHidden=*/true)) |
| Argyrios Kyrtzidis | 353f6a4 | 2012-10-09 18:19:01 +0000 | [diff] [blame] | 1223 | if (Method != Overridden) { |
| 1224 | // We found an override at this level; there is no need to look |
| 1225 | // into other protocols or categories. |
| 1226 | Methods.push_back(Overridden); |
| 1227 | return; |
| 1228 | } |
| 1229 | |
| Eugene Zelenko | 2a1ba94 | 2018-04-09 22:14:10 +0000 | [diff] [blame] | 1230 | if (const auto *Protocol = dyn_cast<ObjCProtocolDecl>(Container)){ |
| Aaron Ballman | 0f6e64d | 2014-03-13 22:58:06 +0000 | [diff] [blame] | 1231 | for (const auto *P : Protocol->protocols()) |
| 1232 | CollectOverriddenMethodsRecurse(P, Method, Methods, MovedToSuper); |
| Argyrios Kyrtzidis | 353f6a4 | 2012-10-09 18:19:01 +0000 | [diff] [blame] | 1233 | } |
| 1234 | |
| Eugene Zelenko | 2a1ba94 | 2018-04-09 22:14:10 +0000 | [diff] [blame] | 1235 | if (const auto *Interface = dyn_cast<ObjCInterfaceDecl>(Container)) { |
| Aaron Ballman | a49c506 | 2014-03-13 20:29:09 +0000 | [diff] [blame] | 1236 | for (const auto *P : Interface->protocols()) |
| 1237 | CollectOverriddenMethodsRecurse(P, Method, Methods, MovedToSuper); |
| Argyrios Kyrtzidis | 353f6a4 | 2012-10-09 18:19:01 +0000 | [diff] [blame] | 1238 | |
| Aaron Ballman | 15063e1 | 2014-03-13 21:35:02 +0000 | [diff] [blame] | 1239 | for (const auto *Cat : Interface->known_categories()) |
| 1240 | CollectOverriddenMethodsRecurse(Cat, Method, Methods, MovedToSuper); |
| Argyrios Kyrtzidis | 353f6a4 | 2012-10-09 18:19:01 +0000 | [diff] [blame] | 1241 | |
| 1242 | if (const ObjCInterfaceDecl *Super = Interface->getSuperClass()) |
| 1243 | return CollectOverriddenMethodsRecurse(Super, Method, Methods, |
| 1244 | /*MovedToSuper=*/true); |
| 1245 | } |
| 1246 | } |
| 1247 | |
| 1248 | static inline void CollectOverriddenMethods(const ObjCContainerDecl *Container, |
| 1249 | const ObjCMethodDecl *Method, |
| 1250 | SmallVectorImpl<const ObjCMethodDecl *> &Methods) { |
| 1251 | CollectOverriddenMethodsRecurse(Container, Method, Methods, |
| 1252 | /*MovedToSuper=*/false); |
| 1253 | } |
| 1254 | |
| 1255 | static void collectOverriddenMethodsSlow(const ObjCMethodDecl *Method, |
| 1256 | SmallVectorImpl<const ObjCMethodDecl *> &overridden) { |
| 1257 | assert(Method->isOverriding()); |
| 1258 | |
| Eugene Zelenko | 2a1ba94 | 2018-04-09 22:14:10 +0000 | [diff] [blame] | 1259 | if (const auto *ProtD = |
| 1260 | dyn_cast<ObjCProtocolDecl>(Method->getDeclContext())) { |
| Argyrios Kyrtzidis | 353f6a4 | 2012-10-09 18:19:01 +0000 | [diff] [blame] | 1261 | CollectOverriddenMethods(ProtD, Method, overridden); |
| 1262 | |
| Eugene Zelenko | 2a1ba94 | 2018-04-09 22:14:10 +0000 | [diff] [blame] | 1263 | } else if (const auto *IMD = |
| 1264 | dyn_cast<ObjCImplDecl>(Method->getDeclContext())) { |
| Argyrios Kyrtzidis | 353f6a4 | 2012-10-09 18:19:01 +0000 | [diff] [blame] | 1265 | const ObjCInterfaceDecl *ID = IMD->getClassInterface(); |
| 1266 | if (!ID) |
| 1267 | return; |
| 1268 | // Start searching for overridden methods using the method from the |
| 1269 | // interface as starting point. |
| 1270 | if (const ObjCMethodDecl *IFaceMeth = ID->getMethod(Method->getSelector(), |
| Argyrios Kyrtzidis | bd8cd3e | 2013-03-29 21:51:48 +0000 | [diff] [blame] | 1271 | Method->isInstanceMethod(), |
| 1272 | /*AllowHidden=*/true)) |
| Argyrios Kyrtzidis | 353f6a4 | 2012-10-09 18:19:01 +0000 | [diff] [blame] | 1273 | Method = IFaceMeth; |
| 1274 | CollectOverriddenMethods(ID, Method, overridden); |
| 1275 | |
| Eugene Zelenko | 2a1ba94 | 2018-04-09 22:14:10 +0000 | [diff] [blame] | 1276 | } else if (const auto *CatD = |
| 1277 | dyn_cast<ObjCCategoryDecl>(Method->getDeclContext())) { |
| Argyrios Kyrtzidis | 353f6a4 | 2012-10-09 18:19:01 +0000 | [diff] [blame] | 1278 | const ObjCInterfaceDecl *ID = CatD->getClassInterface(); |
| 1279 | if (!ID) |
| 1280 | return; |
| 1281 | // Start searching for overridden methods using the method from the |
| 1282 | // interface as starting point. |
| 1283 | if (const ObjCMethodDecl *IFaceMeth = ID->getMethod(Method->getSelector(), |
| Argyrios Kyrtzidis | bd8cd3e | 2013-03-29 21:51:48 +0000 | [diff] [blame] | 1284 | Method->isInstanceMethod(), |
| 1285 | /*AllowHidden=*/true)) |
| Argyrios Kyrtzidis | 353f6a4 | 2012-10-09 18:19:01 +0000 | [diff] [blame] | 1286 | Method = IFaceMeth; |
| 1287 | CollectOverriddenMethods(ID, Method, overridden); |
| 1288 | |
| 1289 | } else { |
| 1290 | CollectOverriddenMethods( |
| 1291 | dyn_cast_or_null<ObjCContainerDecl>(Method->getDeclContext()), |
| 1292 | Method, overridden); |
| 1293 | } |
| 1294 | } |
| 1295 | |
| Argyrios Kyrtzidis | 353f6a4 | 2012-10-09 18:19:01 +0000 | [diff] [blame] | 1296 | void ObjCMethodDecl::getOverriddenMethods( |
| 1297 | SmallVectorImpl<const ObjCMethodDecl *> &Overridden) const { |
| 1298 | const ObjCMethodDecl *Method = this; |
| 1299 | |
| 1300 | if (Method->isRedeclaration()) { |
| 1301 | Method = cast<ObjCContainerDecl>(Method->getDeclContext())-> |
| 1302 | getMethod(Method->getSelector(), Method->isInstanceMethod()); |
| 1303 | } |
| 1304 | |
| Argyrios Kyrtzidis | c2091d5 | 2013-04-17 00:09:08 +0000 | [diff] [blame] | 1305 | if (Method->isOverriding()) { |
| Argyrios Kyrtzidis | 353f6a4 | 2012-10-09 18:19:01 +0000 | [diff] [blame] | 1306 | collectOverriddenMethodsSlow(Method, Overridden); |
| 1307 | assert(!Overridden.empty() && |
| 1308 | "ObjCMethodDecl's overriding bit is not as expected"); |
| 1309 | } |
| 1310 | } |
| 1311 | |
| Jordan Rose | 2bd991a | 2012-10-10 16:42:54 +0000 | [diff] [blame] | 1312 | const ObjCPropertyDecl * |
| 1313 | ObjCMethodDecl::findPropertyDecl(bool CheckOverrides) const { |
| 1314 | Selector Sel = getSelector(); |
| 1315 | unsigned NumArgs = Sel.getNumArgs(); |
| 1316 | if (NumArgs > 1) |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 1317 | return nullptr; |
| Jordan Rose | 2bd991a | 2012-10-10 16:42:54 +0000 | [diff] [blame] | 1318 | |
| Jordan Rose | 2bd991a | 2012-10-10 16:42:54 +0000 | [diff] [blame] | 1319 | if (isPropertyAccessor()) { |
| Eugene Zelenko | 2a1ba94 | 2018-04-09 22:14:10 +0000 | [diff] [blame] | 1320 | const auto *Container = cast<ObjCContainerDecl>(getParent()); |
| Adrian Prantl | 2073dd2 | 2019-11-04 14:28:14 -0800 | [diff] [blame] | 1321 | // For accessor stubs, go back to the interface. |
| 1322 | if (auto *ImplDecl = dyn_cast<ObjCImplDecl>(Container)) |
| 1323 | if (isSynthesizedAccessorStub()) |
| 1324 | Container = ImplDecl->getClassInterface(); |
| 1325 | |
| Jordan Rose | 2bd991a | 2012-10-10 16:42:54 +0000 | [diff] [blame] | 1326 | bool IsGetter = (NumArgs == 0); |
| Jordan Rose | 31cf7d4 | 2016-03-11 21:14:40 +0000 | [diff] [blame] | 1327 | bool IsInstance = isInstanceMethod(); |
| Jordan Rose | 2bd991a | 2012-10-10 16:42:54 +0000 | [diff] [blame] | 1328 | |
| Douglas Gregor | acf4fd3 | 2015-11-03 01:15:46 +0000 | [diff] [blame] | 1329 | /// Local function that attempts to find a matching property within the |
| 1330 | /// given Objective-C container. |
| 1331 | auto findMatchingProperty = |
| 1332 | [&](const ObjCContainerDecl *Container) -> const ObjCPropertyDecl * { |
| Jordan Rose | 31cf7d4 | 2016-03-11 21:14:40 +0000 | [diff] [blame] | 1333 | if (IsInstance) { |
| 1334 | for (const auto *I : Container->instance_properties()) { |
| 1335 | Selector NextSel = IsGetter ? I->getGetterName() |
| 1336 | : I->getSetterName(); |
| 1337 | if (NextSel == Sel) |
| 1338 | return I; |
| 1339 | } |
| 1340 | } else { |
| 1341 | for (const auto *I : Container->class_properties()) { |
| 1342 | Selector NextSel = IsGetter ? I->getGetterName() |
| 1343 | : I->getSetterName(); |
| 1344 | if (NextSel == Sel) |
| 1345 | return I; |
| 1346 | } |
| Douglas Gregor | acf4fd3 | 2015-11-03 01:15:46 +0000 | [diff] [blame] | 1347 | } |
| 1348 | |
| 1349 | return nullptr; |
| 1350 | }; |
| 1351 | |
| 1352 | // Look in the container we were given. |
| 1353 | if (const auto *Found = findMatchingProperty(Container)) |
| 1354 | return Found; |
| 1355 | |
| 1356 | // If we're in a category or extension, look in the main class. |
| 1357 | const ObjCInterfaceDecl *ClassDecl = nullptr; |
| 1358 | if (const auto *Category = dyn_cast<ObjCCategoryDecl>(Container)) { |
| 1359 | ClassDecl = Category->getClassInterface(); |
| 1360 | if (const auto *Found = findMatchingProperty(ClassDecl)) |
| 1361 | return Found; |
| 1362 | } else { |
| 1363 | // Determine whether the container is a class. |
| Simon Pilgrim | 6999335 | 2020-03-12 15:36:33 +0000 | [diff] [blame] | 1364 | ClassDecl = cast<ObjCInterfaceDecl>(Container); |
| Douglas Gregor | acf4fd3 | 2015-11-03 01:15:46 +0000 | [diff] [blame] | 1365 | } |
| Simon Pilgrim | 6999335 | 2020-03-12 15:36:33 +0000 | [diff] [blame] | 1366 | assert(ClassDecl && "Failed to find main class"); |
| Douglas Gregor | acf4fd3 | 2015-11-03 01:15:46 +0000 | [diff] [blame] | 1367 | |
| 1368 | // If we have a class, check its visible extensions. |
| Simon Pilgrim | 6999335 | 2020-03-12 15:36:33 +0000 | [diff] [blame] | 1369 | for (const auto *Ext : ClassDecl->visible_extensions()) { |
| 1370 | if (Ext == Container) |
| 1371 | continue; |
| 1372 | if (const auto *Found = findMatchingProperty(Ext)) |
| 1373 | return Found; |
| Jordan Rose | 2bd991a | 2012-10-10 16:42:54 +0000 | [diff] [blame] | 1374 | } |
| 1375 | |
| Adrian Prantl | 2073dd2 | 2019-11-04 14:28:14 -0800 | [diff] [blame] | 1376 | assert(isSynthesizedAccessorStub() && "expected an accessor stub"); |
| Simon Pilgrim | 6999335 | 2020-03-12 15:36:33 +0000 | [diff] [blame] | 1377 | |
| Adrian Prantl | 2073dd2 | 2019-11-04 14:28:14 -0800 | [diff] [blame] | 1378 | for (const auto *Cat : ClassDecl->known_categories()) { |
| 1379 | if (Cat == Container) |
| 1380 | continue; |
| Adrian Prantl | 2073dd2 | 2019-11-04 14:28:14 -0800 | [diff] [blame] | 1381 | if (const auto *Found = findMatchingProperty(Cat)) |
| 1382 | return Found; |
| 1383 | } |
| 1384 | |
| Jordan Rose | 2bd991a | 2012-10-10 16:42:54 +0000 | [diff] [blame] | 1385 | llvm_unreachable("Marked as a property accessor but no property found!"); |
| 1386 | } |
| 1387 | |
| 1388 | if (!CheckOverrides) |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 1389 | return nullptr; |
| Jordan Rose | 2bd991a | 2012-10-10 16:42:54 +0000 | [diff] [blame] | 1390 | |
| Eugene Zelenko | 2f8e66b | 2017-11-22 21:32:07 +0000 | [diff] [blame] | 1391 | using OverridesTy = SmallVector<const ObjCMethodDecl *, 8>; |
| 1392 | |
| Jordan Rose | 2bd991a | 2012-10-10 16:42:54 +0000 | [diff] [blame] | 1393 | OverridesTy Overrides; |
| 1394 | getOverriddenMethods(Overrides); |
| Eugene Zelenko | 2a1ba94 | 2018-04-09 22:14:10 +0000 | [diff] [blame] | 1395 | for (const auto *Override : Overrides) |
| 1396 | if (const ObjCPropertyDecl *Prop = Override->findPropertyDecl(false)) |
| Jordan Rose | 2bd991a | 2012-10-10 16:42:54 +0000 | [diff] [blame] | 1397 | return Prop; |
| Jordan Rose | 2bd991a | 2012-10-10 16:42:54 +0000 | [diff] [blame] | 1398 | |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 1399 | return nullptr; |
| Jordan Rose | 2bd991a | 2012-10-10 16:42:54 +0000 | [diff] [blame] | 1400 | } |
| 1401 | |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1402 | //===----------------------------------------------------------------------===// |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 1403 | // ObjCTypeParamDecl |
| 1404 | //===----------------------------------------------------------------------===// |
| 1405 | |
| Eugene Zelenko | 2f8e66b | 2017-11-22 21:32:07 +0000 | [diff] [blame] | 1406 | void ObjCTypeParamDecl::anchor() {} |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 1407 | |
| 1408 | ObjCTypeParamDecl *ObjCTypeParamDecl::Create(ASTContext &ctx, DeclContext *dc, |
| Douglas Gregor | 1ac1b63 | 2015-07-07 03:58:54 +0000 | [diff] [blame] | 1409 | ObjCTypeParamVariance variance, |
| 1410 | SourceLocation varianceLoc, |
| Douglas Gregor | e83b956 | 2015-07-07 03:57:53 +0000 | [diff] [blame] | 1411 | unsigned index, |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 1412 | SourceLocation nameLoc, |
| 1413 | IdentifierInfo *name, |
| 1414 | SourceLocation colonLoc, |
| 1415 | TypeSourceInfo *boundInfo) { |
| Manman Ren | c5705ba | 2016-09-13 17:41:05 +0000 | [diff] [blame] | 1416 | auto *TPDecl = |
| 1417 | new (ctx, dc) ObjCTypeParamDecl(ctx, dc, variance, varianceLoc, index, |
| 1418 | nameLoc, name, colonLoc, boundInfo); |
| 1419 | QualType TPType = ctx.getObjCTypeParamType(TPDecl, {}); |
| 1420 | TPDecl->setTypeForDecl(TPType.getTypePtr()); |
| 1421 | return TPDecl; |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 1422 | } |
| 1423 | |
| 1424 | ObjCTypeParamDecl *ObjCTypeParamDecl::CreateDeserialized(ASTContext &ctx, |
| 1425 | unsigned ID) { |
| Douglas Gregor | 1ac1b63 | 2015-07-07 03:58:54 +0000 | [diff] [blame] | 1426 | return new (ctx, ID) ObjCTypeParamDecl(ctx, nullptr, |
| 1427 | ObjCTypeParamVariance::Invariant, |
| 1428 | SourceLocation(), 0, SourceLocation(), |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 1429 | nullptr, SourceLocation(), nullptr); |
| 1430 | } |
| 1431 | |
| 1432 | SourceRange ObjCTypeParamDecl::getSourceRange() const { |
| Douglas Gregor | 1ac1b63 | 2015-07-07 03:58:54 +0000 | [diff] [blame] | 1433 | SourceLocation startLoc = VarianceLoc; |
| 1434 | if (startLoc.isInvalid()) |
| 1435 | startLoc = getLocation(); |
| 1436 | |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 1437 | if (hasExplicitBound()) { |
| Douglas Gregor | 1ac1b63 | 2015-07-07 03:58:54 +0000 | [diff] [blame] | 1438 | return SourceRange(startLoc, |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 1439 | getTypeSourceInfo()->getTypeLoc().getEndLoc()); |
| 1440 | } |
| 1441 | |
| Douglas Gregor | 1ac1b63 | 2015-07-07 03:58:54 +0000 | [diff] [blame] | 1442 | return SourceRange(startLoc); |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 1443 | } |
| 1444 | |
| 1445 | //===----------------------------------------------------------------------===// |
| 1446 | // ObjCTypeParamList |
| 1447 | //===----------------------------------------------------------------------===// |
| 1448 | ObjCTypeParamList::ObjCTypeParamList(SourceLocation lAngleLoc, |
| 1449 | ArrayRef<ObjCTypeParamDecl *> typeParams, |
| 1450 | SourceLocation rAngleLoc) |
| Eugene Zelenko | 2f8e66b | 2017-11-22 21:32:07 +0000 | [diff] [blame] | 1451 | : NumParams(typeParams.size()) { |
| Douglas Gregor | 0a8890ff | 2015-07-07 06:20:46 +0000 | [diff] [blame] | 1452 | Brackets.Begin = lAngleLoc.getRawEncoding(); |
| 1453 | Brackets.End = rAngleLoc.getRawEncoding(); |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 1454 | std::copy(typeParams.begin(), typeParams.end(), begin()); |
| 1455 | } |
| 1456 | |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 1457 | ObjCTypeParamList *ObjCTypeParamList::create( |
| 1458 | ASTContext &ctx, |
| 1459 | SourceLocation lAngleLoc, |
| 1460 | ArrayRef<ObjCTypeParamDecl *> typeParams, |
| 1461 | SourceLocation rAngleLoc) { |
| James Y Knight | 967eb20 | 2015-12-29 22:13:13 +0000 | [diff] [blame] | 1462 | void *mem = |
| 1463 | ctx.Allocate(totalSizeToAlloc<ObjCTypeParamDecl *>(typeParams.size()), |
| Benjamin Kramer | c3f8925 | 2016-10-20 14:27:22 +0000 | [diff] [blame] | 1464 | alignof(ObjCTypeParamList)); |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 1465 | return new (mem) ObjCTypeParamList(lAngleLoc, typeParams, rAngleLoc); |
| 1466 | } |
| 1467 | |
| Douglas Gregor | e83b956 | 2015-07-07 03:57:53 +0000 | [diff] [blame] | 1468 | void ObjCTypeParamList::gatherDefaultTypeArgs( |
| 1469 | SmallVectorImpl<QualType> &typeArgs) const { |
| 1470 | typeArgs.reserve(size()); |
| 1471 | for (auto typeParam : *this) |
| 1472 | typeArgs.push_back(typeParam->getUnderlyingType()); |
| 1473 | } |
| 1474 | |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 1475 | //===----------------------------------------------------------------------===// |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1476 | // ObjCInterfaceDecl |
| 1477 | //===----------------------------------------------------------------------===// |
| 1478 | |
| Douglas Gregor | d53ae83 | 2012-01-17 18:09:05 +0000 | [diff] [blame] | 1479 | ObjCInterfaceDecl *ObjCInterfaceDecl::Create(const ASTContext &C, |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1480 | DeclContext *DC, |
| 1481 | SourceLocation atLoc, |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1482 | IdentifierInfo *Id, |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 1483 | ObjCTypeParamList *typeParamList, |
| Douglas Gregor | ab1ec82e | 2011-12-16 03:12:41 +0000 | [diff] [blame] | 1484 | ObjCInterfaceDecl *PrevDecl, |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1485 | SourceLocation ClassLoc, |
| Douglas Gregor | dc9166c | 2011-12-15 20:29:51 +0000 | [diff] [blame] | 1486 | bool isInternal){ |
| Eugene Zelenko | 2a1ba94 | 2018-04-09 22:14:10 +0000 | [diff] [blame] | 1487 | auto *Result = new (C, DC) |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 1488 | ObjCInterfaceDecl(C, DC, atLoc, Id, typeParamList, ClassLoc, PrevDecl, |
| 1489 | isInternal); |
| Douglas Gregor | 7dab26b | 2013-02-09 01:35:03 +0000 | [diff] [blame] | 1490 | Result->Data.setInt(!C.getLangOpts().Modules); |
| Douglas Gregor | ab1ec82e | 2011-12-16 03:12:41 +0000 | [diff] [blame] | 1491 | C.getObjCInterfaceType(Result, PrevDecl); |
| Douglas Gregor | ab1ec82e | 2011-12-16 03:12:41 +0000 | [diff] [blame] | 1492 | return Result; |
| 1493 | } |
| 1494 | |
| Richard Smith | 053f6c6 | 2014-05-16 23:01:30 +0000 | [diff] [blame] | 1495 | ObjCInterfaceDecl *ObjCInterfaceDecl::CreateDeserialized(const ASTContext &C, |
| Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 1496 | unsigned ID) { |
| Eugene Zelenko | 2a1ba94 | 2018-04-09 22:14:10 +0000 | [diff] [blame] | 1497 | auto *Result = new (C, ID) |
| 1498 | ObjCInterfaceDecl(C, nullptr, SourceLocation(), nullptr, nullptr, |
| 1499 | SourceLocation(), nullptr, false); |
| Douglas Gregor | 7dab26b | 2013-02-09 01:35:03 +0000 | [diff] [blame] | 1500 | Result->Data.setInt(!C.getLangOpts().Modules); |
| 1501 | return Result; |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1502 | } |
| 1503 | |
| Richard Smith | 053f6c6 | 2014-05-16 23:01:30 +0000 | [diff] [blame] | 1504 | ObjCInterfaceDecl::ObjCInterfaceDecl(const ASTContext &C, DeclContext *DC, |
| 1505 | SourceLocation AtLoc, IdentifierInfo *Id, |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 1506 | ObjCTypeParamList *typeParamList, |
| Richard Smith | 053f6c6 | 2014-05-16 23:01:30 +0000 | [diff] [blame] | 1507 | SourceLocation CLoc, |
| 1508 | ObjCInterfaceDecl *PrevDecl, |
| 1509 | bool IsInternal) |
| 1510 | : ObjCContainerDecl(ObjCInterface, DC, Id, CLoc, AtLoc), |
| Eugene Zelenko | 2f8e66b | 2017-11-22 21:32:07 +0000 | [diff] [blame] | 1511 | redeclarable_base(C) { |
| Rafael Espindola | 8db352d | 2013-10-17 15:37:26 +0000 | [diff] [blame] | 1512 | setPreviousDecl(PrevDecl); |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1513 | |
| Douglas Gregor | 8125235 | 2011-12-16 22:37:11 +0000 | [diff] [blame] | 1514 | // Copy the 'data' pointer over. |
| 1515 | if (PrevDecl) |
| 1516 | Data = PrevDecl->Data; |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1517 | |
| Richard Smith | 053f6c6 | 2014-05-16 23:01:30 +0000 | [diff] [blame] | 1518 | setImplicit(IsInternal); |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 1519 | |
| Douglas Gregor | ab7f0b3 | 2015-07-07 06:20:12 +0000 | [diff] [blame] | 1520 | setTypeParamList(typeParamList); |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1521 | } |
| 1522 | |
| Douglas Gregor | 7369302 | 2010-12-01 23:49:52 +0000 | [diff] [blame] | 1523 | void ObjCInterfaceDecl::LoadExternalDefinition() const { |
| Douglas Gregor | c0ac7d6 | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 1524 | assert(data().ExternallyCompleted && "Class is not externally completed"); |
| 1525 | data().ExternallyCompleted = false; |
| Douglas Gregor | 7369302 | 2010-12-01 23:49:52 +0000 | [diff] [blame] | 1526 | getASTContext().getExternalSource()->CompleteType( |
| 1527 | const_cast<ObjCInterfaceDecl *>(this)); |
| 1528 | } |
| 1529 | |
| 1530 | void ObjCInterfaceDecl::setExternallyCompleted() { |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1531 | assert(getASTContext().getExternalSource() && |
| Douglas Gregor | 7369302 | 2010-12-01 23:49:52 +0000 | [diff] [blame] | 1532 | "Class can't be externally completed without an external source"); |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1533 | assert(hasDefinition() && |
| Douglas Gregor | 7369302 | 2010-12-01 23:49:52 +0000 | [diff] [blame] | 1534 | "Forward declarations can't be externally completed"); |
| Douglas Gregor | c0ac7d6 | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 1535 | data().ExternallyCompleted = true; |
| Douglas Gregor | 7369302 | 2010-12-01 23:49:52 +0000 | [diff] [blame] | 1536 | } |
| 1537 | |
| Argyrios Kyrtzidis | 9ed9e5f | 2013-12-03 21:11:30 +0000 | [diff] [blame] | 1538 | void ObjCInterfaceDecl::setHasDesignatedInitializers() { |
| Fariborz Jahanian | 0c32531 | 2014-03-11 18:56:18 +0000 | [diff] [blame] | 1539 | // Check for a complete definition and recover if not so. |
| 1540 | if (!isThisDeclarationADefinition()) |
| 1541 | return; |
| Argyrios Kyrtzidis | 9ed9e5f | 2013-12-03 21:11:30 +0000 | [diff] [blame] | 1542 | data().HasDesignatedInitializers = true; |
| 1543 | } |
| 1544 | |
| Argyrios Kyrtzidis | b66d3cf | 2013-12-03 21:11:49 +0000 | [diff] [blame] | 1545 | bool ObjCInterfaceDecl::hasDesignatedInitializers() const { |
| Fariborz Jahanian | 0c32531 | 2014-03-11 18:56:18 +0000 | [diff] [blame] | 1546 | // Check for a complete definition and recover if not so. |
| 1547 | if (!isThisDeclarationADefinition()) |
| 1548 | return false; |
| Argyrios Kyrtzidis | b66d3cf | 2013-12-03 21:11:49 +0000 | [diff] [blame] | 1549 | if (data().ExternallyCompleted) |
| 1550 | LoadExternalDefinition(); |
| 1551 | |
| 1552 | return data().HasDesignatedInitializers; |
| 1553 | } |
| 1554 | |
| Fariborz Jahanian | 451b92a | 2014-07-16 16:16:04 +0000 | [diff] [blame] | 1555 | StringRef |
| 1556 | ObjCInterfaceDecl::getObjCRuntimeNameAsString() const { |
| Eugene Zelenko | 2a1ba94 | 2018-04-09 22:14:10 +0000 | [diff] [blame] | 1557 | if (const auto *ObjCRTName = getAttr<ObjCRuntimeNameAttr>()) |
| Fariborz Jahanian | a2e5deb | 2014-07-16 19:44:34 +0000 | [diff] [blame] | 1558 | return ObjCRTName->getMetadataName(); |
| 1559 | |
| 1560 | return getName(); |
| Fariborz Jahanian | 451b92a | 2014-07-16 16:16:04 +0000 | [diff] [blame] | 1561 | } |
| 1562 | |
| 1563 | StringRef |
| 1564 | ObjCImplementationDecl::getObjCRuntimeNameAsString() const { |
| Fariborz Jahanian | a2e5deb | 2014-07-16 19:44:34 +0000 | [diff] [blame] | 1565 | if (ObjCInterfaceDecl *ID = |
| 1566 | const_cast<ObjCImplementationDecl*>(this)->getClassInterface()) |
| 1567 | return ID->getObjCRuntimeNameAsString(); |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1568 | |
| Fariborz Jahanian | a2e5deb | 2014-07-16 19:44:34 +0000 | [diff] [blame] | 1569 | return getName(); |
| Fariborz Jahanian | 451b92a | 2014-07-16 16:16:04 +0000 | [diff] [blame] | 1570 | } |
| 1571 | |
| Argyrios Kyrtzidis | 6d9fab7 | 2009-07-21 00:05:53 +0000 | [diff] [blame] | 1572 | ObjCImplementationDecl *ObjCInterfaceDecl::getImplementation() const { |
| Douglas Gregor | dc9166c | 2011-12-15 20:29:51 +0000 | [diff] [blame] | 1573 | if (const ObjCInterfaceDecl *Def = getDefinition()) { |
| 1574 | if (data().ExternallyCompleted) |
| 1575 | LoadExternalDefinition(); |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1576 | |
| Douglas Gregor | dc9166c | 2011-12-15 20:29:51 +0000 | [diff] [blame] | 1577 | return getASTContext().getObjCImplementation( |
| 1578 | const_cast<ObjCInterfaceDecl*>(Def)); |
| 1579 | } |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1580 | |
| Douglas Gregor | c0ac7d6 | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 1581 | // FIXME: Should make sure no callers ever do this. |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 1582 | return nullptr; |
| Argyrios Kyrtzidis | 6d9fab7 | 2009-07-21 00:05:53 +0000 | [diff] [blame] | 1583 | } |
| 1584 | |
| 1585 | void ObjCInterfaceDecl::setImplementation(ObjCImplementationDecl *ImplD) { |
| Douglas Gregor | dc9166c | 2011-12-15 20:29:51 +0000 | [diff] [blame] | 1586 | getASTContext().setObjCImplementation(getDefinition(), ImplD); |
| Argyrios Kyrtzidis | 6d9fab7 | 2009-07-21 00:05:53 +0000 | [diff] [blame] | 1587 | } |
| 1588 | |
| Fariborz Jahanian | 3c82204 | 2013-02-13 22:50:36 +0000 | [diff] [blame] | 1589 | namespace { |
| Fariborz Jahanian | 3c82204 | 2013-02-13 22:50:36 +0000 | [diff] [blame] | 1590 | |
| Eugene Zelenko | 2f8e66b | 2017-11-22 21:32:07 +0000 | [diff] [blame] | 1591 | struct SynthesizeIvarChunk { |
| 1592 | uint64_t Size; |
| 1593 | ObjCIvarDecl *Ivar; |
| 1594 | |
| 1595 | SynthesizeIvarChunk(uint64_t size, ObjCIvarDecl *ivar) |
| 1596 | : Size(size), Ivar(ivar) {} |
| 1597 | }; |
| 1598 | |
| 1599 | bool operator<(const SynthesizeIvarChunk & LHS, |
| 1600 | const SynthesizeIvarChunk &RHS) { |
| 1601 | return LHS.Size < RHS.Size; |
| Alexander Kornienko | ab9db51 | 2015-06-22 23:07:51 +0000 | [diff] [blame] | 1602 | } |
| Fariborz Jahanian | 3c82204 | 2013-02-13 22:50:36 +0000 | [diff] [blame] | 1603 | |
| Eugene Zelenko | 2f8e66b | 2017-11-22 21:32:07 +0000 | [diff] [blame] | 1604 | } // namespace |
| 1605 | |
| Fariborz Jahanian | a50b3a2 | 2010-08-20 21:21:08 +0000 | [diff] [blame] | 1606 | /// all_declared_ivar_begin - return first ivar declared in this class, |
| 1607 | /// its extensions and its implementation. Lazily build the list on first |
| 1608 | /// access. |
| Adrian Prantl | a03a85a | 2013-03-06 22:03:30 +0000 | [diff] [blame] | 1609 | /// |
| 1610 | /// Caveat: The list returned by this method reflects the current |
| 1611 | /// state of the parser. The cache will be updated for every ivar |
| 1612 | /// added by an extension or the implementation when they are |
| 1613 | /// encountered. |
| 1614 | /// See also ObjCIvarDecl::Create(). |
| Fariborz Jahanian | a50b3a2 | 2010-08-20 21:21:08 +0000 | [diff] [blame] | 1615 | ObjCIvarDecl *ObjCInterfaceDecl::all_declared_ivar_begin() { |
| Douglas Gregor | c0ac7d6 | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 1616 | // FIXME: Should make sure no callers ever do this. |
| 1617 | if (!hasDefinition()) |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 1618 | return nullptr; |
| 1619 | |
| 1620 | ObjCIvarDecl *curIvar = nullptr; |
| Adrian Prantl | a03a85a | 2013-03-06 22:03:30 +0000 | [diff] [blame] | 1621 | if (!data().IvarList) { |
| 1622 | if (!ivar_empty()) { |
| 1623 | ObjCInterfaceDecl::ivar_iterator I = ivar_begin(), E = ivar_end(); |
| 1624 | data().IvarList = *I; ++I; |
| 1625 | for (curIvar = data().IvarList; I != E; curIvar = *I, ++I) |
| Adrian Prantl | 68a5750 | 2013-02-27 01:31:55 +0000 | [diff] [blame] | 1626 | curIvar->setNextIvar(*I); |
| 1627 | } |
| Adrian Prantl | a03a85a | 2013-03-06 22:03:30 +0000 | [diff] [blame] | 1628 | |
| Aaron Ballman | b4a5345 | 2014-03-13 21:57:01 +0000 | [diff] [blame] | 1629 | for (const auto *Ext : known_extensions()) { |
| Adrian Prantl | a03a85a | 2013-03-06 22:03:30 +0000 | [diff] [blame] | 1630 | if (!Ext->ivar_empty()) { |
| 1631 | ObjCCategoryDecl::ivar_iterator |
| 1632 | I = Ext->ivar_begin(), |
| 1633 | E = Ext->ivar_end(); |
| 1634 | if (!data().IvarList) { |
| 1635 | data().IvarList = *I; ++I; |
| 1636 | curIvar = data().IvarList; |
| 1637 | } |
| 1638 | for ( ;I != E; curIvar = *I, ++I) |
| 1639 | curIvar->setNextIvar(*I); |
| 1640 | } |
| 1641 | } |
| 1642 | data().IvarListMissingImplementation = true; |
| Adrian Prantl | 68a5750 | 2013-02-27 01:31:55 +0000 | [diff] [blame] | 1643 | } |
| Adrian Prantl | a03a85a | 2013-03-06 22:03:30 +0000 | [diff] [blame] | 1644 | |
| 1645 | // cached and complete! |
| 1646 | if (!data().IvarListMissingImplementation) |
| 1647 | return data().IvarList; |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1648 | |
| Fariborz Jahanian | a50b3a2 | 2010-08-20 21:21:08 +0000 | [diff] [blame] | 1649 | if (ObjCImplementationDecl *ImplDecl = getImplementation()) { |
| Adrian Prantl | a03a85a | 2013-03-06 22:03:30 +0000 | [diff] [blame] | 1650 | data().IvarListMissingImplementation = false; |
| Fariborz Jahanian | a50b3a2 | 2010-08-20 21:21:08 +0000 | [diff] [blame] | 1651 | if (!ImplDecl->ivar_empty()) { |
| Fariborz Jahanian | 3c82204 | 2013-02-13 22:50:36 +0000 | [diff] [blame] | 1652 | SmallVector<SynthesizeIvarChunk, 16> layout; |
| Aaron Ballman | d6d25de | 2014-03-14 15:16:45 +0000 | [diff] [blame] | 1653 | for (auto *IV : ImplDecl->ivars()) { |
| Fariborz Jahanian | 3c82204 | 2013-02-13 22:50:36 +0000 | [diff] [blame] | 1654 | if (IV->getSynthesize() && !IV->isInvalidDecl()) { |
| 1655 | layout.push_back(SynthesizeIvarChunk( |
| 1656 | IV->getASTContext().getTypeSize(IV->getType()), IV)); |
| 1657 | continue; |
| 1658 | } |
| 1659 | if (!data().IvarList) |
| Aaron Ballman | d6d25de | 2014-03-14 15:16:45 +0000 | [diff] [blame] | 1660 | data().IvarList = IV; |
| Fariborz Jahanian | 3c82204 | 2013-02-13 22:50:36 +0000 | [diff] [blame] | 1661 | else |
| Aaron Ballman | d6d25de | 2014-03-14 15:16:45 +0000 | [diff] [blame] | 1662 | curIvar->setNextIvar(IV); |
| 1663 | curIvar = IV; |
| Fariborz Jahanian | a50b3a2 | 2010-08-20 21:21:08 +0000 | [diff] [blame] | 1664 | } |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1665 | |
| Fariborz Jahanian | 3c82204 | 2013-02-13 22:50:36 +0000 | [diff] [blame] | 1666 | if (!layout.empty()) { |
| 1667 | // Order synthesized ivars by their size. |
| Fangrui Song | 899d139 | 2019-04-24 14:43:05 +0000 | [diff] [blame] | 1668 | llvm::stable_sort(layout); |
| Fariborz Jahanian | 3c82204 | 2013-02-13 22:50:36 +0000 | [diff] [blame] | 1669 | unsigned Ix = 0, EIx = layout.size(); |
| 1670 | if (!data().IvarList) { |
| 1671 | data().IvarList = layout[0].Ivar; Ix++; |
| 1672 | curIvar = data().IvarList; |
| 1673 | } |
| 1674 | for ( ; Ix != EIx; curIvar = layout[Ix].Ivar, Ix++) |
| 1675 | curIvar->setNextIvar(layout[Ix].Ivar); |
| 1676 | } |
| Fariborz Jahanian | a50b3a2 | 2010-08-20 21:21:08 +0000 | [diff] [blame] | 1677 | } |
| 1678 | } |
| Douglas Gregor | c0ac7d6 | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 1679 | return data().IvarList; |
| Fariborz Jahanian | a50b3a2 | 2010-08-20 21:21:08 +0000 | [diff] [blame] | 1680 | } |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1681 | |
| 1682 | /// FindCategoryDeclaration - Finds category declaration in the list of |
| 1683 | /// categories for this class and returns it. Name of the category is passed |
| 1684 | /// in 'CategoryId'. If category not found, return 0; |
| Fariborz Jahanian | fbbaf6a | 2008-12-05 22:32:48 +0000 | [diff] [blame] | 1685 | /// |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1686 | ObjCCategoryDecl * |
| 1687 | ObjCInterfaceDecl::FindCategoryDeclaration(IdentifierInfo *CategoryId) const { |
| Argyrios Kyrtzidis | 4af2cb3 | 2012-03-02 19:14:29 +0000 | [diff] [blame] | 1688 | // FIXME: Should make sure no callers ever do this. |
| 1689 | if (!hasDefinition()) |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 1690 | return nullptr; |
| Argyrios Kyrtzidis | 4af2cb3 | 2012-03-02 19:14:29 +0000 | [diff] [blame] | 1691 | |
| Douglas Gregor | c0ac7d6 | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 1692 | if (data().ExternallyCompleted) |
| Douglas Gregor | 7369302 | 2010-12-01 23:49:52 +0000 | [diff] [blame] | 1693 | LoadExternalDefinition(); |
| 1694 | |
| Aaron Ballman | 3fe486a | 2014-03-13 21:23:55 +0000 | [diff] [blame] | 1695 | for (auto *Cat : visible_categories()) |
| Douglas Gregor | 048fbfa | 2013-01-16 23:00:23 +0000 | [diff] [blame] | 1696 | if (Cat->getIdentifier() == CategoryId) |
| Aaron Ballman | 3fe486a | 2014-03-13 21:23:55 +0000 | [diff] [blame] | 1697 | return Cat; |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 1698 | |
| 1699 | return nullptr; |
| Fariborz Jahanian | fbbaf6a | 2008-12-05 22:32:48 +0000 | [diff] [blame] | 1700 | } |
| 1701 | |
| Argyrios Kyrtzidis | 1559d67b | 2009-07-21 00:06:20 +0000 | [diff] [blame] | 1702 | ObjCMethodDecl * |
| 1703 | ObjCInterfaceDecl::getCategoryInstanceMethod(Selector Sel) const { |
| Aaron Ballman | 3fe486a | 2014-03-13 21:23:55 +0000 | [diff] [blame] | 1704 | for (const auto *Cat : visible_categories()) { |
| Douglas Gregor | 048fbfa | 2013-01-16 23:00:23 +0000 | [diff] [blame] | 1705 | if (ObjCCategoryImplDecl *Impl = Cat->getImplementation()) |
| Argyrios Kyrtzidis | 1559d67b | 2009-07-21 00:06:20 +0000 | [diff] [blame] | 1706 | if (ObjCMethodDecl *MD = Impl->getInstanceMethod(Sel)) |
| 1707 | return MD; |
| Douglas Gregor | 048fbfa | 2013-01-16 23:00:23 +0000 | [diff] [blame] | 1708 | } |
| 1709 | |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 1710 | return nullptr; |
| Argyrios Kyrtzidis | 1559d67b | 2009-07-21 00:06:20 +0000 | [diff] [blame] | 1711 | } |
| 1712 | |
| 1713 | ObjCMethodDecl *ObjCInterfaceDecl::getCategoryClassMethod(Selector Sel) const { |
| Aaron Ballman | 3fe486a | 2014-03-13 21:23:55 +0000 | [diff] [blame] | 1714 | for (const auto *Cat : visible_categories()) { |
| Douglas Gregor | 048fbfa | 2013-01-16 23:00:23 +0000 | [diff] [blame] | 1715 | if (ObjCCategoryImplDecl *Impl = Cat->getImplementation()) |
| Argyrios Kyrtzidis | 1559d67b | 2009-07-21 00:06:20 +0000 | [diff] [blame] | 1716 | if (ObjCMethodDecl *MD = Impl->getClassMethod(Sel)) |
| 1717 | return MD; |
| Douglas Gregor | 048fbfa | 2013-01-16 23:00:23 +0000 | [diff] [blame] | 1718 | } |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 1719 | |
| 1720 | return nullptr; |
| Argyrios Kyrtzidis | 1559d67b | 2009-07-21 00:06:20 +0000 | [diff] [blame] | 1721 | } |
| 1722 | |
| Fariborz Jahanian | 3f8917a | 2009-08-11 22:02:25 +0000 | [diff] [blame] | 1723 | /// ClassImplementsProtocol - Checks that 'lProto' protocol |
| 1724 | /// has been implemented in IDecl class, its super class or categories (if |
| 1725 | /// lookupCategory is true). |
| 1726 | bool ObjCInterfaceDecl::ClassImplementsProtocol(ObjCProtocolDecl *lProto, |
| 1727 | bool lookupCategory, |
| 1728 | bool RHSIsQualifiedID) { |
| Douglas Gregor | c0ac7d6 | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 1729 | if (!hasDefinition()) |
| 1730 | return false; |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1731 | |
| Fariborz Jahanian | 3f8917a | 2009-08-11 22:02:25 +0000 | [diff] [blame] | 1732 | ObjCInterfaceDecl *IDecl = this; |
| 1733 | // 1st, look up the class. |
| Aaron Ballman | a49c506 | 2014-03-13 20:29:09 +0000 | [diff] [blame] | 1734 | for (auto *PI : IDecl->protocols()){ |
| 1735 | if (getASTContext().ProtocolCompatibleWithProtocol(lProto, PI)) |
| Fariborz Jahanian | 3f8917a | 2009-08-11 22:02:25 +0000 | [diff] [blame] | 1736 | return true; |
| 1737 | // This is dubious and is added to be compatible with gcc. In gcc, it is |
| 1738 | // also allowed assigning a protocol-qualified 'id' type to a LHS object |
| 1739 | // when protocol in qualified LHS is in list of protocols in the rhs 'id' |
| 1740 | // object. This IMO, should be a bug. |
| 1741 | // FIXME: Treat this as an extension, and flag this as an error when GCC |
| 1742 | // extensions are not enabled. |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1743 | if (RHSIsQualifiedID && |
| Aaron Ballman | a49c506 | 2014-03-13 20:29:09 +0000 | [diff] [blame] | 1744 | getASTContext().ProtocolCompatibleWithProtocol(PI, lProto)) |
| Fariborz Jahanian | 3f8917a | 2009-08-11 22:02:25 +0000 | [diff] [blame] | 1745 | return true; |
| 1746 | } |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1747 | |
| Fariborz Jahanian | 3f8917a | 2009-08-11 22:02:25 +0000 | [diff] [blame] | 1748 | // 2nd, look up the category. |
| 1749 | if (lookupCategory) |
| Aaron Ballman | 3fe486a | 2014-03-13 21:23:55 +0000 | [diff] [blame] | 1750 | for (const auto *Cat : visible_categories()) { |
| Aaron Ballman | 19a4176 | 2014-03-14 12:55:57 +0000 | [diff] [blame] | 1751 | for (auto *PI : Cat->protocols()) |
| 1752 | if (getASTContext().ProtocolCompatibleWithProtocol(lProto, PI)) |
| Fariborz Jahanian | 3f8917a | 2009-08-11 22:02:25 +0000 | [diff] [blame] | 1753 | return true; |
| 1754 | } |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1755 | |
| Fariborz Jahanian | 3f8917a | 2009-08-11 22:02:25 +0000 | [diff] [blame] | 1756 | // 3rd, look up the super class(s) |
| 1757 | if (IDecl->getSuperClass()) |
| 1758 | return |
| 1759 | IDecl->getSuperClass()->ClassImplementsProtocol(lProto, lookupCategory, |
| 1760 | RHSIsQualifiedID); |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1761 | |
| Fariborz Jahanian | 3f8917a | 2009-08-11 22:02:25 +0000 | [diff] [blame] | 1762 | return false; |
| 1763 | } |
| 1764 | |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1765 | //===----------------------------------------------------------------------===// |
| 1766 | // ObjCIvarDecl |
| 1767 | //===----------------------------------------------------------------------===// |
| 1768 | |
| Eugene Zelenko | 2f8e66b | 2017-11-22 21:32:07 +0000 | [diff] [blame] | 1769 | void ObjCIvarDecl::anchor() {} |
| David Blaikie | 68e081d | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 1770 | |
| Daniel Dunbar | fe3ead7 | 2010-04-02 20:10:03 +0000 | [diff] [blame] | 1771 | ObjCIvarDecl *ObjCIvarDecl::Create(ASTContext &C, ObjCContainerDecl *DC, |
| Abramo Bagnara | dff1930 | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 1772 | SourceLocation StartLoc, |
| 1773 | SourceLocation IdLoc, IdentifierInfo *Id, |
| John McCall | bcd0350 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 1774 | QualType T, TypeSourceInfo *TInfo, |
| Fariborz Jahanian | 1872298 | 2010-07-17 00:59:30 +0000 | [diff] [blame] | 1775 | AccessControl ac, Expr *BW, |
| Argyrios Kyrtzidis | 2080d90 | 2014-01-03 18:32:18 +0000 | [diff] [blame] | 1776 | bool synthesized) { |
| Daniel Dunbar | fe3ead7 | 2010-04-02 20:10:03 +0000 | [diff] [blame] | 1777 | if (DC) { |
| 1778 | // Ivar's can only appear in interfaces, implementations (via synthesized |
| 1779 | // properties), and class extensions (via direct declaration, or synthesized |
| 1780 | // properties). |
| 1781 | // |
| 1782 | // FIXME: This should really be asserting this: |
| 1783 | // (isa<ObjCCategoryDecl>(DC) && |
| 1784 | // cast<ObjCCategoryDecl>(DC)->IsClassExtension())) |
| 1785 | // but unfortunately we sometimes place ivars into non-class extension |
| 1786 | // categories on error. This breaks an AST invariant, and should not be |
| 1787 | // fixed. |
| 1788 | assert((isa<ObjCInterfaceDecl>(DC) || isa<ObjCImplementationDecl>(DC) || |
| 1789 | isa<ObjCCategoryDecl>(DC)) && |
| 1790 | "Invalid ivar decl context!"); |
| Fariborz Jahanian | a50b3a2 | 2010-08-20 21:21:08 +0000 | [diff] [blame] | 1791 | // Once a new ivar is created in any of class/class-extension/implementation |
| 1792 | // decl contexts, the previously built IvarList must be rebuilt. |
| Eugene Zelenko | 2a1ba94 | 2018-04-09 22:14:10 +0000 | [diff] [blame] | 1793 | auto *ID = dyn_cast<ObjCInterfaceDecl>(DC); |
| Fariborz Jahanian | a50b3a2 | 2010-08-20 21:21:08 +0000 | [diff] [blame] | 1794 | if (!ID) { |
| Eugene Zelenko | 2a1ba94 | 2018-04-09 22:14:10 +0000 | [diff] [blame] | 1795 | if (auto *IM = dyn_cast<ObjCImplementationDecl>(DC)) |
| Fariborz Jahanian | a50b3a2 | 2010-08-20 21:21:08 +0000 | [diff] [blame] | 1796 | ID = IM->getClassInterface(); |
| Eric Christopher | f8378ca | 2012-07-19 22:22:55 +0000 | [diff] [blame] | 1797 | else |
| 1798 | ID = cast<ObjCCategoryDecl>(DC)->getClassInterface(); |
| Fariborz Jahanian | a50b3a2 | 2010-08-20 21:21:08 +0000 | [diff] [blame] | 1799 | } |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 1800 | ID->setIvarList(nullptr); |
| Daniel Dunbar | fe3ead7 | 2010-04-02 20:10:03 +0000 | [diff] [blame] | 1801 | } |
| 1802 | |
| Richard Smith | f798172 | 2013-11-22 09:01:48 +0000 | [diff] [blame] | 1803 | return new (C, DC) ObjCIvarDecl(DC, StartLoc, IdLoc, Id, T, TInfo, ac, BW, |
| Argyrios Kyrtzidis | 2080d90 | 2014-01-03 18:32:18 +0000 | [diff] [blame] | 1804 | synthesized); |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1805 | } |
| 1806 | |
| Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 1807 | ObjCIvarDecl *ObjCIvarDecl::CreateDeserialized(ASTContext &C, unsigned ID) { |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 1808 | return new (C, ID) ObjCIvarDecl(nullptr, SourceLocation(), SourceLocation(), |
| 1809 | nullptr, QualType(), nullptr, |
| 1810 | ObjCIvarDecl::None, nullptr, false); |
| Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 1811 | } |
| 1812 | |
| Daniel Dunbar | 89947ea | 2010-04-02 21:13:59 +0000 | [diff] [blame] | 1813 | const ObjCInterfaceDecl *ObjCIvarDecl::getContainingInterface() const { |
| Eugene Zelenko | 2a1ba94 | 2018-04-09 22:14:10 +0000 | [diff] [blame] | 1814 | const auto *DC = cast<ObjCContainerDecl>(getDeclContext()); |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1815 | |
| Daniel Dunbar | 89947ea | 2010-04-02 21:13:59 +0000 | [diff] [blame] | 1816 | switch (DC->getKind()) { |
| 1817 | default: |
| 1818 | case ObjCCategoryImpl: |
| 1819 | case ObjCProtocol: |
| David Blaikie | 83d382b | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 1820 | llvm_unreachable("invalid ivar container!"); |
| Daniel Dunbar | 89947ea | 2010-04-02 21:13:59 +0000 | [diff] [blame] | 1821 | |
| 1822 | // Ivars can only appear in class extension categories. |
| 1823 | case ObjCCategory: { |
| Eugene Zelenko | 2a1ba94 | 2018-04-09 22:14:10 +0000 | [diff] [blame] | 1824 | const auto *CD = cast<ObjCCategoryDecl>(DC); |
| Daniel Dunbar | 89947ea | 2010-04-02 21:13:59 +0000 | [diff] [blame] | 1825 | assert(CD->IsClassExtension() && "invalid container for ivar!"); |
| 1826 | return CD->getClassInterface(); |
| 1827 | } |
| 1828 | |
| 1829 | case ObjCImplementation: |
| 1830 | return cast<ObjCImplementationDecl>(DC)->getClassInterface(); |
| 1831 | |
| 1832 | case ObjCInterface: |
| 1833 | return cast<ObjCInterfaceDecl>(DC); |
| 1834 | } |
| 1835 | } |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1836 | |
| Douglas Gregor | e83b956 | 2015-07-07 03:57:53 +0000 | [diff] [blame] | 1837 | QualType ObjCIvarDecl::getUsageType(QualType objectType) const { |
| 1838 | return getType().substObjCMemberType(objectType, getDeclContext(), |
| 1839 | ObjCSubstitutionContext::Property); |
| 1840 | } |
| 1841 | |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1842 | //===----------------------------------------------------------------------===// |
| 1843 | // ObjCAtDefsFieldDecl |
| 1844 | //===----------------------------------------------------------------------===// |
| 1845 | |
| Eugene Zelenko | 2f8e66b | 2017-11-22 21:32:07 +0000 | [diff] [blame] | 1846 | void ObjCAtDefsFieldDecl::anchor() {} |
| David Blaikie | 68e081d | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 1847 | |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1848 | ObjCAtDefsFieldDecl |
| Abramo Bagnara | dff1930 | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 1849 | *ObjCAtDefsFieldDecl::Create(ASTContext &C, DeclContext *DC, |
| 1850 | SourceLocation StartLoc, SourceLocation IdLoc, |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1851 | IdentifierInfo *Id, QualType T, Expr *BW) { |
| Richard Smith | f798172 | 2013-11-22 09:01:48 +0000 | [diff] [blame] | 1852 | return new (C, DC) ObjCAtDefsFieldDecl(DC, StartLoc, IdLoc, Id, T, BW); |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1853 | } |
| 1854 | |
| Richard Smith | f798172 | 2013-11-22 09:01:48 +0000 | [diff] [blame] | 1855 | ObjCAtDefsFieldDecl *ObjCAtDefsFieldDecl::CreateDeserialized(ASTContext &C, |
| Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 1856 | unsigned ID) { |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 1857 | return new (C, ID) ObjCAtDefsFieldDecl(nullptr, SourceLocation(), |
| 1858 | SourceLocation(), nullptr, QualType(), |
| 1859 | nullptr); |
| Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 1860 | } |
| 1861 | |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1862 | //===----------------------------------------------------------------------===// |
| 1863 | // ObjCProtocolDecl |
| 1864 | //===----------------------------------------------------------------------===// |
| 1865 | |
| Eugene Zelenko | 2f8e66b | 2017-11-22 21:32:07 +0000 | [diff] [blame] | 1866 | void ObjCProtocolDecl::anchor() {} |
| David Blaikie | 68e081d | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 1867 | |
| Richard Smith | 053f6c6 | 2014-05-16 23:01:30 +0000 | [diff] [blame] | 1868 | ObjCProtocolDecl::ObjCProtocolDecl(ASTContext &C, DeclContext *DC, |
| 1869 | IdentifierInfo *Id, SourceLocation nameLoc, |
| Douglas Gregor | 32c1757 | 2012-01-01 20:30:41 +0000 | [diff] [blame] | 1870 | SourceLocation atStartLoc, |
| Douglas Gregor | 05a1f4d | 2012-01-01 22:06:18 +0000 | [diff] [blame] | 1871 | ObjCProtocolDecl *PrevDecl) |
| Richard Smith | 053f6c6 | 2014-05-16 23:01:30 +0000 | [diff] [blame] | 1872 | : ObjCContainerDecl(ObjCProtocol, DC, Id, nameLoc, atStartLoc), |
| Eugene Zelenko | 2f8e66b | 2017-11-22 21:32:07 +0000 | [diff] [blame] | 1873 | redeclarable_base(C) { |
| Rafael Espindola | 8db352d | 2013-10-17 15:37:26 +0000 | [diff] [blame] | 1874 | setPreviousDecl(PrevDecl); |
| Douglas Gregor | 32c1757 | 2012-01-01 20:30:41 +0000 | [diff] [blame] | 1875 | if (PrevDecl) |
| 1876 | Data = PrevDecl->Data; |
| 1877 | } |
| 1878 | |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1879 | ObjCProtocolDecl *ObjCProtocolDecl::Create(ASTContext &C, DeclContext *DC, |
| Argyrios Kyrtzidis | 52f53fb | 2011-10-04 04:48:02 +0000 | [diff] [blame] | 1880 | IdentifierInfo *Id, |
| 1881 | SourceLocation nameLoc, |
| Argyrios Kyrtzidis | 1f4bee5 | 2011-10-17 19:48:06 +0000 | [diff] [blame] | 1882 | SourceLocation atStartLoc, |
| Douglas Gregor | 05a1f4d | 2012-01-01 22:06:18 +0000 | [diff] [blame] | 1883 | ObjCProtocolDecl *PrevDecl) { |
| Eugene Zelenko | 2a1ba94 | 2018-04-09 22:14:10 +0000 | [diff] [blame] | 1884 | auto *Result = |
| Richard Smith | 053f6c6 | 2014-05-16 23:01:30 +0000 | [diff] [blame] | 1885 | new (C, DC) ObjCProtocolDecl(C, DC, Id, nameLoc, atStartLoc, PrevDecl); |
| Douglas Gregor | 7dab26b | 2013-02-09 01:35:03 +0000 | [diff] [blame] | 1886 | Result->Data.setInt(!C.getLangOpts().Modules); |
| Douglas Gregor | 32c1757 | 2012-01-01 20:30:41 +0000 | [diff] [blame] | 1887 | return Result; |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1888 | } |
| 1889 | |
| Richard Smith | f798172 | 2013-11-22 09:01:48 +0000 | [diff] [blame] | 1890 | ObjCProtocolDecl *ObjCProtocolDecl::CreateDeserialized(ASTContext &C, |
| Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 1891 | unsigned ID) { |
| Richard Smith | f798172 | 2013-11-22 09:01:48 +0000 | [diff] [blame] | 1892 | ObjCProtocolDecl *Result = |
| Richard Smith | 053f6c6 | 2014-05-16 23:01:30 +0000 | [diff] [blame] | 1893 | new (C, ID) ObjCProtocolDecl(C, nullptr, nullptr, SourceLocation(), |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 1894 | SourceLocation(), nullptr); |
| Douglas Gregor | 7dab26b | 2013-02-09 01:35:03 +0000 | [diff] [blame] | 1895 | Result->Data.setInt(!C.getLangOpts().Modules); |
| 1896 | return Result; |
| Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 1897 | } |
| 1898 | |
| Steve Naroff | 114aecb | 2009-03-01 16:12:44 +0000 | [diff] [blame] | 1899 | ObjCProtocolDecl *ObjCProtocolDecl::lookupProtocolNamed(IdentifierInfo *Name) { |
| 1900 | ObjCProtocolDecl *PDecl = this; |
| 1901 | |
| 1902 | if (Name == getIdentifier()) |
| 1903 | return PDecl; |
| 1904 | |
| Aaron Ballman | 0f6e64d | 2014-03-13 22:58:06 +0000 | [diff] [blame] | 1905 | for (auto *I : protocols()) |
| 1906 | if ((PDecl = I->lookupProtocolNamed(Name))) |
| Steve Naroff | 114aecb | 2009-03-01 16:12:44 +0000 | [diff] [blame] | 1907 | return PDecl; |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1908 | |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 1909 | return nullptr; |
| Steve Naroff | 114aecb | 2009-03-01 16:12:44 +0000 | [diff] [blame] | 1910 | } |
| 1911 | |
| Argyrios Kyrtzidis | e6ed65b | 2009-07-25 22:15:38 +0000 | [diff] [blame] | 1912 | // lookupMethod - Lookup a instance/class method in the protocol and protocols |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1913 | // it inherited. |
| Argyrios Kyrtzidis | e6ed65b | 2009-07-25 22:15:38 +0000 | [diff] [blame] | 1914 | ObjCMethodDecl *ObjCProtocolDecl::lookupMethod(Selector Sel, |
| 1915 | bool isInstance) const { |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 1916 | ObjCMethodDecl *MethodDecl = nullptr; |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1917 | |
| Douglas Gregor | eed4979 | 2013-01-17 00:38:46 +0000 | [diff] [blame] | 1918 | // If there is no definition or the definition is hidden, we don't find |
| 1919 | // anything. |
| 1920 | const ObjCProtocolDecl *Def = getDefinition(); |
| 1921 | if (!Def || Def->isHidden()) |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 1922 | return nullptr; |
| Douglas Gregor | eed4979 | 2013-01-17 00:38:46 +0000 | [diff] [blame] | 1923 | |
| Argyrios Kyrtzidis | e6ed65b | 2009-07-25 22:15:38 +0000 | [diff] [blame] | 1924 | if ((MethodDecl = getMethod(Sel, isInstance))) |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1925 | return MethodDecl; |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1926 | |
| Aaron Ballman | 0f6e64d | 2014-03-13 22:58:06 +0000 | [diff] [blame] | 1927 | for (const auto *I : protocols()) |
| 1928 | if ((MethodDecl = I->lookupMethod(Sel, isInstance))) |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1929 | return MethodDecl; |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 1930 | return nullptr; |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1931 | } |
| 1932 | |
| Douglas Gregor | e6e48b1 | 2012-01-01 19:29:29 +0000 | [diff] [blame] | 1933 | void ObjCProtocolDecl::allocateDefinitionData() { |
| Douglas Gregor | 7dab26b | 2013-02-09 01:35:03 +0000 | [diff] [blame] | 1934 | assert(!Data.getPointer() && "Protocol already has a definition!"); |
| 1935 | Data.setPointer(new (getASTContext()) DefinitionData); |
| 1936 | Data.getPointer()->Definition = this; |
| Douglas Gregor | e6e48b1 | 2012-01-01 19:29:29 +0000 | [diff] [blame] | 1937 | } |
| 1938 | |
| 1939 | void ObjCProtocolDecl::startDefinition() { |
| 1940 | allocateDefinitionData(); |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1941 | |
| Douglas Gregor | a715bff | 2012-01-01 19:51:50 +0000 | [diff] [blame] | 1942 | // Update all of the declarations with a pointer to the definition. |
| Eugene Zelenko | 2a1ba94 | 2018-04-09 22:14:10 +0000 | [diff] [blame] | 1943 | for (auto *RD : redecls()) |
| Douglas Gregor | a715bff | 2012-01-01 19:51:50 +0000 | [diff] [blame] | 1944 | RD->Data = this->Data; |
| Argyrios Kyrtzidis | b97a402 | 2011-11-12 21:07:46 +0000 | [diff] [blame] | 1945 | } |
| 1946 | |
| Fariborz Jahanian | aedaaa4 | 2013-02-14 22:33:34 +0000 | [diff] [blame] | 1947 | void ObjCProtocolDecl::collectPropertiesToImplement(PropertyMap &PM, |
| 1948 | PropertyDeclOrder &PO) const { |
| Fariborz Jahanian | 0a17f59 | 2013-01-07 21:31:08 +0000 | [diff] [blame] | 1949 | if (const ObjCProtocolDecl *PDecl = getDefinition()) { |
| Manman Ren | 494ee5b | 2016-01-28 23:36:05 +0000 | [diff] [blame] | 1950 | for (auto *Prop : PDecl->properties()) { |
| Fariborz Jahanian | 0a17f59 | 2013-01-07 21:31:08 +0000 | [diff] [blame] | 1951 | // Insert into PM if not there already. |
| Manman Ren | 494ee5b | 2016-01-28 23:36:05 +0000 | [diff] [blame] | 1952 | PM.insert(std::make_pair( |
| 1953 | std::make_pair(Prop->getIdentifier(), Prop->isClassProperty()), |
| 1954 | Prop)); |
| Fariborz Jahanian | aedaaa4 | 2013-02-14 22:33:34 +0000 | [diff] [blame] | 1955 | PO.push_back(Prop); |
| Fariborz Jahanian | 0a17f59 | 2013-01-07 21:31:08 +0000 | [diff] [blame] | 1956 | } |
| 1957 | // Scan through protocol's protocols. |
| Aaron Ballman | 0f6e64d | 2014-03-13 22:58:06 +0000 | [diff] [blame] | 1958 | for (const auto *PI : PDecl->protocols()) |
| 1959 | PI->collectPropertiesToImplement(PM, PO); |
| Anna Zaks | 673d76b | 2012-10-18 19:17:53 +0000 | [diff] [blame] | 1960 | } |
| Anna Zaks | 673d76b | 2012-10-18 19:17:53 +0000 | [diff] [blame] | 1961 | } |
| 1962 | |
| Fariborz Jahanian | 0ebf879 | 2013-05-20 21:20:24 +0000 | [diff] [blame] | 1963 | void ObjCProtocolDecl::collectInheritedProtocolProperties( |
| Alex Lorenz | 50b2dd3 | 2017-07-13 11:06:22 +0000 | [diff] [blame] | 1964 | const ObjCPropertyDecl *Property, ProtocolPropertySet &PS, |
| 1965 | PropertyDeclOrder &PO) const { |
| Fariborz Jahanian | 0ebf879 | 2013-05-20 21:20:24 +0000 | [diff] [blame] | 1966 | if (const ObjCProtocolDecl *PDecl = getDefinition()) { |
| Alex Lorenz | 50b2dd3 | 2017-07-13 11:06:22 +0000 | [diff] [blame] | 1967 | if (!PS.insert(PDecl).second) |
| 1968 | return; |
| Manman Ren | efe1bac | 2016-01-27 20:00:32 +0000 | [diff] [blame] | 1969 | for (auto *Prop : PDecl->properties()) { |
| Fariborz Jahanian | 0ebf879 | 2013-05-20 21:20:24 +0000 | [diff] [blame] | 1970 | if (Prop == Property) |
| 1971 | continue; |
| 1972 | if (Prop->getIdentifier() == Property->getIdentifier()) { |
| Alex Lorenz | 50b2dd3 | 2017-07-13 11:06:22 +0000 | [diff] [blame] | 1973 | PO.push_back(Prop); |
| 1974 | return; |
| Fariborz Jahanian | 0ebf879 | 2013-05-20 21:20:24 +0000 | [diff] [blame] | 1975 | } |
| 1976 | } |
| 1977 | // Scan through protocol's protocols which did not have a matching property. |
| Alex Lorenz | 50b2dd3 | 2017-07-13 11:06:22 +0000 | [diff] [blame] | 1978 | for (const auto *PI : PDecl->protocols()) |
| 1979 | PI->collectInheritedProtocolProperties(Property, PS, PO); |
| Fariborz Jahanian | 0ebf879 | 2013-05-20 21:20:24 +0000 | [diff] [blame] | 1980 | } |
| 1981 | } |
| Anna Zaks | 673d76b | 2012-10-18 19:17:53 +0000 | [diff] [blame] | 1982 | |
| Fariborz Jahanian | 451b92a | 2014-07-16 16:16:04 +0000 | [diff] [blame] | 1983 | StringRef |
| 1984 | ObjCProtocolDecl::getObjCRuntimeNameAsString() const { |
| Eugene Zelenko | 2a1ba94 | 2018-04-09 22:14:10 +0000 | [diff] [blame] | 1985 | if (const auto *ObjCRTName = getAttr<ObjCRuntimeNameAttr>()) |
| Fariborz Jahanian | a2e5deb | 2014-07-16 19:44:34 +0000 | [diff] [blame] | 1986 | return ObjCRTName->getMetadataName(); |
| 1987 | |
| 1988 | return getName(); |
| Fariborz Jahanian | 451b92a | 2014-07-16 16:16:04 +0000 | [diff] [blame] | 1989 | } |
| 1990 | |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1991 | //===----------------------------------------------------------------------===// |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 1992 | // ObjCCategoryDecl |
| 1993 | //===----------------------------------------------------------------------===// |
| 1994 | |
| Eugene Zelenko | 2f8e66b | 2017-11-22 21:32:07 +0000 | [diff] [blame] | 1995 | void ObjCCategoryDecl::anchor() {} |
| David Blaikie | 68e081d | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 1996 | |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 1997 | ObjCCategoryDecl::ObjCCategoryDecl(DeclContext *DC, SourceLocation AtLoc, |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1998 | SourceLocation ClassNameLoc, |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 1999 | SourceLocation CategoryNameLoc, |
| 2000 | IdentifierInfo *Id, ObjCInterfaceDecl *IDecl, |
| 2001 | ObjCTypeParamList *typeParamList, |
| 2002 | SourceLocation IvarLBraceLoc, |
| 2003 | SourceLocation IvarRBraceLoc) |
| Eugene Zelenko | 2f8e66b | 2017-11-22 21:32:07 +0000 | [diff] [blame] | 2004 | : ObjCContainerDecl(ObjCCategory, DC, Id, ClassNameLoc, AtLoc), |
| 2005 | ClassInterface(IDecl), CategoryNameLoc(CategoryNameLoc), |
| 2006 | IvarLBraceLoc(IvarLBraceLoc), IvarRBraceLoc(IvarRBraceLoc) { |
| Douglas Gregor | ab7f0b3 | 2015-07-07 06:20:12 +0000 | [diff] [blame] | 2007 | setTypeParamList(typeParamList); |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 2008 | } |
| 2009 | |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 2010 | ObjCCategoryDecl *ObjCCategoryDecl::Create(ASTContext &C, DeclContext *DC, |
| Richard Smith | f798172 | 2013-11-22 09:01:48 +0000 | [diff] [blame] | 2011 | SourceLocation AtLoc, |
| Douglas Gregor | 071676f | 2010-01-16 16:38:58 +0000 | [diff] [blame] | 2012 | SourceLocation ClassNameLoc, |
| 2013 | SourceLocation CategoryNameLoc, |
| Argyrios Kyrtzidis | 3a5094b | 2011-08-30 19:43:26 +0000 | [diff] [blame] | 2014 | IdentifierInfo *Id, |
| Fariborz Jahanian | a7765fe | 2012-02-20 20:09:20 +0000 | [diff] [blame] | 2015 | ObjCInterfaceDecl *IDecl, |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 2016 | ObjCTypeParamList *typeParamList, |
| Fariborz Jahanian | a7765fe | 2012-02-20 20:09:20 +0000 | [diff] [blame] | 2017 | SourceLocation IvarLBraceLoc, |
| 2018 | SourceLocation IvarRBraceLoc) { |
| Eugene Zelenko | 2a1ba94 | 2018-04-09 22:14:10 +0000 | [diff] [blame] | 2019 | auto *CatDecl = |
| Richard Smith | f798172 | 2013-11-22 09:01:48 +0000 | [diff] [blame] | 2020 | new (C, DC) ObjCCategoryDecl(DC, AtLoc, ClassNameLoc, CategoryNameLoc, Id, |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 2021 | IDecl, typeParamList, IvarLBraceLoc, |
| 2022 | IvarRBraceLoc); |
| Argyrios Kyrtzidis | 3a5094b | 2011-08-30 19:43:26 +0000 | [diff] [blame] | 2023 | if (IDecl) { |
| 2024 | // Link this category into its class's category list. |
| Douglas Gregor | 048fbfa | 2013-01-16 23:00:23 +0000 | [diff] [blame] | 2025 | CatDecl->NextClassCategory = IDecl->getCategoryListRaw(); |
| Douglas Gregor | c0ac7d6 | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 2026 | if (IDecl->hasDefinition()) { |
| Douglas Gregor | 048fbfa | 2013-01-16 23:00:23 +0000 | [diff] [blame] | 2027 | IDecl->setCategoryListRaw(CatDecl); |
| Douglas Gregor | c0ac7d6 | 2011-12-15 05:27:12 +0000 | [diff] [blame] | 2028 | if (ASTMutationListener *L = C.getASTMutationListener()) |
| 2029 | L->AddedObjCCategoryToInterface(CatDecl, IDecl); |
| 2030 | } |
| Argyrios Kyrtzidis | 3a5094b | 2011-08-30 19:43:26 +0000 | [diff] [blame] | 2031 | } |
| 2032 | |
| 2033 | return CatDecl; |
| 2034 | } |
| 2035 | |
| Richard Smith | f798172 | 2013-11-22 09:01:48 +0000 | [diff] [blame] | 2036 | ObjCCategoryDecl *ObjCCategoryDecl::CreateDeserialized(ASTContext &C, |
| Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 2037 | unsigned ID) { |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 2038 | return new (C, ID) ObjCCategoryDecl(nullptr, SourceLocation(), |
| 2039 | SourceLocation(), SourceLocation(), |
| Douglas Gregor | 85f3f95 | 2015-07-07 03:57:15 +0000 | [diff] [blame] | 2040 | nullptr, nullptr, nullptr); |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 2041 | } |
| 2042 | |
| Argyrios Kyrtzidis | 6d9fab7 | 2009-07-21 00:05:53 +0000 | [diff] [blame] | 2043 | ObjCCategoryImplDecl *ObjCCategoryDecl::getImplementation() const { |
| 2044 | return getASTContext().getObjCImplementation( |
| 2045 | const_cast<ObjCCategoryDecl*>(this)); |
| 2046 | } |
| 2047 | |
| 2048 | void ObjCCategoryDecl::setImplementation(ObjCCategoryImplDecl *ImplD) { |
| 2049 | getASTContext().setObjCImplementation(this, ImplD); |
| 2050 | } |
| 2051 | |
| Douglas Gregor | ab7f0b3 | 2015-07-07 06:20:12 +0000 | [diff] [blame] | 2052 | void ObjCCategoryDecl::setTypeParamList(ObjCTypeParamList *TPL) { |
| 2053 | TypeParamList = TPL; |
| 2054 | if (!TPL) |
| 2055 | return; |
| 2056 | // Set the declaration context of each of the type parameters. |
| Eugene Zelenko | 2a1ba94 | 2018-04-09 22:14:10 +0000 | [diff] [blame] | 2057 | for (auto *typeParam : *TypeParamList) |
| Douglas Gregor | ab7f0b3 | 2015-07-07 06:20:12 +0000 | [diff] [blame] | 2058 | typeParam->setDeclContext(this); |
| 2059 | } |
| 2060 | |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 2061 | //===----------------------------------------------------------------------===// |
| 2062 | // ObjCCategoryImplDecl |
| 2063 | //===----------------------------------------------------------------------===// |
| 2064 | |
| Eugene Zelenko | 2f8e66b | 2017-11-22 21:32:07 +0000 | [diff] [blame] | 2065 | void ObjCCategoryImplDecl::anchor() {} |
| David Blaikie | 68e081d | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 2066 | |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 2067 | ObjCCategoryImplDecl * |
| 2068 | ObjCCategoryImplDecl::Create(ASTContext &C, DeclContext *DC, |
| Argyrios Kyrtzidis | 52f53fb | 2011-10-04 04:48:02 +0000 | [diff] [blame] | 2069 | IdentifierInfo *Id, |
| 2070 | ObjCInterfaceDecl *ClassInterface, |
| 2071 | SourceLocation nameLoc, |
| Argyrios Kyrtzidis | 4996f5f | 2011-12-09 00:31:40 +0000 | [diff] [blame] | 2072 | SourceLocation atStartLoc, |
| 2073 | SourceLocation CategoryNameLoc) { |
| Fariborz Jahanian | 87b4ae6c | 2011-12-23 00:31:02 +0000 | [diff] [blame] | 2074 | if (ClassInterface && ClassInterface->hasDefinition()) |
| 2075 | ClassInterface = ClassInterface->getDefinition(); |
| Richard Smith | f798172 | 2013-11-22 09:01:48 +0000 | [diff] [blame] | 2076 | return new (C, DC) ObjCCategoryImplDecl(DC, Id, ClassInterface, nameLoc, |
| 2077 | atStartLoc, CategoryNameLoc); |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 2078 | } |
| 2079 | |
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2080 | ObjCCategoryImplDecl *ObjCCategoryImplDecl::CreateDeserialized(ASTContext &C, |
| Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 2081 | unsigned ID) { |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 2082 | return new (C, ID) ObjCCategoryImplDecl(nullptr, nullptr, nullptr, |
| 2083 | SourceLocation(), SourceLocation(), |
| 2084 | SourceLocation()); |
| Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 2085 | } |
| 2086 | |
| Steve Naroff | f406f4d | 2009-10-29 21:11:04 +0000 | [diff] [blame] | 2087 | ObjCCategoryDecl *ObjCCategoryImplDecl::getCategoryDecl() const { |
| Ted Kremenek | e184ac5 | 2010-03-19 20:39:03 +0000 | [diff] [blame] | 2088 | // The class interface might be NULL if we are working with invalid code. |
| 2089 | if (const ObjCInterfaceDecl *ID = getClassInterface()) |
| 2090 | return ID->FindCategoryDeclaration(getIdentifier()); |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 2091 | return nullptr; |
| Argyrios Kyrtzidis | a56fa19 | 2009-07-28 05:11:05 +0000 | [diff] [blame] | 2092 | } |
| 2093 | |
| Eugene Zelenko | 2f8e66b | 2017-11-22 21:32:07 +0000 | [diff] [blame] | 2094 | void ObjCImplDecl::anchor() {} |
| David Blaikie | 68e081d | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 2095 | |
| Argyrios Kyrtzidis | cfbfe78 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2096 | void ObjCImplDecl::addPropertyImplementation(ObjCPropertyImplDecl *property) { |
| Douglas Gregor | 9a13efd | 2009-04-23 02:42:49 +0000 | [diff] [blame] | 2097 | // FIXME: The context should be correct before we get here. |
| Douglas Gregor | 29bd76f | 2009-04-23 01:02:12 +0000 | [diff] [blame] | 2098 | property->setLexicalDeclContext(this); |
| Argyrios Kyrtzidis | cfbfe78 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2099 | addDecl(property); |
| Douglas Gregor | 29bd76f | 2009-04-23 01:02:12 +0000 | [diff] [blame] | 2100 | } |
| 2101 | |
| Argyrios Kyrtzidis | 6d9fab7 | 2009-07-21 00:05:53 +0000 | [diff] [blame] | 2102 | void ObjCImplDecl::setClassInterface(ObjCInterfaceDecl *IFace) { |
| 2103 | ASTContext &Ctx = getASTContext(); |
| 2104 | |
| Eugene Zelenko | 2a1ba94 | 2018-04-09 22:14:10 +0000 | [diff] [blame] | 2105 | if (auto *ImplD = dyn_cast_or_null<ObjCImplementationDecl>(this)) { |
| Argyrios Kyrtzidis | 6d9fab7 | 2009-07-21 00:05:53 +0000 | [diff] [blame] | 2106 | if (IFace) |
| 2107 | Ctx.setObjCImplementation(IFace, ImplD); |
| 2108 | |
| Eugene Zelenko | 2a1ba94 | 2018-04-09 22:14:10 +0000 | [diff] [blame] | 2109 | } else if (auto *ImplD = dyn_cast_or_null<ObjCCategoryImplDecl>(this)) { |
| Argyrios Kyrtzidis | 6d9fab7 | 2009-07-21 00:05:53 +0000 | [diff] [blame] | 2110 | if (ObjCCategoryDecl *CD = IFace->FindCategoryDeclaration(getIdentifier())) |
| 2111 | Ctx.setObjCImplementation(CD, ImplD); |
| 2112 | } |
| 2113 | |
| 2114 | ClassInterface = IFace; |
| 2115 | } |
| 2116 | |
| Fariborz Jahanian | fbbaf6a | 2008-12-05 22:32:48 +0000 | [diff] [blame] | 2117 | /// FindPropertyImplIvarDecl - This method lookup the ivar in the list of |
| Fariborz Jahanian | e92f54a | 2013-03-12 17:43:00 +0000 | [diff] [blame] | 2118 | /// properties implemented in this \@implementation block and returns |
| Chris Lattner | aab70d2 | 2009-02-16 19:24:31 +0000 | [diff] [blame] | 2119 | /// the implemented property that uses it. |
| Chris Lattner | a9ca052 | 2009-02-28 18:42:10 +0000 | [diff] [blame] | 2120 | ObjCPropertyImplDecl *ObjCImplDecl:: |
| Argyrios Kyrtzidis | cfbfe78 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2121 | FindPropertyImplIvarDecl(IdentifierInfo *ivarId) const { |
| Aaron Ballman | d85eff4 | 2014-03-14 15:02:45 +0000 | [diff] [blame] | 2122 | for (auto *PID : property_impls()) |
| Fariborz Jahanian | fbbaf6a | 2008-12-05 22:32:48 +0000 | [diff] [blame] | 2123 | if (PID->getPropertyIvarDecl() && |
| 2124 | PID->getPropertyIvarDecl()->getIdentifier() == ivarId) |
| 2125 | return PID; |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 2126 | return nullptr; |
| Fariborz Jahanian | fbbaf6a | 2008-12-05 22:32:48 +0000 | [diff] [blame] | 2127 | } |
| 2128 | |
| 2129 | /// FindPropertyImplDecl - This method looks up a previous ObjCPropertyImplDecl |
| James Dennett | 5207a1c | 2012-06-15 22:30:14 +0000 | [diff] [blame] | 2130 | /// added to the list of those properties \@synthesized/\@dynamic in this |
| 2131 | /// category \@implementation block. |
| Chris Lattner | a9ca052 | 2009-02-28 18:42:10 +0000 | [diff] [blame] | 2132 | ObjCPropertyImplDecl *ObjCImplDecl:: |
| Manman Ren | 5b78640 | 2016-01-28 18:49:28 +0000 | [diff] [blame] | 2133 | FindPropertyImplDecl(IdentifierInfo *Id, |
| 2134 | ObjCPropertyQueryKind QueryKind) const { |
| 2135 | ObjCPropertyImplDecl *ClassPropImpl = nullptr; |
| Aaron Ballman | d85eff4 | 2014-03-14 15:02:45 +0000 | [diff] [blame] | 2136 | for (auto *PID : property_impls()) |
| Manman Ren | 5b78640 | 2016-01-28 18:49:28 +0000 | [diff] [blame] | 2137 | // If queryKind is unknown, we return the instance property if one |
| 2138 | // exists; otherwise we return the class property. |
| 2139 | if (PID->getPropertyDecl()->getIdentifier() == Id) { |
| 2140 | if ((QueryKind == ObjCPropertyQueryKind::OBJC_PR_query_unknown && |
| 2141 | !PID->getPropertyDecl()->isClassProperty()) || |
| 2142 | (QueryKind == ObjCPropertyQueryKind::OBJC_PR_query_class && |
| 2143 | PID->getPropertyDecl()->isClassProperty()) || |
| 2144 | (QueryKind == ObjCPropertyQueryKind::OBJC_PR_query_instance && |
| 2145 | !PID->getPropertyDecl()->isClassProperty())) |
| 2146 | return PID; |
| 2147 | |
| 2148 | if (PID->getPropertyDecl()->isClassProperty()) |
| 2149 | ClassPropImpl = PID; |
| 2150 | } |
| 2151 | |
| 2152 | if (QueryKind == ObjCPropertyQueryKind::OBJC_PR_query_unknown) |
| 2153 | // We can't find the instance property, return the class property. |
| 2154 | return ClassPropImpl; |
| 2155 | |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 2156 | return nullptr; |
| Fariborz Jahanian | fbbaf6a | 2008-12-05 22:32:48 +0000 | [diff] [blame] | 2157 | } |
| 2158 | |
| Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2159 | raw_ostream &clang::operator<<(raw_ostream &OS, |
| Benjamin Kramer | 2f56992 | 2012-02-07 11:57:45 +0000 | [diff] [blame] | 2160 | const ObjCCategoryImplDecl &CID) { |
| 2161 | OS << CID.getName(); |
| Benjamin Kramer | b11416d | 2010-04-17 09:33:03 +0000 | [diff] [blame] | 2162 | return OS; |
| 2163 | } |
| 2164 | |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 2165 | //===----------------------------------------------------------------------===// |
| 2166 | // ObjCImplementationDecl |
| 2167 | //===----------------------------------------------------------------------===// |
| 2168 | |
| Eugene Zelenko | 2f8e66b | 2017-11-22 21:32:07 +0000 | [diff] [blame] | 2169 | void ObjCImplementationDecl::anchor() {} |
| David Blaikie | 68e081d | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 2170 | |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 2171 | ObjCImplementationDecl * |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2172 | ObjCImplementationDecl::Create(ASTContext &C, DeclContext *DC, |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 2173 | ObjCInterfaceDecl *ClassInterface, |
| Argyrios Kyrtzidis | 52f53fb | 2011-10-04 04:48:02 +0000 | [diff] [blame] | 2174 | ObjCInterfaceDecl *SuperDecl, |
| 2175 | SourceLocation nameLoc, |
| Fariborz Jahanian | a7765fe | 2012-02-20 20:09:20 +0000 | [diff] [blame] | 2176 | SourceLocation atStartLoc, |
| Argyrios Kyrtzidis | fac3162 | 2013-05-03 18:05:44 +0000 | [diff] [blame] | 2177 | SourceLocation superLoc, |
| Fariborz Jahanian | a7765fe | 2012-02-20 20:09:20 +0000 | [diff] [blame] | 2178 | SourceLocation IvarLBraceLoc, |
| 2179 | SourceLocation IvarRBraceLoc) { |
| Fariborz Jahanian | 87b4ae6c | 2011-12-23 00:31:02 +0000 | [diff] [blame] | 2180 | if (ClassInterface && ClassInterface->hasDefinition()) |
| 2181 | ClassInterface = ClassInterface->getDefinition(); |
| Richard Smith | f798172 | 2013-11-22 09:01:48 +0000 | [diff] [blame] | 2182 | return new (C, DC) ObjCImplementationDecl(DC, ClassInterface, SuperDecl, |
| 2183 | nameLoc, atStartLoc, superLoc, |
| 2184 | IvarLBraceLoc, IvarRBraceLoc); |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 2185 | } |
| 2186 | |
| Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 2187 | ObjCImplementationDecl * |
| 2188 | ObjCImplementationDecl::CreateDeserialized(ASTContext &C, unsigned ID) { |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 2189 | return new (C, ID) ObjCImplementationDecl(nullptr, nullptr, nullptr, |
| 2190 | SourceLocation(), SourceLocation()); |
| Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 2191 | } |
| 2192 | |
| John McCall | 0410e57 | 2011-07-22 04:15:06 +0000 | [diff] [blame] | 2193 | void ObjCImplementationDecl::setIvarInitializers(ASTContext &C, |
| 2194 | CXXCtorInitializer ** initializers, |
| 2195 | unsigned numInitializers) { |
| 2196 | if (numInitializers > 0) { |
| 2197 | NumIvarInitializers = numInitializers; |
| Eugene Zelenko | 2a1ba94 | 2018-04-09 22:14:10 +0000 | [diff] [blame] | 2198 | auto **ivarInitializers = new (C) CXXCtorInitializer*[NumIvarInitializers]; |
| John McCall | 0410e57 | 2011-07-22 04:15:06 +0000 | [diff] [blame] | 2199 | memcpy(ivarInitializers, initializers, |
| 2200 | numInitializers * sizeof(CXXCtorInitializer*)); |
| 2201 | IvarInitializers = ivarInitializers; |
| 2202 | } |
| 2203 | } |
| 2204 | |
| Richard Smith | c2bb818 | 2015-03-24 06:36:48 +0000 | [diff] [blame] | 2205 | ObjCImplementationDecl::init_const_iterator |
| 2206 | ObjCImplementationDecl::init_begin() const { |
| 2207 | return IvarInitializers.get(getASTContext().getExternalSource()); |
| 2208 | } |
| 2209 | |
| Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2210 | raw_ostream &clang::operator<<(raw_ostream &OS, |
| Benjamin Kramer | 2f56992 | 2012-02-07 11:57:45 +0000 | [diff] [blame] | 2211 | const ObjCImplementationDecl &ID) { |
| 2212 | OS << ID.getName(); |
| Benjamin Kramer | b11416d | 2010-04-17 09:33:03 +0000 | [diff] [blame] | 2213 | return OS; |
| 2214 | } |
| 2215 | |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 2216 | //===----------------------------------------------------------------------===// |
| 2217 | // ObjCCompatibleAliasDecl |
| 2218 | //===----------------------------------------------------------------------===// |
| 2219 | |
| Eugene Zelenko | 2f8e66b | 2017-11-22 21:32:07 +0000 | [diff] [blame] | 2220 | void ObjCCompatibleAliasDecl::anchor() {} |
| David Blaikie | 68e081d | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 2221 | |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 2222 | ObjCCompatibleAliasDecl * |
| 2223 | ObjCCompatibleAliasDecl::Create(ASTContext &C, DeclContext *DC, |
| 2224 | SourceLocation L, |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2225 | IdentifierInfo *Id, |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 2226 | ObjCInterfaceDecl* AliasedClass) { |
| Richard Smith | f798172 | 2013-11-22 09:01:48 +0000 | [diff] [blame] | 2227 | return new (C, DC) ObjCCompatibleAliasDecl(DC, L, Id, AliasedClass); |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 2228 | } |
| 2229 | |
| Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 2230 | ObjCCompatibleAliasDecl * |
| 2231 | ObjCCompatibleAliasDecl::CreateDeserialized(ASTContext &C, unsigned ID) { |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 2232 | return new (C, ID) ObjCCompatibleAliasDecl(nullptr, SourceLocation(), |
| 2233 | nullptr, nullptr); |
| Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 2234 | } |
| 2235 | |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 2236 | //===----------------------------------------------------------------------===// |
| 2237 | // ObjCPropertyDecl |
| 2238 | //===----------------------------------------------------------------------===// |
| 2239 | |
| Eugene Zelenko | 2f8e66b | 2017-11-22 21:32:07 +0000 | [diff] [blame] | 2240 | void ObjCPropertyDecl::anchor() {} |
| David Blaikie | 68e081d | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 2241 | |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 2242 | ObjCPropertyDecl *ObjCPropertyDecl::Create(ASTContext &C, DeclContext *DC, |
| 2243 | SourceLocation L, |
| 2244 | IdentifierInfo *Id, |
| Fariborz Jahanian | da8ec2b | 2010-01-21 17:36:00 +0000 | [diff] [blame] | 2245 | SourceLocation AtLoc, |
| Fariborz Jahanian | 86c2f5c | 2012-02-29 22:18:55 +0000 | [diff] [blame] | 2246 | SourceLocation LParenLoc, |
| Douglas Gregor | 813a066 | 2015-06-19 18:14:38 +0000 | [diff] [blame] | 2247 | QualType T, |
| 2248 | TypeSourceInfo *TSI, |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 2249 | PropertyControl propControl) { |
| Douglas Gregor | 813a066 | 2015-06-19 18:14:38 +0000 | [diff] [blame] | 2250 | return new (C, DC) ObjCPropertyDecl(DC, L, Id, AtLoc, LParenLoc, T, TSI, |
| 2251 | propControl); |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 2252 | } |
| 2253 | |
| Richard Smith | f798172 | 2013-11-22 09:01:48 +0000 | [diff] [blame] | 2254 | ObjCPropertyDecl *ObjCPropertyDecl::CreateDeserialized(ASTContext &C, |
| Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 2255 | unsigned ID) { |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 2256 | return new (C, ID) ObjCPropertyDecl(nullptr, SourceLocation(), nullptr, |
| 2257 | SourceLocation(), SourceLocation(), |
| Douglas Gregor | 813a066 | 2015-06-19 18:14:38 +0000 | [diff] [blame] | 2258 | QualType(), nullptr, None); |
| Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 2259 | } |
| 2260 | |
| Douglas Gregor | e83b956 | 2015-07-07 03:57:53 +0000 | [diff] [blame] | 2261 | QualType ObjCPropertyDecl::getUsageType(QualType objectType) const { |
| 2262 | return DeclType.substObjCMemberType(objectType, getDeclContext(), |
| 2263 | ObjCSubstitutionContext::Property); |
| 2264 | } |
| 2265 | |
| Chris Lattner | f1ccb0c | 2009-02-20 20:59:54 +0000 | [diff] [blame] | 2266 | //===----------------------------------------------------------------------===// |
| 2267 | // ObjCPropertyImplDecl |
| 2268 | //===----------------------------------------------------------------------===// |
| 2269 | |
| Fariborz Jahanian | 6efdf1d | 2008-04-23 00:06:01 +0000 | [diff] [blame] | 2270 | ObjCPropertyImplDecl *ObjCPropertyImplDecl::Create(ASTContext &C, |
| Douglas Gregor | c25d7a7 | 2009-01-09 00:49:46 +0000 | [diff] [blame] | 2271 | DeclContext *DC, |
| Fariborz Jahanian | 6efdf1d | 2008-04-23 00:06:01 +0000 | [diff] [blame] | 2272 | SourceLocation atLoc, |
| 2273 | SourceLocation L, |
| 2274 | ObjCPropertyDecl *property, |
| Daniel Dunbar | 3b4fdb0 | 2008-08-26 04:47:31 +0000 | [diff] [blame] | 2275 | Kind PK, |
| Douglas Gregor | b1b71e5 | 2010-11-17 01:03:52 +0000 | [diff] [blame] | 2276 | ObjCIvarDecl *ivar, |
| 2277 | SourceLocation ivarLoc) { |
| Richard Smith | f798172 | 2013-11-22 09:01:48 +0000 | [diff] [blame] | 2278 | return new (C, DC) ObjCPropertyImplDecl(DC, atLoc, L, property, PK, ivar, |
| 2279 | ivarLoc); |
| Fariborz Jahanian | 6efdf1d | 2008-04-23 00:06:01 +0000 | [diff] [blame] | 2280 | } |
| Chris Lattner | ed0e164 | 2008-03-17 01:19:02 +0000 | [diff] [blame] | 2281 | |
| Richard Smith | f798172 | 2013-11-22 09:01:48 +0000 | [diff] [blame] | 2282 | ObjCPropertyImplDecl *ObjCPropertyImplDecl::CreateDeserialized(ASTContext &C, |
| Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 2283 | unsigned ID) { |
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 2284 | return new (C, ID) ObjCPropertyImplDecl(nullptr, SourceLocation(), |
| 2285 | SourceLocation(), nullptr, Dynamic, |
| 2286 | nullptr, SourceLocation()); |
| Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 2287 | } |
| 2288 | |
| Douglas Gregor | b1b71e5 | 2010-11-17 01:03:52 +0000 | [diff] [blame] | 2289 | SourceRange ObjCPropertyImplDecl::getSourceRange() const { |
| 2290 | SourceLocation EndLoc = getLocation(); |
| 2291 | if (IvarLoc.isValid()) |
| 2292 | EndLoc = IvarLoc; |
| Chris Lattner | c5ffed4 | 2008-04-04 06:12:32 +0000 | [diff] [blame] | 2293 | |
| Douglas Gregor | b1b71e5 | 2010-11-17 01:03:52 +0000 | [diff] [blame] | 2294 | return SourceRange(AtLoc, EndLoc); |
| 2295 | } |