blob: 86979a1fe85f34de6a9693820e22e7863116afb4 [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
Reid Kleckner8c0501c2013-06-24 14:38:26 +0000327 // The ObjC parser requires parameter names so there's no need to check.
328 CheckParmsForFunctionDef(MDecl->param_begin(), MDecl->param_end(),
329 /*CheckParameterNames=*/false);
330
Chris Lattner8123a952008-04-10 02:22:51 +0000331 // Introduce all of the other parameters into this scope.
Chris Lattner89951a82009-02-20 18:43:26 +0000332 for (ObjCMethodDecl::param_iterator PI = MDecl->param_begin(),
Fariborz Jahanian23c01042010-09-17 22:07:07 +0000333 E = MDecl->param_end(); PI != E; ++PI) {
334 ParmVarDecl *Param = (*PI);
335 if (!Param->isInvalidDecl() &&
Fariborz Jahaniana1a32f72012-09-13 18:53:14 +0000336 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)
Fariborz Jahanianb8ed0712013-05-16 19:08:44 +0000353 << 0 << MDecl->getSelector();
John McCallf85e1932011-06-15 23:02:42 +0000354 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
Fariborz Jahanian2b610392013-11-05 00:28:21 +0000409 } else {
Jordan Rose535a5d02012-10-19 16:05:26 +0000410 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);
Argyrios Kyrtzidise7e8fca2013-06-18 21:26:33 +0000462
463 if (PrevIDecl && PrevIDecl->getIdentifier() != ClassName) {
464 // A previous decl with a different name is because of
465 // @compatibility_alias, for example:
466 // \code
467 // @class NewImage;
468 // @compatibility_alias OldImage NewImage;
469 // \endcode
470 // A lookup for 'OldImage' will return the 'NewImage' decl.
471 //
472 // In such a case use the real declaration name, instead of the alias one,
473 // otherwise we will break IdentifierResolver and redecls-chain invariants.
474 // FIXME: If necessary, add a bit to indicate that this ObjCInterfaceDecl
475 // has been aliased.
476 ClassName = PrevIDecl->getIdentifier();
477 }
478
Douglas Gregor7723fec2011-12-15 20:29:51 +0000479 ObjCInterfaceDecl *IDecl
480 = ObjCInterfaceDecl::Create(Context, CurContext, AtInterfaceLoc, ClassName,
Douglas Gregor0af55012011-12-16 03:12:41 +0000481 PrevIDecl, ClassLoc);
Douglas Gregor7723fec2011-12-15 20:29:51 +0000482
Douglas Gregor7723fec2011-12-15 20:29:51 +0000483 if (PrevIDecl) {
484 // Class already seen. Was it a definition?
485 if (ObjCInterfaceDecl *Def = PrevIDecl->getDefinition()) {
486 Diag(AtInterfaceLoc, diag::err_duplicate_class_def)
487 << PrevIDecl->getDeclName();
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000488 Diag(Def->getLocation(), diag::note_previous_definition);
Douglas Gregor7723fec2011-12-15 20:29:51 +0000489 IDecl->setInvalidDecl();
Chris Lattner4d391482007-12-12 07:09:47 +0000490 }
Chris Lattner4d391482007-12-12 07:09:47 +0000491 }
Douglas Gregor7723fec2011-12-15 20:29:51 +0000492
493 if (AttrList)
494 ProcessDeclAttributeList(TUScope, IDecl, AttrList);
495 PushOnScopeChains(IDecl, TUScope);
Mike Stump1eb44332009-09-09 15:08:12 +0000496
Douglas Gregor7723fec2011-12-15 20:29:51 +0000497 // Start the definition of this class. If we're in a redefinition case, there
498 // may already be a definition, so we'll end up adding to it.
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000499 if (!IDecl->hasDefinition())
500 IDecl->startDefinition();
501
Chris Lattner4d391482007-12-12 07:09:47 +0000502 if (SuperName) {
Chris Lattner4d391482007-12-12 07:09:47 +0000503 // Check if a different kind of symbol declared in this scope.
Douglas Gregorc83c6872010-04-15 22:33:43 +0000504 PrevDecl = LookupSingleName(TUScope, SuperName, SuperLoc,
505 LookupOrdinaryName);
Douglas Gregorf06cdae2010-01-03 18:01:57 +0000506
507 if (!PrevDecl) {
Kaelyn Uhrain2f4d88f2012-01-13 01:32:50 +0000508 // Try to correct for a typo in the superclass name without correcting
509 // to the class we're defining.
510 ObjCInterfaceValidatorCCC Validator(IDecl);
511 if (TypoCorrection Corrected = CorrectTypo(
Douglas Gregord8bba9c2011-06-28 16:20:02 +0000512 DeclarationNameInfo(SuperName, SuperLoc), LookupOrdinaryName, TUScope,
Kaelyn Uhrain16e46dd2012-01-31 23:49:25 +0000513 NULL, Validator)) {
Richard Smith2d670972013-08-17 00:46:16 +0000514 diagnoseTypo(Corrected, PDiag(diag::err_undef_superclass_suggest)
515 << SuperName << ClassName);
Kaelyn Uhrain2f4d88f2012-01-13 01:32:50 +0000516 PrevDecl = Corrected.getCorrectionDeclAs<ObjCInterfaceDecl>();
Douglas Gregorf06cdae2010-01-03 18:01:57 +0000517 }
518 }
519
Douglas Gregor60ef3082011-12-15 00:29:59 +0000520 if (declaresSameEntity(PrevDecl, IDecl)) {
Fariborz Jahanianfdee0892009-07-09 22:08:26 +0000521 Diag(SuperLoc, diag::err_recursive_superclass)
522 << SuperName << ClassName << SourceRange(AtInterfaceLoc, ClassLoc);
Douglas Gregor05c272f2011-12-15 22:34:59 +0000523 IDecl->setEndOfDefinitionLoc(ClassLoc);
Mike Stumpac5fc7c2009-08-04 21:02:39 +0000524 } else {
Mike Stump1eb44332009-09-09 15:08:12 +0000525 ObjCInterfaceDecl *SuperClassDecl =
Fariborz Jahanianfdee0892009-07-09 22:08:26 +0000526 dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl);
Chris Lattner3c73c412008-11-19 08:23:25 +0000527
Fariborz Jahanianfdee0892009-07-09 22:08:26 +0000528 // Diagnose classes that inherit from deprecated classes.
529 if (SuperClassDecl)
530 (void)DiagnoseUseOfDecl(SuperClassDecl, SuperLoc);
Mike Stump1eb44332009-09-09 15:08:12 +0000531
Fariborz Jahanianfdee0892009-07-09 22:08:26 +0000532 if (PrevDecl && SuperClassDecl == 0) {
533 // The previous declaration was not a class decl. Check if we have a
534 // typedef. If we do, get the underlying class type.
Richard Smith162e1c12011-04-15 14:24:37 +0000535 if (const TypedefNameDecl *TDecl =
536 dyn_cast_or_null<TypedefNameDecl>(PrevDecl)) {
Fariborz Jahanianfdee0892009-07-09 22:08:26 +0000537 QualType T = TDecl->getUnderlyingType();
John McCallc12c5bb2010-05-15 11:32:37 +0000538 if (T->isObjCObjectType()) {
Fariborz Jahanian740991b2013-04-04 18:45:52 +0000539 if (NamedDecl *IDecl = T->getAs<ObjCObjectType>()->getInterface()) {
Douglas Gregordeacbdc2010-08-11 12:19:30 +0000540 SuperClassDecl = dyn_cast<ObjCInterfaceDecl>(IDecl);
Fariborz Jahanian740991b2013-04-04 18:45:52 +0000541 // This handles the following case:
542 // @interface NewI @end
543 // typedef NewI DeprI __attribute__((deprecated("blah")))
544 // @interface SI : DeprI /* warn here */ @end
545 (void)DiagnoseUseOfDecl(const_cast<TypedefNameDecl*>(TDecl), SuperLoc);
546 }
Fariborz Jahanianfdee0892009-07-09 22:08:26 +0000547 }
548 }
Mike Stump1eb44332009-09-09 15:08:12 +0000549
Fariborz Jahanianfdee0892009-07-09 22:08:26 +0000550 // This handles the following case:
551 //
552 // typedef int SuperClass;
553 // @interface MyClass : SuperClass {} @end
554 //
555 if (!SuperClassDecl) {
556 Diag(SuperLoc, diag::err_redefinition_different_kind) << SuperName;
557 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Steve Naroff818cb9e2009-02-04 17:14:05 +0000558 }
559 }
Mike Stump1eb44332009-09-09 15:08:12 +0000560
Richard Smith162e1c12011-04-15 14:24:37 +0000561 if (!dyn_cast_or_null<TypedefNameDecl>(PrevDecl)) {
Fariborz Jahanianfdee0892009-07-09 22:08:26 +0000562 if (!SuperClassDecl)
563 Diag(SuperLoc, diag::err_undef_superclass)
564 << SuperName << ClassName << SourceRange(AtInterfaceLoc, ClassLoc);
Douglas Gregorb3029962011-11-14 22:10:01 +0000565 else if (RequireCompleteType(SuperLoc,
Douglas Gregord10099e2012-05-04 16:32:21 +0000566 Context.getObjCInterfaceType(SuperClassDecl),
567 diag::err_forward_superclass,
568 SuperClassDecl->getDeclName(),
569 ClassName,
570 SourceRange(AtInterfaceLoc, ClassLoc))) {
Fariborz Jahaniana8139732011-06-23 23:16:19 +0000571 SuperClassDecl = 0;
572 }
Steve Naroff818cb9e2009-02-04 17:14:05 +0000573 }
Fariborz Jahanianfdee0892009-07-09 22:08:26 +0000574 IDecl->setSuperClass(SuperClassDecl);
575 IDecl->setSuperClassLoc(SuperLoc);
Douglas Gregor05c272f2011-12-15 22:34:59 +0000576 IDecl->setEndOfDefinitionLoc(SuperLoc);
Steve Naroff818cb9e2009-02-04 17:14:05 +0000577 }
Chris Lattner4d391482007-12-12 07:09:47 +0000578 } else { // we have a root class.
Douglas Gregor05c272f2011-12-15 22:34:59 +0000579 IDecl->setEndOfDefinitionLoc(ClassLoc);
Chris Lattner4d391482007-12-12 07:09:47 +0000580 }
Mike Stump1eb44332009-09-09 15:08:12 +0000581
Sebastian Redl0b17c612010-08-13 00:28:03 +0000582 // Check then save referenced protocols.
Chris Lattner06036d32008-07-26 04:13:19 +0000583 if (NumProtoRefs) {
Roman Divacky31ba6132012-09-06 15:59:27 +0000584 IDecl->setProtocolList((ObjCProtocolDecl*const*)ProtoRefs, NumProtoRefs,
Douglas Gregor18df52b2010-01-16 15:02:53 +0000585 ProtoLocs, Context);
Douglas Gregor05c272f2011-12-15 22:34:59 +0000586 IDecl->setEndOfDefinitionLoc(EndProtoLoc);
Chris Lattner4d391482007-12-12 07:09:47 +0000587 }
Mike Stump1eb44332009-09-09 15:08:12 +0000588
Anders Carlsson15281452008-11-04 16:57:32 +0000589 CheckObjCDeclScope(IDecl);
Argyrios Kyrtzidis3a387442011-10-06 23:23:20 +0000590 return ActOnObjCContainerStartDefinition(IDecl);
Chris Lattner4d391482007-12-12 07:09:47 +0000591}
592
Fariborz Jahaniana924f842013-09-25 19:36:32 +0000593/// ActOnTypedefedProtocols - this action finds protocol list as part of the
594/// typedef'ed use for a qualified super class and adds them to the list
595/// of the protocols.
596void Sema::ActOnTypedefedProtocols(SmallVectorImpl<Decl *> &ProtocolRefs,
597 IdentifierInfo *SuperName,
598 SourceLocation SuperLoc) {
599 if (!SuperName)
600 return;
601 NamedDecl* IDecl = LookupSingleName(TUScope, SuperName, SuperLoc,
602 LookupOrdinaryName);
603 if (!IDecl)
604 return;
605
606 if (const TypedefNameDecl *TDecl = dyn_cast_or_null<TypedefNameDecl>(IDecl)) {
607 QualType T = TDecl->getUnderlyingType();
608 if (T->isObjCObjectType())
609 if (const ObjCObjectType *OPT = T->getAs<ObjCObjectType>())
610 for (ObjCObjectType::qual_iterator I = OPT->qual_begin(),
611 E = OPT->qual_end(); I != E; ++I)
612 ProtocolRefs.push_back(*I);
613 }
614}
615
Richard Smithde01b7a2012-08-08 23:32:13 +0000616/// ActOnCompatibilityAlias - this action is called after complete parsing of
James Dennett1dfbd922012-06-14 21:40:34 +0000617/// a \@compatibility_alias declaration. It sets up the alias relationships.
Richard Smithde01b7a2012-08-08 23:32:13 +0000618Decl *Sema::ActOnCompatibilityAlias(SourceLocation AtLoc,
619 IdentifierInfo *AliasName,
620 SourceLocation AliasLocation,
621 IdentifierInfo *ClassName,
622 SourceLocation ClassLocation) {
Chris Lattner4d391482007-12-12 07:09:47 +0000623 // Look for previous declaration of alias name
Douglas Gregorc83c6872010-04-15 22:33:43 +0000624 NamedDecl *ADecl = LookupSingleName(TUScope, AliasName, AliasLocation,
Douglas Gregorc0b39642010-04-15 23:40:53 +0000625 LookupOrdinaryName, ForRedeclaration);
Chris Lattner4d391482007-12-12 07:09:47 +0000626 if (ADecl) {
Eli Friedman104f96b2013-06-21 01:49:53 +0000627 Diag(AliasLocation, diag::err_conflicting_aliasing_type) << AliasName;
Chris Lattner8b265bd2008-11-23 23:20:13 +0000628 Diag(ADecl->getLocation(), diag::note_previous_declaration);
John McCalld226f652010-08-21 09:40:31 +0000629 return 0;
Chris Lattner4d391482007-12-12 07:09:47 +0000630 }
631 // Check for class declaration
Douglas Gregorc83c6872010-04-15 22:33:43 +0000632 NamedDecl *CDeclU = LookupSingleName(TUScope, ClassName, ClassLocation,
Douglas Gregorc0b39642010-04-15 23:40:53 +0000633 LookupOrdinaryName, ForRedeclaration);
Richard Smith162e1c12011-04-15 14:24:37 +0000634 if (const TypedefNameDecl *TDecl =
635 dyn_cast_or_null<TypedefNameDecl>(CDeclU)) {
Fariborz Jahanian305c6582009-01-08 01:10:55 +0000636 QualType T = TDecl->getUnderlyingType();
John McCallc12c5bb2010-05-15 11:32:37 +0000637 if (T->isObjCObjectType()) {
638 if (NamedDecl *IDecl = T->getAs<ObjCObjectType>()->getInterface()) {
Fariborz Jahanian305c6582009-01-08 01:10:55 +0000639 ClassName = IDecl->getIdentifier();
Douglas Gregorc83c6872010-04-15 22:33:43 +0000640 CDeclU = LookupSingleName(TUScope, ClassName, ClassLocation,
Douglas Gregorc0b39642010-04-15 23:40:53 +0000641 LookupOrdinaryName, ForRedeclaration);
Fariborz Jahanian305c6582009-01-08 01:10:55 +0000642 }
643 }
644 }
Chris Lattnerf8d17a52008-03-16 21:17:37 +0000645 ObjCInterfaceDecl *CDecl = dyn_cast_or_null<ObjCInterfaceDecl>(CDeclU);
646 if (CDecl == 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000647 Diag(ClassLocation, diag::warn_undef_interface) << ClassName;
Chris Lattnerf8d17a52008-03-16 21:17:37 +0000648 if (CDeclU)
Chris Lattner8b265bd2008-11-23 23:20:13 +0000649 Diag(CDeclU->getLocation(), diag::note_previous_declaration);
John McCalld226f652010-08-21 09:40:31 +0000650 return 0;
Chris Lattner4d391482007-12-12 07:09:47 +0000651 }
Mike Stump1eb44332009-09-09 15:08:12 +0000652
Chris Lattnerf8d17a52008-03-16 21:17:37 +0000653 // Everything checked out, instantiate a new alias declaration AST.
Mike Stump1eb44332009-09-09 15:08:12 +0000654 ObjCCompatibleAliasDecl *AliasDecl =
Douglas Gregord0434102009-01-09 00:49:46 +0000655 ObjCCompatibleAliasDecl::Create(Context, CurContext, AtLoc, AliasName, CDecl);
Mike Stump1eb44332009-09-09 15:08:12 +0000656
Anders Carlsson15281452008-11-04 16:57:32 +0000657 if (!CheckObjCDeclScope(AliasDecl))
Douglas Gregor516ff432009-04-24 02:57:34 +0000658 PushOnScopeChains(AliasDecl, TUScope);
Douglas Gregord0434102009-01-09 00:49:46 +0000659
John McCalld226f652010-08-21 09:40:31 +0000660 return AliasDecl;
Chris Lattner4d391482007-12-12 07:09:47 +0000661}
662
Fariborz Jahanian819e9bf2011-05-13 18:02:08 +0000663bool Sema::CheckForwardProtocolDeclarationForCircularDependency(
Steve Naroff61d68522009-03-05 15:22:01 +0000664 IdentifierInfo *PName,
665 SourceLocation &Ploc, SourceLocation PrevLoc,
Fariborz Jahanian819e9bf2011-05-13 18:02:08 +0000666 const ObjCList<ObjCProtocolDecl> &PList) {
667
668 bool res = false;
Steve Naroff61d68522009-03-05 15:22:01 +0000669 for (ObjCList<ObjCProtocolDecl>::iterator I = PList.begin(),
670 E = PList.end(); I != E; ++I) {
Douglas Gregorc83c6872010-04-15 22:33:43 +0000671 if (ObjCProtocolDecl *PDecl = LookupProtocol((*I)->getIdentifier(),
672 Ploc)) {
Steve Naroff61d68522009-03-05 15:22:01 +0000673 if (PDecl->getIdentifier() == PName) {
674 Diag(Ploc, diag::err_protocol_has_circular_dependency);
675 Diag(PrevLoc, diag::note_previous_definition);
Fariborz Jahanian819e9bf2011-05-13 18:02:08 +0000676 res = true;
Steve Naroff61d68522009-03-05 15:22:01 +0000677 }
Douglas Gregor5e2a1ff2012-01-01 19:29:29 +0000678
679 if (!PDecl->hasDefinition())
680 continue;
681
Fariborz Jahanian819e9bf2011-05-13 18:02:08 +0000682 if (CheckForwardProtocolDeclarationForCircularDependency(PName, Ploc,
683 PDecl->getLocation(), PDecl->getReferencedProtocols()))
684 res = true;
Steve Naroff61d68522009-03-05 15:22:01 +0000685 }
686 }
Fariborz Jahanian819e9bf2011-05-13 18:02:08 +0000687 return res;
Steve Naroff61d68522009-03-05 15:22:01 +0000688}
689
John McCalld226f652010-08-21 09:40:31 +0000690Decl *
Chris Lattnere13b9592008-07-26 04:03:38 +0000691Sema::ActOnStartProtocolInterface(SourceLocation AtProtoInterfaceLoc,
692 IdentifierInfo *ProtocolName,
693 SourceLocation ProtocolLoc,
John McCalld226f652010-08-21 09:40:31 +0000694 Decl * const *ProtoRefs,
Chris Lattnere13b9592008-07-26 04:03:38 +0000695 unsigned NumProtoRefs,
Douglas Gregor18df52b2010-01-16 15:02:53 +0000696 const SourceLocation *ProtoLocs,
Daniel Dunbar246e70f2008-09-26 04:48:09 +0000697 SourceLocation EndProtoLoc,
698 AttributeList *AttrList) {
Fariborz Jahanian96b69a72011-05-12 22:04:39 +0000699 bool err = false;
Daniel Dunbar246e70f2008-09-26 04:48:09 +0000700 // FIXME: Deal with AttrList.
Chris Lattner4d391482007-12-12 07:09:47 +0000701 assert(ProtocolName && "Missing protocol identifier");
Douglas Gregor27c6da22012-01-01 20:30:41 +0000702 ObjCProtocolDecl *PrevDecl = LookupProtocol(ProtocolName, ProtocolLoc,
703 ForRedeclaration);
704 ObjCProtocolDecl *PDecl = 0;
705 if (ObjCProtocolDecl *Def = PrevDecl? PrevDecl->getDefinition() : 0) {
706 // If we already have a definition, complain.
707 Diag(ProtocolLoc, diag::warn_duplicate_protocol_def) << ProtocolName;
708 Diag(Def->getLocation(), diag::note_previous_definition);
Mike Stump1eb44332009-09-09 15:08:12 +0000709
Douglas Gregor27c6da22012-01-01 20:30:41 +0000710 // Create a new protocol that is completely distinct from previous
711 // declarations, and do not make this protocol available for name lookup.
712 // That way, we'll end up completely ignoring the duplicate.
713 // FIXME: Can we turn this into an error?
714 PDecl = ObjCProtocolDecl::Create(Context, CurContext, ProtocolName,
715 ProtocolLoc, AtProtoInterfaceLoc,
Douglas Gregorc9d3c7e2012-01-01 22:06:18 +0000716 /*PrevDecl=*/0);
Douglas Gregor27c6da22012-01-01 20:30:41 +0000717 PDecl->startDefinition();
718 } else {
719 if (PrevDecl) {
720 // Check for circular dependencies among protocol declarations. This can
721 // only happen if this protocol was forward-declared.
Argyrios Kyrtzidis4fc04da2011-11-13 22:08:30 +0000722 ObjCList<ObjCProtocolDecl> PList;
723 PList.set((ObjCProtocolDecl *const*)ProtoRefs, NumProtoRefs, Context);
724 err = CheckForwardProtocolDeclarationForCircularDependency(
Douglas Gregor27c6da22012-01-01 20:30:41 +0000725 ProtocolName, ProtocolLoc, PrevDecl->getLocation(), PList);
Argyrios Kyrtzidis4fc04da2011-11-13 22:08:30 +0000726 }
Douglas Gregor27c6da22012-01-01 20:30:41 +0000727
728 // Create the new declaration.
Argyrios Kyrtzidis1711fc92011-10-04 04:48:02 +0000729 PDecl = ObjCProtocolDecl::Create(Context, CurContext, ProtocolName,
Argyrios Kyrtzidisb05d7b22011-10-17 19:48:06 +0000730 ProtocolLoc, AtProtoInterfaceLoc,
Douglas Gregorc9d3c7e2012-01-01 22:06:18 +0000731 /*PrevDecl=*/PrevDecl);
Douglas Gregor27c6da22012-01-01 20:30:41 +0000732
Douglas Gregor6e378de2009-04-23 23:18:26 +0000733 PushOnScopeChains(PDecl, TUScope);
Douglas Gregor5e2a1ff2012-01-01 19:29:29 +0000734 PDecl->startDefinition();
Chris Lattnercca59d72008-03-16 01:23:04 +0000735 }
Douglas Gregor5e2a1ff2012-01-01 19:29:29 +0000736
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +0000737 if (AttrList)
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000738 ProcessDeclAttributeList(TUScope, PDecl, AttrList);
Douglas Gregor27c6da22012-01-01 20:30:41 +0000739
740 // Merge attributes from previous declarations.
741 if (PrevDecl)
742 mergeDeclAttributes(PDecl, PrevDecl);
743
Fariborz Jahanian96b69a72011-05-12 22:04:39 +0000744 if (!err && NumProtoRefs ) {
Chris Lattnerc8581052008-03-16 20:19:15 +0000745 /// Check then save referenced protocols.
Roman Divacky31ba6132012-09-06 15:59:27 +0000746 PDecl->setProtocolList((ObjCProtocolDecl*const*)ProtoRefs, NumProtoRefs,
Douglas Gregor18df52b2010-01-16 15:02:53 +0000747 ProtoLocs, Context);
Chris Lattner4d391482007-12-12 07:09:47 +0000748 }
Mike Stump1eb44332009-09-09 15:08:12 +0000749
750 CheckObjCDeclScope(PDecl);
Argyrios Kyrtzidis3a387442011-10-06 23:23:20 +0000751 return ActOnObjCContainerStartDefinition(PDecl);
Chris Lattner4d391482007-12-12 07:09:47 +0000752}
753
754/// FindProtocolDeclaration - This routine looks up protocols and
Daniel Dunbar7ad1b1f2008-09-04 20:01:15 +0000755/// issues an error if they are not declared. It returns list of
756/// protocol declarations in its 'Protocols' argument.
Chris Lattner4d391482007-12-12 07:09:47 +0000757void
Chris Lattnere13b9592008-07-26 04:03:38 +0000758Sema::FindProtocolDeclaration(bool WarnOnDeclarations,
Chris Lattner7caeabd2008-07-21 22:17:28 +0000759 const IdentifierLocPair *ProtocolId,
Chris Lattner4d391482007-12-12 07:09:47 +0000760 unsigned NumProtocols,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000761 SmallVectorImpl<Decl *> &Protocols) {
Chris Lattner4d391482007-12-12 07:09:47 +0000762 for (unsigned i = 0; i != NumProtocols; ++i) {
Douglas Gregorc83c6872010-04-15 22:33:43 +0000763 ObjCProtocolDecl *PDecl = LookupProtocol(ProtocolId[i].first,
764 ProtocolId[i].second);
Chris Lattnereacc3922008-07-26 03:47:43 +0000765 if (!PDecl) {
Kaelyn Uhrain2f4d88f2012-01-13 01:32:50 +0000766 DeclFilterCCC<ObjCProtocolDecl> Validator;
Douglas Gregord8bba9c2011-06-28 16:20:02 +0000767 TypoCorrection Corrected = CorrectTypo(
768 DeclarationNameInfo(ProtocolId[i].first, ProtocolId[i].second),
Kaelyn Uhrain16e46dd2012-01-31 23:49:25 +0000769 LookupObjCProtocolName, TUScope, NULL, Validator);
Richard Smith2d670972013-08-17 00:46:16 +0000770 if ((PDecl = Corrected.getCorrectionDeclAs<ObjCProtocolDecl>()))
771 diagnoseTypo(Corrected, PDiag(diag::err_undeclared_protocol_suggest)
772 << ProtocolId[i].first);
Douglas Gregorf06cdae2010-01-03 18:01:57 +0000773 }
774
775 if (!PDecl) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000776 Diag(ProtocolId[i].second, diag::err_undeclared_protocol)
Chris Lattner3c73c412008-11-19 08:23:25 +0000777 << ProtocolId[i].first;
Chris Lattnereacc3922008-07-26 03:47:43 +0000778 continue;
779 }
Fariborz Jahanian3c9a0242013-04-09 17:52:29 +0000780 // If this is a forward protocol declaration, get its definition.
781 if (!PDecl->isThisDeclarationADefinition() && PDecl->getDefinition())
782 PDecl = PDecl->getDefinition();
783
Douglas Gregor48f3bb92009-02-18 21:56:37 +0000784 (void)DiagnoseUseOfDecl(PDecl, ProtocolId[i].second);
Chris Lattnereacc3922008-07-26 03:47:43 +0000785
786 // If this is a forward declaration and we are supposed to warn in this
787 // case, do it.
Douglas Gregor0f9b9f32013-01-17 00:38:46 +0000788 // FIXME: Recover nicely in the hidden case.
789 if (WarnOnDeclarations &&
790 (!PDecl->hasDefinition() || PDecl->getDefinition()->isHidden()))
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000791 Diag(ProtocolId[i].second, diag::warn_undef_protocolref)
Chris Lattner3c73c412008-11-19 08:23:25 +0000792 << ProtocolId[i].first;
John McCalld226f652010-08-21 09:40:31 +0000793 Protocols.push_back(PDecl);
Chris Lattner4d391482007-12-12 07:09:47 +0000794 }
795}
796
Fariborz Jahanian78c39c72009-03-02 19:06:08 +0000797/// DiagnoseClassExtensionDupMethods - Check for duplicate declaration of
Fariborz Jahanianb7f95f52009-03-02 19:05:07 +0000798/// a class method in its extension.
799///
Mike Stump1eb44332009-09-09 15:08:12 +0000800void Sema::DiagnoseClassExtensionDupMethods(ObjCCategoryDecl *CAT,
Fariborz Jahanianb7f95f52009-03-02 19:05:07 +0000801 ObjCInterfaceDecl *ID) {
802 if (!ID)
803 return; // Possibly due to previous error
804
805 llvm::DenseMap<Selector, const ObjCMethodDecl*> MethodMap;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000806 for (ObjCInterfaceDecl::method_iterator i = ID->meth_begin(),
807 e = ID->meth_end(); i != e; ++i) {
David Blaikie581deb32012-06-06 20:45:41 +0000808 ObjCMethodDecl *MD = *i;
Fariborz Jahanianb7f95f52009-03-02 19:05:07 +0000809 MethodMap[MD->getSelector()] = MD;
810 }
811
812 if (MethodMap.empty())
813 return;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000814 for (ObjCCategoryDecl::method_iterator i = CAT->meth_begin(),
815 e = CAT->meth_end(); i != e; ++i) {
David Blaikie581deb32012-06-06 20:45:41 +0000816 ObjCMethodDecl *Method = *i;
Fariborz Jahanianb7f95f52009-03-02 19:05:07 +0000817 const ObjCMethodDecl *&PrevMethod = MethodMap[Method->getSelector()];
818 if (PrevMethod && !MatchTwoMethodDeclarations(Method, PrevMethod)) {
819 Diag(Method->getLocation(), diag::err_duplicate_method_decl)
820 << Method->getDeclName();
821 Diag(PrevMethod->getLocation(), diag::note_previous_declaration);
822 }
823 }
824}
825
James Dennett1dfbd922012-06-14 21:40:34 +0000826/// ActOnForwardProtocolDeclaration - Handle \@protocol foo;
Douglas Gregorbd9482d2012-01-01 21:23:57 +0000827Sema::DeclGroupPtrTy
Chris Lattner4d391482007-12-12 07:09:47 +0000828Sema::ActOnForwardProtocolDeclaration(SourceLocation AtProtocolLoc,
Chris Lattner7caeabd2008-07-21 22:17:28 +0000829 const IdentifierLocPair *IdentList,
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +0000830 unsigned NumElts,
831 AttributeList *attrList) {
Douglas Gregorbd9482d2012-01-01 21:23:57 +0000832 SmallVector<Decl *, 8> DeclsInGroup;
Chris Lattner4d391482007-12-12 07:09:47 +0000833 for (unsigned i = 0; i != NumElts; ++i) {
Chris Lattner7caeabd2008-07-21 22:17:28 +0000834 IdentifierInfo *Ident = IdentList[i].first;
Douglas Gregor27c6da22012-01-01 20:30:41 +0000835 ObjCProtocolDecl *PrevDecl = LookupProtocol(Ident, IdentList[i].second,
836 ForRedeclaration);
837 ObjCProtocolDecl *PDecl
838 = ObjCProtocolDecl::Create(Context, CurContext, Ident,
839 IdentList[i].second, AtProtocolLoc,
Douglas Gregorc9d3c7e2012-01-01 22:06:18 +0000840 PrevDecl);
Douglas Gregor27c6da22012-01-01 20:30:41 +0000841
842 PushOnScopeChains(PDecl, TUScope);
Douglas Gregorbd9482d2012-01-01 21:23:57 +0000843 CheckObjCDeclScope(PDecl);
Douglas Gregor27c6da22012-01-01 20:30:41 +0000844
Douglas Gregor3937f872012-01-01 20:33:24 +0000845 if (attrList)
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000846 ProcessDeclAttributeList(TUScope, PDecl, attrList);
Douglas Gregor27c6da22012-01-01 20:30:41 +0000847
848 if (PrevDecl)
849 mergeDeclAttributes(PDecl, PrevDecl);
850
Douglas Gregorbd9482d2012-01-01 21:23:57 +0000851 DeclsInGroup.push_back(PDecl);
Chris Lattner4d391482007-12-12 07:09:47 +0000852 }
Mike Stump1eb44332009-09-09 15:08:12 +0000853
Rafael Espindola4549d7f2013-07-09 12:05:01 +0000854 return BuildDeclaratorGroup(DeclsInGroup, false);
Chris Lattner4d391482007-12-12 07:09:47 +0000855}
856
John McCalld226f652010-08-21 09:40:31 +0000857Decl *Sema::
Chris Lattner7caeabd2008-07-21 22:17:28 +0000858ActOnStartCategoryInterface(SourceLocation AtInterfaceLoc,
859 IdentifierInfo *ClassName, SourceLocation ClassLoc,
860 IdentifierInfo *CategoryName,
861 SourceLocation CategoryLoc,
John McCalld226f652010-08-21 09:40:31 +0000862 Decl * const *ProtoRefs,
Chris Lattner7caeabd2008-07-21 22:17:28 +0000863 unsigned NumProtoRefs,
Douglas Gregor18df52b2010-01-16 15:02:53 +0000864 const SourceLocation *ProtoLocs,
Chris Lattner7caeabd2008-07-21 22:17:28 +0000865 SourceLocation EndProtoLoc) {
Fariborz Jahanian80aa1cd2010-06-22 23:20:40 +0000866 ObjCCategoryDecl *CDecl;
Douglas Gregorc83c6872010-04-15 22:33:43 +0000867 ObjCInterfaceDecl *IDecl = getObjCInterfaceDecl(ClassName, ClassLoc, true);
Ted Kremenek09b68972010-02-23 19:39:46 +0000868
869 /// Check that class of this category is already completely declared.
Douglas Gregorb3029962011-11-14 22:10:01 +0000870
871 if (!IDecl
872 || RequireCompleteType(ClassLoc, Context.getObjCInterfaceType(IDecl),
Douglas Gregord10099e2012-05-04 16:32:21 +0000873 diag::err_category_forward_interface,
874 CategoryName == 0)) {
Ted Kremenek09b68972010-02-23 19:39:46 +0000875 // Create an invalid ObjCCategoryDecl to serve as context for
876 // the enclosing method declarations. We mark the decl invalid
877 // to make it clear that this isn't a valid AST.
878 CDecl = ObjCCategoryDecl::Create(Context, CurContext, AtInterfaceLoc,
Argyrios Kyrtzidis955fadb2011-08-30 19:43:26 +0000879 ClassLoc, CategoryLoc, CategoryName,IDecl);
Ted Kremenek09b68972010-02-23 19:39:46 +0000880 CDecl->setInvalidDecl();
Argyrios Kyrtzidis9a0b6b42012-03-12 18:34:26 +0000881 CurContext->addDecl(CDecl);
Douglas Gregorb3029962011-11-14 22:10:01 +0000882
883 if (!IDecl)
884 Diag(ClassLoc, diag::err_undef_interface) << ClassName;
Argyrios Kyrtzidis3a387442011-10-06 23:23:20 +0000885 return ActOnObjCContainerStartDefinition(CDecl);
Ted Kremenek09b68972010-02-23 19:39:46 +0000886 }
887
Fariborz Jahanian80aa1cd2010-06-22 23:20:40 +0000888 if (!CategoryName && IDecl->getImplementation()) {
889 Diag(ClassLoc, diag::err_class_extension_after_impl) << ClassName;
890 Diag(IDecl->getImplementation()->getLocation(),
891 diag::note_implementation_declared);
Ted Kremenek09b68972010-02-23 19:39:46 +0000892 }
893
Fariborz Jahanian25760612010-02-15 21:55:26 +0000894 if (CategoryName) {
895 /// Check for duplicate interface declaration for this category
Douglas Gregord3297242013-01-16 23:00:23 +0000896 if (ObjCCategoryDecl *Previous
897 = IDecl->FindCategoryDeclaration(CategoryName)) {
898 // Class extensions can be declared multiple times, categories cannot.
899 Diag(CategoryLoc, diag::warn_dup_category_def)
900 << ClassName << CategoryName;
901 Diag(Previous->getLocation(), diag::note_previous_definition);
Chris Lattner70f19542009-02-16 21:26:43 +0000902 }
903 }
Chris Lattner70f19542009-02-16 21:26:43 +0000904
Argyrios Kyrtzidis955fadb2011-08-30 19:43:26 +0000905 CDecl = ObjCCategoryDecl::Create(Context, CurContext, AtInterfaceLoc,
906 ClassLoc, CategoryLoc, CategoryName, IDecl);
907 // FIXME: PushOnScopeChains?
908 CurContext->addDecl(CDecl);
909
Chris Lattner4d391482007-12-12 07:09:47 +0000910 if (NumProtoRefs) {
Roman Divacky31ba6132012-09-06 15:59:27 +0000911 CDecl->setProtocolList((ObjCProtocolDecl*const*)ProtoRefs, NumProtoRefs,
Douglas Gregor18df52b2010-01-16 15:02:53 +0000912 ProtoLocs, Context);
Fariborz Jahanian339798e2009-10-05 20:41:32 +0000913 // Protocols in the class extension belong to the class.
Fariborz Jahanian25760612010-02-15 21:55:26 +0000914 if (CDecl->IsClassExtension())
Roman Divacky31ba6132012-09-06 15:59:27 +0000915 IDecl->mergeClassExtensionProtocolList((ObjCProtocolDecl*const*)ProtoRefs,
Ted Kremenek53b94412010-09-01 01:21:15 +0000916 NumProtoRefs, Context);
Chris Lattner4d391482007-12-12 07:09:47 +0000917 }
Mike Stump1eb44332009-09-09 15:08:12 +0000918
Anders Carlsson15281452008-11-04 16:57:32 +0000919 CheckObjCDeclScope(CDecl);
Argyrios Kyrtzidis3a387442011-10-06 23:23:20 +0000920 return ActOnObjCContainerStartDefinition(CDecl);
Chris Lattner4d391482007-12-12 07:09:47 +0000921}
922
923/// ActOnStartCategoryImplementation - Perform semantic checks on the
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000924/// category implementation declaration and build an ObjCCategoryImplDecl
Chris Lattner4d391482007-12-12 07:09:47 +0000925/// object.
John McCalld226f652010-08-21 09:40:31 +0000926Decl *Sema::ActOnStartCategoryImplementation(
Chris Lattner4d391482007-12-12 07:09:47 +0000927 SourceLocation AtCatImplLoc,
928 IdentifierInfo *ClassName, SourceLocation ClassLoc,
929 IdentifierInfo *CatName, SourceLocation CatLoc) {
Douglas Gregorc83c6872010-04-15 22:33:43 +0000930 ObjCInterfaceDecl *IDecl = getObjCInterfaceDecl(ClassName, ClassLoc, true);
Argyrios Kyrtzidis8a1d7222009-07-21 00:05:53 +0000931 ObjCCategoryDecl *CatIDecl = 0;
Argyrios Kyrtzidis5a61e0c2012-03-02 19:14:29 +0000932 if (IDecl && IDecl->hasDefinition()) {
Argyrios Kyrtzidis8a1d7222009-07-21 00:05:53 +0000933 CatIDecl = IDecl->FindCategoryDeclaration(CatName);
934 if (!CatIDecl) {
935 // Category @implementation with no corresponding @interface.
936 // Create and install one.
Argyrios Kyrtzidis37f40572011-11-23 20:27:26 +0000937 CatIDecl = ObjCCategoryDecl::Create(Context, CurContext, AtCatImplLoc,
938 ClassLoc, CatLoc,
Argyrios Kyrtzidis955fadb2011-08-30 19:43:26 +0000939 CatName, IDecl);
Argyrios Kyrtzidis37f40572011-11-23 20:27:26 +0000940 CatIDecl->setImplicit();
Argyrios Kyrtzidis8a1d7222009-07-21 00:05:53 +0000941 }
942 }
943
Mike Stump1eb44332009-09-09 15:08:12 +0000944 ObjCCategoryImplDecl *CDecl =
Argyrios Kyrtzidis1711fc92011-10-04 04:48:02 +0000945 ObjCCategoryImplDecl::Create(Context, CurContext, CatName, IDecl,
Argyrios Kyrtzidisc6994002011-12-09 00:31:40 +0000946 ClassLoc, AtCatImplLoc, CatLoc);
Chris Lattner4d391482007-12-12 07:09:47 +0000947 /// Check that class of this category is already completely declared.
Douglas Gregorb3029962011-11-14 22:10:01 +0000948 if (!IDecl) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000949 Diag(ClassLoc, diag::err_undef_interface) << ClassName;
John McCall6c2c2502011-07-22 02:45:48 +0000950 CDecl->setInvalidDecl();
Douglas Gregorb3029962011-11-14 22:10:01 +0000951 } else if (RequireCompleteType(ClassLoc, Context.getObjCInterfaceType(IDecl),
952 diag::err_undef_interface)) {
953 CDecl->setInvalidDecl();
John McCall6c2c2502011-07-22 02:45:48 +0000954 }
Chris Lattner4d391482007-12-12 07:09:47 +0000955
Douglas Gregord0434102009-01-09 00:49:46 +0000956 // FIXME: PushOnScopeChains?
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000957 CurContext->addDecl(CDecl);
Douglas Gregord0434102009-01-09 00:49:46 +0000958
Argyrios Kyrtzidisc076e372011-10-06 23:23:27 +0000959 // If the interface is deprecated/unavailable, warn/error about it.
960 if (IDecl)
961 DiagnoseUseOfDecl(IDecl, ClassLoc);
962
Argyrios Kyrtzidis8a1d7222009-07-21 00:05:53 +0000963 /// Check that CatName, category name, is not used in another implementation.
964 if (CatIDecl) {
965 if (CatIDecl->getImplementation()) {
966 Diag(ClassLoc, diag::err_dup_implementation_category) << ClassName
967 << CatName;
968 Diag(CatIDecl->getImplementation()->getLocation(),
969 diag::note_previous_definition);
Argyrios Kyrtzidisdf08c4b2013-05-30 18:53:21 +0000970 CDecl->setInvalidDecl();
Fariborz Jahanianb1224f62011-02-15 00:59:30 +0000971 } else {
Argyrios Kyrtzidis8a1d7222009-07-21 00:05:53 +0000972 CatIDecl->setImplementation(CDecl);
Fariborz Jahanianb1224f62011-02-15 00:59:30 +0000973 // Warn on implementating category of deprecated class under
974 // -Wdeprecated-implementations flag.
Fariborz Jahanian5ac96d52011-02-15 17:49:58 +0000975 DiagnoseObjCImplementedDeprecations(*this,
976 dyn_cast<NamedDecl>(IDecl),
977 CDecl->getLocation(), 2);
Fariborz Jahanianb1224f62011-02-15 00:59:30 +0000978 }
Argyrios Kyrtzidis8a1d7222009-07-21 00:05:53 +0000979 }
Mike Stump1eb44332009-09-09 15:08:12 +0000980
Anders Carlsson15281452008-11-04 16:57:32 +0000981 CheckObjCDeclScope(CDecl);
Argyrios Kyrtzidis3a387442011-10-06 23:23:20 +0000982 return ActOnObjCContainerStartDefinition(CDecl);
Chris Lattner4d391482007-12-12 07:09:47 +0000983}
984
John McCalld226f652010-08-21 09:40:31 +0000985Decl *Sema::ActOnStartClassImplementation(
Chris Lattner4d391482007-12-12 07:09:47 +0000986 SourceLocation AtClassImplLoc,
987 IdentifierInfo *ClassName, SourceLocation ClassLoc,
Mike Stump1eb44332009-09-09 15:08:12 +0000988 IdentifierInfo *SuperClassname,
Chris Lattner4d391482007-12-12 07:09:47 +0000989 SourceLocation SuperClassLoc) {
Richard Smith2d670972013-08-17 00:46:16 +0000990 ObjCInterfaceDecl *IDecl = 0;
Chris Lattner4d391482007-12-12 07:09:47 +0000991 // Check for another declaration kind with the same name.
John McCallf36e02d2009-10-09 21:13:30 +0000992 NamedDecl *PrevDecl
Douglas Gregorc0b39642010-04-15 23:40:53 +0000993 = LookupSingleName(TUScope, ClassName, ClassLoc, LookupOrdinaryName,
994 ForRedeclaration);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000995 if (PrevDecl && !isa<ObjCInterfaceDecl>(PrevDecl)) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000996 Diag(ClassLoc, diag::err_redefinition_different_kind) << ClassName;
Chris Lattner5f4a6822008-11-23 23:12:31 +0000997 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Douglas Gregordeacbdc2010-08-11 12:19:30 +0000998 } else if ((IDecl = dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl))) {
Douglas Gregor0af55012011-12-16 03:12:41 +0000999 RequireCompleteType(ClassLoc, Context.getObjCInterfaceType(IDecl),
1000 diag::warn_undef_interface);
Douglas Gregor95ff7422010-01-04 17:27:12 +00001001 } else {
Richard Smith2d670972013-08-17 00:46:16 +00001002 // We did not find anything with the name ClassName; try to correct for
Douglas Gregor95ff7422010-01-04 17:27:12 +00001003 // typos in the class name.
Kaelyn Uhrain2f4d88f2012-01-13 01:32:50 +00001004 ObjCInterfaceValidatorCCC Validator;
Richard Smith2d670972013-08-17 00:46:16 +00001005 TypoCorrection Corrected =
1006 CorrectTypo(DeclarationNameInfo(ClassName, ClassLoc),
1007 LookupOrdinaryName, TUScope, NULL, Validator);
1008 if (Corrected.getCorrectionDeclAs<ObjCInterfaceDecl>()) {
1009 // Suggest the (potentially) correct interface name. Don't provide a
1010 // code-modification hint or use the typo name for recovery, because
1011 // this is just a warning. The program may actually be correct.
1012 diagnoseTypo(Corrected,
1013 PDiag(diag::warn_undef_interface_suggest) << ClassName,
1014 /*ErrorRecovery*/false);
Douglas Gregor95ff7422010-01-04 17:27:12 +00001015 } else {
1016 Diag(ClassLoc, diag::warn_undef_interface) << ClassName;
1017 }
Chris Lattner4d391482007-12-12 07:09:47 +00001018 }
Mike Stump1eb44332009-09-09 15:08:12 +00001019
Chris Lattner4d391482007-12-12 07:09:47 +00001020 // Check that super class name is valid class name
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001021 ObjCInterfaceDecl* SDecl = 0;
Chris Lattner4d391482007-12-12 07:09:47 +00001022 if (SuperClassname) {
1023 // Check if a different kind of symbol declared in this scope.
Douglas Gregorc83c6872010-04-15 22:33:43 +00001024 PrevDecl = LookupSingleName(TUScope, SuperClassname, SuperClassLoc,
1025 LookupOrdinaryName);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001026 if (PrevDecl && !isa<ObjCInterfaceDecl>(PrevDecl)) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001027 Diag(SuperClassLoc, diag::err_redefinition_different_kind)
1028 << SuperClassname;
Chris Lattner5f4a6822008-11-23 23:12:31 +00001029 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Chris Lattner3c73c412008-11-19 08:23:25 +00001030 } else {
Mike Stump1eb44332009-09-09 15:08:12 +00001031 SDecl = dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl);
Argyrios Kyrtzidiscd707ab2012-03-13 01:09:36 +00001032 if (SDecl && !SDecl->hasDefinition())
1033 SDecl = 0;
Chris Lattner4d391482007-12-12 07:09:47 +00001034 if (!SDecl)
Chris Lattner3c73c412008-11-19 08:23:25 +00001035 Diag(SuperClassLoc, diag::err_undef_superclass)
1036 << SuperClassname << ClassName;
Douglas Gregor60ef3082011-12-15 00:29:59 +00001037 else if (IDecl && !declaresSameEntity(IDecl->getSuperClass(), SDecl)) {
Chris Lattner4d391482007-12-12 07:09:47 +00001038 // This implementation and its interface do not have the same
1039 // super class.
Chris Lattner3c73c412008-11-19 08:23:25 +00001040 Diag(SuperClassLoc, diag::err_conflicting_super_class)
Chris Lattner08631c52008-11-23 21:45:46 +00001041 << SDecl->getDeclName();
Chris Lattner5f4a6822008-11-23 23:12:31 +00001042 Diag(SDecl->getLocation(), diag::note_previous_definition);
Chris Lattner4d391482007-12-12 07:09:47 +00001043 }
1044 }
1045 }
Mike Stump1eb44332009-09-09 15:08:12 +00001046
Chris Lattner4d391482007-12-12 07:09:47 +00001047 if (!IDecl) {
1048 // Legacy case of @implementation with no corresponding @interface.
1049 // Build, chain & install the interface decl into the identifier.
Daniel Dunbarf6414922008-08-20 18:02:42 +00001050
Mike Stump390b4cc2009-05-16 07:39:55 +00001051 // FIXME: Do we support attributes on the @implementation? If so we should
1052 // copy them over.
Mike Stump1eb44332009-09-09 15:08:12 +00001053 IDecl = ObjCInterfaceDecl::Create(Context, CurContext, AtClassImplLoc,
Douglas Gregor0af55012011-12-16 03:12:41 +00001054 ClassName, /*PrevDecl=*/0, ClassLoc,
1055 true);
Douglas Gregor2e5c15b2011-12-15 05:27:12 +00001056 IDecl->startDefinition();
Douglas Gregor05c272f2011-12-15 22:34:59 +00001057 if (SDecl) {
1058 IDecl->setSuperClass(SDecl);
1059 IDecl->setSuperClassLoc(SuperClassLoc);
1060 IDecl->setEndOfDefinitionLoc(SuperClassLoc);
1061 } else {
1062 IDecl->setEndOfDefinitionLoc(ClassLoc);
1063 }
1064
Douglas Gregor8b9fb302009-04-24 00:16:12 +00001065 PushOnScopeChains(IDecl, TUScope);
Douglas Gregordeacbdc2010-08-11 12:19:30 +00001066 } else {
1067 // Mark the interface as being completed, even if it was just as
1068 // @class ....;
1069 // declaration; the user cannot reopen it.
Douglas Gregor2e5c15b2011-12-15 05:27:12 +00001070 if (!IDecl->hasDefinition())
1071 IDecl->startDefinition();
Chris Lattner4d391482007-12-12 07:09:47 +00001072 }
Mike Stump1eb44332009-09-09 15:08:12 +00001073
1074 ObjCImplementationDecl* IMPDecl =
Argyrios Kyrtzidis1711fc92011-10-04 04:48:02 +00001075 ObjCImplementationDecl::Create(Context, CurContext, IDecl, SDecl,
Argyrios Kyrtzidis634c5632013-05-03 18:05:44 +00001076 ClassLoc, AtClassImplLoc, SuperClassLoc);
Mike Stump1eb44332009-09-09 15:08:12 +00001077
Anders Carlsson15281452008-11-04 16:57:32 +00001078 if (CheckObjCDeclScope(IMPDecl))
Argyrios Kyrtzidis3a387442011-10-06 23:23:20 +00001079 return ActOnObjCContainerStartDefinition(IMPDecl);
Mike Stump1eb44332009-09-09 15:08:12 +00001080
Chris Lattner4d391482007-12-12 07:09:47 +00001081 // Check that there is no duplicate implementation of this class.
Douglas Gregordeacbdc2010-08-11 12:19:30 +00001082 if (IDecl->getImplementation()) {
1083 // FIXME: Don't leak everything!
Chris Lattner3c73c412008-11-19 08:23:25 +00001084 Diag(ClassLoc, diag::err_dup_implementation_class) << ClassName;
Argyrios Kyrtzidis87018772009-07-21 00:06:04 +00001085 Diag(IDecl->getImplementation()->getLocation(),
1086 diag::note_previous_definition);
Argyrios Kyrtzidisdf08c4b2013-05-30 18:53:21 +00001087 IMPDecl->setInvalidDecl();
Douglas Gregordeacbdc2010-08-11 12:19:30 +00001088 } else { // add it to the list.
Argyrios Kyrtzidis8a1d7222009-07-21 00:05:53 +00001089 IDecl->setImplementation(IMPDecl);
Douglas Gregor8fc463a2009-04-24 00:11:27 +00001090 PushOnScopeChains(IMPDecl, TUScope);
Fariborz Jahanianb1224f62011-02-15 00:59:30 +00001091 // Warn on implementating deprecated class under
1092 // -Wdeprecated-implementations flag.
Fariborz Jahanian5ac96d52011-02-15 17:49:58 +00001093 DiagnoseObjCImplementedDeprecations(*this,
1094 dyn_cast<NamedDecl>(IDecl),
1095 IMPDecl->getLocation(), 1);
Argyrios Kyrtzidis8a1d7222009-07-21 00:05:53 +00001096 }
Argyrios Kyrtzidis3a387442011-10-06 23:23:20 +00001097 return ActOnObjCContainerStartDefinition(IMPDecl);
Chris Lattner4d391482007-12-12 07:09:47 +00001098}
1099
Argyrios Kyrtzidis644af7b2012-02-23 21:11:20 +00001100Sema::DeclGroupPtrTy
1101Sema::ActOnFinishObjCImplementation(Decl *ObjCImpDecl, ArrayRef<Decl *> Decls) {
1102 SmallVector<Decl *, 64> DeclsInGroup;
1103 DeclsInGroup.reserve(Decls.size() + 1);
1104
1105 for (unsigned i = 0, e = Decls.size(); i != e; ++i) {
1106 Decl *Dcl = Decls[i];
1107 if (!Dcl)
1108 continue;
1109 if (Dcl->getDeclContext()->isFileContext())
1110 Dcl->setTopLevelDeclInObjCContainer();
1111 DeclsInGroup.push_back(Dcl);
1112 }
1113
1114 DeclsInGroup.push_back(ObjCImpDecl);
1115
Rafael Espindola4549d7f2013-07-09 12:05:01 +00001116 return BuildDeclaratorGroup(DeclsInGroup, false);
Argyrios Kyrtzidis644af7b2012-02-23 21:11:20 +00001117}
1118
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001119void Sema::CheckImplementationIvars(ObjCImplementationDecl *ImpDecl,
1120 ObjCIvarDecl **ivars, unsigned numIvars,
Chris Lattner4d391482007-12-12 07:09:47 +00001121 SourceLocation RBrace) {
1122 assert(ImpDecl && "missing implementation decl");
Douglas Gregor4afa39d2009-01-20 01:17:11 +00001123 ObjCInterfaceDecl* IDecl = ImpDecl->getClassInterface();
Chris Lattner4d391482007-12-12 07:09:47 +00001124 if (!IDecl)
1125 return;
James Dennett1dfbd922012-06-14 21:40:34 +00001126 /// Check case of non-existing \@interface decl.
1127 /// (legacy objective-c \@implementation decl without an \@interface decl).
Chris Lattner4d391482007-12-12 07:09:47 +00001128 /// Add implementations's ivar to the synthesize class's ivar list.
Steve Naroff33feeb02009-04-20 20:09:33 +00001129 if (IDecl->isImplicitInterfaceDecl()) {
Douglas Gregor05c272f2011-12-15 22:34:59 +00001130 IDecl->setEndOfDefinitionLoc(RBrace);
Fariborz Jahanian3a21cd92010-02-17 17:00:07 +00001131 // Add ivar's to class's DeclContext.
1132 for (unsigned i = 0, e = numIvars; i != e; ++i) {
Fariborz Jahanian2f14c4d2010-02-17 18:10:54 +00001133 ivars[i]->setLexicalDeclContext(ImpDecl);
Richard Smith1b7f9cb2012-03-13 03:12:56 +00001134 IDecl->makeDeclVisibleInContext(ivars[i]);
Fariborz Jahanian11062e12010-02-19 00:31:17 +00001135 ImpDecl->addDecl(ivars[i]);
Fariborz Jahanian3a21cd92010-02-17 17:00:07 +00001136 }
1137
Chris Lattner4d391482007-12-12 07:09:47 +00001138 return;
1139 }
1140 // If implementation has empty ivar list, just return.
1141 if (numIvars == 0)
1142 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001143
Chris Lattner4d391482007-12-12 07:09:47 +00001144 assert(ivars && "missing @implementation ivars");
John McCall260611a2012-06-20 06:18:46 +00001145 if (LangOpts.ObjCRuntime.isNonFragile()) {
Fariborz Jahanianbd94d442010-02-19 20:58:54 +00001146 if (ImpDecl->getSuperClass())
1147 Diag(ImpDecl->getLocation(), diag::warn_on_superclass_use);
1148 for (unsigned i = 0; i < numIvars; i++) {
1149 ObjCIvarDecl* ImplIvar = ivars[i];
1150 if (const ObjCIvarDecl *ClsIvar =
1151 IDecl->getIvarDecl(ImplIvar->getIdentifier())) {
1152 Diag(ImplIvar->getLocation(), diag::err_duplicate_ivar_declaration);
1153 Diag(ClsIvar->getLocation(), diag::note_previous_definition);
1154 continue;
1155 }
Fariborz Jahanian3b20f582013-06-26 22:10:27 +00001156 // Check class extensions (unnamed categories) for duplicate ivars.
1157 for (ObjCInterfaceDecl::visible_extensions_iterator
1158 Ext = IDecl->visible_extensions_begin(),
1159 ExtEnd = IDecl->visible_extensions_end();
1160 Ext != ExtEnd; ++Ext) {
1161 ObjCCategoryDecl *CDecl = *Ext;
1162 if (const ObjCIvarDecl *ClsExtIvar =
1163 CDecl->getIvarDecl(ImplIvar->getIdentifier())) {
1164 Diag(ImplIvar->getLocation(), diag::err_duplicate_ivar_declaration);
1165 Diag(ClsExtIvar->getLocation(), diag::note_previous_definition);
1166 continue;
1167 }
1168 }
Fariborz Jahanianbd94d442010-02-19 20:58:54 +00001169 // Instance ivar to Implementation's DeclContext.
1170 ImplIvar->setLexicalDeclContext(ImpDecl);
Richard Smith1b7f9cb2012-03-13 03:12:56 +00001171 IDecl->makeDeclVisibleInContext(ImplIvar);
Fariborz Jahanianbd94d442010-02-19 20:58:54 +00001172 ImpDecl->addDecl(ImplIvar);
1173 }
1174 return;
1175 }
Chris Lattner4d391482007-12-12 07:09:47 +00001176 // Check interface's Ivar list against those in the implementation.
1177 // names and types must match.
1178 //
Chris Lattner4d391482007-12-12 07:09:47 +00001179 unsigned j = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001180 ObjCInterfaceDecl::ivar_iterator
Chris Lattner4c525092007-12-12 17:58:05 +00001181 IVI = IDecl->ivar_begin(), IVE = IDecl->ivar_end();
1182 for (; numIvars > 0 && IVI != IVE; ++IVI) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001183 ObjCIvarDecl* ImplIvar = ivars[j++];
David Blaikie581deb32012-06-06 20:45:41 +00001184 ObjCIvarDecl* ClsIvar = *IVI;
Chris Lattner4d391482007-12-12 07:09:47 +00001185 assert (ImplIvar && "missing implementation ivar");
1186 assert (ClsIvar && "missing class ivar");
Mike Stump1eb44332009-09-09 15:08:12 +00001187
Steve Naroffca331292009-03-03 14:49:36 +00001188 // First, make sure the types match.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00001189 if (!Context.hasSameType(ImplIvar->getType(), ClsIvar->getType())) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001190 Diag(ImplIvar->getLocation(), diag::err_conflicting_ivar_type)
Chris Lattner08631c52008-11-23 21:45:46 +00001191 << ImplIvar->getIdentifier()
1192 << ImplIvar->getType() << ClsIvar->getType();
Chris Lattner5f4a6822008-11-23 23:12:31 +00001193 Diag(ClsIvar->getLocation(), diag::note_previous_definition);
Richard Smitha6b8b2c2011-10-10 18:28:20 +00001194 } else if (ImplIvar->isBitField() && ClsIvar->isBitField() &&
1195 ImplIvar->getBitWidthValue(Context) !=
1196 ClsIvar->getBitWidthValue(Context)) {
1197 Diag(ImplIvar->getBitWidth()->getLocStart(),
1198 diag::err_conflicting_ivar_bitwidth) << ImplIvar->getIdentifier();
1199 Diag(ClsIvar->getBitWidth()->getLocStart(),
1200 diag::note_previous_definition);
Mike Stump1eb44332009-09-09 15:08:12 +00001201 }
Steve Naroffca331292009-03-03 14:49:36 +00001202 // Make sure the names are identical.
1203 if (ImplIvar->getIdentifier() != ClsIvar->getIdentifier()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001204 Diag(ImplIvar->getLocation(), diag::err_conflicting_ivar_name)
Chris Lattner08631c52008-11-23 21:45:46 +00001205 << ImplIvar->getIdentifier() << ClsIvar->getIdentifier();
Chris Lattner5f4a6822008-11-23 23:12:31 +00001206 Diag(ClsIvar->getLocation(), diag::note_previous_definition);
Chris Lattner4d391482007-12-12 07:09:47 +00001207 }
1208 --numIvars;
Chris Lattner4d391482007-12-12 07:09:47 +00001209 }
Mike Stump1eb44332009-09-09 15:08:12 +00001210
Chris Lattner609e4c72007-12-12 18:11:49 +00001211 if (numIvars > 0)
Chris Lattner0e391052007-12-12 18:19:52 +00001212 Diag(ivars[j]->getLocation(), diag::err_inconsistant_ivar_count);
Chris Lattner609e4c72007-12-12 18:11:49 +00001213 else if (IVI != IVE)
David Blaikie262bc182012-04-30 02:36:29 +00001214 Diag(IVI->getLocation(), diag::err_inconsistant_ivar_count);
Chris Lattner4d391482007-12-12 07:09:47 +00001215}
1216
Steve Naroff3c2eb662008-02-10 21:38:56 +00001217void Sema::WarnUndefinedMethod(SourceLocation ImpLoc, ObjCMethodDecl *method,
Fariborz Jahanian52146832010-03-31 18:23:33 +00001218 bool &IncompleteImpl, unsigned DiagID) {
Fariborz Jahanian327126e2011-06-24 20:31:37 +00001219 // No point warning no definition of method which is 'unavailable'.
Douglas Gregor86f6cf62012-12-11 18:53:07 +00001220 switch (method->getAvailability()) {
1221 case AR_Available:
1222 case AR_Deprecated:
1223 break;
1224
1225 // Don't warn about unavailable or not-yet-introduced methods.
1226 case AR_NotYetIntroduced:
1227 case AR_Unavailable:
Fariborz Jahanian327126e2011-06-24 20:31:37 +00001228 return;
Douglas Gregor86f6cf62012-12-11 18:53:07 +00001229 }
1230
Ted Kremenek8b43d2b2013-03-27 00:02:21 +00001231 // FIXME: For now ignore 'IncompleteImpl'.
1232 // Previously we grouped all unimplemented methods under a single
1233 // warning, but some users strongly voiced that they would prefer
1234 // separate warnings. We will give that approach a try, as that
1235 // matches what we do with protocols.
1236
1237 Diag(ImpLoc, DiagID) << method->getDeclName();
1238
1239 // Issue a note to the original declaration.
1240 SourceLocation MethodLoc = method->getLocStart();
1241 if (MethodLoc.isValid())
1242 Diag(MethodLoc, diag::note_method_declared_at) << method;
Steve Naroff3c2eb662008-02-10 21:38:56 +00001243}
1244
David Chisnalle8a2d4c2010-10-25 17:23:52 +00001245/// Determines if type B can be substituted for type A. Returns true if we can
1246/// guarantee that anything that the user will do to an object of type A can
1247/// also be done to an object of type B. This is trivially true if the two
1248/// types are the same, or if B is a subclass of A. It becomes more complex
1249/// in cases where protocols are involved.
1250///
1251/// Object types in Objective-C describe the minimum requirements for an
1252/// object, rather than providing a complete description of a type. For
1253/// example, if A is a subclass of B, then B* may refer to an instance of A.
1254/// The principle of substitutability means that we may use an instance of A
1255/// anywhere that we may use an instance of B - it will implement all of the
1256/// ivars of B and all of the methods of B.
1257///
1258/// This substitutability is important when type checking methods, because
1259/// the implementation may have stricter type definitions than the interface.
1260/// The interface specifies minimum requirements, but the implementation may
1261/// have more accurate ones. For example, a method may privately accept
1262/// instances of B, but only publish that it accepts instances of A. Any
1263/// object passed to it will be type checked against B, and so will implicitly
1264/// by a valid A*. Similarly, a method may return a subclass of the class that
1265/// it is declared as returning.
1266///
1267/// This is most important when considering subclassing. A method in a
1268/// subclass must accept any object as an argument that its superclass's
1269/// implementation accepts. It may, however, accept a more general type
1270/// without breaking substitutability (i.e. you can still use the subclass
1271/// anywhere that you can use the superclass, but not vice versa). The
1272/// converse requirement applies to return types: the return type for a
1273/// subclass method must be a valid object of the kind that the superclass
1274/// advertises, but it may be specified more accurately. This avoids the need
1275/// for explicit down-casting by callers.
1276///
1277/// Note: This is a stricter requirement than for assignment.
John McCall10302c02010-10-28 02:34:38 +00001278static bool isObjCTypeSubstitutable(ASTContext &Context,
1279 const ObjCObjectPointerType *A,
1280 const ObjCObjectPointerType *B,
1281 bool rejectId) {
1282 // Reject a protocol-unqualified id.
1283 if (rejectId && B->isObjCIdType()) return false;
David Chisnalle8a2d4c2010-10-25 17:23:52 +00001284
1285 // If B is a qualified id, then A must also be a qualified id and it must
1286 // implement all of the protocols in B. It may not be a qualified class.
1287 // For example, MyClass<A> can be assigned to id<A>, but MyClass<A> is a
1288 // stricter definition so it is not substitutable for id<A>.
1289 if (B->isObjCQualifiedIdType()) {
1290 return A->isObjCQualifiedIdType() &&
John McCall10302c02010-10-28 02:34:38 +00001291 Context.ObjCQualifiedIdTypesAreCompatible(QualType(A, 0),
1292 QualType(B,0),
1293 false);
David Chisnalle8a2d4c2010-10-25 17:23:52 +00001294 }
1295
1296 /*
1297 // id is a special type that bypasses type checking completely. We want a
1298 // warning when it is used in one place but not another.
1299 if (C.isObjCIdType(A) || C.isObjCIdType(B)) return false;
1300
1301
1302 // If B is a qualified id, then A must also be a qualified id (which it isn't
1303 // if we've got this far)
1304 if (B->isObjCQualifiedIdType()) return false;
1305 */
1306
1307 // Now we know that A and B are (potentially-qualified) class types. The
1308 // normal rules for assignment apply.
John McCall10302c02010-10-28 02:34:38 +00001309 return Context.canAssignObjCInterfaces(A, B);
David Chisnalle8a2d4c2010-10-25 17:23:52 +00001310}
1311
John McCall10302c02010-10-28 02:34:38 +00001312static SourceRange getTypeRange(TypeSourceInfo *TSI) {
1313 return (TSI ? TSI->getTypeLoc().getSourceRange() : SourceRange());
1314}
1315
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001316static bool CheckMethodOverrideReturn(Sema &S,
John McCall10302c02010-10-28 02:34:38 +00001317 ObjCMethodDecl *MethodImpl,
Fariborz Jahanian21761c82011-02-21 23:49:15 +00001318 ObjCMethodDecl *MethodDecl,
Fariborz Jahanianeee3ef12011-07-24 20:53:26 +00001319 bool IsProtocolMethodDecl,
Fariborz Jahanian730cfb12011-08-10 17:16:30 +00001320 bool IsOverridingMode,
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001321 bool Warn) {
Fariborz Jahanian21761c82011-02-21 23:49:15 +00001322 if (IsProtocolMethodDecl &&
1323 (MethodDecl->getObjCDeclQualifier() !=
1324 MethodImpl->getObjCDeclQualifier())) {
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001325 if (Warn) {
Fariborz Jahanian730cfb12011-08-10 17:16:30 +00001326 S.Diag(MethodImpl->getLocation(),
1327 (IsOverridingMode ?
1328 diag::warn_conflicting_overriding_ret_type_modifiers
1329 : diag::warn_conflicting_ret_type_modifiers))
1330 << MethodImpl->getDeclName()
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001331 << getTypeRange(MethodImpl->getResultTypeSourceInfo());
1332 S.Diag(MethodDecl->getLocation(), diag::note_previous_declaration)
1333 << getTypeRange(MethodDecl->getResultTypeSourceInfo());
1334 }
1335 else
1336 return false;
Fariborz Jahanian21761c82011-02-21 23:49:15 +00001337 }
1338
John McCall10302c02010-10-28 02:34:38 +00001339 if (S.Context.hasSameUnqualifiedType(MethodImpl->getResultType(),
Fariborz Jahanian21761c82011-02-21 23:49:15 +00001340 MethodDecl->getResultType()))
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001341 return true;
1342 if (!Warn)
1343 return false;
John McCall10302c02010-10-28 02:34:38 +00001344
Fariborz Jahanian730cfb12011-08-10 17:16:30 +00001345 unsigned DiagID =
1346 IsOverridingMode ? diag::warn_conflicting_overriding_ret_types
1347 : diag::warn_conflicting_ret_types;
John McCall10302c02010-10-28 02:34:38 +00001348
1349 // Mismatches between ObjC pointers go into a different warning
1350 // category, and sometimes they're even completely whitelisted.
1351 if (const ObjCObjectPointerType *ImplPtrTy =
1352 MethodImpl->getResultType()->getAs<ObjCObjectPointerType>()) {
1353 if (const ObjCObjectPointerType *IfacePtrTy =
Fariborz Jahanian21761c82011-02-21 23:49:15 +00001354 MethodDecl->getResultType()->getAs<ObjCObjectPointerType>()) {
John McCall10302c02010-10-28 02:34:38 +00001355 // Allow non-matching return types as long as they don't violate
1356 // the principle of substitutability. Specifically, we permit
1357 // return types that are subclasses of the declared return type,
1358 // or that are more-qualified versions of the declared type.
1359 if (isObjCTypeSubstitutable(S.Context, IfacePtrTy, ImplPtrTy, false))
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001360 return false;
John McCall10302c02010-10-28 02:34:38 +00001361
Fariborz Jahanian730cfb12011-08-10 17:16:30 +00001362 DiagID =
1363 IsOverridingMode ? diag::warn_non_covariant_overriding_ret_types
1364 : diag::warn_non_covariant_ret_types;
John McCall10302c02010-10-28 02:34:38 +00001365 }
1366 }
1367
1368 S.Diag(MethodImpl->getLocation(), DiagID)
1369 << MethodImpl->getDeclName()
Fariborz Jahanian21761c82011-02-21 23:49:15 +00001370 << MethodDecl->getResultType()
John McCall10302c02010-10-28 02:34:38 +00001371 << MethodImpl->getResultType()
1372 << getTypeRange(MethodImpl->getResultTypeSourceInfo());
Fariborz Jahanian730cfb12011-08-10 17:16:30 +00001373 S.Diag(MethodDecl->getLocation(),
1374 IsOverridingMode ? diag::note_previous_declaration
1375 : diag::note_previous_definition)
Fariborz Jahanian21761c82011-02-21 23:49:15 +00001376 << getTypeRange(MethodDecl->getResultTypeSourceInfo());
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001377 return false;
John McCall10302c02010-10-28 02:34:38 +00001378}
1379
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001380static bool CheckMethodOverrideParam(Sema &S,
John McCall10302c02010-10-28 02:34:38 +00001381 ObjCMethodDecl *MethodImpl,
Fariborz Jahanian21761c82011-02-21 23:49:15 +00001382 ObjCMethodDecl *MethodDecl,
John McCall10302c02010-10-28 02:34:38 +00001383 ParmVarDecl *ImplVar,
Fariborz Jahanian21761c82011-02-21 23:49:15 +00001384 ParmVarDecl *IfaceVar,
Fariborz Jahanianeee3ef12011-07-24 20:53:26 +00001385 bool IsProtocolMethodDecl,
Fariborz Jahanian730cfb12011-08-10 17:16:30 +00001386 bool IsOverridingMode,
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001387 bool Warn) {
Fariborz Jahanian21761c82011-02-21 23:49:15 +00001388 if (IsProtocolMethodDecl &&
1389 (ImplVar->getObjCDeclQualifier() !=
1390 IfaceVar->getObjCDeclQualifier())) {
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001391 if (Warn) {
Fariborz Jahanian730cfb12011-08-10 17:16:30 +00001392 if (IsOverridingMode)
1393 S.Diag(ImplVar->getLocation(),
1394 diag::warn_conflicting_overriding_param_modifiers)
1395 << getTypeRange(ImplVar->getTypeSourceInfo())
1396 << MethodImpl->getDeclName();
1397 else S.Diag(ImplVar->getLocation(),
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001398 diag::warn_conflicting_param_modifiers)
1399 << getTypeRange(ImplVar->getTypeSourceInfo())
Fariborz Jahanian730cfb12011-08-10 17:16:30 +00001400 << MethodImpl->getDeclName();
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001401 S.Diag(IfaceVar->getLocation(), diag::note_previous_declaration)
1402 << getTypeRange(IfaceVar->getTypeSourceInfo());
1403 }
1404 else
1405 return false;
Fariborz Jahanian21761c82011-02-21 23:49:15 +00001406 }
1407
John McCall10302c02010-10-28 02:34:38 +00001408 QualType ImplTy = ImplVar->getType();
1409 QualType IfaceTy = IfaceVar->getType();
Fariborz Jahanian21761c82011-02-21 23:49:15 +00001410
John McCall10302c02010-10-28 02:34:38 +00001411 if (S.Context.hasSameUnqualifiedType(ImplTy, IfaceTy))
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001412 return true;
1413
1414 if (!Warn)
1415 return false;
Fariborz Jahanian730cfb12011-08-10 17:16:30 +00001416 unsigned DiagID =
1417 IsOverridingMode ? diag::warn_conflicting_overriding_param_types
1418 : diag::warn_conflicting_param_types;
John McCall10302c02010-10-28 02:34:38 +00001419
1420 // Mismatches between ObjC pointers go into a different warning
1421 // category, and sometimes they're even completely whitelisted.
1422 if (const ObjCObjectPointerType *ImplPtrTy =
1423 ImplTy->getAs<ObjCObjectPointerType>()) {
1424 if (const ObjCObjectPointerType *IfacePtrTy =
1425 IfaceTy->getAs<ObjCObjectPointerType>()) {
1426 // Allow non-matching argument types as long as they don't
1427 // violate the principle of substitutability. Specifically, the
1428 // implementation must accept any objects that the superclass
1429 // accepts, however it may also accept others.
1430 if (isObjCTypeSubstitutable(S.Context, ImplPtrTy, IfacePtrTy, true))
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001431 return false;
John McCall10302c02010-10-28 02:34:38 +00001432
Fariborz Jahanian730cfb12011-08-10 17:16:30 +00001433 DiagID =
1434 IsOverridingMode ? diag::warn_non_contravariant_overriding_param_types
1435 : diag::warn_non_contravariant_param_types;
John McCall10302c02010-10-28 02:34:38 +00001436 }
1437 }
1438
1439 S.Diag(ImplVar->getLocation(), DiagID)
1440 << getTypeRange(ImplVar->getTypeSourceInfo())
Fariborz Jahanian730cfb12011-08-10 17:16:30 +00001441 << MethodImpl->getDeclName() << IfaceTy << ImplTy;
1442 S.Diag(IfaceVar->getLocation(),
1443 (IsOverridingMode ? diag::note_previous_declaration
1444 : diag::note_previous_definition))
John McCall10302c02010-10-28 02:34:38 +00001445 << getTypeRange(IfaceVar->getTypeSourceInfo());
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001446 return false;
John McCall10302c02010-10-28 02:34:38 +00001447}
John McCallf85e1932011-06-15 23:02:42 +00001448
1449/// In ARC, check whether the conventional meanings of the two methods
1450/// match. If they don't, it's a hard error.
1451static bool checkMethodFamilyMismatch(Sema &S, ObjCMethodDecl *impl,
1452 ObjCMethodDecl *decl) {
1453 ObjCMethodFamily implFamily = impl->getMethodFamily();
1454 ObjCMethodFamily declFamily = decl->getMethodFamily();
1455 if (implFamily == declFamily) return false;
1456
1457 // Since conventions are sorted by selector, the only possibility is
1458 // that the types differ enough to cause one selector or the other
1459 // to fall out of the family.
1460 assert(implFamily == OMF_None || declFamily == OMF_None);
1461
1462 // No further diagnostics required on invalid declarations.
1463 if (impl->isInvalidDecl() || decl->isInvalidDecl()) return true;
1464
1465 const ObjCMethodDecl *unmatched = impl;
1466 ObjCMethodFamily family = declFamily;
1467 unsigned errorID = diag::err_arc_lost_method_convention;
1468 unsigned noteID = diag::note_arc_lost_method_convention;
1469 if (declFamily == OMF_None) {
1470 unmatched = decl;
1471 family = implFamily;
1472 errorID = diag::err_arc_gained_method_convention;
1473 noteID = diag::note_arc_gained_method_convention;
1474 }
1475
1476 // Indexes into a %select clause in the diagnostic.
1477 enum FamilySelector {
1478 F_alloc, F_copy, F_mutableCopy = F_copy, F_init, F_new
1479 };
1480 FamilySelector familySelector = FamilySelector();
1481
1482 switch (family) {
1483 case OMF_None: llvm_unreachable("logic error, no method convention");
1484 case OMF_retain:
1485 case OMF_release:
1486 case OMF_autorelease:
1487 case OMF_dealloc:
Nico Weber80cb6e62011-08-28 22:35:17 +00001488 case OMF_finalize:
John McCallf85e1932011-06-15 23:02:42 +00001489 case OMF_retainCount:
1490 case OMF_self:
Fariborz Jahanian9670e172011-07-05 22:38:59 +00001491 case OMF_performSelector:
John McCallf85e1932011-06-15 23:02:42 +00001492 // Mismatches for these methods don't change ownership
1493 // conventions, so we don't care.
1494 return false;
1495
1496 case OMF_init: familySelector = F_init; break;
1497 case OMF_alloc: familySelector = F_alloc; break;
1498 case OMF_copy: familySelector = F_copy; break;
1499 case OMF_mutableCopy: familySelector = F_mutableCopy; break;
1500 case OMF_new: familySelector = F_new; break;
1501 }
1502
1503 enum ReasonSelector { R_NonObjectReturn, R_UnrelatedReturn };
1504 ReasonSelector reasonSelector;
1505
1506 // The only reason these methods don't fall within their families is
1507 // due to unusual result types.
1508 if (unmatched->getResultType()->isObjCObjectPointerType()) {
1509 reasonSelector = R_UnrelatedReturn;
1510 } else {
1511 reasonSelector = R_NonObjectReturn;
1512 }
1513
Joerg Sonnenberger73484542013-06-26 21:31:47 +00001514 S.Diag(impl->getLocation(), errorID) << int(familySelector) << int(reasonSelector);
1515 S.Diag(decl->getLocation(), noteID) << int(familySelector) << int(reasonSelector);
John McCallf85e1932011-06-15 23:02:42 +00001516
1517 return true;
1518}
John McCall10302c02010-10-28 02:34:38 +00001519
Fariborz Jahanian8daab972008-12-05 18:18:52 +00001520void Sema::WarnConflictingTypedMethods(ObjCMethodDecl *ImpMethodDecl,
Fariborz Jahanian21761c82011-02-21 23:49:15 +00001521 ObjCMethodDecl *MethodDecl,
Fariborz Jahanian36bc2c62011-10-10 17:53:29 +00001522 bool IsProtocolMethodDecl) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001523 if (getLangOpts().ObjCAutoRefCount &&
John McCallf85e1932011-06-15 23:02:42 +00001524 checkMethodFamilyMismatch(*this, ImpMethodDecl, MethodDecl))
1525 return;
1526
Fariborz Jahanian21761c82011-02-21 23:49:15 +00001527 CheckMethodOverrideReturn(*this, ImpMethodDecl, MethodDecl,
Fariborz Jahanian36bc2c62011-10-10 17:53:29 +00001528 IsProtocolMethodDecl, false,
Fariborz Jahanian730cfb12011-08-10 17:16:30 +00001529 true);
Mike Stump1eb44332009-09-09 15:08:12 +00001530
Chris Lattner3aff9192009-04-11 19:58:42 +00001531 for (ObjCMethodDecl::param_iterator IM = ImpMethodDecl->param_begin(),
Douglas Gregor0a4a23a2012-05-17 23:13:29 +00001532 IF = MethodDecl->param_begin(), EM = ImpMethodDecl->param_end(),
1533 EF = MethodDecl->param_end();
1534 IM != EM && IF != EF; ++IM, ++IF) {
Fariborz Jahanian730cfb12011-08-10 17:16:30 +00001535 CheckMethodOverrideParam(*this, ImpMethodDecl, MethodDecl, *IM, *IF,
Fariborz Jahanian36bc2c62011-10-10 17:53:29 +00001536 IsProtocolMethodDecl, false, true);
Fariborz Jahanian21121902011-08-08 18:03:17 +00001537 }
Fariborz Jahanian730cfb12011-08-10 17:16:30 +00001538
Fariborz Jahanian21121902011-08-08 18:03:17 +00001539 if (ImpMethodDecl->isVariadic() != MethodDecl->isVariadic()) {
Fariborz Jahanian36bc2c62011-10-10 17:53:29 +00001540 Diag(ImpMethodDecl->getLocation(),
1541 diag::warn_conflicting_variadic);
Fariborz Jahanian21121902011-08-08 18:03:17 +00001542 Diag(MethodDecl->getLocation(), diag::note_previous_declaration);
Fariborz Jahanian21121902011-08-08 18:03:17 +00001543 }
Fariborz Jahanian21121902011-08-08 18:03:17 +00001544}
1545
Fariborz Jahanian36bc2c62011-10-10 17:53:29 +00001546void Sema::CheckConflictingOverridingMethod(ObjCMethodDecl *Method,
1547 ObjCMethodDecl *Overridden,
1548 bool IsProtocolMethodDecl) {
1549
1550 CheckMethodOverrideReturn(*this, Method, Overridden,
1551 IsProtocolMethodDecl, true,
1552 true);
1553
1554 for (ObjCMethodDecl::param_iterator IM = Method->param_begin(),
Douglas Gregor0a4a23a2012-05-17 23:13:29 +00001555 IF = Overridden->param_begin(), EM = Method->param_end(),
1556 EF = Overridden->param_end();
1557 IM != EM && IF != EF; ++IM, ++IF) {
Fariborz Jahanian36bc2c62011-10-10 17:53:29 +00001558 CheckMethodOverrideParam(*this, Method, Overridden, *IM, *IF,
1559 IsProtocolMethodDecl, true, true);
1560 }
1561
1562 if (Method->isVariadic() != Overridden->isVariadic()) {
1563 Diag(Method->getLocation(),
1564 diag::warn_conflicting_overriding_variadic);
1565 Diag(Overridden->getLocation(), diag::note_previous_declaration);
1566 }
1567}
1568
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001569/// WarnExactTypedMethods - This routine issues a warning if method
1570/// implementation declaration matches exactly that of its declaration.
1571void Sema::WarnExactTypedMethods(ObjCMethodDecl *ImpMethodDecl,
1572 ObjCMethodDecl *MethodDecl,
1573 bool IsProtocolMethodDecl) {
1574 // don't issue warning when protocol method is optional because primary
1575 // class is not required to implement it and it is safe for protocol
1576 // to implement it.
1577 if (MethodDecl->getImplementationControl() == ObjCMethodDecl::Optional)
1578 return;
1579 // don't issue warning when primary class's method is
1580 // depecated/unavailable.
1581 if (MethodDecl->hasAttr<UnavailableAttr>() ||
1582 MethodDecl->hasAttr<DeprecatedAttr>())
1583 return;
1584
1585 bool match = CheckMethodOverrideReturn(*this, ImpMethodDecl, MethodDecl,
1586 IsProtocolMethodDecl, false, false);
1587 if (match)
1588 for (ObjCMethodDecl::param_iterator IM = ImpMethodDecl->param_begin(),
Douglas Gregor0a4a23a2012-05-17 23:13:29 +00001589 IF = MethodDecl->param_begin(), EM = ImpMethodDecl->param_end(),
1590 EF = MethodDecl->param_end();
1591 IM != EM && IF != EF; ++IM, ++IF) {
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001592 match = CheckMethodOverrideParam(*this, ImpMethodDecl, MethodDecl,
1593 *IM, *IF,
1594 IsProtocolMethodDecl, false, false);
1595 if (!match)
1596 break;
1597 }
1598 if (match)
1599 match = (ImpMethodDecl->isVariadic() == MethodDecl->isVariadic());
David Chisnall7ca13ef2011-08-08 17:32:19 +00001600 if (match)
1601 match = !(MethodDecl->isClassMethod() &&
1602 MethodDecl->getSelector() == GetNullarySelector("load", Context));
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001603
1604 if (match) {
1605 Diag(ImpMethodDecl->getLocation(),
1606 diag::warn_category_method_impl_match);
Ted Kremenek3306ec12012-02-27 22:55:11 +00001607 Diag(MethodDecl->getLocation(), diag::note_method_declared_at)
1608 << MethodDecl->getDeclName();
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001609 }
1610}
1611
Mike Stump390b4cc2009-05-16 07:39:55 +00001612/// FIXME: Type hierarchies in Objective-C can be deep. We could most likely
1613/// improve the efficiency of selector lookups and type checking by associating
1614/// with each protocol / interface / category the flattened instance tables. If
1615/// we used an immutable set to keep the table then it wouldn't add significant
1616/// memory cost and it would be handy for lookups.
Daniel Dunbarb20ef3e2008-08-27 05:40:03 +00001617
Steve Naroffefe7f362008-02-08 22:06:17 +00001618/// CheckProtocolMethodDefs - This routine checks unimplemented methods
Chris Lattner4d391482007-12-12 07:09:47 +00001619/// Declared in protocol, and those referenced by it.
Steve Naroffefe7f362008-02-08 22:06:17 +00001620void Sema::CheckProtocolMethodDefs(SourceLocation ImpLoc,
1621 ObjCProtocolDecl *PDecl,
Chris Lattner4d391482007-12-12 07:09:47 +00001622 bool& IncompleteImpl,
Benjamin Kramer811bfcd2012-05-27 13:28:52 +00001623 const SelectorSet &InsMap,
1624 const SelectorSet &ClsMap,
Fariborz Jahanianf2838592010-03-27 21:10:05 +00001625 ObjCContainerDecl *CDecl) {
Fariborz Jahanianbb3d14e2012-02-09 21:30:24 +00001626 ObjCCategoryDecl *C = dyn_cast<ObjCCategoryDecl>(CDecl);
1627 ObjCInterfaceDecl *IDecl = C ? C->getClassInterface()
1628 : dyn_cast<ObjCInterfaceDecl>(CDecl);
Fariborz Jahanianf2838592010-03-27 21:10:05 +00001629 assert (IDecl && "CheckProtocolMethodDefs - IDecl is null");
1630
Daniel Dunbar7ad1b1f2008-09-04 20:01:15 +00001631 ObjCInterfaceDecl *Super = IDecl->getSuperClass();
Fariborz Jahaniancd187622009-05-22 17:12:32 +00001632 ObjCInterfaceDecl *NSIDecl = 0;
John McCall260611a2012-06-20 06:18:46 +00001633 if (getLangOpts().ObjCRuntime.isNeXTFamily()) {
Mike Stump1eb44332009-09-09 15:08:12 +00001634 // check to see if class implements forwardInvocation method and objects
1635 // of this class are derived from 'NSProxy' so that to forward requests
Fariborz Jahaniancd187622009-05-22 17:12:32 +00001636 // from one object to another.
Mike Stump1eb44332009-09-09 15:08:12 +00001637 // Under such conditions, which means that every method possible is
1638 // implemented in the class, we should not issue "Method definition not
Fariborz Jahaniancd187622009-05-22 17:12:32 +00001639 // found" warnings.
1640 // FIXME: Use a general GetUnarySelector method for this.
1641 IdentifierInfo* II = &Context.Idents.get("forwardInvocation");
1642 Selector fISelector = Context.Selectors.getSelector(1, &II);
1643 if (InsMap.count(fISelector))
1644 // Is IDecl derived from 'NSProxy'? If so, no instance methods
1645 // need be implemented in the implementation.
1646 NSIDecl = IDecl->lookupInheritedClass(&Context.Idents.get("NSProxy"));
1647 }
Mike Stump1eb44332009-09-09 15:08:12 +00001648
Fariborz Jahanian32b94be2013-01-07 19:21:03 +00001649 // If this is a forward protocol declaration, get its definition.
1650 if (!PDecl->isThisDeclarationADefinition() &&
1651 PDecl->getDefinition())
1652 PDecl = PDecl->getDefinition();
1653
Daniel Dunbar7ad1b1f2008-09-04 20:01:15 +00001654 // If a method lookup fails locally we still need to look and see if
1655 // the method was implemented by a base class or an inherited
1656 // protocol. This lookup is slow, but occurs rarely in correct code
1657 // and otherwise would terminate in a warning.
1658
Chris Lattner4d391482007-12-12 07:09:47 +00001659 // check unimplemented instance methods.
Fariborz Jahaniancd187622009-05-22 17:12:32 +00001660 if (!NSIDecl)
Mike Stump1eb44332009-09-09 15:08:12 +00001661 for (ObjCProtocolDecl::instmeth_iterator I = PDecl->instmeth_begin(),
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001662 E = PDecl->instmeth_end(); I != E; ++I) {
Fariborz Jahaniancd187622009-05-22 17:12:32 +00001663 ObjCMethodDecl *method = *I;
Mike Stump1eb44332009-09-09 15:08:12 +00001664 if (method->getImplementationControl() != ObjCMethodDecl::Optional &&
Jordan Rose1e4691b2012-10-10 16:42:25 +00001665 !method->isPropertyAccessor() &&
1666 !InsMap.count(method->getSelector()) &&
1667 (!Super || !Super->lookupInstanceMethod(method->getSelector()))) {
Fariborz Jahanianbb3d14e2012-02-09 21:30:24 +00001668 // If a method is not implemented in the category implementation but
1669 // has been declared in its primary class, superclass,
1670 // or in one of their protocols, no need to issue the warning.
1671 // This is because method will be implemented in the primary class
1672 // or one of its super class implementation.
1673
Fariborz Jahaniancd187622009-05-22 17:12:32 +00001674 // Ugly, but necessary. Method declared in protcol might have
1675 // have been synthesized due to a property declared in the class which
1676 // uses the protocol.
Fariborz Jahanianbb3d14e2012-02-09 21:30:24 +00001677 if (ObjCMethodDecl *MethodInClass =
1678 IDecl->lookupInstanceMethod(method->getSelector(),
Fariborz Jahanianbf393be2012-04-05 22:14:12 +00001679 true /*shallowCategoryLookup*/))
Jordan Rose1e4691b2012-10-10 16:42:25 +00001680 if (C || MethodInClass->isPropertyAccessor())
Fariborz Jahanianbb3d14e2012-02-09 21:30:24 +00001681 continue;
1682 unsigned DIAG = diag::warn_unimplemented_protocol_method;
1683 if (Diags.getDiagnosticLevel(DIAG, ImpLoc)
1684 != DiagnosticsEngine::Ignored) {
1685 WarnUndefinedMethod(ImpLoc, method, IncompleteImpl, DIAG);
Fariborz Jahanianbb3d14e2012-02-09 21:30:24 +00001686 Diag(CDecl->getLocation(), diag::note_required_for_protocol_at)
1687 << PDecl->getDeclName();
Fariborz Jahanian8822f7c2010-03-27 19:02:17 +00001688 }
Fariborz Jahaniancd187622009-05-22 17:12:32 +00001689 }
1690 }
Chris Lattner4d391482007-12-12 07:09:47 +00001691 // check unimplemented class methods
Mike Stump1eb44332009-09-09 15:08:12 +00001692 for (ObjCProtocolDecl::classmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001693 I = PDecl->classmeth_begin(), E = PDecl->classmeth_end();
Douglas Gregor6ab35242009-04-09 21:40:53 +00001694 I != E; ++I) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001695 ObjCMethodDecl *method = *I;
Daniel Dunbar7ad1b1f2008-09-04 20:01:15 +00001696 if (method->getImplementationControl() != ObjCMethodDecl::Optional &&
1697 !ClsMap.count(method->getSelector()) &&
Fariborz Jahanian8822f7c2010-03-27 19:02:17 +00001698 (!Super || !Super->lookupClassMethod(method->getSelector()))) {
Fariborz Jahanianbb3d14e2012-02-09 21:30:24 +00001699 // See above comment for instance method lookups.
1700 if (C && IDecl->lookupClassMethod(method->getSelector(),
Fariborz Jahanianbf393be2012-04-05 22:14:12 +00001701 true /*shallowCategoryLookup*/))
Fariborz Jahanianbb3d14e2012-02-09 21:30:24 +00001702 continue;
Fariborz Jahanian52146832010-03-31 18:23:33 +00001703 unsigned DIAG = diag::warn_unimplemented_protocol_method;
David Blaikied6471f72011-09-25 23:23:43 +00001704 if (Diags.getDiagnosticLevel(DIAG, ImpLoc) !=
1705 DiagnosticsEngine::Ignored) {
Fariborz Jahanian52146832010-03-31 18:23:33 +00001706 WarnUndefinedMethod(ImpLoc, method, IncompleteImpl, DIAG);
1707 Diag(IDecl->getLocation(), diag::note_required_for_protocol_at) <<
1708 PDecl->getDeclName();
1709 }
Fariborz Jahanian8822f7c2010-03-27 19:02:17 +00001710 }
Steve Naroff58dbdeb2007-12-14 23:37:57 +00001711 }
Chris Lattner780f3292008-07-21 21:32:27 +00001712 // Check on this protocols's referenced protocols, recursively.
1713 for (ObjCProtocolDecl::protocol_iterator PI = PDecl->protocol_begin(),
1714 E = PDecl->protocol_end(); PI != E; ++PI)
Fariborz Jahanianbb3d14e2012-02-09 21:30:24 +00001715 CheckProtocolMethodDefs(ImpLoc, *PI, IncompleteImpl, InsMap, ClsMap, CDecl);
Chris Lattner4d391482007-12-12 07:09:47 +00001716}
1717
Fariborz Jahanian1e159bc2011-07-16 00:08:33 +00001718/// MatchAllMethodDeclarations - Check methods declared in interface
Fariborz Jahanianb33f3ad2009-05-01 20:07:12 +00001719/// or protocol against those declared in their implementations.
1720///
Benjamin Kramer811bfcd2012-05-27 13:28:52 +00001721void Sema::MatchAllMethodDeclarations(const SelectorSet &InsMap,
1722 const SelectorSet &ClsMap,
1723 SelectorSet &InsMapSeen,
1724 SelectorSet &ClsMapSeen,
Fariborz Jahanianb33f3ad2009-05-01 20:07:12 +00001725 ObjCImplDecl* IMPDecl,
1726 ObjCContainerDecl* CDecl,
1727 bool &IncompleteImpl,
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001728 bool ImmediateClass,
Fariborz Jahanianbb3d14e2012-02-09 21:30:24 +00001729 bool WarnCategoryMethodImpl) {
Fariborz Jahanianb33f3ad2009-05-01 20:07:12 +00001730 // Check and see if instance methods in class interface have been
1731 // implemented in the implementation class. If so, their types match.
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001732 for (ObjCInterfaceDecl::instmeth_iterator I = CDecl->instmeth_begin(),
1733 E = CDecl->instmeth_end(); I != E; ++I) {
Benjamin Kramer7dcff5b2013-10-14 15:16:10 +00001734 if (!InsMapSeen.insert((*I)->getSelector()))
1735 continue;
Jordan Rose1e4691b2012-10-10 16:42:25 +00001736 if (!(*I)->isPropertyAccessor() &&
Fariborz Jahanianb33f3ad2009-05-01 20:07:12 +00001737 !InsMap.count((*I)->getSelector())) {
1738 if (ImmediateClass)
Fariborz Jahanian52146832010-03-31 18:23:33 +00001739 WarnUndefinedMethod(IMPDecl->getLocation(), *I, IncompleteImpl,
Ted Kremenek8b43d2b2013-03-27 00:02:21 +00001740 diag::warn_undef_method_impl);
Fariborz Jahanianb33f3ad2009-05-01 20:07:12 +00001741 continue;
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001742 } else {
Mike Stump1eb44332009-09-09 15:08:12 +00001743 ObjCMethodDecl *ImpMethodDecl =
Argyrios Kyrtzidis2334f3a2011-08-30 19:43:21 +00001744 IMPDecl->getInstanceMethod((*I)->getSelector());
1745 assert(CDecl->getInstanceMethod((*I)->getSelector()) &&
1746 "Expected to find the method through lookup as well");
1747 ObjCMethodDecl *MethodDecl = *I;
Fariborz Jahanianb33f3ad2009-05-01 20:07:12 +00001748 // ImpMethodDecl may be null as in a @dynamic property.
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001749 if (ImpMethodDecl) {
Fariborz Jahanianbb3d14e2012-02-09 21:30:24 +00001750 if (!WarnCategoryMethodImpl)
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001751 WarnConflictingTypedMethods(ImpMethodDecl, MethodDecl,
1752 isa<ObjCProtocolDecl>(CDecl));
Jordan Rose1e4691b2012-10-10 16:42:25 +00001753 else if (!MethodDecl->isPropertyAccessor())
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001754 WarnExactTypedMethods(ImpMethodDecl, MethodDecl,
Fariborz Jahanianbb3d14e2012-02-09 21:30:24 +00001755 isa<ObjCProtocolDecl>(CDecl));
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001756 }
Fariborz Jahanianb33f3ad2009-05-01 20:07:12 +00001757 }
1758 }
Mike Stump1eb44332009-09-09 15:08:12 +00001759
Fariborz Jahanianb33f3ad2009-05-01 20:07:12 +00001760 // Check and see if class methods in class interface have been
1761 // implemented in the implementation class. If so, their types match.
Benjamin Kramer7dcff5b2013-10-14 15:16:10 +00001762 for (ObjCInterfaceDecl::classmeth_iterator I = CDecl->classmeth_begin(),
1763 E = CDecl->classmeth_end();
1764 I != E; ++I) {
1765 if (!ClsMapSeen.insert((*I)->getSelector()))
1766 continue;
Fariborz Jahanianb33f3ad2009-05-01 20:07:12 +00001767 if (!ClsMap.count((*I)->getSelector())) {
1768 if (ImmediateClass)
Fariborz Jahanian52146832010-03-31 18:23:33 +00001769 WarnUndefinedMethod(IMPDecl->getLocation(), *I, IncompleteImpl,
Ted Kremenek8b43d2b2013-03-27 00:02:21 +00001770 diag::warn_undef_method_impl);
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001771 } else {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001772 ObjCMethodDecl *ImpMethodDecl =
1773 IMPDecl->getClassMethod((*I)->getSelector());
Argyrios Kyrtzidis2334f3a2011-08-30 19:43:21 +00001774 assert(CDecl->getClassMethod((*I)->getSelector()) &&
1775 "Expected to find the method through lookup as well");
1776 ObjCMethodDecl *MethodDecl = *I;
Fariborz Jahanianbb3d14e2012-02-09 21:30:24 +00001777 if (!WarnCategoryMethodImpl)
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001778 WarnConflictingTypedMethods(ImpMethodDecl, MethodDecl,
1779 isa<ObjCProtocolDecl>(CDecl));
1780 else
1781 WarnExactTypedMethods(ImpMethodDecl, MethodDecl,
Fariborz Jahanianbb3d14e2012-02-09 21:30:24 +00001782 isa<ObjCProtocolDecl>(CDecl));
Fariborz Jahanianb33f3ad2009-05-01 20:07:12 +00001783 }
1784 }
Fariborz Jahanianf54e3ae2010-10-08 22:59:25 +00001785
Fariborz Jahanian41594c52013-08-14 23:58:55 +00001786 if (ObjCProtocolDecl *PD = dyn_cast<ObjCProtocolDecl> (CDecl)) {
1787 // Also, check for methods declared in protocols inherited by
1788 // this protocol.
1789 for (ObjCProtocolDecl::protocol_iterator
1790 PI = PD->protocol_begin(), E = PD->protocol_end(); PI != E; ++PI)
1791 MatchAllMethodDeclarations(InsMap, ClsMap, InsMapSeen, ClsMapSeen,
1792 IMPDecl, (*PI), IncompleteImpl, false,
1793 WarnCategoryMethodImpl);
1794 }
1795
Fariborz Jahanianb33f3ad2009-05-01 20:07:12 +00001796 if (ObjCInterfaceDecl *I = dyn_cast<ObjCInterfaceDecl> (CDecl)) {
Fariborz Jahanian6a6bb282012-10-23 23:06:22 +00001797 // when checking that methods in implementation match their declaration,
1798 // i.e. when WarnCategoryMethodImpl is false, check declarations in class
1799 // extension; as well as those in categories.
Douglas Gregord3297242013-01-16 23:00:23 +00001800 if (!WarnCategoryMethodImpl) {
1801 for (ObjCInterfaceDecl::visible_categories_iterator
1802 Cat = I->visible_categories_begin(),
1803 CatEnd = I->visible_categories_end();
1804 Cat != CatEnd; ++Cat) {
Fariborz Jahanian6a6bb282012-10-23 23:06:22 +00001805 MatchAllMethodDeclarations(InsMap, ClsMap, InsMapSeen, ClsMapSeen,
Douglas Gregord3297242013-01-16 23:00:23 +00001806 IMPDecl, *Cat, IncompleteImpl, false,
Fariborz Jahanian6a6bb282012-10-23 23:06:22 +00001807 WarnCategoryMethodImpl);
Douglas Gregord3297242013-01-16 23:00:23 +00001808 }
1809 } else {
Fariborz Jahanian6a6bb282012-10-23 23:06:22 +00001810 // Also methods in class extensions need be looked at next.
Douglas Gregord3297242013-01-16 23:00:23 +00001811 for (ObjCInterfaceDecl::visible_extensions_iterator
1812 Ext = I->visible_extensions_begin(),
1813 ExtEnd = I->visible_extensions_end();
1814 Ext != ExtEnd; ++Ext) {
Fariborz Jahanian6a6bb282012-10-23 23:06:22 +00001815 MatchAllMethodDeclarations(InsMap, ClsMap, InsMapSeen, ClsMapSeen,
Douglas Gregord3297242013-01-16 23:00:23 +00001816 IMPDecl, *Ext, IncompleteImpl, false,
Fariborz Jahanian6a6bb282012-10-23 23:06:22 +00001817 WarnCategoryMethodImpl);
Douglas Gregord3297242013-01-16 23:00:23 +00001818 }
1819 }
1820
Fariborz Jahanianb33f3ad2009-05-01 20:07:12 +00001821 // Check for any implementation of a methods declared in protocol.
Ted Kremenek53b94412010-09-01 01:21:15 +00001822 for (ObjCInterfaceDecl::all_protocol_iterator
1823 PI = I->all_referenced_protocol_begin(),
1824 E = I->all_referenced_protocol_end(); PI != E; ++PI)
Mike Stump1eb44332009-09-09 15:08:12 +00001825 MatchAllMethodDeclarations(InsMap, ClsMap, InsMapSeen, ClsMapSeen,
1826 IMPDecl,
Fariborz Jahanianbb3d14e2012-02-09 21:30:24 +00001827 (*PI), IncompleteImpl, false,
1828 WarnCategoryMethodImpl);
Fariborz Jahanianeee3ef12011-07-24 20:53:26 +00001829
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001830 // FIXME. For now, we are not checking for extact match of methods
1831 // in category implementation and its primary class's super class.
Fariborz Jahanianbb3d14e2012-02-09 21:30:24 +00001832 if (!WarnCategoryMethodImpl && I->getSuperClass())
Fariborz Jahanianb33f3ad2009-05-01 20:07:12 +00001833 MatchAllMethodDeclarations(InsMap, ClsMap, InsMapSeen, ClsMapSeen,
Mike Stump1eb44332009-09-09 15:08:12 +00001834 IMPDecl,
Fariborz Jahanianb33f3ad2009-05-01 20:07:12 +00001835 I->getSuperClass(), IncompleteImpl, false);
1836 }
1837}
1838
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001839/// CheckCategoryVsClassMethodMatches - Checks that methods implemented in
1840/// category matches with those implemented in its primary class and
1841/// warns each time an exact match is found.
1842void Sema::CheckCategoryVsClassMethodMatches(
1843 ObjCCategoryImplDecl *CatIMPDecl) {
Benjamin Kramer811bfcd2012-05-27 13:28:52 +00001844 SelectorSet InsMap, ClsMap;
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001845
1846 for (ObjCImplementationDecl::instmeth_iterator
1847 I = CatIMPDecl->instmeth_begin(),
1848 E = CatIMPDecl->instmeth_end(); I!=E; ++I)
1849 InsMap.insert((*I)->getSelector());
1850
1851 for (ObjCImplementationDecl::classmeth_iterator
1852 I = CatIMPDecl->classmeth_begin(),
1853 E = CatIMPDecl->classmeth_end(); I != E; ++I)
1854 ClsMap.insert((*I)->getSelector());
1855 if (InsMap.empty() && ClsMap.empty())
1856 return;
1857
1858 // Get category's primary class.
1859 ObjCCategoryDecl *CatDecl = CatIMPDecl->getCategoryDecl();
1860 if (!CatDecl)
1861 return;
1862 ObjCInterfaceDecl *IDecl = CatDecl->getClassInterface();
1863 if (!IDecl)
1864 return;
Benjamin Kramer811bfcd2012-05-27 13:28:52 +00001865 SelectorSet InsMapSeen, ClsMapSeen;
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001866 bool IncompleteImpl = false;
1867 MatchAllMethodDeclarations(InsMap, ClsMap, InsMapSeen, ClsMapSeen,
1868 CatIMPDecl, IDecl,
Fariborz Jahanianbb3d14e2012-02-09 21:30:24 +00001869 IncompleteImpl, false,
1870 true /*WarnCategoryMethodImpl*/);
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001871}
Fariborz Jahanianeee3ef12011-07-24 20:53:26 +00001872
Fariborz Jahanian17cb3262010-05-05 21:52:17 +00001873void Sema::ImplMethodsVsClassMethods(Scope *S, ObjCImplDecl* IMPDecl,
Mike Stump1eb44332009-09-09 15:08:12 +00001874 ObjCContainerDecl* CDecl,
Chris Lattnercddc8882009-03-01 00:56:52 +00001875 bool IncompleteImpl) {
Benjamin Kramer811bfcd2012-05-27 13:28:52 +00001876 SelectorSet InsMap;
Chris Lattner4d391482007-12-12 07:09:47 +00001877 // Check and see if instance methods in class interface have been
1878 // implemented in the implementation class.
Mike Stump1eb44332009-09-09 15:08:12 +00001879 for (ObjCImplementationDecl::instmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001880 I = IMPDecl->instmeth_begin(), E = IMPDecl->instmeth_end(); I!=E; ++I)
Chris Lattner4c525092007-12-12 17:58:05 +00001881 InsMap.insert((*I)->getSelector());
Mike Stump1eb44332009-09-09 15:08:12 +00001882
Fariborz Jahanian12bac252009-04-14 23:15:21 +00001883 // Check and see if properties declared in the interface have either 1)
1884 // an implementation or 2) there is a @synthesize/@dynamic implementation
1885 // of the property in the @implementation.
Fariborz Jahanianeb4f2c52012-01-03 19:46:00 +00001886 if (const ObjCInterfaceDecl *IDecl = dyn_cast<ObjCInterfaceDecl>(CDecl))
John McCall260611a2012-06-20 06:18:46 +00001887 if (!(LangOpts.ObjCDefaultSynthProperties &&
1888 LangOpts.ObjCRuntime.isNonFragile()) ||
1889 IDecl->isObjCRequiresPropertyDefs())
Fariborz Jahanianc775b1a2013-04-24 17:06:38 +00001890 DiagnoseUnimplementedProperties(S, IMPDecl, CDecl);
Fariborz Jahanian3ac1eda2010-01-20 01:51:55 +00001891
Benjamin Kramer811bfcd2012-05-27 13:28:52 +00001892 SelectorSet ClsMap;
Mike Stump1eb44332009-09-09 15:08:12 +00001893 for (ObjCImplementationDecl::classmeth_iterator
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001894 I = IMPDecl->classmeth_begin(),
1895 E = IMPDecl->classmeth_end(); I != E; ++I)
Chris Lattner4c525092007-12-12 17:58:05 +00001896 ClsMap.insert((*I)->getSelector());
Mike Stump1eb44332009-09-09 15:08:12 +00001897
Fariborz Jahanianb33f3ad2009-05-01 20:07:12 +00001898 // Check for type conflict of methods declared in a class/protocol and
1899 // its implementation; if any.
Benjamin Kramer811bfcd2012-05-27 13:28:52 +00001900 SelectorSet InsMapSeen, ClsMapSeen;
Mike Stump1eb44332009-09-09 15:08:12 +00001901 MatchAllMethodDeclarations(InsMap, ClsMap, InsMapSeen, ClsMapSeen,
1902 IMPDecl, CDecl,
Fariborz Jahanianb33f3ad2009-05-01 20:07:12 +00001903 IncompleteImpl, true);
Fariborz Jahanian74133072011-08-03 18:21:12 +00001904
Fariborz Jahanianfefe91e2011-07-28 23:19:50 +00001905 // check all methods implemented in category against those declared
1906 // in its primary class.
1907 if (ObjCCategoryImplDecl *CatDecl =
1908 dyn_cast<ObjCCategoryImplDecl>(IMPDecl))
1909 CheckCategoryVsClassMethodMatches(CatDecl);
Mike Stump1eb44332009-09-09 15:08:12 +00001910
Chris Lattner4d391482007-12-12 07:09:47 +00001911 // Check the protocol list for unimplemented methods in the @implementation
1912 // class.
Fariborz Jahanianb33f3ad2009-05-01 20:07:12 +00001913 // Check and see if class methods in class interface have been
1914 // implemented in the implementation class.
Mike Stump1eb44332009-09-09 15:08:12 +00001915
Chris Lattnercddc8882009-03-01 00:56:52 +00001916 if (ObjCInterfaceDecl *I = dyn_cast<ObjCInterfaceDecl> (CDecl)) {
Ted Kremenek53b94412010-09-01 01:21:15 +00001917 for (ObjCInterfaceDecl::all_protocol_iterator
1918 PI = I->all_referenced_protocol_begin(),
1919 E = I->all_referenced_protocol_end(); PI != E; ++PI)
Mike Stump1eb44332009-09-09 15:08:12 +00001920 CheckProtocolMethodDefs(IMPDecl->getLocation(), *PI, IncompleteImpl,
Chris Lattnercddc8882009-03-01 00:56:52 +00001921 InsMap, ClsMap, I);
1922 // Check class extensions (unnamed categories)
Douglas Gregord3297242013-01-16 23:00:23 +00001923 for (ObjCInterfaceDecl::visible_extensions_iterator
1924 Ext = I->visible_extensions_begin(),
1925 ExtEnd = I->visible_extensions_end();
1926 Ext != ExtEnd; ++Ext) {
1927 ImplMethodsVsClassMethods(S, IMPDecl, *Ext, IncompleteImpl);
1928 }
Chris Lattnercddc8882009-03-01 00:56:52 +00001929 } else if (ObjCCategoryDecl *C = dyn_cast<ObjCCategoryDecl>(CDecl)) {
Fariborz Jahanianb106fc62009-10-05 21:32:49 +00001930 // For extended class, unimplemented methods in its protocols will
1931 // be reported in the primary class.
Fariborz Jahanian25760612010-02-15 21:55:26 +00001932 if (!C->IsClassExtension()) {
Fariborz Jahanianb106fc62009-10-05 21:32:49 +00001933 for (ObjCCategoryDecl::protocol_iterator PI = C->protocol_begin(),
1934 E = C->protocol_end(); PI != E; ++PI)
1935 CheckProtocolMethodDefs(IMPDecl->getLocation(), *PI, IncompleteImpl,
Fariborz Jahanianf2838592010-03-27 21:10:05 +00001936 InsMap, ClsMap, CDecl);
Fariborz Jahanianc775b1a2013-04-24 17:06:38 +00001937 DiagnoseUnimplementedProperties(S, IMPDecl, CDecl);
Fariborz Jahanian3ad230e2010-01-20 19:36:21 +00001938 }
Chris Lattnercddc8882009-03-01 00:56:52 +00001939 } else
David Blaikieb219cfc2011-09-23 05:06:16 +00001940 llvm_unreachable("invalid ObjCContainerDecl type.");
Chris Lattner4d391482007-12-12 07:09:47 +00001941}
1942
Mike Stump1eb44332009-09-09 15:08:12 +00001943/// ActOnForwardClassDeclaration -
Fariborz Jahanian95ed7782011-08-27 20:50:59 +00001944Sema::DeclGroupPtrTy
Chris Lattner4d391482007-12-12 07:09:47 +00001945Sema::ActOnForwardClassDeclaration(SourceLocation AtClassLoc,
Chris Lattnerbdbde4d2009-02-16 19:25:52 +00001946 IdentifierInfo **IdentList,
Ted Kremenekc09cba62009-11-17 23:12:20 +00001947 SourceLocation *IdentLocs,
Chris Lattnerbdbde4d2009-02-16 19:25:52 +00001948 unsigned NumElts) {
Fariborz Jahanian95ed7782011-08-27 20:50:59 +00001949 SmallVector<Decl *, 8> DeclsInGroup;
Chris Lattner4d391482007-12-12 07:09:47 +00001950 for (unsigned i = 0; i != NumElts; ++i) {
1951 // Check for another declaration kind with the same name.
John McCallf36e02d2009-10-09 21:13:30 +00001952 NamedDecl *PrevDecl
Douglas Gregorc83c6872010-04-15 22:33:43 +00001953 = LookupSingleName(TUScope, IdentList[i], IdentLocs[i],
Douglas Gregorc0b39642010-04-15 23:40:53 +00001954 LookupOrdinaryName, ForRedeclaration);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001955 if (PrevDecl && !isa<ObjCInterfaceDecl>(PrevDecl)) {
Steve Naroffc7333882008-06-05 22:57:10 +00001956 // GCC apparently allows the following idiom:
1957 //
1958 // typedef NSObject < XCElementTogglerP > XCElementToggler;
1959 // @class XCElementToggler;
1960 //
Fariborz Jahaniane42670b2012-01-24 00:40:15 +00001961 // Here we have chosen to ignore the forward class declaration
1962 // with a warning. Since this is the implied behavior.
Richard Smith162e1c12011-04-15 14:24:37 +00001963 TypedefNameDecl *TDD = dyn_cast<TypedefNameDecl>(PrevDecl);
John McCallc12c5bb2010-05-15 11:32:37 +00001964 if (!TDD || !TDD->getUnderlyingType()->isObjCObjectType()) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001965 Diag(AtClassLoc, diag::err_redefinition_different_kind) << IdentList[i];
Chris Lattner5f4a6822008-11-23 23:12:31 +00001966 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
John McCallc12c5bb2010-05-15 11:32:37 +00001967 } else {
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001968 // a forward class declaration matching a typedef name of a class refers
Fariborz Jahaniane42670b2012-01-24 00:40:15 +00001969 // to the underlying class. Just ignore the forward class with a warning
1970 // as this will force the intended behavior which is to lookup the typedef
1971 // name.
1972 if (isa<ObjCObjectType>(TDD->getUnderlyingType())) {
1973 Diag(AtClassLoc, diag::warn_forward_class_redefinition) << IdentList[i];
1974 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
1975 continue;
1976 }
Fariborz Jahaniancae27c52009-05-07 21:49:26 +00001977 }
Chris Lattner4d391482007-12-12 07:09:47 +00001978 }
Douglas Gregor7723fec2011-12-15 20:29:51 +00001979
1980 // Create a declaration to describe this forward declaration.
Douglas Gregor0af55012011-12-16 03:12:41 +00001981 ObjCInterfaceDecl *PrevIDecl
1982 = dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl);
Argyrios Kyrtzidise7e8fca2013-06-18 21:26:33 +00001983
1984 IdentifierInfo *ClassName = IdentList[i];
1985 if (PrevIDecl && PrevIDecl->getIdentifier() != ClassName) {
1986 // A previous decl with a different name is because of
1987 // @compatibility_alias, for example:
1988 // \code
1989 // @class NewImage;
1990 // @compatibility_alias OldImage NewImage;
1991 // \endcode
1992 // A lookup for 'OldImage' will return the 'NewImage' decl.
1993 //
1994 // In such a case use the real declaration name, instead of the alias one,
1995 // otherwise we will break IdentifierResolver and redecls-chain invariants.
1996 // FIXME: If necessary, add a bit to indicate that this ObjCInterfaceDecl
1997 // has been aliased.
1998 ClassName = PrevIDecl->getIdentifier();
1999 }
2000
Douglas Gregor7723fec2011-12-15 20:29:51 +00002001 ObjCInterfaceDecl *IDecl
2002 = ObjCInterfaceDecl::Create(Context, CurContext, AtClassLoc,
Argyrios Kyrtzidise7e8fca2013-06-18 21:26:33 +00002003 ClassName, PrevIDecl, IdentLocs[i]);
Douglas Gregor7723fec2011-12-15 20:29:51 +00002004 IDecl->setAtEndRange(IdentLocs[i]);
Douglas Gregor7723fec2011-12-15 20:29:51 +00002005
Douglas Gregor7723fec2011-12-15 20:29:51 +00002006 PushOnScopeChains(IDecl, TUScope);
Douglas Gregor375bb142011-12-27 22:43:10 +00002007 CheckObjCDeclScope(IDecl);
2008 DeclsInGroup.push_back(IDecl);
Chris Lattner4d391482007-12-12 07:09:47 +00002009 }
Rafael Espindola4549d7f2013-07-09 12:05:01 +00002010
2011 return BuildDeclaratorGroup(DeclsInGroup, false);
Chris Lattner4d391482007-12-12 07:09:47 +00002012}
2013
John McCall0f4c4c42011-06-16 01:15:19 +00002014static bool tryMatchRecordTypes(ASTContext &Context,
2015 Sema::MethodMatchStrategy strategy,
2016 const Type *left, const Type *right);
2017
John McCallf85e1932011-06-15 23:02:42 +00002018static bool matchTypes(ASTContext &Context, Sema::MethodMatchStrategy strategy,
2019 QualType leftQT, QualType rightQT) {
2020 const Type *left =
2021 Context.getCanonicalType(leftQT).getUnqualifiedType().getTypePtr();
2022 const Type *right =
2023 Context.getCanonicalType(rightQT).getUnqualifiedType().getTypePtr();
2024
2025 if (left == right) return true;
2026
2027 // If we're doing a strict match, the types have to match exactly.
2028 if (strategy == Sema::MMS_strict) return false;
2029
2030 if (left->isIncompleteType() || right->isIncompleteType()) return false;
2031
2032 // Otherwise, use this absurdly complicated algorithm to try to
2033 // validate the basic, low-level compatibility of the two types.
2034
2035 // As a minimum, require the sizes and alignments to match.
2036 if (Context.getTypeInfo(left) != Context.getTypeInfo(right))
2037 return false;
2038
2039 // Consider all the kinds of non-dependent canonical types:
2040 // - functions and arrays aren't possible as return and parameter types
2041
2042 // - vector types of equal size can be arbitrarily mixed
2043 if (isa<VectorType>(left)) return isa<VectorType>(right);
2044 if (isa<VectorType>(right)) return false;
2045
2046 // - references should only match references of identical type
John McCall0f4c4c42011-06-16 01:15:19 +00002047 // - structs, unions, and Objective-C objects must match more-or-less
2048 // exactly
John McCallf85e1932011-06-15 23:02:42 +00002049 // - everything else should be a scalar
2050 if (!left->isScalarType() || !right->isScalarType())
John McCall0f4c4c42011-06-16 01:15:19 +00002051 return tryMatchRecordTypes(Context, strategy, left, right);
John McCallf85e1932011-06-15 23:02:42 +00002052
John McCall1d9b3b22011-09-09 05:25:32 +00002053 // Make scalars agree in kind, except count bools as chars, and group
2054 // all non-member pointers together.
John McCallf85e1932011-06-15 23:02:42 +00002055 Type::ScalarTypeKind leftSK = left->getScalarTypeKind();
2056 Type::ScalarTypeKind rightSK = right->getScalarTypeKind();
2057 if (leftSK == Type::STK_Bool) leftSK = Type::STK_Integral;
2058 if (rightSK == Type::STK_Bool) rightSK = Type::STK_Integral;
John McCall1d9b3b22011-09-09 05:25:32 +00002059 if (leftSK == Type::STK_CPointer || leftSK == Type::STK_BlockPointer)
2060 leftSK = Type::STK_ObjCObjectPointer;
2061 if (rightSK == Type::STK_CPointer || rightSK == Type::STK_BlockPointer)
2062 rightSK = Type::STK_ObjCObjectPointer;
John McCallf85e1932011-06-15 23:02:42 +00002063
2064 // Note that data member pointers and function member pointers don't
2065 // intermix because of the size differences.
2066
2067 return (leftSK == rightSK);
2068}
Chris Lattner4d391482007-12-12 07:09:47 +00002069
John McCall0f4c4c42011-06-16 01:15:19 +00002070static bool tryMatchRecordTypes(ASTContext &Context,
2071 Sema::MethodMatchStrategy strategy,
2072 const Type *lt, const Type *rt) {
2073 assert(lt && rt && lt != rt);
2074
2075 if (!isa<RecordType>(lt) || !isa<RecordType>(rt)) return false;
2076 RecordDecl *left = cast<RecordType>(lt)->getDecl();
2077 RecordDecl *right = cast<RecordType>(rt)->getDecl();
2078
2079 // Require union-hood to match.
2080 if (left->isUnion() != right->isUnion()) return false;
2081
2082 // Require an exact match if either is non-POD.
2083 if ((isa<CXXRecordDecl>(left) && !cast<CXXRecordDecl>(left)->isPOD()) ||
2084 (isa<CXXRecordDecl>(right) && !cast<CXXRecordDecl>(right)->isPOD()))
2085 return false;
2086
2087 // Require size and alignment to match.
2088 if (Context.getTypeInfo(lt) != Context.getTypeInfo(rt)) return false;
2089
2090 // Require fields to match.
2091 RecordDecl::field_iterator li = left->field_begin(), le = left->field_end();
2092 RecordDecl::field_iterator ri = right->field_begin(), re = right->field_end();
2093 for (; li != le && ri != re; ++li, ++ri) {
2094 if (!matchTypes(Context, strategy, li->getType(), ri->getType()))
2095 return false;
2096 }
2097 return (li == le && ri == re);
2098}
2099
Chris Lattner4d391482007-12-12 07:09:47 +00002100/// MatchTwoMethodDeclarations - Checks that two methods have matching type and
2101/// returns true, or false, accordingly.
2102/// TODO: Handle protocol list; such as id<p1,p2> in type comparisons
John McCallf85e1932011-06-15 23:02:42 +00002103bool Sema::MatchTwoMethodDeclarations(const ObjCMethodDecl *left,
2104 const ObjCMethodDecl *right,
2105 MethodMatchStrategy strategy) {
2106 if (!matchTypes(Context, strategy,
2107 left->getResultType(), right->getResultType()))
2108 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00002109
Douglas Gregor7666b032013-02-07 19:13:24 +00002110 // If either is hidden, it is not considered to match.
2111 if (left->isHidden() || right->isHidden())
2112 return false;
2113
David Blaikie4e4d0842012-03-11 07:00:24 +00002114 if (getLangOpts().ObjCAutoRefCount &&
John McCallf85e1932011-06-15 23:02:42 +00002115 (left->hasAttr<NSReturnsRetainedAttr>()
2116 != right->hasAttr<NSReturnsRetainedAttr>() ||
2117 left->hasAttr<NSConsumesSelfAttr>()
2118 != right->hasAttr<NSConsumesSelfAttr>()))
2119 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00002120
Argyrios Kyrtzidis491306a2011-10-03 06:37:04 +00002121 ObjCMethodDecl::param_const_iterator
Douglas Gregor0a4a23a2012-05-17 23:13:29 +00002122 li = left->param_begin(), le = left->param_end(), ri = right->param_begin(),
2123 re = right->param_end();
Mike Stump1eb44332009-09-09 15:08:12 +00002124
Douglas Gregor0a4a23a2012-05-17 23:13:29 +00002125 for (; li != le && ri != re; ++li, ++ri) {
John McCallf85e1932011-06-15 23:02:42 +00002126 assert(ri != right->param_end() && "Param mismatch");
Argyrios Kyrtzidis491306a2011-10-03 06:37:04 +00002127 const ParmVarDecl *lparm = *li, *rparm = *ri;
John McCallf85e1932011-06-15 23:02:42 +00002128
2129 if (!matchTypes(Context, strategy, lparm->getType(), rparm->getType()))
2130 return false;
2131
David Blaikie4e4d0842012-03-11 07:00:24 +00002132 if (getLangOpts().ObjCAutoRefCount &&
John McCallf85e1932011-06-15 23:02:42 +00002133 lparm->hasAttr<NSConsumedAttr>() != rparm->hasAttr<NSConsumedAttr>())
2134 return false;
Chris Lattner4d391482007-12-12 07:09:47 +00002135 }
2136 return true;
2137}
2138
Douglas Gregorff310c72012-05-01 23:37:00 +00002139void Sema::addMethodToGlobalList(ObjCMethodList *List, ObjCMethodDecl *Method) {
Argyrios Kyrtzidis2e3d8c02013-04-17 00:08:58 +00002140 // Record at the head of the list whether there were 0, 1, or >= 2 methods
2141 // inside categories.
Argyrios Kyrtzidisab3d5092013-04-27 00:10:12 +00002142 if (ObjCCategoryDecl *
2143 CD = dyn_cast<ObjCCategoryDecl>(Method->getDeclContext()))
2144 if (!CD->IsClassExtension() && List->getBits() < 2)
2145 List->setBits(List->getBits()+1);
Argyrios Kyrtzidis2e3d8c02013-04-17 00:08:58 +00002146
Douglas Gregor44fae522012-01-25 00:19:56 +00002147 // If the list is empty, make it a singleton list.
2148 if (List->Method == 0) {
2149 List->Method = Method;
Argyrios Kyrtzidis2e3d8c02013-04-17 00:08:58 +00002150 List->setNext(0);
Douglas Gregorff310c72012-05-01 23:37:00 +00002151 return;
Douglas Gregor44fae522012-01-25 00:19:56 +00002152 }
2153
2154 // We've seen a method with this name, see if we have already seen this type
2155 // signature.
2156 ObjCMethodList *Previous = List;
Argyrios Kyrtzidis2e3d8c02013-04-17 00:08:58 +00002157 for (; List; Previous = List, List = List->getNext()) {
Douglas Gregorfc46be92013-06-21 00:20:25 +00002158 // If we are building a module, keep all of the methods.
2159 if (getLangOpts().Modules && !getLangOpts().CurrentModule.empty())
2160 continue;
2161
Douglas Gregor5ac4b692012-01-25 00:49:42 +00002162 if (!MatchTwoMethodDeclarations(Method, List->Method))
Douglas Gregor44fae522012-01-25 00:19:56 +00002163 continue;
2164
2165 ObjCMethodDecl *PrevObjCMethod = List->Method;
2166
2167 // Propagate the 'defined' bit.
2168 if (Method->isDefined())
2169 PrevObjCMethod->setDefined(true);
2170
2171 // If a method is deprecated, push it in the global pool.
2172 // This is used for better diagnostics.
2173 if (Method->isDeprecated()) {
2174 if (!PrevObjCMethod->isDeprecated())
2175 List->Method = Method;
2176 }
2177 // If new method is unavailable, push it into global pool
2178 // unless previous one is deprecated.
2179 if (Method->isUnavailable()) {
2180 if (PrevObjCMethod->getAvailability() < AR_Deprecated)
2181 List->Method = Method;
2182 }
2183
Douglas Gregorff310c72012-05-01 23:37:00 +00002184 return;
Douglas Gregor44fae522012-01-25 00:19:56 +00002185 }
2186
2187 // We have a new signature for an existing method - add it.
2188 // This is extremely rare. Only 1% of Cocoa selectors are "overloaded".
Douglas Gregor5ac4b692012-01-25 00:49:42 +00002189 ObjCMethodList *Mem = BumpAlloc.Allocate<ObjCMethodList>();
Argyrios Kyrtzidis2e3d8c02013-04-17 00:08:58 +00002190 Previous->setNext(new (Mem) ObjCMethodList(Method, 0));
Douglas Gregor44fae522012-01-25 00:19:56 +00002191}
2192
Sebastian Redldb9d2142010-08-02 23:18:59 +00002193/// \brief Read the contents of the method pool for a given selector from
2194/// external storage.
Douglas Gregor5ac4b692012-01-25 00:49:42 +00002195void Sema::ReadMethodPool(Selector Sel) {
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002196 assert(ExternalSource && "We need an external AST source");
Douglas Gregor5ac4b692012-01-25 00:49:42 +00002197 ExternalSource->ReadMethodPool(Sel);
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002198}
2199
Douglas Gregorff310c72012-05-01 23:37:00 +00002200void Sema::AddMethodToGlobalPool(ObjCMethodDecl *Method, bool impl,
Sebastian Redldb9d2142010-08-02 23:18:59 +00002201 bool instance) {
Argyrios Kyrtzidis9a0b6b42012-03-12 18:34:26 +00002202 // Ignore methods of invalid containers.
2203 if (cast<Decl>(Method->getDeclContext())->isInvalidDecl())
Douglas Gregorff310c72012-05-01 23:37:00 +00002204 return;
Argyrios Kyrtzidis9a0b6b42012-03-12 18:34:26 +00002205
Douglas Gregor0d266d62012-01-25 00:59:09 +00002206 if (ExternalSource)
2207 ReadMethodPool(Method->getSelector());
2208
Sebastian Redldb9d2142010-08-02 23:18:59 +00002209 GlobalMethodPool::iterator Pos = MethodPool.find(Method->getSelector());
Douglas Gregor0d266d62012-01-25 00:59:09 +00002210 if (Pos == MethodPool.end())
2211 Pos = MethodPool.insert(std::make_pair(Method->getSelector(),
2212 GlobalMethods())).first;
Douglas Gregor44fae522012-01-25 00:19:56 +00002213
Fariborz Jahanian3fe10412010-07-22 18:24:20 +00002214 Method->setDefined(impl);
Douglas Gregor44fae522012-01-25 00:19:56 +00002215
Sebastian Redldb9d2142010-08-02 23:18:59 +00002216 ObjCMethodList &Entry = instance ? Pos->second.first : Pos->second.second;
Douglas Gregorff310c72012-05-01 23:37:00 +00002217 addMethodToGlobalList(&Entry, Method);
Chris Lattner4d391482007-12-12 07:09:47 +00002218}
2219
John McCallf85e1932011-06-15 23:02:42 +00002220/// Determines if this is an "acceptable" loose mismatch in the global
2221/// method pool. This exists mostly as a hack to get around certain
2222/// global mismatches which we can't afford to make warnings / errors.
2223/// Really, what we want is a way to take a method out of the global
2224/// method pool.
2225static bool isAcceptableMethodMismatch(ObjCMethodDecl *chosen,
2226 ObjCMethodDecl *other) {
2227 if (!chosen->isInstanceMethod())
2228 return false;
2229
2230 Selector sel = chosen->getSelector();
2231 if (!sel.isUnarySelector() || sel.getNameForSlot(0) != "length")
2232 return false;
2233
2234 // Don't complain about mismatches for -length if the method we
2235 // chose has an integral result type.
2236 return (chosen->getResultType()->isIntegerType());
2237}
2238
Sebastian Redldb9d2142010-08-02 23:18:59 +00002239ObjCMethodDecl *Sema::LookupMethodInGlobalPool(Selector Sel, SourceRange R,
Fariborz Jahanian6b308f62010-08-09 23:27:58 +00002240 bool receiverIdOrClass,
Sebastian Redldb9d2142010-08-02 23:18:59 +00002241 bool warn, bool instance) {
Douglas Gregor0d266d62012-01-25 00:59:09 +00002242 if (ExternalSource)
2243 ReadMethodPool(Sel);
2244
Sebastian Redldb9d2142010-08-02 23:18:59 +00002245 GlobalMethodPool::iterator Pos = MethodPool.find(Sel);
Douglas Gregor0d266d62012-01-25 00:59:09 +00002246 if (Pos == MethodPool.end())
2247 return 0;
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002248
Douglas Gregorf0e00042013-01-16 18:47:38 +00002249 // Gather the non-hidden methods.
Sebastian Redldb9d2142010-08-02 23:18:59 +00002250 ObjCMethodList &MethList = instance ? Pos->second.first : Pos->second.second;
Robert Wilhelme7205c02013-08-10 12:33:24 +00002251 SmallVector<ObjCMethodDecl *, 4> Methods;
Argyrios Kyrtzidis2e3d8c02013-04-17 00:08:58 +00002252 for (ObjCMethodList *M = &MethList; M; M = M->getNext()) {
Douglas Gregorf0e00042013-01-16 18:47:38 +00002253 if (M->Method && !M->Method->isHidden()) {
2254 // If we're not supposed to warn about mismatches, we're done.
2255 if (!warn)
2256 return M->Method;
Mike Stump1eb44332009-09-09 15:08:12 +00002257
Douglas Gregorf0e00042013-01-16 18:47:38 +00002258 Methods.push_back(M->Method);
Sebastian Redldb9d2142010-08-02 23:18:59 +00002259 }
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002260 }
Douglas Gregorf0e00042013-01-16 18:47:38 +00002261
2262 // If there aren't any visible methods, we're done.
2263 // FIXME: Recover if there are any known-but-hidden methods?
2264 if (Methods.empty())
2265 return 0;
2266
2267 if (Methods.size() == 1)
2268 return Methods[0];
2269
2270 // We found multiple methods, so we may have to complain.
2271 bool issueDiagnostic = false, issueError = false;
2272
2273 // We support a warning which complains about *any* difference in
2274 // method signature.
2275 bool strictSelectorMatch =
2276 (receiverIdOrClass && warn &&
2277 (Diags.getDiagnosticLevel(diag::warn_strict_multiple_method_decl,
2278 R.getBegin())
2279 != DiagnosticsEngine::Ignored));
2280 if (strictSelectorMatch) {
2281 for (unsigned I = 1, N = Methods.size(); I != N; ++I) {
2282 if (!MatchTwoMethodDeclarations(Methods[0], Methods[I], MMS_strict)) {
2283 issueDiagnostic = true;
2284 break;
2285 }
2286 }
2287 }
2288
2289 // If we didn't see any strict differences, we won't see any loose
2290 // differences. In ARC, however, we also need to check for loose
2291 // mismatches, because most of them are errors.
2292 if (!strictSelectorMatch ||
2293 (issueDiagnostic && getLangOpts().ObjCAutoRefCount))
2294 for (unsigned I = 1, N = Methods.size(); I != N; ++I) {
2295 // This checks if the methods differ in type mismatch.
2296 if (!MatchTwoMethodDeclarations(Methods[0], Methods[I], MMS_loose) &&
2297 !isAcceptableMethodMismatch(Methods[0], Methods[I])) {
2298 issueDiagnostic = true;
2299 if (getLangOpts().ObjCAutoRefCount)
2300 issueError = true;
2301 break;
2302 }
2303 }
2304
2305 if (issueDiagnostic) {
2306 if (issueError)
2307 Diag(R.getBegin(), diag::err_arc_multiple_method_decl) << Sel << R;
2308 else if (strictSelectorMatch)
2309 Diag(R.getBegin(), diag::warn_strict_multiple_method_decl) << Sel << R;
2310 else
2311 Diag(R.getBegin(), diag::warn_multiple_method_decl) << Sel << R;
2312
2313 Diag(Methods[0]->getLocStart(),
2314 issueError ? diag::note_possibility : diag::note_using)
2315 << Methods[0]->getSourceRange();
2316 for (unsigned I = 1, N = Methods.size(); I != N; ++I) {
2317 Diag(Methods[I]->getLocStart(), diag::note_also_found)
2318 << Methods[I]->getSourceRange();
2319 }
2320 }
2321 return Methods[0];
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002322}
2323
Fariborz Jahanian3fe10412010-07-22 18:24:20 +00002324ObjCMethodDecl *Sema::LookupImplementedMethodInGlobalPool(Selector Sel) {
Sebastian Redldb9d2142010-08-02 23:18:59 +00002325 GlobalMethodPool::iterator Pos = MethodPool.find(Sel);
2326 if (Pos == MethodPool.end())
2327 return 0;
2328
2329 GlobalMethods &Methods = Pos->second;
2330
2331 if (Methods.first.Method && Methods.first.Method->isDefined())
2332 return Methods.first.Method;
2333 if (Methods.second.Method && Methods.second.Method->isDefined())
2334 return Methods.second.Method;
Fariborz Jahanian3fe10412010-07-22 18:24:20 +00002335 return 0;
2336}
2337
Fariborz Jahanianf98c6882013-05-30 21:48:58 +00002338static void
Fariborz Jahanian9464a082013-06-05 18:46:14 +00002339HelperSelectorsForTypoCorrection(
2340 SmallVectorImpl<const ObjCMethodDecl *> &BestMethod,
2341 StringRef Typo, const ObjCMethodDecl * Method) {
2342 const unsigned MaxEditDistance = 1;
2343 unsigned BestEditDistance = MaxEditDistance + 1;
Richard Trieu4fe96442013-06-06 02:22:29 +00002344 std::string MethodName = Method->getSelector().getAsString();
Fariborz Jahanian9464a082013-06-05 18:46:14 +00002345
2346 unsigned MinPossibleEditDistance = abs((int)MethodName.size() - (int)Typo.size());
2347 if (MinPossibleEditDistance > 0 &&
2348 Typo.size() / MinPossibleEditDistance < 1)
2349 return;
2350 unsigned EditDistance = Typo.edit_distance(MethodName, true, MaxEditDistance);
2351 if (EditDistance > MaxEditDistance)
2352 return;
2353 if (EditDistance == BestEditDistance)
2354 BestMethod.push_back(Method);
2355 else if (EditDistance < BestEditDistance) {
2356 BestMethod.clear();
2357 BestMethod.push_back(Method);
Fariborz Jahanian9464a082013-06-05 18:46:14 +00002358 }
2359}
2360
Fariborz Jahaniand395e342013-06-17 17:10:54 +00002361static bool HelperIsMethodInObjCType(Sema &S, Selector Sel,
2362 QualType ObjectType) {
2363 if (ObjectType.isNull())
2364 return true;
2365 if (S.LookupMethodInObjectType(Sel, ObjectType, true/*Instance method*/))
2366 return true;
2367 return S.LookupMethodInObjectType(Sel, ObjectType, false/*Class method*/) != 0;
2368}
2369
Fariborz Jahanian9464a082013-06-05 18:46:14 +00002370const ObjCMethodDecl *
Fariborz Jahaniand395e342013-06-17 17:10:54 +00002371Sema::SelectorsForTypoCorrection(Selector Sel,
2372 QualType ObjectType) {
Fariborz Jahanian9464a082013-06-05 18:46:14 +00002373 unsigned NumArgs = Sel.getNumArgs();
2374 SmallVector<const ObjCMethodDecl *, 8> Methods;
Fariborz Jahanian419245e2013-06-18 15:31:36 +00002375 bool ObjectIsId = true, ObjectIsClass = true;
2376 if (ObjectType.isNull())
2377 ObjectIsId = ObjectIsClass = false;
2378 else if (!ObjectType->isObjCObjectPointerType())
2379 return 0;
2380 else if (const ObjCObjectPointerType *ObjCPtr =
2381 ObjectType->getAsObjCInterfacePointerType()) {
2382 ObjectType = QualType(ObjCPtr->getInterfaceType(), 0);
2383 ObjectIsId = ObjectIsClass = false;
2384 }
2385 else if (ObjectType->isObjCIdType() || ObjectType->isObjCQualifiedIdType())
2386 ObjectIsClass = false;
2387 else if (ObjectType->isObjCClassType() || ObjectType->isObjCQualifiedClassType())
2388 ObjectIsId = false;
2389 else
2390 return 0;
Fariborz Jahanian9464a082013-06-05 18:46:14 +00002391
2392 for (GlobalMethodPool::iterator b = MethodPool.begin(),
2393 e = MethodPool.end(); b != e; b++) {
2394 // instance methods
2395 for (ObjCMethodList *M = &b->second.first; M; M=M->getNext())
2396 if (M->Method &&
Fariborz Jahaniancd9c9b52013-06-18 17:10:58 +00002397 (M->Method->getSelector().getNumArgs() == NumArgs) &&
2398 (M->Method->getSelector() != Sel)) {
Fariborz Jahanian419245e2013-06-18 15:31:36 +00002399 if (ObjectIsId)
2400 Methods.push_back(M->Method);
2401 else if (!ObjectIsClass &&
2402 HelperIsMethodInObjCType(*this, M->Method->getSelector(), ObjectType))
2403 Methods.push_back(M->Method);
2404 }
Fariborz Jahanian9464a082013-06-05 18:46:14 +00002405 // class methods
2406 for (ObjCMethodList *M = &b->second.second; M; M=M->getNext())
2407 if (M->Method &&
Fariborz Jahaniancd9c9b52013-06-18 17:10:58 +00002408 (M->Method->getSelector().getNumArgs() == NumArgs) &&
2409 (M->Method->getSelector() != Sel)) {
Fariborz Jahanian419245e2013-06-18 15:31:36 +00002410 if (ObjectIsClass)
2411 Methods.push_back(M->Method);
2412 else if (!ObjectIsId &&
2413 HelperIsMethodInObjCType(*this, M->Method->getSelector(), ObjectType))
2414 Methods.push_back(M->Method);
2415 }
Fariborz Jahanian9464a082013-06-05 18:46:14 +00002416 }
2417
2418 SmallVector<const ObjCMethodDecl *, 8> SelectedMethods;
2419 for (unsigned i = 0, e = Methods.size(); i < e; i++) {
2420 HelperSelectorsForTypoCorrection(SelectedMethods,
2421 Sel.getAsString(), Methods[i]);
2422 }
2423 return (SelectedMethods.size() == 1) ? SelectedMethods[0] : NULL;
2424}
2425
2426static void
Fariborz Jahanianf98c6882013-05-30 21:48:58 +00002427HelperToDiagnoseMismatchedMethodsInGlobalPool(Sema &S,
2428 ObjCMethodList &MethList) {
2429 ObjCMethodList *M = &MethList;
2430 ObjCMethodDecl *TargetMethod = M->Method;
2431 while (TargetMethod &&
2432 isa<ObjCImplDecl>(TargetMethod->getDeclContext())) {
2433 M = M->getNext();
2434 TargetMethod = M ? M->Method : 0;
2435 }
2436 if (!TargetMethod)
2437 return;
2438 bool FirstTime = true;
2439 for (M = M->getNext(); M; M=M->getNext()) {
2440 ObjCMethodDecl *MatchingMethodDecl = M->Method;
2441 if (isa<ObjCImplDecl>(MatchingMethodDecl->getDeclContext()))
2442 continue;
2443 if (!S.MatchTwoMethodDeclarations(TargetMethod,
2444 MatchingMethodDecl, Sema::MMS_loose)) {
2445 if (FirstTime) {
2446 FirstTime = false;
2447 S.Diag(TargetMethod->getLocation(), diag::warning_multiple_selectors)
2448 << TargetMethod->getSelector();
2449 }
2450 S.Diag(MatchingMethodDecl->getLocation(), diag::note_also_found);
2451 }
2452 }
2453}
2454
2455void Sema::DiagnoseMismatchedMethodsInGlobalPool() {
2456 unsigned DIAG = diag::warning_multiple_selectors;
2457 if (Diags.getDiagnosticLevel(DIAG, SourceLocation())
2458 == DiagnosticsEngine::Ignored)
2459 return;
2460 for (GlobalMethodPool::iterator b = MethodPool.begin(),
2461 e = MethodPool.end(); b != e; b++) {
2462 // first, instance methods
2463 ObjCMethodList &InstMethList = b->second.first;
2464 HelperToDiagnoseMismatchedMethodsInGlobalPool(*this, InstMethList);
Fariborz Jahanian639aa522013-05-30 21:52:50 +00002465 // second, class methods
Fariborz Jahanianf98c6882013-05-30 21:48:58 +00002466 ObjCMethodList &ClsMethList = b->second.second;
2467 HelperToDiagnoseMismatchedMethodsInGlobalPool(*this, ClsMethList);
2468 }
2469}
2470
2471/// DiagnoseDuplicateIvars -
Fariborz Jahanianf914b972010-02-23 23:41:11 +00002472/// Check for duplicate ivars in the entire class at the start of
James Dennett1dfbd922012-06-14 21:40:34 +00002473/// \@implementation. This becomes necesssary because class extension can
Fariborz Jahanianf914b972010-02-23 23:41:11 +00002474/// add ivars to a class in random order which will not be known until
James Dennett1dfbd922012-06-14 21:40:34 +00002475/// class's \@implementation is seen.
Fariborz Jahanianf914b972010-02-23 23:41:11 +00002476void Sema::DiagnoseDuplicateIvars(ObjCInterfaceDecl *ID,
2477 ObjCInterfaceDecl *SID) {
2478 for (ObjCInterfaceDecl::ivar_iterator IVI = ID->ivar_begin(),
2479 IVE = ID->ivar_end(); IVI != IVE; ++IVI) {
David Blaikie581deb32012-06-06 20:45:41 +00002480 ObjCIvarDecl* Ivar = *IVI;
Fariborz Jahanianf914b972010-02-23 23:41:11 +00002481 if (Ivar->isInvalidDecl())
2482 continue;
2483 if (IdentifierInfo *II = Ivar->getIdentifier()) {
2484 ObjCIvarDecl* prevIvar = SID->lookupInstanceVariable(II);
2485 if (prevIvar) {
2486 Diag(Ivar->getLocation(), diag::err_duplicate_member) << II;
2487 Diag(prevIvar->getLocation(), diag::note_previous_declaration);
2488 Ivar->setInvalidDecl();
2489 }
2490 }
2491 }
2492}
2493
Erik Verbruggend64251f2011-12-06 09:25:23 +00002494Sema::ObjCContainerKind Sema::getObjCContainerKind() const {
2495 switch (CurContext->getDeclKind()) {
2496 case Decl::ObjCInterface:
2497 return Sema::OCK_Interface;
2498 case Decl::ObjCProtocol:
2499 return Sema::OCK_Protocol;
2500 case Decl::ObjCCategory:
2501 if (dyn_cast<ObjCCategoryDecl>(CurContext)->IsClassExtension())
2502 return Sema::OCK_ClassExtension;
2503 else
2504 return Sema::OCK_Category;
2505 case Decl::ObjCImplementation:
2506 return Sema::OCK_Implementation;
2507 case Decl::ObjCCategoryImpl:
2508 return Sema::OCK_CategoryImplementation;
2509
2510 default:
2511 return Sema::OCK_None;
2512 }
2513}
2514
Fariborz Jahaniana3c62462013-07-16 15:33:19 +00002515// Note: For class/category implementations, allMethods is always null.
Robert Wilhelm0111e4d2013-07-17 21:14:35 +00002516Decl *Sema::ActOnAtEnd(Scope *S, SourceRange AtEnd, ArrayRef<Decl *> allMethods,
Fariborz Jahanian80f8aca2013-07-17 00:05:08 +00002517 ArrayRef<DeclGroupPtrTy> allTUVars) {
Erik Verbruggend64251f2011-12-06 09:25:23 +00002518 if (getObjCContainerKind() == Sema::OCK_None)
2519 return 0;
2520
2521 assert(AtEnd.isValid() && "Invalid location for '@end'");
2522
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00002523 ObjCContainerDecl *OCD = dyn_cast<ObjCContainerDecl>(CurContext);
2524 Decl *ClassDecl = cast<Decl>(OCD);
Fariborz Jahanian63e963c2009-11-16 18:57:01 +00002525
Mike Stump1eb44332009-09-09 15:08:12 +00002526 bool isInterfaceDeclKind =
Chris Lattnerf8d17a52008-03-16 21:17:37 +00002527 isa<ObjCInterfaceDecl>(ClassDecl) || isa<ObjCCategoryDecl>(ClassDecl)
2528 || isa<ObjCProtocolDecl>(ClassDecl);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002529 bool checkIdenticalMethods = isa<ObjCImplementationDecl>(ClassDecl);
Steve Naroff09c47192009-01-09 15:36:25 +00002530
Steve Naroff0701bbb2009-01-08 17:28:14 +00002531 // FIXME: Remove these and use the ObjCContainerDecl/DeclContext.
2532 llvm::DenseMap<Selector, const ObjCMethodDecl*> InsMap;
2533 llvm::DenseMap<Selector, const ObjCMethodDecl*> ClsMap;
2534
Fariborz Jahaniana3c62462013-07-16 15:33:19 +00002535 for (unsigned i = 0, e = allMethods.size(); i != e; i++ ) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002536 ObjCMethodDecl *Method =
John McCalld226f652010-08-21 09:40:31 +00002537 cast_or_null<ObjCMethodDecl>(allMethods[i]);
Chris Lattner4d391482007-12-12 07:09:47 +00002538
2539 if (!Method) continue; // Already issued a diagnostic.
Douglas Gregorf8d49f62009-01-09 17:18:27 +00002540 if (Method->isInstanceMethod()) {
Chris Lattner4d391482007-12-12 07:09:47 +00002541 /// Check for instance method of the same name with incompatible types
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002542 const ObjCMethodDecl *&PrevMethod = InsMap[Method->getSelector()];
Mike Stump1eb44332009-09-09 15:08:12 +00002543 bool match = PrevMethod ? MatchTwoMethodDeclarations(Method, PrevMethod)
Chris Lattner4d391482007-12-12 07:09:47 +00002544 : false;
Mike Stump1eb44332009-09-09 15:08:12 +00002545 if ((isInterfaceDeclKind && PrevMethod && !match)
Eli Friedman82b4e762008-12-16 20:15:50 +00002546 || (checkIdenticalMethods && match)) {
Chris Lattner5f4a6822008-11-23 23:12:31 +00002547 Diag(Method->getLocation(), diag::err_duplicate_method_decl)
Chris Lattner077bf5e2008-11-24 03:33:13 +00002548 << Method->getDeclName();
Chris Lattner5f4a6822008-11-23 23:12:31 +00002549 Diag(PrevMethod->getLocation(), diag::note_previous_declaration);
Douglas Gregorbdb2d502010-12-21 17:34:17 +00002550 Method->setInvalidDecl();
Chris Lattner4d391482007-12-12 07:09:47 +00002551 } else {
Fariborz Jahanian72096462011-12-13 19:40:34 +00002552 if (PrevMethod) {
Argyrios Kyrtzidis3a919e72011-10-14 08:02:31 +00002553 Method->setAsRedeclaration(PrevMethod);
Fariborz Jahanian72096462011-12-13 19:40:34 +00002554 if (!Context.getSourceManager().isInSystemHeader(
2555 Method->getLocation()))
2556 Diag(Method->getLocation(), diag::warn_duplicate_method_decl)
2557 << Method->getDeclName();
2558 Diag(PrevMethod->getLocation(), diag::note_previous_declaration);
2559 }
Chris Lattner4d391482007-12-12 07:09:47 +00002560 InsMap[Method->getSelector()] = Method;
2561 /// The following allows us to typecheck messages to "id".
Douglas Gregorff310c72012-05-01 23:37:00 +00002562 AddInstanceMethodToGlobalPool(Method);
Chris Lattner4d391482007-12-12 07:09:47 +00002563 }
Mike Stumpac5fc7c2009-08-04 21:02:39 +00002564 } else {
Chris Lattner4d391482007-12-12 07:09:47 +00002565 /// Check for class method of the same name with incompatible types
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002566 const ObjCMethodDecl *&PrevMethod = ClsMap[Method->getSelector()];
Mike Stump1eb44332009-09-09 15:08:12 +00002567 bool match = PrevMethod ? MatchTwoMethodDeclarations(Method, PrevMethod)
Chris Lattner4d391482007-12-12 07:09:47 +00002568 : false;
Mike Stump1eb44332009-09-09 15:08:12 +00002569 if ((isInterfaceDeclKind && PrevMethod && !match)
Eli Friedman82b4e762008-12-16 20:15:50 +00002570 || (checkIdenticalMethods && match)) {
Chris Lattner5f4a6822008-11-23 23:12:31 +00002571 Diag(Method->getLocation(), diag::err_duplicate_method_decl)
Chris Lattner077bf5e2008-11-24 03:33:13 +00002572 << Method->getDeclName();
Chris Lattner5f4a6822008-11-23 23:12:31 +00002573 Diag(PrevMethod->getLocation(), diag::note_previous_declaration);
Douglas Gregorbdb2d502010-12-21 17:34:17 +00002574 Method->setInvalidDecl();
Chris Lattner4d391482007-12-12 07:09:47 +00002575 } else {
Fariborz Jahanian72096462011-12-13 19:40:34 +00002576 if (PrevMethod) {
Argyrios Kyrtzidis3a919e72011-10-14 08:02:31 +00002577 Method->setAsRedeclaration(PrevMethod);
Fariborz Jahanian72096462011-12-13 19:40:34 +00002578 if (!Context.getSourceManager().isInSystemHeader(
2579 Method->getLocation()))
2580 Diag(Method->getLocation(), diag::warn_duplicate_method_decl)
2581 << Method->getDeclName();
2582 Diag(PrevMethod->getLocation(), diag::note_previous_declaration);
2583 }
Chris Lattner4d391482007-12-12 07:09:47 +00002584 ClsMap[Method->getSelector()] = Method;
Douglas Gregorff310c72012-05-01 23:37:00 +00002585 AddFactoryMethodToGlobalPool(Method);
Chris Lattner4d391482007-12-12 07:09:47 +00002586 }
2587 }
2588 }
Douglas Gregorb892d702013-01-21 19:42:21 +00002589 if (isa<ObjCInterfaceDecl>(ClassDecl)) {
2590 // Nothing to do here.
Steve Naroff09c47192009-01-09 15:36:25 +00002591 } else if (ObjCCategoryDecl *C = dyn_cast<ObjCCategoryDecl>(ClassDecl)) {
Fariborz Jahanian77e14bd2008-12-06 19:59:02 +00002592 // Categories are used to extend the class by declaring new methods.
Mike Stump1eb44332009-09-09 15:08:12 +00002593 // By the same token, they are also used to add new properties. No
Fariborz Jahanian77e14bd2008-12-06 19:59:02 +00002594 // need to compare the added property to those in the class.
Daniel Dunbarb20ef3e2008-08-27 05:40:03 +00002595
Fariborz Jahanian88f5e9b2010-12-10 23:36:33 +00002596 if (C->IsClassExtension()) {
2597 ObjCInterfaceDecl *CCPrimary = C->getClassInterface();
2598 DiagnoseClassExtensionDupMethods(C, CCPrimary);
Fariborz Jahanian88f5e9b2010-12-10 23:36:33 +00002599 }
Chris Lattner4d391482007-12-12 07:09:47 +00002600 }
Steve Naroff09c47192009-01-09 15:36:25 +00002601 if (ObjCContainerDecl *CDecl = dyn_cast<ObjCContainerDecl>(ClassDecl)) {
Fariborz Jahanian25760612010-02-15 21:55:26 +00002602 if (CDecl->getIdentifier())
2603 // ProcessPropertyDecl is responsible for diagnosing conflicts with any
2604 // user-defined setter/getter. It also synthesizes setter/getter methods
2605 // and adds them to the DeclContext and global method pools.
2606 for (ObjCContainerDecl::prop_iterator I = CDecl->prop_begin(),
2607 E = CDecl->prop_end();
2608 I != E; ++I)
David Blaikie581deb32012-06-06 20:45:41 +00002609 ProcessPropertyDecl(*I, CDecl);
Ted Kremenek782f2f52010-01-07 01:20:12 +00002610 CDecl->setAtEndRange(AtEnd);
Steve Naroff09c47192009-01-09 15:36:25 +00002611 }
2612 if (ObjCImplementationDecl *IC=dyn_cast<ObjCImplementationDecl>(ClassDecl)) {
Ted Kremenek782f2f52010-01-07 01:20:12 +00002613 IC->setAtEndRange(AtEnd);
Fariborz Jahanian7ca8b062009-11-11 22:40:11 +00002614 if (ObjCInterfaceDecl* IDecl = IC->getClassInterface()) {
Fariborz Jahanianc78f6842010-12-11 18:39:37 +00002615 // Any property declared in a class extension might have user
2616 // declared setter or getter in current class extension or one
2617 // of the other class extensions. Mark them as synthesized as
2618 // property will be synthesized when property with same name is
2619 // seen in the @implementation.
Douglas Gregord3297242013-01-16 23:00:23 +00002620 for (ObjCInterfaceDecl::visible_extensions_iterator
2621 Ext = IDecl->visible_extensions_begin(),
2622 ExtEnd = IDecl->visible_extensions_end();
2623 Ext != ExtEnd; ++Ext) {
2624 for (ObjCContainerDecl::prop_iterator I = Ext->prop_begin(),
2625 E = Ext->prop_end(); I != E; ++I) {
David Blaikie581deb32012-06-06 20:45:41 +00002626 ObjCPropertyDecl *Property = *I;
Fariborz Jahanianc78f6842010-12-11 18:39:37 +00002627 // Skip over properties declared @dynamic
2628 if (const ObjCPropertyImplDecl *PIDecl
2629 = IC->FindPropertyImplDecl(Property->getIdentifier()))
2630 if (PIDecl->getPropertyImplementation()
2631 == ObjCPropertyImplDecl::Dynamic)
2632 continue;
Douglas Gregord3297242013-01-16 23:00:23 +00002633
2634 for (ObjCInterfaceDecl::visible_extensions_iterator
2635 Ext = IDecl->visible_extensions_begin(),
2636 ExtEnd = IDecl->visible_extensions_end();
2637 Ext != ExtEnd; ++Ext) {
2638 if (ObjCMethodDecl *GetterMethod
2639 = Ext->getInstanceMethod(Property->getGetterName()))
Jordan Rose1e4691b2012-10-10 16:42:25 +00002640 GetterMethod->setPropertyAccessor(true);
Fariborz Jahanianc78f6842010-12-11 18:39:37 +00002641 if (!Property->isReadOnly())
Douglas Gregord3297242013-01-16 23:00:23 +00002642 if (ObjCMethodDecl *SetterMethod
2643 = Ext->getInstanceMethod(Property->getSetterName()))
Jordan Rose1e4691b2012-10-10 16:42:25 +00002644 SetterMethod->setPropertyAccessor(true);
Douglas Gregord3297242013-01-16 23:00:23 +00002645 }
Fariborz Jahanianc78f6842010-12-11 18:39:37 +00002646 }
2647 }
Fariborz Jahanian17cb3262010-05-05 21:52:17 +00002648 ImplMethodsVsClassMethods(S, IC, IDecl);
Fariborz Jahanian7ca8b062009-11-11 22:40:11 +00002649 AtomicPropertySetterGetterRules(IC, IDecl);
John McCallf85e1932011-06-15 23:02:42 +00002650 DiagnoseOwningPropertyGetterSynthesis(IC);
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +00002651
Patrick Beardb2f68202012-04-06 18:12:22 +00002652 bool HasRootClassAttr = IDecl->hasAttr<ObjCRootClassAttr>();
2653 if (IDecl->getSuperClass() == NULL) {
2654 // This class has no superclass, so check that it has been marked with
2655 // __attribute((objc_root_class)).
2656 if (!HasRootClassAttr) {
2657 SourceLocation DeclLoc(IDecl->getLocation());
2658 SourceLocation SuperClassLoc(PP.getLocForEndOfToken(DeclLoc));
2659 Diag(DeclLoc, diag::warn_objc_root_class_missing)
2660 << IDecl->getIdentifier();
2661 // See if NSObject is in the current scope, and if it is, suggest
2662 // adding " : NSObject " to the class declaration.
2663 NamedDecl *IF = LookupSingleName(TUScope,
2664 NSAPIObj->getNSClassId(NSAPI::ClassId_NSObject),
2665 DeclLoc, LookupOrdinaryName);
2666 ObjCInterfaceDecl *NSObjectDecl = dyn_cast_or_null<ObjCInterfaceDecl>(IF);
2667 if (NSObjectDecl && NSObjectDecl->getDefinition()) {
2668 Diag(SuperClassLoc, diag::note_objc_needs_superclass)
2669 << FixItHint::CreateInsertion(SuperClassLoc, " : NSObject ");
2670 } else {
2671 Diag(SuperClassLoc, diag::note_objc_needs_superclass);
2672 }
2673 }
2674 } else if (HasRootClassAttr) {
2675 // Complain that only root classes may have this attribute.
2676 Diag(IDecl->getLocation(), diag::err_objc_root_class_subclass);
2677 }
2678
John McCall260611a2012-06-20 06:18:46 +00002679 if (LangOpts.ObjCRuntime.isNonFragile()) {
Fariborz Jahanianf914b972010-02-23 23:41:11 +00002680 while (IDecl->getSuperClass()) {
2681 DiagnoseDuplicateIvars(IDecl, IDecl->getSuperClass());
2682 IDecl = IDecl->getSuperClass();
2683 }
Patrick Beardb2f68202012-04-06 18:12:22 +00002684 }
Fariborz Jahanian7ca8b062009-11-11 22:40:11 +00002685 }
Fariborz Jahaniane4498c62010-04-28 16:11:27 +00002686 SetIvarInitializers(IC);
Mike Stump1eb44332009-09-09 15:08:12 +00002687 } else if (ObjCCategoryImplDecl* CatImplClass =
Steve Naroff09c47192009-01-09 15:36:25 +00002688 dyn_cast<ObjCCategoryImplDecl>(ClassDecl)) {
Ted Kremenek782f2f52010-01-07 01:20:12 +00002689 CatImplClass->setAtEndRange(AtEnd);
Mike Stump1eb44332009-09-09 15:08:12 +00002690
Chris Lattner4d391482007-12-12 07:09:47 +00002691 // Find category interface decl and then check that all methods declared
Daniel Dunbarb20ef3e2008-08-27 05:40:03 +00002692 // in this interface are implemented in the category @implementation.
Chris Lattner97a58872009-02-16 18:32:47 +00002693 if (ObjCInterfaceDecl* IDecl = CatImplClass->getClassInterface()) {
Douglas Gregord3297242013-01-16 23:00:23 +00002694 if (ObjCCategoryDecl *Cat
2695 = IDecl->FindCategoryDeclaration(CatImplClass->getIdentifier())) {
2696 ImplMethodsVsClassMethods(S, CatImplClass, Cat);
Chris Lattner4d391482007-12-12 07:09:47 +00002697 }
2698 }
2699 }
Chris Lattner682bf922009-03-29 16:50:03 +00002700 if (isInterfaceDeclKind) {
2701 // Reject invalid vardecls.
Fariborz Jahaniana3c62462013-07-16 15:33:19 +00002702 for (unsigned i = 0, e = allTUVars.size(); i != e; i++) {
Serge Pavlov18062392013-08-27 13:15:56 +00002703 DeclGroupRef DG = allTUVars[i].get();
Chris Lattner682bf922009-03-29 16:50:03 +00002704 for (DeclGroupRef::iterator I = DG.begin(), E = DG.end(); I != E; ++I)
2705 if (VarDecl *VDecl = dyn_cast<VarDecl>(*I)) {
Daniel Dunbar5466c7b2009-04-14 02:25:56 +00002706 if (!VDecl->hasExternalStorage())
Steve Naroff87454162009-04-13 17:58:46 +00002707 Diag(VDecl->getLocation(), diag::err_objc_var_decl_inclass);
Fariborz Jahanianb31cb7f2009-03-21 18:06:45 +00002708 }
Chris Lattner682bf922009-03-29 16:50:03 +00002709 }
Fariborz Jahanian38e24c72009-03-18 22:33:24 +00002710 }
Fariborz Jahanian10af8792011-08-29 17:33:12 +00002711 ActOnObjCContainerFinishDefinition();
Argyrios Kyrtzidisb4a686d2011-10-17 19:48:13 +00002712
Fariborz Jahaniana3c62462013-07-16 15:33:19 +00002713 for (unsigned i = 0, e = allTUVars.size(); i != e; i++) {
Serge Pavlov18062392013-08-27 13:15:56 +00002714 DeclGroupRef DG = allTUVars[i].get();
Argyrios Kyrtzidisc14a03d2011-11-23 20:27:36 +00002715 for (DeclGroupRef::iterator I = DG.begin(), E = DG.end(); I != E; ++I)
2716 (*I)->setTopLevelDeclInObjCContainer();
Argyrios Kyrtzidisb4a686d2011-10-17 19:48:13 +00002717 Consumer.HandleTopLevelDeclInObjCContainer(DG);
2718 }
Erik Verbruggend64251f2011-12-06 09:25:23 +00002719
Dmitri Gribenkoabd56c82012-07-13 01:06:46 +00002720 ActOnDocumentableDecl(ClassDecl);
Erik Verbruggend64251f2011-12-06 09:25:23 +00002721 return ClassDecl;
Chris Lattner4d391482007-12-12 07:09:47 +00002722}
2723
2724
2725/// CvtQTToAstBitMask - utility routine to produce an AST bitmask for
2726/// objective-c's type qualifier from the parser version of the same info.
Mike Stump1eb44332009-09-09 15:08:12 +00002727static Decl::ObjCDeclQualifier
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002728CvtQTToAstBitMask(ObjCDeclSpec::ObjCDeclQualifier PQTVal) {
John McCall09e2c522011-05-01 03:04:29 +00002729 return (Decl::ObjCDeclQualifier) (unsigned) PQTVal;
Chris Lattner4d391482007-12-12 07:09:47 +00002730}
2731
Ted Kremenek422bae72010-04-18 04:59:38 +00002732static inline
Fariborz Jahanian129a60b2012-08-24 23:50:13 +00002733unsigned countAlignAttr(const AttrVec &A) {
2734 unsigned count=0;
2735 for (AttrVec::const_iterator i = A.begin(), e = A.end(); i != e; ++i)
2736 if ((*i)->getKind() == attr::Aligned)
2737 ++count;
2738 return count;
2739}
2740
2741static inline
Fariborz Jahanian7fda4002011-10-22 01:21:15 +00002742bool containsInvalidMethodImplAttribute(ObjCMethodDecl *IMD,
2743 const AttrVec &A) {
2744 // If method is only declared in implementation (private method),
Fariborz Jahanian7fda4002011-10-22 01:21:15 +00002745 // No need to issue any diagnostics on method definition with attributes.
Fariborz Jahanianee28a4b2011-10-22 01:56:45 +00002746 if (!IMD)
Fariborz Jahanian7fda4002011-10-22 01:21:15 +00002747 return false;
Fariborz Jahanian129a60b2012-08-24 23:50:13 +00002748
Fariborz Jahanianee28a4b2011-10-22 01:56:45 +00002749 // method declared in interface has no attribute.
Fariborz Jahanian129a60b2012-08-24 23:50:13 +00002750 // But implementation has attributes. This is invalid.
2751 // Except when implementation has 'Align' attribute which is
2752 // immaterial to method declared in interface.
Fariborz Jahanianee28a4b2011-10-22 01:56:45 +00002753 if (!IMD->hasAttrs())
Fariborz Jahanian129a60b2012-08-24 23:50:13 +00002754 return (A.size() > countAlignAttr(A));
Fariborz Jahanianee28a4b2011-10-22 01:56:45 +00002755
Fariborz Jahanian7fda4002011-10-22 01:21:15 +00002756 const AttrVec &D = IMD->getAttrs();
Fariborz Jahanian7fda4002011-10-22 01:21:15 +00002757
Fariborz Jahanian129a60b2012-08-24 23:50:13 +00002758 unsigned countAlignOnImpl = countAlignAttr(A);
2759 if (!countAlignOnImpl && (A.size() != D.size()))
2760 return true;
2761 else if (countAlignOnImpl) {
2762 unsigned countAlignOnDecl = countAlignAttr(D);
2763 if (countAlignOnDecl && (A.size() != D.size()))
2764 return true;
2765 else if (!countAlignOnDecl &&
2766 ((A.size()-countAlignOnImpl) != D.size()))
2767 return true;
2768 }
2769
Fariborz Jahanian7fda4002011-10-22 01:21:15 +00002770 // attributes on method declaration and definition must match exactly.
2771 // Note that we have at most a couple of attributes on methods, so this
2772 // n*n search is good enough.
2773 for (AttrVec::const_iterator i = A.begin(), e = A.end(); i != e; ++i) {
Fariborz Jahanian129a60b2012-08-24 23:50:13 +00002774 if ((*i)->getKind() == attr::Aligned)
2775 continue;
Fariborz Jahanian7fda4002011-10-22 01:21:15 +00002776 bool match = false;
2777 for (AttrVec::const_iterator i1 = D.begin(), e1 = D.end(); i1 != e1; ++i1) {
2778 if ((*i)->getKind() == (*i1)->getKind()) {
2779 match = true;
2780 break;
2781 }
2782 }
2783 if (!match)
Sean Huntcf807c42010-08-18 23:23:40 +00002784 return true;
Fariborz Jahanian7fda4002011-10-22 01:21:15 +00002785 }
Fariborz Jahanian129a60b2012-08-24 23:50:13 +00002786
Sean Huntcf807c42010-08-18 23:23:40 +00002787 return false;
Ted Kremenek422bae72010-04-18 04:59:38 +00002788}
2789
Douglas Gregor926df6c2011-06-11 01:09:30 +00002790/// \brief Check whether the declared result type of the given Objective-C
2791/// method declaration is compatible with the method's class.
2792///
Argyrios Kyrtzidise15db6f2012-05-09 16:12:57 +00002793static Sema::ResultTypeCompatibilityKind
Douglas Gregor926df6c2011-06-11 01:09:30 +00002794CheckRelatedResultTypeCompatibility(Sema &S, ObjCMethodDecl *Method,
2795 ObjCInterfaceDecl *CurrentClass) {
2796 QualType ResultType = Method->getResultType();
Douglas Gregor926df6c2011-06-11 01:09:30 +00002797
2798 // If an Objective-C method inherits its related result type, then its
2799 // declared result type must be compatible with its own class type. The
2800 // declared result type is compatible if:
2801 if (const ObjCObjectPointerType *ResultObjectType
2802 = ResultType->getAs<ObjCObjectPointerType>()) {
2803 // - it is id or qualified id, or
2804 if (ResultObjectType->isObjCIdType() ||
2805 ResultObjectType->isObjCQualifiedIdType())
Argyrios Kyrtzidise15db6f2012-05-09 16:12:57 +00002806 return Sema::RTC_Compatible;
Douglas Gregor926df6c2011-06-11 01:09:30 +00002807
2808 if (CurrentClass) {
2809 if (ObjCInterfaceDecl *ResultClass
2810 = ResultObjectType->getInterfaceDecl()) {
2811 // - it is the same as the method's class type, or
Douglas Gregor60ef3082011-12-15 00:29:59 +00002812 if (declaresSameEntity(CurrentClass, ResultClass))
Argyrios Kyrtzidise15db6f2012-05-09 16:12:57 +00002813 return Sema::RTC_Compatible;
Douglas Gregor926df6c2011-06-11 01:09:30 +00002814
2815 // - it is a superclass of the method's class type
2816 if (ResultClass->isSuperClassOf(CurrentClass))
Argyrios Kyrtzidise15db6f2012-05-09 16:12:57 +00002817 return Sema::RTC_Compatible;
Douglas Gregor926df6c2011-06-11 01:09:30 +00002818 }
Douglas Gregore97179c2011-09-08 01:46:34 +00002819 } else {
2820 // Any Objective-C pointer type might be acceptable for a protocol
2821 // method; we just don't know.
Argyrios Kyrtzidise15db6f2012-05-09 16:12:57 +00002822 return Sema::RTC_Unknown;
Douglas Gregor926df6c2011-06-11 01:09:30 +00002823 }
2824 }
2825
Argyrios Kyrtzidise15db6f2012-05-09 16:12:57 +00002826 return Sema::RTC_Incompatible;
Douglas Gregor926df6c2011-06-11 01:09:30 +00002827}
2828
John McCall6c2c2502011-07-22 02:45:48 +00002829namespace {
2830/// A helper class for searching for methods which a particular method
2831/// overrides.
2832class OverrideSearch {
Daniel Dunbarb732fce2012-02-29 03:04:05 +00002833public:
John McCall6c2c2502011-07-22 02:45:48 +00002834 Sema &S;
2835 ObjCMethodDecl *Method;
Daniel Dunbarb732fce2012-02-29 03:04:05 +00002836 llvm::SmallPtrSet<ObjCMethodDecl*, 4> Overridden;
John McCall6c2c2502011-07-22 02:45:48 +00002837 bool Recursive;
2838
2839public:
2840 OverrideSearch(Sema &S, ObjCMethodDecl *method) : S(S), Method(method) {
2841 Selector selector = method->getSelector();
2842
2843 // Bypass this search if we've never seen an instance/class method
2844 // with this selector before.
2845 Sema::GlobalMethodPool::iterator it = S.MethodPool.find(selector);
2846 if (it == S.MethodPool.end()) {
Axel Naumann0ec56b72012-10-18 19:05:02 +00002847 if (!S.getExternalSource()) return;
Douglas Gregor5ac4b692012-01-25 00:49:42 +00002848 S.ReadMethodPool(selector);
2849
2850 it = S.MethodPool.find(selector);
2851 if (it == S.MethodPool.end())
2852 return;
John McCall6c2c2502011-07-22 02:45:48 +00002853 }
2854 ObjCMethodList &list =
2855 method->isInstanceMethod() ? it->second.first : it->second.second;
2856 if (!list.Method) return;
2857
2858 ObjCContainerDecl *container
2859 = cast<ObjCContainerDecl>(method->getDeclContext());
2860
2861 // Prevent the search from reaching this container again. This is
2862 // important with categories, which override methods from the
2863 // interface and each other.
Douglas Gregorc9683342012-05-03 21:25:24 +00002864 if (ObjCCategoryDecl *Category = dyn_cast<ObjCCategoryDecl>(container)) {
2865 searchFromContainer(container);
Douglas Gregordd872242012-05-17 22:39:14 +00002866 if (ObjCInterfaceDecl *Interface = Category->getClassInterface())
2867 searchFromContainer(Interface);
Douglas Gregorc9683342012-05-03 21:25:24 +00002868 } else {
2869 searchFromContainer(container);
2870 }
Douglas Gregor926df6c2011-06-11 01:09:30 +00002871 }
John McCall6c2c2502011-07-22 02:45:48 +00002872
Daniel Dunbarb732fce2012-02-29 03:04:05 +00002873 typedef llvm::SmallPtrSet<ObjCMethodDecl*, 128>::iterator iterator;
John McCall6c2c2502011-07-22 02:45:48 +00002874 iterator begin() const { return Overridden.begin(); }
2875 iterator end() const { return Overridden.end(); }
2876
2877private:
2878 void searchFromContainer(ObjCContainerDecl *container) {
2879 if (container->isInvalidDecl()) return;
2880
2881 switch (container->getDeclKind()) {
2882#define OBJCCONTAINER(type, base) \
2883 case Decl::type: \
2884 searchFrom(cast<type##Decl>(container)); \
2885 break;
2886#define ABSTRACT_DECL(expansion)
2887#define DECL(type, base) \
2888 case Decl::type:
2889#include "clang/AST/DeclNodes.inc"
2890 llvm_unreachable("not an ObjC container!");
2891 }
2892 }
2893
2894 void searchFrom(ObjCProtocolDecl *protocol) {
Douglas Gregor5e2a1ff2012-01-01 19:29:29 +00002895 if (!protocol->hasDefinition())
2896 return;
2897
John McCall6c2c2502011-07-22 02:45:48 +00002898 // A method in a protocol declaration overrides declarations from
2899 // referenced ("parent") protocols.
2900 search(protocol->getReferencedProtocols());
2901 }
2902
2903 void searchFrom(ObjCCategoryDecl *category) {
2904 // A method in a category declaration overrides declarations from
2905 // the main class and from protocols the category references.
Douglas Gregorc9683342012-05-03 21:25:24 +00002906 // The main class is handled in the constructor.
John McCall6c2c2502011-07-22 02:45:48 +00002907 search(category->getReferencedProtocols());
2908 }
2909
2910 void searchFrom(ObjCCategoryImplDecl *impl) {
2911 // A method in a category definition that has a category
2912 // declaration overrides declarations from the category
2913 // declaration.
2914 if (ObjCCategoryDecl *category = impl->getCategoryDecl()) {
2915 search(category);
Douglas Gregordd872242012-05-17 22:39:14 +00002916 if (ObjCInterfaceDecl *Interface = category->getClassInterface())
2917 search(Interface);
John McCall6c2c2502011-07-22 02:45:48 +00002918
2919 // Otherwise it overrides declarations from the class.
Douglas Gregordd872242012-05-17 22:39:14 +00002920 } else if (ObjCInterfaceDecl *Interface = impl->getClassInterface()) {
2921 search(Interface);
John McCall6c2c2502011-07-22 02:45:48 +00002922 }
2923 }
2924
2925 void searchFrom(ObjCInterfaceDecl *iface) {
2926 // A method in a class declaration overrides declarations from
Douglas Gregor2e5c15b2011-12-15 05:27:12 +00002927 if (!iface->hasDefinition())
2928 return;
2929
John McCall6c2c2502011-07-22 02:45:48 +00002930 // - categories,
Argyrios Kyrtzidis04593d02013-03-29 21:51:48 +00002931 for (ObjCInterfaceDecl::known_categories_iterator
2932 cat = iface->known_categories_begin(),
2933 catEnd = iface->known_categories_end();
Douglas Gregord3297242013-01-16 23:00:23 +00002934 cat != catEnd; ++cat) {
2935 search(*cat);
2936 }
John McCall6c2c2502011-07-22 02:45:48 +00002937
2938 // - the super class, and
2939 if (ObjCInterfaceDecl *super = iface->getSuperClass())
2940 search(super);
2941
2942 // - any referenced protocols.
2943 search(iface->getReferencedProtocols());
2944 }
2945
2946 void searchFrom(ObjCImplementationDecl *impl) {
2947 // A method in a class implementation overrides declarations from
2948 // the class interface.
Douglas Gregordd872242012-05-17 22:39:14 +00002949 if (ObjCInterfaceDecl *Interface = impl->getClassInterface())
2950 search(Interface);
John McCall6c2c2502011-07-22 02:45:48 +00002951 }
2952
2953
2954 void search(const ObjCProtocolList &protocols) {
2955 for (ObjCProtocolList::iterator i = protocols.begin(), e = protocols.end();
2956 i != e; ++i)
2957 search(*i);
2958 }
2959
2960 void search(ObjCContainerDecl *container) {
John McCall6c2c2502011-07-22 02:45:48 +00002961 // Check for a method in this container which matches this selector.
2962 ObjCMethodDecl *meth = container->getMethod(Method->getSelector(),
Argyrios Kyrtzidis04593d02013-03-29 21:51:48 +00002963 Method->isInstanceMethod(),
2964 /*AllowHidden=*/true);
John McCall6c2c2502011-07-22 02:45:48 +00002965
2966 // If we find one, record it and bail out.
2967 if (meth) {
2968 Overridden.insert(meth);
2969 return;
2970 }
2971
2972 // Otherwise, search for methods that a hypothetical method here
2973 // would have overridden.
2974
2975 // Note that we're now in a recursive case.
2976 Recursive = true;
2977
2978 searchFromContainer(container);
2979 }
2980};
Douglas Gregor926df6c2011-06-11 01:09:30 +00002981}
2982
Argyrios Kyrtzidise15db6f2012-05-09 16:12:57 +00002983void Sema::CheckObjCMethodOverrides(ObjCMethodDecl *ObjCMethod,
2984 ObjCInterfaceDecl *CurrentClass,
2985 ResultTypeCompatibilityKind RTC) {
2986 // Search for overridden methods and merge information down from them.
2987 OverrideSearch overrides(*this, ObjCMethod);
2988 // Keep track if the method overrides any method in the class's base classes,
2989 // its protocols, or its categories' protocols; we will keep that info
2990 // in the ObjCMethodDecl.
2991 // For this info, a method in an implementation is not considered as
2992 // overriding the same method in the interface or its categories.
2993 bool hasOverriddenMethodsInBaseOrProtocol = false;
2994 for (OverrideSearch::iterator
2995 i = overrides.begin(), e = overrides.end(); i != e; ++i) {
2996 ObjCMethodDecl *overridden = *i;
2997
Argyrios Kyrtzidise7a77722013-04-17 00:09:08 +00002998 if (!hasOverriddenMethodsInBaseOrProtocol) {
2999 if (isa<ObjCProtocolDecl>(overridden->getDeclContext()) ||
3000 CurrentClass != overridden->getClassInterface() ||
3001 overridden->isOverriding()) {
3002 hasOverriddenMethodsInBaseOrProtocol = true;
3003
3004 } else if (isa<ObjCImplDecl>(ObjCMethod->getDeclContext())) {
3005 // OverrideSearch will return as "overridden" the same method in the
3006 // interface. For hasOverriddenMethodsInBaseOrProtocol, we need to
3007 // check whether a category of a base class introduced a method with the
3008 // same selector, after the interface method declaration.
3009 // To avoid unnecessary lookups in the majority of cases, we use the
3010 // extra info bits in GlobalMethodPool to check whether there were any
3011 // category methods with this selector.
3012 GlobalMethodPool::iterator It =
3013 MethodPool.find(ObjCMethod->getSelector());
3014 if (It != MethodPool.end()) {
3015 ObjCMethodList &List =
3016 ObjCMethod->isInstanceMethod()? It->second.first: It->second.second;
3017 unsigned CategCount = List.getBits();
3018 if (CategCount > 0) {
3019 // If the method is in a category we'll do lookup if there were at
3020 // least 2 category methods recorded, otherwise only one will do.
3021 if (CategCount > 1 ||
3022 !isa<ObjCCategoryImplDecl>(overridden->getDeclContext())) {
3023 OverrideSearch overrides(*this, overridden);
3024 for (OverrideSearch::iterator
3025 OI= overrides.begin(), OE= overrides.end(); OI!=OE; ++OI) {
3026 ObjCMethodDecl *SuperOverridden = *OI;
Argyrios Kyrtzidisab3d5092013-04-27 00:10:12 +00003027 if (isa<ObjCProtocolDecl>(SuperOverridden->getDeclContext()) ||
3028 CurrentClass != SuperOverridden->getClassInterface()) {
Argyrios Kyrtzidise7a77722013-04-17 00:09:08 +00003029 hasOverriddenMethodsInBaseOrProtocol = true;
3030 overridden->setOverriding(true);
3031 break;
3032 }
3033 }
3034 }
3035 }
3036 }
3037 }
3038 }
Argyrios Kyrtzidise15db6f2012-05-09 16:12:57 +00003039
3040 // Propagate down the 'related result type' bit from overridden methods.
3041 if (RTC != Sema::RTC_Incompatible && overridden->hasRelatedResultType())
3042 ObjCMethod->SetRelatedResultType();
3043
3044 // Then merge the declarations.
3045 mergeObjCMethodDecls(ObjCMethod, overridden);
3046
3047 if (ObjCMethod->isImplicit() && overridden->isImplicit())
3048 continue; // Conflicting properties are detected elsewhere.
3049
3050 // Check for overriding methods
3051 if (isa<ObjCInterfaceDecl>(ObjCMethod->getDeclContext()) ||
3052 isa<ObjCImplementationDecl>(ObjCMethod->getDeclContext()))
3053 CheckConflictingOverridingMethod(ObjCMethod, overridden,
3054 isa<ObjCProtocolDecl>(overridden->getDeclContext()));
3055
3056 if (CurrentClass && overridden->getDeclContext() != CurrentClass &&
Fariborz Jahanianc4133a42012-07-05 22:26:07 +00003057 isa<ObjCInterfaceDecl>(overridden->getDeclContext()) &&
3058 !overridden->isImplicit() /* not meant for properties */) {
Argyrios Kyrtzidise15db6f2012-05-09 16:12:57 +00003059 ObjCMethodDecl::param_iterator ParamI = ObjCMethod->param_begin(),
3060 E = ObjCMethod->param_end();
Douglas Gregor0a4a23a2012-05-17 23:13:29 +00003061 ObjCMethodDecl::param_iterator PrevI = overridden->param_begin(),
3062 PrevE = overridden->param_end();
3063 for (; ParamI != E && PrevI != PrevE; ++ParamI, ++PrevI) {
Argyrios Kyrtzidise15db6f2012-05-09 16:12:57 +00003064 assert(PrevI != overridden->param_end() && "Param mismatch");
3065 QualType T1 = Context.getCanonicalType((*ParamI)->getType());
3066 QualType T2 = Context.getCanonicalType((*PrevI)->getType());
3067 // If type of argument of method in this class does not match its
3068 // respective argument type in the super class method, issue warning;
3069 if (!Context.typesAreCompatible(T1, T2)) {
3070 Diag((*ParamI)->getLocation(), diag::ext_typecheck_base_super)
3071 << T1 << T2;
3072 Diag(overridden->getLocation(), diag::note_previous_declaration);
3073 break;
3074 }
3075 }
3076 }
3077 }
3078
3079 ObjCMethod->setOverriding(hasOverriddenMethodsInBaseOrProtocol);
3080}
3081
John McCalld226f652010-08-21 09:40:31 +00003082Decl *Sema::ActOnMethodDeclaration(
Fariborz Jahanian7f532532011-02-09 22:20:01 +00003083 Scope *S,
Chris Lattner4d391482007-12-12 07:09:47 +00003084 SourceLocation MethodLoc, SourceLocation EndLoc,
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00003085 tok::TokenKind MethodType,
John McCallb3d87482010-08-24 05:47:05 +00003086 ObjCDeclSpec &ReturnQT, ParsedType ReturnType,
Argyrios Kyrtzidis11d77162011-10-03 06:36:36 +00003087 ArrayRef<SourceLocation> SelectorLocs,
Chris Lattner4d391482007-12-12 07:09:47 +00003088 Selector Sel,
3089 // optional arguments. The number of types/arguments is obtained
3090 // from the Sel.getNumArgs().
Chris Lattnere294d3f2009-04-11 18:57:04 +00003091 ObjCArgInfo *ArgInfo,
Fariborz Jahanian4f4fd922010-04-08 00:30:06 +00003092 DeclaratorChunk::ParamInfo *CParamInfo, unsigned CNumArgs, // c-style args
Chris Lattner4d391482007-12-12 07:09:47 +00003093 AttributeList *AttrList, tok::ObjCKeywordKind MethodDeclKind,
Fariborz Jahanian90ba78c2011-03-12 18:54:30 +00003094 bool isVariadic, bool MethodDefinition) {
Steve Naroffda323ad2008-02-29 21:48:07 +00003095 // Make sure we can establish a context for the method.
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00003096 if (!CurContext->isObjCContainer()) {
Steve Naroffda323ad2008-02-29 21:48:07 +00003097 Diag(MethodLoc, diag::error_missing_method_context);
John McCalld226f652010-08-21 09:40:31 +00003098 return 0;
Steve Naroffda323ad2008-02-29 21:48:07 +00003099 }
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00003100 ObjCContainerDecl *OCD = dyn_cast<ObjCContainerDecl>(CurContext);
3101 Decl *ClassDecl = cast<Decl>(OCD);
Chris Lattner4d391482007-12-12 07:09:47 +00003102 QualType resultDeclType;
Mike Stump1eb44332009-09-09 15:08:12 +00003103
Douglas Gregore97179c2011-09-08 01:46:34 +00003104 bool HasRelatedResultType = false;
Douglas Gregor4bc1cb62010-03-08 14:59:44 +00003105 TypeSourceInfo *ResultTInfo = 0;
Steve Naroffccef3712009-02-20 22:59:16 +00003106 if (ReturnType) {
Douglas Gregor4bc1cb62010-03-08 14:59:44 +00003107 resultDeclType = GetTypeFromParser(ReturnType, &ResultTInfo);
Mike Stump1eb44332009-09-09 15:08:12 +00003108
Eli Friedmanddb5a392013-06-14 21:14:10 +00003109 if (CheckFunctionReturnType(resultDeclType, MethodLoc))
John McCalld226f652010-08-21 09:40:31 +00003110 return 0;
Eli Friedmanddb5a392013-06-14 21:14:10 +00003111
Douglas Gregore97179c2011-09-08 01:46:34 +00003112 HasRelatedResultType = (resultDeclType == Context.getObjCInstanceType());
Fariborz Jahanianaab24a62011-07-21 17:00:47 +00003113 } else { // get the type for "id".
Ted Kremeneka526c5c2008-01-07 19:49:32 +00003114 resultDeclType = Context.getObjCIdType();
Fariborz Jahanianfeb4fa12011-07-21 17:38:14 +00003115 Diag(MethodLoc, diag::warn_missing_method_return_type)
Argyrios Kyrtzidis11d77162011-10-03 06:36:36 +00003116 << FixItHint::CreateInsertion(SelectorLocs.front(), "(id)");
Fariborz Jahanianaab24a62011-07-21 17:00:47 +00003117 }
Mike Stump1eb44332009-09-09 15:08:12 +00003118
3119 ObjCMethodDecl* ObjCMethod =
Argyrios Kyrtzidis491306a2011-10-03 06:37:04 +00003120 ObjCMethodDecl::Create(Context, MethodLoc, EndLoc, Sel,
Argyrios Kyrtzidis11d77162011-10-03 06:36:36 +00003121 resultDeclType,
Douglas Gregor4bc1cb62010-03-08 14:59:44 +00003122 ResultTInfo,
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00003123 CurContext,
Chris Lattner6c4ae5d2008-03-16 00:49:28 +00003124 MethodType == tok::minus, isVariadic,
Jordan Rose1e4691b2012-10-10 16:42:25 +00003125 /*isPropertyAccessor=*/false,
Argyrios Kyrtzidis75cf3e82011-08-17 19:25:08 +00003126 /*isImplicitlyDeclared=*/false, /*isDefined=*/false,
Douglas Gregor926df6c2011-06-11 01:09:30 +00003127 MethodDeclKind == tok::objc_optional
3128 ? ObjCMethodDecl::Optional
3129 : ObjCMethodDecl::Required,
Douglas Gregore97179c2011-09-08 01:46:34 +00003130 HasRelatedResultType);
Mike Stump1eb44332009-09-09 15:08:12 +00003131
Chris Lattner5f9e2722011-07-23 10:55:15 +00003132 SmallVector<ParmVarDecl*, 16> Params;
Mike Stump1eb44332009-09-09 15:08:12 +00003133
Chris Lattner7db638d2009-04-11 19:42:43 +00003134 for (unsigned i = 0, e = Sel.getNumArgs(); i != e; ++i) {
John McCall58e46772009-10-23 21:48:59 +00003135 QualType ArgType;
John McCalla93c9342009-12-07 02:54:59 +00003136 TypeSourceInfo *DI;
Mike Stump1eb44332009-09-09 15:08:12 +00003137
David Blaikie7247c882013-05-15 07:37:26 +00003138 if (!ArgInfo[i].Type) {
John McCall58e46772009-10-23 21:48:59 +00003139 ArgType = Context.getObjCIdType();
3140 DI = 0;
Chris Lattnere294d3f2009-04-11 18:57:04 +00003141 } else {
John McCall58e46772009-10-23 21:48:59 +00003142 ArgType = GetTypeFromParser(ArgInfo[i].Type, &DI);
Chris Lattnere294d3f2009-04-11 18:57:04 +00003143 }
Mike Stump1eb44332009-09-09 15:08:12 +00003144
Fariborz Jahanian7f532532011-02-09 22:20:01 +00003145 LookupResult R(*this, ArgInfo[i].Name, ArgInfo[i].NameLoc,
3146 LookupOrdinaryName, ForRedeclaration);
3147 LookupName(R, S);
3148 if (R.isSingleResult()) {
3149 NamedDecl *PrevDecl = R.getFoundDecl();
3150 if (S->isDeclScope(PrevDecl)) {
Fariborz Jahanian90ba78c2011-03-12 18:54:30 +00003151 Diag(ArgInfo[i].NameLoc,
3152 (MethodDefinition ? diag::warn_method_param_redefinition
3153 : diag::warn_method_param_declaration))
Fariborz Jahanian7f532532011-02-09 22:20:01 +00003154 << ArgInfo[i].Name;
3155 Diag(PrevDecl->getLocation(),
3156 diag::note_previous_declaration);
3157 }
3158 }
3159
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00003160 SourceLocation StartLoc = DI
3161 ? DI->getTypeLoc().getBeginLoc()
3162 : ArgInfo[i].NameLoc;
3163
John McCall81ef3e62011-04-23 02:46:06 +00003164 ParmVarDecl* Param = CheckParameter(ObjCMethod, StartLoc,
3165 ArgInfo[i].NameLoc, ArgInfo[i].Name,
Rafael Espindolad2615cc2013-04-03 19:27:57 +00003166 ArgType, DI, SC_None);
Mike Stump1eb44332009-09-09 15:08:12 +00003167
John McCall70798862011-05-02 00:30:12 +00003168 Param->setObjCMethodScopeInfo(i);
3169
Chris Lattner0ed844b2008-04-04 06:12:32 +00003170 Param->setObjCDeclQualifier(
Chris Lattnere294d3f2009-04-11 18:57:04 +00003171 CvtQTToAstBitMask(ArgInfo[i].DeclSpec.getObjCDeclQualifier()));
Mike Stump1eb44332009-09-09 15:08:12 +00003172
Chris Lattnerf97e8fa2009-04-11 19:34:56 +00003173 // Apply the attributes to the parameter.
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00003174 ProcessDeclAttributeList(TUScope, Param, ArgInfo[i].ArgAttrs);
Mike Stump1eb44332009-09-09 15:08:12 +00003175
Fariborz Jahanian47b1d962012-01-14 18:44:35 +00003176 if (Param->hasAttr<BlocksAttr>()) {
3177 Diag(Param->getLocation(), diag::err_block_on_nonlocal);
3178 Param->setInvalidDecl();
3179 }
Fariborz Jahanian7f532532011-02-09 22:20:01 +00003180 S->AddDecl(Param);
3181 IdResolver.AddDecl(Param);
3182
Chris Lattner0ed844b2008-04-04 06:12:32 +00003183 Params.push_back(Param);
3184 }
Fariborz Jahanian7f532532011-02-09 22:20:01 +00003185
Fariborz Jahanian4f4fd922010-04-08 00:30:06 +00003186 for (unsigned i = 0, e = CNumArgs; i != e; ++i) {
John McCalld226f652010-08-21 09:40:31 +00003187 ParmVarDecl *Param = cast<ParmVarDecl>(CParamInfo[i].Param);
Fariborz Jahanian4f4fd922010-04-08 00:30:06 +00003188 QualType ArgType = Param->getType();
3189 if (ArgType.isNull())
3190 ArgType = Context.getObjCIdType();
3191 else
3192 // Perform the default array/function conversions (C99 6.7.5.3p[7,8]).
Douglas Gregor79e6bd32011-07-12 04:42:08 +00003193 ArgType = Context.getAdjustedParameterType(ArgType);
Eli Friedmanddb5a392013-06-14 21:14:10 +00003194
Fariborz Jahanian4f4fd922010-04-08 00:30:06 +00003195 Param->setDeclContext(ObjCMethod);
Fariborz Jahanian4f4fd922010-04-08 00:30:06 +00003196 Params.push_back(Param);
3197 }
3198
Argyrios Kyrtzidis491306a2011-10-03 06:37:04 +00003199 ObjCMethod->setMethodParams(Context, Params, SelectorLocs);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00003200 ObjCMethod->setObjCDeclQualifier(
3201 CvtQTToAstBitMask(ReturnQT.getObjCDeclQualifier()));
Daniel Dunbar35682492008-09-26 04:12:28 +00003202
3203 if (AttrList)
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00003204 ProcessDeclAttributeList(TUScope, ObjCMethod, AttrList);
Mike Stump1eb44332009-09-09 15:08:12 +00003205
Douglas Gregorbdb2d502010-12-21 17:34:17 +00003206 // Add the method now.
John McCall6c2c2502011-07-22 02:45:48 +00003207 const ObjCMethodDecl *PrevMethod = 0;
3208 if (ObjCImplDecl *ImpDecl = dyn_cast<ObjCImplDecl>(ClassDecl)) {
Chris Lattner4d391482007-12-12 07:09:47 +00003209 if (MethodType == tok::minus) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003210 PrevMethod = ImpDecl->getInstanceMethod(Sel);
3211 ImpDecl->addInstanceMethod(ObjCMethod);
Chris Lattner4d391482007-12-12 07:09:47 +00003212 } else {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003213 PrevMethod = ImpDecl->getClassMethod(Sel);
3214 ImpDecl->addClassMethod(ObjCMethod);
Chris Lattner4d391482007-12-12 07:09:47 +00003215 }
Douglas Gregor926df6c2011-06-11 01:09:30 +00003216
Fariborz Jahanian7fda4002011-10-22 01:21:15 +00003217 ObjCMethodDecl *IMD = 0;
3218 if (ObjCInterfaceDecl *IDecl = ImpDecl->getClassInterface())
3219 IMD = IDecl->lookupMethod(ObjCMethod->getSelector(),
3220 ObjCMethod->isInstanceMethod());
Fariborz Jahanian38b3bd82013-07-09 22:02:20 +00003221 if (IMD && IMD->hasAttr<ObjCRequiresSuperAttr>() &&
3222 !ObjCMethod->hasAttr<ObjCRequiresSuperAttr>()) {
3223 // merge the attribute into implementation.
3224 ObjCMethod->addAttr(
3225 new (Context) ObjCRequiresSuperAttr(ObjCMethod->getLocation(), Context));
3226 }
Sean Huntcf807c42010-08-18 23:23:40 +00003227 if (ObjCMethod->hasAttrs() &&
Fariborz Jahanianec236782011-12-06 00:02:41 +00003228 containsInvalidMethodImplAttribute(IMD, ObjCMethod->getAttrs())) {
Fariborz Jahanian28441e62011-12-21 00:09:11 +00003229 SourceLocation MethodLoc = IMD->getLocation();
3230 if (!getSourceManager().isInSystemHeader(MethodLoc)) {
3231 Diag(EndLoc, diag::warn_attribute_method_def);
Ted Kremenek3306ec12012-02-27 22:55:11 +00003232 Diag(MethodLoc, diag::note_method_declared_at)
3233 << ObjCMethod->getDeclName();
Fariborz Jahanian28441e62011-12-21 00:09:11 +00003234 }
Fariborz Jahanianec236782011-12-06 00:02:41 +00003235 }
Douglas Gregorbdb2d502010-12-21 17:34:17 +00003236 } else {
3237 cast<DeclContext>(ClassDecl)->addDecl(ObjCMethod);
Chris Lattner4d391482007-12-12 07:09:47 +00003238 }
John McCall6c2c2502011-07-22 02:45:48 +00003239
Chris Lattner4d391482007-12-12 07:09:47 +00003240 if (PrevMethod) {
3241 // You can never have two method definitions with the same name.
Chris Lattner5f4a6822008-11-23 23:12:31 +00003242 Diag(ObjCMethod->getLocation(), diag::err_duplicate_method_decl)
Chris Lattner077bf5e2008-11-24 03:33:13 +00003243 << ObjCMethod->getDeclName();
Chris Lattner5f4a6822008-11-23 23:12:31 +00003244 Diag(PrevMethod->getLocation(), diag::note_previous_declaration);
Fariborz Jahanianfbff0c42013-05-13 17:27:00 +00003245 ObjCMethod->setInvalidDecl();
3246 return ObjCMethod;
Mike Stump1eb44332009-09-09 15:08:12 +00003247 }
John McCall54abf7d2009-11-04 02:18:39 +00003248
Douglas Gregor926df6c2011-06-11 01:09:30 +00003249 // If this Objective-C method does not have a related result type, but we
3250 // are allowed to infer related result types, try to do so based on the
3251 // method family.
3252 ObjCInterfaceDecl *CurrentClass = dyn_cast<ObjCInterfaceDecl>(ClassDecl);
3253 if (!CurrentClass) {
3254 if (ObjCCategoryDecl *Cat = dyn_cast<ObjCCategoryDecl>(ClassDecl))
3255 CurrentClass = Cat->getClassInterface();
3256 else if (ObjCImplDecl *Impl = dyn_cast<ObjCImplDecl>(ClassDecl))
3257 CurrentClass = Impl->getClassInterface();
3258 else if (ObjCCategoryImplDecl *CatImpl
3259 = dyn_cast<ObjCCategoryImplDecl>(ClassDecl))
3260 CurrentClass = CatImpl->getClassInterface();
3261 }
John McCall6c2c2502011-07-22 02:45:48 +00003262
Douglas Gregore97179c2011-09-08 01:46:34 +00003263 ResultTypeCompatibilityKind RTC
3264 = CheckRelatedResultTypeCompatibility(*this, ObjCMethod, CurrentClass);
John McCall6c2c2502011-07-22 02:45:48 +00003265
Argyrios Kyrtzidise15db6f2012-05-09 16:12:57 +00003266 CheckObjCMethodOverrides(ObjCMethod, CurrentClass, RTC);
John McCall6c2c2502011-07-22 02:45:48 +00003267
John McCallf85e1932011-06-15 23:02:42 +00003268 bool ARCError = false;
David Blaikie4e4d0842012-03-11 07:00:24 +00003269 if (getLangOpts().ObjCAutoRefCount)
John McCallb8463812013-04-04 01:38:37 +00003270 ARCError = CheckARCMethodDecl(ObjCMethod);
John McCallf85e1932011-06-15 23:02:42 +00003271
Douglas Gregore97179c2011-09-08 01:46:34 +00003272 // Infer the related result type when possible.
Argyrios Kyrtzidise15db6f2012-05-09 16:12:57 +00003273 if (!ARCError && RTC == Sema::RTC_Compatible &&
Douglas Gregore97179c2011-09-08 01:46:34 +00003274 !ObjCMethod->hasRelatedResultType() &&
3275 LangOpts.ObjCInferRelatedResultType) {
Douglas Gregor926df6c2011-06-11 01:09:30 +00003276 bool InferRelatedResultType = false;
3277 switch (ObjCMethod->getMethodFamily()) {
3278 case OMF_None:
3279 case OMF_copy:
3280 case OMF_dealloc:
Nico Weber80cb6e62011-08-28 22:35:17 +00003281 case OMF_finalize:
Douglas Gregor926df6c2011-06-11 01:09:30 +00003282 case OMF_mutableCopy:
3283 case OMF_release:
3284 case OMF_retainCount:
Fariborz Jahanian9670e172011-07-05 22:38:59 +00003285 case OMF_performSelector:
Douglas Gregor926df6c2011-06-11 01:09:30 +00003286 break;
3287
3288 case OMF_alloc:
3289 case OMF_new:
3290 InferRelatedResultType = ObjCMethod->isClassMethod();
3291 break;
3292
3293 case OMF_init:
3294 case OMF_autorelease:
3295 case OMF_retain:
3296 case OMF_self:
3297 InferRelatedResultType = ObjCMethod->isInstanceMethod();
3298 break;
3299 }
3300
John McCall6c2c2502011-07-22 02:45:48 +00003301 if (InferRelatedResultType)
Douglas Gregor926df6c2011-06-11 01:09:30 +00003302 ObjCMethod->SetRelatedResultType();
Douglas Gregor926df6c2011-06-11 01:09:30 +00003303 }
Dmitri Gribenkoa5ef44f2012-07-11 21:38:39 +00003304
3305 ActOnDocumentableDecl(ObjCMethod);
3306
John McCalld226f652010-08-21 09:40:31 +00003307 return ObjCMethod;
Chris Lattner4d391482007-12-12 07:09:47 +00003308}
3309
Chris Lattnercc98eac2008-12-17 07:13:27 +00003310bool Sema::CheckObjCDeclScope(Decl *D) {
Fariborz Jahanian58a76492011-08-22 18:34:22 +00003311 // Following is also an error. But it is caused by a missing @end
3312 // and diagnostic is issued elsewhere.
Argyrios Kyrtzidisfce79eb2012-03-23 23:24:23 +00003313 if (isa<ObjCContainerDecl>(CurContext->getRedeclContext()))
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00003314 return false;
Argyrios Kyrtzidisfce79eb2012-03-23 23:24:23 +00003315
3316 // If we switched context to translation unit while we are still lexically in
3317 // an objc container, it means the parser missed emitting an error.
3318 if (isa<TranslationUnitDecl>(getCurLexicalContext()->getRedeclContext()))
3319 return false;
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00003320
Anders Carlsson15281452008-11-04 16:57:32 +00003321 Diag(D->getLocation(), diag::err_objc_decls_may_only_appear_in_global_scope);
3322 D->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00003323
Anders Carlsson15281452008-11-04 16:57:32 +00003324 return true;
3325}
Chris Lattnercc98eac2008-12-17 07:13:27 +00003326
James Dennett1dfbd922012-06-14 21:40:34 +00003327/// Called whenever \@defs(ClassName) is encountered in the source. Inserts the
Chris Lattnercc98eac2008-12-17 07:13:27 +00003328/// instance variables of ClassName into Decls.
John McCalld226f652010-08-21 09:40:31 +00003329void Sema::ActOnDefs(Scope *S, Decl *TagD, SourceLocation DeclStart,
Chris Lattnercc98eac2008-12-17 07:13:27 +00003330 IdentifierInfo *ClassName,
Chris Lattner5f9e2722011-07-23 10:55:15 +00003331 SmallVectorImpl<Decl*> &Decls) {
Chris Lattnercc98eac2008-12-17 07:13:27 +00003332 // Check that ClassName is a valid class
Douglas Gregorc83c6872010-04-15 22:33:43 +00003333 ObjCInterfaceDecl *Class = getObjCInterfaceDecl(ClassName, DeclStart);
Chris Lattnercc98eac2008-12-17 07:13:27 +00003334 if (!Class) {
3335 Diag(DeclStart, diag::err_undef_interface) << ClassName;
3336 return;
3337 }
John McCall260611a2012-06-20 06:18:46 +00003338 if (LangOpts.ObjCRuntime.isNonFragile()) {
Fariborz Jahanian0468fb92009-04-21 20:28:41 +00003339 Diag(DeclStart, diag::err_atdef_nonfragile_interface);
3340 return;
3341 }
Mike Stump1eb44332009-09-09 15:08:12 +00003342
Chris Lattnercc98eac2008-12-17 07:13:27 +00003343 // Collect the instance variables
Jordy Rosedb8264e2011-07-22 02:08:32 +00003344 SmallVector<const ObjCIvarDecl*, 32> Ivars;
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +00003345 Context.DeepCollectObjCIvars(Class, true, Ivars);
Fariborz Jahanian41833352009-06-04 17:08:55 +00003346 // For each ivar, create a fresh ObjCAtDefsFieldDecl.
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +00003347 for (unsigned i = 0; i < Ivars.size(); i++) {
Jordy Rosedb8264e2011-07-22 02:08:32 +00003348 const FieldDecl* ID = cast<FieldDecl>(Ivars[i]);
John McCalld226f652010-08-21 09:40:31 +00003349 RecordDecl *Record = dyn_cast<RecordDecl>(TagD);
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00003350 Decl *FD = ObjCAtDefsFieldDecl::Create(Context, Record,
3351 /*FIXME: StartL=*/ID->getLocation(),
3352 ID->getLocation(),
Fariborz Jahanian41833352009-06-04 17:08:55 +00003353 ID->getIdentifier(), ID->getType(),
3354 ID->getBitWidth());
John McCalld226f652010-08-21 09:40:31 +00003355 Decls.push_back(FD);
Fariborz Jahanian41833352009-06-04 17:08:55 +00003356 }
Mike Stump1eb44332009-09-09 15:08:12 +00003357
Chris Lattnercc98eac2008-12-17 07:13:27 +00003358 // Introduce all of these fields into the appropriate scope.
Chris Lattner5f9e2722011-07-23 10:55:15 +00003359 for (SmallVectorImpl<Decl*>::iterator D = Decls.begin();
Chris Lattnercc98eac2008-12-17 07:13:27 +00003360 D != Decls.end(); ++D) {
John McCalld226f652010-08-21 09:40:31 +00003361 FieldDecl *FD = cast<FieldDecl>(*D);
David Blaikie4e4d0842012-03-11 07:00:24 +00003362 if (getLangOpts().CPlusPlus)
Chris Lattnercc98eac2008-12-17 07:13:27 +00003363 PushOnScopeChains(cast<FieldDecl>(FD), S);
John McCalld226f652010-08-21 09:40:31 +00003364 else if (RecordDecl *Record = dyn_cast<RecordDecl>(TagD))
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003365 Record->addDecl(FD);
Chris Lattnercc98eac2008-12-17 07:13:27 +00003366 }
3367}
3368
Douglas Gregor160b5632010-04-26 17:32:49 +00003369/// \brief Build a type-check a new Objective-C exception variable declaration.
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00003370VarDecl *Sema::BuildObjCExceptionDecl(TypeSourceInfo *TInfo, QualType T,
3371 SourceLocation StartLoc,
3372 SourceLocation IdLoc,
3373 IdentifierInfo *Id,
Douglas Gregor160b5632010-04-26 17:32:49 +00003374 bool Invalid) {
3375 // ISO/IEC TR 18037 S6.7.3: "The type of an object with automatic storage
3376 // duration shall not be qualified by an address-space qualifier."
3377 // Since all parameters have automatic store duration, they can not have
3378 // an address space.
3379 if (T.getAddressSpace() != 0) {
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00003380 Diag(IdLoc, diag::err_arg_with_address_space);
Douglas Gregor160b5632010-04-26 17:32:49 +00003381 Invalid = true;
3382 }
3383
3384 // An @catch parameter must be an unqualified object pointer type;
3385 // FIXME: Recover from "NSObject foo" by inserting the * in "NSObject *foo"?
3386 if (Invalid) {
3387 // Don't do any further checking.
Douglas Gregorbe270a02010-04-26 17:57:08 +00003388 } else if (T->isDependentType()) {
3389 // Okay: we don't know what this type will instantiate to.
Douglas Gregor160b5632010-04-26 17:32:49 +00003390 } else if (!T->isObjCObjectPointerType()) {
3391 Invalid = true;
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00003392 Diag(IdLoc ,diag::err_catch_param_not_objc_type);
Douglas Gregor160b5632010-04-26 17:32:49 +00003393 } else if (T->isObjCQualifiedIdType()) {
3394 Invalid = true;
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00003395 Diag(IdLoc, diag::err_illegal_qualifiers_on_catch_parm);
Douglas Gregor160b5632010-04-26 17:32:49 +00003396 }
3397
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00003398 VarDecl *New = VarDecl::Create(Context, CurContext, StartLoc, IdLoc, Id,
Rafael Espindolad2615cc2013-04-03 19:27:57 +00003399 T, TInfo, SC_None);
Douglas Gregor324b54d2010-05-03 18:51:14 +00003400 New->setExceptionVariable(true);
3401
Douglas Gregor9aab9c42011-12-10 01:22:52 +00003402 // In ARC, infer 'retaining' for variables of retainable type.
David Blaikie4e4d0842012-03-11 07:00:24 +00003403 if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(New))
Douglas Gregor9aab9c42011-12-10 01:22:52 +00003404 Invalid = true;
3405
Douglas Gregor160b5632010-04-26 17:32:49 +00003406 if (Invalid)
3407 New->setInvalidDecl();
3408 return New;
3409}
3410
John McCalld226f652010-08-21 09:40:31 +00003411Decl *Sema::ActOnObjCExceptionDecl(Scope *S, Declarator &D) {
Douglas Gregor160b5632010-04-26 17:32:49 +00003412 const DeclSpec &DS = D.getDeclSpec();
3413
3414 // We allow the "register" storage class on exception variables because
3415 // GCC did, but we drop it completely. Any other storage class is an error.
3416 if (DS.getStorageClassSpec() == DeclSpec::SCS_register) {
3417 Diag(DS.getStorageClassSpecLoc(), diag::warn_register_objc_catch_parm)
3418 << FixItHint::CreateRemoval(SourceRange(DS.getStorageClassSpecLoc()));
Richard Smithec642442013-04-12 22:46:28 +00003419 } else if (DeclSpec::SCS SCS = DS.getStorageClassSpec()) {
Douglas Gregor160b5632010-04-26 17:32:49 +00003420 Diag(DS.getStorageClassSpecLoc(), diag::err_storage_spec_on_catch_parm)
Richard Smithec642442013-04-12 22:46:28 +00003421 << DeclSpec::getSpecifierName(SCS);
3422 }
3423 if (DeclSpec::TSCS TSCS = D.getDeclSpec().getThreadStorageClassSpec())
3424 Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(),
3425 diag::err_invalid_thread)
3426 << DeclSpec::getSpecifierName(TSCS);
Douglas Gregor160b5632010-04-26 17:32:49 +00003427 D.getMutableDeclSpec().ClearStorageClassSpecs();
3428
Richard Smithc7f81162013-03-18 22:52:47 +00003429 DiagnoseFunctionSpecifiers(D.getDeclSpec());
Douglas Gregor160b5632010-04-26 17:32:49 +00003430
3431 // Check that there are no default arguments inside the type of this
3432 // exception object (C++ only).
David Blaikie4e4d0842012-03-11 07:00:24 +00003433 if (getLangOpts().CPlusPlus)
Douglas Gregor160b5632010-04-26 17:32:49 +00003434 CheckExtraCXXDefaultArguments(D);
3435
Argyrios Kyrtzidis32153982011-06-28 03:01:15 +00003436 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
John McCallbf1a0282010-06-04 23:28:52 +00003437 QualType ExceptionType = TInfo->getType();
Douglas Gregor160b5632010-04-26 17:32:49 +00003438
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00003439 VarDecl *New = BuildObjCExceptionDecl(TInfo, ExceptionType,
3440 D.getSourceRange().getBegin(),
3441 D.getIdentifierLoc(),
3442 D.getIdentifier(),
Douglas Gregor160b5632010-04-26 17:32:49 +00003443 D.isInvalidType());
3444
3445 // Parameter declarators cannot be qualified (C++ [dcl.meaning]p1).
3446 if (D.getCXXScopeSpec().isSet()) {
3447 Diag(D.getIdentifierLoc(), diag::err_qualified_objc_catch_parm)
3448 << D.getCXXScopeSpec().getRange();
3449 New->setInvalidDecl();
3450 }
3451
3452 // Add the parameter declaration into this scope.
John McCalld226f652010-08-21 09:40:31 +00003453 S->AddDecl(New);
Douglas Gregor160b5632010-04-26 17:32:49 +00003454 if (D.getIdentifier())
3455 IdResolver.AddDecl(New);
3456
3457 ProcessDeclAttributes(S, New, D);
3458
3459 if (New->hasAttr<BlocksAttr>())
3460 Diag(New->getLocation(), diag::err_block_on_nonlocal);
John McCalld226f652010-08-21 09:40:31 +00003461 return New;
Douglas Gregor4e6c0d12010-04-23 23:01:43 +00003462}
Fariborz Jahanian786cd152010-04-27 17:18:58 +00003463
3464/// CollectIvarsToConstructOrDestruct - Collect those ivars which require
Fariborz Jahaniane4498c62010-04-28 16:11:27 +00003465/// initialization.
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +00003466void Sema::CollectIvarsToConstructOrDestruct(ObjCInterfaceDecl *OI,
Chris Lattner5f9e2722011-07-23 10:55:15 +00003467 SmallVectorImpl<ObjCIvarDecl*> &Ivars) {
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +00003468 for (ObjCIvarDecl *Iv = OI->all_declared_ivar_begin(); Iv;
3469 Iv= Iv->getNextIvar()) {
Fariborz Jahanian786cd152010-04-27 17:18:58 +00003470 QualType QT = Context.getBaseElementType(Iv->getType());
Douglas Gregor68dd3ee2010-05-20 02:24:22 +00003471 if (QT->isRecordType())
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +00003472 Ivars.push_back(Iv);
Fariborz Jahanian786cd152010-04-27 17:18:58 +00003473 }
3474}
Fariborz Jahaniane4498c62010-04-28 16:11:27 +00003475
Fariborz Jahanian3fe10412010-07-22 18:24:20 +00003476void Sema::DiagnoseUseOfUnimplementedSelectors() {
Douglas Gregor5b9dc7c2011-07-28 14:54:22 +00003477 // Load referenced selectors from the external source.
3478 if (ExternalSource) {
3479 SmallVector<std::pair<Selector, SourceLocation>, 4> Sels;
3480 ExternalSource->ReadReferencedSelectors(Sels);
3481 for (unsigned I = 0, N = Sels.size(); I != N; ++I)
3482 ReferencedSelectors[Sels[I].first] = Sels[I].second;
3483 }
3484
Fariborz Jahanianf98c6882013-05-30 21:48:58 +00003485 DiagnoseMismatchedMethodsInGlobalPool();
3486
Fariborz Jahanian8b789132011-02-04 23:19:27 +00003487 // Warning will be issued only when selector table is
3488 // generated (which means there is at lease one implementation
3489 // in the TU). This is to match gcc's behavior.
3490 if (ReferencedSelectors.empty() ||
3491 !Context.AnyObjCImplementation())
Fariborz Jahanian3fe10412010-07-22 18:24:20 +00003492 return;
3493 for (llvm::DenseMap<Selector, SourceLocation>::iterator S =
3494 ReferencedSelectors.begin(),
3495 E = ReferencedSelectors.end(); S != E; ++S) {
3496 Selector Sel = (*S).first;
3497 if (!LookupImplementedMethodInGlobalPool(Sel))
3498 Diag((*S).second, diag::warn_unimplemented_selector) << Sel;
3499 }
3500 return;
3501}
Fariborz Jahanian4e7f00c2013-10-25 21:44:50 +00003502
3503ObjCIvarDecl *
3504Sema::GetIvarBackingPropertyAccessor(const ObjCMethodDecl *Method,
3505 const ObjCPropertyDecl *&PDecl) const {
3506
3507 const ObjCInterfaceDecl *IDecl = Method->getClassInterface();
3508 if (!IDecl)
3509 return 0;
3510 Method = IDecl->lookupMethod(Method->getSelector(), true);
3511 if (!Method || !Method->isPropertyAccessor())
3512 return 0;
3513 if ((PDecl = Method->findPropertyDecl()))
3514 return PDecl->getPropertyIvarDecl();
3515 return 0;
3516}
3517
3518void Sema::DiagnoseUnusedBackingIvarInAccessor(Scope *S) {
3519 if (S->hasUnrecoverableErrorOccurred() || !S->isInObjcMethodScope())
3520 return;
3521
3522 const ObjCMethodDecl *CurMethod = getCurMethodDecl();
3523 if (!CurMethod)
3524 return;
3525 const ObjCPropertyDecl *PDecl;
3526 const ObjCIvarDecl *IV = GetIvarBackingPropertyAccessor(CurMethod, PDecl);
3527 if (IV && !IV->getBackingIvarReferencedInAccessor()) {
3528 Diag(getCurMethodDecl()->getLocation(), diag::warn_unused_property_backing_ivar)
3529 << IV->getDeclName();
3530 Diag(PDecl->getLocation(), diag::note_property_declare);
3531 }
3532}