blob: 8d5457154c910abaf226e2ae518af98143940179 [file] [log] [blame]
Chris Lattner4d391482007-12-12 07:09:47 +00001//===--- SemaDeclObjC.cpp - Semantic Analysis for ObjC Declarations -------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattner4d391482007-12-12 07:09:47 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements semantic analysis for Objective C declarations.
11//
12//===----------------------------------------------------------------------===//
13
14#include "Sema.h"
15#include "clang/AST/ASTContext.h"
16#include "clang/AST/DeclObjC.h"
17#include "clang/Parse/Scope.h"
18
19using namespace clang;
20
Ted Kremeneka526c5c2008-01-07 19:49:32 +000021/// ObjCActOnStartOfMethodDef - This routine sets up parameters; invisible
Chris Lattner4d391482007-12-12 07:09:47 +000022/// and user declared, in the method definition's AST.
Ted Kremeneka526c5c2008-01-07 19:49:32 +000023void Sema::ObjCActOnStartOfMethodDef(Scope *FnBodyScope, DeclTy *D) {
Chris Lattner4d391482007-12-12 07:09:47 +000024 assert(CurFunctionDecl == 0 && "Method parsing confused");
Ted Kremeneka526c5c2008-01-07 19:49:32 +000025 ObjCMethodDecl *MDecl = dyn_cast<ObjCMethodDecl>(static_cast<Decl *>(D));
Chris Lattner4d391482007-12-12 07:09:47 +000026 assert(MDecl != 0 && "Not a method declarator!");
Steve Naroffa56f6162007-12-18 01:30:32 +000027
28 // Allow the rest of sema to find private method decl implementations.
29 if (MDecl->isInstance())
30 AddInstanceMethodToGlobalPool(MDecl);
31 else
32 AddFactoryMethodToGlobalPool(MDecl);
Chris Lattner4d391482007-12-12 07:09:47 +000033
34 // Allow all of Sema to see that we are entering a method definition.
35 CurMethodDecl = MDecl;
36
37 // Create Decl objects for each parameter, entrring them in the scope for
38 // binding to their use.
39 struct DeclaratorChunk::ParamInfo PI;
40
41 // Insert the invisible arguments, self and _cmd!
42 PI.Ident = &Context.Idents.get("self");
43 PI.IdentLoc = SourceLocation(); // synthesized vars have a null location.
44 PI.InvalidType = false;
45 if (MDecl->isInstance()) {
Fariborz Jahanian20552d22008-01-10 20:33:58 +000046 ObjCInterfaceDecl *OID = MDecl->getClassInterface();
47 // There may be no interface context due to error in declaration of the
48 // interface (which has been reported). Recover gracefully
49 if (OID) {
50 QualType selfTy = Context.getObjCInterfaceType(OID);
51 selfTy = Context.getPointerType(selfTy);
52 PI.TypeInfo = selfTy.getAsOpaquePtr();
53 }
Chris Lattner4d391482007-12-12 07:09:47 +000054 } else
Ted Kremeneka526c5c2008-01-07 19:49:32 +000055 PI.TypeInfo = Context.getObjCIdType().getAsOpaquePtr();
Chris Lattner4d391482007-12-12 07:09:47 +000056 CurMethodDecl->setSelfDecl(ActOnParamDeclarator(PI, FnBodyScope));
57
58 PI.Ident = &Context.Idents.get("_cmd");
Ted Kremeneka526c5c2008-01-07 19:49:32 +000059 PI.TypeInfo = Context.getObjCSelType().getAsOpaquePtr();
Chris Lattner4d391482007-12-12 07:09:47 +000060 ActOnParamDeclarator(PI, FnBodyScope);
61
62 for (int i = 0; i < MDecl->getNumParams(); i++) {
63 ParmVarDecl *PDecl = MDecl->getParamDecl(i);
64 PI.Ident = PDecl->getIdentifier();
65 PI.IdentLoc = PDecl->getLocation(); // user vars have a real location.
66 PI.TypeInfo = PDecl->getType().getAsOpaquePtr();
Fariborz Jahanian2338d582008-01-21 22:59:53 +000067 MDecl->setParamDecl(i, ActOnParamDeclarator(PI, FnBodyScope));
Chris Lattner4d391482007-12-12 07:09:47 +000068 }
69}
70
71Sema::DeclTy *Sema::ActOnStartClassInterface(
72 SourceLocation AtInterfaceLoc,
73 IdentifierInfo *ClassName, SourceLocation ClassLoc,
74 IdentifierInfo *SuperName, SourceLocation SuperLoc,
75 IdentifierInfo **ProtocolNames, unsigned NumProtocols,
76 SourceLocation EndProtoLoc, AttributeList *AttrList) {
77 assert(ClassName && "Missing class identifier");
78
79 // Check for another declaration kind with the same name.
80 ScopedDecl *PrevDecl = LookupInterfaceDecl(ClassName);
Ted Kremeneka526c5c2008-01-07 19:49:32 +000081 if (PrevDecl && !isa<ObjCInterfaceDecl>(PrevDecl)) {
Chris Lattner4d391482007-12-12 07:09:47 +000082 Diag(ClassLoc, diag::err_redefinition_different_kind,
83 ClassName->getName());
84 Diag(PrevDecl->getLocation(), diag::err_previous_definition);
85 }
86
Ted Kremeneka526c5c2008-01-07 19:49:32 +000087 ObjCInterfaceDecl* IDecl = dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl);
Chris Lattner4d391482007-12-12 07:09:47 +000088 if (IDecl) {
89 // Class already seen. Is it a forward declaration?
90 if (!IDecl->isForwardDecl())
91 Diag(AtInterfaceLoc, diag::err_duplicate_class_def, IDecl->getName());
92 else {
93 IDecl->setLocation(AtInterfaceLoc);
94 IDecl->setForwardDecl(false);
95 IDecl->AllocIntfRefProtocols(NumProtocols);
96 }
97 }
98 else {
Ted Kremeneka526c5c2008-01-07 19:49:32 +000099 IDecl = new ObjCInterfaceDecl(AtInterfaceLoc, NumProtocols, ClassName);
Chris Lattner4d391482007-12-12 07:09:47 +0000100
101 // Chain & install the interface decl into the identifier.
102 IDecl->setNext(ClassName->getFETokenInfo<ScopedDecl>());
103 ClassName->setFETokenInfo(IDecl);
104
105 // Remember that this needs to be removed when the scope is popped.
106 TUScope->AddDecl(IDecl);
107 }
108
109 if (SuperName) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000110 ObjCInterfaceDecl* SuperClassEntry = 0;
Chris Lattner4d391482007-12-12 07:09:47 +0000111 // Check if a different kind of symbol declared in this scope.
112 PrevDecl = LookupInterfaceDecl(SuperName);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000113 if (PrevDecl && !isa<ObjCInterfaceDecl>(PrevDecl)) {
Chris Lattner4d391482007-12-12 07:09:47 +0000114 Diag(SuperLoc, diag::err_redefinition_different_kind,
115 SuperName->getName());
116 Diag(PrevDecl->getLocation(), diag::err_previous_definition);
117 }
118 else {
119 // Check that super class is previously defined
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000120 SuperClassEntry = dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl);
Chris Lattner4d391482007-12-12 07:09:47 +0000121
122 if (!SuperClassEntry || SuperClassEntry->isForwardDecl()) {
123 Diag(AtInterfaceLoc, diag::err_undef_superclass,
124 SuperClassEntry ? SuperClassEntry->getName()
125 : SuperName->getName(),
126 ClassName->getName());
127 }
128 }
129 IDecl->setSuperClass(SuperClassEntry);
130 IDecl->setLocEnd(SuperLoc);
131 } else { // we have a root class.
132 IDecl->setLocEnd(ClassLoc);
133 }
134
135 /// Check then save referenced protocols
136 if (NumProtocols) {
137 for (unsigned int i = 0; i != NumProtocols; i++) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000138 ObjCProtocolDecl* RefPDecl = ObjCProtocols[ProtocolNames[i]];
Chris Lattner4d391482007-12-12 07:09:47 +0000139 if (!RefPDecl || RefPDecl->isForwardDecl())
140 Diag(ClassLoc, diag::warn_undef_protocolref,
141 ProtocolNames[i]->getName(),
142 ClassName->getName());
Fariborz Jahanianc395bda2007-12-20 19:24:10 +0000143 IDecl->setIntfRefProtocols(i, RefPDecl);
Chris Lattner4d391482007-12-12 07:09:47 +0000144 }
145 IDecl->setLocEnd(EndProtoLoc);
146 }
147 return IDecl;
148}
149
150/// ActOnCompatiblityAlias - this action is called after complete parsing of
151/// @compaatibility_alias declaration. It sets up the alias relationships.
152Sema::DeclTy *Sema::ActOnCompatiblityAlias(
153 SourceLocation AtCompatibilityAliasLoc,
154 IdentifierInfo *AliasName, SourceLocation AliasLocation,
155 IdentifierInfo *ClassName, SourceLocation ClassLocation) {
156 // Look for previous declaration of alias name
157 ScopedDecl *ADecl = LookupScopedDecl(AliasName, Decl::IDNS_Ordinary,
158 AliasLocation, TUScope);
159 if (ADecl) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000160 if (isa<ObjCCompatibleAliasDecl>(ADecl)) {
Chris Lattner4d391482007-12-12 07:09:47 +0000161 Diag(AliasLocation, diag::warn_previous_alias_decl);
162 Diag(ADecl->getLocation(), diag::warn_previous_declaration);
163 }
164 else {
165 Diag(AliasLocation, diag::err_conflicting_aliasing_type,
166 AliasName->getName());
167 Diag(ADecl->getLocation(), diag::err_previous_declaration);
168 }
169 return 0;
170 }
171 // Check for class declaration
172 ScopedDecl *CDecl = LookupScopedDecl(ClassName, Decl::IDNS_Ordinary,
173 ClassLocation, TUScope);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000174 if (!CDecl || !isa<ObjCInterfaceDecl>(CDecl)) {
Chris Lattner4d391482007-12-12 07:09:47 +0000175 Diag(ClassLocation, diag::warn_undef_interface,
176 ClassName->getName());
177 if (CDecl)
178 Diag(CDecl->getLocation(), diag::warn_previous_declaration);
179 return 0;
180 }
181 // Everything checked out, instantiate a new alias declaration ast
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000182 ObjCCompatibleAliasDecl *AliasDecl =
183 new ObjCCompatibleAliasDecl(AtCompatibilityAliasLoc,
Chris Lattner4d391482007-12-12 07:09:47 +0000184 AliasName,
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000185 dyn_cast<ObjCInterfaceDecl>(CDecl));
Chris Lattner4d391482007-12-12 07:09:47 +0000186
187 // Chain & install the interface decl into the identifier.
188 AliasDecl->setNext(AliasName->getFETokenInfo<ScopedDecl>());
189 AliasName->setFETokenInfo(AliasDecl);
190 return AliasDecl;
191}
192
193Sema::DeclTy *Sema::ActOnStartProtocolInterface(
194 SourceLocation AtProtoInterfaceLoc,
195 IdentifierInfo *ProtocolName, SourceLocation ProtocolLoc,
196 IdentifierInfo **ProtoRefNames, unsigned NumProtoRefs,
197 SourceLocation EndProtoLoc) {
198 assert(ProtocolName && "Missing protocol identifier");
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000199 ObjCProtocolDecl *PDecl = ObjCProtocols[ProtocolName];
Chris Lattner4d391482007-12-12 07:09:47 +0000200 if (PDecl) {
201 // Protocol already seen. Better be a forward protocol declaration
202 if (!PDecl->isForwardDecl())
203 Diag(ProtocolLoc, diag::err_duplicate_protocol_def,
204 ProtocolName->getName());
205 else {
206 PDecl->setForwardDecl(false);
207 PDecl->AllocReferencedProtocols(NumProtoRefs);
208 }
209 }
210 else {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000211 PDecl = new ObjCProtocolDecl(AtProtoInterfaceLoc, NumProtoRefs,
Chris Lattner4d391482007-12-12 07:09:47 +0000212 ProtocolName);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000213 ObjCProtocols[ProtocolName] = PDecl;
Chris Lattner4d391482007-12-12 07:09:47 +0000214 }
215
216 if (NumProtoRefs) {
217 /// Check then save referenced protocols
218 for (unsigned int i = 0; i != NumProtoRefs; i++) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000219 ObjCProtocolDecl* RefPDecl = ObjCProtocols[ProtoRefNames[i]];
Chris Lattner4d391482007-12-12 07:09:47 +0000220 if (!RefPDecl || RefPDecl->isForwardDecl())
221 Diag(ProtocolLoc, diag::warn_undef_protocolref,
222 ProtoRefNames[i]->getName(),
223 ProtocolName->getName());
Fariborz Jahanianc395bda2007-12-20 19:24:10 +0000224 PDecl->setReferencedProtocols(i, RefPDecl);
Chris Lattner4d391482007-12-12 07:09:47 +0000225 }
226 PDecl->setLocEnd(EndProtoLoc);
227 }
228 return PDecl;
229}
230
231/// FindProtocolDeclaration - This routine looks up protocols and
232/// issuer error if they are not declared. It returns list of protocol
233/// declarations in its 'Protocols' argument.
234void
235Sema::FindProtocolDeclaration(SourceLocation TypeLoc,
236 IdentifierInfo **ProtocolId,
237 unsigned NumProtocols,
238 llvm::SmallVector<DeclTy *,8> &Protocols) {
239 for (unsigned i = 0; i != NumProtocols; ++i) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000240 ObjCProtocolDecl *PDecl = ObjCProtocols[ProtocolId[i]];
Chris Lattner4d391482007-12-12 07:09:47 +0000241 if (!PDecl)
242 Diag(TypeLoc, diag::err_undeclared_protocol,
243 ProtocolId[i]->getName());
244 else
245 Protocols.push_back(PDecl);
246 }
247}
248
249/// ActOnForwardProtocolDeclaration -
250Action::DeclTy *
251Sema::ActOnForwardProtocolDeclaration(SourceLocation AtProtocolLoc,
252 IdentifierInfo **IdentList, unsigned NumElts) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000253 llvm::SmallVector<ObjCProtocolDecl*, 32> Protocols;
Chris Lattner4d391482007-12-12 07:09:47 +0000254
255 for (unsigned i = 0; i != NumElts; ++i) {
256 IdentifierInfo *P = IdentList[i];
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000257 ObjCProtocolDecl *PDecl = ObjCProtocols[P];
Chris Lattner4d391482007-12-12 07:09:47 +0000258 if (!PDecl) { // Not already seen?
259 // FIXME: Pass in the location of the identifier!
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000260 PDecl = new ObjCProtocolDecl(AtProtocolLoc, 0, P, true);
261 ObjCProtocols[P] = PDecl;
Chris Lattner4d391482007-12-12 07:09:47 +0000262 }
263
264 Protocols.push_back(PDecl);
265 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000266 return new ObjCForwardProtocolDecl(AtProtocolLoc,
Chris Lattner4d391482007-12-12 07:09:47 +0000267 &Protocols[0], Protocols.size());
268}
269
270Sema::DeclTy *Sema::ActOnStartCategoryInterface(
271 SourceLocation AtInterfaceLoc,
272 IdentifierInfo *ClassName, SourceLocation ClassLoc,
273 IdentifierInfo *CategoryName, SourceLocation CategoryLoc,
274 IdentifierInfo **ProtoRefNames, unsigned NumProtoRefs,
275 SourceLocation EndProtoLoc) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000276 ObjCInterfaceDecl *IDecl = getObjCInterfaceDecl(ClassName);
Chris Lattner4d391482007-12-12 07:09:47 +0000277
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000278 ObjCCategoryDecl *CDecl = new ObjCCategoryDecl(AtInterfaceLoc, NumProtoRefs,
Chris Lattner4d391482007-12-12 07:09:47 +0000279 CategoryName);
280 CDecl->setClassInterface(IDecl);
Fariborz Jahanian7c453b32008-01-17 20:33:24 +0000281
282 /// Check that class of this category is already completely declared.
283 if (!IDecl || IDecl->isForwardDecl())
284 Diag(ClassLoc, diag::err_undef_interface, ClassName->getName());
285 else {
286 /// Check for duplicate interface declaration for this category
287 ObjCCategoryDecl *CDeclChain;
288 for (CDeclChain = IDecl->getCategoryList(); CDeclChain;
289 CDeclChain = CDeclChain->getNextClassCategory()) {
290 if (CDeclChain->getIdentifier() == CategoryName) {
291 Diag(CategoryLoc, diag::err_dup_category_def, ClassName->getName(),
292 CategoryName->getName());
293 break;
294 }
Chris Lattner4d391482007-12-12 07:09:47 +0000295 }
Chris Lattner4d391482007-12-12 07:09:47 +0000296 if (!CDeclChain)
297 CDecl->insertNextClassCategory();
Fariborz Jahanian7c453b32008-01-17 20:33:24 +0000298 }
Chris Lattner4d391482007-12-12 07:09:47 +0000299
300 if (NumProtoRefs) {
301 /// Check then save referenced protocols
302 for (unsigned int i = 0; i != NumProtoRefs; i++) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000303 ObjCProtocolDecl* RefPDecl = ObjCProtocols[ProtoRefNames[i]];
Chris Lattner4d391482007-12-12 07:09:47 +0000304 if (!RefPDecl || RefPDecl->isForwardDecl()) {
305 Diag(CategoryLoc, diag::warn_undef_protocolref,
306 ProtoRefNames[i]->getName(),
307 CategoryName->getName());
308 }
Fariborz Jahanianc395bda2007-12-20 19:24:10 +0000309 CDecl->setCatReferencedProtocols(i, RefPDecl);
Chris Lattner4d391482007-12-12 07:09:47 +0000310 }
311 CDecl->setLocEnd(EndProtoLoc);
312 }
313 return CDecl;
314}
315
316/// ActOnStartCategoryImplementation - Perform semantic checks on the
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000317/// category implementation declaration and build an ObjCCategoryImplDecl
Chris Lattner4d391482007-12-12 07:09:47 +0000318/// object.
319Sema::DeclTy *Sema::ActOnStartCategoryImplementation(
320 SourceLocation AtCatImplLoc,
321 IdentifierInfo *ClassName, SourceLocation ClassLoc,
322 IdentifierInfo *CatName, SourceLocation CatLoc) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000323 ObjCInterfaceDecl *IDecl = getObjCInterfaceDecl(ClassName);
324 ObjCCategoryImplDecl *CDecl = new ObjCCategoryImplDecl(AtCatImplLoc,
Chris Lattner4d391482007-12-12 07:09:47 +0000325 CatName, IDecl);
326 /// Check that class of this category is already completely declared.
327 if (!IDecl || IDecl->isForwardDecl())
328 Diag(ClassLoc, diag::err_undef_interface, ClassName->getName());
329
330 /// TODO: Check that CatName, category name, is not used in another
331 // implementation.
332 return CDecl;
333}
334
335Sema::DeclTy *Sema::ActOnStartClassImplementation(
336 SourceLocation AtClassImplLoc,
337 IdentifierInfo *ClassName, SourceLocation ClassLoc,
338 IdentifierInfo *SuperClassname,
339 SourceLocation SuperClassLoc) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000340 ObjCInterfaceDecl* IDecl = 0;
Chris Lattner4d391482007-12-12 07:09:47 +0000341 // Check for another declaration kind with the same name.
342 ScopedDecl *PrevDecl = LookupInterfaceDecl(ClassName);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000343 if (PrevDecl && !isa<ObjCInterfaceDecl>(PrevDecl)) {
Chris Lattner4d391482007-12-12 07:09:47 +0000344 Diag(ClassLoc, diag::err_redefinition_different_kind,
345 ClassName->getName());
346 Diag(PrevDecl->getLocation(), diag::err_previous_definition);
347 }
348 else {
349 // Is there an interface declaration of this class; if not, warn!
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000350 IDecl = dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl);
Chris Lattner4d391482007-12-12 07:09:47 +0000351 if (!IDecl)
352 Diag(ClassLoc, diag::warn_undef_interface, ClassName->getName());
353 }
354
355 // Check that super class name is valid class name
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000356 ObjCInterfaceDecl* SDecl = 0;
Chris Lattner4d391482007-12-12 07:09:47 +0000357 if (SuperClassname) {
358 // Check if a different kind of symbol declared in this scope.
359 PrevDecl = LookupInterfaceDecl(SuperClassname);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000360 if (PrevDecl && !isa<ObjCInterfaceDecl>(PrevDecl)) {
Chris Lattner4d391482007-12-12 07:09:47 +0000361 Diag(SuperClassLoc, diag::err_redefinition_different_kind,
362 SuperClassname->getName());
363 Diag(PrevDecl->getLocation(), diag::err_previous_definition);
364 }
365 else {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000366 SDecl = dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl);
Chris Lattner4d391482007-12-12 07:09:47 +0000367 if (!SDecl)
368 Diag(SuperClassLoc, diag::err_undef_superclass,
369 SuperClassname->getName(), ClassName->getName());
370 else if (IDecl && IDecl->getSuperClass() != SDecl) {
371 // This implementation and its interface do not have the same
372 // super class.
373 Diag(SuperClassLoc, diag::err_conflicting_super_class,
374 SDecl->getName());
375 Diag(SDecl->getLocation(), diag::err_previous_definition);
376 }
377 }
378 }
379
380 if (!IDecl) {
381 // Legacy case of @implementation with no corresponding @interface.
382 // Build, chain & install the interface decl into the identifier.
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000383 IDecl = new ObjCInterfaceDecl(AtClassImplLoc, 0, ClassName,
Chris Lattner4d391482007-12-12 07:09:47 +0000384 false, true);
385 IDecl->setNext(ClassName->getFETokenInfo<ScopedDecl>());
386 ClassName->setFETokenInfo(IDecl);
387 IDecl->setSuperClass(SDecl);
388 IDecl->setLocEnd(ClassLoc);
389
390 // Remember that this needs to be removed when the scope is popped.
391 TUScope->AddDecl(IDecl);
392 }
393
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000394 ObjCImplementationDecl* IMPDecl =
395 new ObjCImplementationDecl(AtClassImplLoc, ClassName, IDecl, SDecl);
Chris Lattner4d391482007-12-12 07:09:47 +0000396
397 // Check that there is no duplicate implementation of this class.
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000398 if (ObjCImplementations[ClassName])
Chris Lattner4d391482007-12-12 07:09:47 +0000399 Diag(ClassLoc, diag::err_dup_implementation_class, ClassName->getName());
400 else // add it to the list.
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000401 ObjCImplementations[ClassName] = IMPDecl;
Chris Lattner4d391482007-12-12 07:09:47 +0000402 return IMPDecl;
403}
404
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000405void Sema::CheckImplementationIvars(ObjCImplementationDecl *ImpDecl,
406 ObjCIvarDecl **ivars, unsigned numIvars,
Chris Lattner4d391482007-12-12 07:09:47 +0000407 SourceLocation RBrace) {
408 assert(ImpDecl && "missing implementation decl");
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000409 ObjCInterfaceDecl* IDecl = getObjCInterfaceDecl(ImpDecl->getIdentifier());
Chris Lattner4d391482007-12-12 07:09:47 +0000410 if (!IDecl)
411 return;
412 /// Check case of non-existing @interface decl.
413 /// (legacy objective-c @implementation decl without an @interface decl).
414 /// Add implementations's ivar to the synthesize class's ivar list.
415 if (IDecl->ImplicitInterfaceDecl()) {
416 IDecl->addInstanceVariablesToClass(ivars, numIvars, RBrace);
417 return;
418 }
419 // If implementation has empty ivar list, just return.
420 if (numIvars == 0)
421 return;
422
423 assert(ivars && "missing @implementation ivars");
424
425 // Check interface's Ivar list against those in the implementation.
426 // names and types must match.
427 //
Chris Lattner4d391482007-12-12 07:09:47 +0000428 unsigned j = 0;
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000429 ObjCInterfaceDecl::ivar_iterator
Chris Lattner4c525092007-12-12 17:58:05 +0000430 IVI = IDecl->ivar_begin(), IVE = IDecl->ivar_end();
431 for (; numIvars > 0 && IVI != IVE; ++IVI) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000432 ObjCIvarDecl* ImplIvar = ivars[j++];
433 ObjCIvarDecl* ClsIvar = *IVI;
Chris Lattner4d391482007-12-12 07:09:47 +0000434 assert (ImplIvar && "missing implementation ivar");
435 assert (ClsIvar && "missing class ivar");
436 if (ImplIvar->getCanonicalType() != ClsIvar->getCanonicalType()) {
437 Diag(ImplIvar->getLocation(), diag::err_conflicting_ivar_type,
438 ImplIvar->getIdentifier()->getName());
439 Diag(ClsIvar->getLocation(), diag::err_previous_definition,
440 ClsIvar->getIdentifier()->getName());
441 }
442 // TODO: Two mismatched (unequal width) Ivar bitfields should be diagnosed
443 // as error.
444 else if (ImplIvar->getIdentifier() != ClsIvar->getIdentifier()) {
445 Diag(ImplIvar->getLocation(), diag::err_conflicting_ivar_name,
446 ImplIvar->getIdentifier()->getName());
447 Diag(ClsIvar->getLocation(), diag::err_previous_definition,
448 ClsIvar->getIdentifier()->getName());
Chris Lattner609e4c72007-12-12 18:11:49 +0000449 return;
Chris Lattner4d391482007-12-12 07:09:47 +0000450 }
451 --numIvars;
Chris Lattner4d391482007-12-12 07:09:47 +0000452 }
Chris Lattner609e4c72007-12-12 18:11:49 +0000453
454 if (numIvars > 0)
Chris Lattner0e391052007-12-12 18:19:52 +0000455 Diag(ivars[j]->getLocation(), diag::err_inconsistant_ivar_count);
Chris Lattner609e4c72007-12-12 18:11:49 +0000456 else if (IVI != IVE)
Chris Lattner0e391052007-12-12 18:19:52 +0000457 Diag((*IVI)->getLocation(), diag::err_inconsistant_ivar_count);
Chris Lattner4d391482007-12-12 07:09:47 +0000458}
459
Steve Naroff3c2eb662008-02-10 21:38:56 +0000460void Sema::WarnUndefinedMethod(SourceLocation ImpLoc, ObjCMethodDecl *method,
461 bool &IncompleteImpl) {
462 if (!IncompleteImpl) {
463 Diag(ImpLoc, diag::warn_incomplete_impl);
464 IncompleteImpl = true;
465 }
466 Diag(ImpLoc, diag::warn_undef_method_impl, method->getSelector().getName());
467}
468
Steve Naroffefe7f362008-02-08 22:06:17 +0000469/// CheckProtocolMethodDefs - This routine checks unimplemented methods
Chris Lattner4d391482007-12-12 07:09:47 +0000470/// Declared in protocol, and those referenced by it.
Steve Naroffefe7f362008-02-08 22:06:17 +0000471void Sema::CheckProtocolMethodDefs(SourceLocation ImpLoc,
472 ObjCProtocolDecl *PDecl,
Chris Lattner4d391482007-12-12 07:09:47 +0000473 bool& IncompleteImpl,
Steve Naroffefe7f362008-02-08 22:06:17 +0000474 const llvm::DenseSet<Selector> &InsMap,
475 const llvm::DenseSet<Selector> &ClsMap) {
Chris Lattner4d391482007-12-12 07:09:47 +0000476 // check unimplemented instance methods.
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000477 for (ObjCProtocolDecl::instmeth_iterator I = PDecl->instmeth_begin(),
Steve Naroff58dbdeb2007-12-14 23:37:57 +0000478 E = PDecl->instmeth_end(); I != E; ++I) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000479 ObjCMethodDecl *method = *I;
Steve Naroff58dbdeb2007-12-14 23:37:57 +0000480 if (!InsMap.count(method->getSelector()) &&
Steve Naroff3c2eb662008-02-10 21:38:56 +0000481 method->getImplementationControl() != ObjCMethodDecl::Optional)
482 WarnUndefinedMethod(ImpLoc, method, IncompleteImpl);
Chris Lattner4d391482007-12-12 07:09:47 +0000483 }
484 // check unimplemented class methods
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000485 for (ObjCProtocolDecl::classmeth_iterator I = PDecl->classmeth_begin(),
Steve Naroff58dbdeb2007-12-14 23:37:57 +0000486 E = PDecl->classmeth_end(); I != E; ++I) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000487 ObjCMethodDecl *method = *I;
Steve Naroff58dbdeb2007-12-14 23:37:57 +0000488 if (!ClsMap.count(method->getSelector()) &&
Steve Naroff3c2eb662008-02-10 21:38:56 +0000489 method->getImplementationControl() != ObjCMethodDecl::Optional)
490 WarnUndefinedMethod(ImpLoc, method, IncompleteImpl);
Steve Naroff58dbdeb2007-12-14 23:37:57 +0000491 }
Chris Lattner4d391482007-12-12 07:09:47 +0000492 // Check on this protocols's referenced protocols, recursively
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000493 ObjCProtocolDecl** RefPDecl = PDecl->getReferencedProtocols();
Fariborz Jahanianc395bda2007-12-20 19:24:10 +0000494 for (unsigned i = 0; i < PDecl->getNumReferencedProtocols(); i++)
Steve Naroffefe7f362008-02-08 22:06:17 +0000495 CheckProtocolMethodDefs(ImpLoc, RefPDecl[i], IncompleteImpl, InsMap, ClsMap);
Chris Lattner4d391482007-12-12 07:09:47 +0000496}
497
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000498void Sema::ImplMethodsVsClassMethods(ObjCImplementationDecl* IMPDecl,
499 ObjCInterfaceDecl* IDecl) {
Chris Lattner4d391482007-12-12 07:09:47 +0000500 llvm::DenseSet<Selector> InsMap;
501 // Check and see if instance methods in class interface have been
502 // implemented in the implementation class.
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000503 for (ObjCImplementationDecl::instmeth_iterator I = IMPDecl->instmeth_begin(),
Chris Lattner4c525092007-12-12 17:58:05 +0000504 E = IMPDecl->instmeth_end(); I != E; ++I)
505 InsMap.insert((*I)->getSelector());
Chris Lattner4d391482007-12-12 07:09:47 +0000506
507 bool IncompleteImpl = false;
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000508 for (ObjCInterfaceDecl::instmeth_iterator I = IDecl->instmeth_begin(),
Chris Lattner4c525092007-12-12 17:58:05 +0000509 E = IDecl->instmeth_end(); I != E; ++I)
Steve Naroff3c2eb662008-02-10 21:38:56 +0000510 if (!InsMap.count((*I)->getSelector()))
511 WarnUndefinedMethod(IMPDecl->getLocation(), *I, IncompleteImpl);
Chris Lattner4c525092007-12-12 17:58:05 +0000512
Chris Lattner4d391482007-12-12 07:09:47 +0000513 llvm::DenseSet<Selector> ClsMap;
514 // Check and see if class methods in class interface have been
515 // implemented in the implementation class.
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000516 for (ObjCImplementationDecl::classmeth_iterator I =IMPDecl->classmeth_begin(),
Chris Lattner4c525092007-12-12 17:58:05 +0000517 E = IMPDecl->classmeth_end(); I != E; ++I)
518 ClsMap.insert((*I)->getSelector());
Chris Lattner4d391482007-12-12 07:09:47 +0000519
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000520 for (ObjCInterfaceDecl::classmeth_iterator I = IDecl->classmeth_begin(),
Chris Lattner4c525092007-12-12 17:58:05 +0000521 E = IDecl->classmeth_end(); I != E; ++I)
Steve Naroff3c2eb662008-02-10 21:38:56 +0000522 if (!ClsMap.count((*I)->getSelector()))
523 WarnUndefinedMethod(IMPDecl->getLocation(), *I, IncompleteImpl);
Chris Lattner4d391482007-12-12 07:09:47 +0000524
525 // Check the protocol list for unimplemented methods in the @implementation
526 // class.
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000527 ObjCProtocolDecl** protocols = IDecl->getReferencedProtocols();
Fariborz Jahanianc395bda2007-12-20 19:24:10 +0000528 for (unsigned i = 0; i < IDecl->getNumIntfRefProtocols(); i++)
Steve Naroffefe7f362008-02-08 22:06:17 +0000529 CheckProtocolMethodDefs(IMPDecl->getLocation(), protocols[i],
530 IncompleteImpl, InsMap, ClsMap);
Chris Lattner4d391482007-12-12 07:09:47 +0000531}
532
533/// ImplCategoryMethodsVsIntfMethods - Checks that methods declared in the
534/// category interface is implemented in the category @implementation.
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000535void Sema::ImplCategoryMethodsVsIntfMethods(ObjCCategoryImplDecl *CatImplDecl,
536 ObjCCategoryDecl *CatClassDecl) {
Chris Lattner4d391482007-12-12 07:09:47 +0000537 llvm::DenseSet<Selector> InsMap;
538 // Check and see if instance methods in category interface have been
539 // implemented in its implementation class.
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000540 for (ObjCCategoryImplDecl::instmeth_iterator I =CatImplDecl->instmeth_begin(),
Chris Lattner4c525092007-12-12 17:58:05 +0000541 E = CatImplDecl->instmeth_end(); I != E; ++I)
542 InsMap.insert((*I)->getSelector());
Chris Lattner4d391482007-12-12 07:09:47 +0000543
544 bool IncompleteImpl = false;
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000545 for (ObjCCategoryDecl::instmeth_iterator I = CatClassDecl->instmeth_begin(),
Steve Naroff58dbdeb2007-12-14 23:37:57 +0000546 E = CatClassDecl->instmeth_end(); I != E; ++I)
Steve Naroff3c2eb662008-02-10 21:38:56 +0000547 if (!InsMap.count((*I)->getSelector()))
548 WarnUndefinedMethod(CatImplDecl->getLocation(), *I, IncompleteImpl);
549
Chris Lattner4d391482007-12-12 07:09:47 +0000550 llvm::DenseSet<Selector> ClsMap;
551 // Check and see if class methods in category interface have been
552 // implemented in its implementation class.
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000553 for (ObjCCategoryImplDecl::classmeth_iterator
Chris Lattner4c525092007-12-12 17:58:05 +0000554 I = CatImplDecl->classmeth_begin(), E = CatImplDecl->classmeth_end();
555 I != E; ++I)
556 ClsMap.insert((*I)->getSelector());
Chris Lattner4d391482007-12-12 07:09:47 +0000557
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000558 for (ObjCCategoryDecl::classmeth_iterator I = CatClassDecl->classmeth_begin(),
Steve Naroff58dbdeb2007-12-14 23:37:57 +0000559 E = CatClassDecl->classmeth_end(); I != E; ++I)
Steve Naroff3c2eb662008-02-10 21:38:56 +0000560 if (!ClsMap.count((*I)->getSelector()))
561 WarnUndefinedMethod(CatImplDecl->getLocation(), *I, IncompleteImpl);
Chris Lattner4d391482007-12-12 07:09:47 +0000562
563 // Check the protocol list for unimplemented methods in the @implementation
564 // class.
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000565 ObjCProtocolDecl** protocols = CatClassDecl->getReferencedProtocols();
Fariborz Jahanianc395bda2007-12-20 19:24:10 +0000566 for (unsigned i = 0; i < CatClassDecl->getNumReferencedProtocols(); i++) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000567 ObjCProtocolDecl* PDecl = protocols[i];
Steve Naroffefe7f362008-02-08 22:06:17 +0000568 CheckProtocolMethodDefs(CatImplDecl->getLocation(), PDecl, IncompleteImpl,
569 InsMap, ClsMap);
Chris Lattner4d391482007-12-12 07:09:47 +0000570 }
Chris Lattner4d391482007-12-12 07:09:47 +0000571}
572
573/// ActOnForwardClassDeclaration -
574Action::DeclTy *
575Sema::ActOnForwardClassDeclaration(SourceLocation AtClassLoc,
576 IdentifierInfo **IdentList, unsigned NumElts)
577{
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000578 llvm::SmallVector<ObjCInterfaceDecl*, 32> Interfaces;
Chris Lattner4d391482007-12-12 07:09:47 +0000579
580 for (unsigned i = 0; i != NumElts; ++i) {
581 // Check for another declaration kind with the same name.
582 ScopedDecl *PrevDecl = LookupInterfaceDecl(IdentList[i]);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000583 if (PrevDecl && !isa<ObjCInterfaceDecl>(PrevDecl)) {
Chris Lattner4d391482007-12-12 07:09:47 +0000584 Diag(AtClassLoc, diag::err_redefinition_different_kind,
585 IdentList[i]->getName());
586 Diag(PrevDecl->getLocation(), diag::err_previous_definition);
587 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000588 ObjCInterfaceDecl *IDecl = dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl);
Chris Lattner4d391482007-12-12 07:09:47 +0000589 if (!IDecl) { // Not already seen? Make a forward decl.
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000590 IDecl = new ObjCInterfaceDecl(AtClassLoc, 0, IdentList[i], true);
Chris Lattner4d391482007-12-12 07:09:47 +0000591 // Chain & install the interface decl into the identifier.
592 IDecl->setNext(IdentList[i]->getFETokenInfo<ScopedDecl>());
593 IdentList[i]->setFETokenInfo(IDecl);
594
595 // Remember that this needs to be removed when the scope is popped.
596 TUScope->AddDecl(IDecl);
597 }
598
599 Interfaces.push_back(IDecl);
600 }
601
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000602 return new ObjCClassDecl(AtClassLoc, &Interfaces[0], Interfaces.size());
Chris Lattner4d391482007-12-12 07:09:47 +0000603}
604
605
606/// MatchTwoMethodDeclarations - Checks that two methods have matching type and
607/// returns true, or false, accordingly.
608/// TODO: Handle protocol list; such as id<p1,p2> in type comparisons
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000609bool Sema::MatchTwoMethodDeclarations(const ObjCMethodDecl *Method,
610 const ObjCMethodDecl *PrevMethod) {
Chris Lattner4d391482007-12-12 07:09:47 +0000611 if (Method->getResultType().getCanonicalType() !=
612 PrevMethod->getResultType().getCanonicalType())
613 return false;
614 for (int i = 0; i < Method->getNumParams(); i++) {
615 ParmVarDecl *ParamDecl = Method->getParamDecl(i);
616 ParmVarDecl *PrevParamDecl = PrevMethod->getParamDecl(i);
617 if (ParamDecl->getCanonicalType() != PrevParamDecl->getCanonicalType())
618 return false;
619 }
620 return true;
621}
622
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000623void Sema::AddInstanceMethodToGlobalPool(ObjCMethodDecl *Method) {
624 ObjCMethodList &FirstMethod = InstanceMethodPool[Method->getSelector()];
Chris Lattner4d391482007-12-12 07:09:47 +0000625 if (!FirstMethod.Method) {
626 // Haven't seen a method with this selector name yet - add it.
627 FirstMethod.Method = Method;
628 FirstMethod.Next = 0;
629 } else {
630 // We've seen a method with this name, now check the type signature(s).
631 bool match = MatchTwoMethodDeclarations(Method, FirstMethod.Method);
632
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000633 for (ObjCMethodList *Next = FirstMethod.Next; !match && Next;
Chris Lattner4d391482007-12-12 07:09:47 +0000634 Next = Next->Next)
635 match = MatchTwoMethodDeclarations(Method, Next->Method);
636
637 if (!match) {
638 // We have a new signature for an existing method - add it.
639 // This is extremely rare. Only 1% of Cocoa selectors are "overloaded".
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000640 struct ObjCMethodList *OMI = new ObjCMethodList(Method, FirstMethod.Next);
Chris Lattner4d391482007-12-12 07:09:47 +0000641 FirstMethod.Next = OMI;
642 }
643 }
644}
645
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000646void Sema::AddFactoryMethodToGlobalPool(ObjCMethodDecl *Method) {
647 ObjCMethodList &FirstMethod = FactoryMethodPool[Method->getSelector()];
Chris Lattner4d391482007-12-12 07:09:47 +0000648 if (!FirstMethod.Method) {
649 // Haven't seen a method with this selector name yet - add it.
650 FirstMethod.Method = Method;
651 FirstMethod.Next = 0;
652 } else {
653 // We've seen a method with this name, now check the type signature(s).
654 bool match = MatchTwoMethodDeclarations(Method, FirstMethod.Method);
655
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000656 for (ObjCMethodList *Next = FirstMethod.Next; !match && Next;
Chris Lattner4d391482007-12-12 07:09:47 +0000657 Next = Next->Next)
658 match = MatchTwoMethodDeclarations(Method, Next->Method);
659
660 if (!match) {
661 // We have a new signature for an existing method - add it.
662 // This is extremely rare. Only 1% of Cocoa selectors are "overloaded".
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000663 struct ObjCMethodList *OMI = new ObjCMethodList(Method, FirstMethod.Next);
Chris Lattner4d391482007-12-12 07:09:47 +0000664 FirstMethod.Next = OMI;
665 }
666 }
667}
668
Steve Naroffa56f6162007-12-18 01:30:32 +0000669// Note: For class/category implemenations, allMethods/allProperties is
670// always null.
Chris Lattner4d391482007-12-12 07:09:47 +0000671void Sema::ActOnAtEnd(SourceLocation AtEndLoc, DeclTy *classDecl,
672 DeclTy **allMethods, unsigned allNum,
673 DeclTy **allProperties, unsigned pNum) {
674 Decl *ClassDecl = static_cast<Decl *>(classDecl);
675
Steve Naroffa56f6162007-12-18 01:30:32 +0000676 // FIXME: If we don't have a ClassDecl, we have an error. We should consider
677 // always passing in a decl. If the decl has an error, isInvalidDecl()
Chris Lattner4d391482007-12-12 07:09:47 +0000678 // should be true.
679 if (!ClassDecl)
680 return;
681
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000682 llvm::SmallVector<ObjCMethodDecl*, 32> insMethods;
683 llvm::SmallVector<ObjCMethodDecl*, 16> clsMethods;
Chris Lattner4d391482007-12-12 07:09:47 +0000684
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000685 llvm::DenseMap<Selector, const ObjCMethodDecl*> InsMap;
686 llvm::DenseMap<Selector, const ObjCMethodDecl*> ClsMap;
Chris Lattner4d391482007-12-12 07:09:47 +0000687
688 bool isInterfaceDeclKind =
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000689 (isa<ObjCInterfaceDecl>(ClassDecl) || isa<ObjCCategoryDecl>(ClassDecl)
690 || isa<ObjCProtocolDecl>(ClassDecl));
691 bool checkIdenticalMethods = isa<ObjCImplementationDecl>(ClassDecl);
Chris Lattner4d391482007-12-12 07:09:47 +0000692
693 // TODO: property declaration in category and protocols.
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000694 if (pNum != 0 && isa<ObjCInterfaceDecl>(ClassDecl)) {
695 ObjCPropertyDecl **properties = new ObjCPropertyDecl*[pNum];
696 memcpy(properties, allProperties, pNum*sizeof(ObjCPropertyDecl*));
697 dyn_cast<ObjCInterfaceDecl>(ClassDecl)->setPropertyDecls(properties);
698 dyn_cast<ObjCInterfaceDecl>(ClassDecl)->setNumPropertyDecl(pNum);
Chris Lattner4d391482007-12-12 07:09:47 +0000699 }
700
701 for (unsigned i = 0; i < allNum; i++ ) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000702 ObjCMethodDecl *Method =
703 cast_or_null<ObjCMethodDecl>(static_cast<Decl*>(allMethods[i]));
Chris Lattner4d391482007-12-12 07:09:47 +0000704
705 if (!Method) continue; // Already issued a diagnostic.
706 if (Method->isInstance()) {
707 /// Check for instance method of the same name with incompatible types
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000708 const ObjCMethodDecl *&PrevMethod = InsMap[Method->getSelector()];
Chris Lattner4d391482007-12-12 07:09:47 +0000709 bool match = PrevMethod ? MatchTwoMethodDeclarations(Method, PrevMethod)
710 : false;
711 if (isInterfaceDeclKind && PrevMethod && !match
712 || checkIdenticalMethods && match) {
713 Diag(Method->getLocation(), diag::error_duplicate_method_decl,
714 Method->getSelector().getName());
715 Diag(PrevMethod->getLocation(), diag::err_previous_declaration);
716 } else {
717 insMethods.push_back(Method);
718 InsMap[Method->getSelector()] = Method;
719 /// The following allows us to typecheck messages to "id".
720 AddInstanceMethodToGlobalPool(Method);
721 }
722 }
723 else {
724 /// Check for class method of the same name with incompatible types
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000725 const ObjCMethodDecl *&PrevMethod = ClsMap[Method->getSelector()];
Chris Lattner4d391482007-12-12 07:09:47 +0000726 bool match = PrevMethod ? MatchTwoMethodDeclarations(Method, PrevMethod)
727 : false;
728 if (isInterfaceDeclKind && PrevMethod && !match
729 || checkIdenticalMethods && match) {
730 Diag(Method->getLocation(), diag::error_duplicate_method_decl,
731 Method->getSelector().getName());
732 Diag(PrevMethod->getLocation(), diag::err_previous_declaration);
733 } else {
734 clsMethods.push_back(Method);
735 ClsMap[Method->getSelector()] = Method;
Steve Naroffa56f6162007-12-18 01:30:32 +0000736 /// The following allows us to typecheck messages to "Class".
737 AddFactoryMethodToGlobalPool(Method);
Chris Lattner4d391482007-12-12 07:09:47 +0000738 }
739 }
740 }
741
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000742 if (ObjCInterfaceDecl *I = dyn_cast<ObjCInterfaceDecl>(ClassDecl)) {
Chris Lattner4d391482007-12-12 07:09:47 +0000743 I->addMethods(&insMethods[0], insMethods.size(),
744 &clsMethods[0], clsMethods.size(), AtEndLoc);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000745 } else if (ObjCProtocolDecl *P = dyn_cast<ObjCProtocolDecl>(ClassDecl)) {
Chris Lattner4d391482007-12-12 07:09:47 +0000746 P->addMethods(&insMethods[0], insMethods.size(),
747 &clsMethods[0], clsMethods.size(), AtEndLoc);
748 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000749 else if (ObjCCategoryDecl *C = dyn_cast<ObjCCategoryDecl>(ClassDecl)) {
Chris Lattner4d391482007-12-12 07:09:47 +0000750 C->addMethods(&insMethods[0], insMethods.size(),
751 &clsMethods[0], clsMethods.size(), AtEndLoc);
752 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000753 else if (ObjCImplementationDecl *IC =
754 dyn_cast<ObjCImplementationDecl>(ClassDecl)) {
Chris Lattner4d391482007-12-12 07:09:47 +0000755 IC->setLocEnd(AtEndLoc);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000756 if (ObjCInterfaceDecl* IDecl = getObjCInterfaceDecl(IC->getIdentifier()))
Chris Lattner4d391482007-12-12 07:09:47 +0000757 ImplMethodsVsClassMethods(IC, IDecl);
758 } else {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000759 ObjCCategoryImplDecl* CatImplClass = cast<ObjCCategoryImplDecl>(ClassDecl);
Chris Lattner4d391482007-12-12 07:09:47 +0000760 CatImplClass->setLocEnd(AtEndLoc);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000761 ObjCInterfaceDecl* IDecl = CatImplClass->getClassInterface();
Chris Lattner4d391482007-12-12 07:09:47 +0000762 // Find category interface decl and then check that all methods declared
763 // in this interface is implemented in the category @implementation.
764 if (IDecl) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000765 for (ObjCCategoryDecl *Categories = IDecl->getCategoryList();
Chris Lattner4d391482007-12-12 07:09:47 +0000766 Categories; Categories = Categories->getNextClassCategory()) {
767 if (Categories->getIdentifier() == CatImplClass->getIdentifier()) {
768 ImplCategoryMethodsVsIntfMethods(CatImplClass, Categories);
769 break;
770 }
771 }
772 }
773 }
774}
775
776
777/// CvtQTToAstBitMask - utility routine to produce an AST bitmask for
778/// objective-c's type qualifier from the parser version of the same info.
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000779static Decl::ObjCDeclQualifier
780CvtQTToAstBitMask(ObjCDeclSpec::ObjCDeclQualifier PQTVal) {
781 Decl::ObjCDeclQualifier ret = Decl::OBJC_TQ_None;
782 if (PQTVal & ObjCDeclSpec::DQ_In)
783 ret = (Decl::ObjCDeclQualifier)(ret | Decl::OBJC_TQ_In);
784 if (PQTVal & ObjCDeclSpec::DQ_Inout)
785 ret = (Decl::ObjCDeclQualifier)(ret | Decl::OBJC_TQ_Inout);
786 if (PQTVal & ObjCDeclSpec::DQ_Out)
787 ret = (Decl::ObjCDeclQualifier)(ret | Decl::OBJC_TQ_Out);
788 if (PQTVal & ObjCDeclSpec::DQ_Bycopy)
789 ret = (Decl::ObjCDeclQualifier)(ret | Decl::OBJC_TQ_Bycopy);
790 if (PQTVal & ObjCDeclSpec::DQ_Byref)
791 ret = (Decl::ObjCDeclQualifier)(ret | Decl::OBJC_TQ_Byref);
792 if (PQTVal & ObjCDeclSpec::DQ_Oneway)
793 ret = (Decl::ObjCDeclQualifier)(ret | Decl::OBJC_TQ_Oneway);
Chris Lattner4d391482007-12-12 07:09:47 +0000794
795 return ret;
796}
797
798Sema::DeclTy *Sema::ActOnMethodDeclaration(
799 SourceLocation MethodLoc, SourceLocation EndLoc,
800 tok::TokenKind MethodType, DeclTy *ClassDecl,
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000801 ObjCDeclSpec &ReturnQT, TypeTy *ReturnType,
Chris Lattner4d391482007-12-12 07:09:47 +0000802 Selector Sel,
803 // optional arguments. The number of types/arguments is obtained
804 // from the Sel.getNumArgs().
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000805 ObjCDeclSpec *ArgQT, TypeTy **ArgTypes, IdentifierInfo **ArgNames,
Chris Lattner4d391482007-12-12 07:09:47 +0000806 AttributeList *AttrList, tok::ObjCKeywordKind MethodDeclKind,
807 bool isVariadic) {
808 llvm::SmallVector<ParmVarDecl*, 16> Params;
809
810 for (unsigned i = 0; i < Sel.getNumArgs(); i++) {
811 // FIXME: arg->AttrList must be stored too!
812 QualType argType;
813
814 if (ArgTypes[i])
815 argType = QualType::getFromOpaquePtr(ArgTypes[i]);
816 else
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000817 argType = Context.getObjCIdType();
Chris Lattner4d391482007-12-12 07:09:47 +0000818 ParmVarDecl* Param = new ParmVarDecl(SourceLocation(/*FIXME*/), ArgNames[i],
819 argType, VarDecl::None, 0);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000820 Param->setObjCDeclQualifier(
821 CvtQTToAstBitMask(ArgQT[i].getObjCDeclQualifier()));
Chris Lattner4d391482007-12-12 07:09:47 +0000822 Params.push_back(Param);
823 }
824 QualType resultDeclType;
825
826 if (ReturnType)
827 resultDeclType = QualType::getFromOpaquePtr(ReturnType);
828 else // get the type for "id".
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000829 resultDeclType = Context.getObjCIdType();
Chris Lattner4d391482007-12-12 07:09:47 +0000830
831 Decl *CDecl = static_cast<Decl*>(ClassDecl);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000832 ObjCMethodDecl* ObjCMethod = new ObjCMethodDecl(MethodLoc, EndLoc, Sel,
Chris Lattner4d391482007-12-12 07:09:47 +0000833 resultDeclType,
834 CDecl,
835 0, -1, AttrList,
836 MethodType == tok::minus, isVariadic,
837 MethodDeclKind == tok::objc_optional ?
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000838 ObjCMethodDecl::Optional :
839 ObjCMethodDecl::Required);
840 ObjCMethod->setMethodParams(&Params[0], Sel.getNumArgs());
841 ObjCMethod->setObjCDeclQualifier(
842 CvtQTToAstBitMask(ReturnQT.getObjCDeclQualifier()));
843 const ObjCMethodDecl *PrevMethod = 0;
Chris Lattner4d391482007-12-12 07:09:47 +0000844
845 // For implementations (which can be very "coarse grain"), we add the
846 // method now. This allows the AST to implement lookup methods that work
847 // incrementally (without waiting until we parse the @end). It also allows
848 // us to flag multiple declaration errors as they occur.
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000849 if (ObjCImplementationDecl *ImpDecl =
850 dyn_cast<ObjCImplementationDecl>(CDecl)) {
Chris Lattner4d391482007-12-12 07:09:47 +0000851 if (MethodType == tok::minus) {
Steve Naroff94a5c332007-12-19 22:27:04 +0000852 PrevMethod = ImpDecl->getInstanceMethod(Sel);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000853 ImpDecl->addInstanceMethod(ObjCMethod);
Chris Lattner4d391482007-12-12 07:09:47 +0000854 } else {
Steve Naroff94a5c332007-12-19 22:27:04 +0000855 PrevMethod = ImpDecl->getClassMethod(Sel);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000856 ImpDecl->addClassMethod(ObjCMethod);
Chris Lattner4d391482007-12-12 07:09:47 +0000857 }
858 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000859 else if (ObjCCategoryImplDecl *CatImpDecl =
860 dyn_cast<ObjCCategoryImplDecl>(CDecl)) {
Chris Lattner4d391482007-12-12 07:09:47 +0000861 if (MethodType == tok::minus) {
Steve Naroff94a5c332007-12-19 22:27:04 +0000862 PrevMethod = CatImpDecl->getInstanceMethod(Sel);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000863 CatImpDecl->addInstanceMethod(ObjCMethod);
Chris Lattner4d391482007-12-12 07:09:47 +0000864 } else {
Steve Naroff94a5c332007-12-19 22:27:04 +0000865 PrevMethod = CatImpDecl->getClassMethod(Sel);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000866 CatImpDecl->addClassMethod(ObjCMethod);
Chris Lattner4d391482007-12-12 07:09:47 +0000867 }
868 }
869 if (PrevMethod) {
870 // You can never have two method definitions with the same name.
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000871 Diag(ObjCMethod->getLocation(), diag::error_duplicate_method_decl,
872 ObjCMethod->getSelector().getName());
Chris Lattner4d391482007-12-12 07:09:47 +0000873 Diag(PrevMethod->getLocation(), diag::err_previous_declaration);
874 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000875 return ObjCMethod;
Chris Lattner4d391482007-12-12 07:09:47 +0000876}
877
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000878Sema::DeclTy *Sema::ActOnAddObjCProperties(SourceLocation AtLoc,
879 DeclTy **allProperties, unsigned NumProperties, ObjCDeclSpec &DS) {
880 ObjCPropertyDecl *PDecl = new ObjCPropertyDecl(AtLoc);
Chris Lattner4d391482007-12-12 07:09:47 +0000881
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000882 if(DS.getPropertyAttributes() & ObjCDeclSpec::DQ_PR_readonly)
883 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_readonly);
Chris Lattner4d391482007-12-12 07:09:47 +0000884
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000885 if(DS.getPropertyAttributes() & ObjCDeclSpec::DQ_PR_getter) {
886 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_getter);
Chris Lattner4d391482007-12-12 07:09:47 +0000887 PDecl->setGetterName(DS.getGetterName());
888 }
889
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000890 if(DS.getPropertyAttributes() & ObjCDeclSpec::DQ_PR_setter) {
891 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_setter);
Chris Lattner4d391482007-12-12 07:09:47 +0000892 PDecl->setSetterName(DS.getSetterName());
893 }
894
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000895 if(DS.getPropertyAttributes() & ObjCDeclSpec::DQ_PR_assign)
896 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_assign);
Chris Lattner4d391482007-12-12 07:09:47 +0000897
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000898 if(DS.getPropertyAttributes() & ObjCDeclSpec::DQ_PR_readwrite)
899 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_readwrite);
Chris Lattner4d391482007-12-12 07:09:47 +0000900
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000901 if(DS.getPropertyAttributes() & ObjCDeclSpec::DQ_PR_retain)
902 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_retain);
Chris Lattner4d391482007-12-12 07:09:47 +0000903
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000904 if(DS.getPropertyAttributes() & ObjCDeclSpec::DQ_PR_copy)
905 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_copy);
Chris Lattner4d391482007-12-12 07:09:47 +0000906
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000907 if(DS.getPropertyAttributes() & ObjCDeclSpec::DQ_PR_nonatomic)
908 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_nonatomic);
Chris Lattner4d391482007-12-12 07:09:47 +0000909
910 PDecl->setNumPropertyDecls(NumProperties);
911 if (NumProperties != 0) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000912 ObjCIvarDecl **properties = new ObjCIvarDecl*[NumProperties];
913 memcpy(properties, allProperties, NumProperties*sizeof(ObjCIvarDecl*));
Chris Lattner4d391482007-12-12 07:09:47 +0000914 PDecl->setPropertyDecls(properties);
915 }
916 return PDecl;
917}
918