blob: fe26090a174848821921cddef8f200eaec258b6b [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"
Daniel Dunbar12bc6922008-08-11 03:27:53 +000017#include "clang/Parse/DeclSpec.h"
Chris Lattner4d391482007-12-12 07:09:47 +000018using namespace clang;
19
Steve Naroffebf64432009-02-28 16:59:13 +000020/// ActOnStartOfObjCMethodDef - This routine sets up parameters; invisible
Chris Lattner4d391482007-12-12 07:09:47 +000021/// and user declared, in the method definition's AST.
Steve Naroffebf64432009-02-28 16:59:13 +000022void Sema::ActOnStartOfObjCMethodDef(Scope *FnBodyScope, DeclTy *D) {
Argyrios Kyrtzidis53d0ea52008-06-28 06:07:14 +000023 assert(getCurMethodDecl() == 0 && "Method parsing confused");
Steve Naroff394f3f42008-07-25 17:57:26 +000024 ObjCMethodDecl *MDecl = dyn_cast_or_null<ObjCMethodDecl>((Decl *)D);
25
26 // If we don't have a valid method decl, simply return.
27 if (!MDecl)
28 return;
Steve Naroffa56f6162007-12-18 01:30:32 +000029
30 // Allow the rest of sema to find private method decl implementations.
Douglas Gregorf8d49f62009-01-09 17:18:27 +000031 if (MDecl->isInstanceMethod())
Steve Naroffa56f6162007-12-18 01:30:32 +000032 AddInstanceMethodToGlobalPool(MDecl);
33 else
34 AddFactoryMethodToGlobalPool(MDecl);
Chris Lattner4d391482007-12-12 07:09:47 +000035
36 // Allow all of Sema to see that we are entering a method definition.
Douglas Gregor44b43212008-12-11 16:49:14 +000037 PushDeclContext(FnBodyScope, MDecl);
Chris Lattner4d391482007-12-12 07:09:47 +000038
Steve Narofff3cf8972009-02-28 16:48:43 +000039 ActiveScope = FnBodyScope;
40
Chris Lattner4d391482007-12-12 07:09:47 +000041 // Create Decl objects for each parameter, entrring them in the scope for
42 // binding to their use.
Chris Lattner4d391482007-12-12 07:09:47 +000043
44 // Insert the invisible arguments, self and _cmd!
Fariborz Jahanianfef30b52008-12-09 20:23:04 +000045 MDecl->createImplicitParams(Context, MDecl->getClassInterface());
Chris Lattner4d391482007-12-12 07:09:47 +000046
Daniel Dunbar451318c2008-08-26 06:07:48 +000047 PushOnScopeChains(MDecl->getSelfDecl(), FnBodyScope);
48 PushOnScopeChains(MDecl->getCmdDecl(), FnBodyScope);
Chris Lattner04421082008-04-08 04:40:51 +000049
Chris Lattner8123a952008-04-10 02:22:51 +000050 // Introduce all of the other parameters into this scope.
Chris Lattner89951a82009-02-20 18:43:26 +000051 for (ObjCMethodDecl::param_iterator PI = MDecl->param_begin(),
52 E = MDecl->param_end(); PI != E; ++PI)
53 if ((*PI)->getIdentifier())
54 PushOnScopeChains(*PI, FnBodyScope);
Chris Lattner4d391482007-12-12 07:09:47 +000055}
56
Chris Lattner7caeabd2008-07-21 22:17:28 +000057Sema::DeclTy *Sema::
58ActOnStartClassInterface(SourceLocation AtInterfaceLoc,
59 IdentifierInfo *ClassName, SourceLocation ClassLoc,
60 IdentifierInfo *SuperName, SourceLocation SuperLoc,
Chris Lattner06036d32008-07-26 04:13:19 +000061 DeclTy * const *ProtoRefs, unsigned NumProtoRefs,
Chris Lattner7caeabd2008-07-21 22:17:28 +000062 SourceLocation EndProtoLoc, AttributeList *AttrList) {
Chris Lattner4d391482007-12-12 07:09:47 +000063 assert(ClassName && "Missing class identifier");
64
65 // Check for another declaration kind with the same name.
Douglas Gregor47b9a1c2009-02-04 17:27:36 +000066 NamedDecl *PrevDecl = LookupName(TUScope, ClassName, LookupOrdinaryName);
Douglas Gregorf57172b2008-12-08 18:40:42 +000067 if (PrevDecl && PrevDecl->isTemplateParameter()) {
Douglas Gregor72c3f312008-12-05 18:15:24 +000068 // Maybe we will complain about the shadowed template parameter.
69 DiagnoseTemplateParameterShadow(ClassLoc, PrevDecl);
70 // Just pretend that we didn't see the previous declaration.
71 PrevDecl = 0;
72 }
73
Ted Kremeneka526c5c2008-01-07 19:49:32 +000074 if (PrevDecl && !isa<ObjCInterfaceDecl>(PrevDecl)) {
Chris Lattner3c73c412008-11-19 08:23:25 +000075 Diag(ClassLoc, diag::err_redefinition_different_kind) << ClassName;
Chris Lattner5f4a6822008-11-23 23:12:31 +000076 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Chris Lattner4d391482007-12-12 07:09:47 +000077 }
78
Ted Kremeneka526c5c2008-01-07 19:49:32 +000079 ObjCInterfaceDecl* IDecl = dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl);
Chris Lattner4d391482007-12-12 07:09:47 +000080 if (IDecl) {
81 // Class already seen. Is it a forward declaration?
Steve Naroffcfe8bf32008-11-18 19:15:30 +000082 if (!IDecl->isForwardDecl()) {
Chris Lattner1829a6d2009-02-23 22:00:08 +000083 IDecl->setInvalidDecl();
Chris Lattnerd9d22dd2008-11-24 05:29:24 +000084 Diag(AtInterfaceLoc, diag::err_duplicate_class_def)<<IDecl->getDeclName();
Chris Lattnerb8b96af2008-11-23 22:46:27 +000085 Diag(IDecl->getLocation(), diag::note_previous_definition);
86
Steve Naroffcfe8bf32008-11-18 19:15:30 +000087 // Return the previous class interface.
88 // FIXME: don't leak the objects passed in!
89 return IDecl;
90 } else {
Chris Lattner4d391482007-12-12 07:09:47 +000091 IDecl->setLocation(AtInterfaceLoc);
92 IDecl->setForwardDecl(false);
Chris Lattner4d391482007-12-12 07:09:47 +000093 }
Chris Lattnerb752f282008-07-21 07:06:49 +000094 } else {
Douglas Gregord0434102009-01-09 00:49:46 +000095 IDecl = ObjCInterfaceDecl::Create(Context, CurContext, AtInterfaceLoc,
Steve Naroffd6a07aa2008-04-11 19:35:35 +000096 ClassName, ClassLoc);
Daniel Dunbarf6414922008-08-20 18:02:42 +000097 if (AttrList)
98 ProcessDeclAttributeList(IDecl, AttrList);
Chris Lattner4d391482007-12-12 07:09:47 +000099
Steve Naroff31102512008-04-02 18:30:49 +0000100 ObjCInterfaceDecls[ClassName] = IDecl;
Douglas Gregord0434102009-01-09 00:49:46 +0000101 // FIXME: PushOnScopeChains
Douglas Gregor482b77d2009-01-12 23:27:07 +0000102 CurContext->addDecl(IDecl);
Chris Lattner4d391482007-12-12 07:09:47 +0000103 // Remember that this needs to be removed when the scope is popped.
104 TUScope->AddDecl(IDecl);
105 }
106
107 if (SuperName) {
Chris Lattner4d391482007-12-12 07:09:47 +0000108 // Check if a different kind of symbol declared in this scope.
Douglas Gregor4c921ae2009-01-30 01:04:22 +0000109 PrevDecl = LookupName(TUScope, SuperName, LookupOrdinaryName);
Chris Lattner3c73c412008-11-19 08:23:25 +0000110
Steve Naroff818cb9e2009-02-04 17:14:05 +0000111 ObjCInterfaceDecl *SuperClassDecl =
112 dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl);
Chris Lattnerc7984dd2009-02-16 21:33:09 +0000113
114 // Diagnose classes that inherit from deprecated classes.
115 if (SuperClassDecl)
Douglas Gregor48f3bb92009-02-18 21:56:37 +0000116 (void)DiagnoseUseOfDecl(SuperClassDecl, SuperLoc);
Chris Lattnerc7984dd2009-02-16 21:33:09 +0000117
Steve Naroff818cb9e2009-02-04 17:14:05 +0000118 if (PrevDecl && SuperClassDecl == 0) {
119 // The previous declaration was not a class decl. Check if we have a
120 // typedef. If we do, get the underlying class type.
121 if (const TypedefDecl *TDecl = dyn_cast_or_null<TypedefDecl>(PrevDecl)) {
122 QualType T = TDecl->getUnderlyingType();
123 if (T->isObjCInterfaceType()) {
124 if (NamedDecl *IDecl = T->getAsObjCInterfaceType()->getDecl())
125 SuperClassDecl = dyn_cast<ObjCInterfaceDecl>(IDecl);
126 }
127 }
Chris Lattnerc7984dd2009-02-16 21:33:09 +0000128
Steve Naroff818cb9e2009-02-04 17:14:05 +0000129 // This handles the following case:
130 //
131 // typedef int SuperClass;
132 // @interface MyClass : SuperClass {} @end
133 //
134 if (!SuperClassDecl) {
135 Diag(SuperLoc, diag::err_redefinition_different_kind) << SuperName;
136 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
137 }
138 }
Chris Lattnerc7984dd2009-02-16 21:33:09 +0000139
Steve Naroff818cb9e2009-02-04 17:14:05 +0000140 if (!dyn_cast_or_null<TypedefDecl>(PrevDecl)) {
141 if (!SuperClassDecl)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000142 Diag(SuperLoc, diag::err_undef_superclass)
Chris Lattner3c73c412008-11-19 08:23:25 +0000143 << SuperName << ClassName << SourceRange(AtInterfaceLoc, ClassLoc);
Steve Naroff818cb9e2009-02-04 17:14:05 +0000144 else if (SuperClassDecl->isForwardDecl())
Chris Lattner3c73c412008-11-19 08:23:25 +0000145 Diag(SuperLoc, diag::err_undef_superclass)
Steve Naroff818cb9e2009-02-04 17:14:05 +0000146 << SuperClassDecl->getDeclName() << ClassName
Chris Lattner3c73c412008-11-19 08:23:25 +0000147 << SourceRange(AtInterfaceLoc, ClassLoc);
Chris Lattner4d391482007-12-12 07:09:47 +0000148 }
Steve Naroff818cb9e2009-02-04 17:14:05 +0000149 IDecl->setSuperClass(SuperClassDecl);
Steve Naroffd6a07aa2008-04-11 19:35:35 +0000150 IDecl->setSuperClassLoc(SuperLoc);
Chris Lattner4d391482007-12-12 07:09:47 +0000151 IDecl->setLocEnd(SuperLoc);
152 } else { // we have a root class.
153 IDecl->setLocEnd(ClassLoc);
154 }
155
Steve Naroffcfe8bf32008-11-18 19:15:30 +0000156 /// Check then save referenced protocols.
Chris Lattner06036d32008-07-26 04:13:19 +0000157 if (NumProtoRefs) {
Chris Lattner38af2de2009-02-20 21:35:13 +0000158 IDecl->setProtocolList((ObjCProtocolDecl**)ProtoRefs, NumProtoRefs,
159 Context);
Chris Lattner4d391482007-12-12 07:09:47 +0000160 IDecl->setLocEnd(EndProtoLoc);
161 }
Anders Carlsson15281452008-11-04 16:57:32 +0000162
163 CheckObjCDeclScope(IDecl);
Chris Lattner4d391482007-12-12 07:09:47 +0000164 return IDecl;
165}
166
167/// ActOnCompatiblityAlias - this action is called after complete parsing of
Daniel Dunbar7ad1b1f2008-09-04 20:01:15 +0000168/// @compatibility_alias declaration. It sets up the alias relationships.
Steve Naroffe8043c32008-04-01 23:04:06 +0000169Sema::DeclTy *Sema::ActOnCompatiblityAlias(SourceLocation AtLoc,
170 IdentifierInfo *AliasName,
171 SourceLocation AliasLocation,
172 IdentifierInfo *ClassName,
173 SourceLocation ClassLocation) {
Chris Lattner4d391482007-12-12 07:09:47 +0000174 // Look for previous declaration of alias name
Douglas Gregor47b9a1c2009-02-04 17:27:36 +0000175 NamedDecl *ADecl = LookupName(TUScope, AliasName, LookupOrdinaryName);
Chris Lattner4d391482007-12-12 07:09:47 +0000176 if (ADecl) {
Chris Lattner8b265bd2008-11-23 23:20:13 +0000177 if (isa<ObjCCompatibleAliasDecl>(ADecl))
Chris Lattner4d391482007-12-12 07:09:47 +0000178 Diag(AliasLocation, diag::warn_previous_alias_decl);
Chris Lattner8b265bd2008-11-23 23:20:13 +0000179 else
Chris Lattner3c73c412008-11-19 08:23:25 +0000180 Diag(AliasLocation, diag::err_conflicting_aliasing_type) << AliasName;
Chris Lattner8b265bd2008-11-23 23:20:13 +0000181 Diag(ADecl->getLocation(), diag::note_previous_declaration);
Chris Lattner4d391482007-12-12 07:09:47 +0000182 return 0;
183 }
184 // Check for class declaration
Douglas Gregor47b9a1c2009-02-04 17:27:36 +0000185 NamedDecl *CDeclU = LookupName(TUScope, ClassName, LookupOrdinaryName);
Fariborz Jahanian305c6582009-01-08 01:10:55 +0000186 if (const TypedefDecl *TDecl = dyn_cast_or_null<TypedefDecl>(CDeclU)) {
187 QualType T = TDecl->getUnderlyingType();
188 if (T->isObjCInterfaceType()) {
189 if (NamedDecl *IDecl = T->getAsObjCInterfaceType()->getDecl()) {
190 ClassName = IDecl->getIdentifier();
Douglas Gregor4c921ae2009-01-30 01:04:22 +0000191 CDeclU = LookupName(TUScope, ClassName, LookupOrdinaryName);
Fariborz Jahanian305c6582009-01-08 01:10:55 +0000192 }
193 }
194 }
Chris Lattnerf8d17a52008-03-16 21:17:37 +0000195 ObjCInterfaceDecl *CDecl = dyn_cast_or_null<ObjCInterfaceDecl>(CDeclU);
196 if (CDecl == 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000197 Diag(ClassLocation, diag::warn_undef_interface) << ClassName;
Chris Lattnerf8d17a52008-03-16 21:17:37 +0000198 if (CDeclU)
Chris Lattner8b265bd2008-11-23 23:20:13 +0000199 Diag(CDeclU->getLocation(), diag::note_previous_declaration);
Chris Lattner4d391482007-12-12 07:09:47 +0000200 return 0;
201 }
Chris Lattnerf8d17a52008-03-16 21:17:37 +0000202
203 // Everything checked out, instantiate a new alias declaration AST.
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000204 ObjCCompatibleAliasDecl *AliasDecl =
Douglas Gregord0434102009-01-09 00:49:46 +0000205 ObjCCompatibleAliasDecl::Create(Context, CurContext, AtLoc, AliasName, CDecl);
Steve Naroffe8043c32008-04-01 23:04:06 +0000206
207 ObjCAliasDecls[AliasName] = AliasDecl;
Douglas Gregord0434102009-01-09 00:49:46 +0000208
209 // FIXME: PushOnScopeChains?
Douglas Gregor482b77d2009-01-12 23:27:07 +0000210 CurContext->addDecl(AliasDecl);
Anders Carlsson15281452008-11-04 16:57:32 +0000211 if (!CheckObjCDeclScope(AliasDecl))
212 TUScope->AddDecl(AliasDecl);
Douglas Gregord0434102009-01-09 00:49:46 +0000213
Chris Lattner4d391482007-12-12 07:09:47 +0000214 return AliasDecl;
215}
216
Chris Lattnere13b9592008-07-26 04:03:38 +0000217Sema::DeclTy *
218Sema::ActOnStartProtocolInterface(SourceLocation AtProtoInterfaceLoc,
219 IdentifierInfo *ProtocolName,
220 SourceLocation ProtocolLoc,
221 DeclTy * const *ProtoRefs,
222 unsigned NumProtoRefs,
Daniel Dunbar246e70f2008-09-26 04:48:09 +0000223 SourceLocation EndProtoLoc,
224 AttributeList *AttrList) {
225 // FIXME: Deal with AttrList.
Chris Lattner4d391482007-12-12 07:09:47 +0000226 assert(ProtocolName && "Missing protocol identifier");
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000227 ObjCProtocolDecl *PDecl = ObjCProtocols[ProtocolName];
Chris Lattner4d391482007-12-12 07:09:47 +0000228 if (PDecl) {
229 // Protocol already seen. Better be a forward protocol declaration
Chris Lattner439e71f2008-03-16 01:25:17 +0000230 if (!PDecl->isForwardDecl()) {
Chris Lattner1829a6d2009-02-23 22:00:08 +0000231 PDecl->setInvalidDecl();
Chris Lattner3c73c412008-11-19 08:23:25 +0000232 Diag(ProtocolLoc, diag::err_duplicate_protocol_def) << ProtocolName;
Chris Lattnerb8b96af2008-11-23 22:46:27 +0000233 Diag(PDecl->getLocation(), diag::note_previous_definition);
Chris Lattner439e71f2008-03-16 01:25:17 +0000234 // Just return the protocol we already had.
235 // FIXME: don't leak the objects passed in!
236 return PDecl;
Chris Lattner4d391482007-12-12 07:09:47 +0000237 }
Steve Narofff11b5082008-08-13 16:39:22 +0000238 // Make sure the cached decl gets a valid start location.
239 PDecl->setLocation(AtProtoInterfaceLoc);
Chris Lattner439e71f2008-03-16 01:25:17 +0000240 PDecl->setForwardDecl(false);
Chris Lattner439e71f2008-03-16 01:25:17 +0000241 } else {
Douglas Gregord0434102009-01-09 00:49:46 +0000242 PDecl = ObjCProtocolDecl::Create(Context, CurContext,
243 AtProtoInterfaceLoc,ProtocolName);
244 // FIXME: PushOnScopeChains?
Douglas Gregor482b77d2009-01-12 23:27:07 +0000245 CurContext->addDecl(PDecl);
Chris Lattnerc8581052008-03-16 20:19:15 +0000246 PDecl->setForwardDecl(false);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000247 ObjCProtocols[ProtocolName] = PDecl;
Chris Lattnercca59d72008-03-16 01:23:04 +0000248 }
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +0000249 if (AttrList)
250 ProcessDeclAttributeList(PDecl, AttrList);
Chris Lattner4d391482007-12-12 07:09:47 +0000251 if (NumProtoRefs) {
Chris Lattnerc8581052008-03-16 20:19:15 +0000252 /// Check then save referenced protocols.
Chris Lattner38af2de2009-02-20 21:35:13 +0000253 PDecl->setProtocolList((ObjCProtocolDecl**)ProtoRefs, NumProtoRefs,Context);
Chris Lattner4d391482007-12-12 07:09:47 +0000254 PDecl->setLocEnd(EndProtoLoc);
255 }
Anders Carlsson15281452008-11-04 16:57:32 +0000256
257 CheckObjCDeclScope(PDecl);
Chris Lattner4d391482007-12-12 07:09:47 +0000258 return PDecl;
259}
260
261/// FindProtocolDeclaration - This routine looks up protocols and
Daniel Dunbar7ad1b1f2008-09-04 20:01:15 +0000262/// issues an error if they are not declared. It returns list of
263/// protocol declarations in its 'Protocols' argument.
Chris Lattner4d391482007-12-12 07:09:47 +0000264void
Chris Lattnere13b9592008-07-26 04:03:38 +0000265Sema::FindProtocolDeclaration(bool WarnOnDeclarations,
Chris Lattner7caeabd2008-07-21 22:17:28 +0000266 const IdentifierLocPair *ProtocolId,
Chris Lattner4d391482007-12-12 07:09:47 +0000267 unsigned NumProtocols,
Chris Lattner7caeabd2008-07-21 22:17:28 +0000268 llvm::SmallVectorImpl<DeclTy*> &Protocols) {
Chris Lattner4d391482007-12-12 07:09:47 +0000269 for (unsigned i = 0; i != NumProtocols; ++i) {
Chris Lattnereacc3922008-07-26 03:47:43 +0000270 ObjCProtocolDecl *PDecl = ObjCProtocols[ProtocolId[i].first];
271 if (!PDecl) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000272 Diag(ProtocolId[i].second, diag::err_undeclared_protocol)
Chris Lattner3c73c412008-11-19 08:23:25 +0000273 << ProtocolId[i].first;
Chris Lattnereacc3922008-07-26 03:47:43 +0000274 continue;
275 }
Chris Lattner45ce5c32009-02-14 08:22:25 +0000276
Douglas Gregor48f3bb92009-02-18 21:56:37 +0000277 (void)DiagnoseUseOfDecl(PDecl, ProtocolId[i].second);
Chris Lattnereacc3922008-07-26 03:47:43 +0000278
279 // If this is a forward declaration and we are supposed to warn in this
280 // case, do it.
281 if (WarnOnDeclarations && PDecl->isForwardDecl())
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000282 Diag(ProtocolId[i].second, diag::warn_undef_protocolref)
Chris Lattner3c73c412008-11-19 08:23:25 +0000283 << ProtocolId[i].first;
Chris Lattnereacc3922008-07-26 03:47:43 +0000284 Protocols.push_back(PDecl);
Chris Lattner4d391482007-12-12 07:09:47 +0000285 }
286}
287
Fariborz Jahanianb5e02242008-04-24 19:58:34 +0000288/// DiagnosePropertyMismatch - Compares two properties for their
Daniel Dunbarb20ef3e2008-08-27 05:40:03 +0000289/// attributes and types and warns on a variety of inconsistencies.
Fariborz Jahanianb5e02242008-04-24 19:58:34 +0000290///
Fariborz Jahanian02edb982008-05-01 00:03:38 +0000291void
292Sema::DiagnosePropertyMismatch(ObjCPropertyDecl *Property,
293 ObjCPropertyDecl *SuperProperty,
Chris Lattner8ec03f52008-11-24 03:54:41 +0000294 const IdentifierInfo *inheritedName) {
Fariborz Jahanianb5e02242008-04-24 19:58:34 +0000295 ObjCPropertyDecl::PropertyAttributeKind CAttr =
296 Property->getPropertyAttributes();
297 ObjCPropertyDecl::PropertyAttributeKind SAttr =
298 SuperProperty->getPropertyAttributes();
299 if ((CAttr & ObjCPropertyDecl::OBJC_PR_readonly)
300 && (SAttr & ObjCPropertyDecl::OBJC_PR_readwrite))
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000301 Diag(Property->getLocation(), diag::warn_readonly_property)
Chris Lattner8ec03f52008-11-24 03:54:41 +0000302 << Property->getDeclName() << inheritedName;
Fariborz Jahanianb5e02242008-04-24 19:58:34 +0000303 if ((CAttr & ObjCPropertyDecl::OBJC_PR_copy)
304 != (SAttr & ObjCPropertyDecl::OBJC_PR_copy))
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +0000305 Diag(Property->getLocation(), diag::warn_property_attribute)
Chris Lattner8ec03f52008-11-24 03:54:41 +0000306 << Property->getDeclName() << "copy" << inheritedName;
Fariborz Jahanianb5e02242008-04-24 19:58:34 +0000307 else if ((CAttr & ObjCPropertyDecl::OBJC_PR_retain)
308 != (SAttr & ObjCPropertyDecl::OBJC_PR_retain))
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +0000309 Diag(Property->getLocation(), diag::warn_property_attribute)
Chris Lattner8ec03f52008-11-24 03:54:41 +0000310 << Property->getDeclName() << "retain" << inheritedName;
Fariborz Jahanianb5e02242008-04-24 19:58:34 +0000311
312 if ((CAttr & ObjCPropertyDecl::OBJC_PR_nonatomic)
313 != (SAttr & ObjCPropertyDecl::OBJC_PR_nonatomic))
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +0000314 Diag(Property->getLocation(), diag::warn_property_attribute)
Chris Lattner8ec03f52008-11-24 03:54:41 +0000315 << Property->getDeclName() << "atomic" << inheritedName;
Fariborz Jahanianb5e02242008-04-24 19:58:34 +0000316 if (Property->getSetterName() != SuperProperty->getSetterName())
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +0000317 Diag(Property->getLocation(), diag::warn_property_attribute)
Chris Lattner8ec03f52008-11-24 03:54:41 +0000318 << Property->getDeclName() << "setter" << inheritedName;
Fariborz Jahanianb5e02242008-04-24 19:58:34 +0000319 if (Property->getGetterName() != SuperProperty->getGetterName())
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +0000320 Diag(Property->getLocation(), diag::warn_property_attribute)
Chris Lattner8ec03f52008-11-24 03:54:41 +0000321 << Property->getDeclName() << "getter" << inheritedName;
Fariborz Jahanianb5e02242008-04-24 19:58:34 +0000322
Chris Lattner717250a2008-07-26 20:50:02 +0000323 if (Context.getCanonicalType(Property->getType()) !=
324 Context.getCanonicalType(SuperProperty->getType()))
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +0000325 Diag(Property->getLocation(), diag::warn_property_type)
Chris Lattner8ec03f52008-11-24 03:54:41 +0000326 << Property->getType() << inheritedName;
Fariborz Jahanianb5e02242008-04-24 19:58:34 +0000327
328}
329
330/// ComparePropertiesInBaseAndSuper - This routine compares property
331/// declarations in base and its super class, if any, and issues
332/// diagnostics in a variety of inconsistant situations.
333///
Chris Lattner70f19542009-02-16 21:26:43 +0000334void Sema::ComparePropertiesInBaseAndSuper(ObjCInterfaceDecl *IDecl) {
Fariborz Jahanianb5e02242008-04-24 19:58:34 +0000335 ObjCInterfaceDecl *SDecl = IDecl->getSuperClass();
336 if (!SDecl)
337 return;
Daniel Dunbarb20ef3e2008-08-27 05:40:03 +0000338 // FIXME: O(N^2)
Steve Naroff09c47192009-01-09 15:36:25 +0000339 for (ObjCInterfaceDecl::prop_iterator S = SDecl->prop_begin(),
340 E = SDecl->prop_end(); S != E; ++S) {
Fariborz Jahanian02edb982008-05-01 00:03:38 +0000341 ObjCPropertyDecl *SuperPDecl = (*S);
Fariborz Jahanianb5e02242008-04-24 19:58:34 +0000342 // Does property in super class has declaration in current class?
Steve Naroff09c47192009-01-09 15:36:25 +0000343 for (ObjCInterfaceDecl::prop_iterator I = IDecl->prop_begin(),
344 E = IDecl->prop_end(); I != E; ++I) {
Fariborz Jahanianb5e02242008-04-24 19:58:34 +0000345 ObjCPropertyDecl *PDecl = (*I);
346 if (SuperPDecl->getIdentifier() == PDecl->getIdentifier())
Douglas Gregor2e1cd422008-11-17 14:58:09 +0000347 DiagnosePropertyMismatch(PDecl, SuperPDecl,
Chris Lattner8ec03f52008-11-24 03:54:41 +0000348 SDecl->getIdentifier());
Fariborz Jahanianb5e02242008-04-24 19:58:34 +0000349 }
350 }
351}
352
Fariborz Jahanianaebf0cb2008-05-02 19:17:30 +0000353/// MergeOneProtocolPropertiesIntoClass - This routine goes thru the list
354/// of properties declared in a protocol and adds them to the list
Fariborz Jahanian1ac2bc42008-12-06 23:03:39 +0000355/// of properties for current class/category if it is not there already.
Fariborz Jahanianaebf0cb2008-05-02 19:17:30 +0000356void
Fariborz Jahanian1ac2bc42008-12-06 23:03:39 +0000357Sema::MergeOneProtocolPropertiesIntoClass(Decl *CDecl,
Chris Lattner8ec03f52008-11-24 03:54:41 +0000358 ObjCProtocolDecl *PDecl) {
Fariborz Jahanian1ac2bc42008-12-06 23:03:39 +0000359 ObjCInterfaceDecl *IDecl = dyn_cast_or_null<ObjCInterfaceDecl>(CDecl);
360 if (!IDecl) {
361 // Category
362 ObjCCategoryDecl *CatDecl = static_cast<ObjCCategoryDecl*>(CDecl);
363 assert (CatDecl && "MergeOneProtocolPropertiesIntoClass");
Steve Naroff09c47192009-01-09 15:36:25 +0000364 for (ObjCProtocolDecl::prop_iterator P = PDecl->prop_begin(),
365 E = PDecl->prop_end(); P != E; ++P) {
Fariborz Jahanian1ac2bc42008-12-06 23:03:39 +0000366 ObjCPropertyDecl *Pr = (*P);
Steve Naroff09c47192009-01-09 15:36:25 +0000367 ObjCCategoryDecl::prop_iterator CP, CE;
Fariborz Jahanian1ac2bc42008-12-06 23:03:39 +0000368 // Is this property already in category's list of properties?
Steve Naroff09c47192009-01-09 15:36:25 +0000369 for (CP = CatDecl->prop_begin(), CE = CatDecl->prop_end();
Fariborz Jahanian1ac2bc42008-12-06 23:03:39 +0000370 CP != CE; ++CP)
371 if ((*CP)->getIdentifier() == Pr->getIdentifier())
372 break;
Fariborz Jahaniana66793e2009-01-09 21:04:52 +0000373 if (CP != CE)
Fariborz Jahanian1ac2bc42008-12-06 23:03:39 +0000374 // Property protocol already exist in class. Diagnose any mismatch.
375 DiagnosePropertyMismatch((*CP), Pr, PDecl->getIdentifier());
376 }
Fariborz Jahanian1ac2bc42008-12-06 23:03:39 +0000377 return;
378 }
Steve Naroff09c47192009-01-09 15:36:25 +0000379 for (ObjCProtocolDecl::prop_iterator P = PDecl->prop_begin(),
380 E = PDecl->prop_end(); P != E; ++P) {
Fariborz Jahanianaebf0cb2008-05-02 19:17:30 +0000381 ObjCPropertyDecl *Pr = (*P);
Steve Naroff09c47192009-01-09 15:36:25 +0000382 ObjCInterfaceDecl::prop_iterator CP, CE;
Fariborz Jahanianaebf0cb2008-05-02 19:17:30 +0000383 // Is this property already in class's list of properties?
Steve Naroff09c47192009-01-09 15:36:25 +0000384 for (CP = IDecl->prop_begin(), CE = IDecl->prop_end();
Fariborz Jahanianaebf0cb2008-05-02 19:17:30 +0000385 CP != CE; ++CP)
386 if ((*CP)->getIdentifier() == Pr->getIdentifier())
387 break;
Fariborz Jahaniana66793e2009-01-09 21:04:52 +0000388 if (CP != CE)
Fariborz Jahanianaebf0cb2008-05-02 19:17:30 +0000389 // Property protocol already exist in class. Diagnose any mismatch.
Chris Lattner8ec03f52008-11-24 03:54:41 +0000390 DiagnosePropertyMismatch((*CP), Pr, PDecl->getIdentifier());
Fariborz Jahanianaebf0cb2008-05-02 19:17:30 +0000391 }
Fariborz Jahanianaebf0cb2008-05-02 19:17:30 +0000392}
393
394/// MergeProtocolPropertiesIntoClass - This routine merges properties
395/// declared in 'MergeItsProtocols' objects (which can be a class or an
Fariborz Jahanian1ac2bc42008-12-06 23:03:39 +0000396/// inherited protocol into the list of properties for class/category 'CDecl'
Fariborz Jahanianaebf0cb2008-05-02 19:17:30 +0000397///
Chris Lattner70f19542009-02-16 21:26:43 +0000398void Sema::MergeProtocolPropertiesIntoClass(Decl *CDecl,
399 DeclTy *MergeItsProtocols) {
Fariborz Jahanianaebf0cb2008-05-02 19:17:30 +0000400 Decl *ClassDecl = static_cast<Decl *>(MergeItsProtocols);
Fariborz Jahanian1ac2bc42008-12-06 23:03:39 +0000401 ObjCInterfaceDecl *IDecl = dyn_cast_or_null<ObjCInterfaceDecl>(CDecl);
402
403 if (!IDecl) {
404 // Category
405 ObjCCategoryDecl *CatDecl = static_cast<ObjCCategoryDecl*>(CDecl);
406 assert (CatDecl && "MergeProtocolPropertiesIntoClass");
407 if (ObjCCategoryDecl *MDecl = dyn_cast<ObjCCategoryDecl>(ClassDecl)) {
408 for (ObjCCategoryDecl::protocol_iterator P = MDecl->protocol_begin(),
409 E = MDecl->protocol_end(); P != E; ++P)
410 // Merge properties of category (*P) into IDECL's
411 MergeOneProtocolPropertiesIntoClass(CatDecl, *P);
412
413 // Go thru the list of protocols for this category and recursively merge
414 // their properties into this class as well.
415 for (ObjCCategoryDecl::protocol_iterator P = CatDecl->protocol_begin(),
416 E = CatDecl->protocol_end(); P != E; ++P)
417 MergeProtocolPropertiesIntoClass(CatDecl, *P);
418 } else {
419 ObjCProtocolDecl *MD = cast<ObjCProtocolDecl>(ClassDecl);
420 for (ObjCProtocolDecl::protocol_iterator P = MD->protocol_begin(),
421 E = MD->protocol_end(); P != E; ++P)
422 MergeOneProtocolPropertiesIntoClass(CatDecl, (*P));
423 }
424 return;
425 }
426
Chris Lattnerb752f282008-07-21 07:06:49 +0000427 if (ObjCInterfaceDecl *MDecl = dyn_cast<ObjCInterfaceDecl>(ClassDecl)) {
Fariborz Jahanianaebf0cb2008-05-02 19:17:30 +0000428 for (ObjCInterfaceDecl::protocol_iterator P = MDecl->protocol_begin(),
429 E = MDecl->protocol_end(); P != E; ++P)
Fariborz Jahanianaebf0cb2008-05-02 19:17:30 +0000430 // Merge properties of class (*P) into IDECL's
Chris Lattnerb752f282008-07-21 07:06:49 +0000431 MergeOneProtocolPropertiesIntoClass(IDecl, *P);
432
Fariborz Jahanianaebf0cb2008-05-02 19:17:30 +0000433 // Go thru the list of protocols for this class and recursively merge
434 // their properties into this class as well.
435 for (ObjCInterfaceDecl::protocol_iterator P = IDecl->protocol_begin(),
436 E = IDecl->protocol_end(); P != E; ++P)
Chris Lattnerb752f282008-07-21 07:06:49 +0000437 MergeProtocolPropertiesIntoClass(IDecl, *P);
438 } else {
Argyrios Kyrtzidise8f0d302008-07-21 09:18:38 +0000439 ObjCProtocolDecl *MD = cast<ObjCProtocolDecl>(ClassDecl);
440 for (ObjCProtocolDecl::protocol_iterator P = MD->protocol_begin(),
441 E = MD->protocol_end(); P != E; ++P)
Fariborz Jahanianaebf0cb2008-05-02 19:17:30 +0000442 MergeOneProtocolPropertiesIntoClass(IDecl, (*P));
Chris Lattnerb752f282008-07-21 07:06:49 +0000443 }
Fariborz Jahanianaebf0cb2008-05-02 19:17:30 +0000444}
445
Fariborz Jahanianb7f95f52009-03-02 19:05:07 +0000446/// DiagnoseClassExtensionDupMethods - Check for duplicate declartation of
447/// a class method in its extension.
448///
449void Sema::DiagnoseClassExtensionDupMethods(ObjCCategoryDecl *CAT,
450 ObjCInterfaceDecl *ID) {
451 if (!ID)
452 return; // Possibly due to previous error
453
454 llvm::DenseMap<Selector, const ObjCMethodDecl*> MethodMap;
455 for (ObjCInterfaceDecl::method_iterator i = ID->meth_begin(),
456 e = ID->meth_end(); i != e; ++i) {
457 ObjCMethodDecl *MD = *i;
458 MethodMap[MD->getSelector()] = MD;
459 }
460
461 if (MethodMap.empty())
462 return;
463 for (ObjCCategoryDecl::method_iterator i = CAT->meth_begin(),
464 e = CAT->meth_end(); i != e; ++i) {
465 ObjCMethodDecl *Method = *i;
466 const ObjCMethodDecl *&PrevMethod = MethodMap[Method->getSelector()];
467 if (PrevMethod && !MatchTwoMethodDeclarations(Method, PrevMethod)) {
468 Diag(Method->getLocation(), diag::err_duplicate_method_decl)
469 << Method->getDeclName();
470 Diag(PrevMethod->getLocation(), diag::note_previous_declaration);
471 }
472 }
473}
474
Chris Lattner4d391482007-12-12 07:09:47 +0000475/// ActOnForwardProtocolDeclaration -
476Action::DeclTy *
477Sema::ActOnForwardProtocolDeclaration(SourceLocation AtProtocolLoc,
Chris Lattner7caeabd2008-07-21 22:17:28 +0000478 const IdentifierLocPair *IdentList,
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +0000479 unsigned NumElts,
480 AttributeList *attrList) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000481 llvm::SmallVector<ObjCProtocolDecl*, 32> Protocols;
Chris Lattner4d391482007-12-12 07:09:47 +0000482
483 for (unsigned i = 0; i != NumElts; ++i) {
Chris Lattner7caeabd2008-07-21 22:17:28 +0000484 IdentifierInfo *Ident = IdentList[i].first;
Chris Lattnerc8581052008-03-16 20:19:15 +0000485 ObjCProtocolDecl *&PDecl = ObjCProtocols[Ident];
Douglas Gregord0434102009-01-09 00:49:46 +0000486 if (PDecl == 0) { // Not already seen?
487 PDecl = ObjCProtocolDecl::Create(Context, CurContext,
488 IdentList[i].second, Ident);
489 // FIXME: PushOnScopeChains?
Douglas Gregor482b77d2009-01-12 23:27:07 +0000490 CurContext->addDecl(PDecl);
Douglas Gregord0434102009-01-09 00:49:46 +0000491 }
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +0000492 if (attrList)
493 ProcessDeclAttributeList(PDecl, attrList);
Chris Lattner4d391482007-12-12 07:09:47 +0000494 Protocols.push_back(PDecl);
495 }
Anders Carlsson15281452008-11-04 16:57:32 +0000496
497 ObjCForwardProtocolDecl *PDecl =
Douglas Gregord0434102009-01-09 00:49:46 +0000498 ObjCForwardProtocolDecl::Create(Context, CurContext, AtProtocolLoc,
Anders Carlsson15281452008-11-04 16:57:32 +0000499 &Protocols[0], Protocols.size());
Douglas Gregor482b77d2009-01-12 23:27:07 +0000500 CurContext->addDecl(PDecl);
Anders Carlsson15281452008-11-04 16:57:32 +0000501 CheckObjCDeclScope(PDecl);
502 return PDecl;
Chris Lattner4d391482007-12-12 07:09:47 +0000503}
504
Chris Lattner7caeabd2008-07-21 22:17:28 +0000505Sema::DeclTy *Sema::
506ActOnStartCategoryInterface(SourceLocation AtInterfaceLoc,
507 IdentifierInfo *ClassName, SourceLocation ClassLoc,
508 IdentifierInfo *CategoryName,
509 SourceLocation CategoryLoc,
Chris Lattner6bd6d0b2008-07-26 04:07:02 +0000510 DeclTy * const *ProtoRefs,
Chris Lattner7caeabd2008-07-21 22:17:28 +0000511 unsigned NumProtoRefs,
512 SourceLocation EndProtoLoc) {
Chris Lattner61f9d412008-03-16 20:34:23 +0000513 ObjCCategoryDecl *CDecl =
Douglas Gregord0434102009-01-09 00:49:46 +0000514 ObjCCategoryDecl::Create(Context, CurContext, AtInterfaceLoc, CategoryName);
515 // FIXME: PushOnScopeChains?
Douglas Gregor482b77d2009-01-12 23:27:07 +0000516 CurContext->addDecl(CDecl);
Chris Lattner70f19542009-02-16 21:26:43 +0000517
518 ObjCInterfaceDecl *IDecl = getObjCInterfaceDecl(ClassName);
Fariborz Jahanian7c453b32008-01-17 20:33:24 +0000519 /// Check that class of this category is already completely declared.
Chris Lattner70f19542009-02-16 21:26:43 +0000520 if (!IDecl || IDecl->isForwardDecl()) {
521 CDecl->setInvalidDecl();
Chris Lattner3c73c412008-11-19 08:23:25 +0000522 Diag(ClassLoc, diag::err_undef_interface) << ClassName;
Chris Lattner70f19542009-02-16 21:26:43 +0000523 return CDecl;
Fariborz Jahanian7c453b32008-01-17 20:33:24 +0000524 }
Chris Lattner4d391482007-12-12 07:09:47 +0000525
Chris Lattner70f19542009-02-16 21:26:43 +0000526 CDecl->setClassInterface(IDecl);
Chris Lattner16b34b42009-02-16 21:30:01 +0000527
528 // If the interface is deprecated, warn about it.
Douglas Gregor48f3bb92009-02-18 21:56:37 +0000529 (void)DiagnoseUseOfDecl(IDecl, ClassLoc);
Chris Lattner70f19542009-02-16 21:26:43 +0000530
531 /// Check for duplicate interface declaration for this category
532 ObjCCategoryDecl *CDeclChain;
533 for (CDeclChain = IDecl->getCategoryList(); CDeclChain;
534 CDeclChain = CDeclChain->getNextClassCategory()) {
535 if (CategoryName && CDeclChain->getIdentifier() == CategoryName) {
536 Diag(CategoryLoc, diag::warn_dup_category_def)
537 << ClassName << CategoryName;
538 Diag(CDeclChain->getLocation(), diag::note_previous_definition);
539 break;
540 }
541 }
542 if (!CDeclChain)
543 CDecl->insertNextClassCategory();
544
Chris Lattner4d391482007-12-12 07:09:47 +0000545 if (NumProtoRefs) {
Chris Lattner38af2de2009-02-20 21:35:13 +0000546 CDecl->setProtocolList((ObjCProtocolDecl**)ProtoRefs, NumProtoRefs,Context);
Chris Lattner6bd6d0b2008-07-26 04:07:02 +0000547 CDecl->setLocEnd(EndProtoLoc);
Chris Lattner4d391482007-12-12 07:09:47 +0000548 }
Anders Carlsson15281452008-11-04 16:57:32 +0000549
550 CheckObjCDeclScope(CDecl);
Chris Lattner4d391482007-12-12 07:09:47 +0000551 return CDecl;
552}
553
554/// ActOnStartCategoryImplementation - Perform semantic checks on the
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000555/// category implementation declaration and build an ObjCCategoryImplDecl
Chris Lattner4d391482007-12-12 07:09:47 +0000556/// object.
557Sema::DeclTy *Sema::ActOnStartCategoryImplementation(
558 SourceLocation AtCatImplLoc,
559 IdentifierInfo *ClassName, SourceLocation ClassLoc,
560 IdentifierInfo *CatName, SourceLocation CatLoc) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000561 ObjCInterfaceDecl *IDecl = getObjCInterfaceDecl(ClassName);
Chris Lattner75c9cae2008-03-16 20:53:07 +0000562 ObjCCategoryImplDecl *CDecl =
Douglas Gregord0434102009-01-09 00:49:46 +0000563 ObjCCategoryImplDecl::Create(Context, CurContext, AtCatImplLoc, CatName,
564 IDecl);
Chris Lattner4d391482007-12-12 07:09:47 +0000565 /// Check that class of this category is already completely declared.
566 if (!IDecl || IDecl->isForwardDecl())
Chris Lattner3c73c412008-11-19 08:23:25 +0000567 Diag(ClassLoc, diag::err_undef_interface) << ClassName;
Chris Lattner4d391482007-12-12 07:09:47 +0000568
Douglas Gregord0434102009-01-09 00:49:46 +0000569 // FIXME: PushOnScopeChains?
Douglas Gregor482b77d2009-01-12 23:27:07 +0000570 CurContext->addDecl(CDecl);
Douglas Gregord0434102009-01-09 00:49:46 +0000571
Chris Lattner4d391482007-12-12 07:09:47 +0000572 /// TODO: Check that CatName, category name, is not used in another
573 // implementation.
Steve Naroffe84a8642008-09-28 14:55:53 +0000574 ObjCCategoryImpls.push_back(CDecl);
Anders Carlsson15281452008-11-04 16:57:32 +0000575
576 CheckObjCDeclScope(CDecl);
Chris Lattner4d391482007-12-12 07:09:47 +0000577 return CDecl;
578}
579
580Sema::DeclTy *Sema::ActOnStartClassImplementation(
581 SourceLocation AtClassImplLoc,
582 IdentifierInfo *ClassName, SourceLocation ClassLoc,
583 IdentifierInfo *SuperClassname,
584 SourceLocation SuperClassLoc) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000585 ObjCInterfaceDecl* IDecl = 0;
Chris Lattner4d391482007-12-12 07:09:47 +0000586 // Check for another declaration kind with the same name.
Douglas Gregor47b9a1c2009-02-04 17:27:36 +0000587 NamedDecl *PrevDecl = LookupName(TUScope, ClassName, LookupOrdinaryName);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000588 if (PrevDecl && !isa<ObjCInterfaceDecl>(PrevDecl)) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000589 Diag(ClassLoc, diag::err_redefinition_different_kind) << ClassName;
Chris Lattner5f4a6822008-11-23 23:12:31 +0000590 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Chris Lattner1829a6d2009-02-23 22:00:08 +0000591 } else {
Chris Lattner4d391482007-12-12 07:09:47 +0000592 // Is there an interface declaration of this class; if not, warn!
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000593 IDecl = dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl);
Chris Lattner4d391482007-12-12 07:09:47 +0000594 if (!IDecl)
Chris Lattner3c73c412008-11-19 08:23:25 +0000595 Diag(ClassLoc, diag::warn_undef_interface) << ClassName;
Chris Lattner4d391482007-12-12 07:09:47 +0000596 }
597
598 // Check that super class name is valid class name
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000599 ObjCInterfaceDecl* SDecl = 0;
Chris Lattner4d391482007-12-12 07:09:47 +0000600 if (SuperClassname) {
601 // Check if a different kind of symbol declared in this scope.
Douglas Gregor4c921ae2009-01-30 01:04:22 +0000602 PrevDecl = LookupName(TUScope, SuperClassname, LookupOrdinaryName);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000603 if (PrevDecl && !isa<ObjCInterfaceDecl>(PrevDecl)) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000604 Diag(SuperClassLoc, diag::err_redefinition_different_kind)
605 << SuperClassname;
Chris Lattner5f4a6822008-11-23 23:12:31 +0000606 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Chris Lattner3c73c412008-11-19 08:23:25 +0000607 } else {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000608 SDecl = dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl);
Chris Lattner4d391482007-12-12 07:09:47 +0000609 if (!SDecl)
Chris Lattner3c73c412008-11-19 08:23:25 +0000610 Diag(SuperClassLoc, diag::err_undef_superclass)
611 << SuperClassname << ClassName;
Chris Lattner4d391482007-12-12 07:09:47 +0000612 else if (IDecl && IDecl->getSuperClass() != SDecl) {
613 // This implementation and its interface do not have the same
614 // super class.
Chris Lattner3c73c412008-11-19 08:23:25 +0000615 Diag(SuperClassLoc, diag::err_conflicting_super_class)
Chris Lattner08631c52008-11-23 21:45:46 +0000616 << SDecl->getDeclName();
Chris Lattner5f4a6822008-11-23 23:12:31 +0000617 Diag(SDecl->getLocation(), diag::note_previous_definition);
Chris Lattner4d391482007-12-12 07:09:47 +0000618 }
619 }
620 }
621
622 if (!IDecl) {
623 // Legacy case of @implementation with no corresponding @interface.
624 // Build, chain & install the interface decl into the identifier.
Daniel Dunbarf6414922008-08-20 18:02:42 +0000625
626 // FIXME: Do we support attributes on the @implementation? If so
627 // we should copy them over.
Douglas Gregord0434102009-01-09 00:49:46 +0000628 IDecl = ObjCInterfaceDecl::Create(Context, CurContext, AtClassImplLoc,
629 ClassName, ClassLoc, false, true);
Steve Naroff31102512008-04-02 18:30:49 +0000630 ObjCInterfaceDecls[ClassName] = IDecl;
Chris Lattner4d391482007-12-12 07:09:47 +0000631 IDecl->setSuperClass(SDecl);
632 IDecl->setLocEnd(ClassLoc);
633
Douglas Gregord0434102009-01-09 00:49:46 +0000634 // FIXME: PushOnScopeChains?
Douglas Gregor482b77d2009-01-12 23:27:07 +0000635 CurContext->addDecl(IDecl);
Chris Lattner4d391482007-12-12 07:09:47 +0000636 // Remember that this needs to be removed when the scope is popped.
637 TUScope->AddDecl(IDecl);
638 }
639
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000640 ObjCImplementationDecl* IMPDecl =
Douglas Gregord0434102009-01-09 00:49:46 +0000641 ObjCImplementationDecl::Create(Context, CurContext, AtClassImplLoc,
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000642 IDecl, SDecl);
Chris Lattner4d391482007-12-12 07:09:47 +0000643
Douglas Gregord0434102009-01-09 00:49:46 +0000644 // FIXME: PushOnScopeChains?
Douglas Gregor482b77d2009-01-12 23:27:07 +0000645 CurContext->addDecl(IMPDecl);
Douglas Gregord0434102009-01-09 00:49:46 +0000646
Anders Carlsson15281452008-11-04 16:57:32 +0000647 if (CheckObjCDeclScope(IMPDecl))
648 return IMPDecl;
649
Chris Lattner4d391482007-12-12 07:09:47 +0000650 // Check that there is no duplicate implementation of this class.
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000651 if (ObjCImplementations[ClassName])
Chris Lattner75c9cae2008-03-16 20:53:07 +0000652 // FIXME: Don't leak everything!
Chris Lattner3c73c412008-11-19 08:23:25 +0000653 Diag(ClassLoc, diag::err_dup_implementation_class) << ClassName;
Chris Lattner4d391482007-12-12 07:09:47 +0000654 else // add it to the list.
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000655 ObjCImplementations[ClassName] = IMPDecl;
Chris Lattner4d391482007-12-12 07:09:47 +0000656 return IMPDecl;
657}
658
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000659void Sema::CheckImplementationIvars(ObjCImplementationDecl *ImpDecl,
660 ObjCIvarDecl **ivars, unsigned numIvars,
Chris Lattner4d391482007-12-12 07:09:47 +0000661 SourceLocation RBrace) {
662 assert(ImpDecl && "missing implementation decl");
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000663 ObjCInterfaceDecl* IDecl = ImpDecl->getClassInterface();
Chris Lattner4d391482007-12-12 07:09:47 +0000664 if (!IDecl)
665 return;
666 /// Check case of non-existing @interface decl.
667 /// (legacy objective-c @implementation decl without an @interface decl).
668 /// Add implementations's ivar to the synthesize class's ivar list.
669 if (IDecl->ImplicitInterfaceDecl()) {
Chris Lattner38af2de2009-02-20 21:35:13 +0000670 IDecl->setIVarList(ivars, numIvars, Context);
671 IDecl->setLocEnd(RBrace);
Chris Lattner4d391482007-12-12 07:09:47 +0000672 return;
673 }
674 // If implementation has empty ivar list, just return.
675 if (numIvars == 0)
676 return;
677
678 assert(ivars && "missing @implementation ivars");
679
680 // Check interface's Ivar list against those in the implementation.
681 // names and types must match.
682 //
Chris Lattner4d391482007-12-12 07:09:47 +0000683 unsigned j = 0;
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000684 ObjCInterfaceDecl::ivar_iterator
Chris Lattner4c525092007-12-12 17:58:05 +0000685 IVI = IDecl->ivar_begin(), IVE = IDecl->ivar_end();
686 for (; numIvars > 0 && IVI != IVE; ++IVI) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000687 ObjCIvarDecl* ImplIvar = ivars[j++];
688 ObjCIvarDecl* ClsIvar = *IVI;
Chris Lattner4d391482007-12-12 07:09:47 +0000689 assert (ImplIvar && "missing implementation ivar");
690 assert (ClsIvar && "missing class ivar");
Chris Lattner1b63eef2008-07-27 00:05:05 +0000691 if (Context.getCanonicalType(ImplIvar->getType()) !=
692 Context.getCanonicalType(ClsIvar->getType())) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000693 Diag(ImplIvar->getLocation(), diag::err_conflicting_ivar_type)
Chris Lattner08631c52008-11-23 21:45:46 +0000694 << ImplIvar->getIdentifier()
695 << ImplIvar->getType() << ClsIvar->getType();
Chris Lattner5f4a6822008-11-23 23:12:31 +0000696 Diag(ClsIvar->getLocation(), diag::note_previous_definition);
Chris Lattner4d391482007-12-12 07:09:47 +0000697 }
698 // TODO: Two mismatched (unequal width) Ivar bitfields should be diagnosed
699 // as error.
700 else if (ImplIvar->getIdentifier() != ClsIvar->getIdentifier()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000701 Diag(ImplIvar->getLocation(), diag::err_conflicting_ivar_name)
Chris Lattner08631c52008-11-23 21:45:46 +0000702 << ImplIvar->getIdentifier() << ClsIvar->getIdentifier();
Chris Lattner5f4a6822008-11-23 23:12:31 +0000703 Diag(ClsIvar->getLocation(), diag::note_previous_definition);
Chris Lattner609e4c72007-12-12 18:11:49 +0000704 return;
Chris Lattner4d391482007-12-12 07:09:47 +0000705 }
706 --numIvars;
Chris Lattner4d391482007-12-12 07:09:47 +0000707 }
Chris Lattner609e4c72007-12-12 18:11:49 +0000708
709 if (numIvars > 0)
Chris Lattner0e391052007-12-12 18:19:52 +0000710 Diag(ivars[j]->getLocation(), diag::err_inconsistant_ivar_count);
Chris Lattner609e4c72007-12-12 18:11:49 +0000711 else if (IVI != IVE)
Chris Lattner0e391052007-12-12 18:19:52 +0000712 Diag((*IVI)->getLocation(), diag::err_inconsistant_ivar_count);
Chris Lattner4d391482007-12-12 07:09:47 +0000713}
714
Steve Naroff3c2eb662008-02-10 21:38:56 +0000715void Sema::WarnUndefinedMethod(SourceLocation ImpLoc, ObjCMethodDecl *method,
716 bool &IncompleteImpl) {
717 if (!IncompleteImpl) {
718 Diag(ImpLoc, diag::warn_incomplete_impl);
719 IncompleteImpl = true;
720 }
Chris Lattner08631c52008-11-23 21:45:46 +0000721 Diag(ImpLoc, diag::warn_undef_method_impl) << method->getDeclName();
Steve Naroff3c2eb662008-02-10 21:38:56 +0000722}
723
Fariborz Jahanian8daab972008-12-05 18:18:52 +0000724void Sema::WarnConflictingTypedMethods(ObjCMethodDecl *ImpMethodDecl,
725 ObjCMethodDecl *IntfMethodDecl) {
726 bool err = false;
727 QualType ImpMethodQType =
728 Context.getCanonicalType(ImpMethodDecl->getResultType());
729 QualType IntfMethodQType =
730 Context.getCanonicalType(IntfMethodDecl->getResultType());
731 if (!Context.typesAreCompatible(IntfMethodQType, ImpMethodQType))
732 err = true;
733 else for (ObjCMethodDecl::param_iterator IM=ImpMethodDecl->param_begin(),
734 IF=IntfMethodDecl->param_begin(),
735 EM=ImpMethodDecl->param_end(); IM!=EM; ++IM, IF++) {
736 ImpMethodQType = Context.getCanonicalType((*IM)->getType());
737 IntfMethodQType = Context.getCanonicalType((*IF)->getType());
738 if (!Context.typesAreCompatible(IntfMethodQType, ImpMethodQType)) {
739 err = true;
740 break;
741 }
742 }
743 if (err) {
744 Diag(ImpMethodDecl->getLocation(), diag::warn_conflicting_types)
745 << ImpMethodDecl->getDeclName();
746 Diag(IntfMethodDecl->getLocation(), diag::note_previous_definition);
747 }
748}
749
Fariborz Jahaniand1fa6442009-01-12 19:55:42 +0000750/// isPropertyReadonly - Return true if property is readonly, by searching
751/// for the property in the class and in its categories and implementations
752///
753bool Sema::isPropertyReadonly(ObjCPropertyDecl *PDecl,
Steve Naroff22dc0b02009-02-26 19:11:32 +0000754 ObjCInterfaceDecl *IDecl) {
Fariborz Jahaniand1fa6442009-01-12 19:55:42 +0000755 // by far the most common case.
756 if (!PDecl->isReadOnly())
757 return false;
758 // Even if property is ready only, if interface has a user defined setter,
759 // it is not considered read only.
760 if (IDecl->getInstanceMethod(PDecl->getSetterName()))
761 return false;
762
763 // Main class has the property as 'readonly'. Must search
764 // through the category list to see if the property's
765 // attribute has been over-ridden to 'readwrite'.
766 for (ObjCCategoryDecl *Category = IDecl->getCategoryList();
767 Category; Category = Category->getNextClassCategory()) {
768 // Even if property is ready only, if a category has a user defined setter,
769 // it is not considered read only.
770 if (Category->getInstanceMethod(PDecl->getSetterName()))
771 return false;
772 ObjCPropertyDecl *P =
773 Category->FindPropertyDeclaration(PDecl->getIdentifier());
774 if (P && !P->isReadOnly())
775 return false;
776 }
777
778 // Also, check for definition of a setter method in the implementation if
779 // all else failed.
780 if (ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(CurContext)) {
781 if (ObjCImplementationDecl *IMD =
782 dyn_cast<ObjCImplementationDecl>(OMD->getDeclContext())) {
783 if (IMD->getInstanceMethod(PDecl->getSetterName()))
784 return false;
785 }
786 else if (ObjCCategoryImplDecl *CIMD =
787 dyn_cast<ObjCCategoryImplDecl>(OMD->getDeclContext())) {
788 if (CIMD->getInstanceMethod(PDecl->getSetterName()))
789 return false;
790 }
791 }
Steve Naroff22dc0b02009-02-26 19:11:32 +0000792 // Lastly, look through the implementation (if one is in scope).
793 if (ObjCImplementationDecl *ImpDecl =
794 ObjCImplementations[IDecl->getIdentifier()])
795 if (ImpDecl->getInstanceMethod(PDecl->getSetterName()))
796 return false;
Fariborz Jahaniand1fa6442009-01-12 19:55:42 +0000797 return true;
798}
799
Daniel Dunbarb20ef3e2008-08-27 05:40:03 +0000800/// FIXME: Type hierarchies in Objective-C can be deep. We could most
801/// likely improve the efficiency of selector lookups and type
802/// checking by associating with each protocol / interface / category
803/// the flattened instance tables. If we used an immutable set to keep
804/// the table then it wouldn't add significant memory cost and it
805/// would be handy for lookups.
806
Steve Naroffefe7f362008-02-08 22:06:17 +0000807/// CheckProtocolMethodDefs - This routine checks unimplemented methods
Chris Lattner4d391482007-12-12 07:09:47 +0000808/// Declared in protocol, and those referenced by it.
Steve Naroffefe7f362008-02-08 22:06:17 +0000809void Sema::CheckProtocolMethodDefs(SourceLocation ImpLoc,
810 ObjCProtocolDecl *PDecl,
Chris Lattner4d391482007-12-12 07:09:47 +0000811 bool& IncompleteImpl,
Steve Naroffefe7f362008-02-08 22:06:17 +0000812 const llvm::DenseSet<Selector> &InsMap,
Daniel Dunbar7ad1b1f2008-09-04 20:01:15 +0000813 const llvm::DenseSet<Selector> &ClsMap,
814 ObjCInterfaceDecl *IDecl) {
815 ObjCInterfaceDecl *Super = IDecl->getSuperClass();
816
817 // If a method lookup fails locally we still need to look and see if
818 // the method was implemented by a base class or an inherited
819 // protocol. This lookup is slow, but occurs rarely in correct code
820 // and otherwise would terminate in a warning.
821
Chris Lattner4d391482007-12-12 07:09:47 +0000822 // check unimplemented instance methods.
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000823 for (ObjCProtocolDecl::instmeth_iterator I = PDecl->instmeth_begin(),
Steve Naroff58dbdeb2007-12-14 23:37:57 +0000824 E = PDecl->instmeth_end(); I != E; ++I) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000825 ObjCMethodDecl *method = *I;
Daniel Dunbar7ad1b1f2008-09-04 20:01:15 +0000826 if (method->getImplementationControl() != ObjCMethodDecl::Optional &&
Fariborz Jahaniane793a6e2008-11-24 22:16:00 +0000827 !method->isSynthesized() && !InsMap.count(method->getSelector()) &&
Daniel Dunbar7ad1b1f2008-09-04 20:01:15 +0000828 (!Super || !Super->lookupInstanceMethod(method->getSelector())))
Steve Naroff3c2eb662008-02-10 21:38:56 +0000829 WarnUndefinedMethod(ImpLoc, method, IncompleteImpl);
Chris Lattner4d391482007-12-12 07:09:47 +0000830 }
831 // check unimplemented class methods
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000832 for (ObjCProtocolDecl::classmeth_iterator I = PDecl->classmeth_begin(),
Steve Naroff58dbdeb2007-12-14 23:37:57 +0000833 E = PDecl->classmeth_end(); I != E; ++I) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000834 ObjCMethodDecl *method = *I;
Daniel Dunbar7ad1b1f2008-09-04 20:01:15 +0000835 if (method->getImplementationControl() != ObjCMethodDecl::Optional &&
836 !ClsMap.count(method->getSelector()) &&
837 (!Super || !Super->lookupClassMethod(method->getSelector())))
Steve Naroff3c2eb662008-02-10 21:38:56 +0000838 WarnUndefinedMethod(ImpLoc, method, IncompleteImpl);
Steve Naroff58dbdeb2007-12-14 23:37:57 +0000839 }
Chris Lattner780f3292008-07-21 21:32:27 +0000840 // Check on this protocols's referenced protocols, recursively.
841 for (ObjCProtocolDecl::protocol_iterator PI = PDecl->protocol_begin(),
842 E = PDecl->protocol_end(); PI != E; ++PI)
Daniel Dunbar7ad1b1f2008-09-04 20:01:15 +0000843 CheckProtocolMethodDefs(ImpLoc, *PI, IncompleteImpl, InsMap, ClsMap, IDecl);
Chris Lattner4d391482007-12-12 07:09:47 +0000844}
845
Chris Lattnercddc8882009-03-01 00:56:52 +0000846void Sema::ImplMethodsVsClassMethods(ObjCImplDecl* IMPDecl,
847 ObjCContainerDecl* CDecl,
848 bool IncompleteImpl) {
Chris Lattner4d391482007-12-12 07:09:47 +0000849 llvm::DenseSet<Selector> InsMap;
850 // Check and see if instance methods in class interface have been
851 // implemented in the implementation class.
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000852 for (ObjCImplementationDecl::instmeth_iterator I = IMPDecl->instmeth_begin(),
Chris Lattner4c525092007-12-12 17:58:05 +0000853 E = IMPDecl->instmeth_end(); I != E; ++I)
854 InsMap.insert((*I)->getSelector());
Chris Lattner4d391482007-12-12 07:09:47 +0000855
Chris Lattnercddc8882009-03-01 00:56:52 +0000856 for (ObjCInterfaceDecl::instmeth_iterator I = CDecl->instmeth_begin(),
857 E = CDecl->instmeth_end(); I != E; ++I) {
Chris Lattnerbdbde4d2009-02-16 19:25:52 +0000858 if (!(*I)->isSynthesized() && !InsMap.count((*I)->getSelector())) {
Steve Naroff3c2eb662008-02-10 21:38:56 +0000859 WarnUndefinedMethod(IMPDecl->getLocation(), *I, IncompleteImpl);
Chris Lattnerbdbde4d2009-02-16 19:25:52 +0000860 continue;
Fariborz Jahaniande739412008-12-05 01:35:25 +0000861 }
Chris Lattnerbdbde4d2009-02-16 19:25:52 +0000862
863 ObjCMethodDecl *ImpMethodDecl =
864 IMPDecl->getInstanceMethod((*I)->getSelector());
865 ObjCMethodDecl *IntfMethodDecl =
Chris Lattnercddc8882009-03-01 00:56:52 +0000866 CDecl->getInstanceMethod((*I)->getSelector());
Chris Lattnerbdbde4d2009-02-16 19:25:52 +0000867 assert(IntfMethodDecl &&
868 "IntfMethodDecl is null in ImplMethodsVsClassMethods");
869 // ImpMethodDecl may be null as in a @dynamic property.
870 if (ImpMethodDecl)
871 WarnConflictingTypedMethods(ImpMethodDecl, IntfMethodDecl);
872 }
Chris Lattner4c525092007-12-12 17:58:05 +0000873
Chris Lattner4d391482007-12-12 07:09:47 +0000874 llvm::DenseSet<Selector> ClsMap;
875 // Check and see if class methods in class interface have been
876 // implemented in the implementation class.
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000877 for (ObjCImplementationDecl::classmeth_iterator I =IMPDecl->classmeth_begin(),
Chris Lattner4c525092007-12-12 17:58:05 +0000878 E = IMPDecl->classmeth_end(); I != E; ++I)
879 ClsMap.insert((*I)->getSelector());
Chris Lattner4d391482007-12-12 07:09:47 +0000880
Chris Lattnercddc8882009-03-01 00:56:52 +0000881 for (ObjCInterfaceDecl::classmeth_iterator I = CDecl->classmeth_begin(),
882 E = CDecl->classmeth_end(); I != E; ++I)
Steve Naroff3c2eb662008-02-10 21:38:56 +0000883 if (!ClsMap.count((*I)->getSelector()))
884 WarnUndefinedMethod(IMPDecl->getLocation(), *I, IncompleteImpl);
Fariborz Jahanian8daab972008-12-05 18:18:52 +0000885 else {
886 ObjCMethodDecl *ImpMethodDecl =
887 IMPDecl->getClassMethod((*I)->getSelector());
888 ObjCMethodDecl *IntfMethodDecl =
Chris Lattnercddc8882009-03-01 00:56:52 +0000889 CDecl->getClassMethod((*I)->getSelector());
Fariborz Jahanian8daab972008-12-05 18:18:52 +0000890 WarnConflictingTypedMethods(ImpMethodDecl, IntfMethodDecl);
891 }
892
Chris Lattner4d391482007-12-12 07:09:47 +0000893
894 // Check the protocol list for unimplemented methods in the @implementation
895 // class.
Chris Lattnercddc8882009-03-01 00:56:52 +0000896 if (ObjCInterfaceDecl *I = dyn_cast<ObjCInterfaceDecl> (CDecl)) {
897 for (ObjCCategoryDecl::protocol_iterator PI = I->protocol_begin(),
898 E = I->protocol_end(); PI != E; ++PI)
899 CheckProtocolMethodDefs(IMPDecl->getLocation(), *PI, IncompleteImpl,
900 InsMap, ClsMap, I);
901 // Check class extensions (unnamed categories)
902 for (ObjCCategoryDecl *Categories = I->getCategoryList();
903 Categories; Categories = Categories->getNextClassCategory()) {
904 if (!Categories->getIdentifier()) {
905 ImplMethodsVsClassMethods(IMPDecl, Categories, IncompleteImpl);
906 break;
907 }
Fariborz Jahanian8daab972008-12-05 18:18:52 +0000908 }
Chris Lattnercddc8882009-03-01 00:56:52 +0000909 } else if (ObjCCategoryDecl *C = dyn_cast<ObjCCategoryDecl>(CDecl)) {
910 for (ObjCCategoryDecl::protocol_iterator PI = C->protocol_begin(),
911 E = C->protocol_end(); PI != E; ++PI)
912 CheckProtocolMethodDefs(IMPDecl->getLocation(), *PI, IncompleteImpl,
913 InsMap, ClsMap, C->getClassInterface());
914 } else
915 assert(false && "invalid ObjCContainerDecl type.");
Chris Lattner4d391482007-12-12 07:09:47 +0000916}
917
918/// ActOnForwardClassDeclaration -
919Action::DeclTy *
920Sema::ActOnForwardClassDeclaration(SourceLocation AtClassLoc,
Chris Lattnerbdbde4d2009-02-16 19:25:52 +0000921 IdentifierInfo **IdentList,
922 unsigned NumElts) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000923 llvm::SmallVector<ObjCInterfaceDecl*, 32> Interfaces;
Chris Lattner4d391482007-12-12 07:09:47 +0000924
925 for (unsigned i = 0; i != NumElts; ++i) {
926 // Check for another declaration kind with the same name.
Douglas Gregor47b9a1c2009-02-04 17:27:36 +0000927 NamedDecl *PrevDecl = LookupName(TUScope, IdentList[i], LookupOrdinaryName);
Douglas Gregorf57172b2008-12-08 18:40:42 +0000928 if (PrevDecl && PrevDecl->isTemplateParameter()) {
Douglas Gregor72c3f312008-12-05 18:15:24 +0000929 // Maybe we will complain about the shadowed template parameter.
930 DiagnoseTemplateParameterShadow(AtClassLoc, PrevDecl);
931 // Just pretend that we didn't see the previous declaration.
932 PrevDecl = 0;
933 }
934
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000935 if (PrevDecl && !isa<ObjCInterfaceDecl>(PrevDecl)) {
Steve Naroffc7333882008-06-05 22:57:10 +0000936 // GCC apparently allows the following idiom:
937 //
938 // typedef NSObject < XCElementTogglerP > XCElementToggler;
939 // @class XCElementToggler;
940 //
941 // FIXME: Make an extension?
942 TypedefDecl *TDD = dyn_cast<TypedefDecl>(PrevDecl);
943 if (!TDD || !isa<ObjCInterfaceType>(TDD->getUnderlyingType())) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000944 Diag(AtClassLoc, diag::err_redefinition_different_kind) << IdentList[i];
Chris Lattner5f4a6822008-11-23 23:12:31 +0000945 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Steve Naroffc7333882008-06-05 22:57:10 +0000946 }
Chris Lattner4d391482007-12-12 07:09:47 +0000947 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000948 ObjCInterfaceDecl *IDecl = dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl);
Chris Lattner4d391482007-12-12 07:09:47 +0000949 if (!IDecl) { // Not already seen? Make a forward decl.
Douglas Gregord0434102009-01-09 00:49:46 +0000950 IDecl = ObjCInterfaceDecl::Create(Context, CurContext, AtClassLoc,
951 IdentList[i], SourceLocation(), true);
Steve Naroff31102512008-04-02 18:30:49 +0000952 ObjCInterfaceDecls[IdentList[i]] = IDecl;
Chris Lattner4d391482007-12-12 07:09:47 +0000953
Douglas Gregord0434102009-01-09 00:49:46 +0000954 // FIXME: PushOnScopeChains?
Douglas Gregor482b77d2009-01-12 23:27:07 +0000955 CurContext->addDecl(IDecl);
Chris Lattner4d391482007-12-12 07:09:47 +0000956 // Remember that this needs to be removed when the scope is popped.
957 TUScope->AddDecl(IDecl);
958 }
959
960 Interfaces.push_back(IDecl);
961 }
962
Douglas Gregord0434102009-01-09 00:49:46 +0000963 ObjCClassDecl *CDecl = ObjCClassDecl::Create(Context, CurContext, AtClassLoc,
Anders Carlsson15281452008-11-04 16:57:32 +0000964 &Interfaces[0],
965 Interfaces.size());
Douglas Gregor482b77d2009-01-12 23:27:07 +0000966 CurContext->addDecl(CDecl);
Anders Carlsson15281452008-11-04 16:57:32 +0000967 CheckObjCDeclScope(CDecl);
968 return CDecl;
Chris Lattner4d391482007-12-12 07:09:47 +0000969}
970
971
972/// MatchTwoMethodDeclarations - Checks that two methods have matching type and
973/// returns true, or false, accordingly.
974/// TODO: Handle protocol list; such as id<p1,p2> in type comparisons
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000975bool Sema::MatchTwoMethodDeclarations(const ObjCMethodDecl *Method,
Steve Narofffe6b0dc2008-10-21 10:37:50 +0000976 const ObjCMethodDecl *PrevMethod,
977 bool matchBasedOnSizeAndAlignment) {
978 QualType T1 = Context.getCanonicalType(Method->getResultType());
979 QualType T2 = Context.getCanonicalType(PrevMethod->getResultType());
980
981 if (T1 != T2) {
982 // The result types are different.
983 if (!matchBasedOnSizeAndAlignment)
Chris Lattner4d391482007-12-12 07:09:47 +0000984 return false;
Steve Narofffe6b0dc2008-10-21 10:37:50 +0000985 // Incomplete types don't have a size and alignment.
986 if (T1->isIncompleteType() || T2->isIncompleteType())
987 return false;
988 // Check is based on size and alignment.
989 if (Context.getTypeInfo(T1) != Context.getTypeInfo(T2))
990 return false;
991 }
Chris Lattner89951a82009-02-20 18:43:26 +0000992
993 ObjCMethodDecl::param_iterator ParamI = Method->param_begin(),
994 E = Method->param_end();
995 ObjCMethodDecl::param_iterator PrevI = PrevMethod->param_begin();
996
997 for (; ParamI != E; ++ParamI, ++PrevI) {
998 assert(PrevI != PrevMethod->param_end() && "Param mismatch");
999 T1 = Context.getCanonicalType((*ParamI)->getType());
1000 T2 = Context.getCanonicalType((*PrevI)->getType());
Steve Narofffe6b0dc2008-10-21 10:37:50 +00001001 if (T1 != T2) {
1002 // The result types are different.
1003 if (!matchBasedOnSizeAndAlignment)
1004 return false;
1005 // Incomplete types don't have a size and alignment.
1006 if (T1->isIncompleteType() || T2->isIncompleteType())
1007 return false;
1008 // Check is based on size and alignment.
1009 if (Context.getTypeInfo(T1) != Context.getTypeInfo(T2))
1010 return false;
1011 }
Chris Lattner4d391482007-12-12 07:09:47 +00001012 }
1013 return true;
1014}
1015
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001016void Sema::AddInstanceMethodToGlobalPool(ObjCMethodDecl *Method) {
1017 ObjCMethodList &FirstMethod = InstanceMethodPool[Method->getSelector()];
Chris Lattner4d391482007-12-12 07:09:47 +00001018 if (!FirstMethod.Method) {
1019 // Haven't seen a method with this selector name yet - add it.
1020 FirstMethod.Method = Method;
1021 FirstMethod.Next = 0;
1022 } else {
1023 // We've seen a method with this name, now check the type signature(s).
1024 bool match = MatchTwoMethodDeclarations(Method, FirstMethod.Method);
1025
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001026 for (ObjCMethodList *Next = FirstMethod.Next; !match && Next;
Chris Lattner4d391482007-12-12 07:09:47 +00001027 Next = Next->Next)
1028 match = MatchTwoMethodDeclarations(Method, Next->Method);
1029
1030 if (!match) {
1031 // We have a new signature for an existing method - add it.
1032 // This is extremely rare. Only 1% of Cocoa selectors are "overloaded".
Chris Lattner077bf5e2008-11-24 03:33:13 +00001033 FirstMethod.Next = new ObjCMethodList(Method, FirstMethod.Next);;
Chris Lattner4d391482007-12-12 07:09:47 +00001034 }
1035 }
1036}
1037
Steve Naroff6f5f41c2008-10-21 10:50:19 +00001038// FIXME: Finish implementing -Wno-strict-selector-match.
Steve Naroff037cda52008-09-30 14:38:43 +00001039ObjCMethodDecl *Sema::LookupInstanceMethodInGlobalPool(Selector Sel,
1040 SourceRange R) {
1041 ObjCMethodList &MethList = InstanceMethodPool[Sel];
Steve Narofffe6b0dc2008-10-21 10:37:50 +00001042 bool issueWarning = false;
Steve Naroff037cda52008-09-30 14:38:43 +00001043
1044 if (MethList.Method && MethList.Next) {
Steve Narofffe6b0dc2008-10-21 10:37:50 +00001045 for (ObjCMethodList *Next = MethList.Next; Next; Next = Next->Next)
1046 // This checks if the methods differ by size & alignment.
1047 if (!MatchTwoMethodDeclarations(MethList.Method, Next->Method, true))
1048 issueWarning = true;
1049 }
1050 if (issueWarning && (MethList.Method && MethList.Next)) {
Chris Lattner077bf5e2008-11-24 03:33:13 +00001051 Diag(R.getBegin(), diag::warn_multiple_method_decl) << Sel << R;
Chris Lattner1326a3d2008-11-23 23:26:13 +00001052 Diag(MethList.Method->getLocStart(), diag::note_using_decl)
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00001053 << MethList.Method->getSourceRange();
Steve Naroff037cda52008-09-30 14:38:43 +00001054 for (ObjCMethodList *Next = MethList.Next; Next; Next = Next->Next)
Chris Lattner1326a3d2008-11-23 23:26:13 +00001055 Diag(Next->Method->getLocStart(), diag::note_also_found_decl)
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00001056 << Next->Method->getSourceRange();
Steve Naroff037cda52008-09-30 14:38:43 +00001057 }
1058 return MethList.Method;
1059}
1060
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001061void Sema::AddFactoryMethodToGlobalPool(ObjCMethodDecl *Method) {
1062 ObjCMethodList &FirstMethod = FactoryMethodPool[Method->getSelector()];
Chris Lattner4d391482007-12-12 07:09:47 +00001063 if (!FirstMethod.Method) {
1064 // Haven't seen a method with this selector name yet - add it.
1065 FirstMethod.Method = Method;
1066 FirstMethod.Next = 0;
1067 } else {
1068 // We've seen a method with this name, now check the type signature(s).
1069 bool match = MatchTwoMethodDeclarations(Method, FirstMethod.Method);
1070
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001071 for (ObjCMethodList *Next = FirstMethod.Next; !match && Next;
Chris Lattner4d391482007-12-12 07:09:47 +00001072 Next = Next->Next)
1073 match = MatchTwoMethodDeclarations(Method, Next->Method);
1074
1075 if (!match) {
1076 // We have a new signature for an existing method - add it.
1077 // This is extremely rare. Only 1% of Cocoa selectors are "overloaded".
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001078 struct ObjCMethodList *OMI = new ObjCMethodList(Method, FirstMethod.Next);
Chris Lattner4d391482007-12-12 07:09:47 +00001079 FirstMethod.Next = OMI;
1080 }
1081 }
1082}
1083
Steve Naroff0701bbb2009-01-08 17:28:14 +00001084/// ProcessPropertyDecl - Make sure that any user-defined setter/getter methods
1085/// have the property type and issue diagnostics if they don't.
1086/// Also synthesize a getter/setter method if none exist (and update the
1087/// appropriate lookup tables. FIXME: Should reconsider if adding synthesized
1088/// methods is the "right" thing to do.
1089void Sema::ProcessPropertyDecl(ObjCPropertyDecl *property,
1090 ObjCContainerDecl *CD) {
1091 ObjCMethodDecl *GetterMethod, *SetterMethod;
1092
1093 GetterMethod = CD->getInstanceMethod(property->getGetterName());
1094 SetterMethod = CD->getInstanceMethod(property->getSetterName());
1095
Fariborz Jahanianf3cd3fd2008-12-02 18:39:49 +00001096 if (GetterMethod &&
Fariborz Jahanian196d0ed2008-12-06 21:48:16 +00001097 GetterMethod->getResultType() != property->getType()) {
Fariborz Jahanianf3cd3fd2008-12-02 18:39:49 +00001098 Diag(property->getLocation(),
1099 diag::err_accessor_property_type_mismatch)
1100 << property->getDeclName()
1101 << GetterMethod->getSelector().getAsIdentifierInfo();
Fariborz Jahanian196d0ed2008-12-06 21:48:16 +00001102 Diag(GetterMethod->getLocation(), diag::note_declared_at);
1103 }
Fariborz Jahanianf3cd3fd2008-12-02 18:39:49 +00001104
1105 if (SetterMethod) {
Fariborz Jahanian5dd41292008-12-06 23:12:49 +00001106 if (Context.getCanonicalType(SetterMethod->getResultType())
1107 != Context.VoidTy)
Fariborz Jahanianf3cd3fd2008-12-02 18:39:49 +00001108 Diag(SetterMethod->getLocation(), diag::err_setter_type_void);
Chris Lattner89951a82009-02-20 18:43:26 +00001109 if (SetterMethod->param_size() != 1 ||
1110 ((*SetterMethod->param_begin())->getType() != property->getType())) {
Fariborz Jahanianf3cd3fd2008-12-02 18:39:49 +00001111 Diag(property->getLocation(),
1112 diag::err_accessor_property_type_mismatch)
1113 << property->getDeclName()
1114 << SetterMethod->getSelector().getAsIdentifierInfo();
Fariborz Jahanian196d0ed2008-12-06 21:48:16 +00001115 Diag(SetterMethod->getLocation(), diag::note_declared_at);
1116 }
Fariborz Jahanianf3cd3fd2008-12-02 18:39:49 +00001117 }
Steve Naroff0701bbb2009-01-08 17:28:14 +00001118
1119 // Synthesize getter/setter methods if none exist.
Steve Naroff92f863b2009-01-08 20:15:03 +00001120 // Find the default getter and if one not found, add one.
Steve Naroff4fb78c62009-01-08 20:17:34 +00001121 // FIXME: The synthesized property we set here is misleading. We
1122 // almost always synthesize these methods unless the user explicitly
1123 // provided prototypes (which is odd, but allowed). Sema should be
1124 // typechecking that the declarations jive in that situation (which
1125 // it is not currently).
Steve Naroff92f863b2009-01-08 20:15:03 +00001126 if (!GetterMethod) {
1127 // No instance method of same name as property getter name was found.
1128 // Declare a getter method and add it to the list of methods
1129 // for this class.
1130 GetterMethod = ObjCMethodDecl::Create(Context, property->getLocation(),
1131 property->getLocation(), property->getGetterName(),
1132 property->getType(), CD, true, false, true,
1133 (property->getPropertyImplementation() ==
1134 ObjCPropertyDecl::Optional) ?
1135 ObjCMethodDecl::Optional :
1136 ObjCMethodDecl::Required);
Douglas Gregor482b77d2009-01-12 23:27:07 +00001137 CD->addDecl(GetterMethod);
Steve Naroff92f863b2009-01-08 20:15:03 +00001138 } else
1139 // A user declared getter will be synthesize when @synthesize of
1140 // the property with the same name is seen in the @implementation
1141 GetterMethod->setIsSynthesized();
1142 property->setGetterMethodDecl(GetterMethod);
1143
1144 // Skip setter if property is read-only.
1145 if (!property->isReadOnly()) {
1146 // Find the default setter and if one not found, add one.
1147 if (!SetterMethod) {
1148 // No instance method of same name as property setter name was found.
1149 // Declare a setter method and add it to the list of methods
1150 // for this class.
1151 SetterMethod = ObjCMethodDecl::Create(Context, property->getLocation(),
1152 property->getLocation(),
1153 property->getSetterName(),
1154 Context.VoidTy, CD, true, false, true,
1155 (property->getPropertyImplementation() ==
1156 ObjCPropertyDecl::Optional) ?
1157 ObjCMethodDecl::Optional :
1158 ObjCMethodDecl::Required);
1159 // Invent the arguments for the setter. We don't bother making a
1160 // nice name for the argument.
1161 ParmVarDecl *Argument = ParmVarDecl::Create(Context, SetterMethod,
1162 SourceLocation(),
1163 property->getIdentifier(),
1164 property->getType(),
1165 VarDecl::None,
Douglas Gregor4afa39d2009-01-20 01:17:11 +00001166 0);
Chris Lattner38af2de2009-02-20 21:35:13 +00001167 SetterMethod->setMethodParams(&Argument, 1, Context);
Douglas Gregor482b77d2009-01-12 23:27:07 +00001168 CD->addDecl(SetterMethod);
Steve Naroff92f863b2009-01-08 20:15:03 +00001169 } else
1170 // A user declared setter will be synthesize when @synthesize of
1171 // the property with the same name is seen in the @implementation
1172 SetterMethod->setIsSynthesized();
1173 property->setSetterMethodDecl(SetterMethod);
1174 }
Steve Naroff0701bbb2009-01-08 17:28:14 +00001175 // Add any synthesized methods to the global pool. This allows us to
1176 // handle the following, which is supported by GCC (and part of the design).
1177 //
1178 // @interface Foo
1179 // @property double bar;
1180 // @end
1181 //
1182 // void thisIsUnfortunate() {
1183 // id foo;
1184 // double bar = [foo bar];
1185 // }
1186 //
Douglas Gregor6037fcb2009-01-09 19:42:16 +00001187 if (GetterMethod)
Steve Naroff0701bbb2009-01-08 17:28:14 +00001188 AddInstanceMethodToGlobalPool(GetterMethod);
Douglas Gregor6037fcb2009-01-09 19:42:16 +00001189 if (SetterMethod)
Steve Naroff0701bbb2009-01-08 17:28:14 +00001190 AddInstanceMethodToGlobalPool(SetterMethod);
Fariborz Jahanianf3cd3fd2008-12-02 18:39:49 +00001191}
1192
Steve Naroffa56f6162007-12-18 01:30:32 +00001193// Note: For class/category implemenations, allMethods/allProperties is
1194// always null.
Chris Lattner4d391482007-12-12 07:09:47 +00001195void Sema::ActOnAtEnd(SourceLocation AtEndLoc, DeclTy *classDecl,
1196 DeclTy **allMethods, unsigned allNum,
1197 DeclTy **allProperties, unsigned pNum) {
1198 Decl *ClassDecl = static_cast<Decl *>(classDecl);
1199
Steve Naroffa56f6162007-12-18 01:30:32 +00001200 // FIXME: If we don't have a ClassDecl, we have an error. We should consider
1201 // always passing in a decl. If the decl has an error, isInvalidDecl()
Chris Lattner4d391482007-12-12 07:09:47 +00001202 // should be true.
1203 if (!ClassDecl)
1204 return;
1205
Chris Lattner4d391482007-12-12 07:09:47 +00001206 bool isInterfaceDeclKind =
Chris Lattnerf8d17a52008-03-16 21:17:37 +00001207 isa<ObjCInterfaceDecl>(ClassDecl) || isa<ObjCCategoryDecl>(ClassDecl)
1208 || isa<ObjCProtocolDecl>(ClassDecl);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001209 bool checkIdenticalMethods = isa<ObjCImplementationDecl>(ClassDecl);
Steve Naroff09c47192009-01-09 15:36:25 +00001210
Steve Naroff0701bbb2009-01-08 17:28:14 +00001211 DeclContext *DC = dyn_cast<DeclContext>(ClassDecl);
Steve Naroff0701bbb2009-01-08 17:28:14 +00001212
1213 // FIXME: Remove these and use the ObjCContainerDecl/DeclContext.
1214 llvm::DenseMap<Selector, const ObjCMethodDecl*> InsMap;
1215 llvm::DenseMap<Selector, const ObjCMethodDecl*> ClsMap;
1216
Chris Lattner4d391482007-12-12 07:09:47 +00001217 for (unsigned i = 0; i < allNum; i++ ) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001218 ObjCMethodDecl *Method =
1219 cast_or_null<ObjCMethodDecl>(static_cast<Decl*>(allMethods[i]));
Chris Lattner4d391482007-12-12 07:09:47 +00001220
1221 if (!Method) continue; // Already issued a diagnostic.
Douglas Gregorf8d49f62009-01-09 17:18:27 +00001222 if (Method->isInstanceMethod()) {
Chris Lattner4d391482007-12-12 07:09:47 +00001223 /// Check for instance method of the same name with incompatible types
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001224 const ObjCMethodDecl *&PrevMethod = InsMap[Method->getSelector()];
Chris Lattner4d391482007-12-12 07:09:47 +00001225 bool match = PrevMethod ? MatchTwoMethodDeclarations(Method, PrevMethod)
1226 : false;
Eli Friedman82b4e762008-12-16 20:15:50 +00001227 if ((isInterfaceDeclKind && PrevMethod && !match)
1228 || (checkIdenticalMethods && match)) {
Chris Lattner5f4a6822008-11-23 23:12:31 +00001229 Diag(Method->getLocation(), diag::err_duplicate_method_decl)
Chris Lattner077bf5e2008-11-24 03:33:13 +00001230 << Method->getDeclName();
Chris Lattner5f4a6822008-11-23 23:12:31 +00001231 Diag(PrevMethod->getLocation(), diag::note_previous_declaration);
Chris Lattner4d391482007-12-12 07:09:47 +00001232 } else {
Douglas Gregor482b77d2009-01-12 23:27:07 +00001233 DC->addDecl(Method);
Chris Lattner4d391482007-12-12 07:09:47 +00001234 InsMap[Method->getSelector()] = Method;
1235 /// The following allows us to typecheck messages to "id".
1236 AddInstanceMethodToGlobalPool(Method);
1237 }
1238 }
1239 else {
1240 /// Check for class method of the same name with incompatible types
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001241 const ObjCMethodDecl *&PrevMethod = ClsMap[Method->getSelector()];
Chris Lattner4d391482007-12-12 07:09:47 +00001242 bool match = PrevMethod ? MatchTwoMethodDeclarations(Method, PrevMethod)
1243 : false;
Eli Friedman82b4e762008-12-16 20:15:50 +00001244 if ((isInterfaceDeclKind && PrevMethod && !match)
1245 || (checkIdenticalMethods && match)) {
Chris Lattner5f4a6822008-11-23 23:12:31 +00001246 Diag(Method->getLocation(), diag::err_duplicate_method_decl)
Chris Lattner077bf5e2008-11-24 03:33:13 +00001247 << Method->getDeclName();
Chris Lattner5f4a6822008-11-23 23:12:31 +00001248 Diag(PrevMethod->getLocation(), diag::note_previous_declaration);
Chris Lattner4d391482007-12-12 07:09:47 +00001249 } else {
Douglas Gregor482b77d2009-01-12 23:27:07 +00001250 DC->addDecl(Method);
Chris Lattner4d391482007-12-12 07:09:47 +00001251 ClsMap[Method->getSelector()] = Method;
Steve Naroffa56f6162007-12-18 01:30:32 +00001252 /// The following allows us to typecheck messages to "Class".
1253 AddFactoryMethodToGlobalPool(Method);
Chris Lattner4d391482007-12-12 07:09:47 +00001254 }
1255 }
1256 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001257 if (ObjCInterfaceDecl *I = dyn_cast<ObjCInterfaceDecl>(ClassDecl)) {
Daniel Dunbarb20ef3e2008-08-27 05:40:03 +00001258 // Compares properties declared in this class to those of its
Fariborz Jahanian02edb982008-05-01 00:03:38 +00001259 // super class.
Fariborz Jahanianaebf0cb2008-05-02 19:17:30 +00001260 ComparePropertiesInBaseAndSuper(I);
1261 MergeProtocolPropertiesIntoClass(I, I);
Steve Naroff09c47192009-01-09 15:36:25 +00001262 } else if (ObjCCategoryDecl *C = dyn_cast<ObjCCategoryDecl>(ClassDecl)) {
Fariborz Jahanian77e14bd2008-12-06 19:59:02 +00001263 // Categories are used to extend the class by declaring new methods.
1264 // By the same token, they are also used to add new properties. No
1265 // need to compare the added property to those in the class.
Daniel Dunbarb20ef3e2008-08-27 05:40:03 +00001266
Fariborz Jahanian1ac2bc42008-12-06 23:03:39 +00001267 // Merge protocol properties into category
1268 MergeProtocolPropertiesIntoClass(C, C);
Fariborz Jahanianb7f95f52009-03-02 19:05:07 +00001269 if (C->getIdentifier() == 0)
1270 DiagnoseClassExtensionDupMethods(C, C->getClassInterface());
Chris Lattner4d391482007-12-12 07:09:47 +00001271 }
Steve Naroff09c47192009-01-09 15:36:25 +00001272 if (ObjCContainerDecl *CDecl = dyn_cast<ObjCContainerDecl>(ClassDecl)) {
1273 // ProcessPropertyDecl is responsible for diagnosing conflicts with any
1274 // user-defined setter/getter. It also synthesizes setter/getter methods
1275 // and adds them to the DeclContext and global method pools.
Chris Lattner97a58872009-02-16 18:32:47 +00001276 for (ObjCContainerDecl::prop_iterator I = CDecl->prop_begin(),
1277 E = CDecl->prop_end(); I != E; ++I)
1278 ProcessPropertyDecl(*I, CDecl);
Steve Naroff09c47192009-01-09 15:36:25 +00001279 CDecl->setAtEndLoc(AtEndLoc);
1280 }
1281 if (ObjCImplementationDecl *IC=dyn_cast<ObjCImplementationDecl>(ClassDecl)) {
Chris Lattner4d391482007-12-12 07:09:47 +00001282 IC->setLocEnd(AtEndLoc);
Douglas Gregor4afa39d2009-01-20 01:17:11 +00001283 if (ObjCInterfaceDecl* IDecl = IC->getClassInterface())
Chris Lattner4d391482007-12-12 07:09:47 +00001284 ImplMethodsVsClassMethods(IC, IDecl);
Steve Naroff09c47192009-01-09 15:36:25 +00001285 } else if (ObjCCategoryImplDecl* CatImplClass =
1286 dyn_cast<ObjCCategoryImplDecl>(ClassDecl)) {
Chris Lattner4d391482007-12-12 07:09:47 +00001287 CatImplClass->setLocEnd(AtEndLoc);
Chris Lattner97a58872009-02-16 18:32:47 +00001288
Chris Lattner4d391482007-12-12 07:09:47 +00001289 // Find category interface decl and then check that all methods declared
Daniel Dunbarb20ef3e2008-08-27 05:40:03 +00001290 // in this interface are implemented in the category @implementation.
Chris Lattner97a58872009-02-16 18:32:47 +00001291 if (ObjCInterfaceDecl* IDecl = CatImplClass->getClassInterface()) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001292 for (ObjCCategoryDecl *Categories = IDecl->getCategoryList();
Chris Lattner4d391482007-12-12 07:09:47 +00001293 Categories; Categories = Categories->getNextClassCategory()) {
1294 if (Categories->getIdentifier() == CatImplClass->getIdentifier()) {
Chris Lattnercddc8882009-03-01 00:56:52 +00001295 ImplMethodsVsClassMethods(CatImplClass, Categories);
Chris Lattner4d391482007-12-12 07:09:47 +00001296 break;
1297 }
1298 }
1299 }
1300 }
1301}
1302
1303
1304/// CvtQTToAstBitMask - utility routine to produce an AST bitmask for
1305/// objective-c's type qualifier from the parser version of the same info.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001306static Decl::ObjCDeclQualifier
1307CvtQTToAstBitMask(ObjCDeclSpec::ObjCDeclQualifier PQTVal) {
1308 Decl::ObjCDeclQualifier ret = Decl::OBJC_TQ_None;
1309 if (PQTVal & ObjCDeclSpec::DQ_In)
1310 ret = (Decl::ObjCDeclQualifier)(ret | Decl::OBJC_TQ_In);
1311 if (PQTVal & ObjCDeclSpec::DQ_Inout)
1312 ret = (Decl::ObjCDeclQualifier)(ret | Decl::OBJC_TQ_Inout);
1313 if (PQTVal & ObjCDeclSpec::DQ_Out)
1314 ret = (Decl::ObjCDeclQualifier)(ret | Decl::OBJC_TQ_Out);
1315 if (PQTVal & ObjCDeclSpec::DQ_Bycopy)
1316 ret = (Decl::ObjCDeclQualifier)(ret | Decl::OBJC_TQ_Bycopy);
1317 if (PQTVal & ObjCDeclSpec::DQ_Byref)
1318 ret = (Decl::ObjCDeclQualifier)(ret | Decl::OBJC_TQ_Byref);
1319 if (PQTVal & ObjCDeclSpec::DQ_Oneway)
1320 ret = (Decl::ObjCDeclQualifier)(ret | Decl::OBJC_TQ_Oneway);
Chris Lattner4d391482007-12-12 07:09:47 +00001321
1322 return ret;
1323}
1324
1325Sema::DeclTy *Sema::ActOnMethodDeclaration(
1326 SourceLocation MethodLoc, SourceLocation EndLoc,
Chris Lattner6c4ae5d2008-03-16 00:49:28 +00001327 tok::TokenKind MethodType, DeclTy *classDecl,
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001328 ObjCDeclSpec &ReturnQT, TypeTy *ReturnType,
Chris Lattner4d391482007-12-12 07:09:47 +00001329 Selector Sel,
1330 // optional arguments. The number of types/arguments is obtained
1331 // from the Sel.getNumArgs().
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001332 ObjCDeclSpec *ArgQT, TypeTy **ArgTypes, IdentifierInfo **ArgNames,
Fariborz Jahanian439c6582009-01-09 00:38:19 +00001333 llvm::SmallVectorImpl<Declarator> &Cdecls,
Chris Lattner4d391482007-12-12 07:09:47 +00001334 AttributeList *AttrList, tok::ObjCKeywordKind MethodDeclKind,
1335 bool isVariadic) {
Chris Lattner6c4ae5d2008-03-16 00:49:28 +00001336 Decl *ClassDecl = static_cast<Decl*>(classDecl);
Steve Naroffda323ad2008-02-29 21:48:07 +00001337
1338 // Make sure we can establish a context for the method.
1339 if (!ClassDecl) {
1340 Diag(MethodLoc, diag::error_missing_method_context);
1341 return 0;
1342 }
Chris Lattner4d391482007-12-12 07:09:47 +00001343 QualType resultDeclType;
1344
Steve Naroffccef3712009-02-20 22:59:16 +00001345 if (ReturnType) {
Chris Lattner4d391482007-12-12 07:09:47 +00001346 resultDeclType = QualType::getFromOpaquePtr(ReturnType);
Steve Naroffccef3712009-02-20 22:59:16 +00001347
1348 // Methods cannot return interface types. All ObjC objects are
1349 // passed by reference.
1350 if (resultDeclType->isObjCInterfaceType()) {
1351 Diag(MethodLoc, diag::err_object_cannot_be_by_value)
1352 << "returned";
1353 return 0;
1354 }
1355 } else // get the type for "id".
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001356 resultDeclType = Context.getObjCIdType();
Chris Lattner4d391482007-12-12 07:09:47 +00001357
Chris Lattner6c4ae5d2008-03-16 00:49:28 +00001358 ObjCMethodDecl* ObjCMethod =
1359 ObjCMethodDecl::Create(Context, MethodLoc, EndLoc, Sel, resultDeclType,
Steve Naroff0701bbb2009-01-08 17:28:14 +00001360 dyn_cast<DeclContext>(ClassDecl),
Chris Lattner6c4ae5d2008-03-16 00:49:28 +00001361 MethodType == tok::minus, isVariadic,
Fariborz Jahanian46070342008-05-07 20:53:44 +00001362 false,
Chris Lattner6c4ae5d2008-03-16 00:49:28 +00001363 MethodDeclKind == tok::objc_optional ?
1364 ObjCMethodDecl::Optional :
1365 ObjCMethodDecl::Required);
1366
Chris Lattner0ed844b2008-04-04 06:12:32 +00001367 llvm::SmallVector<ParmVarDecl*, 16> Params;
1368
1369 for (unsigned i = 0; i < Sel.getNumArgs(); i++) {
1370 // FIXME: arg->AttrList must be stored too!
Fariborz Jahanian4306d3c2008-12-20 23:29:59 +00001371 QualType argType, originalArgType;
Chris Lattner0ed844b2008-04-04 06:12:32 +00001372
Steve Naroff6082c622008-12-09 19:36:17 +00001373 if (ArgTypes[i]) {
Chris Lattner0ed844b2008-04-04 06:12:32 +00001374 argType = QualType::getFromOpaquePtr(ArgTypes[i]);
Steve Naroff6082c622008-12-09 19:36:17 +00001375 // Perform the default array/function conversions (C99 6.7.5.3p[7,8]).
Fariborz Jahanian4306d3c2008-12-20 23:29:59 +00001376 if (argType->isArrayType()) { // (char *[]) -> (char **)
1377 originalArgType = argType;
Steve Naroff6082c622008-12-09 19:36:17 +00001378 argType = Context.getArrayDecayedType(argType);
Fariborz Jahanian4306d3c2008-12-20 23:29:59 +00001379 }
Steve Naroff6082c622008-12-09 19:36:17 +00001380 else if (argType->isFunctionType())
1381 argType = Context.getPointerType(argType);
Fariborz Jahanian9bae5e72009-01-17 21:57:49 +00001382 else if (argType->isObjCInterfaceType()) {
1383 // FIXME! provide more precise location for the parameter
Steve Naroffccef3712009-02-20 22:59:16 +00001384 Diag(MethodLoc, diag::err_object_cannot_be_by_value)
1385 << "passed";
1386 ObjCMethod->setInvalidDecl();
Fariborz Jahanian9bae5e72009-01-17 21:57:49 +00001387 return 0;
1388 }
Steve Naroff6082c622008-12-09 19:36:17 +00001389 } else
Chris Lattner0ed844b2008-04-04 06:12:32 +00001390 argType = Context.getObjCIdType();
Fariborz Jahanian4306d3c2008-12-20 23:29:59 +00001391 ParmVarDecl* Param;
1392 if (originalArgType.isNull())
1393 Param = ParmVarDecl::Create(Context, ObjCMethod,
1394 SourceLocation(/*FIXME*/),
1395 ArgNames[i], argType,
Douglas Gregor4afa39d2009-01-20 01:17:11 +00001396 VarDecl::None, 0);
Fariborz Jahanian4306d3c2008-12-20 23:29:59 +00001397 else
Douglas Gregor64650af2009-02-02 23:39:07 +00001398 Param = OriginalParmVarDecl::Create(Context, ObjCMethod,
1399 SourceLocation(/*FIXME*/),
1400 ArgNames[i], argType, originalArgType,
1401 VarDecl::None, 0);
Fariborz Jahanian4306d3c2008-12-20 23:29:59 +00001402
Chris Lattner0ed844b2008-04-04 06:12:32 +00001403 Param->setObjCDeclQualifier(
1404 CvtQTToAstBitMask(ArgQT[i].getObjCDeclQualifier()));
1405 Params.push_back(Param);
1406 }
1407
Chris Lattner38af2de2009-02-20 21:35:13 +00001408 ObjCMethod->setMethodParams(&Params[0], Sel.getNumArgs(), Context);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001409 ObjCMethod->setObjCDeclQualifier(
1410 CvtQTToAstBitMask(ReturnQT.getObjCDeclQualifier()));
1411 const ObjCMethodDecl *PrevMethod = 0;
Daniel Dunbar35682492008-09-26 04:12:28 +00001412
1413 if (AttrList)
1414 ProcessDeclAttributeList(ObjCMethod, AttrList);
Chris Lattner4d391482007-12-12 07:09:47 +00001415
1416 // For implementations (which can be very "coarse grain"), we add the
1417 // method now. This allows the AST to implement lookup methods that work
1418 // incrementally (without waiting until we parse the @end). It also allows
1419 // us to flag multiple declaration errors as they occur.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001420 if (ObjCImplementationDecl *ImpDecl =
Chris Lattner6c4ae5d2008-03-16 00:49:28 +00001421 dyn_cast<ObjCImplementationDecl>(ClassDecl)) {
Chris Lattner4d391482007-12-12 07:09:47 +00001422 if (MethodType == tok::minus) {
Steve Naroff94a5c332007-12-19 22:27:04 +00001423 PrevMethod = ImpDecl->getInstanceMethod(Sel);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001424 ImpDecl->addInstanceMethod(ObjCMethod);
Chris Lattner4d391482007-12-12 07:09:47 +00001425 } else {
Steve Naroff94a5c332007-12-19 22:27:04 +00001426 PrevMethod = ImpDecl->getClassMethod(Sel);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001427 ImpDecl->addClassMethod(ObjCMethod);
Chris Lattner4d391482007-12-12 07:09:47 +00001428 }
1429 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001430 else if (ObjCCategoryImplDecl *CatImpDecl =
Chris Lattner6c4ae5d2008-03-16 00:49:28 +00001431 dyn_cast<ObjCCategoryImplDecl>(ClassDecl)) {
Chris Lattner4d391482007-12-12 07:09:47 +00001432 if (MethodType == tok::minus) {
Steve Naroff94a5c332007-12-19 22:27:04 +00001433 PrevMethod = CatImpDecl->getInstanceMethod(Sel);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001434 CatImpDecl->addInstanceMethod(ObjCMethod);
Chris Lattner4d391482007-12-12 07:09:47 +00001435 } else {
Steve Naroff94a5c332007-12-19 22:27:04 +00001436 PrevMethod = CatImpDecl->getClassMethod(Sel);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001437 CatImpDecl->addClassMethod(ObjCMethod);
Chris Lattner4d391482007-12-12 07:09:47 +00001438 }
1439 }
1440 if (PrevMethod) {
1441 // You can never have two method definitions with the same name.
Chris Lattner5f4a6822008-11-23 23:12:31 +00001442 Diag(ObjCMethod->getLocation(), diag::err_duplicate_method_decl)
Chris Lattner077bf5e2008-11-24 03:33:13 +00001443 << ObjCMethod->getDeclName();
Chris Lattner5f4a6822008-11-23 23:12:31 +00001444 Diag(PrevMethod->getLocation(), diag::note_previous_declaration);
Chris Lattner4d391482007-12-12 07:09:47 +00001445 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001446 return ObjCMethod;
Chris Lattner4d391482007-12-12 07:09:47 +00001447}
1448
Daniel Dunbar95e61fb2008-09-23 21:53:23 +00001449void Sema::CheckObjCPropertyAttributes(QualType PropertyTy,
1450 SourceLocation Loc,
1451 unsigned &Attributes) {
1452 // FIXME: Improve the reported location.
1453
Fariborz Jahanian567c8df2008-12-06 01:12:43 +00001454 // readonly and readwrite/assign/retain/copy conflict.
Daniel Dunbar95e61fb2008-09-23 21:53:23 +00001455 if ((Attributes & ObjCDeclSpec::DQ_PR_readonly) &&
Fariborz Jahanian567c8df2008-12-06 01:12:43 +00001456 (Attributes & (ObjCDeclSpec::DQ_PR_readwrite |
1457 ObjCDeclSpec::DQ_PR_assign |
1458 ObjCDeclSpec::DQ_PR_copy |
1459 ObjCDeclSpec::DQ_PR_retain))) {
1460 const char * which = (Attributes & ObjCDeclSpec::DQ_PR_readwrite) ?
1461 "readwrite" :
1462 (Attributes & ObjCDeclSpec::DQ_PR_assign) ?
1463 "assign" :
1464 (Attributes & ObjCDeclSpec::DQ_PR_copy) ?
1465 "copy" : "retain";
1466
Fariborz Jahanianba45da82008-12-08 19:28:10 +00001467 Diag(Loc, (Attributes & (ObjCDeclSpec::DQ_PR_readwrite)) ?
Chris Lattner28372fa2009-01-29 18:49:48 +00001468 diag::err_objc_property_attr_mutually_exclusive :
1469 diag::warn_objc_property_attr_mutually_exclusive)
Fariborz Jahanian567c8df2008-12-06 01:12:43 +00001470 << "readonly" << which;
Daniel Dunbar95e61fb2008-09-23 21:53:23 +00001471 }
1472
1473 // Check for copy or retain on non-object types.
1474 if ((Attributes & (ObjCDeclSpec::DQ_PR_copy | ObjCDeclSpec::DQ_PR_retain)) &&
1475 !Context.isObjCObjectPointerType(PropertyTy)) {
Chris Lattner5dc266a2008-11-20 06:13:02 +00001476 Diag(Loc, diag::err_objc_property_requires_object)
1477 << (Attributes & ObjCDeclSpec::DQ_PR_copy ? "copy" : "retain");
Daniel Dunbar95e61fb2008-09-23 21:53:23 +00001478 Attributes &= ~(ObjCDeclSpec::DQ_PR_copy | ObjCDeclSpec::DQ_PR_retain);
1479 }
1480
1481 // Check for more than one of { assign, copy, retain }.
1482 if (Attributes & ObjCDeclSpec::DQ_PR_assign) {
1483 if (Attributes & ObjCDeclSpec::DQ_PR_copy) {
Chris Lattner5dc266a2008-11-20 06:13:02 +00001484 Diag(Loc, diag::err_objc_property_attr_mutually_exclusive)
1485 << "assign" << "copy";
1486 Attributes &= ~ObjCDeclSpec::DQ_PR_copy;
Daniel Dunbar95e61fb2008-09-23 21:53:23 +00001487 }
1488 if (Attributes & ObjCDeclSpec::DQ_PR_retain) {
Chris Lattner5dc266a2008-11-20 06:13:02 +00001489 Diag(Loc, diag::err_objc_property_attr_mutually_exclusive)
1490 << "assign" << "retain";
1491 Attributes &= ~ObjCDeclSpec::DQ_PR_retain;
Daniel Dunbar95e61fb2008-09-23 21:53:23 +00001492 }
1493 } else if (Attributes & ObjCDeclSpec::DQ_PR_copy) {
1494 if (Attributes & ObjCDeclSpec::DQ_PR_retain) {
Chris Lattner5dc266a2008-11-20 06:13:02 +00001495 Diag(Loc, diag::err_objc_property_attr_mutually_exclusive)
1496 << "copy" << "retain";
1497 Attributes &= ~ObjCDeclSpec::DQ_PR_retain;
Daniel Dunbar95e61fb2008-09-23 21:53:23 +00001498 }
1499 }
1500
1501 // Warn if user supplied no assignment attribute, property is
1502 // readwrite, and this is an object type.
1503 if (!(Attributes & (ObjCDeclSpec::DQ_PR_assign | ObjCDeclSpec::DQ_PR_copy |
1504 ObjCDeclSpec::DQ_PR_retain)) &&
1505 !(Attributes & ObjCDeclSpec::DQ_PR_readonly) &&
1506 Context.isObjCObjectPointerType(PropertyTy)) {
1507 // Skip this warning in gc-only mode.
1508 if (getLangOptions().getGCMode() != LangOptions::GCOnly)
1509 Diag(Loc, diag::warn_objc_property_no_assignment_attribute);
1510
1511 // If non-gc code warn that this is likely inappropriate.
1512 if (getLangOptions().getGCMode() == LangOptions::NonGC)
1513 Diag(Loc, diag::warn_objc_property_default_assign_on_object);
1514
1515 // FIXME: Implement warning dependent on NSCopying being
1516 // implemented. See also:
1517 // <rdar://5168496&4855821&5607453&5096644&4947311&5698469&4947014&5168496>
1518 // (please trim this list while you are at it).
1519 }
1520}
1521
Fariborz Jahanian1de1e742008-04-14 23:36:35 +00001522Sema::DeclTy *Sema::ActOnProperty(Scope *S, SourceLocation AtLoc,
1523 FieldDeclarator &FD,
Fariborz Jahanian46b55e52008-05-05 18:51:55 +00001524 ObjCDeclSpec &ODS,
Fariborz Jahanian5251e132008-05-06 18:09:04 +00001525 Selector GetterSel,
1526 Selector SetterSel,
Fariborz Jahanian8cf0bb32008-11-26 20:01:34 +00001527 DeclTy *ClassCategory,
1528 bool *isOverridingProperty,
Fariborz Jahanian46b55e52008-05-05 18:51:55 +00001529 tok::ObjCKeywordKind MethodImplKind) {
Daniel Dunbar95e61fb2008-09-23 21:53:23 +00001530 unsigned Attributes = ODS.getPropertyAttributes();
Fariborz Jahanian8cf0bb32008-11-26 20:01:34 +00001531 bool isReadWrite = ((Attributes & ObjCDeclSpec::DQ_PR_readwrite) ||
1532 // default is readwrite!
1533 !(Attributes & ObjCDeclSpec::DQ_PR_readonly));
1534 // property is defaulted to 'assign' if it is readwrite and is
1535 // not retain or copy
1536 bool isAssign = ((Attributes & ObjCDeclSpec::DQ_PR_assign) ||
1537 (isReadWrite &&
1538 !(Attributes & ObjCDeclSpec::DQ_PR_retain) &&
1539 !(Attributes & ObjCDeclSpec::DQ_PR_copy)));
1540 QualType T = GetTypeForDeclarator(FD.D, S);
1541 Decl *ClassDecl = static_cast<Decl *>(ClassCategory);
Daniel Dunbar95e61fb2008-09-23 21:53:23 +00001542
1543 // May modify Attributes.
1544 CheckObjCPropertyAttributes(T, AtLoc, Attributes);
Fariborz Jahanian8cf0bb32008-11-26 20:01:34 +00001545
1546 if (ObjCCategoryDecl *CDecl = dyn_cast<ObjCCategoryDecl>(ClassDecl))
1547 if (!CDecl->getIdentifier()) {
1548 // This is an anonymous category. property requires special
1549 // handling.
1550 if (ObjCInterfaceDecl *ICDecl = CDecl->getClassInterface()) {
1551 if (ObjCPropertyDecl *PIDecl =
1552 ICDecl->FindPropertyDeclaration(FD.D.getIdentifier())) {
1553 // property 'PIDecl's readonly attribute will be over-ridden
1554 // with anonymous category's readwrite property attribute!
1555 unsigned PIkind = PIDecl->getPropertyAttributes();
1556 if (isReadWrite && (PIkind & ObjCPropertyDecl::OBJC_PR_readonly)) {
Fariborz Jahanian9bfb2a22008-12-08 18:47:29 +00001557 if ((Attributes & ObjCPropertyDecl::OBJC_PR_nonatomic) !=
Fariborz Jahanian8cf0bb32008-11-26 20:01:34 +00001558 (PIkind & ObjCPropertyDecl::OBJC_PR_nonatomic))
1559 Diag(AtLoc, diag::warn_property_attr_mismatch);
1560 PIDecl->makeitReadWriteAttribute();
1561 if (Attributes & ObjCDeclSpec::DQ_PR_retain)
1562 PIDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_retain);
1563 if (Attributes & ObjCDeclSpec::DQ_PR_copy)
1564 PIDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_copy);
1565 PIDecl->setSetterName(SetterSel);
1566 // FIXME: use a common routine with addPropertyMethods.
1567 ObjCMethodDecl *SetterDecl =
1568 ObjCMethodDecl::Create(Context, AtLoc, AtLoc, SetterSel,
1569 Context.VoidTy,
1570 ICDecl,
1571 true, false, true,
1572 ObjCMethodDecl::Required);
Chris Lattner38af2de2009-02-20 21:35:13 +00001573 ParmVarDecl *Argument = ParmVarDecl::Create(Context, SetterDecl,
Fariborz Jahanian8cf0bb32008-11-26 20:01:34 +00001574 SourceLocation(),
1575 FD.D.getIdentifier(),
Chris Lattner38af2de2009-02-20 21:35:13 +00001576 T, VarDecl::None, 0);
1577 SetterDecl->setMethodParams(&Argument, 1, Context);
Fariborz Jahanian8cf0bb32008-11-26 20:01:34 +00001578 PIDecl->setSetterMethodDecl(SetterDecl);
1579 }
1580 else
Fariborz Jahanian06de37b2008-12-04 22:56:16 +00001581 Diag(AtLoc, diag::err_use_continuation_class) << ICDecl->getDeclName();
Fariborz Jahanian8cf0bb32008-11-26 20:01:34 +00001582 *isOverridingProperty = true;
1583 return 0;
1584 }
Fariborz Jahanianb16308f2008-11-26 20:33:54 +00001585 // No matching property found in the main class. Just fall thru
1586 // and add property to the anonymous category. It looks like
Ben Laurie9af5e672009-02-16 09:18:41 +00001587 // it works as is. This category becomes just like a category
1588 // for its primary class.
Fariborz Jahanian8cf0bb32008-11-26 20:01:34 +00001589 } else {
Chris Lattnerf25df992009-02-20 21:38:52 +00001590 Diag(CDecl->getLocation(), diag::err_continuation_class);
1591 *isOverridingProperty = true;
1592 return 0;
Fariborz Jahanian8cf0bb32008-11-26 20:01:34 +00001593 }
1594 }
Daniel Dunbar95e61fb2008-09-23 21:53:23 +00001595
Fariborz Jahanian105ec4b2008-12-16 17:51:01 +00001596 Type *t = T.getTypePtr();
1597 if (t->isArrayType() || t->isFunctionType())
1598 Diag(AtLoc, diag::err_property_type) << T;
1599
Steve Naroff93983f82009-01-11 12:47:58 +00001600 DeclContext *DC = dyn_cast<DeclContext>(ClassDecl);
1601 assert(DC && "ClassDecl is not a DeclContext");
1602 ObjCPropertyDecl *PDecl = ObjCPropertyDecl::Create(Context, DC, AtLoc,
Fariborz Jahanian1de1e742008-04-14 23:36:35 +00001603 FD.D.getIdentifier(), T);
Douglas Gregor482b77d2009-01-12 23:27:07 +00001604 DC->addDecl(PDecl);
Chris Lattner97a58872009-02-16 18:32:47 +00001605
1606 ProcessDeclAttributes(PDecl, FD.D);
Douglas Gregord0434102009-01-09 00:49:46 +00001607
Fariborz Jahanian33de3f02008-05-07 17:43:59 +00001608 // Regardless of setter/getter attribute, we save the default getter/setter
1609 // selector names in anticipation of declaration of setter/getter methods.
1610 PDecl->setGetterName(GetterSel);
1611 PDecl->setSetterName(SetterSel);
Chris Lattner4d391482007-12-12 07:09:47 +00001612
Daniel Dunbar95e61fb2008-09-23 21:53:23 +00001613 if (Attributes & ObjCDeclSpec::DQ_PR_readonly)
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001614 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_readonly);
Chris Lattner4d391482007-12-12 07:09:47 +00001615
Daniel Dunbar95e61fb2008-09-23 21:53:23 +00001616 if (Attributes & ObjCDeclSpec::DQ_PR_getter)
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001617 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_getter);
Chris Lattner4d391482007-12-12 07:09:47 +00001618
Daniel Dunbar95e61fb2008-09-23 21:53:23 +00001619 if (Attributes & ObjCDeclSpec::DQ_PR_setter)
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001620 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_setter);
Chris Lattner4d391482007-12-12 07:09:47 +00001621
Fariborz Jahanian8cf0bb32008-11-26 20:01:34 +00001622 if (isReadWrite)
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001623 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_readwrite);
Chris Lattner4d391482007-12-12 07:09:47 +00001624
Daniel Dunbar95e61fb2008-09-23 21:53:23 +00001625 if (Attributes & ObjCDeclSpec::DQ_PR_retain)
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001626 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_retain);
Chris Lattner4d391482007-12-12 07:09:47 +00001627
Daniel Dunbar95e61fb2008-09-23 21:53:23 +00001628 if (Attributes & ObjCDeclSpec::DQ_PR_copy)
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001629 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_copy);
Chris Lattner4d391482007-12-12 07:09:47 +00001630
Fariborz Jahanian8cf0bb32008-11-26 20:01:34 +00001631 if (isAssign)
1632 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_assign);
1633
Daniel Dunbar95e61fb2008-09-23 21:53:23 +00001634 if (Attributes & ObjCDeclSpec::DQ_PR_nonatomic)
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001635 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_nonatomic);
Chris Lattner4d391482007-12-12 07:09:47 +00001636
Fariborz Jahanian46b55e52008-05-05 18:51:55 +00001637 if (MethodImplKind == tok::objc_required)
1638 PDecl->setPropertyImplementation(ObjCPropertyDecl::Required);
1639 else if (MethodImplKind == tok::objc_optional)
1640 PDecl->setPropertyImplementation(ObjCPropertyDecl::Optional);
1641
Chris Lattner4d391482007-12-12 07:09:47 +00001642 return PDecl;
1643}
1644
Fariborz Jahanian559c0c42008-04-21 19:04:53 +00001645/// ActOnPropertyImplDecl - This routine performs semantic checks and
1646/// builds the AST node for a property implementation declaration; declared
1647/// as @synthesize or @dynamic.
Fariborz Jahanianf624f812008-04-18 00:19:30 +00001648///
1649Sema::DeclTy *Sema::ActOnPropertyImplDecl(SourceLocation AtLoc,
1650 SourceLocation PropertyLoc,
1651 bool Synthesize,
1652 DeclTy *ClassCatImpDecl,
1653 IdentifierInfo *PropertyId,
1654 IdentifierInfo *PropertyIvar) {
1655 Decl *ClassImpDecl = static_cast<Decl*>(ClassCatImpDecl);
1656 // Make sure we have a context for the property implementation declaration.
1657 if (!ClassImpDecl) {
1658 Diag(AtLoc, diag::error_missing_property_context);
1659 return 0;
1660 }
1661 ObjCPropertyDecl *property = 0;
1662 ObjCInterfaceDecl* IDecl = 0;
1663 // Find the class or category class where this property must have
1664 // a declaration.
Fariborz Jahanian628b96f2008-04-23 00:06:01 +00001665 ObjCImplementationDecl *IC = 0;
1666 ObjCCategoryImplDecl* CatImplClass = 0;
1667 if ((IC = dyn_cast<ObjCImplementationDecl>(ClassImpDecl))) {
Douglas Gregor4afa39d2009-01-20 01:17:11 +00001668 IDecl = IC->getClassInterface();
Fariborz Jahanianc35b9e42008-04-21 21:05:54 +00001669 // We always synthesize an interface for an implementation
1670 // without an interface decl. So, IDecl is always non-zero.
1671 assert(IDecl &&
1672 "ActOnPropertyImplDecl - @implementation without @interface");
1673
Fariborz Jahanianf624f812008-04-18 00:19:30 +00001674 // Look for this property declaration in the @implementation's @interface
Fariborz Jahanian559c0c42008-04-21 19:04:53 +00001675 property = IDecl->FindPropertyDeclaration(PropertyId);
1676 if (!property) {
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00001677 Diag(PropertyLoc, diag::error_bad_property_decl) << IDecl->getDeclName();
Fariborz Jahanianf624f812008-04-18 00:19:30 +00001678 return 0;
Fariborz Jahanian559c0c42008-04-21 19:04:53 +00001679 }
Fariborz Jahanianf624f812008-04-18 00:19:30 +00001680 }
Fariborz Jahanian628b96f2008-04-23 00:06:01 +00001681 else if ((CatImplClass = dyn_cast<ObjCCategoryImplDecl>(ClassImpDecl))) {
Fariborz Jahanianc35b9e42008-04-21 21:05:54 +00001682 if (Synthesize) {
1683 Diag(AtLoc, diag::error_synthesize_category_decl);
1684 return 0;
1685 }
Fariborz Jahanianf624f812008-04-18 00:19:30 +00001686 IDecl = CatImplClass->getClassInterface();
1687 if (!IDecl) {
1688 Diag(AtLoc, diag::error_missing_property_interface);
1689 return 0;
1690 }
Fariborz Jahanian559c0c42008-04-21 19:04:53 +00001691 ObjCCategoryDecl *Category =
1692 IDecl->FindCategoryDeclaration(CatImplClass->getIdentifier());
1693
Fariborz Jahanianf624f812008-04-18 00:19:30 +00001694 // If category for this implementation not found, it is an error which
1695 // has already been reported eralier.
Fariborz Jahanian559c0c42008-04-21 19:04:53 +00001696 if (!Category)
Fariborz Jahanianf624f812008-04-18 00:19:30 +00001697 return 0;
1698 // Look for this property declaration in @implementation's category
Fariborz Jahanian559c0c42008-04-21 19:04:53 +00001699 property = Category->FindPropertyDeclaration(PropertyId);
1700 if (!property) {
Chris Lattner5dc266a2008-11-20 06:13:02 +00001701 Diag(PropertyLoc, diag::error_bad_category_property_decl)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00001702 << Category->getDeclName();
Fariborz Jahanianf624f812008-04-18 00:19:30 +00001703 return 0;
1704 }
1705 }
1706 else {
1707 Diag(AtLoc, diag::error_bad_property_context);
1708 return 0;
1709 }
Fariborz Jahanian628b96f2008-04-23 00:06:01 +00001710 ObjCIvarDecl *Ivar = 0;
Fariborz Jahanianf624f812008-04-18 00:19:30 +00001711 // Check that we have a valid, previously declared ivar for @synthesize
1712 if (Synthesize) {
1713 // @synthesize
Fariborz Jahanian6cdf16d2008-04-21 21:57:36 +00001714 if (!PropertyIvar)
1715 PropertyIvar = PropertyId;
Fariborz Jahanianf624f812008-04-18 00:19:30 +00001716 // Check that this is a previously declared 'ivar' in 'IDecl' interface
Fariborz Jahaniana5afdd02009-02-16 19:35:27 +00001717 Ivar = IDecl->lookupInstanceVariable(PropertyIvar);
Fariborz Jahanianc35b9e42008-04-21 21:05:54 +00001718 if (!Ivar) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001719 Diag(PropertyLoc, diag::error_missing_property_ivar_decl) << PropertyId;
Fariborz Jahanianf624f812008-04-18 00:19:30 +00001720 return 0;
1721 }
Steve Naroff3ce52d62008-09-30 10:07:56 +00001722 QualType PropType = Context.getCanonicalType(property->getType());
1723 QualType IvarType = Context.getCanonicalType(Ivar->getType());
1724
Steve Narofffbbe0ac2008-09-30 00:24:17 +00001725 // Check that type of property and its ivar are type compatible.
Steve Naroff3ce52d62008-09-30 10:07:56 +00001726 if (PropType != IvarType) {
Steve Naroff4fa4ab62008-10-16 14:59:30 +00001727 if (CheckAssignmentConstraints(PropType, IvarType) != Compatible) {
Chris Lattner5dc266a2008-11-20 06:13:02 +00001728 Diag(PropertyLoc, diag::error_property_ivar_type)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00001729 << property->getDeclName() << Ivar->getDeclName();
Steve Naroff3ce52d62008-09-30 10:07:56 +00001730 return 0;
1731 }
Fariborz Jahanianacdc33b2009-01-19 20:13:47 +00001732 else {
1733 // FIXME! Rules for properties are somewhat different that those
1734 // for assignments. Use a new routine to consolidate all cases;
1735 // specifically for property redeclarations as well as for ivars.
1736 QualType lhsType =
1737 Context.getCanonicalType(PropType).getUnqualifiedType();
1738 QualType rhsType =
1739 Context.getCanonicalType(IvarType).getUnqualifiedType();
1740 if (lhsType != rhsType &&
1741 lhsType->isArithmeticType()) {
1742 Diag(PropertyLoc, diag::error_property_ivar_type)
1743 << property->getDeclName() << Ivar->getDeclName();
1744 return 0;
1745 }
Fariborz Jahanian9bc77b22009-02-27 22:38:11 +00001746 // __weak is explicit. So it works on Canonical type.
1747 if (PropType.isObjCGCWeak() && !IvarType.isObjCGCWeak()) {
1748 Diag(PropertyLoc, diag::error_weak_property)
1749 << property->getDeclName() << Ivar->getDeclName();
1750 return 0;
1751 }
1752 if ((Context.isObjCObjectPointerType(property->getType()) ||
1753 PropType.isObjCGCStrong()) && IvarType.isObjCGCWeak()) {
1754 Diag(PropertyLoc, diag::error_strong_property)
1755 << property->getDeclName() << Ivar->getDeclName();
1756 return 0;
1757 }
Fariborz Jahanianacdc33b2009-01-19 20:13:47 +00001758 }
Fariborz Jahanianc35b9e42008-04-21 21:05:54 +00001759 }
Fariborz Jahanianf624f812008-04-18 00:19:30 +00001760 } else if (PropertyIvar) {
1761 // @dynamic
1762 Diag(PropertyLoc, diag::error_dynamic_property_ivar_decl);
1763 return 0;
1764 }
Fariborz Jahanianf624f812008-04-18 00:19:30 +00001765 assert (property && "ActOnPropertyImplDecl - property declaration missing");
Fariborz Jahanian628b96f2008-04-23 00:06:01 +00001766 ObjCPropertyImplDecl *PIDecl =
Douglas Gregord0434102009-01-09 00:49:46 +00001767 ObjCPropertyImplDecl::Create(Context, CurContext, AtLoc, PropertyLoc,
1768 property,
Fariborz Jahanian628b96f2008-04-23 00:06:01 +00001769 (Synthesize ?
Daniel Dunbar9f0afd42008-08-26 04:47:31 +00001770 ObjCPropertyImplDecl::Synthesize
1771 : ObjCPropertyImplDecl::Dynamic),
1772 Ivar);
Douglas Gregor482b77d2009-01-12 23:27:07 +00001773 CurContext->addDecl(PIDecl);
Fariborz Jahanianae6f6fd2008-12-05 22:32:48 +00001774 if (IC) {
1775 if (Synthesize)
1776 if (ObjCPropertyImplDecl *PPIDecl =
1777 IC->FindPropertyImplIvarDecl(PropertyIvar)) {
1778 Diag(PropertyLoc, diag::error_duplicate_ivar_use)
1779 << PropertyId << PPIDecl->getPropertyDecl()->getIdentifier()
1780 << PropertyIvar;
1781 Diag(PPIDecl->getLocation(), diag::note_previous_use);
1782 }
1783
1784 if (ObjCPropertyImplDecl *PPIDecl = IC->FindPropertyImplDecl(PropertyId)) {
1785 Diag(PropertyLoc, diag::error_property_implemented) << PropertyId;
1786 Diag(PPIDecl->getLocation(), diag::note_previous_declaration);
1787 return 0;
1788 }
Fariborz Jahanian628b96f2008-04-23 00:06:01 +00001789 IC->addPropertyImplementation(PIDecl);
Fariborz Jahanianae6f6fd2008-12-05 22:32:48 +00001790 }
1791 else {
1792 if (Synthesize)
1793 if (ObjCPropertyImplDecl *PPIDecl =
1794 CatImplClass->FindPropertyImplIvarDecl(PropertyIvar)) {
1795 Diag(PropertyLoc, diag::error_duplicate_ivar_use)
1796 << PropertyId << PPIDecl->getPropertyDecl()->getIdentifier()
1797 << PropertyIvar;
1798 Diag(PPIDecl->getLocation(), diag::note_previous_use);
1799 }
1800
1801 if (ObjCPropertyImplDecl *PPIDecl =
1802 CatImplClass->FindPropertyImplDecl(PropertyId)) {
1803 Diag(PropertyLoc, diag::error_property_implemented) << PropertyId;
1804 Diag(PPIDecl->getLocation(), diag::note_previous_declaration);
1805 return 0;
1806 }
Fariborz Jahanian628b96f2008-04-23 00:06:01 +00001807 CatImplClass->addPropertyImplementation(PIDecl);
Fariborz Jahanianae6f6fd2008-12-05 22:32:48 +00001808 }
Fariborz Jahanian628b96f2008-04-23 00:06:01 +00001809
1810 return PIDecl;
Fariborz Jahanianf624f812008-04-18 00:19:30 +00001811}
Anders Carlsson15281452008-11-04 16:57:32 +00001812
Chris Lattnercc98eac2008-12-17 07:13:27 +00001813bool Sema::CheckObjCDeclScope(Decl *D) {
Douglas Gregorce356072009-01-06 23:51:29 +00001814 if (isa<TranslationUnitDecl>(CurContext->getLookupContext()))
Anders Carlsson15281452008-11-04 16:57:32 +00001815 return false;
1816
1817 Diag(D->getLocation(), diag::err_objc_decls_may_only_appear_in_global_scope);
1818 D->setInvalidDecl();
1819
1820 return true;
1821}
Chris Lattnercc98eac2008-12-17 07:13:27 +00001822
1823/// Collect the instance variables declared in an Objective-C object. Used in
1824/// the creation of structures from objects using the @defs directive.
1825/// FIXME: This should be consolidated with CollectObjCIvars as it is also
1826/// part of the AST generation logic of @defs.
1827static void CollectIvars(ObjCInterfaceDecl *Class, RecordDecl *Record,
1828 ASTContext& Ctx,
1829 llvm::SmallVectorImpl<Sema::DeclTy*> &ivars) {
1830 if (Class->getSuperClass())
1831 CollectIvars(Class->getSuperClass(), Record, Ctx, ivars);
1832
1833 // For each ivar, create a fresh ObjCAtDefsFieldDecl.
1834 for (ObjCInterfaceDecl::ivar_iterator
1835 I=Class->ivar_begin(), E=Class->ivar_end(); I!=E; ++I) {
1836
1837 ObjCIvarDecl* ID = *I;
1838 ivars.push_back(ObjCAtDefsFieldDecl::Create(Ctx, Record,
1839 ID->getLocation(),
1840 ID->getIdentifier(),
1841 ID->getType(),
1842 ID->getBitWidth()));
1843 }
1844}
1845
1846/// Called whenever @defs(ClassName) is encountered in the source. Inserts the
1847/// instance variables of ClassName into Decls.
1848void Sema::ActOnDefs(Scope *S, DeclTy *TagD, SourceLocation DeclStart,
1849 IdentifierInfo *ClassName,
1850 llvm::SmallVectorImpl<DeclTy*> &Decls) {
1851 // Check that ClassName is a valid class
1852 ObjCInterfaceDecl *Class = getObjCInterfaceDecl(ClassName);
1853 if (!Class) {
1854 Diag(DeclStart, diag::err_undef_interface) << ClassName;
1855 return;
1856 }
1857 // Collect the instance variables
1858 CollectIvars(Class, dyn_cast<RecordDecl>((Decl*)TagD), Context, Decls);
1859
1860 // Introduce all of these fields into the appropriate scope.
1861 for (llvm::SmallVectorImpl<DeclTy*>::iterator D = Decls.begin();
1862 D != Decls.end(); ++D) {
1863 FieldDecl *FD = cast<FieldDecl>((Decl*)*D);
1864 if (getLangOptions().CPlusPlus)
1865 PushOnScopeChains(cast<FieldDecl>(FD), S);
1866 else if (RecordDecl *Record = dyn_cast<RecordDecl>((Decl*)TagD))
Douglas Gregor482b77d2009-01-12 23:27:07 +00001867 Record->addDecl(FD);
Chris Lattnercc98eac2008-12-17 07:13:27 +00001868 }
1869}
1870