blob: 28a92c7ba26c2491713ec7474269342ff73b1fa6 [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;
Nate Begemanb7894b52008-02-17 21:20:31 +000045 PI.AttrList = 0;
Gabor Greif30037532008-02-29 20:35:55 +000046 PI.TypeInfo = Context.getObjCIdType().getAsOpaquePtr();
47
Chris Lattner4d391482007-12-12 07:09:47 +000048 if (MDecl->isInstance()) {
Gabor Greif30037532008-02-29 20:35:55 +000049 if (ObjCInterfaceDecl *OID = MDecl->getClassInterface()) {
50 // There may be no interface context due to error in declaration of the
51 // interface (which has been reported). Recover gracefully
Fariborz Jahanian20552d22008-01-10 20:33:58 +000052 QualType selfTy = Context.getObjCInterfaceType(OID);
53 selfTy = Context.getPointerType(selfTy);
54 PI.TypeInfo = selfTy.getAsOpaquePtr();
55 }
Gabor Greif30037532008-02-29 20:35:55 +000056 }
57
Chris Lattner4d391482007-12-12 07:09:47 +000058 CurMethodDecl->setSelfDecl(ActOnParamDeclarator(PI, FnBodyScope));
59
60 PI.Ident = &Context.Idents.get("_cmd");
Ted Kremeneka526c5c2008-01-07 19:49:32 +000061 PI.TypeInfo = Context.getObjCSelType().getAsOpaquePtr();
Chris Lattner4d391482007-12-12 07:09:47 +000062 ActOnParamDeclarator(PI, FnBodyScope);
63
Chris Lattner58cce3b2008-03-16 01:07:14 +000064 for (unsigned i = 0, e = MDecl->getNumParams(); i != e; ++i) {
Chris Lattner4d391482007-12-12 07:09:47 +000065 ParmVarDecl *PDecl = MDecl->getParamDecl(i);
66 PI.Ident = PDecl->getIdentifier();
67 PI.IdentLoc = PDecl->getLocation(); // user vars have a real location.
68 PI.TypeInfo = PDecl->getType().getAsOpaquePtr();
Fariborz Jahanian2338d582008-01-21 22:59:53 +000069 MDecl->setParamDecl(i, ActOnParamDeclarator(PI, FnBodyScope));
Chris Lattner4d391482007-12-12 07:09:47 +000070 }
71}
72
73Sema::DeclTy *Sema::ActOnStartClassInterface(
74 SourceLocation AtInterfaceLoc,
75 IdentifierInfo *ClassName, SourceLocation ClassLoc,
76 IdentifierInfo *SuperName, SourceLocation SuperLoc,
77 IdentifierInfo **ProtocolNames, unsigned NumProtocols,
78 SourceLocation EndProtoLoc, AttributeList *AttrList) {
79 assert(ClassName && "Missing class identifier");
80
81 // Check for another declaration kind with the same name.
82 ScopedDecl *PrevDecl = LookupInterfaceDecl(ClassName);
Ted Kremeneka526c5c2008-01-07 19:49:32 +000083 if (PrevDecl && !isa<ObjCInterfaceDecl>(PrevDecl)) {
Chris Lattner4d391482007-12-12 07:09:47 +000084 Diag(ClassLoc, diag::err_redefinition_different_kind,
85 ClassName->getName());
86 Diag(PrevDecl->getLocation(), diag::err_previous_definition);
87 }
88
Ted Kremeneka526c5c2008-01-07 19:49:32 +000089 ObjCInterfaceDecl* IDecl = dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl);
Chris Lattner4d391482007-12-12 07:09:47 +000090 if (IDecl) {
91 // Class already seen. Is it a forward declaration?
92 if (!IDecl->isForwardDecl())
93 Diag(AtInterfaceLoc, diag::err_duplicate_class_def, IDecl->getName());
94 else {
95 IDecl->setLocation(AtInterfaceLoc);
96 IDecl->setForwardDecl(false);
97 IDecl->AllocIntfRefProtocols(NumProtocols);
98 }
99 }
100 else {
Chris Lattner0e77ba02008-03-16 01:15:50 +0000101 IDecl = ObjCInterfaceDecl::Create(Context, AtInterfaceLoc, NumProtocols,
102 ClassName);
Chris Lattner4d391482007-12-12 07:09:47 +0000103
104 // Chain & install the interface decl into the identifier.
105 IDecl->setNext(ClassName->getFETokenInfo<ScopedDecl>());
106 ClassName->setFETokenInfo(IDecl);
107
108 // Remember that this needs to be removed when the scope is popped.
109 TUScope->AddDecl(IDecl);
110 }
111
112 if (SuperName) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000113 ObjCInterfaceDecl* SuperClassEntry = 0;
Chris Lattner4d391482007-12-12 07:09:47 +0000114 // Check if a different kind of symbol declared in this scope.
115 PrevDecl = LookupInterfaceDecl(SuperName);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000116 if (PrevDecl && !isa<ObjCInterfaceDecl>(PrevDecl)) {
Chris Lattner4d391482007-12-12 07:09:47 +0000117 Diag(SuperLoc, diag::err_redefinition_different_kind,
118 SuperName->getName());
119 Diag(PrevDecl->getLocation(), diag::err_previous_definition);
120 }
121 else {
122 // Check that super class is previously defined
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000123 SuperClassEntry = dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl);
Chris Lattner4d391482007-12-12 07:09:47 +0000124
125 if (!SuperClassEntry || SuperClassEntry->isForwardDecl()) {
126 Diag(AtInterfaceLoc, diag::err_undef_superclass,
127 SuperClassEntry ? SuperClassEntry->getName()
128 : SuperName->getName(),
129 ClassName->getName());
130 }
131 }
132 IDecl->setSuperClass(SuperClassEntry);
133 IDecl->setLocEnd(SuperLoc);
134 } else { // we have a root class.
135 IDecl->setLocEnd(ClassLoc);
136 }
137
138 /// Check then save referenced protocols
139 if (NumProtocols) {
140 for (unsigned int i = 0; i != NumProtocols; i++) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000141 ObjCProtocolDecl* RefPDecl = ObjCProtocols[ProtocolNames[i]];
Chris Lattner4d391482007-12-12 07:09:47 +0000142 if (!RefPDecl || RefPDecl->isForwardDecl())
143 Diag(ClassLoc, diag::warn_undef_protocolref,
144 ProtocolNames[i]->getName(),
145 ClassName->getName());
Fariborz Jahanianc395bda2007-12-20 19:24:10 +0000146 IDecl->setIntfRefProtocols(i, RefPDecl);
Chris Lattner4d391482007-12-12 07:09:47 +0000147 }
148 IDecl->setLocEnd(EndProtoLoc);
149 }
150 return IDecl;
151}
152
153/// ActOnCompatiblityAlias - this action is called after complete parsing of
154/// @compaatibility_alias declaration. It sets up the alias relationships.
155Sema::DeclTy *Sema::ActOnCompatiblityAlias(
156 SourceLocation AtCompatibilityAliasLoc,
157 IdentifierInfo *AliasName, SourceLocation AliasLocation,
158 IdentifierInfo *ClassName, SourceLocation ClassLocation) {
159 // Look for previous declaration of alias name
160 ScopedDecl *ADecl = LookupScopedDecl(AliasName, Decl::IDNS_Ordinary,
161 AliasLocation, TUScope);
162 if (ADecl) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000163 if (isa<ObjCCompatibleAliasDecl>(ADecl)) {
Chris Lattner4d391482007-12-12 07:09:47 +0000164 Diag(AliasLocation, diag::warn_previous_alias_decl);
165 Diag(ADecl->getLocation(), diag::warn_previous_declaration);
166 }
167 else {
168 Diag(AliasLocation, diag::err_conflicting_aliasing_type,
169 AliasName->getName());
170 Diag(ADecl->getLocation(), diag::err_previous_declaration);
171 }
172 return 0;
173 }
174 // Check for class declaration
175 ScopedDecl *CDecl = LookupScopedDecl(ClassName, Decl::IDNS_Ordinary,
176 ClassLocation, TUScope);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000177 if (!CDecl || !isa<ObjCInterfaceDecl>(CDecl)) {
Chris Lattner4d391482007-12-12 07:09:47 +0000178 Diag(ClassLocation, diag::warn_undef_interface,
179 ClassName->getName());
180 if (CDecl)
181 Diag(CDecl->getLocation(), diag::warn_previous_declaration);
182 return 0;
183 }
184 // Everything checked out, instantiate a new alias declaration ast
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000185 ObjCCompatibleAliasDecl *AliasDecl =
186 new ObjCCompatibleAliasDecl(AtCompatibilityAliasLoc,
Chris Lattner4d391482007-12-12 07:09:47 +0000187 AliasName,
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000188 dyn_cast<ObjCInterfaceDecl>(CDecl));
Chris Lattner4d391482007-12-12 07:09:47 +0000189
190 // Chain & install the interface decl into the identifier.
191 AliasDecl->setNext(AliasName->getFETokenInfo<ScopedDecl>());
192 AliasName->setFETokenInfo(AliasDecl);
193 return AliasDecl;
194}
195
196Sema::DeclTy *Sema::ActOnStartProtocolInterface(
197 SourceLocation AtProtoInterfaceLoc,
198 IdentifierInfo *ProtocolName, SourceLocation ProtocolLoc,
199 IdentifierInfo **ProtoRefNames, unsigned NumProtoRefs,
200 SourceLocation EndProtoLoc) {
201 assert(ProtocolName && "Missing protocol identifier");
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000202 ObjCProtocolDecl *PDecl = ObjCProtocols[ProtocolName];
Chris Lattner4d391482007-12-12 07:09:47 +0000203 if (PDecl) {
204 // Protocol already seen. Better be a forward protocol declaration
Chris Lattner439e71f2008-03-16 01:25:17 +0000205 if (!PDecl->isForwardDecl()) {
Chris Lattner4d391482007-12-12 07:09:47 +0000206 Diag(ProtocolLoc, diag::err_duplicate_protocol_def,
207 ProtocolName->getName());
Chris Lattner439e71f2008-03-16 01:25:17 +0000208 // Just return the protocol we already had.
209 // FIXME: don't leak the objects passed in!
210 return PDecl;
Chris Lattner4d391482007-12-12 07:09:47 +0000211 }
Chris Lattner439e71f2008-03-16 01:25:17 +0000212
213 PDecl->setForwardDecl(false);
214 PDecl->AllocReferencedProtocols(NumProtoRefs);
215 } else {
Chris Lattnercca59d72008-03-16 01:23:04 +0000216 PDecl = ObjCProtocolDecl::Create(Context, AtProtoInterfaceLoc, NumProtoRefs,
Chris Lattnerc8581052008-03-16 20:19:15 +0000217 ProtocolName);
218 PDecl->setForwardDecl(false);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000219 ObjCProtocols[ProtocolName] = PDecl;
Chris Lattnercca59d72008-03-16 01:23:04 +0000220 }
Chris Lattner4d391482007-12-12 07:09:47 +0000221
222 if (NumProtoRefs) {
Chris Lattnerc8581052008-03-16 20:19:15 +0000223 /// Check then save referenced protocols.
Chris Lattner4d391482007-12-12 07:09:47 +0000224 for (unsigned int i = 0; i != NumProtoRefs; i++) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000225 ObjCProtocolDecl* RefPDecl = ObjCProtocols[ProtoRefNames[i]];
Chris Lattner4d391482007-12-12 07:09:47 +0000226 if (!RefPDecl || RefPDecl->isForwardDecl())
227 Diag(ProtocolLoc, diag::warn_undef_protocolref,
228 ProtoRefNames[i]->getName(),
229 ProtocolName->getName());
Fariborz Jahanianc395bda2007-12-20 19:24:10 +0000230 PDecl->setReferencedProtocols(i, RefPDecl);
Chris Lattner4d391482007-12-12 07:09:47 +0000231 }
232 PDecl->setLocEnd(EndProtoLoc);
233 }
234 return PDecl;
235}
236
237/// FindProtocolDeclaration - This routine looks up protocols and
238/// issuer error if they are not declared. It returns list of protocol
239/// declarations in its 'Protocols' argument.
240void
241Sema::FindProtocolDeclaration(SourceLocation TypeLoc,
242 IdentifierInfo **ProtocolId,
243 unsigned NumProtocols,
244 llvm::SmallVector<DeclTy *,8> &Protocols) {
245 for (unsigned i = 0; i != NumProtocols; ++i) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000246 ObjCProtocolDecl *PDecl = ObjCProtocols[ProtocolId[i]];
Chris Lattner4d391482007-12-12 07:09:47 +0000247 if (!PDecl)
248 Diag(TypeLoc, diag::err_undeclared_protocol,
249 ProtocolId[i]->getName());
250 else
251 Protocols.push_back(PDecl);
252 }
253}
254
255/// ActOnForwardProtocolDeclaration -
256Action::DeclTy *
257Sema::ActOnForwardProtocolDeclaration(SourceLocation AtProtocolLoc,
258 IdentifierInfo **IdentList, unsigned NumElts) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000259 llvm::SmallVector<ObjCProtocolDecl*, 32> Protocols;
Chris Lattner4d391482007-12-12 07:09:47 +0000260
261 for (unsigned i = 0; i != NumElts; ++i) {
Chris Lattnerc8581052008-03-16 20:19:15 +0000262 IdentifierInfo *Ident = IdentList[i];
263 ObjCProtocolDecl *&PDecl = ObjCProtocols[Ident];
264 if (PDecl == 0) { // Not already seen?
Chris Lattner4d391482007-12-12 07:09:47 +0000265 // FIXME: Pass in the location of the identifier!
Chris Lattnerc8581052008-03-16 20:19:15 +0000266 PDecl = ObjCProtocolDecl::Create(Context, AtProtocolLoc, 0, Ident);
Chris Lattner4d391482007-12-12 07:09:47 +0000267 }
268
269 Protocols.push_back(PDecl);
270 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000271 return new ObjCForwardProtocolDecl(AtProtocolLoc,
Chris Lattner4d391482007-12-12 07:09:47 +0000272 &Protocols[0], Protocols.size());
273}
274
275Sema::DeclTy *Sema::ActOnStartCategoryInterface(
276 SourceLocation AtInterfaceLoc,
277 IdentifierInfo *ClassName, SourceLocation ClassLoc,
278 IdentifierInfo *CategoryName, SourceLocation CategoryLoc,
279 IdentifierInfo **ProtoRefNames, unsigned NumProtoRefs,
280 SourceLocation EndProtoLoc) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000281 ObjCInterfaceDecl *IDecl = getObjCInterfaceDecl(ClassName);
Chris Lattner4d391482007-12-12 07:09:47 +0000282
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000283 ObjCCategoryDecl *CDecl = new ObjCCategoryDecl(AtInterfaceLoc, NumProtoRefs,
Chris Lattner4d391482007-12-12 07:09:47 +0000284 CategoryName);
285 CDecl->setClassInterface(IDecl);
Fariborz Jahanian7c453b32008-01-17 20:33:24 +0000286
287 /// Check that class of this category is already completely declared.
288 if (!IDecl || IDecl->isForwardDecl())
289 Diag(ClassLoc, diag::err_undef_interface, ClassName->getName());
290 else {
291 /// Check for duplicate interface declaration for this category
292 ObjCCategoryDecl *CDeclChain;
293 for (CDeclChain = IDecl->getCategoryList(); CDeclChain;
294 CDeclChain = CDeclChain->getNextClassCategory()) {
295 if (CDeclChain->getIdentifier() == CategoryName) {
296 Diag(CategoryLoc, diag::err_dup_category_def, ClassName->getName(),
297 CategoryName->getName());
298 break;
299 }
Chris Lattner4d391482007-12-12 07:09:47 +0000300 }
Chris Lattner4d391482007-12-12 07:09:47 +0000301 if (!CDeclChain)
302 CDecl->insertNextClassCategory();
Fariborz Jahanian7c453b32008-01-17 20:33:24 +0000303 }
Chris Lattner4d391482007-12-12 07:09:47 +0000304
305 if (NumProtoRefs) {
306 /// Check then save referenced protocols
307 for (unsigned int i = 0; i != NumProtoRefs; i++) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000308 ObjCProtocolDecl* RefPDecl = ObjCProtocols[ProtoRefNames[i]];
Chris Lattner4d391482007-12-12 07:09:47 +0000309 if (!RefPDecl || RefPDecl->isForwardDecl()) {
310 Diag(CategoryLoc, diag::warn_undef_protocolref,
311 ProtoRefNames[i]->getName(),
312 CategoryName->getName());
313 }
Fariborz Jahanianc395bda2007-12-20 19:24:10 +0000314 CDecl->setCatReferencedProtocols(i, RefPDecl);
Chris Lattner4d391482007-12-12 07:09:47 +0000315 }
316 CDecl->setLocEnd(EndProtoLoc);
317 }
318 return CDecl;
319}
320
321/// ActOnStartCategoryImplementation - Perform semantic checks on the
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000322/// category implementation declaration and build an ObjCCategoryImplDecl
Chris Lattner4d391482007-12-12 07:09:47 +0000323/// object.
324Sema::DeclTy *Sema::ActOnStartCategoryImplementation(
325 SourceLocation AtCatImplLoc,
326 IdentifierInfo *ClassName, SourceLocation ClassLoc,
327 IdentifierInfo *CatName, SourceLocation CatLoc) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000328 ObjCInterfaceDecl *IDecl = getObjCInterfaceDecl(ClassName);
329 ObjCCategoryImplDecl *CDecl = new ObjCCategoryImplDecl(AtCatImplLoc,
Chris Lattner4d391482007-12-12 07:09:47 +0000330 CatName, IDecl);
331 /// Check that class of this category is already completely declared.
332 if (!IDecl || IDecl->isForwardDecl())
333 Diag(ClassLoc, diag::err_undef_interface, ClassName->getName());
334
335 /// TODO: Check that CatName, category name, is not used in another
336 // implementation.
337 return CDecl;
338}
339
340Sema::DeclTy *Sema::ActOnStartClassImplementation(
341 SourceLocation AtClassImplLoc,
342 IdentifierInfo *ClassName, SourceLocation ClassLoc,
343 IdentifierInfo *SuperClassname,
344 SourceLocation SuperClassLoc) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000345 ObjCInterfaceDecl* IDecl = 0;
Chris Lattner4d391482007-12-12 07:09:47 +0000346 // Check for another declaration kind with the same name.
347 ScopedDecl *PrevDecl = LookupInterfaceDecl(ClassName);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000348 if (PrevDecl && !isa<ObjCInterfaceDecl>(PrevDecl)) {
Chris Lattner4d391482007-12-12 07:09:47 +0000349 Diag(ClassLoc, diag::err_redefinition_different_kind,
350 ClassName->getName());
351 Diag(PrevDecl->getLocation(), diag::err_previous_definition);
352 }
353 else {
354 // Is there an interface declaration of this class; if not, warn!
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000355 IDecl = dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl);
Chris Lattner4d391482007-12-12 07:09:47 +0000356 if (!IDecl)
357 Diag(ClassLoc, diag::warn_undef_interface, ClassName->getName());
358 }
359
360 // Check that super class name is valid class name
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000361 ObjCInterfaceDecl* SDecl = 0;
Chris Lattner4d391482007-12-12 07:09:47 +0000362 if (SuperClassname) {
363 // Check if a different kind of symbol declared in this scope.
364 PrevDecl = LookupInterfaceDecl(SuperClassname);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000365 if (PrevDecl && !isa<ObjCInterfaceDecl>(PrevDecl)) {
Chris Lattner4d391482007-12-12 07:09:47 +0000366 Diag(SuperClassLoc, diag::err_redefinition_different_kind,
367 SuperClassname->getName());
368 Diag(PrevDecl->getLocation(), diag::err_previous_definition);
369 }
370 else {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000371 SDecl = dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl);
Chris Lattner4d391482007-12-12 07:09:47 +0000372 if (!SDecl)
373 Diag(SuperClassLoc, diag::err_undef_superclass,
374 SuperClassname->getName(), ClassName->getName());
375 else if (IDecl && IDecl->getSuperClass() != SDecl) {
376 // This implementation and its interface do not have the same
377 // super class.
378 Diag(SuperClassLoc, diag::err_conflicting_super_class,
379 SDecl->getName());
380 Diag(SDecl->getLocation(), diag::err_previous_definition);
381 }
382 }
383 }
384
385 if (!IDecl) {
386 // Legacy case of @implementation with no corresponding @interface.
387 // Build, chain & install the interface decl into the identifier.
Chris Lattner0e77ba02008-03-16 01:15:50 +0000388 IDecl = ObjCInterfaceDecl::Create(Context, AtClassImplLoc, 0, ClassName,
389 false, true);
Chris Lattner4d391482007-12-12 07:09:47 +0000390 IDecl->setNext(ClassName->getFETokenInfo<ScopedDecl>());
391 ClassName->setFETokenInfo(IDecl);
392 IDecl->setSuperClass(SDecl);
393 IDecl->setLocEnd(ClassLoc);
394
395 // Remember that this needs to be removed when the scope is popped.
396 TUScope->AddDecl(IDecl);
397 }
398
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000399 ObjCImplementationDecl* IMPDecl =
400 new ObjCImplementationDecl(AtClassImplLoc, ClassName, IDecl, SDecl);
Chris Lattner4d391482007-12-12 07:09:47 +0000401
402 // Check that there is no duplicate implementation of this class.
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000403 if (ObjCImplementations[ClassName])
Chris Lattner4d391482007-12-12 07:09:47 +0000404 Diag(ClassLoc, diag::err_dup_implementation_class, ClassName->getName());
405 else // add it to the list.
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000406 ObjCImplementations[ClassName] = IMPDecl;
Chris Lattner4d391482007-12-12 07:09:47 +0000407 return IMPDecl;
408}
409
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000410void Sema::CheckImplementationIvars(ObjCImplementationDecl *ImpDecl,
411 ObjCIvarDecl **ivars, unsigned numIvars,
Chris Lattner4d391482007-12-12 07:09:47 +0000412 SourceLocation RBrace) {
413 assert(ImpDecl && "missing implementation decl");
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000414 ObjCInterfaceDecl* IDecl = getObjCInterfaceDecl(ImpDecl->getIdentifier());
Chris Lattner4d391482007-12-12 07:09:47 +0000415 if (!IDecl)
416 return;
417 /// Check case of non-existing @interface decl.
418 /// (legacy objective-c @implementation decl without an @interface decl).
419 /// Add implementations's ivar to the synthesize class's ivar list.
420 if (IDecl->ImplicitInterfaceDecl()) {
421 IDecl->addInstanceVariablesToClass(ivars, numIvars, RBrace);
422 return;
423 }
424 // If implementation has empty ivar list, just return.
425 if (numIvars == 0)
426 return;
427
428 assert(ivars && "missing @implementation ivars");
429
430 // Check interface's Ivar list against those in the implementation.
431 // names and types must match.
432 //
Chris Lattner4d391482007-12-12 07:09:47 +0000433 unsigned j = 0;
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000434 ObjCInterfaceDecl::ivar_iterator
Chris Lattner4c525092007-12-12 17:58:05 +0000435 IVI = IDecl->ivar_begin(), IVE = IDecl->ivar_end();
436 for (; numIvars > 0 && IVI != IVE; ++IVI) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000437 ObjCIvarDecl* ImplIvar = ivars[j++];
438 ObjCIvarDecl* ClsIvar = *IVI;
Chris Lattner4d391482007-12-12 07:09:47 +0000439 assert (ImplIvar && "missing implementation ivar");
440 assert (ClsIvar && "missing class ivar");
441 if (ImplIvar->getCanonicalType() != ClsIvar->getCanonicalType()) {
442 Diag(ImplIvar->getLocation(), diag::err_conflicting_ivar_type,
443 ImplIvar->getIdentifier()->getName());
444 Diag(ClsIvar->getLocation(), diag::err_previous_definition,
445 ClsIvar->getIdentifier()->getName());
446 }
447 // TODO: Two mismatched (unequal width) Ivar bitfields should be diagnosed
448 // as error.
449 else if (ImplIvar->getIdentifier() != ClsIvar->getIdentifier()) {
450 Diag(ImplIvar->getLocation(), diag::err_conflicting_ivar_name,
451 ImplIvar->getIdentifier()->getName());
452 Diag(ClsIvar->getLocation(), diag::err_previous_definition,
453 ClsIvar->getIdentifier()->getName());
Chris Lattner609e4c72007-12-12 18:11:49 +0000454 return;
Chris Lattner4d391482007-12-12 07:09:47 +0000455 }
456 --numIvars;
Chris Lattner4d391482007-12-12 07:09:47 +0000457 }
Chris Lattner609e4c72007-12-12 18:11:49 +0000458
459 if (numIvars > 0)
Chris Lattner0e391052007-12-12 18:19:52 +0000460 Diag(ivars[j]->getLocation(), diag::err_inconsistant_ivar_count);
Chris Lattner609e4c72007-12-12 18:11:49 +0000461 else if (IVI != IVE)
Chris Lattner0e391052007-12-12 18:19:52 +0000462 Diag((*IVI)->getLocation(), diag::err_inconsistant_ivar_count);
Chris Lattner4d391482007-12-12 07:09:47 +0000463}
464
Steve Naroff3c2eb662008-02-10 21:38:56 +0000465void Sema::WarnUndefinedMethod(SourceLocation ImpLoc, ObjCMethodDecl *method,
466 bool &IncompleteImpl) {
467 if (!IncompleteImpl) {
468 Diag(ImpLoc, diag::warn_incomplete_impl);
469 IncompleteImpl = true;
470 }
471 Diag(ImpLoc, diag::warn_undef_method_impl, method->getSelector().getName());
472}
473
Steve Naroffefe7f362008-02-08 22:06:17 +0000474/// CheckProtocolMethodDefs - This routine checks unimplemented methods
Chris Lattner4d391482007-12-12 07:09:47 +0000475/// Declared in protocol, and those referenced by it.
Steve Naroffefe7f362008-02-08 22:06:17 +0000476void Sema::CheckProtocolMethodDefs(SourceLocation ImpLoc,
477 ObjCProtocolDecl *PDecl,
Chris Lattner4d391482007-12-12 07:09:47 +0000478 bool& IncompleteImpl,
Steve Naroffefe7f362008-02-08 22:06:17 +0000479 const llvm::DenseSet<Selector> &InsMap,
480 const llvm::DenseSet<Selector> &ClsMap) {
Chris Lattner4d391482007-12-12 07:09:47 +0000481 // check unimplemented instance methods.
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000482 for (ObjCProtocolDecl::instmeth_iterator I = PDecl->instmeth_begin(),
Steve Naroff58dbdeb2007-12-14 23:37:57 +0000483 E = PDecl->instmeth_end(); I != E; ++I) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000484 ObjCMethodDecl *method = *I;
Steve Naroff58dbdeb2007-12-14 23:37:57 +0000485 if (!InsMap.count(method->getSelector()) &&
Steve Naroff3c2eb662008-02-10 21:38:56 +0000486 method->getImplementationControl() != ObjCMethodDecl::Optional)
487 WarnUndefinedMethod(ImpLoc, method, IncompleteImpl);
Chris Lattner4d391482007-12-12 07:09:47 +0000488 }
489 // check unimplemented class methods
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000490 for (ObjCProtocolDecl::classmeth_iterator I = PDecl->classmeth_begin(),
Steve Naroff58dbdeb2007-12-14 23:37:57 +0000491 E = PDecl->classmeth_end(); I != E; ++I) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000492 ObjCMethodDecl *method = *I;
Steve Naroff58dbdeb2007-12-14 23:37:57 +0000493 if (!ClsMap.count(method->getSelector()) &&
Steve Naroff3c2eb662008-02-10 21:38:56 +0000494 method->getImplementationControl() != ObjCMethodDecl::Optional)
495 WarnUndefinedMethod(ImpLoc, method, IncompleteImpl);
Steve Naroff58dbdeb2007-12-14 23:37:57 +0000496 }
Chris Lattner4d391482007-12-12 07:09:47 +0000497 // Check on this protocols's referenced protocols, recursively
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000498 ObjCProtocolDecl** RefPDecl = PDecl->getReferencedProtocols();
Fariborz Jahanianc395bda2007-12-20 19:24:10 +0000499 for (unsigned i = 0; i < PDecl->getNumReferencedProtocols(); i++)
Steve Naroffefe7f362008-02-08 22:06:17 +0000500 CheckProtocolMethodDefs(ImpLoc, RefPDecl[i], IncompleteImpl, InsMap, ClsMap);
Chris Lattner4d391482007-12-12 07:09:47 +0000501}
502
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000503void Sema::ImplMethodsVsClassMethods(ObjCImplementationDecl* IMPDecl,
504 ObjCInterfaceDecl* IDecl) {
Chris Lattner4d391482007-12-12 07:09:47 +0000505 llvm::DenseSet<Selector> InsMap;
506 // Check and see if instance methods in class interface have been
507 // implemented in the implementation class.
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000508 for (ObjCImplementationDecl::instmeth_iterator I = IMPDecl->instmeth_begin(),
Chris Lattner4c525092007-12-12 17:58:05 +0000509 E = IMPDecl->instmeth_end(); I != E; ++I)
510 InsMap.insert((*I)->getSelector());
Chris Lattner4d391482007-12-12 07:09:47 +0000511
512 bool IncompleteImpl = false;
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000513 for (ObjCInterfaceDecl::instmeth_iterator I = IDecl->instmeth_begin(),
Chris Lattner4c525092007-12-12 17:58:05 +0000514 E = IDecl->instmeth_end(); I != E; ++I)
Steve Naroff3c2eb662008-02-10 21:38:56 +0000515 if (!InsMap.count((*I)->getSelector()))
516 WarnUndefinedMethod(IMPDecl->getLocation(), *I, IncompleteImpl);
Chris Lattner4c525092007-12-12 17:58:05 +0000517
Chris Lattner4d391482007-12-12 07:09:47 +0000518 llvm::DenseSet<Selector> ClsMap;
519 // Check and see if class methods in class interface have been
520 // implemented in the implementation class.
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000521 for (ObjCImplementationDecl::classmeth_iterator I =IMPDecl->classmeth_begin(),
Chris Lattner4c525092007-12-12 17:58:05 +0000522 E = IMPDecl->classmeth_end(); I != E; ++I)
523 ClsMap.insert((*I)->getSelector());
Chris Lattner4d391482007-12-12 07:09:47 +0000524
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000525 for (ObjCInterfaceDecl::classmeth_iterator I = IDecl->classmeth_begin(),
Chris Lattner4c525092007-12-12 17:58:05 +0000526 E = IDecl->classmeth_end(); I != E; ++I)
Steve Naroff3c2eb662008-02-10 21:38:56 +0000527 if (!ClsMap.count((*I)->getSelector()))
528 WarnUndefinedMethod(IMPDecl->getLocation(), *I, IncompleteImpl);
Chris Lattner4d391482007-12-12 07:09:47 +0000529
530 // Check the protocol list for unimplemented methods in the @implementation
531 // class.
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000532 ObjCProtocolDecl** protocols = IDecl->getReferencedProtocols();
Fariborz Jahanianc395bda2007-12-20 19:24:10 +0000533 for (unsigned i = 0; i < IDecl->getNumIntfRefProtocols(); i++)
Steve Naroffefe7f362008-02-08 22:06:17 +0000534 CheckProtocolMethodDefs(IMPDecl->getLocation(), protocols[i],
535 IncompleteImpl, InsMap, ClsMap);
Chris Lattner4d391482007-12-12 07:09:47 +0000536}
537
538/// ImplCategoryMethodsVsIntfMethods - Checks that methods declared in the
539/// category interface is implemented in the category @implementation.
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000540void Sema::ImplCategoryMethodsVsIntfMethods(ObjCCategoryImplDecl *CatImplDecl,
541 ObjCCategoryDecl *CatClassDecl) {
Chris Lattner4d391482007-12-12 07:09:47 +0000542 llvm::DenseSet<Selector> InsMap;
543 // Check and see if instance methods in category interface have been
544 // implemented in its implementation class.
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000545 for (ObjCCategoryImplDecl::instmeth_iterator I =CatImplDecl->instmeth_begin(),
Chris Lattner4c525092007-12-12 17:58:05 +0000546 E = CatImplDecl->instmeth_end(); I != E; ++I)
547 InsMap.insert((*I)->getSelector());
Chris Lattner4d391482007-12-12 07:09:47 +0000548
549 bool IncompleteImpl = false;
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000550 for (ObjCCategoryDecl::instmeth_iterator I = CatClassDecl->instmeth_begin(),
Steve Naroff58dbdeb2007-12-14 23:37:57 +0000551 E = CatClassDecl->instmeth_end(); I != E; ++I)
Steve Naroff3c2eb662008-02-10 21:38:56 +0000552 if (!InsMap.count((*I)->getSelector()))
553 WarnUndefinedMethod(CatImplDecl->getLocation(), *I, IncompleteImpl);
554
Chris Lattner4d391482007-12-12 07:09:47 +0000555 llvm::DenseSet<Selector> ClsMap;
556 // Check and see if class methods in category interface have been
557 // implemented in its implementation class.
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000558 for (ObjCCategoryImplDecl::classmeth_iterator
Chris Lattner4c525092007-12-12 17:58:05 +0000559 I = CatImplDecl->classmeth_begin(), E = CatImplDecl->classmeth_end();
560 I != E; ++I)
561 ClsMap.insert((*I)->getSelector());
Chris Lattner4d391482007-12-12 07:09:47 +0000562
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000563 for (ObjCCategoryDecl::classmeth_iterator I = CatClassDecl->classmeth_begin(),
Steve Naroff58dbdeb2007-12-14 23:37:57 +0000564 E = CatClassDecl->classmeth_end(); I != E; ++I)
Steve Naroff3c2eb662008-02-10 21:38:56 +0000565 if (!ClsMap.count((*I)->getSelector()))
566 WarnUndefinedMethod(CatImplDecl->getLocation(), *I, IncompleteImpl);
Chris Lattner4d391482007-12-12 07:09:47 +0000567
568 // Check the protocol list for unimplemented methods in the @implementation
569 // class.
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000570 ObjCProtocolDecl** protocols = CatClassDecl->getReferencedProtocols();
Fariborz Jahanianc395bda2007-12-20 19:24:10 +0000571 for (unsigned i = 0; i < CatClassDecl->getNumReferencedProtocols(); i++) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000572 ObjCProtocolDecl* PDecl = protocols[i];
Steve Naroffefe7f362008-02-08 22:06:17 +0000573 CheckProtocolMethodDefs(CatImplDecl->getLocation(), PDecl, IncompleteImpl,
574 InsMap, ClsMap);
Chris Lattner4d391482007-12-12 07:09:47 +0000575 }
Chris Lattner4d391482007-12-12 07:09:47 +0000576}
577
578/// ActOnForwardClassDeclaration -
579Action::DeclTy *
580Sema::ActOnForwardClassDeclaration(SourceLocation AtClassLoc,
581 IdentifierInfo **IdentList, unsigned NumElts)
582{
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000583 llvm::SmallVector<ObjCInterfaceDecl*, 32> Interfaces;
Chris Lattner4d391482007-12-12 07:09:47 +0000584
585 for (unsigned i = 0; i != NumElts; ++i) {
586 // Check for another declaration kind with the same name.
587 ScopedDecl *PrevDecl = LookupInterfaceDecl(IdentList[i]);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000588 if (PrevDecl && !isa<ObjCInterfaceDecl>(PrevDecl)) {
Chris Lattner4d391482007-12-12 07:09:47 +0000589 Diag(AtClassLoc, diag::err_redefinition_different_kind,
590 IdentList[i]->getName());
591 Diag(PrevDecl->getLocation(), diag::err_previous_definition);
592 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000593 ObjCInterfaceDecl *IDecl = dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl);
Chris Lattner4d391482007-12-12 07:09:47 +0000594 if (!IDecl) { // Not already seen? Make a forward decl.
Chris Lattner0e77ba02008-03-16 01:15:50 +0000595 IDecl = ObjCInterfaceDecl::Create(Context, AtClassLoc, 0, IdentList[i],
596 true);
Chris Lattner4d391482007-12-12 07:09:47 +0000597 // Chain & install the interface decl into the identifier.
598 IDecl->setNext(IdentList[i]->getFETokenInfo<ScopedDecl>());
599 IdentList[i]->setFETokenInfo(IDecl);
600
601 // Remember that this needs to be removed when the scope is popped.
602 TUScope->AddDecl(IDecl);
603 }
604
605 Interfaces.push_back(IDecl);
606 }
607
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000608 return new ObjCClassDecl(AtClassLoc, &Interfaces[0], Interfaces.size());
Chris Lattner4d391482007-12-12 07:09:47 +0000609}
610
611
612/// MatchTwoMethodDeclarations - Checks that two methods have matching type and
613/// returns true, or false, accordingly.
614/// TODO: Handle protocol list; such as id<p1,p2> in type comparisons
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000615bool Sema::MatchTwoMethodDeclarations(const ObjCMethodDecl *Method,
616 const ObjCMethodDecl *PrevMethod) {
Chris Lattner4d391482007-12-12 07:09:47 +0000617 if (Method->getResultType().getCanonicalType() !=
618 PrevMethod->getResultType().getCanonicalType())
619 return false;
Chris Lattner58cce3b2008-03-16 01:07:14 +0000620 for (unsigned i = 0, e = Method->getNumParams(); i != e; ++i) {
Chris Lattner4d391482007-12-12 07:09:47 +0000621 ParmVarDecl *ParamDecl = Method->getParamDecl(i);
622 ParmVarDecl *PrevParamDecl = PrevMethod->getParamDecl(i);
623 if (ParamDecl->getCanonicalType() != PrevParamDecl->getCanonicalType())
624 return false;
625 }
626 return true;
627}
628
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000629void Sema::AddInstanceMethodToGlobalPool(ObjCMethodDecl *Method) {
630 ObjCMethodList &FirstMethod = InstanceMethodPool[Method->getSelector()];
Chris Lattner4d391482007-12-12 07:09:47 +0000631 if (!FirstMethod.Method) {
632 // Haven't seen a method with this selector name yet - add it.
633 FirstMethod.Method = Method;
634 FirstMethod.Next = 0;
635 } else {
636 // We've seen a method with this name, now check the type signature(s).
637 bool match = MatchTwoMethodDeclarations(Method, FirstMethod.Method);
638
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000639 for (ObjCMethodList *Next = FirstMethod.Next; !match && Next;
Chris Lattner4d391482007-12-12 07:09:47 +0000640 Next = Next->Next)
641 match = MatchTwoMethodDeclarations(Method, Next->Method);
642
643 if (!match) {
644 // We have a new signature for an existing method - add it.
645 // This is extremely rare. Only 1% of Cocoa selectors are "overloaded".
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000646 struct ObjCMethodList *OMI = new ObjCMethodList(Method, FirstMethod.Next);
Chris Lattner4d391482007-12-12 07:09:47 +0000647 FirstMethod.Next = OMI;
648 }
649 }
650}
651
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000652void Sema::AddFactoryMethodToGlobalPool(ObjCMethodDecl *Method) {
653 ObjCMethodList &FirstMethod = FactoryMethodPool[Method->getSelector()];
Chris Lattner4d391482007-12-12 07:09:47 +0000654 if (!FirstMethod.Method) {
655 // Haven't seen a method with this selector name yet - add it.
656 FirstMethod.Method = Method;
657 FirstMethod.Next = 0;
658 } else {
659 // We've seen a method with this name, now check the type signature(s).
660 bool match = MatchTwoMethodDeclarations(Method, FirstMethod.Method);
661
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000662 for (ObjCMethodList *Next = FirstMethod.Next; !match && Next;
Chris Lattner4d391482007-12-12 07:09:47 +0000663 Next = Next->Next)
664 match = MatchTwoMethodDeclarations(Method, Next->Method);
665
666 if (!match) {
667 // We have a new signature for an existing method - add it.
668 // This is extremely rare. Only 1% of Cocoa selectors are "overloaded".
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000669 struct ObjCMethodList *OMI = new ObjCMethodList(Method, FirstMethod.Next);
Chris Lattner4d391482007-12-12 07:09:47 +0000670 FirstMethod.Next = OMI;
671 }
672 }
673}
674
Steve Naroffa56f6162007-12-18 01:30:32 +0000675// Note: For class/category implemenations, allMethods/allProperties is
676// always null.
Chris Lattner4d391482007-12-12 07:09:47 +0000677void Sema::ActOnAtEnd(SourceLocation AtEndLoc, DeclTy *classDecl,
678 DeclTy **allMethods, unsigned allNum,
679 DeclTy **allProperties, unsigned pNum) {
680 Decl *ClassDecl = static_cast<Decl *>(classDecl);
681
Steve Naroffa56f6162007-12-18 01:30:32 +0000682 // FIXME: If we don't have a ClassDecl, we have an error. We should consider
683 // always passing in a decl. If the decl has an error, isInvalidDecl()
Chris Lattner4d391482007-12-12 07:09:47 +0000684 // should be true.
685 if (!ClassDecl)
686 return;
687
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000688 llvm::SmallVector<ObjCMethodDecl*, 32> insMethods;
689 llvm::SmallVector<ObjCMethodDecl*, 16> clsMethods;
Chris Lattner4d391482007-12-12 07:09:47 +0000690
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000691 llvm::DenseMap<Selector, const ObjCMethodDecl*> InsMap;
692 llvm::DenseMap<Selector, const ObjCMethodDecl*> ClsMap;
Chris Lattner4d391482007-12-12 07:09:47 +0000693
694 bool isInterfaceDeclKind =
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000695 (isa<ObjCInterfaceDecl>(ClassDecl) || isa<ObjCCategoryDecl>(ClassDecl)
696 || isa<ObjCProtocolDecl>(ClassDecl));
697 bool checkIdenticalMethods = isa<ObjCImplementationDecl>(ClassDecl);
Chris Lattner4d391482007-12-12 07:09:47 +0000698
699 // TODO: property declaration in category and protocols.
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000700 if (pNum != 0 && isa<ObjCInterfaceDecl>(ClassDecl)) {
701 ObjCPropertyDecl **properties = new ObjCPropertyDecl*[pNum];
702 memcpy(properties, allProperties, pNum*sizeof(ObjCPropertyDecl*));
703 dyn_cast<ObjCInterfaceDecl>(ClassDecl)->setPropertyDecls(properties);
704 dyn_cast<ObjCInterfaceDecl>(ClassDecl)->setNumPropertyDecl(pNum);
Chris Lattner4d391482007-12-12 07:09:47 +0000705 }
706
707 for (unsigned i = 0; i < allNum; i++ ) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000708 ObjCMethodDecl *Method =
709 cast_or_null<ObjCMethodDecl>(static_cast<Decl*>(allMethods[i]));
Chris Lattner4d391482007-12-12 07:09:47 +0000710
711 if (!Method) continue; // Already issued a diagnostic.
712 if (Method->isInstance()) {
713 /// Check for instance method of the same name with incompatible types
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000714 const ObjCMethodDecl *&PrevMethod = InsMap[Method->getSelector()];
Chris Lattner4d391482007-12-12 07:09:47 +0000715 bool match = PrevMethod ? MatchTwoMethodDeclarations(Method, PrevMethod)
716 : false;
717 if (isInterfaceDeclKind && PrevMethod && !match
718 || checkIdenticalMethods && match) {
719 Diag(Method->getLocation(), diag::error_duplicate_method_decl,
720 Method->getSelector().getName());
721 Diag(PrevMethod->getLocation(), diag::err_previous_declaration);
722 } else {
723 insMethods.push_back(Method);
724 InsMap[Method->getSelector()] = Method;
725 /// The following allows us to typecheck messages to "id".
726 AddInstanceMethodToGlobalPool(Method);
727 }
728 }
729 else {
730 /// Check for class method of the same name with incompatible types
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000731 const ObjCMethodDecl *&PrevMethod = ClsMap[Method->getSelector()];
Chris Lattner4d391482007-12-12 07:09:47 +0000732 bool match = PrevMethod ? MatchTwoMethodDeclarations(Method, PrevMethod)
733 : false;
734 if (isInterfaceDeclKind && PrevMethod && !match
735 || checkIdenticalMethods && match) {
736 Diag(Method->getLocation(), diag::error_duplicate_method_decl,
737 Method->getSelector().getName());
738 Diag(PrevMethod->getLocation(), diag::err_previous_declaration);
739 } else {
740 clsMethods.push_back(Method);
741 ClsMap[Method->getSelector()] = Method;
Steve Naroffa56f6162007-12-18 01:30:32 +0000742 /// The following allows us to typecheck messages to "Class".
743 AddFactoryMethodToGlobalPool(Method);
Chris Lattner4d391482007-12-12 07:09:47 +0000744 }
745 }
746 }
747
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000748 if (ObjCInterfaceDecl *I = dyn_cast<ObjCInterfaceDecl>(ClassDecl)) {
Chris Lattner4d391482007-12-12 07:09:47 +0000749 I->addMethods(&insMethods[0], insMethods.size(),
750 &clsMethods[0], clsMethods.size(), AtEndLoc);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000751 } else if (ObjCProtocolDecl *P = dyn_cast<ObjCProtocolDecl>(ClassDecl)) {
Chris Lattner4d391482007-12-12 07:09:47 +0000752 P->addMethods(&insMethods[0], insMethods.size(),
753 &clsMethods[0], clsMethods.size(), AtEndLoc);
754 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000755 else if (ObjCCategoryDecl *C = dyn_cast<ObjCCategoryDecl>(ClassDecl)) {
Chris Lattner4d391482007-12-12 07:09:47 +0000756 C->addMethods(&insMethods[0], insMethods.size(),
757 &clsMethods[0], clsMethods.size(), AtEndLoc);
758 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000759 else if (ObjCImplementationDecl *IC =
760 dyn_cast<ObjCImplementationDecl>(ClassDecl)) {
Chris Lattner4d391482007-12-12 07:09:47 +0000761 IC->setLocEnd(AtEndLoc);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000762 if (ObjCInterfaceDecl* IDecl = getObjCInterfaceDecl(IC->getIdentifier()))
Chris Lattner4d391482007-12-12 07:09:47 +0000763 ImplMethodsVsClassMethods(IC, IDecl);
764 } else {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000765 ObjCCategoryImplDecl* CatImplClass = cast<ObjCCategoryImplDecl>(ClassDecl);
Chris Lattner4d391482007-12-12 07:09:47 +0000766 CatImplClass->setLocEnd(AtEndLoc);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000767 ObjCInterfaceDecl* IDecl = CatImplClass->getClassInterface();
Chris Lattner4d391482007-12-12 07:09:47 +0000768 // Find category interface decl and then check that all methods declared
769 // in this interface is implemented in the category @implementation.
770 if (IDecl) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000771 for (ObjCCategoryDecl *Categories = IDecl->getCategoryList();
Chris Lattner4d391482007-12-12 07:09:47 +0000772 Categories; Categories = Categories->getNextClassCategory()) {
773 if (Categories->getIdentifier() == CatImplClass->getIdentifier()) {
774 ImplCategoryMethodsVsIntfMethods(CatImplClass, Categories);
775 break;
776 }
777 }
778 }
779 }
780}
781
782
783/// CvtQTToAstBitMask - utility routine to produce an AST bitmask for
784/// objective-c's type qualifier from the parser version of the same info.
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000785static Decl::ObjCDeclQualifier
786CvtQTToAstBitMask(ObjCDeclSpec::ObjCDeclQualifier PQTVal) {
787 Decl::ObjCDeclQualifier ret = Decl::OBJC_TQ_None;
788 if (PQTVal & ObjCDeclSpec::DQ_In)
789 ret = (Decl::ObjCDeclQualifier)(ret | Decl::OBJC_TQ_In);
790 if (PQTVal & ObjCDeclSpec::DQ_Inout)
791 ret = (Decl::ObjCDeclQualifier)(ret | Decl::OBJC_TQ_Inout);
792 if (PQTVal & ObjCDeclSpec::DQ_Out)
793 ret = (Decl::ObjCDeclQualifier)(ret | Decl::OBJC_TQ_Out);
794 if (PQTVal & ObjCDeclSpec::DQ_Bycopy)
795 ret = (Decl::ObjCDeclQualifier)(ret | Decl::OBJC_TQ_Bycopy);
796 if (PQTVal & ObjCDeclSpec::DQ_Byref)
797 ret = (Decl::ObjCDeclQualifier)(ret | Decl::OBJC_TQ_Byref);
798 if (PQTVal & ObjCDeclSpec::DQ_Oneway)
799 ret = (Decl::ObjCDeclQualifier)(ret | Decl::OBJC_TQ_Oneway);
Chris Lattner4d391482007-12-12 07:09:47 +0000800
801 return ret;
802}
803
804Sema::DeclTy *Sema::ActOnMethodDeclaration(
805 SourceLocation MethodLoc, SourceLocation EndLoc,
Chris Lattner6c4ae5d2008-03-16 00:49:28 +0000806 tok::TokenKind MethodType, DeclTy *classDecl,
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000807 ObjCDeclSpec &ReturnQT, TypeTy *ReturnType,
Chris Lattner4d391482007-12-12 07:09:47 +0000808 Selector Sel,
809 // optional arguments. The number of types/arguments is obtained
810 // from the Sel.getNumArgs().
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000811 ObjCDeclSpec *ArgQT, TypeTy **ArgTypes, IdentifierInfo **ArgNames,
Chris Lattner4d391482007-12-12 07:09:47 +0000812 AttributeList *AttrList, tok::ObjCKeywordKind MethodDeclKind,
813 bool isVariadic) {
Chris Lattner6c4ae5d2008-03-16 00:49:28 +0000814 Decl *ClassDecl = static_cast<Decl*>(classDecl);
Steve Naroffda323ad2008-02-29 21:48:07 +0000815
816 // Make sure we can establish a context for the method.
817 if (!ClassDecl) {
818 Diag(MethodLoc, diag::error_missing_method_context);
819 return 0;
820 }
Chris Lattner4d391482007-12-12 07:09:47 +0000821 llvm::SmallVector<ParmVarDecl*, 16> Params;
822
823 for (unsigned i = 0; i < Sel.getNumArgs(); i++) {
824 // FIXME: arg->AttrList must be stored too!
825 QualType argType;
826
827 if (ArgTypes[i])
828 argType = QualType::getFromOpaquePtr(ArgTypes[i]);
829 else
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000830 argType = Context.getObjCIdType();
Chris Lattnerc63e6602008-03-15 21:32:50 +0000831 ParmVarDecl* Param = ParmVarDecl::Create(Context, SourceLocation(/*FIXME*/),
Chris Lattner9e151e12008-03-15 21:10:16 +0000832 ArgNames[i], argType,
Chris Lattnerc63e6602008-03-15 21:32:50 +0000833 VarDecl::None, 0);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000834 Param->setObjCDeclQualifier(
835 CvtQTToAstBitMask(ArgQT[i].getObjCDeclQualifier()));
Chris Lattner4d391482007-12-12 07:09:47 +0000836 Params.push_back(Param);
837 }
838 QualType resultDeclType;
839
840 if (ReturnType)
841 resultDeclType = QualType::getFromOpaquePtr(ReturnType);
842 else // get the type for "id".
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000843 resultDeclType = Context.getObjCIdType();
Chris Lattner4d391482007-12-12 07:09:47 +0000844
Chris Lattner6c4ae5d2008-03-16 00:49:28 +0000845 ObjCMethodDecl* ObjCMethod =
846 ObjCMethodDecl::Create(Context, MethodLoc, EndLoc, Sel, resultDeclType,
Chris Lattnerb06fa3b2008-03-16 00:58:16 +0000847 ClassDecl, AttrList,
Chris Lattner6c4ae5d2008-03-16 00:49:28 +0000848 MethodType == tok::minus, isVariadic,
849 MethodDeclKind == tok::objc_optional ?
850 ObjCMethodDecl::Optional :
851 ObjCMethodDecl::Required);
852
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000853 ObjCMethod->setMethodParams(&Params[0], Sel.getNumArgs());
854 ObjCMethod->setObjCDeclQualifier(
855 CvtQTToAstBitMask(ReturnQT.getObjCDeclQualifier()));
856 const ObjCMethodDecl *PrevMethod = 0;
Chris Lattner4d391482007-12-12 07:09:47 +0000857
858 // For implementations (which can be very "coarse grain"), we add the
859 // method now. This allows the AST to implement lookup methods that work
860 // incrementally (without waiting until we parse the @end). It also allows
861 // us to flag multiple declaration errors as they occur.
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000862 if (ObjCImplementationDecl *ImpDecl =
Chris Lattner6c4ae5d2008-03-16 00:49:28 +0000863 dyn_cast<ObjCImplementationDecl>(ClassDecl)) {
Chris Lattner4d391482007-12-12 07:09:47 +0000864 if (MethodType == tok::minus) {
Steve Naroff94a5c332007-12-19 22:27:04 +0000865 PrevMethod = ImpDecl->getInstanceMethod(Sel);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000866 ImpDecl->addInstanceMethod(ObjCMethod);
Chris Lattner4d391482007-12-12 07:09:47 +0000867 } else {
Steve Naroff94a5c332007-12-19 22:27:04 +0000868 PrevMethod = ImpDecl->getClassMethod(Sel);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000869 ImpDecl->addClassMethod(ObjCMethod);
Chris Lattner4d391482007-12-12 07:09:47 +0000870 }
871 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000872 else if (ObjCCategoryImplDecl *CatImpDecl =
Chris Lattner6c4ae5d2008-03-16 00:49:28 +0000873 dyn_cast<ObjCCategoryImplDecl>(ClassDecl)) {
Chris Lattner4d391482007-12-12 07:09:47 +0000874 if (MethodType == tok::minus) {
Steve Naroff94a5c332007-12-19 22:27:04 +0000875 PrevMethod = CatImpDecl->getInstanceMethod(Sel);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000876 CatImpDecl->addInstanceMethod(ObjCMethod);
Chris Lattner4d391482007-12-12 07:09:47 +0000877 } else {
Steve Naroff94a5c332007-12-19 22:27:04 +0000878 PrevMethod = CatImpDecl->getClassMethod(Sel);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000879 CatImpDecl->addClassMethod(ObjCMethod);
Chris Lattner4d391482007-12-12 07:09:47 +0000880 }
881 }
882 if (PrevMethod) {
883 // You can never have two method definitions with the same name.
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000884 Diag(ObjCMethod->getLocation(), diag::error_duplicate_method_decl,
885 ObjCMethod->getSelector().getName());
Chris Lattner4d391482007-12-12 07:09:47 +0000886 Diag(PrevMethod->getLocation(), diag::err_previous_declaration);
887 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000888 return ObjCMethod;
Chris Lattner4d391482007-12-12 07:09:47 +0000889}
890
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000891Sema::DeclTy *Sema::ActOnAddObjCProperties(SourceLocation AtLoc,
892 DeclTy **allProperties, unsigned NumProperties, ObjCDeclSpec &DS) {
893 ObjCPropertyDecl *PDecl = new ObjCPropertyDecl(AtLoc);
Chris Lattner4d391482007-12-12 07:09:47 +0000894
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000895 if(DS.getPropertyAttributes() & ObjCDeclSpec::DQ_PR_readonly)
896 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_readonly);
Chris Lattner4d391482007-12-12 07:09:47 +0000897
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000898 if(DS.getPropertyAttributes() & ObjCDeclSpec::DQ_PR_getter) {
899 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_getter);
Chris Lattner4d391482007-12-12 07:09:47 +0000900 PDecl->setGetterName(DS.getGetterName());
901 }
902
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000903 if(DS.getPropertyAttributes() & ObjCDeclSpec::DQ_PR_setter) {
904 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_setter);
Chris Lattner4d391482007-12-12 07:09:47 +0000905 PDecl->setSetterName(DS.getSetterName());
906 }
907
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000908 if(DS.getPropertyAttributes() & ObjCDeclSpec::DQ_PR_assign)
909 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_assign);
Chris Lattner4d391482007-12-12 07:09:47 +0000910
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000911 if(DS.getPropertyAttributes() & ObjCDeclSpec::DQ_PR_readwrite)
912 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_readwrite);
Chris Lattner4d391482007-12-12 07:09:47 +0000913
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000914 if(DS.getPropertyAttributes() & ObjCDeclSpec::DQ_PR_retain)
915 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_retain);
Chris Lattner4d391482007-12-12 07:09:47 +0000916
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000917 if(DS.getPropertyAttributes() & ObjCDeclSpec::DQ_PR_copy)
918 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_copy);
Chris Lattner4d391482007-12-12 07:09:47 +0000919
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000920 if(DS.getPropertyAttributes() & ObjCDeclSpec::DQ_PR_nonatomic)
921 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_nonatomic);
Chris Lattner4d391482007-12-12 07:09:47 +0000922
923 PDecl->setNumPropertyDecls(NumProperties);
924 if (NumProperties != 0) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000925 ObjCIvarDecl **properties = new ObjCIvarDecl*[NumProperties];
926 memcpy(properties, allProperties, NumProperties*sizeof(ObjCIvarDecl*));
Chris Lattner4d391482007-12-12 07:09:47 +0000927 PDecl->setPropertyDecls(properties);
928 }
929 return PDecl;
930}
931