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