blob: cebd29525d52b25902dd7d73d8c6bae17c5daf4c [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- Decl.cpp - Declaration AST Node Implementation -------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Chris Lattner and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the Decl class and subclasses.
11//
12//===----------------------------------------------------------------------===//
13
14#include "clang/AST/Decl.h"
Steve Naroff980e5082007-10-01 19:00:59 +000015#include "clang/AST/DeclObjC.h"
Chris Lattnerc7229c32007-10-07 08:58:51 +000016#include "clang/Basic/IdentifierTable.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000017using namespace clang;
18
19// temporary statistics gathering
20static unsigned nFuncs = 0;
21static unsigned nBlockVars = 0;
22static unsigned nFileVars = 0;
23static unsigned nParmVars = 0;
24static unsigned nSUC = 0;
25static unsigned nEnumConst = 0;
26static unsigned nEnumDecls = 0;
27static unsigned nTypedef = 0;
28static unsigned nFieldDecls = 0;
Steve Naroff3536b442007-09-06 21:24:23 +000029static unsigned nInterfaceDecls = 0;
Steve Naroff3f128ad2007-09-17 14:16:13 +000030static unsigned nClassDecls = 0;
31static unsigned nMethodDecls = 0;
32static unsigned nProtocolDecls = 0;
Fariborz Jahanian894c57f2007-09-21 15:40:54 +000033static unsigned nForwardProtocolDecls = 0;
Fariborz Jahanianfd225cc2007-09-18 20:26:58 +000034static unsigned nCategoryDecls = 0;
Steve Naroff3f128ad2007-09-17 14:16:13 +000035static unsigned nIvarDecls = 0;
Fariborz Jahanianccb4f312007-09-25 18:38:09 +000036static unsigned nObjcImplementationDecls = 0;
Fariborz Jahanian8f3fde02007-10-02 16:38:50 +000037static unsigned nObjcCategoryImpl = 0;
Fariborz Jahanian243b64b2007-10-11 23:42:27 +000038static unsigned nObjcCompatibleAlias = 0;
Fariborz Jahanian82a5fe32007-11-06 22:01:00 +000039static unsigned nObjcPropertyDecl = 0;
Steve Naroff3f128ad2007-09-17 14:16:13 +000040
Reid Spencer5f016e22007-07-11 17:01:13 +000041static bool StatSwitch = false;
42
Steve Naroffe5ea3802007-09-17 14:49:06 +000043const char *Decl::getDeclKindName() const {
Steve Naroff8c9f13e2007-09-16 16:16:00 +000044 switch (DeclKind) {
45 default: assert(0 && "Unknown decl kind!");
46 case Typedef:
47 return "Typedef";
48 case Function:
49 return "Function";
Chris Lattneraa9fc462007-10-08 21:37:32 +000050 case BlockVar:
51 return "BlockVar";
52 case FileVar:
53 return "FileVar";
54 case ParmVar:
55 return "ParmVar";
Steve Naroff8c9f13e2007-09-16 16:16:00 +000056 case EnumConstant:
57 return "EnumConstant";
58 case ObjcInterface:
59 return "ObjcInterface";
60 case ObjcClass:
61 return "ObjcClass";
62 case ObjcMethod:
63 return "ObjcMethod";
Steve Naroff8c9f13e2007-09-16 16:16:00 +000064 case ObjcProtocol:
65 return "ObjcProtocol";
Fariborz Jahanian894c57f2007-09-21 15:40:54 +000066 case ObjcForwardProtocol:
67 return "ObjcForwardProtocol";
Steve Naroff8c9f13e2007-09-16 16:16:00 +000068 case Struct:
69 return "Struct";
70 case Union:
71 return "Union";
72 case Class:
73 return "Class";
74 case Enum:
75 return "Enum";
76 }
77}
78
Reid Spencer5f016e22007-07-11 17:01:13 +000079bool Decl::CollectingStats(bool enable) {
80 if (enable) StatSwitch = true;
Fariborz Jahanian3f5faf72007-10-04 00:45:27 +000081 return StatSwitch;
Reid Spencer5f016e22007-07-11 17:01:13 +000082}
83
84void Decl::PrintStats() {
85 fprintf(stderr, "*** Decl Stats:\n");
86 fprintf(stderr, " %d decls total.\n",
87 int(nFuncs+nBlockVars+nFileVars+nParmVars+nFieldDecls+nSUC+
Steve Naroff3f128ad2007-09-17 14:16:13 +000088 nEnumDecls+nEnumConst+nTypedef+nInterfaceDecls+nClassDecls+
Fariborz Jahanianfd225cc2007-09-18 20:26:58 +000089 nMethodDecls+nProtocolDecls+nCategoryDecls+nIvarDecls));
Reid Spencer5f016e22007-07-11 17:01:13 +000090 fprintf(stderr, " %d function decls, %d each (%d bytes)\n",
91 nFuncs, (int)sizeof(FunctionDecl), int(nFuncs*sizeof(FunctionDecl)));
92 fprintf(stderr, " %d block variable decls, %d each (%d bytes)\n",
93 nBlockVars, (int)sizeof(BlockVarDecl),
94 int(nBlockVars*sizeof(BlockVarDecl)));
95 fprintf(stderr, " %d file variable decls, %d each (%d bytes)\n",
96 nFileVars, (int)sizeof(FileVarDecl),
97 int(nFileVars*sizeof(FileVarDecl)));
98 fprintf(stderr, " %d parameter variable decls, %d each (%d bytes)\n",
99 nParmVars, (int)sizeof(ParmVarDecl),
100 int(nParmVars*sizeof(ParmVarDecl)));
101 fprintf(stderr, " %d field decls, %d each (%d bytes)\n",
102 nFieldDecls, (int)sizeof(FieldDecl),
103 int(nFieldDecls*sizeof(FieldDecl)));
104 fprintf(stderr, " %d struct/union/class decls, %d each (%d bytes)\n",
105 nSUC, (int)sizeof(RecordDecl),
106 int(nSUC*sizeof(RecordDecl)));
107 fprintf(stderr, " %d enum decls, %d each (%d bytes)\n",
108 nEnumDecls, (int)sizeof(EnumDecl),
109 int(nEnumDecls*sizeof(EnumDecl)));
110 fprintf(stderr, " %d enum constant decls, %d each (%d bytes)\n",
111 nEnumConst, (int)sizeof(EnumConstantDecl),
112 int(nEnumConst*sizeof(EnumConstantDecl)));
113 fprintf(stderr, " %d typedef decls, %d each (%d bytes)\n",
114 nTypedef, (int)sizeof(TypedefDecl),int(nTypedef*sizeof(TypedefDecl)));
Steve Naroff3f128ad2007-09-17 14:16:13 +0000115 // Objective-C decls...
116 fprintf(stderr, " %d interface decls, %d each (%d bytes)\n",
117 nInterfaceDecls, (int)sizeof(ObjcInterfaceDecl),
118 int(nInterfaceDecls*sizeof(ObjcInterfaceDecl)));
119 fprintf(stderr, " %d instance variable decls, %d each (%d bytes)\n",
120 nIvarDecls, (int)sizeof(ObjcIvarDecl),
121 int(nIvarDecls*sizeof(ObjcIvarDecl)));
122 fprintf(stderr, " %d class decls, %d each (%d bytes)\n",
123 nClassDecls, (int)sizeof(ObjcClassDecl),
124 int(nClassDecls*sizeof(ObjcClassDecl)));
125 fprintf(stderr, " %d method decls, %d each (%d bytes)\n",
126 nMethodDecls, (int)sizeof(ObjcMethodDecl),
127 int(nMethodDecls*sizeof(ObjcMethodDecl)));
128 fprintf(stderr, " %d protocol decls, %d each (%d bytes)\n",
129 nProtocolDecls, (int)sizeof(ObjcProtocolDecl),
130 int(nProtocolDecls*sizeof(ObjcProtocolDecl)));
Fariborz Jahanian894c57f2007-09-21 15:40:54 +0000131 fprintf(stderr, " %d forward protocol decls, %d each (%d bytes)\n",
132 nForwardProtocolDecls, (int)sizeof(ObjcForwardProtocolDecl),
133 int(nForwardProtocolDecls*sizeof(ObjcForwardProtocolDecl)));
Fariborz Jahanianfd225cc2007-09-18 20:26:58 +0000134 fprintf(stderr, " %d category decls, %d each (%d bytes)\n",
135 nCategoryDecls, (int)sizeof(ObjcCategoryDecl),
136 int(nCategoryDecls*sizeof(ObjcCategoryDecl)));
Steve Naroff3f128ad2007-09-17 14:16:13 +0000137
Fariborz Jahanianccb4f312007-09-25 18:38:09 +0000138 fprintf(stderr, " %d class implementation decls, %d each (%d bytes)\n",
139 nObjcImplementationDecls, (int)sizeof(ObjcImplementationDecl),
140 int(nObjcImplementationDecls*sizeof(ObjcImplementationDecl)));
141
Fariborz Jahanian8f3fde02007-10-02 16:38:50 +0000142 fprintf(stderr, " %d class implementation decls, %d each (%d bytes)\n",
143 nObjcCategoryImpl, (int)sizeof(ObjcCategoryImplDecl),
144 int(nObjcCategoryImpl*sizeof(ObjcCategoryImplDecl)));
145
Fariborz Jahanian243b64b2007-10-11 23:42:27 +0000146 fprintf(stderr, " %d compatibility alias decls, %d each (%d bytes)\n",
147 nObjcCompatibleAlias, (int)sizeof(ObjcCompatibleAliasDecl),
148 int(nObjcCompatibleAlias*sizeof(ObjcCompatibleAliasDecl)));
149
Fariborz Jahanian82a5fe32007-11-06 22:01:00 +0000150 fprintf(stderr, " %d property decls, %d each (%d bytes)\n",
151 nObjcPropertyDecl, (int)sizeof(ObjcPropertyDecl),
152 int(nObjcPropertyDecl*sizeof(ObjcPropertyDecl)));
153
Reid Spencer5f016e22007-07-11 17:01:13 +0000154 fprintf(stderr, "Total bytes = %d\n",
155 int(nFuncs*sizeof(FunctionDecl)+nBlockVars*sizeof(BlockVarDecl)+
156 nFileVars*sizeof(FileVarDecl)+nParmVars*sizeof(ParmVarDecl)+
157 nFieldDecls*sizeof(FieldDecl)+nSUC*sizeof(RecordDecl)+
158 nEnumDecls*sizeof(EnumDecl)+nEnumConst*sizeof(EnumConstantDecl)+
Steve Naroff3f128ad2007-09-17 14:16:13 +0000159 nTypedef*sizeof(TypedefDecl)) /* FIXME: add Objc decls */);
Reid Spencer5f016e22007-07-11 17:01:13 +0000160}
161
162void Decl::addDeclKind(const Kind k) {
163 switch (k) {
164 case Typedef:
165 nTypedef++;
166 break;
167 case Function:
168 nFuncs++;
169 break;
Chris Lattneraa9fc462007-10-08 21:37:32 +0000170 case BlockVar:
Reid Spencer5f016e22007-07-11 17:01:13 +0000171 nBlockVars++;
172 break;
Chris Lattneraa9fc462007-10-08 21:37:32 +0000173 case FileVar:
Reid Spencer5f016e22007-07-11 17:01:13 +0000174 nFileVars++;
175 break;
Chris Lattneraa9fc462007-10-08 21:37:32 +0000176 case ParmVar:
Reid Spencer5f016e22007-07-11 17:01:13 +0000177 nParmVars++;
178 break;
179 case EnumConstant:
180 nEnumConst++;
181 break;
182 case Field:
183 nFieldDecls++;
184 break;
185 case Struct:
186 case Union:
187 case Class:
188 nSUC++;
189 break;
190 case Enum:
191 nEnumDecls++;
192 break;
Steve Naroff3536b442007-09-06 21:24:23 +0000193 case ObjcInterface:
194 nInterfaceDecls++;
195 break;
Chris Lattner7341c332007-09-16 19:23:04 +0000196 case ObjcClass:
Steve Naroff3f128ad2007-09-17 14:16:13 +0000197 nClassDecls++;
198 break;
Chris Lattner7341c332007-09-16 19:23:04 +0000199 case ObjcMethod:
Steve Naroff3f128ad2007-09-17 14:16:13 +0000200 nMethodDecls++;
201 break;
Chris Lattner7341c332007-09-16 19:23:04 +0000202 case ObjcProtocol:
Steve Naroff3f128ad2007-09-17 14:16:13 +0000203 nProtocolDecls++;
204 break;
Fariborz Jahanian894c57f2007-09-21 15:40:54 +0000205 case ObjcForwardProtocol:
206 nForwardProtocolDecls++;
207 break;
Fariborz Jahanianfd225cc2007-09-18 20:26:58 +0000208 case ObjcCategory:
209 nCategoryDecls++;
210 break;
Chris Lattner7341c332007-09-16 19:23:04 +0000211 case ObjcIvar:
Steve Naroff3f128ad2007-09-17 14:16:13 +0000212 nIvarDecls++;
Chris Lattner7341c332007-09-16 19:23:04 +0000213 break;
Fariborz Jahanianccb4f312007-09-25 18:38:09 +0000214 case ObjcImplementation:
215 nObjcImplementationDecls++;
216 break;
Fariborz Jahanian8f3fde02007-10-02 16:38:50 +0000217 case ObjcCategoryImpl:
218 nObjcCategoryImpl++;
219 break;
Fariborz Jahanian243b64b2007-10-11 23:42:27 +0000220 case CompatibleAlias:
221 nObjcCompatibleAlias++;
222 break;
Fariborz Jahanian82a5fe32007-11-06 22:01:00 +0000223 case PropertyDecl:
224 nObjcPropertyDecl++;
225 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000226 }
227}
228
229// Out-of-line virtual method providing a home for Decl.
230Decl::~Decl() {
231}
232
Chris Lattnerfd5de472007-10-06 22:53:46 +0000233const char *NamedDecl::getName() const {
Reid Spencer5f016e22007-07-11 17:01:13 +0000234 if (const IdentifierInfo *II = getIdentifier())
235 return II->getName();
236 return "";
237}
238
239
240FunctionDecl::~FunctionDecl() {
241 delete[] ParamInfo;
242}
243
244unsigned FunctionDecl::getNumParams() const {
Chris Lattnerec584d62007-12-06 17:20:20 +0000245 if (isa<FunctionTypeNoProto>(getCanonicalType())) return 0;
246 return cast<FunctionTypeProto>(getCanonicalType())->getNumArgs();
Reid Spencer5f016e22007-07-11 17:01:13 +0000247}
248
249void FunctionDecl::setParams(ParmVarDecl **NewParamInfo, unsigned NumParams) {
250 assert(ParamInfo == 0 && "Already has param info!");
251 assert(NumParams == getNumParams() && "Parameter count mismatch!");
252
253 // Zero params -> null pointer.
254 if (NumParams) {
255 ParamInfo = new ParmVarDecl*[NumParams];
256 memcpy(ParamInfo, NewParamInfo, sizeof(ParmVarDecl*)*NumParams);
257 }
258}
259
260
261/// defineBody - When created, RecordDecl's correspond to a forward declared
262/// record. This method is used to mark the decl as being defined, with the
263/// specified contents.
264void RecordDecl::defineBody(FieldDecl **members, unsigned numMembers) {
265 assert(!isDefinition() && "Cannot redefine record!");
266 setDefinition(true);
267 NumMembers = numMembers;
268 if (numMembers) {
269 Members = new FieldDecl*[numMembers];
270 memcpy(Members, members, numMembers*sizeof(Decl*));
271 }
272}
273
274FieldDecl* RecordDecl::getMember(IdentifierInfo *name) {
275 if (Members == 0 || NumMembers < 0)
276 return 0;
Fariborz Jahanian3f5faf72007-10-04 00:45:27 +0000277
Reid Spencer5f016e22007-07-11 17:01:13 +0000278 // linear search. When C++ classes come along, will likely need to revisit.
279 for (int i = 0; i < NumMembers; ++i) {
280 if (Members[i]->getIdentifier() == name)
281 return Members[i];
282 }
283 return 0;
Chris Lattner6fa5f092007-07-12 15:43:07 +0000284}
Fariborz Jahaniane3a2ca72007-09-10 20:33:04 +0000285
Fariborz Jahanian59519652007-10-04 17:06:28 +0000286void ObjcMethodDecl::setMethodParams(ParmVarDecl **NewParamInfo,
287 unsigned NumParams) {
Fariborz Jahaniane55cd002007-09-12 18:23:47 +0000288 assert(ParamInfo == 0 && "Already has param info!");
289
290 // Zero params -> null pointer.
291 if (NumParams) {
292 ParamInfo = new ParmVarDecl*[NumParams];
293 memcpy(ParamInfo, NewParamInfo, sizeof(ParmVarDecl*)*NumParams);
294 NumMethodParams = NumParams;
295 }
296}
297
298ObjcMethodDecl::~ObjcMethodDecl() {
299 delete[] ParamInfo;
300}
301
Fariborz Jahanianb04a0212007-09-14 21:08:27 +0000302/// ObjcAddInstanceVariablesToClass - Inserts instance variables
303/// into ObjcInterfaceDecl's fields.
304///
Steve Naroff60fccee2007-10-29 21:38:07 +0000305void ObjcInterfaceDecl::addInstanceVariablesToClass(ObjcIvarDecl **ivars,
306 unsigned numIvars,
Steve Narofff908a872007-10-30 02:23:23 +0000307 SourceLocation RBrac) {
Fariborz Jahanianb04a0212007-09-14 21:08:27 +0000308 NumIvars = numIvars;
309 if (numIvars) {
310 Ivars = new ObjcIvarDecl*[numIvars];
311 memcpy(Ivars, ivars, numIvars*sizeof(ObjcIvarDecl*));
312 }
Steve Narofff908a872007-10-30 02:23:23 +0000313 setLocEnd(RBrac);
Fariborz Jahanianb04a0212007-09-14 21:08:27 +0000314}
315
Fariborz Jahaniand0b90bf2007-09-26 18:27:25 +0000316/// ObjcAddInstanceVariablesToClassImpl - Checks for correctness of Instance
317/// Variables (Ivars) relative to what declared in @implementation;s class.
318/// Ivars into ObjcImplementationDecl's fields.
319///
320void ObjcImplementationDecl::ObjcAddInstanceVariablesToClassImpl(
Fariborz Jahanian59519652007-10-04 17:06:28 +0000321 ObjcIvarDecl **ivars, unsigned numIvars) {
Fariborz Jahaniand0b90bf2007-09-26 18:27:25 +0000322 NumIvars = numIvars;
323 if (numIvars) {
324 Ivars = new ObjcIvarDecl*[numIvars];
325 memcpy(Ivars, ivars, numIvars*sizeof(ObjcIvarDecl*));
326 }
327}
328
Steve Naroff60fccee2007-10-29 21:38:07 +0000329/// addMethods - Insert instance and methods declarations into
Fariborz Jahaniane3a2ca72007-09-10 20:33:04 +0000330/// ObjcInterfaceDecl's InsMethods and ClsMethods fields.
331///
Steve Naroff60fccee2007-10-29 21:38:07 +0000332void ObjcInterfaceDecl::addMethods(ObjcMethodDecl **insMethods,
333 unsigned numInsMembers,
334 ObjcMethodDecl **clsMethods,
335 unsigned numClsMembers,
336 SourceLocation endLoc) {
Fariborz Jahanian7ed9e0f2007-10-02 22:05:16 +0000337 NumInstanceMethods = numInsMembers;
Fariborz Jahaniane3a2ca72007-09-10 20:33:04 +0000338 if (numInsMembers) {
Fariborz Jahanian7ed9e0f2007-10-02 22:05:16 +0000339 InstanceMethods = new ObjcMethodDecl*[numInsMembers];
340 memcpy(InstanceMethods, insMethods, numInsMembers*sizeof(ObjcMethodDecl*));
Fariborz Jahaniane3a2ca72007-09-10 20:33:04 +0000341 }
Fariborz Jahanian7ed9e0f2007-10-02 22:05:16 +0000342 NumClassMethods = numClsMembers;
Fariborz Jahaniane3a2ca72007-09-10 20:33:04 +0000343 if (numClsMembers) {
Fariborz Jahanian7ed9e0f2007-10-02 22:05:16 +0000344 ClassMethods = new ObjcMethodDecl*[numClsMembers];
345 memcpy(ClassMethods, clsMethods, numClsMembers*sizeof(ObjcMethodDecl*));
Fariborz Jahaniane3a2ca72007-09-10 20:33:04 +0000346 }
Steve Narofff908a872007-10-30 02:23:23 +0000347 AtEndLoc = endLoc;
Fariborz Jahaniane3a2ca72007-09-10 20:33:04 +0000348}
349
Steve Naroff60fccee2007-10-29 21:38:07 +0000350/// addMethods - Insert instance and methods declarations into
Fariborz Jahanian25e077d2007-09-17 21:07:36 +0000351/// ObjcProtocolDecl's ProtoInsMethods and ProtoClsMethods fields.
352///
Steve Naroff60fccee2007-10-29 21:38:07 +0000353void ObjcProtocolDecl::addMethods(ObjcMethodDecl **insMethods,
354 unsigned numInsMembers,
355 ObjcMethodDecl **clsMethods,
356 unsigned numClsMembers,
Steve Naroff423cb562007-10-30 13:30:57 +0000357 SourceLocation endLoc) {
Fariborz Jahanian7ed9e0f2007-10-02 22:05:16 +0000358 NumInstanceMethods = numInsMembers;
Fariborz Jahanian25e077d2007-09-17 21:07:36 +0000359 if (numInsMembers) {
Fariborz Jahanian7ed9e0f2007-10-02 22:05:16 +0000360 InstanceMethods = new ObjcMethodDecl*[numInsMembers];
361 memcpy(InstanceMethods, insMethods, numInsMembers*sizeof(ObjcMethodDecl*));
Fariborz Jahanian25e077d2007-09-17 21:07:36 +0000362 }
Fariborz Jahanian7ed9e0f2007-10-02 22:05:16 +0000363 NumClassMethods = numClsMembers;
Fariborz Jahanian25e077d2007-09-17 21:07:36 +0000364 if (numClsMembers) {
Fariborz Jahanian7ed9e0f2007-10-02 22:05:16 +0000365 ClassMethods = new ObjcMethodDecl*[numClsMembers];
366 memcpy(ClassMethods, clsMethods, numClsMembers*sizeof(ObjcMethodDecl*));
Fariborz Jahanian25e077d2007-09-17 21:07:36 +0000367 }
Steve Naroff423cb562007-10-30 13:30:57 +0000368 AtEndLoc = endLoc;
Fariborz Jahanian25e077d2007-09-17 21:07:36 +0000369}
370
Steve Naroff60fccee2007-10-29 21:38:07 +0000371/// addMethods - Insert instance and methods declarations into
Fariborz Jahanian8f3fde02007-10-02 16:38:50 +0000372/// ObjcCategoryDecl's CatInsMethods and CatClsMethods fields.
Fariborz Jahanianfd225cc2007-09-18 20:26:58 +0000373///
Steve Naroff60fccee2007-10-29 21:38:07 +0000374void ObjcCategoryDecl::addMethods(ObjcMethodDecl **insMethods,
375 unsigned numInsMembers,
376 ObjcMethodDecl **clsMethods,
377 unsigned numClsMembers,
Steve Naroff423cb562007-10-30 13:30:57 +0000378 SourceLocation endLoc) {
Fariborz Jahanian7ed9e0f2007-10-02 22:05:16 +0000379 NumInstanceMethods = numInsMembers;
Fariborz Jahanianfd225cc2007-09-18 20:26:58 +0000380 if (numInsMembers) {
Fariborz Jahanian7ed9e0f2007-10-02 22:05:16 +0000381 InstanceMethods = new ObjcMethodDecl*[numInsMembers];
382 memcpy(InstanceMethods, insMethods, numInsMembers*sizeof(ObjcMethodDecl*));
Fariborz Jahanianfd225cc2007-09-18 20:26:58 +0000383 }
Fariborz Jahanian7ed9e0f2007-10-02 22:05:16 +0000384 NumClassMethods = numClsMembers;
Fariborz Jahanianfd225cc2007-09-18 20:26:58 +0000385 if (numClsMembers) {
Fariborz Jahanian7ed9e0f2007-10-02 22:05:16 +0000386 ClassMethods = new ObjcMethodDecl*[numClsMembers];
387 memcpy(ClassMethods, clsMethods, numClsMembers*sizeof(ObjcMethodDecl*));
Fariborz Jahanianfd225cc2007-09-18 20:26:58 +0000388 }
Steve Naroff423cb562007-10-30 13:30:57 +0000389 AtEndLoc = endLoc;
Fariborz Jahanianfd225cc2007-09-18 20:26:58 +0000390}
391
Steve Naroff03300712007-11-12 13:56:41 +0000392ObjcIvarDecl *ObjcInterfaceDecl::lookupInstanceVariable(
393 IdentifierInfo *ID, ObjcInterfaceDecl *&clsDeclared) {
394 ObjcInterfaceDecl* ClassDecl = this;
395 while (ClassDecl != NULL) {
396 ObjcIvarDecl **ivars = ClassDecl->getInstanceVariables();
397 int ivarCount = ClassDecl->getNumInstanceVariables();
398 for (int i = 0; i < ivarCount; ++i) {
399 if (ivars[i]->getIdentifier() == ID) {
400 clsDeclared = ClassDecl;
401 return ivars[i];
402 }
403 }
404 ClassDecl = ClassDecl->getSuperClass();
405 }
406 return NULL;
407}
408
Steve Naroff3d581382007-10-14 18:27:41 +0000409// lookupInstanceMethod - This method returns an instance method by looking in
410// the class, it's categories, and it's super classes (using a linear search).
Steve Naroff6a8a9a42007-10-02 20:01:56 +0000411ObjcMethodDecl *ObjcInterfaceDecl::lookupInstanceMethod(Selector &Sel) {
412 ObjcInterfaceDecl* ClassDecl = this;
413 while (ClassDecl != NULL) {
Fariborz Jahanian7ed9e0f2007-10-02 22:05:16 +0000414 ObjcMethodDecl **methods = ClassDecl->getInstanceMethods();
415 int methodCount = ClassDecl->getNumInstanceMethods();
Steve Naroff6a8a9a42007-10-02 20:01:56 +0000416 for (int i = 0; i < methodCount; ++i) {
417 if (methods[i]->getSelector() == Sel) {
418 return methods[i];
419 }
420 }
Steve Naroffff1afdb2007-10-14 23:13:51 +0000421 // Didn't find one yet - look through protocols.
422 ObjcProtocolDecl **protocols = ClassDecl->getReferencedProtocols();
423 int numProtocols = ClassDecl->getNumIntfRefProtocols();
424 for (int pIdx = 0; pIdx < numProtocols; pIdx++) {
425 ObjcMethodDecl **methods = protocols[pIdx]->getInstanceMethods();
426 int methodCount = protocols[pIdx]->getNumInstanceMethods();
427 for (int i = 0; i < methodCount; ++i) {
428 if (methods[i]->getSelector() == Sel) {
429 return methods[i];
430 }
431 }
432 }
Steve Naroff3d581382007-10-14 18:27:41 +0000433 // Didn't find one yet - now look through categories.
Steve Naroffff1afdb2007-10-14 23:13:51 +0000434 ObjcCategoryDecl *CatDecl = ClassDecl->getCategoryList();
Steve Naroff3d581382007-10-14 18:27:41 +0000435 while (CatDecl) {
436 ObjcMethodDecl **methods = CatDecl->getInstanceMethods();
437 int methodCount = CatDecl->getNumInstanceMethods();
438 for (int i = 0; i < methodCount; ++i) {
439 if (methods[i]->getSelector() == Sel) {
440 return methods[i];
441 }
442 }
443 CatDecl = CatDecl->getNextClassCategory();
444 }
Steve Naroff6a8a9a42007-10-02 20:01:56 +0000445 ClassDecl = ClassDecl->getSuperClass();
446 }
447 return NULL;
448}
449
Steve Naroff3d581382007-10-14 18:27:41 +0000450// lookupClassMethod - This method returns a class method by looking in the
451// class, it's categories, and it's super classes (using a linear search).
Steve Naroff6a8a9a42007-10-02 20:01:56 +0000452ObjcMethodDecl *ObjcInterfaceDecl::lookupClassMethod(Selector &Sel) {
453 ObjcInterfaceDecl* ClassDecl = this;
454 while (ClassDecl != NULL) {
Fariborz Jahanian7ed9e0f2007-10-02 22:05:16 +0000455 ObjcMethodDecl **methods = ClassDecl->getClassMethods();
456 int methodCount = ClassDecl->getNumClassMethods();
Steve Naroff6a8a9a42007-10-02 20:01:56 +0000457 for (int i = 0; i < methodCount; ++i) {
458 if (methods[i]->getSelector() == Sel) {
459 return methods[i];
460 }
461 }
Steve Naroffff1afdb2007-10-14 23:13:51 +0000462 // Didn't find one yet - look through protocols.
463 ObjcProtocolDecl **protocols = ClassDecl->getReferencedProtocols();
464 int numProtocols = ClassDecl->getNumIntfRefProtocols();
465 for (int pIdx = 0; pIdx < numProtocols; pIdx++) {
466 ObjcMethodDecl **methods = protocols[pIdx]->getClassMethods();
467 int methodCount = protocols[pIdx]->getNumClassMethods();
468 for (int i = 0; i < methodCount; ++i) {
469 if (methods[i]->getSelector() == Sel) {
470 return methods[i];
471 }
472 }
473 }
Steve Naroff3d581382007-10-14 18:27:41 +0000474 // Didn't find one yet - now look through categories.
Steve Naroffff1afdb2007-10-14 23:13:51 +0000475 ObjcCategoryDecl *CatDecl = ClassDecl->getCategoryList();
Steve Naroff3d581382007-10-14 18:27:41 +0000476 while (CatDecl) {
477 ObjcMethodDecl **methods = CatDecl->getClassMethods();
478 int methodCount = CatDecl->getNumClassMethods();
479 for (int i = 0; i < methodCount; ++i) {
480 if (methods[i]->getSelector() == Sel) {
481 return methods[i];
482 }
483 }
484 CatDecl = CatDecl->getNextClassCategory();
485 }
Steve Naroff6a8a9a42007-10-02 20:01:56 +0000486 ClassDecl = ClassDecl->getSuperClass();
487 }
488 return NULL;
489}
490
Steve Naroffc43d8682007-11-11 00:10:47 +0000491// lookupInstanceMethod - This method returns an instance method by looking in
492// the class implementation. Unlike interfaces, we don't look outside the
493// implementation.
494ObjcMethodDecl *ObjcImplementationDecl::lookupInstanceMethod(Selector &Sel) {
Steve Naroff0416fb92007-11-11 17:19:15 +0000495 ObjcMethodDecl *const*methods = getInstanceMethods();
Steve Naroffc43d8682007-11-11 00:10:47 +0000496 int methodCount = getNumInstanceMethods();
497 for (int i = 0; i < methodCount; ++i) {
498 if (methods[i]->getSelector() == Sel) {
499 return methods[i];
500 }
501 }
502 return NULL;
503}
504
505// lookupClassMethod - This method returns an instance method by looking in
506// the class implementation. Unlike interfaces, we don't look outside the
507// implementation.
508ObjcMethodDecl *ObjcImplementationDecl::lookupClassMethod(Selector &Sel) {
Steve Naroff0416fb92007-11-11 17:19:15 +0000509 ObjcMethodDecl *const*methods = getClassMethods();
Steve Naroffc43d8682007-11-11 00:10:47 +0000510 int methodCount = getNumClassMethods();
511 for (int i = 0; i < methodCount; ++i) {
512 if (methods[i]->getSelector() == Sel) {
513 return methods[i];
514 }
515 }
516 return NULL;
517}
Fariborz Jahanian25e077d2007-09-17 21:07:36 +0000518
Steve Naroffe1e6c0d2007-11-12 22:05:31 +0000519// lookupInstanceMethod - This method returns an instance method by looking in
520// the class implementation. Unlike interfaces, we don't look outside the
521// implementation.
522ObjcMethodDecl *ObjcCategoryImplDecl::lookupInstanceMethod(Selector &Sel) {
523 ObjcMethodDecl *const*methods = getInstanceMethods();
524 int methodCount = getNumInstanceMethods();
525 for (int i = 0; i < methodCount; ++i) {
526 if (methods[i]->getSelector() == Sel) {
527 return methods[i];
528 }
529 }
530 return NULL;
531}
532
533// lookupClassMethod - This method returns an instance method by looking in
534// the class implementation. Unlike interfaces, we don't look outside the
535// implementation.
536ObjcMethodDecl *ObjcCategoryImplDecl::lookupClassMethod(Selector &Sel) {
537 ObjcMethodDecl *const*methods = getClassMethods();
538 int methodCount = getNumClassMethods();
539 for (int i = 0; i < methodCount; ++i) {
540 if (methods[i]->getSelector() == Sel) {
541 return methods[i];
542 }
543 }
544 return NULL;
545}