blob: 5e15753af6f526c31f9819b3d8924b4c6b1e02dc [file] [log] [blame]
Chris Lattner855e51f2007-12-12 07:09:47 +00001//===--- SemaDeclObjC.cpp - Semantic Analysis for ObjC Declarations -------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner959e5be2007-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 Lattner855e51f2007-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 Kremenek42730c52008-01-07 19:49:32 +000021/// ObjCActOnStartOfMethodDef - This routine sets up parameters; invisible
Chris Lattner855e51f2007-12-12 07:09:47 +000022/// and user declared, in the method definition's AST.
Ted Kremenek42730c52008-01-07 19:49:32 +000023void Sema::ObjCActOnStartOfMethodDef(Scope *FnBodyScope, DeclTy *D) {
Chris Lattner855e51f2007-12-12 07:09:47 +000024 assert(CurFunctionDecl == 0 && "Method parsing confused");
Ted Kremenek42730c52008-01-07 19:49:32 +000025 ObjCMethodDecl *MDecl = dyn_cast<ObjCMethodDecl>(static_cast<Decl *>(D));
Chris Lattner855e51f2007-12-12 07:09:47 +000026 assert(MDecl != 0 && "Not a method declarator!");
Steve Narofffe9eb6a2007-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 Lattner855e51f2007-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 Jahanian6833b3b2008-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 Lattner855e51f2007-12-12 07:09:47 +000054 } else
Ted Kremenek42730c52008-01-07 19:49:32 +000055 PI.TypeInfo = Context.getObjCIdType().getAsOpaquePtr();
Chris Lattner855e51f2007-12-12 07:09:47 +000056 CurMethodDecl->setSelfDecl(ActOnParamDeclarator(PI, FnBodyScope));
57
58 PI.Ident = &Context.Idents.get("_cmd");
Ted Kremenek42730c52008-01-07 19:49:32 +000059 PI.TypeInfo = Context.getObjCSelType().getAsOpaquePtr();
Chris Lattner855e51f2007-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();
67 ActOnParamDeclarator(PI, FnBodyScope);
68 }
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 Kremenek42730c52008-01-07 19:49:32 +000081 if (PrevDecl && !isa<ObjCInterfaceDecl>(PrevDecl)) {
Chris Lattner855e51f2007-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 Kremenek42730c52008-01-07 19:49:32 +000087 ObjCInterfaceDecl* IDecl = dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl);
Chris Lattner855e51f2007-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 Kremenek42730c52008-01-07 19:49:32 +000099 IDecl = new ObjCInterfaceDecl(AtInterfaceLoc, NumProtocols, ClassName);
Chris Lattner855e51f2007-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 Kremenek42730c52008-01-07 19:49:32 +0000110 ObjCInterfaceDecl* SuperClassEntry = 0;
Chris Lattner855e51f2007-12-12 07:09:47 +0000111 // Check if a different kind of symbol declared in this scope.
112 PrevDecl = LookupInterfaceDecl(SuperName);
Ted Kremenek42730c52008-01-07 19:49:32 +0000113 if (PrevDecl && !isa<ObjCInterfaceDecl>(PrevDecl)) {
Chris Lattner855e51f2007-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 Kremenek42730c52008-01-07 19:49:32 +0000120 SuperClassEntry = dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl);
Chris Lattner855e51f2007-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 Kremenek42730c52008-01-07 19:49:32 +0000138 ObjCProtocolDecl* RefPDecl = ObjCProtocols[ProtocolNames[i]];
Chris Lattner855e51f2007-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 Jahanian87829072007-12-20 19:24:10 +0000143 IDecl->setIntfRefProtocols(i, RefPDecl);
Chris Lattner855e51f2007-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 Kremenek42730c52008-01-07 19:49:32 +0000160 if (isa<ObjCCompatibleAliasDecl>(ADecl)) {
Chris Lattner855e51f2007-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 Kremenek42730c52008-01-07 19:49:32 +0000174 if (!CDecl || !isa<ObjCInterfaceDecl>(CDecl)) {
Chris Lattner855e51f2007-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 Kremenek42730c52008-01-07 19:49:32 +0000182 ObjCCompatibleAliasDecl *AliasDecl =
183 new ObjCCompatibleAliasDecl(AtCompatibilityAliasLoc,
Chris Lattner855e51f2007-12-12 07:09:47 +0000184 AliasName,
Ted Kremenek42730c52008-01-07 19:49:32 +0000185 dyn_cast<ObjCInterfaceDecl>(CDecl));
Chris Lattner855e51f2007-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 Kremenek42730c52008-01-07 19:49:32 +0000199 ObjCProtocolDecl *PDecl = ObjCProtocols[ProtocolName];
Chris Lattner855e51f2007-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 Kremenek42730c52008-01-07 19:49:32 +0000211 PDecl = new ObjCProtocolDecl(AtProtoInterfaceLoc, NumProtoRefs,
Chris Lattner855e51f2007-12-12 07:09:47 +0000212 ProtocolName);
Ted Kremenek42730c52008-01-07 19:49:32 +0000213 ObjCProtocols[ProtocolName] = PDecl;
Chris Lattner855e51f2007-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 Kremenek42730c52008-01-07 19:49:32 +0000219 ObjCProtocolDecl* RefPDecl = ObjCProtocols[ProtoRefNames[i]];
Chris Lattner855e51f2007-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 Jahanian87829072007-12-20 19:24:10 +0000224 PDecl->setReferencedProtocols(i, RefPDecl);
Chris Lattner855e51f2007-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 Kremenek42730c52008-01-07 19:49:32 +0000240 ObjCProtocolDecl *PDecl = ObjCProtocols[ProtocolId[i]];
Chris Lattner855e51f2007-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 Kremenek42730c52008-01-07 19:49:32 +0000253 llvm::SmallVector<ObjCProtocolDecl*, 32> Protocols;
Chris Lattner855e51f2007-12-12 07:09:47 +0000254
255 for (unsigned i = 0; i != NumElts; ++i) {
256 IdentifierInfo *P = IdentList[i];
Ted Kremenek42730c52008-01-07 19:49:32 +0000257 ObjCProtocolDecl *PDecl = ObjCProtocols[P];
Chris Lattner855e51f2007-12-12 07:09:47 +0000258 if (!PDecl) { // Not already seen?
259 // FIXME: Pass in the location of the identifier!
Ted Kremenek42730c52008-01-07 19:49:32 +0000260 PDecl = new ObjCProtocolDecl(AtProtocolLoc, 0, P, true);
261 ObjCProtocols[P] = PDecl;
Chris Lattner855e51f2007-12-12 07:09:47 +0000262 }
263
264 Protocols.push_back(PDecl);
265 }
Ted Kremenek42730c52008-01-07 19:49:32 +0000266 return new ObjCForwardProtocolDecl(AtProtocolLoc,
Chris Lattner855e51f2007-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 Kremenek42730c52008-01-07 19:49:32 +0000276 ObjCInterfaceDecl *IDecl = getObjCInterfaceDecl(ClassName);
Chris Lattner855e51f2007-12-12 07:09:47 +0000277
Ted Kremenek42730c52008-01-07 19:49:32 +0000278 ObjCCategoryDecl *CDecl = new ObjCCategoryDecl(AtInterfaceLoc, NumProtoRefs,
Chris Lattner855e51f2007-12-12 07:09:47 +0000279 CategoryName);
280 CDecl->setClassInterface(IDecl);
Fariborz Jahanian6669a582008-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 Lattner855e51f2007-12-12 07:09:47 +0000295 }
Chris Lattner855e51f2007-12-12 07:09:47 +0000296 if (!CDeclChain)
297 CDecl->insertNextClassCategory();
Fariborz Jahanian6669a582008-01-17 20:33:24 +0000298 }
Chris Lattner855e51f2007-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 Kremenek42730c52008-01-07 19:49:32 +0000303 ObjCProtocolDecl* RefPDecl = ObjCProtocols[ProtoRefNames[i]];
Chris Lattner855e51f2007-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 Jahanian87829072007-12-20 19:24:10 +0000309 CDecl->setCatReferencedProtocols(i, RefPDecl);
Chris Lattner855e51f2007-12-12 07:09:47 +0000310 }
311 CDecl->setLocEnd(EndProtoLoc);
312 }
313 return CDecl;
314}
315
316/// ActOnStartCategoryImplementation - Perform semantic checks on the
Ted Kremenek42730c52008-01-07 19:49:32 +0000317/// category implementation declaration and build an ObjCCategoryImplDecl
Chris Lattner855e51f2007-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 Kremenek42730c52008-01-07 19:49:32 +0000323 ObjCInterfaceDecl *IDecl = getObjCInterfaceDecl(ClassName);
324 ObjCCategoryImplDecl *CDecl = new ObjCCategoryImplDecl(AtCatImplLoc,
Chris Lattner855e51f2007-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 Kremenek42730c52008-01-07 19:49:32 +0000340 ObjCInterfaceDecl* IDecl = 0;
Chris Lattner855e51f2007-12-12 07:09:47 +0000341 // Check for another declaration kind with the same name.
342 ScopedDecl *PrevDecl = LookupInterfaceDecl(ClassName);
Ted Kremenek42730c52008-01-07 19:49:32 +0000343 if (PrevDecl && !isa<ObjCInterfaceDecl>(PrevDecl)) {
Chris Lattner855e51f2007-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 Kremenek42730c52008-01-07 19:49:32 +0000350 IDecl = dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl);
Chris Lattner855e51f2007-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 Kremenek42730c52008-01-07 19:49:32 +0000356 ObjCInterfaceDecl* SDecl = 0;
Chris Lattner855e51f2007-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 Kremenek42730c52008-01-07 19:49:32 +0000360 if (PrevDecl && !isa<ObjCInterfaceDecl>(PrevDecl)) {
Chris Lattner855e51f2007-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 Kremenek42730c52008-01-07 19:49:32 +0000366 SDecl = dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl);
Chris Lattner855e51f2007-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 Kremenek42730c52008-01-07 19:49:32 +0000383 IDecl = new ObjCInterfaceDecl(AtClassImplLoc, 0, ClassName,
Chris Lattner855e51f2007-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 Kremenek42730c52008-01-07 19:49:32 +0000394 ObjCImplementationDecl* IMPDecl =
395 new ObjCImplementationDecl(AtClassImplLoc, ClassName, IDecl, SDecl);
Chris Lattner855e51f2007-12-12 07:09:47 +0000396
397 // Check that there is no duplicate implementation of this class.
Ted Kremenek42730c52008-01-07 19:49:32 +0000398 if (ObjCImplementations[ClassName])
Chris Lattner855e51f2007-12-12 07:09:47 +0000399 Diag(ClassLoc, diag::err_dup_implementation_class, ClassName->getName());
400 else // add it to the list.
Ted Kremenek42730c52008-01-07 19:49:32 +0000401 ObjCImplementations[ClassName] = IMPDecl;
Chris Lattner855e51f2007-12-12 07:09:47 +0000402 return IMPDecl;
403}
404
Ted Kremenek42730c52008-01-07 19:49:32 +0000405void Sema::CheckImplementationIvars(ObjCImplementationDecl *ImpDecl,
406 ObjCIvarDecl **ivars, unsigned numIvars,
Chris Lattner855e51f2007-12-12 07:09:47 +0000407 SourceLocation RBrace) {
408 assert(ImpDecl && "missing implementation decl");
Ted Kremenek42730c52008-01-07 19:49:32 +0000409 ObjCInterfaceDecl* IDecl = getObjCInterfaceDecl(ImpDecl->getIdentifier());
Chris Lattner855e51f2007-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 Lattner855e51f2007-12-12 07:09:47 +0000428 unsigned j = 0;
Ted Kremenek42730c52008-01-07 19:49:32 +0000429 ObjCInterfaceDecl::ivar_iterator
Chris Lattner9d76c722007-12-12 17:58:05 +0000430 IVI = IDecl->ivar_begin(), IVE = IDecl->ivar_end();
431 for (; numIvars > 0 && IVI != IVE; ++IVI) {
Ted Kremenek42730c52008-01-07 19:49:32 +0000432 ObjCIvarDecl* ImplIvar = ivars[j++];
433 ObjCIvarDecl* ClsIvar = *IVI;
Chris Lattner855e51f2007-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 Lattner1cc669d2007-12-12 18:11:49 +0000449 return;
Chris Lattner855e51f2007-12-12 07:09:47 +0000450 }
451 --numIvars;
Chris Lattner855e51f2007-12-12 07:09:47 +0000452 }
Chris Lattner1cc669d2007-12-12 18:11:49 +0000453
454 if (numIvars > 0)
Chris Lattner847de6f2007-12-12 18:19:52 +0000455 Diag(ivars[j]->getLocation(), diag::err_inconsistant_ivar_count);
Chris Lattner1cc669d2007-12-12 18:11:49 +0000456 else if (IVI != IVE)
Chris Lattner847de6f2007-12-12 18:19:52 +0000457 Diag((*IVI)->getLocation(), diag::err_inconsistant_ivar_count);
Chris Lattner855e51f2007-12-12 07:09:47 +0000458}
459
460/// CheckProtocolMethodDefs - This routine checks unimpletented methods
461/// Declared in protocol, and those referenced by it.
Ted Kremenek42730c52008-01-07 19:49:32 +0000462void Sema::CheckProtocolMethodDefs(ObjCProtocolDecl *PDecl,
Chris Lattner855e51f2007-12-12 07:09:47 +0000463 bool& IncompleteImpl,
464 const llvm::DenseSet<Selector> &InsMap,
465 const llvm::DenseSet<Selector> &ClsMap) {
466 // check unimplemented instance methods.
Ted Kremenek42730c52008-01-07 19:49:32 +0000467 for (ObjCProtocolDecl::instmeth_iterator I = PDecl->instmeth_begin(),
Steve Naroff2ce399a2007-12-14 23:37:57 +0000468 E = PDecl->instmeth_end(); I != E; ++I) {
Ted Kremenek42730c52008-01-07 19:49:32 +0000469 ObjCMethodDecl *method = *I;
Steve Naroff2ce399a2007-12-14 23:37:57 +0000470 if (!InsMap.count(method->getSelector()) &&
Ted Kremenek42730c52008-01-07 19:49:32 +0000471 method->getImplementationControl() != ObjCMethodDecl::Optional) {
Steve Naroff2ce399a2007-12-14 23:37:57 +0000472 Diag(method->getLocation(), diag::warn_undef_method_impl,
473 method->getSelector().getName());
Chris Lattner855e51f2007-12-12 07:09:47 +0000474 IncompleteImpl = true;
475 }
476 }
477 // check unimplemented class methods
Ted Kremenek42730c52008-01-07 19:49:32 +0000478 for (ObjCProtocolDecl::classmeth_iterator I = PDecl->classmeth_begin(),
Steve Naroff2ce399a2007-12-14 23:37:57 +0000479 E = PDecl->classmeth_end(); I != E; ++I) {
Ted Kremenek42730c52008-01-07 19:49:32 +0000480 ObjCMethodDecl *method = *I;
Steve Naroff2ce399a2007-12-14 23:37:57 +0000481 if (!ClsMap.count(method->getSelector()) &&
Ted Kremenek42730c52008-01-07 19:49:32 +0000482 method->getImplementationControl() != ObjCMethodDecl::Optional) {
Steve Naroff2ce399a2007-12-14 23:37:57 +0000483 Diag(method->getLocation(), diag::warn_undef_method_impl,
484 method->getSelector().getName());
Chris Lattner855e51f2007-12-12 07:09:47 +0000485 IncompleteImpl = true;
486 }
Steve Naroff2ce399a2007-12-14 23:37:57 +0000487 }
Chris Lattner855e51f2007-12-12 07:09:47 +0000488 // Check on this protocols's referenced protocols, recursively
Ted Kremenek42730c52008-01-07 19:49:32 +0000489 ObjCProtocolDecl** RefPDecl = PDecl->getReferencedProtocols();
Fariborz Jahanian87829072007-12-20 19:24:10 +0000490 for (unsigned i = 0; i < PDecl->getNumReferencedProtocols(); i++)
Chris Lattner855e51f2007-12-12 07:09:47 +0000491 CheckProtocolMethodDefs(RefPDecl[i], IncompleteImpl, InsMap, ClsMap);
492}
493
Ted Kremenek42730c52008-01-07 19:49:32 +0000494void Sema::ImplMethodsVsClassMethods(ObjCImplementationDecl* IMPDecl,
495 ObjCInterfaceDecl* IDecl) {
Chris Lattner855e51f2007-12-12 07:09:47 +0000496 llvm::DenseSet<Selector> InsMap;
497 // Check and see if instance methods in class interface have been
498 // implemented in the implementation class.
Ted Kremenek42730c52008-01-07 19:49:32 +0000499 for (ObjCImplementationDecl::instmeth_iterator I = IMPDecl->instmeth_begin(),
Chris Lattner9d76c722007-12-12 17:58:05 +0000500 E = IMPDecl->instmeth_end(); I != E; ++I)
501 InsMap.insert((*I)->getSelector());
Chris Lattner855e51f2007-12-12 07:09:47 +0000502
503 bool IncompleteImpl = false;
Ted Kremenek42730c52008-01-07 19:49:32 +0000504 for (ObjCInterfaceDecl::instmeth_iterator I = IDecl->instmeth_begin(),
Chris Lattner9d76c722007-12-12 17:58:05 +0000505 E = IDecl->instmeth_end(); I != E; ++I)
506 if (!InsMap.count((*I)->getSelector())) {
507 Diag((*I)->getLocation(), diag::warn_undef_method_impl,
508 (*I)->getSelector().getName());
Chris Lattner855e51f2007-12-12 07:09:47 +0000509 IncompleteImpl = true;
510 }
Chris Lattner9d76c722007-12-12 17:58:05 +0000511
Chris Lattner855e51f2007-12-12 07:09:47 +0000512 llvm::DenseSet<Selector> ClsMap;
513 // Check and see if class methods in class interface have been
514 // implemented in the implementation class.
Ted Kremenek42730c52008-01-07 19:49:32 +0000515 for (ObjCImplementationDecl::classmeth_iterator I =IMPDecl->classmeth_begin(),
Chris Lattner9d76c722007-12-12 17:58:05 +0000516 E = IMPDecl->classmeth_end(); I != E; ++I)
517 ClsMap.insert((*I)->getSelector());
Chris Lattner855e51f2007-12-12 07:09:47 +0000518
Ted Kremenek42730c52008-01-07 19:49:32 +0000519 for (ObjCInterfaceDecl::classmeth_iterator I = IDecl->classmeth_begin(),
Chris Lattner9d76c722007-12-12 17:58:05 +0000520 E = IDecl->classmeth_end(); I != E; ++I)
521 if (!ClsMap.count((*I)->getSelector())) {
522 Diag((*I)->getLocation(), diag::warn_undef_method_impl,
523 (*I)->getSelector().getName());
Chris Lattner855e51f2007-12-12 07:09:47 +0000524 IncompleteImpl = true;
525 }
526
527 // Check the protocol list for unimplemented methods in the @implementation
528 // class.
Ted Kremenek42730c52008-01-07 19:49:32 +0000529 ObjCProtocolDecl** protocols = IDecl->getReferencedProtocols();
Fariborz Jahanian87829072007-12-20 19:24:10 +0000530 for (unsigned i = 0; i < IDecl->getNumIntfRefProtocols(); i++)
Chris Lattner855e51f2007-12-12 07:09:47 +0000531 CheckProtocolMethodDefs(protocols[i], IncompleteImpl, InsMap, ClsMap);
532
533 if (IncompleteImpl)
534 Diag(IMPDecl->getLocation(), diag::warn_incomplete_impl_class,
535 IMPDecl->getName());
536}
537
538/// ImplCategoryMethodsVsIntfMethods - Checks that methods declared in the
539/// category interface is implemented in the category @implementation.
Ted Kremenek42730c52008-01-07 19:49:32 +0000540void Sema::ImplCategoryMethodsVsIntfMethods(ObjCCategoryImplDecl *CatImplDecl,
541 ObjCCategoryDecl *CatClassDecl) {
Chris Lattner855e51f2007-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 Kremenek42730c52008-01-07 19:49:32 +0000545 for (ObjCCategoryImplDecl::instmeth_iterator I =CatImplDecl->instmeth_begin(),
Chris Lattner9d76c722007-12-12 17:58:05 +0000546 E = CatImplDecl->instmeth_end(); I != E; ++I)
547 InsMap.insert((*I)->getSelector());
Chris Lattner855e51f2007-12-12 07:09:47 +0000548
549 bool IncompleteImpl = false;
Ted Kremenek42730c52008-01-07 19:49:32 +0000550 for (ObjCCategoryDecl::instmeth_iterator I = CatClassDecl->instmeth_begin(),
Steve Naroff2ce399a2007-12-14 23:37:57 +0000551 E = CatClassDecl->instmeth_end(); I != E; ++I)
552 if (!InsMap.count((*I)->getSelector())) {
553 Diag((*I)->getLocation(), diag::warn_undef_method_impl,
554 (*I)->getSelector().getName());
Chris Lattner855e51f2007-12-12 07:09:47 +0000555 IncompleteImpl = true;
556 }
557 llvm::DenseSet<Selector> ClsMap;
558 // Check and see if class methods in category interface have been
559 // implemented in its implementation class.
Ted Kremenek42730c52008-01-07 19:49:32 +0000560 for (ObjCCategoryImplDecl::classmeth_iterator
Chris Lattner9d76c722007-12-12 17:58:05 +0000561 I = CatImplDecl->classmeth_begin(), E = CatImplDecl->classmeth_end();
562 I != E; ++I)
563 ClsMap.insert((*I)->getSelector());
Chris Lattner855e51f2007-12-12 07:09:47 +0000564
Ted Kremenek42730c52008-01-07 19:49:32 +0000565 for (ObjCCategoryDecl::classmeth_iterator I = CatClassDecl->classmeth_begin(),
Steve Naroff2ce399a2007-12-14 23:37:57 +0000566 E = CatClassDecl->classmeth_end(); I != E; ++I)
567 if (!ClsMap.count((*I)->getSelector())) {
568 Diag((*I)->getLocation(), diag::warn_undef_method_impl,
569 (*I)->getSelector().getName());
Chris Lattner855e51f2007-12-12 07:09:47 +0000570 IncompleteImpl = true;
571 }
572
573 // Check the protocol list for unimplemented methods in the @implementation
574 // class.
Ted Kremenek42730c52008-01-07 19:49:32 +0000575 ObjCProtocolDecl** protocols = CatClassDecl->getReferencedProtocols();
Fariborz Jahanian87829072007-12-20 19:24:10 +0000576 for (unsigned i = 0; i < CatClassDecl->getNumReferencedProtocols(); i++) {
Ted Kremenek42730c52008-01-07 19:49:32 +0000577 ObjCProtocolDecl* PDecl = protocols[i];
Chris Lattner855e51f2007-12-12 07:09:47 +0000578 CheckProtocolMethodDefs(PDecl, IncompleteImpl, InsMap, ClsMap);
579 }
580 if (IncompleteImpl)
581 Diag(CatImplDecl->getLocation(), diag::warn_incomplete_impl_category,
582 CatClassDecl->getName());
583}
584
585/// ActOnForwardClassDeclaration -
586Action::DeclTy *
587Sema::ActOnForwardClassDeclaration(SourceLocation AtClassLoc,
588 IdentifierInfo **IdentList, unsigned NumElts)
589{
Ted Kremenek42730c52008-01-07 19:49:32 +0000590 llvm::SmallVector<ObjCInterfaceDecl*, 32> Interfaces;
Chris Lattner855e51f2007-12-12 07:09:47 +0000591
592 for (unsigned i = 0; i != NumElts; ++i) {
593 // Check for another declaration kind with the same name.
594 ScopedDecl *PrevDecl = LookupInterfaceDecl(IdentList[i]);
Ted Kremenek42730c52008-01-07 19:49:32 +0000595 if (PrevDecl && !isa<ObjCInterfaceDecl>(PrevDecl)) {
Chris Lattner855e51f2007-12-12 07:09:47 +0000596 Diag(AtClassLoc, diag::err_redefinition_different_kind,
597 IdentList[i]->getName());
598 Diag(PrevDecl->getLocation(), diag::err_previous_definition);
599 }
Ted Kremenek42730c52008-01-07 19:49:32 +0000600 ObjCInterfaceDecl *IDecl = dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl);
Chris Lattner855e51f2007-12-12 07:09:47 +0000601 if (!IDecl) { // Not already seen? Make a forward decl.
Ted Kremenek42730c52008-01-07 19:49:32 +0000602 IDecl = new ObjCInterfaceDecl(AtClassLoc, 0, IdentList[i], true);
Chris Lattner855e51f2007-12-12 07:09:47 +0000603 // Chain & install the interface decl into the identifier.
604 IDecl->setNext(IdentList[i]->getFETokenInfo<ScopedDecl>());
605 IdentList[i]->setFETokenInfo(IDecl);
606
607 // Remember that this needs to be removed when the scope is popped.
608 TUScope->AddDecl(IDecl);
609 }
610
611 Interfaces.push_back(IDecl);
612 }
613
Ted Kremenek42730c52008-01-07 19:49:32 +0000614 return new ObjCClassDecl(AtClassLoc, &Interfaces[0], Interfaces.size());
Chris Lattner855e51f2007-12-12 07:09:47 +0000615}
616
617
618/// MatchTwoMethodDeclarations - Checks that two methods have matching type and
619/// returns true, or false, accordingly.
620/// TODO: Handle protocol list; such as id<p1,p2> in type comparisons
Ted Kremenek42730c52008-01-07 19:49:32 +0000621bool Sema::MatchTwoMethodDeclarations(const ObjCMethodDecl *Method,
622 const ObjCMethodDecl *PrevMethod) {
Chris Lattner855e51f2007-12-12 07:09:47 +0000623 if (Method->getResultType().getCanonicalType() !=
624 PrevMethod->getResultType().getCanonicalType())
625 return false;
626 for (int i = 0; i < Method->getNumParams(); i++) {
627 ParmVarDecl *ParamDecl = Method->getParamDecl(i);
628 ParmVarDecl *PrevParamDecl = PrevMethod->getParamDecl(i);
629 if (ParamDecl->getCanonicalType() != PrevParamDecl->getCanonicalType())
630 return false;
631 }
632 return true;
633}
634
Ted Kremenek42730c52008-01-07 19:49:32 +0000635void Sema::AddInstanceMethodToGlobalPool(ObjCMethodDecl *Method) {
636 ObjCMethodList &FirstMethod = InstanceMethodPool[Method->getSelector()];
Chris Lattner855e51f2007-12-12 07:09:47 +0000637 if (!FirstMethod.Method) {
638 // Haven't seen a method with this selector name yet - add it.
639 FirstMethod.Method = Method;
640 FirstMethod.Next = 0;
641 } else {
642 // We've seen a method with this name, now check the type signature(s).
643 bool match = MatchTwoMethodDeclarations(Method, FirstMethod.Method);
644
Ted Kremenek42730c52008-01-07 19:49:32 +0000645 for (ObjCMethodList *Next = FirstMethod.Next; !match && Next;
Chris Lattner855e51f2007-12-12 07:09:47 +0000646 Next = Next->Next)
647 match = MatchTwoMethodDeclarations(Method, Next->Method);
648
649 if (!match) {
650 // We have a new signature for an existing method - add it.
651 // This is extremely rare. Only 1% of Cocoa selectors are "overloaded".
Ted Kremenek42730c52008-01-07 19:49:32 +0000652 struct ObjCMethodList *OMI = new ObjCMethodList(Method, FirstMethod.Next);
Chris Lattner855e51f2007-12-12 07:09:47 +0000653 FirstMethod.Next = OMI;
654 }
655 }
656}
657
Ted Kremenek42730c52008-01-07 19:49:32 +0000658void Sema::AddFactoryMethodToGlobalPool(ObjCMethodDecl *Method) {
659 ObjCMethodList &FirstMethod = FactoryMethodPool[Method->getSelector()];
Chris Lattner855e51f2007-12-12 07:09:47 +0000660 if (!FirstMethod.Method) {
661 // Haven't seen a method with this selector name yet - add it.
662 FirstMethod.Method = Method;
663 FirstMethod.Next = 0;
664 } else {
665 // We've seen a method with this name, now check the type signature(s).
666 bool match = MatchTwoMethodDeclarations(Method, FirstMethod.Method);
667
Ted Kremenek42730c52008-01-07 19:49:32 +0000668 for (ObjCMethodList *Next = FirstMethod.Next; !match && Next;
Chris Lattner855e51f2007-12-12 07:09:47 +0000669 Next = Next->Next)
670 match = MatchTwoMethodDeclarations(Method, Next->Method);
671
672 if (!match) {
673 // We have a new signature for an existing method - add it.
674 // This is extremely rare. Only 1% of Cocoa selectors are "overloaded".
Ted Kremenek42730c52008-01-07 19:49:32 +0000675 struct ObjCMethodList *OMI = new ObjCMethodList(Method, FirstMethod.Next);
Chris Lattner855e51f2007-12-12 07:09:47 +0000676 FirstMethod.Next = OMI;
677 }
678 }
679}
680
Steve Narofffe9eb6a2007-12-18 01:30:32 +0000681// Note: For class/category implemenations, allMethods/allProperties is
682// always null.
Chris Lattner855e51f2007-12-12 07:09:47 +0000683void Sema::ActOnAtEnd(SourceLocation AtEndLoc, DeclTy *classDecl,
684 DeclTy **allMethods, unsigned allNum,
685 DeclTy **allProperties, unsigned pNum) {
686 Decl *ClassDecl = static_cast<Decl *>(classDecl);
687
Steve Narofffe9eb6a2007-12-18 01:30:32 +0000688 // FIXME: If we don't have a ClassDecl, we have an error. We should consider
689 // always passing in a decl. If the decl has an error, isInvalidDecl()
Chris Lattner855e51f2007-12-12 07:09:47 +0000690 // should be true.
691 if (!ClassDecl)
692 return;
693
Ted Kremenek42730c52008-01-07 19:49:32 +0000694 llvm::SmallVector<ObjCMethodDecl*, 32> insMethods;
695 llvm::SmallVector<ObjCMethodDecl*, 16> clsMethods;
Chris Lattner855e51f2007-12-12 07:09:47 +0000696
Ted Kremenek42730c52008-01-07 19:49:32 +0000697 llvm::DenseMap<Selector, const ObjCMethodDecl*> InsMap;
698 llvm::DenseMap<Selector, const ObjCMethodDecl*> ClsMap;
Chris Lattner855e51f2007-12-12 07:09:47 +0000699
700 bool isInterfaceDeclKind =
Ted Kremenek42730c52008-01-07 19:49:32 +0000701 (isa<ObjCInterfaceDecl>(ClassDecl) || isa<ObjCCategoryDecl>(ClassDecl)
702 || isa<ObjCProtocolDecl>(ClassDecl));
703 bool checkIdenticalMethods = isa<ObjCImplementationDecl>(ClassDecl);
Chris Lattner855e51f2007-12-12 07:09:47 +0000704
705 // TODO: property declaration in category and protocols.
Ted Kremenek42730c52008-01-07 19:49:32 +0000706 if (pNum != 0 && isa<ObjCInterfaceDecl>(ClassDecl)) {
707 ObjCPropertyDecl **properties = new ObjCPropertyDecl*[pNum];
708 memcpy(properties, allProperties, pNum*sizeof(ObjCPropertyDecl*));
709 dyn_cast<ObjCInterfaceDecl>(ClassDecl)->setPropertyDecls(properties);
710 dyn_cast<ObjCInterfaceDecl>(ClassDecl)->setNumPropertyDecl(pNum);
Chris Lattner855e51f2007-12-12 07:09:47 +0000711 }
712
713 for (unsigned i = 0; i < allNum; i++ ) {
Ted Kremenek42730c52008-01-07 19:49:32 +0000714 ObjCMethodDecl *Method =
715 cast_or_null<ObjCMethodDecl>(static_cast<Decl*>(allMethods[i]));
Chris Lattner855e51f2007-12-12 07:09:47 +0000716
717 if (!Method) continue; // Already issued a diagnostic.
718 if (Method->isInstance()) {
719 /// Check for instance method of the same name with incompatible types
Ted Kremenek42730c52008-01-07 19:49:32 +0000720 const ObjCMethodDecl *&PrevMethod = InsMap[Method->getSelector()];
Chris Lattner855e51f2007-12-12 07:09:47 +0000721 bool match = PrevMethod ? MatchTwoMethodDeclarations(Method, PrevMethod)
722 : false;
723 if (isInterfaceDeclKind && PrevMethod && !match
724 || checkIdenticalMethods && match) {
725 Diag(Method->getLocation(), diag::error_duplicate_method_decl,
726 Method->getSelector().getName());
727 Diag(PrevMethod->getLocation(), diag::err_previous_declaration);
728 } else {
729 insMethods.push_back(Method);
730 InsMap[Method->getSelector()] = Method;
731 /// The following allows us to typecheck messages to "id".
732 AddInstanceMethodToGlobalPool(Method);
733 }
734 }
735 else {
736 /// Check for class method of the same name with incompatible types
Ted Kremenek42730c52008-01-07 19:49:32 +0000737 const ObjCMethodDecl *&PrevMethod = ClsMap[Method->getSelector()];
Chris Lattner855e51f2007-12-12 07:09:47 +0000738 bool match = PrevMethod ? MatchTwoMethodDeclarations(Method, PrevMethod)
739 : false;
740 if (isInterfaceDeclKind && PrevMethod && !match
741 || checkIdenticalMethods && match) {
742 Diag(Method->getLocation(), diag::error_duplicate_method_decl,
743 Method->getSelector().getName());
744 Diag(PrevMethod->getLocation(), diag::err_previous_declaration);
745 } else {
746 clsMethods.push_back(Method);
747 ClsMap[Method->getSelector()] = Method;
Steve Narofffe9eb6a2007-12-18 01:30:32 +0000748 /// The following allows us to typecheck messages to "Class".
749 AddFactoryMethodToGlobalPool(Method);
Chris Lattner855e51f2007-12-12 07:09:47 +0000750 }
751 }
752 }
753
Ted Kremenek42730c52008-01-07 19:49:32 +0000754 if (ObjCInterfaceDecl *I = dyn_cast<ObjCInterfaceDecl>(ClassDecl)) {
Chris Lattner855e51f2007-12-12 07:09:47 +0000755 I->addMethods(&insMethods[0], insMethods.size(),
756 &clsMethods[0], clsMethods.size(), AtEndLoc);
Ted Kremenek42730c52008-01-07 19:49:32 +0000757 } else if (ObjCProtocolDecl *P = dyn_cast<ObjCProtocolDecl>(ClassDecl)) {
Chris Lattner855e51f2007-12-12 07:09:47 +0000758 P->addMethods(&insMethods[0], insMethods.size(),
759 &clsMethods[0], clsMethods.size(), AtEndLoc);
760 }
Ted Kremenek42730c52008-01-07 19:49:32 +0000761 else if (ObjCCategoryDecl *C = dyn_cast<ObjCCategoryDecl>(ClassDecl)) {
Chris Lattner855e51f2007-12-12 07:09:47 +0000762 C->addMethods(&insMethods[0], insMethods.size(),
763 &clsMethods[0], clsMethods.size(), AtEndLoc);
764 }
Ted Kremenek42730c52008-01-07 19:49:32 +0000765 else if (ObjCImplementationDecl *IC =
766 dyn_cast<ObjCImplementationDecl>(ClassDecl)) {
Chris Lattner855e51f2007-12-12 07:09:47 +0000767 IC->setLocEnd(AtEndLoc);
Ted Kremenek42730c52008-01-07 19:49:32 +0000768 if (ObjCInterfaceDecl* IDecl = getObjCInterfaceDecl(IC->getIdentifier()))
Chris Lattner855e51f2007-12-12 07:09:47 +0000769 ImplMethodsVsClassMethods(IC, IDecl);
770 } else {
Ted Kremenek42730c52008-01-07 19:49:32 +0000771 ObjCCategoryImplDecl* CatImplClass = cast<ObjCCategoryImplDecl>(ClassDecl);
Chris Lattner855e51f2007-12-12 07:09:47 +0000772 CatImplClass->setLocEnd(AtEndLoc);
Ted Kremenek42730c52008-01-07 19:49:32 +0000773 ObjCInterfaceDecl* IDecl = CatImplClass->getClassInterface();
Chris Lattner855e51f2007-12-12 07:09:47 +0000774 // Find category interface decl and then check that all methods declared
775 // in this interface is implemented in the category @implementation.
776 if (IDecl) {
Ted Kremenek42730c52008-01-07 19:49:32 +0000777 for (ObjCCategoryDecl *Categories = IDecl->getCategoryList();
Chris Lattner855e51f2007-12-12 07:09:47 +0000778 Categories; Categories = Categories->getNextClassCategory()) {
779 if (Categories->getIdentifier() == CatImplClass->getIdentifier()) {
780 ImplCategoryMethodsVsIntfMethods(CatImplClass, Categories);
781 break;
782 }
783 }
784 }
785 }
786}
787
788
789/// CvtQTToAstBitMask - utility routine to produce an AST bitmask for
790/// objective-c's type qualifier from the parser version of the same info.
Ted Kremenek42730c52008-01-07 19:49:32 +0000791static Decl::ObjCDeclQualifier
792CvtQTToAstBitMask(ObjCDeclSpec::ObjCDeclQualifier PQTVal) {
793 Decl::ObjCDeclQualifier ret = Decl::OBJC_TQ_None;
794 if (PQTVal & ObjCDeclSpec::DQ_In)
795 ret = (Decl::ObjCDeclQualifier)(ret | Decl::OBJC_TQ_In);
796 if (PQTVal & ObjCDeclSpec::DQ_Inout)
797 ret = (Decl::ObjCDeclQualifier)(ret | Decl::OBJC_TQ_Inout);
798 if (PQTVal & ObjCDeclSpec::DQ_Out)
799 ret = (Decl::ObjCDeclQualifier)(ret | Decl::OBJC_TQ_Out);
800 if (PQTVal & ObjCDeclSpec::DQ_Bycopy)
801 ret = (Decl::ObjCDeclQualifier)(ret | Decl::OBJC_TQ_Bycopy);
802 if (PQTVal & ObjCDeclSpec::DQ_Byref)
803 ret = (Decl::ObjCDeclQualifier)(ret | Decl::OBJC_TQ_Byref);
804 if (PQTVal & ObjCDeclSpec::DQ_Oneway)
805 ret = (Decl::ObjCDeclQualifier)(ret | Decl::OBJC_TQ_Oneway);
Chris Lattner855e51f2007-12-12 07:09:47 +0000806
807 return ret;
808}
809
810Sema::DeclTy *Sema::ActOnMethodDeclaration(
811 SourceLocation MethodLoc, SourceLocation EndLoc,
812 tok::TokenKind MethodType, DeclTy *ClassDecl,
Ted Kremenek42730c52008-01-07 19:49:32 +0000813 ObjCDeclSpec &ReturnQT, TypeTy *ReturnType,
Chris Lattner855e51f2007-12-12 07:09:47 +0000814 Selector Sel,
815 // optional arguments. The number of types/arguments is obtained
816 // from the Sel.getNumArgs().
Ted Kremenek42730c52008-01-07 19:49:32 +0000817 ObjCDeclSpec *ArgQT, TypeTy **ArgTypes, IdentifierInfo **ArgNames,
Chris Lattner855e51f2007-12-12 07:09:47 +0000818 AttributeList *AttrList, tok::ObjCKeywordKind MethodDeclKind,
819 bool isVariadic) {
820 llvm::SmallVector<ParmVarDecl*, 16> Params;
821
822 for (unsigned i = 0; i < Sel.getNumArgs(); i++) {
823 // FIXME: arg->AttrList must be stored too!
824 QualType argType;
825
826 if (ArgTypes[i])
827 argType = QualType::getFromOpaquePtr(ArgTypes[i]);
828 else
Ted Kremenek42730c52008-01-07 19:49:32 +0000829 argType = Context.getObjCIdType();
Chris Lattner855e51f2007-12-12 07:09:47 +0000830 ParmVarDecl* Param = new ParmVarDecl(SourceLocation(/*FIXME*/), ArgNames[i],
831 argType, VarDecl::None, 0);
Ted Kremenek42730c52008-01-07 19:49:32 +0000832 Param->setObjCDeclQualifier(
833 CvtQTToAstBitMask(ArgQT[i].getObjCDeclQualifier()));
Chris Lattner855e51f2007-12-12 07:09:47 +0000834 Params.push_back(Param);
835 }
836 QualType resultDeclType;
837
838 if (ReturnType)
839 resultDeclType = QualType::getFromOpaquePtr(ReturnType);
840 else // get the type for "id".
Ted Kremenek42730c52008-01-07 19:49:32 +0000841 resultDeclType = Context.getObjCIdType();
Chris Lattner855e51f2007-12-12 07:09:47 +0000842
843 Decl *CDecl = static_cast<Decl*>(ClassDecl);
Ted Kremenek42730c52008-01-07 19:49:32 +0000844 ObjCMethodDecl* ObjCMethod = new ObjCMethodDecl(MethodLoc, EndLoc, Sel,
Chris Lattner855e51f2007-12-12 07:09:47 +0000845 resultDeclType,
846 CDecl,
847 0, -1, AttrList,
848 MethodType == tok::minus, isVariadic,
849 MethodDeclKind == tok::objc_optional ?
Ted Kremenek42730c52008-01-07 19:49:32 +0000850 ObjCMethodDecl::Optional :
851 ObjCMethodDecl::Required);
852 ObjCMethod->setMethodParams(&Params[0], Sel.getNumArgs());
853 ObjCMethod->setObjCDeclQualifier(
854 CvtQTToAstBitMask(ReturnQT.getObjCDeclQualifier()));
855 const ObjCMethodDecl *PrevMethod = 0;
Chris Lattner855e51f2007-12-12 07:09:47 +0000856
857 // For implementations (which can be very "coarse grain"), we add the
858 // method now. This allows the AST to implement lookup methods that work
859 // incrementally (without waiting until we parse the @end). It also allows
860 // us to flag multiple declaration errors as they occur.
Ted Kremenek42730c52008-01-07 19:49:32 +0000861 if (ObjCImplementationDecl *ImpDecl =
862 dyn_cast<ObjCImplementationDecl>(CDecl)) {
Chris Lattner855e51f2007-12-12 07:09:47 +0000863 if (MethodType == tok::minus) {
Steve Naroff74273de2007-12-19 22:27:04 +0000864 PrevMethod = ImpDecl->getInstanceMethod(Sel);
Ted Kremenek42730c52008-01-07 19:49:32 +0000865 ImpDecl->addInstanceMethod(ObjCMethod);
Chris Lattner855e51f2007-12-12 07:09:47 +0000866 } else {
Steve Naroff74273de2007-12-19 22:27:04 +0000867 PrevMethod = ImpDecl->getClassMethod(Sel);
Ted Kremenek42730c52008-01-07 19:49:32 +0000868 ImpDecl->addClassMethod(ObjCMethod);
Chris Lattner855e51f2007-12-12 07:09:47 +0000869 }
870 }
Ted Kremenek42730c52008-01-07 19:49:32 +0000871 else if (ObjCCategoryImplDecl *CatImpDecl =
872 dyn_cast<ObjCCategoryImplDecl>(CDecl)) {
Chris Lattner855e51f2007-12-12 07:09:47 +0000873 if (MethodType == tok::minus) {
Steve Naroff74273de2007-12-19 22:27:04 +0000874 PrevMethod = CatImpDecl->getInstanceMethod(Sel);
Ted Kremenek42730c52008-01-07 19:49:32 +0000875 CatImpDecl->addInstanceMethod(ObjCMethod);
Chris Lattner855e51f2007-12-12 07:09:47 +0000876 } else {
Steve Naroff74273de2007-12-19 22:27:04 +0000877 PrevMethod = CatImpDecl->getClassMethod(Sel);
Ted Kremenek42730c52008-01-07 19:49:32 +0000878 CatImpDecl->addClassMethod(ObjCMethod);
Chris Lattner855e51f2007-12-12 07:09:47 +0000879 }
880 }
881 if (PrevMethod) {
882 // You can never have two method definitions with the same name.
Ted Kremenek42730c52008-01-07 19:49:32 +0000883 Diag(ObjCMethod->getLocation(), diag::error_duplicate_method_decl,
884 ObjCMethod->getSelector().getName());
Chris Lattner855e51f2007-12-12 07:09:47 +0000885 Diag(PrevMethod->getLocation(), diag::err_previous_declaration);
886 }
Ted Kremenek42730c52008-01-07 19:49:32 +0000887 return ObjCMethod;
Chris Lattner855e51f2007-12-12 07:09:47 +0000888}
889
Ted Kremenek42730c52008-01-07 19:49:32 +0000890Sema::DeclTy *Sema::ActOnAddObjCProperties(SourceLocation AtLoc,
891 DeclTy **allProperties, unsigned NumProperties, ObjCDeclSpec &DS) {
892 ObjCPropertyDecl *PDecl = new ObjCPropertyDecl(AtLoc);
Chris Lattner855e51f2007-12-12 07:09:47 +0000893
Ted Kremenek42730c52008-01-07 19:49:32 +0000894 if(DS.getPropertyAttributes() & ObjCDeclSpec::DQ_PR_readonly)
895 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_readonly);
Chris Lattner855e51f2007-12-12 07:09:47 +0000896
Ted Kremenek42730c52008-01-07 19:49:32 +0000897 if(DS.getPropertyAttributes() & ObjCDeclSpec::DQ_PR_getter) {
898 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_getter);
Chris Lattner855e51f2007-12-12 07:09:47 +0000899 PDecl->setGetterName(DS.getGetterName());
900 }
901
Ted Kremenek42730c52008-01-07 19:49:32 +0000902 if(DS.getPropertyAttributes() & ObjCDeclSpec::DQ_PR_setter) {
903 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_setter);
Chris Lattner855e51f2007-12-12 07:09:47 +0000904 PDecl->setSetterName(DS.getSetterName());
905 }
906
Ted Kremenek42730c52008-01-07 19:49:32 +0000907 if(DS.getPropertyAttributes() & ObjCDeclSpec::DQ_PR_assign)
908 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_assign);
Chris Lattner855e51f2007-12-12 07:09:47 +0000909
Ted Kremenek42730c52008-01-07 19:49:32 +0000910 if(DS.getPropertyAttributes() & ObjCDeclSpec::DQ_PR_readwrite)
911 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_readwrite);
Chris Lattner855e51f2007-12-12 07:09:47 +0000912
Ted Kremenek42730c52008-01-07 19:49:32 +0000913 if(DS.getPropertyAttributes() & ObjCDeclSpec::DQ_PR_retain)
914 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_retain);
Chris Lattner855e51f2007-12-12 07:09:47 +0000915
Ted Kremenek42730c52008-01-07 19:49:32 +0000916 if(DS.getPropertyAttributes() & ObjCDeclSpec::DQ_PR_copy)
917 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_copy);
Chris Lattner855e51f2007-12-12 07:09:47 +0000918
Ted Kremenek42730c52008-01-07 19:49:32 +0000919 if(DS.getPropertyAttributes() & ObjCDeclSpec::DQ_PR_nonatomic)
920 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_nonatomic);
Chris Lattner855e51f2007-12-12 07:09:47 +0000921
922 PDecl->setNumPropertyDecls(NumProperties);
923 if (NumProperties != 0) {
Ted Kremenek42730c52008-01-07 19:49:32 +0000924 ObjCIvarDecl **properties = new ObjCIvarDecl*[NumProperties];
925 memcpy(properties, allProperties, NumProperties*sizeof(ObjCIvarDecl*));
Chris Lattner855e51f2007-12-12 07:09:47 +0000926 PDecl->setPropertyDecls(properties);
927 }
928 return PDecl;
929}
930