Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1 | //===--- SemaDeclObjC.cpp - Semantic Analysis for ObjC Declarations -------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 0bc735f | 2007-12-29 19:59:25 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements semantic analysis for Objective C declarations. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
John McCall | 2d88708 | 2010-08-25 22:03:47 +0000 | [diff] [blame] | 14 | #include "clang/Sema/SemaInternal.h" |
Douglas Gregor | e737f50 | 2010-08-12 20:07:10 +0000 | [diff] [blame] | 15 | #include "clang/Sema/Lookup.h" |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 16 | #include "clang/Sema/ExternalSemaSource.h" |
John McCall | 5f1e094 | 2010-08-24 08:50:51 +0000 | [diff] [blame] | 17 | #include "clang/Sema/Scope.h" |
John McCall | 781472f | 2010-08-25 08:40:02 +0000 | [diff] [blame] | 18 | #include "clang/Sema/ScopeInfo.h" |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 19 | #include "clang/AST/ASTConsumer.h" |
Steve Naroff | ca33129 | 2009-03-03 14:49:36 +0000 | [diff] [blame] | 20 | #include "clang/AST/Expr.h" |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 21 | #include "clang/AST/ExprObjC.h" |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 22 | #include "clang/AST/ASTContext.h" |
| 23 | #include "clang/AST/DeclObjC.h" |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 24 | #include "clang/Basic/SourceManager.h" |
John McCall | 1951085 | 2010-08-20 18:27:03 +0000 | [diff] [blame] | 25 | #include "clang/Sema/DeclSpec.h" |
John McCall | 50df6ae | 2010-08-25 07:03:20 +0000 | [diff] [blame] | 26 | #include "llvm/ADT/DenseSet.h" |
| 27 | |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 28 | using namespace clang; |
| 29 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 30 | /// Check whether the given method, which must be in the 'init' |
| 31 | /// family, is a valid member of that family. |
| 32 | /// |
| 33 | /// \param receiverTypeIfCall - if null, check this as if declaring it; |
| 34 | /// if non-null, check this as if making a call to it with the given |
| 35 | /// receiver type |
| 36 | /// |
| 37 | /// \return true to indicate that there was an error and appropriate |
| 38 | /// actions were taken |
| 39 | bool Sema::checkInitMethod(ObjCMethodDecl *method, |
| 40 | QualType receiverTypeIfCall) { |
| 41 | if (method->isInvalidDecl()) return true; |
| 42 | |
| 43 | // This castAs is safe: methods that don't return an object |
| 44 | // pointer won't be inferred as inits and will reject an explicit |
| 45 | // objc_method_family(init). |
| 46 | |
| 47 | // We ignore protocols here. Should we? What about Class? |
| 48 | |
| 49 | const ObjCObjectType *result = method->getResultType() |
| 50 | ->castAs<ObjCObjectPointerType>()->getObjectType(); |
| 51 | |
| 52 | if (result->isObjCId()) { |
| 53 | return false; |
| 54 | } else if (result->isObjCClass()) { |
| 55 | // fall through: always an error |
| 56 | } else { |
| 57 | ObjCInterfaceDecl *resultClass = result->getInterface(); |
| 58 | assert(resultClass && "unexpected object type!"); |
| 59 | |
| 60 | // It's okay for the result type to still be a forward declaration |
| 61 | // if we're checking an interface declaration. |
| 62 | if (resultClass->isForwardDecl()) { |
| 63 | if (receiverTypeIfCall.isNull() && |
| 64 | !isa<ObjCImplementationDecl>(method->getDeclContext())) |
| 65 | return false; |
| 66 | |
| 67 | // Otherwise, we try to compare class types. |
| 68 | } else { |
| 69 | // If this method was declared in a protocol, we can't check |
| 70 | // anything unless we have a receiver type that's an interface. |
| 71 | const ObjCInterfaceDecl *receiverClass = 0; |
| 72 | if (isa<ObjCProtocolDecl>(method->getDeclContext())) { |
| 73 | if (receiverTypeIfCall.isNull()) |
| 74 | return false; |
| 75 | |
| 76 | receiverClass = receiverTypeIfCall->castAs<ObjCObjectPointerType>() |
| 77 | ->getInterfaceDecl(); |
| 78 | |
| 79 | // This can be null for calls to e.g. id<Foo>. |
| 80 | if (!receiverClass) return false; |
| 81 | } else { |
| 82 | receiverClass = method->getClassInterface(); |
| 83 | assert(receiverClass && "method not associated with a class!"); |
| 84 | } |
| 85 | |
| 86 | // If either class is a subclass of the other, it's fine. |
| 87 | if (receiverClass->isSuperClassOf(resultClass) || |
| 88 | resultClass->isSuperClassOf(receiverClass)) |
| 89 | return false; |
| 90 | } |
| 91 | } |
| 92 | |
| 93 | SourceLocation loc = method->getLocation(); |
| 94 | |
| 95 | // If we're in a system header, and this is not a call, just make |
| 96 | // the method unusable. |
| 97 | if (receiverTypeIfCall.isNull() && getSourceManager().isInSystemHeader(loc)) { |
| 98 | method->addAttr(new (Context) UnavailableAttr(loc, Context, |
| 99 | "init method returns a type unrelated to its receiver type")); |
| 100 | return true; |
| 101 | } |
| 102 | |
| 103 | // Otherwise, it's an error. |
| 104 | Diag(loc, diag::err_arc_init_method_unrelated_result_type); |
| 105 | method->setInvalidDecl(); |
| 106 | return true; |
| 107 | } |
| 108 | |
Fariborz Jahanian | 3240fe3 | 2011-09-27 22:35:36 +0000 | [diff] [blame] | 109 | void Sema::CheckObjCMethodOverride(ObjCMethodDecl *NewMethod, |
Douglas Gregor | 926df6c | 2011-06-11 01:09:30 +0000 | [diff] [blame] | 110 | const ObjCMethodDecl *Overridden, |
| 111 | bool IsImplementation) { |
| 112 | if (Overridden->hasRelatedResultType() && |
| 113 | !NewMethod->hasRelatedResultType()) { |
| 114 | // This can only happen when the method follows a naming convention that |
| 115 | // implies a related result type, and the original (overridden) method has |
| 116 | // a suitable return type, but the new (overriding) method does not have |
| 117 | // a suitable return type. |
| 118 | QualType ResultType = NewMethod->getResultType(); |
| 119 | SourceRange ResultTypeRange; |
| 120 | if (const TypeSourceInfo *ResultTypeInfo |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 121 | = NewMethod->getResultTypeSourceInfo()) |
Douglas Gregor | 926df6c | 2011-06-11 01:09:30 +0000 | [diff] [blame] | 122 | ResultTypeRange = ResultTypeInfo->getTypeLoc().getSourceRange(); |
| 123 | |
| 124 | // Figure out which class this method is part of, if any. |
| 125 | ObjCInterfaceDecl *CurrentClass |
| 126 | = dyn_cast<ObjCInterfaceDecl>(NewMethod->getDeclContext()); |
| 127 | if (!CurrentClass) { |
| 128 | DeclContext *DC = NewMethod->getDeclContext(); |
| 129 | if (ObjCCategoryDecl *Cat = dyn_cast<ObjCCategoryDecl>(DC)) |
| 130 | CurrentClass = Cat->getClassInterface(); |
| 131 | else if (ObjCImplDecl *Impl = dyn_cast<ObjCImplDecl>(DC)) |
| 132 | CurrentClass = Impl->getClassInterface(); |
| 133 | else if (ObjCCategoryImplDecl *CatImpl |
| 134 | = dyn_cast<ObjCCategoryImplDecl>(DC)) |
| 135 | CurrentClass = CatImpl->getClassInterface(); |
| 136 | } |
| 137 | |
| 138 | if (CurrentClass) { |
| 139 | Diag(NewMethod->getLocation(), |
| 140 | diag::warn_related_result_type_compatibility_class) |
| 141 | << Context.getObjCInterfaceType(CurrentClass) |
| 142 | << ResultType |
| 143 | << ResultTypeRange; |
| 144 | } else { |
| 145 | Diag(NewMethod->getLocation(), |
| 146 | diag::warn_related_result_type_compatibility_protocol) |
| 147 | << ResultType |
| 148 | << ResultTypeRange; |
| 149 | } |
| 150 | |
Douglas Gregor | e97179c | 2011-09-08 01:46:34 +0000 | [diff] [blame] | 151 | if (ObjCMethodFamily Family = Overridden->getMethodFamily()) |
| 152 | Diag(Overridden->getLocation(), |
| 153 | diag::note_related_result_type_overridden_family) |
| 154 | << Family; |
| 155 | else |
| 156 | Diag(Overridden->getLocation(), |
| 157 | diag::note_related_result_type_overridden); |
Douglas Gregor | 926df6c | 2011-06-11 01:09:30 +0000 | [diff] [blame] | 158 | } |
Fariborz Jahanian | 3240fe3 | 2011-09-27 22:35:36 +0000 | [diff] [blame] | 159 | if (getLangOptions().ObjCAutoRefCount) { |
| 160 | if ((NewMethod->hasAttr<NSReturnsRetainedAttr>() != |
| 161 | Overridden->hasAttr<NSReturnsRetainedAttr>())) { |
| 162 | Diag(NewMethod->getLocation(), |
| 163 | diag::err_nsreturns_retained_attribute_mismatch) << 1; |
| 164 | Diag(Overridden->getLocation(), diag::note_previous_decl) |
| 165 | << "method"; |
| 166 | } |
| 167 | if ((NewMethod->hasAttr<NSReturnsNotRetainedAttr>() != |
| 168 | Overridden->hasAttr<NSReturnsNotRetainedAttr>())) { |
| 169 | Diag(NewMethod->getLocation(), |
| 170 | diag::err_nsreturns_retained_attribute_mismatch) << 0; |
| 171 | Diag(Overridden->getLocation(), diag::note_previous_decl) |
| 172 | << "method"; |
| 173 | } |
Argyrios Kyrtzidis | 491306a | 2011-10-03 06:37:04 +0000 | [diff] [blame] | 174 | ObjCMethodDecl::param_const_iterator oi = Overridden->param_begin(); |
| 175 | for (ObjCMethodDecl::param_iterator |
| 176 | ni = NewMethod->param_begin(), ne = NewMethod->param_end(); |
Fariborz Jahanian | 3240fe3 | 2011-09-27 22:35:36 +0000 | [diff] [blame] | 177 | ni != ne; ++ni, ++oi) { |
Argyrios Kyrtzidis | 491306a | 2011-10-03 06:37:04 +0000 | [diff] [blame] | 178 | const ParmVarDecl *oldDecl = (*oi); |
Fariborz Jahanian | 3240fe3 | 2011-09-27 22:35:36 +0000 | [diff] [blame] | 179 | ParmVarDecl *newDecl = (*ni); |
| 180 | if (newDecl->hasAttr<NSConsumedAttr>() != |
| 181 | oldDecl->hasAttr<NSConsumedAttr>()) { |
| 182 | Diag(newDecl->getLocation(), |
| 183 | diag::err_nsconsumed_attribute_mismatch); |
| 184 | Diag(oldDecl->getLocation(), diag::note_previous_decl) |
| 185 | << "parameter"; |
| 186 | } |
| 187 | } |
| 188 | } |
Douglas Gregor | 926df6c | 2011-06-11 01:09:30 +0000 | [diff] [blame] | 189 | } |
| 190 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 191 | /// \brief Check a method declaration for compatibility with the Objective-C |
| 192 | /// ARC conventions. |
| 193 | static bool CheckARCMethodDecl(Sema &S, ObjCMethodDecl *method) { |
| 194 | ObjCMethodFamily family = method->getMethodFamily(); |
| 195 | switch (family) { |
| 196 | case OMF_None: |
| 197 | case OMF_dealloc: |
Nico Weber | 80cb6e6 | 2011-08-28 22:35:17 +0000 | [diff] [blame] | 198 | case OMF_finalize: |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 199 | case OMF_retain: |
| 200 | case OMF_release: |
| 201 | case OMF_autorelease: |
| 202 | case OMF_retainCount: |
| 203 | case OMF_self: |
John McCall | 6c2c250 | 2011-07-22 02:45:48 +0000 | [diff] [blame] | 204 | case OMF_performSelector: |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 205 | return false; |
| 206 | |
| 207 | case OMF_init: |
| 208 | // If the method doesn't obey the init rules, don't bother annotating it. |
| 209 | if (S.checkInitMethod(method, QualType())) |
| 210 | return true; |
| 211 | |
| 212 | method->addAttr(new (S.Context) NSConsumesSelfAttr(SourceLocation(), |
| 213 | S.Context)); |
| 214 | |
| 215 | // Don't add a second copy of this attribute, but otherwise don't |
| 216 | // let it be suppressed. |
| 217 | if (method->hasAttr<NSReturnsRetainedAttr>()) |
| 218 | return false; |
| 219 | break; |
| 220 | |
| 221 | case OMF_alloc: |
| 222 | case OMF_copy: |
| 223 | case OMF_mutableCopy: |
| 224 | case OMF_new: |
| 225 | if (method->hasAttr<NSReturnsRetainedAttr>() || |
| 226 | method->hasAttr<NSReturnsNotRetainedAttr>() || |
| 227 | method->hasAttr<NSReturnsAutoreleasedAttr>()) |
| 228 | return false; |
| 229 | break; |
| 230 | } |
| 231 | |
| 232 | method->addAttr(new (S.Context) NSReturnsRetainedAttr(SourceLocation(), |
| 233 | S.Context)); |
| 234 | return false; |
| 235 | } |
| 236 | |
Fariborz Jahanian | 5ac96d5 | 2011-02-15 17:49:58 +0000 | [diff] [blame] | 237 | static void DiagnoseObjCImplementedDeprecations(Sema &S, |
| 238 | NamedDecl *ND, |
| 239 | SourceLocation ImplLoc, |
| 240 | int select) { |
Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 241 | if (ND && ND->isDeprecated()) { |
Fariborz Jahanian | 98d810e | 2011-02-16 00:30:31 +0000 | [diff] [blame] | 242 | S.Diag(ImplLoc, diag::warn_deprecated_def) << select; |
Fariborz Jahanian | 5ac96d5 | 2011-02-15 17:49:58 +0000 | [diff] [blame] | 243 | if (select == 0) |
| 244 | S.Diag(ND->getLocation(), diag::note_method_declared_at); |
| 245 | else |
| 246 | S.Diag(ND->getLocation(), diag::note_previous_decl) << "class"; |
| 247 | } |
| 248 | } |
| 249 | |
Fariborz Jahanian | 140ab23 | 2011-08-31 17:37:55 +0000 | [diff] [blame] | 250 | /// AddAnyMethodToGlobalPool - Add any method, instance or factory to global |
| 251 | /// pool. |
| 252 | void Sema::AddAnyMethodToGlobalPool(Decl *D) { |
| 253 | ObjCMethodDecl *MDecl = dyn_cast_or_null<ObjCMethodDecl>(D); |
| 254 | |
| 255 | // If we don't have a valid method decl, simply return. |
| 256 | if (!MDecl) |
| 257 | return; |
| 258 | if (MDecl->isInstanceMethod()) |
| 259 | AddInstanceMethodToGlobalPool(MDecl, true); |
| 260 | else |
| 261 | AddFactoryMethodToGlobalPool(MDecl, true); |
| 262 | } |
| 263 | |
Steve Naroff | ebf6443 | 2009-02-28 16:59:13 +0000 | [diff] [blame] | 264 | /// ActOnStartOfObjCMethodDef - This routine sets up parameters; invisible |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 265 | /// and user declared, in the method definition's AST. |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 266 | void Sema::ActOnStartOfObjCMethodDef(Scope *FnBodyScope, Decl *D) { |
Argyrios Kyrtzidis | 53d0ea5 | 2008-06-28 06:07:14 +0000 | [diff] [blame] | 267 | assert(getCurMethodDecl() == 0 && "Method parsing confused"); |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 268 | ObjCMethodDecl *MDecl = dyn_cast_or_null<ObjCMethodDecl>(D); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 269 | |
Steve Naroff | 394f3f4 | 2008-07-25 17:57:26 +0000 | [diff] [blame] | 270 | // If we don't have a valid method decl, simply return. |
| 271 | if (!MDecl) |
| 272 | return; |
Steve Naroff | a56f616 | 2007-12-18 01:30:32 +0000 | [diff] [blame] | 273 | |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 274 | // Allow all of Sema to see that we are entering a method definition. |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 275 | PushDeclContext(FnBodyScope, MDecl); |
Douglas Gregor | 9ea9bdb | 2010-03-01 23:15:13 +0000 | [diff] [blame] | 276 | PushFunctionScope(); |
| 277 | |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 278 | // Create Decl objects for each parameter, entrring them in the scope for |
| 279 | // binding to their use. |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 280 | |
| 281 | // Insert the invisible arguments, self and _cmd! |
Fariborz Jahanian | fef30b5 | 2008-12-09 20:23:04 +0000 | [diff] [blame] | 282 | MDecl->createImplicitParams(Context, MDecl->getClassInterface()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 283 | |
Daniel Dunbar | 451318c | 2008-08-26 06:07:48 +0000 | [diff] [blame] | 284 | PushOnScopeChains(MDecl->getSelfDecl(), FnBodyScope); |
| 285 | PushOnScopeChains(MDecl->getCmdDecl(), FnBodyScope); |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 286 | |
Chris Lattner | 8123a95 | 2008-04-10 02:22:51 +0000 | [diff] [blame] | 287 | // Introduce all of the other parameters into this scope. |
Chris Lattner | 89951a8 | 2009-02-20 18:43:26 +0000 | [diff] [blame] | 288 | for (ObjCMethodDecl::param_iterator PI = MDecl->param_begin(), |
Fariborz Jahanian | 23c0104 | 2010-09-17 22:07:07 +0000 | [diff] [blame] | 289 | E = MDecl->param_end(); PI != E; ++PI) { |
| 290 | ParmVarDecl *Param = (*PI); |
| 291 | if (!Param->isInvalidDecl() && |
| 292 | RequireCompleteType(Param->getLocation(), Param->getType(), |
| 293 | diag::err_typecheck_decl_incomplete_type)) |
| 294 | Param->setInvalidDecl(); |
Chris Lattner | 89951a8 | 2009-02-20 18:43:26 +0000 | [diff] [blame] | 295 | if ((*PI)->getIdentifier()) |
| 296 | PushOnScopeChains(*PI, FnBodyScope); |
Fariborz Jahanian | 23c0104 | 2010-09-17 22:07:07 +0000 | [diff] [blame] | 297 | } |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 298 | |
| 299 | // In ARC, disallow definition of retain/release/autorelease/retainCount |
| 300 | if (getLangOptions().ObjCAutoRefCount) { |
| 301 | switch (MDecl->getMethodFamily()) { |
| 302 | case OMF_retain: |
| 303 | case OMF_retainCount: |
| 304 | case OMF_release: |
| 305 | case OMF_autorelease: |
| 306 | Diag(MDecl->getLocation(), diag::err_arc_illegal_method_def) |
| 307 | << MDecl->getSelector(); |
| 308 | break; |
| 309 | |
| 310 | case OMF_None: |
| 311 | case OMF_dealloc: |
Nico Weber | 80cb6e6 | 2011-08-28 22:35:17 +0000 | [diff] [blame] | 312 | case OMF_finalize: |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 313 | case OMF_alloc: |
| 314 | case OMF_init: |
| 315 | case OMF_mutableCopy: |
| 316 | case OMF_copy: |
| 317 | case OMF_new: |
| 318 | case OMF_self: |
Fariborz Jahanian | 9670e17 | 2011-07-05 22:38:59 +0000 | [diff] [blame] | 319 | case OMF_performSelector: |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 320 | break; |
| 321 | } |
| 322 | } |
| 323 | |
Nico Weber | 9a1ecf0 | 2011-08-22 17:25:57 +0000 | [diff] [blame] | 324 | // Warn on deprecated methods under -Wdeprecated-implementations, |
| 325 | // and prepare for warning on missing super calls. |
| 326 | if (ObjCInterfaceDecl *IC = MDecl->getClassInterface()) { |
Fariborz Jahanian | 5ac96d5 | 2011-02-15 17:49:58 +0000 | [diff] [blame] | 327 | if (ObjCMethodDecl *IMD = |
Fariborz Jahanian | b1224f6 | 2011-02-15 00:59:30 +0000 | [diff] [blame] | 328 | IC->lookupMethod(MDecl->getSelector(), MDecl->isInstanceMethod())) |
Fariborz Jahanian | 5ac96d5 | 2011-02-15 17:49:58 +0000 | [diff] [blame] | 329 | DiagnoseObjCImplementedDeprecations(*this, |
| 330 | dyn_cast<NamedDecl>(IMD), |
| 331 | MDecl->getLocation(), 0); |
Nico Weber | 9a1ecf0 | 2011-08-22 17:25:57 +0000 | [diff] [blame] | 332 | |
Nico Weber | 80cb6e6 | 2011-08-28 22:35:17 +0000 | [diff] [blame] | 333 | // If this is "dealloc" or "finalize", set some bit here. |
Nico Weber | 9a1ecf0 | 2011-08-22 17:25:57 +0000 | [diff] [blame] | 334 | // Then in ActOnSuperMessage() (SemaExprObjC), set it back to false. |
| 335 | // Finally, in ActOnFinishFunctionBody() (SemaDecl), warn if flag is set. |
| 336 | // Only do this if the current class actually has a superclass. |
Nico Weber | 80cb6e6 | 2011-08-28 22:35:17 +0000 | [diff] [blame] | 337 | if (IC->getSuperClass()) { |
Ted Kremenek | 4eb14ca | 2011-08-22 19:07:43 +0000 | [diff] [blame] | 338 | ObjCShouldCallSuperDealloc = |
Ted Kremenek | 8cd8de4 | 2011-09-28 19:32:29 +0000 | [diff] [blame] | 339 | !(Context.getLangOptions().ObjCAutoRefCount || |
| 340 | Context.getLangOptions().getGC() == LangOptions::GCOnly) && |
Ted Kremenek | 4eb14ca | 2011-08-22 19:07:43 +0000 | [diff] [blame] | 341 | MDecl->getMethodFamily() == OMF_dealloc; |
Nico Weber | 27f0776 | 2011-08-29 22:59:14 +0000 | [diff] [blame] | 342 | ObjCShouldCallSuperFinalize = |
Ted Kremenek | 8cd8de4 | 2011-09-28 19:32:29 +0000 | [diff] [blame] | 343 | Context.getLangOptions().getGC() != LangOptions::NonGC && |
Nico Weber | 27f0776 | 2011-08-29 22:59:14 +0000 | [diff] [blame] | 344 | MDecl->getMethodFamily() == OMF_finalize; |
Nico Weber | 80cb6e6 | 2011-08-28 22:35:17 +0000 | [diff] [blame] | 345 | } |
Nico Weber | 9a1ecf0 | 2011-08-22 17:25:57 +0000 | [diff] [blame] | 346 | } |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 347 | } |
| 348 | |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 349 | Decl *Sema:: |
Chris Lattner | 7caeabd | 2008-07-21 22:17:28 +0000 | [diff] [blame] | 350 | ActOnStartClassInterface(SourceLocation AtInterfaceLoc, |
| 351 | IdentifierInfo *ClassName, SourceLocation ClassLoc, |
| 352 | IdentifierInfo *SuperName, SourceLocation SuperLoc, |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 353 | Decl * const *ProtoRefs, unsigned NumProtoRefs, |
Douglas Gregor | 18df52b | 2010-01-16 15:02:53 +0000 | [diff] [blame] | 354 | const SourceLocation *ProtoLocs, |
Chris Lattner | 7caeabd | 2008-07-21 22:17:28 +0000 | [diff] [blame] | 355 | SourceLocation EndProtoLoc, AttributeList *AttrList) { |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 356 | assert(ClassName && "Missing class identifier"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 357 | |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 358 | // Check for another declaration kind with the same name. |
Douglas Gregor | c83c687 | 2010-04-15 22:33:43 +0000 | [diff] [blame] | 359 | NamedDecl *PrevDecl = LookupSingleName(TUScope, ClassName, ClassLoc, |
Douglas Gregor | c0b3964 | 2010-04-15 23:40:53 +0000 | [diff] [blame] | 360 | LookupOrdinaryName, ForRedeclaration); |
Douglas Gregor | 72c3f31 | 2008-12-05 18:15:24 +0000 | [diff] [blame] | 361 | |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 362 | if (PrevDecl && !isa<ObjCInterfaceDecl>(PrevDecl)) { |
Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 363 | Diag(ClassLoc, diag::err_redefinition_different_kind) << ClassName; |
Chris Lattner | 5f4a682 | 2008-11-23 23:12:31 +0000 | [diff] [blame] | 364 | Diag(PrevDecl->getLocation(), diag::note_previous_definition); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 365 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 366 | |
Douglas Gregor | deacbdc | 2010-08-11 12:19:30 +0000 | [diff] [blame] | 367 | ObjCInterfaceDecl* IDecl = dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl); |
| 368 | if (IDecl) { |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 369 | // Class already seen. Is it a forward declaration? |
Douglas Gregor | deacbdc | 2010-08-11 12:19:30 +0000 | [diff] [blame] | 370 | if (!IDecl->isForwardDecl()) { |
| 371 | IDecl->setInvalidDecl(); |
| 372 | Diag(AtInterfaceLoc, diag::err_duplicate_class_def)<<IDecl->getDeclName(); |
| 373 | Diag(IDecl->getLocation(), diag::note_previous_definition); |
Chris Lattner | b8b96af | 2008-11-23 22:46:27 +0000 | [diff] [blame] | 374 | |
Douglas Gregor | deacbdc | 2010-08-11 12:19:30 +0000 | [diff] [blame] | 375 | // Return the previous class interface. |
| 376 | // FIXME: don't leak the objects passed in! |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 377 | return IDecl; |
Douglas Gregor | deacbdc | 2010-08-11 12:19:30 +0000 | [diff] [blame] | 378 | } else { |
Argyrios Kyrtzidis | 1711fc9 | 2011-10-04 04:48:02 +0000 | [diff] [blame] | 379 | IDecl->setLocation(ClassLoc); |
Douglas Gregor | deacbdc | 2010-08-11 12:19:30 +0000 | [diff] [blame] | 380 | IDecl->setForwardDecl(false); |
Argyrios Kyrtzidis | 1711fc9 | 2011-10-04 04:48:02 +0000 | [diff] [blame] | 381 | IDecl->setAtStartLoc(AtInterfaceLoc); |
Sebastian Redl | 0b17c61 | 2010-08-13 00:28:03 +0000 | [diff] [blame] | 382 | // If the forward decl was in a PCH, we need to write it again in a |
Sebastian Redl | 3c7f413 | 2010-08-18 23:57:06 +0000 | [diff] [blame] | 383 | // dependent AST file. |
Sebastian Redl | 0b17c61 | 2010-08-13 00:28:03 +0000 | [diff] [blame] | 384 | IDecl->setChangedSinceDeserialization(true); |
Douglas Gregor | deacbdc | 2010-08-11 12:19:30 +0000 | [diff] [blame] | 385 | |
| 386 | // Since this ObjCInterfaceDecl was created by a forward declaration, |
| 387 | // we now add it to the DeclContext since it wasn't added before |
| 388 | // (see ActOnForwardClassDeclaration). |
| 389 | IDecl->setLexicalDeclContext(CurContext); |
| 390 | CurContext->addDecl(IDecl); |
| 391 | |
| 392 | if (AttrList) |
| 393 | ProcessDeclAttributeList(TUScope, IDecl, AttrList); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 394 | } |
Douglas Gregor | deacbdc | 2010-08-11 12:19:30 +0000 | [diff] [blame] | 395 | } else { |
| 396 | IDecl = ObjCInterfaceDecl::Create(Context, CurContext, AtInterfaceLoc, |
| 397 | ClassName, ClassLoc); |
| 398 | if (AttrList) |
| 399 | ProcessDeclAttributeList(TUScope, IDecl, AttrList); |
| 400 | |
| 401 | PushOnScopeChains(IDecl, TUScope); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 402 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 403 | |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 404 | if (SuperName) { |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 405 | // Check if a different kind of symbol declared in this scope. |
Douglas Gregor | c83c687 | 2010-04-15 22:33:43 +0000 | [diff] [blame] | 406 | PrevDecl = LookupSingleName(TUScope, SuperName, SuperLoc, |
| 407 | LookupOrdinaryName); |
Douglas Gregor | f06cdae | 2010-01-03 18:01:57 +0000 | [diff] [blame] | 408 | |
| 409 | if (!PrevDecl) { |
| 410 | // Try to correct for a typo in the superclass name. |
Douglas Gregor | d8bba9c | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 411 | TypoCorrection Corrected = CorrectTypo( |
| 412 | DeclarationNameInfo(SuperName, SuperLoc), LookupOrdinaryName, TUScope, |
| 413 | NULL, NULL, false, CTC_NoKeywords); |
| 414 | if ((PrevDecl = Corrected.getCorrectionDeclAs<ObjCInterfaceDecl>())) { |
Douglas Gregor | f06cdae | 2010-01-03 18:01:57 +0000 | [diff] [blame] | 415 | Diag(SuperLoc, diag::err_undef_superclass_suggest) |
| 416 | << SuperName << ClassName << PrevDecl->getDeclName(); |
Douglas Gregor | 67dd1d4 | 2010-01-07 00:17:44 +0000 | [diff] [blame] | 417 | Diag(PrevDecl->getLocation(), diag::note_previous_decl) |
| 418 | << PrevDecl->getDeclName(); |
Douglas Gregor | f06cdae | 2010-01-03 18:01:57 +0000 | [diff] [blame] | 419 | } |
| 420 | } |
| 421 | |
Fariborz Jahanian | fdee089 | 2009-07-09 22:08:26 +0000 | [diff] [blame] | 422 | if (PrevDecl == IDecl) { |
| 423 | Diag(SuperLoc, diag::err_recursive_superclass) |
| 424 | << SuperName << ClassName << SourceRange(AtInterfaceLoc, ClassLoc); |
| 425 | IDecl->setLocEnd(ClassLoc); |
Mike Stump | ac5fc7c | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 426 | } else { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 427 | ObjCInterfaceDecl *SuperClassDecl = |
Fariborz Jahanian | fdee089 | 2009-07-09 22:08:26 +0000 | [diff] [blame] | 428 | dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl); |
Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 429 | |
Fariborz Jahanian | fdee089 | 2009-07-09 22:08:26 +0000 | [diff] [blame] | 430 | // Diagnose classes that inherit from deprecated classes. |
| 431 | if (SuperClassDecl) |
| 432 | (void)DiagnoseUseOfDecl(SuperClassDecl, SuperLoc); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 433 | |
Fariborz Jahanian | fdee089 | 2009-07-09 22:08:26 +0000 | [diff] [blame] | 434 | if (PrevDecl && SuperClassDecl == 0) { |
| 435 | // The previous declaration was not a class decl. Check if we have a |
| 436 | // typedef. If we do, get the underlying class type. |
Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 437 | if (const TypedefNameDecl *TDecl = |
| 438 | dyn_cast_or_null<TypedefNameDecl>(PrevDecl)) { |
Fariborz Jahanian | fdee089 | 2009-07-09 22:08:26 +0000 | [diff] [blame] | 439 | QualType T = TDecl->getUnderlyingType(); |
John McCall | c12c5bb | 2010-05-15 11:32:37 +0000 | [diff] [blame] | 440 | if (T->isObjCObjectType()) { |
Douglas Gregor | deacbdc | 2010-08-11 12:19:30 +0000 | [diff] [blame] | 441 | if (NamedDecl *IDecl = T->getAs<ObjCObjectType>()->getInterface()) |
| 442 | SuperClassDecl = dyn_cast<ObjCInterfaceDecl>(IDecl); |
Fariborz Jahanian | fdee089 | 2009-07-09 22:08:26 +0000 | [diff] [blame] | 443 | } |
| 444 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 445 | |
Fariborz Jahanian | fdee089 | 2009-07-09 22:08:26 +0000 | [diff] [blame] | 446 | // This handles the following case: |
| 447 | // |
| 448 | // typedef int SuperClass; |
| 449 | // @interface MyClass : SuperClass {} @end |
| 450 | // |
| 451 | if (!SuperClassDecl) { |
| 452 | Diag(SuperLoc, diag::err_redefinition_different_kind) << SuperName; |
| 453 | Diag(PrevDecl->getLocation(), diag::note_previous_definition); |
Steve Naroff | 818cb9e | 2009-02-04 17:14:05 +0000 | [diff] [blame] | 454 | } |
| 455 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 456 | |
Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 457 | if (!dyn_cast_or_null<TypedefNameDecl>(PrevDecl)) { |
Fariborz Jahanian | fdee089 | 2009-07-09 22:08:26 +0000 | [diff] [blame] | 458 | if (!SuperClassDecl) |
| 459 | Diag(SuperLoc, diag::err_undef_superclass) |
| 460 | << SuperName << ClassName << SourceRange(AtInterfaceLoc, ClassLoc); |
Fariborz Jahanian | a813973 | 2011-06-23 23:16:19 +0000 | [diff] [blame] | 461 | else if (SuperClassDecl->isForwardDecl()) { |
| 462 | Diag(SuperLoc, diag::err_forward_superclass) |
Fariborz Jahanian | fdee089 | 2009-07-09 22:08:26 +0000 | [diff] [blame] | 463 | << SuperClassDecl->getDeclName() << ClassName |
| 464 | << SourceRange(AtInterfaceLoc, ClassLoc); |
Fariborz Jahanian | a813973 | 2011-06-23 23:16:19 +0000 | [diff] [blame] | 465 | Diag(SuperClassDecl->getLocation(), diag::note_forward_class); |
| 466 | SuperClassDecl = 0; |
| 467 | } |
Steve Naroff | 818cb9e | 2009-02-04 17:14:05 +0000 | [diff] [blame] | 468 | } |
Fariborz Jahanian | fdee089 | 2009-07-09 22:08:26 +0000 | [diff] [blame] | 469 | IDecl->setSuperClass(SuperClassDecl); |
| 470 | IDecl->setSuperClassLoc(SuperLoc); |
| 471 | IDecl->setLocEnd(SuperLoc); |
Steve Naroff | 818cb9e | 2009-02-04 17:14:05 +0000 | [diff] [blame] | 472 | } |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 473 | } else { // we have a root class. |
| 474 | IDecl->setLocEnd(ClassLoc); |
| 475 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 476 | |
Sebastian Redl | 0b17c61 | 2010-08-13 00:28:03 +0000 | [diff] [blame] | 477 | // Check then save referenced protocols. |
Chris Lattner | 06036d3 | 2008-07-26 04:13:19 +0000 | [diff] [blame] | 478 | if (NumProtoRefs) { |
Chris Lattner | 38af2de | 2009-02-20 21:35:13 +0000 | [diff] [blame] | 479 | IDecl->setProtocolList((ObjCProtocolDecl**)ProtoRefs, NumProtoRefs, |
Douglas Gregor | 18df52b | 2010-01-16 15:02:53 +0000 | [diff] [blame] | 480 | ProtoLocs, Context); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 481 | IDecl->setLocEnd(EndProtoLoc); |
| 482 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 483 | |
Anders Carlsson | 1528145 | 2008-11-04 16:57:32 +0000 | [diff] [blame] | 484 | CheckObjCDeclScope(IDecl); |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 485 | return IDecl; |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 486 | } |
| 487 | |
| 488 | /// ActOnCompatiblityAlias - this action is called after complete parsing of |
Daniel Dunbar | 7ad1b1f | 2008-09-04 20:01:15 +0000 | [diff] [blame] | 489 | /// @compatibility_alias declaration. It sets up the alias relationships. |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 490 | Decl *Sema::ActOnCompatiblityAlias(SourceLocation AtLoc, |
| 491 | IdentifierInfo *AliasName, |
| 492 | SourceLocation AliasLocation, |
| 493 | IdentifierInfo *ClassName, |
| 494 | SourceLocation ClassLocation) { |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 495 | // Look for previous declaration of alias name |
Douglas Gregor | c83c687 | 2010-04-15 22:33:43 +0000 | [diff] [blame] | 496 | NamedDecl *ADecl = LookupSingleName(TUScope, AliasName, AliasLocation, |
Douglas Gregor | c0b3964 | 2010-04-15 23:40:53 +0000 | [diff] [blame] | 497 | LookupOrdinaryName, ForRedeclaration); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 498 | if (ADecl) { |
Chris Lattner | 8b265bd | 2008-11-23 23:20:13 +0000 | [diff] [blame] | 499 | if (isa<ObjCCompatibleAliasDecl>(ADecl)) |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 500 | Diag(AliasLocation, diag::warn_previous_alias_decl); |
Chris Lattner | 8b265bd | 2008-11-23 23:20:13 +0000 | [diff] [blame] | 501 | else |
Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 502 | Diag(AliasLocation, diag::err_conflicting_aliasing_type) << AliasName; |
Chris Lattner | 8b265bd | 2008-11-23 23:20:13 +0000 | [diff] [blame] | 503 | Diag(ADecl->getLocation(), diag::note_previous_declaration); |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 504 | return 0; |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 505 | } |
| 506 | // Check for class declaration |
Douglas Gregor | c83c687 | 2010-04-15 22:33:43 +0000 | [diff] [blame] | 507 | NamedDecl *CDeclU = LookupSingleName(TUScope, ClassName, ClassLocation, |
Douglas Gregor | c0b3964 | 2010-04-15 23:40:53 +0000 | [diff] [blame] | 508 | LookupOrdinaryName, ForRedeclaration); |
Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 509 | if (const TypedefNameDecl *TDecl = |
| 510 | dyn_cast_or_null<TypedefNameDecl>(CDeclU)) { |
Fariborz Jahanian | 305c658 | 2009-01-08 01:10:55 +0000 | [diff] [blame] | 511 | QualType T = TDecl->getUnderlyingType(); |
John McCall | c12c5bb | 2010-05-15 11:32:37 +0000 | [diff] [blame] | 512 | if (T->isObjCObjectType()) { |
| 513 | if (NamedDecl *IDecl = T->getAs<ObjCObjectType>()->getInterface()) { |
Fariborz Jahanian | 305c658 | 2009-01-08 01:10:55 +0000 | [diff] [blame] | 514 | ClassName = IDecl->getIdentifier(); |
Douglas Gregor | c83c687 | 2010-04-15 22:33:43 +0000 | [diff] [blame] | 515 | CDeclU = LookupSingleName(TUScope, ClassName, ClassLocation, |
Douglas Gregor | c0b3964 | 2010-04-15 23:40:53 +0000 | [diff] [blame] | 516 | LookupOrdinaryName, ForRedeclaration); |
Fariborz Jahanian | 305c658 | 2009-01-08 01:10:55 +0000 | [diff] [blame] | 517 | } |
| 518 | } |
| 519 | } |
Chris Lattner | f8d17a5 | 2008-03-16 21:17:37 +0000 | [diff] [blame] | 520 | ObjCInterfaceDecl *CDecl = dyn_cast_or_null<ObjCInterfaceDecl>(CDeclU); |
| 521 | if (CDecl == 0) { |
Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 522 | Diag(ClassLocation, diag::warn_undef_interface) << ClassName; |
Chris Lattner | f8d17a5 | 2008-03-16 21:17:37 +0000 | [diff] [blame] | 523 | if (CDeclU) |
Chris Lattner | 8b265bd | 2008-11-23 23:20:13 +0000 | [diff] [blame] | 524 | Diag(CDeclU->getLocation(), diag::note_previous_declaration); |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 525 | return 0; |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 526 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 527 | |
Chris Lattner | f8d17a5 | 2008-03-16 21:17:37 +0000 | [diff] [blame] | 528 | // Everything checked out, instantiate a new alias declaration AST. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 529 | ObjCCompatibleAliasDecl *AliasDecl = |
Douglas Gregor | d043410 | 2009-01-09 00:49:46 +0000 | [diff] [blame] | 530 | ObjCCompatibleAliasDecl::Create(Context, CurContext, AtLoc, AliasName, CDecl); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 531 | |
Anders Carlsson | 1528145 | 2008-11-04 16:57:32 +0000 | [diff] [blame] | 532 | if (!CheckObjCDeclScope(AliasDecl)) |
Douglas Gregor | 516ff43 | 2009-04-24 02:57:34 +0000 | [diff] [blame] | 533 | PushOnScopeChains(AliasDecl, TUScope); |
Douglas Gregor | d043410 | 2009-01-09 00:49:46 +0000 | [diff] [blame] | 534 | |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 535 | return AliasDecl; |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 536 | } |
| 537 | |
Fariborz Jahanian | 819e9bf | 2011-05-13 18:02:08 +0000 | [diff] [blame] | 538 | bool Sema::CheckForwardProtocolDeclarationForCircularDependency( |
Steve Naroff | 61d6852 | 2009-03-05 15:22:01 +0000 | [diff] [blame] | 539 | IdentifierInfo *PName, |
| 540 | SourceLocation &Ploc, SourceLocation PrevLoc, |
Fariborz Jahanian | 819e9bf | 2011-05-13 18:02:08 +0000 | [diff] [blame] | 541 | const ObjCList<ObjCProtocolDecl> &PList) { |
| 542 | |
| 543 | bool res = false; |
Steve Naroff | 61d6852 | 2009-03-05 15:22:01 +0000 | [diff] [blame] | 544 | for (ObjCList<ObjCProtocolDecl>::iterator I = PList.begin(), |
| 545 | E = PList.end(); I != E; ++I) { |
Douglas Gregor | c83c687 | 2010-04-15 22:33:43 +0000 | [diff] [blame] | 546 | if (ObjCProtocolDecl *PDecl = LookupProtocol((*I)->getIdentifier(), |
| 547 | Ploc)) { |
Steve Naroff | 61d6852 | 2009-03-05 15:22:01 +0000 | [diff] [blame] | 548 | if (PDecl->getIdentifier() == PName) { |
| 549 | Diag(Ploc, diag::err_protocol_has_circular_dependency); |
| 550 | Diag(PrevLoc, diag::note_previous_definition); |
Fariborz Jahanian | 819e9bf | 2011-05-13 18:02:08 +0000 | [diff] [blame] | 551 | res = true; |
Steve Naroff | 61d6852 | 2009-03-05 15:22:01 +0000 | [diff] [blame] | 552 | } |
Fariborz Jahanian | 819e9bf | 2011-05-13 18:02:08 +0000 | [diff] [blame] | 553 | if (CheckForwardProtocolDeclarationForCircularDependency(PName, Ploc, |
| 554 | PDecl->getLocation(), PDecl->getReferencedProtocols())) |
| 555 | res = true; |
Steve Naroff | 61d6852 | 2009-03-05 15:22:01 +0000 | [diff] [blame] | 556 | } |
| 557 | } |
Fariborz Jahanian | 819e9bf | 2011-05-13 18:02:08 +0000 | [diff] [blame] | 558 | return res; |
Steve Naroff | 61d6852 | 2009-03-05 15:22:01 +0000 | [diff] [blame] | 559 | } |
| 560 | |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 561 | Decl * |
Chris Lattner | e13b959 | 2008-07-26 04:03:38 +0000 | [diff] [blame] | 562 | Sema::ActOnStartProtocolInterface(SourceLocation AtProtoInterfaceLoc, |
| 563 | IdentifierInfo *ProtocolName, |
| 564 | SourceLocation ProtocolLoc, |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 565 | Decl * const *ProtoRefs, |
Chris Lattner | e13b959 | 2008-07-26 04:03:38 +0000 | [diff] [blame] | 566 | unsigned NumProtoRefs, |
Douglas Gregor | 18df52b | 2010-01-16 15:02:53 +0000 | [diff] [blame] | 567 | const SourceLocation *ProtoLocs, |
Daniel Dunbar | 246e70f | 2008-09-26 04:48:09 +0000 | [diff] [blame] | 568 | SourceLocation EndProtoLoc, |
| 569 | AttributeList *AttrList) { |
Fariborz Jahanian | 96b69a7 | 2011-05-12 22:04:39 +0000 | [diff] [blame] | 570 | bool err = false; |
Daniel Dunbar | 246e70f | 2008-09-26 04:48:09 +0000 | [diff] [blame] | 571 | // FIXME: Deal with AttrList. |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 572 | assert(ProtocolName && "Missing protocol identifier"); |
Douglas Gregor | c83c687 | 2010-04-15 22:33:43 +0000 | [diff] [blame] | 573 | ObjCProtocolDecl *PDecl = LookupProtocol(ProtocolName, ProtocolLoc); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 574 | if (PDecl) { |
| 575 | // Protocol already seen. Better be a forward protocol declaration |
Chris Lattner | 439e71f | 2008-03-16 01:25:17 +0000 | [diff] [blame] | 576 | if (!PDecl->isForwardDecl()) { |
Fariborz Jahanian | e2573e5 | 2009-04-06 23:43:32 +0000 | [diff] [blame] | 577 | Diag(ProtocolLoc, diag::warn_duplicate_protocol_def) << ProtocolName; |
Chris Lattner | b8b96af | 2008-11-23 22:46:27 +0000 | [diff] [blame] | 578 | Diag(PDecl->getLocation(), diag::note_previous_definition); |
Chris Lattner | 439e71f | 2008-03-16 01:25:17 +0000 | [diff] [blame] | 579 | // Just return the protocol we already had. |
| 580 | // FIXME: don't leak the objects passed in! |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 581 | return PDecl; |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 582 | } |
Steve Naroff | 61d6852 | 2009-03-05 15:22:01 +0000 | [diff] [blame] | 583 | ObjCList<ObjCProtocolDecl> PList; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 584 | PList.set((ObjCProtocolDecl *const*)ProtoRefs, NumProtoRefs, Context); |
Fariborz Jahanian | 819e9bf | 2011-05-13 18:02:08 +0000 | [diff] [blame] | 585 | err = CheckForwardProtocolDeclarationForCircularDependency( |
| 586 | ProtocolName, ProtocolLoc, PDecl->getLocation(), PList); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 587 | |
Steve Naroff | f11b508 | 2008-08-13 16:39:22 +0000 | [diff] [blame] | 588 | // Make sure the cached decl gets a valid start location. |
Argyrios Kyrtzidis | a1e797e | 2011-10-05 19:37:56 +0000 | [diff] [blame^] | 589 | PDecl->setAtStartLoc(AtProtoInterfaceLoc); |
| 590 | PDecl->setLocation(ProtocolLoc); |
Chris Lattner | 439e71f | 2008-03-16 01:25:17 +0000 | [diff] [blame] | 591 | PDecl->setForwardDecl(false); |
Fariborz Jahanian | ca4c40a | 2011-08-25 22:26:53 +0000 | [diff] [blame] | 592 | // Since this ObjCProtocolDecl was created by a forward declaration, |
| 593 | // we now add it to the DeclContext since it wasn't added before |
| 594 | PDecl->setLexicalDeclContext(CurContext); |
Sebastian Redl | 0b17c61 | 2010-08-13 00:28:03 +0000 | [diff] [blame] | 595 | CurContext->addDecl(PDecl); |
Sebastian Redl | 3c7f413 | 2010-08-18 23:57:06 +0000 | [diff] [blame] | 596 | // Repeat in dependent AST files. |
Sebastian Redl | 0b17c61 | 2010-08-13 00:28:03 +0000 | [diff] [blame] | 597 | PDecl->setChangedSinceDeserialization(true); |
Chris Lattner | 439e71f | 2008-03-16 01:25:17 +0000 | [diff] [blame] | 598 | } else { |
Argyrios Kyrtzidis | 1711fc9 | 2011-10-04 04:48:02 +0000 | [diff] [blame] | 599 | PDecl = ObjCProtocolDecl::Create(Context, CurContext, ProtocolName, |
| 600 | ProtocolLoc, AtProtoInterfaceLoc); |
Douglas Gregor | 6e378de | 2009-04-23 23:18:26 +0000 | [diff] [blame] | 601 | PushOnScopeChains(PDecl, TUScope); |
Chris Lattner | c858105 | 2008-03-16 20:19:15 +0000 | [diff] [blame] | 602 | PDecl->setForwardDecl(false); |
Chris Lattner | cca59d7 | 2008-03-16 01:23:04 +0000 | [diff] [blame] | 603 | } |
Fariborz Jahanian | bc1c877 | 2008-12-17 01:07:27 +0000 | [diff] [blame] | 604 | if (AttrList) |
Douglas Gregor | 9cdda0c | 2009-06-17 21:51:59 +0000 | [diff] [blame] | 605 | ProcessDeclAttributeList(TUScope, PDecl, AttrList); |
Fariborz Jahanian | 96b69a7 | 2011-05-12 22:04:39 +0000 | [diff] [blame] | 606 | if (!err && NumProtoRefs ) { |
Chris Lattner | c858105 | 2008-03-16 20:19:15 +0000 | [diff] [blame] | 607 | /// Check then save referenced protocols. |
Douglas Gregor | 18df52b | 2010-01-16 15:02:53 +0000 | [diff] [blame] | 608 | PDecl->setProtocolList((ObjCProtocolDecl**)ProtoRefs, NumProtoRefs, |
| 609 | ProtoLocs, Context); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 610 | PDecl->setLocEnd(EndProtoLoc); |
| 611 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 612 | |
| 613 | CheckObjCDeclScope(PDecl); |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 614 | return PDecl; |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 615 | } |
| 616 | |
| 617 | /// FindProtocolDeclaration - This routine looks up protocols and |
Daniel Dunbar | 7ad1b1f | 2008-09-04 20:01:15 +0000 | [diff] [blame] | 618 | /// issues an error if they are not declared. It returns list of |
| 619 | /// protocol declarations in its 'Protocols' argument. |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 620 | void |
Chris Lattner | e13b959 | 2008-07-26 04:03:38 +0000 | [diff] [blame] | 621 | Sema::FindProtocolDeclaration(bool WarnOnDeclarations, |
Chris Lattner | 7caeabd | 2008-07-21 22:17:28 +0000 | [diff] [blame] | 622 | const IdentifierLocPair *ProtocolId, |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 623 | unsigned NumProtocols, |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 624 | SmallVectorImpl<Decl *> &Protocols) { |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 625 | for (unsigned i = 0; i != NumProtocols; ++i) { |
Douglas Gregor | c83c687 | 2010-04-15 22:33:43 +0000 | [diff] [blame] | 626 | ObjCProtocolDecl *PDecl = LookupProtocol(ProtocolId[i].first, |
| 627 | ProtocolId[i].second); |
Chris Lattner | eacc392 | 2008-07-26 03:47:43 +0000 | [diff] [blame] | 628 | if (!PDecl) { |
Douglas Gregor | d8bba9c | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 629 | TypoCorrection Corrected = CorrectTypo( |
| 630 | DeclarationNameInfo(ProtocolId[i].first, ProtocolId[i].second), |
| 631 | LookupObjCProtocolName, TUScope, NULL, NULL, false, CTC_NoKeywords); |
| 632 | if ((PDecl = Corrected.getCorrectionDeclAs<ObjCProtocolDecl>())) { |
Douglas Gregor | f06cdae | 2010-01-03 18:01:57 +0000 | [diff] [blame] | 633 | Diag(ProtocolId[i].second, diag::err_undeclared_protocol_suggest) |
Douglas Gregor | d8bba9c | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 634 | << ProtocolId[i].first << Corrected.getCorrection(); |
Douglas Gregor | 67dd1d4 | 2010-01-07 00:17:44 +0000 | [diff] [blame] | 635 | Diag(PDecl->getLocation(), diag::note_previous_decl) |
| 636 | << PDecl->getDeclName(); |
Douglas Gregor | f06cdae | 2010-01-03 18:01:57 +0000 | [diff] [blame] | 637 | } |
| 638 | } |
| 639 | |
| 640 | if (!PDecl) { |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 641 | Diag(ProtocolId[i].second, diag::err_undeclared_protocol) |
Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 642 | << ProtocolId[i].first; |
Chris Lattner | eacc392 | 2008-07-26 03:47:43 +0000 | [diff] [blame] | 643 | continue; |
| 644 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 645 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 646 | (void)DiagnoseUseOfDecl(PDecl, ProtocolId[i].second); |
Chris Lattner | eacc392 | 2008-07-26 03:47:43 +0000 | [diff] [blame] | 647 | |
| 648 | // If this is a forward declaration and we are supposed to warn in this |
| 649 | // case, do it. |
| 650 | if (WarnOnDeclarations && PDecl->isForwardDecl()) |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 651 | Diag(ProtocolId[i].second, diag::warn_undef_protocolref) |
Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 652 | << ProtocolId[i].first; |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 653 | Protocols.push_back(PDecl); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 654 | } |
| 655 | } |
| 656 | |
Fariborz Jahanian | 78c39c7 | 2009-03-02 19:06:08 +0000 | [diff] [blame] | 657 | /// DiagnoseClassExtensionDupMethods - Check for duplicate declaration of |
Fariborz Jahanian | b7f95f5 | 2009-03-02 19:05:07 +0000 | [diff] [blame] | 658 | /// a class method in its extension. |
| 659 | /// |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 660 | void Sema::DiagnoseClassExtensionDupMethods(ObjCCategoryDecl *CAT, |
Fariborz Jahanian | b7f95f5 | 2009-03-02 19:05:07 +0000 | [diff] [blame] | 661 | ObjCInterfaceDecl *ID) { |
| 662 | if (!ID) |
| 663 | return; // Possibly due to previous error |
| 664 | |
| 665 | llvm::DenseMap<Selector, const ObjCMethodDecl*> MethodMap; |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 666 | for (ObjCInterfaceDecl::method_iterator i = ID->meth_begin(), |
| 667 | e = ID->meth_end(); i != e; ++i) { |
Fariborz Jahanian | b7f95f5 | 2009-03-02 19:05:07 +0000 | [diff] [blame] | 668 | ObjCMethodDecl *MD = *i; |
| 669 | MethodMap[MD->getSelector()] = MD; |
| 670 | } |
| 671 | |
| 672 | if (MethodMap.empty()) |
| 673 | return; |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 674 | for (ObjCCategoryDecl::method_iterator i = CAT->meth_begin(), |
| 675 | e = CAT->meth_end(); i != e; ++i) { |
Fariborz Jahanian | b7f95f5 | 2009-03-02 19:05:07 +0000 | [diff] [blame] | 676 | ObjCMethodDecl *Method = *i; |
| 677 | const ObjCMethodDecl *&PrevMethod = MethodMap[Method->getSelector()]; |
| 678 | if (PrevMethod && !MatchTwoMethodDeclarations(Method, PrevMethod)) { |
| 679 | Diag(Method->getLocation(), diag::err_duplicate_method_decl) |
| 680 | << Method->getDeclName(); |
| 681 | Diag(PrevMethod->getLocation(), diag::note_previous_declaration); |
| 682 | } |
| 683 | } |
| 684 | } |
| 685 | |
Chris Lattner | 58fe03b | 2009-04-12 08:43:13 +0000 | [diff] [blame] | 686 | /// ActOnForwardProtocolDeclaration - Handle @protocol foo; |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 687 | Decl * |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 688 | Sema::ActOnForwardProtocolDeclaration(SourceLocation AtProtocolLoc, |
Chris Lattner | 7caeabd | 2008-07-21 22:17:28 +0000 | [diff] [blame] | 689 | const IdentifierLocPair *IdentList, |
Fariborz Jahanian | bc1c877 | 2008-12-17 01:07:27 +0000 | [diff] [blame] | 690 | unsigned NumElts, |
| 691 | AttributeList *attrList) { |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 692 | SmallVector<ObjCProtocolDecl*, 32> Protocols; |
| 693 | SmallVector<SourceLocation, 8> ProtoLocs; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 694 | |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 695 | for (unsigned i = 0; i != NumElts; ++i) { |
Chris Lattner | 7caeabd | 2008-07-21 22:17:28 +0000 | [diff] [blame] | 696 | IdentifierInfo *Ident = IdentList[i].first; |
Douglas Gregor | c83c687 | 2010-04-15 22:33:43 +0000 | [diff] [blame] | 697 | ObjCProtocolDecl *PDecl = LookupProtocol(Ident, IdentList[i].second); |
Sebastian Redl | 0b17c61 | 2010-08-13 00:28:03 +0000 | [diff] [blame] | 698 | bool isNew = false; |
Douglas Gregor | d043410 | 2009-01-09 00:49:46 +0000 | [diff] [blame] | 699 | if (PDecl == 0) { // Not already seen? |
Argyrios Kyrtzidis | 1711fc9 | 2011-10-04 04:48:02 +0000 | [diff] [blame] | 700 | PDecl = ObjCProtocolDecl::Create(Context, CurContext, Ident, |
| 701 | IdentList[i].second, AtProtocolLoc); |
Sebastian Redl | 0b17c61 | 2010-08-13 00:28:03 +0000 | [diff] [blame] | 702 | PushOnScopeChains(PDecl, TUScope, false); |
| 703 | isNew = true; |
Douglas Gregor | d043410 | 2009-01-09 00:49:46 +0000 | [diff] [blame] | 704 | } |
Sebastian Redl | 0b17c61 | 2010-08-13 00:28:03 +0000 | [diff] [blame] | 705 | if (attrList) { |
Douglas Gregor | 9cdda0c | 2009-06-17 21:51:59 +0000 | [diff] [blame] | 706 | ProcessDeclAttributeList(TUScope, PDecl, attrList); |
Sebastian Redl | 0b17c61 | 2010-08-13 00:28:03 +0000 | [diff] [blame] | 707 | if (!isNew) |
| 708 | PDecl->setChangedSinceDeserialization(true); |
| 709 | } |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 710 | Protocols.push_back(PDecl); |
Douglas Gregor | 18df52b | 2010-01-16 15:02:53 +0000 | [diff] [blame] | 711 | ProtoLocs.push_back(IdentList[i].second); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 712 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 713 | |
| 714 | ObjCForwardProtocolDecl *PDecl = |
Douglas Gregor | d043410 | 2009-01-09 00:49:46 +0000 | [diff] [blame] | 715 | ObjCForwardProtocolDecl::Create(Context, CurContext, AtProtocolLoc, |
Douglas Gregor | 18df52b | 2010-01-16 15:02:53 +0000 | [diff] [blame] | 716 | Protocols.data(), Protocols.size(), |
| 717 | ProtoLocs.data()); |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 718 | CurContext->addDecl(PDecl); |
Anders Carlsson | 1528145 | 2008-11-04 16:57:32 +0000 | [diff] [blame] | 719 | CheckObjCDeclScope(PDecl); |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 720 | return PDecl; |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 721 | } |
| 722 | |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 723 | Decl *Sema:: |
Chris Lattner | 7caeabd | 2008-07-21 22:17:28 +0000 | [diff] [blame] | 724 | ActOnStartCategoryInterface(SourceLocation AtInterfaceLoc, |
| 725 | IdentifierInfo *ClassName, SourceLocation ClassLoc, |
| 726 | IdentifierInfo *CategoryName, |
| 727 | SourceLocation CategoryLoc, |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 728 | Decl * const *ProtoRefs, |
Chris Lattner | 7caeabd | 2008-07-21 22:17:28 +0000 | [diff] [blame] | 729 | unsigned NumProtoRefs, |
Douglas Gregor | 18df52b | 2010-01-16 15:02:53 +0000 | [diff] [blame] | 730 | const SourceLocation *ProtoLocs, |
Chris Lattner | 7caeabd | 2008-07-21 22:17:28 +0000 | [diff] [blame] | 731 | SourceLocation EndProtoLoc) { |
Fariborz Jahanian | 80aa1cd | 2010-06-22 23:20:40 +0000 | [diff] [blame] | 732 | ObjCCategoryDecl *CDecl; |
Douglas Gregor | c83c687 | 2010-04-15 22:33:43 +0000 | [diff] [blame] | 733 | ObjCInterfaceDecl *IDecl = getObjCInterfaceDecl(ClassName, ClassLoc, true); |
Ted Kremenek | 09b6897 | 2010-02-23 19:39:46 +0000 | [diff] [blame] | 734 | |
| 735 | /// Check that class of this category is already completely declared. |
| 736 | if (!IDecl || IDecl->isForwardDecl()) { |
| 737 | // Create an invalid ObjCCategoryDecl to serve as context for |
| 738 | // the enclosing method declarations. We mark the decl invalid |
| 739 | // to make it clear that this isn't a valid AST. |
| 740 | CDecl = ObjCCategoryDecl::Create(Context, CurContext, AtInterfaceLoc, |
Argyrios Kyrtzidis | 955fadb | 2011-08-30 19:43:26 +0000 | [diff] [blame] | 741 | ClassLoc, CategoryLoc, CategoryName,IDecl); |
Ted Kremenek | 09b6897 | 2010-02-23 19:39:46 +0000 | [diff] [blame] | 742 | CDecl->setInvalidDecl(); |
| 743 | Diag(ClassLoc, diag::err_undef_interface) << ClassName; |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 744 | return CDecl; |
Ted Kremenek | 09b6897 | 2010-02-23 19:39:46 +0000 | [diff] [blame] | 745 | } |
| 746 | |
Fariborz Jahanian | 80aa1cd | 2010-06-22 23:20:40 +0000 | [diff] [blame] | 747 | if (!CategoryName && IDecl->getImplementation()) { |
| 748 | Diag(ClassLoc, diag::err_class_extension_after_impl) << ClassName; |
| 749 | Diag(IDecl->getImplementation()->getLocation(), |
| 750 | diag::note_implementation_declared); |
Ted Kremenek | 09b6897 | 2010-02-23 19:39:46 +0000 | [diff] [blame] | 751 | } |
| 752 | |
Fariborz Jahanian | 2576061 | 2010-02-15 21:55:26 +0000 | [diff] [blame] | 753 | if (CategoryName) { |
| 754 | /// Check for duplicate interface declaration for this category |
| 755 | ObjCCategoryDecl *CDeclChain; |
| 756 | for (CDeclChain = IDecl->getCategoryList(); CDeclChain; |
| 757 | CDeclChain = CDeclChain->getNextClassCategory()) { |
| 758 | if (CDeclChain->getIdentifier() == CategoryName) { |
| 759 | // Class extensions can be declared multiple times. |
| 760 | Diag(CategoryLoc, diag::warn_dup_category_def) |
| 761 | << ClassName << CategoryName; |
| 762 | Diag(CDeclChain->getLocation(), diag::note_previous_definition); |
| 763 | break; |
| 764 | } |
Chris Lattner | 70f1954 | 2009-02-16 21:26:43 +0000 | [diff] [blame] | 765 | } |
| 766 | } |
Chris Lattner | 70f1954 | 2009-02-16 21:26:43 +0000 | [diff] [blame] | 767 | |
Argyrios Kyrtzidis | 955fadb | 2011-08-30 19:43:26 +0000 | [diff] [blame] | 768 | CDecl = ObjCCategoryDecl::Create(Context, CurContext, AtInterfaceLoc, |
| 769 | ClassLoc, CategoryLoc, CategoryName, IDecl); |
| 770 | // FIXME: PushOnScopeChains? |
| 771 | CurContext->addDecl(CDecl); |
| 772 | |
| 773 | // If the interface is deprecated, warn about it. |
| 774 | (void)DiagnoseUseOfDecl(IDecl, ClassLoc); |
| 775 | |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 776 | if (NumProtoRefs) { |
Fariborz Jahanian | b106fc6 | 2009-10-05 21:32:49 +0000 | [diff] [blame] | 777 | CDecl->setProtocolList((ObjCProtocolDecl**)ProtoRefs, NumProtoRefs, |
Douglas Gregor | 18df52b | 2010-01-16 15:02:53 +0000 | [diff] [blame] | 778 | ProtoLocs, Context); |
Fariborz Jahanian | 339798e | 2009-10-05 20:41:32 +0000 | [diff] [blame] | 779 | // Protocols in the class extension belong to the class. |
Fariborz Jahanian | 2576061 | 2010-02-15 21:55:26 +0000 | [diff] [blame] | 780 | if (CDecl->IsClassExtension()) |
Fariborz Jahanian | 339798e | 2009-10-05 20:41:32 +0000 | [diff] [blame] | 781 | IDecl->mergeClassExtensionProtocolList((ObjCProtocolDecl**)ProtoRefs, |
Ted Kremenek | 53b9441 | 2010-09-01 01:21:15 +0000 | [diff] [blame] | 782 | NumProtoRefs, Context); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 783 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 784 | |
Anders Carlsson | 1528145 | 2008-11-04 16:57:32 +0000 | [diff] [blame] | 785 | CheckObjCDeclScope(CDecl); |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 786 | return CDecl; |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 787 | } |
| 788 | |
| 789 | /// ActOnStartCategoryImplementation - Perform semantic checks on the |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 790 | /// category implementation declaration and build an ObjCCategoryImplDecl |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 791 | /// object. |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 792 | Decl *Sema::ActOnStartCategoryImplementation( |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 793 | SourceLocation AtCatImplLoc, |
| 794 | IdentifierInfo *ClassName, SourceLocation ClassLoc, |
| 795 | IdentifierInfo *CatName, SourceLocation CatLoc) { |
Douglas Gregor | c83c687 | 2010-04-15 22:33:43 +0000 | [diff] [blame] | 796 | ObjCInterfaceDecl *IDecl = getObjCInterfaceDecl(ClassName, ClassLoc, true); |
Argyrios Kyrtzidis | 8a1d722 | 2009-07-21 00:05:53 +0000 | [diff] [blame] | 797 | ObjCCategoryDecl *CatIDecl = 0; |
| 798 | if (IDecl) { |
| 799 | CatIDecl = IDecl->FindCategoryDeclaration(CatName); |
| 800 | if (!CatIDecl) { |
| 801 | // Category @implementation with no corresponding @interface. |
| 802 | // Create and install one. |
| 803 | CatIDecl = ObjCCategoryDecl::Create(Context, CurContext, SourceLocation(), |
Douglas Gregor | 3db211b | 2010-01-16 16:38:58 +0000 | [diff] [blame] | 804 | SourceLocation(), SourceLocation(), |
Argyrios Kyrtzidis | 955fadb | 2011-08-30 19:43:26 +0000 | [diff] [blame] | 805 | CatName, IDecl); |
Argyrios Kyrtzidis | 8a1d722 | 2009-07-21 00:05:53 +0000 | [diff] [blame] | 806 | } |
| 807 | } |
| 808 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 809 | ObjCCategoryImplDecl *CDecl = |
Argyrios Kyrtzidis | 1711fc9 | 2011-10-04 04:48:02 +0000 | [diff] [blame] | 810 | ObjCCategoryImplDecl::Create(Context, CurContext, CatName, IDecl, |
| 811 | ClassLoc, AtCatImplLoc); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 812 | /// Check that class of this category is already completely declared. |
John McCall | 6c2c250 | 2011-07-22 02:45:48 +0000 | [diff] [blame] | 813 | if (!IDecl || IDecl->isForwardDecl()) { |
Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 814 | Diag(ClassLoc, diag::err_undef_interface) << ClassName; |
John McCall | 6c2c250 | 2011-07-22 02:45:48 +0000 | [diff] [blame] | 815 | CDecl->setInvalidDecl(); |
| 816 | } |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 817 | |
Douglas Gregor | d043410 | 2009-01-09 00:49:46 +0000 | [diff] [blame] | 818 | // FIXME: PushOnScopeChains? |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 819 | CurContext->addDecl(CDecl); |
Douglas Gregor | d043410 | 2009-01-09 00:49:46 +0000 | [diff] [blame] | 820 | |
Argyrios Kyrtzidis | 8a1d722 | 2009-07-21 00:05:53 +0000 | [diff] [blame] | 821 | /// Check that CatName, category name, is not used in another implementation. |
| 822 | if (CatIDecl) { |
| 823 | if (CatIDecl->getImplementation()) { |
| 824 | Diag(ClassLoc, diag::err_dup_implementation_category) << ClassName |
| 825 | << CatName; |
| 826 | Diag(CatIDecl->getImplementation()->getLocation(), |
| 827 | diag::note_previous_definition); |
Fariborz Jahanian | b1224f6 | 2011-02-15 00:59:30 +0000 | [diff] [blame] | 828 | } else { |
Argyrios Kyrtzidis | 8a1d722 | 2009-07-21 00:05:53 +0000 | [diff] [blame] | 829 | CatIDecl->setImplementation(CDecl); |
Fariborz Jahanian | b1224f6 | 2011-02-15 00:59:30 +0000 | [diff] [blame] | 830 | // Warn on implementating category of deprecated class under |
| 831 | // -Wdeprecated-implementations flag. |
Fariborz Jahanian | 5ac96d5 | 2011-02-15 17:49:58 +0000 | [diff] [blame] | 832 | DiagnoseObjCImplementedDeprecations(*this, |
| 833 | dyn_cast<NamedDecl>(IDecl), |
| 834 | CDecl->getLocation(), 2); |
Fariborz Jahanian | b1224f6 | 2011-02-15 00:59:30 +0000 | [diff] [blame] | 835 | } |
Argyrios Kyrtzidis | 8a1d722 | 2009-07-21 00:05:53 +0000 | [diff] [blame] | 836 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 837 | |
Anders Carlsson | 1528145 | 2008-11-04 16:57:32 +0000 | [diff] [blame] | 838 | CheckObjCDeclScope(CDecl); |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 839 | return CDecl; |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 840 | } |
| 841 | |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 842 | Decl *Sema::ActOnStartClassImplementation( |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 843 | SourceLocation AtClassImplLoc, |
| 844 | IdentifierInfo *ClassName, SourceLocation ClassLoc, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 845 | IdentifierInfo *SuperClassname, |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 846 | SourceLocation SuperClassLoc) { |
Douglas Gregor | deacbdc | 2010-08-11 12:19:30 +0000 | [diff] [blame] | 847 | ObjCInterfaceDecl* IDecl = 0; |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 848 | // Check for another declaration kind with the same name. |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 849 | NamedDecl *PrevDecl |
Douglas Gregor | c0b3964 | 2010-04-15 23:40:53 +0000 | [diff] [blame] | 850 | = LookupSingleName(TUScope, ClassName, ClassLoc, LookupOrdinaryName, |
| 851 | ForRedeclaration); |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 852 | if (PrevDecl && !isa<ObjCInterfaceDecl>(PrevDecl)) { |
Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 853 | Diag(ClassLoc, diag::err_redefinition_different_kind) << ClassName; |
Chris Lattner | 5f4a682 | 2008-11-23 23:12:31 +0000 | [diff] [blame] | 854 | Diag(PrevDecl->getLocation(), diag::note_previous_definition); |
Douglas Gregor | deacbdc | 2010-08-11 12:19:30 +0000 | [diff] [blame] | 855 | } else if ((IDecl = dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl))) { |
| 856 | // If this is a forward declaration of an interface, warn. |
| 857 | if (IDecl->isForwardDecl()) { |
Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 858 | Diag(ClassLoc, diag::warn_undef_interface) << ClassName; |
Douglas Gregor | deacbdc | 2010-08-11 12:19:30 +0000 | [diff] [blame] | 859 | IDecl = 0; |
Fariborz Jahanian | 77a6be4 | 2009-04-23 21:49:04 +0000 | [diff] [blame] | 860 | } |
Douglas Gregor | 95ff742 | 2010-01-04 17:27:12 +0000 | [diff] [blame] | 861 | } else { |
| 862 | // We did not find anything with the name ClassName; try to correct for |
| 863 | // typos in the class name. |
Douglas Gregor | d8bba9c | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 864 | TypoCorrection Corrected = CorrectTypo( |
| 865 | DeclarationNameInfo(ClassName, ClassLoc), LookupOrdinaryName, TUScope, |
| 866 | NULL, NULL, false, CTC_NoKeywords); |
| 867 | if ((IDecl = Corrected.getCorrectionDeclAs<ObjCInterfaceDecl>())) { |
Douglas Gregor | a6f2638 | 2010-01-06 23:44:25 +0000 | [diff] [blame] | 868 | // Suggest the (potentially) correct interface name. However, put the |
| 869 | // fix-it hint itself in a separate note, since changing the name in |
Douglas Gregor | deacbdc | 2010-08-11 12:19:30 +0000 | [diff] [blame] | 870 | // the warning would make the fix-it change semantics.However, don't |
Douglas Gregor | 95ff742 | 2010-01-04 17:27:12 +0000 | [diff] [blame] | 871 | // provide a code-modification hint or use the typo name for recovery, |
| 872 | // because this is just a warning. The program may actually be correct. |
Douglas Gregor | d8bba9c | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 873 | DeclarationName CorrectedName = Corrected.getCorrection(); |
Douglas Gregor | 95ff742 | 2010-01-04 17:27:12 +0000 | [diff] [blame] | 874 | Diag(ClassLoc, diag::warn_undef_interface_suggest) |
Douglas Gregor | d8bba9c | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 875 | << ClassName << CorrectedName; |
| 876 | Diag(IDecl->getLocation(), diag::note_previous_decl) << CorrectedName |
| 877 | << FixItHint::CreateReplacement(ClassLoc, CorrectedName.getAsString()); |
Douglas Gregor | 95ff742 | 2010-01-04 17:27:12 +0000 | [diff] [blame] | 878 | IDecl = 0; |
| 879 | } else { |
| 880 | Diag(ClassLoc, diag::warn_undef_interface) << ClassName; |
| 881 | } |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 882 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 883 | |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 884 | // Check that super class name is valid class name |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 885 | ObjCInterfaceDecl* SDecl = 0; |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 886 | if (SuperClassname) { |
| 887 | // Check if a different kind of symbol declared in this scope. |
Douglas Gregor | c83c687 | 2010-04-15 22:33:43 +0000 | [diff] [blame] | 888 | PrevDecl = LookupSingleName(TUScope, SuperClassname, SuperClassLoc, |
| 889 | LookupOrdinaryName); |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 890 | if (PrevDecl && !isa<ObjCInterfaceDecl>(PrevDecl)) { |
Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 891 | Diag(SuperClassLoc, diag::err_redefinition_different_kind) |
| 892 | << SuperClassname; |
Chris Lattner | 5f4a682 | 2008-11-23 23:12:31 +0000 | [diff] [blame] | 893 | Diag(PrevDecl->getLocation(), diag::note_previous_definition); |
Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 894 | } else { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 895 | SDecl = dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 896 | if (!SDecl) |
Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 897 | Diag(SuperClassLoc, diag::err_undef_superclass) |
| 898 | << SuperClassname << ClassName; |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 899 | else if (IDecl && IDecl->getSuperClass() != SDecl) { |
| 900 | // This implementation and its interface do not have the same |
| 901 | // super class. |
Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 902 | Diag(SuperClassLoc, diag::err_conflicting_super_class) |
Chris Lattner | 08631c5 | 2008-11-23 21:45:46 +0000 | [diff] [blame] | 903 | << SDecl->getDeclName(); |
Chris Lattner | 5f4a682 | 2008-11-23 23:12:31 +0000 | [diff] [blame] | 904 | Diag(SDecl->getLocation(), diag::note_previous_definition); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 905 | } |
| 906 | } |
| 907 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 908 | |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 909 | if (!IDecl) { |
| 910 | // Legacy case of @implementation with no corresponding @interface. |
| 911 | // Build, chain & install the interface decl into the identifier. |
Daniel Dunbar | f641492 | 2008-08-20 18:02:42 +0000 | [diff] [blame] | 912 | |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 913 | // FIXME: Do we support attributes on the @implementation? If so we should |
| 914 | // copy them over. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 915 | IDecl = ObjCInterfaceDecl::Create(Context, CurContext, AtClassImplLoc, |
Douglas Gregor | deacbdc | 2010-08-11 12:19:30 +0000 | [diff] [blame] | 916 | ClassName, ClassLoc, false, true); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 917 | IDecl->setSuperClass(SDecl); |
| 918 | IDecl->setLocEnd(ClassLoc); |
Douglas Gregor | 8b9fb30 | 2009-04-24 00:16:12 +0000 | [diff] [blame] | 919 | |
| 920 | PushOnScopeChains(IDecl, TUScope); |
Douglas Gregor | deacbdc | 2010-08-11 12:19:30 +0000 | [diff] [blame] | 921 | } else { |
| 922 | // Mark the interface as being completed, even if it was just as |
| 923 | // @class ....; |
| 924 | // declaration; the user cannot reopen it. |
| 925 | IDecl->setForwardDecl(false); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 926 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 927 | |
| 928 | ObjCImplementationDecl* IMPDecl = |
Argyrios Kyrtzidis | 1711fc9 | 2011-10-04 04:48:02 +0000 | [diff] [blame] | 929 | ObjCImplementationDecl::Create(Context, CurContext, IDecl, SDecl, |
| 930 | ClassLoc, AtClassImplLoc); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 931 | |
Anders Carlsson | 1528145 | 2008-11-04 16:57:32 +0000 | [diff] [blame] | 932 | if (CheckObjCDeclScope(IMPDecl)) |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 933 | return IMPDecl; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 934 | |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 935 | // Check that there is no duplicate implementation of this class. |
Douglas Gregor | deacbdc | 2010-08-11 12:19:30 +0000 | [diff] [blame] | 936 | if (IDecl->getImplementation()) { |
| 937 | // FIXME: Don't leak everything! |
Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 938 | Diag(ClassLoc, diag::err_dup_implementation_class) << ClassName; |
Argyrios Kyrtzidis | 8701877 | 2009-07-21 00:06:04 +0000 | [diff] [blame] | 939 | Diag(IDecl->getImplementation()->getLocation(), |
| 940 | diag::note_previous_definition); |
Douglas Gregor | deacbdc | 2010-08-11 12:19:30 +0000 | [diff] [blame] | 941 | } else { // add it to the list. |
Argyrios Kyrtzidis | 8a1d722 | 2009-07-21 00:05:53 +0000 | [diff] [blame] | 942 | IDecl->setImplementation(IMPDecl); |
Douglas Gregor | 8fc463a | 2009-04-24 00:11:27 +0000 | [diff] [blame] | 943 | PushOnScopeChains(IMPDecl, TUScope); |
Fariborz Jahanian | b1224f6 | 2011-02-15 00:59:30 +0000 | [diff] [blame] | 944 | // Warn on implementating deprecated class under |
| 945 | // -Wdeprecated-implementations flag. |
Fariborz Jahanian | 5ac96d5 | 2011-02-15 17:49:58 +0000 | [diff] [blame] | 946 | DiagnoseObjCImplementedDeprecations(*this, |
| 947 | dyn_cast<NamedDecl>(IDecl), |
| 948 | IMPDecl->getLocation(), 1); |
Argyrios Kyrtzidis | 8a1d722 | 2009-07-21 00:05:53 +0000 | [diff] [blame] | 949 | } |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 950 | return IMPDecl; |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 951 | } |
| 952 | |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 953 | void Sema::CheckImplementationIvars(ObjCImplementationDecl *ImpDecl, |
| 954 | ObjCIvarDecl **ivars, unsigned numIvars, |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 955 | SourceLocation RBrace) { |
| 956 | assert(ImpDecl && "missing implementation decl"); |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 957 | ObjCInterfaceDecl* IDecl = ImpDecl->getClassInterface(); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 958 | if (!IDecl) |
| 959 | return; |
| 960 | /// Check case of non-existing @interface decl. |
| 961 | /// (legacy objective-c @implementation decl without an @interface decl). |
| 962 | /// Add implementations's ivar to the synthesize class's ivar list. |
Steve Naroff | 33feeb0 | 2009-04-20 20:09:33 +0000 | [diff] [blame] | 963 | if (IDecl->isImplicitInterfaceDecl()) { |
Chris Lattner | 38af2de | 2009-02-20 21:35:13 +0000 | [diff] [blame] | 964 | IDecl->setLocEnd(RBrace); |
Fariborz Jahanian | 3a21cd9 | 2010-02-17 17:00:07 +0000 | [diff] [blame] | 965 | // Add ivar's to class's DeclContext. |
| 966 | for (unsigned i = 0, e = numIvars; i != e; ++i) { |
Fariborz Jahanian | 2f14c4d | 2010-02-17 18:10:54 +0000 | [diff] [blame] | 967 | ivars[i]->setLexicalDeclContext(ImpDecl); |
| 968 | IDecl->makeDeclVisibleInContext(ivars[i], false); |
Fariborz Jahanian | 11062e1 | 2010-02-19 00:31:17 +0000 | [diff] [blame] | 969 | ImpDecl->addDecl(ivars[i]); |
Fariborz Jahanian | 3a21cd9 | 2010-02-17 17:00:07 +0000 | [diff] [blame] | 970 | } |
| 971 | |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 972 | return; |
| 973 | } |
| 974 | // If implementation has empty ivar list, just return. |
| 975 | if (numIvars == 0) |
| 976 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 977 | |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 978 | assert(ivars && "missing @implementation ivars"); |
Fariborz Jahanian | bd94d44 | 2010-02-19 20:58:54 +0000 | [diff] [blame] | 979 | if (LangOpts.ObjCNonFragileABI2) { |
| 980 | if (ImpDecl->getSuperClass()) |
| 981 | Diag(ImpDecl->getLocation(), diag::warn_on_superclass_use); |
| 982 | for (unsigned i = 0; i < numIvars; i++) { |
| 983 | ObjCIvarDecl* ImplIvar = ivars[i]; |
| 984 | if (const ObjCIvarDecl *ClsIvar = |
| 985 | IDecl->getIvarDecl(ImplIvar->getIdentifier())) { |
| 986 | Diag(ImplIvar->getLocation(), diag::err_duplicate_ivar_declaration); |
| 987 | Diag(ClsIvar->getLocation(), diag::note_previous_definition); |
| 988 | continue; |
| 989 | } |
Fariborz Jahanian | bd94d44 | 2010-02-19 20:58:54 +0000 | [diff] [blame] | 990 | // Instance ivar to Implementation's DeclContext. |
| 991 | ImplIvar->setLexicalDeclContext(ImpDecl); |
| 992 | IDecl->makeDeclVisibleInContext(ImplIvar, false); |
| 993 | ImpDecl->addDecl(ImplIvar); |
| 994 | } |
| 995 | return; |
| 996 | } |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 997 | // Check interface's Ivar list against those in the implementation. |
| 998 | // names and types must match. |
| 999 | // |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1000 | unsigned j = 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1001 | ObjCInterfaceDecl::ivar_iterator |
Chris Lattner | 4c52509 | 2007-12-12 17:58:05 +0000 | [diff] [blame] | 1002 | IVI = IDecl->ivar_begin(), IVE = IDecl->ivar_end(); |
| 1003 | for (; numIvars > 0 && IVI != IVE; ++IVI) { |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1004 | ObjCIvarDecl* ImplIvar = ivars[j++]; |
| 1005 | ObjCIvarDecl* ClsIvar = *IVI; |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1006 | assert (ImplIvar && "missing implementation ivar"); |
| 1007 | assert (ClsIvar && "missing class ivar"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1008 | |
Steve Naroff | ca33129 | 2009-03-03 14:49:36 +0000 | [diff] [blame] | 1009 | // First, make sure the types match. |
Chris Lattner | 1b63eef | 2008-07-27 00:05:05 +0000 | [diff] [blame] | 1010 | if (Context.getCanonicalType(ImplIvar->getType()) != |
| 1011 | Context.getCanonicalType(ClsIvar->getType())) { |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 1012 | Diag(ImplIvar->getLocation(), diag::err_conflicting_ivar_type) |
Chris Lattner | 08631c5 | 2008-11-23 21:45:46 +0000 | [diff] [blame] | 1013 | << ImplIvar->getIdentifier() |
| 1014 | << ImplIvar->getType() << ClsIvar->getType(); |
Chris Lattner | 5f4a682 | 2008-11-23 23:12:31 +0000 | [diff] [blame] | 1015 | Diag(ClsIvar->getLocation(), diag::note_previous_definition); |
Steve Naroff | ca33129 | 2009-03-03 14:49:36 +0000 | [diff] [blame] | 1016 | } else if (ImplIvar->isBitField() && ClsIvar->isBitField()) { |
| 1017 | Expr *ImplBitWidth = ImplIvar->getBitWidth(); |
| 1018 | Expr *ClsBitWidth = ClsIvar->getBitWidth(); |
Eli Friedman | 9a901bb | 2009-04-26 19:19:15 +0000 | [diff] [blame] | 1019 | if (ImplBitWidth->EvaluateAsInt(Context).getZExtValue() != |
| 1020 | ClsBitWidth->EvaluateAsInt(Context).getZExtValue()) { |
Steve Naroff | ca33129 | 2009-03-03 14:49:36 +0000 | [diff] [blame] | 1021 | Diag(ImplBitWidth->getLocStart(), diag::err_conflicting_ivar_bitwidth) |
| 1022 | << ImplIvar->getIdentifier(); |
| 1023 | Diag(ClsBitWidth->getLocStart(), diag::note_previous_definition); |
| 1024 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1025 | } |
Steve Naroff | ca33129 | 2009-03-03 14:49:36 +0000 | [diff] [blame] | 1026 | // Make sure the names are identical. |
| 1027 | if (ImplIvar->getIdentifier() != ClsIvar->getIdentifier()) { |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 1028 | Diag(ImplIvar->getLocation(), diag::err_conflicting_ivar_name) |
Chris Lattner | 08631c5 | 2008-11-23 21:45:46 +0000 | [diff] [blame] | 1029 | << ImplIvar->getIdentifier() << ClsIvar->getIdentifier(); |
Chris Lattner | 5f4a682 | 2008-11-23 23:12:31 +0000 | [diff] [blame] | 1030 | Diag(ClsIvar->getLocation(), diag::note_previous_definition); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1031 | } |
| 1032 | --numIvars; |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1033 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1034 | |
Chris Lattner | 609e4c7 | 2007-12-12 18:11:49 +0000 | [diff] [blame] | 1035 | if (numIvars > 0) |
Chris Lattner | 0e39105 | 2007-12-12 18:19:52 +0000 | [diff] [blame] | 1036 | Diag(ivars[j]->getLocation(), diag::err_inconsistant_ivar_count); |
Chris Lattner | 609e4c7 | 2007-12-12 18:11:49 +0000 | [diff] [blame] | 1037 | else if (IVI != IVE) |
Chris Lattner | 0e39105 | 2007-12-12 18:19:52 +0000 | [diff] [blame] | 1038 | Diag((*IVI)->getLocation(), diag::err_inconsistant_ivar_count); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1039 | } |
| 1040 | |
Steve Naroff | 3c2eb66 | 2008-02-10 21:38:56 +0000 | [diff] [blame] | 1041 | void Sema::WarnUndefinedMethod(SourceLocation ImpLoc, ObjCMethodDecl *method, |
Fariborz Jahanian | 5214683 | 2010-03-31 18:23:33 +0000 | [diff] [blame] | 1042 | bool &IncompleteImpl, unsigned DiagID) { |
Fariborz Jahanian | 327126e | 2011-06-24 20:31:37 +0000 | [diff] [blame] | 1043 | // No point warning no definition of method which is 'unavailable'. |
| 1044 | if (method->hasAttr<UnavailableAttr>()) |
| 1045 | return; |
Steve Naroff | 3c2eb66 | 2008-02-10 21:38:56 +0000 | [diff] [blame] | 1046 | if (!IncompleteImpl) { |
| 1047 | Diag(ImpLoc, diag::warn_incomplete_impl); |
| 1048 | IncompleteImpl = true; |
| 1049 | } |
Fariborz Jahanian | 61c8d3e | 2010-10-29 23:20:05 +0000 | [diff] [blame] | 1050 | if (DiagID == diag::warn_unimplemented_protocol_method) |
| 1051 | Diag(ImpLoc, DiagID) << method->getDeclName(); |
| 1052 | else |
| 1053 | Diag(method->getLocation(), DiagID) << method->getDeclName(); |
Steve Naroff | 3c2eb66 | 2008-02-10 21:38:56 +0000 | [diff] [blame] | 1054 | } |
| 1055 | |
David Chisnall | e8a2d4c | 2010-10-25 17:23:52 +0000 | [diff] [blame] | 1056 | /// Determines if type B can be substituted for type A. Returns true if we can |
| 1057 | /// guarantee that anything that the user will do to an object of type A can |
| 1058 | /// also be done to an object of type B. This is trivially true if the two |
| 1059 | /// types are the same, or if B is a subclass of A. It becomes more complex |
| 1060 | /// in cases where protocols are involved. |
| 1061 | /// |
| 1062 | /// Object types in Objective-C describe the minimum requirements for an |
| 1063 | /// object, rather than providing a complete description of a type. For |
| 1064 | /// example, if A is a subclass of B, then B* may refer to an instance of A. |
| 1065 | /// The principle of substitutability means that we may use an instance of A |
| 1066 | /// anywhere that we may use an instance of B - it will implement all of the |
| 1067 | /// ivars of B and all of the methods of B. |
| 1068 | /// |
| 1069 | /// This substitutability is important when type checking methods, because |
| 1070 | /// the implementation may have stricter type definitions than the interface. |
| 1071 | /// The interface specifies minimum requirements, but the implementation may |
| 1072 | /// have more accurate ones. For example, a method may privately accept |
| 1073 | /// instances of B, but only publish that it accepts instances of A. Any |
| 1074 | /// object passed to it will be type checked against B, and so will implicitly |
| 1075 | /// by a valid A*. Similarly, a method may return a subclass of the class that |
| 1076 | /// it is declared as returning. |
| 1077 | /// |
| 1078 | /// This is most important when considering subclassing. A method in a |
| 1079 | /// subclass must accept any object as an argument that its superclass's |
| 1080 | /// implementation accepts. It may, however, accept a more general type |
| 1081 | /// without breaking substitutability (i.e. you can still use the subclass |
| 1082 | /// anywhere that you can use the superclass, but not vice versa). The |
| 1083 | /// converse requirement applies to return types: the return type for a |
| 1084 | /// subclass method must be a valid object of the kind that the superclass |
| 1085 | /// advertises, but it may be specified more accurately. This avoids the need |
| 1086 | /// for explicit down-casting by callers. |
| 1087 | /// |
| 1088 | /// Note: This is a stricter requirement than for assignment. |
John McCall | 10302c0 | 2010-10-28 02:34:38 +0000 | [diff] [blame] | 1089 | static bool isObjCTypeSubstitutable(ASTContext &Context, |
| 1090 | const ObjCObjectPointerType *A, |
| 1091 | const ObjCObjectPointerType *B, |
| 1092 | bool rejectId) { |
| 1093 | // Reject a protocol-unqualified id. |
| 1094 | if (rejectId && B->isObjCIdType()) return false; |
David Chisnall | e8a2d4c | 2010-10-25 17:23:52 +0000 | [diff] [blame] | 1095 | |
| 1096 | // If B is a qualified id, then A must also be a qualified id and it must |
| 1097 | // implement all of the protocols in B. It may not be a qualified class. |
| 1098 | // For example, MyClass<A> can be assigned to id<A>, but MyClass<A> is a |
| 1099 | // stricter definition so it is not substitutable for id<A>. |
| 1100 | if (B->isObjCQualifiedIdType()) { |
| 1101 | return A->isObjCQualifiedIdType() && |
John McCall | 10302c0 | 2010-10-28 02:34:38 +0000 | [diff] [blame] | 1102 | Context.ObjCQualifiedIdTypesAreCompatible(QualType(A, 0), |
| 1103 | QualType(B,0), |
| 1104 | false); |
David Chisnall | e8a2d4c | 2010-10-25 17:23:52 +0000 | [diff] [blame] | 1105 | } |
| 1106 | |
| 1107 | /* |
| 1108 | // id is a special type that bypasses type checking completely. We want a |
| 1109 | // warning when it is used in one place but not another. |
| 1110 | if (C.isObjCIdType(A) || C.isObjCIdType(B)) return false; |
| 1111 | |
| 1112 | |
| 1113 | // If B is a qualified id, then A must also be a qualified id (which it isn't |
| 1114 | // if we've got this far) |
| 1115 | if (B->isObjCQualifiedIdType()) return false; |
| 1116 | */ |
| 1117 | |
| 1118 | // Now we know that A and B are (potentially-qualified) class types. The |
| 1119 | // normal rules for assignment apply. |
John McCall | 10302c0 | 2010-10-28 02:34:38 +0000 | [diff] [blame] | 1120 | return Context.canAssignObjCInterfaces(A, B); |
David Chisnall | e8a2d4c | 2010-10-25 17:23:52 +0000 | [diff] [blame] | 1121 | } |
| 1122 | |
John McCall | 10302c0 | 2010-10-28 02:34:38 +0000 | [diff] [blame] | 1123 | static SourceRange getTypeRange(TypeSourceInfo *TSI) { |
| 1124 | return (TSI ? TSI->getTypeLoc().getSourceRange() : SourceRange()); |
| 1125 | } |
| 1126 | |
Fariborz Jahanian | fefe91e | 2011-07-28 23:19:50 +0000 | [diff] [blame] | 1127 | static bool CheckMethodOverrideReturn(Sema &S, |
John McCall | 10302c0 | 2010-10-28 02:34:38 +0000 | [diff] [blame] | 1128 | ObjCMethodDecl *MethodImpl, |
Fariborz Jahanian | 21761c8 | 2011-02-21 23:49:15 +0000 | [diff] [blame] | 1129 | ObjCMethodDecl *MethodDecl, |
Fariborz Jahanian | eee3ef1 | 2011-07-24 20:53:26 +0000 | [diff] [blame] | 1130 | bool IsProtocolMethodDecl, |
Fariborz Jahanian | 730cfb1 | 2011-08-10 17:16:30 +0000 | [diff] [blame] | 1131 | bool IsOverridingMode, |
Fariborz Jahanian | fefe91e | 2011-07-28 23:19:50 +0000 | [diff] [blame] | 1132 | bool Warn) { |
Fariborz Jahanian | 21761c8 | 2011-02-21 23:49:15 +0000 | [diff] [blame] | 1133 | if (IsProtocolMethodDecl && |
| 1134 | (MethodDecl->getObjCDeclQualifier() != |
| 1135 | MethodImpl->getObjCDeclQualifier())) { |
Fariborz Jahanian | fefe91e | 2011-07-28 23:19:50 +0000 | [diff] [blame] | 1136 | if (Warn) { |
Fariborz Jahanian | 730cfb1 | 2011-08-10 17:16:30 +0000 | [diff] [blame] | 1137 | S.Diag(MethodImpl->getLocation(), |
| 1138 | (IsOverridingMode ? |
| 1139 | diag::warn_conflicting_overriding_ret_type_modifiers |
| 1140 | : diag::warn_conflicting_ret_type_modifiers)) |
| 1141 | << MethodImpl->getDeclName() |
Fariborz Jahanian | fefe91e | 2011-07-28 23:19:50 +0000 | [diff] [blame] | 1142 | << getTypeRange(MethodImpl->getResultTypeSourceInfo()); |
| 1143 | S.Diag(MethodDecl->getLocation(), diag::note_previous_declaration) |
| 1144 | << getTypeRange(MethodDecl->getResultTypeSourceInfo()); |
| 1145 | } |
| 1146 | else |
| 1147 | return false; |
Fariborz Jahanian | 21761c8 | 2011-02-21 23:49:15 +0000 | [diff] [blame] | 1148 | } |
| 1149 | |
John McCall | 10302c0 | 2010-10-28 02:34:38 +0000 | [diff] [blame] | 1150 | if (S.Context.hasSameUnqualifiedType(MethodImpl->getResultType(), |
Fariborz Jahanian | 21761c8 | 2011-02-21 23:49:15 +0000 | [diff] [blame] | 1151 | MethodDecl->getResultType())) |
Fariborz Jahanian | fefe91e | 2011-07-28 23:19:50 +0000 | [diff] [blame] | 1152 | return true; |
| 1153 | if (!Warn) |
| 1154 | return false; |
John McCall | 10302c0 | 2010-10-28 02:34:38 +0000 | [diff] [blame] | 1155 | |
Fariborz Jahanian | 730cfb1 | 2011-08-10 17:16:30 +0000 | [diff] [blame] | 1156 | unsigned DiagID = |
| 1157 | IsOverridingMode ? diag::warn_conflicting_overriding_ret_types |
| 1158 | : diag::warn_conflicting_ret_types; |
John McCall | 10302c0 | 2010-10-28 02:34:38 +0000 | [diff] [blame] | 1159 | |
| 1160 | // Mismatches between ObjC pointers go into a different warning |
| 1161 | // category, and sometimes they're even completely whitelisted. |
| 1162 | if (const ObjCObjectPointerType *ImplPtrTy = |
| 1163 | MethodImpl->getResultType()->getAs<ObjCObjectPointerType>()) { |
| 1164 | if (const ObjCObjectPointerType *IfacePtrTy = |
Fariborz Jahanian | 21761c8 | 2011-02-21 23:49:15 +0000 | [diff] [blame] | 1165 | MethodDecl->getResultType()->getAs<ObjCObjectPointerType>()) { |
John McCall | 10302c0 | 2010-10-28 02:34:38 +0000 | [diff] [blame] | 1166 | // Allow non-matching return types as long as they don't violate |
| 1167 | // the principle of substitutability. Specifically, we permit |
| 1168 | // return types that are subclasses of the declared return type, |
| 1169 | // or that are more-qualified versions of the declared type. |
| 1170 | if (isObjCTypeSubstitutable(S.Context, IfacePtrTy, ImplPtrTy, false)) |
Fariborz Jahanian | fefe91e | 2011-07-28 23:19:50 +0000 | [diff] [blame] | 1171 | return false; |
John McCall | 10302c0 | 2010-10-28 02:34:38 +0000 | [diff] [blame] | 1172 | |
Fariborz Jahanian | 730cfb1 | 2011-08-10 17:16:30 +0000 | [diff] [blame] | 1173 | DiagID = |
| 1174 | IsOverridingMode ? diag::warn_non_covariant_overriding_ret_types |
| 1175 | : diag::warn_non_covariant_ret_types; |
John McCall | 10302c0 | 2010-10-28 02:34:38 +0000 | [diff] [blame] | 1176 | } |
| 1177 | } |
| 1178 | |
| 1179 | S.Diag(MethodImpl->getLocation(), DiagID) |
| 1180 | << MethodImpl->getDeclName() |
Fariborz Jahanian | 21761c8 | 2011-02-21 23:49:15 +0000 | [diff] [blame] | 1181 | << MethodDecl->getResultType() |
John McCall | 10302c0 | 2010-10-28 02:34:38 +0000 | [diff] [blame] | 1182 | << MethodImpl->getResultType() |
| 1183 | << getTypeRange(MethodImpl->getResultTypeSourceInfo()); |
Fariborz Jahanian | 730cfb1 | 2011-08-10 17:16:30 +0000 | [diff] [blame] | 1184 | S.Diag(MethodDecl->getLocation(), |
| 1185 | IsOverridingMode ? diag::note_previous_declaration |
| 1186 | : diag::note_previous_definition) |
Fariborz Jahanian | 21761c8 | 2011-02-21 23:49:15 +0000 | [diff] [blame] | 1187 | << getTypeRange(MethodDecl->getResultTypeSourceInfo()); |
Fariborz Jahanian | fefe91e | 2011-07-28 23:19:50 +0000 | [diff] [blame] | 1188 | return false; |
John McCall | 10302c0 | 2010-10-28 02:34:38 +0000 | [diff] [blame] | 1189 | } |
| 1190 | |
Fariborz Jahanian | fefe91e | 2011-07-28 23:19:50 +0000 | [diff] [blame] | 1191 | static bool CheckMethodOverrideParam(Sema &S, |
John McCall | 10302c0 | 2010-10-28 02:34:38 +0000 | [diff] [blame] | 1192 | ObjCMethodDecl *MethodImpl, |
Fariborz Jahanian | 21761c8 | 2011-02-21 23:49:15 +0000 | [diff] [blame] | 1193 | ObjCMethodDecl *MethodDecl, |
John McCall | 10302c0 | 2010-10-28 02:34:38 +0000 | [diff] [blame] | 1194 | ParmVarDecl *ImplVar, |
Fariborz Jahanian | 21761c8 | 2011-02-21 23:49:15 +0000 | [diff] [blame] | 1195 | ParmVarDecl *IfaceVar, |
Fariborz Jahanian | eee3ef1 | 2011-07-24 20:53:26 +0000 | [diff] [blame] | 1196 | bool IsProtocolMethodDecl, |
Fariborz Jahanian | 730cfb1 | 2011-08-10 17:16:30 +0000 | [diff] [blame] | 1197 | bool IsOverridingMode, |
Fariborz Jahanian | fefe91e | 2011-07-28 23:19:50 +0000 | [diff] [blame] | 1198 | bool Warn) { |
Fariborz Jahanian | 21761c8 | 2011-02-21 23:49:15 +0000 | [diff] [blame] | 1199 | if (IsProtocolMethodDecl && |
| 1200 | (ImplVar->getObjCDeclQualifier() != |
| 1201 | IfaceVar->getObjCDeclQualifier())) { |
Fariborz Jahanian | fefe91e | 2011-07-28 23:19:50 +0000 | [diff] [blame] | 1202 | if (Warn) { |
Fariborz Jahanian | 730cfb1 | 2011-08-10 17:16:30 +0000 | [diff] [blame] | 1203 | if (IsOverridingMode) |
| 1204 | S.Diag(ImplVar->getLocation(), |
| 1205 | diag::warn_conflicting_overriding_param_modifiers) |
| 1206 | << getTypeRange(ImplVar->getTypeSourceInfo()) |
| 1207 | << MethodImpl->getDeclName(); |
| 1208 | else S.Diag(ImplVar->getLocation(), |
Fariborz Jahanian | fefe91e | 2011-07-28 23:19:50 +0000 | [diff] [blame] | 1209 | diag::warn_conflicting_param_modifiers) |
| 1210 | << getTypeRange(ImplVar->getTypeSourceInfo()) |
Fariborz Jahanian | 730cfb1 | 2011-08-10 17:16:30 +0000 | [diff] [blame] | 1211 | << MethodImpl->getDeclName(); |
Fariborz Jahanian | fefe91e | 2011-07-28 23:19:50 +0000 | [diff] [blame] | 1212 | S.Diag(IfaceVar->getLocation(), diag::note_previous_declaration) |
| 1213 | << getTypeRange(IfaceVar->getTypeSourceInfo()); |
| 1214 | } |
| 1215 | else |
| 1216 | return false; |
Fariborz Jahanian | 21761c8 | 2011-02-21 23:49:15 +0000 | [diff] [blame] | 1217 | } |
| 1218 | |
John McCall | 10302c0 | 2010-10-28 02:34:38 +0000 | [diff] [blame] | 1219 | QualType ImplTy = ImplVar->getType(); |
| 1220 | QualType IfaceTy = IfaceVar->getType(); |
Fariborz Jahanian | 21761c8 | 2011-02-21 23:49:15 +0000 | [diff] [blame] | 1221 | |
John McCall | 10302c0 | 2010-10-28 02:34:38 +0000 | [diff] [blame] | 1222 | if (S.Context.hasSameUnqualifiedType(ImplTy, IfaceTy)) |
Fariborz Jahanian | fefe91e | 2011-07-28 23:19:50 +0000 | [diff] [blame] | 1223 | return true; |
| 1224 | |
| 1225 | if (!Warn) |
| 1226 | return false; |
Fariborz Jahanian | 730cfb1 | 2011-08-10 17:16:30 +0000 | [diff] [blame] | 1227 | unsigned DiagID = |
| 1228 | IsOverridingMode ? diag::warn_conflicting_overriding_param_types |
| 1229 | : diag::warn_conflicting_param_types; |
John McCall | 10302c0 | 2010-10-28 02:34:38 +0000 | [diff] [blame] | 1230 | |
| 1231 | // Mismatches between ObjC pointers go into a different warning |
| 1232 | // category, and sometimes they're even completely whitelisted. |
| 1233 | if (const ObjCObjectPointerType *ImplPtrTy = |
| 1234 | ImplTy->getAs<ObjCObjectPointerType>()) { |
| 1235 | if (const ObjCObjectPointerType *IfacePtrTy = |
| 1236 | IfaceTy->getAs<ObjCObjectPointerType>()) { |
| 1237 | // Allow non-matching argument types as long as they don't |
| 1238 | // violate the principle of substitutability. Specifically, the |
| 1239 | // implementation must accept any objects that the superclass |
| 1240 | // accepts, however it may also accept others. |
| 1241 | if (isObjCTypeSubstitutable(S.Context, ImplPtrTy, IfacePtrTy, true)) |
Fariborz Jahanian | fefe91e | 2011-07-28 23:19:50 +0000 | [diff] [blame] | 1242 | return false; |
John McCall | 10302c0 | 2010-10-28 02:34:38 +0000 | [diff] [blame] | 1243 | |
Fariborz Jahanian | 730cfb1 | 2011-08-10 17:16:30 +0000 | [diff] [blame] | 1244 | DiagID = |
| 1245 | IsOverridingMode ? diag::warn_non_contravariant_overriding_param_types |
| 1246 | : diag::warn_non_contravariant_param_types; |
John McCall | 10302c0 | 2010-10-28 02:34:38 +0000 | [diff] [blame] | 1247 | } |
| 1248 | } |
| 1249 | |
| 1250 | S.Diag(ImplVar->getLocation(), DiagID) |
| 1251 | << getTypeRange(ImplVar->getTypeSourceInfo()) |
Fariborz Jahanian | 730cfb1 | 2011-08-10 17:16:30 +0000 | [diff] [blame] | 1252 | << MethodImpl->getDeclName() << IfaceTy << ImplTy; |
| 1253 | S.Diag(IfaceVar->getLocation(), |
| 1254 | (IsOverridingMode ? diag::note_previous_declaration |
| 1255 | : diag::note_previous_definition)) |
John McCall | 10302c0 | 2010-10-28 02:34:38 +0000 | [diff] [blame] | 1256 | << getTypeRange(IfaceVar->getTypeSourceInfo()); |
Fariborz Jahanian | fefe91e | 2011-07-28 23:19:50 +0000 | [diff] [blame] | 1257 | return false; |
John McCall | 10302c0 | 2010-10-28 02:34:38 +0000 | [diff] [blame] | 1258 | } |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1259 | |
| 1260 | /// In ARC, check whether the conventional meanings of the two methods |
| 1261 | /// match. If they don't, it's a hard error. |
| 1262 | static bool checkMethodFamilyMismatch(Sema &S, ObjCMethodDecl *impl, |
| 1263 | ObjCMethodDecl *decl) { |
| 1264 | ObjCMethodFamily implFamily = impl->getMethodFamily(); |
| 1265 | ObjCMethodFamily declFamily = decl->getMethodFamily(); |
| 1266 | if (implFamily == declFamily) return false; |
| 1267 | |
| 1268 | // Since conventions are sorted by selector, the only possibility is |
| 1269 | // that the types differ enough to cause one selector or the other |
| 1270 | // to fall out of the family. |
| 1271 | assert(implFamily == OMF_None || declFamily == OMF_None); |
| 1272 | |
| 1273 | // No further diagnostics required on invalid declarations. |
| 1274 | if (impl->isInvalidDecl() || decl->isInvalidDecl()) return true; |
| 1275 | |
| 1276 | const ObjCMethodDecl *unmatched = impl; |
| 1277 | ObjCMethodFamily family = declFamily; |
| 1278 | unsigned errorID = diag::err_arc_lost_method_convention; |
| 1279 | unsigned noteID = diag::note_arc_lost_method_convention; |
| 1280 | if (declFamily == OMF_None) { |
| 1281 | unmatched = decl; |
| 1282 | family = implFamily; |
| 1283 | errorID = diag::err_arc_gained_method_convention; |
| 1284 | noteID = diag::note_arc_gained_method_convention; |
| 1285 | } |
| 1286 | |
| 1287 | // Indexes into a %select clause in the diagnostic. |
| 1288 | enum FamilySelector { |
| 1289 | F_alloc, F_copy, F_mutableCopy = F_copy, F_init, F_new |
| 1290 | }; |
| 1291 | FamilySelector familySelector = FamilySelector(); |
| 1292 | |
| 1293 | switch (family) { |
| 1294 | case OMF_None: llvm_unreachable("logic error, no method convention"); |
| 1295 | case OMF_retain: |
| 1296 | case OMF_release: |
| 1297 | case OMF_autorelease: |
| 1298 | case OMF_dealloc: |
Nico Weber | 80cb6e6 | 2011-08-28 22:35:17 +0000 | [diff] [blame] | 1299 | case OMF_finalize: |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1300 | case OMF_retainCount: |
| 1301 | case OMF_self: |
Fariborz Jahanian | 9670e17 | 2011-07-05 22:38:59 +0000 | [diff] [blame] | 1302 | case OMF_performSelector: |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1303 | // Mismatches for these methods don't change ownership |
| 1304 | // conventions, so we don't care. |
| 1305 | return false; |
| 1306 | |
| 1307 | case OMF_init: familySelector = F_init; break; |
| 1308 | case OMF_alloc: familySelector = F_alloc; break; |
| 1309 | case OMF_copy: familySelector = F_copy; break; |
| 1310 | case OMF_mutableCopy: familySelector = F_mutableCopy; break; |
| 1311 | case OMF_new: familySelector = F_new; break; |
| 1312 | } |
| 1313 | |
| 1314 | enum ReasonSelector { R_NonObjectReturn, R_UnrelatedReturn }; |
| 1315 | ReasonSelector reasonSelector; |
| 1316 | |
| 1317 | // The only reason these methods don't fall within their families is |
| 1318 | // due to unusual result types. |
| 1319 | if (unmatched->getResultType()->isObjCObjectPointerType()) { |
| 1320 | reasonSelector = R_UnrelatedReturn; |
| 1321 | } else { |
| 1322 | reasonSelector = R_NonObjectReturn; |
| 1323 | } |
| 1324 | |
| 1325 | S.Diag(impl->getLocation(), errorID) << familySelector << reasonSelector; |
| 1326 | S.Diag(decl->getLocation(), noteID) << familySelector << reasonSelector; |
| 1327 | |
| 1328 | return true; |
| 1329 | } |
John McCall | 10302c0 | 2010-10-28 02:34:38 +0000 | [diff] [blame] | 1330 | |
Fariborz Jahanian | 8daab97 | 2008-12-05 18:18:52 +0000 | [diff] [blame] | 1331 | void Sema::WarnConflictingTypedMethods(ObjCMethodDecl *ImpMethodDecl, |
Fariborz Jahanian | 21761c8 | 2011-02-21 23:49:15 +0000 | [diff] [blame] | 1332 | ObjCMethodDecl *MethodDecl, |
Fariborz Jahanian | eee3ef1 | 2011-07-24 20:53:26 +0000 | [diff] [blame] | 1333 | bool IsProtocolMethodDecl, |
Fariborz Jahanian | 730cfb1 | 2011-08-10 17:16:30 +0000 | [diff] [blame] | 1334 | bool IsOverridingMode) { |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1335 | if (getLangOptions().ObjCAutoRefCount && |
Fariborz Jahanian | 730cfb1 | 2011-08-10 17:16:30 +0000 | [diff] [blame] | 1336 | !IsOverridingMode && |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1337 | checkMethodFamilyMismatch(*this, ImpMethodDecl, MethodDecl)) |
| 1338 | return; |
| 1339 | |
Fariborz Jahanian | 21761c8 | 2011-02-21 23:49:15 +0000 | [diff] [blame] | 1340 | CheckMethodOverrideReturn(*this, ImpMethodDecl, MethodDecl, |
Fariborz Jahanian | 730cfb1 | 2011-08-10 17:16:30 +0000 | [diff] [blame] | 1341 | IsProtocolMethodDecl, IsOverridingMode, |
| 1342 | true); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1343 | |
Chris Lattner | 3aff919 | 2009-04-11 19:58:42 +0000 | [diff] [blame] | 1344 | for (ObjCMethodDecl::param_iterator IM = ImpMethodDecl->param_begin(), |
Fariborz Jahanian | 21761c8 | 2011-02-21 23:49:15 +0000 | [diff] [blame] | 1345 | IF = MethodDecl->param_begin(), EM = ImpMethodDecl->param_end(); |
Fariborz Jahanian | 2112190 | 2011-08-08 18:03:17 +0000 | [diff] [blame] | 1346 | IM != EM; ++IM, ++IF) { |
Fariborz Jahanian | 730cfb1 | 2011-08-10 17:16:30 +0000 | [diff] [blame] | 1347 | CheckMethodOverrideParam(*this, ImpMethodDecl, MethodDecl, *IM, *IF, |
| 1348 | IsProtocolMethodDecl, IsOverridingMode, true); |
Fariborz Jahanian | 2112190 | 2011-08-08 18:03:17 +0000 | [diff] [blame] | 1349 | } |
Fariborz Jahanian | 730cfb1 | 2011-08-10 17:16:30 +0000 | [diff] [blame] | 1350 | |
Fariborz Jahanian | 2112190 | 2011-08-08 18:03:17 +0000 | [diff] [blame] | 1351 | if (ImpMethodDecl->isVariadic() != MethodDecl->isVariadic()) { |
Fariborz Jahanian | 730cfb1 | 2011-08-10 17:16:30 +0000 | [diff] [blame] | 1352 | if (IsOverridingMode) |
| 1353 | Diag(ImpMethodDecl->getLocation(), |
| 1354 | diag::warn_conflicting_overriding_variadic); |
| 1355 | else |
| 1356 | Diag(ImpMethodDecl->getLocation(), diag::warn_conflicting_variadic); |
Fariborz Jahanian | 2112190 | 2011-08-08 18:03:17 +0000 | [diff] [blame] | 1357 | Diag(MethodDecl->getLocation(), diag::note_previous_declaration); |
Fariborz Jahanian | 2112190 | 2011-08-08 18:03:17 +0000 | [diff] [blame] | 1358 | } |
Fariborz Jahanian | 2112190 | 2011-08-08 18:03:17 +0000 | [diff] [blame] | 1359 | } |
| 1360 | |
Fariborz Jahanian | fefe91e | 2011-07-28 23:19:50 +0000 | [diff] [blame] | 1361 | /// WarnExactTypedMethods - This routine issues a warning if method |
| 1362 | /// implementation declaration matches exactly that of its declaration. |
| 1363 | void Sema::WarnExactTypedMethods(ObjCMethodDecl *ImpMethodDecl, |
| 1364 | ObjCMethodDecl *MethodDecl, |
| 1365 | bool IsProtocolMethodDecl) { |
| 1366 | // don't issue warning when protocol method is optional because primary |
| 1367 | // class is not required to implement it and it is safe for protocol |
| 1368 | // to implement it. |
| 1369 | if (MethodDecl->getImplementationControl() == ObjCMethodDecl::Optional) |
| 1370 | return; |
| 1371 | // don't issue warning when primary class's method is |
| 1372 | // depecated/unavailable. |
| 1373 | if (MethodDecl->hasAttr<UnavailableAttr>() || |
| 1374 | MethodDecl->hasAttr<DeprecatedAttr>()) |
| 1375 | return; |
| 1376 | |
| 1377 | bool match = CheckMethodOverrideReturn(*this, ImpMethodDecl, MethodDecl, |
| 1378 | IsProtocolMethodDecl, false, false); |
| 1379 | if (match) |
| 1380 | for (ObjCMethodDecl::param_iterator IM = ImpMethodDecl->param_begin(), |
| 1381 | IF = MethodDecl->param_begin(), EM = ImpMethodDecl->param_end(); |
| 1382 | IM != EM; ++IM, ++IF) { |
| 1383 | match = CheckMethodOverrideParam(*this, ImpMethodDecl, MethodDecl, |
| 1384 | *IM, *IF, |
| 1385 | IsProtocolMethodDecl, false, false); |
| 1386 | if (!match) |
| 1387 | break; |
| 1388 | } |
| 1389 | if (match) |
| 1390 | match = (ImpMethodDecl->isVariadic() == MethodDecl->isVariadic()); |
David Chisnall | 7ca13ef | 2011-08-08 17:32:19 +0000 | [diff] [blame] | 1391 | if (match) |
| 1392 | match = !(MethodDecl->isClassMethod() && |
| 1393 | MethodDecl->getSelector() == GetNullarySelector("load", Context)); |
Fariborz Jahanian | fefe91e | 2011-07-28 23:19:50 +0000 | [diff] [blame] | 1394 | |
| 1395 | if (match) { |
| 1396 | Diag(ImpMethodDecl->getLocation(), |
| 1397 | diag::warn_category_method_impl_match); |
| 1398 | Diag(MethodDecl->getLocation(), diag::note_method_declared_at); |
| 1399 | } |
| 1400 | } |
| 1401 | |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 1402 | /// FIXME: Type hierarchies in Objective-C can be deep. We could most likely |
| 1403 | /// improve the efficiency of selector lookups and type checking by associating |
| 1404 | /// with each protocol / interface / category the flattened instance tables. If |
| 1405 | /// we used an immutable set to keep the table then it wouldn't add significant |
| 1406 | /// memory cost and it would be handy for lookups. |
Daniel Dunbar | b20ef3e | 2008-08-27 05:40:03 +0000 | [diff] [blame] | 1407 | |
Steve Naroff | efe7f36 | 2008-02-08 22:06:17 +0000 | [diff] [blame] | 1408 | /// CheckProtocolMethodDefs - This routine checks unimplemented methods |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1409 | /// Declared in protocol, and those referenced by it. |
Steve Naroff | efe7f36 | 2008-02-08 22:06:17 +0000 | [diff] [blame] | 1410 | void Sema::CheckProtocolMethodDefs(SourceLocation ImpLoc, |
| 1411 | ObjCProtocolDecl *PDecl, |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1412 | bool& IncompleteImpl, |
Steve Naroff | efe7f36 | 2008-02-08 22:06:17 +0000 | [diff] [blame] | 1413 | const llvm::DenseSet<Selector> &InsMap, |
Daniel Dunbar | 7ad1b1f | 2008-09-04 20:01:15 +0000 | [diff] [blame] | 1414 | const llvm::DenseSet<Selector> &ClsMap, |
Fariborz Jahanian | f283859 | 2010-03-27 21:10:05 +0000 | [diff] [blame] | 1415 | ObjCContainerDecl *CDecl) { |
| 1416 | ObjCInterfaceDecl *IDecl; |
| 1417 | if (ObjCCategoryDecl *C = dyn_cast<ObjCCategoryDecl>(CDecl)) |
| 1418 | IDecl = C->getClassInterface(); |
| 1419 | else |
| 1420 | IDecl = dyn_cast<ObjCInterfaceDecl>(CDecl); |
| 1421 | assert (IDecl && "CheckProtocolMethodDefs - IDecl is null"); |
| 1422 | |
Daniel Dunbar | 7ad1b1f | 2008-09-04 20:01:15 +0000 | [diff] [blame] | 1423 | ObjCInterfaceDecl *Super = IDecl->getSuperClass(); |
Fariborz Jahanian | cd18762 | 2009-05-22 17:12:32 +0000 | [diff] [blame] | 1424 | ObjCInterfaceDecl *NSIDecl = 0; |
| 1425 | if (getLangOptions().NeXTRuntime) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1426 | // check to see if class implements forwardInvocation method and objects |
| 1427 | // of this class are derived from 'NSProxy' so that to forward requests |
Fariborz Jahanian | cd18762 | 2009-05-22 17:12:32 +0000 | [diff] [blame] | 1428 | // from one object to another. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1429 | // Under such conditions, which means that every method possible is |
| 1430 | // implemented in the class, we should not issue "Method definition not |
Fariborz Jahanian | cd18762 | 2009-05-22 17:12:32 +0000 | [diff] [blame] | 1431 | // found" warnings. |
| 1432 | // FIXME: Use a general GetUnarySelector method for this. |
| 1433 | IdentifierInfo* II = &Context.Idents.get("forwardInvocation"); |
| 1434 | Selector fISelector = Context.Selectors.getSelector(1, &II); |
| 1435 | if (InsMap.count(fISelector)) |
| 1436 | // Is IDecl derived from 'NSProxy'? If so, no instance methods |
| 1437 | // need be implemented in the implementation. |
| 1438 | NSIDecl = IDecl->lookupInheritedClass(&Context.Idents.get("NSProxy")); |
| 1439 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1440 | |
Daniel Dunbar | 7ad1b1f | 2008-09-04 20:01:15 +0000 | [diff] [blame] | 1441 | // If a method lookup fails locally we still need to look and see if |
| 1442 | // the method was implemented by a base class or an inherited |
| 1443 | // protocol. This lookup is slow, but occurs rarely in correct code |
| 1444 | // and otherwise would terminate in a warning. |
| 1445 | |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1446 | // check unimplemented instance methods. |
Fariborz Jahanian | cd18762 | 2009-05-22 17:12:32 +0000 | [diff] [blame] | 1447 | if (!NSIDecl) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1448 | for (ObjCProtocolDecl::instmeth_iterator I = PDecl->instmeth_begin(), |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1449 | E = PDecl->instmeth_end(); I != E; ++I) { |
Fariborz Jahanian | cd18762 | 2009-05-22 17:12:32 +0000 | [diff] [blame] | 1450 | ObjCMethodDecl *method = *I; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1451 | if (method->getImplementationControl() != ObjCMethodDecl::Optional && |
Fariborz Jahanian | cd18762 | 2009-05-22 17:12:32 +0000 | [diff] [blame] | 1452 | !method->isSynthesized() && !InsMap.count(method->getSelector()) && |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1453 | (!Super || |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1454 | !Super->lookupInstanceMethod(method->getSelector()))) { |
Fariborz Jahanian | cd18762 | 2009-05-22 17:12:32 +0000 | [diff] [blame] | 1455 | // Ugly, but necessary. Method declared in protcol might have |
| 1456 | // have been synthesized due to a property declared in the class which |
| 1457 | // uses the protocol. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1458 | ObjCMethodDecl *MethodInClass = |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1459 | IDecl->lookupInstanceMethod(method->getSelector()); |
Fariborz Jahanian | 8822f7c | 2010-03-27 19:02:17 +0000 | [diff] [blame] | 1460 | if (!MethodInClass || !MethodInClass->isSynthesized()) { |
Fariborz Jahanian | 5214683 | 2010-03-31 18:23:33 +0000 | [diff] [blame] | 1461 | unsigned DIAG = diag::warn_unimplemented_protocol_method; |
Argyrios Kyrtzidis | 0827408 | 2010-12-15 18:44:22 +0000 | [diff] [blame] | 1462 | if (Diags.getDiagnosticLevel(DIAG, ImpLoc) |
David Blaikie | d6471f7 | 2011-09-25 23:23:43 +0000 | [diff] [blame] | 1463 | != DiagnosticsEngine::Ignored) { |
Fariborz Jahanian | 5214683 | 2010-03-31 18:23:33 +0000 | [diff] [blame] | 1464 | WarnUndefinedMethod(ImpLoc, method, IncompleteImpl, DIAG); |
Fariborz Jahanian | 61c8d3e | 2010-10-29 23:20:05 +0000 | [diff] [blame] | 1465 | Diag(method->getLocation(), diag::note_method_declared_at); |
Fariborz Jahanian | 5214683 | 2010-03-31 18:23:33 +0000 | [diff] [blame] | 1466 | Diag(CDecl->getLocation(), diag::note_required_for_protocol_at) |
| 1467 | << PDecl->getDeclName(); |
| 1468 | } |
Fariborz Jahanian | 8822f7c | 2010-03-27 19:02:17 +0000 | [diff] [blame] | 1469 | } |
Fariborz Jahanian | cd18762 | 2009-05-22 17:12:32 +0000 | [diff] [blame] | 1470 | } |
| 1471 | } |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1472 | // check unimplemented class methods |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1473 | for (ObjCProtocolDecl::classmeth_iterator |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1474 | I = PDecl->classmeth_begin(), E = PDecl->classmeth_end(); |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 1475 | I != E; ++I) { |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1476 | ObjCMethodDecl *method = *I; |
Daniel Dunbar | 7ad1b1f | 2008-09-04 20:01:15 +0000 | [diff] [blame] | 1477 | if (method->getImplementationControl() != ObjCMethodDecl::Optional && |
| 1478 | !ClsMap.count(method->getSelector()) && |
Fariborz Jahanian | 8822f7c | 2010-03-27 19:02:17 +0000 | [diff] [blame] | 1479 | (!Super || !Super->lookupClassMethod(method->getSelector()))) { |
Fariborz Jahanian | 5214683 | 2010-03-31 18:23:33 +0000 | [diff] [blame] | 1480 | unsigned DIAG = diag::warn_unimplemented_protocol_method; |
David Blaikie | d6471f7 | 2011-09-25 23:23:43 +0000 | [diff] [blame] | 1481 | if (Diags.getDiagnosticLevel(DIAG, ImpLoc) != |
| 1482 | DiagnosticsEngine::Ignored) { |
Fariborz Jahanian | 5214683 | 2010-03-31 18:23:33 +0000 | [diff] [blame] | 1483 | WarnUndefinedMethod(ImpLoc, method, IncompleteImpl, DIAG); |
Fariborz Jahanian | 61c8d3e | 2010-10-29 23:20:05 +0000 | [diff] [blame] | 1484 | Diag(method->getLocation(), diag::note_method_declared_at); |
Fariborz Jahanian | 5214683 | 2010-03-31 18:23:33 +0000 | [diff] [blame] | 1485 | Diag(IDecl->getLocation(), diag::note_required_for_protocol_at) << |
| 1486 | PDecl->getDeclName(); |
| 1487 | } |
Fariborz Jahanian | 8822f7c | 2010-03-27 19:02:17 +0000 | [diff] [blame] | 1488 | } |
Steve Naroff | 58dbdeb | 2007-12-14 23:37:57 +0000 | [diff] [blame] | 1489 | } |
Chris Lattner | 780f329 | 2008-07-21 21:32:27 +0000 | [diff] [blame] | 1490 | // Check on this protocols's referenced protocols, recursively. |
| 1491 | for (ObjCProtocolDecl::protocol_iterator PI = PDecl->protocol_begin(), |
| 1492 | E = PDecl->protocol_end(); PI != E; ++PI) |
Daniel Dunbar | 7ad1b1f | 2008-09-04 20:01:15 +0000 | [diff] [blame] | 1493 | CheckProtocolMethodDefs(ImpLoc, *PI, IncompleteImpl, InsMap, ClsMap, IDecl); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1494 | } |
| 1495 | |
Fariborz Jahanian | 1e159bc | 2011-07-16 00:08:33 +0000 | [diff] [blame] | 1496 | /// MatchAllMethodDeclarations - Check methods declared in interface |
Fariborz Jahanian | b33f3ad | 2009-05-01 20:07:12 +0000 | [diff] [blame] | 1497 | /// or protocol against those declared in their implementations. |
| 1498 | /// |
| 1499 | void Sema::MatchAllMethodDeclarations(const llvm::DenseSet<Selector> &InsMap, |
| 1500 | const llvm::DenseSet<Selector> &ClsMap, |
| 1501 | llvm::DenseSet<Selector> &InsMapSeen, |
| 1502 | llvm::DenseSet<Selector> &ClsMapSeen, |
| 1503 | ObjCImplDecl* IMPDecl, |
| 1504 | ObjCContainerDecl* CDecl, |
| 1505 | bool &IncompleteImpl, |
Fariborz Jahanian | fefe91e | 2011-07-28 23:19:50 +0000 | [diff] [blame] | 1506 | bool ImmediateClass, |
| 1507 | bool WarnExactMatch) { |
Fariborz Jahanian | b33f3ad | 2009-05-01 20:07:12 +0000 | [diff] [blame] | 1508 | // Check and see if instance methods in class interface have been |
| 1509 | // implemented in the implementation class. If so, their types match. |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1510 | for (ObjCInterfaceDecl::instmeth_iterator I = CDecl->instmeth_begin(), |
| 1511 | E = CDecl->instmeth_end(); I != E; ++I) { |
Fariborz Jahanian | b33f3ad | 2009-05-01 20:07:12 +0000 | [diff] [blame] | 1512 | if (InsMapSeen.count((*I)->getSelector())) |
| 1513 | continue; |
| 1514 | InsMapSeen.insert((*I)->getSelector()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1515 | if (!(*I)->isSynthesized() && |
Fariborz Jahanian | b33f3ad | 2009-05-01 20:07:12 +0000 | [diff] [blame] | 1516 | !InsMap.count((*I)->getSelector())) { |
| 1517 | if (ImmediateClass) |
Fariborz Jahanian | 5214683 | 2010-03-31 18:23:33 +0000 | [diff] [blame] | 1518 | WarnUndefinedMethod(IMPDecl->getLocation(), *I, IncompleteImpl, |
| 1519 | diag::note_undef_method_impl); |
Fariborz Jahanian | b33f3ad | 2009-05-01 20:07:12 +0000 | [diff] [blame] | 1520 | continue; |
Mike Stump | ac5fc7c | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 1521 | } else { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1522 | ObjCMethodDecl *ImpMethodDecl = |
Argyrios Kyrtzidis | 2334f3a | 2011-08-30 19:43:21 +0000 | [diff] [blame] | 1523 | IMPDecl->getInstanceMethod((*I)->getSelector()); |
| 1524 | assert(CDecl->getInstanceMethod((*I)->getSelector()) && |
| 1525 | "Expected to find the method through lookup as well"); |
| 1526 | ObjCMethodDecl *MethodDecl = *I; |
Fariborz Jahanian | b33f3ad | 2009-05-01 20:07:12 +0000 | [diff] [blame] | 1527 | // ImpMethodDecl may be null as in a @dynamic property. |
Fariborz Jahanian | fefe91e | 2011-07-28 23:19:50 +0000 | [diff] [blame] | 1528 | if (ImpMethodDecl) { |
| 1529 | if (!WarnExactMatch) |
| 1530 | WarnConflictingTypedMethods(ImpMethodDecl, MethodDecl, |
| 1531 | isa<ObjCProtocolDecl>(CDecl)); |
Fariborz Jahanian | 8c7e67d | 2011-08-25 22:58:42 +0000 | [diff] [blame] | 1532 | else if (!MethodDecl->isSynthesized()) |
Fariborz Jahanian | fefe91e | 2011-07-28 23:19:50 +0000 | [diff] [blame] | 1533 | WarnExactTypedMethods(ImpMethodDecl, MethodDecl, |
| 1534 | isa<ObjCProtocolDecl>(CDecl)); |
| 1535 | } |
Fariborz Jahanian | b33f3ad | 2009-05-01 20:07:12 +0000 | [diff] [blame] | 1536 | } |
| 1537 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1538 | |
Fariborz Jahanian | b33f3ad | 2009-05-01 20:07:12 +0000 | [diff] [blame] | 1539 | // Check and see if class methods in class interface have been |
| 1540 | // implemented in the implementation class. If so, their types match. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1541 | for (ObjCInterfaceDecl::classmeth_iterator |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1542 | I = CDecl->classmeth_begin(), E = CDecl->classmeth_end(); I != E; ++I) { |
Fariborz Jahanian | b33f3ad | 2009-05-01 20:07:12 +0000 | [diff] [blame] | 1543 | if (ClsMapSeen.count((*I)->getSelector())) |
| 1544 | continue; |
| 1545 | ClsMapSeen.insert((*I)->getSelector()); |
| 1546 | if (!ClsMap.count((*I)->getSelector())) { |
| 1547 | if (ImmediateClass) |
Fariborz Jahanian | 5214683 | 2010-03-31 18:23:33 +0000 | [diff] [blame] | 1548 | WarnUndefinedMethod(IMPDecl->getLocation(), *I, IncompleteImpl, |
| 1549 | diag::note_undef_method_impl); |
Mike Stump | ac5fc7c | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 1550 | } else { |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1551 | ObjCMethodDecl *ImpMethodDecl = |
| 1552 | IMPDecl->getClassMethod((*I)->getSelector()); |
Argyrios Kyrtzidis | 2334f3a | 2011-08-30 19:43:21 +0000 | [diff] [blame] | 1553 | assert(CDecl->getClassMethod((*I)->getSelector()) && |
| 1554 | "Expected to find the method through lookup as well"); |
| 1555 | ObjCMethodDecl *MethodDecl = *I; |
Fariborz Jahanian | fefe91e | 2011-07-28 23:19:50 +0000 | [diff] [blame] | 1556 | if (!WarnExactMatch) |
| 1557 | WarnConflictingTypedMethods(ImpMethodDecl, MethodDecl, |
| 1558 | isa<ObjCProtocolDecl>(CDecl)); |
| 1559 | else |
| 1560 | WarnExactTypedMethods(ImpMethodDecl, MethodDecl, |
| 1561 | isa<ObjCProtocolDecl>(CDecl)); |
Fariborz Jahanian | b33f3ad | 2009-05-01 20:07:12 +0000 | [diff] [blame] | 1562 | } |
| 1563 | } |
Fariborz Jahanian | f54e3ae | 2010-10-08 22:59:25 +0000 | [diff] [blame] | 1564 | |
Fariborz Jahanian | b33f3ad | 2009-05-01 20:07:12 +0000 | [diff] [blame] | 1565 | if (ObjCInterfaceDecl *I = dyn_cast<ObjCInterfaceDecl> (CDecl)) { |
Fariborz Jahanian | f54e3ae | 2010-10-08 22:59:25 +0000 | [diff] [blame] | 1566 | // Also methods in class extensions need be looked at next. |
| 1567 | for (const ObjCCategoryDecl *ClsExtDecl = I->getFirstClassExtension(); |
| 1568 | ClsExtDecl; ClsExtDecl = ClsExtDecl->getNextClassExtension()) |
| 1569 | MatchAllMethodDeclarations(InsMap, ClsMap, InsMapSeen, ClsMapSeen, |
| 1570 | IMPDecl, |
| 1571 | const_cast<ObjCCategoryDecl *>(ClsExtDecl), |
Fariborz Jahanian | fefe91e | 2011-07-28 23:19:50 +0000 | [diff] [blame] | 1572 | IncompleteImpl, false, WarnExactMatch); |
Fariborz Jahanian | f54e3ae | 2010-10-08 22:59:25 +0000 | [diff] [blame] | 1573 | |
Fariborz Jahanian | b33f3ad | 2009-05-01 20:07:12 +0000 | [diff] [blame] | 1574 | // Check for any implementation of a methods declared in protocol. |
Ted Kremenek | 53b9441 | 2010-09-01 01:21:15 +0000 | [diff] [blame] | 1575 | for (ObjCInterfaceDecl::all_protocol_iterator |
| 1576 | PI = I->all_referenced_protocol_begin(), |
| 1577 | E = I->all_referenced_protocol_end(); PI != E; ++PI) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1578 | MatchAllMethodDeclarations(InsMap, ClsMap, InsMapSeen, ClsMapSeen, |
| 1579 | IMPDecl, |
Fariborz Jahanian | fefe91e | 2011-07-28 23:19:50 +0000 | [diff] [blame] | 1580 | (*PI), IncompleteImpl, false, WarnExactMatch); |
Fariborz Jahanian | eee3ef1 | 2011-07-24 20:53:26 +0000 | [diff] [blame] | 1581 | |
Fariborz Jahanian | fefe91e | 2011-07-28 23:19:50 +0000 | [diff] [blame] | 1582 | // FIXME. For now, we are not checking for extact match of methods |
| 1583 | // in category implementation and its primary class's super class. |
| 1584 | if (!WarnExactMatch && I->getSuperClass()) |
Fariborz Jahanian | b33f3ad | 2009-05-01 20:07:12 +0000 | [diff] [blame] | 1585 | MatchAllMethodDeclarations(InsMap, ClsMap, InsMapSeen, ClsMapSeen, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1586 | IMPDecl, |
Fariborz Jahanian | b33f3ad | 2009-05-01 20:07:12 +0000 | [diff] [blame] | 1587 | I->getSuperClass(), IncompleteImpl, false); |
| 1588 | } |
| 1589 | } |
| 1590 | |
Fariborz Jahanian | fefe91e | 2011-07-28 23:19:50 +0000 | [diff] [blame] | 1591 | /// CheckCategoryVsClassMethodMatches - Checks that methods implemented in |
| 1592 | /// category matches with those implemented in its primary class and |
| 1593 | /// warns each time an exact match is found. |
| 1594 | void Sema::CheckCategoryVsClassMethodMatches( |
| 1595 | ObjCCategoryImplDecl *CatIMPDecl) { |
| 1596 | llvm::DenseSet<Selector> InsMap, ClsMap; |
| 1597 | |
| 1598 | for (ObjCImplementationDecl::instmeth_iterator |
| 1599 | I = CatIMPDecl->instmeth_begin(), |
| 1600 | E = CatIMPDecl->instmeth_end(); I!=E; ++I) |
| 1601 | InsMap.insert((*I)->getSelector()); |
| 1602 | |
| 1603 | for (ObjCImplementationDecl::classmeth_iterator |
| 1604 | I = CatIMPDecl->classmeth_begin(), |
| 1605 | E = CatIMPDecl->classmeth_end(); I != E; ++I) |
| 1606 | ClsMap.insert((*I)->getSelector()); |
| 1607 | if (InsMap.empty() && ClsMap.empty()) |
| 1608 | return; |
| 1609 | |
| 1610 | // Get category's primary class. |
| 1611 | ObjCCategoryDecl *CatDecl = CatIMPDecl->getCategoryDecl(); |
| 1612 | if (!CatDecl) |
| 1613 | return; |
| 1614 | ObjCInterfaceDecl *IDecl = CatDecl->getClassInterface(); |
| 1615 | if (!IDecl) |
| 1616 | return; |
| 1617 | llvm::DenseSet<Selector> InsMapSeen, ClsMapSeen; |
| 1618 | bool IncompleteImpl = false; |
| 1619 | MatchAllMethodDeclarations(InsMap, ClsMap, InsMapSeen, ClsMapSeen, |
| 1620 | CatIMPDecl, IDecl, |
| 1621 | IncompleteImpl, false, true /*WarnExactMatch*/); |
| 1622 | } |
Fariborz Jahanian | eee3ef1 | 2011-07-24 20:53:26 +0000 | [diff] [blame] | 1623 | |
Fariborz Jahanian | 17cb326 | 2010-05-05 21:52:17 +0000 | [diff] [blame] | 1624 | void Sema::ImplMethodsVsClassMethods(Scope *S, ObjCImplDecl* IMPDecl, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1625 | ObjCContainerDecl* CDecl, |
Chris Lattner | cddc888 | 2009-03-01 00:56:52 +0000 | [diff] [blame] | 1626 | bool IncompleteImpl) { |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1627 | llvm::DenseSet<Selector> InsMap; |
| 1628 | // Check and see if instance methods in class interface have been |
| 1629 | // implemented in the implementation class. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1630 | for (ObjCImplementationDecl::instmeth_iterator |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1631 | I = IMPDecl->instmeth_begin(), E = IMPDecl->instmeth_end(); I!=E; ++I) |
Chris Lattner | 4c52509 | 2007-12-12 17:58:05 +0000 | [diff] [blame] | 1632 | InsMap.insert((*I)->getSelector()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1633 | |
Fariborz Jahanian | 12bac25 | 2009-04-14 23:15:21 +0000 | [diff] [blame] | 1634 | // Check and see if properties declared in the interface have either 1) |
| 1635 | // an implementation or 2) there is a @synthesize/@dynamic implementation |
| 1636 | // of the property in the @implementation. |
Ted Kremenek | c32647d | 2010-12-23 21:35:43 +0000 | [diff] [blame] | 1637 | if (isa<ObjCInterfaceDecl>(CDecl) && |
| 1638 | !(LangOpts.ObjCDefaultSynthProperties && LangOpts.ObjCNonFragileABI2)) |
Fariborz Jahanian | 17cb326 | 2010-05-05 21:52:17 +0000 | [diff] [blame] | 1639 | DiagnoseUnimplementedProperties(S, IMPDecl, CDecl, InsMap); |
Fariborz Jahanian | 3ac1eda | 2010-01-20 01:51:55 +0000 | [diff] [blame] | 1640 | |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1641 | llvm::DenseSet<Selector> ClsMap; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1642 | for (ObjCImplementationDecl::classmeth_iterator |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1643 | I = IMPDecl->classmeth_begin(), |
| 1644 | E = IMPDecl->classmeth_end(); I != E; ++I) |
Chris Lattner | 4c52509 | 2007-12-12 17:58:05 +0000 | [diff] [blame] | 1645 | ClsMap.insert((*I)->getSelector()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1646 | |
Fariborz Jahanian | b33f3ad | 2009-05-01 20:07:12 +0000 | [diff] [blame] | 1647 | // Check for type conflict of methods declared in a class/protocol and |
| 1648 | // its implementation; if any. |
| 1649 | llvm::DenseSet<Selector> InsMapSeen, ClsMapSeen; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1650 | MatchAllMethodDeclarations(InsMap, ClsMap, InsMapSeen, ClsMapSeen, |
| 1651 | IMPDecl, CDecl, |
Fariborz Jahanian | b33f3ad | 2009-05-01 20:07:12 +0000 | [diff] [blame] | 1652 | IncompleteImpl, true); |
Fariborz Jahanian | 7413307 | 2011-08-03 18:21:12 +0000 | [diff] [blame] | 1653 | |
Fariborz Jahanian | fefe91e | 2011-07-28 23:19:50 +0000 | [diff] [blame] | 1654 | // check all methods implemented in category against those declared |
| 1655 | // in its primary class. |
| 1656 | if (ObjCCategoryImplDecl *CatDecl = |
| 1657 | dyn_cast<ObjCCategoryImplDecl>(IMPDecl)) |
| 1658 | CheckCategoryVsClassMethodMatches(CatDecl); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1659 | |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1660 | // Check the protocol list for unimplemented methods in the @implementation |
| 1661 | // class. |
Fariborz Jahanian | b33f3ad | 2009-05-01 20:07:12 +0000 | [diff] [blame] | 1662 | // Check and see if class methods in class interface have been |
| 1663 | // implemented in the implementation class. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1664 | |
Chris Lattner | cddc888 | 2009-03-01 00:56:52 +0000 | [diff] [blame] | 1665 | if (ObjCInterfaceDecl *I = dyn_cast<ObjCInterfaceDecl> (CDecl)) { |
Ted Kremenek | 53b9441 | 2010-09-01 01:21:15 +0000 | [diff] [blame] | 1666 | for (ObjCInterfaceDecl::all_protocol_iterator |
| 1667 | PI = I->all_referenced_protocol_begin(), |
| 1668 | E = I->all_referenced_protocol_end(); PI != E; ++PI) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1669 | CheckProtocolMethodDefs(IMPDecl->getLocation(), *PI, IncompleteImpl, |
Chris Lattner | cddc888 | 2009-03-01 00:56:52 +0000 | [diff] [blame] | 1670 | InsMap, ClsMap, I); |
| 1671 | // Check class extensions (unnamed categories) |
Fariborz Jahanian | 80aa1cd | 2010-06-22 23:20:40 +0000 | [diff] [blame] | 1672 | for (const ObjCCategoryDecl *Categories = I->getFirstClassExtension(); |
| 1673 | Categories; Categories = Categories->getNextClassExtension()) |
| 1674 | ImplMethodsVsClassMethods(S, IMPDecl, |
| 1675 | const_cast<ObjCCategoryDecl*>(Categories), |
| 1676 | IncompleteImpl); |
Chris Lattner | cddc888 | 2009-03-01 00:56:52 +0000 | [diff] [blame] | 1677 | } else if (ObjCCategoryDecl *C = dyn_cast<ObjCCategoryDecl>(CDecl)) { |
Fariborz Jahanian | b106fc6 | 2009-10-05 21:32:49 +0000 | [diff] [blame] | 1678 | // For extended class, unimplemented methods in its protocols will |
| 1679 | // be reported in the primary class. |
Fariborz Jahanian | 2576061 | 2010-02-15 21:55:26 +0000 | [diff] [blame] | 1680 | if (!C->IsClassExtension()) { |
Fariborz Jahanian | b106fc6 | 2009-10-05 21:32:49 +0000 | [diff] [blame] | 1681 | for (ObjCCategoryDecl::protocol_iterator PI = C->protocol_begin(), |
| 1682 | E = C->protocol_end(); PI != E; ++PI) |
| 1683 | CheckProtocolMethodDefs(IMPDecl->getLocation(), *PI, IncompleteImpl, |
Fariborz Jahanian | f283859 | 2010-03-27 21:10:05 +0000 | [diff] [blame] | 1684 | InsMap, ClsMap, CDecl); |
Fariborz Jahanian | 3ad230e | 2010-01-20 19:36:21 +0000 | [diff] [blame] | 1685 | // Report unimplemented properties in the category as well. |
| 1686 | // When reporting on missing setter/getters, do not report when |
| 1687 | // setter/getter is implemented in category's primary class |
| 1688 | // implementation. |
| 1689 | if (ObjCInterfaceDecl *ID = C->getClassInterface()) |
| 1690 | if (ObjCImplDecl *IMP = ID->getImplementation()) { |
| 1691 | for (ObjCImplementationDecl::instmeth_iterator |
| 1692 | I = IMP->instmeth_begin(), E = IMP->instmeth_end(); I!=E; ++I) |
| 1693 | InsMap.insert((*I)->getSelector()); |
| 1694 | } |
Fariborz Jahanian | 17cb326 | 2010-05-05 21:52:17 +0000 | [diff] [blame] | 1695 | DiagnoseUnimplementedProperties(S, IMPDecl, CDecl, InsMap); |
Fariborz Jahanian | 3ad230e | 2010-01-20 19:36:21 +0000 | [diff] [blame] | 1696 | } |
Chris Lattner | cddc888 | 2009-03-01 00:56:52 +0000 | [diff] [blame] | 1697 | } else |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 1698 | llvm_unreachable("invalid ObjCContainerDecl type."); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1699 | } |
| 1700 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1701 | /// ActOnForwardClassDeclaration - |
Fariborz Jahanian | 95ed778 | 2011-08-27 20:50:59 +0000 | [diff] [blame] | 1702 | Sema::DeclGroupPtrTy |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1703 | Sema::ActOnForwardClassDeclaration(SourceLocation AtClassLoc, |
Chris Lattner | bdbde4d | 2009-02-16 19:25:52 +0000 | [diff] [blame] | 1704 | IdentifierInfo **IdentList, |
Ted Kremenek | c09cba6 | 2009-11-17 23:12:20 +0000 | [diff] [blame] | 1705 | SourceLocation *IdentLocs, |
Chris Lattner | bdbde4d | 2009-02-16 19:25:52 +0000 | [diff] [blame] | 1706 | unsigned NumElts) { |
Fariborz Jahanian | 95ed778 | 2011-08-27 20:50:59 +0000 | [diff] [blame] | 1707 | SmallVector<Decl *, 8> DeclsInGroup; |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1708 | for (unsigned i = 0; i != NumElts; ++i) { |
| 1709 | // Check for another declaration kind with the same name. |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1710 | NamedDecl *PrevDecl |
Douglas Gregor | c83c687 | 2010-04-15 22:33:43 +0000 | [diff] [blame] | 1711 | = LookupSingleName(TUScope, IdentList[i], IdentLocs[i], |
Douglas Gregor | c0b3964 | 2010-04-15 23:40:53 +0000 | [diff] [blame] | 1712 | LookupOrdinaryName, ForRedeclaration); |
Douglas Gregor | f57172b | 2008-12-08 18:40:42 +0000 | [diff] [blame] | 1713 | if (PrevDecl && PrevDecl->isTemplateParameter()) { |
Douglas Gregor | 72c3f31 | 2008-12-05 18:15:24 +0000 | [diff] [blame] | 1714 | // Maybe we will complain about the shadowed template parameter. |
| 1715 | DiagnoseTemplateParameterShadow(AtClassLoc, PrevDecl); |
| 1716 | // Just pretend that we didn't see the previous declaration. |
| 1717 | PrevDecl = 0; |
| 1718 | } |
| 1719 | |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1720 | if (PrevDecl && !isa<ObjCInterfaceDecl>(PrevDecl)) { |
Steve Naroff | c733388 | 2008-06-05 22:57:10 +0000 | [diff] [blame] | 1721 | // GCC apparently allows the following idiom: |
| 1722 | // |
| 1723 | // typedef NSObject < XCElementTogglerP > XCElementToggler; |
| 1724 | // @class XCElementToggler; |
| 1725 | // |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1726 | // FIXME: Make an extension? |
Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 1727 | TypedefNameDecl *TDD = dyn_cast<TypedefNameDecl>(PrevDecl); |
John McCall | c12c5bb | 2010-05-15 11:32:37 +0000 | [diff] [blame] | 1728 | if (!TDD || !TDD->getUnderlyingType()->isObjCObjectType()) { |
Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 1729 | Diag(AtClassLoc, diag::err_redefinition_different_kind) << IdentList[i]; |
Chris Lattner | 5f4a682 | 2008-11-23 23:12:31 +0000 | [diff] [blame] | 1730 | Diag(PrevDecl->getLocation(), diag::note_previous_definition); |
John McCall | c12c5bb | 2010-05-15 11:32:37 +0000 | [diff] [blame] | 1731 | } else { |
Mike Stump | ac5fc7c | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 1732 | // a forward class declaration matching a typedef name of a class refers |
| 1733 | // to the underlying class. |
John McCall | c12c5bb | 2010-05-15 11:32:37 +0000 | [diff] [blame] | 1734 | if (const ObjCObjectType *OI = |
| 1735 | TDD->getUnderlyingType()->getAs<ObjCObjectType>()) |
| 1736 | PrevDecl = OI->getInterface(); |
Fariborz Jahanian | cae27c5 | 2009-05-07 21:49:26 +0000 | [diff] [blame] | 1737 | } |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1738 | } |
Douglas Gregor | deacbdc | 2010-08-11 12:19:30 +0000 | [diff] [blame] | 1739 | ObjCInterfaceDecl *IDecl = dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl); |
| 1740 | if (!IDecl) { // Not already seen? Make a forward decl. |
| 1741 | IDecl = ObjCInterfaceDecl::Create(Context, CurContext, AtClassLoc, |
| 1742 | IdentList[i], IdentLocs[i], true); |
| 1743 | |
| 1744 | // Push the ObjCInterfaceDecl on the scope chain but do *not* add it to |
| 1745 | // the current DeclContext. This prevents clients that walk DeclContext |
| 1746 | // from seeing the imaginary ObjCInterfaceDecl until it is actually |
| 1747 | // declared later (if at all). We also take care to explicitly make |
| 1748 | // sure this declaration is visible for name lookup. |
| 1749 | PushOnScopeChains(IDecl, TUScope, false); |
| 1750 | CurContext->makeDeclVisibleInContext(IDecl, true); |
| 1751 | } |
Fariborz Jahanian | 95ed778 | 2011-08-27 20:50:59 +0000 | [diff] [blame] | 1752 | ObjCClassDecl *CDecl = ObjCClassDecl::Create(Context, CurContext, AtClassLoc, |
| 1753 | IDecl, IdentLocs[i]); |
| 1754 | CurContext->addDecl(CDecl); |
| 1755 | CheckObjCDeclScope(CDecl); |
| 1756 | DeclsInGroup.push_back(CDecl); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1757 | } |
Fariborz Jahanian | 95ed778 | 2011-08-27 20:50:59 +0000 | [diff] [blame] | 1758 | |
| 1759 | return BuildDeclaratorGroup(DeclsInGroup.data(), DeclsInGroup.size(), false); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1760 | } |
| 1761 | |
John McCall | 0f4c4c4 | 2011-06-16 01:15:19 +0000 | [diff] [blame] | 1762 | static bool tryMatchRecordTypes(ASTContext &Context, |
| 1763 | Sema::MethodMatchStrategy strategy, |
| 1764 | const Type *left, const Type *right); |
| 1765 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1766 | static bool matchTypes(ASTContext &Context, Sema::MethodMatchStrategy strategy, |
| 1767 | QualType leftQT, QualType rightQT) { |
| 1768 | const Type *left = |
| 1769 | Context.getCanonicalType(leftQT).getUnqualifiedType().getTypePtr(); |
| 1770 | const Type *right = |
| 1771 | Context.getCanonicalType(rightQT).getUnqualifiedType().getTypePtr(); |
| 1772 | |
| 1773 | if (left == right) return true; |
| 1774 | |
| 1775 | // If we're doing a strict match, the types have to match exactly. |
| 1776 | if (strategy == Sema::MMS_strict) return false; |
| 1777 | |
| 1778 | if (left->isIncompleteType() || right->isIncompleteType()) return false; |
| 1779 | |
| 1780 | // Otherwise, use this absurdly complicated algorithm to try to |
| 1781 | // validate the basic, low-level compatibility of the two types. |
| 1782 | |
| 1783 | // As a minimum, require the sizes and alignments to match. |
| 1784 | if (Context.getTypeInfo(left) != Context.getTypeInfo(right)) |
| 1785 | return false; |
| 1786 | |
| 1787 | // Consider all the kinds of non-dependent canonical types: |
| 1788 | // - functions and arrays aren't possible as return and parameter types |
| 1789 | |
| 1790 | // - vector types of equal size can be arbitrarily mixed |
| 1791 | if (isa<VectorType>(left)) return isa<VectorType>(right); |
| 1792 | if (isa<VectorType>(right)) return false; |
| 1793 | |
| 1794 | // - references should only match references of identical type |
John McCall | 0f4c4c4 | 2011-06-16 01:15:19 +0000 | [diff] [blame] | 1795 | // - structs, unions, and Objective-C objects must match more-or-less |
| 1796 | // exactly |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1797 | // - everything else should be a scalar |
| 1798 | if (!left->isScalarType() || !right->isScalarType()) |
John McCall | 0f4c4c4 | 2011-06-16 01:15:19 +0000 | [diff] [blame] | 1799 | return tryMatchRecordTypes(Context, strategy, left, right); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1800 | |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 1801 | // Make scalars agree in kind, except count bools as chars, and group |
| 1802 | // all non-member pointers together. |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1803 | Type::ScalarTypeKind leftSK = left->getScalarTypeKind(); |
| 1804 | Type::ScalarTypeKind rightSK = right->getScalarTypeKind(); |
| 1805 | if (leftSK == Type::STK_Bool) leftSK = Type::STK_Integral; |
| 1806 | if (rightSK == Type::STK_Bool) rightSK = Type::STK_Integral; |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 1807 | if (leftSK == Type::STK_CPointer || leftSK == Type::STK_BlockPointer) |
| 1808 | leftSK = Type::STK_ObjCObjectPointer; |
| 1809 | if (rightSK == Type::STK_CPointer || rightSK == Type::STK_BlockPointer) |
| 1810 | rightSK = Type::STK_ObjCObjectPointer; |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1811 | |
| 1812 | // Note that data member pointers and function member pointers don't |
| 1813 | // intermix because of the size differences. |
| 1814 | |
| 1815 | return (leftSK == rightSK); |
| 1816 | } |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1817 | |
John McCall | 0f4c4c4 | 2011-06-16 01:15:19 +0000 | [diff] [blame] | 1818 | static bool tryMatchRecordTypes(ASTContext &Context, |
| 1819 | Sema::MethodMatchStrategy strategy, |
| 1820 | const Type *lt, const Type *rt) { |
| 1821 | assert(lt && rt && lt != rt); |
| 1822 | |
| 1823 | if (!isa<RecordType>(lt) || !isa<RecordType>(rt)) return false; |
| 1824 | RecordDecl *left = cast<RecordType>(lt)->getDecl(); |
| 1825 | RecordDecl *right = cast<RecordType>(rt)->getDecl(); |
| 1826 | |
| 1827 | // Require union-hood to match. |
| 1828 | if (left->isUnion() != right->isUnion()) return false; |
| 1829 | |
| 1830 | // Require an exact match if either is non-POD. |
| 1831 | if ((isa<CXXRecordDecl>(left) && !cast<CXXRecordDecl>(left)->isPOD()) || |
| 1832 | (isa<CXXRecordDecl>(right) && !cast<CXXRecordDecl>(right)->isPOD())) |
| 1833 | return false; |
| 1834 | |
| 1835 | // Require size and alignment to match. |
| 1836 | if (Context.getTypeInfo(lt) != Context.getTypeInfo(rt)) return false; |
| 1837 | |
| 1838 | // Require fields to match. |
| 1839 | RecordDecl::field_iterator li = left->field_begin(), le = left->field_end(); |
| 1840 | RecordDecl::field_iterator ri = right->field_begin(), re = right->field_end(); |
| 1841 | for (; li != le && ri != re; ++li, ++ri) { |
| 1842 | if (!matchTypes(Context, strategy, li->getType(), ri->getType())) |
| 1843 | return false; |
| 1844 | } |
| 1845 | return (li == le && ri == re); |
| 1846 | } |
| 1847 | |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1848 | /// MatchTwoMethodDeclarations - Checks that two methods have matching type and |
| 1849 | /// returns true, or false, accordingly. |
| 1850 | /// TODO: Handle protocol list; such as id<p1,p2> in type comparisons |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1851 | bool Sema::MatchTwoMethodDeclarations(const ObjCMethodDecl *left, |
| 1852 | const ObjCMethodDecl *right, |
| 1853 | MethodMatchStrategy strategy) { |
| 1854 | if (!matchTypes(Context, strategy, |
| 1855 | left->getResultType(), right->getResultType())) |
| 1856 | return false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1857 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1858 | if (getLangOptions().ObjCAutoRefCount && |
| 1859 | (left->hasAttr<NSReturnsRetainedAttr>() |
| 1860 | != right->hasAttr<NSReturnsRetainedAttr>() || |
| 1861 | left->hasAttr<NSConsumesSelfAttr>() |
| 1862 | != right->hasAttr<NSConsumesSelfAttr>())) |
| 1863 | return false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1864 | |
Argyrios Kyrtzidis | 491306a | 2011-10-03 06:37:04 +0000 | [diff] [blame] | 1865 | ObjCMethodDecl::param_const_iterator |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1866 | li = left->param_begin(), le = left->param_end(), ri = right->param_begin(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1867 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1868 | for (; li != le; ++li, ++ri) { |
| 1869 | assert(ri != right->param_end() && "Param mismatch"); |
Argyrios Kyrtzidis | 491306a | 2011-10-03 06:37:04 +0000 | [diff] [blame] | 1870 | const ParmVarDecl *lparm = *li, *rparm = *ri; |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1871 | |
| 1872 | if (!matchTypes(Context, strategy, lparm->getType(), rparm->getType())) |
| 1873 | return false; |
| 1874 | |
| 1875 | if (getLangOptions().ObjCAutoRefCount && |
| 1876 | lparm->hasAttr<NSConsumedAttr>() != rparm->hasAttr<NSConsumedAttr>()) |
| 1877 | return false; |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1878 | } |
| 1879 | return true; |
| 1880 | } |
| 1881 | |
Sebastian Redl | db9d214 | 2010-08-02 23:18:59 +0000 | [diff] [blame] | 1882 | /// \brief Read the contents of the method pool for a given selector from |
| 1883 | /// external storage. |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1884 | /// |
Sebastian Redl | db9d214 | 2010-08-02 23:18:59 +0000 | [diff] [blame] | 1885 | /// This routine should only be called once, when the method pool has no entry |
| 1886 | /// for this selector. |
| 1887 | Sema::GlobalMethodPool::iterator Sema::ReadMethodPool(Selector Sel) { |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1888 | assert(ExternalSource && "We need an external AST source"); |
Sebastian Redl | db9d214 | 2010-08-02 23:18:59 +0000 | [diff] [blame] | 1889 | assert(MethodPool.find(Sel) == MethodPool.end() && |
| 1890 | "Selector data already loaded into the method pool"); |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1891 | |
| 1892 | // Read the method list from the external source. |
Sebastian Redl | db9d214 | 2010-08-02 23:18:59 +0000 | [diff] [blame] | 1893 | GlobalMethods Methods = ExternalSource->ReadMethodPool(Sel); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1894 | |
Sebastian Redl | db9d214 | 2010-08-02 23:18:59 +0000 | [diff] [blame] | 1895 | return MethodPool.insert(std::make_pair(Sel, Methods)).first; |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1896 | } |
| 1897 | |
Sebastian Redl | db9d214 | 2010-08-02 23:18:59 +0000 | [diff] [blame] | 1898 | void Sema::AddMethodToGlobalPool(ObjCMethodDecl *Method, bool impl, |
| 1899 | bool instance) { |
| 1900 | GlobalMethodPool::iterator Pos = MethodPool.find(Method->getSelector()); |
| 1901 | if (Pos == MethodPool.end()) { |
| 1902 | if (ExternalSource) |
| 1903 | Pos = ReadMethodPool(Method->getSelector()); |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1904 | else |
Sebastian Redl | db9d214 | 2010-08-02 23:18:59 +0000 | [diff] [blame] | 1905 | Pos = MethodPool.insert(std::make_pair(Method->getSelector(), |
| 1906 | GlobalMethods())).first; |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1907 | } |
Fariborz Jahanian | 3fe1041 | 2010-07-22 18:24:20 +0000 | [diff] [blame] | 1908 | Method->setDefined(impl); |
Sebastian Redl | db9d214 | 2010-08-02 23:18:59 +0000 | [diff] [blame] | 1909 | ObjCMethodList &Entry = instance ? Pos->second.first : Pos->second.second; |
Chris Lattner | b25df35 | 2009-03-04 05:16:45 +0000 | [diff] [blame] | 1910 | if (Entry.Method == 0) { |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1911 | // Haven't seen a method with this selector name yet - add it. |
Chris Lattner | b25df35 | 2009-03-04 05:16:45 +0000 | [diff] [blame] | 1912 | Entry.Method = Method; |
| 1913 | Entry.Next = 0; |
| 1914 | return; |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1915 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1916 | |
Chris Lattner | b25df35 | 2009-03-04 05:16:45 +0000 | [diff] [blame] | 1917 | // We've seen a method with this name, see if we have already seen this type |
| 1918 | // signature. |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1919 | for (ObjCMethodList *List = &Entry; List; List = List->Next) { |
| 1920 | bool match = MatchTwoMethodDeclarations(Method, List->Method); |
| 1921 | |
| 1922 | if (match) { |
Fariborz Jahanian | 8e5fc9b | 2010-12-21 00:44:01 +0000 | [diff] [blame] | 1923 | ObjCMethodDecl *PrevObjCMethod = List->Method; |
| 1924 | PrevObjCMethod->setDefined(impl); |
| 1925 | // If a method is deprecated, push it in the global pool. |
| 1926 | // This is used for better diagnostics. |
Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 1927 | if (Method->isDeprecated()) { |
| 1928 | if (!PrevObjCMethod->isDeprecated()) |
Fariborz Jahanian | 8e5fc9b | 2010-12-21 00:44:01 +0000 | [diff] [blame] | 1929 | List->Method = Method; |
| 1930 | } |
| 1931 | // If new method is unavailable, push it into global pool |
| 1932 | // unless previous one is deprecated. |
Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 1933 | if (Method->isUnavailable()) { |
| 1934 | if (PrevObjCMethod->getAvailability() < AR_Deprecated) |
Fariborz Jahanian | 8e5fc9b | 2010-12-21 00:44:01 +0000 | [diff] [blame] | 1935 | List->Method = Method; |
| 1936 | } |
Chris Lattner | b25df35 | 2009-03-04 05:16:45 +0000 | [diff] [blame] | 1937 | return; |
Fariborz Jahanian | 3fe1041 | 2010-07-22 18:24:20 +0000 | [diff] [blame] | 1938 | } |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1939 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1940 | |
Chris Lattner | b25df35 | 2009-03-04 05:16:45 +0000 | [diff] [blame] | 1941 | // We have a new signature for an existing method - add it. |
| 1942 | // This is extremely rare. Only 1% of Cocoa selectors are "overloaded". |
Ted Kremenek | 298ed87 | 2010-02-11 00:53:01 +0000 | [diff] [blame] | 1943 | ObjCMethodList *Mem = BumpAlloc.Allocate<ObjCMethodList>(); |
| 1944 | Entry.Next = new (Mem) ObjCMethodList(Method, Entry.Next); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1945 | } |
| 1946 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1947 | /// Determines if this is an "acceptable" loose mismatch in the global |
| 1948 | /// method pool. This exists mostly as a hack to get around certain |
| 1949 | /// global mismatches which we can't afford to make warnings / errors. |
| 1950 | /// Really, what we want is a way to take a method out of the global |
| 1951 | /// method pool. |
| 1952 | static bool isAcceptableMethodMismatch(ObjCMethodDecl *chosen, |
| 1953 | ObjCMethodDecl *other) { |
| 1954 | if (!chosen->isInstanceMethod()) |
| 1955 | return false; |
| 1956 | |
| 1957 | Selector sel = chosen->getSelector(); |
| 1958 | if (!sel.isUnarySelector() || sel.getNameForSlot(0) != "length") |
| 1959 | return false; |
| 1960 | |
| 1961 | // Don't complain about mismatches for -length if the method we |
| 1962 | // chose has an integral result type. |
| 1963 | return (chosen->getResultType()->isIntegerType()); |
| 1964 | } |
| 1965 | |
Sebastian Redl | db9d214 | 2010-08-02 23:18:59 +0000 | [diff] [blame] | 1966 | ObjCMethodDecl *Sema::LookupMethodInGlobalPool(Selector Sel, SourceRange R, |
Fariborz Jahanian | 6b308f6 | 2010-08-09 23:27:58 +0000 | [diff] [blame] | 1967 | bool receiverIdOrClass, |
Sebastian Redl | db9d214 | 2010-08-02 23:18:59 +0000 | [diff] [blame] | 1968 | bool warn, bool instance) { |
| 1969 | GlobalMethodPool::iterator Pos = MethodPool.find(Sel); |
| 1970 | if (Pos == MethodPool.end()) { |
| 1971 | if (ExternalSource) |
| 1972 | Pos = ReadMethodPool(Sel); |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1973 | else |
| 1974 | return 0; |
| 1975 | } |
| 1976 | |
Sebastian Redl | db9d214 | 2010-08-02 23:18:59 +0000 | [diff] [blame] | 1977 | ObjCMethodList &MethList = instance ? Pos->second.first : Pos->second.second; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1978 | |
Sebastian Redl | db9d214 | 2010-08-02 23:18:59 +0000 | [diff] [blame] | 1979 | if (warn && MethList.Method && MethList.Next) { |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1980 | bool issueDiagnostic = false, issueError = false; |
| 1981 | |
| 1982 | // We support a warning which complains about *any* difference in |
| 1983 | // method signature. |
| 1984 | bool strictSelectorMatch = |
| 1985 | (receiverIdOrClass && warn && |
| 1986 | (Diags.getDiagnosticLevel(diag::warn_strict_multiple_method_decl, |
| 1987 | R.getBegin()) != |
David Blaikie | d6471f7 | 2011-09-25 23:23:43 +0000 | [diff] [blame] | 1988 | DiagnosticsEngine::Ignored)); |
Fariborz Jahanian | 6b308f6 | 2010-08-09 23:27:58 +0000 | [diff] [blame] | 1989 | if (strictSelectorMatch) |
| 1990 | for (ObjCMethodList *Next = MethList.Next; Next; Next = Next->Next) { |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1991 | if (!MatchTwoMethodDeclarations(MethList.Method, Next->Method, |
| 1992 | MMS_strict)) { |
| 1993 | issueDiagnostic = true; |
| 1994 | break; |
| 1995 | } |
Fariborz Jahanian | 6b308f6 | 2010-08-09 23:27:58 +0000 | [diff] [blame] | 1996 | } |
| 1997 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1998 | // If we didn't see any strict differences, we won't see any loose |
| 1999 | // differences. In ARC, however, we also need to check for loose |
| 2000 | // mismatches, because most of them are errors. |
| 2001 | if (!strictSelectorMatch || |
| 2002 | (issueDiagnostic && getLangOptions().ObjCAutoRefCount)) |
Fariborz Jahanian | 6b308f6 | 2010-08-09 23:27:58 +0000 | [diff] [blame] | 2003 | for (ObjCMethodList *Next = MethList.Next; Next; Next = Next->Next) { |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2004 | // This checks if the methods differ in type mismatch. |
| 2005 | if (!MatchTwoMethodDeclarations(MethList.Method, Next->Method, |
| 2006 | MMS_loose) && |
| 2007 | !isAcceptableMethodMismatch(MethList.Method, Next->Method)) { |
| 2008 | issueDiagnostic = true; |
| 2009 | if (getLangOptions().ObjCAutoRefCount) |
| 2010 | issueError = true; |
| 2011 | break; |
| 2012 | } |
Fariborz Jahanian | 6b308f6 | 2010-08-09 23:27:58 +0000 | [diff] [blame] | 2013 | } |
| 2014 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2015 | if (issueDiagnostic) { |
| 2016 | if (issueError) |
| 2017 | Diag(R.getBegin(), diag::err_arc_multiple_method_decl) << Sel << R; |
| 2018 | else if (strictSelectorMatch) |
Fariborz Jahanian | 6b308f6 | 2010-08-09 23:27:58 +0000 | [diff] [blame] | 2019 | Diag(R.getBegin(), diag::warn_strict_multiple_method_decl) << Sel << R; |
| 2020 | else |
| 2021 | Diag(R.getBegin(), diag::warn_multiple_method_decl) << Sel << R; |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2022 | |
| 2023 | Diag(MethList.Method->getLocStart(), |
| 2024 | issueError ? diag::note_possibility : diag::note_using) |
Sebastian Redl | db9d214 | 2010-08-02 23:18:59 +0000 | [diff] [blame] | 2025 | << MethList.Method->getSourceRange(); |
| 2026 | for (ObjCMethodList *Next = MethList.Next; Next; Next = Next->Next) |
| 2027 | Diag(Next->Method->getLocStart(), diag::note_also_found) |
| 2028 | << Next->Method->getSourceRange(); |
| 2029 | } |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 2030 | } |
| 2031 | return MethList.Method; |
| 2032 | } |
| 2033 | |
Fariborz Jahanian | 3fe1041 | 2010-07-22 18:24:20 +0000 | [diff] [blame] | 2034 | ObjCMethodDecl *Sema::LookupImplementedMethodInGlobalPool(Selector Sel) { |
Sebastian Redl | db9d214 | 2010-08-02 23:18:59 +0000 | [diff] [blame] | 2035 | GlobalMethodPool::iterator Pos = MethodPool.find(Sel); |
| 2036 | if (Pos == MethodPool.end()) |
| 2037 | return 0; |
| 2038 | |
| 2039 | GlobalMethods &Methods = Pos->second; |
| 2040 | |
| 2041 | if (Methods.first.Method && Methods.first.Method->isDefined()) |
| 2042 | return Methods.first.Method; |
| 2043 | if (Methods.second.Method && Methods.second.Method->isDefined()) |
| 2044 | return Methods.second.Method; |
Fariborz Jahanian | 3fe1041 | 2010-07-22 18:24:20 +0000 | [diff] [blame] | 2045 | return 0; |
| 2046 | } |
| 2047 | |
Fariborz Jahanian | e198f5d | 2009-08-04 17:01:09 +0000 | [diff] [blame] | 2048 | /// CompareMethodParamsInBaseAndSuper - This routine compares methods with |
| 2049 | /// identical selector names in current and its super classes and issues |
| 2050 | /// a warning if any of their argument types are incompatible. |
Fariborz Jahanian | dbdec8b | 2009-08-04 01:07:16 +0000 | [diff] [blame] | 2051 | void Sema::CompareMethodParamsInBaseAndSuper(Decl *ClassDecl, |
| 2052 | ObjCMethodDecl *Method, |
| 2053 | bool IsInstance) { |
Fariborz Jahanian | e198f5d | 2009-08-04 17:01:09 +0000 | [diff] [blame] | 2054 | ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(ClassDecl); |
| 2055 | if (ID == 0) return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2056 | |
Fariborz Jahanian | e198f5d | 2009-08-04 17:01:09 +0000 | [diff] [blame] | 2057 | while (ObjCInterfaceDecl *SD = ID->getSuperClass()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2058 | ObjCMethodDecl *SuperMethodDecl = |
Fariborz Jahanian | e198f5d | 2009-08-04 17:01:09 +0000 | [diff] [blame] | 2059 | SD->lookupMethod(Method->getSelector(), IsInstance); |
| 2060 | if (SuperMethodDecl == 0) { |
Fariborz Jahanian | dbdec8b | 2009-08-04 01:07:16 +0000 | [diff] [blame] | 2061 | ID = SD; |
Fariborz Jahanian | e198f5d | 2009-08-04 17:01:09 +0000 | [diff] [blame] | 2062 | continue; |
Fariborz Jahanian | dbdec8b | 2009-08-04 01:07:16 +0000 | [diff] [blame] | 2063 | } |
Fariborz Jahanian | e198f5d | 2009-08-04 17:01:09 +0000 | [diff] [blame] | 2064 | ObjCMethodDecl::param_iterator ParamI = Method->param_begin(), |
| 2065 | E = Method->param_end(); |
| 2066 | ObjCMethodDecl::param_iterator PrevI = SuperMethodDecl->param_begin(); |
| 2067 | for (; ParamI != E; ++ParamI, ++PrevI) { |
| 2068 | // Number of parameters are the same and is guaranteed by selector match. |
| 2069 | assert(PrevI != SuperMethodDecl->param_end() && "Param mismatch"); |
| 2070 | QualType T1 = Context.getCanonicalType((*ParamI)->getType()); |
| 2071 | QualType T2 = Context.getCanonicalType((*PrevI)->getType()); |
Chris Lattner | fc8f0e1 | 2011-04-15 05:22:18 +0000 | [diff] [blame] | 2072 | // If type of argument of method in this class does not match its |
Fariborz Jahanian | e198f5d | 2009-08-04 17:01:09 +0000 | [diff] [blame] | 2073 | // respective argument type in the super class method, issue warning; |
| 2074 | if (!Context.typesAreCompatible(T1, T2)) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2075 | Diag((*ParamI)->getLocation(), diag::ext_typecheck_base_super) |
Fariborz Jahanian | e198f5d | 2009-08-04 17:01:09 +0000 | [diff] [blame] | 2076 | << T1 << T2; |
| 2077 | Diag(SuperMethodDecl->getLocation(), diag::note_previous_declaration); |
| 2078 | return; |
| 2079 | } |
| 2080 | } |
| 2081 | ID = SD; |
| 2082 | } |
Fariborz Jahanian | dbdec8b | 2009-08-04 01:07:16 +0000 | [diff] [blame] | 2083 | } |
| 2084 | |
Fariborz Jahanian | f914b97 | 2010-02-23 23:41:11 +0000 | [diff] [blame] | 2085 | /// DiagnoseDuplicateIvars - |
| 2086 | /// Check for duplicate ivars in the entire class at the start of |
| 2087 | /// @implementation. This becomes necesssary because class extension can |
| 2088 | /// add ivars to a class in random order which will not be known until |
| 2089 | /// class's @implementation is seen. |
| 2090 | void Sema::DiagnoseDuplicateIvars(ObjCInterfaceDecl *ID, |
| 2091 | ObjCInterfaceDecl *SID) { |
| 2092 | for (ObjCInterfaceDecl::ivar_iterator IVI = ID->ivar_begin(), |
| 2093 | IVE = ID->ivar_end(); IVI != IVE; ++IVI) { |
| 2094 | ObjCIvarDecl* Ivar = (*IVI); |
| 2095 | if (Ivar->isInvalidDecl()) |
| 2096 | continue; |
| 2097 | if (IdentifierInfo *II = Ivar->getIdentifier()) { |
| 2098 | ObjCIvarDecl* prevIvar = SID->lookupInstanceVariable(II); |
| 2099 | if (prevIvar) { |
| 2100 | Diag(Ivar->getLocation(), diag::err_duplicate_member) << II; |
| 2101 | Diag(prevIvar->getLocation(), diag::note_previous_declaration); |
| 2102 | Ivar->setInvalidDecl(); |
| 2103 | } |
| 2104 | } |
| 2105 | } |
| 2106 | } |
| 2107 | |
Steve Naroff | a56f616 | 2007-12-18 01:30:32 +0000 | [diff] [blame] | 2108 | // Note: For class/category implemenations, allMethods/allProperties is |
| 2109 | // always null. |
Fariborz Jahanian | 17cb326 | 2010-05-05 21:52:17 +0000 | [diff] [blame] | 2110 | void Sema::ActOnAtEnd(Scope *S, SourceRange AtEnd, |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 2111 | Decl **allMethods, unsigned allNum, |
| 2112 | Decl **allProperties, unsigned pNum, |
Chris Lattner | 682bf92 | 2009-03-29 16:50:03 +0000 | [diff] [blame] | 2113 | DeclGroupPtrTy *allTUVars, unsigned tuvNum) { |
Fariborz Jahanian | a28948f | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 2114 | |
| 2115 | if (!CurContext->isObjCContainer()) |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 2116 | return; |
Fariborz Jahanian | a28948f | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 2117 | ObjCContainerDecl *OCD = dyn_cast<ObjCContainerDecl>(CurContext); |
| 2118 | Decl *ClassDecl = cast<Decl>(OCD); |
Fariborz Jahanian | 63e963c | 2009-11-16 18:57:01 +0000 | [diff] [blame] | 2119 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2120 | bool isInterfaceDeclKind = |
Chris Lattner | f8d17a5 | 2008-03-16 21:17:37 +0000 | [diff] [blame] | 2121 | isa<ObjCInterfaceDecl>(ClassDecl) || isa<ObjCCategoryDecl>(ClassDecl) |
| 2122 | || isa<ObjCProtocolDecl>(ClassDecl); |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 2123 | bool checkIdenticalMethods = isa<ObjCImplementationDecl>(ClassDecl); |
Steve Naroff | 09c4719 | 2009-01-09 15:36:25 +0000 | [diff] [blame] | 2124 | |
Ted Kremenek | 782f2f5 | 2010-01-07 01:20:12 +0000 | [diff] [blame] | 2125 | if (!isInterfaceDeclKind && AtEnd.isInvalid()) { |
| 2126 | // FIXME: This is wrong. We shouldn't be pretending that there is |
| 2127 | // an '@end' in the declaration. |
| 2128 | SourceLocation L = ClassDecl->getLocation(); |
| 2129 | AtEnd.setBegin(L); |
| 2130 | AtEnd.setEnd(L); |
Fariborz Jahanian | 64089ce | 2011-04-22 22:02:28 +0000 | [diff] [blame] | 2131 | Diag(L, diag::err_missing_atend); |
Fariborz Jahanian | 63e963c | 2009-11-16 18:57:01 +0000 | [diff] [blame] | 2132 | } |
| 2133 | |
Steve Naroff | 0701bbb | 2009-01-08 17:28:14 +0000 | [diff] [blame] | 2134 | // FIXME: Remove these and use the ObjCContainerDecl/DeclContext. |
| 2135 | llvm::DenseMap<Selector, const ObjCMethodDecl*> InsMap; |
| 2136 | llvm::DenseMap<Selector, const ObjCMethodDecl*> ClsMap; |
| 2137 | |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 2138 | for (unsigned i = 0; i < allNum; i++ ) { |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 2139 | ObjCMethodDecl *Method = |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 2140 | cast_or_null<ObjCMethodDecl>(allMethods[i]); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 2141 | |
| 2142 | if (!Method) continue; // Already issued a diagnostic. |
Douglas Gregor | f8d49f6 | 2009-01-09 17:18:27 +0000 | [diff] [blame] | 2143 | if (Method->isInstanceMethod()) { |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 2144 | /// Check for instance method of the same name with incompatible types |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 2145 | const ObjCMethodDecl *&PrevMethod = InsMap[Method->getSelector()]; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2146 | bool match = PrevMethod ? MatchTwoMethodDeclarations(Method, PrevMethod) |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 2147 | : false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2148 | if ((isInterfaceDeclKind && PrevMethod && !match) |
Eli Friedman | 82b4e76 | 2008-12-16 20:15:50 +0000 | [diff] [blame] | 2149 | || (checkIdenticalMethods && match)) { |
Chris Lattner | 5f4a682 | 2008-11-23 23:12:31 +0000 | [diff] [blame] | 2150 | Diag(Method->getLocation(), diag::err_duplicate_method_decl) |
Chris Lattner | 077bf5e | 2008-11-24 03:33:13 +0000 | [diff] [blame] | 2151 | << Method->getDeclName(); |
Chris Lattner | 5f4a682 | 2008-11-23 23:12:31 +0000 | [diff] [blame] | 2152 | Diag(PrevMethod->getLocation(), diag::note_previous_declaration); |
Douglas Gregor | bdb2d50 | 2010-12-21 17:34:17 +0000 | [diff] [blame] | 2153 | Method->setInvalidDecl(); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 2154 | } else { |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 2155 | InsMap[Method->getSelector()] = Method; |
| 2156 | /// The following allows us to typecheck messages to "id". |
| 2157 | AddInstanceMethodToGlobalPool(Method); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2158 | // verify that the instance method conforms to the same definition of |
Fariborz Jahanian | e198f5d | 2009-08-04 17:01:09 +0000 | [diff] [blame] | 2159 | // parent methods if it shadows one. |
Fariborz Jahanian | dbdec8b | 2009-08-04 01:07:16 +0000 | [diff] [blame] | 2160 | CompareMethodParamsInBaseAndSuper(ClassDecl, Method, true); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 2161 | } |
Mike Stump | ac5fc7c | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 2162 | } else { |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 2163 | /// Check for class method of the same name with incompatible types |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 2164 | const ObjCMethodDecl *&PrevMethod = ClsMap[Method->getSelector()]; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2165 | bool match = PrevMethod ? MatchTwoMethodDeclarations(Method, PrevMethod) |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 2166 | : false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2167 | if ((isInterfaceDeclKind && PrevMethod && !match) |
Eli Friedman | 82b4e76 | 2008-12-16 20:15:50 +0000 | [diff] [blame] | 2168 | || (checkIdenticalMethods && match)) { |
Chris Lattner | 5f4a682 | 2008-11-23 23:12:31 +0000 | [diff] [blame] | 2169 | Diag(Method->getLocation(), diag::err_duplicate_method_decl) |
Chris Lattner | 077bf5e | 2008-11-24 03:33:13 +0000 | [diff] [blame] | 2170 | << Method->getDeclName(); |
Chris Lattner | 5f4a682 | 2008-11-23 23:12:31 +0000 | [diff] [blame] | 2171 | Diag(PrevMethod->getLocation(), diag::note_previous_declaration); |
Douglas Gregor | bdb2d50 | 2010-12-21 17:34:17 +0000 | [diff] [blame] | 2172 | Method->setInvalidDecl(); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 2173 | } else { |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 2174 | ClsMap[Method->getSelector()] = Method; |
Steve Naroff | a56f616 | 2007-12-18 01:30:32 +0000 | [diff] [blame] | 2175 | /// The following allows us to typecheck messages to "Class". |
| 2176 | AddFactoryMethodToGlobalPool(Method); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2177 | // verify that the class method conforms to the same definition of |
Fariborz Jahanian | e198f5d | 2009-08-04 17:01:09 +0000 | [diff] [blame] | 2178 | // parent methods if it shadows one. |
Fariborz Jahanian | dbdec8b | 2009-08-04 01:07:16 +0000 | [diff] [blame] | 2179 | CompareMethodParamsInBaseAndSuper(ClassDecl, Method, false); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 2180 | } |
| 2181 | } |
| 2182 | } |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 2183 | if (ObjCInterfaceDecl *I = dyn_cast<ObjCInterfaceDecl>(ClassDecl)) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2184 | // Compares properties declared in this class to those of its |
Fariborz Jahanian | 02edb98 | 2008-05-01 00:03:38 +0000 | [diff] [blame] | 2185 | // super class. |
Fariborz Jahanian | aebf0cb | 2008-05-02 19:17:30 +0000 | [diff] [blame] | 2186 | ComparePropertiesInBaseAndSuper(I); |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 2187 | CompareProperties(I, I); |
Steve Naroff | 09c4719 | 2009-01-09 15:36:25 +0000 | [diff] [blame] | 2188 | } else if (ObjCCategoryDecl *C = dyn_cast<ObjCCategoryDecl>(ClassDecl)) { |
Fariborz Jahanian | 77e14bd | 2008-12-06 19:59:02 +0000 | [diff] [blame] | 2189 | // Categories are used to extend the class by declaring new methods. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2190 | // By the same token, they are also used to add new properties. No |
Fariborz Jahanian | 77e14bd | 2008-12-06 19:59:02 +0000 | [diff] [blame] | 2191 | // need to compare the added property to those in the class. |
Daniel Dunbar | b20ef3e | 2008-08-27 05:40:03 +0000 | [diff] [blame] | 2192 | |
Fariborz Jahanian | 107089f | 2010-01-18 18:41:16 +0000 | [diff] [blame] | 2193 | // Compare protocol properties with those in category |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 2194 | CompareProperties(C, C); |
Fariborz Jahanian | 88f5e9b | 2010-12-10 23:36:33 +0000 | [diff] [blame] | 2195 | if (C->IsClassExtension()) { |
| 2196 | ObjCInterfaceDecl *CCPrimary = C->getClassInterface(); |
| 2197 | DiagnoseClassExtensionDupMethods(C, CCPrimary); |
Fariborz Jahanian | 88f5e9b | 2010-12-10 23:36:33 +0000 | [diff] [blame] | 2198 | } |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 2199 | } |
Steve Naroff | 09c4719 | 2009-01-09 15:36:25 +0000 | [diff] [blame] | 2200 | if (ObjCContainerDecl *CDecl = dyn_cast<ObjCContainerDecl>(ClassDecl)) { |
Fariborz Jahanian | 2576061 | 2010-02-15 21:55:26 +0000 | [diff] [blame] | 2201 | if (CDecl->getIdentifier()) |
| 2202 | // ProcessPropertyDecl is responsible for diagnosing conflicts with any |
| 2203 | // user-defined setter/getter. It also synthesizes setter/getter methods |
| 2204 | // and adds them to the DeclContext and global method pools. |
| 2205 | for (ObjCContainerDecl::prop_iterator I = CDecl->prop_begin(), |
| 2206 | E = CDecl->prop_end(); |
| 2207 | I != E; ++I) |
| 2208 | ProcessPropertyDecl(*I, CDecl); |
Ted Kremenek | 782f2f5 | 2010-01-07 01:20:12 +0000 | [diff] [blame] | 2209 | CDecl->setAtEndRange(AtEnd); |
Steve Naroff | 09c4719 | 2009-01-09 15:36:25 +0000 | [diff] [blame] | 2210 | } |
| 2211 | if (ObjCImplementationDecl *IC=dyn_cast<ObjCImplementationDecl>(ClassDecl)) { |
Ted Kremenek | 782f2f5 | 2010-01-07 01:20:12 +0000 | [diff] [blame] | 2212 | IC->setAtEndRange(AtEnd); |
Fariborz Jahanian | 7ca8b06 | 2009-11-11 22:40:11 +0000 | [diff] [blame] | 2213 | if (ObjCInterfaceDecl* IDecl = IC->getClassInterface()) { |
Fariborz Jahanian | c78f684 | 2010-12-11 18:39:37 +0000 | [diff] [blame] | 2214 | // Any property declared in a class extension might have user |
| 2215 | // declared setter or getter in current class extension or one |
| 2216 | // of the other class extensions. Mark them as synthesized as |
| 2217 | // property will be synthesized when property with same name is |
| 2218 | // seen in the @implementation. |
| 2219 | for (const ObjCCategoryDecl *ClsExtDecl = |
| 2220 | IDecl->getFirstClassExtension(); |
| 2221 | ClsExtDecl; ClsExtDecl = ClsExtDecl->getNextClassExtension()) { |
| 2222 | for (ObjCContainerDecl::prop_iterator I = ClsExtDecl->prop_begin(), |
| 2223 | E = ClsExtDecl->prop_end(); I != E; ++I) { |
| 2224 | ObjCPropertyDecl *Property = (*I); |
| 2225 | // Skip over properties declared @dynamic |
| 2226 | if (const ObjCPropertyImplDecl *PIDecl |
| 2227 | = IC->FindPropertyImplDecl(Property->getIdentifier())) |
| 2228 | if (PIDecl->getPropertyImplementation() |
| 2229 | == ObjCPropertyImplDecl::Dynamic) |
| 2230 | continue; |
| 2231 | |
| 2232 | for (const ObjCCategoryDecl *CExtDecl = |
| 2233 | IDecl->getFirstClassExtension(); |
| 2234 | CExtDecl; CExtDecl = CExtDecl->getNextClassExtension()) { |
| 2235 | if (ObjCMethodDecl *GetterMethod = |
| 2236 | CExtDecl->getInstanceMethod(Property->getGetterName())) |
| 2237 | GetterMethod->setSynthesized(true); |
| 2238 | if (!Property->isReadOnly()) |
| 2239 | if (ObjCMethodDecl *SetterMethod = |
| 2240 | CExtDecl->getInstanceMethod(Property->getSetterName())) |
| 2241 | SetterMethod->setSynthesized(true); |
| 2242 | } |
| 2243 | } |
| 2244 | } |
Fariborz Jahanian | 17cb326 | 2010-05-05 21:52:17 +0000 | [diff] [blame] | 2245 | ImplMethodsVsClassMethods(S, IC, IDecl); |
Fariborz Jahanian | 7ca8b06 | 2009-11-11 22:40:11 +0000 | [diff] [blame] | 2246 | AtomicPropertySetterGetterRules(IC, IDecl); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2247 | DiagnoseOwningPropertyGetterSynthesis(IC); |
Fariborz Jahanian | 2c18bb7 | 2010-08-20 21:21:08 +0000 | [diff] [blame] | 2248 | |
Fariborz Jahanian | f914b97 | 2010-02-23 23:41:11 +0000 | [diff] [blame] | 2249 | if (LangOpts.ObjCNonFragileABI2) |
| 2250 | while (IDecl->getSuperClass()) { |
| 2251 | DiagnoseDuplicateIvars(IDecl, IDecl->getSuperClass()); |
| 2252 | IDecl = IDecl->getSuperClass(); |
| 2253 | } |
Fariborz Jahanian | 7ca8b06 | 2009-11-11 22:40:11 +0000 | [diff] [blame] | 2254 | } |
Fariborz Jahanian | e4498c6 | 2010-04-28 16:11:27 +0000 | [diff] [blame] | 2255 | SetIvarInitializers(IC); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2256 | } else if (ObjCCategoryImplDecl* CatImplClass = |
Steve Naroff | 09c4719 | 2009-01-09 15:36:25 +0000 | [diff] [blame] | 2257 | dyn_cast<ObjCCategoryImplDecl>(ClassDecl)) { |
Ted Kremenek | 782f2f5 | 2010-01-07 01:20:12 +0000 | [diff] [blame] | 2258 | CatImplClass->setAtEndRange(AtEnd); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2259 | |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 2260 | // Find category interface decl and then check that all methods declared |
Daniel Dunbar | b20ef3e | 2008-08-27 05:40:03 +0000 | [diff] [blame] | 2261 | // in this interface are implemented in the category @implementation. |
Chris Lattner | 97a5887 | 2009-02-16 18:32:47 +0000 | [diff] [blame] | 2262 | if (ObjCInterfaceDecl* IDecl = CatImplClass->getClassInterface()) { |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 2263 | for (ObjCCategoryDecl *Categories = IDecl->getCategoryList(); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 2264 | Categories; Categories = Categories->getNextClassCategory()) { |
| 2265 | if (Categories->getIdentifier() == CatImplClass->getIdentifier()) { |
Fariborz Jahanian | 17cb326 | 2010-05-05 21:52:17 +0000 | [diff] [blame] | 2266 | ImplMethodsVsClassMethods(S, CatImplClass, Categories); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 2267 | break; |
| 2268 | } |
| 2269 | } |
| 2270 | } |
| 2271 | } |
Chris Lattner | 682bf92 | 2009-03-29 16:50:03 +0000 | [diff] [blame] | 2272 | if (isInterfaceDeclKind) { |
| 2273 | // Reject invalid vardecls. |
| 2274 | for (unsigned i = 0; i != tuvNum; i++) { |
| 2275 | DeclGroupRef DG = allTUVars[i].getAsVal<DeclGroupRef>(); |
| 2276 | for (DeclGroupRef::iterator I = DG.begin(), E = DG.end(); I != E; ++I) |
| 2277 | if (VarDecl *VDecl = dyn_cast<VarDecl>(*I)) { |
Daniel Dunbar | 5466c7b | 2009-04-14 02:25:56 +0000 | [diff] [blame] | 2278 | if (!VDecl->hasExternalStorage()) |
Steve Naroff | 8745416 | 2009-04-13 17:58:46 +0000 | [diff] [blame] | 2279 | Diag(VDecl->getLocation(), diag::err_objc_var_decl_inclass); |
Fariborz Jahanian | b31cb7f | 2009-03-21 18:06:45 +0000 | [diff] [blame] | 2280 | } |
Chris Lattner | 682bf92 | 2009-03-29 16:50:03 +0000 | [diff] [blame] | 2281 | } |
Fariborz Jahanian | 38e24c7 | 2009-03-18 22:33:24 +0000 | [diff] [blame] | 2282 | } |
Fariborz Jahanian | 10af879 | 2011-08-29 17:33:12 +0000 | [diff] [blame] | 2283 | ActOnObjCContainerFinishDefinition(); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 2284 | } |
| 2285 | |
| 2286 | |
| 2287 | /// CvtQTToAstBitMask - utility routine to produce an AST bitmask for |
| 2288 | /// objective-c's type qualifier from the parser version of the same info. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2289 | static Decl::ObjCDeclQualifier |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 2290 | CvtQTToAstBitMask(ObjCDeclSpec::ObjCDeclQualifier PQTVal) { |
John McCall | 09e2c52 | 2011-05-01 03:04:29 +0000 | [diff] [blame] | 2291 | return (Decl::ObjCDeclQualifier) (unsigned) PQTVal; |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 2292 | } |
| 2293 | |
Ted Kremenek | 422bae7 | 2010-04-18 04:59:38 +0000 | [diff] [blame] | 2294 | static inline |
Sean Hunt | cf807c4 | 2010-08-18 23:23:40 +0000 | [diff] [blame] | 2295 | bool containsInvalidMethodImplAttribute(const AttrVec &A) { |
Ted Kremenek | 422bae7 | 2010-04-18 04:59:38 +0000 | [diff] [blame] | 2296 | // The 'ibaction' attribute is allowed on method definitions because of |
| 2297 | // how the IBAction macro is used on both method declarations and definitions. |
| 2298 | // If the method definitions contains any other attributes, return true. |
Sean Hunt | cf807c4 | 2010-08-18 23:23:40 +0000 | [diff] [blame] | 2299 | for (AttrVec::const_iterator i = A.begin(), e = A.end(); i != e; ++i) |
| 2300 | if ((*i)->getKind() != attr::IBAction) |
| 2301 | return true; |
| 2302 | return false; |
Ted Kremenek | 422bae7 | 2010-04-18 04:59:38 +0000 | [diff] [blame] | 2303 | } |
| 2304 | |
Douglas Gregor | e97179c | 2011-09-08 01:46:34 +0000 | [diff] [blame] | 2305 | namespace { |
| 2306 | /// \brief Describes the compatibility of a result type with its method. |
| 2307 | enum ResultTypeCompatibilityKind { |
| 2308 | RTC_Compatible, |
| 2309 | RTC_Incompatible, |
| 2310 | RTC_Unknown |
| 2311 | }; |
| 2312 | } |
| 2313 | |
Douglas Gregor | 926df6c | 2011-06-11 01:09:30 +0000 | [diff] [blame] | 2314 | /// \brief Check whether the declared result type of the given Objective-C |
| 2315 | /// method declaration is compatible with the method's class. |
| 2316 | /// |
Douglas Gregor | e97179c | 2011-09-08 01:46:34 +0000 | [diff] [blame] | 2317 | static ResultTypeCompatibilityKind |
Douglas Gregor | 926df6c | 2011-06-11 01:09:30 +0000 | [diff] [blame] | 2318 | CheckRelatedResultTypeCompatibility(Sema &S, ObjCMethodDecl *Method, |
| 2319 | ObjCInterfaceDecl *CurrentClass) { |
| 2320 | QualType ResultType = Method->getResultType(); |
Douglas Gregor | 926df6c | 2011-06-11 01:09:30 +0000 | [diff] [blame] | 2321 | |
| 2322 | // If an Objective-C method inherits its related result type, then its |
| 2323 | // declared result type must be compatible with its own class type. The |
| 2324 | // declared result type is compatible if: |
| 2325 | if (const ObjCObjectPointerType *ResultObjectType |
| 2326 | = ResultType->getAs<ObjCObjectPointerType>()) { |
| 2327 | // - it is id or qualified id, or |
| 2328 | if (ResultObjectType->isObjCIdType() || |
| 2329 | ResultObjectType->isObjCQualifiedIdType()) |
Douglas Gregor | e97179c | 2011-09-08 01:46:34 +0000 | [diff] [blame] | 2330 | return RTC_Compatible; |
Douglas Gregor | 926df6c | 2011-06-11 01:09:30 +0000 | [diff] [blame] | 2331 | |
| 2332 | if (CurrentClass) { |
| 2333 | if (ObjCInterfaceDecl *ResultClass |
| 2334 | = ResultObjectType->getInterfaceDecl()) { |
| 2335 | // - it is the same as the method's class type, or |
| 2336 | if (CurrentClass == ResultClass) |
Douglas Gregor | e97179c | 2011-09-08 01:46:34 +0000 | [diff] [blame] | 2337 | return RTC_Compatible; |
Douglas Gregor | 926df6c | 2011-06-11 01:09:30 +0000 | [diff] [blame] | 2338 | |
| 2339 | // - it is a superclass of the method's class type |
| 2340 | if (ResultClass->isSuperClassOf(CurrentClass)) |
Douglas Gregor | e97179c | 2011-09-08 01:46:34 +0000 | [diff] [blame] | 2341 | return RTC_Compatible; |
Douglas Gregor | 926df6c | 2011-06-11 01:09:30 +0000 | [diff] [blame] | 2342 | } |
Douglas Gregor | e97179c | 2011-09-08 01:46:34 +0000 | [diff] [blame] | 2343 | } else { |
| 2344 | // Any Objective-C pointer type might be acceptable for a protocol |
| 2345 | // method; we just don't know. |
| 2346 | return RTC_Unknown; |
Douglas Gregor | 926df6c | 2011-06-11 01:09:30 +0000 | [diff] [blame] | 2347 | } |
| 2348 | } |
| 2349 | |
Douglas Gregor | e97179c | 2011-09-08 01:46:34 +0000 | [diff] [blame] | 2350 | return RTC_Incompatible; |
Douglas Gregor | 926df6c | 2011-06-11 01:09:30 +0000 | [diff] [blame] | 2351 | } |
| 2352 | |
John McCall | 6c2c250 | 2011-07-22 02:45:48 +0000 | [diff] [blame] | 2353 | namespace { |
| 2354 | /// A helper class for searching for methods which a particular method |
| 2355 | /// overrides. |
| 2356 | class OverrideSearch { |
| 2357 | Sema &S; |
| 2358 | ObjCMethodDecl *Method; |
| 2359 | llvm::SmallPtrSet<ObjCContainerDecl*, 8> Searched; |
| 2360 | llvm::SmallPtrSet<ObjCMethodDecl*, 8> Overridden; |
| 2361 | bool Recursive; |
| 2362 | |
| 2363 | public: |
| 2364 | OverrideSearch(Sema &S, ObjCMethodDecl *method) : S(S), Method(method) { |
| 2365 | Selector selector = method->getSelector(); |
| 2366 | |
| 2367 | // Bypass this search if we've never seen an instance/class method |
| 2368 | // with this selector before. |
| 2369 | Sema::GlobalMethodPool::iterator it = S.MethodPool.find(selector); |
| 2370 | if (it == S.MethodPool.end()) { |
| 2371 | if (!S.ExternalSource) return; |
| 2372 | it = S.ReadMethodPool(selector); |
| 2373 | } |
| 2374 | ObjCMethodList &list = |
| 2375 | method->isInstanceMethod() ? it->second.first : it->second.second; |
| 2376 | if (!list.Method) return; |
| 2377 | |
| 2378 | ObjCContainerDecl *container |
| 2379 | = cast<ObjCContainerDecl>(method->getDeclContext()); |
| 2380 | |
| 2381 | // Prevent the search from reaching this container again. This is |
| 2382 | // important with categories, which override methods from the |
| 2383 | // interface and each other. |
| 2384 | Searched.insert(container); |
| 2385 | searchFromContainer(container); |
Douglas Gregor | 926df6c | 2011-06-11 01:09:30 +0000 | [diff] [blame] | 2386 | } |
John McCall | 6c2c250 | 2011-07-22 02:45:48 +0000 | [diff] [blame] | 2387 | |
| 2388 | typedef llvm::SmallPtrSet<ObjCMethodDecl*,8>::iterator iterator; |
| 2389 | iterator begin() const { return Overridden.begin(); } |
| 2390 | iterator end() const { return Overridden.end(); } |
| 2391 | |
| 2392 | private: |
| 2393 | void searchFromContainer(ObjCContainerDecl *container) { |
| 2394 | if (container->isInvalidDecl()) return; |
| 2395 | |
| 2396 | switch (container->getDeclKind()) { |
| 2397 | #define OBJCCONTAINER(type, base) \ |
| 2398 | case Decl::type: \ |
| 2399 | searchFrom(cast<type##Decl>(container)); \ |
| 2400 | break; |
| 2401 | #define ABSTRACT_DECL(expansion) |
| 2402 | #define DECL(type, base) \ |
| 2403 | case Decl::type: |
| 2404 | #include "clang/AST/DeclNodes.inc" |
| 2405 | llvm_unreachable("not an ObjC container!"); |
| 2406 | } |
| 2407 | } |
| 2408 | |
| 2409 | void searchFrom(ObjCProtocolDecl *protocol) { |
| 2410 | // A method in a protocol declaration overrides declarations from |
| 2411 | // referenced ("parent") protocols. |
| 2412 | search(protocol->getReferencedProtocols()); |
| 2413 | } |
| 2414 | |
| 2415 | void searchFrom(ObjCCategoryDecl *category) { |
| 2416 | // A method in a category declaration overrides declarations from |
| 2417 | // the main class and from protocols the category references. |
| 2418 | search(category->getClassInterface()); |
| 2419 | search(category->getReferencedProtocols()); |
| 2420 | } |
| 2421 | |
| 2422 | void searchFrom(ObjCCategoryImplDecl *impl) { |
| 2423 | // A method in a category definition that has a category |
| 2424 | // declaration overrides declarations from the category |
| 2425 | // declaration. |
| 2426 | if (ObjCCategoryDecl *category = impl->getCategoryDecl()) { |
| 2427 | search(category); |
| 2428 | |
| 2429 | // Otherwise it overrides declarations from the class. |
| 2430 | } else { |
| 2431 | search(impl->getClassInterface()); |
| 2432 | } |
| 2433 | } |
| 2434 | |
| 2435 | void searchFrom(ObjCInterfaceDecl *iface) { |
| 2436 | // A method in a class declaration overrides declarations from |
| 2437 | |
| 2438 | // - categories, |
| 2439 | for (ObjCCategoryDecl *category = iface->getCategoryList(); |
| 2440 | category; category = category->getNextClassCategory()) |
| 2441 | search(category); |
| 2442 | |
| 2443 | // - the super class, and |
| 2444 | if (ObjCInterfaceDecl *super = iface->getSuperClass()) |
| 2445 | search(super); |
| 2446 | |
| 2447 | // - any referenced protocols. |
| 2448 | search(iface->getReferencedProtocols()); |
| 2449 | } |
| 2450 | |
| 2451 | void searchFrom(ObjCImplementationDecl *impl) { |
| 2452 | // A method in a class implementation overrides declarations from |
| 2453 | // the class interface. |
| 2454 | search(impl->getClassInterface()); |
| 2455 | } |
| 2456 | |
| 2457 | |
| 2458 | void search(const ObjCProtocolList &protocols) { |
| 2459 | for (ObjCProtocolList::iterator i = protocols.begin(), e = protocols.end(); |
| 2460 | i != e; ++i) |
| 2461 | search(*i); |
| 2462 | } |
| 2463 | |
| 2464 | void search(ObjCContainerDecl *container) { |
| 2465 | // Abort if we've already searched this container. |
| 2466 | if (!Searched.insert(container)) return; |
| 2467 | |
| 2468 | // Check for a method in this container which matches this selector. |
| 2469 | ObjCMethodDecl *meth = container->getMethod(Method->getSelector(), |
| 2470 | Method->isInstanceMethod()); |
| 2471 | |
| 2472 | // If we find one, record it and bail out. |
| 2473 | if (meth) { |
| 2474 | Overridden.insert(meth); |
| 2475 | return; |
| 2476 | } |
| 2477 | |
| 2478 | // Otherwise, search for methods that a hypothetical method here |
| 2479 | // would have overridden. |
| 2480 | |
| 2481 | // Note that we're now in a recursive case. |
| 2482 | Recursive = true; |
| 2483 | |
| 2484 | searchFromContainer(container); |
| 2485 | } |
| 2486 | }; |
Douglas Gregor | 926df6c | 2011-06-11 01:09:30 +0000 | [diff] [blame] | 2487 | } |
| 2488 | |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 2489 | Decl *Sema::ActOnMethodDeclaration( |
Fariborz Jahanian | 7f53253 | 2011-02-09 22:20:01 +0000 | [diff] [blame] | 2490 | Scope *S, |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 2491 | SourceLocation MethodLoc, SourceLocation EndLoc, |
Fariborz Jahanian | a28948f | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 2492 | tok::TokenKind MethodType, |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 2493 | ObjCDeclSpec &ReturnQT, ParsedType ReturnType, |
Argyrios Kyrtzidis | 11d7716 | 2011-10-03 06:36:36 +0000 | [diff] [blame] | 2494 | ArrayRef<SourceLocation> SelectorLocs, |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 2495 | Selector Sel, |
| 2496 | // optional arguments. The number of types/arguments is obtained |
| 2497 | // from the Sel.getNumArgs(). |
Chris Lattner | e294d3f | 2009-04-11 18:57:04 +0000 | [diff] [blame] | 2498 | ObjCArgInfo *ArgInfo, |
Fariborz Jahanian | 4f4fd92 | 2010-04-08 00:30:06 +0000 | [diff] [blame] | 2499 | DeclaratorChunk::ParamInfo *CParamInfo, unsigned CNumArgs, // c-style args |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 2500 | AttributeList *AttrList, tok::ObjCKeywordKind MethodDeclKind, |
Fariborz Jahanian | 90ba78c | 2011-03-12 18:54:30 +0000 | [diff] [blame] | 2501 | bool isVariadic, bool MethodDefinition) { |
Steve Naroff | da323ad | 2008-02-29 21:48:07 +0000 | [diff] [blame] | 2502 | // Make sure we can establish a context for the method. |
Fariborz Jahanian | a28948f | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 2503 | if (!CurContext->isObjCContainer()) { |
Steve Naroff | da323ad | 2008-02-29 21:48:07 +0000 | [diff] [blame] | 2504 | Diag(MethodLoc, diag::error_missing_method_context); |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 2505 | return 0; |
Steve Naroff | da323ad | 2008-02-29 21:48:07 +0000 | [diff] [blame] | 2506 | } |
Fariborz Jahanian | a28948f | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 2507 | ObjCContainerDecl *OCD = dyn_cast<ObjCContainerDecl>(CurContext); |
| 2508 | Decl *ClassDecl = cast<Decl>(OCD); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 2509 | QualType resultDeclType; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2510 | |
Douglas Gregor | e97179c | 2011-09-08 01:46:34 +0000 | [diff] [blame] | 2511 | bool HasRelatedResultType = false; |
Douglas Gregor | 4bc1cb6 | 2010-03-08 14:59:44 +0000 | [diff] [blame] | 2512 | TypeSourceInfo *ResultTInfo = 0; |
Steve Naroff | ccef371 | 2009-02-20 22:59:16 +0000 | [diff] [blame] | 2513 | if (ReturnType) { |
Douglas Gregor | 4bc1cb6 | 2010-03-08 14:59:44 +0000 | [diff] [blame] | 2514 | resultDeclType = GetTypeFromParser(ReturnType, &ResultTInfo); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2515 | |
Steve Naroff | ccef371 | 2009-02-20 22:59:16 +0000 | [diff] [blame] | 2516 | // Methods cannot return interface types. All ObjC objects are |
| 2517 | // passed by reference. |
John McCall | c12c5bb | 2010-05-15 11:32:37 +0000 | [diff] [blame] | 2518 | if (resultDeclType->isObjCObjectType()) { |
Chris Lattner | 2dd979f | 2009-04-11 19:08:56 +0000 | [diff] [blame] | 2519 | Diag(MethodLoc, diag::err_object_cannot_be_passed_returned_by_value) |
| 2520 | << 0 << resultDeclType; |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 2521 | return 0; |
Douglas Gregor | 926df6c | 2011-06-11 01:09:30 +0000 | [diff] [blame] | 2522 | } |
Douglas Gregor | e97179c | 2011-09-08 01:46:34 +0000 | [diff] [blame] | 2523 | |
| 2524 | HasRelatedResultType = (resultDeclType == Context.getObjCInstanceType()); |
Fariborz Jahanian | aab24a6 | 2011-07-21 17:00:47 +0000 | [diff] [blame] | 2525 | } else { // get the type for "id". |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 2526 | resultDeclType = Context.getObjCIdType(); |
Fariborz Jahanian | feb4fa1 | 2011-07-21 17:38:14 +0000 | [diff] [blame] | 2527 | Diag(MethodLoc, diag::warn_missing_method_return_type) |
Argyrios Kyrtzidis | 11d7716 | 2011-10-03 06:36:36 +0000 | [diff] [blame] | 2528 | << FixItHint::CreateInsertion(SelectorLocs.front(), "(id)"); |
Fariborz Jahanian | aab24a6 | 2011-07-21 17:00:47 +0000 | [diff] [blame] | 2529 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2530 | |
| 2531 | ObjCMethodDecl* ObjCMethod = |
Argyrios Kyrtzidis | 491306a | 2011-10-03 06:37:04 +0000 | [diff] [blame] | 2532 | ObjCMethodDecl::Create(Context, MethodLoc, EndLoc, Sel, |
Argyrios Kyrtzidis | 11d7716 | 2011-10-03 06:36:36 +0000 | [diff] [blame] | 2533 | resultDeclType, |
Douglas Gregor | 4bc1cb6 | 2010-03-08 14:59:44 +0000 | [diff] [blame] | 2534 | ResultTInfo, |
Fariborz Jahanian | a28948f | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 2535 | CurContext, |
Chris Lattner | 6c4ae5d | 2008-03-16 00:49:28 +0000 | [diff] [blame] | 2536 | MethodType == tok::minus, isVariadic, |
Argyrios Kyrtzidis | 75cf3e8 | 2011-08-17 19:25:08 +0000 | [diff] [blame] | 2537 | /*isSynthesized=*/false, |
| 2538 | /*isImplicitlyDeclared=*/false, /*isDefined=*/false, |
Douglas Gregor | 926df6c | 2011-06-11 01:09:30 +0000 | [diff] [blame] | 2539 | MethodDeclKind == tok::objc_optional |
| 2540 | ? ObjCMethodDecl::Optional |
| 2541 | : ObjCMethodDecl::Required, |
Douglas Gregor | e97179c | 2011-09-08 01:46:34 +0000 | [diff] [blame] | 2542 | HasRelatedResultType); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2543 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2544 | SmallVector<ParmVarDecl*, 16> Params; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2545 | |
Chris Lattner | 7db638d | 2009-04-11 19:42:43 +0000 | [diff] [blame] | 2546 | for (unsigned i = 0, e = Sel.getNumArgs(); i != e; ++i) { |
John McCall | 58e4677 | 2009-10-23 21:48:59 +0000 | [diff] [blame] | 2547 | QualType ArgType; |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 2548 | TypeSourceInfo *DI; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2549 | |
Chris Lattner | e294d3f | 2009-04-11 18:57:04 +0000 | [diff] [blame] | 2550 | if (ArgInfo[i].Type == 0) { |
John McCall | 58e4677 | 2009-10-23 21:48:59 +0000 | [diff] [blame] | 2551 | ArgType = Context.getObjCIdType(); |
| 2552 | DI = 0; |
Chris Lattner | e294d3f | 2009-04-11 18:57:04 +0000 | [diff] [blame] | 2553 | } else { |
John McCall | 58e4677 | 2009-10-23 21:48:59 +0000 | [diff] [blame] | 2554 | ArgType = GetTypeFromParser(ArgInfo[i].Type, &DI); |
Steve Naroff | 6082c62 | 2008-12-09 19:36:17 +0000 | [diff] [blame] | 2555 | // Perform the default array/function conversions (C99 6.7.5.3p[7,8]). |
Douglas Gregor | 79e6bd3 | 2011-07-12 04:42:08 +0000 | [diff] [blame] | 2556 | ArgType = Context.getAdjustedParameterType(ArgType); |
Chris Lattner | e294d3f | 2009-04-11 18:57:04 +0000 | [diff] [blame] | 2557 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2558 | |
Fariborz Jahanian | 7f53253 | 2011-02-09 22:20:01 +0000 | [diff] [blame] | 2559 | LookupResult R(*this, ArgInfo[i].Name, ArgInfo[i].NameLoc, |
| 2560 | LookupOrdinaryName, ForRedeclaration); |
| 2561 | LookupName(R, S); |
| 2562 | if (R.isSingleResult()) { |
| 2563 | NamedDecl *PrevDecl = R.getFoundDecl(); |
| 2564 | if (S->isDeclScope(PrevDecl)) { |
Fariborz Jahanian | 90ba78c | 2011-03-12 18:54:30 +0000 | [diff] [blame] | 2565 | Diag(ArgInfo[i].NameLoc, |
| 2566 | (MethodDefinition ? diag::warn_method_param_redefinition |
| 2567 | : diag::warn_method_param_declaration)) |
Fariborz Jahanian | 7f53253 | 2011-02-09 22:20:01 +0000 | [diff] [blame] | 2568 | << ArgInfo[i].Name; |
| 2569 | Diag(PrevDecl->getLocation(), |
| 2570 | diag::note_previous_declaration); |
| 2571 | } |
| 2572 | } |
| 2573 | |
Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 2574 | SourceLocation StartLoc = DI |
| 2575 | ? DI->getTypeLoc().getBeginLoc() |
| 2576 | : ArgInfo[i].NameLoc; |
| 2577 | |
John McCall | 81ef3e6 | 2011-04-23 02:46:06 +0000 | [diff] [blame] | 2578 | ParmVarDecl* Param = CheckParameter(ObjCMethod, StartLoc, |
| 2579 | ArgInfo[i].NameLoc, ArgInfo[i].Name, |
| 2580 | ArgType, DI, SC_None, SC_None); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2581 | |
John McCall | 7079886 | 2011-05-02 00:30:12 +0000 | [diff] [blame] | 2582 | Param->setObjCMethodScopeInfo(i); |
| 2583 | |
Chris Lattner | 0ed844b | 2008-04-04 06:12:32 +0000 | [diff] [blame] | 2584 | Param->setObjCDeclQualifier( |
Chris Lattner | e294d3f | 2009-04-11 18:57:04 +0000 | [diff] [blame] | 2585 | CvtQTToAstBitMask(ArgInfo[i].DeclSpec.getObjCDeclQualifier())); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2586 | |
Chris Lattner | f97e8fa | 2009-04-11 19:34:56 +0000 | [diff] [blame] | 2587 | // Apply the attributes to the parameter. |
Douglas Gregor | 9cdda0c | 2009-06-17 21:51:59 +0000 | [diff] [blame] | 2588 | ProcessDeclAttributeList(TUScope, Param, ArgInfo[i].ArgAttrs); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2589 | |
Fariborz Jahanian | 7f53253 | 2011-02-09 22:20:01 +0000 | [diff] [blame] | 2590 | S->AddDecl(Param); |
| 2591 | IdResolver.AddDecl(Param); |
| 2592 | |
Chris Lattner | 0ed844b | 2008-04-04 06:12:32 +0000 | [diff] [blame] | 2593 | Params.push_back(Param); |
| 2594 | } |
Fariborz Jahanian | 7f53253 | 2011-02-09 22:20:01 +0000 | [diff] [blame] | 2595 | |
Fariborz Jahanian | 4f4fd92 | 2010-04-08 00:30:06 +0000 | [diff] [blame] | 2596 | for (unsigned i = 0, e = CNumArgs; i != e; ++i) { |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 2597 | ParmVarDecl *Param = cast<ParmVarDecl>(CParamInfo[i].Param); |
Fariborz Jahanian | 4f4fd92 | 2010-04-08 00:30:06 +0000 | [diff] [blame] | 2598 | QualType ArgType = Param->getType(); |
| 2599 | if (ArgType.isNull()) |
| 2600 | ArgType = Context.getObjCIdType(); |
| 2601 | else |
| 2602 | // Perform the default array/function conversions (C99 6.7.5.3p[7,8]). |
Douglas Gregor | 79e6bd3 | 2011-07-12 04:42:08 +0000 | [diff] [blame] | 2603 | ArgType = Context.getAdjustedParameterType(ArgType); |
John McCall | c12c5bb | 2010-05-15 11:32:37 +0000 | [diff] [blame] | 2604 | if (ArgType->isObjCObjectType()) { |
Fariborz Jahanian | 4f4fd92 | 2010-04-08 00:30:06 +0000 | [diff] [blame] | 2605 | Diag(Param->getLocation(), |
| 2606 | diag::err_object_cannot_be_passed_returned_by_value) |
| 2607 | << 1 << ArgType; |
| 2608 | Param->setInvalidDecl(); |
| 2609 | } |
| 2610 | Param->setDeclContext(ObjCMethod); |
Fariborz Jahanian | 7f53253 | 2011-02-09 22:20:01 +0000 | [diff] [blame] | 2611 | |
Fariborz Jahanian | 4f4fd92 | 2010-04-08 00:30:06 +0000 | [diff] [blame] | 2612 | Params.push_back(Param); |
| 2613 | } |
| 2614 | |
Argyrios Kyrtzidis | 491306a | 2011-10-03 06:37:04 +0000 | [diff] [blame] | 2615 | ObjCMethod->setMethodParams(Context, Params, SelectorLocs); |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 2616 | ObjCMethod->setObjCDeclQualifier( |
| 2617 | CvtQTToAstBitMask(ReturnQT.getObjCDeclQualifier())); |
Daniel Dunbar | 3568249 | 2008-09-26 04:12:28 +0000 | [diff] [blame] | 2618 | |
| 2619 | if (AttrList) |
Douglas Gregor | 9cdda0c | 2009-06-17 21:51:59 +0000 | [diff] [blame] | 2620 | ProcessDeclAttributeList(TUScope, ObjCMethod, AttrList); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2621 | |
Douglas Gregor | bdb2d50 | 2010-12-21 17:34:17 +0000 | [diff] [blame] | 2622 | // Add the method now. |
John McCall | 6c2c250 | 2011-07-22 02:45:48 +0000 | [diff] [blame] | 2623 | const ObjCMethodDecl *PrevMethod = 0; |
| 2624 | if (ObjCImplDecl *ImpDecl = dyn_cast<ObjCImplDecl>(ClassDecl)) { |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 2625 | if (MethodType == tok::minus) { |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2626 | PrevMethod = ImpDecl->getInstanceMethod(Sel); |
| 2627 | ImpDecl->addInstanceMethod(ObjCMethod); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 2628 | } else { |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2629 | PrevMethod = ImpDecl->getClassMethod(Sel); |
| 2630 | ImpDecl->addClassMethod(ObjCMethod); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 2631 | } |
Douglas Gregor | 926df6c | 2011-06-11 01:09:30 +0000 | [diff] [blame] | 2632 | |
Sean Hunt | cf807c4 | 2010-08-18 23:23:40 +0000 | [diff] [blame] | 2633 | if (ObjCMethod->hasAttrs() && |
| 2634 | containsInvalidMethodImplAttribute(ObjCMethod->getAttrs())) |
Fariborz Jahanian | 5d36ac2 | 2009-05-12 21:36:23 +0000 | [diff] [blame] | 2635 | Diag(EndLoc, diag::warn_attribute_method_def); |
Douglas Gregor | bdb2d50 | 2010-12-21 17:34:17 +0000 | [diff] [blame] | 2636 | } else { |
| 2637 | cast<DeclContext>(ClassDecl)->addDecl(ObjCMethod); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 2638 | } |
John McCall | 6c2c250 | 2011-07-22 02:45:48 +0000 | [diff] [blame] | 2639 | |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 2640 | if (PrevMethod) { |
| 2641 | // You can never have two method definitions with the same name. |
Chris Lattner | 5f4a682 | 2008-11-23 23:12:31 +0000 | [diff] [blame] | 2642 | Diag(ObjCMethod->getLocation(), diag::err_duplicate_method_decl) |
Chris Lattner | 077bf5e | 2008-11-24 03:33:13 +0000 | [diff] [blame] | 2643 | << ObjCMethod->getDeclName(); |
Chris Lattner | 5f4a682 | 2008-11-23 23:12:31 +0000 | [diff] [blame] | 2644 | Diag(PrevMethod->getLocation(), diag::note_previous_declaration); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2645 | } |
John McCall | 54abf7d | 2009-11-04 02:18:39 +0000 | [diff] [blame] | 2646 | |
Douglas Gregor | 926df6c | 2011-06-11 01:09:30 +0000 | [diff] [blame] | 2647 | // If this Objective-C method does not have a related result type, but we |
| 2648 | // are allowed to infer related result types, try to do so based on the |
| 2649 | // method family. |
| 2650 | ObjCInterfaceDecl *CurrentClass = dyn_cast<ObjCInterfaceDecl>(ClassDecl); |
| 2651 | if (!CurrentClass) { |
| 2652 | if (ObjCCategoryDecl *Cat = dyn_cast<ObjCCategoryDecl>(ClassDecl)) |
| 2653 | CurrentClass = Cat->getClassInterface(); |
| 2654 | else if (ObjCImplDecl *Impl = dyn_cast<ObjCImplDecl>(ClassDecl)) |
| 2655 | CurrentClass = Impl->getClassInterface(); |
| 2656 | else if (ObjCCategoryImplDecl *CatImpl |
| 2657 | = dyn_cast<ObjCCategoryImplDecl>(ClassDecl)) |
| 2658 | CurrentClass = CatImpl->getClassInterface(); |
| 2659 | } |
John McCall | 6c2c250 | 2011-07-22 02:45:48 +0000 | [diff] [blame] | 2660 | |
Douglas Gregor | e97179c | 2011-09-08 01:46:34 +0000 | [diff] [blame] | 2661 | ResultTypeCompatibilityKind RTC |
| 2662 | = CheckRelatedResultTypeCompatibility(*this, ObjCMethod, CurrentClass); |
John McCall | 6c2c250 | 2011-07-22 02:45:48 +0000 | [diff] [blame] | 2663 | |
| 2664 | // Search for overridden methods and merge information down from them. |
| 2665 | OverrideSearch overrides(*this, ObjCMethod); |
| 2666 | for (OverrideSearch::iterator |
| 2667 | i = overrides.begin(), e = overrides.end(); i != e; ++i) { |
| 2668 | ObjCMethodDecl *overridden = *i; |
| 2669 | |
| 2670 | // Propagate down the 'related result type' bit from overridden methods. |
Douglas Gregor | e97179c | 2011-09-08 01:46:34 +0000 | [diff] [blame] | 2671 | if (RTC != RTC_Incompatible && overridden->hasRelatedResultType()) |
Douglas Gregor | 926df6c | 2011-06-11 01:09:30 +0000 | [diff] [blame] | 2672 | ObjCMethod->SetRelatedResultType(); |
John McCall | 6c2c250 | 2011-07-22 02:45:48 +0000 | [diff] [blame] | 2673 | |
| 2674 | // Then merge the declarations. |
| 2675 | mergeObjCMethodDecls(ObjCMethod, overridden); |
Fariborz Jahanian | 730cfb1 | 2011-08-10 17:16:30 +0000 | [diff] [blame] | 2676 | |
| 2677 | // Check for overriding methods |
| 2678 | if (isa<ObjCInterfaceDecl>(ObjCMethod->getDeclContext()) || |
| 2679 | isa<ObjCImplementationDecl>(ObjCMethod->getDeclContext())) { |
| 2680 | WarnConflictingTypedMethods(ObjCMethod, overridden, |
| 2681 | isa<ObjCProtocolDecl>(overridden->getDeclContext()), true); |
| 2682 | } |
Douglas Gregor | 926df6c | 2011-06-11 01:09:30 +0000 | [diff] [blame] | 2683 | } |
| 2684 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2685 | bool ARCError = false; |
| 2686 | if (getLangOptions().ObjCAutoRefCount) |
| 2687 | ARCError = CheckARCMethodDecl(*this, ObjCMethod); |
| 2688 | |
Douglas Gregor | e97179c | 2011-09-08 01:46:34 +0000 | [diff] [blame] | 2689 | // Infer the related result type when possible. |
| 2690 | if (!ARCError && RTC == RTC_Compatible && |
| 2691 | !ObjCMethod->hasRelatedResultType() && |
| 2692 | LangOpts.ObjCInferRelatedResultType) { |
Douglas Gregor | 926df6c | 2011-06-11 01:09:30 +0000 | [diff] [blame] | 2693 | bool InferRelatedResultType = false; |
| 2694 | switch (ObjCMethod->getMethodFamily()) { |
| 2695 | case OMF_None: |
| 2696 | case OMF_copy: |
| 2697 | case OMF_dealloc: |
Nico Weber | 80cb6e6 | 2011-08-28 22:35:17 +0000 | [diff] [blame] | 2698 | case OMF_finalize: |
Douglas Gregor | 926df6c | 2011-06-11 01:09:30 +0000 | [diff] [blame] | 2699 | case OMF_mutableCopy: |
| 2700 | case OMF_release: |
| 2701 | case OMF_retainCount: |
Fariborz Jahanian | 9670e17 | 2011-07-05 22:38:59 +0000 | [diff] [blame] | 2702 | case OMF_performSelector: |
Douglas Gregor | 926df6c | 2011-06-11 01:09:30 +0000 | [diff] [blame] | 2703 | break; |
| 2704 | |
| 2705 | case OMF_alloc: |
| 2706 | case OMF_new: |
| 2707 | InferRelatedResultType = ObjCMethod->isClassMethod(); |
| 2708 | break; |
| 2709 | |
| 2710 | case OMF_init: |
| 2711 | case OMF_autorelease: |
| 2712 | case OMF_retain: |
| 2713 | case OMF_self: |
| 2714 | InferRelatedResultType = ObjCMethod->isInstanceMethod(); |
| 2715 | break; |
| 2716 | } |
| 2717 | |
John McCall | 6c2c250 | 2011-07-22 02:45:48 +0000 | [diff] [blame] | 2718 | if (InferRelatedResultType) |
Douglas Gregor | 926df6c | 2011-06-11 01:09:30 +0000 | [diff] [blame] | 2719 | ObjCMethod->SetRelatedResultType(); |
Douglas Gregor | 926df6c | 2011-06-11 01:09:30 +0000 | [diff] [blame] | 2720 | } |
| 2721 | |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 2722 | return ObjCMethod; |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 2723 | } |
| 2724 | |
Chris Lattner | cc98eac | 2008-12-17 07:13:27 +0000 | [diff] [blame] | 2725 | bool Sema::CheckObjCDeclScope(Decl *D) { |
Sebastian Redl | 7a126a4 | 2010-08-31 00:36:30 +0000 | [diff] [blame] | 2726 | if (isa<TranslationUnitDecl>(CurContext->getRedeclContext())) |
Anders Carlsson | 1528145 | 2008-11-04 16:57:32 +0000 | [diff] [blame] | 2727 | return false; |
Fariborz Jahanian | 58a7649 | 2011-08-22 18:34:22 +0000 | [diff] [blame] | 2728 | // Following is also an error. But it is caused by a missing @end |
| 2729 | // and diagnostic is issued elsewhere. |
Fariborz Jahanian | a28948f | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 2730 | if (isa<ObjCContainerDecl>(CurContext->getRedeclContext())) { |
| 2731 | return false; |
| 2732 | } |
| 2733 | |
Anders Carlsson | 1528145 | 2008-11-04 16:57:32 +0000 | [diff] [blame] | 2734 | Diag(D->getLocation(), diag::err_objc_decls_may_only_appear_in_global_scope); |
| 2735 | D->setInvalidDecl(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2736 | |
Anders Carlsson | 1528145 | 2008-11-04 16:57:32 +0000 | [diff] [blame] | 2737 | return true; |
| 2738 | } |
Chris Lattner | cc98eac | 2008-12-17 07:13:27 +0000 | [diff] [blame] | 2739 | |
Chris Lattner | cc98eac | 2008-12-17 07:13:27 +0000 | [diff] [blame] | 2740 | /// Called whenever @defs(ClassName) is encountered in the source. Inserts the |
| 2741 | /// instance variables of ClassName into Decls. |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 2742 | void Sema::ActOnDefs(Scope *S, Decl *TagD, SourceLocation DeclStart, |
Chris Lattner | cc98eac | 2008-12-17 07:13:27 +0000 | [diff] [blame] | 2743 | IdentifierInfo *ClassName, |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2744 | SmallVectorImpl<Decl*> &Decls) { |
Chris Lattner | cc98eac | 2008-12-17 07:13:27 +0000 | [diff] [blame] | 2745 | // Check that ClassName is a valid class |
Douglas Gregor | c83c687 | 2010-04-15 22:33:43 +0000 | [diff] [blame] | 2746 | ObjCInterfaceDecl *Class = getObjCInterfaceDecl(ClassName, DeclStart); |
Chris Lattner | cc98eac | 2008-12-17 07:13:27 +0000 | [diff] [blame] | 2747 | if (!Class) { |
| 2748 | Diag(DeclStart, diag::err_undef_interface) << ClassName; |
| 2749 | return; |
| 2750 | } |
Fariborz Jahanian | 0468fb9 | 2009-04-21 20:28:41 +0000 | [diff] [blame] | 2751 | if (LangOpts.ObjCNonFragileABI) { |
| 2752 | Diag(DeclStart, diag::err_atdef_nonfragile_interface); |
| 2753 | return; |
| 2754 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2755 | |
Chris Lattner | cc98eac | 2008-12-17 07:13:27 +0000 | [diff] [blame] | 2756 | // Collect the instance variables |
Jordy Rose | db8264e | 2011-07-22 02:08:32 +0000 | [diff] [blame] | 2757 | SmallVector<const ObjCIvarDecl*, 32> Ivars; |
Fariborz Jahanian | 2c18bb7 | 2010-08-20 21:21:08 +0000 | [diff] [blame] | 2758 | Context.DeepCollectObjCIvars(Class, true, Ivars); |
Fariborz Jahanian | 4183335 | 2009-06-04 17:08:55 +0000 | [diff] [blame] | 2759 | // For each ivar, create a fresh ObjCAtDefsFieldDecl. |
Fariborz Jahanian | 2c18bb7 | 2010-08-20 21:21:08 +0000 | [diff] [blame] | 2760 | for (unsigned i = 0; i < Ivars.size(); i++) { |
Jordy Rose | db8264e | 2011-07-22 02:08:32 +0000 | [diff] [blame] | 2761 | const FieldDecl* ID = cast<FieldDecl>(Ivars[i]); |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 2762 | RecordDecl *Record = dyn_cast<RecordDecl>(TagD); |
Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 2763 | Decl *FD = ObjCAtDefsFieldDecl::Create(Context, Record, |
| 2764 | /*FIXME: StartL=*/ID->getLocation(), |
| 2765 | ID->getLocation(), |
Fariborz Jahanian | 4183335 | 2009-06-04 17:08:55 +0000 | [diff] [blame] | 2766 | ID->getIdentifier(), ID->getType(), |
| 2767 | ID->getBitWidth()); |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 2768 | Decls.push_back(FD); |
Fariborz Jahanian | 4183335 | 2009-06-04 17:08:55 +0000 | [diff] [blame] | 2769 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2770 | |
Chris Lattner | cc98eac | 2008-12-17 07:13:27 +0000 | [diff] [blame] | 2771 | // Introduce all of these fields into the appropriate scope. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2772 | for (SmallVectorImpl<Decl*>::iterator D = Decls.begin(); |
Chris Lattner | cc98eac | 2008-12-17 07:13:27 +0000 | [diff] [blame] | 2773 | D != Decls.end(); ++D) { |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 2774 | FieldDecl *FD = cast<FieldDecl>(*D); |
Chris Lattner | cc98eac | 2008-12-17 07:13:27 +0000 | [diff] [blame] | 2775 | if (getLangOptions().CPlusPlus) |
| 2776 | PushOnScopeChains(cast<FieldDecl>(FD), S); |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 2777 | else if (RecordDecl *Record = dyn_cast<RecordDecl>(TagD)) |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2778 | Record->addDecl(FD); |
Chris Lattner | cc98eac | 2008-12-17 07:13:27 +0000 | [diff] [blame] | 2779 | } |
| 2780 | } |
| 2781 | |
Douglas Gregor | 160b563 | 2010-04-26 17:32:49 +0000 | [diff] [blame] | 2782 | /// \brief Build a type-check a new Objective-C exception variable declaration. |
Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 2783 | VarDecl *Sema::BuildObjCExceptionDecl(TypeSourceInfo *TInfo, QualType T, |
| 2784 | SourceLocation StartLoc, |
| 2785 | SourceLocation IdLoc, |
| 2786 | IdentifierInfo *Id, |
Douglas Gregor | 160b563 | 2010-04-26 17:32:49 +0000 | [diff] [blame] | 2787 | bool Invalid) { |
| 2788 | // ISO/IEC TR 18037 S6.7.3: "The type of an object with automatic storage |
| 2789 | // duration shall not be qualified by an address-space qualifier." |
| 2790 | // Since all parameters have automatic store duration, they can not have |
| 2791 | // an address space. |
| 2792 | if (T.getAddressSpace() != 0) { |
Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 2793 | Diag(IdLoc, diag::err_arg_with_address_space); |
Douglas Gregor | 160b563 | 2010-04-26 17:32:49 +0000 | [diff] [blame] | 2794 | Invalid = true; |
| 2795 | } |
| 2796 | |
| 2797 | // An @catch parameter must be an unqualified object pointer type; |
| 2798 | // FIXME: Recover from "NSObject foo" by inserting the * in "NSObject *foo"? |
| 2799 | if (Invalid) { |
| 2800 | // Don't do any further checking. |
Douglas Gregor | be270a0 | 2010-04-26 17:57:08 +0000 | [diff] [blame] | 2801 | } else if (T->isDependentType()) { |
| 2802 | // Okay: we don't know what this type will instantiate to. |
Douglas Gregor | 160b563 | 2010-04-26 17:32:49 +0000 | [diff] [blame] | 2803 | } else if (!T->isObjCObjectPointerType()) { |
| 2804 | Invalid = true; |
Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 2805 | Diag(IdLoc ,diag::err_catch_param_not_objc_type); |
Douglas Gregor | 160b563 | 2010-04-26 17:32:49 +0000 | [diff] [blame] | 2806 | } else if (T->isObjCQualifiedIdType()) { |
| 2807 | Invalid = true; |
Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 2808 | Diag(IdLoc, diag::err_illegal_qualifiers_on_catch_parm); |
Douglas Gregor | 160b563 | 2010-04-26 17:32:49 +0000 | [diff] [blame] | 2809 | } |
| 2810 | |
Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 2811 | VarDecl *New = VarDecl::Create(Context, CurContext, StartLoc, IdLoc, Id, |
| 2812 | T, TInfo, SC_None, SC_None); |
Douglas Gregor | 324b54d | 2010-05-03 18:51:14 +0000 | [diff] [blame] | 2813 | New->setExceptionVariable(true); |
| 2814 | |
Douglas Gregor | 160b563 | 2010-04-26 17:32:49 +0000 | [diff] [blame] | 2815 | if (Invalid) |
| 2816 | New->setInvalidDecl(); |
| 2817 | return New; |
| 2818 | } |
| 2819 | |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 2820 | Decl *Sema::ActOnObjCExceptionDecl(Scope *S, Declarator &D) { |
Douglas Gregor | 160b563 | 2010-04-26 17:32:49 +0000 | [diff] [blame] | 2821 | const DeclSpec &DS = D.getDeclSpec(); |
| 2822 | |
| 2823 | // We allow the "register" storage class on exception variables because |
| 2824 | // GCC did, but we drop it completely. Any other storage class is an error. |
| 2825 | if (DS.getStorageClassSpec() == DeclSpec::SCS_register) { |
| 2826 | Diag(DS.getStorageClassSpecLoc(), diag::warn_register_objc_catch_parm) |
| 2827 | << FixItHint::CreateRemoval(SourceRange(DS.getStorageClassSpecLoc())); |
| 2828 | } else if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified) { |
| 2829 | Diag(DS.getStorageClassSpecLoc(), diag::err_storage_spec_on_catch_parm) |
| 2830 | << DS.getStorageClassSpec(); |
| 2831 | } |
| 2832 | if (D.getDeclSpec().isThreadSpecified()) |
| 2833 | Diag(D.getDeclSpec().getThreadSpecLoc(), diag::err_invalid_thread); |
| 2834 | D.getMutableDeclSpec().ClearStorageClassSpecs(); |
| 2835 | |
| 2836 | DiagnoseFunctionSpecifiers(D); |
| 2837 | |
| 2838 | // Check that there are no default arguments inside the type of this |
| 2839 | // exception object (C++ only). |
| 2840 | if (getLangOptions().CPlusPlus) |
| 2841 | CheckExtraCXXDefaultArguments(D); |
| 2842 | |
Argyrios Kyrtzidis | 3215398 | 2011-06-28 03:01:15 +0000 | [diff] [blame] | 2843 | TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S); |
John McCall | bf1a028 | 2010-06-04 23:28:52 +0000 | [diff] [blame] | 2844 | QualType ExceptionType = TInfo->getType(); |
Douglas Gregor | 160b563 | 2010-04-26 17:32:49 +0000 | [diff] [blame] | 2845 | |
Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 2846 | VarDecl *New = BuildObjCExceptionDecl(TInfo, ExceptionType, |
| 2847 | D.getSourceRange().getBegin(), |
| 2848 | D.getIdentifierLoc(), |
| 2849 | D.getIdentifier(), |
Douglas Gregor | 160b563 | 2010-04-26 17:32:49 +0000 | [diff] [blame] | 2850 | D.isInvalidType()); |
| 2851 | |
| 2852 | // Parameter declarators cannot be qualified (C++ [dcl.meaning]p1). |
| 2853 | if (D.getCXXScopeSpec().isSet()) { |
| 2854 | Diag(D.getIdentifierLoc(), diag::err_qualified_objc_catch_parm) |
| 2855 | << D.getCXXScopeSpec().getRange(); |
| 2856 | New->setInvalidDecl(); |
| 2857 | } |
| 2858 | |
| 2859 | // Add the parameter declaration into this scope. |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 2860 | S->AddDecl(New); |
Douglas Gregor | 160b563 | 2010-04-26 17:32:49 +0000 | [diff] [blame] | 2861 | if (D.getIdentifier()) |
| 2862 | IdResolver.AddDecl(New); |
| 2863 | |
| 2864 | ProcessDeclAttributes(S, New, D); |
| 2865 | |
| 2866 | if (New->hasAttr<BlocksAttr>()) |
| 2867 | Diag(New->getLocation(), diag::err_block_on_nonlocal); |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 2868 | return New; |
Douglas Gregor | 4e6c0d1 | 2010-04-23 23:01:43 +0000 | [diff] [blame] | 2869 | } |
Fariborz Jahanian | 786cd15 | 2010-04-27 17:18:58 +0000 | [diff] [blame] | 2870 | |
| 2871 | /// CollectIvarsToConstructOrDestruct - Collect those ivars which require |
Fariborz Jahanian | e4498c6 | 2010-04-28 16:11:27 +0000 | [diff] [blame] | 2872 | /// initialization. |
Fariborz Jahanian | 2c18bb7 | 2010-08-20 21:21:08 +0000 | [diff] [blame] | 2873 | void Sema::CollectIvarsToConstructOrDestruct(ObjCInterfaceDecl *OI, |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2874 | SmallVectorImpl<ObjCIvarDecl*> &Ivars) { |
Fariborz Jahanian | 2c18bb7 | 2010-08-20 21:21:08 +0000 | [diff] [blame] | 2875 | for (ObjCIvarDecl *Iv = OI->all_declared_ivar_begin(); Iv; |
| 2876 | Iv= Iv->getNextIvar()) { |
Fariborz Jahanian | 786cd15 | 2010-04-27 17:18:58 +0000 | [diff] [blame] | 2877 | QualType QT = Context.getBaseElementType(Iv->getType()); |
Douglas Gregor | 68dd3ee | 2010-05-20 02:24:22 +0000 | [diff] [blame] | 2878 | if (QT->isRecordType()) |
Fariborz Jahanian | 2c18bb7 | 2010-08-20 21:21:08 +0000 | [diff] [blame] | 2879 | Ivars.push_back(Iv); |
Fariborz Jahanian | 786cd15 | 2010-04-27 17:18:58 +0000 | [diff] [blame] | 2880 | } |
| 2881 | } |
Fariborz Jahanian | e4498c6 | 2010-04-28 16:11:27 +0000 | [diff] [blame] | 2882 | |
Fariborz Jahanian | 3fe1041 | 2010-07-22 18:24:20 +0000 | [diff] [blame] | 2883 | void Sema::DiagnoseUseOfUnimplementedSelectors() { |
Douglas Gregor | 5b9dc7c | 2011-07-28 14:54:22 +0000 | [diff] [blame] | 2884 | // Load referenced selectors from the external source. |
| 2885 | if (ExternalSource) { |
| 2886 | SmallVector<std::pair<Selector, SourceLocation>, 4> Sels; |
| 2887 | ExternalSource->ReadReferencedSelectors(Sels); |
| 2888 | for (unsigned I = 0, N = Sels.size(); I != N; ++I) |
| 2889 | ReferencedSelectors[Sels[I].first] = Sels[I].second; |
| 2890 | } |
| 2891 | |
Fariborz Jahanian | 8b78913 | 2011-02-04 23:19:27 +0000 | [diff] [blame] | 2892 | // Warning will be issued only when selector table is |
| 2893 | // generated (which means there is at lease one implementation |
| 2894 | // in the TU). This is to match gcc's behavior. |
| 2895 | if (ReferencedSelectors.empty() || |
| 2896 | !Context.AnyObjCImplementation()) |
Fariborz Jahanian | 3fe1041 | 2010-07-22 18:24:20 +0000 | [diff] [blame] | 2897 | return; |
| 2898 | for (llvm::DenseMap<Selector, SourceLocation>::iterator S = |
| 2899 | ReferencedSelectors.begin(), |
| 2900 | E = ReferencedSelectors.end(); S != E; ++S) { |
| 2901 | Selector Sel = (*S).first; |
| 2902 | if (!LookupImplementedMethodInGlobalPool(Sel)) |
| 2903 | Diag((*S).second, diag::warn_unimplemented_selector) << Sel; |
| 2904 | } |
| 2905 | return; |
| 2906 | } |