blob: 03081bec1388f7ab2c8e4006282bb1f837a3dcf5 [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
John McCall2d887082010-08-25 22:03:47 +000014#include "clang/Sema/SemaInternal.h"
Douglas Gregore737f502010-08-12 20:07:10 +000015#include "clang/Sema/Lookup.h"
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +000016#include "clang/Sema/ExternalSemaSource.h"
John McCall5f1e0942010-08-24 08:50:51 +000017#include "clang/Sema/Scope.h"
John McCall781472f2010-08-25 08:40:02 +000018#include "clang/Sema/ScopeInfo.h"
John McCallf85e1932011-06-15 23:02:42 +000019#include "clang/AST/ASTConsumer.h"
Steve Naroffca331292009-03-03 14:49:36 +000020#include "clang/AST/Expr.h"
John McCallf85e1932011-06-15 23:02:42 +000021#include "clang/AST/ExprObjC.h"
Chris Lattner4d391482007-12-12 07:09:47 +000022#include "clang/AST/ASTContext.h"
23#include "clang/AST/DeclObjC.h"
John McCallf85e1932011-06-15 23:02:42 +000024#include "clang/Basic/SourceManager.h"
John McCall19510852010-08-20 18:27:03 +000025#include "clang/Sema/DeclSpec.h"
John McCall50df6ae2010-08-25 07:03:20 +000026#include "llvm/ADT/DenseSet.h"
27
Chris Lattner4d391482007-12-12 07:09:47 +000028using namespace clang;
29
John McCallf85e1932011-06-15 23:02:42 +000030/// Check whether the given method, which must be in the 'init'
31/// family, is a valid member of that family.
32///
33/// \param receiverTypeIfCall - if null, check this as if declaring it;
34/// if non-null, check this as if making a call to it with the given
35/// receiver type
36///
37/// \return true to indicate that there was an error and appropriate
38/// actions were taken
39bool Sema::checkInitMethod(ObjCMethodDecl *method,
40 QualType receiverTypeIfCall) {
41 if (method->isInvalidDecl()) return true;
42
43 // This castAs is safe: methods that don't return an object
44 // pointer won't be inferred as inits and will reject an explicit
45 // objc_method_family(init).
46
47 // We ignore protocols here. Should we? What about Class?
48
49 const ObjCObjectType *result = method->getResultType()
50 ->castAs<ObjCObjectPointerType>()->getObjectType();
51
52 if (result->isObjCId()) {
53 return false;
54 } else if (result->isObjCClass()) {
55 // fall through: always an error
56 } else {
57 ObjCInterfaceDecl *resultClass = result->getInterface();
58 assert(resultClass && "unexpected object type!");
59
60 // It's okay for the result type to still be a forward declaration
61 // if we're checking an interface declaration.
62 if (resultClass->isForwardDecl()) {
63 if (receiverTypeIfCall.isNull() &&
64 !isa<ObjCImplementationDecl>(method->getDeclContext()))
65 return false;
66
67 // Otherwise, we try to compare class types.
68 } else {
69 // If this method was declared in a protocol, we can't check
70 // anything unless we have a receiver type that's an interface.
71 const ObjCInterfaceDecl *receiverClass = 0;
72 if (isa<ObjCProtocolDecl>(method->getDeclContext())) {
73 if (receiverTypeIfCall.isNull())
74 return false;
75
76 receiverClass = receiverTypeIfCall->castAs<ObjCObjectPointerType>()
77 ->getInterfaceDecl();
78
79 // This can be null for calls to e.g. id<Foo>.
80 if (!receiverClass) return false;
81 } else {
82 receiverClass = method->getClassInterface();
83 assert(receiverClass && "method not associated with a class!");
84 }
85
86 // If either class is a subclass of the other, it's fine.
87 if (receiverClass->isSuperClassOf(resultClass) ||
88 resultClass->isSuperClassOf(receiverClass))
89 return false;
90 }
91 }
92
93 SourceLocation loc = method->getLocation();
94
95 // If we're in a system header, and this is not a call, just make
96 // the method unusable.
97 if (receiverTypeIfCall.isNull() && getSourceManager().isInSystemHeader(loc)) {
98 method->addAttr(new (Context) UnavailableAttr(loc, Context,
99 "init method returns a type unrelated to its receiver type"));
100 return true;
101 }
102
103 // Otherwise, it's an error.
104 Diag(loc, diag::err_arc_init_method_unrelated_result_type);
105 method->setInvalidDecl();
106 return true;
107}
108
Douglas Gregor926df6c2011-06-11 01:09:30 +0000109bool Sema::CheckObjCMethodOverride(ObjCMethodDecl *NewMethod,
110 const ObjCMethodDecl *Overridden,
111 bool IsImplementation) {
112 if (Overridden->hasRelatedResultType() &&
113 !NewMethod->hasRelatedResultType()) {
114 // This can only happen when the method follows a naming convention that
115 // implies a related result type, and the original (overridden) method has
116 // a suitable return type, but the new (overriding) method does not have
117 // a suitable return type.
118 QualType ResultType = NewMethod->getResultType();
119 SourceRange ResultTypeRange;
120 if (const TypeSourceInfo *ResultTypeInfo
John McCallf85e1932011-06-15 23:02:42 +0000121 = NewMethod->getResultTypeSourceInfo())
Douglas Gregor926df6c2011-06-11 01:09:30 +0000122 ResultTypeRange = ResultTypeInfo->getTypeLoc().getSourceRange();
123
124 // Figure out which class this method is part of, if any.
125 ObjCInterfaceDecl *CurrentClass
126 = dyn_cast<ObjCInterfaceDecl>(NewMethod->getDeclContext());
127 if (!CurrentClass) {
128 DeclContext *DC = NewMethod->getDeclContext();
129 if (ObjCCategoryDecl *Cat = dyn_cast<ObjCCategoryDecl>(DC))
130 CurrentClass = Cat->getClassInterface();
131 else if (ObjCImplDecl *Impl = dyn_cast<ObjCImplDecl>(DC))
132 CurrentClass = Impl->getClassInterface();
133 else if (ObjCCategoryImplDecl *CatImpl
134 = dyn_cast<ObjCCategoryImplDecl>(DC))
135 CurrentClass = CatImpl->getClassInterface();
136 }
137
138 if (CurrentClass) {
139 Diag(NewMethod->getLocation(),
140 diag::warn_related_result_type_compatibility_class)
141 << Context.getObjCInterfaceType(CurrentClass)
142 << ResultType
143 << ResultTypeRange;
144 } else {
145 Diag(NewMethod->getLocation(),
146 diag::warn_related_result_type_compatibility_protocol)
147 << ResultType
148 << ResultTypeRange;
149 }
150
151 Diag(Overridden->getLocation(), diag::note_related_result_type_overridden)
152 << Overridden->getMethodFamily();
153 }
154
155 return false;
156}
157
John McCallf85e1932011-06-15 23:02:42 +0000158/// \brief Check a method declaration for compatibility with the Objective-C
159/// ARC conventions.
160static bool CheckARCMethodDecl(Sema &S, ObjCMethodDecl *method) {
161 ObjCMethodFamily family = method->getMethodFamily();
162 switch (family) {
163 case OMF_None:
164 case OMF_dealloc:
165 case OMF_retain:
166 case OMF_release:
167 case OMF_autorelease:
168 case OMF_retainCount:
169 case OMF_self:
John McCall6c2c2502011-07-22 02:45:48 +0000170 case OMF_performSelector:
John McCallf85e1932011-06-15 23:02:42 +0000171 return false;
172
173 case OMF_init:
174 // If the method doesn't obey the init rules, don't bother annotating it.
175 if (S.checkInitMethod(method, QualType()))
176 return true;
177
178 method->addAttr(new (S.Context) NSConsumesSelfAttr(SourceLocation(),
179 S.Context));
180
181 // Don't add a second copy of this attribute, but otherwise don't
182 // let it be suppressed.
183 if (method->hasAttr<NSReturnsRetainedAttr>())
184 return false;
185 break;
186
187 case OMF_alloc:
188 case OMF_copy:
189 case OMF_mutableCopy:
190 case OMF_new:
191 if (method->hasAttr<NSReturnsRetainedAttr>() ||
192 method->hasAttr<NSReturnsNotRetainedAttr>() ||
193 method->hasAttr<NSReturnsAutoreleasedAttr>())
194 return false;
195 break;
196 }
197
198 method->addAttr(new (S.Context) NSReturnsRetainedAttr(SourceLocation(),
199 S.Context));
200 return false;
201}
202
Fariborz Jahanian5ac96d52011-02-15 17:49:58 +0000203static void DiagnoseObjCImplementedDeprecations(Sema &S,
204 NamedDecl *ND,
205 SourceLocation ImplLoc,
206 int select) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000207 if (ND && ND->isDeprecated()) {
Fariborz Jahanian98d810e2011-02-16 00:30:31 +0000208 S.Diag(ImplLoc, diag::warn_deprecated_def) << select;
Fariborz Jahanian5ac96d52011-02-15 17:49:58 +0000209 if (select == 0)
210 S.Diag(ND->getLocation(), diag::note_method_declared_at);
211 else
212 S.Diag(ND->getLocation(), diag::note_previous_decl) << "class";
213 }
214}
215
Steve Naroffebf64432009-02-28 16:59:13 +0000216/// ActOnStartOfObjCMethodDef - This routine sets up parameters; invisible
Chris Lattner4d391482007-12-12 07:09:47 +0000217/// and user declared, in the method definition's AST.
John McCalld226f652010-08-21 09:40:31 +0000218void Sema::ActOnStartOfObjCMethodDef(Scope *FnBodyScope, Decl *D) {
Argyrios Kyrtzidis53d0ea52008-06-28 06:07:14 +0000219 assert(getCurMethodDecl() == 0 && "Method parsing confused");
John McCalld226f652010-08-21 09:40:31 +0000220 ObjCMethodDecl *MDecl = dyn_cast_or_null<ObjCMethodDecl>(D);
Mike Stump1eb44332009-09-09 15:08:12 +0000221
Steve Naroff394f3f42008-07-25 17:57:26 +0000222 // If we don't have a valid method decl, simply return.
223 if (!MDecl)
224 return;
Steve Naroffa56f6162007-12-18 01:30:32 +0000225
226 // Allow the rest of sema to find private method decl implementations.
Douglas Gregorf8d49f62009-01-09 17:18:27 +0000227 if (MDecl->isInstanceMethod())
Fariborz Jahanian3fe10412010-07-22 18:24:20 +0000228 AddInstanceMethodToGlobalPool(MDecl, true);
Steve Naroffa56f6162007-12-18 01:30:32 +0000229 else
Fariborz Jahanian3fe10412010-07-22 18:24:20 +0000230 AddFactoryMethodToGlobalPool(MDecl, true);
231
Chris Lattner4d391482007-12-12 07:09:47 +0000232 // Allow all of Sema to see that we are entering a method definition.
Douglas Gregor44b43212008-12-11 16:49:14 +0000233 PushDeclContext(FnBodyScope, MDecl);
Douglas Gregor9ea9bdb2010-03-01 23:15:13 +0000234 PushFunctionScope();
235
Chris Lattner4d391482007-12-12 07:09:47 +0000236 // Create Decl objects for each parameter, entrring them in the scope for
237 // binding to their use.
Chris Lattner4d391482007-12-12 07:09:47 +0000238
239 // Insert the invisible arguments, self and _cmd!
Fariborz Jahanianfef30b52008-12-09 20:23:04 +0000240 MDecl->createImplicitParams(Context, MDecl->getClassInterface());
Mike Stump1eb44332009-09-09 15:08:12 +0000241
Daniel Dunbar451318c2008-08-26 06:07:48 +0000242 PushOnScopeChains(MDecl->getSelfDecl(), FnBodyScope);
243 PushOnScopeChains(MDecl->getCmdDecl(), FnBodyScope);
Chris Lattner04421082008-04-08 04:40:51 +0000244
Chris Lattner8123a952008-04-10 02:22:51 +0000245 // Introduce all of the other parameters into this scope.
Chris Lattner89951a82009-02-20 18:43:26 +0000246 for (ObjCMethodDecl::param_iterator PI = MDecl->param_begin(),
Fariborz Jahanian23c01042010-09-17 22:07:07 +0000247 E = MDecl->param_end(); PI != E; ++PI) {
248 ParmVarDecl *Param = (*PI);
249 if (!Param->isInvalidDecl() &&
250 RequireCompleteType(Param->getLocation(), Param->getType(),
251 diag::err_typecheck_decl_incomplete_type))
252 Param->setInvalidDecl();
Chris Lattner89951a82009-02-20 18:43:26 +0000253 if ((*PI)->getIdentifier())
254 PushOnScopeChains(*PI, FnBodyScope);
Fariborz Jahanian23c01042010-09-17 22:07:07 +0000255 }
John McCallf85e1932011-06-15 23:02:42 +0000256
257 // In ARC, disallow definition of retain/release/autorelease/retainCount
258 if (getLangOptions().ObjCAutoRefCount) {
259 switch (MDecl->getMethodFamily()) {
260 case OMF_retain:
261 case OMF_retainCount:
262 case OMF_release:
263 case OMF_autorelease:
264 Diag(MDecl->getLocation(), diag::err_arc_illegal_method_def)
265 << MDecl->getSelector();
266 break;
267
268 case OMF_None:
269 case OMF_dealloc:
270 case OMF_alloc:
271 case OMF_init:
272 case OMF_mutableCopy:
273 case OMF_copy:
274 case OMF_new:
275 case OMF_self:
Fariborz Jahanian9670e172011-07-05 22:38:59 +0000276 case OMF_performSelector:
John McCallf85e1932011-06-15 23:02:42 +0000277 break;
278 }
279 }
280
Nico Weber9a1ecf02011-08-22 17:25:57 +0000281 // Warn on deprecated methods under -Wdeprecated-implementations,
282 // and prepare for warning on missing super calls.
283 if (ObjCInterfaceDecl *IC = MDecl->getClassInterface()) {
Fariborz Jahanian5ac96d52011-02-15 17:49:58 +0000284 if (ObjCMethodDecl *IMD =
Fariborz Jahanianb1224f62011-02-15 00:59:30 +0000285 IC->lookupMethod(MDecl->getSelector(), MDecl->isInstanceMethod()))
Fariborz Jahanian5ac96d52011-02-15 17:49:58 +0000286 DiagnoseObjCImplementedDeprecations(*this,
287 dyn_cast<NamedDecl>(IMD),
288 MDecl->getLocation(), 0);
Nico Weber9a1ecf02011-08-22 17:25:57 +0000289
290 // If this is "dealloc", set some bit here.
291 // Then in ActOnSuperMessage() (SemaExprObjC), set it back to false.
292 // Finally, in ActOnFinishFunctionBody() (SemaDecl), warn if flag is set.
293 // Only do this if the current class actually has a superclass.
294 if (IC->getSuperClass())
Ted Kremenek4eb14ca2011-08-22 19:07:43 +0000295 ObjCShouldCallSuperDealloc =
296 !Context.getLangOptions().ObjCAutoRefCount &&
297 MDecl->getMethodFamily() == OMF_dealloc;
Nico Weber9a1ecf02011-08-22 17:25:57 +0000298 }
Chris Lattner4d391482007-12-12 07:09:47 +0000299}
300
John McCalld226f652010-08-21 09:40:31 +0000301Decl *Sema::
Chris Lattner7caeabd2008-07-21 22:17:28 +0000302ActOnStartClassInterface(SourceLocation AtInterfaceLoc,
303 IdentifierInfo *ClassName, SourceLocation ClassLoc,
304 IdentifierInfo *SuperName, SourceLocation SuperLoc,
John McCalld226f652010-08-21 09:40:31 +0000305 Decl * const *ProtoRefs, unsigned NumProtoRefs,
Douglas Gregor18df52b2010-01-16 15:02:53 +0000306 const SourceLocation *ProtoLocs,
Chris Lattner7caeabd2008-07-21 22:17:28 +0000307 SourceLocation EndProtoLoc, AttributeList *AttrList) {
Chris Lattner4d391482007-12-12 07:09:47 +0000308 assert(ClassName && "Missing class identifier");
Mike Stump1eb44332009-09-09 15:08:12 +0000309
Chris Lattner4d391482007-12-12 07:09:47 +0000310 // Check for another declaration kind with the same name.
Douglas Gregorc83c6872010-04-15 22:33:43 +0000311 NamedDecl *PrevDecl = LookupSingleName(TUScope, ClassName, ClassLoc,
Douglas Gregorc0b39642010-04-15 23:40:53 +0000312 LookupOrdinaryName, ForRedeclaration);
Douglas Gregor72c3f312008-12-05 18:15:24 +0000313
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000314 if (PrevDecl && !isa<ObjCInterfaceDecl>(PrevDecl)) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000315 Diag(ClassLoc, diag::err_redefinition_different_kind) << ClassName;
Chris Lattner5f4a6822008-11-23 23:12:31 +0000316 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Chris Lattner4d391482007-12-12 07:09:47 +0000317 }
Mike Stump1eb44332009-09-09 15:08:12 +0000318
Douglas Gregordeacbdc2010-08-11 12:19:30 +0000319 ObjCInterfaceDecl* IDecl = dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl);
320 if (IDecl) {
Chris Lattner4d391482007-12-12 07:09:47 +0000321 // Class already seen. Is it a forward declaration?
Douglas Gregordeacbdc2010-08-11 12:19:30 +0000322 if (!IDecl->isForwardDecl()) {
323 IDecl->setInvalidDecl();
324 Diag(AtInterfaceLoc, diag::err_duplicate_class_def)<<IDecl->getDeclName();
325 Diag(IDecl->getLocation(), diag::note_previous_definition);
Chris Lattnerb8b96af2008-11-23 22:46:27 +0000326
Douglas Gregordeacbdc2010-08-11 12:19:30 +0000327 // Return the previous class interface.
328 // FIXME: don't leak the objects passed in!
John McCalld226f652010-08-21 09:40:31 +0000329 return IDecl;
Douglas Gregordeacbdc2010-08-11 12:19:30 +0000330 } else {
331 IDecl->setLocation(AtInterfaceLoc);
332 IDecl->setForwardDecl(false);
333 IDecl->setClassLoc(ClassLoc);
Sebastian Redl0b17c612010-08-13 00:28:03 +0000334 // If the forward decl was in a PCH, we need to write it again in a
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000335 // dependent AST file.
Sebastian Redl0b17c612010-08-13 00:28:03 +0000336 IDecl->setChangedSinceDeserialization(true);
Douglas Gregordeacbdc2010-08-11 12:19:30 +0000337
338 // Since this ObjCInterfaceDecl was created by a forward declaration,
339 // we now add it to the DeclContext since it wasn't added before
340 // (see ActOnForwardClassDeclaration).
341 IDecl->setLexicalDeclContext(CurContext);
342 CurContext->addDecl(IDecl);
343
344 if (AttrList)
345 ProcessDeclAttributeList(TUScope, IDecl, AttrList);
Chris Lattner4d391482007-12-12 07:09:47 +0000346 }
Douglas Gregordeacbdc2010-08-11 12:19:30 +0000347 } else {
348 IDecl = ObjCInterfaceDecl::Create(Context, CurContext, AtInterfaceLoc,
349 ClassName, ClassLoc);
350 if (AttrList)
351 ProcessDeclAttributeList(TUScope, IDecl, AttrList);
352
353 PushOnScopeChains(IDecl, TUScope);
Chris Lattner4d391482007-12-12 07:09:47 +0000354 }
Mike Stump1eb44332009-09-09 15:08:12 +0000355
Chris Lattner4d391482007-12-12 07:09:47 +0000356 if (SuperName) {
Chris Lattner4d391482007-12-12 07:09:47 +0000357 // Check if a different kind of symbol declared in this scope.
Douglas Gregorc83c6872010-04-15 22:33:43 +0000358 PrevDecl = LookupSingleName(TUScope, SuperName, SuperLoc,
359 LookupOrdinaryName);
Douglas Gregorf06cdae2010-01-03 18:01:57 +0000360
361 if (!PrevDecl) {
362 // Try to correct for a typo in the superclass name.
Douglas Gregord8bba9c2011-06-28 16:20:02 +0000363 TypoCorrection Corrected = CorrectTypo(
364 DeclarationNameInfo(SuperName, SuperLoc), LookupOrdinaryName, TUScope,
365 NULL, NULL, false, CTC_NoKeywords);
366 if ((PrevDecl = Corrected.getCorrectionDeclAs<ObjCInterfaceDecl>())) {
Douglas Gregorf06cdae2010-01-03 18:01:57 +0000367 Diag(SuperLoc, diag::err_undef_superclass_suggest)
368 << SuperName << ClassName << PrevDecl->getDeclName();
Douglas Gregor67dd1d42010-01-07 00:17:44 +0000369 Diag(PrevDecl->getLocation(), diag::note_previous_decl)
370 << PrevDecl->getDeclName();
Douglas Gregorf06cdae2010-01-03 18:01:57 +0000371 }
372 }
373
Fariborz Jahanianfdee0892009-07-09 22:08:26 +0000374 if (PrevDecl == IDecl) {
375 Diag(SuperLoc, diag::err_recursive_superclass)
376 << SuperName << ClassName << SourceRange(AtInterfaceLoc, ClassLoc);
377 IDecl->setLocEnd(ClassLoc);
Mike Stumpac5fc7c2009-08-04 21:02:39 +0000378 } else {
Mike Stump1eb44332009-09-09 15:08:12 +0000379 ObjCInterfaceDecl *SuperClassDecl =
Fariborz Jahanianfdee0892009-07-09 22:08:26 +0000380 dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl);
Chris Lattner3c73c412008-11-19 08:23:25 +0000381
Fariborz Jahanianfdee0892009-07-09 22:08:26 +0000382 // Diagnose classes that inherit from deprecated classes.
383 if (SuperClassDecl)
384 (void)DiagnoseUseOfDecl(SuperClassDecl, SuperLoc);
Mike Stump1eb44332009-09-09 15:08:12 +0000385
Fariborz Jahanianfdee0892009-07-09 22:08:26 +0000386 if (PrevDecl && SuperClassDecl == 0) {
387 // The previous declaration was not a class decl. Check if we have a
388 // typedef. If we do, get the underlying class type.
Richard Smith162e1c12011-04-15 14:24:37 +0000389 if (const TypedefNameDecl *TDecl =
390 dyn_cast_or_null<TypedefNameDecl>(PrevDecl)) {
Fariborz Jahanianfdee0892009-07-09 22:08:26 +0000391 QualType T = TDecl->getUnderlyingType();
John McCallc12c5bb2010-05-15 11:32:37 +0000392 if (T->isObjCObjectType()) {
Douglas Gregordeacbdc2010-08-11 12:19:30 +0000393 if (NamedDecl *IDecl = T->getAs<ObjCObjectType>()->getInterface())
394 SuperClassDecl = dyn_cast<ObjCInterfaceDecl>(IDecl);
Fariborz Jahanianfdee0892009-07-09 22:08:26 +0000395 }
396 }
Mike Stump1eb44332009-09-09 15:08:12 +0000397
Fariborz Jahanianfdee0892009-07-09 22:08:26 +0000398 // This handles the following case:
399 //
400 // typedef int SuperClass;
401 // @interface MyClass : SuperClass {} @end
402 //
403 if (!SuperClassDecl) {
404 Diag(SuperLoc, diag::err_redefinition_different_kind) << SuperName;
405 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Steve Naroff818cb9e2009-02-04 17:14:05 +0000406 }
407 }
Mike Stump1eb44332009-09-09 15:08:12 +0000408
Richard Smith162e1c12011-04-15 14:24:37 +0000409 if (!dyn_cast_or_null<TypedefNameDecl>(PrevDecl)) {
Fariborz Jahanianfdee0892009-07-09 22:08:26 +0000410 if (!SuperClassDecl)
411 Diag(SuperLoc, diag::err_undef_superclass)
412 << SuperName << ClassName << SourceRange(AtInterfaceLoc, ClassLoc);
Fariborz Jahaniana8139732011-06-23 23:16:19 +0000413 else if (SuperClassDecl->isForwardDecl()) {
414 Diag(SuperLoc, diag::err_forward_superclass)
Fariborz Jahanianfdee0892009-07-09 22:08:26 +0000415 << SuperClassDecl->getDeclName() << ClassName
416 << SourceRange(AtInterfaceLoc, ClassLoc);
Fariborz Jahaniana8139732011-06-23 23:16:19 +0000417 Diag(SuperClassDecl->getLocation(), diag::note_forward_class);
418 SuperClassDecl = 0;
419 }
Steve Naroff818cb9e2009-02-04 17:14:05 +0000420 }
Fariborz Jahanianfdee0892009-07-09 22:08:26 +0000421 IDecl->setSuperClass(SuperClassDecl);
422 IDecl->setSuperClassLoc(SuperLoc);
423 IDecl->setLocEnd(SuperLoc);
Steve Naroff818cb9e2009-02-04 17:14:05 +0000424 }
Chris Lattner4d391482007-12-12 07:09:47 +0000425 } else { // we have a root class.
426 IDecl->setLocEnd(ClassLoc);
427 }
Mike Stump1eb44332009-09-09 15:08:12 +0000428
Sebastian Redl0b17c612010-08-13 00:28:03 +0000429 // Check then save referenced protocols.
Chris Lattner06036d32008-07-26 04:13:19 +0000430 if (NumProtoRefs) {
Chris Lattner38af2de2009-02-20 21:35:13 +0000431 IDecl->setProtocolList((ObjCProtocolDecl**)ProtoRefs, NumProtoRefs,
Douglas Gregor18df52b2010-01-16 15:02:53 +0000432 ProtoLocs, Context);
Chris Lattner4d391482007-12-12 07:09:47 +0000433 IDecl->setLocEnd(EndProtoLoc);
434 }
Mike Stump1eb44332009-09-09 15:08:12 +0000435
Anders Carlsson15281452008-11-04 16:57:32 +0000436 CheckObjCDeclScope(IDecl);
John McCalld226f652010-08-21 09:40:31 +0000437 return IDecl;
Chris Lattner4d391482007-12-12 07:09:47 +0000438}
439
440/// ActOnCompatiblityAlias - this action is called after complete parsing of
Daniel Dunbar7ad1b1f2008-09-04 20:01:15 +0000441/// @compatibility_alias declaration. It sets up the alias relationships.
John McCalld226f652010-08-21 09:40:31 +0000442Decl *Sema::ActOnCompatiblityAlias(SourceLocation AtLoc,
443 IdentifierInfo *AliasName,
444 SourceLocation AliasLocation,
445 IdentifierInfo *ClassName,
446 SourceLocation ClassLocation) {
Chris Lattner4d391482007-12-12 07:09:47 +0000447 // Look for previous declaration of alias name
Douglas Gregorc83c6872010-04-15 22:33:43 +0000448 NamedDecl *ADecl = LookupSingleName(TUScope, AliasName, AliasLocation,
Douglas Gregorc0b39642010-04-15 23:40:53 +0000449 LookupOrdinaryName, ForRedeclaration);
Chris Lattner4d391482007-12-12 07:09:47 +0000450 if (ADecl) {
Chris Lattner8b265bd2008-11-23 23:20:13 +0000451 if (isa<ObjCCompatibleAliasDecl>(ADecl))
Chris Lattner4d391482007-12-12 07:09:47 +0000452 Diag(AliasLocation, diag::warn_previous_alias_decl);
Chris Lattner8b265bd2008-11-23 23:20:13 +0000453 else
Chris Lattner3c73c412008-11-19 08:23:25 +0000454 Diag(AliasLocation, diag::err_conflicting_aliasing_type) << AliasName;
Chris Lattner8b265bd2008-11-23 23:20:13 +0000455 Diag(ADecl->getLocation(), diag::note_previous_declaration);
John McCalld226f652010-08-21 09:40:31 +0000456 return 0;
Chris Lattner4d391482007-12-12 07:09:47 +0000457 }
458 // Check for class declaration
Douglas Gregorc83c6872010-04-15 22:33:43 +0000459 NamedDecl *CDeclU = LookupSingleName(TUScope, ClassName, ClassLocation,
Douglas Gregorc0b39642010-04-15 23:40:53 +0000460 LookupOrdinaryName, ForRedeclaration);
Richard Smith162e1c12011-04-15 14:24:37 +0000461 if (const TypedefNameDecl *TDecl =
462 dyn_cast_or_null<TypedefNameDecl>(CDeclU)) {
Fariborz Jahanian305c6582009-01-08 01:10:55 +0000463 QualType T = TDecl->getUnderlyingType();
John McCallc12c5bb2010-05-15 11:32:37 +0000464 if (T->isObjCObjectType()) {
465 if (NamedDecl *IDecl = T->getAs<ObjCObjectType>()->getInterface()) {
Fariborz Jahanian305c6582009-01-08 01:10:55 +0000466 ClassName = IDecl->getIdentifier();
Douglas Gregorc83c6872010-04-15 22:33:43 +0000467 CDeclU = LookupSingleName(TUScope, ClassName, ClassLocation,
Douglas Gregorc0b39642010-04-15 23:40:53 +0000468 LookupOrdinaryName, ForRedeclaration);
Fariborz Jahanian305c6582009-01-08 01:10:55 +0000469 }
470 }
471 }
Chris Lattnerf8d17a52008-03-16 21:17:37 +0000472 ObjCInterfaceDecl *CDecl = dyn_cast_or_null<ObjCInterfaceDecl>(CDeclU);
473 if (CDecl == 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000474 Diag(ClassLocation, diag::warn_undef_interface) << ClassName;
Chris Lattnerf8d17a52008-03-16 21:17:37 +0000475 if (CDeclU)
Chris Lattner8b265bd2008-11-23 23:20:13 +0000476 Diag(CDeclU->getLocation(), diag::note_previous_declaration);
John McCalld226f652010-08-21 09:40:31 +0000477 return 0;
Chris Lattner4d391482007-12-12 07:09:47 +0000478 }
Mike Stump1eb44332009-09-09 15:08:12 +0000479
Chris Lattnerf8d17a52008-03-16 21:17:37 +0000480 // Everything checked out, instantiate a new alias declaration AST.
Mike Stump1eb44332009-09-09 15:08:12 +0000481 ObjCCompatibleAliasDecl *AliasDecl =
Douglas Gregord0434102009-01-09 00:49:46 +0000482 ObjCCompatibleAliasDecl::Create(Context, CurContext, AtLoc, AliasName, CDecl);
Mike Stump1eb44332009-09-09 15:08:12 +0000483
Anders Carlsson15281452008-11-04 16:57:32 +0000484 if (!CheckObjCDeclScope(AliasDecl))
Douglas Gregor516ff432009-04-24 02:57:34 +0000485 PushOnScopeChains(AliasDecl, TUScope);
Douglas Gregord0434102009-01-09 00:49:46 +0000486
John McCalld226f652010-08-21 09:40:31 +0000487 return AliasDecl;
Chris Lattner4d391482007-12-12 07:09:47 +0000488}
489
Fariborz Jahanian819e9bf2011-05-13 18:02:08 +0000490bool Sema::CheckForwardProtocolDeclarationForCircularDependency(
Steve Naroff61d68522009-03-05 15:22:01 +0000491 IdentifierInfo *PName,
492 SourceLocation &Ploc, SourceLocation PrevLoc,
Fariborz Jahanian819e9bf2011-05-13 18:02:08 +0000493 const ObjCList<ObjCProtocolDecl> &PList) {
494
495 bool res = false;
Steve Naroff61d68522009-03-05 15:22:01 +0000496 for (ObjCList<ObjCProtocolDecl>::iterator I = PList.begin(),
497 E = PList.end(); I != E; ++I) {
Douglas Gregorc83c6872010-04-15 22:33:43 +0000498 if (ObjCProtocolDecl *PDecl = LookupProtocol((*I)->getIdentifier(),
499 Ploc)) {
Steve Naroff61d68522009-03-05 15:22:01 +0000500 if (PDecl->getIdentifier() == PName) {
501 Diag(Ploc, diag::err_protocol_has_circular_dependency);
502 Diag(PrevLoc, diag::note_previous_definition);
Fariborz Jahanian819e9bf2011-05-13 18:02:08 +0000503 res = true;
Steve Naroff61d68522009-03-05 15:22:01 +0000504 }
Fariborz Jahanian819e9bf2011-05-13 18:02:08 +0000505 if (CheckForwardProtocolDeclarationForCircularDependency(PName, Ploc,
506 PDecl->getLocation(), PDecl->getReferencedProtocols()))
507 res = true;
Steve Naroff61d68522009-03-05 15:22:01 +0000508 }
509 }
Fariborz Jahanian819e9bf2011-05-13 18:02:08 +0000510 return res;
Steve Naroff61d68522009-03-05 15:22:01 +0000511}
512
John McCalld226f652010-08-21 09:40:31 +0000513Decl *
Chris Lattnere13b9592008-07-26 04:03:38 +0000514Sema::ActOnStartProtocolInterface(SourceLocation AtProtoInterfaceLoc,
515 IdentifierInfo *ProtocolName,
516 SourceLocation ProtocolLoc,
John McCalld226f652010-08-21 09:40:31 +0000517 Decl * const *ProtoRefs,
Chris Lattnere13b9592008-07-26 04:03:38 +0000518 unsigned NumProtoRefs,
Douglas Gregor18df52b2010-01-16 15:02:53 +0000519 const SourceLocation *ProtoLocs,
Daniel Dunbar246e70f2008-09-26 04:48:09 +0000520 SourceLocation EndProtoLoc,
521 AttributeList *AttrList) {
Fariborz Jahanian96b69a72011-05-12 22:04:39 +0000522 bool err = false;
Daniel Dunbar246e70f2008-09-26 04:48:09 +0000523 // FIXME: Deal with AttrList.
Chris Lattner4d391482007-12-12 07:09:47 +0000524 assert(ProtocolName && "Missing protocol identifier");
Douglas Gregorc83c6872010-04-15 22:33:43 +0000525 ObjCProtocolDecl *PDecl = LookupProtocol(ProtocolName, ProtocolLoc);
Chris Lattner4d391482007-12-12 07:09:47 +0000526 if (PDecl) {
527 // Protocol already seen. Better be a forward protocol declaration
Chris Lattner439e71f2008-03-16 01:25:17 +0000528 if (!PDecl->isForwardDecl()) {
Fariborz Jahaniane2573e52009-04-06 23:43:32 +0000529 Diag(ProtocolLoc, diag::warn_duplicate_protocol_def) << ProtocolName;
Chris Lattnerb8b96af2008-11-23 22:46:27 +0000530 Diag(PDecl->getLocation(), diag::note_previous_definition);
Chris Lattner439e71f2008-03-16 01:25:17 +0000531 // Just return the protocol we already had.
532 // FIXME: don't leak the objects passed in!
John McCalld226f652010-08-21 09:40:31 +0000533 return PDecl;
Chris Lattner4d391482007-12-12 07:09:47 +0000534 }
Steve Naroff61d68522009-03-05 15:22:01 +0000535 ObjCList<ObjCProtocolDecl> PList;
Mike Stump1eb44332009-09-09 15:08:12 +0000536 PList.set((ObjCProtocolDecl *const*)ProtoRefs, NumProtoRefs, Context);
Fariborz Jahanian819e9bf2011-05-13 18:02:08 +0000537 err = CheckForwardProtocolDeclarationForCircularDependency(
538 ProtocolName, ProtocolLoc, PDecl->getLocation(), PList);
Mike Stump1eb44332009-09-09 15:08:12 +0000539
Steve Narofff11b5082008-08-13 16:39:22 +0000540 // Make sure the cached decl gets a valid start location.
541 PDecl->setLocation(AtProtoInterfaceLoc);
Chris Lattner439e71f2008-03-16 01:25:17 +0000542 PDecl->setForwardDecl(false);
Fariborz Jahanianca4c40a2011-08-25 22:26:53 +0000543 // Since this ObjCProtocolDecl was created by a forward declaration,
544 // we now add it to the DeclContext since it wasn't added before
545 PDecl->setLexicalDeclContext(CurContext);
Sebastian Redl0b17c612010-08-13 00:28:03 +0000546 CurContext->addDecl(PDecl);
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000547 // Repeat in dependent AST files.
Sebastian Redl0b17c612010-08-13 00:28:03 +0000548 PDecl->setChangedSinceDeserialization(true);
Chris Lattner439e71f2008-03-16 01:25:17 +0000549 } else {
Mike Stump1eb44332009-09-09 15:08:12 +0000550 PDecl = ObjCProtocolDecl::Create(Context, CurContext,
Douglas Gregord0434102009-01-09 00:49:46 +0000551 AtProtoInterfaceLoc,ProtocolName);
Douglas Gregor6e378de2009-04-23 23:18:26 +0000552 PushOnScopeChains(PDecl, TUScope);
Chris Lattnerc8581052008-03-16 20:19:15 +0000553 PDecl->setForwardDecl(false);
Chris Lattnercca59d72008-03-16 01:23:04 +0000554 }
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +0000555 if (AttrList)
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000556 ProcessDeclAttributeList(TUScope, PDecl, AttrList);
Fariborz Jahanian96b69a72011-05-12 22:04:39 +0000557 if (!err && NumProtoRefs ) {
Chris Lattnerc8581052008-03-16 20:19:15 +0000558 /// Check then save referenced protocols.
Douglas Gregor18df52b2010-01-16 15:02:53 +0000559 PDecl->setProtocolList((ObjCProtocolDecl**)ProtoRefs, NumProtoRefs,
560 ProtoLocs, Context);
Chris Lattner4d391482007-12-12 07:09:47 +0000561 PDecl->setLocEnd(EndProtoLoc);
562 }
Mike Stump1eb44332009-09-09 15:08:12 +0000563
564 CheckObjCDeclScope(PDecl);
John McCalld226f652010-08-21 09:40:31 +0000565 return PDecl;
Chris Lattner4d391482007-12-12 07:09:47 +0000566}
567
568/// FindProtocolDeclaration - This routine looks up protocols and
Daniel Dunbar7ad1b1f2008-09-04 20:01:15 +0000569/// issues an error if they are not declared. It returns list of
570/// protocol declarations in its 'Protocols' argument.
Chris Lattner4d391482007-12-12 07:09:47 +0000571void
Chris Lattnere13b9592008-07-26 04:03:38 +0000572Sema::FindProtocolDeclaration(bool WarnOnDeclarations,
Chris Lattner7caeabd2008-07-21 22:17:28 +0000573 const IdentifierLocPair *ProtocolId,
Chris Lattner4d391482007-12-12 07:09:47 +0000574 unsigned NumProtocols,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000575 SmallVectorImpl<Decl *> &Protocols) {
Chris Lattner4d391482007-12-12 07:09:47 +0000576 for (unsigned i = 0; i != NumProtocols; ++i) {
Douglas Gregorc83c6872010-04-15 22:33:43 +0000577 ObjCProtocolDecl *PDecl = LookupProtocol(ProtocolId[i].first,
578 ProtocolId[i].second);
Chris Lattnereacc3922008-07-26 03:47:43 +0000579 if (!PDecl) {
Douglas Gregord8bba9c2011-06-28 16:20:02 +0000580 TypoCorrection Corrected = CorrectTypo(
581 DeclarationNameInfo(ProtocolId[i].first, ProtocolId[i].second),
582 LookupObjCProtocolName, TUScope, NULL, NULL, false, CTC_NoKeywords);
583 if ((PDecl = Corrected.getCorrectionDeclAs<ObjCProtocolDecl>())) {
Douglas Gregorf06cdae2010-01-03 18:01:57 +0000584 Diag(ProtocolId[i].second, diag::err_undeclared_protocol_suggest)
Douglas Gregord8bba9c2011-06-28 16:20:02 +0000585 << ProtocolId[i].first << Corrected.getCorrection();
Douglas Gregor67dd1d42010-01-07 00:17:44 +0000586 Diag(PDecl->getLocation(), diag::note_previous_decl)
587 << PDecl->getDeclName();
Douglas Gregorf06cdae2010-01-03 18:01:57 +0000588 }
589 }
590
591 if (!PDecl) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000592 Diag(ProtocolId[i].second, diag::err_undeclared_protocol)
Chris Lattner3c73c412008-11-19 08:23:25 +0000593 << ProtocolId[i].first;
Chris Lattnereacc3922008-07-26 03:47:43 +0000594 continue;
595 }
Mike Stump1eb44332009-09-09 15:08:12 +0000596
Douglas Gregor48f3bb92009-02-18 21:56:37 +0000597 (void)DiagnoseUseOfDecl(PDecl, ProtocolId[i].second);
Chris Lattnereacc3922008-07-26 03:47:43 +0000598
599 // If this is a forward declaration and we are supposed to warn in this
600 // case, do it.
601 if (WarnOnDeclarations && PDecl->isForwardDecl())
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000602 Diag(ProtocolId[i].second, diag::warn_undef_protocolref)
Chris Lattner3c73c412008-11-19 08:23:25 +0000603 << ProtocolId[i].first;
John McCalld226f652010-08-21 09:40:31 +0000604 Protocols.push_back(PDecl);
Chris Lattner4d391482007-12-12 07:09:47 +0000605 }
606}
607
Fariborz Jahanian78c39c72009-03-02 19:06:08 +0000608/// DiagnoseClassExtensionDupMethods - Check for duplicate declaration of
Fariborz Jahanianb7f95f52009-03-02 19:05:07 +0000609/// a class method in its extension.
610///
Mike Stump1eb44332009-09-09 15:08:12 +0000611void Sema::DiagnoseClassExtensionDupMethods(ObjCCategoryDecl *CAT,
Fariborz Jahanianb7f95f52009-03-02 19:05:07 +0000612 ObjCInterfaceDecl *ID) {
613 if (!ID)
614 return; // Possibly due to previous error
615
616 llvm::DenseMap<Selector, const ObjCMethodDecl*> MethodMap;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000617 for (ObjCInterfaceDecl::method_iterator i = ID->meth_begin(),
618 e = ID->meth_end(); i != e; ++i) {
Fariborz Jahanianb7f95f52009-03-02 19:05:07 +0000619 ObjCMethodDecl *MD = *i;
620 MethodMap[MD->getSelector()] = MD;
621 }
622
623 if (MethodMap.empty())
624 return;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000625 for (ObjCCategoryDecl::method_iterator i = CAT->meth_begin(),
626 e = CAT->meth_end(); i != e; ++i) {
Fariborz Jahanianb7f95f52009-03-02 19:05:07 +0000627 ObjCMethodDecl *Method = *i;
628 const ObjCMethodDecl *&PrevMethod = MethodMap[Method->getSelector()];
629 if (PrevMethod && !MatchTwoMethodDeclarations(Method, PrevMethod)) {
630 Diag(Method->getLocation(), diag::err_duplicate_method_decl)
631 << Method->getDeclName();
632 Diag(PrevMethod->getLocation(), diag::note_previous_declaration);
633 }
634 }
635}
636
Chris Lattner58fe03b2009-04-12 08:43:13 +0000637/// ActOnForwardProtocolDeclaration - Handle @protocol foo;
John McCalld226f652010-08-21 09:40:31 +0000638Decl *
Chris Lattner4d391482007-12-12 07:09:47 +0000639Sema::ActOnForwardProtocolDeclaration(SourceLocation AtProtocolLoc,
Chris Lattner7caeabd2008-07-21 22:17:28 +0000640 const IdentifierLocPair *IdentList,
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +0000641 unsigned NumElts,
642 AttributeList *attrList) {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000643 SmallVector<ObjCProtocolDecl*, 32> Protocols;
644 SmallVector<SourceLocation, 8> ProtoLocs;
Mike Stump1eb44332009-09-09 15:08:12 +0000645
Chris Lattner4d391482007-12-12 07:09:47 +0000646 for (unsigned i = 0; i != NumElts; ++i) {
Chris Lattner7caeabd2008-07-21 22:17:28 +0000647 IdentifierInfo *Ident = IdentList[i].first;
Douglas Gregorc83c6872010-04-15 22:33:43 +0000648 ObjCProtocolDecl *PDecl = LookupProtocol(Ident, IdentList[i].second);
Sebastian Redl0b17c612010-08-13 00:28:03 +0000649 bool isNew = false;
Douglas Gregord0434102009-01-09 00:49:46 +0000650 if (PDecl == 0) { // Not already seen?
Mike Stump1eb44332009-09-09 15:08:12 +0000651 PDecl = ObjCProtocolDecl::Create(Context, CurContext,
Douglas Gregord0434102009-01-09 00:49:46 +0000652 IdentList[i].second, Ident);
Sebastian Redl0b17c612010-08-13 00:28:03 +0000653 PushOnScopeChains(PDecl, TUScope, false);
654 isNew = true;
Douglas Gregord0434102009-01-09 00:49:46 +0000655 }
Sebastian Redl0b17c612010-08-13 00:28:03 +0000656 if (attrList) {
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000657 ProcessDeclAttributeList(TUScope, PDecl, attrList);
Sebastian Redl0b17c612010-08-13 00:28:03 +0000658 if (!isNew)
659 PDecl->setChangedSinceDeserialization(true);
660 }
Chris Lattner4d391482007-12-12 07:09:47 +0000661 Protocols.push_back(PDecl);
Douglas Gregor18df52b2010-01-16 15:02:53 +0000662 ProtoLocs.push_back(IdentList[i].second);
Chris Lattner4d391482007-12-12 07:09:47 +0000663 }
Mike Stump1eb44332009-09-09 15:08:12 +0000664
665 ObjCForwardProtocolDecl *PDecl =
Douglas Gregord0434102009-01-09 00:49:46 +0000666 ObjCForwardProtocolDecl::Create(Context, CurContext, AtProtocolLoc,
Douglas Gregor18df52b2010-01-16 15:02:53 +0000667 Protocols.data(), Protocols.size(),
668 ProtoLocs.data());
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000669 CurContext->addDecl(PDecl);
Anders Carlsson15281452008-11-04 16:57:32 +0000670 CheckObjCDeclScope(PDecl);
John McCalld226f652010-08-21 09:40:31 +0000671 return PDecl;
Chris Lattner4d391482007-12-12 07:09:47 +0000672}
673
John McCalld226f652010-08-21 09:40:31 +0000674Decl *Sema::
Chris Lattner7caeabd2008-07-21 22:17:28 +0000675ActOnStartCategoryInterface(SourceLocation AtInterfaceLoc,
676 IdentifierInfo *ClassName, SourceLocation ClassLoc,
677 IdentifierInfo *CategoryName,
678 SourceLocation CategoryLoc,
John McCalld226f652010-08-21 09:40:31 +0000679 Decl * const *ProtoRefs,
Chris Lattner7caeabd2008-07-21 22:17:28 +0000680 unsigned NumProtoRefs,
Douglas Gregor18df52b2010-01-16 15:02:53 +0000681 const SourceLocation *ProtoLocs,
Chris Lattner7caeabd2008-07-21 22:17:28 +0000682 SourceLocation EndProtoLoc) {
Fariborz Jahanian80aa1cd2010-06-22 23:20:40 +0000683 ObjCCategoryDecl *CDecl;
Douglas Gregorc83c6872010-04-15 22:33:43 +0000684 ObjCInterfaceDecl *IDecl = getObjCInterfaceDecl(ClassName, ClassLoc, true);
Ted Kremenek09b68972010-02-23 19:39:46 +0000685
686 /// Check that class of this category is already completely declared.
687 if (!IDecl || IDecl->isForwardDecl()) {
688 // Create an invalid ObjCCategoryDecl to serve as context for
689 // the enclosing method declarations. We mark the decl invalid
690 // to make it clear that this isn't a valid AST.
691 CDecl = ObjCCategoryDecl::Create(Context, CurContext, AtInterfaceLoc,
692 ClassLoc, CategoryLoc, CategoryName);
693 CDecl->setInvalidDecl();
694 Diag(ClassLoc, diag::err_undef_interface) << ClassName;
John McCalld226f652010-08-21 09:40:31 +0000695 return CDecl;
Ted Kremenek09b68972010-02-23 19:39:46 +0000696 }
697
Fariborz Jahanian80aa1cd2010-06-22 23:20:40 +0000698 if (!CategoryName && IDecl->getImplementation()) {
699 Diag(ClassLoc, diag::err_class_extension_after_impl) << ClassName;
700 Diag(IDecl->getImplementation()->getLocation(),
701 diag::note_implementation_declared);
Ted Kremenek09b68972010-02-23 19:39:46 +0000702 }
703
Fariborz Jahanian80aa1cd2010-06-22 23:20:40 +0000704 CDecl = ObjCCategoryDecl::Create(Context, CurContext, AtInterfaceLoc,
705 ClassLoc, CategoryLoc, CategoryName);
706 // FIXME: PushOnScopeChains?
707 CurContext->addDecl(CDecl);
Chris Lattner4d391482007-12-12 07:09:47 +0000708
Fariborz Jahanian80aa1cd2010-06-22 23:20:40 +0000709 CDecl->setClassInterface(IDecl);
710 // Insert class extension to the list of class's categories.
711 if (!CategoryName)
712 CDecl->insertNextClassCategory();
Mike Stump1eb44332009-09-09 15:08:12 +0000713
Chris Lattner16b34b42009-02-16 21:30:01 +0000714 // If the interface is deprecated, warn about it.
Douglas Gregor48f3bb92009-02-18 21:56:37 +0000715 (void)DiagnoseUseOfDecl(IDecl, ClassLoc);
Chris Lattner70f19542009-02-16 21:26:43 +0000716
Fariborz Jahanian25760612010-02-15 21:55:26 +0000717 if (CategoryName) {
718 /// Check for duplicate interface declaration for this category
719 ObjCCategoryDecl *CDeclChain;
720 for (CDeclChain = IDecl->getCategoryList(); CDeclChain;
721 CDeclChain = CDeclChain->getNextClassCategory()) {
722 if (CDeclChain->getIdentifier() == CategoryName) {
723 // Class extensions can be declared multiple times.
724 Diag(CategoryLoc, diag::warn_dup_category_def)
725 << ClassName << CategoryName;
726 Diag(CDeclChain->getLocation(), diag::note_previous_definition);
727 break;
728 }
Chris Lattner70f19542009-02-16 21:26:43 +0000729 }
Fariborz Jahanian25760612010-02-15 21:55:26 +0000730 if (!CDeclChain)
731 CDecl->insertNextClassCategory();
Chris Lattner70f19542009-02-16 21:26:43 +0000732 }
Chris Lattner70f19542009-02-16 21:26:43 +0000733
Chris Lattner4d391482007-12-12 07:09:47 +0000734 if (NumProtoRefs) {
Fariborz Jahanianb106fc62009-10-05 21:32:49 +0000735 CDecl->setProtocolList((ObjCProtocolDecl**)ProtoRefs, NumProtoRefs,
Douglas Gregor18df52b2010-01-16 15:02:53 +0000736 ProtoLocs, Context);
Fariborz Jahanian339798e2009-10-05 20:41:32 +0000737 // Protocols in the class extension belong to the class.
Fariborz Jahanian25760612010-02-15 21:55:26 +0000738 if (CDecl->IsClassExtension())
Fariborz Jahanian339798e2009-10-05 20:41:32 +0000739 IDecl->mergeClassExtensionProtocolList((ObjCProtocolDecl**)ProtoRefs,
Ted Kremenek53b94412010-09-01 01:21:15 +0000740 NumProtoRefs, Context);
Chris Lattner4d391482007-12-12 07:09:47 +0000741 }
Mike Stump1eb44332009-09-09 15:08:12 +0000742
Anders Carlsson15281452008-11-04 16:57:32 +0000743 CheckObjCDeclScope(CDecl);
John McCalld226f652010-08-21 09:40:31 +0000744 return CDecl;
Chris Lattner4d391482007-12-12 07:09:47 +0000745}
746
747/// ActOnStartCategoryImplementation - Perform semantic checks on the
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000748/// category implementation declaration and build an ObjCCategoryImplDecl
Chris Lattner4d391482007-12-12 07:09:47 +0000749/// object.
John McCalld226f652010-08-21 09:40:31 +0000750Decl *Sema::ActOnStartCategoryImplementation(
Chris Lattner4d391482007-12-12 07:09:47 +0000751 SourceLocation AtCatImplLoc,
752 IdentifierInfo *ClassName, SourceLocation ClassLoc,
753 IdentifierInfo *CatName, SourceLocation CatLoc) {
Douglas Gregorc83c6872010-04-15 22:33:43 +0000754 ObjCInterfaceDecl *IDecl = getObjCInterfaceDecl(ClassName, ClassLoc, true);
Argyrios Kyrtzidis8a1d7222009-07-21 00:05:53 +0000755 ObjCCategoryDecl *CatIDecl = 0;
756 if (IDecl) {
757 CatIDecl = IDecl->FindCategoryDeclaration(CatName);
758 if (!CatIDecl) {
759 // Category @implementation with no corresponding @interface.
760 // Create and install one.
761 CatIDecl = ObjCCategoryDecl::Create(Context, CurContext, SourceLocation(),
Douglas Gregor3db211b2010-01-16 16:38:58 +0000762 SourceLocation(), SourceLocation(),
Argyrios Kyrtzidis8a1d7222009-07-21 00:05:53 +0000763 CatName);
764 CatIDecl->setClassInterface(IDecl);
765 CatIDecl->insertNextClassCategory();
766 }
767 }
768
Mike Stump1eb44332009-09-09 15:08:12 +0000769 ObjCCategoryImplDecl *CDecl =
Douglas Gregord0434102009-01-09 00:49:46 +0000770 ObjCCategoryImplDecl::Create(Context, CurContext, AtCatImplLoc, CatName,
771 IDecl);
Chris Lattner4d391482007-12-12 07:09:47 +0000772 /// Check that class of this category is already completely declared.
John McCall6c2c2502011-07-22 02:45:48 +0000773 if (!IDecl || IDecl->isForwardDecl()) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000774 Diag(ClassLoc, diag::err_undef_interface) << ClassName;
John McCall6c2c2502011-07-22 02:45:48 +0000775 CDecl->setInvalidDecl();
776 }
Chris Lattner4d391482007-12-12 07:09:47 +0000777
Douglas Gregord0434102009-01-09 00:49:46 +0000778 // FIXME: PushOnScopeChains?
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000779 CurContext->addDecl(CDecl);
Douglas Gregord0434102009-01-09 00:49:46 +0000780
Argyrios Kyrtzidis8a1d7222009-07-21 00:05:53 +0000781 /// Check that CatName, category name, is not used in another implementation.
782 if (CatIDecl) {
783 if (CatIDecl->getImplementation()) {
784 Diag(ClassLoc, diag::err_dup_implementation_category) << ClassName
785 << CatName;
786 Diag(CatIDecl->getImplementation()->getLocation(),
787 diag::note_previous_definition);
Fariborz Jahanianb1224f62011-02-15 00:59:30 +0000788 } else {
Argyrios Kyrtzidis8a1d7222009-07-21 00:05:53 +0000789 CatIDecl->setImplementation(CDecl);
Fariborz Jahanianb1224f62011-02-15 00:59:30 +0000790 // Warn on implementating category of deprecated class under
791 // -Wdeprecated-implementations flag.
Fariborz Jahanian5ac96d52011-02-15 17:49:58 +0000792 DiagnoseObjCImplementedDeprecations(*this,
793 dyn_cast<NamedDecl>(IDecl),
794 CDecl->getLocation(), 2);
Fariborz Jahanianb1224f62011-02-15 00:59:30 +0000795 }
Argyrios Kyrtzidis8a1d7222009-07-21 00:05:53 +0000796 }
Mike Stump1eb44332009-09-09 15:08:12 +0000797
Anders Carlsson15281452008-11-04 16:57:32 +0000798 CheckObjCDeclScope(CDecl);
John McCalld226f652010-08-21 09:40:31 +0000799 return CDecl;
Chris Lattner4d391482007-12-12 07:09:47 +0000800}
801
John McCalld226f652010-08-21 09:40:31 +0000802Decl *Sema::ActOnStartClassImplementation(
Chris Lattner4d391482007-12-12 07:09:47 +0000803 SourceLocation AtClassImplLoc,
804 IdentifierInfo *ClassName, SourceLocation ClassLoc,
Mike Stump1eb44332009-09-09 15:08:12 +0000805 IdentifierInfo *SuperClassname,
Chris Lattner4d391482007-12-12 07:09:47 +0000806 SourceLocation SuperClassLoc) {
Douglas Gregordeacbdc2010-08-11 12:19:30 +0000807 ObjCInterfaceDecl* IDecl = 0;
Chris Lattner4d391482007-12-12 07:09:47 +0000808 // Check for another declaration kind with the same name.
John McCallf36e02d2009-10-09 21:13:30 +0000809 NamedDecl *PrevDecl
Douglas Gregorc0b39642010-04-15 23:40:53 +0000810 = LookupSingleName(TUScope, ClassName, ClassLoc, LookupOrdinaryName,
811 ForRedeclaration);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000812 if (PrevDecl && !isa<ObjCInterfaceDecl>(PrevDecl)) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000813 Diag(ClassLoc, diag::err_redefinition_different_kind) << ClassName;
Chris Lattner5f4a6822008-11-23 23:12:31 +0000814 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Douglas Gregordeacbdc2010-08-11 12:19:30 +0000815 } else if ((IDecl = dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl))) {
816 // If this is a forward declaration of an interface, warn.
817 if (IDecl->isForwardDecl()) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000818 Diag(ClassLoc, diag::warn_undef_interface) << ClassName;
Douglas Gregordeacbdc2010-08-11 12:19:30 +0000819 IDecl = 0;
Fariborz Jahanian77a6be42009-04-23 21:49:04 +0000820 }
Douglas Gregor95ff7422010-01-04 17:27:12 +0000821 } else {
822 // We did not find anything with the name ClassName; try to correct for
823 // typos in the class name.
Douglas Gregord8bba9c2011-06-28 16:20:02 +0000824 TypoCorrection Corrected = CorrectTypo(
825 DeclarationNameInfo(ClassName, ClassLoc), LookupOrdinaryName, TUScope,
826 NULL, NULL, false, CTC_NoKeywords);
827 if ((IDecl = Corrected.getCorrectionDeclAs<ObjCInterfaceDecl>())) {
Douglas Gregora6f26382010-01-06 23:44:25 +0000828 // Suggest the (potentially) correct interface name. However, put the
829 // fix-it hint itself in a separate note, since changing the name in
Douglas Gregordeacbdc2010-08-11 12:19:30 +0000830 // the warning would make the fix-it change semantics.However, don't
Douglas Gregor95ff7422010-01-04 17:27:12 +0000831 // provide a code-modification hint or use the typo name for recovery,
832 // because this is just a warning. The program may actually be correct.
Douglas Gregord8bba9c2011-06-28 16:20:02 +0000833 DeclarationName CorrectedName = Corrected.getCorrection();
Douglas Gregor95ff7422010-01-04 17:27:12 +0000834 Diag(ClassLoc, diag::warn_undef_interface_suggest)
Douglas Gregord8bba9c2011-06-28 16:20:02 +0000835 << ClassName << CorrectedName;
836 Diag(IDecl->getLocation(), diag::note_previous_decl) << CorrectedName
837 << FixItHint::CreateReplacement(ClassLoc, CorrectedName.getAsString());
Douglas Gregor95ff7422010-01-04 17:27:12 +0000838 IDecl = 0;
839 } else {
840 Diag(ClassLoc, diag::warn_undef_interface) << ClassName;
841 }
Chris Lattner4d391482007-12-12 07:09:47 +0000842 }
Mike Stump1eb44332009-09-09 15:08:12 +0000843
Chris Lattner4d391482007-12-12 07:09:47 +0000844 // Check that super class name is valid class name
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000845 ObjCInterfaceDecl* SDecl = 0;
Chris Lattner4d391482007-12-12 07:09:47 +0000846 if (SuperClassname) {
847 // Check if a different kind of symbol declared in this scope.
Douglas Gregorc83c6872010-04-15 22:33:43 +0000848 PrevDecl = LookupSingleName(TUScope, SuperClassname, SuperClassLoc,
849 LookupOrdinaryName);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000850 if (PrevDecl && !isa<ObjCInterfaceDecl>(PrevDecl)) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000851 Diag(SuperClassLoc, diag::err_redefinition_different_kind)
852 << SuperClassname;
Chris Lattner5f4a6822008-11-23 23:12:31 +0000853 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Chris Lattner3c73c412008-11-19 08:23:25 +0000854 } else {
Mike Stump1eb44332009-09-09 15:08:12 +0000855 SDecl = dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl);
Chris Lattner4d391482007-12-12 07:09:47 +0000856 if (!SDecl)
Chris Lattner3c73c412008-11-19 08:23:25 +0000857 Diag(SuperClassLoc, diag::err_undef_superclass)
858 << SuperClassname << ClassName;
Chris Lattner4d391482007-12-12 07:09:47 +0000859 else if (IDecl && IDecl->getSuperClass() != SDecl) {
860 // This implementation and its interface do not have the same
861 // super class.
Chris Lattner3c73c412008-11-19 08:23:25 +0000862 Diag(SuperClassLoc, diag::err_conflicting_super_class)
Chris Lattner08631c52008-11-23 21:45:46 +0000863 << SDecl->getDeclName();
Chris Lattner5f4a6822008-11-23 23:12:31 +0000864 Diag(SDecl->getLocation(), diag::note_previous_definition);
Chris Lattner4d391482007-12-12 07:09:47 +0000865 }
866 }
867 }
Mike Stump1eb44332009-09-09 15:08:12 +0000868
Chris Lattner4d391482007-12-12 07:09:47 +0000869 if (!IDecl) {
870 // Legacy case of @implementation with no corresponding @interface.
871 // Build, chain & install the interface decl into the identifier.
Daniel Dunbarf6414922008-08-20 18:02:42 +0000872
Mike Stump390b4cc2009-05-16 07:39:55 +0000873 // FIXME: Do we support attributes on the @implementation? If so we should
874 // copy them over.
Mike Stump1eb44332009-09-09 15:08:12 +0000875 IDecl = ObjCInterfaceDecl::Create(Context, CurContext, AtClassImplLoc,
Douglas Gregordeacbdc2010-08-11 12:19:30 +0000876 ClassName, ClassLoc, false, true);
Chris Lattner4d391482007-12-12 07:09:47 +0000877 IDecl->setSuperClass(SDecl);
878 IDecl->setLocEnd(ClassLoc);
Douglas Gregor8b9fb302009-04-24 00:16:12 +0000879
880 PushOnScopeChains(IDecl, TUScope);
Douglas Gregordeacbdc2010-08-11 12:19:30 +0000881 } else {
882 // Mark the interface as being completed, even if it was just as
883 // @class ....;
884 // declaration; the user cannot reopen it.
885 IDecl->setForwardDecl(false);
Chris Lattner4d391482007-12-12 07:09:47 +0000886 }
Mike Stump1eb44332009-09-09 15:08:12 +0000887
888 ObjCImplementationDecl* IMPDecl =
889 ObjCImplementationDecl::Create(Context, CurContext, AtClassImplLoc,
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000890 IDecl, SDecl);
Mike Stump1eb44332009-09-09 15:08:12 +0000891
Anders Carlsson15281452008-11-04 16:57:32 +0000892 if (CheckObjCDeclScope(IMPDecl))
John McCalld226f652010-08-21 09:40:31 +0000893 return IMPDecl;
Mike Stump1eb44332009-09-09 15:08:12 +0000894
Chris Lattner4d391482007-12-12 07:09:47 +0000895 // Check that there is no duplicate implementation of this class.
Douglas Gregordeacbdc2010-08-11 12:19:30 +0000896 if (IDecl->getImplementation()) {
897 // FIXME: Don't leak everything!
Chris Lattner3c73c412008-11-19 08:23:25 +0000898 Diag(ClassLoc, diag::err_dup_implementation_class) << ClassName;
Argyrios Kyrtzidis87018772009-07-21 00:06:04 +0000899 Diag(IDecl->getImplementation()->getLocation(),
900 diag::note_previous_definition);
Douglas Gregordeacbdc2010-08-11 12:19:30 +0000901 } else { // add it to the list.
Argyrios Kyrtzidis8a1d7222009-07-21 00:05:53 +0000902 IDecl->setImplementation(IMPDecl);
Douglas Gregor8fc463a2009-04-24 00:11:27 +0000903 PushOnScopeChains(IMPDecl, TUScope);
Fariborz Jahanianb1224f62011-02-15 00:59:30 +0000904 // Warn on implementating deprecated class under
905 // -Wdeprecated-implementations flag.
Fariborz Jahanian5ac96d52011-02-15 17:49:58 +0000906 DiagnoseObjCImplementedDeprecations(*this,
907 dyn_cast<NamedDecl>(IDecl),
908 IMPDecl->getLocation(), 1);
Argyrios Kyrtzidis8a1d7222009-07-21 00:05:53 +0000909 }
John McCalld226f652010-08-21 09:40:31 +0000910 return IMPDecl;
Chris Lattner4d391482007-12-12 07:09:47 +0000911}
912
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000913void Sema::CheckImplementationIvars(ObjCImplementationDecl *ImpDecl,
914 ObjCIvarDecl **ivars, unsigned numIvars,
Chris Lattner4d391482007-12-12 07:09:47 +0000915 SourceLocation RBrace) {
916 assert(ImpDecl && "missing implementation decl");
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000917 ObjCInterfaceDecl* IDecl = ImpDecl->getClassInterface();
Chris Lattner4d391482007-12-12 07:09:47 +0000918 if (!IDecl)
919 return;
920 /// Check case of non-existing @interface decl.
921 /// (legacy objective-c @implementation decl without an @interface decl).
922 /// Add implementations's ivar to the synthesize class's ivar list.
Steve Naroff33feeb02009-04-20 20:09:33 +0000923 if (IDecl->isImplicitInterfaceDecl()) {
Chris Lattner38af2de2009-02-20 21:35:13 +0000924 IDecl->setLocEnd(RBrace);
Fariborz Jahanian3a21cd92010-02-17 17:00:07 +0000925 // Add ivar's to class's DeclContext.
926 for (unsigned i = 0, e = numIvars; i != e; ++i) {
Fariborz Jahanian2f14c4d2010-02-17 18:10:54 +0000927 ivars[i]->setLexicalDeclContext(ImpDecl);
928 IDecl->makeDeclVisibleInContext(ivars[i], false);
Fariborz Jahanian11062e12010-02-19 00:31:17 +0000929 ImpDecl->addDecl(ivars[i]);
Fariborz Jahanian3a21cd92010-02-17 17:00:07 +0000930 }
931
Chris Lattner4d391482007-12-12 07:09:47 +0000932 return;
933 }
934 // If implementation has empty ivar list, just return.
935 if (numIvars == 0)
936 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000937
Chris Lattner4d391482007-12-12 07:09:47 +0000938 assert(ivars && "missing @implementation ivars");
Fariborz Jahanianbd94d442010-02-19 20:58:54 +0000939 if (LangOpts.ObjCNonFragileABI2) {
940 if (ImpDecl->getSuperClass())
941 Diag(ImpDecl->getLocation(), diag::warn_on_superclass_use);
942 for (unsigned i = 0; i < numIvars; i++) {
943 ObjCIvarDecl* ImplIvar = ivars[i];
944 if (const ObjCIvarDecl *ClsIvar =
945 IDecl->getIvarDecl(ImplIvar->getIdentifier())) {
946 Diag(ImplIvar->getLocation(), diag::err_duplicate_ivar_declaration);
947 Diag(ClsIvar->getLocation(), diag::note_previous_definition);
948 continue;
949 }
Fariborz Jahanianbd94d442010-02-19 20:58:54 +0000950 // Instance ivar to Implementation's DeclContext.
951 ImplIvar->setLexicalDeclContext(ImpDecl);
952 IDecl->makeDeclVisibleInContext(ImplIvar, false);
953 ImpDecl->addDecl(ImplIvar);
954 }
955 return;
956 }
Chris Lattner4d391482007-12-12 07:09:47 +0000957 // Check interface's Ivar list against those in the implementation.
958 // names and types must match.
959 //
Chris Lattner4d391482007-12-12 07:09:47 +0000960 unsigned j = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000961 ObjCInterfaceDecl::ivar_iterator
Chris Lattner4c525092007-12-12 17:58:05 +0000962 IVI = IDecl->ivar_begin(), IVE = IDecl->ivar_end();
963 for (; numIvars > 0 && IVI != IVE; ++IVI) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000964 ObjCIvarDecl* ImplIvar = ivars[j++];
965 ObjCIvarDecl* ClsIvar = *IVI;
Chris Lattner4d391482007-12-12 07:09:47 +0000966 assert (ImplIvar && "missing implementation ivar");
967 assert (ClsIvar && "missing class ivar");
Mike Stump1eb44332009-09-09 15:08:12 +0000968
Steve Naroffca331292009-03-03 14:49:36 +0000969 // First, make sure the types match.
Chris Lattner1b63eef2008-07-27 00:05:05 +0000970 if (Context.getCanonicalType(ImplIvar->getType()) !=
971 Context.getCanonicalType(ClsIvar->getType())) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000972 Diag(ImplIvar->getLocation(), diag::err_conflicting_ivar_type)
Chris Lattner08631c52008-11-23 21:45:46 +0000973 << ImplIvar->getIdentifier()
974 << ImplIvar->getType() << ClsIvar->getType();
Chris Lattner5f4a6822008-11-23 23:12:31 +0000975 Diag(ClsIvar->getLocation(), diag::note_previous_definition);
Steve Naroffca331292009-03-03 14:49:36 +0000976 } else if (ImplIvar->isBitField() && ClsIvar->isBitField()) {
977 Expr *ImplBitWidth = ImplIvar->getBitWidth();
978 Expr *ClsBitWidth = ClsIvar->getBitWidth();
Eli Friedman9a901bb2009-04-26 19:19:15 +0000979 if (ImplBitWidth->EvaluateAsInt(Context).getZExtValue() !=
980 ClsBitWidth->EvaluateAsInt(Context).getZExtValue()) {
Steve Naroffca331292009-03-03 14:49:36 +0000981 Diag(ImplBitWidth->getLocStart(), diag::err_conflicting_ivar_bitwidth)
982 << ImplIvar->getIdentifier();
983 Diag(ClsBitWidth->getLocStart(), diag::note_previous_definition);
984 }
Mike Stump1eb44332009-09-09 15:08:12 +0000985 }
Steve Naroffca331292009-03-03 14:49:36 +0000986 // Make sure the names are identical.
987 if (ImplIvar->getIdentifier() != ClsIvar->getIdentifier()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000988 Diag(ImplIvar->getLocation(), diag::err_conflicting_ivar_name)
Chris Lattner08631c52008-11-23 21:45:46 +0000989 << ImplIvar->getIdentifier() << ClsIvar->getIdentifier();
Chris Lattner5f4a6822008-11-23 23:12:31 +0000990 Diag(ClsIvar->getLocation(), diag::note_previous_definition);
Chris Lattner4d391482007-12-12 07:09:47 +0000991 }
992 --numIvars;
Chris Lattner4d391482007-12-12 07:09:47 +0000993 }
Mike Stump1eb44332009-09-09 15:08:12 +0000994
Chris Lattner609e4c72007-12-12 18:11:49 +0000995 if (numIvars > 0)
Chris Lattner0e391052007-12-12 18:19:52 +0000996 Diag(ivars[j]->getLocation(), diag::err_inconsistant_ivar_count);
Chris Lattner609e4c72007-12-12 18:11:49 +0000997 else if (IVI != IVE)
Chris Lattner0e391052007-12-12 18:19:52 +0000998 Diag((*IVI)->getLocation(), diag::err_inconsistant_ivar_count);
Chris Lattner4d391482007-12-12 07:09:47 +0000999}
1000
Steve Naroff3c2eb662008-02-10 21:38:56 +00001001void Sema::WarnUndefinedMethod(SourceLocation ImpLoc, ObjCMethodDecl *method,
Fariborz Jahanian52146832010-03-31 18:23:33 +00001002 bool &IncompleteImpl, unsigned DiagID) {
Fariborz Jahanian327126e2011-06-24 20:31:37 +00001003 // No point warning no definition of method which is 'unavailable'.
1004 if (method->hasAttr<UnavailableAttr>())
1005 return;
Steve Naroff3c2eb662008-02-10 21:38:56 +00001006 if (!IncompleteImpl) {
1007 Diag(ImpLoc, diag::warn_incomplete_impl);
1008 IncompleteImpl = true;
1009 }
Fariborz Jahanian61c8d3e2010-10-29 23:20:05 +00001010 if (DiagID == diag::warn_unimplemented_protocol_method)
1011 Diag(ImpLoc, DiagID) << method->getDeclName();
1012 else
1013 Diag(method->getLocation(), DiagID) << method->getDeclName();
Steve Naroff3c2eb662008-02-10 21:38:56 +00001014}
1015
David Chisnalle8a2d4c2010-10-25 17:23:52 +00001016/// Determines if type B can be substituted for type A. Returns true if we can
1017/// guarantee that anything that the user will do to an object of type A can
1018/// also be done to an object of type B. This is trivially true if the two
1019/// types are the same, or if B is a subclass of A. It becomes more complex
1020/// in cases where protocols are involved.
1021///
1022/// Object types in Objective-C describe the minimum requirements for an
1023/// object, rather than providing a complete description of a type. For
1024/// example, if A is a subclass of B, then B* may refer to an instance of A.
1025/// The principle of substitutability means that we may use an instance of A
1026/// anywhere that we may use an instance of B - it will implement all of the
1027/// ivars of B and all of the methods of B.
1028///
1029/// This substitutability is important when type checking methods, because
1030/// the implementation may have stricter type definitions than the interface.
1031/// The interface specifies minimum requirements, but the implementation may
1032/// have more accurate ones. For example, a method may privately accept
1033/// instances of B, but only publish that it accepts instances of A. Any
1034/// object passed to it will be type checked against B, and so will implicitly
1035/// by a valid A*. Similarly, a method may return a subclass of the class that
1036/// it is declared as returning.
1037///
1038/// This is most important when considering subclassing. A method in a
1039/// subclass must accept any object as an argument that its superclass's
1040/// implementation accepts. It may, however, accept a more general type
1041/// without breaking substitutability (i.e. you can still use the subclass
1042/// anywhere that you can use the superclass, but not vice versa). The
1043/// converse requirement applies to return types: the return type for a
1044/// subclass method must be a valid object of the kind that the superclass
1045/// advertises, but it may be specified more accurately. This avoids the need
1046/// for explicit down-casting by callers.
1047///
1048/// Note: This is a stricter requirement than for assignment.
John McCall10302c02010-10-28 02:34:38 +00001049static bool isObjCTypeSubstitutable(ASTContext &Context,
1050 const ObjCObjectPointerType *A,
1051 const ObjCObjectPointerType *B,
1052 bool rejectId) {
1053 // Reject a protocol-unqualified id.
1054 if (rejectId && B->isObjCIdType()) return false;
David Chisnalle8a2d4c2010-10-25 17:23:52 +00001055
1056 // If B is a qualified id, then A must also be a qualified id and it must
1057 // implement all of the protocols in B. It may not be a qualified class.
1058 // For example, MyClass<A> can be assigned to id<A>, but MyClass<A> is a
1059 // stricter definition so it is not substitutable for id<A>.
1060 if (B->isObjCQualifiedIdType()) {
1061 return A->isObjCQualifiedIdType() &&
John McCall10302c02010-10-28 02:34:38 +00001062 Context.ObjCQualifiedIdTypesAreCompatible(QualType(A, 0),
1063 QualType(B,0),
1064 false);
David Chisnalle8a2d4c2010-10-25 17:23:52 +00001065 }
1066
1067 /*
1068 // id is a special type that bypasses type checking completely. We want a
1069 // warning when it is used in one place but not another.
1070 if (C.isObjCIdType(A) || C.isObjCIdType(B)) return false;
1071
1072
1073 // If B is a qualified id, then A must also be a qualified id (which it isn't
1074 // if we've got this far)
1075 if (B->isObjCQualifiedIdType()) return false;
1076 */
1077
1078 // Now we know that A and B are (potentially-qualified) class types. The
1079 // normal rules for assignment apply.
John McCall10302c02010-10-28 02:34:38 +00001080 return Context.canAssignObjCInterfaces(A, B);
David Chisnalle8a2d4c2010-10-25 17:23:52 +00001081}
1082
John McCall10302c02010-10-28 02:34:38 +00001083static SourceRange getTypeRange(TypeSourceInfo *TSI) {
1084 return (TSI ? TSI->getTypeLoc().getSourceRange() : SourceRange());
1085}
1086
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001087static bool CheckMethodOverrideReturn(Sema &S,
John McCall10302c02010-10-28 02:34:38 +00001088 ObjCMethodDecl *MethodImpl,
Fariborz Jahanian21761c82011-02-21 23:49:15 +00001089 ObjCMethodDecl *MethodDecl,
Fariborz Jahanianeee3ef12011-07-24 20:53:26 +00001090 bool IsProtocolMethodDecl,
Fariborz Jahanian730cfb12011-08-10 17:16:30 +00001091 bool IsOverridingMode,
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001092 bool Warn) {
Fariborz Jahanian21761c82011-02-21 23:49:15 +00001093 if (IsProtocolMethodDecl &&
1094 (MethodDecl->getObjCDeclQualifier() !=
1095 MethodImpl->getObjCDeclQualifier())) {
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001096 if (Warn) {
Fariborz Jahanian730cfb12011-08-10 17:16:30 +00001097 S.Diag(MethodImpl->getLocation(),
1098 (IsOverridingMode ?
1099 diag::warn_conflicting_overriding_ret_type_modifiers
1100 : diag::warn_conflicting_ret_type_modifiers))
1101 << MethodImpl->getDeclName()
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001102 << getTypeRange(MethodImpl->getResultTypeSourceInfo());
1103 S.Diag(MethodDecl->getLocation(), diag::note_previous_declaration)
1104 << getTypeRange(MethodDecl->getResultTypeSourceInfo());
1105 }
1106 else
1107 return false;
Fariborz Jahanian21761c82011-02-21 23:49:15 +00001108 }
1109
John McCall10302c02010-10-28 02:34:38 +00001110 if (S.Context.hasSameUnqualifiedType(MethodImpl->getResultType(),
Fariborz Jahanian21761c82011-02-21 23:49:15 +00001111 MethodDecl->getResultType()))
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001112 return true;
1113 if (!Warn)
1114 return false;
John McCall10302c02010-10-28 02:34:38 +00001115
Fariborz Jahanian730cfb12011-08-10 17:16:30 +00001116 unsigned DiagID =
1117 IsOverridingMode ? diag::warn_conflicting_overriding_ret_types
1118 : diag::warn_conflicting_ret_types;
John McCall10302c02010-10-28 02:34:38 +00001119
1120 // Mismatches between ObjC pointers go into a different warning
1121 // category, and sometimes they're even completely whitelisted.
1122 if (const ObjCObjectPointerType *ImplPtrTy =
1123 MethodImpl->getResultType()->getAs<ObjCObjectPointerType>()) {
1124 if (const ObjCObjectPointerType *IfacePtrTy =
Fariborz Jahanian21761c82011-02-21 23:49:15 +00001125 MethodDecl->getResultType()->getAs<ObjCObjectPointerType>()) {
John McCall10302c02010-10-28 02:34:38 +00001126 // Allow non-matching return types as long as they don't violate
1127 // the principle of substitutability. Specifically, we permit
1128 // return types that are subclasses of the declared return type,
1129 // or that are more-qualified versions of the declared type.
1130 if (isObjCTypeSubstitutable(S.Context, IfacePtrTy, ImplPtrTy, false))
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001131 return false;
John McCall10302c02010-10-28 02:34:38 +00001132
Fariborz Jahanian730cfb12011-08-10 17:16:30 +00001133 DiagID =
1134 IsOverridingMode ? diag::warn_non_covariant_overriding_ret_types
1135 : diag::warn_non_covariant_ret_types;
John McCall10302c02010-10-28 02:34:38 +00001136 }
1137 }
1138
1139 S.Diag(MethodImpl->getLocation(), DiagID)
1140 << MethodImpl->getDeclName()
Fariborz Jahanian21761c82011-02-21 23:49:15 +00001141 << MethodDecl->getResultType()
John McCall10302c02010-10-28 02:34:38 +00001142 << MethodImpl->getResultType()
1143 << getTypeRange(MethodImpl->getResultTypeSourceInfo());
Fariborz Jahanian730cfb12011-08-10 17:16:30 +00001144 S.Diag(MethodDecl->getLocation(),
1145 IsOverridingMode ? diag::note_previous_declaration
1146 : diag::note_previous_definition)
Fariborz Jahanian21761c82011-02-21 23:49:15 +00001147 << getTypeRange(MethodDecl->getResultTypeSourceInfo());
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001148 return false;
John McCall10302c02010-10-28 02:34:38 +00001149}
1150
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001151static bool CheckMethodOverrideParam(Sema &S,
John McCall10302c02010-10-28 02:34:38 +00001152 ObjCMethodDecl *MethodImpl,
Fariborz Jahanian21761c82011-02-21 23:49:15 +00001153 ObjCMethodDecl *MethodDecl,
John McCall10302c02010-10-28 02:34:38 +00001154 ParmVarDecl *ImplVar,
Fariborz Jahanian21761c82011-02-21 23:49:15 +00001155 ParmVarDecl *IfaceVar,
Fariborz Jahanianeee3ef12011-07-24 20:53:26 +00001156 bool IsProtocolMethodDecl,
Fariborz Jahanian730cfb12011-08-10 17:16:30 +00001157 bool IsOverridingMode,
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001158 bool Warn) {
Fariborz Jahanian21761c82011-02-21 23:49:15 +00001159 if (IsProtocolMethodDecl &&
1160 (ImplVar->getObjCDeclQualifier() !=
1161 IfaceVar->getObjCDeclQualifier())) {
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001162 if (Warn) {
Fariborz Jahanian730cfb12011-08-10 17:16:30 +00001163 if (IsOverridingMode)
1164 S.Diag(ImplVar->getLocation(),
1165 diag::warn_conflicting_overriding_param_modifiers)
1166 << getTypeRange(ImplVar->getTypeSourceInfo())
1167 << MethodImpl->getDeclName();
1168 else S.Diag(ImplVar->getLocation(),
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001169 diag::warn_conflicting_param_modifiers)
1170 << getTypeRange(ImplVar->getTypeSourceInfo())
Fariborz Jahanian730cfb12011-08-10 17:16:30 +00001171 << MethodImpl->getDeclName();
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001172 S.Diag(IfaceVar->getLocation(), diag::note_previous_declaration)
1173 << getTypeRange(IfaceVar->getTypeSourceInfo());
1174 }
1175 else
1176 return false;
Fariborz Jahanian21761c82011-02-21 23:49:15 +00001177 }
1178
John McCall10302c02010-10-28 02:34:38 +00001179 QualType ImplTy = ImplVar->getType();
1180 QualType IfaceTy = IfaceVar->getType();
Fariborz Jahanian21761c82011-02-21 23:49:15 +00001181
John McCall10302c02010-10-28 02:34:38 +00001182 if (S.Context.hasSameUnqualifiedType(ImplTy, IfaceTy))
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001183 return true;
1184
1185 if (!Warn)
1186 return false;
Fariborz Jahanian730cfb12011-08-10 17:16:30 +00001187 unsigned DiagID =
1188 IsOverridingMode ? diag::warn_conflicting_overriding_param_types
1189 : diag::warn_conflicting_param_types;
John McCall10302c02010-10-28 02:34:38 +00001190
1191 // Mismatches between ObjC pointers go into a different warning
1192 // category, and sometimes they're even completely whitelisted.
1193 if (const ObjCObjectPointerType *ImplPtrTy =
1194 ImplTy->getAs<ObjCObjectPointerType>()) {
1195 if (const ObjCObjectPointerType *IfacePtrTy =
1196 IfaceTy->getAs<ObjCObjectPointerType>()) {
1197 // Allow non-matching argument types as long as they don't
1198 // violate the principle of substitutability. Specifically, the
1199 // implementation must accept any objects that the superclass
1200 // accepts, however it may also accept others.
1201 if (isObjCTypeSubstitutable(S.Context, ImplPtrTy, IfacePtrTy, true))
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001202 return false;
John McCall10302c02010-10-28 02:34:38 +00001203
Fariborz Jahanian730cfb12011-08-10 17:16:30 +00001204 DiagID =
1205 IsOverridingMode ? diag::warn_non_contravariant_overriding_param_types
1206 : diag::warn_non_contravariant_param_types;
John McCall10302c02010-10-28 02:34:38 +00001207 }
1208 }
1209
1210 S.Diag(ImplVar->getLocation(), DiagID)
1211 << getTypeRange(ImplVar->getTypeSourceInfo())
Fariborz Jahanian730cfb12011-08-10 17:16:30 +00001212 << MethodImpl->getDeclName() << IfaceTy << ImplTy;
1213 S.Diag(IfaceVar->getLocation(),
1214 (IsOverridingMode ? diag::note_previous_declaration
1215 : diag::note_previous_definition))
John McCall10302c02010-10-28 02:34:38 +00001216 << getTypeRange(IfaceVar->getTypeSourceInfo());
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001217 return false;
John McCall10302c02010-10-28 02:34:38 +00001218}
John McCallf85e1932011-06-15 23:02:42 +00001219
1220/// In ARC, check whether the conventional meanings of the two methods
1221/// match. If they don't, it's a hard error.
1222static bool checkMethodFamilyMismatch(Sema &S, ObjCMethodDecl *impl,
1223 ObjCMethodDecl *decl) {
1224 ObjCMethodFamily implFamily = impl->getMethodFamily();
1225 ObjCMethodFamily declFamily = decl->getMethodFamily();
1226 if (implFamily == declFamily) return false;
1227
1228 // Since conventions are sorted by selector, the only possibility is
1229 // that the types differ enough to cause one selector or the other
1230 // to fall out of the family.
1231 assert(implFamily == OMF_None || declFamily == OMF_None);
1232
1233 // No further diagnostics required on invalid declarations.
1234 if (impl->isInvalidDecl() || decl->isInvalidDecl()) return true;
1235
1236 const ObjCMethodDecl *unmatched = impl;
1237 ObjCMethodFamily family = declFamily;
1238 unsigned errorID = diag::err_arc_lost_method_convention;
1239 unsigned noteID = diag::note_arc_lost_method_convention;
1240 if (declFamily == OMF_None) {
1241 unmatched = decl;
1242 family = implFamily;
1243 errorID = diag::err_arc_gained_method_convention;
1244 noteID = diag::note_arc_gained_method_convention;
1245 }
1246
1247 // Indexes into a %select clause in the diagnostic.
1248 enum FamilySelector {
1249 F_alloc, F_copy, F_mutableCopy = F_copy, F_init, F_new
1250 };
1251 FamilySelector familySelector = FamilySelector();
1252
1253 switch (family) {
1254 case OMF_None: llvm_unreachable("logic error, no method convention");
1255 case OMF_retain:
1256 case OMF_release:
1257 case OMF_autorelease:
1258 case OMF_dealloc:
1259 case OMF_retainCount:
1260 case OMF_self:
Fariborz Jahanian9670e172011-07-05 22:38:59 +00001261 case OMF_performSelector:
John McCallf85e1932011-06-15 23:02:42 +00001262 // Mismatches for these methods don't change ownership
1263 // conventions, so we don't care.
1264 return false;
1265
1266 case OMF_init: familySelector = F_init; break;
1267 case OMF_alloc: familySelector = F_alloc; break;
1268 case OMF_copy: familySelector = F_copy; break;
1269 case OMF_mutableCopy: familySelector = F_mutableCopy; break;
1270 case OMF_new: familySelector = F_new; break;
1271 }
1272
1273 enum ReasonSelector { R_NonObjectReturn, R_UnrelatedReturn };
1274 ReasonSelector reasonSelector;
1275
1276 // The only reason these methods don't fall within their families is
1277 // due to unusual result types.
1278 if (unmatched->getResultType()->isObjCObjectPointerType()) {
1279 reasonSelector = R_UnrelatedReturn;
1280 } else {
1281 reasonSelector = R_NonObjectReturn;
1282 }
1283
1284 S.Diag(impl->getLocation(), errorID) << familySelector << reasonSelector;
1285 S.Diag(decl->getLocation(), noteID) << familySelector << reasonSelector;
1286
1287 return true;
1288}
John McCall10302c02010-10-28 02:34:38 +00001289
Fariborz Jahanian8daab972008-12-05 18:18:52 +00001290void Sema::WarnConflictingTypedMethods(ObjCMethodDecl *ImpMethodDecl,
Fariborz Jahanian21761c82011-02-21 23:49:15 +00001291 ObjCMethodDecl *MethodDecl,
Fariborz Jahanianeee3ef12011-07-24 20:53:26 +00001292 bool IsProtocolMethodDecl,
Fariborz Jahanian730cfb12011-08-10 17:16:30 +00001293 bool IsOverridingMode) {
John McCallf85e1932011-06-15 23:02:42 +00001294 if (getLangOptions().ObjCAutoRefCount &&
Fariborz Jahanian730cfb12011-08-10 17:16:30 +00001295 !IsOverridingMode &&
John McCallf85e1932011-06-15 23:02:42 +00001296 checkMethodFamilyMismatch(*this, ImpMethodDecl, MethodDecl))
1297 return;
1298
Fariborz Jahanian21761c82011-02-21 23:49:15 +00001299 CheckMethodOverrideReturn(*this, ImpMethodDecl, MethodDecl,
Fariborz Jahanian730cfb12011-08-10 17:16:30 +00001300 IsProtocolMethodDecl, IsOverridingMode,
1301 true);
Mike Stump1eb44332009-09-09 15:08:12 +00001302
Chris Lattner3aff9192009-04-11 19:58:42 +00001303 for (ObjCMethodDecl::param_iterator IM = ImpMethodDecl->param_begin(),
Fariborz Jahanian21761c82011-02-21 23:49:15 +00001304 IF = MethodDecl->param_begin(), EM = ImpMethodDecl->param_end();
Fariborz Jahanian21121902011-08-08 18:03:17 +00001305 IM != EM; ++IM, ++IF) {
Fariborz Jahanian730cfb12011-08-10 17:16:30 +00001306 CheckMethodOverrideParam(*this, ImpMethodDecl, MethodDecl, *IM, *IF,
1307 IsProtocolMethodDecl, IsOverridingMode, true);
Fariborz Jahanian21121902011-08-08 18:03:17 +00001308 }
Fariborz Jahanian730cfb12011-08-10 17:16:30 +00001309
Fariborz Jahanian21121902011-08-08 18:03:17 +00001310 if (ImpMethodDecl->isVariadic() != MethodDecl->isVariadic()) {
Fariborz Jahanian730cfb12011-08-10 17:16:30 +00001311 if (IsOverridingMode)
1312 Diag(ImpMethodDecl->getLocation(),
1313 diag::warn_conflicting_overriding_variadic);
1314 else
1315 Diag(ImpMethodDecl->getLocation(), diag::warn_conflicting_variadic);
Fariborz Jahanian21121902011-08-08 18:03:17 +00001316 Diag(MethodDecl->getLocation(), diag::note_previous_declaration);
Fariborz Jahanian21121902011-08-08 18:03:17 +00001317 }
Fariborz Jahanian21121902011-08-08 18:03:17 +00001318}
1319
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001320/// WarnExactTypedMethods - This routine issues a warning if method
1321/// implementation declaration matches exactly that of its declaration.
1322void Sema::WarnExactTypedMethods(ObjCMethodDecl *ImpMethodDecl,
1323 ObjCMethodDecl *MethodDecl,
1324 bool IsProtocolMethodDecl) {
1325 // don't issue warning when protocol method is optional because primary
1326 // class is not required to implement it and it is safe for protocol
1327 // to implement it.
1328 if (MethodDecl->getImplementationControl() == ObjCMethodDecl::Optional)
1329 return;
1330 // don't issue warning when primary class's method is
1331 // depecated/unavailable.
1332 if (MethodDecl->hasAttr<UnavailableAttr>() ||
1333 MethodDecl->hasAttr<DeprecatedAttr>())
1334 return;
1335
1336 bool match = CheckMethodOverrideReturn(*this, ImpMethodDecl, MethodDecl,
1337 IsProtocolMethodDecl, false, false);
1338 if (match)
1339 for (ObjCMethodDecl::param_iterator IM = ImpMethodDecl->param_begin(),
1340 IF = MethodDecl->param_begin(), EM = ImpMethodDecl->param_end();
1341 IM != EM; ++IM, ++IF) {
1342 match = CheckMethodOverrideParam(*this, ImpMethodDecl, MethodDecl,
1343 *IM, *IF,
1344 IsProtocolMethodDecl, false, false);
1345 if (!match)
1346 break;
1347 }
1348 if (match)
1349 match = (ImpMethodDecl->isVariadic() == MethodDecl->isVariadic());
David Chisnall7ca13ef2011-08-08 17:32:19 +00001350 if (match)
1351 match = !(MethodDecl->isClassMethod() &&
1352 MethodDecl->getSelector() == GetNullarySelector("load", Context));
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001353
1354 if (match) {
1355 Diag(ImpMethodDecl->getLocation(),
1356 diag::warn_category_method_impl_match);
1357 Diag(MethodDecl->getLocation(), diag::note_method_declared_at);
1358 }
1359}
1360
Mike Stump390b4cc2009-05-16 07:39:55 +00001361/// FIXME: Type hierarchies in Objective-C can be deep. We could most likely
1362/// improve the efficiency of selector lookups and type checking by associating
1363/// with each protocol / interface / category the flattened instance tables. If
1364/// we used an immutable set to keep the table then it wouldn't add significant
1365/// memory cost and it would be handy for lookups.
Daniel Dunbarb20ef3e2008-08-27 05:40:03 +00001366
Steve Naroffefe7f362008-02-08 22:06:17 +00001367/// CheckProtocolMethodDefs - This routine checks unimplemented methods
Chris Lattner4d391482007-12-12 07:09:47 +00001368/// Declared in protocol, and those referenced by it.
Steve Naroffefe7f362008-02-08 22:06:17 +00001369void Sema::CheckProtocolMethodDefs(SourceLocation ImpLoc,
1370 ObjCProtocolDecl *PDecl,
Chris Lattner4d391482007-12-12 07:09:47 +00001371 bool& IncompleteImpl,
Steve Naroffefe7f362008-02-08 22:06:17 +00001372 const llvm::DenseSet<Selector> &InsMap,
Daniel Dunbar7ad1b1f2008-09-04 20:01:15 +00001373 const llvm::DenseSet<Selector> &ClsMap,
Fariborz Jahanianf2838592010-03-27 21:10:05 +00001374 ObjCContainerDecl *CDecl) {
1375 ObjCInterfaceDecl *IDecl;
1376 if (ObjCCategoryDecl *C = dyn_cast<ObjCCategoryDecl>(CDecl))
1377 IDecl = C->getClassInterface();
1378 else
1379 IDecl = dyn_cast<ObjCInterfaceDecl>(CDecl);
1380 assert (IDecl && "CheckProtocolMethodDefs - IDecl is null");
1381
Daniel Dunbar7ad1b1f2008-09-04 20:01:15 +00001382 ObjCInterfaceDecl *Super = IDecl->getSuperClass();
Fariborz Jahaniancd187622009-05-22 17:12:32 +00001383 ObjCInterfaceDecl *NSIDecl = 0;
1384 if (getLangOptions().NeXTRuntime) {
Mike Stump1eb44332009-09-09 15:08:12 +00001385 // check to see if class implements forwardInvocation method and objects
1386 // of this class are derived from 'NSProxy' so that to forward requests
Fariborz Jahaniancd187622009-05-22 17:12:32 +00001387 // from one object to another.
Mike Stump1eb44332009-09-09 15:08:12 +00001388 // Under such conditions, which means that every method possible is
1389 // implemented in the class, we should not issue "Method definition not
Fariborz Jahaniancd187622009-05-22 17:12:32 +00001390 // found" warnings.
1391 // FIXME: Use a general GetUnarySelector method for this.
1392 IdentifierInfo* II = &Context.Idents.get("forwardInvocation");
1393 Selector fISelector = Context.Selectors.getSelector(1, &II);
1394 if (InsMap.count(fISelector))
1395 // Is IDecl derived from 'NSProxy'? If so, no instance methods
1396 // need be implemented in the implementation.
1397 NSIDecl = IDecl->lookupInheritedClass(&Context.Idents.get("NSProxy"));
1398 }
Mike Stump1eb44332009-09-09 15:08:12 +00001399
Daniel Dunbar7ad1b1f2008-09-04 20:01:15 +00001400 // If a method lookup fails locally we still need to look and see if
1401 // the method was implemented by a base class or an inherited
1402 // protocol. This lookup is slow, but occurs rarely in correct code
1403 // and otherwise would terminate in a warning.
1404
Chris Lattner4d391482007-12-12 07:09:47 +00001405 // check unimplemented instance methods.
Fariborz Jahaniancd187622009-05-22 17:12:32 +00001406 if (!NSIDecl)
Mike Stump1eb44332009-09-09 15:08:12 +00001407 for (ObjCProtocolDecl::instmeth_iterator I = PDecl->instmeth_begin(),
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001408 E = PDecl->instmeth_end(); I != E; ++I) {
Fariborz Jahaniancd187622009-05-22 17:12:32 +00001409 ObjCMethodDecl *method = *I;
Mike Stump1eb44332009-09-09 15:08:12 +00001410 if (method->getImplementationControl() != ObjCMethodDecl::Optional &&
Fariborz Jahaniancd187622009-05-22 17:12:32 +00001411 !method->isSynthesized() && !InsMap.count(method->getSelector()) &&
Mike Stump1eb44332009-09-09 15:08:12 +00001412 (!Super ||
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001413 !Super->lookupInstanceMethod(method->getSelector()))) {
Fariborz Jahaniancd187622009-05-22 17:12:32 +00001414 // Ugly, but necessary. Method declared in protcol might have
1415 // have been synthesized due to a property declared in the class which
1416 // uses the protocol.
Mike Stump1eb44332009-09-09 15:08:12 +00001417 ObjCMethodDecl *MethodInClass =
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001418 IDecl->lookupInstanceMethod(method->getSelector());
Fariborz Jahanian8822f7c2010-03-27 19:02:17 +00001419 if (!MethodInClass || !MethodInClass->isSynthesized()) {
Fariborz Jahanian52146832010-03-31 18:23:33 +00001420 unsigned DIAG = diag::warn_unimplemented_protocol_method;
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00001421 if (Diags.getDiagnosticLevel(DIAG, ImpLoc)
1422 != Diagnostic::Ignored) {
Fariborz Jahanian52146832010-03-31 18:23:33 +00001423 WarnUndefinedMethod(ImpLoc, method, IncompleteImpl, DIAG);
Fariborz Jahanian61c8d3e2010-10-29 23:20:05 +00001424 Diag(method->getLocation(), diag::note_method_declared_at);
Fariborz Jahanian52146832010-03-31 18:23:33 +00001425 Diag(CDecl->getLocation(), diag::note_required_for_protocol_at)
1426 << PDecl->getDeclName();
1427 }
Fariborz Jahanian8822f7c2010-03-27 19:02:17 +00001428 }
Fariborz Jahaniancd187622009-05-22 17:12:32 +00001429 }
1430 }
Chris Lattner4d391482007-12-12 07:09:47 +00001431 // check unimplemented class methods
Mike Stump1eb44332009-09-09 15:08:12 +00001432 for (ObjCProtocolDecl::classmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001433 I = PDecl->classmeth_begin(), E = PDecl->classmeth_end();
Douglas Gregor6ab35242009-04-09 21:40:53 +00001434 I != E; ++I) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001435 ObjCMethodDecl *method = *I;
Daniel Dunbar7ad1b1f2008-09-04 20:01:15 +00001436 if (method->getImplementationControl() != ObjCMethodDecl::Optional &&
1437 !ClsMap.count(method->getSelector()) &&
Fariborz Jahanian8822f7c2010-03-27 19:02:17 +00001438 (!Super || !Super->lookupClassMethod(method->getSelector()))) {
Fariborz Jahanian52146832010-03-31 18:23:33 +00001439 unsigned DIAG = diag::warn_unimplemented_protocol_method;
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00001440 if (Diags.getDiagnosticLevel(DIAG, ImpLoc) != Diagnostic::Ignored) {
Fariborz Jahanian52146832010-03-31 18:23:33 +00001441 WarnUndefinedMethod(ImpLoc, method, IncompleteImpl, DIAG);
Fariborz Jahanian61c8d3e2010-10-29 23:20:05 +00001442 Diag(method->getLocation(), diag::note_method_declared_at);
Fariborz Jahanian52146832010-03-31 18:23:33 +00001443 Diag(IDecl->getLocation(), diag::note_required_for_protocol_at) <<
1444 PDecl->getDeclName();
1445 }
Fariborz Jahanian8822f7c2010-03-27 19:02:17 +00001446 }
Steve Naroff58dbdeb2007-12-14 23:37:57 +00001447 }
Chris Lattner780f3292008-07-21 21:32:27 +00001448 // Check on this protocols's referenced protocols, recursively.
1449 for (ObjCProtocolDecl::protocol_iterator PI = PDecl->protocol_begin(),
1450 E = PDecl->protocol_end(); PI != E; ++PI)
Daniel Dunbar7ad1b1f2008-09-04 20:01:15 +00001451 CheckProtocolMethodDefs(ImpLoc, *PI, IncompleteImpl, InsMap, ClsMap, IDecl);
Chris Lattner4d391482007-12-12 07:09:47 +00001452}
1453
Fariborz Jahanian1e159bc2011-07-16 00:08:33 +00001454/// MatchAllMethodDeclarations - Check methods declared in interface
Fariborz Jahanianb33f3ad2009-05-01 20:07:12 +00001455/// or protocol against those declared in their implementations.
1456///
1457void Sema::MatchAllMethodDeclarations(const llvm::DenseSet<Selector> &InsMap,
1458 const llvm::DenseSet<Selector> &ClsMap,
1459 llvm::DenseSet<Selector> &InsMapSeen,
1460 llvm::DenseSet<Selector> &ClsMapSeen,
1461 ObjCImplDecl* IMPDecl,
1462 ObjCContainerDecl* CDecl,
1463 bool &IncompleteImpl,
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001464 bool ImmediateClass,
1465 bool WarnExactMatch) {
Fariborz Jahanianb33f3ad2009-05-01 20:07:12 +00001466 // Check and see if instance methods in class interface have been
1467 // implemented in the implementation class. If so, their types match.
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001468 for (ObjCInterfaceDecl::instmeth_iterator I = CDecl->instmeth_begin(),
1469 E = CDecl->instmeth_end(); I != E; ++I) {
Fariborz Jahanianb33f3ad2009-05-01 20:07:12 +00001470 if (InsMapSeen.count((*I)->getSelector()))
1471 continue;
1472 InsMapSeen.insert((*I)->getSelector());
Mike Stump1eb44332009-09-09 15:08:12 +00001473 if (!(*I)->isSynthesized() &&
Fariborz Jahanianb33f3ad2009-05-01 20:07:12 +00001474 !InsMap.count((*I)->getSelector())) {
1475 if (ImmediateClass)
Fariborz Jahanian52146832010-03-31 18:23:33 +00001476 WarnUndefinedMethod(IMPDecl->getLocation(), *I, IncompleteImpl,
1477 diag::note_undef_method_impl);
Fariborz Jahanianb33f3ad2009-05-01 20:07:12 +00001478 continue;
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001479 } else {
Mike Stump1eb44332009-09-09 15:08:12 +00001480 ObjCMethodDecl *ImpMethodDecl =
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001481 IMPDecl->getInstanceMethod((*I)->getSelector());
Fariborz Jahanian21761c82011-02-21 23:49:15 +00001482 ObjCMethodDecl *MethodDecl =
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001483 CDecl->getInstanceMethod((*I)->getSelector());
Fariborz Jahanian21761c82011-02-21 23:49:15 +00001484 assert(MethodDecl &&
1485 "MethodDecl is null in ImplMethodsVsClassMethods");
Fariborz Jahanianb33f3ad2009-05-01 20:07:12 +00001486 // ImpMethodDecl may be null as in a @dynamic property.
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001487 if (ImpMethodDecl) {
1488 if (!WarnExactMatch)
1489 WarnConflictingTypedMethods(ImpMethodDecl, MethodDecl,
1490 isa<ObjCProtocolDecl>(CDecl));
1491 else
1492 WarnExactTypedMethods(ImpMethodDecl, MethodDecl,
1493 isa<ObjCProtocolDecl>(CDecl));
1494 }
Fariborz Jahanianb33f3ad2009-05-01 20:07:12 +00001495 }
1496 }
Mike Stump1eb44332009-09-09 15:08:12 +00001497
Fariborz Jahanianb33f3ad2009-05-01 20:07:12 +00001498 // Check and see if class methods in class interface have been
1499 // implemented in the implementation class. If so, their types match.
Mike Stump1eb44332009-09-09 15:08:12 +00001500 for (ObjCInterfaceDecl::classmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001501 I = CDecl->classmeth_begin(), E = CDecl->classmeth_end(); I != E; ++I) {
Fariborz Jahanianb33f3ad2009-05-01 20:07:12 +00001502 if (ClsMapSeen.count((*I)->getSelector()))
1503 continue;
1504 ClsMapSeen.insert((*I)->getSelector());
1505 if (!ClsMap.count((*I)->getSelector())) {
1506 if (ImmediateClass)
Fariborz Jahanian52146832010-03-31 18:23:33 +00001507 WarnUndefinedMethod(IMPDecl->getLocation(), *I, IncompleteImpl,
1508 diag::note_undef_method_impl);
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001509 } else {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001510 ObjCMethodDecl *ImpMethodDecl =
1511 IMPDecl->getClassMethod((*I)->getSelector());
Fariborz Jahanian21761c82011-02-21 23:49:15 +00001512 ObjCMethodDecl *MethodDecl =
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001513 CDecl->getClassMethod((*I)->getSelector());
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001514 if (!WarnExactMatch)
1515 WarnConflictingTypedMethods(ImpMethodDecl, MethodDecl,
1516 isa<ObjCProtocolDecl>(CDecl));
1517 else
1518 WarnExactTypedMethods(ImpMethodDecl, MethodDecl,
1519 isa<ObjCProtocolDecl>(CDecl));
Fariborz Jahanianb33f3ad2009-05-01 20:07:12 +00001520 }
1521 }
Fariborz Jahanianf54e3ae2010-10-08 22:59:25 +00001522
Fariborz Jahanianb33f3ad2009-05-01 20:07:12 +00001523 if (ObjCInterfaceDecl *I = dyn_cast<ObjCInterfaceDecl> (CDecl)) {
Fariborz Jahanianf54e3ae2010-10-08 22:59:25 +00001524 // Also methods in class extensions need be looked at next.
1525 for (const ObjCCategoryDecl *ClsExtDecl = I->getFirstClassExtension();
1526 ClsExtDecl; ClsExtDecl = ClsExtDecl->getNextClassExtension())
1527 MatchAllMethodDeclarations(InsMap, ClsMap, InsMapSeen, ClsMapSeen,
1528 IMPDecl,
1529 const_cast<ObjCCategoryDecl *>(ClsExtDecl),
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001530 IncompleteImpl, false, WarnExactMatch);
Fariborz Jahanianf54e3ae2010-10-08 22:59:25 +00001531
Fariborz Jahanianb33f3ad2009-05-01 20:07:12 +00001532 // Check for any implementation of a methods declared in protocol.
Ted Kremenek53b94412010-09-01 01:21:15 +00001533 for (ObjCInterfaceDecl::all_protocol_iterator
1534 PI = I->all_referenced_protocol_begin(),
1535 E = I->all_referenced_protocol_end(); PI != E; ++PI)
Mike Stump1eb44332009-09-09 15:08:12 +00001536 MatchAllMethodDeclarations(InsMap, ClsMap, InsMapSeen, ClsMapSeen,
1537 IMPDecl,
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001538 (*PI), IncompleteImpl, false, WarnExactMatch);
Fariborz Jahanianeee3ef12011-07-24 20:53:26 +00001539
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001540 // FIXME. For now, we are not checking for extact match of methods
1541 // in category implementation and its primary class's super class.
1542 if (!WarnExactMatch && I->getSuperClass())
Fariborz Jahanianb33f3ad2009-05-01 20:07:12 +00001543 MatchAllMethodDeclarations(InsMap, ClsMap, InsMapSeen, ClsMapSeen,
Mike Stump1eb44332009-09-09 15:08:12 +00001544 IMPDecl,
Fariborz Jahanianb33f3ad2009-05-01 20:07:12 +00001545 I->getSuperClass(), IncompleteImpl, false);
1546 }
1547}
1548
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001549/// CheckCategoryVsClassMethodMatches - Checks that methods implemented in
1550/// category matches with those implemented in its primary class and
1551/// warns each time an exact match is found.
1552void Sema::CheckCategoryVsClassMethodMatches(
1553 ObjCCategoryImplDecl *CatIMPDecl) {
1554 llvm::DenseSet<Selector> InsMap, ClsMap;
1555
1556 for (ObjCImplementationDecl::instmeth_iterator
1557 I = CatIMPDecl->instmeth_begin(),
1558 E = CatIMPDecl->instmeth_end(); I!=E; ++I)
1559 InsMap.insert((*I)->getSelector());
1560
1561 for (ObjCImplementationDecl::classmeth_iterator
1562 I = CatIMPDecl->classmeth_begin(),
1563 E = CatIMPDecl->classmeth_end(); I != E; ++I)
1564 ClsMap.insert((*I)->getSelector());
1565 if (InsMap.empty() && ClsMap.empty())
1566 return;
1567
1568 // Get category's primary class.
1569 ObjCCategoryDecl *CatDecl = CatIMPDecl->getCategoryDecl();
1570 if (!CatDecl)
1571 return;
1572 ObjCInterfaceDecl *IDecl = CatDecl->getClassInterface();
1573 if (!IDecl)
1574 return;
1575 llvm::DenseSet<Selector> InsMapSeen, ClsMapSeen;
1576 bool IncompleteImpl = false;
1577 MatchAllMethodDeclarations(InsMap, ClsMap, InsMapSeen, ClsMapSeen,
1578 CatIMPDecl, IDecl,
1579 IncompleteImpl, false, true /*WarnExactMatch*/);
1580}
Fariborz Jahanianeee3ef12011-07-24 20:53:26 +00001581
Fariborz Jahanian17cb3262010-05-05 21:52:17 +00001582void Sema::ImplMethodsVsClassMethods(Scope *S, ObjCImplDecl* IMPDecl,
Mike Stump1eb44332009-09-09 15:08:12 +00001583 ObjCContainerDecl* CDecl,
Chris Lattnercddc8882009-03-01 00:56:52 +00001584 bool IncompleteImpl) {
Chris Lattner4d391482007-12-12 07:09:47 +00001585 llvm::DenseSet<Selector> InsMap;
1586 // Check and see if instance methods in class interface have been
1587 // implemented in the implementation class.
Mike Stump1eb44332009-09-09 15:08:12 +00001588 for (ObjCImplementationDecl::instmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001589 I = IMPDecl->instmeth_begin(), E = IMPDecl->instmeth_end(); I!=E; ++I)
Chris Lattner4c525092007-12-12 17:58:05 +00001590 InsMap.insert((*I)->getSelector());
Mike Stump1eb44332009-09-09 15:08:12 +00001591
Fariborz Jahanian12bac252009-04-14 23:15:21 +00001592 // Check and see if properties declared in the interface have either 1)
1593 // an implementation or 2) there is a @synthesize/@dynamic implementation
1594 // of the property in the @implementation.
Ted Kremenekc32647d2010-12-23 21:35:43 +00001595 if (isa<ObjCInterfaceDecl>(CDecl) &&
1596 !(LangOpts.ObjCDefaultSynthProperties && LangOpts.ObjCNonFragileABI2))
Fariborz Jahanian17cb3262010-05-05 21:52:17 +00001597 DiagnoseUnimplementedProperties(S, IMPDecl, CDecl, InsMap);
Fariborz Jahanian3ac1eda2010-01-20 01:51:55 +00001598
Chris Lattner4d391482007-12-12 07:09:47 +00001599 llvm::DenseSet<Selector> ClsMap;
Mike Stump1eb44332009-09-09 15:08:12 +00001600 for (ObjCImplementationDecl::classmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001601 I = IMPDecl->classmeth_begin(),
1602 E = IMPDecl->classmeth_end(); I != E; ++I)
Chris Lattner4c525092007-12-12 17:58:05 +00001603 ClsMap.insert((*I)->getSelector());
Mike Stump1eb44332009-09-09 15:08:12 +00001604
Fariborz Jahanianb33f3ad2009-05-01 20:07:12 +00001605 // Check for type conflict of methods declared in a class/protocol and
1606 // its implementation; if any.
1607 llvm::DenseSet<Selector> InsMapSeen, ClsMapSeen;
Mike Stump1eb44332009-09-09 15:08:12 +00001608 MatchAllMethodDeclarations(InsMap, ClsMap, InsMapSeen, ClsMapSeen,
1609 IMPDecl, CDecl,
Fariborz Jahanianb33f3ad2009-05-01 20:07:12 +00001610 IncompleteImpl, true);
Fariborz Jahanian74133072011-08-03 18:21:12 +00001611
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001612 // check all methods implemented in category against those declared
1613 // in its primary class.
1614 if (ObjCCategoryImplDecl *CatDecl =
1615 dyn_cast<ObjCCategoryImplDecl>(IMPDecl))
1616 CheckCategoryVsClassMethodMatches(CatDecl);
Mike Stump1eb44332009-09-09 15:08:12 +00001617
Chris Lattner4d391482007-12-12 07:09:47 +00001618 // Check the protocol list for unimplemented methods in the @implementation
1619 // class.
Fariborz Jahanianb33f3ad2009-05-01 20:07:12 +00001620 // Check and see if class methods in class interface have been
1621 // implemented in the implementation class.
Mike Stump1eb44332009-09-09 15:08:12 +00001622
Chris Lattnercddc8882009-03-01 00:56:52 +00001623 if (ObjCInterfaceDecl *I = dyn_cast<ObjCInterfaceDecl> (CDecl)) {
Ted Kremenek53b94412010-09-01 01:21:15 +00001624 for (ObjCInterfaceDecl::all_protocol_iterator
1625 PI = I->all_referenced_protocol_begin(),
1626 E = I->all_referenced_protocol_end(); PI != E; ++PI)
Mike Stump1eb44332009-09-09 15:08:12 +00001627 CheckProtocolMethodDefs(IMPDecl->getLocation(), *PI, IncompleteImpl,
Chris Lattnercddc8882009-03-01 00:56:52 +00001628 InsMap, ClsMap, I);
1629 // Check class extensions (unnamed categories)
Fariborz Jahanian80aa1cd2010-06-22 23:20:40 +00001630 for (const ObjCCategoryDecl *Categories = I->getFirstClassExtension();
1631 Categories; Categories = Categories->getNextClassExtension())
1632 ImplMethodsVsClassMethods(S, IMPDecl,
1633 const_cast<ObjCCategoryDecl*>(Categories),
1634 IncompleteImpl);
Chris Lattnercddc8882009-03-01 00:56:52 +00001635 } else if (ObjCCategoryDecl *C = dyn_cast<ObjCCategoryDecl>(CDecl)) {
Fariborz Jahanianb106fc62009-10-05 21:32:49 +00001636 // For extended class, unimplemented methods in its protocols will
1637 // be reported in the primary class.
Fariborz Jahanian25760612010-02-15 21:55:26 +00001638 if (!C->IsClassExtension()) {
Fariborz Jahanianb106fc62009-10-05 21:32:49 +00001639 for (ObjCCategoryDecl::protocol_iterator PI = C->protocol_begin(),
1640 E = C->protocol_end(); PI != E; ++PI)
1641 CheckProtocolMethodDefs(IMPDecl->getLocation(), *PI, IncompleteImpl,
Fariborz Jahanianf2838592010-03-27 21:10:05 +00001642 InsMap, ClsMap, CDecl);
Fariborz Jahanian3ad230e2010-01-20 19:36:21 +00001643 // Report unimplemented properties in the category as well.
1644 // When reporting on missing setter/getters, do not report when
1645 // setter/getter is implemented in category's primary class
1646 // implementation.
1647 if (ObjCInterfaceDecl *ID = C->getClassInterface())
1648 if (ObjCImplDecl *IMP = ID->getImplementation()) {
1649 for (ObjCImplementationDecl::instmeth_iterator
1650 I = IMP->instmeth_begin(), E = IMP->instmeth_end(); I!=E; ++I)
1651 InsMap.insert((*I)->getSelector());
1652 }
Fariborz Jahanian17cb3262010-05-05 21:52:17 +00001653 DiagnoseUnimplementedProperties(S, IMPDecl, CDecl, InsMap);
Fariborz Jahanian3ad230e2010-01-20 19:36:21 +00001654 }
Chris Lattnercddc8882009-03-01 00:56:52 +00001655 } else
1656 assert(false && "invalid ObjCContainerDecl type.");
Chris Lattner4d391482007-12-12 07:09:47 +00001657}
1658
Mike Stump1eb44332009-09-09 15:08:12 +00001659/// ActOnForwardClassDeclaration -
Fariborz Jahanianf09530f2011-08-25 21:09:22 +00001660Decl *
Chris Lattner4d391482007-12-12 07:09:47 +00001661Sema::ActOnForwardClassDeclaration(SourceLocation AtClassLoc,
Chris Lattnerbdbde4d2009-02-16 19:25:52 +00001662 IdentifierInfo **IdentList,
Ted Kremenekc09cba62009-11-17 23:12:20 +00001663 SourceLocation *IdentLocs,
Chris Lattnerbdbde4d2009-02-16 19:25:52 +00001664 unsigned NumElts) {
Fariborz Jahanianf09530f2011-08-25 21:09:22 +00001665 SmallVector<ObjCInterfaceDecl*, 32> Interfaces;
1666
Chris Lattner4d391482007-12-12 07:09:47 +00001667 for (unsigned i = 0; i != NumElts; ++i) {
1668 // Check for another declaration kind with the same name.
John McCallf36e02d2009-10-09 21:13:30 +00001669 NamedDecl *PrevDecl
Douglas Gregorc83c6872010-04-15 22:33:43 +00001670 = LookupSingleName(TUScope, IdentList[i], IdentLocs[i],
Douglas Gregorc0b39642010-04-15 23:40:53 +00001671 LookupOrdinaryName, ForRedeclaration);
Douglas Gregorf57172b2008-12-08 18:40:42 +00001672 if (PrevDecl && PrevDecl->isTemplateParameter()) {
Douglas Gregor72c3f312008-12-05 18:15:24 +00001673 // Maybe we will complain about the shadowed template parameter.
1674 DiagnoseTemplateParameterShadow(AtClassLoc, PrevDecl);
1675 // Just pretend that we didn't see the previous declaration.
1676 PrevDecl = 0;
1677 }
1678
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001679 if (PrevDecl && !isa<ObjCInterfaceDecl>(PrevDecl)) {
Steve Naroffc7333882008-06-05 22:57:10 +00001680 // GCC apparently allows the following idiom:
1681 //
1682 // typedef NSObject < XCElementTogglerP > XCElementToggler;
1683 // @class XCElementToggler;
1684 //
Mike Stump1eb44332009-09-09 15:08:12 +00001685 // FIXME: Make an extension?
Richard Smith162e1c12011-04-15 14:24:37 +00001686 TypedefNameDecl *TDD = dyn_cast<TypedefNameDecl>(PrevDecl);
John McCallc12c5bb2010-05-15 11:32:37 +00001687 if (!TDD || !TDD->getUnderlyingType()->isObjCObjectType()) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001688 Diag(AtClassLoc, diag::err_redefinition_different_kind) << IdentList[i];
Chris Lattner5f4a6822008-11-23 23:12:31 +00001689 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
John McCallc12c5bb2010-05-15 11:32:37 +00001690 } else {
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001691 // a forward class declaration matching a typedef name of a class refers
1692 // to the underlying class.
John McCallc12c5bb2010-05-15 11:32:37 +00001693 if (const ObjCObjectType *OI =
1694 TDD->getUnderlyingType()->getAs<ObjCObjectType>())
1695 PrevDecl = OI->getInterface();
Fariborz Jahaniancae27c52009-05-07 21:49:26 +00001696 }
Chris Lattner4d391482007-12-12 07:09:47 +00001697 }
Douglas Gregordeacbdc2010-08-11 12:19:30 +00001698 ObjCInterfaceDecl *IDecl = dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl);
1699 if (!IDecl) { // Not already seen? Make a forward decl.
1700 IDecl = ObjCInterfaceDecl::Create(Context, CurContext, AtClassLoc,
1701 IdentList[i], IdentLocs[i], true);
1702
1703 // Push the ObjCInterfaceDecl on the scope chain but do *not* add it to
1704 // the current DeclContext. This prevents clients that walk DeclContext
1705 // from seeing the imaginary ObjCInterfaceDecl until it is actually
1706 // declared later (if at all). We also take care to explicitly make
1707 // sure this declaration is visible for name lookup.
1708 PushOnScopeChains(IDecl, TUScope, false);
1709 CurContext->makeDeclVisibleInContext(IDecl, true);
1710 }
Chris Lattner4d391482007-12-12 07:09:47 +00001711
1712 Interfaces.push_back(IDecl);
1713 }
Fariborz Jahanianf09530f2011-08-25 21:09:22 +00001714
1715 assert(Interfaces.size() == NumElts);
1716 ObjCClassDecl *CDecl = ObjCClassDecl::Create(Context, CurContext, AtClassLoc,
1717 Interfaces.data(), IdentLocs,
1718 Interfaces.size());
1719 CurContext->addDecl(CDecl);
1720 CheckObjCDeclScope(CDecl);
1721 return CDecl;
Chris Lattner4d391482007-12-12 07:09:47 +00001722}
1723
John McCall0f4c4c42011-06-16 01:15:19 +00001724static bool tryMatchRecordTypes(ASTContext &Context,
1725 Sema::MethodMatchStrategy strategy,
1726 const Type *left, const Type *right);
1727
John McCallf85e1932011-06-15 23:02:42 +00001728static bool matchTypes(ASTContext &Context, Sema::MethodMatchStrategy strategy,
1729 QualType leftQT, QualType rightQT) {
1730 const Type *left =
1731 Context.getCanonicalType(leftQT).getUnqualifiedType().getTypePtr();
1732 const Type *right =
1733 Context.getCanonicalType(rightQT).getUnqualifiedType().getTypePtr();
1734
1735 if (left == right) return true;
1736
1737 // If we're doing a strict match, the types have to match exactly.
1738 if (strategy == Sema::MMS_strict) return false;
1739
1740 if (left->isIncompleteType() || right->isIncompleteType()) return false;
1741
1742 // Otherwise, use this absurdly complicated algorithm to try to
1743 // validate the basic, low-level compatibility of the two types.
1744
1745 // As a minimum, require the sizes and alignments to match.
1746 if (Context.getTypeInfo(left) != Context.getTypeInfo(right))
1747 return false;
1748
1749 // Consider all the kinds of non-dependent canonical types:
1750 // - functions and arrays aren't possible as return and parameter types
1751
1752 // - vector types of equal size can be arbitrarily mixed
1753 if (isa<VectorType>(left)) return isa<VectorType>(right);
1754 if (isa<VectorType>(right)) return false;
1755
1756 // - references should only match references of identical type
John McCall0f4c4c42011-06-16 01:15:19 +00001757 // - structs, unions, and Objective-C objects must match more-or-less
1758 // exactly
John McCallf85e1932011-06-15 23:02:42 +00001759 // - everything else should be a scalar
1760 if (!left->isScalarType() || !right->isScalarType())
John McCall0f4c4c42011-06-16 01:15:19 +00001761 return tryMatchRecordTypes(Context, strategy, left, right);
John McCallf85e1932011-06-15 23:02:42 +00001762
1763 // Make scalars agree in kind, except count bools as chars.
1764 Type::ScalarTypeKind leftSK = left->getScalarTypeKind();
1765 Type::ScalarTypeKind rightSK = right->getScalarTypeKind();
1766 if (leftSK == Type::STK_Bool) leftSK = Type::STK_Integral;
1767 if (rightSK == Type::STK_Bool) rightSK = Type::STK_Integral;
1768
1769 // Note that data member pointers and function member pointers don't
1770 // intermix because of the size differences.
1771
1772 return (leftSK == rightSK);
1773}
Chris Lattner4d391482007-12-12 07:09:47 +00001774
John McCall0f4c4c42011-06-16 01:15:19 +00001775static bool tryMatchRecordTypes(ASTContext &Context,
1776 Sema::MethodMatchStrategy strategy,
1777 const Type *lt, const Type *rt) {
1778 assert(lt && rt && lt != rt);
1779
1780 if (!isa<RecordType>(lt) || !isa<RecordType>(rt)) return false;
1781 RecordDecl *left = cast<RecordType>(lt)->getDecl();
1782 RecordDecl *right = cast<RecordType>(rt)->getDecl();
1783
1784 // Require union-hood to match.
1785 if (left->isUnion() != right->isUnion()) return false;
1786
1787 // Require an exact match if either is non-POD.
1788 if ((isa<CXXRecordDecl>(left) && !cast<CXXRecordDecl>(left)->isPOD()) ||
1789 (isa<CXXRecordDecl>(right) && !cast<CXXRecordDecl>(right)->isPOD()))
1790 return false;
1791
1792 // Require size and alignment to match.
1793 if (Context.getTypeInfo(lt) != Context.getTypeInfo(rt)) return false;
1794
1795 // Require fields to match.
1796 RecordDecl::field_iterator li = left->field_begin(), le = left->field_end();
1797 RecordDecl::field_iterator ri = right->field_begin(), re = right->field_end();
1798 for (; li != le && ri != re; ++li, ++ri) {
1799 if (!matchTypes(Context, strategy, li->getType(), ri->getType()))
1800 return false;
1801 }
1802 return (li == le && ri == re);
1803}
1804
Chris Lattner4d391482007-12-12 07:09:47 +00001805/// MatchTwoMethodDeclarations - Checks that two methods have matching type and
1806/// returns true, or false, accordingly.
1807/// TODO: Handle protocol list; such as id<p1,p2> in type comparisons
John McCallf85e1932011-06-15 23:02:42 +00001808bool Sema::MatchTwoMethodDeclarations(const ObjCMethodDecl *left,
1809 const ObjCMethodDecl *right,
1810 MethodMatchStrategy strategy) {
1811 if (!matchTypes(Context, strategy,
1812 left->getResultType(), right->getResultType()))
1813 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001814
John McCallf85e1932011-06-15 23:02:42 +00001815 if (getLangOptions().ObjCAutoRefCount &&
1816 (left->hasAttr<NSReturnsRetainedAttr>()
1817 != right->hasAttr<NSReturnsRetainedAttr>() ||
1818 left->hasAttr<NSConsumesSelfAttr>()
1819 != right->hasAttr<NSConsumesSelfAttr>()))
1820 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001821
John McCallf85e1932011-06-15 23:02:42 +00001822 ObjCMethodDecl::param_iterator
1823 li = left->param_begin(), le = left->param_end(), ri = right->param_begin();
Mike Stump1eb44332009-09-09 15:08:12 +00001824
John McCallf85e1932011-06-15 23:02:42 +00001825 for (; li != le; ++li, ++ri) {
1826 assert(ri != right->param_end() && "Param mismatch");
1827 ParmVarDecl *lparm = *li, *rparm = *ri;
1828
1829 if (!matchTypes(Context, strategy, lparm->getType(), rparm->getType()))
1830 return false;
1831
1832 if (getLangOptions().ObjCAutoRefCount &&
1833 lparm->hasAttr<NSConsumedAttr>() != rparm->hasAttr<NSConsumedAttr>())
1834 return false;
Chris Lattner4d391482007-12-12 07:09:47 +00001835 }
1836 return true;
1837}
1838
Sebastian Redldb9d2142010-08-02 23:18:59 +00001839/// \brief Read the contents of the method pool for a given selector from
1840/// external storage.
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001841///
Sebastian Redldb9d2142010-08-02 23:18:59 +00001842/// This routine should only be called once, when the method pool has no entry
1843/// for this selector.
1844Sema::GlobalMethodPool::iterator Sema::ReadMethodPool(Selector Sel) {
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001845 assert(ExternalSource && "We need an external AST source");
Sebastian Redldb9d2142010-08-02 23:18:59 +00001846 assert(MethodPool.find(Sel) == MethodPool.end() &&
1847 "Selector data already loaded into the method pool");
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001848
1849 // Read the method list from the external source.
Sebastian Redldb9d2142010-08-02 23:18:59 +00001850 GlobalMethods Methods = ExternalSource->ReadMethodPool(Sel);
Mike Stump1eb44332009-09-09 15:08:12 +00001851
Sebastian Redldb9d2142010-08-02 23:18:59 +00001852 return MethodPool.insert(std::make_pair(Sel, Methods)).first;
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001853}
1854
Sebastian Redldb9d2142010-08-02 23:18:59 +00001855void Sema::AddMethodToGlobalPool(ObjCMethodDecl *Method, bool impl,
1856 bool instance) {
1857 GlobalMethodPool::iterator Pos = MethodPool.find(Method->getSelector());
1858 if (Pos == MethodPool.end()) {
1859 if (ExternalSource)
1860 Pos = ReadMethodPool(Method->getSelector());
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001861 else
Sebastian Redldb9d2142010-08-02 23:18:59 +00001862 Pos = MethodPool.insert(std::make_pair(Method->getSelector(),
1863 GlobalMethods())).first;
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001864 }
Fariborz Jahanian3fe10412010-07-22 18:24:20 +00001865 Method->setDefined(impl);
Sebastian Redldb9d2142010-08-02 23:18:59 +00001866 ObjCMethodList &Entry = instance ? Pos->second.first : Pos->second.second;
Chris Lattnerb25df352009-03-04 05:16:45 +00001867 if (Entry.Method == 0) {
Chris Lattner4d391482007-12-12 07:09:47 +00001868 // Haven't seen a method with this selector name yet - add it.
Chris Lattnerb25df352009-03-04 05:16:45 +00001869 Entry.Method = Method;
1870 Entry.Next = 0;
1871 return;
Chris Lattner4d391482007-12-12 07:09:47 +00001872 }
Mike Stump1eb44332009-09-09 15:08:12 +00001873
Chris Lattnerb25df352009-03-04 05:16:45 +00001874 // We've seen a method with this name, see if we have already seen this type
1875 // signature.
John McCallf85e1932011-06-15 23:02:42 +00001876 for (ObjCMethodList *List = &Entry; List; List = List->Next) {
1877 bool match = MatchTwoMethodDeclarations(Method, List->Method);
1878
1879 if (match) {
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00001880 ObjCMethodDecl *PrevObjCMethod = List->Method;
1881 PrevObjCMethod->setDefined(impl);
1882 // If a method is deprecated, push it in the global pool.
1883 // This is used for better diagnostics.
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001884 if (Method->isDeprecated()) {
1885 if (!PrevObjCMethod->isDeprecated())
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00001886 List->Method = Method;
1887 }
1888 // If new method is unavailable, push it into global pool
1889 // unless previous one is deprecated.
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001890 if (Method->isUnavailable()) {
1891 if (PrevObjCMethod->getAvailability() < AR_Deprecated)
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00001892 List->Method = Method;
1893 }
Chris Lattnerb25df352009-03-04 05:16:45 +00001894 return;
Fariborz Jahanian3fe10412010-07-22 18:24:20 +00001895 }
John McCallf85e1932011-06-15 23:02:42 +00001896 }
Mike Stump1eb44332009-09-09 15:08:12 +00001897
Chris Lattnerb25df352009-03-04 05:16:45 +00001898 // We have a new signature for an existing method - add it.
1899 // This is extremely rare. Only 1% of Cocoa selectors are "overloaded".
Ted Kremenek298ed872010-02-11 00:53:01 +00001900 ObjCMethodList *Mem = BumpAlloc.Allocate<ObjCMethodList>();
1901 Entry.Next = new (Mem) ObjCMethodList(Method, Entry.Next);
Chris Lattner4d391482007-12-12 07:09:47 +00001902}
1903
John McCallf85e1932011-06-15 23:02:42 +00001904/// Determines if this is an "acceptable" loose mismatch in the global
1905/// method pool. This exists mostly as a hack to get around certain
1906/// global mismatches which we can't afford to make warnings / errors.
1907/// Really, what we want is a way to take a method out of the global
1908/// method pool.
1909static bool isAcceptableMethodMismatch(ObjCMethodDecl *chosen,
1910 ObjCMethodDecl *other) {
1911 if (!chosen->isInstanceMethod())
1912 return false;
1913
1914 Selector sel = chosen->getSelector();
1915 if (!sel.isUnarySelector() || sel.getNameForSlot(0) != "length")
1916 return false;
1917
1918 // Don't complain about mismatches for -length if the method we
1919 // chose has an integral result type.
1920 return (chosen->getResultType()->isIntegerType());
1921}
1922
Sebastian Redldb9d2142010-08-02 23:18:59 +00001923ObjCMethodDecl *Sema::LookupMethodInGlobalPool(Selector Sel, SourceRange R,
Fariborz Jahanian6b308f62010-08-09 23:27:58 +00001924 bool receiverIdOrClass,
Sebastian Redldb9d2142010-08-02 23:18:59 +00001925 bool warn, bool instance) {
1926 GlobalMethodPool::iterator Pos = MethodPool.find(Sel);
1927 if (Pos == MethodPool.end()) {
1928 if (ExternalSource)
1929 Pos = ReadMethodPool(Sel);
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001930 else
1931 return 0;
1932 }
1933
Sebastian Redldb9d2142010-08-02 23:18:59 +00001934 ObjCMethodList &MethList = instance ? Pos->second.first : Pos->second.second;
Mike Stump1eb44332009-09-09 15:08:12 +00001935
Sebastian Redldb9d2142010-08-02 23:18:59 +00001936 if (warn && MethList.Method && MethList.Next) {
John McCallf85e1932011-06-15 23:02:42 +00001937 bool issueDiagnostic = false, issueError = false;
1938
1939 // We support a warning which complains about *any* difference in
1940 // method signature.
1941 bool strictSelectorMatch =
1942 (receiverIdOrClass && warn &&
1943 (Diags.getDiagnosticLevel(diag::warn_strict_multiple_method_decl,
1944 R.getBegin()) !=
1945 Diagnostic::Ignored));
Fariborz Jahanian6b308f62010-08-09 23:27:58 +00001946 if (strictSelectorMatch)
1947 for (ObjCMethodList *Next = MethList.Next; Next; Next = Next->Next) {
John McCallf85e1932011-06-15 23:02:42 +00001948 if (!MatchTwoMethodDeclarations(MethList.Method, Next->Method,
1949 MMS_strict)) {
1950 issueDiagnostic = true;
1951 break;
1952 }
Fariborz Jahanian6b308f62010-08-09 23:27:58 +00001953 }
1954
John McCallf85e1932011-06-15 23:02:42 +00001955 // If we didn't see any strict differences, we won't see any loose
1956 // differences. In ARC, however, we also need to check for loose
1957 // mismatches, because most of them are errors.
1958 if (!strictSelectorMatch ||
1959 (issueDiagnostic && getLangOptions().ObjCAutoRefCount))
Fariborz Jahanian6b308f62010-08-09 23:27:58 +00001960 for (ObjCMethodList *Next = MethList.Next; Next; Next = Next->Next) {
John McCallf85e1932011-06-15 23:02:42 +00001961 // This checks if the methods differ in type mismatch.
1962 if (!MatchTwoMethodDeclarations(MethList.Method, Next->Method,
1963 MMS_loose) &&
1964 !isAcceptableMethodMismatch(MethList.Method, Next->Method)) {
1965 issueDiagnostic = true;
1966 if (getLangOptions().ObjCAutoRefCount)
1967 issueError = true;
1968 break;
1969 }
Fariborz Jahanian6b308f62010-08-09 23:27:58 +00001970 }
1971
John McCallf85e1932011-06-15 23:02:42 +00001972 if (issueDiagnostic) {
1973 if (issueError)
1974 Diag(R.getBegin(), diag::err_arc_multiple_method_decl) << Sel << R;
1975 else if (strictSelectorMatch)
Fariborz Jahanian6b308f62010-08-09 23:27:58 +00001976 Diag(R.getBegin(), diag::warn_strict_multiple_method_decl) << Sel << R;
1977 else
1978 Diag(R.getBegin(), diag::warn_multiple_method_decl) << Sel << R;
John McCallf85e1932011-06-15 23:02:42 +00001979
1980 Diag(MethList.Method->getLocStart(),
1981 issueError ? diag::note_possibility : diag::note_using)
Sebastian Redldb9d2142010-08-02 23:18:59 +00001982 << MethList.Method->getSourceRange();
1983 for (ObjCMethodList *Next = MethList.Next; Next; Next = Next->Next)
1984 Diag(Next->Method->getLocStart(), diag::note_also_found)
1985 << Next->Method->getSourceRange();
1986 }
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001987 }
1988 return MethList.Method;
1989}
1990
Fariborz Jahanian3fe10412010-07-22 18:24:20 +00001991ObjCMethodDecl *Sema::LookupImplementedMethodInGlobalPool(Selector Sel) {
Sebastian Redldb9d2142010-08-02 23:18:59 +00001992 GlobalMethodPool::iterator Pos = MethodPool.find(Sel);
1993 if (Pos == MethodPool.end())
1994 return 0;
1995
1996 GlobalMethods &Methods = Pos->second;
1997
1998 if (Methods.first.Method && Methods.first.Method->isDefined())
1999 return Methods.first.Method;
2000 if (Methods.second.Method && Methods.second.Method->isDefined())
2001 return Methods.second.Method;
Fariborz Jahanian3fe10412010-07-22 18:24:20 +00002002 return 0;
2003}
2004
Fariborz Jahaniane198f5d2009-08-04 17:01:09 +00002005/// CompareMethodParamsInBaseAndSuper - This routine compares methods with
2006/// identical selector names in current and its super classes and issues
2007/// a warning if any of their argument types are incompatible.
Fariborz Jahaniandbdec8b2009-08-04 01:07:16 +00002008void Sema::CompareMethodParamsInBaseAndSuper(Decl *ClassDecl,
2009 ObjCMethodDecl *Method,
2010 bool IsInstance) {
Fariborz Jahaniane198f5d2009-08-04 17:01:09 +00002011 ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(ClassDecl);
2012 if (ID == 0) return;
Mike Stump1eb44332009-09-09 15:08:12 +00002013
Fariborz Jahaniane198f5d2009-08-04 17:01:09 +00002014 while (ObjCInterfaceDecl *SD = ID->getSuperClass()) {
Mike Stump1eb44332009-09-09 15:08:12 +00002015 ObjCMethodDecl *SuperMethodDecl =
Fariborz Jahaniane198f5d2009-08-04 17:01:09 +00002016 SD->lookupMethod(Method->getSelector(), IsInstance);
2017 if (SuperMethodDecl == 0) {
Fariborz Jahaniandbdec8b2009-08-04 01:07:16 +00002018 ID = SD;
Fariborz Jahaniane198f5d2009-08-04 17:01:09 +00002019 continue;
Fariborz Jahaniandbdec8b2009-08-04 01:07:16 +00002020 }
Fariborz Jahaniane198f5d2009-08-04 17:01:09 +00002021 ObjCMethodDecl::param_iterator ParamI = Method->param_begin(),
2022 E = Method->param_end();
2023 ObjCMethodDecl::param_iterator PrevI = SuperMethodDecl->param_begin();
2024 for (; ParamI != E; ++ParamI, ++PrevI) {
2025 // Number of parameters are the same and is guaranteed by selector match.
2026 assert(PrevI != SuperMethodDecl->param_end() && "Param mismatch");
2027 QualType T1 = Context.getCanonicalType((*ParamI)->getType());
2028 QualType T2 = Context.getCanonicalType((*PrevI)->getType());
Chris Lattnerfc8f0e12011-04-15 05:22:18 +00002029 // If type of argument of method in this class does not match its
Fariborz Jahaniane198f5d2009-08-04 17:01:09 +00002030 // respective argument type in the super class method, issue warning;
2031 if (!Context.typesAreCompatible(T1, T2)) {
Mike Stump1eb44332009-09-09 15:08:12 +00002032 Diag((*ParamI)->getLocation(), diag::ext_typecheck_base_super)
Fariborz Jahaniane198f5d2009-08-04 17:01:09 +00002033 << T1 << T2;
2034 Diag(SuperMethodDecl->getLocation(), diag::note_previous_declaration);
2035 return;
2036 }
2037 }
2038 ID = SD;
2039 }
Fariborz Jahaniandbdec8b2009-08-04 01:07:16 +00002040}
2041
Fariborz Jahanianf914b972010-02-23 23:41:11 +00002042/// DiagnoseDuplicateIvars -
2043/// Check for duplicate ivars in the entire class at the start of
2044/// @implementation. This becomes necesssary because class extension can
2045/// add ivars to a class in random order which will not be known until
2046/// class's @implementation is seen.
2047void Sema::DiagnoseDuplicateIvars(ObjCInterfaceDecl *ID,
2048 ObjCInterfaceDecl *SID) {
2049 for (ObjCInterfaceDecl::ivar_iterator IVI = ID->ivar_begin(),
2050 IVE = ID->ivar_end(); IVI != IVE; ++IVI) {
2051 ObjCIvarDecl* Ivar = (*IVI);
2052 if (Ivar->isInvalidDecl())
2053 continue;
2054 if (IdentifierInfo *II = Ivar->getIdentifier()) {
2055 ObjCIvarDecl* prevIvar = SID->lookupInstanceVariable(II);
2056 if (prevIvar) {
2057 Diag(Ivar->getLocation(), diag::err_duplicate_member) << II;
2058 Diag(prevIvar->getLocation(), diag::note_previous_declaration);
2059 Ivar->setInvalidDecl();
2060 }
2061 }
2062 }
2063}
2064
Steve Naroffa56f6162007-12-18 01:30:32 +00002065// Note: For class/category implemenations, allMethods/allProperties is
2066// always null.
Fariborz Jahanian17cb3262010-05-05 21:52:17 +00002067void Sema::ActOnAtEnd(Scope *S, SourceRange AtEnd,
John McCalld226f652010-08-21 09:40:31 +00002068 Decl **allMethods, unsigned allNum,
2069 Decl **allProperties, unsigned pNum,
Chris Lattner682bf922009-03-29 16:50:03 +00002070 DeclGroupPtrTy *allTUVars, unsigned tuvNum) {
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00002071
2072 if (!CurContext->isObjCContainer())
Chris Lattner4d391482007-12-12 07:09:47 +00002073 return;
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00002074 ObjCContainerDecl *OCD = dyn_cast<ObjCContainerDecl>(CurContext);
2075 Decl *ClassDecl = cast<Decl>(OCD);
Fariborz Jahanian63e963c2009-11-16 18:57:01 +00002076
Mike Stump1eb44332009-09-09 15:08:12 +00002077 bool isInterfaceDeclKind =
Chris Lattnerf8d17a52008-03-16 21:17:37 +00002078 isa<ObjCInterfaceDecl>(ClassDecl) || isa<ObjCCategoryDecl>(ClassDecl)
2079 || isa<ObjCProtocolDecl>(ClassDecl);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002080 bool checkIdenticalMethods = isa<ObjCImplementationDecl>(ClassDecl);
Steve Naroff09c47192009-01-09 15:36:25 +00002081
Ted Kremenek782f2f52010-01-07 01:20:12 +00002082 if (!isInterfaceDeclKind && AtEnd.isInvalid()) {
2083 // FIXME: This is wrong. We shouldn't be pretending that there is
2084 // an '@end' in the declaration.
2085 SourceLocation L = ClassDecl->getLocation();
2086 AtEnd.setBegin(L);
2087 AtEnd.setEnd(L);
Fariborz Jahanian64089ce2011-04-22 22:02:28 +00002088 Diag(L, diag::err_missing_atend);
Fariborz Jahanian63e963c2009-11-16 18:57:01 +00002089 }
2090
Steve Naroff0701bbb2009-01-08 17:28:14 +00002091 // FIXME: Remove these and use the ObjCContainerDecl/DeclContext.
2092 llvm::DenseMap<Selector, const ObjCMethodDecl*> InsMap;
2093 llvm::DenseMap<Selector, const ObjCMethodDecl*> ClsMap;
2094
Chris Lattner4d391482007-12-12 07:09:47 +00002095 for (unsigned i = 0; i < allNum; i++ ) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002096 ObjCMethodDecl *Method =
John McCalld226f652010-08-21 09:40:31 +00002097 cast_or_null<ObjCMethodDecl>(allMethods[i]);
Chris Lattner4d391482007-12-12 07:09:47 +00002098
2099 if (!Method) continue; // Already issued a diagnostic.
Douglas Gregorf8d49f62009-01-09 17:18:27 +00002100 if (Method->isInstanceMethod()) {
Chris Lattner4d391482007-12-12 07:09:47 +00002101 /// Check for instance method of the same name with incompatible types
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002102 const ObjCMethodDecl *&PrevMethod = InsMap[Method->getSelector()];
Mike Stump1eb44332009-09-09 15:08:12 +00002103 bool match = PrevMethod ? MatchTwoMethodDeclarations(Method, PrevMethod)
Chris Lattner4d391482007-12-12 07:09:47 +00002104 : false;
Mike Stump1eb44332009-09-09 15:08:12 +00002105 if ((isInterfaceDeclKind && PrevMethod && !match)
Eli Friedman82b4e762008-12-16 20:15:50 +00002106 || (checkIdenticalMethods && match)) {
Chris Lattner5f4a6822008-11-23 23:12:31 +00002107 Diag(Method->getLocation(), diag::err_duplicate_method_decl)
Chris Lattner077bf5e2008-11-24 03:33:13 +00002108 << Method->getDeclName();
Chris Lattner5f4a6822008-11-23 23:12:31 +00002109 Diag(PrevMethod->getLocation(), diag::note_previous_declaration);
Douglas Gregorbdb2d502010-12-21 17:34:17 +00002110 Method->setInvalidDecl();
Chris Lattner4d391482007-12-12 07:09:47 +00002111 } else {
Chris Lattner4d391482007-12-12 07:09:47 +00002112 InsMap[Method->getSelector()] = Method;
2113 /// The following allows us to typecheck messages to "id".
2114 AddInstanceMethodToGlobalPool(Method);
Mike Stump1eb44332009-09-09 15:08:12 +00002115 // verify that the instance method conforms to the same definition of
Fariborz Jahaniane198f5d2009-08-04 17:01:09 +00002116 // parent methods if it shadows one.
Fariborz Jahaniandbdec8b2009-08-04 01:07:16 +00002117 CompareMethodParamsInBaseAndSuper(ClassDecl, Method, true);
Chris Lattner4d391482007-12-12 07:09:47 +00002118 }
Mike Stumpac5fc7c2009-08-04 21:02:39 +00002119 } else {
Chris Lattner4d391482007-12-12 07:09:47 +00002120 /// Check for class method of the same name with incompatible types
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002121 const ObjCMethodDecl *&PrevMethod = ClsMap[Method->getSelector()];
Mike Stump1eb44332009-09-09 15:08:12 +00002122 bool match = PrevMethod ? MatchTwoMethodDeclarations(Method, PrevMethod)
Chris Lattner4d391482007-12-12 07:09:47 +00002123 : false;
Mike Stump1eb44332009-09-09 15:08:12 +00002124 if ((isInterfaceDeclKind && PrevMethod && !match)
Eli Friedman82b4e762008-12-16 20:15:50 +00002125 || (checkIdenticalMethods && match)) {
Chris Lattner5f4a6822008-11-23 23:12:31 +00002126 Diag(Method->getLocation(), diag::err_duplicate_method_decl)
Chris Lattner077bf5e2008-11-24 03:33:13 +00002127 << Method->getDeclName();
Chris Lattner5f4a6822008-11-23 23:12:31 +00002128 Diag(PrevMethod->getLocation(), diag::note_previous_declaration);
Douglas Gregorbdb2d502010-12-21 17:34:17 +00002129 Method->setInvalidDecl();
Chris Lattner4d391482007-12-12 07:09:47 +00002130 } else {
Chris Lattner4d391482007-12-12 07:09:47 +00002131 ClsMap[Method->getSelector()] = Method;
Steve Naroffa56f6162007-12-18 01:30:32 +00002132 /// The following allows us to typecheck messages to "Class".
2133 AddFactoryMethodToGlobalPool(Method);
Mike Stump1eb44332009-09-09 15:08:12 +00002134 // verify that the class method conforms to the same definition of
Fariborz Jahaniane198f5d2009-08-04 17:01:09 +00002135 // parent methods if it shadows one.
Fariborz Jahaniandbdec8b2009-08-04 01:07:16 +00002136 CompareMethodParamsInBaseAndSuper(ClassDecl, Method, false);
Chris Lattner4d391482007-12-12 07:09:47 +00002137 }
2138 }
2139 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002140 if (ObjCInterfaceDecl *I = dyn_cast<ObjCInterfaceDecl>(ClassDecl)) {
Mike Stump1eb44332009-09-09 15:08:12 +00002141 // Compares properties declared in this class to those of its
Fariborz Jahanian02edb982008-05-01 00:03:38 +00002142 // super class.
Fariborz Jahanianaebf0cb2008-05-02 19:17:30 +00002143 ComparePropertiesInBaseAndSuper(I);
John McCalld226f652010-08-21 09:40:31 +00002144 CompareProperties(I, I);
Steve Naroff09c47192009-01-09 15:36:25 +00002145 } else if (ObjCCategoryDecl *C = dyn_cast<ObjCCategoryDecl>(ClassDecl)) {
Fariborz Jahanian77e14bd2008-12-06 19:59:02 +00002146 // Categories are used to extend the class by declaring new methods.
Mike Stump1eb44332009-09-09 15:08:12 +00002147 // By the same token, they are also used to add new properties. No
Fariborz Jahanian77e14bd2008-12-06 19:59:02 +00002148 // need to compare the added property to those in the class.
Daniel Dunbarb20ef3e2008-08-27 05:40:03 +00002149
Fariborz Jahanian107089f2010-01-18 18:41:16 +00002150 // Compare protocol properties with those in category
John McCalld226f652010-08-21 09:40:31 +00002151 CompareProperties(C, C);
Fariborz Jahanian88f5e9b2010-12-10 23:36:33 +00002152 if (C->IsClassExtension()) {
2153 ObjCInterfaceDecl *CCPrimary = C->getClassInterface();
2154 DiagnoseClassExtensionDupMethods(C, CCPrimary);
Fariborz Jahanian88f5e9b2010-12-10 23:36:33 +00002155 }
Chris Lattner4d391482007-12-12 07:09:47 +00002156 }
Steve Naroff09c47192009-01-09 15:36:25 +00002157 if (ObjCContainerDecl *CDecl = dyn_cast<ObjCContainerDecl>(ClassDecl)) {
Fariborz Jahanian25760612010-02-15 21:55:26 +00002158 if (CDecl->getIdentifier())
2159 // ProcessPropertyDecl is responsible for diagnosing conflicts with any
2160 // user-defined setter/getter. It also synthesizes setter/getter methods
2161 // and adds them to the DeclContext and global method pools.
2162 for (ObjCContainerDecl::prop_iterator I = CDecl->prop_begin(),
2163 E = CDecl->prop_end();
2164 I != E; ++I)
2165 ProcessPropertyDecl(*I, CDecl);
Ted Kremenek782f2f52010-01-07 01:20:12 +00002166 CDecl->setAtEndRange(AtEnd);
Steve Naroff09c47192009-01-09 15:36:25 +00002167 }
2168 if (ObjCImplementationDecl *IC=dyn_cast<ObjCImplementationDecl>(ClassDecl)) {
Ted Kremenek782f2f52010-01-07 01:20:12 +00002169 IC->setAtEndRange(AtEnd);
Fariborz Jahanian7ca8b062009-11-11 22:40:11 +00002170 if (ObjCInterfaceDecl* IDecl = IC->getClassInterface()) {
Fariborz Jahanianc78f6842010-12-11 18:39:37 +00002171 // Any property declared in a class extension might have user
2172 // declared setter or getter in current class extension or one
2173 // of the other class extensions. Mark them as synthesized as
2174 // property will be synthesized when property with same name is
2175 // seen in the @implementation.
2176 for (const ObjCCategoryDecl *ClsExtDecl =
2177 IDecl->getFirstClassExtension();
2178 ClsExtDecl; ClsExtDecl = ClsExtDecl->getNextClassExtension()) {
2179 for (ObjCContainerDecl::prop_iterator I = ClsExtDecl->prop_begin(),
2180 E = ClsExtDecl->prop_end(); I != E; ++I) {
2181 ObjCPropertyDecl *Property = (*I);
2182 // Skip over properties declared @dynamic
2183 if (const ObjCPropertyImplDecl *PIDecl
2184 = IC->FindPropertyImplDecl(Property->getIdentifier()))
2185 if (PIDecl->getPropertyImplementation()
2186 == ObjCPropertyImplDecl::Dynamic)
2187 continue;
2188
2189 for (const ObjCCategoryDecl *CExtDecl =
2190 IDecl->getFirstClassExtension();
2191 CExtDecl; CExtDecl = CExtDecl->getNextClassExtension()) {
2192 if (ObjCMethodDecl *GetterMethod =
2193 CExtDecl->getInstanceMethod(Property->getGetterName()))
2194 GetterMethod->setSynthesized(true);
2195 if (!Property->isReadOnly())
2196 if (ObjCMethodDecl *SetterMethod =
2197 CExtDecl->getInstanceMethod(Property->getSetterName()))
2198 SetterMethod->setSynthesized(true);
2199 }
2200 }
2201 }
2202
Ted Kremenekc32647d2010-12-23 21:35:43 +00002203 if (LangOpts.ObjCDefaultSynthProperties &&
2204 LangOpts.ObjCNonFragileABI2)
Fariborz Jahanian509d4772010-05-14 18:35:57 +00002205 DefaultSynthesizeProperties(S, IC, IDecl);
Fariborz Jahanian17cb3262010-05-05 21:52:17 +00002206 ImplMethodsVsClassMethods(S, IC, IDecl);
Fariborz Jahanian7ca8b062009-11-11 22:40:11 +00002207 AtomicPropertySetterGetterRules(IC, IDecl);
John McCallf85e1932011-06-15 23:02:42 +00002208 DiagnoseOwningPropertyGetterSynthesis(IC);
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +00002209
Fariborz Jahanianf914b972010-02-23 23:41:11 +00002210 if (LangOpts.ObjCNonFragileABI2)
2211 while (IDecl->getSuperClass()) {
2212 DiagnoseDuplicateIvars(IDecl, IDecl->getSuperClass());
2213 IDecl = IDecl->getSuperClass();
2214 }
Fariborz Jahanian7ca8b062009-11-11 22:40:11 +00002215 }
Fariborz Jahaniane4498c62010-04-28 16:11:27 +00002216 SetIvarInitializers(IC);
Mike Stump1eb44332009-09-09 15:08:12 +00002217 } else if (ObjCCategoryImplDecl* CatImplClass =
Steve Naroff09c47192009-01-09 15:36:25 +00002218 dyn_cast<ObjCCategoryImplDecl>(ClassDecl)) {
Ted Kremenek782f2f52010-01-07 01:20:12 +00002219 CatImplClass->setAtEndRange(AtEnd);
Mike Stump1eb44332009-09-09 15:08:12 +00002220
Chris Lattner4d391482007-12-12 07:09:47 +00002221 // Find category interface decl and then check that all methods declared
Daniel Dunbarb20ef3e2008-08-27 05:40:03 +00002222 // in this interface are implemented in the category @implementation.
Chris Lattner97a58872009-02-16 18:32:47 +00002223 if (ObjCInterfaceDecl* IDecl = CatImplClass->getClassInterface()) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002224 for (ObjCCategoryDecl *Categories = IDecl->getCategoryList();
Chris Lattner4d391482007-12-12 07:09:47 +00002225 Categories; Categories = Categories->getNextClassCategory()) {
2226 if (Categories->getIdentifier() == CatImplClass->getIdentifier()) {
Fariborz Jahanian17cb3262010-05-05 21:52:17 +00002227 ImplMethodsVsClassMethods(S, CatImplClass, Categories);
Chris Lattner4d391482007-12-12 07:09:47 +00002228 break;
2229 }
2230 }
2231 }
2232 }
Chris Lattner682bf922009-03-29 16:50:03 +00002233 if (isInterfaceDeclKind) {
2234 // Reject invalid vardecls.
2235 for (unsigned i = 0; i != tuvNum; i++) {
2236 DeclGroupRef DG = allTUVars[i].getAsVal<DeclGroupRef>();
2237 for (DeclGroupRef::iterator I = DG.begin(), E = DG.end(); I != E; ++I)
2238 if (VarDecl *VDecl = dyn_cast<VarDecl>(*I)) {
Daniel Dunbar5466c7b2009-04-14 02:25:56 +00002239 if (!VDecl->hasExternalStorage())
Steve Naroff87454162009-04-13 17:58:46 +00002240 Diag(VDecl->getLocation(), diag::err_objc_var_decl_inclass);
Fariborz Jahanianb31cb7f2009-03-21 18:06:45 +00002241 }
Chris Lattner682bf922009-03-29 16:50:03 +00002242 }
Fariborz Jahanian38e24c72009-03-18 22:33:24 +00002243 }
Chris Lattner4d391482007-12-12 07:09:47 +00002244}
2245
2246
2247/// CvtQTToAstBitMask - utility routine to produce an AST bitmask for
2248/// objective-c's type qualifier from the parser version of the same info.
Mike Stump1eb44332009-09-09 15:08:12 +00002249static Decl::ObjCDeclQualifier
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002250CvtQTToAstBitMask(ObjCDeclSpec::ObjCDeclQualifier PQTVal) {
John McCall09e2c522011-05-01 03:04:29 +00002251 return (Decl::ObjCDeclQualifier) (unsigned) PQTVal;
Chris Lattner4d391482007-12-12 07:09:47 +00002252}
2253
Ted Kremenek422bae72010-04-18 04:59:38 +00002254static inline
Sean Huntcf807c42010-08-18 23:23:40 +00002255bool containsInvalidMethodImplAttribute(const AttrVec &A) {
Ted Kremenek422bae72010-04-18 04:59:38 +00002256 // The 'ibaction' attribute is allowed on method definitions because of
2257 // how the IBAction macro is used on both method declarations and definitions.
2258 // If the method definitions contains any other attributes, return true.
Sean Huntcf807c42010-08-18 23:23:40 +00002259 for (AttrVec::const_iterator i = A.begin(), e = A.end(); i != e; ++i)
2260 if ((*i)->getKind() != attr::IBAction)
2261 return true;
2262 return false;
Ted Kremenek422bae72010-04-18 04:59:38 +00002263}
2264
Douglas Gregor926df6c2011-06-11 01:09:30 +00002265/// \brief Check whether the declared result type of the given Objective-C
2266/// method declaration is compatible with the method's class.
2267///
2268static bool
2269CheckRelatedResultTypeCompatibility(Sema &S, ObjCMethodDecl *Method,
2270 ObjCInterfaceDecl *CurrentClass) {
2271 QualType ResultType = Method->getResultType();
2272 SourceRange ResultTypeRange;
2273 if (const TypeSourceInfo *ResultTypeInfo = Method->getResultTypeSourceInfo())
2274 ResultTypeRange = ResultTypeInfo->getTypeLoc().getSourceRange();
2275
2276 // If an Objective-C method inherits its related result type, then its
2277 // declared result type must be compatible with its own class type. The
2278 // declared result type is compatible if:
2279 if (const ObjCObjectPointerType *ResultObjectType
2280 = ResultType->getAs<ObjCObjectPointerType>()) {
2281 // - it is id or qualified id, or
2282 if (ResultObjectType->isObjCIdType() ||
2283 ResultObjectType->isObjCQualifiedIdType())
2284 return false;
2285
2286 if (CurrentClass) {
2287 if (ObjCInterfaceDecl *ResultClass
2288 = ResultObjectType->getInterfaceDecl()) {
2289 // - it is the same as the method's class type, or
2290 if (CurrentClass == ResultClass)
2291 return false;
2292
2293 // - it is a superclass of the method's class type
2294 if (ResultClass->isSuperClassOf(CurrentClass))
2295 return false;
2296 }
2297 }
2298 }
2299
2300 return true;
2301}
2302
John McCall6c2c2502011-07-22 02:45:48 +00002303namespace {
2304/// A helper class for searching for methods which a particular method
2305/// overrides.
2306class OverrideSearch {
2307 Sema &S;
2308 ObjCMethodDecl *Method;
2309 llvm::SmallPtrSet<ObjCContainerDecl*, 8> Searched;
2310 llvm::SmallPtrSet<ObjCMethodDecl*, 8> Overridden;
2311 bool Recursive;
2312
2313public:
2314 OverrideSearch(Sema &S, ObjCMethodDecl *method) : S(S), Method(method) {
2315 Selector selector = method->getSelector();
2316
2317 // Bypass this search if we've never seen an instance/class method
2318 // with this selector before.
2319 Sema::GlobalMethodPool::iterator it = S.MethodPool.find(selector);
2320 if (it == S.MethodPool.end()) {
2321 if (!S.ExternalSource) return;
2322 it = S.ReadMethodPool(selector);
2323 }
2324 ObjCMethodList &list =
2325 method->isInstanceMethod() ? it->second.first : it->second.second;
2326 if (!list.Method) return;
2327
2328 ObjCContainerDecl *container
2329 = cast<ObjCContainerDecl>(method->getDeclContext());
2330
2331 // Prevent the search from reaching this container again. This is
2332 // important with categories, which override methods from the
2333 // interface and each other.
2334 Searched.insert(container);
2335 searchFromContainer(container);
Douglas Gregor926df6c2011-06-11 01:09:30 +00002336 }
John McCall6c2c2502011-07-22 02:45:48 +00002337
2338 typedef llvm::SmallPtrSet<ObjCMethodDecl*,8>::iterator iterator;
2339 iterator begin() const { return Overridden.begin(); }
2340 iterator end() const { return Overridden.end(); }
2341
2342private:
2343 void searchFromContainer(ObjCContainerDecl *container) {
2344 if (container->isInvalidDecl()) return;
2345
2346 switch (container->getDeclKind()) {
2347#define OBJCCONTAINER(type, base) \
2348 case Decl::type: \
2349 searchFrom(cast<type##Decl>(container)); \
2350 break;
2351#define ABSTRACT_DECL(expansion)
2352#define DECL(type, base) \
2353 case Decl::type:
2354#include "clang/AST/DeclNodes.inc"
2355 llvm_unreachable("not an ObjC container!");
2356 }
2357 }
2358
2359 void searchFrom(ObjCProtocolDecl *protocol) {
2360 // A method in a protocol declaration overrides declarations from
2361 // referenced ("parent") protocols.
2362 search(protocol->getReferencedProtocols());
2363 }
2364
2365 void searchFrom(ObjCCategoryDecl *category) {
2366 // A method in a category declaration overrides declarations from
2367 // the main class and from protocols the category references.
2368 search(category->getClassInterface());
2369 search(category->getReferencedProtocols());
2370 }
2371
2372 void searchFrom(ObjCCategoryImplDecl *impl) {
2373 // A method in a category definition that has a category
2374 // declaration overrides declarations from the category
2375 // declaration.
2376 if (ObjCCategoryDecl *category = impl->getCategoryDecl()) {
2377 search(category);
2378
2379 // Otherwise it overrides declarations from the class.
2380 } else {
2381 search(impl->getClassInterface());
2382 }
2383 }
2384
2385 void searchFrom(ObjCInterfaceDecl *iface) {
2386 // A method in a class declaration overrides declarations from
2387
2388 // - categories,
2389 for (ObjCCategoryDecl *category = iface->getCategoryList();
2390 category; category = category->getNextClassCategory())
2391 search(category);
2392
2393 // - the super class, and
2394 if (ObjCInterfaceDecl *super = iface->getSuperClass())
2395 search(super);
2396
2397 // - any referenced protocols.
2398 search(iface->getReferencedProtocols());
2399 }
2400
2401 void searchFrom(ObjCImplementationDecl *impl) {
2402 // A method in a class implementation overrides declarations from
2403 // the class interface.
2404 search(impl->getClassInterface());
2405 }
2406
2407
2408 void search(const ObjCProtocolList &protocols) {
2409 for (ObjCProtocolList::iterator i = protocols.begin(), e = protocols.end();
2410 i != e; ++i)
2411 search(*i);
2412 }
2413
2414 void search(ObjCContainerDecl *container) {
2415 // Abort if we've already searched this container.
2416 if (!Searched.insert(container)) return;
2417
2418 // Check for a method in this container which matches this selector.
2419 ObjCMethodDecl *meth = container->getMethod(Method->getSelector(),
2420 Method->isInstanceMethod());
2421
2422 // If we find one, record it and bail out.
2423 if (meth) {
2424 Overridden.insert(meth);
2425 return;
2426 }
2427
2428 // Otherwise, search for methods that a hypothetical method here
2429 // would have overridden.
2430
2431 // Note that we're now in a recursive case.
2432 Recursive = true;
2433
2434 searchFromContainer(container);
2435 }
2436};
Douglas Gregor926df6c2011-06-11 01:09:30 +00002437}
2438
John McCalld226f652010-08-21 09:40:31 +00002439Decl *Sema::ActOnMethodDeclaration(
Fariborz Jahanian7f532532011-02-09 22:20:01 +00002440 Scope *S,
Chris Lattner4d391482007-12-12 07:09:47 +00002441 SourceLocation MethodLoc, SourceLocation EndLoc,
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00002442 tok::TokenKind MethodType,
John McCallb3d87482010-08-24 05:47:05 +00002443 ObjCDeclSpec &ReturnQT, ParsedType ReturnType,
Douglas Gregor926df6c2011-06-11 01:09:30 +00002444 SourceLocation SelectorStartLoc,
Chris Lattner4d391482007-12-12 07:09:47 +00002445 Selector Sel,
2446 // optional arguments. The number of types/arguments is obtained
2447 // from the Sel.getNumArgs().
Chris Lattnere294d3f2009-04-11 18:57:04 +00002448 ObjCArgInfo *ArgInfo,
Fariborz Jahanian4f4fd922010-04-08 00:30:06 +00002449 DeclaratorChunk::ParamInfo *CParamInfo, unsigned CNumArgs, // c-style args
Chris Lattner4d391482007-12-12 07:09:47 +00002450 AttributeList *AttrList, tok::ObjCKeywordKind MethodDeclKind,
Fariborz Jahanian90ba78c2011-03-12 18:54:30 +00002451 bool isVariadic, bool MethodDefinition) {
Steve Naroffda323ad2008-02-29 21:48:07 +00002452 // Make sure we can establish a context for the method.
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00002453 if (!CurContext->isObjCContainer()) {
Steve Naroffda323ad2008-02-29 21:48:07 +00002454 Diag(MethodLoc, diag::error_missing_method_context);
John McCalld226f652010-08-21 09:40:31 +00002455 return 0;
Steve Naroffda323ad2008-02-29 21:48:07 +00002456 }
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00002457 ObjCContainerDecl *OCD = dyn_cast<ObjCContainerDecl>(CurContext);
2458 Decl *ClassDecl = cast<Decl>(OCD);
Chris Lattner4d391482007-12-12 07:09:47 +00002459 QualType resultDeclType;
Mike Stump1eb44332009-09-09 15:08:12 +00002460
Douglas Gregor4bc1cb62010-03-08 14:59:44 +00002461 TypeSourceInfo *ResultTInfo = 0;
Steve Naroffccef3712009-02-20 22:59:16 +00002462 if (ReturnType) {
Douglas Gregor4bc1cb62010-03-08 14:59:44 +00002463 resultDeclType = GetTypeFromParser(ReturnType, &ResultTInfo);
Mike Stump1eb44332009-09-09 15:08:12 +00002464
Steve Naroffccef3712009-02-20 22:59:16 +00002465 // Methods cannot return interface types. All ObjC objects are
2466 // passed by reference.
John McCallc12c5bb2010-05-15 11:32:37 +00002467 if (resultDeclType->isObjCObjectType()) {
Chris Lattner2dd979f2009-04-11 19:08:56 +00002468 Diag(MethodLoc, diag::err_object_cannot_be_passed_returned_by_value)
2469 << 0 << resultDeclType;
John McCalld226f652010-08-21 09:40:31 +00002470 return 0;
Douglas Gregor926df6c2011-06-11 01:09:30 +00002471 }
Fariborz Jahanianaab24a62011-07-21 17:00:47 +00002472 } else { // get the type for "id".
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002473 resultDeclType = Context.getObjCIdType();
Fariborz Jahanianfeb4fa12011-07-21 17:38:14 +00002474 Diag(MethodLoc, diag::warn_missing_method_return_type)
2475 << FixItHint::CreateInsertion(SelectorStartLoc, "(id)");
Fariborz Jahanianaab24a62011-07-21 17:00:47 +00002476 }
Mike Stump1eb44332009-09-09 15:08:12 +00002477
2478 ObjCMethodDecl* ObjCMethod =
Chris Lattner6c4ae5d2008-03-16 00:49:28 +00002479 ObjCMethodDecl::Create(Context, MethodLoc, EndLoc, Sel, resultDeclType,
Douglas Gregor4bc1cb62010-03-08 14:59:44 +00002480 ResultTInfo,
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00002481 CurContext,
Chris Lattner6c4ae5d2008-03-16 00:49:28 +00002482 MethodType == tok::minus, isVariadic,
Argyrios Kyrtzidis75cf3e82011-08-17 19:25:08 +00002483 /*isSynthesized=*/false,
2484 /*isImplicitlyDeclared=*/false, /*isDefined=*/false,
Douglas Gregor926df6c2011-06-11 01:09:30 +00002485 MethodDeclKind == tok::objc_optional
2486 ? ObjCMethodDecl::Optional
2487 : ObjCMethodDecl::Required,
2488 false);
Mike Stump1eb44332009-09-09 15:08:12 +00002489
Chris Lattner5f9e2722011-07-23 10:55:15 +00002490 SmallVector<ParmVarDecl*, 16> Params;
Mike Stump1eb44332009-09-09 15:08:12 +00002491
Chris Lattner7db638d2009-04-11 19:42:43 +00002492 for (unsigned i = 0, e = Sel.getNumArgs(); i != e; ++i) {
John McCall58e46772009-10-23 21:48:59 +00002493 QualType ArgType;
John McCalla93c9342009-12-07 02:54:59 +00002494 TypeSourceInfo *DI;
Mike Stump1eb44332009-09-09 15:08:12 +00002495
Chris Lattnere294d3f2009-04-11 18:57:04 +00002496 if (ArgInfo[i].Type == 0) {
John McCall58e46772009-10-23 21:48:59 +00002497 ArgType = Context.getObjCIdType();
2498 DI = 0;
Chris Lattnere294d3f2009-04-11 18:57:04 +00002499 } else {
John McCall58e46772009-10-23 21:48:59 +00002500 ArgType = GetTypeFromParser(ArgInfo[i].Type, &DI);
Steve Naroff6082c622008-12-09 19:36:17 +00002501 // Perform the default array/function conversions (C99 6.7.5.3p[7,8]).
Douglas Gregor79e6bd32011-07-12 04:42:08 +00002502 ArgType = Context.getAdjustedParameterType(ArgType);
Chris Lattnere294d3f2009-04-11 18:57:04 +00002503 }
Mike Stump1eb44332009-09-09 15:08:12 +00002504
Fariborz Jahanian7f532532011-02-09 22:20:01 +00002505 LookupResult R(*this, ArgInfo[i].Name, ArgInfo[i].NameLoc,
2506 LookupOrdinaryName, ForRedeclaration);
2507 LookupName(R, S);
2508 if (R.isSingleResult()) {
2509 NamedDecl *PrevDecl = R.getFoundDecl();
2510 if (S->isDeclScope(PrevDecl)) {
Fariborz Jahanian90ba78c2011-03-12 18:54:30 +00002511 Diag(ArgInfo[i].NameLoc,
2512 (MethodDefinition ? diag::warn_method_param_redefinition
2513 : diag::warn_method_param_declaration))
Fariborz Jahanian7f532532011-02-09 22:20:01 +00002514 << ArgInfo[i].Name;
2515 Diag(PrevDecl->getLocation(),
2516 diag::note_previous_declaration);
2517 }
2518 }
2519
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00002520 SourceLocation StartLoc = DI
2521 ? DI->getTypeLoc().getBeginLoc()
2522 : ArgInfo[i].NameLoc;
2523
John McCall81ef3e62011-04-23 02:46:06 +00002524 ParmVarDecl* Param = CheckParameter(ObjCMethod, StartLoc,
2525 ArgInfo[i].NameLoc, ArgInfo[i].Name,
2526 ArgType, DI, SC_None, SC_None);
Mike Stump1eb44332009-09-09 15:08:12 +00002527
John McCall70798862011-05-02 00:30:12 +00002528 Param->setObjCMethodScopeInfo(i);
2529
Chris Lattner0ed844b2008-04-04 06:12:32 +00002530 Param->setObjCDeclQualifier(
Chris Lattnere294d3f2009-04-11 18:57:04 +00002531 CvtQTToAstBitMask(ArgInfo[i].DeclSpec.getObjCDeclQualifier()));
Mike Stump1eb44332009-09-09 15:08:12 +00002532
Chris Lattnerf97e8fa2009-04-11 19:34:56 +00002533 // Apply the attributes to the parameter.
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00002534 ProcessDeclAttributeList(TUScope, Param, ArgInfo[i].ArgAttrs);
Mike Stump1eb44332009-09-09 15:08:12 +00002535
Fariborz Jahanian7f532532011-02-09 22:20:01 +00002536 S->AddDecl(Param);
2537 IdResolver.AddDecl(Param);
2538
Chris Lattner0ed844b2008-04-04 06:12:32 +00002539 Params.push_back(Param);
2540 }
Fariborz Jahanian7f532532011-02-09 22:20:01 +00002541
Fariborz Jahanian4f4fd922010-04-08 00:30:06 +00002542 for (unsigned i = 0, e = CNumArgs; i != e; ++i) {
John McCalld226f652010-08-21 09:40:31 +00002543 ParmVarDecl *Param = cast<ParmVarDecl>(CParamInfo[i].Param);
Fariborz Jahanian4f4fd922010-04-08 00:30:06 +00002544 QualType ArgType = Param->getType();
2545 if (ArgType.isNull())
2546 ArgType = Context.getObjCIdType();
2547 else
2548 // Perform the default array/function conversions (C99 6.7.5.3p[7,8]).
Douglas Gregor79e6bd32011-07-12 04:42:08 +00002549 ArgType = Context.getAdjustedParameterType(ArgType);
John McCallc12c5bb2010-05-15 11:32:37 +00002550 if (ArgType->isObjCObjectType()) {
Fariborz Jahanian4f4fd922010-04-08 00:30:06 +00002551 Diag(Param->getLocation(),
2552 diag::err_object_cannot_be_passed_returned_by_value)
2553 << 1 << ArgType;
2554 Param->setInvalidDecl();
2555 }
2556 Param->setDeclContext(ObjCMethod);
Fariborz Jahanian7f532532011-02-09 22:20:01 +00002557
Fariborz Jahanian4f4fd922010-04-08 00:30:06 +00002558 Params.push_back(Param);
2559 }
2560
Fariborz Jahanian4ecb25f2010-04-09 15:40:42 +00002561 ObjCMethod->setMethodParams(Context, Params.data(), Params.size(),
2562 Sel.getNumArgs());
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002563 ObjCMethod->setObjCDeclQualifier(
2564 CvtQTToAstBitMask(ReturnQT.getObjCDeclQualifier()));
Daniel Dunbar35682492008-09-26 04:12:28 +00002565
2566 if (AttrList)
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00002567 ProcessDeclAttributeList(TUScope, ObjCMethod, AttrList);
Mike Stump1eb44332009-09-09 15:08:12 +00002568
Douglas Gregorbdb2d502010-12-21 17:34:17 +00002569 // Add the method now.
John McCall6c2c2502011-07-22 02:45:48 +00002570 const ObjCMethodDecl *PrevMethod = 0;
2571 if (ObjCImplDecl *ImpDecl = dyn_cast<ObjCImplDecl>(ClassDecl)) {
Chris Lattner4d391482007-12-12 07:09:47 +00002572 if (MethodType == tok::minus) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002573 PrevMethod = ImpDecl->getInstanceMethod(Sel);
2574 ImpDecl->addInstanceMethod(ObjCMethod);
Chris Lattner4d391482007-12-12 07:09:47 +00002575 } else {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002576 PrevMethod = ImpDecl->getClassMethod(Sel);
2577 ImpDecl->addClassMethod(ObjCMethod);
Chris Lattner4d391482007-12-12 07:09:47 +00002578 }
Douglas Gregor926df6c2011-06-11 01:09:30 +00002579
Sean Huntcf807c42010-08-18 23:23:40 +00002580 if (ObjCMethod->hasAttrs() &&
2581 containsInvalidMethodImplAttribute(ObjCMethod->getAttrs()))
Fariborz Jahanian5d36ac22009-05-12 21:36:23 +00002582 Diag(EndLoc, diag::warn_attribute_method_def);
Douglas Gregorbdb2d502010-12-21 17:34:17 +00002583 } else {
2584 cast<DeclContext>(ClassDecl)->addDecl(ObjCMethod);
Chris Lattner4d391482007-12-12 07:09:47 +00002585 }
John McCall6c2c2502011-07-22 02:45:48 +00002586
Chris Lattner4d391482007-12-12 07:09:47 +00002587 if (PrevMethod) {
2588 // You can never have two method definitions with the same name.
Chris Lattner5f4a6822008-11-23 23:12:31 +00002589 Diag(ObjCMethod->getLocation(), diag::err_duplicate_method_decl)
Chris Lattner077bf5e2008-11-24 03:33:13 +00002590 << ObjCMethod->getDeclName();
Chris Lattner5f4a6822008-11-23 23:12:31 +00002591 Diag(PrevMethod->getLocation(), diag::note_previous_declaration);
Mike Stump1eb44332009-09-09 15:08:12 +00002592 }
John McCall54abf7d2009-11-04 02:18:39 +00002593
Douglas Gregor926df6c2011-06-11 01:09:30 +00002594 // If this Objective-C method does not have a related result type, but we
2595 // are allowed to infer related result types, try to do so based on the
2596 // method family.
2597 ObjCInterfaceDecl *CurrentClass = dyn_cast<ObjCInterfaceDecl>(ClassDecl);
2598 if (!CurrentClass) {
2599 if (ObjCCategoryDecl *Cat = dyn_cast<ObjCCategoryDecl>(ClassDecl))
2600 CurrentClass = Cat->getClassInterface();
2601 else if (ObjCImplDecl *Impl = dyn_cast<ObjCImplDecl>(ClassDecl))
2602 CurrentClass = Impl->getClassInterface();
2603 else if (ObjCCategoryImplDecl *CatImpl
2604 = dyn_cast<ObjCCategoryImplDecl>(ClassDecl))
2605 CurrentClass = CatImpl->getClassInterface();
2606 }
John McCall6c2c2502011-07-22 02:45:48 +00002607
2608 bool isRelatedResultTypeCompatible =
2609 (getLangOptions().ObjCInferRelatedResultType &&
2610 !CheckRelatedResultTypeCompatibility(*this, ObjCMethod, CurrentClass));
2611
2612 // Search for overridden methods and merge information down from them.
2613 OverrideSearch overrides(*this, ObjCMethod);
2614 for (OverrideSearch::iterator
2615 i = overrides.begin(), e = overrides.end(); i != e; ++i) {
2616 ObjCMethodDecl *overridden = *i;
2617
2618 // Propagate down the 'related result type' bit from overridden methods.
2619 if (isRelatedResultTypeCompatible && overridden->hasRelatedResultType())
Douglas Gregor926df6c2011-06-11 01:09:30 +00002620 ObjCMethod->SetRelatedResultType();
John McCall6c2c2502011-07-22 02:45:48 +00002621
2622 // Then merge the declarations.
2623 mergeObjCMethodDecls(ObjCMethod, overridden);
Fariborz Jahanian730cfb12011-08-10 17:16:30 +00002624
2625 // Check for overriding methods
2626 if (isa<ObjCInterfaceDecl>(ObjCMethod->getDeclContext()) ||
2627 isa<ObjCImplementationDecl>(ObjCMethod->getDeclContext())) {
2628 WarnConflictingTypedMethods(ObjCMethod, overridden,
2629 isa<ObjCProtocolDecl>(overridden->getDeclContext()), true);
2630 }
Douglas Gregor926df6c2011-06-11 01:09:30 +00002631 }
2632
John McCallf85e1932011-06-15 23:02:42 +00002633 bool ARCError = false;
2634 if (getLangOptions().ObjCAutoRefCount)
2635 ARCError = CheckARCMethodDecl(*this, ObjCMethod);
2636
John McCall6c2c2502011-07-22 02:45:48 +00002637 if (!ARCError && isRelatedResultTypeCompatible &&
2638 !ObjCMethod->hasRelatedResultType()) {
Douglas Gregor926df6c2011-06-11 01:09:30 +00002639 bool InferRelatedResultType = false;
2640 switch (ObjCMethod->getMethodFamily()) {
2641 case OMF_None:
2642 case OMF_copy:
2643 case OMF_dealloc:
2644 case OMF_mutableCopy:
2645 case OMF_release:
2646 case OMF_retainCount:
Fariborz Jahanian9670e172011-07-05 22:38:59 +00002647 case OMF_performSelector:
Douglas Gregor926df6c2011-06-11 01:09:30 +00002648 break;
2649
2650 case OMF_alloc:
2651 case OMF_new:
2652 InferRelatedResultType = ObjCMethod->isClassMethod();
2653 break;
2654
2655 case OMF_init:
2656 case OMF_autorelease:
2657 case OMF_retain:
2658 case OMF_self:
2659 InferRelatedResultType = ObjCMethod->isInstanceMethod();
2660 break;
2661 }
2662
John McCall6c2c2502011-07-22 02:45:48 +00002663 if (InferRelatedResultType)
Douglas Gregor926df6c2011-06-11 01:09:30 +00002664 ObjCMethod->SetRelatedResultType();
Douglas Gregor926df6c2011-06-11 01:09:30 +00002665 }
2666
John McCalld226f652010-08-21 09:40:31 +00002667 return ObjCMethod;
Chris Lattner4d391482007-12-12 07:09:47 +00002668}
2669
Chris Lattnercc98eac2008-12-17 07:13:27 +00002670bool Sema::CheckObjCDeclScope(Decl *D) {
Sebastian Redl7a126a42010-08-31 00:36:30 +00002671 if (isa<TranslationUnitDecl>(CurContext->getRedeclContext()))
Anders Carlsson15281452008-11-04 16:57:32 +00002672 return false;
Fariborz Jahanian58a76492011-08-22 18:34:22 +00002673 // Following is also an error. But it is caused by a missing @end
2674 // and diagnostic is issued elsewhere.
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00002675 if (isa<ObjCContainerDecl>(CurContext->getRedeclContext())) {
2676 return false;
2677 }
2678
Anders Carlsson15281452008-11-04 16:57:32 +00002679 Diag(D->getLocation(), diag::err_objc_decls_may_only_appear_in_global_scope);
2680 D->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00002681
Anders Carlsson15281452008-11-04 16:57:32 +00002682 return true;
2683}
Chris Lattnercc98eac2008-12-17 07:13:27 +00002684
Chris Lattnercc98eac2008-12-17 07:13:27 +00002685/// Called whenever @defs(ClassName) is encountered in the source. Inserts the
2686/// instance variables of ClassName into Decls.
John McCalld226f652010-08-21 09:40:31 +00002687void Sema::ActOnDefs(Scope *S, Decl *TagD, SourceLocation DeclStart,
Chris Lattnercc98eac2008-12-17 07:13:27 +00002688 IdentifierInfo *ClassName,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002689 SmallVectorImpl<Decl*> &Decls) {
Chris Lattnercc98eac2008-12-17 07:13:27 +00002690 // Check that ClassName is a valid class
Douglas Gregorc83c6872010-04-15 22:33:43 +00002691 ObjCInterfaceDecl *Class = getObjCInterfaceDecl(ClassName, DeclStart);
Chris Lattnercc98eac2008-12-17 07:13:27 +00002692 if (!Class) {
2693 Diag(DeclStart, diag::err_undef_interface) << ClassName;
2694 return;
2695 }
Fariborz Jahanian0468fb92009-04-21 20:28:41 +00002696 if (LangOpts.ObjCNonFragileABI) {
2697 Diag(DeclStart, diag::err_atdef_nonfragile_interface);
2698 return;
2699 }
Mike Stump1eb44332009-09-09 15:08:12 +00002700
Chris Lattnercc98eac2008-12-17 07:13:27 +00002701 // Collect the instance variables
Jordy Rosedb8264e2011-07-22 02:08:32 +00002702 SmallVector<const ObjCIvarDecl*, 32> Ivars;
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +00002703 Context.DeepCollectObjCIvars(Class, true, Ivars);
Fariborz Jahanian41833352009-06-04 17:08:55 +00002704 // For each ivar, create a fresh ObjCAtDefsFieldDecl.
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +00002705 for (unsigned i = 0; i < Ivars.size(); i++) {
Jordy Rosedb8264e2011-07-22 02:08:32 +00002706 const FieldDecl* ID = cast<FieldDecl>(Ivars[i]);
John McCalld226f652010-08-21 09:40:31 +00002707 RecordDecl *Record = dyn_cast<RecordDecl>(TagD);
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00002708 Decl *FD = ObjCAtDefsFieldDecl::Create(Context, Record,
2709 /*FIXME: StartL=*/ID->getLocation(),
2710 ID->getLocation(),
Fariborz Jahanian41833352009-06-04 17:08:55 +00002711 ID->getIdentifier(), ID->getType(),
2712 ID->getBitWidth());
John McCalld226f652010-08-21 09:40:31 +00002713 Decls.push_back(FD);
Fariborz Jahanian41833352009-06-04 17:08:55 +00002714 }
Mike Stump1eb44332009-09-09 15:08:12 +00002715
Chris Lattnercc98eac2008-12-17 07:13:27 +00002716 // Introduce all of these fields into the appropriate scope.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002717 for (SmallVectorImpl<Decl*>::iterator D = Decls.begin();
Chris Lattnercc98eac2008-12-17 07:13:27 +00002718 D != Decls.end(); ++D) {
John McCalld226f652010-08-21 09:40:31 +00002719 FieldDecl *FD = cast<FieldDecl>(*D);
Chris Lattnercc98eac2008-12-17 07:13:27 +00002720 if (getLangOptions().CPlusPlus)
2721 PushOnScopeChains(cast<FieldDecl>(FD), S);
John McCalld226f652010-08-21 09:40:31 +00002722 else if (RecordDecl *Record = dyn_cast<RecordDecl>(TagD))
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002723 Record->addDecl(FD);
Chris Lattnercc98eac2008-12-17 07:13:27 +00002724 }
2725}
2726
Douglas Gregor160b5632010-04-26 17:32:49 +00002727/// \brief Build a type-check a new Objective-C exception variable declaration.
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00002728VarDecl *Sema::BuildObjCExceptionDecl(TypeSourceInfo *TInfo, QualType T,
2729 SourceLocation StartLoc,
2730 SourceLocation IdLoc,
2731 IdentifierInfo *Id,
Douglas Gregor160b5632010-04-26 17:32:49 +00002732 bool Invalid) {
2733 // ISO/IEC TR 18037 S6.7.3: "The type of an object with automatic storage
2734 // duration shall not be qualified by an address-space qualifier."
2735 // Since all parameters have automatic store duration, they can not have
2736 // an address space.
2737 if (T.getAddressSpace() != 0) {
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00002738 Diag(IdLoc, diag::err_arg_with_address_space);
Douglas Gregor160b5632010-04-26 17:32:49 +00002739 Invalid = true;
2740 }
2741
2742 // An @catch parameter must be an unqualified object pointer type;
2743 // FIXME: Recover from "NSObject foo" by inserting the * in "NSObject *foo"?
2744 if (Invalid) {
2745 // Don't do any further checking.
Douglas Gregorbe270a02010-04-26 17:57:08 +00002746 } else if (T->isDependentType()) {
2747 // Okay: we don't know what this type will instantiate to.
Douglas Gregor160b5632010-04-26 17:32:49 +00002748 } else if (!T->isObjCObjectPointerType()) {
2749 Invalid = true;
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00002750 Diag(IdLoc ,diag::err_catch_param_not_objc_type);
Douglas Gregor160b5632010-04-26 17:32:49 +00002751 } else if (T->isObjCQualifiedIdType()) {
2752 Invalid = true;
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00002753 Diag(IdLoc, diag::err_illegal_qualifiers_on_catch_parm);
Douglas Gregor160b5632010-04-26 17:32:49 +00002754 }
2755
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00002756 VarDecl *New = VarDecl::Create(Context, CurContext, StartLoc, IdLoc, Id,
2757 T, TInfo, SC_None, SC_None);
Douglas Gregor324b54d2010-05-03 18:51:14 +00002758 New->setExceptionVariable(true);
2759
Douglas Gregor160b5632010-04-26 17:32:49 +00002760 if (Invalid)
2761 New->setInvalidDecl();
2762 return New;
2763}
2764
John McCalld226f652010-08-21 09:40:31 +00002765Decl *Sema::ActOnObjCExceptionDecl(Scope *S, Declarator &D) {
Douglas Gregor160b5632010-04-26 17:32:49 +00002766 const DeclSpec &DS = D.getDeclSpec();
2767
2768 // We allow the "register" storage class on exception variables because
2769 // GCC did, but we drop it completely. Any other storage class is an error.
2770 if (DS.getStorageClassSpec() == DeclSpec::SCS_register) {
2771 Diag(DS.getStorageClassSpecLoc(), diag::warn_register_objc_catch_parm)
2772 << FixItHint::CreateRemoval(SourceRange(DS.getStorageClassSpecLoc()));
2773 } else if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified) {
2774 Diag(DS.getStorageClassSpecLoc(), diag::err_storage_spec_on_catch_parm)
2775 << DS.getStorageClassSpec();
2776 }
2777 if (D.getDeclSpec().isThreadSpecified())
2778 Diag(D.getDeclSpec().getThreadSpecLoc(), diag::err_invalid_thread);
2779 D.getMutableDeclSpec().ClearStorageClassSpecs();
2780
2781 DiagnoseFunctionSpecifiers(D);
2782
2783 // Check that there are no default arguments inside the type of this
2784 // exception object (C++ only).
2785 if (getLangOptions().CPlusPlus)
2786 CheckExtraCXXDefaultArguments(D);
2787
Argyrios Kyrtzidis32153982011-06-28 03:01:15 +00002788 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
John McCallbf1a0282010-06-04 23:28:52 +00002789 QualType ExceptionType = TInfo->getType();
Douglas Gregor160b5632010-04-26 17:32:49 +00002790
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00002791 VarDecl *New = BuildObjCExceptionDecl(TInfo, ExceptionType,
2792 D.getSourceRange().getBegin(),
2793 D.getIdentifierLoc(),
2794 D.getIdentifier(),
Douglas Gregor160b5632010-04-26 17:32:49 +00002795 D.isInvalidType());
2796
2797 // Parameter declarators cannot be qualified (C++ [dcl.meaning]p1).
2798 if (D.getCXXScopeSpec().isSet()) {
2799 Diag(D.getIdentifierLoc(), diag::err_qualified_objc_catch_parm)
2800 << D.getCXXScopeSpec().getRange();
2801 New->setInvalidDecl();
2802 }
2803
2804 // Add the parameter declaration into this scope.
John McCalld226f652010-08-21 09:40:31 +00002805 S->AddDecl(New);
Douglas Gregor160b5632010-04-26 17:32:49 +00002806 if (D.getIdentifier())
2807 IdResolver.AddDecl(New);
2808
2809 ProcessDeclAttributes(S, New, D);
2810
2811 if (New->hasAttr<BlocksAttr>())
2812 Diag(New->getLocation(), diag::err_block_on_nonlocal);
John McCalld226f652010-08-21 09:40:31 +00002813 return New;
Douglas Gregor4e6c0d12010-04-23 23:01:43 +00002814}
Fariborz Jahanian786cd152010-04-27 17:18:58 +00002815
2816/// CollectIvarsToConstructOrDestruct - Collect those ivars which require
Fariborz Jahaniane4498c62010-04-28 16:11:27 +00002817/// initialization.
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +00002818void Sema::CollectIvarsToConstructOrDestruct(ObjCInterfaceDecl *OI,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002819 SmallVectorImpl<ObjCIvarDecl*> &Ivars) {
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +00002820 for (ObjCIvarDecl *Iv = OI->all_declared_ivar_begin(); Iv;
2821 Iv= Iv->getNextIvar()) {
Fariborz Jahanian786cd152010-04-27 17:18:58 +00002822 QualType QT = Context.getBaseElementType(Iv->getType());
Douglas Gregor68dd3ee2010-05-20 02:24:22 +00002823 if (QT->isRecordType())
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +00002824 Ivars.push_back(Iv);
Fariborz Jahanian786cd152010-04-27 17:18:58 +00002825 }
2826}
Fariborz Jahaniane4498c62010-04-28 16:11:27 +00002827
Fariborz Jahanian3fe10412010-07-22 18:24:20 +00002828void Sema::DiagnoseUseOfUnimplementedSelectors() {
Douglas Gregor5b9dc7c2011-07-28 14:54:22 +00002829 // Load referenced selectors from the external source.
2830 if (ExternalSource) {
2831 SmallVector<std::pair<Selector, SourceLocation>, 4> Sels;
2832 ExternalSource->ReadReferencedSelectors(Sels);
2833 for (unsigned I = 0, N = Sels.size(); I != N; ++I)
2834 ReferencedSelectors[Sels[I].first] = Sels[I].second;
2835 }
2836
Fariborz Jahanian8b789132011-02-04 23:19:27 +00002837 // Warning will be issued only when selector table is
2838 // generated (which means there is at lease one implementation
2839 // in the TU). This is to match gcc's behavior.
2840 if (ReferencedSelectors.empty() ||
2841 !Context.AnyObjCImplementation())
Fariborz Jahanian3fe10412010-07-22 18:24:20 +00002842 return;
2843 for (llvm::DenseMap<Selector, SourceLocation>::iterator S =
2844 ReferencedSelectors.begin(),
2845 E = ReferencedSelectors.end(); S != E; ++S) {
2846 Selector Sel = (*S).first;
2847 if (!LookupImplementedMethodInGlobalPool(Sel))
2848 Diag((*S).second, diag::warn_unimplemented_selector) << Sel;
2849 }
2850 return;
2851}