blob: 271c7fcf36e08abf9132b5841c4aa5e7be386e44 [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"
John McCallf85e1932011-06-15 23:02:42 +000015#include "clang/AST/ASTConsumer.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000016#include "clang/AST/ASTContext.h"
17#include "clang/AST/ASTMutationListener.h"
18#include "clang/AST/DeclObjC.h"
Steve Naroffca331292009-03-03 14:49:36 +000019#include "clang/AST/Expr.h"
John McCallf85e1932011-06-15 23:02:42 +000020#include "clang/AST/ExprObjC.h"
John McCallf85e1932011-06-15 23:02:42 +000021#include "clang/Basic/SourceManager.h"
Patrick Beardb2f68202012-04-06 18:12:22 +000022#include "clang/Lex/Preprocessor.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000023#include "clang/Sema/DeclSpec.h"
24#include "clang/Sema/ExternalSemaSource.h"
25#include "clang/Sema/Lookup.h"
26#include "clang/Sema/Scope.h"
27#include "clang/Sema/ScopeInfo.h"
John McCall50df6ae2010-08-25 07:03:20 +000028#include "llvm/ADT/DenseSet.h"
29
Chris Lattner4d391482007-12-12 07:09:47 +000030using namespace clang;
31
John McCallf85e1932011-06-15 23:02:42 +000032/// Check whether the given method, which must be in the 'init'
33/// family, is a valid member of that family.
34///
35/// \param receiverTypeIfCall - if null, check this as if declaring it;
36/// if non-null, check this as if making a call to it with the given
37/// receiver type
38///
39/// \return true to indicate that there was an error and appropriate
40/// actions were taken
41bool Sema::checkInitMethod(ObjCMethodDecl *method,
42 QualType receiverTypeIfCall) {
43 if (method->isInvalidDecl()) return true;
44
45 // This castAs is safe: methods that don't return an object
46 // pointer won't be inferred as inits and will reject an explicit
47 // objc_method_family(init).
48
49 // We ignore protocols here. Should we? What about Class?
50
51 const ObjCObjectType *result = method->getResultType()
52 ->castAs<ObjCObjectPointerType>()->getObjectType();
53
54 if (result->isObjCId()) {
55 return false;
56 } else if (result->isObjCClass()) {
57 // fall through: always an error
58 } else {
59 ObjCInterfaceDecl *resultClass = result->getInterface();
60 assert(resultClass && "unexpected object type!");
61
62 // It's okay for the result type to still be a forward declaration
63 // if we're checking an interface declaration.
Douglas Gregor7723fec2011-12-15 20:29:51 +000064 if (!resultClass->hasDefinition()) {
John McCallf85e1932011-06-15 23:02:42 +000065 if (receiverTypeIfCall.isNull() &&
66 !isa<ObjCImplementationDecl>(method->getDeclContext()))
67 return false;
68
69 // Otherwise, we try to compare class types.
70 } else {
71 // If this method was declared in a protocol, we can't check
72 // anything unless we have a receiver type that's an interface.
73 const ObjCInterfaceDecl *receiverClass = 0;
74 if (isa<ObjCProtocolDecl>(method->getDeclContext())) {
75 if (receiverTypeIfCall.isNull())
76 return false;
77
78 receiverClass = receiverTypeIfCall->castAs<ObjCObjectPointerType>()
79 ->getInterfaceDecl();
80
81 // This can be null for calls to e.g. id<Foo>.
82 if (!receiverClass) return false;
83 } else {
84 receiverClass = method->getClassInterface();
85 assert(receiverClass && "method not associated with a class!");
86 }
87
88 // If either class is a subclass of the other, it's fine.
89 if (receiverClass->isSuperClassOf(resultClass) ||
90 resultClass->isSuperClassOf(receiverClass))
91 return false;
92 }
93 }
94
95 SourceLocation loc = method->getLocation();
96
97 // If we're in a system header, and this is not a call, just make
98 // the method unusable.
99 if (receiverTypeIfCall.isNull() && getSourceManager().isInSystemHeader(loc)) {
100 method->addAttr(new (Context) UnavailableAttr(loc, Context,
101 "init method returns a type unrelated to its receiver type"));
102 return true;
103 }
104
105 // Otherwise, it's an error.
106 Diag(loc, diag::err_arc_init_method_unrelated_result_type);
107 method->setInvalidDecl();
108 return true;
109}
110
Fariborz Jahanian3240fe32011-09-27 22:35:36 +0000111void Sema::CheckObjCMethodOverride(ObjCMethodDecl *NewMethod,
Douglas Gregorf4d918f2013-01-15 22:43:08 +0000112 const ObjCMethodDecl *Overridden) {
Douglas Gregor926df6c2011-06-11 01:09:30 +0000113 if (Overridden->hasRelatedResultType() &&
114 !NewMethod->hasRelatedResultType()) {
115 // This can only happen when the method follows a naming convention that
116 // implies a related result type, and the original (overridden) method has
117 // a suitable return type, but the new (overriding) method does not have
118 // a suitable return type.
119 QualType ResultType = NewMethod->getResultType();
120 SourceRange ResultTypeRange;
121 if (const TypeSourceInfo *ResultTypeInfo
John McCallf85e1932011-06-15 23:02:42 +0000122 = NewMethod->getResultTypeSourceInfo())
Douglas Gregor926df6c2011-06-11 01:09:30 +0000123 ResultTypeRange = ResultTypeInfo->getTypeLoc().getSourceRange();
124
125 // Figure out which class this method is part of, if any.
126 ObjCInterfaceDecl *CurrentClass
127 = dyn_cast<ObjCInterfaceDecl>(NewMethod->getDeclContext());
128 if (!CurrentClass) {
129 DeclContext *DC = NewMethod->getDeclContext();
130 if (ObjCCategoryDecl *Cat = dyn_cast<ObjCCategoryDecl>(DC))
131 CurrentClass = Cat->getClassInterface();
132 else if (ObjCImplDecl *Impl = dyn_cast<ObjCImplDecl>(DC))
133 CurrentClass = Impl->getClassInterface();
134 else if (ObjCCategoryImplDecl *CatImpl
135 = dyn_cast<ObjCCategoryImplDecl>(DC))
136 CurrentClass = CatImpl->getClassInterface();
137 }
138
139 if (CurrentClass) {
140 Diag(NewMethod->getLocation(),
141 diag::warn_related_result_type_compatibility_class)
142 << Context.getObjCInterfaceType(CurrentClass)
143 << ResultType
144 << ResultTypeRange;
145 } else {
146 Diag(NewMethod->getLocation(),
147 diag::warn_related_result_type_compatibility_protocol)
148 << ResultType
149 << ResultTypeRange;
150 }
151
Douglas Gregore97179c2011-09-08 01:46:34 +0000152 if (ObjCMethodFamily Family = Overridden->getMethodFamily())
153 Diag(Overridden->getLocation(),
John McCall7cca8212013-03-19 07:04:25 +0000154 diag::note_related_result_type_family)
155 << /*overridden method*/ 0
Douglas Gregore97179c2011-09-08 01:46:34 +0000156 << Family;
157 else
158 Diag(Overridden->getLocation(),
159 diag::note_related_result_type_overridden);
Douglas Gregor926df6c2011-06-11 01:09:30 +0000160 }
David Blaikie4e4d0842012-03-11 07:00:24 +0000161 if (getLangOpts().ObjCAutoRefCount) {
Fariborz Jahanian3240fe32011-09-27 22:35:36 +0000162 if ((NewMethod->hasAttr<NSReturnsRetainedAttr>() !=
163 Overridden->hasAttr<NSReturnsRetainedAttr>())) {
164 Diag(NewMethod->getLocation(),
165 diag::err_nsreturns_retained_attribute_mismatch) << 1;
166 Diag(Overridden->getLocation(), diag::note_previous_decl)
167 << "method";
168 }
169 if ((NewMethod->hasAttr<NSReturnsNotRetainedAttr>() !=
170 Overridden->hasAttr<NSReturnsNotRetainedAttr>())) {
171 Diag(NewMethod->getLocation(),
172 diag::err_nsreturns_retained_attribute_mismatch) << 0;
173 Diag(Overridden->getLocation(), diag::note_previous_decl)
174 << "method";
175 }
Douglas Gregor0a4a23a2012-05-17 23:13:29 +0000176 ObjCMethodDecl::param_const_iterator oi = Overridden->param_begin(),
177 oe = Overridden->param_end();
Argyrios Kyrtzidis491306a2011-10-03 06:37:04 +0000178 for (ObjCMethodDecl::param_iterator
179 ni = NewMethod->param_begin(), ne = NewMethod->param_end();
Douglas Gregor0a4a23a2012-05-17 23:13:29 +0000180 ni != ne && oi != oe; ++ni, ++oi) {
Argyrios Kyrtzidis491306a2011-10-03 06:37:04 +0000181 const ParmVarDecl *oldDecl = (*oi);
Fariborz Jahanian3240fe32011-09-27 22:35:36 +0000182 ParmVarDecl *newDecl = (*ni);
183 if (newDecl->hasAttr<NSConsumedAttr>() !=
184 oldDecl->hasAttr<NSConsumedAttr>()) {
185 Diag(newDecl->getLocation(),
186 diag::err_nsconsumed_attribute_mismatch);
187 Diag(oldDecl->getLocation(), diag::note_previous_decl)
188 << "parameter";
189 }
190 }
191 }
Douglas Gregor926df6c2011-06-11 01:09:30 +0000192}
193
John McCallf85e1932011-06-15 23:02:42 +0000194/// \brief Check a method declaration for compatibility with the Objective-C
195/// ARC conventions.
John McCallb8463812013-04-04 01:38:37 +0000196bool Sema::CheckARCMethodDecl(ObjCMethodDecl *method) {
John McCallf85e1932011-06-15 23:02:42 +0000197 ObjCMethodFamily family = method->getMethodFamily();
198 switch (family) {
199 case OMF_None:
Nico Weber80cb6e62011-08-28 22:35:17 +0000200 case OMF_finalize:
John McCallf85e1932011-06-15 23:02:42 +0000201 case OMF_retain:
202 case OMF_release:
203 case OMF_autorelease:
204 case OMF_retainCount:
205 case OMF_self:
John McCall6c2c2502011-07-22 02:45:48 +0000206 case OMF_performSelector:
John McCallf85e1932011-06-15 23:02:42 +0000207 return false;
208
Fariborz Jahanian1b0a13e2012-07-30 20:52:48 +0000209 case OMF_dealloc:
John McCallb8463812013-04-04 01:38:37 +0000210 if (!Context.hasSameType(method->getResultType(), Context.VoidTy)) {
Fariborz Jahanian1b0a13e2012-07-30 20:52:48 +0000211 SourceRange ResultTypeRange;
212 if (const TypeSourceInfo *ResultTypeInfo
213 = method->getResultTypeSourceInfo())
214 ResultTypeRange = ResultTypeInfo->getTypeLoc().getSourceRange();
215 if (ResultTypeRange.isInvalid())
John McCallb8463812013-04-04 01:38:37 +0000216 Diag(method->getLocation(), diag::error_dealloc_bad_result_type)
Fariborz Jahanian1b0a13e2012-07-30 20:52:48 +0000217 << method->getResultType()
218 << FixItHint::CreateInsertion(method->getSelectorLoc(0), "(void)");
219 else
John McCallb8463812013-04-04 01:38:37 +0000220 Diag(method->getLocation(), diag::error_dealloc_bad_result_type)
Fariborz Jahanian1b0a13e2012-07-30 20:52:48 +0000221 << method->getResultType()
222 << FixItHint::CreateReplacement(ResultTypeRange, "void");
223 return true;
224 }
225 return false;
226
John McCallf85e1932011-06-15 23:02:42 +0000227 case OMF_init:
228 // If the method doesn't obey the init rules, don't bother annotating it.
John McCallb8463812013-04-04 01:38:37 +0000229 if (checkInitMethod(method, QualType()))
John McCallf85e1932011-06-15 23:02:42 +0000230 return true;
231
John McCallb8463812013-04-04 01:38:37 +0000232 method->addAttr(new (Context) NSConsumesSelfAttr(SourceLocation(),
233 Context));
John McCallf85e1932011-06-15 23:02:42 +0000234
235 // Don't add a second copy of this attribute, but otherwise don't
236 // let it be suppressed.
237 if (method->hasAttr<NSReturnsRetainedAttr>())
238 return false;
239 break;
240
241 case OMF_alloc:
242 case OMF_copy:
243 case OMF_mutableCopy:
244 case OMF_new:
245 if (method->hasAttr<NSReturnsRetainedAttr>() ||
246 method->hasAttr<NSReturnsNotRetainedAttr>() ||
247 method->hasAttr<NSReturnsAutoreleasedAttr>())
248 return false;
249 break;
250 }
251
John McCallb8463812013-04-04 01:38:37 +0000252 method->addAttr(new (Context) NSReturnsRetainedAttr(SourceLocation(),
253 Context));
John McCallf85e1932011-06-15 23:02:42 +0000254 return false;
255}
256
Fariborz Jahanian5ac96d52011-02-15 17:49:58 +0000257static void DiagnoseObjCImplementedDeprecations(Sema &S,
258 NamedDecl *ND,
259 SourceLocation ImplLoc,
260 int select) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000261 if (ND && ND->isDeprecated()) {
Fariborz Jahanian98d810e2011-02-16 00:30:31 +0000262 S.Diag(ImplLoc, diag::warn_deprecated_def) << select;
Fariborz Jahanian5ac96d52011-02-15 17:49:58 +0000263 if (select == 0)
Ted Kremenek3306ec12012-02-27 22:55:11 +0000264 S.Diag(ND->getLocation(), diag::note_method_declared_at)
265 << ND->getDeclName();
Fariborz Jahanian5ac96d52011-02-15 17:49:58 +0000266 else
267 S.Diag(ND->getLocation(), diag::note_previous_decl) << "class";
268 }
269}
270
Fariborz Jahanian140ab232011-08-31 17:37:55 +0000271/// AddAnyMethodToGlobalPool - Add any method, instance or factory to global
272/// pool.
273void Sema::AddAnyMethodToGlobalPool(Decl *D) {
274 ObjCMethodDecl *MDecl = dyn_cast_or_null<ObjCMethodDecl>(D);
275
276 // If we don't have a valid method decl, simply return.
277 if (!MDecl)
278 return;
279 if (MDecl->isInstanceMethod())
280 AddInstanceMethodToGlobalPool(MDecl, true);
281 else
282 AddFactoryMethodToGlobalPool(MDecl, true);
283}
284
Fariborz Jahaniana1a32f72012-09-13 18:53:14 +0000285/// HasExplicitOwnershipAttr - returns true when pointer to ObjC pointer
286/// has explicit ownership attribute; false otherwise.
287static bool
288HasExplicitOwnershipAttr(Sema &S, ParmVarDecl *Param) {
289 QualType T = Param->getType();
290
Fariborz Jahaniana1a32f72012-09-13 18:53:14 +0000291 if (const PointerType *PT = T->getAs<PointerType>()) {
292 T = PT->getPointeeType();
293 } else if (const ReferenceType *RT = T->getAs<ReferenceType>()) {
294 T = RT->getPointeeType();
295 } else {
296 return true;
297 }
298
299 // If we have a lifetime qualifier, but it's local, we must have
300 // inferred it. So, it is implicit.
301 return !T.getLocalQualifiers().hasObjCLifetime();
302}
303
Fariborz Jahanian8c6cb462012-08-08 23:41:08 +0000304/// ActOnStartOfObjCMethodDef - This routine sets up parameters; invisible
305/// and user declared, in the method definition's AST.
306void Sema::ActOnStartOfObjCMethodDef(Scope *FnBodyScope, Decl *D) {
307 assert((getCurMethodDecl() == 0) && "Methodparsing confused");
John McCalld226f652010-08-21 09:40:31 +0000308 ObjCMethodDecl *MDecl = dyn_cast_or_null<ObjCMethodDecl>(D);
Fariborz Jahanian6c89eaf2012-07-02 23:37:09 +0000309
Steve Naroff394f3f42008-07-25 17:57:26 +0000310 // If we don't have a valid method decl, simply return.
311 if (!MDecl)
312 return;
Steve Naroffa56f6162007-12-18 01:30:32 +0000313
Chris Lattner4d391482007-12-12 07:09:47 +0000314 // Allow all of Sema to see that we are entering a method definition.
Douglas Gregor44b43212008-12-11 16:49:14 +0000315 PushDeclContext(FnBodyScope, MDecl);
Douglas Gregor9ea9bdb2010-03-01 23:15:13 +0000316 PushFunctionScope();
317
Chris Lattner4d391482007-12-12 07:09:47 +0000318 // Create Decl objects for each parameter, entrring them in the scope for
319 // binding to their use.
Chris Lattner4d391482007-12-12 07:09:47 +0000320
321 // Insert the invisible arguments, self and _cmd!
Fariborz Jahanianfef30b52008-12-09 20:23:04 +0000322 MDecl->createImplicitParams(Context, MDecl->getClassInterface());
Mike Stump1eb44332009-09-09 15:08:12 +0000323
Daniel Dunbar451318c2008-08-26 06:07:48 +0000324 PushOnScopeChains(MDecl->getSelfDecl(), FnBodyScope);
325 PushOnScopeChains(MDecl->getCmdDecl(), FnBodyScope);
Chris Lattner04421082008-04-08 04:40:51 +0000326
Chris Lattner8123a952008-04-10 02:22:51 +0000327 // Introduce all of the other parameters into this scope.
Chris Lattner89951a82009-02-20 18:43:26 +0000328 for (ObjCMethodDecl::param_iterator PI = MDecl->param_begin(),
Fariborz Jahanian23c01042010-09-17 22:07:07 +0000329 E = MDecl->param_end(); PI != E; ++PI) {
330 ParmVarDecl *Param = (*PI);
331 if (!Param->isInvalidDecl() &&
332 RequireCompleteType(Param->getLocation(), Param->getType(),
333 diag::err_typecheck_decl_incomplete_type))
334 Param->setInvalidDecl();
Fariborz Jahaniana1a32f72012-09-13 18:53:14 +0000335 if (!Param->isInvalidDecl() &&
336 getLangOpts().ObjCAutoRefCount &&
337 !HasExplicitOwnershipAttr(*this, Param))
338 Diag(Param->getLocation(), diag::warn_arc_strong_pointer_objc_pointer) <<
339 Param->getType();
Fariborz Jahanian918546c2012-08-30 23:56:02 +0000340
Chris Lattner89951a82009-02-20 18:43:26 +0000341 if ((*PI)->getIdentifier())
342 PushOnScopeChains(*PI, FnBodyScope);
Fariborz Jahanian23c01042010-09-17 22:07:07 +0000343 }
John McCallf85e1932011-06-15 23:02:42 +0000344
345 // In ARC, disallow definition of retain/release/autorelease/retainCount
David Blaikie4e4d0842012-03-11 07:00:24 +0000346 if (getLangOpts().ObjCAutoRefCount) {
John McCallf85e1932011-06-15 23:02:42 +0000347 switch (MDecl->getMethodFamily()) {
348 case OMF_retain:
349 case OMF_retainCount:
350 case OMF_release:
351 case OMF_autorelease:
352 Diag(MDecl->getLocation(), diag::err_arc_illegal_method_def)
353 << MDecl->getSelector();
354 break;
355
356 case OMF_None:
357 case OMF_dealloc:
Nico Weber80cb6e62011-08-28 22:35:17 +0000358 case OMF_finalize:
John McCallf85e1932011-06-15 23:02:42 +0000359 case OMF_alloc:
360 case OMF_init:
361 case OMF_mutableCopy:
362 case OMF_copy:
363 case OMF_new:
364 case OMF_self:
Fariborz Jahanian9670e172011-07-05 22:38:59 +0000365 case OMF_performSelector:
John McCallf85e1932011-06-15 23:02:42 +0000366 break;
367 }
368 }
369
Nico Weber9a1ecf02011-08-22 17:25:57 +0000370 // Warn on deprecated methods under -Wdeprecated-implementations,
371 // and prepare for warning on missing super calls.
372 if (ObjCInterfaceDecl *IC = MDecl->getClassInterface()) {
Fariborz Jahanian84101132012-09-07 23:46:23 +0000373 ObjCMethodDecl *IMD =
374 IC->lookupMethod(MDecl->getSelector(), MDecl->isInstanceMethod());
375
Fariborz Jahanian5fa66762012-11-17 20:53:53 +0000376 if (IMD) {
377 ObjCImplDecl *ImplDeclOfMethodDef =
378 dyn_cast<ObjCImplDecl>(MDecl->getDeclContext());
379 ObjCContainerDecl *ContDeclOfMethodDecl =
380 dyn_cast<ObjCContainerDecl>(IMD->getDeclContext());
381 ObjCImplDecl *ImplDeclOfMethodDecl = 0;
382 if (ObjCInterfaceDecl *OID = dyn_cast<ObjCInterfaceDecl>(ContDeclOfMethodDecl))
383 ImplDeclOfMethodDecl = OID->getImplementation();
384 else if (ObjCCategoryDecl *CD = dyn_cast<ObjCCategoryDecl>(ContDeclOfMethodDecl))
385 ImplDeclOfMethodDecl = CD->getImplementation();
386 // No need to issue deprecated warning if deprecated mehod in class/category
387 // is being implemented in its own implementation (no overriding is involved).
388 if (!ImplDeclOfMethodDecl || ImplDeclOfMethodDecl != ImplDeclOfMethodDef)
389 DiagnoseObjCImplementedDeprecations(*this,
Fariborz Jahanian5ac96d52011-02-15 17:49:58 +0000390 dyn_cast<NamedDecl>(IMD),
391 MDecl->getLocation(), 0);
Fariborz Jahanian5fa66762012-11-17 20:53:53 +0000392 }
Nico Weber9a1ecf02011-08-22 17:25:57 +0000393
Nico Weber80cb6e62011-08-28 22:35:17 +0000394 // If this is "dealloc" or "finalize", set some bit here.
Nico Weber9a1ecf02011-08-22 17:25:57 +0000395 // Then in ActOnSuperMessage() (SemaExprObjC), set it back to false.
396 // Finally, in ActOnFinishFunctionBody() (SemaDecl), warn if flag is set.
397 // Only do this if the current class actually has a superclass.
Jordan Rose41f3f3a2013-03-05 01:27:54 +0000398 if (const ObjCInterfaceDecl *SuperClass = IC->getSuperClass()) {
Jordan Rose535a5d02012-10-19 16:05:26 +0000399 ObjCMethodFamily Family = MDecl->getMethodFamily();
400 if (Family == OMF_dealloc) {
401 if (!(getLangOpts().ObjCAutoRefCount ||
402 getLangOpts().getGC() == LangOptions::GCOnly))
403 getCurFunction()->ObjCShouldCallSuper = true;
404
405 } else if (Family == OMF_finalize) {
406 if (Context.getLangOpts().getGC() != LangOptions::NonGC)
407 getCurFunction()->ObjCShouldCallSuper = true;
408
409 } else {
410 const ObjCMethodDecl *SuperMethod =
Jordan Rose41f3f3a2013-03-05 01:27:54 +0000411 SuperClass->lookupMethod(MDecl->getSelector(),
412 MDecl->isInstanceMethod());
Jordan Rose535a5d02012-10-19 16:05:26 +0000413 getCurFunction()->ObjCShouldCallSuper =
414 (SuperMethod && SuperMethod->hasAttr<ObjCRequiresSuperAttr>());
Fariborz Jahanian6f938602012-09-10 18:04:25 +0000415 }
Nico Weber80cb6e62011-08-28 22:35:17 +0000416 }
Nico Weber9a1ecf02011-08-22 17:25:57 +0000417 }
Chris Lattner4d391482007-12-12 07:09:47 +0000418}
419
Kaelyn Uhrain2f4d88f2012-01-13 01:32:50 +0000420namespace {
421
422// Callback to only accept typo corrections that are Objective-C classes.
423// If an ObjCInterfaceDecl* is given to the constructor, then the validation
424// function will reject corrections to that class.
425class ObjCInterfaceValidatorCCC : public CorrectionCandidateCallback {
426 public:
427 ObjCInterfaceValidatorCCC() : CurrentIDecl(0) {}
428 explicit ObjCInterfaceValidatorCCC(ObjCInterfaceDecl *IDecl)
429 : CurrentIDecl(IDecl) {}
430
431 virtual bool ValidateCandidate(const TypoCorrection &candidate) {
432 ObjCInterfaceDecl *ID = candidate.getCorrectionDeclAs<ObjCInterfaceDecl>();
433 return ID && !declaresSameEntity(ID, CurrentIDecl);
434 }
435
436 private:
437 ObjCInterfaceDecl *CurrentIDecl;
438};
439
440}
441
John McCalld226f652010-08-21 09:40:31 +0000442Decl *Sema::
Chris Lattner7caeabd2008-07-21 22:17:28 +0000443ActOnStartClassInterface(SourceLocation AtInterfaceLoc,
444 IdentifierInfo *ClassName, SourceLocation ClassLoc,
445 IdentifierInfo *SuperName, SourceLocation SuperLoc,
John McCalld226f652010-08-21 09:40:31 +0000446 Decl * const *ProtoRefs, unsigned NumProtoRefs,
Douglas Gregor18df52b2010-01-16 15:02:53 +0000447 const SourceLocation *ProtoLocs,
Chris Lattner7caeabd2008-07-21 22:17:28 +0000448 SourceLocation EndProtoLoc, AttributeList *AttrList) {
Chris Lattner4d391482007-12-12 07:09:47 +0000449 assert(ClassName && "Missing class identifier");
Mike Stump1eb44332009-09-09 15:08:12 +0000450
Chris Lattner4d391482007-12-12 07:09:47 +0000451 // Check for another declaration kind with the same name.
Douglas Gregorc83c6872010-04-15 22:33:43 +0000452 NamedDecl *PrevDecl = LookupSingleName(TUScope, ClassName, ClassLoc,
Douglas Gregorc0b39642010-04-15 23:40:53 +0000453 LookupOrdinaryName, ForRedeclaration);
Douglas Gregor72c3f312008-12-05 18:15:24 +0000454
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000455 if (PrevDecl && !isa<ObjCInterfaceDecl>(PrevDecl)) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000456 Diag(ClassLoc, diag::err_redefinition_different_kind) << ClassName;
Chris Lattner5f4a6822008-11-23 23:12:31 +0000457 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Chris Lattner4d391482007-12-12 07:09:47 +0000458 }
Mike Stump1eb44332009-09-09 15:08:12 +0000459
Douglas Gregor7723fec2011-12-15 20:29:51 +0000460 // Create a declaration to describe this @interface.
Douglas Gregor0af55012011-12-16 03:12:41 +0000461 ObjCInterfaceDecl* PrevIDecl = dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl);
Douglas Gregor7723fec2011-12-15 20:29:51 +0000462 ObjCInterfaceDecl *IDecl
463 = ObjCInterfaceDecl::Create(Context, CurContext, AtInterfaceLoc, ClassName,
Douglas Gregor0af55012011-12-16 03:12:41 +0000464 PrevIDecl, ClassLoc);
Douglas Gregor7723fec2011-12-15 20:29:51 +0000465
Douglas Gregor7723fec2011-12-15 20:29:51 +0000466 if (PrevIDecl) {
467 // Class already seen. Was it a definition?
468 if (ObjCInterfaceDecl *Def = PrevIDecl->getDefinition()) {
469 Diag(AtInterfaceLoc, diag::err_duplicate_class_def)
470 << PrevIDecl->getDeclName();
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000471 Diag(Def->getLocation(), diag::note_previous_definition);
Douglas Gregor7723fec2011-12-15 20:29:51 +0000472 IDecl->setInvalidDecl();
Chris Lattner4d391482007-12-12 07:09:47 +0000473 }
Chris Lattner4d391482007-12-12 07:09:47 +0000474 }
Douglas Gregor7723fec2011-12-15 20:29:51 +0000475
476 if (AttrList)
477 ProcessDeclAttributeList(TUScope, IDecl, AttrList);
478 PushOnScopeChains(IDecl, TUScope);
Mike Stump1eb44332009-09-09 15:08:12 +0000479
Douglas Gregor7723fec2011-12-15 20:29:51 +0000480 // Start the definition of this class. If we're in a redefinition case, there
481 // may already be a definition, so we'll end up adding to it.
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000482 if (!IDecl->hasDefinition())
483 IDecl->startDefinition();
484
Chris Lattner4d391482007-12-12 07:09:47 +0000485 if (SuperName) {
Chris Lattner4d391482007-12-12 07:09:47 +0000486 // Check if a different kind of symbol declared in this scope.
Douglas Gregorc83c6872010-04-15 22:33:43 +0000487 PrevDecl = LookupSingleName(TUScope, SuperName, SuperLoc,
488 LookupOrdinaryName);
Douglas Gregorf06cdae2010-01-03 18:01:57 +0000489
490 if (!PrevDecl) {
Kaelyn Uhrain2f4d88f2012-01-13 01:32:50 +0000491 // Try to correct for a typo in the superclass name without correcting
492 // to the class we're defining.
493 ObjCInterfaceValidatorCCC Validator(IDecl);
494 if (TypoCorrection Corrected = CorrectTypo(
Douglas Gregord8bba9c2011-06-28 16:20:02 +0000495 DeclarationNameInfo(SuperName, SuperLoc), LookupOrdinaryName, TUScope,
Kaelyn Uhrain16e46dd2012-01-31 23:49:25 +0000496 NULL, Validator)) {
Kaelyn Uhrain2f4d88f2012-01-13 01:32:50 +0000497 PrevDecl = Corrected.getCorrectionDeclAs<ObjCInterfaceDecl>();
498 Diag(SuperLoc, diag::err_undef_superclass_suggest)
499 << SuperName << ClassName << PrevDecl->getDeclName();
500 Diag(PrevDecl->getLocation(), diag::note_previous_decl)
501 << PrevDecl->getDeclName();
Douglas Gregorf06cdae2010-01-03 18:01:57 +0000502 }
503 }
504
Douglas Gregor60ef3082011-12-15 00:29:59 +0000505 if (declaresSameEntity(PrevDecl, IDecl)) {
Fariborz Jahanianfdee0892009-07-09 22:08:26 +0000506 Diag(SuperLoc, diag::err_recursive_superclass)
507 << SuperName << ClassName << SourceRange(AtInterfaceLoc, ClassLoc);
Douglas Gregor05c272f2011-12-15 22:34:59 +0000508 IDecl->setEndOfDefinitionLoc(ClassLoc);
Mike Stumpac5fc7c2009-08-04 21:02:39 +0000509 } else {
Mike Stump1eb44332009-09-09 15:08:12 +0000510 ObjCInterfaceDecl *SuperClassDecl =
Fariborz Jahanianfdee0892009-07-09 22:08:26 +0000511 dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl);
Chris Lattner3c73c412008-11-19 08:23:25 +0000512
Fariborz Jahanianfdee0892009-07-09 22:08:26 +0000513 // Diagnose classes that inherit from deprecated classes.
514 if (SuperClassDecl)
515 (void)DiagnoseUseOfDecl(SuperClassDecl, SuperLoc);
Mike Stump1eb44332009-09-09 15:08:12 +0000516
Fariborz Jahanianfdee0892009-07-09 22:08:26 +0000517 if (PrevDecl && SuperClassDecl == 0) {
518 // The previous declaration was not a class decl. Check if we have a
519 // typedef. If we do, get the underlying class type.
Richard Smith162e1c12011-04-15 14:24:37 +0000520 if (const TypedefNameDecl *TDecl =
521 dyn_cast_or_null<TypedefNameDecl>(PrevDecl)) {
Fariborz Jahanianfdee0892009-07-09 22:08:26 +0000522 QualType T = TDecl->getUnderlyingType();
John McCallc12c5bb2010-05-15 11:32:37 +0000523 if (T->isObjCObjectType()) {
Fariborz Jahanian740991b2013-04-04 18:45:52 +0000524 if (NamedDecl *IDecl = T->getAs<ObjCObjectType>()->getInterface()) {
Douglas Gregordeacbdc2010-08-11 12:19:30 +0000525 SuperClassDecl = dyn_cast<ObjCInterfaceDecl>(IDecl);
Fariborz Jahanian740991b2013-04-04 18:45:52 +0000526 // This handles the following case:
527 // @interface NewI @end
528 // typedef NewI DeprI __attribute__((deprecated("blah")))
529 // @interface SI : DeprI /* warn here */ @end
530 (void)DiagnoseUseOfDecl(const_cast<TypedefNameDecl*>(TDecl), SuperLoc);
531 }
Fariborz Jahanianfdee0892009-07-09 22:08:26 +0000532 }
533 }
Mike Stump1eb44332009-09-09 15:08:12 +0000534
Fariborz Jahanianfdee0892009-07-09 22:08:26 +0000535 // This handles the following case:
536 //
537 // typedef int SuperClass;
538 // @interface MyClass : SuperClass {} @end
539 //
540 if (!SuperClassDecl) {
541 Diag(SuperLoc, diag::err_redefinition_different_kind) << SuperName;
542 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Steve Naroff818cb9e2009-02-04 17:14:05 +0000543 }
544 }
Mike Stump1eb44332009-09-09 15:08:12 +0000545
Richard Smith162e1c12011-04-15 14:24:37 +0000546 if (!dyn_cast_or_null<TypedefNameDecl>(PrevDecl)) {
Fariborz Jahanianfdee0892009-07-09 22:08:26 +0000547 if (!SuperClassDecl)
548 Diag(SuperLoc, diag::err_undef_superclass)
549 << SuperName << ClassName << SourceRange(AtInterfaceLoc, ClassLoc);
Douglas Gregorb3029962011-11-14 22:10:01 +0000550 else if (RequireCompleteType(SuperLoc,
Douglas Gregord10099e2012-05-04 16:32:21 +0000551 Context.getObjCInterfaceType(SuperClassDecl),
552 diag::err_forward_superclass,
553 SuperClassDecl->getDeclName(),
554 ClassName,
555 SourceRange(AtInterfaceLoc, ClassLoc))) {
Fariborz Jahaniana8139732011-06-23 23:16:19 +0000556 SuperClassDecl = 0;
557 }
Steve Naroff818cb9e2009-02-04 17:14:05 +0000558 }
Fariborz Jahanianfdee0892009-07-09 22:08:26 +0000559 IDecl->setSuperClass(SuperClassDecl);
560 IDecl->setSuperClassLoc(SuperLoc);
Douglas Gregor05c272f2011-12-15 22:34:59 +0000561 IDecl->setEndOfDefinitionLoc(SuperLoc);
Steve Naroff818cb9e2009-02-04 17:14:05 +0000562 }
Chris Lattner4d391482007-12-12 07:09:47 +0000563 } else { // we have a root class.
Douglas Gregor05c272f2011-12-15 22:34:59 +0000564 IDecl->setEndOfDefinitionLoc(ClassLoc);
Chris Lattner4d391482007-12-12 07:09:47 +0000565 }
Mike Stump1eb44332009-09-09 15:08:12 +0000566
Sebastian Redl0b17c612010-08-13 00:28:03 +0000567 // Check then save referenced protocols.
Chris Lattner06036d32008-07-26 04:13:19 +0000568 if (NumProtoRefs) {
Roman Divacky31ba6132012-09-06 15:59:27 +0000569 IDecl->setProtocolList((ObjCProtocolDecl*const*)ProtoRefs, NumProtoRefs,
Douglas Gregor18df52b2010-01-16 15:02:53 +0000570 ProtoLocs, Context);
Douglas Gregor05c272f2011-12-15 22:34:59 +0000571 IDecl->setEndOfDefinitionLoc(EndProtoLoc);
Chris Lattner4d391482007-12-12 07:09:47 +0000572 }
Mike Stump1eb44332009-09-09 15:08:12 +0000573
Anders Carlsson15281452008-11-04 16:57:32 +0000574 CheckObjCDeclScope(IDecl);
Argyrios Kyrtzidis3a387442011-10-06 23:23:20 +0000575 return ActOnObjCContainerStartDefinition(IDecl);
Chris Lattner4d391482007-12-12 07:09:47 +0000576}
577
Richard Smithde01b7a2012-08-08 23:32:13 +0000578/// ActOnCompatibilityAlias - this action is called after complete parsing of
James Dennett1dfbd922012-06-14 21:40:34 +0000579/// a \@compatibility_alias declaration. It sets up the alias relationships.
Richard Smithde01b7a2012-08-08 23:32:13 +0000580Decl *Sema::ActOnCompatibilityAlias(SourceLocation AtLoc,
581 IdentifierInfo *AliasName,
582 SourceLocation AliasLocation,
583 IdentifierInfo *ClassName,
584 SourceLocation ClassLocation) {
Chris Lattner4d391482007-12-12 07:09:47 +0000585 // Look for previous declaration of alias name
Douglas Gregorc83c6872010-04-15 22:33:43 +0000586 NamedDecl *ADecl = LookupSingleName(TUScope, AliasName, AliasLocation,
Douglas Gregorc0b39642010-04-15 23:40:53 +0000587 LookupOrdinaryName, ForRedeclaration);
Chris Lattner4d391482007-12-12 07:09:47 +0000588 if (ADecl) {
Chris Lattner8b265bd2008-11-23 23:20:13 +0000589 if (isa<ObjCCompatibleAliasDecl>(ADecl))
Chris Lattner4d391482007-12-12 07:09:47 +0000590 Diag(AliasLocation, diag::warn_previous_alias_decl);
Chris Lattner8b265bd2008-11-23 23:20:13 +0000591 else
Chris Lattner3c73c412008-11-19 08:23:25 +0000592 Diag(AliasLocation, diag::err_conflicting_aliasing_type) << AliasName;
Chris Lattner8b265bd2008-11-23 23:20:13 +0000593 Diag(ADecl->getLocation(), diag::note_previous_declaration);
John McCalld226f652010-08-21 09:40:31 +0000594 return 0;
Chris Lattner4d391482007-12-12 07:09:47 +0000595 }
596 // Check for class declaration
Douglas Gregorc83c6872010-04-15 22:33:43 +0000597 NamedDecl *CDeclU = LookupSingleName(TUScope, ClassName, ClassLocation,
Douglas Gregorc0b39642010-04-15 23:40:53 +0000598 LookupOrdinaryName, ForRedeclaration);
Richard Smith162e1c12011-04-15 14:24:37 +0000599 if (const TypedefNameDecl *TDecl =
600 dyn_cast_or_null<TypedefNameDecl>(CDeclU)) {
Fariborz Jahanian305c6582009-01-08 01:10:55 +0000601 QualType T = TDecl->getUnderlyingType();
John McCallc12c5bb2010-05-15 11:32:37 +0000602 if (T->isObjCObjectType()) {
603 if (NamedDecl *IDecl = T->getAs<ObjCObjectType>()->getInterface()) {
Fariborz Jahanian305c6582009-01-08 01:10:55 +0000604 ClassName = IDecl->getIdentifier();
Douglas Gregorc83c6872010-04-15 22:33:43 +0000605 CDeclU = LookupSingleName(TUScope, ClassName, ClassLocation,
Douglas Gregorc0b39642010-04-15 23:40:53 +0000606 LookupOrdinaryName, ForRedeclaration);
Fariborz Jahanian305c6582009-01-08 01:10:55 +0000607 }
608 }
609 }
Chris Lattnerf8d17a52008-03-16 21:17:37 +0000610 ObjCInterfaceDecl *CDecl = dyn_cast_or_null<ObjCInterfaceDecl>(CDeclU);
611 if (CDecl == 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000612 Diag(ClassLocation, diag::warn_undef_interface) << ClassName;
Chris Lattnerf8d17a52008-03-16 21:17:37 +0000613 if (CDeclU)
Chris Lattner8b265bd2008-11-23 23:20:13 +0000614 Diag(CDeclU->getLocation(), diag::note_previous_declaration);
John McCalld226f652010-08-21 09:40:31 +0000615 return 0;
Chris Lattner4d391482007-12-12 07:09:47 +0000616 }
Mike Stump1eb44332009-09-09 15:08:12 +0000617
Chris Lattnerf8d17a52008-03-16 21:17:37 +0000618 // Everything checked out, instantiate a new alias declaration AST.
Mike Stump1eb44332009-09-09 15:08:12 +0000619 ObjCCompatibleAliasDecl *AliasDecl =
Douglas Gregord0434102009-01-09 00:49:46 +0000620 ObjCCompatibleAliasDecl::Create(Context, CurContext, AtLoc, AliasName, CDecl);
Mike Stump1eb44332009-09-09 15:08:12 +0000621
Anders Carlsson15281452008-11-04 16:57:32 +0000622 if (!CheckObjCDeclScope(AliasDecl))
Douglas Gregor516ff432009-04-24 02:57:34 +0000623 PushOnScopeChains(AliasDecl, TUScope);
Douglas Gregord0434102009-01-09 00:49:46 +0000624
John McCalld226f652010-08-21 09:40:31 +0000625 return AliasDecl;
Chris Lattner4d391482007-12-12 07:09:47 +0000626}
627
Fariborz Jahanian819e9bf2011-05-13 18:02:08 +0000628bool Sema::CheckForwardProtocolDeclarationForCircularDependency(
Steve Naroff61d68522009-03-05 15:22:01 +0000629 IdentifierInfo *PName,
630 SourceLocation &Ploc, SourceLocation PrevLoc,
Fariborz Jahanian819e9bf2011-05-13 18:02:08 +0000631 const ObjCList<ObjCProtocolDecl> &PList) {
632
633 bool res = false;
Steve Naroff61d68522009-03-05 15:22:01 +0000634 for (ObjCList<ObjCProtocolDecl>::iterator I = PList.begin(),
635 E = PList.end(); I != E; ++I) {
Douglas Gregorc83c6872010-04-15 22:33:43 +0000636 if (ObjCProtocolDecl *PDecl = LookupProtocol((*I)->getIdentifier(),
637 Ploc)) {
Steve Naroff61d68522009-03-05 15:22:01 +0000638 if (PDecl->getIdentifier() == PName) {
639 Diag(Ploc, diag::err_protocol_has_circular_dependency);
640 Diag(PrevLoc, diag::note_previous_definition);
Fariborz Jahanian819e9bf2011-05-13 18:02:08 +0000641 res = true;
Steve Naroff61d68522009-03-05 15:22:01 +0000642 }
Douglas Gregor5e2a1ff2012-01-01 19:29:29 +0000643
644 if (!PDecl->hasDefinition())
645 continue;
646
Fariborz Jahanian819e9bf2011-05-13 18:02:08 +0000647 if (CheckForwardProtocolDeclarationForCircularDependency(PName, Ploc,
648 PDecl->getLocation(), PDecl->getReferencedProtocols()))
649 res = true;
Steve Naroff61d68522009-03-05 15:22:01 +0000650 }
651 }
Fariborz Jahanian819e9bf2011-05-13 18:02:08 +0000652 return res;
Steve Naroff61d68522009-03-05 15:22:01 +0000653}
654
John McCalld226f652010-08-21 09:40:31 +0000655Decl *
Chris Lattnere13b9592008-07-26 04:03:38 +0000656Sema::ActOnStartProtocolInterface(SourceLocation AtProtoInterfaceLoc,
657 IdentifierInfo *ProtocolName,
658 SourceLocation ProtocolLoc,
John McCalld226f652010-08-21 09:40:31 +0000659 Decl * const *ProtoRefs,
Chris Lattnere13b9592008-07-26 04:03:38 +0000660 unsigned NumProtoRefs,
Douglas Gregor18df52b2010-01-16 15:02:53 +0000661 const SourceLocation *ProtoLocs,
Daniel Dunbar246e70f2008-09-26 04:48:09 +0000662 SourceLocation EndProtoLoc,
663 AttributeList *AttrList) {
Fariborz Jahanian96b69a72011-05-12 22:04:39 +0000664 bool err = false;
Daniel Dunbar246e70f2008-09-26 04:48:09 +0000665 // FIXME: Deal with AttrList.
Chris Lattner4d391482007-12-12 07:09:47 +0000666 assert(ProtocolName && "Missing protocol identifier");
Douglas Gregor27c6da22012-01-01 20:30:41 +0000667 ObjCProtocolDecl *PrevDecl = LookupProtocol(ProtocolName, ProtocolLoc,
668 ForRedeclaration);
669 ObjCProtocolDecl *PDecl = 0;
670 if (ObjCProtocolDecl *Def = PrevDecl? PrevDecl->getDefinition() : 0) {
671 // If we already have a definition, complain.
672 Diag(ProtocolLoc, diag::warn_duplicate_protocol_def) << ProtocolName;
673 Diag(Def->getLocation(), diag::note_previous_definition);
Mike Stump1eb44332009-09-09 15:08:12 +0000674
Douglas Gregor27c6da22012-01-01 20:30:41 +0000675 // Create a new protocol that is completely distinct from previous
676 // declarations, and do not make this protocol available for name lookup.
677 // That way, we'll end up completely ignoring the duplicate.
678 // FIXME: Can we turn this into an error?
679 PDecl = ObjCProtocolDecl::Create(Context, CurContext, ProtocolName,
680 ProtocolLoc, AtProtoInterfaceLoc,
Douglas Gregorc9d3c7e2012-01-01 22:06:18 +0000681 /*PrevDecl=*/0);
Douglas Gregor27c6da22012-01-01 20:30:41 +0000682 PDecl->startDefinition();
683 } else {
684 if (PrevDecl) {
685 // Check for circular dependencies among protocol declarations. This can
686 // only happen if this protocol was forward-declared.
Argyrios Kyrtzidis4fc04da2011-11-13 22:08:30 +0000687 ObjCList<ObjCProtocolDecl> PList;
688 PList.set((ObjCProtocolDecl *const*)ProtoRefs, NumProtoRefs, Context);
689 err = CheckForwardProtocolDeclarationForCircularDependency(
Douglas Gregor27c6da22012-01-01 20:30:41 +0000690 ProtocolName, ProtocolLoc, PrevDecl->getLocation(), PList);
Argyrios Kyrtzidis4fc04da2011-11-13 22:08:30 +0000691 }
Douglas Gregor27c6da22012-01-01 20:30:41 +0000692
693 // Create the new declaration.
Argyrios Kyrtzidis1711fc92011-10-04 04:48:02 +0000694 PDecl = ObjCProtocolDecl::Create(Context, CurContext, ProtocolName,
Argyrios Kyrtzidisb05d7b22011-10-17 19:48:06 +0000695 ProtocolLoc, AtProtoInterfaceLoc,
Douglas Gregorc9d3c7e2012-01-01 22:06:18 +0000696 /*PrevDecl=*/PrevDecl);
Douglas Gregor27c6da22012-01-01 20:30:41 +0000697
Douglas Gregor6e378de2009-04-23 23:18:26 +0000698 PushOnScopeChains(PDecl, TUScope);
Douglas Gregor5e2a1ff2012-01-01 19:29:29 +0000699 PDecl->startDefinition();
Chris Lattnercca59d72008-03-16 01:23:04 +0000700 }
Douglas Gregor5e2a1ff2012-01-01 19:29:29 +0000701
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +0000702 if (AttrList)
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000703 ProcessDeclAttributeList(TUScope, PDecl, AttrList);
Douglas Gregor27c6da22012-01-01 20:30:41 +0000704
705 // Merge attributes from previous declarations.
706 if (PrevDecl)
707 mergeDeclAttributes(PDecl, PrevDecl);
708
Fariborz Jahanian96b69a72011-05-12 22:04:39 +0000709 if (!err && NumProtoRefs ) {
Chris Lattnerc8581052008-03-16 20:19:15 +0000710 /// Check then save referenced protocols.
Roman Divacky31ba6132012-09-06 15:59:27 +0000711 PDecl->setProtocolList((ObjCProtocolDecl*const*)ProtoRefs, NumProtoRefs,
Douglas Gregor18df52b2010-01-16 15:02:53 +0000712 ProtoLocs, Context);
Chris Lattner4d391482007-12-12 07:09:47 +0000713 }
Mike Stump1eb44332009-09-09 15:08:12 +0000714
715 CheckObjCDeclScope(PDecl);
Argyrios Kyrtzidis3a387442011-10-06 23:23:20 +0000716 return ActOnObjCContainerStartDefinition(PDecl);
Chris Lattner4d391482007-12-12 07:09:47 +0000717}
718
719/// FindProtocolDeclaration - This routine looks up protocols and
Daniel Dunbar7ad1b1f2008-09-04 20:01:15 +0000720/// issues an error if they are not declared. It returns list of
721/// protocol declarations in its 'Protocols' argument.
Chris Lattner4d391482007-12-12 07:09:47 +0000722void
Chris Lattnere13b9592008-07-26 04:03:38 +0000723Sema::FindProtocolDeclaration(bool WarnOnDeclarations,
Chris Lattner7caeabd2008-07-21 22:17:28 +0000724 const IdentifierLocPair *ProtocolId,
Chris Lattner4d391482007-12-12 07:09:47 +0000725 unsigned NumProtocols,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000726 SmallVectorImpl<Decl *> &Protocols) {
Chris Lattner4d391482007-12-12 07:09:47 +0000727 for (unsigned i = 0; i != NumProtocols; ++i) {
Douglas Gregorc83c6872010-04-15 22:33:43 +0000728 ObjCProtocolDecl *PDecl = LookupProtocol(ProtocolId[i].first,
729 ProtocolId[i].second);
Chris Lattnereacc3922008-07-26 03:47:43 +0000730 if (!PDecl) {
Kaelyn Uhrain2f4d88f2012-01-13 01:32:50 +0000731 DeclFilterCCC<ObjCProtocolDecl> Validator;
Douglas Gregord8bba9c2011-06-28 16:20:02 +0000732 TypoCorrection Corrected = CorrectTypo(
733 DeclarationNameInfo(ProtocolId[i].first, ProtocolId[i].second),
Kaelyn Uhrain16e46dd2012-01-31 23:49:25 +0000734 LookupObjCProtocolName, TUScope, NULL, Validator);
Douglas Gregord8bba9c2011-06-28 16:20:02 +0000735 if ((PDecl = Corrected.getCorrectionDeclAs<ObjCProtocolDecl>())) {
Douglas Gregorf06cdae2010-01-03 18:01:57 +0000736 Diag(ProtocolId[i].second, diag::err_undeclared_protocol_suggest)
Douglas Gregord8bba9c2011-06-28 16:20:02 +0000737 << ProtocolId[i].first << Corrected.getCorrection();
Douglas Gregor67dd1d42010-01-07 00:17:44 +0000738 Diag(PDecl->getLocation(), diag::note_previous_decl)
739 << PDecl->getDeclName();
Douglas Gregorf06cdae2010-01-03 18:01:57 +0000740 }
741 }
742
743 if (!PDecl) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000744 Diag(ProtocolId[i].second, diag::err_undeclared_protocol)
Chris Lattner3c73c412008-11-19 08:23:25 +0000745 << ProtocolId[i].first;
Chris Lattnereacc3922008-07-26 03:47:43 +0000746 continue;
747 }
Fariborz Jahanian3c9a0242013-04-09 17:52:29 +0000748 // If this is a forward protocol declaration, get its definition.
749 if (!PDecl->isThisDeclarationADefinition() && PDecl->getDefinition())
750 PDecl = PDecl->getDefinition();
751
Douglas Gregor48f3bb92009-02-18 21:56:37 +0000752 (void)DiagnoseUseOfDecl(PDecl, ProtocolId[i].second);
Chris Lattnereacc3922008-07-26 03:47:43 +0000753
754 // If this is a forward declaration and we are supposed to warn in this
755 // case, do it.
Douglas Gregor0f9b9f32013-01-17 00:38:46 +0000756 // FIXME: Recover nicely in the hidden case.
757 if (WarnOnDeclarations &&
758 (!PDecl->hasDefinition() || PDecl->getDefinition()->isHidden()))
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000759 Diag(ProtocolId[i].second, diag::warn_undef_protocolref)
Chris Lattner3c73c412008-11-19 08:23:25 +0000760 << ProtocolId[i].first;
John McCalld226f652010-08-21 09:40:31 +0000761 Protocols.push_back(PDecl);
Chris Lattner4d391482007-12-12 07:09:47 +0000762 }
763}
764
Fariborz Jahanian78c39c72009-03-02 19:06:08 +0000765/// DiagnoseClassExtensionDupMethods - Check for duplicate declaration of
Fariborz Jahanianb7f95f52009-03-02 19:05:07 +0000766/// a class method in its extension.
767///
Mike Stump1eb44332009-09-09 15:08:12 +0000768void Sema::DiagnoseClassExtensionDupMethods(ObjCCategoryDecl *CAT,
Fariborz Jahanianb7f95f52009-03-02 19:05:07 +0000769 ObjCInterfaceDecl *ID) {
770 if (!ID)
771 return; // Possibly due to previous error
772
773 llvm::DenseMap<Selector, const ObjCMethodDecl*> MethodMap;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000774 for (ObjCInterfaceDecl::method_iterator i = ID->meth_begin(),
775 e = ID->meth_end(); i != e; ++i) {
David Blaikie581deb32012-06-06 20:45:41 +0000776 ObjCMethodDecl *MD = *i;
Fariborz Jahanianb7f95f52009-03-02 19:05:07 +0000777 MethodMap[MD->getSelector()] = MD;
778 }
779
780 if (MethodMap.empty())
781 return;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000782 for (ObjCCategoryDecl::method_iterator i = CAT->meth_begin(),
783 e = CAT->meth_end(); i != e; ++i) {
David Blaikie581deb32012-06-06 20:45:41 +0000784 ObjCMethodDecl *Method = *i;
Fariborz Jahanianb7f95f52009-03-02 19:05:07 +0000785 const ObjCMethodDecl *&PrevMethod = MethodMap[Method->getSelector()];
786 if (PrevMethod && !MatchTwoMethodDeclarations(Method, PrevMethod)) {
787 Diag(Method->getLocation(), diag::err_duplicate_method_decl)
788 << Method->getDeclName();
789 Diag(PrevMethod->getLocation(), diag::note_previous_declaration);
790 }
791 }
792}
793
James Dennett1dfbd922012-06-14 21:40:34 +0000794/// ActOnForwardProtocolDeclaration - Handle \@protocol foo;
Douglas Gregorbd9482d2012-01-01 21:23:57 +0000795Sema::DeclGroupPtrTy
Chris Lattner4d391482007-12-12 07:09:47 +0000796Sema::ActOnForwardProtocolDeclaration(SourceLocation AtProtocolLoc,
Chris Lattner7caeabd2008-07-21 22:17:28 +0000797 const IdentifierLocPair *IdentList,
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +0000798 unsigned NumElts,
799 AttributeList *attrList) {
Douglas Gregorbd9482d2012-01-01 21:23:57 +0000800 SmallVector<Decl *, 8> DeclsInGroup;
Chris Lattner4d391482007-12-12 07:09:47 +0000801 for (unsigned i = 0; i != NumElts; ++i) {
Chris Lattner7caeabd2008-07-21 22:17:28 +0000802 IdentifierInfo *Ident = IdentList[i].first;
Douglas Gregor27c6da22012-01-01 20:30:41 +0000803 ObjCProtocolDecl *PrevDecl = LookupProtocol(Ident, IdentList[i].second,
804 ForRedeclaration);
805 ObjCProtocolDecl *PDecl
806 = ObjCProtocolDecl::Create(Context, CurContext, Ident,
807 IdentList[i].second, AtProtocolLoc,
Douglas Gregorc9d3c7e2012-01-01 22:06:18 +0000808 PrevDecl);
Douglas Gregor27c6da22012-01-01 20:30:41 +0000809
810 PushOnScopeChains(PDecl, TUScope);
Douglas Gregorbd9482d2012-01-01 21:23:57 +0000811 CheckObjCDeclScope(PDecl);
Douglas Gregor27c6da22012-01-01 20:30:41 +0000812
Douglas Gregor3937f872012-01-01 20:33:24 +0000813 if (attrList)
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000814 ProcessDeclAttributeList(TUScope, PDecl, attrList);
Douglas Gregor27c6da22012-01-01 20:30:41 +0000815
816 if (PrevDecl)
817 mergeDeclAttributes(PDecl, PrevDecl);
818
Douglas Gregorbd9482d2012-01-01 21:23:57 +0000819 DeclsInGroup.push_back(PDecl);
Chris Lattner4d391482007-12-12 07:09:47 +0000820 }
Mike Stump1eb44332009-09-09 15:08:12 +0000821
Douglas Gregorbd9482d2012-01-01 21:23:57 +0000822 return BuildDeclaratorGroup(DeclsInGroup.data(), DeclsInGroup.size(), false);
Chris Lattner4d391482007-12-12 07:09:47 +0000823}
824
John McCalld226f652010-08-21 09:40:31 +0000825Decl *Sema::
Chris Lattner7caeabd2008-07-21 22:17:28 +0000826ActOnStartCategoryInterface(SourceLocation AtInterfaceLoc,
827 IdentifierInfo *ClassName, SourceLocation ClassLoc,
828 IdentifierInfo *CategoryName,
829 SourceLocation CategoryLoc,
John McCalld226f652010-08-21 09:40:31 +0000830 Decl * const *ProtoRefs,
Chris Lattner7caeabd2008-07-21 22:17:28 +0000831 unsigned NumProtoRefs,
Douglas Gregor18df52b2010-01-16 15:02:53 +0000832 const SourceLocation *ProtoLocs,
Chris Lattner7caeabd2008-07-21 22:17:28 +0000833 SourceLocation EndProtoLoc) {
Fariborz Jahanian80aa1cd2010-06-22 23:20:40 +0000834 ObjCCategoryDecl *CDecl;
Douglas Gregorc83c6872010-04-15 22:33:43 +0000835 ObjCInterfaceDecl *IDecl = getObjCInterfaceDecl(ClassName, ClassLoc, true);
Ted Kremenek09b68972010-02-23 19:39:46 +0000836
837 /// Check that class of this category is already completely declared.
Douglas Gregorb3029962011-11-14 22:10:01 +0000838
839 if (!IDecl
840 || RequireCompleteType(ClassLoc, Context.getObjCInterfaceType(IDecl),
Douglas Gregord10099e2012-05-04 16:32:21 +0000841 diag::err_category_forward_interface,
842 CategoryName == 0)) {
Ted Kremenek09b68972010-02-23 19:39:46 +0000843 // Create an invalid ObjCCategoryDecl to serve as context for
844 // the enclosing method declarations. We mark the decl invalid
845 // to make it clear that this isn't a valid AST.
846 CDecl = ObjCCategoryDecl::Create(Context, CurContext, AtInterfaceLoc,
Argyrios Kyrtzidis955fadb2011-08-30 19:43:26 +0000847 ClassLoc, CategoryLoc, CategoryName,IDecl);
Ted Kremenek09b68972010-02-23 19:39:46 +0000848 CDecl->setInvalidDecl();
Argyrios Kyrtzidis9a0b6b42012-03-12 18:34:26 +0000849 CurContext->addDecl(CDecl);
Douglas Gregorb3029962011-11-14 22:10:01 +0000850
851 if (!IDecl)
852 Diag(ClassLoc, diag::err_undef_interface) << ClassName;
Argyrios Kyrtzidis3a387442011-10-06 23:23:20 +0000853 return ActOnObjCContainerStartDefinition(CDecl);
Ted Kremenek09b68972010-02-23 19:39:46 +0000854 }
855
Fariborz Jahanian80aa1cd2010-06-22 23:20:40 +0000856 if (!CategoryName && IDecl->getImplementation()) {
857 Diag(ClassLoc, diag::err_class_extension_after_impl) << ClassName;
858 Diag(IDecl->getImplementation()->getLocation(),
859 diag::note_implementation_declared);
Ted Kremenek09b68972010-02-23 19:39:46 +0000860 }
861
Fariborz Jahanian25760612010-02-15 21:55:26 +0000862 if (CategoryName) {
863 /// Check for duplicate interface declaration for this category
Douglas Gregord3297242013-01-16 23:00:23 +0000864 if (ObjCCategoryDecl *Previous
865 = IDecl->FindCategoryDeclaration(CategoryName)) {
866 // Class extensions can be declared multiple times, categories cannot.
867 Diag(CategoryLoc, diag::warn_dup_category_def)
868 << ClassName << CategoryName;
869 Diag(Previous->getLocation(), diag::note_previous_definition);
Chris Lattner70f19542009-02-16 21:26:43 +0000870 }
871 }
Chris Lattner70f19542009-02-16 21:26:43 +0000872
Argyrios Kyrtzidis955fadb2011-08-30 19:43:26 +0000873 CDecl = ObjCCategoryDecl::Create(Context, CurContext, AtInterfaceLoc,
874 ClassLoc, CategoryLoc, CategoryName, IDecl);
875 // FIXME: PushOnScopeChains?
876 CurContext->addDecl(CDecl);
877
Chris Lattner4d391482007-12-12 07:09:47 +0000878 if (NumProtoRefs) {
Roman Divacky31ba6132012-09-06 15:59:27 +0000879 CDecl->setProtocolList((ObjCProtocolDecl*const*)ProtoRefs, NumProtoRefs,
Douglas Gregor18df52b2010-01-16 15:02:53 +0000880 ProtoLocs, Context);
Fariborz Jahanian339798e2009-10-05 20:41:32 +0000881 // Protocols in the class extension belong to the class.
Fariborz Jahanian25760612010-02-15 21:55:26 +0000882 if (CDecl->IsClassExtension())
Roman Divacky31ba6132012-09-06 15:59:27 +0000883 IDecl->mergeClassExtensionProtocolList((ObjCProtocolDecl*const*)ProtoRefs,
Ted Kremenek53b94412010-09-01 01:21:15 +0000884 NumProtoRefs, Context);
Chris Lattner4d391482007-12-12 07:09:47 +0000885 }
Mike Stump1eb44332009-09-09 15:08:12 +0000886
Anders Carlsson15281452008-11-04 16:57:32 +0000887 CheckObjCDeclScope(CDecl);
Argyrios Kyrtzidis3a387442011-10-06 23:23:20 +0000888 return ActOnObjCContainerStartDefinition(CDecl);
Chris Lattner4d391482007-12-12 07:09:47 +0000889}
890
891/// ActOnStartCategoryImplementation - Perform semantic checks on the
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000892/// category implementation declaration and build an ObjCCategoryImplDecl
Chris Lattner4d391482007-12-12 07:09:47 +0000893/// object.
John McCalld226f652010-08-21 09:40:31 +0000894Decl *Sema::ActOnStartCategoryImplementation(
Chris Lattner4d391482007-12-12 07:09:47 +0000895 SourceLocation AtCatImplLoc,
896 IdentifierInfo *ClassName, SourceLocation ClassLoc,
897 IdentifierInfo *CatName, SourceLocation CatLoc) {
Douglas Gregorc83c6872010-04-15 22:33:43 +0000898 ObjCInterfaceDecl *IDecl = getObjCInterfaceDecl(ClassName, ClassLoc, true);
Argyrios Kyrtzidis8a1d7222009-07-21 00:05:53 +0000899 ObjCCategoryDecl *CatIDecl = 0;
Argyrios Kyrtzidis5a61e0c2012-03-02 19:14:29 +0000900 if (IDecl && IDecl->hasDefinition()) {
Argyrios Kyrtzidis8a1d7222009-07-21 00:05:53 +0000901 CatIDecl = IDecl->FindCategoryDeclaration(CatName);
902 if (!CatIDecl) {
903 // Category @implementation with no corresponding @interface.
904 // Create and install one.
Argyrios Kyrtzidis37f40572011-11-23 20:27:26 +0000905 CatIDecl = ObjCCategoryDecl::Create(Context, CurContext, AtCatImplLoc,
906 ClassLoc, CatLoc,
Argyrios Kyrtzidis955fadb2011-08-30 19:43:26 +0000907 CatName, IDecl);
Argyrios Kyrtzidis37f40572011-11-23 20:27:26 +0000908 CatIDecl->setImplicit();
Argyrios Kyrtzidis8a1d7222009-07-21 00:05:53 +0000909 }
910 }
911
Mike Stump1eb44332009-09-09 15:08:12 +0000912 ObjCCategoryImplDecl *CDecl =
Argyrios Kyrtzidis1711fc92011-10-04 04:48:02 +0000913 ObjCCategoryImplDecl::Create(Context, CurContext, CatName, IDecl,
Argyrios Kyrtzidisc6994002011-12-09 00:31:40 +0000914 ClassLoc, AtCatImplLoc, CatLoc);
Chris Lattner4d391482007-12-12 07:09:47 +0000915 /// Check that class of this category is already completely declared.
Douglas Gregorb3029962011-11-14 22:10:01 +0000916 if (!IDecl) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000917 Diag(ClassLoc, diag::err_undef_interface) << ClassName;
John McCall6c2c2502011-07-22 02:45:48 +0000918 CDecl->setInvalidDecl();
Douglas Gregorb3029962011-11-14 22:10:01 +0000919 } else if (RequireCompleteType(ClassLoc, Context.getObjCInterfaceType(IDecl),
920 diag::err_undef_interface)) {
921 CDecl->setInvalidDecl();
John McCall6c2c2502011-07-22 02:45:48 +0000922 }
Chris Lattner4d391482007-12-12 07:09:47 +0000923
Douglas Gregord0434102009-01-09 00:49:46 +0000924 // FIXME: PushOnScopeChains?
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000925 CurContext->addDecl(CDecl);
Douglas Gregord0434102009-01-09 00:49:46 +0000926
Argyrios Kyrtzidisc076e372011-10-06 23:23:27 +0000927 // If the interface is deprecated/unavailable, warn/error about it.
928 if (IDecl)
929 DiagnoseUseOfDecl(IDecl, ClassLoc);
930
Argyrios Kyrtzidis8a1d7222009-07-21 00:05:53 +0000931 /// Check that CatName, category name, is not used in another implementation.
932 if (CatIDecl) {
933 if (CatIDecl->getImplementation()) {
934 Diag(ClassLoc, diag::err_dup_implementation_category) << ClassName
935 << CatName;
936 Diag(CatIDecl->getImplementation()->getLocation(),
937 diag::note_previous_definition);
Fariborz Jahanianb1224f62011-02-15 00:59:30 +0000938 } else {
Argyrios Kyrtzidis8a1d7222009-07-21 00:05:53 +0000939 CatIDecl->setImplementation(CDecl);
Fariborz Jahanianb1224f62011-02-15 00:59:30 +0000940 // Warn on implementating category of deprecated class under
941 // -Wdeprecated-implementations flag.
Fariborz Jahanian5ac96d52011-02-15 17:49:58 +0000942 DiagnoseObjCImplementedDeprecations(*this,
943 dyn_cast<NamedDecl>(IDecl),
944 CDecl->getLocation(), 2);
Fariborz Jahanianb1224f62011-02-15 00:59:30 +0000945 }
Argyrios Kyrtzidis8a1d7222009-07-21 00:05:53 +0000946 }
Mike Stump1eb44332009-09-09 15:08:12 +0000947
Anders Carlsson15281452008-11-04 16:57:32 +0000948 CheckObjCDeclScope(CDecl);
Argyrios Kyrtzidis3a387442011-10-06 23:23:20 +0000949 return ActOnObjCContainerStartDefinition(CDecl);
Chris Lattner4d391482007-12-12 07:09:47 +0000950}
951
John McCalld226f652010-08-21 09:40:31 +0000952Decl *Sema::ActOnStartClassImplementation(
Chris Lattner4d391482007-12-12 07:09:47 +0000953 SourceLocation AtClassImplLoc,
954 IdentifierInfo *ClassName, SourceLocation ClassLoc,
Mike Stump1eb44332009-09-09 15:08:12 +0000955 IdentifierInfo *SuperClassname,
Chris Lattner4d391482007-12-12 07:09:47 +0000956 SourceLocation SuperClassLoc) {
Douglas Gregordeacbdc2010-08-11 12:19:30 +0000957 ObjCInterfaceDecl* IDecl = 0;
Chris Lattner4d391482007-12-12 07:09:47 +0000958 // Check for another declaration kind with the same name.
John McCallf36e02d2009-10-09 21:13:30 +0000959 NamedDecl *PrevDecl
Douglas Gregorc0b39642010-04-15 23:40:53 +0000960 = LookupSingleName(TUScope, ClassName, ClassLoc, LookupOrdinaryName,
961 ForRedeclaration);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000962 if (PrevDecl && !isa<ObjCInterfaceDecl>(PrevDecl)) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000963 Diag(ClassLoc, diag::err_redefinition_different_kind) << ClassName;
Chris Lattner5f4a6822008-11-23 23:12:31 +0000964 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Douglas Gregordeacbdc2010-08-11 12:19:30 +0000965 } else if ((IDecl = dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl))) {
Douglas Gregor0af55012011-12-16 03:12:41 +0000966 RequireCompleteType(ClassLoc, Context.getObjCInterfaceType(IDecl),
967 diag::warn_undef_interface);
Douglas Gregor95ff7422010-01-04 17:27:12 +0000968 } else {
969 // We did not find anything with the name ClassName; try to correct for
970 // typos in the class name.
Kaelyn Uhrain2f4d88f2012-01-13 01:32:50 +0000971 ObjCInterfaceValidatorCCC Validator;
972 if (TypoCorrection Corrected = CorrectTypo(
Douglas Gregord8bba9c2011-06-28 16:20:02 +0000973 DeclarationNameInfo(ClassName, ClassLoc), LookupOrdinaryName, TUScope,
Kaelyn Uhrain16e46dd2012-01-31 23:49:25 +0000974 NULL, Validator)) {
Douglas Gregora6f26382010-01-06 23:44:25 +0000975 // Suggest the (potentially) correct interface name. However, put the
976 // fix-it hint itself in a separate note, since changing the name in
Douglas Gregordeacbdc2010-08-11 12:19:30 +0000977 // the warning would make the fix-it change semantics.However, don't
Douglas Gregor95ff7422010-01-04 17:27:12 +0000978 // provide a code-modification hint or use the typo name for recovery,
979 // because this is just a warning. The program may actually be correct.
Kaelyn Uhrain2f4d88f2012-01-13 01:32:50 +0000980 IDecl = Corrected.getCorrectionDeclAs<ObjCInterfaceDecl>();
Douglas Gregord8bba9c2011-06-28 16:20:02 +0000981 DeclarationName CorrectedName = Corrected.getCorrection();
Douglas Gregor95ff7422010-01-04 17:27:12 +0000982 Diag(ClassLoc, diag::warn_undef_interface_suggest)
Douglas Gregord8bba9c2011-06-28 16:20:02 +0000983 << ClassName << CorrectedName;
984 Diag(IDecl->getLocation(), diag::note_previous_decl) << CorrectedName
985 << FixItHint::CreateReplacement(ClassLoc, CorrectedName.getAsString());
Douglas Gregor95ff7422010-01-04 17:27:12 +0000986 IDecl = 0;
987 } else {
988 Diag(ClassLoc, diag::warn_undef_interface) << ClassName;
989 }
Chris Lattner4d391482007-12-12 07:09:47 +0000990 }
Mike Stump1eb44332009-09-09 15:08:12 +0000991
Chris Lattner4d391482007-12-12 07:09:47 +0000992 // Check that super class name is valid class name
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000993 ObjCInterfaceDecl* SDecl = 0;
Chris Lattner4d391482007-12-12 07:09:47 +0000994 if (SuperClassname) {
995 // Check if a different kind of symbol declared in this scope.
Douglas Gregorc83c6872010-04-15 22:33:43 +0000996 PrevDecl = LookupSingleName(TUScope, SuperClassname, SuperClassLoc,
997 LookupOrdinaryName);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000998 if (PrevDecl && !isa<ObjCInterfaceDecl>(PrevDecl)) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000999 Diag(SuperClassLoc, diag::err_redefinition_different_kind)
1000 << SuperClassname;
Chris Lattner5f4a6822008-11-23 23:12:31 +00001001 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Chris Lattner3c73c412008-11-19 08:23:25 +00001002 } else {
Mike Stump1eb44332009-09-09 15:08:12 +00001003 SDecl = dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl);
Argyrios Kyrtzidiscd707ab2012-03-13 01:09:36 +00001004 if (SDecl && !SDecl->hasDefinition())
1005 SDecl = 0;
Chris Lattner4d391482007-12-12 07:09:47 +00001006 if (!SDecl)
Chris Lattner3c73c412008-11-19 08:23:25 +00001007 Diag(SuperClassLoc, diag::err_undef_superclass)
1008 << SuperClassname << ClassName;
Douglas Gregor60ef3082011-12-15 00:29:59 +00001009 else if (IDecl && !declaresSameEntity(IDecl->getSuperClass(), SDecl)) {
Chris Lattner4d391482007-12-12 07:09:47 +00001010 // This implementation and its interface do not have the same
1011 // super class.
Chris Lattner3c73c412008-11-19 08:23:25 +00001012 Diag(SuperClassLoc, diag::err_conflicting_super_class)
Chris Lattner08631c52008-11-23 21:45:46 +00001013 << SDecl->getDeclName();
Chris Lattner5f4a6822008-11-23 23:12:31 +00001014 Diag(SDecl->getLocation(), diag::note_previous_definition);
Chris Lattner4d391482007-12-12 07:09:47 +00001015 }
1016 }
1017 }
Mike Stump1eb44332009-09-09 15:08:12 +00001018
Chris Lattner4d391482007-12-12 07:09:47 +00001019 if (!IDecl) {
1020 // Legacy case of @implementation with no corresponding @interface.
1021 // Build, chain & install the interface decl into the identifier.
Daniel Dunbarf6414922008-08-20 18:02:42 +00001022
Mike Stump390b4cc2009-05-16 07:39:55 +00001023 // FIXME: Do we support attributes on the @implementation? If so we should
1024 // copy them over.
Mike Stump1eb44332009-09-09 15:08:12 +00001025 IDecl = ObjCInterfaceDecl::Create(Context, CurContext, AtClassImplLoc,
Douglas Gregor0af55012011-12-16 03:12:41 +00001026 ClassName, /*PrevDecl=*/0, ClassLoc,
1027 true);
Douglas Gregor2e5c15b2011-12-15 05:27:12 +00001028 IDecl->startDefinition();
Douglas Gregor05c272f2011-12-15 22:34:59 +00001029 if (SDecl) {
1030 IDecl->setSuperClass(SDecl);
1031 IDecl->setSuperClassLoc(SuperClassLoc);
1032 IDecl->setEndOfDefinitionLoc(SuperClassLoc);
1033 } else {
1034 IDecl->setEndOfDefinitionLoc(ClassLoc);
1035 }
1036
Douglas Gregor8b9fb302009-04-24 00:16:12 +00001037 PushOnScopeChains(IDecl, TUScope);
Douglas Gregordeacbdc2010-08-11 12:19:30 +00001038 } else {
1039 // Mark the interface as being completed, even if it was just as
1040 // @class ....;
1041 // declaration; the user cannot reopen it.
Douglas Gregor2e5c15b2011-12-15 05:27:12 +00001042 if (!IDecl->hasDefinition())
1043 IDecl->startDefinition();
Chris Lattner4d391482007-12-12 07:09:47 +00001044 }
Mike Stump1eb44332009-09-09 15:08:12 +00001045
1046 ObjCImplementationDecl* IMPDecl =
Argyrios Kyrtzidis1711fc92011-10-04 04:48:02 +00001047 ObjCImplementationDecl::Create(Context, CurContext, IDecl, SDecl,
1048 ClassLoc, AtClassImplLoc);
Mike Stump1eb44332009-09-09 15:08:12 +00001049
Anders Carlsson15281452008-11-04 16:57:32 +00001050 if (CheckObjCDeclScope(IMPDecl))
Argyrios Kyrtzidis3a387442011-10-06 23:23:20 +00001051 return ActOnObjCContainerStartDefinition(IMPDecl);
Mike Stump1eb44332009-09-09 15:08:12 +00001052
Chris Lattner4d391482007-12-12 07:09:47 +00001053 // Check that there is no duplicate implementation of this class.
Douglas Gregordeacbdc2010-08-11 12:19:30 +00001054 if (IDecl->getImplementation()) {
1055 // FIXME: Don't leak everything!
Chris Lattner3c73c412008-11-19 08:23:25 +00001056 Diag(ClassLoc, diag::err_dup_implementation_class) << ClassName;
Argyrios Kyrtzidis87018772009-07-21 00:06:04 +00001057 Diag(IDecl->getImplementation()->getLocation(),
1058 diag::note_previous_definition);
Douglas Gregordeacbdc2010-08-11 12:19:30 +00001059 } else { // add it to the list.
Argyrios Kyrtzidis8a1d7222009-07-21 00:05:53 +00001060 IDecl->setImplementation(IMPDecl);
Douglas Gregor8fc463a2009-04-24 00:11:27 +00001061 PushOnScopeChains(IMPDecl, TUScope);
Fariborz Jahanianb1224f62011-02-15 00:59:30 +00001062 // Warn on implementating deprecated class under
1063 // -Wdeprecated-implementations flag.
Fariborz Jahanian5ac96d52011-02-15 17:49:58 +00001064 DiagnoseObjCImplementedDeprecations(*this,
1065 dyn_cast<NamedDecl>(IDecl),
1066 IMPDecl->getLocation(), 1);
Argyrios Kyrtzidis8a1d7222009-07-21 00:05:53 +00001067 }
Argyrios Kyrtzidis3a387442011-10-06 23:23:20 +00001068 return ActOnObjCContainerStartDefinition(IMPDecl);
Chris Lattner4d391482007-12-12 07:09:47 +00001069}
1070
Argyrios Kyrtzidis644af7b2012-02-23 21:11:20 +00001071Sema::DeclGroupPtrTy
1072Sema::ActOnFinishObjCImplementation(Decl *ObjCImpDecl, ArrayRef<Decl *> Decls) {
1073 SmallVector<Decl *, 64> DeclsInGroup;
1074 DeclsInGroup.reserve(Decls.size() + 1);
1075
1076 for (unsigned i = 0, e = Decls.size(); i != e; ++i) {
1077 Decl *Dcl = Decls[i];
1078 if (!Dcl)
1079 continue;
1080 if (Dcl->getDeclContext()->isFileContext())
1081 Dcl->setTopLevelDeclInObjCContainer();
1082 DeclsInGroup.push_back(Dcl);
1083 }
1084
1085 DeclsInGroup.push_back(ObjCImpDecl);
1086
1087 return BuildDeclaratorGroup(DeclsInGroup.data(), DeclsInGroup.size(), false);
1088}
1089
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001090void Sema::CheckImplementationIvars(ObjCImplementationDecl *ImpDecl,
1091 ObjCIvarDecl **ivars, unsigned numIvars,
Chris Lattner4d391482007-12-12 07:09:47 +00001092 SourceLocation RBrace) {
1093 assert(ImpDecl && "missing implementation decl");
Douglas Gregor4afa39d2009-01-20 01:17:11 +00001094 ObjCInterfaceDecl* IDecl = ImpDecl->getClassInterface();
Chris Lattner4d391482007-12-12 07:09:47 +00001095 if (!IDecl)
1096 return;
James Dennett1dfbd922012-06-14 21:40:34 +00001097 /// Check case of non-existing \@interface decl.
1098 /// (legacy objective-c \@implementation decl without an \@interface decl).
Chris Lattner4d391482007-12-12 07:09:47 +00001099 /// Add implementations's ivar to the synthesize class's ivar list.
Steve Naroff33feeb02009-04-20 20:09:33 +00001100 if (IDecl->isImplicitInterfaceDecl()) {
Douglas Gregor05c272f2011-12-15 22:34:59 +00001101 IDecl->setEndOfDefinitionLoc(RBrace);
Fariborz Jahanian3a21cd92010-02-17 17:00:07 +00001102 // Add ivar's to class's DeclContext.
1103 for (unsigned i = 0, e = numIvars; i != e; ++i) {
Fariborz Jahanian2f14c4d2010-02-17 18:10:54 +00001104 ivars[i]->setLexicalDeclContext(ImpDecl);
Richard Smith1b7f9cb2012-03-13 03:12:56 +00001105 IDecl->makeDeclVisibleInContext(ivars[i]);
Fariborz Jahanian11062e12010-02-19 00:31:17 +00001106 ImpDecl->addDecl(ivars[i]);
Fariborz Jahanian3a21cd92010-02-17 17:00:07 +00001107 }
1108
Chris Lattner4d391482007-12-12 07:09:47 +00001109 return;
1110 }
1111 // If implementation has empty ivar list, just return.
1112 if (numIvars == 0)
1113 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001114
Chris Lattner4d391482007-12-12 07:09:47 +00001115 assert(ivars && "missing @implementation ivars");
John McCall260611a2012-06-20 06:18:46 +00001116 if (LangOpts.ObjCRuntime.isNonFragile()) {
Fariborz Jahanianbd94d442010-02-19 20:58:54 +00001117 if (ImpDecl->getSuperClass())
1118 Diag(ImpDecl->getLocation(), diag::warn_on_superclass_use);
1119 for (unsigned i = 0; i < numIvars; i++) {
1120 ObjCIvarDecl* ImplIvar = ivars[i];
1121 if (const ObjCIvarDecl *ClsIvar =
1122 IDecl->getIvarDecl(ImplIvar->getIdentifier())) {
1123 Diag(ImplIvar->getLocation(), diag::err_duplicate_ivar_declaration);
1124 Diag(ClsIvar->getLocation(), diag::note_previous_definition);
1125 continue;
1126 }
Fariborz Jahanianbd94d442010-02-19 20:58:54 +00001127 // Instance ivar to Implementation's DeclContext.
1128 ImplIvar->setLexicalDeclContext(ImpDecl);
Richard Smith1b7f9cb2012-03-13 03:12:56 +00001129 IDecl->makeDeclVisibleInContext(ImplIvar);
Fariborz Jahanianbd94d442010-02-19 20:58:54 +00001130 ImpDecl->addDecl(ImplIvar);
1131 }
1132 return;
1133 }
Chris Lattner4d391482007-12-12 07:09:47 +00001134 // Check interface's Ivar list against those in the implementation.
1135 // names and types must match.
1136 //
Chris Lattner4d391482007-12-12 07:09:47 +00001137 unsigned j = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001138 ObjCInterfaceDecl::ivar_iterator
Chris Lattner4c525092007-12-12 17:58:05 +00001139 IVI = IDecl->ivar_begin(), IVE = IDecl->ivar_end();
1140 for (; numIvars > 0 && IVI != IVE; ++IVI) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001141 ObjCIvarDecl* ImplIvar = ivars[j++];
David Blaikie581deb32012-06-06 20:45:41 +00001142 ObjCIvarDecl* ClsIvar = *IVI;
Chris Lattner4d391482007-12-12 07:09:47 +00001143 assert (ImplIvar && "missing implementation ivar");
1144 assert (ClsIvar && "missing class ivar");
Mike Stump1eb44332009-09-09 15:08:12 +00001145
Steve Naroffca331292009-03-03 14:49:36 +00001146 // First, make sure the types match.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00001147 if (!Context.hasSameType(ImplIvar->getType(), ClsIvar->getType())) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001148 Diag(ImplIvar->getLocation(), diag::err_conflicting_ivar_type)
Chris Lattner08631c52008-11-23 21:45:46 +00001149 << ImplIvar->getIdentifier()
1150 << ImplIvar->getType() << ClsIvar->getType();
Chris Lattner5f4a6822008-11-23 23:12:31 +00001151 Diag(ClsIvar->getLocation(), diag::note_previous_definition);
Richard Smitha6b8b2c2011-10-10 18:28:20 +00001152 } else if (ImplIvar->isBitField() && ClsIvar->isBitField() &&
1153 ImplIvar->getBitWidthValue(Context) !=
1154 ClsIvar->getBitWidthValue(Context)) {
1155 Diag(ImplIvar->getBitWidth()->getLocStart(),
1156 diag::err_conflicting_ivar_bitwidth) << ImplIvar->getIdentifier();
1157 Diag(ClsIvar->getBitWidth()->getLocStart(),
1158 diag::note_previous_definition);
Mike Stump1eb44332009-09-09 15:08:12 +00001159 }
Steve Naroffca331292009-03-03 14:49:36 +00001160 // Make sure the names are identical.
1161 if (ImplIvar->getIdentifier() != ClsIvar->getIdentifier()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001162 Diag(ImplIvar->getLocation(), diag::err_conflicting_ivar_name)
Chris Lattner08631c52008-11-23 21:45:46 +00001163 << ImplIvar->getIdentifier() << ClsIvar->getIdentifier();
Chris Lattner5f4a6822008-11-23 23:12:31 +00001164 Diag(ClsIvar->getLocation(), diag::note_previous_definition);
Chris Lattner4d391482007-12-12 07:09:47 +00001165 }
1166 --numIvars;
Chris Lattner4d391482007-12-12 07:09:47 +00001167 }
Mike Stump1eb44332009-09-09 15:08:12 +00001168
Chris Lattner609e4c72007-12-12 18:11:49 +00001169 if (numIvars > 0)
Chris Lattner0e391052007-12-12 18:19:52 +00001170 Diag(ivars[j]->getLocation(), diag::err_inconsistant_ivar_count);
Chris Lattner609e4c72007-12-12 18:11:49 +00001171 else if (IVI != IVE)
David Blaikie262bc182012-04-30 02:36:29 +00001172 Diag(IVI->getLocation(), diag::err_inconsistant_ivar_count);
Chris Lattner4d391482007-12-12 07:09:47 +00001173}
1174
Steve Naroff3c2eb662008-02-10 21:38:56 +00001175void Sema::WarnUndefinedMethod(SourceLocation ImpLoc, ObjCMethodDecl *method,
Fariborz Jahanian52146832010-03-31 18:23:33 +00001176 bool &IncompleteImpl, unsigned DiagID) {
Fariborz Jahanian327126e2011-06-24 20:31:37 +00001177 // No point warning no definition of method which is 'unavailable'.
Douglas Gregor86f6cf62012-12-11 18:53:07 +00001178 switch (method->getAvailability()) {
1179 case AR_Available:
1180 case AR_Deprecated:
1181 break;
1182
1183 // Don't warn about unavailable or not-yet-introduced methods.
1184 case AR_NotYetIntroduced:
1185 case AR_Unavailable:
Fariborz Jahanian327126e2011-06-24 20:31:37 +00001186 return;
Douglas Gregor86f6cf62012-12-11 18:53:07 +00001187 }
1188
Ted Kremenek8b43d2b2013-03-27 00:02:21 +00001189 // FIXME: For now ignore 'IncompleteImpl'.
1190 // Previously we grouped all unimplemented methods under a single
1191 // warning, but some users strongly voiced that they would prefer
1192 // separate warnings. We will give that approach a try, as that
1193 // matches what we do with protocols.
1194
1195 Diag(ImpLoc, DiagID) << method->getDeclName();
1196
1197 // Issue a note to the original declaration.
1198 SourceLocation MethodLoc = method->getLocStart();
1199 if (MethodLoc.isValid())
1200 Diag(MethodLoc, diag::note_method_declared_at) << method;
Steve Naroff3c2eb662008-02-10 21:38:56 +00001201}
1202
David Chisnalle8a2d4c2010-10-25 17:23:52 +00001203/// Determines if type B can be substituted for type A. Returns true if we can
1204/// guarantee that anything that the user will do to an object of type A can
1205/// also be done to an object of type B. This is trivially true if the two
1206/// types are the same, or if B is a subclass of A. It becomes more complex
1207/// in cases where protocols are involved.
1208///
1209/// Object types in Objective-C describe the minimum requirements for an
1210/// object, rather than providing a complete description of a type. For
1211/// example, if A is a subclass of B, then B* may refer to an instance of A.
1212/// The principle of substitutability means that we may use an instance of A
1213/// anywhere that we may use an instance of B - it will implement all of the
1214/// ivars of B and all of the methods of B.
1215///
1216/// This substitutability is important when type checking methods, because
1217/// the implementation may have stricter type definitions than the interface.
1218/// The interface specifies minimum requirements, but the implementation may
1219/// have more accurate ones. For example, a method may privately accept
1220/// instances of B, but only publish that it accepts instances of A. Any
1221/// object passed to it will be type checked against B, and so will implicitly
1222/// by a valid A*. Similarly, a method may return a subclass of the class that
1223/// it is declared as returning.
1224///
1225/// This is most important when considering subclassing. A method in a
1226/// subclass must accept any object as an argument that its superclass's
1227/// implementation accepts. It may, however, accept a more general type
1228/// without breaking substitutability (i.e. you can still use the subclass
1229/// anywhere that you can use the superclass, but not vice versa). The
1230/// converse requirement applies to return types: the return type for a
1231/// subclass method must be a valid object of the kind that the superclass
1232/// advertises, but it may be specified more accurately. This avoids the need
1233/// for explicit down-casting by callers.
1234///
1235/// Note: This is a stricter requirement than for assignment.
John McCall10302c02010-10-28 02:34:38 +00001236static bool isObjCTypeSubstitutable(ASTContext &Context,
1237 const ObjCObjectPointerType *A,
1238 const ObjCObjectPointerType *B,
1239 bool rejectId) {
1240 // Reject a protocol-unqualified id.
1241 if (rejectId && B->isObjCIdType()) return false;
David Chisnalle8a2d4c2010-10-25 17:23:52 +00001242
1243 // If B is a qualified id, then A must also be a qualified id and it must
1244 // implement all of the protocols in B. It may not be a qualified class.
1245 // For example, MyClass<A> can be assigned to id<A>, but MyClass<A> is a
1246 // stricter definition so it is not substitutable for id<A>.
1247 if (B->isObjCQualifiedIdType()) {
1248 return A->isObjCQualifiedIdType() &&
John McCall10302c02010-10-28 02:34:38 +00001249 Context.ObjCQualifiedIdTypesAreCompatible(QualType(A, 0),
1250 QualType(B,0),
1251 false);
David Chisnalle8a2d4c2010-10-25 17:23:52 +00001252 }
1253
1254 /*
1255 // id is a special type that bypasses type checking completely. We want a
1256 // warning when it is used in one place but not another.
1257 if (C.isObjCIdType(A) || C.isObjCIdType(B)) return false;
1258
1259
1260 // If B is a qualified id, then A must also be a qualified id (which it isn't
1261 // if we've got this far)
1262 if (B->isObjCQualifiedIdType()) return false;
1263 */
1264
1265 // Now we know that A and B are (potentially-qualified) class types. The
1266 // normal rules for assignment apply.
John McCall10302c02010-10-28 02:34:38 +00001267 return Context.canAssignObjCInterfaces(A, B);
David Chisnalle8a2d4c2010-10-25 17:23:52 +00001268}
1269
John McCall10302c02010-10-28 02:34:38 +00001270static SourceRange getTypeRange(TypeSourceInfo *TSI) {
1271 return (TSI ? TSI->getTypeLoc().getSourceRange() : SourceRange());
1272}
1273
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001274static bool CheckMethodOverrideReturn(Sema &S,
John McCall10302c02010-10-28 02:34:38 +00001275 ObjCMethodDecl *MethodImpl,
Fariborz Jahanian21761c82011-02-21 23:49:15 +00001276 ObjCMethodDecl *MethodDecl,
Fariborz Jahanianeee3ef12011-07-24 20:53:26 +00001277 bool IsProtocolMethodDecl,
Fariborz Jahanian730cfb12011-08-10 17:16:30 +00001278 bool IsOverridingMode,
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001279 bool Warn) {
Fariborz Jahanian21761c82011-02-21 23:49:15 +00001280 if (IsProtocolMethodDecl &&
1281 (MethodDecl->getObjCDeclQualifier() !=
1282 MethodImpl->getObjCDeclQualifier())) {
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001283 if (Warn) {
Fariborz Jahanian730cfb12011-08-10 17:16:30 +00001284 S.Diag(MethodImpl->getLocation(),
1285 (IsOverridingMode ?
1286 diag::warn_conflicting_overriding_ret_type_modifiers
1287 : diag::warn_conflicting_ret_type_modifiers))
1288 << MethodImpl->getDeclName()
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001289 << getTypeRange(MethodImpl->getResultTypeSourceInfo());
1290 S.Diag(MethodDecl->getLocation(), diag::note_previous_declaration)
1291 << getTypeRange(MethodDecl->getResultTypeSourceInfo());
1292 }
1293 else
1294 return false;
Fariborz Jahanian21761c82011-02-21 23:49:15 +00001295 }
1296
John McCall10302c02010-10-28 02:34:38 +00001297 if (S.Context.hasSameUnqualifiedType(MethodImpl->getResultType(),
Fariborz Jahanian21761c82011-02-21 23:49:15 +00001298 MethodDecl->getResultType()))
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001299 return true;
1300 if (!Warn)
1301 return false;
John McCall10302c02010-10-28 02:34:38 +00001302
Fariborz Jahanian730cfb12011-08-10 17:16:30 +00001303 unsigned DiagID =
1304 IsOverridingMode ? diag::warn_conflicting_overriding_ret_types
1305 : diag::warn_conflicting_ret_types;
John McCall10302c02010-10-28 02:34:38 +00001306
1307 // Mismatches between ObjC pointers go into a different warning
1308 // category, and sometimes they're even completely whitelisted.
1309 if (const ObjCObjectPointerType *ImplPtrTy =
1310 MethodImpl->getResultType()->getAs<ObjCObjectPointerType>()) {
1311 if (const ObjCObjectPointerType *IfacePtrTy =
Fariborz Jahanian21761c82011-02-21 23:49:15 +00001312 MethodDecl->getResultType()->getAs<ObjCObjectPointerType>()) {
John McCall10302c02010-10-28 02:34:38 +00001313 // Allow non-matching return types as long as they don't violate
1314 // the principle of substitutability. Specifically, we permit
1315 // return types that are subclasses of the declared return type,
1316 // or that are more-qualified versions of the declared type.
1317 if (isObjCTypeSubstitutable(S.Context, IfacePtrTy, ImplPtrTy, false))
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001318 return false;
John McCall10302c02010-10-28 02:34:38 +00001319
Fariborz Jahanian730cfb12011-08-10 17:16:30 +00001320 DiagID =
1321 IsOverridingMode ? diag::warn_non_covariant_overriding_ret_types
1322 : diag::warn_non_covariant_ret_types;
John McCall10302c02010-10-28 02:34:38 +00001323 }
1324 }
1325
1326 S.Diag(MethodImpl->getLocation(), DiagID)
1327 << MethodImpl->getDeclName()
Fariborz Jahanian21761c82011-02-21 23:49:15 +00001328 << MethodDecl->getResultType()
John McCall10302c02010-10-28 02:34:38 +00001329 << MethodImpl->getResultType()
1330 << getTypeRange(MethodImpl->getResultTypeSourceInfo());
Fariborz Jahanian730cfb12011-08-10 17:16:30 +00001331 S.Diag(MethodDecl->getLocation(),
1332 IsOverridingMode ? diag::note_previous_declaration
1333 : diag::note_previous_definition)
Fariborz Jahanian21761c82011-02-21 23:49:15 +00001334 << getTypeRange(MethodDecl->getResultTypeSourceInfo());
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001335 return false;
John McCall10302c02010-10-28 02:34:38 +00001336}
1337
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001338static bool CheckMethodOverrideParam(Sema &S,
John McCall10302c02010-10-28 02:34:38 +00001339 ObjCMethodDecl *MethodImpl,
Fariborz Jahanian21761c82011-02-21 23:49:15 +00001340 ObjCMethodDecl *MethodDecl,
John McCall10302c02010-10-28 02:34:38 +00001341 ParmVarDecl *ImplVar,
Fariborz Jahanian21761c82011-02-21 23:49:15 +00001342 ParmVarDecl *IfaceVar,
Fariborz Jahanianeee3ef12011-07-24 20:53:26 +00001343 bool IsProtocolMethodDecl,
Fariborz Jahanian730cfb12011-08-10 17:16:30 +00001344 bool IsOverridingMode,
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001345 bool Warn) {
Fariborz Jahanian21761c82011-02-21 23:49:15 +00001346 if (IsProtocolMethodDecl &&
1347 (ImplVar->getObjCDeclQualifier() !=
1348 IfaceVar->getObjCDeclQualifier())) {
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001349 if (Warn) {
Fariborz Jahanian730cfb12011-08-10 17:16:30 +00001350 if (IsOverridingMode)
1351 S.Diag(ImplVar->getLocation(),
1352 diag::warn_conflicting_overriding_param_modifiers)
1353 << getTypeRange(ImplVar->getTypeSourceInfo())
1354 << MethodImpl->getDeclName();
1355 else S.Diag(ImplVar->getLocation(),
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001356 diag::warn_conflicting_param_modifiers)
1357 << getTypeRange(ImplVar->getTypeSourceInfo())
Fariborz Jahanian730cfb12011-08-10 17:16:30 +00001358 << MethodImpl->getDeclName();
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001359 S.Diag(IfaceVar->getLocation(), diag::note_previous_declaration)
1360 << getTypeRange(IfaceVar->getTypeSourceInfo());
1361 }
1362 else
1363 return false;
Fariborz Jahanian21761c82011-02-21 23:49:15 +00001364 }
1365
John McCall10302c02010-10-28 02:34:38 +00001366 QualType ImplTy = ImplVar->getType();
1367 QualType IfaceTy = IfaceVar->getType();
Fariborz Jahanian21761c82011-02-21 23:49:15 +00001368
John McCall10302c02010-10-28 02:34:38 +00001369 if (S.Context.hasSameUnqualifiedType(ImplTy, IfaceTy))
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001370 return true;
1371
1372 if (!Warn)
1373 return false;
Fariborz Jahanian730cfb12011-08-10 17:16:30 +00001374 unsigned DiagID =
1375 IsOverridingMode ? diag::warn_conflicting_overriding_param_types
1376 : diag::warn_conflicting_param_types;
John McCall10302c02010-10-28 02:34:38 +00001377
1378 // Mismatches between ObjC pointers go into a different warning
1379 // category, and sometimes they're even completely whitelisted.
1380 if (const ObjCObjectPointerType *ImplPtrTy =
1381 ImplTy->getAs<ObjCObjectPointerType>()) {
1382 if (const ObjCObjectPointerType *IfacePtrTy =
1383 IfaceTy->getAs<ObjCObjectPointerType>()) {
1384 // Allow non-matching argument types as long as they don't
1385 // violate the principle of substitutability. Specifically, the
1386 // implementation must accept any objects that the superclass
1387 // accepts, however it may also accept others.
1388 if (isObjCTypeSubstitutable(S.Context, ImplPtrTy, IfacePtrTy, true))
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001389 return false;
John McCall10302c02010-10-28 02:34:38 +00001390
Fariborz Jahanian730cfb12011-08-10 17:16:30 +00001391 DiagID =
1392 IsOverridingMode ? diag::warn_non_contravariant_overriding_param_types
1393 : diag::warn_non_contravariant_param_types;
John McCall10302c02010-10-28 02:34:38 +00001394 }
1395 }
1396
1397 S.Diag(ImplVar->getLocation(), DiagID)
1398 << getTypeRange(ImplVar->getTypeSourceInfo())
Fariborz Jahanian730cfb12011-08-10 17:16:30 +00001399 << MethodImpl->getDeclName() << IfaceTy << ImplTy;
1400 S.Diag(IfaceVar->getLocation(),
1401 (IsOverridingMode ? diag::note_previous_declaration
1402 : diag::note_previous_definition))
John McCall10302c02010-10-28 02:34:38 +00001403 << getTypeRange(IfaceVar->getTypeSourceInfo());
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001404 return false;
John McCall10302c02010-10-28 02:34:38 +00001405}
John McCallf85e1932011-06-15 23:02:42 +00001406
1407/// In ARC, check whether the conventional meanings of the two methods
1408/// match. If they don't, it's a hard error.
1409static bool checkMethodFamilyMismatch(Sema &S, ObjCMethodDecl *impl,
1410 ObjCMethodDecl *decl) {
1411 ObjCMethodFamily implFamily = impl->getMethodFamily();
1412 ObjCMethodFamily declFamily = decl->getMethodFamily();
1413 if (implFamily == declFamily) return false;
1414
1415 // Since conventions are sorted by selector, the only possibility is
1416 // that the types differ enough to cause one selector or the other
1417 // to fall out of the family.
1418 assert(implFamily == OMF_None || declFamily == OMF_None);
1419
1420 // No further diagnostics required on invalid declarations.
1421 if (impl->isInvalidDecl() || decl->isInvalidDecl()) return true;
1422
1423 const ObjCMethodDecl *unmatched = impl;
1424 ObjCMethodFamily family = declFamily;
1425 unsigned errorID = diag::err_arc_lost_method_convention;
1426 unsigned noteID = diag::note_arc_lost_method_convention;
1427 if (declFamily == OMF_None) {
1428 unmatched = decl;
1429 family = implFamily;
1430 errorID = diag::err_arc_gained_method_convention;
1431 noteID = diag::note_arc_gained_method_convention;
1432 }
1433
1434 // Indexes into a %select clause in the diagnostic.
1435 enum FamilySelector {
1436 F_alloc, F_copy, F_mutableCopy = F_copy, F_init, F_new
1437 };
1438 FamilySelector familySelector = FamilySelector();
1439
1440 switch (family) {
1441 case OMF_None: llvm_unreachable("logic error, no method convention");
1442 case OMF_retain:
1443 case OMF_release:
1444 case OMF_autorelease:
1445 case OMF_dealloc:
Nico Weber80cb6e62011-08-28 22:35:17 +00001446 case OMF_finalize:
John McCallf85e1932011-06-15 23:02:42 +00001447 case OMF_retainCount:
1448 case OMF_self:
Fariborz Jahanian9670e172011-07-05 22:38:59 +00001449 case OMF_performSelector:
John McCallf85e1932011-06-15 23:02:42 +00001450 // Mismatches for these methods don't change ownership
1451 // conventions, so we don't care.
1452 return false;
1453
1454 case OMF_init: familySelector = F_init; break;
1455 case OMF_alloc: familySelector = F_alloc; break;
1456 case OMF_copy: familySelector = F_copy; break;
1457 case OMF_mutableCopy: familySelector = F_mutableCopy; break;
1458 case OMF_new: familySelector = F_new; break;
1459 }
1460
1461 enum ReasonSelector { R_NonObjectReturn, R_UnrelatedReturn };
1462 ReasonSelector reasonSelector;
1463
1464 // The only reason these methods don't fall within their families is
1465 // due to unusual result types.
1466 if (unmatched->getResultType()->isObjCObjectPointerType()) {
1467 reasonSelector = R_UnrelatedReturn;
1468 } else {
1469 reasonSelector = R_NonObjectReturn;
1470 }
1471
1472 S.Diag(impl->getLocation(), errorID) << familySelector << reasonSelector;
1473 S.Diag(decl->getLocation(), noteID) << familySelector << reasonSelector;
1474
1475 return true;
1476}
John McCall10302c02010-10-28 02:34:38 +00001477
Fariborz Jahanian8daab972008-12-05 18:18:52 +00001478void Sema::WarnConflictingTypedMethods(ObjCMethodDecl *ImpMethodDecl,
Fariborz Jahanian21761c82011-02-21 23:49:15 +00001479 ObjCMethodDecl *MethodDecl,
Fariborz Jahanian36bc2c62011-10-10 17:53:29 +00001480 bool IsProtocolMethodDecl) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001481 if (getLangOpts().ObjCAutoRefCount &&
John McCallf85e1932011-06-15 23:02:42 +00001482 checkMethodFamilyMismatch(*this, ImpMethodDecl, MethodDecl))
1483 return;
1484
Fariborz Jahanian21761c82011-02-21 23:49:15 +00001485 CheckMethodOverrideReturn(*this, ImpMethodDecl, MethodDecl,
Fariborz Jahanian36bc2c62011-10-10 17:53:29 +00001486 IsProtocolMethodDecl, false,
Fariborz Jahanian730cfb12011-08-10 17:16:30 +00001487 true);
Mike Stump1eb44332009-09-09 15:08:12 +00001488
Chris Lattner3aff9192009-04-11 19:58:42 +00001489 for (ObjCMethodDecl::param_iterator IM = ImpMethodDecl->param_begin(),
Douglas Gregor0a4a23a2012-05-17 23:13:29 +00001490 IF = MethodDecl->param_begin(), EM = ImpMethodDecl->param_end(),
1491 EF = MethodDecl->param_end();
1492 IM != EM && IF != EF; ++IM, ++IF) {
Fariborz Jahanian730cfb12011-08-10 17:16:30 +00001493 CheckMethodOverrideParam(*this, ImpMethodDecl, MethodDecl, *IM, *IF,
Fariborz Jahanian36bc2c62011-10-10 17:53:29 +00001494 IsProtocolMethodDecl, false, true);
Fariborz Jahanian21121902011-08-08 18:03:17 +00001495 }
Fariborz Jahanian730cfb12011-08-10 17:16:30 +00001496
Fariborz Jahanian21121902011-08-08 18:03:17 +00001497 if (ImpMethodDecl->isVariadic() != MethodDecl->isVariadic()) {
Fariborz Jahanian36bc2c62011-10-10 17:53:29 +00001498 Diag(ImpMethodDecl->getLocation(),
1499 diag::warn_conflicting_variadic);
Fariborz Jahanian21121902011-08-08 18:03:17 +00001500 Diag(MethodDecl->getLocation(), diag::note_previous_declaration);
Fariborz Jahanian21121902011-08-08 18:03:17 +00001501 }
Fariborz Jahanian21121902011-08-08 18:03:17 +00001502}
1503
Fariborz Jahanian36bc2c62011-10-10 17:53:29 +00001504void Sema::CheckConflictingOverridingMethod(ObjCMethodDecl *Method,
1505 ObjCMethodDecl *Overridden,
1506 bool IsProtocolMethodDecl) {
1507
1508 CheckMethodOverrideReturn(*this, Method, Overridden,
1509 IsProtocolMethodDecl, true,
1510 true);
1511
1512 for (ObjCMethodDecl::param_iterator IM = Method->param_begin(),
Douglas Gregor0a4a23a2012-05-17 23:13:29 +00001513 IF = Overridden->param_begin(), EM = Method->param_end(),
1514 EF = Overridden->param_end();
1515 IM != EM && IF != EF; ++IM, ++IF) {
Fariborz Jahanian36bc2c62011-10-10 17:53:29 +00001516 CheckMethodOverrideParam(*this, Method, Overridden, *IM, *IF,
1517 IsProtocolMethodDecl, true, true);
1518 }
1519
1520 if (Method->isVariadic() != Overridden->isVariadic()) {
1521 Diag(Method->getLocation(),
1522 diag::warn_conflicting_overriding_variadic);
1523 Diag(Overridden->getLocation(), diag::note_previous_declaration);
1524 }
1525}
1526
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001527/// WarnExactTypedMethods - This routine issues a warning if method
1528/// implementation declaration matches exactly that of its declaration.
1529void Sema::WarnExactTypedMethods(ObjCMethodDecl *ImpMethodDecl,
1530 ObjCMethodDecl *MethodDecl,
1531 bool IsProtocolMethodDecl) {
1532 // don't issue warning when protocol method is optional because primary
1533 // class is not required to implement it and it is safe for protocol
1534 // to implement it.
1535 if (MethodDecl->getImplementationControl() == ObjCMethodDecl::Optional)
1536 return;
1537 // don't issue warning when primary class's method is
1538 // depecated/unavailable.
1539 if (MethodDecl->hasAttr<UnavailableAttr>() ||
1540 MethodDecl->hasAttr<DeprecatedAttr>())
1541 return;
1542
1543 bool match = CheckMethodOverrideReturn(*this, ImpMethodDecl, MethodDecl,
1544 IsProtocolMethodDecl, false, false);
1545 if (match)
1546 for (ObjCMethodDecl::param_iterator IM = ImpMethodDecl->param_begin(),
Douglas Gregor0a4a23a2012-05-17 23:13:29 +00001547 IF = MethodDecl->param_begin(), EM = ImpMethodDecl->param_end(),
1548 EF = MethodDecl->param_end();
1549 IM != EM && IF != EF; ++IM, ++IF) {
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001550 match = CheckMethodOverrideParam(*this, ImpMethodDecl, MethodDecl,
1551 *IM, *IF,
1552 IsProtocolMethodDecl, false, false);
1553 if (!match)
1554 break;
1555 }
1556 if (match)
1557 match = (ImpMethodDecl->isVariadic() == MethodDecl->isVariadic());
David Chisnall7ca13ef2011-08-08 17:32:19 +00001558 if (match)
1559 match = !(MethodDecl->isClassMethod() &&
1560 MethodDecl->getSelector() == GetNullarySelector("load", Context));
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001561
1562 if (match) {
1563 Diag(ImpMethodDecl->getLocation(),
1564 diag::warn_category_method_impl_match);
Ted Kremenek3306ec12012-02-27 22:55:11 +00001565 Diag(MethodDecl->getLocation(), diag::note_method_declared_at)
1566 << MethodDecl->getDeclName();
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001567 }
1568}
1569
Mike Stump390b4cc2009-05-16 07:39:55 +00001570/// FIXME: Type hierarchies in Objective-C can be deep. We could most likely
1571/// improve the efficiency of selector lookups and type checking by associating
1572/// with each protocol / interface / category the flattened instance tables. If
1573/// we used an immutable set to keep the table then it wouldn't add significant
1574/// memory cost and it would be handy for lookups.
Daniel Dunbarb20ef3e2008-08-27 05:40:03 +00001575
Steve Naroffefe7f362008-02-08 22:06:17 +00001576/// CheckProtocolMethodDefs - This routine checks unimplemented methods
Chris Lattner4d391482007-12-12 07:09:47 +00001577/// Declared in protocol, and those referenced by it.
Steve Naroffefe7f362008-02-08 22:06:17 +00001578void Sema::CheckProtocolMethodDefs(SourceLocation ImpLoc,
1579 ObjCProtocolDecl *PDecl,
Chris Lattner4d391482007-12-12 07:09:47 +00001580 bool& IncompleteImpl,
Benjamin Kramer811bfcd2012-05-27 13:28:52 +00001581 const SelectorSet &InsMap,
1582 const SelectorSet &ClsMap,
Fariborz Jahanianf2838592010-03-27 21:10:05 +00001583 ObjCContainerDecl *CDecl) {
Fariborz Jahanianbb3d14e2012-02-09 21:30:24 +00001584 ObjCCategoryDecl *C = dyn_cast<ObjCCategoryDecl>(CDecl);
1585 ObjCInterfaceDecl *IDecl = C ? C->getClassInterface()
1586 : dyn_cast<ObjCInterfaceDecl>(CDecl);
Fariborz Jahanianf2838592010-03-27 21:10:05 +00001587 assert (IDecl && "CheckProtocolMethodDefs - IDecl is null");
1588
Daniel Dunbar7ad1b1f2008-09-04 20:01:15 +00001589 ObjCInterfaceDecl *Super = IDecl->getSuperClass();
Fariborz Jahaniancd187622009-05-22 17:12:32 +00001590 ObjCInterfaceDecl *NSIDecl = 0;
John McCall260611a2012-06-20 06:18:46 +00001591 if (getLangOpts().ObjCRuntime.isNeXTFamily()) {
Mike Stump1eb44332009-09-09 15:08:12 +00001592 // check to see if class implements forwardInvocation method and objects
1593 // of this class are derived from 'NSProxy' so that to forward requests
Fariborz Jahaniancd187622009-05-22 17:12:32 +00001594 // from one object to another.
Mike Stump1eb44332009-09-09 15:08:12 +00001595 // Under such conditions, which means that every method possible is
1596 // implemented in the class, we should not issue "Method definition not
Fariborz Jahaniancd187622009-05-22 17:12:32 +00001597 // found" warnings.
1598 // FIXME: Use a general GetUnarySelector method for this.
1599 IdentifierInfo* II = &Context.Idents.get("forwardInvocation");
1600 Selector fISelector = Context.Selectors.getSelector(1, &II);
1601 if (InsMap.count(fISelector))
1602 // Is IDecl derived from 'NSProxy'? If so, no instance methods
1603 // need be implemented in the implementation.
1604 NSIDecl = IDecl->lookupInheritedClass(&Context.Idents.get("NSProxy"));
1605 }
Mike Stump1eb44332009-09-09 15:08:12 +00001606
Fariborz Jahanian32b94be2013-01-07 19:21:03 +00001607 // If this is a forward protocol declaration, get its definition.
1608 if (!PDecl->isThisDeclarationADefinition() &&
1609 PDecl->getDefinition())
1610 PDecl = PDecl->getDefinition();
1611
Daniel Dunbar7ad1b1f2008-09-04 20:01:15 +00001612 // If a method lookup fails locally we still need to look and see if
1613 // the method was implemented by a base class or an inherited
1614 // protocol. This lookup is slow, but occurs rarely in correct code
1615 // and otherwise would terminate in a warning.
1616
Chris Lattner4d391482007-12-12 07:09:47 +00001617 // check unimplemented instance methods.
Fariborz Jahaniancd187622009-05-22 17:12:32 +00001618 if (!NSIDecl)
Mike Stump1eb44332009-09-09 15:08:12 +00001619 for (ObjCProtocolDecl::instmeth_iterator I = PDecl->instmeth_begin(),
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001620 E = PDecl->instmeth_end(); I != E; ++I) {
Fariborz Jahaniancd187622009-05-22 17:12:32 +00001621 ObjCMethodDecl *method = *I;
Mike Stump1eb44332009-09-09 15:08:12 +00001622 if (method->getImplementationControl() != ObjCMethodDecl::Optional &&
Jordan Rose1e4691b2012-10-10 16:42:25 +00001623 !method->isPropertyAccessor() &&
1624 !InsMap.count(method->getSelector()) &&
1625 (!Super || !Super->lookupInstanceMethod(method->getSelector()))) {
Fariborz Jahanianbb3d14e2012-02-09 21:30:24 +00001626 // If a method is not implemented in the category implementation but
1627 // has been declared in its primary class, superclass,
1628 // or in one of their protocols, no need to issue the warning.
1629 // This is because method will be implemented in the primary class
1630 // or one of its super class implementation.
1631
Fariborz Jahaniancd187622009-05-22 17:12:32 +00001632 // Ugly, but necessary. Method declared in protcol might have
1633 // have been synthesized due to a property declared in the class which
1634 // uses the protocol.
Fariborz Jahanianbb3d14e2012-02-09 21:30:24 +00001635 if (ObjCMethodDecl *MethodInClass =
1636 IDecl->lookupInstanceMethod(method->getSelector(),
Fariborz Jahanianbf393be2012-04-05 22:14:12 +00001637 true /*shallowCategoryLookup*/))
Jordan Rose1e4691b2012-10-10 16:42:25 +00001638 if (C || MethodInClass->isPropertyAccessor())
Fariborz Jahanianbb3d14e2012-02-09 21:30:24 +00001639 continue;
1640 unsigned DIAG = diag::warn_unimplemented_protocol_method;
1641 if (Diags.getDiagnosticLevel(DIAG, ImpLoc)
1642 != DiagnosticsEngine::Ignored) {
1643 WarnUndefinedMethod(ImpLoc, method, IncompleteImpl, DIAG);
Fariborz Jahanianbb3d14e2012-02-09 21:30:24 +00001644 Diag(CDecl->getLocation(), diag::note_required_for_protocol_at)
1645 << PDecl->getDeclName();
Fariborz Jahanian8822f7c2010-03-27 19:02:17 +00001646 }
Fariborz Jahaniancd187622009-05-22 17:12:32 +00001647 }
1648 }
Chris Lattner4d391482007-12-12 07:09:47 +00001649 // check unimplemented class methods
Mike Stump1eb44332009-09-09 15:08:12 +00001650 for (ObjCProtocolDecl::classmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001651 I = PDecl->classmeth_begin(), E = PDecl->classmeth_end();
Douglas Gregor6ab35242009-04-09 21:40:53 +00001652 I != E; ++I) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001653 ObjCMethodDecl *method = *I;
Daniel Dunbar7ad1b1f2008-09-04 20:01:15 +00001654 if (method->getImplementationControl() != ObjCMethodDecl::Optional &&
1655 !ClsMap.count(method->getSelector()) &&
Fariborz Jahanian8822f7c2010-03-27 19:02:17 +00001656 (!Super || !Super->lookupClassMethod(method->getSelector()))) {
Fariborz Jahanianbb3d14e2012-02-09 21:30:24 +00001657 // See above comment for instance method lookups.
1658 if (C && IDecl->lookupClassMethod(method->getSelector(),
Fariborz Jahanianbf393be2012-04-05 22:14:12 +00001659 true /*shallowCategoryLookup*/))
Fariborz Jahanianbb3d14e2012-02-09 21:30:24 +00001660 continue;
Fariborz Jahanian52146832010-03-31 18:23:33 +00001661 unsigned DIAG = diag::warn_unimplemented_protocol_method;
David Blaikied6471f72011-09-25 23:23:43 +00001662 if (Diags.getDiagnosticLevel(DIAG, ImpLoc) !=
1663 DiagnosticsEngine::Ignored) {
Fariborz Jahanian52146832010-03-31 18:23:33 +00001664 WarnUndefinedMethod(ImpLoc, method, IncompleteImpl, DIAG);
1665 Diag(IDecl->getLocation(), diag::note_required_for_protocol_at) <<
1666 PDecl->getDeclName();
1667 }
Fariborz Jahanian8822f7c2010-03-27 19:02:17 +00001668 }
Steve Naroff58dbdeb2007-12-14 23:37:57 +00001669 }
Chris Lattner780f3292008-07-21 21:32:27 +00001670 // Check on this protocols's referenced protocols, recursively.
1671 for (ObjCProtocolDecl::protocol_iterator PI = PDecl->protocol_begin(),
1672 E = PDecl->protocol_end(); PI != E; ++PI)
Fariborz Jahanianbb3d14e2012-02-09 21:30:24 +00001673 CheckProtocolMethodDefs(ImpLoc, *PI, IncompleteImpl, InsMap, ClsMap, CDecl);
Chris Lattner4d391482007-12-12 07:09:47 +00001674}
1675
Fariborz Jahanian1e159bc2011-07-16 00:08:33 +00001676/// MatchAllMethodDeclarations - Check methods declared in interface
Fariborz Jahanianb33f3ad2009-05-01 20:07:12 +00001677/// or protocol against those declared in their implementations.
1678///
Benjamin Kramer811bfcd2012-05-27 13:28:52 +00001679void Sema::MatchAllMethodDeclarations(const SelectorSet &InsMap,
1680 const SelectorSet &ClsMap,
1681 SelectorSet &InsMapSeen,
1682 SelectorSet &ClsMapSeen,
Fariborz Jahanianb33f3ad2009-05-01 20:07:12 +00001683 ObjCImplDecl* IMPDecl,
1684 ObjCContainerDecl* CDecl,
1685 bool &IncompleteImpl,
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001686 bool ImmediateClass,
Fariborz Jahanianbb3d14e2012-02-09 21:30:24 +00001687 bool WarnCategoryMethodImpl) {
Fariborz Jahanianb33f3ad2009-05-01 20:07:12 +00001688 // Check and see if instance methods in class interface have been
1689 // implemented in the implementation class. If so, their types match.
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001690 for (ObjCInterfaceDecl::instmeth_iterator I = CDecl->instmeth_begin(),
1691 E = CDecl->instmeth_end(); I != E; ++I) {
Fariborz Jahanianb33f3ad2009-05-01 20:07:12 +00001692 if (InsMapSeen.count((*I)->getSelector()))
1693 continue;
1694 InsMapSeen.insert((*I)->getSelector());
Jordan Rose1e4691b2012-10-10 16:42:25 +00001695 if (!(*I)->isPropertyAccessor() &&
Fariborz Jahanianb33f3ad2009-05-01 20:07:12 +00001696 !InsMap.count((*I)->getSelector())) {
1697 if (ImmediateClass)
Fariborz Jahanian52146832010-03-31 18:23:33 +00001698 WarnUndefinedMethod(IMPDecl->getLocation(), *I, IncompleteImpl,
Ted Kremenek8b43d2b2013-03-27 00:02:21 +00001699 diag::warn_undef_method_impl);
Fariborz Jahanianb33f3ad2009-05-01 20:07:12 +00001700 continue;
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001701 } else {
Mike Stump1eb44332009-09-09 15:08:12 +00001702 ObjCMethodDecl *ImpMethodDecl =
Argyrios Kyrtzidis2334f3a2011-08-30 19:43:21 +00001703 IMPDecl->getInstanceMethod((*I)->getSelector());
1704 assert(CDecl->getInstanceMethod((*I)->getSelector()) &&
1705 "Expected to find the method through lookup as well");
1706 ObjCMethodDecl *MethodDecl = *I;
Fariborz Jahanianb33f3ad2009-05-01 20:07:12 +00001707 // ImpMethodDecl may be null as in a @dynamic property.
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001708 if (ImpMethodDecl) {
Fariborz Jahanianbb3d14e2012-02-09 21:30:24 +00001709 if (!WarnCategoryMethodImpl)
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001710 WarnConflictingTypedMethods(ImpMethodDecl, MethodDecl,
1711 isa<ObjCProtocolDecl>(CDecl));
Jordan Rose1e4691b2012-10-10 16:42:25 +00001712 else if (!MethodDecl->isPropertyAccessor())
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001713 WarnExactTypedMethods(ImpMethodDecl, MethodDecl,
Fariborz Jahanianbb3d14e2012-02-09 21:30:24 +00001714 isa<ObjCProtocolDecl>(CDecl));
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001715 }
Fariborz Jahanianb33f3ad2009-05-01 20:07:12 +00001716 }
1717 }
Mike Stump1eb44332009-09-09 15:08:12 +00001718
Fariborz Jahanianb33f3ad2009-05-01 20:07:12 +00001719 // Check and see if class methods in class interface have been
1720 // implemented in the implementation class. If so, their types match.
Mike Stump1eb44332009-09-09 15:08:12 +00001721 for (ObjCInterfaceDecl::classmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001722 I = CDecl->classmeth_begin(), E = CDecl->classmeth_end(); I != E; ++I) {
Fariborz Jahanianb33f3ad2009-05-01 20:07:12 +00001723 if (ClsMapSeen.count((*I)->getSelector()))
1724 continue;
1725 ClsMapSeen.insert((*I)->getSelector());
1726 if (!ClsMap.count((*I)->getSelector())) {
1727 if (ImmediateClass)
Fariborz Jahanian52146832010-03-31 18:23:33 +00001728 WarnUndefinedMethod(IMPDecl->getLocation(), *I, IncompleteImpl,
Ted Kremenek8b43d2b2013-03-27 00:02:21 +00001729 diag::warn_undef_method_impl);
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001730 } else {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001731 ObjCMethodDecl *ImpMethodDecl =
1732 IMPDecl->getClassMethod((*I)->getSelector());
Argyrios Kyrtzidis2334f3a2011-08-30 19:43:21 +00001733 assert(CDecl->getClassMethod((*I)->getSelector()) &&
1734 "Expected to find the method through lookup as well");
1735 ObjCMethodDecl *MethodDecl = *I;
Fariborz Jahanianbb3d14e2012-02-09 21:30:24 +00001736 if (!WarnCategoryMethodImpl)
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001737 WarnConflictingTypedMethods(ImpMethodDecl, MethodDecl,
1738 isa<ObjCProtocolDecl>(CDecl));
1739 else
1740 WarnExactTypedMethods(ImpMethodDecl, MethodDecl,
Fariborz Jahanianbb3d14e2012-02-09 21:30:24 +00001741 isa<ObjCProtocolDecl>(CDecl));
Fariborz Jahanianb33f3ad2009-05-01 20:07:12 +00001742 }
1743 }
Fariborz Jahanianf54e3ae2010-10-08 22:59:25 +00001744
Fariborz Jahanianb33f3ad2009-05-01 20:07:12 +00001745 if (ObjCInterfaceDecl *I = dyn_cast<ObjCInterfaceDecl> (CDecl)) {
Fariborz Jahanian6a6bb282012-10-23 23:06:22 +00001746 // when checking that methods in implementation match their declaration,
1747 // i.e. when WarnCategoryMethodImpl is false, check declarations in class
1748 // extension; as well as those in categories.
Douglas Gregord3297242013-01-16 23:00:23 +00001749 if (!WarnCategoryMethodImpl) {
1750 for (ObjCInterfaceDecl::visible_categories_iterator
1751 Cat = I->visible_categories_begin(),
1752 CatEnd = I->visible_categories_end();
1753 Cat != CatEnd; ++Cat) {
Fariborz Jahanian6a6bb282012-10-23 23:06:22 +00001754 MatchAllMethodDeclarations(InsMap, ClsMap, InsMapSeen, ClsMapSeen,
Douglas Gregord3297242013-01-16 23:00:23 +00001755 IMPDecl, *Cat, IncompleteImpl, false,
Fariborz Jahanian6a6bb282012-10-23 23:06:22 +00001756 WarnCategoryMethodImpl);
Douglas Gregord3297242013-01-16 23:00:23 +00001757 }
1758 } else {
Fariborz Jahanian6a6bb282012-10-23 23:06:22 +00001759 // Also methods in class extensions need be looked at next.
Douglas Gregord3297242013-01-16 23:00:23 +00001760 for (ObjCInterfaceDecl::visible_extensions_iterator
1761 Ext = I->visible_extensions_begin(),
1762 ExtEnd = I->visible_extensions_end();
1763 Ext != ExtEnd; ++Ext) {
Fariborz Jahanian6a6bb282012-10-23 23:06:22 +00001764 MatchAllMethodDeclarations(InsMap, ClsMap, InsMapSeen, ClsMapSeen,
Douglas Gregord3297242013-01-16 23:00:23 +00001765 IMPDecl, *Ext, IncompleteImpl, false,
Fariborz Jahanian6a6bb282012-10-23 23:06:22 +00001766 WarnCategoryMethodImpl);
Douglas Gregord3297242013-01-16 23:00:23 +00001767 }
1768 }
1769
Fariborz Jahanianb33f3ad2009-05-01 20:07:12 +00001770 // Check for any implementation of a methods declared in protocol.
Ted Kremenek53b94412010-09-01 01:21:15 +00001771 for (ObjCInterfaceDecl::all_protocol_iterator
1772 PI = I->all_referenced_protocol_begin(),
1773 E = I->all_referenced_protocol_end(); PI != E; ++PI)
Mike Stump1eb44332009-09-09 15:08:12 +00001774 MatchAllMethodDeclarations(InsMap, ClsMap, InsMapSeen, ClsMapSeen,
1775 IMPDecl,
Fariborz Jahanianbb3d14e2012-02-09 21:30:24 +00001776 (*PI), IncompleteImpl, false,
1777 WarnCategoryMethodImpl);
Fariborz Jahanianeee3ef12011-07-24 20:53:26 +00001778
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001779 // FIXME. For now, we are not checking for extact match of methods
1780 // in category implementation and its primary class's super class.
Fariborz Jahanianbb3d14e2012-02-09 21:30:24 +00001781 if (!WarnCategoryMethodImpl && I->getSuperClass())
Fariborz Jahanianb33f3ad2009-05-01 20:07:12 +00001782 MatchAllMethodDeclarations(InsMap, ClsMap, InsMapSeen, ClsMapSeen,
Mike Stump1eb44332009-09-09 15:08:12 +00001783 IMPDecl,
Fariborz Jahanianb33f3ad2009-05-01 20:07:12 +00001784 I->getSuperClass(), IncompleteImpl, false);
1785 }
1786}
1787
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001788/// CheckCategoryVsClassMethodMatches - Checks that methods implemented in
1789/// category matches with those implemented in its primary class and
1790/// warns each time an exact match is found.
1791void Sema::CheckCategoryVsClassMethodMatches(
1792 ObjCCategoryImplDecl *CatIMPDecl) {
Benjamin Kramer811bfcd2012-05-27 13:28:52 +00001793 SelectorSet InsMap, ClsMap;
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001794
1795 for (ObjCImplementationDecl::instmeth_iterator
1796 I = CatIMPDecl->instmeth_begin(),
1797 E = CatIMPDecl->instmeth_end(); I!=E; ++I)
1798 InsMap.insert((*I)->getSelector());
1799
1800 for (ObjCImplementationDecl::classmeth_iterator
1801 I = CatIMPDecl->classmeth_begin(),
1802 E = CatIMPDecl->classmeth_end(); I != E; ++I)
1803 ClsMap.insert((*I)->getSelector());
1804 if (InsMap.empty() && ClsMap.empty())
1805 return;
1806
1807 // Get category's primary class.
1808 ObjCCategoryDecl *CatDecl = CatIMPDecl->getCategoryDecl();
1809 if (!CatDecl)
1810 return;
1811 ObjCInterfaceDecl *IDecl = CatDecl->getClassInterface();
1812 if (!IDecl)
1813 return;
Benjamin Kramer811bfcd2012-05-27 13:28:52 +00001814 SelectorSet InsMapSeen, ClsMapSeen;
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001815 bool IncompleteImpl = false;
1816 MatchAllMethodDeclarations(InsMap, ClsMap, InsMapSeen, ClsMapSeen,
1817 CatIMPDecl, IDecl,
Fariborz Jahanianbb3d14e2012-02-09 21:30:24 +00001818 IncompleteImpl, false,
1819 true /*WarnCategoryMethodImpl*/);
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001820}
Fariborz Jahanianeee3ef12011-07-24 20:53:26 +00001821
Fariborz Jahanian17cb3262010-05-05 21:52:17 +00001822void Sema::ImplMethodsVsClassMethods(Scope *S, ObjCImplDecl* IMPDecl,
Mike Stump1eb44332009-09-09 15:08:12 +00001823 ObjCContainerDecl* CDecl,
Chris Lattnercddc8882009-03-01 00:56:52 +00001824 bool IncompleteImpl) {
Benjamin Kramer811bfcd2012-05-27 13:28:52 +00001825 SelectorSet InsMap;
Chris Lattner4d391482007-12-12 07:09:47 +00001826 // Check and see if instance methods in class interface have been
1827 // implemented in the implementation class.
Mike Stump1eb44332009-09-09 15:08:12 +00001828 for (ObjCImplementationDecl::instmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001829 I = IMPDecl->instmeth_begin(), E = IMPDecl->instmeth_end(); I!=E; ++I)
Chris Lattner4c525092007-12-12 17:58:05 +00001830 InsMap.insert((*I)->getSelector());
Mike Stump1eb44332009-09-09 15:08:12 +00001831
Fariborz Jahanian12bac252009-04-14 23:15:21 +00001832 // Check and see if properties declared in the interface have either 1)
1833 // an implementation or 2) there is a @synthesize/@dynamic implementation
1834 // of the property in the @implementation.
Fariborz Jahanianeb4f2c52012-01-03 19:46:00 +00001835 if (const ObjCInterfaceDecl *IDecl = dyn_cast<ObjCInterfaceDecl>(CDecl))
John McCall260611a2012-06-20 06:18:46 +00001836 if (!(LangOpts.ObjCDefaultSynthProperties &&
1837 LangOpts.ObjCRuntime.isNonFragile()) ||
1838 IDecl->isObjCRequiresPropertyDefs())
Fariborz Jahanianc775b1a2013-04-24 17:06:38 +00001839 DiagnoseUnimplementedProperties(S, IMPDecl, CDecl);
Fariborz Jahanian3ac1eda2010-01-20 01:51:55 +00001840
Benjamin Kramer811bfcd2012-05-27 13:28:52 +00001841 SelectorSet ClsMap;
Mike Stump1eb44332009-09-09 15:08:12 +00001842 for (ObjCImplementationDecl::classmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001843 I = IMPDecl->classmeth_begin(),
1844 E = IMPDecl->classmeth_end(); I != E; ++I)
Chris Lattner4c525092007-12-12 17:58:05 +00001845 ClsMap.insert((*I)->getSelector());
Mike Stump1eb44332009-09-09 15:08:12 +00001846
Fariborz Jahanianb33f3ad2009-05-01 20:07:12 +00001847 // Check for type conflict of methods declared in a class/protocol and
1848 // its implementation; if any.
Benjamin Kramer811bfcd2012-05-27 13:28:52 +00001849 SelectorSet InsMapSeen, ClsMapSeen;
Mike Stump1eb44332009-09-09 15:08:12 +00001850 MatchAllMethodDeclarations(InsMap, ClsMap, InsMapSeen, ClsMapSeen,
1851 IMPDecl, CDecl,
Fariborz Jahanianb33f3ad2009-05-01 20:07:12 +00001852 IncompleteImpl, true);
Fariborz Jahanian74133072011-08-03 18:21:12 +00001853
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001854 // check all methods implemented in category against those declared
1855 // in its primary class.
1856 if (ObjCCategoryImplDecl *CatDecl =
1857 dyn_cast<ObjCCategoryImplDecl>(IMPDecl))
1858 CheckCategoryVsClassMethodMatches(CatDecl);
Mike Stump1eb44332009-09-09 15:08:12 +00001859
Chris Lattner4d391482007-12-12 07:09:47 +00001860 // Check the protocol list for unimplemented methods in the @implementation
1861 // class.
Fariborz Jahanianb33f3ad2009-05-01 20:07:12 +00001862 // Check and see if class methods in class interface have been
1863 // implemented in the implementation class.
Mike Stump1eb44332009-09-09 15:08:12 +00001864
Chris Lattnercddc8882009-03-01 00:56:52 +00001865 if (ObjCInterfaceDecl *I = dyn_cast<ObjCInterfaceDecl> (CDecl)) {
Ted Kremenek53b94412010-09-01 01:21:15 +00001866 for (ObjCInterfaceDecl::all_protocol_iterator
1867 PI = I->all_referenced_protocol_begin(),
1868 E = I->all_referenced_protocol_end(); PI != E; ++PI)
Mike Stump1eb44332009-09-09 15:08:12 +00001869 CheckProtocolMethodDefs(IMPDecl->getLocation(), *PI, IncompleteImpl,
Chris Lattnercddc8882009-03-01 00:56:52 +00001870 InsMap, ClsMap, I);
1871 // Check class extensions (unnamed categories)
Douglas Gregord3297242013-01-16 23:00:23 +00001872 for (ObjCInterfaceDecl::visible_extensions_iterator
1873 Ext = I->visible_extensions_begin(),
1874 ExtEnd = I->visible_extensions_end();
1875 Ext != ExtEnd; ++Ext) {
1876 ImplMethodsVsClassMethods(S, IMPDecl, *Ext, IncompleteImpl);
1877 }
Chris Lattnercddc8882009-03-01 00:56:52 +00001878 } else if (ObjCCategoryDecl *C = dyn_cast<ObjCCategoryDecl>(CDecl)) {
Fariborz Jahanianb106fc62009-10-05 21:32:49 +00001879 // For extended class, unimplemented methods in its protocols will
1880 // be reported in the primary class.
Fariborz Jahanian25760612010-02-15 21:55:26 +00001881 if (!C->IsClassExtension()) {
Fariborz Jahanianb106fc62009-10-05 21:32:49 +00001882 for (ObjCCategoryDecl::protocol_iterator PI = C->protocol_begin(),
1883 E = C->protocol_end(); PI != E; ++PI)
1884 CheckProtocolMethodDefs(IMPDecl->getLocation(), *PI, IncompleteImpl,
Fariborz Jahanianf2838592010-03-27 21:10:05 +00001885 InsMap, ClsMap, CDecl);
Fariborz Jahanianc775b1a2013-04-24 17:06:38 +00001886 DiagnoseUnimplementedProperties(S, IMPDecl, CDecl);
Fariborz Jahanian3ad230e2010-01-20 19:36:21 +00001887 }
Chris Lattnercddc8882009-03-01 00:56:52 +00001888 } else
David Blaikieb219cfc2011-09-23 05:06:16 +00001889 llvm_unreachable("invalid ObjCContainerDecl type.");
Chris Lattner4d391482007-12-12 07:09:47 +00001890}
1891
Mike Stump1eb44332009-09-09 15:08:12 +00001892/// ActOnForwardClassDeclaration -
Fariborz Jahanian95ed7782011-08-27 20:50:59 +00001893Sema::DeclGroupPtrTy
Chris Lattner4d391482007-12-12 07:09:47 +00001894Sema::ActOnForwardClassDeclaration(SourceLocation AtClassLoc,
Chris Lattnerbdbde4d2009-02-16 19:25:52 +00001895 IdentifierInfo **IdentList,
Ted Kremenekc09cba62009-11-17 23:12:20 +00001896 SourceLocation *IdentLocs,
Chris Lattnerbdbde4d2009-02-16 19:25:52 +00001897 unsigned NumElts) {
Fariborz Jahanian95ed7782011-08-27 20:50:59 +00001898 SmallVector<Decl *, 8> DeclsInGroup;
Chris Lattner4d391482007-12-12 07:09:47 +00001899 for (unsigned i = 0; i != NumElts; ++i) {
1900 // Check for another declaration kind with the same name.
John McCallf36e02d2009-10-09 21:13:30 +00001901 NamedDecl *PrevDecl
Douglas Gregorc83c6872010-04-15 22:33:43 +00001902 = LookupSingleName(TUScope, IdentList[i], IdentLocs[i],
Douglas Gregorc0b39642010-04-15 23:40:53 +00001903 LookupOrdinaryName, ForRedeclaration);
Douglas Gregorf57172b2008-12-08 18:40:42 +00001904 if (PrevDecl && PrevDecl->isTemplateParameter()) {
Douglas Gregor72c3f312008-12-05 18:15:24 +00001905 // Maybe we will complain about the shadowed template parameter.
1906 DiagnoseTemplateParameterShadow(AtClassLoc, PrevDecl);
1907 // Just pretend that we didn't see the previous declaration.
1908 PrevDecl = 0;
1909 }
1910
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001911 if (PrevDecl && !isa<ObjCInterfaceDecl>(PrevDecl)) {
Steve Naroffc7333882008-06-05 22:57:10 +00001912 // GCC apparently allows the following idiom:
1913 //
1914 // typedef NSObject < XCElementTogglerP > XCElementToggler;
1915 // @class XCElementToggler;
1916 //
Fariborz Jahaniane42670b2012-01-24 00:40:15 +00001917 // Here we have chosen to ignore the forward class declaration
1918 // with a warning. Since this is the implied behavior.
Richard Smith162e1c12011-04-15 14:24:37 +00001919 TypedefNameDecl *TDD = dyn_cast<TypedefNameDecl>(PrevDecl);
John McCallc12c5bb2010-05-15 11:32:37 +00001920 if (!TDD || !TDD->getUnderlyingType()->isObjCObjectType()) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001921 Diag(AtClassLoc, diag::err_redefinition_different_kind) << IdentList[i];
Chris Lattner5f4a6822008-11-23 23:12:31 +00001922 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
John McCallc12c5bb2010-05-15 11:32:37 +00001923 } else {
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001924 // a forward class declaration matching a typedef name of a class refers
Fariborz Jahaniane42670b2012-01-24 00:40:15 +00001925 // to the underlying class. Just ignore the forward class with a warning
1926 // as this will force the intended behavior which is to lookup the typedef
1927 // name.
1928 if (isa<ObjCObjectType>(TDD->getUnderlyingType())) {
1929 Diag(AtClassLoc, diag::warn_forward_class_redefinition) << IdentList[i];
1930 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
1931 continue;
1932 }
Fariborz Jahaniancae27c52009-05-07 21:49:26 +00001933 }
Chris Lattner4d391482007-12-12 07:09:47 +00001934 }
Douglas Gregor7723fec2011-12-15 20:29:51 +00001935
1936 // Create a declaration to describe this forward declaration.
Douglas Gregor0af55012011-12-16 03:12:41 +00001937 ObjCInterfaceDecl *PrevIDecl
1938 = dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl);
Douglas Gregor7723fec2011-12-15 20:29:51 +00001939 ObjCInterfaceDecl *IDecl
1940 = ObjCInterfaceDecl::Create(Context, CurContext, AtClassLoc,
Douglas Gregor375bb142011-12-27 22:43:10 +00001941 IdentList[i], PrevIDecl, IdentLocs[i]);
Douglas Gregor7723fec2011-12-15 20:29:51 +00001942 IDecl->setAtEndRange(IdentLocs[i]);
Douglas Gregor7723fec2011-12-15 20:29:51 +00001943
Douglas Gregor7723fec2011-12-15 20:29:51 +00001944 PushOnScopeChains(IDecl, TUScope);
Douglas Gregor375bb142011-12-27 22:43:10 +00001945 CheckObjCDeclScope(IDecl);
1946 DeclsInGroup.push_back(IDecl);
Chris Lattner4d391482007-12-12 07:09:47 +00001947 }
Fariborz Jahanian95ed7782011-08-27 20:50:59 +00001948
1949 return BuildDeclaratorGroup(DeclsInGroup.data(), DeclsInGroup.size(), false);
Chris Lattner4d391482007-12-12 07:09:47 +00001950}
1951
John McCall0f4c4c42011-06-16 01:15:19 +00001952static bool tryMatchRecordTypes(ASTContext &Context,
1953 Sema::MethodMatchStrategy strategy,
1954 const Type *left, const Type *right);
1955
John McCallf85e1932011-06-15 23:02:42 +00001956static bool matchTypes(ASTContext &Context, Sema::MethodMatchStrategy strategy,
1957 QualType leftQT, QualType rightQT) {
1958 const Type *left =
1959 Context.getCanonicalType(leftQT).getUnqualifiedType().getTypePtr();
1960 const Type *right =
1961 Context.getCanonicalType(rightQT).getUnqualifiedType().getTypePtr();
1962
1963 if (left == right) return true;
1964
1965 // If we're doing a strict match, the types have to match exactly.
1966 if (strategy == Sema::MMS_strict) return false;
1967
1968 if (left->isIncompleteType() || right->isIncompleteType()) return false;
1969
1970 // Otherwise, use this absurdly complicated algorithm to try to
1971 // validate the basic, low-level compatibility of the two types.
1972
1973 // As a minimum, require the sizes and alignments to match.
1974 if (Context.getTypeInfo(left) != Context.getTypeInfo(right))
1975 return false;
1976
1977 // Consider all the kinds of non-dependent canonical types:
1978 // - functions and arrays aren't possible as return and parameter types
1979
1980 // - vector types of equal size can be arbitrarily mixed
1981 if (isa<VectorType>(left)) return isa<VectorType>(right);
1982 if (isa<VectorType>(right)) return false;
1983
1984 // - references should only match references of identical type
John McCall0f4c4c42011-06-16 01:15:19 +00001985 // - structs, unions, and Objective-C objects must match more-or-less
1986 // exactly
John McCallf85e1932011-06-15 23:02:42 +00001987 // - everything else should be a scalar
1988 if (!left->isScalarType() || !right->isScalarType())
John McCall0f4c4c42011-06-16 01:15:19 +00001989 return tryMatchRecordTypes(Context, strategy, left, right);
John McCallf85e1932011-06-15 23:02:42 +00001990
John McCall1d9b3b22011-09-09 05:25:32 +00001991 // Make scalars agree in kind, except count bools as chars, and group
1992 // all non-member pointers together.
John McCallf85e1932011-06-15 23:02:42 +00001993 Type::ScalarTypeKind leftSK = left->getScalarTypeKind();
1994 Type::ScalarTypeKind rightSK = right->getScalarTypeKind();
1995 if (leftSK == Type::STK_Bool) leftSK = Type::STK_Integral;
1996 if (rightSK == Type::STK_Bool) rightSK = Type::STK_Integral;
John McCall1d9b3b22011-09-09 05:25:32 +00001997 if (leftSK == Type::STK_CPointer || leftSK == Type::STK_BlockPointer)
1998 leftSK = Type::STK_ObjCObjectPointer;
1999 if (rightSK == Type::STK_CPointer || rightSK == Type::STK_BlockPointer)
2000 rightSK = Type::STK_ObjCObjectPointer;
John McCallf85e1932011-06-15 23:02:42 +00002001
2002 // Note that data member pointers and function member pointers don't
2003 // intermix because of the size differences.
2004
2005 return (leftSK == rightSK);
2006}
Chris Lattner4d391482007-12-12 07:09:47 +00002007
John McCall0f4c4c42011-06-16 01:15:19 +00002008static bool tryMatchRecordTypes(ASTContext &Context,
2009 Sema::MethodMatchStrategy strategy,
2010 const Type *lt, const Type *rt) {
2011 assert(lt && rt && lt != rt);
2012
2013 if (!isa<RecordType>(lt) || !isa<RecordType>(rt)) return false;
2014 RecordDecl *left = cast<RecordType>(lt)->getDecl();
2015 RecordDecl *right = cast<RecordType>(rt)->getDecl();
2016
2017 // Require union-hood to match.
2018 if (left->isUnion() != right->isUnion()) return false;
2019
2020 // Require an exact match if either is non-POD.
2021 if ((isa<CXXRecordDecl>(left) && !cast<CXXRecordDecl>(left)->isPOD()) ||
2022 (isa<CXXRecordDecl>(right) && !cast<CXXRecordDecl>(right)->isPOD()))
2023 return false;
2024
2025 // Require size and alignment to match.
2026 if (Context.getTypeInfo(lt) != Context.getTypeInfo(rt)) return false;
2027
2028 // Require fields to match.
2029 RecordDecl::field_iterator li = left->field_begin(), le = left->field_end();
2030 RecordDecl::field_iterator ri = right->field_begin(), re = right->field_end();
2031 for (; li != le && ri != re; ++li, ++ri) {
2032 if (!matchTypes(Context, strategy, li->getType(), ri->getType()))
2033 return false;
2034 }
2035 return (li == le && ri == re);
2036}
2037
Chris Lattner4d391482007-12-12 07:09:47 +00002038/// MatchTwoMethodDeclarations - Checks that two methods have matching type and
2039/// returns true, or false, accordingly.
2040/// TODO: Handle protocol list; such as id<p1,p2> in type comparisons
John McCallf85e1932011-06-15 23:02:42 +00002041bool Sema::MatchTwoMethodDeclarations(const ObjCMethodDecl *left,
2042 const ObjCMethodDecl *right,
2043 MethodMatchStrategy strategy) {
2044 if (!matchTypes(Context, strategy,
2045 left->getResultType(), right->getResultType()))
2046 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00002047
Douglas Gregor7666b032013-02-07 19:13:24 +00002048 // If either is hidden, it is not considered to match.
2049 if (left->isHidden() || right->isHidden())
2050 return false;
2051
David Blaikie4e4d0842012-03-11 07:00:24 +00002052 if (getLangOpts().ObjCAutoRefCount &&
John McCallf85e1932011-06-15 23:02:42 +00002053 (left->hasAttr<NSReturnsRetainedAttr>()
2054 != right->hasAttr<NSReturnsRetainedAttr>() ||
2055 left->hasAttr<NSConsumesSelfAttr>()
2056 != right->hasAttr<NSConsumesSelfAttr>()))
2057 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00002058
Argyrios Kyrtzidis491306a2011-10-03 06:37:04 +00002059 ObjCMethodDecl::param_const_iterator
Douglas Gregor0a4a23a2012-05-17 23:13:29 +00002060 li = left->param_begin(), le = left->param_end(), ri = right->param_begin(),
2061 re = right->param_end();
Mike Stump1eb44332009-09-09 15:08:12 +00002062
Douglas Gregor0a4a23a2012-05-17 23:13:29 +00002063 for (; li != le && ri != re; ++li, ++ri) {
John McCallf85e1932011-06-15 23:02:42 +00002064 assert(ri != right->param_end() && "Param mismatch");
Argyrios Kyrtzidis491306a2011-10-03 06:37:04 +00002065 const ParmVarDecl *lparm = *li, *rparm = *ri;
John McCallf85e1932011-06-15 23:02:42 +00002066
2067 if (!matchTypes(Context, strategy, lparm->getType(), rparm->getType()))
2068 return false;
2069
David Blaikie4e4d0842012-03-11 07:00:24 +00002070 if (getLangOpts().ObjCAutoRefCount &&
John McCallf85e1932011-06-15 23:02:42 +00002071 lparm->hasAttr<NSConsumedAttr>() != rparm->hasAttr<NSConsumedAttr>())
2072 return false;
Chris Lattner4d391482007-12-12 07:09:47 +00002073 }
2074 return true;
2075}
2076
Douglas Gregorff310c72012-05-01 23:37:00 +00002077void Sema::addMethodToGlobalList(ObjCMethodList *List, ObjCMethodDecl *Method) {
Argyrios Kyrtzidis2e3d8c02013-04-17 00:08:58 +00002078 // Record at the head of the list whether there were 0, 1, or >= 2 methods
2079 // inside categories.
2080 if (isa<ObjCCategoryDecl>(Method->getDeclContext()))
2081 if (List->getBits() < 2)
2082 List->setBits(List->getBits()+1);
2083
Douglas Gregor44fae522012-01-25 00:19:56 +00002084 // If the list is empty, make it a singleton list.
2085 if (List->Method == 0) {
2086 List->Method = Method;
Argyrios Kyrtzidis2e3d8c02013-04-17 00:08:58 +00002087 List->setNext(0);
Douglas Gregorff310c72012-05-01 23:37:00 +00002088 return;
Douglas Gregor44fae522012-01-25 00:19:56 +00002089 }
2090
2091 // We've seen a method with this name, see if we have already seen this type
2092 // signature.
2093 ObjCMethodList *Previous = List;
Argyrios Kyrtzidis2e3d8c02013-04-17 00:08:58 +00002094 for (; List; Previous = List, List = List->getNext()) {
Douglas Gregor5ac4b692012-01-25 00:49:42 +00002095 if (!MatchTwoMethodDeclarations(Method, List->Method))
Douglas Gregor44fae522012-01-25 00:19:56 +00002096 continue;
2097
2098 ObjCMethodDecl *PrevObjCMethod = List->Method;
2099
2100 // Propagate the 'defined' bit.
2101 if (Method->isDefined())
2102 PrevObjCMethod->setDefined(true);
2103
2104 // If a method is deprecated, push it in the global pool.
2105 // This is used for better diagnostics.
2106 if (Method->isDeprecated()) {
2107 if (!PrevObjCMethod->isDeprecated())
2108 List->Method = Method;
2109 }
2110 // If new method is unavailable, push it into global pool
2111 // unless previous one is deprecated.
2112 if (Method->isUnavailable()) {
2113 if (PrevObjCMethod->getAvailability() < AR_Deprecated)
2114 List->Method = Method;
2115 }
2116
Douglas Gregorff310c72012-05-01 23:37:00 +00002117 return;
Douglas Gregor44fae522012-01-25 00:19:56 +00002118 }
2119
2120 // We have a new signature for an existing method - add it.
2121 // This is extremely rare. Only 1% of Cocoa selectors are "overloaded".
Douglas Gregor5ac4b692012-01-25 00:49:42 +00002122 ObjCMethodList *Mem = BumpAlloc.Allocate<ObjCMethodList>();
Argyrios Kyrtzidis2e3d8c02013-04-17 00:08:58 +00002123 Previous->setNext(new (Mem) ObjCMethodList(Method, 0));
Douglas Gregor44fae522012-01-25 00:19:56 +00002124}
2125
Sebastian Redldb9d2142010-08-02 23:18:59 +00002126/// \brief Read the contents of the method pool for a given selector from
2127/// external storage.
Douglas Gregor5ac4b692012-01-25 00:49:42 +00002128void Sema::ReadMethodPool(Selector Sel) {
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002129 assert(ExternalSource && "We need an external AST source");
Douglas Gregor5ac4b692012-01-25 00:49:42 +00002130 ExternalSource->ReadMethodPool(Sel);
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002131}
2132
Douglas Gregorff310c72012-05-01 23:37:00 +00002133void Sema::AddMethodToGlobalPool(ObjCMethodDecl *Method, bool impl,
Sebastian Redldb9d2142010-08-02 23:18:59 +00002134 bool instance) {
Argyrios Kyrtzidis9a0b6b42012-03-12 18:34:26 +00002135 // Ignore methods of invalid containers.
2136 if (cast<Decl>(Method->getDeclContext())->isInvalidDecl())
Douglas Gregorff310c72012-05-01 23:37:00 +00002137 return;
Argyrios Kyrtzidis9a0b6b42012-03-12 18:34:26 +00002138
Douglas Gregor0d266d62012-01-25 00:59:09 +00002139 if (ExternalSource)
2140 ReadMethodPool(Method->getSelector());
2141
Sebastian Redldb9d2142010-08-02 23:18:59 +00002142 GlobalMethodPool::iterator Pos = MethodPool.find(Method->getSelector());
Douglas Gregor0d266d62012-01-25 00:59:09 +00002143 if (Pos == MethodPool.end())
2144 Pos = MethodPool.insert(std::make_pair(Method->getSelector(),
2145 GlobalMethods())).first;
Douglas Gregor44fae522012-01-25 00:19:56 +00002146
Fariborz Jahanian3fe10412010-07-22 18:24:20 +00002147 Method->setDefined(impl);
Douglas Gregor44fae522012-01-25 00:19:56 +00002148
Sebastian Redldb9d2142010-08-02 23:18:59 +00002149 ObjCMethodList &Entry = instance ? Pos->second.first : Pos->second.second;
Douglas Gregorff310c72012-05-01 23:37:00 +00002150 addMethodToGlobalList(&Entry, Method);
Chris Lattner4d391482007-12-12 07:09:47 +00002151}
2152
John McCallf85e1932011-06-15 23:02:42 +00002153/// Determines if this is an "acceptable" loose mismatch in the global
2154/// method pool. This exists mostly as a hack to get around certain
2155/// global mismatches which we can't afford to make warnings / errors.
2156/// Really, what we want is a way to take a method out of the global
2157/// method pool.
2158static bool isAcceptableMethodMismatch(ObjCMethodDecl *chosen,
2159 ObjCMethodDecl *other) {
2160 if (!chosen->isInstanceMethod())
2161 return false;
2162
2163 Selector sel = chosen->getSelector();
2164 if (!sel.isUnarySelector() || sel.getNameForSlot(0) != "length")
2165 return false;
2166
2167 // Don't complain about mismatches for -length if the method we
2168 // chose has an integral result type.
2169 return (chosen->getResultType()->isIntegerType());
2170}
2171
Sebastian Redldb9d2142010-08-02 23:18:59 +00002172ObjCMethodDecl *Sema::LookupMethodInGlobalPool(Selector Sel, SourceRange R,
Fariborz Jahanian6b308f62010-08-09 23:27:58 +00002173 bool receiverIdOrClass,
Sebastian Redldb9d2142010-08-02 23:18:59 +00002174 bool warn, bool instance) {
Douglas Gregor0d266d62012-01-25 00:59:09 +00002175 if (ExternalSource)
2176 ReadMethodPool(Sel);
2177
Sebastian Redldb9d2142010-08-02 23:18:59 +00002178 GlobalMethodPool::iterator Pos = MethodPool.find(Sel);
Douglas Gregor0d266d62012-01-25 00:59:09 +00002179 if (Pos == MethodPool.end())
2180 return 0;
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002181
Douglas Gregorf0e00042013-01-16 18:47:38 +00002182 // Gather the non-hidden methods.
Sebastian Redldb9d2142010-08-02 23:18:59 +00002183 ObjCMethodList &MethList = instance ? Pos->second.first : Pos->second.second;
Douglas Gregorf0e00042013-01-16 18:47:38 +00002184 llvm::SmallVector<ObjCMethodDecl *, 4> Methods;
Argyrios Kyrtzidis2e3d8c02013-04-17 00:08:58 +00002185 for (ObjCMethodList *M = &MethList; M; M = M->getNext()) {
Douglas Gregorf0e00042013-01-16 18:47:38 +00002186 if (M->Method && !M->Method->isHidden()) {
2187 // If we're not supposed to warn about mismatches, we're done.
2188 if (!warn)
2189 return M->Method;
Mike Stump1eb44332009-09-09 15:08:12 +00002190
Douglas Gregorf0e00042013-01-16 18:47:38 +00002191 Methods.push_back(M->Method);
Sebastian Redldb9d2142010-08-02 23:18:59 +00002192 }
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002193 }
Douglas Gregorf0e00042013-01-16 18:47:38 +00002194
2195 // If there aren't any visible methods, we're done.
2196 // FIXME: Recover if there are any known-but-hidden methods?
2197 if (Methods.empty())
2198 return 0;
2199
2200 if (Methods.size() == 1)
2201 return Methods[0];
2202
2203 // We found multiple methods, so we may have to complain.
2204 bool issueDiagnostic = false, issueError = false;
2205
2206 // We support a warning which complains about *any* difference in
2207 // method signature.
2208 bool strictSelectorMatch =
2209 (receiverIdOrClass && warn &&
2210 (Diags.getDiagnosticLevel(diag::warn_strict_multiple_method_decl,
2211 R.getBegin())
2212 != DiagnosticsEngine::Ignored));
2213 if (strictSelectorMatch) {
2214 for (unsigned I = 1, N = Methods.size(); I != N; ++I) {
2215 if (!MatchTwoMethodDeclarations(Methods[0], Methods[I], MMS_strict)) {
2216 issueDiagnostic = true;
2217 break;
2218 }
2219 }
2220 }
2221
2222 // If we didn't see any strict differences, we won't see any loose
2223 // differences. In ARC, however, we also need to check for loose
2224 // mismatches, because most of them are errors.
2225 if (!strictSelectorMatch ||
2226 (issueDiagnostic && getLangOpts().ObjCAutoRefCount))
2227 for (unsigned I = 1, N = Methods.size(); I != N; ++I) {
2228 // This checks if the methods differ in type mismatch.
2229 if (!MatchTwoMethodDeclarations(Methods[0], Methods[I], MMS_loose) &&
2230 !isAcceptableMethodMismatch(Methods[0], Methods[I])) {
2231 issueDiagnostic = true;
2232 if (getLangOpts().ObjCAutoRefCount)
2233 issueError = true;
2234 break;
2235 }
2236 }
2237
2238 if (issueDiagnostic) {
2239 if (issueError)
2240 Diag(R.getBegin(), diag::err_arc_multiple_method_decl) << Sel << R;
2241 else if (strictSelectorMatch)
2242 Diag(R.getBegin(), diag::warn_strict_multiple_method_decl) << Sel << R;
2243 else
2244 Diag(R.getBegin(), diag::warn_multiple_method_decl) << Sel << R;
2245
2246 Diag(Methods[0]->getLocStart(),
2247 issueError ? diag::note_possibility : diag::note_using)
2248 << Methods[0]->getSourceRange();
2249 for (unsigned I = 1, N = Methods.size(); I != N; ++I) {
2250 Diag(Methods[I]->getLocStart(), diag::note_also_found)
2251 << Methods[I]->getSourceRange();
2252 }
2253 }
2254 return Methods[0];
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002255}
2256
Fariborz Jahanian3fe10412010-07-22 18:24:20 +00002257ObjCMethodDecl *Sema::LookupImplementedMethodInGlobalPool(Selector Sel) {
Sebastian Redldb9d2142010-08-02 23:18:59 +00002258 GlobalMethodPool::iterator Pos = MethodPool.find(Sel);
2259 if (Pos == MethodPool.end())
2260 return 0;
2261
2262 GlobalMethods &Methods = Pos->second;
2263
2264 if (Methods.first.Method && Methods.first.Method->isDefined())
2265 return Methods.first.Method;
2266 if (Methods.second.Method && Methods.second.Method->isDefined())
2267 return Methods.second.Method;
Fariborz Jahanian3fe10412010-07-22 18:24:20 +00002268 return 0;
2269}
2270
Fariborz Jahanianf914b972010-02-23 23:41:11 +00002271/// DiagnoseDuplicateIvars -
2272/// Check for duplicate ivars in the entire class at the start of
James Dennett1dfbd922012-06-14 21:40:34 +00002273/// \@implementation. This becomes necesssary because class extension can
Fariborz Jahanianf914b972010-02-23 23:41:11 +00002274/// add ivars to a class in random order which will not be known until
James Dennett1dfbd922012-06-14 21:40:34 +00002275/// class's \@implementation is seen.
Fariborz Jahanianf914b972010-02-23 23:41:11 +00002276void Sema::DiagnoseDuplicateIvars(ObjCInterfaceDecl *ID,
2277 ObjCInterfaceDecl *SID) {
2278 for (ObjCInterfaceDecl::ivar_iterator IVI = ID->ivar_begin(),
2279 IVE = ID->ivar_end(); IVI != IVE; ++IVI) {
David Blaikie581deb32012-06-06 20:45:41 +00002280 ObjCIvarDecl* Ivar = *IVI;
Fariborz Jahanianf914b972010-02-23 23:41:11 +00002281 if (Ivar->isInvalidDecl())
2282 continue;
2283 if (IdentifierInfo *II = Ivar->getIdentifier()) {
2284 ObjCIvarDecl* prevIvar = SID->lookupInstanceVariable(II);
2285 if (prevIvar) {
2286 Diag(Ivar->getLocation(), diag::err_duplicate_member) << II;
2287 Diag(prevIvar->getLocation(), diag::note_previous_declaration);
2288 Ivar->setInvalidDecl();
2289 }
2290 }
2291 }
2292}
2293
Erik Verbruggend64251f2011-12-06 09:25:23 +00002294Sema::ObjCContainerKind Sema::getObjCContainerKind() const {
2295 switch (CurContext->getDeclKind()) {
2296 case Decl::ObjCInterface:
2297 return Sema::OCK_Interface;
2298 case Decl::ObjCProtocol:
2299 return Sema::OCK_Protocol;
2300 case Decl::ObjCCategory:
2301 if (dyn_cast<ObjCCategoryDecl>(CurContext)->IsClassExtension())
2302 return Sema::OCK_ClassExtension;
2303 else
2304 return Sema::OCK_Category;
2305 case Decl::ObjCImplementation:
2306 return Sema::OCK_Implementation;
2307 case Decl::ObjCCategoryImpl:
2308 return Sema::OCK_CategoryImplementation;
2309
2310 default:
2311 return Sema::OCK_None;
2312 }
2313}
2314
Steve Naroffa56f6162007-12-18 01:30:32 +00002315// Note: For class/category implemenations, allMethods/allProperties is
2316// always null.
Erik Verbruggend64251f2011-12-06 09:25:23 +00002317Decl *Sema::ActOnAtEnd(Scope *S, SourceRange AtEnd,
2318 Decl **allMethods, unsigned allNum,
2319 Decl **allProperties, unsigned pNum,
2320 DeclGroupPtrTy *allTUVars, unsigned tuvNum) {
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00002321
Erik Verbruggend64251f2011-12-06 09:25:23 +00002322 if (getObjCContainerKind() == Sema::OCK_None)
2323 return 0;
2324
2325 assert(AtEnd.isValid() && "Invalid location for '@end'");
2326
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00002327 ObjCContainerDecl *OCD = dyn_cast<ObjCContainerDecl>(CurContext);
2328 Decl *ClassDecl = cast<Decl>(OCD);
Fariborz Jahanian63e963c2009-11-16 18:57:01 +00002329
Mike Stump1eb44332009-09-09 15:08:12 +00002330 bool isInterfaceDeclKind =
Chris Lattnerf8d17a52008-03-16 21:17:37 +00002331 isa<ObjCInterfaceDecl>(ClassDecl) || isa<ObjCCategoryDecl>(ClassDecl)
2332 || isa<ObjCProtocolDecl>(ClassDecl);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002333 bool checkIdenticalMethods = isa<ObjCImplementationDecl>(ClassDecl);
Steve Naroff09c47192009-01-09 15:36:25 +00002334
Steve Naroff0701bbb2009-01-08 17:28:14 +00002335 // FIXME: Remove these and use the ObjCContainerDecl/DeclContext.
2336 llvm::DenseMap<Selector, const ObjCMethodDecl*> InsMap;
2337 llvm::DenseMap<Selector, const ObjCMethodDecl*> ClsMap;
2338
Chris Lattner4d391482007-12-12 07:09:47 +00002339 for (unsigned i = 0; i < allNum; i++ ) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002340 ObjCMethodDecl *Method =
John McCalld226f652010-08-21 09:40:31 +00002341 cast_or_null<ObjCMethodDecl>(allMethods[i]);
Chris Lattner4d391482007-12-12 07:09:47 +00002342
2343 if (!Method) continue; // Already issued a diagnostic.
Douglas Gregorf8d49f62009-01-09 17:18:27 +00002344 if (Method->isInstanceMethod()) {
Chris Lattner4d391482007-12-12 07:09:47 +00002345 /// Check for instance method of the same name with incompatible types
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002346 const ObjCMethodDecl *&PrevMethod = InsMap[Method->getSelector()];
Mike Stump1eb44332009-09-09 15:08:12 +00002347 bool match = PrevMethod ? MatchTwoMethodDeclarations(Method, PrevMethod)
Chris Lattner4d391482007-12-12 07:09:47 +00002348 : false;
Mike Stump1eb44332009-09-09 15:08:12 +00002349 if ((isInterfaceDeclKind && PrevMethod && !match)
Eli Friedman82b4e762008-12-16 20:15:50 +00002350 || (checkIdenticalMethods && match)) {
Chris Lattner5f4a6822008-11-23 23:12:31 +00002351 Diag(Method->getLocation(), diag::err_duplicate_method_decl)
Chris Lattner077bf5e2008-11-24 03:33:13 +00002352 << Method->getDeclName();
Chris Lattner5f4a6822008-11-23 23:12:31 +00002353 Diag(PrevMethod->getLocation(), diag::note_previous_declaration);
Douglas Gregorbdb2d502010-12-21 17:34:17 +00002354 Method->setInvalidDecl();
Chris Lattner4d391482007-12-12 07:09:47 +00002355 } else {
Fariborz Jahanian72096462011-12-13 19:40:34 +00002356 if (PrevMethod) {
Argyrios Kyrtzidis3a919e72011-10-14 08:02:31 +00002357 Method->setAsRedeclaration(PrevMethod);
Fariborz Jahanian72096462011-12-13 19:40:34 +00002358 if (!Context.getSourceManager().isInSystemHeader(
2359 Method->getLocation()))
2360 Diag(Method->getLocation(), diag::warn_duplicate_method_decl)
2361 << Method->getDeclName();
2362 Diag(PrevMethod->getLocation(), diag::note_previous_declaration);
2363 }
Chris Lattner4d391482007-12-12 07:09:47 +00002364 InsMap[Method->getSelector()] = Method;
2365 /// The following allows us to typecheck messages to "id".
Douglas Gregorff310c72012-05-01 23:37:00 +00002366 AddInstanceMethodToGlobalPool(Method);
Chris Lattner4d391482007-12-12 07:09:47 +00002367 }
Mike Stumpac5fc7c2009-08-04 21:02:39 +00002368 } else {
Chris Lattner4d391482007-12-12 07:09:47 +00002369 /// Check for class method of the same name with incompatible types
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002370 const ObjCMethodDecl *&PrevMethod = ClsMap[Method->getSelector()];
Mike Stump1eb44332009-09-09 15:08:12 +00002371 bool match = PrevMethod ? MatchTwoMethodDeclarations(Method, PrevMethod)
Chris Lattner4d391482007-12-12 07:09:47 +00002372 : false;
Mike Stump1eb44332009-09-09 15:08:12 +00002373 if ((isInterfaceDeclKind && PrevMethod && !match)
Eli Friedman82b4e762008-12-16 20:15:50 +00002374 || (checkIdenticalMethods && match)) {
Chris Lattner5f4a6822008-11-23 23:12:31 +00002375 Diag(Method->getLocation(), diag::err_duplicate_method_decl)
Chris Lattner077bf5e2008-11-24 03:33:13 +00002376 << Method->getDeclName();
Chris Lattner5f4a6822008-11-23 23:12:31 +00002377 Diag(PrevMethod->getLocation(), diag::note_previous_declaration);
Douglas Gregorbdb2d502010-12-21 17:34:17 +00002378 Method->setInvalidDecl();
Chris Lattner4d391482007-12-12 07:09:47 +00002379 } else {
Fariborz Jahanian72096462011-12-13 19:40:34 +00002380 if (PrevMethod) {
Argyrios Kyrtzidis3a919e72011-10-14 08:02:31 +00002381 Method->setAsRedeclaration(PrevMethod);
Fariborz Jahanian72096462011-12-13 19:40:34 +00002382 if (!Context.getSourceManager().isInSystemHeader(
2383 Method->getLocation()))
2384 Diag(Method->getLocation(), diag::warn_duplicate_method_decl)
2385 << Method->getDeclName();
2386 Diag(PrevMethod->getLocation(), diag::note_previous_declaration);
2387 }
Chris Lattner4d391482007-12-12 07:09:47 +00002388 ClsMap[Method->getSelector()] = Method;
Douglas Gregorff310c72012-05-01 23:37:00 +00002389 AddFactoryMethodToGlobalPool(Method);
Chris Lattner4d391482007-12-12 07:09:47 +00002390 }
2391 }
2392 }
Douglas Gregorb892d702013-01-21 19:42:21 +00002393 if (isa<ObjCInterfaceDecl>(ClassDecl)) {
2394 // Nothing to do here.
Steve Naroff09c47192009-01-09 15:36:25 +00002395 } else if (ObjCCategoryDecl *C = dyn_cast<ObjCCategoryDecl>(ClassDecl)) {
Fariborz Jahanian77e14bd2008-12-06 19:59:02 +00002396 // Categories are used to extend the class by declaring new methods.
Mike Stump1eb44332009-09-09 15:08:12 +00002397 // By the same token, they are also used to add new properties. No
Fariborz Jahanian77e14bd2008-12-06 19:59:02 +00002398 // need to compare the added property to those in the class.
Daniel Dunbarb20ef3e2008-08-27 05:40:03 +00002399
Fariborz Jahanian88f5e9b2010-12-10 23:36:33 +00002400 if (C->IsClassExtension()) {
2401 ObjCInterfaceDecl *CCPrimary = C->getClassInterface();
2402 DiagnoseClassExtensionDupMethods(C, CCPrimary);
Fariborz Jahanian88f5e9b2010-12-10 23:36:33 +00002403 }
Chris Lattner4d391482007-12-12 07:09:47 +00002404 }
Steve Naroff09c47192009-01-09 15:36:25 +00002405 if (ObjCContainerDecl *CDecl = dyn_cast<ObjCContainerDecl>(ClassDecl)) {
Fariborz Jahanian25760612010-02-15 21:55:26 +00002406 if (CDecl->getIdentifier())
2407 // ProcessPropertyDecl is responsible for diagnosing conflicts with any
2408 // user-defined setter/getter. It also synthesizes setter/getter methods
2409 // and adds them to the DeclContext and global method pools.
2410 for (ObjCContainerDecl::prop_iterator I = CDecl->prop_begin(),
2411 E = CDecl->prop_end();
2412 I != E; ++I)
David Blaikie581deb32012-06-06 20:45:41 +00002413 ProcessPropertyDecl(*I, CDecl);
Ted Kremenek782f2f52010-01-07 01:20:12 +00002414 CDecl->setAtEndRange(AtEnd);
Steve Naroff09c47192009-01-09 15:36:25 +00002415 }
2416 if (ObjCImplementationDecl *IC=dyn_cast<ObjCImplementationDecl>(ClassDecl)) {
Ted Kremenek782f2f52010-01-07 01:20:12 +00002417 IC->setAtEndRange(AtEnd);
Fariborz Jahanian7ca8b062009-11-11 22:40:11 +00002418 if (ObjCInterfaceDecl* IDecl = IC->getClassInterface()) {
Fariborz Jahanianc78f6842010-12-11 18:39:37 +00002419 // Any property declared in a class extension might have user
2420 // declared setter or getter in current class extension or one
2421 // of the other class extensions. Mark them as synthesized as
2422 // property will be synthesized when property with same name is
2423 // seen in the @implementation.
Douglas Gregord3297242013-01-16 23:00:23 +00002424 for (ObjCInterfaceDecl::visible_extensions_iterator
2425 Ext = IDecl->visible_extensions_begin(),
2426 ExtEnd = IDecl->visible_extensions_end();
2427 Ext != ExtEnd; ++Ext) {
2428 for (ObjCContainerDecl::prop_iterator I = Ext->prop_begin(),
2429 E = Ext->prop_end(); I != E; ++I) {
David Blaikie581deb32012-06-06 20:45:41 +00002430 ObjCPropertyDecl *Property = *I;
Fariborz Jahanianc78f6842010-12-11 18:39:37 +00002431 // Skip over properties declared @dynamic
2432 if (const ObjCPropertyImplDecl *PIDecl
2433 = IC->FindPropertyImplDecl(Property->getIdentifier()))
2434 if (PIDecl->getPropertyImplementation()
2435 == ObjCPropertyImplDecl::Dynamic)
2436 continue;
Douglas Gregord3297242013-01-16 23:00:23 +00002437
2438 for (ObjCInterfaceDecl::visible_extensions_iterator
2439 Ext = IDecl->visible_extensions_begin(),
2440 ExtEnd = IDecl->visible_extensions_end();
2441 Ext != ExtEnd; ++Ext) {
2442 if (ObjCMethodDecl *GetterMethod
2443 = Ext->getInstanceMethod(Property->getGetterName()))
Jordan Rose1e4691b2012-10-10 16:42:25 +00002444 GetterMethod->setPropertyAccessor(true);
Fariborz Jahanianc78f6842010-12-11 18:39:37 +00002445 if (!Property->isReadOnly())
Douglas Gregord3297242013-01-16 23:00:23 +00002446 if (ObjCMethodDecl *SetterMethod
2447 = Ext->getInstanceMethod(Property->getSetterName()))
Jordan Rose1e4691b2012-10-10 16:42:25 +00002448 SetterMethod->setPropertyAccessor(true);
Douglas Gregord3297242013-01-16 23:00:23 +00002449 }
Fariborz Jahanianc78f6842010-12-11 18:39:37 +00002450 }
2451 }
Fariborz Jahanian17cb3262010-05-05 21:52:17 +00002452 ImplMethodsVsClassMethods(S, IC, IDecl);
Fariborz Jahanian7ca8b062009-11-11 22:40:11 +00002453 AtomicPropertySetterGetterRules(IC, IDecl);
John McCallf85e1932011-06-15 23:02:42 +00002454 DiagnoseOwningPropertyGetterSynthesis(IC);
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +00002455
Patrick Beardb2f68202012-04-06 18:12:22 +00002456 bool HasRootClassAttr = IDecl->hasAttr<ObjCRootClassAttr>();
2457 if (IDecl->getSuperClass() == NULL) {
2458 // This class has no superclass, so check that it has been marked with
2459 // __attribute((objc_root_class)).
2460 if (!HasRootClassAttr) {
2461 SourceLocation DeclLoc(IDecl->getLocation());
2462 SourceLocation SuperClassLoc(PP.getLocForEndOfToken(DeclLoc));
2463 Diag(DeclLoc, diag::warn_objc_root_class_missing)
2464 << IDecl->getIdentifier();
2465 // See if NSObject is in the current scope, and if it is, suggest
2466 // adding " : NSObject " to the class declaration.
2467 NamedDecl *IF = LookupSingleName(TUScope,
2468 NSAPIObj->getNSClassId(NSAPI::ClassId_NSObject),
2469 DeclLoc, LookupOrdinaryName);
2470 ObjCInterfaceDecl *NSObjectDecl = dyn_cast_or_null<ObjCInterfaceDecl>(IF);
2471 if (NSObjectDecl && NSObjectDecl->getDefinition()) {
2472 Diag(SuperClassLoc, diag::note_objc_needs_superclass)
2473 << FixItHint::CreateInsertion(SuperClassLoc, " : NSObject ");
2474 } else {
2475 Diag(SuperClassLoc, diag::note_objc_needs_superclass);
2476 }
2477 }
2478 } else if (HasRootClassAttr) {
2479 // Complain that only root classes may have this attribute.
2480 Diag(IDecl->getLocation(), diag::err_objc_root_class_subclass);
2481 }
2482
John McCall260611a2012-06-20 06:18:46 +00002483 if (LangOpts.ObjCRuntime.isNonFragile()) {
Fariborz Jahanianf914b972010-02-23 23:41:11 +00002484 while (IDecl->getSuperClass()) {
2485 DiagnoseDuplicateIvars(IDecl, IDecl->getSuperClass());
2486 IDecl = IDecl->getSuperClass();
2487 }
Patrick Beardb2f68202012-04-06 18:12:22 +00002488 }
Fariborz Jahanian7ca8b062009-11-11 22:40:11 +00002489 }
Fariborz Jahaniane4498c62010-04-28 16:11:27 +00002490 SetIvarInitializers(IC);
Mike Stump1eb44332009-09-09 15:08:12 +00002491 } else if (ObjCCategoryImplDecl* CatImplClass =
Steve Naroff09c47192009-01-09 15:36:25 +00002492 dyn_cast<ObjCCategoryImplDecl>(ClassDecl)) {
Ted Kremenek782f2f52010-01-07 01:20:12 +00002493 CatImplClass->setAtEndRange(AtEnd);
Mike Stump1eb44332009-09-09 15:08:12 +00002494
Chris Lattner4d391482007-12-12 07:09:47 +00002495 // Find category interface decl and then check that all methods declared
Daniel Dunbarb20ef3e2008-08-27 05:40:03 +00002496 // in this interface are implemented in the category @implementation.
Chris Lattner97a58872009-02-16 18:32:47 +00002497 if (ObjCInterfaceDecl* IDecl = CatImplClass->getClassInterface()) {
Douglas Gregord3297242013-01-16 23:00:23 +00002498 if (ObjCCategoryDecl *Cat
2499 = IDecl->FindCategoryDeclaration(CatImplClass->getIdentifier())) {
2500 ImplMethodsVsClassMethods(S, CatImplClass, Cat);
Chris Lattner4d391482007-12-12 07:09:47 +00002501 }
2502 }
2503 }
Chris Lattner682bf922009-03-29 16:50:03 +00002504 if (isInterfaceDeclKind) {
2505 // Reject invalid vardecls.
2506 for (unsigned i = 0; i != tuvNum; i++) {
2507 DeclGroupRef DG = allTUVars[i].getAsVal<DeclGroupRef>();
2508 for (DeclGroupRef::iterator I = DG.begin(), E = DG.end(); I != E; ++I)
2509 if (VarDecl *VDecl = dyn_cast<VarDecl>(*I)) {
Daniel Dunbar5466c7b2009-04-14 02:25:56 +00002510 if (!VDecl->hasExternalStorage())
Steve Naroff87454162009-04-13 17:58:46 +00002511 Diag(VDecl->getLocation(), diag::err_objc_var_decl_inclass);
Fariborz Jahanianb31cb7f2009-03-21 18:06:45 +00002512 }
Chris Lattner682bf922009-03-29 16:50:03 +00002513 }
Fariborz Jahanian38e24c72009-03-18 22:33:24 +00002514 }
Fariborz Jahanian10af8792011-08-29 17:33:12 +00002515 ActOnObjCContainerFinishDefinition();
Argyrios Kyrtzidisb4a686d2011-10-17 19:48:13 +00002516
2517 for (unsigned i = 0; i != tuvNum; i++) {
2518 DeclGroupRef DG = allTUVars[i].getAsVal<DeclGroupRef>();
Argyrios Kyrtzidisc14a03d2011-11-23 20:27:36 +00002519 for (DeclGroupRef::iterator I = DG.begin(), E = DG.end(); I != E; ++I)
2520 (*I)->setTopLevelDeclInObjCContainer();
Argyrios Kyrtzidisb4a686d2011-10-17 19:48:13 +00002521 Consumer.HandleTopLevelDeclInObjCContainer(DG);
2522 }
Erik Verbruggend64251f2011-12-06 09:25:23 +00002523
Dmitri Gribenkoabd56c82012-07-13 01:06:46 +00002524 ActOnDocumentableDecl(ClassDecl);
Erik Verbruggend64251f2011-12-06 09:25:23 +00002525 return ClassDecl;
Chris Lattner4d391482007-12-12 07:09:47 +00002526}
2527
2528
2529/// CvtQTToAstBitMask - utility routine to produce an AST bitmask for
2530/// objective-c's type qualifier from the parser version of the same info.
Mike Stump1eb44332009-09-09 15:08:12 +00002531static Decl::ObjCDeclQualifier
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002532CvtQTToAstBitMask(ObjCDeclSpec::ObjCDeclQualifier PQTVal) {
John McCall09e2c522011-05-01 03:04:29 +00002533 return (Decl::ObjCDeclQualifier) (unsigned) PQTVal;
Chris Lattner4d391482007-12-12 07:09:47 +00002534}
2535
Ted Kremenek422bae72010-04-18 04:59:38 +00002536static inline
Fariborz Jahanian129a60b2012-08-24 23:50:13 +00002537unsigned countAlignAttr(const AttrVec &A) {
2538 unsigned count=0;
2539 for (AttrVec::const_iterator i = A.begin(), e = A.end(); i != e; ++i)
2540 if ((*i)->getKind() == attr::Aligned)
2541 ++count;
2542 return count;
2543}
2544
2545static inline
Fariborz Jahanian7fda4002011-10-22 01:21:15 +00002546bool containsInvalidMethodImplAttribute(ObjCMethodDecl *IMD,
2547 const AttrVec &A) {
2548 // If method is only declared in implementation (private method),
Fariborz Jahanian7fda4002011-10-22 01:21:15 +00002549 // No need to issue any diagnostics on method definition with attributes.
Fariborz Jahanianee28a4b2011-10-22 01:56:45 +00002550 if (!IMD)
Fariborz Jahanian7fda4002011-10-22 01:21:15 +00002551 return false;
Fariborz Jahanian129a60b2012-08-24 23:50:13 +00002552
Fariborz Jahanianee28a4b2011-10-22 01:56:45 +00002553 // method declared in interface has no attribute.
Fariborz Jahanian129a60b2012-08-24 23:50:13 +00002554 // But implementation has attributes. This is invalid.
2555 // Except when implementation has 'Align' attribute which is
2556 // immaterial to method declared in interface.
Fariborz Jahanianee28a4b2011-10-22 01:56:45 +00002557 if (!IMD->hasAttrs())
Fariborz Jahanian129a60b2012-08-24 23:50:13 +00002558 return (A.size() > countAlignAttr(A));
Fariborz Jahanianee28a4b2011-10-22 01:56:45 +00002559
Fariborz Jahanian7fda4002011-10-22 01:21:15 +00002560 const AttrVec &D = IMD->getAttrs();
Fariborz Jahanian7fda4002011-10-22 01:21:15 +00002561
Fariborz Jahanian129a60b2012-08-24 23:50:13 +00002562 unsigned countAlignOnImpl = countAlignAttr(A);
2563 if (!countAlignOnImpl && (A.size() != D.size()))
2564 return true;
2565 else if (countAlignOnImpl) {
2566 unsigned countAlignOnDecl = countAlignAttr(D);
2567 if (countAlignOnDecl && (A.size() != D.size()))
2568 return true;
2569 else if (!countAlignOnDecl &&
2570 ((A.size()-countAlignOnImpl) != D.size()))
2571 return true;
2572 }
2573
Fariborz Jahanian7fda4002011-10-22 01:21:15 +00002574 // attributes on method declaration and definition must match exactly.
2575 // Note that we have at most a couple of attributes on methods, so this
2576 // n*n search is good enough.
2577 for (AttrVec::const_iterator i = A.begin(), e = A.end(); i != e; ++i) {
Fariborz Jahanian129a60b2012-08-24 23:50:13 +00002578 if ((*i)->getKind() == attr::Aligned)
2579 continue;
Fariborz Jahanian7fda4002011-10-22 01:21:15 +00002580 bool match = false;
2581 for (AttrVec::const_iterator i1 = D.begin(), e1 = D.end(); i1 != e1; ++i1) {
2582 if ((*i)->getKind() == (*i1)->getKind()) {
2583 match = true;
2584 break;
2585 }
2586 }
2587 if (!match)
Sean Huntcf807c42010-08-18 23:23:40 +00002588 return true;
Fariborz Jahanian7fda4002011-10-22 01:21:15 +00002589 }
Fariborz Jahanian129a60b2012-08-24 23:50:13 +00002590
Sean Huntcf807c42010-08-18 23:23:40 +00002591 return false;
Ted Kremenek422bae72010-04-18 04:59:38 +00002592}
2593
Douglas Gregor926df6c2011-06-11 01:09:30 +00002594/// \brief Check whether the declared result type of the given Objective-C
2595/// method declaration is compatible with the method's class.
2596///
Argyrios Kyrtzidise15db6f2012-05-09 16:12:57 +00002597static Sema::ResultTypeCompatibilityKind
Douglas Gregor926df6c2011-06-11 01:09:30 +00002598CheckRelatedResultTypeCompatibility(Sema &S, ObjCMethodDecl *Method,
2599 ObjCInterfaceDecl *CurrentClass) {
2600 QualType ResultType = Method->getResultType();
Douglas Gregor926df6c2011-06-11 01:09:30 +00002601
2602 // If an Objective-C method inherits its related result type, then its
2603 // declared result type must be compatible with its own class type. The
2604 // declared result type is compatible if:
2605 if (const ObjCObjectPointerType *ResultObjectType
2606 = ResultType->getAs<ObjCObjectPointerType>()) {
2607 // - it is id or qualified id, or
2608 if (ResultObjectType->isObjCIdType() ||
2609 ResultObjectType->isObjCQualifiedIdType())
Argyrios Kyrtzidise15db6f2012-05-09 16:12:57 +00002610 return Sema::RTC_Compatible;
Douglas Gregor926df6c2011-06-11 01:09:30 +00002611
2612 if (CurrentClass) {
2613 if (ObjCInterfaceDecl *ResultClass
2614 = ResultObjectType->getInterfaceDecl()) {
2615 // - it is the same as the method's class type, or
Douglas Gregor60ef3082011-12-15 00:29:59 +00002616 if (declaresSameEntity(CurrentClass, ResultClass))
Argyrios Kyrtzidise15db6f2012-05-09 16:12:57 +00002617 return Sema::RTC_Compatible;
Douglas Gregor926df6c2011-06-11 01:09:30 +00002618
2619 // - it is a superclass of the method's class type
2620 if (ResultClass->isSuperClassOf(CurrentClass))
Argyrios Kyrtzidise15db6f2012-05-09 16:12:57 +00002621 return Sema::RTC_Compatible;
Douglas Gregor926df6c2011-06-11 01:09:30 +00002622 }
Douglas Gregore97179c2011-09-08 01:46:34 +00002623 } else {
2624 // Any Objective-C pointer type might be acceptable for a protocol
2625 // method; we just don't know.
Argyrios Kyrtzidise15db6f2012-05-09 16:12:57 +00002626 return Sema::RTC_Unknown;
Douglas Gregor926df6c2011-06-11 01:09:30 +00002627 }
2628 }
2629
Argyrios Kyrtzidise15db6f2012-05-09 16:12:57 +00002630 return Sema::RTC_Incompatible;
Douglas Gregor926df6c2011-06-11 01:09:30 +00002631}
2632
John McCall6c2c2502011-07-22 02:45:48 +00002633namespace {
2634/// A helper class for searching for methods which a particular method
2635/// overrides.
2636class OverrideSearch {
Daniel Dunbarb732fce2012-02-29 03:04:05 +00002637public:
John McCall6c2c2502011-07-22 02:45:48 +00002638 Sema &S;
2639 ObjCMethodDecl *Method;
Daniel Dunbarb732fce2012-02-29 03:04:05 +00002640 llvm::SmallPtrSet<ObjCMethodDecl*, 4> Overridden;
John McCall6c2c2502011-07-22 02:45:48 +00002641 bool Recursive;
2642
2643public:
2644 OverrideSearch(Sema &S, ObjCMethodDecl *method) : S(S), Method(method) {
2645 Selector selector = method->getSelector();
2646
2647 // Bypass this search if we've never seen an instance/class method
2648 // with this selector before.
2649 Sema::GlobalMethodPool::iterator it = S.MethodPool.find(selector);
2650 if (it == S.MethodPool.end()) {
Axel Naumann0ec56b72012-10-18 19:05:02 +00002651 if (!S.getExternalSource()) return;
Douglas Gregor5ac4b692012-01-25 00:49:42 +00002652 S.ReadMethodPool(selector);
2653
2654 it = S.MethodPool.find(selector);
2655 if (it == S.MethodPool.end())
2656 return;
John McCall6c2c2502011-07-22 02:45:48 +00002657 }
2658 ObjCMethodList &list =
2659 method->isInstanceMethod() ? it->second.first : it->second.second;
2660 if (!list.Method) return;
2661
2662 ObjCContainerDecl *container
2663 = cast<ObjCContainerDecl>(method->getDeclContext());
2664
2665 // Prevent the search from reaching this container again. This is
2666 // important with categories, which override methods from the
2667 // interface and each other.
Douglas Gregorc9683342012-05-03 21:25:24 +00002668 if (ObjCCategoryDecl *Category = dyn_cast<ObjCCategoryDecl>(container)) {
2669 searchFromContainer(container);
Douglas Gregordd872242012-05-17 22:39:14 +00002670 if (ObjCInterfaceDecl *Interface = Category->getClassInterface())
2671 searchFromContainer(Interface);
Douglas Gregorc9683342012-05-03 21:25:24 +00002672 } else {
2673 searchFromContainer(container);
2674 }
Douglas Gregor926df6c2011-06-11 01:09:30 +00002675 }
John McCall6c2c2502011-07-22 02:45:48 +00002676
Daniel Dunbarb732fce2012-02-29 03:04:05 +00002677 typedef llvm::SmallPtrSet<ObjCMethodDecl*, 128>::iterator iterator;
John McCall6c2c2502011-07-22 02:45:48 +00002678 iterator begin() const { return Overridden.begin(); }
2679 iterator end() const { return Overridden.end(); }
2680
2681private:
2682 void searchFromContainer(ObjCContainerDecl *container) {
2683 if (container->isInvalidDecl()) return;
2684
2685 switch (container->getDeclKind()) {
2686#define OBJCCONTAINER(type, base) \
2687 case Decl::type: \
2688 searchFrom(cast<type##Decl>(container)); \
2689 break;
2690#define ABSTRACT_DECL(expansion)
2691#define DECL(type, base) \
2692 case Decl::type:
2693#include "clang/AST/DeclNodes.inc"
2694 llvm_unreachable("not an ObjC container!");
2695 }
2696 }
2697
2698 void searchFrom(ObjCProtocolDecl *protocol) {
Douglas Gregor5e2a1ff2012-01-01 19:29:29 +00002699 if (!protocol->hasDefinition())
2700 return;
2701
John McCall6c2c2502011-07-22 02:45:48 +00002702 // A method in a protocol declaration overrides declarations from
2703 // referenced ("parent") protocols.
2704 search(protocol->getReferencedProtocols());
2705 }
2706
2707 void searchFrom(ObjCCategoryDecl *category) {
2708 // A method in a category declaration overrides declarations from
2709 // the main class and from protocols the category references.
Douglas Gregorc9683342012-05-03 21:25:24 +00002710 // The main class is handled in the constructor.
John McCall6c2c2502011-07-22 02:45:48 +00002711 search(category->getReferencedProtocols());
2712 }
2713
2714 void searchFrom(ObjCCategoryImplDecl *impl) {
2715 // A method in a category definition that has a category
2716 // declaration overrides declarations from the category
2717 // declaration.
2718 if (ObjCCategoryDecl *category = impl->getCategoryDecl()) {
2719 search(category);
Douglas Gregordd872242012-05-17 22:39:14 +00002720 if (ObjCInterfaceDecl *Interface = category->getClassInterface())
2721 search(Interface);
John McCall6c2c2502011-07-22 02:45:48 +00002722
2723 // Otherwise it overrides declarations from the class.
Douglas Gregordd872242012-05-17 22:39:14 +00002724 } else if (ObjCInterfaceDecl *Interface = impl->getClassInterface()) {
2725 search(Interface);
John McCall6c2c2502011-07-22 02:45:48 +00002726 }
2727 }
2728
2729 void searchFrom(ObjCInterfaceDecl *iface) {
2730 // A method in a class declaration overrides declarations from
Douglas Gregor2e5c15b2011-12-15 05:27:12 +00002731 if (!iface->hasDefinition())
2732 return;
2733
John McCall6c2c2502011-07-22 02:45:48 +00002734 // - categories,
Argyrios Kyrtzidis04593d02013-03-29 21:51:48 +00002735 for (ObjCInterfaceDecl::known_categories_iterator
2736 cat = iface->known_categories_begin(),
2737 catEnd = iface->known_categories_end();
Douglas Gregord3297242013-01-16 23:00:23 +00002738 cat != catEnd; ++cat) {
2739 search(*cat);
2740 }
John McCall6c2c2502011-07-22 02:45:48 +00002741
2742 // - the super class, and
2743 if (ObjCInterfaceDecl *super = iface->getSuperClass())
2744 search(super);
2745
2746 // - any referenced protocols.
2747 search(iface->getReferencedProtocols());
2748 }
2749
2750 void searchFrom(ObjCImplementationDecl *impl) {
2751 // A method in a class implementation overrides declarations from
2752 // the class interface.
Douglas Gregordd872242012-05-17 22:39:14 +00002753 if (ObjCInterfaceDecl *Interface = impl->getClassInterface())
2754 search(Interface);
John McCall6c2c2502011-07-22 02:45:48 +00002755 }
2756
2757
2758 void search(const ObjCProtocolList &protocols) {
2759 for (ObjCProtocolList::iterator i = protocols.begin(), e = protocols.end();
2760 i != e; ++i)
2761 search(*i);
2762 }
2763
2764 void search(ObjCContainerDecl *container) {
John McCall6c2c2502011-07-22 02:45:48 +00002765 // Check for a method in this container which matches this selector.
2766 ObjCMethodDecl *meth = container->getMethod(Method->getSelector(),
Argyrios Kyrtzidis04593d02013-03-29 21:51:48 +00002767 Method->isInstanceMethod(),
2768 /*AllowHidden=*/true);
John McCall6c2c2502011-07-22 02:45:48 +00002769
2770 // If we find one, record it and bail out.
2771 if (meth) {
2772 Overridden.insert(meth);
2773 return;
2774 }
2775
2776 // Otherwise, search for methods that a hypothetical method here
2777 // would have overridden.
2778
2779 // Note that we're now in a recursive case.
2780 Recursive = true;
2781
2782 searchFromContainer(container);
2783 }
2784};
Douglas Gregor926df6c2011-06-11 01:09:30 +00002785}
2786
Argyrios Kyrtzidise15db6f2012-05-09 16:12:57 +00002787void Sema::CheckObjCMethodOverrides(ObjCMethodDecl *ObjCMethod,
2788 ObjCInterfaceDecl *CurrentClass,
2789 ResultTypeCompatibilityKind RTC) {
2790 // Search for overridden methods and merge information down from them.
2791 OverrideSearch overrides(*this, ObjCMethod);
2792 // Keep track if the method overrides any method in the class's base classes,
2793 // its protocols, or its categories' protocols; we will keep that info
2794 // in the ObjCMethodDecl.
2795 // For this info, a method in an implementation is not considered as
2796 // overriding the same method in the interface or its categories.
2797 bool hasOverriddenMethodsInBaseOrProtocol = false;
2798 for (OverrideSearch::iterator
2799 i = overrides.begin(), e = overrides.end(); i != e; ++i) {
2800 ObjCMethodDecl *overridden = *i;
2801
Argyrios Kyrtzidise7a77722013-04-17 00:09:08 +00002802 if (!hasOverriddenMethodsInBaseOrProtocol) {
2803 if (isa<ObjCProtocolDecl>(overridden->getDeclContext()) ||
2804 CurrentClass != overridden->getClassInterface() ||
2805 overridden->isOverriding()) {
2806 hasOverriddenMethodsInBaseOrProtocol = true;
2807
2808 } else if (isa<ObjCImplDecl>(ObjCMethod->getDeclContext())) {
2809 // OverrideSearch will return as "overridden" the same method in the
2810 // interface. For hasOverriddenMethodsInBaseOrProtocol, we need to
2811 // check whether a category of a base class introduced a method with the
2812 // same selector, after the interface method declaration.
2813 // To avoid unnecessary lookups in the majority of cases, we use the
2814 // extra info bits in GlobalMethodPool to check whether there were any
2815 // category methods with this selector.
2816 GlobalMethodPool::iterator It =
2817 MethodPool.find(ObjCMethod->getSelector());
2818 if (It != MethodPool.end()) {
2819 ObjCMethodList &List =
2820 ObjCMethod->isInstanceMethod()? It->second.first: It->second.second;
2821 unsigned CategCount = List.getBits();
2822 if (CategCount > 0) {
2823 // If the method is in a category we'll do lookup if there were at
2824 // least 2 category methods recorded, otherwise only one will do.
2825 if (CategCount > 1 ||
2826 !isa<ObjCCategoryImplDecl>(overridden->getDeclContext())) {
2827 OverrideSearch overrides(*this, overridden);
2828 for (OverrideSearch::iterator
2829 OI= overrides.begin(), OE= overrides.end(); OI!=OE; ++OI) {
2830 ObjCMethodDecl *SuperOverridden = *OI;
2831 if (CurrentClass != SuperOverridden->getClassInterface()) {
2832 hasOverriddenMethodsInBaseOrProtocol = true;
2833 overridden->setOverriding(true);
2834 break;
2835 }
2836 }
2837 }
2838 }
2839 }
2840 }
2841 }
Argyrios Kyrtzidise15db6f2012-05-09 16:12:57 +00002842
2843 // Propagate down the 'related result type' bit from overridden methods.
2844 if (RTC != Sema::RTC_Incompatible && overridden->hasRelatedResultType())
2845 ObjCMethod->SetRelatedResultType();
2846
2847 // Then merge the declarations.
2848 mergeObjCMethodDecls(ObjCMethod, overridden);
2849
2850 if (ObjCMethod->isImplicit() && overridden->isImplicit())
2851 continue; // Conflicting properties are detected elsewhere.
2852
2853 // Check for overriding methods
2854 if (isa<ObjCInterfaceDecl>(ObjCMethod->getDeclContext()) ||
2855 isa<ObjCImplementationDecl>(ObjCMethod->getDeclContext()))
2856 CheckConflictingOverridingMethod(ObjCMethod, overridden,
2857 isa<ObjCProtocolDecl>(overridden->getDeclContext()));
2858
2859 if (CurrentClass && overridden->getDeclContext() != CurrentClass &&
Fariborz Jahanianc4133a42012-07-05 22:26:07 +00002860 isa<ObjCInterfaceDecl>(overridden->getDeclContext()) &&
2861 !overridden->isImplicit() /* not meant for properties */) {
Argyrios Kyrtzidise15db6f2012-05-09 16:12:57 +00002862 ObjCMethodDecl::param_iterator ParamI = ObjCMethod->param_begin(),
2863 E = ObjCMethod->param_end();
Douglas Gregor0a4a23a2012-05-17 23:13:29 +00002864 ObjCMethodDecl::param_iterator PrevI = overridden->param_begin(),
2865 PrevE = overridden->param_end();
2866 for (; ParamI != E && PrevI != PrevE; ++ParamI, ++PrevI) {
Argyrios Kyrtzidise15db6f2012-05-09 16:12:57 +00002867 assert(PrevI != overridden->param_end() && "Param mismatch");
2868 QualType T1 = Context.getCanonicalType((*ParamI)->getType());
2869 QualType T2 = Context.getCanonicalType((*PrevI)->getType());
2870 // If type of argument of method in this class does not match its
2871 // respective argument type in the super class method, issue warning;
2872 if (!Context.typesAreCompatible(T1, T2)) {
2873 Diag((*ParamI)->getLocation(), diag::ext_typecheck_base_super)
2874 << T1 << T2;
2875 Diag(overridden->getLocation(), diag::note_previous_declaration);
2876 break;
2877 }
2878 }
2879 }
2880 }
2881
2882 ObjCMethod->setOverriding(hasOverriddenMethodsInBaseOrProtocol);
2883}
2884
John McCalld226f652010-08-21 09:40:31 +00002885Decl *Sema::ActOnMethodDeclaration(
Fariborz Jahanian7f532532011-02-09 22:20:01 +00002886 Scope *S,
Chris Lattner4d391482007-12-12 07:09:47 +00002887 SourceLocation MethodLoc, SourceLocation EndLoc,
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00002888 tok::TokenKind MethodType,
John McCallb3d87482010-08-24 05:47:05 +00002889 ObjCDeclSpec &ReturnQT, ParsedType ReturnType,
Argyrios Kyrtzidis11d77162011-10-03 06:36:36 +00002890 ArrayRef<SourceLocation> SelectorLocs,
Chris Lattner4d391482007-12-12 07:09:47 +00002891 Selector Sel,
2892 // optional arguments. The number of types/arguments is obtained
2893 // from the Sel.getNumArgs().
Chris Lattnere294d3f2009-04-11 18:57:04 +00002894 ObjCArgInfo *ArgInfo,
Fariborz Jahanian4f4fd922010-04-08 00:30:06 +00002895 DeclaratorChunk::ParamInfo *CParamInfo, unsigned CNumArgs, // c-style args
Chris Lattner4d391482007-12-12 07:09:47 +00002896 AttributeList *AttrList, tok::ObjCKeywordKind MethodDeclKind,
Fariborz Jahanian90ba78c2011-03-12 18:54:30 +00002897 bool isVariadic, bool MethodDefinition) {
Steve Naroffda323ad2008-02-29 21:48:07 +00002898 // Make sure we can establish a context for the method.
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00002899 if (!CurContext->isObjCContainer()) {
Steve Naroffda323ad2008-02-29 21:48:07 +00002900 Diag(MethodLoc, diag::error_missing_method_context);
John McCalld226f652010-08-21 09:40:31 +00002901 return 0;
Steve Naroffda323ad2008-02-29 21:48:07 +00002902 }
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00002903 ObjCContainerDecl *OCD = dyn_cast<ObjCContainerDecl>(CurContext);
2904 Decl *ClassDecl = cast<Decl>(OCD);
Chris Lattner4d391482007-12-12 07:09:47 +00002905 QualType resultDeclType;
Mike Stump1eb44332009-09-09 15:08:12 +00002906
Douglas Gregore97179c2011-09-08 01:46:34 +00002907 bool HasRelatedResultType = false;
Douglas Gregor4bc1cb62010-03-08 14:59:44 +00002908 TypeSourceInfo *ResultTInfo = 0;
Steve Naroffccef3712009-02-20 22:59:16 +00002909 if (ReturnType) {
Douglas Gregor4bc1cb62010-03-08 14:59:44 +00002910 resultDeclType = GetTypeFromParser(ReturnType, &ResultTInfo);
Mike Stump1eb44332009-09-09 15:08:12 +00002911
Steve Naroffccef3712009-02-20 22:59:16 +00002912 // Methods cannot return interface types. All ObjC objects are
2913 // passed by reference.
John McCallc12c5bb2010-05-15 11:32:37 +00002914 if (resultDeclType->isObjCObjectType()) {
Chris Lattner2dd979f2009-04-11 19:08:56 +00002915 Diag(MethodLoc, diag::err_object_cannot_be_passed_returned_by_value)
2916 << 0 << resultDeclType;
John McCalld226f652010-08-21 09:40:31 +00002917 return 0;
Douglas Gregor926df6c2011-06-11 01:09:30 +00002918 }
Douglas Gregore97179c2011-09-08 01:46:34 +00002919
2920 HasRelatedResultType = (resultDeclType == Context.getObjCInstanceType());
Fariborz Jahanianaab24a62011-07-21 17:00:47 +00002921 } else { // get the type for "id".
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002922 resultDeclType = Context.getObjCIdType();
Fariborz Jahanianfeb4fa12011-07-21 17:38:14 +00002923 Diag(MethodLoc, diag::warn_missing_method_return_type)
Argyrios Kyrtzidis11d77162011-10-03 06:36:36 +00002924 << FixItHint::CreateInsertion(SelectorLocs.front(), "(id)");
Fariborz Jahanianaab24a62011-07-21 17:00:47 +00002925 }
Mike Stump1eb44332009-09-09 15:08:12 +00002926
2927 ObjCMethodDecl* ObjCMethod =
Argyrios Kyrtzidis491306a2011-10-03 06:37:04 +00002928 ObjCMethodDecl::Create(Context, MethodLoc, EndLoc, Sel,
Argyrios Kyrtzidis11d77162011-10-03 06:36:36 +00002929 resultDeclType,
Douglas Gregor4bc1cb62010-03-08 14:59:44 +00002930 ResultTInfo,
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00002931 CurContext,
Chris Lattner6c4ae5d2008-03-16 00:49:28 +00002932 MethodType == tok::minus, isVariadic,
Jordan Rose1e4691b2012-10-10 16:42:25 +00002933 /*isPropertyAccessor=*/false,
Argyrios Kyrtzidis75cf3e82011-08-17 19:25:08 +00002934 /*isImplicitlyDeclared=*/false, /*isDefined=*/false,
Douglas Gregor926df6c2011-06-11 01:09:30 +00002935 MethodDeclKind == tok::objc_optional
2936 ? ObjCMethodDecl::Optional
2937 : ObjCMethodDecl::Required,
Douglas Gregore97179c2011-09-08 01:46:34 +00002938 HasRelatedResultType);
Mike Stump1eb44332009-09-09 15:08:12 +00002939
Chris Lattner5f9e2722011-07-23 10:55:15 +00002940 SmallVector<ParmVarDecl*, 16> Params;
Mike Stump1eb44332009-09-09 15:08:12 +00002941
Chris Lattner7db638d2009-04-11 19:42:43 +00002942 for (unsigned i = 0, e = Sel.getNumArgs(); i != e; ++i) {
John McCall58e46772009-10-23 21:48:59 +00002943 QualType ArgType;
John McCalla93c9342009-12-07 02:54:59 +00002944 TypeSourceInfo *DI;
Mike Stump1eb44332009-09-09 15:08:12 +00002945
Chris Lattnere294d3f2009-04-11 18:57:04 +00002946 if (ArgInfo[i].Type == 0) {
John McCall58e46772009-10-23 21:48:59 +00002947 ArgType = Context.getObjCIdType();
2948 DI = 0;
Chris Lattnere294d3f2009-04-11 18:57:04 +00002949 } else {
John McCall58e46772009-10-23 21:48:59 +00002950 ArgType = GetTypeFromParser(ArgInfo[i].Type, &DI);
Chris Lattnere294d3f2009-04-11 18:57:04 +00002951 }
Mike Stump1eb44332009-09-09 15:08:12 +00002952
Fariborz Jahanian7f532532011-02-09 22:20:01 +00002953 LookupResult R(*this, ArgInfo[i].Name, ArgInfo[i].NameLoc,
2954 LookupOrdinaryName, ForRedeclaration);
2955 LookupName(R, S);
2956 if (R.isSingleResult()) {
2957 NamedDecl *PrevDecl = R.getFoundDecl();
2958 if (S->isDeclScope(PrevDecl)) {
Fariborz Jahanian90ba78c2011-03-12 18:54:30 +00002959 Diag(ArgInfo[i].NameLoc,
2960 (MethodDefinition ? diag::warn_method_param_redefinition
2961 : diag::warn_method_param_declaration))
Fariborz Jahanian7f532532011-02-09 22:20:01 +00002962 << ArgInfo[i].Name;
2963 Diag(PrevDecl->getLocation(),
2964 diag::note_previous_declaration);
2965 }
2966 }
2967
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00002968 SourceLocation StartLoc = DI
2969 ? DI->getTypeLoc().getBeginLoc()
2970 : ArgInfo[i].NameLoc;
2971
John McCall81ef3e62011-04-23 02:46:06 +00002972 ParmVarDecl* Param = CheckParameter(ObjCMethod, StartLoc,
2973 ArgInfo[i].NameLoc, ArgInfo[i].Name,
Rafael Espindolad2615cc2013-04-03 19:27:57 +00002974 ArgType, DI, SC_None);
Mike Stump1eb44332009-09-09 15:08:12 +00002975
John McCall70798862011-05-02 00:30:12 +00002976 Param->setObjCMethodScopeInfo(i);
2977
Chris Lattner0ed844b2008-04-04 06:12:32 +00002978 Param->setObjCDeclQualifier(
Chris Lattnere294d3f2009-04-11 18:57:04 +00002979 CvtQTToAstBitMask(ArgInfo[i].DeclSpec.getObjCDeclQualifier()));
Mike Stump1eb44332009-09-09 15:08:12 +00002980
Chris Lattnerf97e8fa2009-04-11 19:34:56 +00002981 // Apply the attributes to the parameter.
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00002982 ProcessDeclAttributeList(TUScope, Param, ArgInfo[i].ArgAttrs);
Mike Stump1eb44332009-09-09 15:08:12 +00002983
Fariborz Jahanian47b1d962012-01-14 18:44:35 +00002984 if (Param->hasAttr<BlocksAttr>()) {
2985 Diag(Param->getLocation(), diag::err_block_on_nonlocal);
2986 Param->setInvalidDecl();
2987 }
Fariborz Jahanian7f532532011-02-09 22:20:01 +00002988 S->AddDecl(Param);
2989 IdResolver.AddDecl(Param);
2990
Chris Lattner0ed844b2008-04-04 06:12:32 +00002991 Params.push_back(Param);
2992 }
Fariborz Jahanian7f532532011-02-09 22:20:01 +00002993
Fariborz Jahanian4f4fd922010-04-08 00:30:06 +00002994 for (unsigned i = 0, e = CNumArgs; i != e; ++i) {
John McCalld226f652010-08-21 09:40:31 +00002995 ParmVarDecl *Param = cast<ParmVarDecl>(CParamInfo[i].Param);
Fariborz Jahanian4f4fd922010-04-08 00:30:06 +00002996 QualType ArgType = Param->getType();
2997 if (ArgType.isNull())
2998 ArgType = Context.getObjCIdType();
2999 else
3000 // Perform the default array/function conversions (C99 6.7.5.3p[7,8]).
Douglas Gregor79e6bd32011-07-12 04:42:08 +00003001 ArgType = Context.getAdjustedParameterType(ArgType);
John McCallc12c5bb2010-05-15 11:32:37 +00003002 if (ArgType->isObjCObjectType()) {
Fariborz Jahanian4f4fd922010-04-08 00:30:06 +00003003 Diag(Param->getLocation(),
3004 diag::err_object_cannot_be_passed_returned_by_value)
3005 << 1 << ArgType;
3006 Param->setInvalidDecl();
3007 }
3008 Param->setDeclContext(ObjCMethod);
Fariborz Jahanian7f532532011-02-09 22:20:01 +00003009
Fariborz Jahanian4f4fd922010-04-08 00:30:06 +00003010 Params.push_back(Param);
3011 }
3012
Argyrios Kyrtzidis491306a2011-10-03 06:37:04 +00003013 ObjCMethod->setMethodParams(Context, Params, SelectorLocs);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00003014 ObjCMethod->setObjCDeclQualifier(
3015 CvtQTToAstBitMask(ReturnQT.getObjCDeclQualifier()));
Daniel Dunbar35682492008-09-26 04:12:28 +00003016
3017 if (AttrList)
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00003018 ProcessDeclAttributeList(TUScope, ObjCMethod, AttrList);
Mike Stump1eb44332009-09-09 15:08:12 +00003019
Douglas Gregorbdb2d502010-12-21 17:34:17 +00003020 // Add the method now.
John McCall6c2c2502011-07-22 02:45:48 +00003021 const ObjCMethodDecl *PrevMethod = 0;
3022 if (ObjCImplDecl *ImpDecl = dyn_cast<ObjCImplDecl>(ClassDecl)) {
Chris Lattner4d391482007-12-12 07:09:47 +00003023 if (MethodType == tok::minus) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003024 PrevMethod = ImpDecl->getInstanceMethod(Sel);
3025 ImpDecl->addInstanceMethod(ObjCMethod);
Chris Lattner4d391482007-12-12 07:09:47 +00003026 } else {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003027 PrevMethod = ImpDecl->getClassMethod(Sel);
3028 ImpDecl->addClassMethod(ObjCMethod);
Chris Lattner4d391482007-12-12 07:09:47 +00003029 }
Douglas Gregor926df6c2011-06-11 01:09:30 +00003030
Fariborz Jahanian7fda4002011-10-22 01:21:15 +00003031 ObjCMethodDecl *IMD = 0;
3032 if (ObjCInterfaceDecl *IDecl = ImpDecl->getClassInterface())
3033 IMD = IDecl->lookupMethod(ObjCMethod->getSelector(),
3034 ObjCMethod->isInstanceMethod());
Sean Huntcf807c42010-08-18 23:23:40 +00003035 if (ObjCMethod->hasAttrs() &&
Fariborz Jahanianec236782011-12-06 00:02:41 +00003036 containsInvalidMethodImplAttribute(IMD, ObjCMethod->getAttrs())) {
Fariborz Jahanian28441e62011-12-21 00:09:11 +00003037 SourceLocation MethodLoc = IMD->getLocation();
3038 if (!getSourceManager().isInSystemHeader(MethodLoc)) {
3039 Diag(EndLoc, diag::warn_attribute_method_def);
Ted Kremenek3306ec12012-02-27 22:55:11 +00003040 Diag(MethodLoc, diag::note_method_declared_at)
3041 << ObjCMethod->getDeclName();
Fariborz Jahanian28441e62011-12-21 00:09:11 +00003042 }
Fariborz Jahanianec236782011-12-06 00:02:41 +00003043 }
Douglas Gregorbdb2d502010-12-21 17:34:17 +00003044 } else {
3045 cast<DeclContext>(ClassDecl)->addDecl(ObjCMethod);
Chris Lattner4d391482007-12-12 07:09:47 +00003046 }
John McCall6c2c2502011-07-22 02:45:48 +00003047
Chris Lattner4d391482007-12-12 07:09:47 +00003048 if (PrevMethod) {
3049 // You can never have two method definitions with the same name.
Chris Lattner5f4a6822008-11-23 23:12:31 +00003050 Diag(ObjCMethod->getLocation(), diag::err_duplicate_method_decl)
Chris Lattner077bf5e2008-11-24 03:33:13 +00003051 << ObjCMethod->getDeclName();
Chris Lattner5f4a6822008-11-23 23:12:31 +00003052 Diag(PrevMethod->getLocation(), diag::note_previous_declaration);
Mike Stump1eb44332009-09-09 15:08:12 +00003053 }
John McCall54abf7d2009-11-04 02:18:39 +00003054
Douglas Gregor926df6c2011-06-11 01:09:30 +00003055 // If this Objective-C method does not have a related result type, but we
3056 // are allowed to infer related result types, try to do so based on the
3057 // method family.
3058 ObjCInterfaceDecl *CurrentClass = dyn_cast<ObjCInterfaceDecl>(ClassDecl);
3059 if (!CurrentClass) {
3060 if (ObjCCategoryDecl *Cat = dyn_cast<ObjCCategoryDecl>(ClassDecl))
3061 CurrentClass = Cat->getClassInterface();
3062 else if (ObjCImplDecl *Impl = dyn_cast<ObjCImplDecl>(ClassDecl))
3063 CurrentClass = Impl->getClassInterface();
3064 else if (ObjCCategoryImplDecl *CatImpl
3065 = dyn_cast<ObjCCategoryImplDecl>(ClassDecl))
3066 CurrentClass = CatImpl->getClassInterface();
3067 }
John McCall6c2c2502011-07-22 02:45:48 +00003068
Douglas Gregore97179c2011-09-08 01:46:34 +00003069 ResultTypeCompatibilityKind RTC
3070 = CheckRelatedResultTypeCompatibility(*this, ObjCMethod, CurrentClass);
John McCall6c2c2502011-07-22 02:45:48 +00003071
Argyrios Kyrtzidise15db6f2012-05-09 16:12:57 +00003072 CheckObjCMethodOverrides(ObjCMethod, CurrentClass, RTC);
John McCall6c2c2502011-07-22 02:45:48 +00003073
John McCallf85e1932011-06-15 23:02:42 +00003074 bool ARCError = false;
David Blaikie4e4d0842012-03-11 07:00:24 +00003075 if (getLangOpts().ObjCAutoRefCount)
John McCallb8463812013-04-04 01:38:37 +00003076 ARCError = CheckARCMethodDecl(ObjCMethod);
John McCallf85e1932011-06-15 23:02:42 +00003077
Douglas Gregore97179c2011-09-08 01:46:34 +00003078 // Infer the related result type when possible.
Argyrios Kyrtzidise15db6f2012-05-09 16:12:57 +00003079 if (!ARCError && RTC == Sema::RTC_Compatible &&
Douglas Gregore97179c2011-09-08 01:46:34 +00003080 !ObjCMethod->hasRelatedResultType() &&
3081 LangOpts.ObjCInferRelatedResultType) {
Douglas Gregor926df6c2011-06-11 01:09:30 +00003082 bool InferRelatedResultType = false;
3083 switch (ObjCMethod->getMethodFamily()) {
3084 case OMF_None:
3085 case OMF_copy:
3086 case OMF_dealloc:
Nico Weber80cb6e62011-08-28 22:35:17 +00003087 case OMF_finalize:
Douglas Gregor926df6c2011-06-11 01:09:30 +00003088 case OMF_mutableCopy:
3089 case OMF_release:
3090 case OMF_retainCount:
Fariborz Jahanian9670e172011-07-05 22:38:59 +00003091 case OMF_performSelector:
Douglas Gregor926df6c2011-06-11 01:09:30 +00003092 break;
3093
3094 case OMF_alloc:
3095 case OMF_new:
3096 InferRelatedResultType = ObjCMethod->isClassMethod();
3097 break;
3098
3099 case OMF_init:
3100 case OMF_autorelease:
3101 case OMF_retain:
3102 case OMF_self:
3103 InferRelatedResultType = ObjCMethod->isInstanceMethod();
3104 break;
3105 }
3106
John McCall6c2c2502011-07-22 02:45:48 +00003107 if (InferRelatedResultType)
Douglas Gregor926df6c2011-06-11 01:09:30 +00003108 ObjCMethod->SetRelatedResultType();
Douglas Gregor926df6c2011-06-11 01:09:30 +00003109 }
Dmitri Gribenkoa5ef44f2012-07-11 21:38:39 +00003110
3111 ActOnDocumentableDecl(ObjCMethod);
3112
John McCalld226f652010-08-21 09:40:31 +00003113 return ObjCMethod;
Chris Lattner4d391482007-12-12 07:09:47 +00003114}
3115
Chris Lattnercc98eac2008-12-17 07:13:27 +00003116bool Sema::CheckObjCDeclScope(Decl *D) {
Fariborz Jahanian58a76492011-08-22 18:34:22 +00003117 // Following is also an error. But it is caused by a missing @end
3118 // and diagnostic is issued elsewhere.
Argyrios Kyrtzidisfce79eb2012-03-23 23:24:23 +00003119 if (isa<ObjCContainerDecl>(CurContext->getRedeclContext()))
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00003120 return false;
Argyrios Kyrtzidisfce79eb2012-03-23 23:24:23 +00003121
3122 // If we switched context to translation unit while we are still lexically in
3123 // an objc container, it means the parser missed emitting an error.
3124 if (isa<TranslationUnitDecl>(getCurLexicalContext()->getRedeclContext()))
3125 return false;
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00003126
Anders Carlsson15281452008-11-04 16:57:32 +00003127 Diag(D->getLocation(), diag::err_objc_decls_may_only_appear_in_global_scope);
3128 D->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00003129
Anders Carlsson15281452008-11-04 16:57:32 +00003130 return true;
3131}
Chris Lattnercc98eac2008-12-17 07:13:27 +00003132
James Dennett1dfbd922012-06-14 21:40:34 +00003133/// Called whenever \@defs(ClassName) is encountered in the source. Inserts the
Chris Lattnercc98eac2008-12-17 07:13:27 +00003134/// instance variables of ClassName into Decls.
John McCalld226f652010-08-21 09:40:31 +00003135void Sema::ActOnDefs(Scope *S, Decl *TagD, SourceLocation DeclStart,
Chris Lattnercc98eac2008-12-17 07:13:27 +00003136 IdentifierInfo *ClassName,
Chris Lattner5f9e2722011-07-23 10:55:15 +00003137 SmallVectorImpl<Decl*> &Decls) {
Chris Lattnercc98eac2008-12-17 07:13:27 +00003138 // Check that ClassName is a valid class
Douglas Gregorc83c6872010-04-15 22:33:43 +00003139 ObjCInterfaceDecl *Class = getObjCInterfaceDecl(ClassName, DeclStart);
Chris Lattnercc98eac2008-12-17 07:13:27 +00003140 if (!Class) {
3141 Diag(DeclStart, diag::err_undef_interface) << ClassName;
3142 return;
3143 }
John McCall260611a2012-06-20 06:18:46 +00003144 if (LangOpts.ObjCRuntime.isNonFragile()) {
Fariborz Jahanian0468fb92009-04-21 20:28:41 +00003145 Diag(DeclStart, diag::err_atdef_nonfragile_interface);
3146 return;
3147 }
Mike Stump1eb44332009-09-09 15:08:12 +00003148
Chris Lattnercc98eac2008-12-17 07:13:27 +00003149 // Collect the instance variables
Jordy Rosedb8264e2011-07-22 02:08:32 +00003150 SmallVector<const ObjCIvarDecl*, 32> Ivars;
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +00003151 Context.DeepCollectObjCIvars(Class, true, Ivars);
Fariborz Jahanian41833352009-06-04 17:08:55 +00003152 // For each ivar, create a fresh ObjCAtDefsFieldDecl.
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +00003153 for (unsigned i = 0; i < Ivars.size(); i++) {
Jordy Rosedb8264e2011-07-22 02:08:32 +00003154 const FieldDecl* ID = cast<FieldDecl>(Ivars[i]);
John McCalld226f652010-08-21 09:40:31 +00003155 RecordDecl *Record = dyn_cast<RecordDecl>(TagD);
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00003156 Decl *FD = ObjCAtDefsFieldDecl::Create(Context, Record,
3157 /*FIXME: StartL=*/ID->getLocation(),
3158 ID->getLocation(),
Fariborz Jahanian41833352009-06-04 17:08:55 +00003159 ID->getIdentifier(), ID->getType(),
3160 ID->getBitWidth());
John McCalld226f652010-08-21 09:40:31 +00003161 Decls.push_back(FD);
Fariborz Jahanian41833352009-06-04 17:08:55 +00003162 }
Mike Stump1eb44332009-09-09 15:08:12 +00003163
Chris Lattnercc98eac2008-12-17 07:13:27 +00003164 // Introduce all of these fields into the appropriate scope.
Chris Lattner5f9e2722011-07-23 10:55:15 +00003165 for (SmallVectorImpl<Decl*>::iterator D = Decls.begin();
Chris Lattnercc98eac2008-12-17 07:13:27 +00003166 D != Decls.end(); ++D) {
John McCalld226f652010-08-21 09:40:31 +00003167 FieldDecl *FD = cast<FieldDecl>(*D);
David Blaikie4e4d0842012-03-11 07:00:24 +00003168 if (getLangOpts().CPlusPlus)
Chris Lattnercc98eac2008-12-17 07:13:27 +00003169 PushOnScopeChains(cast<FieldDecl>(FD), S);
John McCalld226f652010-08-21 09:40:31 +00003170 else if (RecordDecl *Record = dyn_cast<RecordDecl>(TagD))
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003171 Record->addDecl(FD);
Chris Lattnercc98eac2008-12-17 07:13:27 +00003172 }
3173}
3174
Douglas Gregor160b5632010-04-26 17:32:49 +00003175/// \brief Build a type-check a new Objective-C exception variable declaration.
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00003176VarDecl *Sema::BuildObjCExceptionDecl(TypeSourceInfo *TInfo, QualType T,
3177 SourceLocation StartLoc,
3178 SourceLocation IdLoc,
3179 IdentifierInfo *Id,
Douglas Gregor160b5632010-04-26 17:32:49 +00003180 bool Invalid) {
3181 // ISO/IEC TR 18037 S6.7.3: "The type of an object with automatic storage
3182 // duration shall not be qualified by an address-space qualifier."
3183 // Since all parameters have automatic store duration, they can not have
3184 // an address space.
3185 if (T.getAddressSpace() != 0) {
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00003186 Diag(IdLoc, diag::err_arg_with_address_space);
Douglas Gregor160b5632010-04-26 17:32:49 +00003187 Invalid = true;
3188 }
3189
3190 // An @catch parameter must be an unqualified object pointer type;
3191 // FIXME: Recover from "NSObject foo" by inserting the * in "NSObject *foo"?
3192 if (Invalid) {
3193 // Don't do any further checking.
Douglas Gregorbe270a02010-04-26 17:57:08 +00003194 } else if (T->isDependentType()) {
3195 // Okay: we don't know what this type will instantiate to.
Douglas Gregor160b5632010-04-26 17:32:49 +00003196 } else if (!T->isObjCObjectPointerType()) {
3197 Invalid = true;
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00003198 Diag(IdLoc ,diag::err_catch_param_not_objc_type);
Douglas Gregor160b5632010-04-26 17:32:49 +00003199 } else if (T->isObjCQualifiedIdType()) {
3200 Invalid = true;
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00003201 Diag(IdLoc, diag::err_illegal_qualifiers_on_catch_parm);
Douglas Gregor160b5632010-04-26 17:32:49 +00003202 }
3203
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00003204 VarDecl *New = VarDecl::Create(Context, CurContext, StartLoc, IdLoc, Id,
Rafael Espindolad2615cc2013-04-03 19:27:57 +00003205 T, TInfo, SC_None);
Douglas Gregor324b54d2010-05-03 18:51:14 +00003206 New->setExceptionVariable(true);
3207
Douglas Gregor9aab9c42011-12-10 01:22:52 +00003208 // In ARC, infer 'retaining' for variables of retainable type.
David Blaikie4e4d0842012-03-11 07:00:24 +00003209 if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(New))
Douglas Gregor9aab9c42011-12-10 01:22:52 +00003210 Invalid = true;
3211
Douglas Gregor160b5632010-04-26 17:32:49 +00003212 if (Invalid)
3213 New->setInvalidDecl();
3214 return New;
3215}
3216
John McCalld226f652010-08-21 09:40:31 +00003217Decl *Sema::ActOnObjCExceptionDecl(Scope *S, Declarator &D) {
Douglas Gregor160b5632010-04-26 17:32:49 +00003218 const DeclSpec &DS = D.getDeclSpec();
3219
3220 // We allow the "register" storage class on exception variables because
3221 // GCC did, but we drop it completely. Any other storage class is an error.
3222 if (DS.getStorageClassSpec() == DeclSpec::SCS_register) {
3223 Diag(DS.getStorageClassSpecLoc(), diag::warn_register_objc_catch_parm)
3224 << FixItHint::CreateRemoval(SourceRange(DS.getStorageClassSpecLoc()));
Richard Smithec642442013-04-12 22:46:28 +00003225 } else if (DeclSpec::SCS SCS = DS.getStorageClassSpec()) {
Douglas Gregor160b5632010-04-26 17:32:49 +00003226 Diag(DS.getStorageClassSpecLoc(), diag::err_storage_spec_on_catch_parm)
Richard Smithec642442013-04-12 22:46:28 +00003227 << DeclSpec::getSpecifierName(SCS);
3228 }
3229 if (DeclSpec::TSCS TSCS = D.getDeclSpec().getThreadStorageClassSpec())
3230 Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(),
3231 diag::err_invalid_thread)
3232 << DeclSpec::getSpecifierName(TSCS);
Douglas Gregor160b5632010-04-26 17:32:49 +00003233 D.getMutableDeclSpec().ClearStorageClassSpecs();
3234
Richard Smithc7f81162013-03-18 22:52:47 +00003235 DiagnoseFunctionSpecifiers(D.getDeclSpec());
Douglas Gregor160b5632010-04-26 17:32:49 +00003236
3237 // Check that there are no default arguments inside the type of this
3238 // exception object (C++ only).
David Blaikie4e4d0842012-03-11 07:00:24 +00003239 if (getLangOpts().CPlusPlus)
Douglas Gregor160b5632010-04-26 17:32:49 +00003240 CheckExtraCXXDefaultArguments(D);
3241
Argyrios Kyrtzidis32153982011-06-28 03:01:15 +00003242 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
John McCallbf1a0282010-06-04 23:28:52 +00003243 QualType ExceptionType = TInfo->getType();
Douglas Gregor160b5632010-04-26 17:32:49 +00003244
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00003245 VarDecl *New = BuildObjCExceptionDecl(TInfo, ExceptionType,
3246 D.getSourceRange().getBegin(),
3247 D.getIdentifierLoc(),
3248 D.getIdentifier(),
Douglas Gregor160b5632010-04-26 17:32:49 +00003249 D.isInvalidType());
3250
3251 // Parameter declarators cannot be qualified (C++ [dcl.meaning]p1).
3252 if (D.getCXXScopeSpec().isSet()) {
3253 Diag(D.getIdentifierLoc(), diag::err_qualified_objc_catch_parm)
3254 << D.getCXXScopeSpec().getRange();
3255 New->setInvalidDecl();
3256 }
3257
3258 // Add the parameter declaration into this scope.
John McCalld226f652010-08-21 09:40:31 +00003259 S->AddDecl(New);
Douglas Gregor160b5632010-04-26 17:32:49 +00003260 if (D.getIdentifier())
3261 IdResolver.AddDecl(New);
3262
3263 ProcessDeclAttributes(S, New, D);
3264
3265 if (New->hasAttr<BlocksAttr>())
3266 Diag(New->getLocation(), diag::err_block_on_nonlocal);
John McCalld226f652010-08-21 09:40:31 +00003267 return New;
Douglas Gregor4e6c0d12010-04-23 23:01:43 +00003268}
Fariborz Jahanian786cd152010-04-27 17:18:58 +00003269
3270/// CollectIvarsToConstructOrDestruct - Collect those ivars which require
Fariborz Jahaniane4498c62010-04-28 16:11:27 +00003271/// initialization.
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +00003272void Sema::CollectIvarsToConstructOrDestruct(ObjCInterfaceDecl *OI,
Chris Lattner5f9e2722011-07-23 10:55:15 +00003273 SmallVectorImpl<ObjCIvarDecl*> &Ivars) {
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +00003274 for (ObjCIvarDecl *Iv = OI->all_declared_ivar_begin(); Iv;
3275 Iv= Iv->getNextIvar()) {
Fariborz Jahanian786cd152010-04-27 17:18:58 +00003276 QualType QT = Context.getBaseElementType(Iv->getType());
Douglas Gregor68dd3ee2010-05-20 02:24:22 +00003277 if (QT->isRecordType())
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +00003278 Ivars.push_back(Iv);
Fariborz Jahanian786cd152010-04-27 17:18:58 +00003279 }
3280}
Fariborz Jahaniane4498c62010-04-28 16:11:27 +00003281
Fariborz Jahanian3fe10412010-07-22 18:24:20 +00003282void Sema::DiagnoseUseOfUnimplementedSelectors() {
Douglas Gregor5b9dc7c2011-07-28 14:54:22 +00003283 // Load referenced selectors from the external source.
3284 if (ExternalSource) {
3285 SmallVector<std::pair<Selector, SourceLocation>, 4> Sels;
3286 ExternalSource->ReadReferencedSelectors(Sels);
3287 for (unsigned I = 0, N = Sels.size(); I != N; ++I)
3288 ReferencedSelectors[Sels[I].first] = Sels[I].second;
3289 }
3290
Fariborz Jahanian8b789132011-02-04 23:19:27 +00003291 // Warning will be issued only when selector table is
3292 // generated (which means there is at lease one implementation
3293 // in the TU). This is to match gcc's behavior.
3294 if (ReferencedSelectors.empty() ||
3295 !Context.AnyObjCImplementation())
Fariborz Jahanian3fe10412010-07-22 18:24:20 +00003296 return;
3297 for (llvm::DenseMap<Selector, SourceLocation>::iterator S =
3298 ReferencedSelectors.begin(),
3299 E = ReferencedSelectors.end(); S != E; ++S) {
3300 Selector Sel = (*S).first;
3301 if (!LookupImplementedMethodInGlobalPool(Sel))
3302 Diag((*S).second, diag::warn_unimplemented_selector) << Sel;
3303 }
3304 return;
3305}