Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1 | //===--- SemaDeclObjC.cpp - Semantic Analysis for ObjC Declarations -------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 0bc735f | 2007-12-29 19:59:25 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements semantic analysis for Objective C declarations. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "Sema.h" |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 15 | #include "clang/Sema/ExternalSemaSource.h" |
Steve Naroff | ca33129 | 2009-03-03 14:49:36 +0000 | [diff] [blame] | 16 | #include "clang/AST/Expr.h" |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 17 | #include "clang/AST/ASTContext.h" |
| 18 | #include "clang/AST/DeclObjC.h" |
Daniel Dunbar | 12bc692 | 2008-08-11 03:27:53 +0000 | [diff] [blame] | 19 | #include "clang/Parse/DeclSpec.h" |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 20 | using namespace clang; |
| 21 | |
Fariborz Jahanian | c001e89 | 2009-05-08 20:20:55 +0000 | [diff] [blame] | 22 | bool Sema::DiagnosePropertyAccessorMismatch(ObjCPropertyDecl *property, |
| 23 | ObjCMethodDecl *GetterMethod, |
| 24 | SourceLocation Loc) { |
| 25 | if (GetterMethod && |
| 26 | GetterMethod->getResultType() != property->getType()) { |
| 27 | AssignConvertType result = Incompatible; |
| 28 | if (Context.isObjCObjectPointerType(property->getType())) |
Fariborz Jahanian | 7aaa409 | 2009-05-08 21:10:00 +0000 | [diff] [blame] | 29 | result = CheckAssignmentConstraints(GetterMethod->getResultType(), property->getType()); |
Fariborz Jahanian | c001e89 | 2009-05-08 20:20:55 +0000 | [diff] [blame] | 30 | if (result != Compatible) { |
| 31 | Diag(Loc, diag::warn_accessor_property_type_mismatch) |
| 32 | << property->getDeclName() |
| 33 | << GetterMethod->getSelector(); |
| 34 | Diag(GetterMethod->getLocation(), diag::note_declared_at); |
| 35 | return true; |
| 36 | } |
| 37 | } |
| 38 | return false; |
| 39 | } |
| 40 | |
Steve Naroff | ebf6443 | 2009-02-28 16:59:13 +0000 | [diff] [blame] | 41 | /// ActOnStartOfObjCMethodDef - This routine sets up parameters; invisible |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 42 | /// and user declared, in the method definition's AST. |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 43 | void Sema::ActOnStartOfObjCMethodDef(Scope *FnBodyScope, DeclPtrTy D) { |
Argyrios Kyrtzidis | 53d0ea5 | 2008-06-28 06:07:14 +0000 | [diff] [blame] | 44 | assert(getCurMethodDecl() == 0 && "Method parsing confused"); |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 45 | ObjCMethodDecl *MDecl = dyn_cast_or_null<ObjCMethodDecl>(D.getAs<Decl>()); |
Steve Naroff | 394f3f4 | 2008-07-25 17:57:26 +0000 | [diff] [blame] | 46 | |
| 47 | // If we don't have a valid method decl, simply return. |
| 48 | if (!MDecl) |
| 49 | return; |
Steve Naroff | a56f616 | 2007-12-18 01:30:32 +0000 | [diff] [blame] | 50 | |
Chris Lattner | 38c5ebd | 2009-04-19 05:21:20 +0000 | [diff] [blame] | 51 | CurFunctionNeedsScopeChecking = false; |
| 52 | |
Steve Naroff | a56f616 | 2007-12-18 01:30:32 +0000 | [diff] [blame] | 53 | // Allow the rest of sema to find private method decl implementations. |
Douglas Gregor | f8d49f6 | 2009-01-09 17:18:27 +0000 | [diff] [blame] | 54 | if (MDecl->isInstanceMethod()) |
Steve Naroff | a56f616 | 2007-12-18 01:30:32 +0000 | [diff] [blame] | 55 | AddInstanceMethodToGlobalPool(MDecl); |
| 56 | else |
| 57 | AddFactoryMethodToGlobalPool(MDecl); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 58 | |
| 59 | // Allow all of Sema to see that we are entering a method definition. |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 60 | PushDeclContext(FnBodyScope, MDecl); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 61 | |
| 62 | // Create Decl objects for each parameter, entrring them in the scope for |
| 63 | // binding to their use. |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 64 | |
| 65 | // Insert the invisible arguments, self and _cmd! |
Fariborz Jahanian | fef30b5 | 2008-12-09 20:23:04 +0000 | [diff] [blame] | 66 | MDecl->createImplicitParams(Context, MDecl->getClassInterface()); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 67 | |
Daniel Dunbar | 451318c | 2008-08-26 06:07:48 +0000 | [diff] [blame] | 68 | PushOnScopeChains(MDecl->getSelfDecl(), FnBodyScope); |
| 69 | PushOnScopeChains(MDecl->getCmdDecl(), FnBodyScope); |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 70 | |
Chris Lattner | 8123a95 | 2008-04-10 02:22:51 +0000 | [diff] [blame] | 71 | // Introduce all of the other parameters into this scope. |
Chris Lattner | 89951a8 | 2009-02-20 18:43:26 +0000 | [diff] [blame] | 72 | for (ObjCMethodDecl::param_iterator PI = MDecl->param_begin(), |
| 73 | E = MDecl->param_end(); PI != E; ++PI) |
| 74 | if ((*PI)->getIdentifier()) |
| 75 | PushOnScopeChains(*PI, FnBodyScope); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 76 | } |
| 77 | |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 78 | Sema::DeclPtrTy Sema:: |
Chris Lattner | 7caeabd | 2008-07-21 22:17:28 +0000 | [diff] [blame] | 79 | ActOnStartClassInterface(SourceLocation AtInterfaceLoc, |
| 80 | IdentifierInfo *ClassName, SourceLocation ClassLoc, |
| 81 | IdentifierInfo *SuperName, SourceLocation SuperLoc, |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 82 | const DeclPtrTy *ProtoRefs, unsigned NumProtoRefs, |
Chris Lattner | 7caeabd | 2008-07-21 22:17:28 +0000 | [diff] [blame] | 83 | SourceLocation EndProtoLoc, AttributeList *AttrList) { |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 84 | assert(ClassName && "Missing class identifier"); |
| 85 | |
| 86 | // Check for another declaration kind with the same name. |
Douglas Gregor | 47b9a1c | 2009-02-04 17:27:36 +0000 | [diff] [blame] | 87 | NamedDecl *PrevDecl = LookupName(TUScope, ClassName, LookupOrdinaryName); |
Douglas Gregor | f57172b | 2008-12-08 18:40:42 +0000 | [diff] [blame] | 88 | if (PrevDecl && PrevDecl->isTemplateParameter()) { |
Douglas Gregor | 72c3f31 | 2008-12-05 18:15:24 +0000 | [diff] [blame] | 89 | // Maybe we will complain about the shadowed template parameter. |
| 90 | DiagnoseTemplateParameterShadow(ClassLoc, PrevDecl); |
| 91 | // Just pretend that we didn't see the previous declaration. |
| 92 | PrevDecl = 0; |
| 93 | } |
| 94 | |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 95 | if (PrevDecl && !isa<ObjCInterfaceDecl>(PrevDecl)) { |
Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 96 | Diag(ClassLoc, diag::err_redefinition_different_kind) << ClassName; |
Chris Lattner | 5f4a682 | 2008-11-23 23:12:31 +0000 | [diff] [blame] | 97 | Diag(PrevDecl->getLocation(), diag::note_previous_definition); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 98 | } |
| 99 | |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 100 | ObjCInterfaceDecl* IDecl = dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 101 | if (IDecl) { |
| 102 | // Class already seen. Is it a forward declaration? |
Steve Naroff | cfe8bf3 | 2008-11-18 19:15:30 +0000 | [diff] [blame] | 103 | if (!IDecl->isForwardDecl()) { |
Chris Lattner | 1829a6d | 2009-02-23 22:00:08 +0000 | [diff] [blame] | 104 | IDecl->setInvalidDecl(); |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 105 | Diag(AtInterfaceLoc, diag::err_duplicate_class_def)<<IDecl->getDeclName(); |
Chris Lattner | b8b96af | 2008-11-23 22:46:27 +0000 | [diff] [blame] | 106 | Diag(IDecl->getLocation(), diag::note_previous_definition); |
| 107 | |
Steve Naroff | cfe8bf3 | 2008-11-18 19:15:30 +0000 | [diff] [blame] | 108 | // Return the previous class interface. |
| 109 | // FIXME: don't leak the objects passed in! |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 110 | return DeclPtrTy::make(IDecl); |
Steve Naroff | cfe8bf3 | 2008-11-18 19:15:30 +0000 | [diff] [blame] | 111 | } else { |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 112 | IDecl->setLocation(AtInterfaceLoc); |
| 113 | IDecl->setForwardDecl(false); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 114 | } |
Chris Lattner | b752f28 | 2008-07-21 07:06:49 +0000 | [diff] [blame] | 115 | } else { |
Douglas Gregor | d043410 | 2009-01-09 00:49:46 +0000 | [diff] [blame] | 116 | IDecl = ObjCInterfaceDecl::Create(Context, CurContext, AtInterfaceLoc, |
Steve Naroff | d6a07aa | 2008-04-11 19:35:35 +0000 | [diff] [blame] | 117 | ClassName, ClassLoc); |
Daniel Dunbar | f641492 | 2008-08-20 18:02:42 +0000 | [diff] [blame] | 118 | if (AttrList) |
| 119 | ProcessDeclAttributeList(IDecl, AttrList); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 120 | |
Steve Naroff | a7503a7 | 2009-04-23 15:15:40 +0000 | [diff] [blame] | 121 | PushOnScopeChains(IDecl, TUScope); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 122 | } |
| 123 | |
| 124 | if (SuperName) { |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 125 | // Check if a different kind of symbol declared in this scope. |
Douglas Gregor | 4c921ae | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 126 | PrevDecl = LookupName(TUScope, SuperName, LookupOrdinaryName); |
Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 127 | |
Steve Naroff | 818cb9e | 2009-02-04 17:14:05 +0000 | [diff] [blame] | 128 | ObjCInterfaceDecl *SuperClassDecl = |
| 129 | dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl); |
Chris Lattner | c7984dd | 2009-02-16 21:33:09 +0000 | [diff] [blame] | 130 | |
| 131 | // Diagnose classes that inherit from deprecated classes. |
| 132 | if (SuperClassDecl) |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 133 | (void)DiagnoseUseOfDecl(SuperClassDecl, SuperLoc); |
Chris Lattner | c7984dd | 2009-02-16 21:33:09 +0000 | [diff] [blame] | 134 | |
Steve Naroff | 818cb9e | 2009-02-04 17:14:05 +0000 | [diff] [blame] | 135 | if (PrevDecl && SuperClassDecl == 0) { |
| 136 | // The previous declaration was not a class decl. Check if we have a |
| 137 | // typedef. If we do, get the underlying class type. |
| 138 | if (const TypedefDecl *TDecl = dyn_cast_or_null<TypedefDecl>(PrevDecl)) { |
| 139 | QualType T = TDecl->getUnderlyingType(); |
| 140 | if (T->isObjCInterfaceType()) { |
| 141 | if (NamedDecl *IDecl = T->getAsObjCInterfaceType()->getDecl()) |
| 142 | SuperClassDecl = dyn_cast<ObjCInterfaceDecl>(IDecl); |
| 143 | } |
| 144 | } |
Chris Lattner | c7984dd | 2009-02-16 21:33:09 +0000 | [diff] [blame] | 145 | |
Steve Naroff | 818cb9e | 2009-02-04 17:14:05 +0000 | [diff] [blame] | 146 | // This handles the following case: |
| 147 | // |
| 148 | // typedef int SuperClass; |
| 149 | // @interface MyClass : SuperClass {} @end |
| 150 | // |
| 151 | if (!SuperClassDecl) { |
| 152 | Diag(SuperLoc, diag::err_redefinition_different_kind) << SuperName; |
| 153 | Diag(PrevDecl->getLocation(), diag::note_previous_definition); |
| 154 | } |
| 155 | } |
Chris Lattner | c7984dd | 2009-02-16 21:33:09 +0000 | [diff] [blame] | 156 | |
Steve Naroff | 818cb9e | 2009-02-04 17:14:05 +0000 | [diff] [blame] | 157 | if (!dyn_cast_or_null<TypedefDecl>(PrevDecl)) { |
| 158 | if (!SuperClassDecl) |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 159 | Diag(SuperLoc, diag::err_undef_superclass) |
Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 160 | << SuperName << ClassName << SourceRange(AtInterfaceLoc, ClassLoc); |
Steve Naroff | 818cb9e | 2009-02-04 17:14:05 +0000 | [diff] [blame] | 161 | else if (SuperClassDecl->isForwardDecl()) |
Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 162 | Diag(SuperLoc, diag::err_undef_superclass) |
Steve Naroff | 818cb9e | 2009-02-04 17:14:05 +0000 | [diff] [blame] | 163 | << SuperClassDecl->getDeclName() << ClassName |
Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 164 | << SourceRange(AtInterfaceLoc, ClassLoc); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 165 | } |
Steve Naroff | 818cb9e | 2009-02-04 17:14:05 +0000 | [diff] [blame] | 166 | IDecl->setSuperClass(SuperClassDecl); |
Steve Naroff | d6a07aa | 2008-04-11 19:35:35 +0000 | [diff] [blame] | 167 | IDecl->setSuperClassLoc(SuperLoc); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 168 | IDecl->setLocEnd(SuperLoc); |
| 169 | } else { // we have a root class. |
| 170 | IDecl->setLocEnd(ClassLoc); |
| 171 | } |
| 172 | |
Steve Naroff | cfe8bf3 | 2008-11-18 19:15:30 +0000 | [diff] [blame] | 173 | /// Check then save referenced protocols. |
Chris Lattner | 06036d3 | 2008-07-26 04:13:19 +0000 | [diff] [blame] | 174 | if (NumProtoRefs) { |
Chris Lattner | 38af2de | 2009-02-20 21:35:13 +0000 | [diff] [blame] | 175 | IDecl->setProtocolList((ObjCProtocolDecl**)ProtoRefs, NumProtoRefs, |
| 176 | Context); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 177 | IDecl->setLocEnd(EndProtoLoc); |
| 178 | } |
Anders Carlsson | 1528145 | 2008-11-04 16:57:32 +0000 | [diff] [blame] | 179 | |
| 180 | CheckObjCDeclScope(IDecl); |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 181 | return DeclPtrTy::make(IDecl); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 182 | } |
| 183 | |
| 184 | /// ActOnCompatiblityAlias - this action is called after complete parsing of |
Daniel Dunbar | 7ad1b1f | 2008-09-04 20:01:15 +0000 | [diff] [blame] | 185 | /// @compatibility_alias declaration. It sets up the alias relationships. |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 186 | Sema::DeclPtrTy Sema::ActOnCompatiblityAlias(SourceLocation AtLoc, |
| 187 | IdentifierInfo *AliasName, |
| 188 | SourceLocation AliasLocation, |
| 189 | IdentifierInfo *ClassName, |
| 190 | SourceLocation ClassLocation) { |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 191 | // Look for previous declaration of alias name |
Douglas Gregor | 47b9a1c | 2009-02-04 17:27:36 +0000 | [diff] [blame] | 192 | NamedDecl *ADecl = LookupName(TUScope, AliasName, LookupOrdinaryName); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 193 | if (ADecl) { |
Chris Lattner | 8b265bd | 2008-11-23 23:20:13 +0000 | [diff] [blame] | 194 | if (isa<ObjCCompatibleAliasDecl>(ADecl)) |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 195 | Diag(AliasLocation, diag::warn_previous_alias_decl); |
Chris Lattner | 8b265bd | 2008-11-23 23:20:13 +0000 | [diff] [blame] | 196 | else |
Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 197 | Diag(AliasLocation, diag::err_conflicting_aliasing_type) << AliasName; |
Chris Lattner | 8b265bd | 2008-11-23 23:20:13 +0000 | [diff] [blame] | 198 | Diag(ADecl->getLocation(), diag::note_previous_declaration); |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 199 | return DeclPtrTy(); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 200 | } |
| 201 | // Check for class declaration |
Douglas Gregor | 47b9a1c | 2009-02-04 17:27:36 +0000 | [diff] [blame] | 202 | NamedDecl *CDeclU = LookupName(TUScope, ClassName, LookupOrdinaryName); |
Fariborz Jahanian | 305c658 | 2009-01-08 01:10:55 +0000 | [diff] [blame] | 203 | if (const TypedefDecl *TDecl = dyn_cast_or_null<TypedefDecl>(CDeclU)) { |
| 204 | QualType T = TDecl->getUnderlyingType(); |
| 205 | if (T->isObjCInterfaceType()) { |
| 206 | if (NamedDecl *IDecl = T->getAsObjCInterfaceType()->getDecl()) { |
| 207 | ClassName = IDecl->getIdentifier(); |
Douglas Gregor | 4c921ae | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 208 | CDeclU = LookupName(TUScope, ClassName, LookupOrdinaryName); |
Fariborz Jahanian | 305c658 | 2009-01-08 01:10:55 +0000 | [diff] [blame] | 209 | } |
| 210 | } |
| 211 | } |
Chris Lattner | f8d17a5 | 2008-03-16 21:17:37 +0000 | [diff] [blame] | 212 | ObjCInterfaceDecl *CDecl = dyn_cast_or_null<ObjCInterfaceDecl>(CDeclU); |
| 213 | if (CDecl == 0) { |
Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 214 | Diag(ClassLocation, diag::warn_undef_interface) << ClassName; |
Chris Lattner | f8d17a5 | 2008-03-16 21:17:37 +0000 | [diff] [blame] | 215 | if (CDeclU) |
Chris Lattner | 8b265bd | 2008-11-23 23:20:13 +0000 | [diff] [blame] | 216 | Diag(CDeclU->getLocation(), diag::note_previous_declaration); |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 217 | return DeclPtrTy(); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 218 | } |
Chris Lattner | f8d17a5 | 2008-03-16 21:17:37 +0000 | [diff] [blame] | 219 | |
| 220 | // Everything checked out, instantiate a new alias declaration AST. |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 221 | ObjCCompatibleAliasDecl *AliasDecl = |
Douglas Gregor | d043410 | 2009-01-09 00:49:46 +0000 | [diff] [blame] | 222 | ObjCCompatibleAliasDecl::Create(Context, CurContext, AtLoc, AliasName, CDecl); |
Steve Naroff | e8043c3 | 2008-04-01 23:04:06 +0000 | [diff] [blame] | 223 | |
Anders Carlsson | 1528145 | 2008-11-04 16:57:32 +0000 | [diff] [blame] | 224 | if (!CheckObjCDeclScope(AliasDecl)) |
Douglas Gregor | 516ff43 | 2009-04-24 02:57:34 +0000 | [diff] [blame] | 225 | PushOnScopeChains(AliasDecl, TUScope); |
Douglas Gregor | d043410 | 2009-01-09 00:49:46 +0000 | [diff] [blame] | 226 | |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 227 | return DeclPtrTy::make(AliasDecl); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 228 | } |
| 229 | |
Steve Naroff | 61d6852 | 2009-03-05 15:22:01 +0000 | [diff] [blame] | 230 | void Sema::CheckForwardProtocolDeclarationForCircularDependency( |
| 231 | IdentifierInfo *PName, |
| 232 | SourceLocation &Ploc, SourceLocation PrevLoc, |
| 233 | const ObjCList<ObjCProtocolDecl> &PList) |
| 234 | { |
| 235 | for (ObjCList<ObjCProtocolDecl>::iterator I = PList.begin(), |
| 236 | E = PList.end(); I != E; ++I) { |
| 237 | |
Douglas Gregor | 6e378de | 2009-04-23 23:18:26 +0000 | [diff] [blame] | 238 | if (ObjCProtocolDecl *PDecl = LookupProtocol((*I)->getIdentifier())) { |
Steve Naroff | 61d6852 | 2009-03-05 15:22:01 +0000 | [diff] [blame] | 239 | if (PDecl->getIdentifier() == PName) { |
| 240 | Diag(Ploc, diag::err_protocol_has_circular_dependency); |
| 241 | Diag(PrevLoc, diag::note_previous_definition); |
| 242 | } |
| 243 | CheckForwardProtocolDeclarationForCircularDependency(PName, Ploc, |
| 244 | PDecl->getLocation(), PDecl->getReferencedProtocols()); |
| 245 | } |
| 246 | } |
| 247 | } |
| 248 | |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 249 | Sema::DeclPtrTy |
Chris Lattner | e13b959 | 2008-07-26 04:03:38 +0000 | [diff] [blame] | 250 | Sema::ActOnStartProtocolInterface(SourceLocation AtProtoInterfaceLoc, |
| 251 | IdentifierInfo *ProtocolName, |
| 252 | SourceLocation ProtocolLoc, |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 253 | const DeclPtrTy *ProtoRefs, |
Chris Lattner | e13b959 | 2008-07-26 04:03:38 +0000 | [diff] [blame] | 254 | unsigned NumProtoRefs, |
Daniel Dunbar | 246e70f | 2008-09-26 04:48:09 +0000 | [diff] [blame] | 255 | SourceLocation EndProtoLoc, |
| 256 | AttributeList *AttrList) { |
| 257 | // FIXME: Deal with AttrList. |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 258 | assert(ProtocolName && "Missing protocol identifier"); |
Douglas Gregor | 6e378de | 2009-04-23 23:18:26 +0000 | [diff] [blame] | 259 | ObjCProtocolDecl *PDecl = LookupProtocol(ProtocolName); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 260 | if (PDecl) { |
| 261 | // Protocol already seen. Better be a forward protocol declaration |
Chris Lattner | 439e71f | 2008-03-16 01:25:17 +0000 | [diff] [blame] | 262 | if (!PDecl->isForwardDecl()) { |
Fariborz Jahanian | e2573e5 | 2009-04-06 23:43:32 +0000 | [diff] [blame] | 263 | Diag(ProtocolLoc, diag::warn_duplicate_protocol_def) << ProtocolName; |
Chris Lattner | b8b96af | 2008-11-23 22:46:27 +0000 | [diff] [blame] | 264 | Diag(PDecl->getLocation(), diag::note_previous_definition); |
Chris Lattner | 439e71f | 2008-03-16 01:25:17 +0000 | [diff] [blame] | 265 | // Just return the protocol we already had. |
| 266 | // FIXME: don't leak the objects passed in! |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 267 | return DeclPtrTy::make(PDecl); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 268 | } |
Steve Naroff | 61d6852 | 2009-03-05 15:22:01 +0000 | [diff] [blame] | 269 | ObjCList<ObjCProtocolDecl> PList; |
| 270 | PList.set((ObjCProtocolDecl *const*)ProtoRefs, NumProtoRefs, Context); |
| 271 | CheckForwardProtocolDeclarationForCircularDependency( |
| 272 | ProtocolName, ProtocolLoc, PDecl->getLocation(), PList); |
| 273 | PList.Destroy(Context); |
| 274 | |
Steve Naroff | f11b508 | 2008-08-13 16:39:22 +0000 | [diff] [blame] | 275 | // Make sure the cached decl gets a valid start location. |
| 276 | PDecl->setLocation(AtProtoInterfaceLoc); |
Chris Lattner | 439e71f | 2008-03-16 01:25:17 +0000 | [diff] [blame] | 277 | PDecl->setForwardDecl(false); |
Chris Lattner | 439e71f | 2008-03-16 01:25:17 +0000 | [diff] [blame] | 278 | } else { |
Douglas Gregor | d043410 | 2009-01-09 00:49:46 +0000 | [diff] [blame] | 279 | PDecl = ObjCProtocolDecl::Create(Context, CurContext, |
| 280 | AtProtoInterfaceLoc,ProtocolName); |
Douglas Gregor | 6e378de | 2009-04-23 23:18:26 +0000 | [diff] [blame] | 281 | PushOnScopeChains(PDecl, TUScope); |
Chris Lattner | c858105 | 2008-03-16 20:19:15 +0000 | [diff] [blame] | 282 | PDecl->setForwardDecl(false); |
Chris Lattner | cca59d7 | 2008-03-16 01:23:04 +0000 | [diff] [blame] | 283 | } |
Fariborz Jahanian | bc1c877 | 2008-12-17 01:07:27 +0000 | [diff] [blame] | 284 | if (AttrList) |
| 285 | ProcessDeclAttributeList(PDecl, AttrList); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 286 | if (NumProtoRefs) { |
Chris Lattner | c858105 | 2008-03-16 20:19:15 +0000 | [diff] [blame] | 287 | /// Check then save referenced protocols. |
Chris Lattner | 38af2de | 2009-02-20 21:35:13 +0000 | [diff] [blame] | 288 | PDecl->setProtocolList((ObjCProtocolDecl**)ProtoRefs, NumProtoRefs,Context); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 289 | PDecl->setLocEnd(EndProtoLoc); |
| 290 | } |
Anders Carlsson | 1528145 | 2008-11-04 16:57:32 +0000 | [diff] [blame] | 291 | |
| 292 | CheckObjCDeclScope(PDecl); |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 293 | return DeclPtrTy::make(PDecl); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 294 | } |
| 295 | |
| 296 | /// FindProtocolDeclaration - This routine looks up protocols and |
Daniel Dunbar | 7ad1b1f | 2008-09-04 20:01:15 +0000 | [diff] [blame] | 297 | /// issues an error if they are not declared. It returns list of |
| 298 | /// protocol declarations in its 'Protocols' argument. |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 299 | void |
Chris Lattner | e13b959 | 2008-07-26 04:03:38 +0000 | [diff] [blame] | 300 | Sema::FindProtocolDeclaration(bool WarnOnDeclarations, |
Chris Lattner | 7caeabd | 2008-07-21 22:17:28 +0000 | [diff] [blame] | 301 | const IdentifierLocPair *ProtocolId, |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 302 | unsigned NumProtocols, |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 303 | llvm::SmallVectorImpl<DeclPtrTy> &Protocols) { |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 304 | for (unsigned i = 0; i != NumProtocols; ++i) { |
Douglas Gregor | 6e378de | 2009-04-23 23:18:26 +0000 | [diff] [blame] | 305 | ObjCProtocolDecl *PDecl = LookupProtocol(ProtocolId[i].first); |
Chris Lattner | eacc392 | 2008-07-26 03:47:43 +0000 | [diff] [blame] | 306 | if (!PDecl) { |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 307 | Diag(ProtocolId[i].second, diag::err_undeclared_protocol) |
Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 308 | << ProtocolId[i].first; |
Chris Lattner | eacc392 | 2008-07-26 03:47:43 +0000 | [diff] [blame] | 309 | continue; |
| 310 | } |
Chris Lattner | 45ce5c3 | 2009-02-14 08:22:25 +0000 | [diff] [blame] | 311 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 312 | (void)DiagnoseUseOfDecl(PDecl, ProtocolId[i].second); |
Chris Lattner | eacc392 | 2008-07-26 03:47:43 +0000 | [diff] [blame] | 313 | |
| 314 | // If this is a forward declaration and we are supposed to warn in this |
| 315 | // case, do it. |
| 316 | if (WarnOnDeclarations && PDecl->isForwardDecl()) |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 317 | Diag(ProtocolId[i].second, diag::warn_undef_protocolref) |
Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 318 | << ProtocolId[i].first; |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 319 | Protocols.push_back(DeclPtrTy::make(PDecl)); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 320 | } |
| 321 | } |
| 322 | |
Fariborz Jahanian | b5e0224 | 2008-04-24 19:58:34 +0000 | [diff] [blame] | 323 | /// DiagnosePropertyMismatch - Compares two properties for their |
Daniel Dunbar | b20ef3e | 2008-08-27 05:40:03 +0000 | [diff] [blame] | 324 | /// attributes and types and warns on a variety of inconsistencies. |
Fariborz Jahanian | b5e0224 | 2008-04-24 19:58:34 +0000 | [diff] [blame] | 325 | /// |
Fariborz Jahanian | 02edb98 | 2008-05-01 00:03:38 +0000 | [diff] [blame] | 326 | void |
| 327 | Sema::DiagnosePropertyMismatch(ObjCPropertyDecl *Property, |
| 328 | ObjCPropertyDecl *SuperProperty, |
Chris Lattner | 8ec03f5 | 2008-11-24 03:54:41 +0000 | [diff] [blame] | 329 | const IdentifierInfo *inheritedName) { |
Fariborz Jahanian | b5e0224 | 2008-04-24 19:58:34 +0000 | [diff] [blame] | 330 | ObjCPropertyDecl::PropertyAttributeKind CAttr = |
| 331 | Property->getPropertyAttributes(); |
| 332 | ObjCPropertyDecl::PropertyAttributeKind SAttr = |
| 333 | SuperProperty->getPropertyAttributes(); |
| 334 | if ((CAttr & ObjCPropertyDecl::OBJC_PR_readonly) |
| 335 | && (SAttr & ObjCPropertyDecl::OBJC_PR_readwrite)) |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 336 | Diag(Property->getLocation(), diag::warn_readonly_property) |
Chris Lattner | 8ec03f5 | 2008-11-24 03:54:41 +0000 | [diff] [blame] | 337 | << Property->getDeclName() << inheritedName; |
Fariborz Jahanian | b5e0224 | 2008-04-24 19:58:34 +0000 | [diff] [blame] | 338 | if ((CAttr & ObjCPropertyDecl::OBJC_PR_copy) |
| 339 | != (SAttr & ObjCPropertyDecl::OBJC_PR_copy)) |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 340 | Diag(Property->getLocation(), diag::warn_property_attribute) |
Chris Lattner | 8ec03f5 | 2008-11-24 03:54:41 +0000 | [diff] [blame] | 341 | << Property->getDeclName() << "copy" << inheritedName; |
Fariborz Jahanian | b5e0224 | 2008-04-24 19:58:34 +0000 | [diff] [blame] | 342 | else if ((CAttr & ObjCPropertyDecl::OBJC_PR_retain) |
| 343 | != (SAttr & ObjCPropertyDecl::OBJC_PR_retain)) |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 344 | Diag(Property->getLocation(), diag::warn_property_attribute) |
Chris Lattner | 8ec03f5 | 2008-11-24 03:54:41 +0000 | [diff] [blame] | 345 | << Property->getDeclName() << "retain" << inheritedName; |
Fariborz Jahanian | b5e0224 | 2008-04-24 19:58:34 +0000 | [diff] [blame] | 346 | |
| 347 | if ((CAttr & ObjCPropertyDecl::OBJC_PR_nonatomic) |
| 348 | != (SAttr & ObjCPropertyDecl::OBJC_PR_nonatomic)) |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 349 | Diag(Property->getLocation(), diag::warn_property_attribute) |
Chris Lattner | 8ec03f5 | 2008-11-24 03:54:41 +0000 | [diff] [blame] | 350 | << Property->getDeclName() << "atomic" << inheritedName; |
Fariborz Jahanian | b5e0224 | 2008-04-24 19:58:34 +0000 | [diff] [blame] | 351 | if (Property->getSetterName() != SuperProperty->getSetterName()) |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 352 | Diag(Property->getLocation(), diag::warn_property_attribute) |
Chris Lattner | 8ec03f5 | 2008-11-24 03:54:41 +0000 | [diff] [blame] | 353 | << Property->getDeclName() << "setter" << inheritedName; |
Fariborz Jahanian | b5e0224 | 2008-04-24 19:58:34 +0000 | [diff] [blame] | 354 | if (Property->getGetterName() != SuperProperty->getGetterName()) |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 355 | Diag(Property->getLocation(), diag::warn_property_attribute) |
Chris Lattner | 8ec03f5 | 2008-11-24 03:54:41 +0000 | [diff] [blame] | 356 | << Property->getDeclName() << "getter" << inheritedName; |
Steve Naroff | 15edf0d | 2009-03-03 15:43:24 +0000 | [diff] [blame] | 357 | |
| 358 | QualType LHSType = |
| 359 | Context.getCanonicalType(SuperProperty->getType()); |
| 360 | QualType RHSType = |
| 361 | Context.getCanonicalType(Property->getType()); |
| 362 | |
| 363 | if (!Context.typesAreCompatible(LHSType, RHSType)) { |
| 364 | // FIXME: Incorporate this test with typesAreCompatible. |
| 365 | if (LHSType->isObjCQualifiedIdType() && RHSType->isObjCQualifiedIdType()) |
| 366 | if (ObjCQualifiedIdTypesAreCompatible(LHSType, RHSType, false)) |
| 367 | return; |
| 368 | Diag(Property->getLocation(), diag::warn_property_types_are_incompatible) |
| 369 | << Property->getType() << SuperProperty->getType() << inheritedName; |
| 370 | } |
Fariborz Jahanian | b5e0224 | 2008-04-24 19:58:34 +0000 | [diff] [blame] | 371 | } |
| 372 | |
| 373 | /// ComparePropertiesInBaseAndSuper - This routine compares property |
| 374 | /// declarations in base and its super class, if any, and issues |
| 375 | /// diagnostics in a variety of inconsistant situations. |
| 376 | /// |
Chris Lattner | 70f1954 | 2009-02-16 21:26:43 +0000 | [diff] [blame] | 377 | void Sema::ComparePropertiesInBaseAndSuper(ObjCInterfaceDecl *IDecl) { |
Fariborz Jahanian | b5e0224 | 2008-04-24 19:58:34 +0000 | [diff] [blame] | 378 | ObjCInterfaceDecl *SDecl = IDecl->getSuperClass(); |
| 379 | if (!SDecl) |
| 380 | return; |
Daniel Dunbar | b20ef3e | 2008-08-27 05:40:03 +0000 | [diff] [blame] | 381 | // FIXME: O(N^2) |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 382 | for (ObjCInterfaceDecl::prop_iterator S = SDecl->prop_begin(Context), |
| 383 | E = SDecl->prop_end(Context); S != E; ++S) { |
Fariborz Jahanian | 02edb98 | 2008-05-01 00:03:38 +0000 | [diff] [blame] | 384 | ObjCPropertyDecl *SuperPDecl = (*S); |
Fariborz Jahanian | b5e0224 | 2008-04-24 19:58:34 +0000 | [diff] [blame] | 385 | // Does property in super class has declaration in current class? |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 386 | for (ObjCInterfaceDecl::prop_iterator I = IDecl->prop_begin(Context), |
| 387 | E = IDecl->prop_end(Context); I != E; ++I) { |
Fariborz Jahanian | b5e0224 | 2008-04-24 19:58:34 +0000 | [diff] [blame] | 388 | ObjCPropertyDecl *PDecl = (*I); |
| 389 | if (SuperPDecl->getIdentifier() == PDecl->getIdentifier()) |
Douglas Gregor | 2e1cd42 | 2008-11-17 14:58:09 +0000 | [diff] [blame] | 390 | DiagnosePropertyMismatch(PDecl, SuperPDecl, |
Chris Lattner | 8ec03f5 | 2008-11-24 03:54:41 +0000 | [diff] [blame] | 391 | SDecl->getIdentifier()); |
Fariborz Jahanian | b5e0224 | 2008-04-24 19:58:34 +0000 | [diff] [blame] | 392 | } |
| 393 | } |
| 394 | } |
| 395 | |
Fariborz Jahanian | aebf0cb | 2008-05-02 19:17:30 +0000 | [diff] [blame] | 396 | /// MergeOneProtocolPropertiesIntoClass - This routine goes thru the list |
| 397 | /// of properties declared in a protocol and adds them to the list |
Fariborz Jahanian | 1ac2bc4 | 2008-12-06 23:03:39 +0000 | [diff] [blame] | 398 | /// of properties for current class/category if it is not there already. |
Fariborz Jahanian | aebf0cb | 2008-05-02 19:17:30 +0000 | [diff] [blame] | 399 | void |
Fariborz Jahanian | 1ac2bc4 | 2008-12-06 23:03:39 +0000 | [diff] [blame] | 400 | Sema::MergeOneProtocolPropertiesIntoClass(Decl *CDecl, |
Chris Lattner | 8ec03f5 | 2008-11-24 03:54:41 +0000 | [diff] [blame] | 401 | ObjCProtocolDecl *PDecl) { |
Fariborz Jahanian | 1ac2bc4 | 2008-12-06 23:03:39 +0000 | [diff] [blame] | 402 | ObjCInterfaceDecl *IDecl = dyn_cast_or_null<ObjCInterfaceDecl>(CDecl); |
| 403 | if (!IDecl) { |
| 404 | // Category |
| 405 | ObjCCategoryDecl *CatDecl = static_cast<ObjCCategoryDecl*>(CDecl); |
| 406 | assert (CatDecl && "MergeOneProtocolPropertiesIntoClass"); |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 407 | for (ObjCProtocolDecl::prop_iterator P = PDecl->prop_begin(Context), |
| 408 | E = PDecl->prop_end(Context); P != E; ++P) { |
Fariborz Jahanian | 1ac2bc4 | 2008-12-06 23:03:39 +0000 | [diff] [blame] | 409 | ObjCPropertyDecl *Pr = (*P); |
Steve Naroff | 09c4719 | 2009-01-09 15:36:25 +0000 | [diff] [blame] | 410 | ObjCCategoryDecl::prop_iterator CP, CE; |
Fariborz Jahanian | 1ac2bc4 | 2008-12-06 23:03:39 +0000 | [diff] [blame] | 411 | // Is this property already in category's list of properties? |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 412 | for (CP = CatDecl->prop_begin(Context), CE = CatDecl->prop_end(Context); |
Fariborz Jahanian | 1ac2bc4 | 2008-12-06 23:03:39 +0000 | [diff] [blame] | 413 | CP != CE; ++CP) |
| 414 | if ((*CP)->getIdentifier() == Pr->getIdentifier()) |
| 415 | break; |
Fariborz Jahanian | a66793e | 2009-01-09 21:04:52 +0000 | [diff] [blame] | 416 | if (CP != CE) |
Fariborz Jahanian | 1ac2bc4 | 2008-12-06 23:03:39 +0000 | [diff] [blame] | 417 | // Property protocol already exist in class. Diagnose any mismatch. |
| 418 | DiagnosePropertyMismatch((*CP), Pr, PDecl->getIdentifier()); |
| 419 | } |
Fariborz Jahanian | 1ac2bc4 | 2008-12-06 23:03:39 +0000 | [diff] [blame] | 420 | return; |
| 421 | } |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 422 | for (ObjCProtocolDecl::prop_iterator P = PDecl->prop_begin(Context), |
| 423 | E = PDecl->prop_end(Context); P != E; ++P) { |
Fariborz Jahanian | aebf0cb | 2008-05-02 19:17:30 +0000 | [diff] [blame] | 424 | ObjCPropertyDecl *Pr = (*P); |
Steve Naroff | 09c4719 | 2009-01-09 15:36:25 +0000 | [diff] [blame] | 425 | ObjCInterfaceDecl::prop_iterator CP, CE; |
Fariborz Jahanian | aebf0cb | 2008-05-02 19:17:30 +0000 | [diff] [blame] | 426 | // Is this property already in class's list of properties? |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 427 | for (CP = IDecl->prop_begin(Context), CE = IDecl->prop_end(Context); |
Fariborz Jahanian | aebf0cb | 2008-05-02 19:17:30 +0000 | [diff] [blame] | 428 | CP != CE; ++CP) |
| 429 | if ((*CP)->getIdentifier() == Pr->getIdentifier()) |
| 430 | break; |
Fariborz Jahanian | a66793e | 2009-01-09 21:04:52 +0000 | [diff] [blame] | 431 | if (CP != CE) |
Fariborz Jahanian | aebf0cb | 2008-05-02 19:17:30 +0000 | [diff] [blame] | 432 | // Property protocol already exist in class. Diagnose any mismatch. |
Chris Lattner | 8ec03f5 | 2008-11-24 03:54:41 +0000 | [diff] [blame] | 433 | DiagnosePropertyMismatch((*CP), Pr, PDecl->getIdentifier()); |
Fariborz Jahanian | aebf0cb | 2008-05-02 19:17:30 +0000 | [diff] [blame] | 434 | } |
Fariborz Jahanian | aebf0cb | 2008-05-02 19:17:30 +0000 | [diff] [blame] | 435 | } |
| 436 | |
| 437 | /// MergeProtocolPropertiesIntoClass - This routine merges properties |
| 438 | /// declared in 'MergeItsProtocols' objects (which can be a class or an |
Fariborz Jahanian | 1ac2bc4 | 2008-12-06 23:03:39 +0000 | [diff] [blame] | 439 | /// inherited protocol into the list of properties for class/category 'CDecl' |
Fariborz Jahanian | aebf0cb | 2008-05-02 19:17:30 +0000 | [diff] [blame] | 440 | /// |
Chris Lattner | 70f1954 | 2009-02-16 21:26:43 +0000 | [diff] [blame] | 441 | void Sema::MergeProtocolPropertiesIntoClass(Decl *CDecl, |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 442 | DeclPtrTy MergeItsProtocols) { |
| 443 | Decl *ClassDecl = MergeItsProtocols.getAs<Decl>(); |
Fariborz Jahanian | 1ac2bc4 | 2008-12-06 23:03:39 +0000 | [diff] [blame] | 444 | ObjCInterfaceDecl *IDecl = dyn_cast_or_null<ObjCInterfaceDecl>(CDecl); |
| 445 | |
| 446 | if (!IDecl) { |
| 447 | // Category |
| 448 | ObjCCategoryDecl *CatDecl = static_cast<ObjCCategoryDecl*>(CDecl); |
| 449 | assert (CatDecl && "MergeProtocolPropertiesIntoClass"); |
| 450 | if (ObjCCategoryDecl *MDecl = dyn_cast<ObjCCategoryDecl>(ClassDecl)) { |
| 451 | for (ObjCCategoryDecl::protocol_iterator P = MDecl->protocol_begin(), |
| 452 | E = MDecl->protocol_end(); P != E; ++P) |
| 453 | // Merge properties of category (*P) into IDECL's |
| 454 | MergeOneProtocolPropertiesIntoClass(CatDecl, *P); |
| 455 | |
| 456 | // Go thru the list of protocols for this category and recursively merge |
| 457 | // their properties into this class as well. |
| 458 | for (ObjCCategoryDecl::protocol_iterator P = CatDecl->protocol_begin(), |
| 459 | E = CatDecl->protocol_end(); P != E; ++P) |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 460 | MergeProtocolPropertiesIntoClass(CatDecl, DeclPtrTy::make(*P)); |
Fariborz Jahanian | 1ac2bc4 | 2008-12-06 23:03:39 +0000 | [diff] [blame] | 461 | } else { |
| 462 | ObjCProtocolDecl *MD = cast<ObjCProtocolDecl>(ClassDecl); |
| 463 | for (ObjCProtocolDecl::protocol_iterator P = MD->protocol_begin(), |
| 464 | E = MD->protocol_end(); P != E; ++P) |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 465 | MergeOneProtocolPropertiesIntoClass(CatDecl, *P); |
Fariborz Jahanian | 1ac2bc4 | 2008-12-06 23:03:39 +0000 | [diff] [blame] | 466 | } |
| 467 | return; |
| 468 | } |
| 469 | |
Chris Lattner | b752f28 | 2008-07-21 07:06:49 +0000 | [diff] [blame] | 470 | if (ObjCInterfaceDecl *MDecl = dyn_cast<ObjCInterfaceDecl>(ClassDecl)) { |
Fariborz Jahanian | aebf0cb | 2008-05-02 19:17:30 +0000 | [diff] [blame] | 471 | for (ObjCInterfaceDecl::protocol_iterator P = MDecl->protocol_begin(), |
| 472 | E = MDecl->protocol_end(); P != E; ++P) |
Fariborz Jahanian | aebf0cb | 2008-05-02 19:17:30 +0000 | [diff] [blame] | 473 | // Merge properties of class (*P) into IDECL's |
Chris Lattner | b752f28 | 2008-07-21 07:06:49 +0000 | [diff] [blame] | 474 | MergeOneProtocolPropertiesIntoClass(IDecl, *P); |
| 475 | |
Fariborz Jahanian | aebf0cb | 2008-05-02 19:17:30 +0000 | [diff] [blame] | 476 | // Go thru the list of protocols for this class and recursively merge |
| 477 | // their properties into this class as well. |
| 478 | for (ObjCInterfaceDecl::protocol_iterator P = IDecl->protocol_begin(), |
| 479 | E = IDecl->protocol_end(); P != E; ++P) |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 480 | MergeProtocolPropertiesIntoClass(IDecl, DeclPtrTy::make(*P)); |
Chris Lattner | b752f28 | 2008-07-21 07:06:49 +0000 | [diff] [blame] | 481 | } else { |
Argyrios Kyrtzidis | e8f0d30 | 2008-07-21 09:18:38 +0000 | [diff] [blame] | 482 | ObjCProtocolDecl *MD = cast<ObjCProtocolDecl>(ClassDecl); |
| 483 | for (ObjCProtocolDecl::protocol_iterator P = MD->protocol_begin(), |
| 484 | E = MD->protocol_end(); P != E; ++P) |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 485 | MergeOneProtocolPropertiesIntoClass(IDecl, *P); |
Chris Lattner | b752f28 | 2008-07-21 07:06:49 +0000 | [diff] [blame] | 486 | } |
Fariborz Jahanian | aebf0cb | 2008-05-02 19:17:30 +0000 | [diff] [blame] | 487 | } |
| 488 | |
Fariborz Jahanian | 78c39c7 | 2009-03-02 19:06:08 +0000 | [diff] [blame] | 489 | /// DiagnoseClassExtensionDupMethods - Check for duplicate declaration of |
Fariborz Jahanian | b7f95f5 | 2009-03-02 19:05:07 +0000 | [diff] [blame] | 490 | /// a class method in its extension. |
| 491 | /// |
| 492 | void Sema::DiagnoseClassExtensionDupMethods(ObjCCategoryDecl *CAT, |
| 493 | ObjCInterfaceDecl *ID) { |
| 494 | if (!ID) |
| 495 | return; // Possibly due to previous error |
| 496 | |
| 497 | llvm::DenseMap<Selector, const ObjCMethodDecl*> MethodMap; |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 498 | for (ObjCInterfaceDecl::method_iterator i = ID->meth_begin(Context), |
| 499 | e = ID->meth_end(Context); i != e; ++i) { |
Fariborz Jahanian | b7f95f5 | 2009-03-02 19:05:07 +0000 | [diff] [blame] | 500 | ObjCMethodDecl *MD = *i; |
| 501 | MethodMap[MD->getSelector()] = MD; |
| 502 | } |
| 503 | |
| 504 | if (MethodMap.empty()) |
| 505 | return; |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 506 | for (ObjCCategoryDecl::method_iterator i = CAT->meth_begin(Context), |
| 507 | e = CAT->meth_end(Context); i != e; ++i) { |
Fariborz Jahanian | b7f95f5 | 2009-03-02 19:05:07 +0000 | [diff] [blame] | 508 | ObjCMethodDecl *Method = *i; |
| 509 | const ObjCMethodDecl *&PrevMethod = MethodMap[Method->getSelector()]; |
| 510 | if (PrevMethod && !MatchTwoMethodDeclarations(Method, PrevMethod)) { |
| 511 | Diag(Method->getLocation(), diag::err_duplicate_method_decl) |
| 512 | << Method->getDeclName(); |
| 513 | Diag(PrevMethod->getLocation(), diag::note_previous_declaration); |
| 514 | } |
| 515 | } |
| 516 | } |
| 517 | |
Chris Lattner | 58fe03b | 2009-04-12 08:43:13 +0000 | [diff] [blame] | 518 | /// ActOnForwardProtocolDeclaration - Handle @protocol foo; |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 519 | Action::DeclPtrTy |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 520 | Sema::ActOnForwardProtocolDeclaration(SourceLocation AtProtocolLoc, |
Chris Lattner | 7caeabd | 2008-07-21 22:17:28 +0000 | [diff] [blame] | 521 | const IdentifierLocPair *IdentList, |
Fariborz Jahanian | bc1c877 | 2008-12-17 01:07:27 +0000 | [diff] [blame] | 522 | unsigned NumElts, |
| 523 | AttributeList *attrList) { |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 524 | llvm::SmallVector<ObjCProtocolDecl*, 32> Protocols; |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 525 | |
| 526 | for (unsigned i = 0; i != NumElts; ++i) { |
Chris Lattner | 7caeabd | 2008-07-21 22:17:28 +0000 | [diff] [blame] | 527 | IdentifierInfo *Ident = IdentList[i].first; |
Douglas Gregor | 6e378de | 2009-04-23 23:18:26 +0000 | [diff] [blame] | 528 | ObjCProtocolDecl *PDecl = LookupProtocol(Ident); |
Douglas Gregor | d043410 | 2009-01-09 00:49:46 +0000 | [diff] [blame] | 529 | if (PDecl == 0) { // Not already seen? |
| 530 | PDecl = ObjCProtocolDecl::Create(Context, CurContext, |
| 531 | IdentList[i].second, Ident); |
Douglas Gregor | 6e378de | 2009-04-23 23:18:26 +0000 | [diff] [blame] | 532 | PushOnScopeChains(PDecl, TUScope); |
Douglas Gregor | d043410 | 2009-01-09 00:49:46 +0000 | [diff] [blame] | 533 | } |
Fariborz Jahanian | bc1c877 | 2008-12-17 01:07:27 +0000 | [diff] [blame] | 534 | if (attrList) |
| 535 | ProcessDeclAttributeList(PDecl, attrList); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 536 | Protocols.push_back(PDecl); |
| 537 | } |
Anders Carlsson | 1528145 | 2008-11-04 16:57:32 +0000 | [diff] [blame] | 538 | |
| 539 | ObjCForwardProtocolDecl *PDecl = |
Douglas Gregor | d043410 | 2009-01-09 00:49:46 +0000 | [diff] [blame] | 540 | ObjCForwardProtocolDecl::Create(Context, CurContext, AtProtocolLoc, |
Anders Carlsson | 1528145 | 2008-11-04 16:57:32 +0000 | [diff] [blame] | 541 | &Protocols[0], Protocols.size()); |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 542 | CurContext->addDecl(Context, PDecl); |
Anders Carlsson | 1528145 | 2008-11-04 16:57:32 +0000 | [diff] [blame] | 543 | CheckObjCDeclScope(PDecl); |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 544 | return DeclPtrTy::make(PDecl); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 545 | } |
| 546 | |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 547 | Sema::DeclPtrTy Sema:: |
Chris Lattner | 7caeabd | 2008-07-21 22:17:28 +0000 | [diff] [blame] | 548 | ActOnStartCategoryInterface(SourceLocation AtInterfaceLoc, |
| 549 | IdentifierInfo *ClassName, SourceLocation ClassLoc, |
| 550 | IdentifierInfo *CategoryName, |
| 551 | SourceLocation CategoryLoc, |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 552 | const DeclPtrTy *ProtoRefs, |
Chris Lattner | 7caeabd | 2008-07-21 22:17:28 +0000 | [diff] [blame] | 553 | unsigned NumProtoRefs, |
| 554 | SourceLocation EndProtoLoc) { |
Chris Lattner | 61f9d41 | 2008-03-16 20:34:23 +0000 | [diff] [blame] | 555 | ObjCCategoryDecl *CDecl = |
Douglas Gregor | d043410 | 2009-01-09 00:49:46 +0000 | [diff] [blame] | 556 | ObjCCategoryDecl::Create(Context, CurContext, AtInterfaceLoc, CategoryName); |
| 557 | // FIXME: PushOnScopeChains? |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 558 | CurContext->addDecl(Context, CDecl); |
Chris Lattner | 70f1954 | 2009-02-16 21:26:43 +0000 | [diff] [blame] | 559 | |
| 560 | ObjCInterfaceDecl *IDecl = getObjCInterfaceDecl(ClassName); |
Fariborz Jahanian | 7c453b3 | 2008-01-17 20:33:24 +0000 | [diff] [blame] | 561 | /// Check that class of this category is already completely declared. |
Chris Lattner | 70f1954 | 2009-02-16 21:26:43 +0000 | [diff] [blame] | 562 | if (!IDecl || IDecl->isForwardDecl()) { |
| 563 | CDecl->setInvalidDecl(); |
Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 564 | Diag(ClassLoc, diag::err_undef_interface) << ClassName; |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 565 | return DeclPtrTy::make(CDecl); |
Fariborz Jahanian | 7c453b3 | 2008-01-17 20:33:24 +0000 | [diff] [blame] | 566 | } |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 567 | |
Chris Lattner | 70f1954 | 2009-02-16 21:26:43 +0000 | [diff] [blame] | 568 | CDecl->setClassInterface(IDecl); |
Chris Lattner | 16b34b4 | 2009-02-16 21:30:01 +0000 | [diff] [blame] | 569 | |
| 570 | // If the interface is deprecated, warn about it. |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 571 | (void)DiagnoseUseOfDecl(IDecl, ClassLoc); |
Chris Lattner | 70f1954 | 2009-02-16 21:26:43 +0000 | [diff] [blame] | 572 | |
| 573 | /// Check for duplicate interface declaration for this category |
| 574 | ObjCCategoryDecl *CDeclChain; |
| 575 | for (CDeclChain = IDecl->getCategoryList(); CDeclChain; |
| 576 | CDeclChain = CDeclChain->getNextClassCategory()) { |
| 577 | if (CategoryName && CDeclChain->getIdentifier() == CategoryName) { |
| 578 | Diag(CategoryLoc, diag::warn_dup_category_def) |
| 579 | << ClassName << CategoryName; |
| 580 | Diag(CDeclChain->getLocation(), diag::note_previous_definition); |
| 581 | break; |
| 582 | } |
| 583 | } |
| 584 | if (!CDeclChain) |
| 585 | CDecl->insertNextClassCategory(); |
| 586 | |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 587 | if (NumProtoRefs) { |
Chris Lattner | 38af2de | 2009-02-20 21:35:13 +0000 | [diff] [blame] | 588 | CDecl->setProtocolList((ObjCProtocolDecl**)ProtoRefs, NumProtoRefs,Context); |
Chris Lattner | 6bd6d0b | 2008-07-26 04:07:02 +0000 | [diff] [blame] | 589 | CDecl->setLocEnd(EndProtoLoc); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 590 | } |
Anders Carlsson | 1528145 | 2008-11-04 16:57:32 +0000 | [diff] [blame] | 591 | |
| 592 | CheckObjCDeclScope(CDecl); |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 593 | return DeclPtrTy::make(CDecl); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 594 | } |
| 595 | |
| 596 | /// ActOnStartCategoryImplementation - Perform semantic checks on the |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 597 | /// category implementation declaration and build an ObjCCategoryImplDecl |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 598 | /// object. |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 599 | Sema::DeclPtrTy Sema::ActOnStartCategoryImplementation( |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 600 | SourceLocation AtCatImplLoc, |
| 601 | IdentifierInfo *ClassName, SourceLocation ClassLoc, |
| 602 | IdentifierInfo *CatName, SourceLocation CatLoc) { |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 603 | ObjCInterfaceDecl *IDecl = getObjCInterfaceDecl(ClassName); |
Chris Lattner | 75c9cae | 2008-03-16 20:53:07 +0000 | [diff] [blame] | 604 | ObjCCategoryImplDecl *CDecl = |
Douglas Gregor | d043410 | 2009-01-09 00:49:46 +0000 | [diff] [blame] | 605 | ObjCCategoryImplDecl::Create(Context, CurContext, AtCatImplLoc, CatName, |
| 606 | IDecl); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 607 | /// Check that class of this category is already completely declared. |
| 608 | if (!IDecl || IDecl->isForwardDecl()) |
Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 609 | Diag(ClassLoc, diag::err_undef_interface) << ClassName; |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 610 | |
Douglas Gregor | d043410 | 2009-01-09 00:49:46 +0000 | [diff] [blame] | 611 | // FIXME: PushOnScopeChains? |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 612 | CurContext->addDecl(Context, CDecl); |
Douglas Gregor | d043410 | 2009-01-09 00:49:46 +0000 | [diff] [blame] | 613 | |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 614 | /// TODO: Check that CatName, category name, is not used in another |
| 615 | // implementation. |
Steve Naroff | e84a864 | 2008-09-28 14:55:53 +0000 | [diff] [blame] | 616 | ObjCCategoryImpls.push_back(CDecl); |
Anders Carlsson | 1528145 | 2008-11-04 16:57:32 +0000 | [diff] [blame] | 617 | |
| 618 | CheckObjCDeclScope(CDecl); |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 619 | return DeclPtrTy::make(CDecl); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 620 | } |
| 621 | |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 622 | Sema::DeclPtrTy Sema::ActOnStartClassImplementation( |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 623 | SourceLocation AtClassImplLoc, |
| 624 | IdentifierInfo *ClassName, SourceLocation ClassLoc, |
| 625 | IdentifierInfo *SuperClassname, |
| 626 | SourceLocation SuperClassLoc) { |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 627 | ObjCInterfaceDecl* IDecl = 0; |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 628 | // Check for another declaration kind with the same name. |
Douglas Gregor | 47b9a1c | 2009-02-04 17:27:36 +0000 | [diff] [blame] | 629 | NamedDecl *PrevDecl = LookupName(TUScope, ClassName, LookupOrdinaryName); |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 630 | if (PrevDecl && !isa<ObjCInterfaceDecl>(PrevDecl)) { |
Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 631 | Diag(ClassLoc, diag::err_redefinition_different_kind) << ClassName; |
Chris Lattner | 5f4a682 | 2008-11-23 23:12:31 +0000 | [diff] [blame] | 632 | Diag(PrevDecl->getLocation(), diag::note_previous_definition); |
Chris Lattner | 1829a6d | 2009-02-23 22:00:08 +0000 | [diff] [blame] | 633 | } else { |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 634 | // Is there an interface declaration of this class; if not, warn! |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 635 | IDecl = dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl); |
Fariborz Jahanian | 77a6be4 | 2009-04-23 21:49:04 +0000 | [diff] [blame] | 636 | if (!IDecl || IDecl->isForwardDecl()) { |
Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 637 | Diag(ClassLoc, diag::warn_undef_interface) << ClassName; |
Fariborz Jahanian | 77a6be4 | 2009-04-23 21:49:04 +0000 | [diff] [blame] | 638 | IDecl = 0; |
| 639 | } |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 640 | } |
| 641 | |
| 642 | // Check that super class name is valid class name |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 643 | ObjCInterfaceDecl* SDecl = 0; |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 644 | if (SuperClassname) { |
| 645 | // Check if a different kind of symbol declared in this scope. |
Douglas Gregor | 4c921ae | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 646 | PrevDecl = LookupName(TUScope, SuperClassname, LookupOrdinaryName); |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 647 | if (PrevDecl && !isa<ObjCInterfaceDecl>(PrevDecl)) { |
Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 648 | Diag(SuperClassLoc, diag::err_redefinition_different_kind) |
| 649 | << SuperClassname; |
Chris Lattner | 5f4a682 | 2008-11-23 23:12:31 +0000 | [diff] [blame] | 650 | Diag(PrevDecl->getLocation(), diag::note_previous_definition); |
Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 651 | } else { |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 652 | SDecl = dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 653 | if (!SDecl) |
Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 654 | Diag(SuperClassLoc, diag::err_undef_superclass) |
| 655 | << SuperClassname << ClassName; |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 656 | else if (IDecl && IDecl->getSuperClass() != SDecl) { |
| 657 | // This implementation and its interface do not have the same |
| 658 | // super class. |
Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 659 | Diag(SuperClassLoc, diag::err_conflicting_super_class) |
Chris Lattner | 08631c5 | 2008-11-23 21:45:46 +0000 | [diff] [blame] | 660 | << SDecl->getDeclName(); |
Chris Lattner | 5f4a682 | 2008-11-23 23:12:31 +0000 | [diff] [blame] | 661 | Diag(SDecl->getLocation(), diag::note_previous_definition); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 662 | } |
| 663 | } |
| 664 | } |
| 665 | |
| 666 | if (!IDecl) { |
| 667 | // Legacy case of @implementation with no corresponding @interface. |
| 668 | // Build, chain & install the interface decl into the identifier. |
Daniel Dunbar | f641492 | 2008-08-20 18:02:42 +0000 | [diff] [blame] | 669 | |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 670 | // FIXME: Do we support attributes on the @implementation? If so we should |
| 671 | // copy them over. |
Douglas Gregor | d043410 | 2009-01-09 00:49:46 +0000 | [diff] [blame] | 672 | IDecl = ObjCInterfaceDecl::Create(Context, CurContext, AtClassImplLoc, |
| 673 | ClassName, ClassLoc, false, true); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 674 | IDecl->setSuperClass(SDecl); |
| 675 | IDecl->setLocEnd(ClassLoc); |
Douglas Gregor | 8b9fb30 | 2009-04-24 00:16:12 +0000 | [diff] [blame] | 676 | |
| 677 | PushOnScopeChains(IDecl, TUScope); |
Daniel Dunbar | 24c8991 | 2009-04-21 21:41:56 +0000 | [diff] [blame] | 678 | } else { |
| 679 | // Mark the interface as being completed, even if it was just as |
| 680 | // @class ....; |
| 681 | // declaration; the user cannot reopen it. |
| 682 | IDecl->setForwardDecl(false); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 683 | } |
| 684 | |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 685 | ObjCImplementationDecl* IMPDecl = |
Douglas Gregor | d043410 | 2009-01-09 00:49:46 +0000 | [diff] [blame] | 686 | ObjCImplementationDecl::Create(Context, CurContext, AtClassImplLoc, |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 687 | IDecl, SDecl); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 688 | |
Anders Carlsson | 1528145 | 2008-11-04 16:57:32 +0000 | [diff] [blame] | 689 | if (CheckObjCDeclScope(IMPDecl)) |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 690 | return DeclPtrTy::make(IMPDecl); |
Anders Carlsson | 1528145 | 2008-11-04 16:57:32 +0000 | [diff] [blame] | 691 | |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 692 | // Check that there is no duplicate implementation of this class. |
Douglas Gregor | 8fc463a | 2009-04-24 00:11:27 +0000 | [diff] [blame] | 693 | if (LookupObjCImplementation(ClassName)) |
Chris Lattner | 75c9cae | 2008-03-16 20:53:07 +0000 | [diff] [blame] | 694 | // FIXME: Don't leak everything! |
Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 695 | Diag(ClassLoc, diag::err_dup_implementation_class) << ClassName; |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 696 | else // add it to the list. |
Douglas Gregor | 8fc463a | 2009-04-24 00:11:27 +0000 | [diff] [blame] | 697 | PushOnScopeChains(IMPDecl, TUScope); |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 698 | return DeclPtrTy::make(IMPDecl); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 699 | } |
| 700 | |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 701 | void Sema::CheckImplementationIvars(ObjCImplementationDecl *ImpDecl, |
| 702 | ObjCIvarDecl **ivars, unsigned numIvars, |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 703 | SourceLocation RBrace) { |
| 704 | assert(ImpDecl && "missing implementation decl"); |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 705 | ObjCInterfaceDecl* IDecl = ImpDecl->getClassInterface(); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 706 | if (!IDecl) |
| 707 | return; |
| 708 | /// Check case of non-existing @interface decl. |
| 709 | /// (legacy objective-c @implementation decl without an @interface decl). |
| 710 | /// Add implementations's ivar to the synthesize class's ivar list. |
Steve Naroff | 33feeb0 | 2009-04-20 20:09:33 +0000 | [diff] [blame] | 711 | if (IDecl->isImplicitInterfaceDecl()) { |
Chris Lattner | 38af2de | 2009-02-20 21:35:13 +0000 | [diff] [blame] | 712 | IDecl->setIVarList(ivars, numIvars, Context); |
| 713 | IDecl->setLocEnd(RBrace); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 714 | return; |
| 715 | } |
| 716 | // If implementation has empty ivar list, just return. |
| 717 | if (numIvars == 0) |
| 718 | return; |
| 719 | |
| 720 | assert(ivars && "missing @implementation ivars"); |
| 721 | |
| 722 | // Check interface's Ivar list against those in the implementation. |
| 723 | // names and types must match. |
| 724 | // |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 725 | unsigned j = 0; |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 726 | ObjCInterfaceDecl::ivar_iterator |
Chris Lattner | 4c52509 | 2007-12-12 17:58:05 +0000 | [diff] [blame] | 727 | IVI = IDecl->ivar_begin(), IVE = IDecl->ivar_end(); |
| 728 | for (; numIvars > 0 && IVI != IVE; ++IVI) { |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 729 | ObjCIvarDecl* ImplIvar = ivars[j++]; |
| 730 | ObjCIvarDecl* ClsIvar = *IVI; |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 731 | assert (ImplIvar && "missing implementation ivar"); |
| 732 | assert (ClsIvar && "missing class ivar"); |
Steve Naroff | ca33129 | 2009-03-03 14:49:36 +0000 | [diff] [blame] | 733 | |
| 734 | // First, make sure the types match. |
Chris Lattner | 1b63eef | 2008-07-27 00:05:05 +0000 | [diff] [blame] | 735 | if (Context.getCanonicalType(ImplIvar->getType()) != |
| 736 | Context.getCanonicalType(ClsIvar->getType())) { |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 737 | Diag(ImplIvar->getLocation(), diag::err_conflicting_ivar_type) |
Chris Lattner | 08631c5 | 2008-11-23 21:45:46 +0000 | [diff] [blame] | 738 | << ImplIvar->getIdentifier() |
| 739 | << ImplIvar->getType() << ClsIvar->getType(); |
Chris Lattner | 5f4a682 | 2008-11-23 23:12:31 +0000 | [diff] [blame] | 740 | Diag(ClsIvar->getLocation(), diag::note_previous_definition); |
Steve Naroff | ca33129 | 2009-03-03 14:49:36 +0000 | [diff] [blame] | 741 | } else if (ImplIvar->isBitField() && ClsIvar->isBitField()) { |
| 742 | Expr *ImplBitWidth = ImplIvar->getBitWidth(); |
| 743 | Expr *ClsBitWidth = ClsIvar->getBitWidth(); |
Eli Friedman | 9a901bb | 2009-04-26 19:19:15 +0000 | [diff] [blame] | 744 | if (ImplBitWidth->EvaluateAsInt(Context).getZExtValue() != |
| 745 | ClsBitWidth->EvaluateAsInt(Context).getZExtValue()) { |
Steve Naroff | ca33129 | 2009-03-03 14:49:36 +0000 | [diff] [blame] | 746 | Diag(ImplBitWidth->getLocStart(), diag::err_conflicting_ivar_bitwidth) |
| 747 | << ImplIvar->getIdentifier(); |
| 748 | Diag(ClsBitWidth->getLocStart(), diag::note_previous_definition); |
| 749 | } |
| 750 | } |
| 751 | // Make sure the names are identical. |
| 752 | if (ImplIvar->getIdentifier() != ClsIvar->getIdentifier()) { |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 753 | Diag(ImplIvar->getLocation(), diag::err_conflicting_ivar_name) |
Chris Lattner | 08631c5 | 2008-11-23 21:45:46 +0000 | [diff] [blame] | 754 | << ImplIvar->getIdentifier() << ClsIvar->getIdentifier(); |
Chris Lattner | 5f4a682 | 2008-11-23 23:12:31 +0000 | [diff] [blame] | 755 | Diag(ClsIvar->getLocation(), diag::note_previous_definition); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 756 | } |
| 757 | --numIvars; |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 758 | } |
Chris Lattner | 609e4c7 | 2007-12-12 18:11:49 +0000 | [diff] [blame] | 759 | |
| 760 | if (numIvars > 0) |
Chris Lattner | 0e39105 | 2007-12-12 18:19:52 +0000 | [diff] [blame] | 761 | Diag(ivars[j]->getLocation(), diag::err_inconsistant_ivar_count); |
Chris Lattner | 609e4c7 | 2007-12-12 18:11:49 +0000 | [diff] [blame] | 762 | else if (IVI != IVE) |
Chris Lattner | 0e39105 | 2007-12-12 18:19:52 +0000 | [diff] [blame] | 763 | Diag((*IVI)->getLocation(), diag::err_inconsistant_ivar_count); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 764 | } |
| 765 | |
Steve Naroff | 3c2eb66 | 2008-02-10 21:38:56 +0000 | [diff] [blame] | 766 | void Sema::WarnUndefinedMethod(SourceLocation ImpLoc, ObjCMethodDecl *method, |
| 767 | bool &IncompleteImpl) { |
| 768 | if (!IncompleteImpl) { |
| 769 | Diag(ImpLoc, diag::warn_incomplete_impl); |
| 770 | IncompleteImpl = true; |
| 771 | } |
Chris Lattner | 08631c5 | 2008-11-23 21:45:46 +0000 | [diff] [blame] | 772 | Diag(ImpLoc, diag::warn_undef_method_impl) << method->getDeclName(); |
Steve Naroff | 3c2eb66 | 2008-02-10 21:38:56 +0000 | [diff] [blame] | 773 | } |
| 774 | |
Fariborz Jahanian | 8daab97 | 2008-12-05 18:18:52 +0000 | [diff] [blame] | 775 | void Sema::WarnConflictingTypedMethods(ObjCMethodDecl *ImpMethodDecl, |
| 776 | ObjCMethodDecl *IntfMethodDecl) { |
Chris Lattner | 5272b7f | 2009-04-11 18:01:59 +0000 | [diff] [blame] | 777 | if (!Context.typesAreCompatible(IntfMethodDecl->getResultType(), |
Fariborz Jahanian | 2574a68 | 2009-05-14 23:52:54 +0000 | [diff] [blame] | 778 | ImpMethodDecl->getResultType()) && |
| 779 | !QualifiedIdConformsQualifiedId(IntfMethodDecl->getResultType(), |
| 780 | ImpMethodDecl->getResultType())) { |
Chris Lattner | 3aff919 | 2009-04-11 19:58:42 +0000 | [diff] [blame] | 781 | Diag(ImpMethodDecl->getLocation(), diag::warn_conflicting_ret_types) |
| 782 | << ImpMethodDecl->getDeclName() << IntfMethodDecl->getResultType() |
| 783 | << ImpMethodDecl->getResultType(); |
Fariborz Jahanian | 8daab97 | 2008-12-05 18:18:52 +0000 | [diff] [blame] | 784 | Diag(IntfMethodDecl->getLocation(), diag::note_previous_definition); |
| 785 | } |
Chris Lattner | 3aff919 | 2009-04-11 19:58:42 +0000 | [diff] [blame] | 786 | |
| 787 | for (ObjCMethodDecl::param_iterator IM = ImpMethodDecl->param_begin(), |
| 788 | IF = IntfMethodDecl->param_begin(), EM = ImpMethodDecl->param_end(); |
| 789 | IM != EM; ++IM, ++IF) { |
Fariborz Jahanian | 2574a68 | 2009-05-14 23:52:54 +0000 | [diff] [blame] | 790 | if (Context.typesAreCompatible((*IF)->getType(), (*IM)->getType()) || |
| 791 | QualifiedIdConformsQualifiedId((*IF)->getType(), (*IM)->getType())) |
Chris Lattner | 3aff919 | 2009-04-11 19:58:42 +0000 | [diff] [blame] | 792 | continue; |
| 793 | |
| 794 | Diag((*IM)->getLocation(), diag::warn_conflicting_param_types) |
| 795 | << ImpMethodDecl->getDeclName() << (*IF)->getType() |
| 796 | << (*IM)->getType(); |
Chris Lattner | d1e0f5a | 2009-04-11 20:14:49 +0000 | [diff] [blame] | 797 | Diag((*IF)->getLocation(), diag::note_previous_definition); |
Chris Lattner | 3aff919 | 2009-04-11 19:58:42 +0000 | [diff] [blame] | 798 | } |
Fariborz Jahanian | 8daab97 | 2008-12-05 18:18:52 +0000 | [diff] [blame] | 799 | } |
| 800 | |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 801 | /// isPropertyReadonly - Return true if property is readonly, by searching |
| 802 | /// for the property in the class and in its categories and implementations |
| 803 | /// |
| 804 | bool Sema::isPropertyReadonly(ObjCPropertyDecl *PDecl, |
Steve Naroff | 22dc0b0 | 2009-02-26 19:11:32 +0000 | [diff] [blame] | 805 | ObjCInterfaceDecl *IDecl) { |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 806 | // by far the most common case. |
| 807 | if (!PDecl->isReadOnly()) |
| 808 | return false; |
| 809 | // Even if property is ready only, if interface has a user defined setter, |
| 810 | // it is not considered read only. |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 811 | if (IDecl->getInstanceMethod(Context, PDecl->getSetterName())) |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 812 | return false; |
| 813 | |
| 814 | // Main class has the property as 'readonly'. Must search |
| 815 | // through the category list to see if the property's |
| 816 | // attribute has been over-ridden to 'readwrite'. |
| 817 | for (ObjCCategoryDecl *Category = IDecl->getCategoryList(); |
| 818 | Category; Category = Category->getNextClassCategory()) { |
| 819 | // Even if property is ready only, if a category has a user defined setter, |
| 820 | // it is not considered read only. |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 821 | if (Category->getInstanceMethod(Context, PDecl->getSetterName())) |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 822 | return false; |
| 823 | ObjCPropertyDecl *P = |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 824 | Category->FindPropertyDeclaration(Context, PDecl->getIdentifier()); |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 825 | if (P && !P->isReadOnly()) |
| 826 | return false; |
| 827 | } |
| 828 | |
| 829 | // Also, check for definition of a setter method in the implementation if |
| 830 | // all else failed. |
| 831 | if (ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(CurContext)) { |
| 832 | if (ObjCImplementationDecl *IMD = |
| 833 | dyn_cast<ObjCImplementationDecl>(OMD->getDeclContext())) { |
Douglas Gregor | 653f1b1 | 2009-04-23 01:02:12 +0000 | [diff] [blame] | 834 | if (IMD->getInstanceMethod(Context, PDecl->getSetterName())) |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 835 | return false; |
| 836 | } |
| 837 | else if (ObjCCategoryImplDecl *CIMD = |
| 838 | dyn_cast<ObjCCategoryImplDecl>(OMD->getDeclContext())) { |
Douglas Gregor | 653f1b1 | 2009-04-23 01:02:12 +0000 | [diff] [blame] | 839 | if (CIMD->getInstanceMethod(Context, PDecl->getSetterName())) |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 840 | return false; |
| 841 | } |
| 842 | } |
Steve Naroff | 22dc0b0 | 2009-02-26 19:11:32 +0000 | [diff] [blame] | 843 | // Lastly, look through the implementation (if one is in scope). |
Douglas Gregor | 8fc463a | 2009-04-24 00:11:27 +0000 | [diff] [blame] | 844 | if (ObjCImplementationDecl *ImpDecl |
| 845 | = LookupObjCImplementation(IDecl->getIdentifier())) |
Douglas Gregor | 653f1b1 | 2009-04-23 01:02:12 +0000 | [diff] [blame] | 846 | if (ImpDecl->getInstanceMethod(Context, PDecl->getSetterName())) |
Steve Naroff | 22dc0b0 | 2009-02-26 19:11:32 +0000 | [diff] [blame] | 847 | return false; |
Fariborz Jahanian | 50efe04 | 2009-04-06 16:59:10 +0000 | [diff] [blame] | 848 | // If all fails, look at the super class. |
| 849 | if (ObjCInterfaceDecl *SIDecl = IDecl->getSuperClass()) |
| 850 | return isPropertyReadonly(PDecl, SIDecl); |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 851 | return true; |
| 852 | } |
| 853 | |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 854 | /// FIXME: Type hierarchies in Objective-C can be deep. We could most likely |
| 855 | /// improve the efficiency of selector lookups and type checking by associating |
| 856 | /// with each protocol / interface / category the flattened instance tables. If |
| 857 | /// we used an immutable set to keep the table then it wouldn't add significant |
| 858 | /// memory cost and it would be handy for lookups. |
Daniel Dunbar | b20ef3e | 2008-08-27 05:40:03 +0000 | [diff] [blame] | 859 | |
Steve Naroff | efe7f36 | 2008-02-08 22:06:17 +0000 | [diff] [blame] | 860 | /// CheckProtocolMethodDefs - This routine checks unimplemented methods |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 861 | /// Declared in protocol, and those referenced by it. |
Steve Naroff | efe7f36 | 2008-02-08 22:06:17 +0000 | [diff] [blame] | 862 | void Sema::CheckProtocolMethodDefs(SourceLocation ImpLoc, |
| 863 | ObjCProtocolDecl *PDecl, |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 864 | bool& IncompleteImpl, |
Steve Naroff | efe7f36 | 2008-02-08 22:06:17 +0000 | [diff] [blame] | 865 | const llvm::DenseSet<Selector> &InsMap, |
Daniel Dunbar | 7ad1b1f | 2008-09-04 20:01:15 +0000 | [diff] [blame] | 866 | const llvm::DenseSet<Selector> &ClsMap, |
| 867 | ObjCInterfaceDecl *IDecl) { |
| 868 | ObjCInterfaceDecl *Super = IDecl->getSuperClass(); |
Fariborz Jahanian | cd18762 | 2009-05-22 17:12:32 +0000 | [diff] [blame] | 869 | ObjCInterfaceDecl *NSIDecl = 0; |
| 870 | if (getLangOptions().NeXTRuntime) { |
| 871 | // check to see if class implements forwardInvocation method and objects |
| 872 | // of this class are derived from 'NSProxy' so that to forward requests |
| 873 | // from one object to another. |
| 874 | // Under such conditions, which means that every method possible is |
| 875 | // implemented in the class, we should not issue "Method definition not |
| 876 | // found" warnings. |
| 877 | // FIXME: Use a general GetUnarySelector method for this. |
| 878 | IdentifierInfo* II = &Context.Idents.get("forwardInvocation"); |
| 879 | Selector fISelector = Context.Selectors.getSelector(1, &II); |
| 880 | if (InsMap.count(fISelector)) |
| 881 | // Is IDecl derived from 'NSProxy'? If so, no instance methods |
| 882 | // need be implemented in the implementation. |
| 883 | NSIDecl = IDecl->lookupInheritedClass(&Context.Idents.get("NSProxy")); |
| 884 | } |
| 885 | |
Daniel Dunbar | 7ad1b1f | 2008-09-04 20:01:15 +0000 | [diff] [blame] | 886 | // If a method lookup fails locally we still need to look and see if |
| 887 | // the method was implemented by a base class or an inherited |
| 888 | // protocol. This lookup is slow, but occurs rarely in correct code |
| 889 | // and otherwise would terminate in a warning. |
| 890 | |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 891 | // check unimplemented instance methods. |
Fariborz Jahanian | cd18762 | 2009-05-22 17:12:32 +0000 | [diff] [blame] | 892 | if (!NSIDecl) |
| 893 | for (ObjCProtocolDecl::instmeth_iterator I = PDecl->instmeth_begin(Context), |
| 894 | E = PDecl->instmeth_end(Context); I != E; ++I) { |
| 895 | ObjCMethodDecl *method = *I; |
| 896 | if (method->getImplementationControl() != ObjCMethodDecl::Optional && |
| 897 | !method->isSynthesized() && !InsMap.count(method->getSelector()) && |
| 898 | (!Super || |
| 899 | !Super->lookupInstanceMethod(Context, method->getSelector()))) { |
| 900 | // Ugly, but necessary. Method declared in protcol might have |
| 901 | // have been synthesized due to a property declared in the class which |
| 902 | // uses the protocol. |
| 903 | ObjCMethodDecl *MethodInClass = |
| 904 | IDecl->lookupInstanceMethod(Context, method->getSelector()); |
| 905 | if (!MethodInClass || !MethodInClass->isSynthesized()) |
| 906 | WarnUndefinedMethod(ImpLoc, method, IncompleteImpl); |
| 907 | } |
| 908 | } |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 909 | // check unimplemented class methods |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 910 | for (ObjCProtocolDecl::classmeth_iterator |
| 911 | I = PDecl->classmeth_begin(Context), |
| 912 | E = PDecl->classmeth_end(Context); |
| 913 | I != E; ++I) { |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 914 | ObjCMethodDecl *method = *I; |
Daniel Dunbar | 7ad1b1f | 2008-09-04 20:01:15 +0000 | [diff] [blame] | 915 | if (method->getImplementationControl() != ObjCMethodDecl::Optional && |
| 916 | !ClsMap.count(method->getSelector()) && |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 917 | (!Super || !Super->lookupClassMethod(Context, method->getSelector()))) |
Steve Naroff | 3c2eb66 | 2008-02-10 21:38:56 +0000 | [diff] [blame] | 918 | WarnUndefinedMethod(ImpLoc, method, IncompleteImpl); |
Steve Naroff | 58dbdeb | 2007-12-14 23:37:57 +0000 | [diff] [blame] | 919 | } |
Chris Lattner | 780f329 | 2008-07-21 21:32:27 +0000 | [diff] [blame] | 920 | // Check on this protocols's referenced protocols, recursively. |
| 921 | for (ObjCProtocolDecl::protocol_iterator PI = PDecl->protocol_begin(), |
| 922 | E = PDecl->protocol_end(); PI != E; ++PI) |
Daniel Dunbar | 7ad1b1f | 2008-09-04 20:01:15 +0000 | [diff] [blame] | 923 | CheckProtocolMethodDefs(ImpLoc, *PI, IncompleteImpl, InsMap, ClsMap, IDecl); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 924 | } |
| 925 | |
Fariborz Jahanian | b33f3ad | 2009-05-01 20:07:12 +0000 | [diff] [blame] | 926 | /// MatchAllMethodDeclarations - Check methods declaraed in interface or |
| 927 | /// or protocol against those declared in their implementations. |
| 928 | /// |
| 929 | void Sema::MatchAllMethodDeclarations(const llvm::DenseSet<Selector> &InsMap, |
| 930 | const llvm::DenseSet<Selector> &ClsMap, |
| 931 | llvm::DenseSet<Selector> &InsMapSeen, |
| 932 | llvm::DenseSet<Selector> &ClsMapSeen, |
| 933 | ObjCImplDecl* IMPDecl, |
| 934 | ObjCContainerDecl* CDecl, |
| 935 | bool &IncompleteImpl, |
| 936 | bool ImmediateClass) |
| 937 | { |
| 938 | // Check and see if instance methods in class interface have been |
| 939 | // implemented in the implementation class. If so, their types match. |
| 940 | for (ObjCInterfaceDecl::instmeth_iterator I = CDecl->instmeth_begin(Context), |
| 941 | E = CDecl->instmeth_end(Context); I != E; ++I) { |
| 942 | if (InsMapSeen.count((*I)->getSelector())) |
| 943 | continue; |
| 944 | InsMapSeen.insert((*I)->getSelector()); |
| 945 | if (!(*I)->isSynthesized() && |
| 946 | !InsMap.count((*I)->getSelector())) { |
| 947 | if (ImmediateClass) |
| 948 | WarnUndefinedMethod(IMPDecl->getLocation(), *I, IncompleteImpl); |
| 949 | continue; |
| 950 | } |
| 951 | else { |
| 952 | ObjCMethodDecl *ImpMethodDecl = |
| 953 | IMPDecl->getInstanceMethod(Context, (*I)->getSelector()); |
| 954 | ObjCMethodDecl *IntfMethodDecl = |
| 955 | CDecl->getInstanceMethod(Context, (*I)->getSelector()); |
| 956 | assert(IntfMethodDecl && |
| 957 | "IntfMethodDecl is null in ImplMethodsVsClassMethods"); |
| 958 | // ImpMethodDecl may be null as in a @dynamic property. |
| 959 | if (ImpMethodDecl) |
| 960 | WarnConflictingTypedMethods(ImpMethodDecl, IntfMethodDecl); |
| 961 | } |
| 962 | } |
| 963 | |
| 964 | // Check and see if class methods in class interface have been |
| 965 | // implemented in the implementation class. If so, their types match. |
| 966 | for (ObjCInterfaceDecl::classmeth_iterator |
| 967 | I = CDecl->classmeth_begin(Context), |
| 968 | E = CDecl->classmeth_end(Context); |
| 969 | I != E; ++I) { |
| 970 | if (ClsMapSeen.count((*I)->getSelector())) |
| 971 | continue; |
| 972 | ClsMapSeen.insert((*I)->getSelector()); |
| 973 | if (!ClsMap.count((*I)->getSelector())) { |
| 974 | if (ImmediateClass) |
| 975 | WarnUndefinedMethod(IMPDecl->getLocation(), *I, IncompleteImpl); |
| 976 | } |
| 977 | else { |
| 978 | ObjCMethodDecl *ImpMethodDecl = |
| 979 | IMPDecl->getClassMethod(Context, (*I)->getSelector()); |
| 980 | ObjCMethodDecl *IntfMethodDecl = |
| 981 | CDecl->getClassMethod(Context, (*I)->getSelector()); |
| 982 | WarnConflictingTypedMethods(ImpMethodDecl, IntfMethodDecl); |
| 983 | } |
| 984 | } |
| 985 | if (ObjCInterfaceDecl *I = dyn_cast<ObjCInterfaceDecl> (CDecl)) { |
| 986 | // Check for any implementation of a methods declared in protocol. |
| 987 | for (ObjCInterfaceDecl::protocol_iterator PI = I->protocol_begin(), |
| 988 | E = I->protocol_end(); PI != E; ++PI) |
| 989 | MatchAllMethodDeclarations(InsMap, ClsMap, InsMapSeen, ClsMapSeen, |
| 990 | IMPDecl, |
| 991 | (*PI), IncompleteImpl, false); |
| 992 | if (I->getSuperClass()) |
| 993 | MatchAllMethodDeclarations(InsMap, ClsMap, InsMapSeen, ClsMapSeen, |
| 994 | IMPDecl, |
| 995 | I->getSuperClass(), IncompleteImpl, false); |
| 996 | } |
| 997 | } |
| 998 | |
Chris Lattner | cddc888 | 2009-03-01 00:56:52 +0000 | [diff] [blame] | 999 | void Sema::ImplMethodsVsClassMethods(ObjCImplDecl* IMPDecl, |
| 1000 | ObjCContainerDecl* CDecl, |
| 1001 | bool IncompleteImpl) { |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1002 | llvm::DenseSet<Selector> InsMap; |
| 1003 | // Check and see if instance methods in class interface have been |
| 1004 | // implemented in the implementation class. |
Douglas Gregor | 653f1b1 | 2009-04-23 01:02:12 +0000 | [diff] [blame] | 1005 | for (ObjCImplementationDecl::instmeth_iterator |
| 1006 | I = IMPDecl->instmeth_begin(Context), |
| 1007 | E = IMPDecl->instmeth_end(Context); I != E; ++I) |
Chris Lattner | 4c52509 | 2007-12-12 17:58:05 +0000 | [diff] [blame] | 1008 | InsMap.insert((*I)->getSelector()); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1009 | |
Fariborz Jahanian | 12bac25 | 2009-04-14 23:15:21 +0000 | [diff] [blame] | 1010 | // Check and see if properties declared in the interface have either 1) |
| 1011 | // an implementation or 2) there is a @synthesize/@dynamic implementation |
| 1012 | // of the property in the @implementation. |
| 1013 | if (isa<ObjCInterfaceDecl>(CDecl)) |
| 1014 | for (ObjCContainerDecl::prop_iterator P = CDecl->prop_begin(Context), |
| 1015 | E = CDecl->prop_end(Context); P != E; ++P) { |
| 1016 | ObjCPropertyDecl *Prop = (*P); |
| 1017 | if (Prop->isInvalidDecl()) |
| 1018 | continue; |
| 1019 | ObjCPropertyImplDecl *PI = 0; |
| 1020 | // Is there a matching propery synthesize/dynamic? |
Douglas Gregor | 653f1b1 | 2009-04-23 01:02:12 +0000 | [diff] [blame] | 1021 | for (ObjCImplDecl::propimpl_iterator |
| 1022 | I = IMPDecl->propimpl_begin(Context), |
| 1023 | EI = IMPDecl->propimpl_end(Context); I != EI; ++I) |
Fariborz Jahanian | 12bac25 | 2009-04-14 23:15:21 +0000 | [diff] [blame] | 1024 | if ((*I)->getPropertyDecl() == Prop) { |
| 1025 | PI = (*I); |
| 1026 | break; |
| 1027 | } |
| 1028 | if (PI) |
| 1029 | continue; |
| 1030 | if (!InsMap.count(Prop->getGetterName())) { |
| 1031 | Diag(Prop->getLocation(), |
| 1032 | diag::warn_setter_getter_impl_required) |
| 1033 | << Prop->getDeclName() << Prop->getGetterName(); |
| 1034 | Diag(IMPDecl->getLocation(), |
| 1035 | diag::note_property_impl_required); |
| 1036 | } |
| 1037 | |
| 1038 | if (!Prop->isReadOnly() && !InsMap.count(Prop->getSetterName())) { |
| 1039 | Diag(Prop->getLocation(), |
| 1040 | diag::warn_setter_getter_impl_required) |
| 1041 | << Prop->getDeclName() << Prop->getSetterName(); |
| 1042 | Diag(IMPDecl->getLocation(), |
| 1043 | diag::note_property_impl_required); |
| 1044 | } |
| 1045 | } |
| 1046 | |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1047 | llvm::DenseSet<Selector> ClsMap; |
Douglas Gregor | 653f1b1 | 2009-04-23 01:02:12 +0000 | [diff] [blame] | 1048 | for (ObjCImplementationDecl::classmeth_iterator |
Fariborz Jahanian | b33f3ad | 2009-05-01 20:07:12 +0000 | [diff] [blame] | 1049 | I = IMPDecl->classmeth_begin(Context), |
| 1050 | E = IMPDecl->classmeth_end(Context); I != E; ++I) |
Chris Lattner | 4c52509 | 2007-12-12 17:58:05 +0000 | [diff] [blame] | 1051 | ClsMap.insert((*I)->getSelector()); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1052 | |
Fariborz Jahanian | b33f3ad | 2009-05-01 20:07:12 +0000 | [diff] [blame] | 1053 | // Check for type conflict of methods declared in a class/protocol and |
| 1054 | // its implementation; if any. |
| 1055 | llvm::DenseSet<Selector> InsMapSeen, ClsMapSeen; |
| 1056 | MatchAllMethodDeclarations(InsMap, ClsMap, InsMapSeen, ClsMapSeen, |
| 1057 | IMPDecl, CDecl, |
| 1058 | IncompleteImpl, true); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1059 | |
| 1060 | // Check the protocol list for unimplemented methods in the @implementation |
| 1061 | // class. |
Fariborz Jahanian | b33f3ad | 2009-05-01 20:07:12 +0000 | [diff] [blame] | 1062 | // Check and see if class methods in class interface have been |
| 1063 | // implemented in the implementation class. |
| 1064 | |
Chris Lattner | cddc888 | 2009-03-01 00:56:52 +0000 | [diff] [blame] | 1065 | if (ObjCInterfaceDecl *I = dyn_cast<ObjCInterfaceDecl> (CDecl)) { |
Fariborz Jahanian | b33f3ad | 2009-05-01 20:07:12 +0000 | [diff] [blame] | 1066 | for (ObjCInterfaceDecl::protocol_iterator PI = I->protocol_begin(), |
Chris Lattner | cddc888 | 2009-03-01 00:56:52 +0000 | [diff] [blame] | 1067 | E = I->protocol_end(); PI != E; ++PI) |
| 1068 | CheckProtocolMethodDefs(IMPDecl->getLocation(), *PI, IncompleteImpl, |
| 1069 | InsMap, ClsMap, I); |
| 1070 | // Check class extensions (unnamed categories) |
| 1071 | for (ObjCCategoryDecl *Categories = I->getCategoryList(); |
| 1072 | Categories; Categories = Categories->getNextClassCategory()) { |
| 1073 | if (!Categories->getIdentifier()) { |
| 1074 | ImplMethodsVsClassMethods(IMPDecl, Categories, IncompleteImpl); |
| 1075 | break; |
| 1076 | } |
Fariborz Jahanian | 8daab97 | 2008-12-05 18:18:52 +0000 | [diff] [blame] | 1077 | } |
Chris Lattner | cddc888 | 2009-03-01 00:56:52 +0000 | [diff] [blame] | 1078 | } else if (ObjCCategoryDecl *C = dyn_cast<ObjCCategoryDecl>(CDecl)) { |
| 1079 | for (ObjCCategoryDecl::protocol_iterator PI = C->protocol_begin(), |
| 1080 | E = C->protocol_end(); PI != E; ++PI) |
| 1081 | CheckProtocolMethodDefs(IMPDecl->getLocation(), *PI, IncompleteImpl, |
| 1082 | InsMap, ClsMap, C->getClassInterface()); |
| 1083 | } else |
| 1084 | assert(false && "invalid ObjCContainerDecl type."); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1085 | } |
| 1086 | |
| 1087 | /// ActOnForwardClassDeclaration - |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 1088 | Action::DeclPtrTy |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1089 | Sema::ActOnForwardClassDeclaration(SourceLocation AtClassLoc, |
Chris Lattner | bdbde4d | 2009-02-16 19:25:52 +0000 | [diff] [blame] | 1090 | IdentifierInfo **IdentList, |
| 1091 | unsigned NumElts) { |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1092 | llvm::SmallVector<ObjCInterfaceDecl*, 32> Interfaces; |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1093 | |
| 1094 | for (unsigned i = 0; i != NumElts; ++i) { |
| 1095 | // Check for another declaration kind with the same name. |
Douglas Gregor | 47b9a1c | 2009-02-04 17:27:36 +0000 | [diff] [blame] | 1096 | NamedDecl *PrevDecl = LookupName(TUScope, IdentList[i], LookupOrdinaryName); |
Douglas Gregor | f57172b | 2008-12-08 18:40:42 +0000 | [diff] [blame] | 1097 | if (PrevDecl && PrevDecl->isTemplateParameter()) { |
Douglas Gregor | 72c3f31 | 2008-12-05 18:15:24 +0000 | [diff] [blame] | 1098 | // Maybe we will complain about the shadowed template parameter. |
| 1099 | DiagnoseTemplateParameterShadow(AtClassLoc, PrevDecl); |
| 1100 | // Just pretend that we didn't see the previous declaration. |
| 1101 | PrevDecl = 0; |
| 1102 | } |
| 1103 | |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1104 | if (PrevDecl && !isa<ObjCInterfaceDecl>(PrevDecl)) { |
Steve Naroff | c733388 | 2008-06-05 22:57:10 +0000 | [diff] [blame] | 1105 | // GCC apparently allows the following idiom: |
| 1106 | // |
| 1107 | // typedef NSObject < XCElementTogglerP > XCElementToggler; |
| 1108 | // @class XCElementToggler; |
| 1109 | // |
| 1110 | // FIXME: Make an extension? |
| 1111 | TypedefDecl *TDD = dyn_cast<TypedefDecl>(PrevDecl); |
| 1112 | if (!TDD || !isa<ObjCInterfaceType>(TDD->getUnderlyingType())) { |
Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 1113 | Diag(AtClassLoc, diag::err_redefinition_different_kind) << IdentList[i]; |
Chris Lattner | 5f4a682 | 2008-11-23 23:12:31 +0000 | [diff] [blame] | 1114 | Diag(PrevDecl->getLocation(), diag::note_previous_definition); |
Steve Naroff | c733388 | 2008-06-05 22:57:10 +0000 | [diff] [blame] | 1115 | } |
Fariborz Jahanian | cae27c5 | 2009-05-07 21:49:26 +0000 | [diff] [blame] | 1116 | else if (TDD) { |
| 1117 | // a forward class declaration matching a typedef name of a class |
| 1118 | // refers to the underlying class. |
| 1119 | if (ObjCInterfaceType * OI = |
| 1120 | dyn_cast<ObjCInterfaceType>(TDD->getUnderlyingType())) |
| 1121 | PrevDecl = OI->getDecl(); |
| 1122 | } |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1123 | } |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1124 | ObjCInterfaceDecl *IDecl = dyn_cast_or_null<ObjCInterfaceDecl>(PrevDecl); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1125 | if (!IDecl) { // Not already seen? Make a forward decl. |
Douglas Gregor | d043410 | 2009-01-09 00:49:46 +0000 | [diff] [blame] | 1126 | IDecl = ObjCInterfaceDecl::Create(Context, CurContext, AtClassLoc, |
| 1127 | IdentList[i], SourceLocation(), true); |
Steve Naroff | 8f06f84 | 2009-04-23 16:00:56 +0000 | [diff] [blame] | 1128 | PushOnScopeChains(IDecl, TUScope); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1129 | } |
| 1130 | |
| 1131 | Interfaces.push_back(IDecl); |
| 1132 | } |
| 1133 | |
Douglas Gregor | d043410 | 2009-01-09 00:49:46 +0000 | [diff] [blame] | 1134 | ObjCClassDecl *CDecl = ObjCClassDecl::Create(Context, CurContext, AtClassLoc, |
Anders Carlsson | 1528145 | 2008-11-04 16:57:32 +0000 | [diff] [blame] | 1135 | &Interfaces[0], |
| 1136 | Interfaces.size()); |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 1137 | CurContext->addDecl(Context, CDecl); |
Anders Carlsson | 1528145 | 2008-11-04 16:57:32 +0000 | [diff] [blame] | 1138 | CheckObjCDeclScope(CDecl); |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 1139 | return DeclPtrTy::make(CDecl); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1140 | } |
| 1141 | |
| 1142 | |
| 1143 | /// MatchTwoMethodDeclarations - Checks that two methods have matching type and |
| 1144 | /// returns true, or false, accordingly. |
| 1145 | /// TODO: Handle protocol list; such as id<p1,p2> in type comparisons |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1146 | bool Sema::MatchTwoMethodDeclarations(const ObjCMethodDecl *Method, |
Steve Naroff | fe6b0dc | 2008-10-21 10:37:50 +0000 | [diff] [blame] | 1147 | const ObjCMethodDecl *PrevMethod, |
| 1148 | bool matchBasedOnSizeAndAlignment) { |
| 1149 | QualType T1 = Context.getCanonicalType(Method->getResultType()); |
| 1150 | QualType T2 = Context.getCanonicalType(PrevMethod->getResultType()); |
| 1151 | |
| 1152 | if (T1 != T2) { |
| 1153 | // The result types are different. |
| 1154 | if (!matchBasedOnSizeAndAlignment) |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1155 | return false; |
Steve Naroff | fe6b0dc | 2008-10-21 10:37:50 +0000 | [diff] [blame] | 1156 | // Incomplete types don't have a size and alignment. |
| 1157 | if (T1->isIncompleteType() || T2->isIncompleteType()) |
| 1158 | return false; |
| 1159 | // Check is based on size and alignment. |
| 1160 | if (Context.getTypeInfo(T1) != Context.getTypeInfo(T2)) |
| 1161 | return false; |
| 1162 | } |
Chris Lattner | 89951a8 | 2009-02-20 18:43:26 +0000 | [diff] [blame] | 1163 | |
| 1164 | ObjCMethodDecl::param_iterator ParamI = Method->param_begin(), |
| 1165 | E = Method->param_end(); |
| 1166 | ObjCMethodDecl::param_iterator PrevI = PrevMethod->param_begin(); |
| 1167 | |
| 1168 | for (; ParamI != E; ++ParamI, ++PrevI) { |
| 1169 | assert(PrevI != PrevMethod->param_end() && "Param mismatch"); |
| 1170 | T1 = Context.getCanonicalType((*ParamI)->getType()); |
| 1171 | T2 = Context.getCanonicalType((*PrevI)->getType()); |
Steve Naroff | fe6b0dc | 2008-10-21 10:37:50 +0000 | [diff] [blame] | 1172 | if (T1 != T2) { |
| 1173 | // The result types are different. |
| 1174 | if (!matchBasedOnSizeAndAlignment) |
| 1175 | return false; |
| 1176 | // Incomplete types don't have a size and alignment. |
| 1177 | if (T1->isIncompleteType() || T2->isIncompleteType()) |
| 1178 | return false; |
| 1179 | // Check is based on size and alignment. |
| 1180 | if (Context.getTypeInfo(T1) != Context.getTypeInfo(T2)) |
| 1181 | return false; |
| 1182 | } |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1183 | } |
| 1184 | return true; |
| 1185 | } |
| 1186 | |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1187 | /// \brief Read the contents of the instance and factory method pools |
| 1188 | /// for a given selector from external storage. |
| 1189 | /// |
| 1190 | /// This routine should only be called once, when neither the instance |
| 1191 | /// nor the factory method pool has an entry for this selector. |
| 1192 | Sema::MethodPool::iterator Sema::ReadMethodPool(Selector Sel, |
| 1193 | bool isInstance) { |
| 1194 | assert(ExternalSource && "We need an external AST source"); |
| 1195 | assert(InstanceMethodPool.find(Sel) == InstanceMethodPool.end() && |
| 1196 | "Selector data already loaded into the instance method pool"); |
| 1197 | assert(FactoryMethodPool.find(Sel) == FactoryMethodPool.end() && |
| 1198 | "Selector data already loaded into the factory method pool"); |
| 1199 | |
| 1200 | // Read the method list from the external source. |
| 1201 | std::pair<ObjCMethodList, ObjCMethodList> Methods |
| 1202 | = ExternalSource->ReadMethodPool(Sel); |
| 1203 | |
| 1204 | if (isInstance) { |
| 1205 | if (Methods.second.Method) |
| 1206 | FactoryMethodPool[Sel] = Methods.second; |
| 1207 | return InstanceMethodPool.insert(std::make_pair(Sel, Methods.first)).first; |
| 1208 | } |
| 1209 | |
| 1210 | if (Methods.first.Method) |
| 1211 | InstanceMethodPool[Sel] = Methods.first; |
| 1212 | |
| 1213 | return FactoryMethodPool.insert(std::make_pair(Sel, Methods.second)).first; |
| 1214 | } |
| 1215 | |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1216 | void Sema::AddInstanceMethodToGlobalPool(ObjCMethodDecl *Method) { |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1217 | llvm::DenseMap<Selector, ObjCMethodList>::iterator Pos |
| 1218 | = InstanceMethodPool.find(Method->getSelector()); |
| 1219 | if (Pos == InstanceMethodPool.end()) { |
| 1220 | if (ExternalSource && !FactoryMethodPool.count(Method->getSelector())) |
| 1221 | Pos = ReadMethodPool(Method->getSelector(), /*isInstance=*/true); |
| 1222 | else |
| 1223 | Pos = InstanceMethodPool.insert(std::make_pair(Method->getSelector(), |
| 1224 | ObjCMethodList())).first; |
| 1225 | } |
| 1226 | |
| 1227 | ObjCMethodList &Entry = Pos->second; |
Chris Lattner | b25df35 | 2009-03-04 05:16:45 +0000 | [diff] [blame] | 1228 | if (Entry.Method == 0) { |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1229 | // Haven't seen a method with this selector name yet - add it. |
Chris Lattner | b25df35 | 2009-03-04 05:16:45 +0000 | [diff] [blame] | 1230 | Entry.Method = Method; |
| 1231 | Entry.Next = 0; |
| 1232 | return; |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1233 | } |
Chris Lattner | b25df35 | 2009-03-04 05:16:45 +0000 | [diff] [blame] | 1234 | |
| 1235 | // We've seen a method with this name, see if we have already seen this type |
| 1236 | // signature. |
| 1237 | for (ObjCMethodList *List = &Entry; List; List = List->Next) |
| 1238 | if (MatchTwoMethodDeclarations(Method, List->Method)) |
| 1239 | return; |
| 1240 | |
| 1241 | // We have a new signature for an existing method - add it. |
| 1242 | // This is extremely rare. Only 1% of Cocoa selectors are "overloaded". |
| 1243 | Entry.Next = new ObjCMethodList(Method, Entry.Next); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1244 | } |
| 1245 | |
Steve Naroff | 6f5f41c | 2008-10-21 10:50:19 +0000 | [diff] [blame] | 1246 | // FIXME: Finish implementing -Wno-strict-selector-match. |
Steve Naroff | 037cda5 | 2008-09-30 14:38:43 +0000 | [diff] [blame] | 1247 | ObjCMethodDecl *Sema::LookupInstanceMethodInGlobalPool(Selector Sel, |
| 1248 | SourceRange R) { |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1249 | llvm::DenseMap<Selector, ObjCMethodList>::iterator Pos |
| 1250 | = InstanceMethodPool.find(Sel); |
Douglas Gregor | 27a4566 | 2009-04-24 22:23:41 +0000 | [diff] [blame] | 1251 | if (Pos == InstanceMethodPool.end()) { |
| 1252 | if (ExternalSource && !FactoryMethodPool.count(Sel)) |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1253 | Pos = ReadMethodPool(Sel, /*isInstance=*/true); |
| 1254 | else |
| 1255 | return 0; |
| 1256 | } |
| 1257 | |
| 1258 | ObjCMethodList &MethList = Pos->second; |
Steve Naroff | fe6b0dc | 2008-10-21 10:37:50 +0000 | [diff] [blame] | 1259 | bool issueWarning = false; |
Steve Naroff | 037cda5 | 2008-09-30 14:38:43 +0000 | [diff] [blame] | 1260 | |
| 1261 | if (MethList.Method && MethList.Next) { |
Steve Naroff | fe6b0dc | 2008-10-21 10:37:50 +0000 | [diff] [blame] | 1262 | for (ObjCMethodList *Next = MethList.Next; Next; Next = Next->Next) |
| 1263 | // This checks if the methods differ by size & alignment. |
| 1264 | if (!MatchTwoMethodDeclarations(MethList.Method, Next->Method, true)) |
| 1265 | issueWarning = true; |
| 1266 | } |
| 1267 | if (issueWarning && (MethList.Method && MethList.Next)) { |
Chris Lattner | 077bf5e | 2008-11-24 03:33:13 +0000 | [diff] [blame] | 1268 | Diag(R.getBegin(), diag::warn_multiple_method_decl) << Sel << R; |
Chris Lattner | 1326a3d | 2008-11-23 23:26:13 +0000 | [diff] [blame] | 1269 | Diag(MethList.Method->getLocStart(), diag::note_using_decl) |
Chris Lattner | dcd5ef1 | 2008-11-19 05:27:50 +0000 | [diff] [blame] | 1270 | << MethList.Method->getSourceRange(); |
Steve Naroff | 037cda5 | 2008-09-30 14:38:43 +0000 | [diff] [blame] | 1271 | for (ObjCMethodList *Next = MethList.Next; Next; Next = Next->Next) |
Chris Lattner | 1326a3d | 2008-11-23 23:26:13 +0000 | [diff] [blame] | 1272 | Diag(Next->Method->getLocStart(), diag::note_also_found_decl) |
Chris Lattner | dcd5ef1 | 2008-11-19 05:27:50 +0000 | [diff] [blame] | 1273 | << Next->Method->getSourceRange(); |
Steve Naroff | 037cda5 | 2008-09-30 14:38:43 +0000 | [diff] [blame] | 1274 | } |
| 1275 | return MethList.Method; |
| 1276 | } |
| 1277 | |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1278 | void Sema::AddFactoryMethodToGlobalPool(ObjCMethodDecl *Method) { |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1279 | llvm::DenseMap<Selector, ObjCMethodList>::iterator Pos |
| 1280 | = FactoryMethodPool.find(Method->getSelector()); |
| 1281 | if (Pos == FactoryMethodPool.end()) { |
| 1282 | if (ExternalSource && !InstanceMethodPool.count(Method->getSelector())) |
| 1283 | Pos = ReadMethodPool(Method->getSelector(), /*isInstance=*/false); |
| 1284 | else |
| 1285 | Pos = FactoryMethodPool.insert(std::make_pair(Method->getSelector(), |
| 1286 | ObjCMethodList())).first; |
| 1287 | } |
| 1288 | |
| 1289 | ObjCMethodList &FirstMethod = Pos->second; |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1290 | if (!FirstMethod.Method) { |
| 1291 | // Haven't seen a method with this selector name yet - add it. |
| 1292 | FirstMethod.Method = Method; |
| 1293 | FirstMethod.Next = 0; |
| 1294 | } else { |
| 1295 | // We've seen a method with this name, now check the type signature(s). |
| 1296 | bool match = MatchTwoMethodDeclarations(Method, FirstMethod.Method); |
| 1297 | |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1298 | for (ObjCMethodList *Next = FirstMethod.Next; !match && Next; |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1299 | Next = Next->Next) |
| 1300 | match = MatchTwoMethodDeclarations(Method, Next->Method); |
| 1301 | |
| 1302 | if (!match) { |
| 1303 | // We have a new signature for an existing method - add it. |
| 1304 | // This is extremely rare. Only 1% of Cocoa selectors are "overloaded". |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1305 | struct ObjCMethodList *OMI = new ObjCMethodList(Method, FirstMethod.Next); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1306 | FirstMethod.Next = OMI; |
| 1307 | } |
| 1308 | } |
| 1309 | } |
| 1310 | |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1311 | ObjCMethodDecl *Sema::LookupFactoryMethodInGlobalPool(Selector Sel, |
| 1312 | SourceRange R) { |
| 1313 | llvm::DenseMap<Selector, ObjCMethodList>::iterator Pos |
| 1314 | = FactoryMethodPool.find(Sel); |
| 1315 | if (Pos == FactoryMethodPool.end()) { |
| 1316 | if (ExternalSource && !InstanceMethodPool.count(Sel)) |
| 1317 | Pos = ReadMethodPool(Sel, /*isInstance=*/false); |
| 1318 | else |
| 1319 | return 0; |
| 1320 | } |
| 1321 | |
| 1322 | ObjCMethodList &MethList = Pos->second; |
| 1323 | bool issueWarning = false; |
| 1324 | |
| 1325 | if (MethList.Method && MethList.Next) { |
| 1326 | for (ObjCMethodList *Next = MethList.Next; Next; Next = Next->Next) |
| 1327 | // This checks if the methods differ by size & alignment. |
| 1328 | if (!MatchTwoMethodDeclarations(MethList.Method, Next->Method, true)) |
| 1329 | issueWarning = true; |
| 1330 | } |
| 1331 | if (issueWarning && (MethList.Method && MethList.Next)) { |
| 1332 | Diag(R.getBegin(), diag::warn_multiple_method_decl) << Sel << R; |
| 1333 | Diag(MethList.Method->getLocStart(), diag::note_using_decl) |
| 1334 | << MethList.Method->getSourceRange(); |
| 1335 | for (ObjCMethodList *Next = MethList.Next; Next; Next = Next->Next) |
| 1336 | Diag(Next->Method->getLocStart(), diag::note_also_found_decl) |
| 1337 | << Next->Method->getSourceRange(); |
| 1338 | } |
| 1339 | return MethList.Method; |
| 1340 | } |
| 1341 | |
Steve Naroff | 0701bbb | 2009-01-08 17:28:14 +0000 | [diff] [blame] | 1342 | /// ProcessPropertyDecl - Make sure that any user-defined setter/getter methods |
| 1343 | /// have the property type and issue diagnostics if they don't. |
| 1344 | /// Also synthesize a getter/setter method if none exist (and update the |
| 1345 | /// appropriate lookup tables. FIXME: Should reconsider if adding synthesized |
| 1346 | /// methods is the "right" thing to do. |
| 1347 | void Sema::ProcessPropertyDecl(ObjCPropertyDecl *property, |
| 1348 | ObjCContainerDecl *CD) { |
| 1349 | ObjCMethodDecl *GetterMethod, *SetterMethod; |
| 1350 | |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 1351 | GetterMethod = CD->getInstanceMethod(Context, property->getGetterName()); |
| 1352 | SetterMethod = CD->getInstanceMethod(Context, property->getSetterName()); |
Fariborz Jahanian | c001e89 | 2009-05-08 20:20:55 +0000 | [diff] [blame] | 1353 | DiagnosePropertyAccessorMismatch(property, GetterMethod, |
| 1354 | property->getLocation()); |
| 1355 | |
Fariborz Jahanian | f3cd3fd | 2008-12-02 18:39:49 +0000 | [diff] [blame] | 1356 | if (SetterMethod) { |
Fariborz Jahanian | 5dd4129 | 2008-12-06 23:12:49 +0000 | [diff] [blame] | 1357 | if (Context.getCanonicalType(SetterMethod->getResultType()) |
| 1358 | != Context.VoidTy) |
Fariborz Jahanian | f3cd3fd | 2008-12-02 18:39:49 +0000 | [diff] [blame] | 1359 | Diag(SetterMethod->getLocation(), diag::err_setter_type_void); |
Chris Lattner | 89951a8 | 2009-02-20 18:43:26 +0000 | [diff] [blame] | 1360 | if (SetterMethod->param_size() != 1 || |
| 1361 | ((*SetterMethod->param_begin())->getType() != property->getType())) { |
Fariborz Jahanian | f3cd3fd | 2008-12-02 18:39:49 +0000 | [diff] [blame] | 1362 | Diag(property->getLocation(), |
Fariborz Jahanian | 4c2743f | 2009-05-08 19:36:34 +0000 | [diff] [blame] | 1363 | diag::warn_accessor_property_type_mismatch) |
Fariborz Jahanian | f3cd3fd | 2008-12-02 18:39:49 +0000 | [diff] [blame] | 1364 | << property->getDeclName() |
Ted Kremenek | 8af2c16 | 2009-03-14 00:20:08 +0000 | [diff] [blame] | 1365 | << SetterMethod->getSelector(); |
Fariborz Jahanian | 196d0ed | 2008-12-06 21:48:16 +0000 | [diff] [blame] | 1366 | Diag(SetterMethod->getLocation(), diag::note_declared_at); |
| 1367 | } |
Fariborz Jahanian | f3cd3fd | 2008-12-02 18:39:49 +0000 | [diff] [blame] | 1368 | } |
Steve Naroff | 0701bbb | 2009-01-08 17:28:14 +0000 | [diff] [blame] | 1369 | |
| 1370 | // Synthesize getter/setter methods if none exist. |
Steve Naroff | 92f863b | 2009-01-08 20:15:03 +0000 | [diff] [blame] | 1371 | // Find the default getter and if one not found, add one. |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 1372 | // FIXME: The synthesized property we set here is misleading. We almost always |
| 1373 | // synthesize these methods unless the user explicitly provided prototypes |
| 1374 | // (which is odd, but allowed). Sema should be typechecking that the |
| 1375 | // declarations jive in that situation (which it is not currently). |
Steve Naroff | 92f863b | 2009-01-08 20:15:03 +0000 | [diff] [blame] | 1376 | if (!GetterMethod) { |
| 1377 | // No instance method of same name as property getter name was found. |
| 1378 | // Declare a getter method and add it to the list of methods |
| 1379 | // for this class. |
| 1380 | GetterMethod = ObjCMethodDecl::Create(Context, property->getLocation(), |
| 1381 | property->getLocation(), property->getGetterName(), |
| 1382 | property->getType(), CD, true, false, true, |
| 1383 | (property->getPropertyImplementation() == |
| 1384 | ObjCPropertyDecl::Optional) ? |
| 1385 | ObjCMethodDecl::Optional : |
| 1386 | ObjCMethodDecl::Required); |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 1387 | CD->addDecl(Context, GetterMethod); |
Steve Naroff | 92f863b | 2009-01-08 20:15:03 +0000 | [diff] [blame] | 1388 | } else |
| 1389 | // A user declared getter will be synthesize when @synthesize of |
| 1390 | // the property with the same name is seen in the @implementation |
Steve Naroff | 53c9d8a | 2009-04-20 15:06:07 +0000 | [diff] [blame] | 1391 | GetterMethod->setSynthesized(true); |
Steve Naroff | 92f863b | 2009-01-08 20:15:03 +0000 | [diff] [blame] | 1392 | property->setGetterMethodDecl(GetterMethod); |
| 1393 | |
| 1394 | // Skip setter if property is read-only. |
| 1395 | if (!property->isReadOnly()) { |
| 1396 | // Find the default setter and if one not found, add one. |
| 1397 | if (!SetterMethod) { |
| 1398 | // No instance method of same name as property setter name was found. |
| 1399 | // Declare a setter method and add it to the list of methods |
| 1400 | // for this class. |
| 1401 | SetterMethod = ObjCMethodDecl::Create(Context, property->getLocation(), |
| 1402 | property->getLocation(), |
| 1403 | property->getSetterName(), |
| 1404 | Context.VoidTy, CD, true, false, true, |
| 1405 | (property->getPropertyImplementation() == |
| 1406 | ObjCPropertyDecl::Optional) ? |
| 1407 | ObjCMethodDecl::Optional : |
| 1408 | ObjCMethodDecl::Required); |
| 1409 | // Invent the arguments for the setter. We don't bother making a |
| 1410 | // nice name for the argument. |
| 1411 | ParmVarDecl *Argument = ParmVarDecl::Create(Context, SetterMethod, |
Chris Lattner | d1e0f5a | 2009-04-11 20:14:49 +0000 | [diff] [blame] | 1412 | property->getLocation(), |
Steve Naroff | 92f863b | 2009-01-08 20:15:03 +0000 | [diff] [blame] | 1413 | property->getIdentifier(), |
| 1414 | property->getType(), |
| 1415 | VarDecl::None, |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 1416 | 0); |
Steve Naroff | 53c9d8a | 2009-04-20 15:06:07 +0000 | [diff] [blame] | 1417 | SetterMethod->setMethodParams(Context, &Argument, 1); |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 1418 | CD->addDecl(Context, SetterMethod); |
Steve Naroff | 92f863b | 2009-01-08 20:15:03 +0000 | [diff] [blame] | 1419 | } else |
| 1420 | // A user declared setter will be synthesize when @synthesize of |
| 1421 | // the property with the same name is seen in the @implementation |
Steve Naroff | 53c9d8a | 2009-04-20 15:06:07 +0000 | [diff] [blame] | 1422 | SetterMethod->setSynthesized(true); |
Steve Naroff | 92f863b | 2009-01-08 20:15:03 +0000 | [diff] [blame] | 1423 | property->setSetterMethodDecl(SetterMethod); |
| 1424 | } |
Steve Naroff | 0701bbb | 2009-01-08 17:28:14 +0000 | [diff] [blame] | 1425 | // Add any synthesized methods to the global pool. This allows us to |
| 1426 | // handle the following, which is supported by GCC (and part of the design). |
| 1427 | // |
| 1428 | // @interface Foo |
| 1429 | // @property double bar; |
| 1430 | // @end |
| 1431 | // |
| 1432 | // void thisIsUnfortunate() { |
| 1433 | // id foo; |
| 1434 | // double bar = [foo bar]; |
| 1435 | // } |
| 1436 | // |
Douglas Gregor | 6037fcb | 2009-01-09 19:42:16 +0000 | [diff] [blame] | 1437 | if (GetterMethod) |
Steve Naroff | 0701bbb | 2009-01-08 17:28:14 +0000 | [diff] [blame] | 1438 | AddInstanceMethodToGlobalPool(GetterMethod); |
Douglas Gregor | 6037fcb | 2009-01-09 19:42:16 +0000 | [diff] [blame] | 1439 | if (SetterMethod) |
Steve Naroff | 0701bbb | 2009-01-08 17:28:14 +0000 | [diff] [blame] | 1440 | AddInstanceMethodToGlobalPool(SetterMethod); |
Fariborz Jahanian | f3cd3fd | 2008-12-02 18:39:49 +0000 | [diff] [blame] | 1441 | } |
| 1442 | |
Steve Naroff | a56f616 | 2007-12-18 01:30:32 +0000 | [diff] [blame] | 1443 | // Note: For class/category implemenations, allMethods/allProperties is |
| 1444 | // always null. |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 1445 | void Sema::ActOnAtEnd(SourceLocation AtEndLoc, DeclPtrTy classDecl, |
| 1446 | DeclPtrTy *allMethods, unsigned allNum, |
| 1447 | DeclPtrTy *allProperties, unsigned pNum, |
Chris Lattner | 682bf92 | 2009-03-29 16:50:03 +0000 | [diff] [blame] | 1448 | DeclGroupPtrTy *allTUVars, unsigned tuvNum) { |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 1449 | Decl *ClassDecl = classDecl.getAs<Decl>(); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1450 | |
Steve Naroff | a56f616 | 2007-12-18 01:30:32 +0000 | [diff] [blame] | 1451 | // FIXME: If we don't have a ClassDecl, we have an error. We should consider |
| 1452 | // always passing in a decl. If the decl has an error, isInvalidDecl() |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1453 | // should be true. |
| 1454 | if (!ClassDecl) |
| 1455 | return; |
| 1456 | |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1457 | bool isInterfaceDeclKind = |
Chris Lattner | f8d17a5 | 2008-03-16 21:17:37 +0000 | [diff] [blame] | 1458 | isa<ObjCInterfaceDecl>(ClassDecl) || isa<ObjCCategoryDecl>(ClassDecl) |
| 1459 | || isa<ObjCProtocolDecl>(ClassDecl); |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1460 | bool checkIdenticalMethods = isa<ObjCImplementationDecl>(ClassDecl); |
Steve Naroff | 09c4719 | 2009-01-09 15:36:25 +0000 | [diff] [blame] | 1461 | |
Steve Naroff | 0701bbb | 2009-01-08 17:28:14 +0000 | [diff] [blame] | 1462 | DeclContext *DC = dyn_cast<DeclContext>(ClassDecl); |
Steve Naroff | 0701bbb | 2009-01-08 17:28:14 +0000 | [diff] [blame] | 1463 | |
| 1464 | // FIXME: Remove these and use the ObjCContainerDecl/DeclContext. |
| 1465 | llvm::DenseMap<Selector, const ObjCMethodDecl*> InsMap; |
| 1466 | llvm::DenseMap<Selector, const ObjCMethodDecl*> ClsMap; |
| 1467 | |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1468 | for (unsigned i = 0; i < allNum; i++ ) { |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1469 | ObjCMethodDecl *Method = |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 1470 | cast_or_null<ObjCMethodDecl>(allMethods[i].getAs<Decl>()); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1471 | |
| 1472 | if (!Method) continue; // Already issued a diagnostic. |
Douglas Gregor | f8d49f6 | 2009-01-09 17:18:27 +0000 | [diff] [blame] | 1473 | if (Method->isInstanceMethod()) { |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1474 | /// Check for instance method of the same name with incompatible types |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1475 | const ObjCMethodDecl *&PrevMethod = InsMap[Method->getSelector()]; |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1476 | bool match = PrevMethod ? MatchTwoMethodDeclarations(Method, PrevMethod) |
| 1477 | : false; |
Eli Friedman | 82b4e76 | 2008-12-16 20:15:50 +0000 | [diff] [blame] | 1478 | if ((isInterfaceDeclKind && PrevMethod && !match) |
| 1479 | || (checkIdenticalMethods && match)) { |
Chris Lattner | 5f4a682 | 2008-11-23 23:12:31 +0000 | [diff] [blame] | 1480 | Diag(Method->getLocation(), diag::err_duplicate_method_decl) |
Chris Lattner | 077bf5e | 2008-11-24 03:33:13 +0000 | [diff] [blame] | 1481 | << Method->getDeclName(); |
Chris Lattner | 5f4a682 | 2008-11-23 23:12:31 +0000 | [diff] [blame] | 1482 | Diag(PrevMethod->getLocation(), diag::note_previous_declaration); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1483 | } else { |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 1484 | DC->addDecl(Context, Method); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1485 | InsMap[Method->getSelector()] = Method; |
| 1486 | /// The following allows us to typecheck messages to "id". |
| 1487 | AddInstanceMethodToGlobalPool(Method); |
| 1488 | } |
| 1489 | } |
| 1490 | else { |
| 1491 | /// Check for class method of the same name with incompatible types |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1492 | const ObjCMethodDecl *&PrevMethod = ClsMap[Method->getSelector()]; |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1493 | bool match = PrevMethod ? MatchTwoMethodDeclarations(Method, PrevMethod) |
| 1494 | : false; |
Eli Friedman | 82b4e76 | 2008-12-16 20:15:50 +0000 | [diff] [blame] | 1495 | if ((isInterfaceDeclKind && PrevMethod && !match) |
| 1496 | || (checkIdenticalMethods && match)) { |
Chris Lattner | 5f4a682 | 2008-11-23 23:12:31 +0000 | [diff] [blame] | 1497 | Diag(Method->getLocation(), diag::err_duplicate_method_decl) |
Chris Lattner | 077bf5e | 2008-11-24 03:33:13 +0000 | [diff] [blame] | 1498 | << Method->getDeclName(); |
Chris Lattner | 5f4a682 | 2008-11-23 23:12:31 +0000 | [diff] [blame] | 1499 | Diag(PrevMethod->getLocation(), diag::note_previous_declaration); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1500 | } else { |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 1501 | DC->addDecl(Context, Method); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1502 | ClsMap[Method->getSelector()] = Method; |
Steve Naroff | a56f616 | 2007-12-18 01:30:32 +0000 | [diff] [blame] | 1503 | /// The following allows us to typecheck messages to "Class". |
| 1504 | AddFactoryMethodToGlobalPool(Method); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1505 | } |
| 1506 | } |
| 1507 | } |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1508 | if (ObjCInterfaceDecl *I = dyn_cast<ObjCInterfaceDecl>(ClassDecl)) { |
Daniel Dunbar | b20ef3e | 2008-08-27 05:40:03 +0000 | [diff] [blame] | 1509 | // Compares properties declared in this class to those of its |
Fariborz Jahanian | 02edb98 | 2008-05-01 00:03:38 +0000 | [diff] [blame] | 1510 | // super class. |
Fariborz Jahanian | aebf0cb | 2008-05-02 19:17:30 +0000 | [diff] [blame] | 1511 | ComparePropertiesInBaseAndSuper(I); |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 1512 | MergeProtocolPropertiesIntoClass(I, DeclPtrTy::make(I)); |
Steve Naroff | 09c4719 | 2009-01-09 15:36:25 +0000 | [diff] [blame] | 1513 | } else if (ObjCCategoryDecl *C = dyn_cast<ObjCCategoryDecl>(ClassDecl)) { |
Fariborz Jahanian | 77e14bd | 2008-12-06 19:59:02 +0000 | [diff] [blame] | 1514 | // Categories are used to extend the class by declaring new methods. |
| 1515 | // By the same token, they are also used to add new properties. No |
| 1516 | // need to compare the added property to those in the class. |
Daniel Dunbar | b20ef3e | 2008-08-27 05:40:03 +0000 | [diff] [blame] | 1517 | |
Fariborz Jahanian | 1ac2bc4 | 2008-12-06 23:03:39 +0000 | [diff] [blame] | 1518 | // Merge protocol properties into category |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 1519 | MergeProtocolPropertiesIntoClass(C, DeclPtrTy::make(C)); |
Fariborz Jahanian | b7f95f5 | 2009-03-02 19:05:07 +0000 | [diff] [blame] | 1520 | if (C->getIdentifier() == 0) |
| 1521 | DiagnoseClassExtensionDupMethods(C, C->getClassInterface()); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1522 | } |
Steve Naroff | 09c4719 | 2009-01-09 15:36:25 +0000 | [diff] [blame] | 1523 | if (ObjCContainerDecl *CDecl = dyn_cast<ObjCContainerDecl>(ClassDecl)) { |
| 1524 | // ProcessPropertyDecl is responsible for diagnosing conflicts with any |
| 1525 | // user-defined setter/getter. It also synthesizes setter/getter methods |
| 1526 | // and adds them to the DeclContext and global method pools. |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 1527 | for (ObjCContainerDecl::prop_iterator I = CDecl->prop_begin(Context), |
| 1528 | E = CDecl->prop_end(Context); |
| 1529 | I != E; ++I) |
Chris Lattner | 97a5887 | 2009-02-16 18:32:47 +0000 | [diff] [blame] | 1530 | ProcessPropertyDecl(*I, CDecl); |
Steve Naroff | 09c4719 | 2009-01-09 15:36:25 +0000 | [diff] [blame] | 1531 | CDecl->setAtEndLoc(AtEndLoc); |
| 1532 | } |
| 1533 | if (ObjCImplementationDecl *IC=dyn_cast<ObjCImplementationDecl>(ClassDecl)) { |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1534 | IC->setLocEnd(AtEndLoc); |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 1535 | if (ObjCInterfaceDecl* IDecl = IC->getClassInterface()) |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1536 | ImplMethodsVsClassMethods(IC, IDecl); |
Steve Naroff | 09c4719 | 2009-01-09 15:36:25 +0000 | [diff] [blame] | 1537 | } else if (ObjCCategoryImplDecl* CatImplClass = |
| 1538 | dyn_cast<ObjCCategoryImplDecl>(ClassDecl)) { |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1539 | CatImplClass->setLocEnd(AtEndLoc); |
Chris Lattner | 97a5887 | 2009-02-16 18:32:47 +0000 | [diff] [blame] | 1540 | |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1541 | // Find category interface decl and then check that all methods declared |
Daniel Dunbar | b20ef3e | 2008-08-27 05:40:03 +0000 | [diff] [blame] | 1542 | // in this interface are implemented in the category @implementation. |
Chris Lattner | 97a5887 | 2009-02-16 18:32:47 +0000 | [diff] [blame] | 1543 | if (ObjCInterfaceDecl* IDecl = CatImplClass->getClassInterface()) { |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1544 | for (ObjCCategoryDecl *Categories = IDecl->getCategoryList(); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1545 | Categories; Categories = Categories->getNextClassCategory()) { |
| 1546 | if (Categories->getIdentifier() == CatImplClass->getIdentifier()) { |
Chris Lattner | cddc888 | 2009-03-01 00:56:52 +0000 | [diff] [blame] | 1547 | ImplMethodsVsClassMethods(CatImplClass, Categories); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1548 | break; |
| 1549 | } |
| 1550 | } |
| 1551 | } |
| 1552 | } |
Chris Lattner | 682bf92 | 2009-03-29 16:50:03 +0000 | [diff] [blame] | 1553 | if (isInterfaceDeclKind) { |
| 1554 | // Reject invalid vardecls. |
| 1555 | for (unsigned i = 0; i != tuvNum; i++) { |
| 1556 | DeclGroupRef DG = allTUVars[i].getAsVal<DeclGroupRef>(); |
| 1557 | for (DeclGroupRef::iterator I = DG.begin(), E = DG.end(); I != E; ++I) |
| 1558 | if (VarDecl *VDecl = dyn_cast<VarDecl>(*I)) { |
Daniel Dunbar | 5466c7b | 2009-04-14 02:25:56 +0000 | [diff] [blame] | 1559 | if (!VDecl->hasExternalStorage()) |
Steve Naroff | 8745416 | 2009-04-13 17:58:46 +0000 | [diff] [blame] | 1560 | Diag(VDecl->getLocation(), diag::err_objc_var_decl_inclass); |
Fariborz Jahanian | b31cb7f | 2009-03-21 18:06:45 +0000 | [diff] [blame] | 1561 | } |
Chris Lattner | 682bf92 | 2009-03-29 16:50:03 +0000 | [diff] [blame] | 1562 | } |
Fariborz Jahanian | 38e24c7 | 2009-03-18 22:33:24 +0000 | [diff] [blame] | 1563 | } |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1564 | } |
| 1565 | |
| 1566 | |
| 1567 | /// CvtQTToAstBitMask - utility routine to produce an AST bitmask for |
| 1568 | /// objective-c's type qualifier from the parser version of the same info. |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1569 | static Decl::ObjCDeclQualifier |
| 1570 | CvtQTToAstBitMask(ObjCDeclSpec::ObjCDeclQualifier PQTVal) { |
| 1571 | Decl::ObjCDeclQualifier ret = Decl::OBJC_TQ_None; |
| 1572 | if (PQTVal & ObjCDeclSpec::DQ_In) |
| 1573 | ret = (Decl::ObjCDeclQualifier)(ret | Decl::OBJC_TQ_In); |
| 1574 | if (PQTVal & ObjCDeclSpec::DQ_Inout) |
| 1575 | ret = (Decl::ObjCDeclQualifier)(ret | Decl::OBJC_TQ_Inout); |
| 1576 | if (PQTVal & ObjCDeclSpec::DQ_Out) |
| 1577 | ret = (Decl::ObjCDeclQualifier)(ret | Decl::OBJC_TQ_Out); |
| 1578 | if (PQTVal & ObjCDeclSpec::DQ_Bycopy) |
| 1579 | ret = (Decl::ObjCDeclQualifier)(ret | Decl::OBJC_TQ_Bycopy); |
| 1580 | if (PQTVal & ObjCDeclSpec::DQ_Byref) |
| 1581 | ret = (Decl::ObjCDeclQualifier)(ret | Decl::OBJC_TQ_Byref); |
| 1582 | if (PQTVal & ObjCDeclSpec::DQ_Oneway) |
| 1583 | ret = (Decl::ObjCDeclQualifier)(ret | Decl::OBJC_TQ_Oneway); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1584 | |
| 1585 | return ret; |
| 1586 | } |
| 1587 | |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 1588 | Sema::DeclPtrTy Sema::ActOnMethodDeclaration( |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1589 | SourceLocation MethodLoc, SourceLocation EndLoc, |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 1590 | tok::TokenKind MethodType, DeclPtrTy classDecl, |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1591 | ObjCDeclSpec &ReturnQT, TypeTy *ReturnType, |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1592 | Selector Sel, |
| 1593 | // optional arguments. The number of types/arguments is obtained |
| 1594 | // from the Sel.getNumArgs(). |
Chris Lattner | e294d3f | 2009-04-11 18:57:04 +0000 | [diff] [blame] | 1595 | ObjCArgInfo *ArgInfo, |
Fariborz Jahanian | 439c658 | 2009-01-09 00:38:19 +0000 | [diff] [blame] | 1596 | llvm::SmallVectorImpl<Declarator> &Cdecls, |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1597 | AttributeList *AttrList, tok::ObjCKeywordKind MethodDeclKind, |
| 1598 | bool isVariadic) { |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 1599 | Decl *ClassDecl = classDecl.getAs<Decl>(); |
Steve Naroff | da323ad | 2008-02-29 21:48:07 +0000 | [diff] [blame] | 1600 | |
| 1601 | // Make sure we can establish a context for the method. |
| 1602 | if (!ClassDecl) { |
| 1603 | Diag(MethodLoc, diag::error_missing_method_context); |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 1604 | return DeclPtrTy(); |
Steve Naroff | da323ad | 2008-02-29 21:48:07 +0000 | [diff] [blame] | 1605 | } |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1606 | QualType resultDeclType; |
| 1607 | |
Steve Naroff | ccef371 | 2009-02-20 22:59:16 +0000 | [diff] [blame] | 1608 | if (ReturnType) { |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1609 | resultDeclType = QualType::getFromOpaquePtr(ReturnType); |
Steve Naroff | ccef371 | 2009-02-20 22:59:16 +0000 | [diff] [blame] | 1610 | |
| 1611 | // Methods cannot return interface types. All ObjC objects are |
| 1612 | // passed by reference. |
| 1613 | if (resultDeclType->isObjCInterfaceType()) { |
Chris Lattner | 2dd979f | 2009-04-11 19:08:56 +0000 | [diff] [blame] | 1614 | Diag(MethodLoc, diag::err_object_cannot_be_passed_returned_by_value) |
| 1615 | << 0 << resultDeclType; |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 1616 | return DeclPtrTy(); |
Steve Naroff | ccef371 | 2009-02-20 22:59:16 +0000 | [diff] [blame] | 1617 | } |
| 1618 | } else // get the type for "id". |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1619 | resultDeclType = Context.getObjCIdType(); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1620 | |
Chris Lattner | 6c4ae5d | 2008-03-16 00:49:28 +0000 | [diff] [blame] | 1621 | ObjCMethodDecl* ObjCMethod = |
| 1622 | ObjCMethodDecl::Create(Context, MethodLoc, EndLoc, Sel, resultDeclType, |
Chris Lattner | 32d3f9c | 2009-03-29 04:30:19 +0000 | [diff] [blame] | 1623 | cast<DeclContext>(ClassDecl), |
Chris Lattner | 6c4ae5d | 2008-03-16 00:49:28 +0000 | [diff] [blame] | 1624 | MethodType == tok::minus, isVariadic, |
Fariborz Jahanian | 4607034 | 2008-05-07 20:53:44 +0000 | [diff] [blame] | 1625 | false, |
Chris Lattner | 6c4ae5d | 2008-03-16 00:49:28 +0000 | [diff] [blame] | 1626 | MethodDeclKind == tok::objc_optional ? |
| 1627 | ObjCMethodDecl::Optional : |
| 1628 | ObjCMethodDecl::Required); |
| 1629 | |
Chris Lattner | 0ed844b | 2008-04-04 06:12:32 +0000 | [diff] [blame] | 1630 | llvm::SmallVector<ParmVarDecl*, 16> Params; |
| 1631 | |
Chris Lattner | 7db638d | 2009-04-11 19:42:43 +0000 | [diff] [blame] | 1632 | for (unsigned i = 0, e = Sel.getNumArgs(); i != e; ++i) { |
Chris Lattner | 2dd979f | 2009-04-11 19:08:56 +0000 | [diff] [blame] | 1633 | QualType ArgType, UnpromotedArgType; |
Chris Lattner | 0ed844b | 2008-04-04 06:12:32 +0000 | [diff] [blame] | 1634 | |
Chris Lattner | e294d3f | 2009-04-11 18:57:04 +0000 | [diff] [blame] | 1635 | if (ArgInfo[i].Type == 0) { |
Chris Lattner | 2dd979f | 2009-04-11 19:08:56 +0000 | [diff] [blame] | 1636 | UnpromotedArgType = ArgType = Context.getObjCIdType(); |
Chris Lattner | e294d3f | 2009-04-11 18:57:04 +0000 | [diff] [blame] | 1637 | } else { |
Chris Lattner | 2dd979f | 2009-04-11 19:08:56 +0000 | [diff] [blame] | 1638 | UnpromotedArgType = ArgType = QualType::getFromOpaquePtr(ArgInfo[i].Type); |
Steve Naroff | 6082c62 | 2008-12-09 19:36:17 +0000 | [diff] [blame] | 1639 | // Perform the default array/function conversions (C99 6.7.5.3p[7,8]). |
Chris Lattner | f97e8fa | 2009-04-11 19:34:56 +0000 | [diff] [blame] | 1640 | ArgType = adjustParameterType(ArgType); |
Chris Lattner | e294d3f | 2009-04-11 18:57:04 +0000 | [diff] [blame] | 1641 | } |
| 1642 | |
Fariborz Jahanian | 4306d3c | 2008-12-20 23:29:59 +0000 | [diff] [blame] | 1643 | ParmVarDecl* Param; |
Chris Lattner | 2dd979f | 2009-04-11 19:08:56 +0000 | [diff] [blame] | 1644 | if (ArgType == UnpromotedArgType) |
Chris Lattner | 7db638d | 2009-04-11 19:42:43 +0000 | [diff] [blame] | 1645 | Param = ParmVarDecl::Create(Context, ObjCMethod, ArgInfo[i].NameLoc, |
Chris Lattner | 2dd979f | 2009-04-11 19:08:56 +0000 | [diff] [blame] | 1646 | ArgInfo[i].Name, ArgType, |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 1647 | VarDecl::None, 0); |
Fariborz Jahanian | 4306d3c | 2008-12-20 23:29:59 +0000 | [diff] [blame] | 1648 | else |
Douglas Gregor | 64650af | 2009-02-02 23:39:07 +0000 | [diff] [blame] | 1649 | Param = OriginalParmVarDecl::Create(Context, ObjCMethod, |
Chris Lattner | 7db638d | 2009-04-11 19:42:43 +0000 | [diff] [blame] | 1650 | ArgInfo[i].NameLoc, |
Chris Lattner | 2dd979f | 2009-04-11 19:08:56 +0000 | [diff] [blame] | 1651 | ArgInfo[i].Name, ArgType, |
| 1652 | UnpromotedArgType, |
Douglas Gregor | 64650af | 2009-02-02 23:39:07 +0000 | [diff] [blame] | 1653 | VarDecl::None, 0); |
Fariborz Jahanian | 4306d3c | 2008-12-20 23:29:59 +0000 | [diff] [blame] | 1654 | |
Chris Lattner | f97e8fa | 2009-04-11 19:34:56 +0000 | [diff] [blame] | 1655 | if (ArgType->isObjCInterfaceType()) { |
| 1656 | Diag(ArgInfo[i].NameLoc, |
| 1657 | diag::err_object_cannot_be_passed_returned_by_value) |
| 1658 | << 1 << ArgType; |
| 1659 | Param->setInvalidDecl(); |
| 1660 | } |
| 1661 | |
Chris Lattner | 0ed844b | 2008-04-04 06:12:32 +0000 | [diff] [blame] | 1662 | Param->setObjCDeclQualifier( |
Chris Lattner | e294d3f | 2009-04-11 18:57:04 +0000 | [diff] [blame] | 1663 | CvtQTToAstBitMask(ArgInfo[i].DeclSpec.getObjCDeclQualifier())); |
Chris Lattner | f97e8fa | 2009-04-11 19:34:56 +0000 | [diff] [blame] | 1664 | |
| 1665 | // Apply the attributes to the parameter. |
| 1666 | ProcessDeclAttributeList(Param, ArgInfo[i].ArgAttrs); |
| 1667 | |
Chris Lattner | 0ed844b | 2008-04-04 06:12:32 +0000 | [diff] [blame] | 1668 | Params.push_back(Param); |
| 1669 | } |
| 1670 | |
Jay Foad | beaaccd | 2009-05-21 09:52:38 +0000 | [diff] [blame] | 1671 | ObjCMethod->setMethodParams(Context, Params.data(), Sel.getNumArgs()); |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1672 | ObjCMethod->setObjCDeclQualifier( |
| 1673 | CvtQTToAstBitMask(ReturnQT.getObjCDeclQualifier())); |
| 1674 | const ObjCMethodDecl *PrevMethod = 0; |
Daniel Dunbar | 3568249 | 2008-09-26 04:12:28 +0000 | [diff] [blame] | 1675 | |
| 1676 | if (AttrList) |
| 1677 | ProcessDeclAttributeList(ObjCMethod, AttrList); |
Ted Kremenek | b27d117 | 2009-04-30 18:41:06 +0000 | [diff] [blame] | 1678 | |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1679 | // For implementations (which can be very "coarse grain"), we add the |
| 1680 | // method now. This allows the AST to implement lookup methods that work |
| 1681 | // incrementally (without waiting until we parse the @end). It also allows |
| 1682 | // us to flag multiple declaration errors as they occur. |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1683 | if (ObjCImplementationDecl *ImpDecl = |
Chris Lattner | 6c4ae5d | 2008-03-16 00:49:28 +0000 | [diff] [blame] | 1684 | dyn_cast<ObjCImplementationDecl>(ClassDecl)) { |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1685 | if (MethodType == tok::minus) { |
Douglas Gregor | 653f1b1 | 2009-04-23 01:02:12 +0000 | [diff] [blame] | 1686 | PrevMethod = ImpDecl->getInstanceMethod(Context, Sel); |
| 1687 | ImpDecl->addInstanceMethod(Context, ObjCMethod); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1688 | } else { |
Douglas Gregor | 653f1b1 | 2009-04-23 01:02:12 +0000 | [diff] [blame] | 1689 | PrevMethod = ImpDecl->getClassMethod(Context, Sel); |
| 1690 | ImpDecl->addClassMethod(Context, ObjCMethod); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1691 | } |
Fariborz Jahanian | 5d36ac2 | 2009-05-12 21:36:23 +0000 | [diff] [blame] | 1692 | if (AttrList) |
| 1693 | Diag(EndLoc, diag::warn_attribute_method_def); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1694 | } |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1695 | else if (ObjCCategoryImplDecl *CatImpDecl = |
Chris Lattner | 6c4ae5d | 2008-03-16 00:49:28 +0000 | [diff] [blame] | 1696 | dyn_cast<ObjCCategoryImplDecl>(ClassDecl)) { |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1697 | if (MethodType == tok::minus) { |
Douglas Gregor | 653f1b1 | 2009-04-23 01:02:12 +0000 | [diff] [blame] | 1698 | PrevMethod = CatImpDecl->getInstanceMethod(Context, Sel); |
| 1699 | CatImpDecl->addInstanceMethod(Context, ObjCMethod); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1700 | } else { |
Douglas Gregor | 653f1b1 | 2009-04-23 01:02:12 +0000 | [diff] [blame] | 1701 | PrevMethod = CatImpDecl->getClassMethod(Context, Sel); |
| 1702 | CatImpDecl->addClassMethod(Context, ObjCMethod); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1703 | } |
Fariborz Jahanian | 5d36ac2 | 2009-05-12 21:36:23 +0000 | [diff] [blame] | 1704 | if (AttrList) |
| 1705 | Diag(EndLoc, diag::warn_attribute_method_def); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1706 | } |
| 1707 | if (PrevMethod) { |
| 1708 | // You can never have two method definitions with the same name. |
Chris Lattner | 5f4a682 | 2008-11-23 23:12:31 +0000 | [diff] [blame] | 1709 | Diag(ObjCMethod->getLocation(), diag::err_duplicate_method_decl) |
Chris Lattner | 077bf5e | 2008-11-24 03:33:13 +0000 | [diff] [blame] | 1710 | << ObjCMethod->getDeclName(); |
Chris Lattner | 5f4a682 | 2008-11-23 23:12:31 +0000 | [diff] [blame] | 1711 | Diag(PrevMethod->getLocation(), diag::note_previous_declaration); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1712 | } |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 1713 | return DeclPtrTy::make(ObjCMethod); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1714 | } |
| 1715 | |
Daniel Dunbar | 95e61fb | 2008-09-23 21:53:23 +0000 | [diff] [blame] | 1716 | void Sema::CheckObjCPropertyAttributes(QualType PropertyTy, |
| 1717 | SourceLocation Loc, |
| 1718 | unsigned &Attributes) { |
| 1719 | // FIXME: Improve the reported location. |
| 1720 | |
Fariborz Jahanian | 567c8df | 2008-12-06 01:12:43 +0000 | [diff] [blame] | 1721 | // readonly and readwrite/assign/retain/copy conflict. |
Daniel Dunbar | 95e61fb | 2008-09-23 21:53:23 +0000 | [diff] [blame] | 1722 | if ((Attributes & ObjCDeclSpec::DQ_PR_readonly) && |
Fariborz Jahanian | 567c8df | 2008-12-06 01:12:43 +0000 | [diff] [blame] | 1723 | (Attributes & (ObjCDeclSpec::DQ_PR_readwrite | |
| 1724 | ObjCDeclSpec::DQ_PR_assign | |
| 1725 | ObjCDeclSpec::DQ_PR_copy | |
| 1726 | ObjCDeclSpec::DQ_PR_retain))) { |
| 1727 | const char * which = (Attributes & ObjCDeclSpec::DQ_PR_readwrite) ? |
| 1728 | "readwrite" : |
| 1729 | (Attributes & ObjCDeclSpec::DQ_PR_assign) ? |
| 1730 | "assign" : |
| 1731 | (Attributes & ObjCDeclSpec::DQ_PR_copy) ? |
| 1732 | "copy" : "retain"; |
| 1733 | |
Fariborz Jahanian | ba45da8 | 2008-12-08 19:28:10 +0000 | [diff] [blame] | 1734 | Diag(Loc, (Attributes & (ObjCDeclSpec::DQ_PR_readwrite)) ? |
Chris Lattner | 28372fa | 2009-01-29 18:49:48 +0000 | [diff] [blame] | 1735 | diag::err_objc_property_attr_mutually_exclusive : |
| 1736 | diag::warn_objc_property_attr_mutually_exclusive) |
Fariborz Jahanian | 567c8df | 2008-12-06 01:12:43 +0000 | [diff] [blame] | 1737 | << "readonly" << which; |
Daniel Dunbar | 95e61fb | 2008-09-23 21:53:23 +0000 | [diff] [blame] | 1738 | } |
| 1739 | |
| 1740 | // Check for copy or retain on non-object types. |
| 1741 | if ((Attributes & (ObjCDeclSpec::DQ_PR_copy | ObjCDeclSpec::DQ_PR_retain)) && |
| 1742 | !Context.isObjCObjectPointerType(PropertyTy)) { |
Chris Lattner | 5dc266a | 2008-11-20 06:13:02 +0000 | [diff] [blame] | 1743 | Diag(Loc, diag::err_objc_property_requires_object) |
| 1744 | << (Attributes & ObjCDeclSpec::DQ_PR_copy ? "copy" : "retain"); |
Daniel Dunbar | 95e61fb | 2008-09-23 21:53:23 +0000 | [diff] [blame] | 1745 | Attributes &= ~(ObjCDeclSpec::DQ_PR_copy | ObjCDeclSpec::DQ_PR_retain); |
| 1746 | } |
| 1747 | |
| 1748 | // Check for more than one of { assign, copy, retain }. |
| 1749 | if (Attributes & ObjCDeclSpec::DQ_PR_assign) { |
| 1750 | if (Attributes & ObjCDeclSpec::DQ_PR_copy) { |
Chris Lattner | 5dc266a | 2008-11-20 06:13:02 +0000 | [diff] [blame] | 1751 | Diag(Loc, diag::err_objc_property_attr_mutually_exclusive) |
| 1752 | << "assign" << "copy"; |
| 1753 | Attributes &= ~ObjCDeclSpec::DQ_PR_copy; |
Daniel Dunbar | 95e61fb | 2008-09-23 21:53:23 +0000 | [diff] [blame] | 1754 | } |
| 1755 | if (Attributes & ObjCDeclSpec::DQ_PR_retain) { |
Chris Lattner | 5dc266a | 2008-11-20 06:13:02 +0000 | [diff] [blame] | 1756 | Diag(Loc, diag::err_objc_property_attr_mutually_exclusive) |
| 1757 | << "assign" << "retain"; |
| 1758 | Attributes &= ~ObjCDeclSpec::DQ_PR_retain; |
Daniel Dunbar | 95e61fb | 2008-09-23 21:53:23 +0000 | [diff] [blame] | 1759 | } |
| 1760 | } else if (Attributes & ObjCDeclSpec::DQ_PR_copy) { |
| 1761 | if (Attributes & ObjCDeclSpec::DQ_PR_retain) { |
Chris Lattner | 5dc266a | 2008-11-20 06:13:02 +0000 | [diff] [blame] | 1762 | Diag(Loc, diag::err_objc_property_attr_mutually_exclusive) |
| 1763 | << "copy" << "retain"; |
| 1764 | Attributes &= ~ObjCDeclSpec::DQ_PR_retain; |
Daniel Dunbar | 95e61fb | 2008-09-23 21:53:23 +0000 | [diff] [blame] | 1765 | } |
| 1766 | } |
| 1767 | |
| 1768 | // Warn if user supplied no assignment attribute, property is |
| 1769 | // readwrite, and this is an object type. |
| 1770 | if (!(Attributes & (ObjCDeclSpec::DQ_PR_assign | ObjCDeclSpec::DQ_PR_copy | |
| 1771 | ObjCDeclSpec::DQ_PR_retain)) && |
| 1772 | !(Attributes & ObjCDeclSpec::DQ_PR_readonly) && |
| 1773 | Context.isObjCObjectPointerType(PropertyTy)) { |
| 1774 | // Skip this warning in gc-only mode. |
| 1775 | if (getLangOptions().getGCMode() != LangOptions::GCOnly) |
| 1776 | Diag(Loc, diag::warn_objc_property_no_assignment_attribute); |
| 1777 | |
| 1778 | // If non-gc code warn that this is likely inappropriate. |
| 1779 | if (getLangOptions().getGCMode() == LangOptions::NonGC) |
| 1780 | Diag(Loc, diag::warn_objc_property_default_assign_on_object); |
| 1781 | |
| 1782 | // FIXME: Implement warning dependent on NSCopying being |
| 1783 | // implemented. See also: |
| 1784 | // <rdar://5168496&4855821&5607453&5096644&4947311&5698469&4947014&5168496> |
| 1785 | // (please trim this list while you are at it). |
| 1786 | } |
Mike Stump | 046efd9 | 2009-05-07 23:06:50 +0000 | [diff] [blame] | 1787 | |
| 1788 | if (!(Attributes & ObjCDeclSpec::DQ_PR_copy) |
| 1789 | && getLangOptions().getGCMode() == LangOptions::GCOnly |
| 1790 | && PropertyTy->isBlockPointerType()) |
| 1791 | Diag(Loc, diag::warn_objc_property_copy_missing_on_block); |
Daniel Dunbar | 95e61fb | 2008-09-23 21:53:23 +0000 | [diff] [blame] | 1792 | } |
| 1793 | |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 1794 | Sema::DeclPtrTy Sema::ActOnProperty(Scope *S, SourceLocation AtLoc, |
| 1795 | FieldDeclarator &FD, |
| 1796 | ObjCDeclSpec &ODS, |
| 1797 | Selector GetterSel, |
| 1798 | Selector SetterSel, |
| 1799 | DeclPtrTy ClassCategory, |
| 1800 | bool *isOverridingProperty, |
| 1801 | tok::ObjCKeywordKind MethodImplKind) { |
Daniel Dunbar | 95e61fb | 2008-09-23 21:53:23 +0000 | [diff] [blame] | 1802 | unsigned Attributes = ODS.getPropertyAttributes(); |
Fariborz Jahanian | 8cf0bb3 | 2008-11-26 20:01:34 +0000 | [diff] [blame] | 1803 | bool isReadWrite = ((Attributes & ObjCDeclSpec::DQ_PR_readwrite) || |
| 1804 | // default is readwrite! |
| 1805 | !(Attributes & ObjCDeclSpec::DQ_PR_readonly)); |
| 1806 | // property is defaulted to 'assign' if it is readwrite and is |
| 1807 | // not retain or copy |
| 1808 | bool isAssign = ((Attributes & ObjCDeclSpec::DQ_PR_assign) || |
| 1809 | (isReadWrite && |
| 1810 | !(Attributes & ObjCDeclSpec::DQ_PR_retain) && |
| 1811 | !(Attributes & ObjCDeclSpec::DQ_PR_copy))); |
| 1812 | QualType T = GetTypeForDeclarator(FD.D, S); |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 1813 | Decl *ClassDecl = ClassCategory.getAs<Decl>(); |
Fariborz Jahanian | d09a456 | 2009-04-02 18:44:20 +0000 | [diff] [blame] | 1814 | ObjCInterfaceDecl *CCPrimary = 0; // continuation class's primary class |
Daniel Dunbar | 95e61fb | 2008-09-23 21:53:23 +0000 | [diff] [blame] | 1815 | // May modify Attributes. |
| 1816 | CheckObjCPropertyAttributes(T, AtLoc, Attributes); |
Fariborz Jahanian | 8cf0bb3 | 2008-11-26 20:01:34 +0000 | [diff] [blame] | 1817 | if (ObjCCategoryDecl *CDecl = dyn_cast<ObjCCategoryDecl>(ClassDecl)) |
| 1818 | if (!CDecl->getIdentifier()) { |
Fariborz Jahanian | 22b6e06 | 2009-04-01 23:23:53 +0000 | [diff] [blame] | 1819 | // This is a continuation class. property requires special |
Fariborz Jahanian | 8cf0bb3 | 2008-11-26 20:01:34 +0000 | [diff] [blame] | 1820 | // handling. |
Fariborz Jahanian | d09a456 | 2009-04-02 18:44:20 +0000 | [diff] [blame] | 1821 | if ((CCPrimary = CDecl->getClassInterface())) { |
| 1822 | // Find the property in continuation class's primary class only. |
| 1823 | ObjCPropertyDecl *PIDecl = 0; |
| 1824 | IdentifierInfo *PropertyId = FD.D.getIdentifier(); |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 1825 | for (ObjCInterfaceDecl::prop_iterator |
| 1826 | I = CCPrimary->prop_begin(Context), |
| 1827 | E = CCPrimary->prop_end(Context); |
| 1828 | I != E; ++I) |
Fariborz Jahanian | d09a456 | 2009-04-02 18:44:20 +0000 | [diff] [blame] | 1829 | if ((*I)->getIdentifier() == PropertyId) { |
| 1830 | PIDecl = *I; |
| 1831 | break; |
| 1832 | } |
| 1833 | |
| 1834 | if (PIDecl) { |
Fariborz Jahanian | 8cf0bb3 | 2008-11-26 20:01:34 +0000 | [diff] [blame] | 1835 | // property 'PIDecl's readonly attribute will be over-ridden |
Fariborz Jahanian | 22b6e06 | 2009-04-01 23:23:53 +0000 | [diff] [blame] | 1836 | // with continuation class's readwrite property attribute! |
Fariborz Jahanian | 8cf0bb3 | 2008-11-26 20:01:34 +0000 | [diff] [blame] | 1837 | unsigned PIkind = PIDecl->getPropertyAttributes(); |
| 1838 | if (isReadWrite && (PIkind & ObjCPropertyDecl::OBJC_PR_readonly)) { |
Fariborz Jahanian | 9bfb2a2 | 2008-12-08 18:47:29 +0000 | [diff] [blame] | 1839 | if ((Attributes & ObjCPropertyDecl::OBJC_PR_nonatomic) != |
Fariborz Jahanian | 8cf0bb3 | 2008-11-26 20:01:34 +0000 | [diff] [blame] | 1840 | (PIkind & ObjCPropertyDecl::OBJC_PR_nonatomic)) |
| 1841 | Diag(AtLoc, diag::warn_property_attr_mismatch); |
Fariborz Jahanian | d09a456 | 2009-04-02 18:44:20 +0000 | [diff] [blame] | 1842 | PIDecl->makeitReadWriteAttribute(); |
| 1843 | if (Attributes & ObjCDeclSpec::DQ_PR_retain) |
| 1844 | PIDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_retain); |
| 1845 | if (Attributes & ObjCDeclSpec::DQ_PR_copy) |
| 1846 | PIDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_copy); |
| 1847 | PIDecl->setSetterName(SetterSel); |
Fariborz Jahanian | 8cf0bb3 | 2008-11-26 20:01:34 +0000 | [diff] [blame] | 1848 | } |
Fariborz Jahanian | d09a456 | 2009-04-02 18:44:20 +0000 | [diff] [blame] | 1849 | else |
| 1850 | Diag(AtLoc, diag::err_use_continuation_class) |
| 1851 | << CCPrimary->getDeclName(); |
| 1852 | *isOverridingProperty = true; |
Fariborz Jahanian | 50c314c | 2009-04-15 19:19:03 +0000 | [diff] [blame] | 1853 | // Make sure setter decl is synthesized, and added to primary |
| 1854 | // class's list. |
| 1855 | ProcessPropertyDecl(PIDecl, CCPrimary); |
Fariborz Jahanian | d09a456 | 2009-04-02 18:44:20 +0000 | [diff] [blame] | 1856 | return DeclPtrTy(); |
Fariborz Jahanian | 8cf0bb3 | 2008-11-26 20:01:34 +0000 | [diff] [blame] | 1857 | } |
Fariborz Jahanian | d09a456 | 2009-04-02 18:44:20 +0000 | [diff] [blame] | 1858 | // No matching property found in the primary class. Just fall thru |
| 1859 | // and add property to continuation class's primary class. |
| 1860 | ClassDecl = CCPrimary; |
Fariborz Jahanian | 8cf0bb3 | 2008-11-26 20:01:34 +0000 | [diff] [blame] | 1861 | } else { |
Chris Lattner | f25df99 | 2009-02-20 21:38:52 +0000 | [diff] [blame] | 1862 | Diag(CDecl->getLocation(), diag::err_continuation_class); |
| 1863 | *isOverridingProperty = true; |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 1864 | return DeclPtrTy(); |
Fariborz Jahanian | d09a456 | 2009-04-02 18:44:20 +0000 | [diff] [blame] | 1865 | } |
Fariborz Jahanian | 8cf0bb3 | 2008-11-26 20:01:34 +0000 | [diff] [blame] | 1866 | } |
Daniel Dunbar | 95e61fb | 2008-09-23 21:53:23 +0000 | [diff] [blame] | 1867 | |
Steve Naroff | 93983f8 | 2009-01-11 12:47:58 +0000 | [diff] [blame] | 1868 | DeclContext *DC = dyn_cast<DeclContext>(ClassDecl); |
| 1869 | assert(DC && "ClassDecl is not a DeclContext"); |
Chris Lattner | d1e0f5a | 2009-04-11 20:14:49 +0000 | [diff] [blame] | 1870 | ObjCPropertyDecl *PDecl = ObjCPropertyDecl::Create(Context, DC, |
| 1871 | FD.D.getIdentifierLoc(), |
Fariborz Jahanian | 1de1e74 | 2008-04-14 23:36:35 +0000 | [diff] [blame] | 1872 | FD.D.getIdentifier(), T); |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 1873 | DC->addDecl(Context, PDecl); |
Chris Lattner | 97a5887 | 2009-02-16 18:32:47 +0000 | [diff] [blame] | 1874 | |
Chris Lattner | d1e0f5a | 2009-04-11 20:14:49 +0000 | [diff] [blame] | 1875 | if (T->isArrayType() || T->isFunctionType()) { |
| 1876 | Diag(AtLoc, diag::err_property_type) << T; |
| 1877 | PDecl->setInvalidDecl(); |
| 1878 | } |
| 1879 | |
Chris Lattner | 97a5887 | 2009-02-16 18:32:47 +0000 | [diff] [blame] | 1880 | ProcessDeclAttributes(PDecl, FD.D); |
Douglas Gregor | d043410 | 2009-01-09 00:49:46 +0000 | [diff] [blame] | 1881 | |
Fariborz Jahanian | 33de3f0 | 2008-05-07 17:43:59 +0000 | [diff] [blame] | 1882 | // Regardless of setter/getter attribute, we save the default getter/setter |
| 1883 | // selector names in anticipation of declaration of setter/getter methods. |
| 1884 | PDecl->setGetterName(GetterSel); |
| 1885 | PDecl->setSetterName(SetterSel); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1886 | |
Daniel Dunbar | 95e61fb | 2008-09-23 21:53:23 +0000 | [diff] [blame] | 1887 | if (Attributes & ObjCDeclSpec::DQ_PR_readonly) |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1888 | PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_readonly); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1889 | |
Daniel Dunbar | 95e61fb | 2008-09-23 21:53:23 +0000 | [diff] [blame] | 1890 | if (Attributes & ObjCDeclSpec::DQ_PR_getter) |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1891 | PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_getter); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1892 | |
Daniel Dunbar | 95e61fb | 2008-09-23 21:53:23 +0000 | [diff] [blame] | 1893 | if (Attributes & ObjCDeclSpec::DQ_PR_setter) |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1894 | PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_setter); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1895 | |
Fariborz Jahanian | 8cf0bb3 | 2008-11-26 20:01:34 +0000 | [diff] [blame] | 1896 | if (isReadWrite) |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1897 | PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_readwrite); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1898 | |
Daniel Dunbar | 95e61fb | 2008-09-23 21:53:23 +0000 | [diff] [blame] | 1899 | if (Attributes & ObjCDeclSpec::DQ_PR_retain) |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1900 | PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_retain); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1901 | |
Daniel Dunbar | 95e61fb | 2008-09-23 21:53:23 +0000 | [diff] [blame] | 1902 | if (Attributes & ObjCDeclSpec::DQ_PR_copy) |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1903 | PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_copy); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1904 | |
Fariborz Jahanian | 8cf0bb3 | 2008-11-26 20:01:34 +0000 | [diff] [blame] | 1905 | if (isAssign) |
| 1906 | PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_assign); |
| 1907 | |
Daniel Dunbar | 95e61fb | 2008-09-23 21:53:23 +0000 | [diff] [blame] | 1908 | if (Attributes & ObjCDeclSpec::DQ_PR_nonatomic) |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1909 | PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_nonatomic); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1910 | |
Fariborz Jahanian | 46b55e5 | 2008-05-05 18:51:55 +0000 | [diff] [blame] | 1911 | if (MethodImplKind == tok::objc_required) |
| 1912 | PDecl->setPropertyImplementation(ObjCPropertyDecl::Required); |
| 1913 | else if (MethodImplKind == tok::objc_optional) |
| 1914 | PDecl->setPropertyImplementation(ObjCPropertyDecl::Optional); |
Fariborz Jahanian | d09a456 | 2009-04-02 18:44:20 +0000 | [diff] [blame] | 1915 | // A case of continuation class adding a new property in the class. This |
| 1916 | // is not what it was meant for. However, gcc supports it and so should we. |
| 1917 | // Make sure setter/getters are declared here. |
| 1918 | if (CCPrimary) |
| 1919 | ProcessPropertyDecl(PDecl, CCPrimary); |
Fariborz Jahanian | 46b55e5 | 2008-05-05 18:51:55 +0000 | [diff] [blame] | 1920 | |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 1921 | return DeclPtrTy::make(PDecl); |
Chris Lattner | 4d39148 | 2007-12-12 07:09:47 +0000 | [diff] [blame] | 1922 | } |
| 1923 | |
Fariborz Jahanian | 559c0c4 | 2008-04-21 19:04:53 +0000 | [diff] [blame] | 1924 | /// ActOnPropertyImplDecl - This routine performs semantic checks and |
| 1925 | /// builds the AST node for a property implementation declaration; declared |
| 1926 | /// as @synthesize or @dynamic. |
Fariborz Jahanian | f624f81 | 2008-04-18 00:19:30 +0000 | [diff] [blame] | 1927 | /// |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 1928 | Sema::DeclPtrTy Sema::ActOnPropertyImplDecl(SourceLocation AtLoc, |
| 1929 | SourceLocation PropertyLoc, |
| 1930 | bool Synthesize, |
| 1931 | DeclPtrTy ClassCatImpDecl, |
| 1932 | IdentifierInfo *PropertyId, |
| 1933 | IdentifierInfo *PropertyIvar) { |
| 1934 | Decl *ClassImpDecl = ClassCatImpDecl.getAs<Decl>(); |
Fariborz Jahanian | f624f81 | 2008-04-18 00:19:30 +0000 | [diff] [blame] | 1935 | // Make sure we have a context for the property implementation declaration. |
| 1936 | if (!ClassImpDecl) { |
| 1937 | Diag(AtLoc, diag::error_missing_property_context); |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 1938 | return DeclPtrTy(); |
Fariborz Jahanian | f624f81 | 2008-04-18 00:19:30 +0000 | [diff] [blame] | 1939 | } |
| 1940 | ObjCPropertyDecl *property = 0; |
| 1941 | ObjCInterfaceDecl* IDecl = 0; |
| 1942 | // Find the class or category class where this property must have |
| 1943 | // a declaration. |
Fariborz Jahanian | 628b96f | 2008-04-23 00:06:01 +0000 | [diff] [blame] | 1944 | ObjCImplementationDecl *IC = 0; |
| 1945 | ObjCCategoryImplDecl* CatImplClass = 0; |
| 1946 | if ((IC = dyn_cast<ObjCImplementationDecl>(ClassImpDecl))) { |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 1947 | IDecl = IC->getClassInterface(); |
Fariborz Jahanian | c35b9e4 | 2008-04-21 21:05:54 +0000 | [diff] [blame] | 1948 | // We always synthesize an interface for an implementation |
| 1949 | // without an interface decl. So, IDecl is always non-zero. |
| 1950 | assert(IDecl && |
| 1951 | "ActOnPropertyImplDecl - @implementation without @interface"); |
| 1952 | |
Fariborz Jahanian | f624f81 | 2008-04-18 00:19:30 +0000 | [diff] [blame] | 1953 | // Look for this property declaration in the @implementation's @interface |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 1954 | property = IDecl->FindPropertyDeclaration(Context, PropertyId); |
Fariborz Jahanian | 559c0c4 | 2008-04-21 19:04:53 +0000 | [diff] [blame] | 1955 | if (!property) { |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 1956 | Diag(PropertyLoc, diag::error_bad_property_decl) << IDecl->getDeclName(); |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 1957 | return DeclPtrTy(); |
Fariborz Jahanian | 559c0c4 | 2008-04-21 19:04:53 +0000 | [diff] [blame] | 1958 | } |
Fariborz Jahanian | f624f81 | 2008-04-18 00:19:30 +0000 | [diff] [blame] | 1959 | } |
Fariborz Jahanian | 628b96f | 2008-04-23 00:06:01 +0000 | [diff] [blame] | 1960 | else if ((CatImplClass = dyn_cast<ObjCCategoryImplDecl>(ClassImpDecl))) { |
Fariborz Jahanian | c35b9e4 | 2008-04-21 21:05:54 +0000 | [diff] [blame] | 1961 | if (Synthesize) { |
| 1962 | Diag(AtLoc, diag::error_synthesize_category_decl); |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 1963 | return DeclPtrTy(); |
Fariborz Jahanian | c35b9e4 | 2008-04-21 21:05:54 +0000 | [diff] [blame] | 1964 | } |
Fariborz Jahanian | f624f81 | 2008-04-18 00:19:30 +0000 | [diff] [blame] | 1965 | IDecl = CatImplClass->getClassInterface(); |
| 1966 | if (!IDecl) { |
| 1967 | Diag(AtLoc, diag::error_missing_property_interface); |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 1968 | return DeclPtrTy(); |
Fariborz Jahanian | f624f81 | 2008-04-18 00:19:30 +0000 | [diff] [blame] | 1969 | } |
Fariborz Jahanian | 559c0c4 | 2008-04-21 19:04:53 +0000 | [diff] [blame] | 1970 | ObjCCategoryDecl *Category = |
| 1971 | IDecl->FindCategoryDeclaration(CatImplClass->getIdentifier()); |
| 1972 | |
Fariborz Jahanian | f624f81 | 2008-04-18 00:19:30 +0000 | [diff] [blame] | 1973 | // If category for this implementation not found, it is an error which |
| 1974 | // has already been reported eralier. |
Fariborz Jahanian | 559c0c4 | 2008-04-21 19:04:53 +0000 | [diff] [blame] | 1975 | if (!Category) |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 1976 | return DeclPtrTy(); |
Fariborz Jahanian | f624f81 | 2008-04-18 00:19:30 +0000 | [diff] [blame] | 1977 | // Look for this property declaration in @implementation's category |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 1978 | property = Category->FindPropertyDeclaration(Context, PropertyId); |
Fariborz Jahanian | 559c0c4 | 2008-04-21 19:04:53 +0000 | [diff] [blame] | 1979 | if (!property) { |
Chris Lattner | 5dc266a | 2008-11-20 06:13:02 +0000 | [diff] [blame] | 1980 | Diag(PropertyLoc, diag::error_bad_category_property_decl) |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 1981 | << Category->getDeclName(); |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 1982 | return DeclPtrTy(); |
Fariborz Jahanian | f624f81 | 2008-04-18 00:19:30 +0000 | [diff] [blame] | 1983 | } |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 1984 | } else { |
Fariborz Jahanian | f624f81 | 2008-04-18 00:19:30 +0000 | [diff] [blame] | 1985 | Diag(AtLoc, diag::error_bad_property_context); |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 1986 | return DeclPtrTy(); |
Fariborz Jahanian | f624f81 | 2008-04-18 00:19:30 +0000 | [diff] [blame] | 1987 | } |
Fariborz Jahanian | 628b96f | 2008-04-23 00:06:01 +0000 | [diff] [blame] | 1988 | ObjCIvarDecl *Ivar = 0; |
Fariborz Jahanian | f624f81 | 2008-04-18 00:19:30 +0000 | [diff] [blame] | 1989 | // Check that we have a valid, previously declared ivar for @synthesize |
| 1990 | if (Synthesize) { |
| 1991 | // @synthesize |
Fariborz Jahanian | 6cdf16d | 2008-04-21 21:57:36 +0000 | [diff] [blame] | 1992 | if (!PropertyIvar) |
| 1993 | PropertyIvar = PropertyId; |
Fariborz Jahanian | af3e722 | 2009-03-31 00:06:29 +0000 | [diff] [blame] | 1994 | QualType PropType = Context.getCanonicalType(property->getType()); |
Fariborz Jahanian | f624f81 | 2008-04-18 00:19:30 +0000 | [diff] [blame] | 1995 | // Check that this is a previously declared 'ivar' in 'IDecl' interface |
Fariborz Jahanian | 29da66e | 2009-04-13 19:30:37 +0000 | [diff] [blame] | 1996 | ObjCInterfaceDecl *ClassDeclared; |
| 1997 | Ivar = IDecl->lookupInstanceVariable(Context, PropertyIvar, ClassDeclared); |
Fariborz Jahanian | c35b9e4 | 2008-04-21 21:05:54 +0000 | [diff] [blame] | 1998 | if (!Ivar) { |
Fariborz Jahanian | 8019a7b | 2009-06-06 16:36:41 +0000 | [diff] [blame] | 1999 | DeclContext *EnclosingContext = cast_or_null<DeclContext>(IDecl); |
| 2000 | assert(EnclosingContext && |
| 2001 | "null DeclContext for synthesized ivar - ActOnPropertyImplDecl"); |
| 2002 | Ivar = ObjCIvarDecl::Create(Context, EnclosingContext, PropertyLoc, |
Fariborz Jahanian | 12bac25 | 2009-04-14 23:15:21 +0000 | [diff] [blame] | 2003 | PropertyIvar, PropType, |
| 2004 | ObjCIvarDecl::Public, |
| 2005 | (Expr *)0); |
Fariborz Jahanian | 8019a7b | 2009-06-06 16:36:41 +0000 | [diff] [blame] | 2006 | Ivar->setLexicalDeclContext(IDecl); |
| 2007 | IDecl->addDecl(Context, Ivar); |
Fariborz Jahanian | 12bac25 | 2009-04-14 23:15:21 +0000 | [diff] [blame] | 2008 | property->setPropertyIvarDecl(Ivar); |
| 2009 | if (!getLangOptions().ObjCNonFragileABI) |
Steve Naroff | f4c00ff | 2009-03-03 22:09:41 +0000 | [diff] [blame] | 2010 | Diag(PropertyLoc, diag::error_missing_property_ivar_decl) << PropertyId; |
Fariborz Jahanian | 12bac25 | 2009-04-14 23:15:21 +0000 | [diff] [blame] | 2011 | // Note! I deliberately want it to fall thru so, we have a |
| 2012 | // a property implementation and to avoid future warnings. |
Fariborz Jahanian | f624f81 | 2008-04-18 00:19:30 +0000 | [diff] [blame] | 2013 | } |
Fariborz Jahanian | 29da66e | 2009-04-13 19:30:37 +0000 | [diff] [blame] | 2014 | else if (getLangOptions().ObjCNonFragileABI && |
Fariborz Jahanian | 6e5201b | 2009-04-29 21:45:02 +0000 | [diff] [blame] | 2015 | ClassDeclared != IDecl) { |
Fariborz Jahanian | e2f2c16 | 2009-04-30 21:39:24 +0000 | [diff] [blame] | 2016 | Diag(PropertyLoc, diag::error_ivar_in_superclass_use) |
Fariborz Jahanian | 29da66e | 2009-04-13 19:30:37 +0000 | [diff] [blame] | 2017 | << property->getDeclName() << Ivar->getDeclName() |
| 2018 | << ClassDeclared->getDeclName(); |
| 2019 | Diag(Ivar->getLocation(), diag::note_previous_access_declaration) |
| 2020 | << Ivar << Ivar->getNameAsCString(); |
| 2021 | // Note! I deliberately want it to fall thru so more errors are caught. |
| 2022 | } |
Steve Naroff | 3ce52d6 | 2008-09-30 10:07:56 +0000 | [diff] [blame] | 2023 | QualType IvarType = Context.getCanonicalType(Ivar->getType()); |
| 2024 | |
Steve Naroff | fbbe0ac | 2008-09-30 00:24:17 +0000 | [diff] [blame] | 2025 | // Check that type of property and its ivar are type compatible. |
Steve Naroff | 3ce52d6 | 2008-09-30 10:07:56 +0000 | [diff] [blame] | 2026 | if (PropType != IvarType) { |
Steve Naroff | 4fa4ab6 | 2008-10-16 14:59:30 +0000 | [diff] [blame] | 2027 | if (CheckAssignmentConstraints(PropType, IvarType) != Compatible) { |
Chris Lattner | 5dc266a | 2008-11-20 06:13:02 +0000 | [diff] [blame] | 2028 | Diag(PropertyLoc, diag::error_property_ivar_type) |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 2029 | << property->getDeclName() << Ivar->getDeclName(); |
Fariborz Jahanian | 12bac25 | 2009-04-14 23:15:21 +0000 | [diff] [blame] | 2030 | // Note! I deliberately want it to fall thru so, we have a |
| 2031 | // a property implementation and to avoid future warnings. |
Steve Naroff | 3ce52d6 | 2008-09-30 10:07:56 +0000 | [diff] [blame] | 2032 | } |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 2033 | |
| 2034 | // FIXME! Rules for properties are somewhat different that those |
| 2035 | // for assignments. Use a new routine to consolidate all cases; |
| 2036 | // specifically for property redeclarations as well as for ivars. |
| 2037 | QualType lhsType =Context.getCanonicalType(PropType).getUnqualifiedType(); |
| 2038 | QualType rhsType =Context.getCanonicalType(IvarType).getUnqualifiedType(); |
| 2039 | if (lhsType != rhsType && |
| 2040 | lhsType->isArithmeticType()) { |
| 2041 | Diag(PropertyLoc, diag::error_property_ivar_type) |
| 2042 | << property->getDeclName() << Ivar->getDeclName(); |
Fariborz Jahanian | 12bac25 | 2009-04-14 23:15:21 +0000 | [diff] [blame] | 2043 | // Fall thru - see previous comment |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 2044 | } |
| 2045 | // __weak is explicit. So it works on Canonical type. |
Fariborz Jahanian | c8bafd7 | 2009-04-07 21:25:06 +0000 | [diff] [blame] | 2046 | if (PropType.isObjCGCWeak() && !IvarType.isObjCGCWeak() && |
| 2047 | getLangOptions().getGCMode() != LangOptions::NonGC) { |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 2048 | Diag(PropertyLoc, diag::error_weak_property) |
| 2049 | << property->getDeclName() << Ivar->getDeclName(); |
Fariborz Jahanian | 12bac25 | 2009-04-14 23:15:21 +0000 | [diff] [blame] | 2050 | // Fall thru - see previous comment |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 2051 | } |
| 2052 | if ((Context.isObjCObjectPointerType(property->getType()) || |
Fariborz Jahanian | 0a9217f | 2009-04-10 22:42:54 +0000 | [diff] [blame] | 2053 | PropType.isObjCGCStrong()) && IvarType.isObjCGCWeak() && |
| 2054 | getLangOptions().getGCMode() != LangOptions::NonGC) { |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 2055 | Diag(PropertyLoc, diag::error_strong_property) |
| 2056 | << property->getDeclName() << Ivar->getDeclName(); |
Fariborz Jahanian | 12bac25 | 2009-04-14 23:15:21 +0000 | [diff] [blame] | 2057 | // Fall thru - see previous comment |
Fariborz Jahanian | acdc33b | 2009-01-19 20:13:47 +0000 | [diff] [blame] | 2058 | } |
Fariborz Jahanian | c35b9e4 | 2008-04-21 21:05:54 +0000 | [diff] [blame] | 2059 | } |
Fariborz Jahanian | 12bac25 | 2009-04-14 23:15:21 +0000 | [diff] [blame] | 2060 | } else if (PropertyIvar) |
| 2061 | // @dynamic |
| 2062 | Diag(PropertyLoc, diag::error_dynamic_property_ivar_decl); |
Fariborz Jahanian | f624f81 | 2008-04-18 00:19:30 +0000 | [diff] [blame] | 2063 | assert (property && "ActOnPropertyImplDecl - property declaration missing"); |
Fariborz Jahanian | 628b96f | 2008-04-23 00:06:01 +0000 | [diff] [blame] | 2064 | ObjCPropertyImplDecl *PIDecl = |
Douglas Gregor | d043410 | 2009-01-09 00:49:46 +0000 | [diff] [blame] | 2065 | ObjCPropertyImplDecl::Create(Context, CurContext, AtLoc, PropertyLoc, |
| 2066 | property, |
Fariborz Jahanian | 628b96f | 2008-04-23 00:06:01 +0000 | [diff] [blame] | 2067 | (Synthesize ? |
Daniel Dunbar | 9f0afd4 | 2008-08-26 04:47:31 +0000 | [diff] [blame] | 2068 | ObjCPropertyImplDecl::Synthesize |
| 2069 | : ObjCPropertyImplDecl::Dynamic), |
| 2070 | Ivar); |
Fariborz Jahanian | ae6f6fd | 2008-12-05 22:32:48 +0000 | [diff] [blame] | 2071 | if (IC) { |
| 2072 | if (Synthesize) |
| 2073 | if (ObjCPropertyImplDecl *PPIDecl = |
Douglas Gregor | 653f1b1 | 2009-04-23 01:02:12 +0000 | [diff] [blame] | 2074 | IC->FindPropertyImplIvarDecl(Context, PropertyIvar)) { |
Fariborz Jahanian | ae6f6fd | 2008-12-05 22:32:48 +0000 | [diff] [blame] | 2075 | Diag(PropertyLoc, diag::error_duplicate_ivar_use) |
| 2076 | << PropertyId << PPIDecl->getPropertyDecl()->getIdentifier() |
| 2077 | << PropertyIvar; |
| 2078 | Diag(PPIDecl->getLocation(), diag::note_previous_use); |
| 2079 | } |
| 2080 | |
Douglas Gregor | 653f1b1 | 2009-04-23 01:02:12 +0000 | [diff] [blame] | 2081 | if (ObjCPropertyImplDecl *PPIDecl |
| 2082 | = IC->FindPropertyImplDecl(Context, PropertyId)) { |
Fariborz Jahanian | ae6f6fd | 2008-12-05 22:32:48 +0000 | [diff] [blame] | 2083 | Diag(PropertyLoc, diag::error_property_implemented) << PropertyId; |
| 2084 | Diag(PPIDecl->getLocation(), diag::note_previous_declaration); |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 2085 | return DeclPtrTy(); |
Fariborz Jahanian | ae6f6fd | 2008-12-05 22:32:48 +0000 | [diff] [blame] | 2086 | } |
Douglas Gregor | 653f1b1 | 2009-04-23 01:02:12 +0000 | [diff] [blame] | 2087 | IC->addPropertyImplementation(Context, PIDecl); |
Fariborz Jahanian | ae6f6fd | 2008-12-05 22:32:48 +0000 | [diff] [blame] | 2088 | } |
| 2089 | else { |
| 2090 | if (Synthesize) |
| 2091 | if (ObjCPropertyImplDecl *PPIDecl = |
Douglas Gregor | 653f1b1 | 2009-04-23 01:02:12 +0000 | [diff] [blame] | 2092 | CatImplClass->FindPropertyImplIvarDecl(Context, PropertyIvar)) { |
Fariborz Jahanian | ae6f6fd | 2008-12-05 22:32:48 +0000 | [diff] [blame] | 2093 | Diag(PropertyLoc, diag::error_duplicate_ivar_use) |
| 2094 | << PropertyId << PPIDecl->getPropertyDecl()->getIdentifier() |
| 2095 | << PropertyIvar; |
| 2096 | Diag(PPIDecl->getLocation(), diag::note_previous_use); |
| 2097 | } |
| 2098 | |
| 2099 | if (ObjCPropertyImplDecl *PPIDecl = |
Douglas Gregor | 653f1b1 | 2009-04-23 01:02:12 +0000 | [diff] [blame] | 2100 | CatImplClass->FindPropertyImplDecl(Context, PropertyId)) { |
Fariborz Jahanian | ae6f6fd | 2008-12-05 22:32:48 +0000 | [diff] [blame] | 2101 | Diag(PropertyLoc, diag::error_property_implemented) << PropertyId; |
| 2102 | Diag(PPIDecl->getLocation(), diag::note_previous_declaration); |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 2103 | return DeclPtrTy(); |
Fariborz Jahanian | ae6f6fd | 2008-12-05 22:32:48 +0000 | [diff] [blame] | 2104 | } |
Douglas Gregor | 653f1b1 | 2009-04-23 01:02:12 +0000 | [diff] [blame] | 2105 | CatImplClass->addPropertyImplementation(Context, PIDecl); |
Fariborz Jahanian | ae6f6fd | 2008-12-05 22:32:48 +0000 | [diff] [blame] | 2106 | } |
Fariborz Jahanian | 628b96f | 2008-04-23 00:06:01 +0000 | [diff] [blame] | 2107 | |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 2108 | return DeclPtrTy::make(PIDecl); |
Fariborz Jahanian | f624f81 | 2008-04-18 00:19:30 +0000 | [diff] [blame] | 2109 | } |
Anders Carlsson | 1528145 | 2008-11-04 16:57:32 +0000 | [diff] [blame] | 2110 | |
Chris Lattner | cc98eac | 2008-12-17 07:13:27 +0000 | [diff] [blame] | 2111 | bool Sema::CheckObjCDeclScope(Decl *D) { |
Douglas Gregor | ce35607 | 2009-01-06 23:51:29 +0000 | [diff] [blame] | 2112 | if (isa<TranslationUnitDecl>(CurContext->getLookupContext())) |
Anders Carlsson | 1528145 | 2008-11-04 16:57:32 +0000 | [diff] [blame] | 2113 | return false; |
| 2114 | |
| 2115 | Diag(D->getLocation(), diag::err_objc_decls_may_only_appear_in_global_scope); |
| 2116 | D->setInvalidDecl(); |
| 2117 | |
| 2118 | return true; |
| 2119 | } |
Chris Lattner | cc98eac | 2008-12-17 07:13:27 +0000 | [diff] [blame] | 2120 | |
Chris Lattner | cc98eac | 2008-12-17 07:13:27 +0000 | [diff] [blame] | 2121 | /// Called whenever @defs(ClassName) is encountered in the source. Inserts the |
| 2122 | /// instance variables of ClassName into Decls. |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 2123 | void Sema::ActOnDefs(Scope *S, DeclPtrTy TagD, SourceLocation DeclStart, |
Chris Lattner | cc98eac | 2008-12-17 07:13:27 +0000 | [diff] [blame] | 2124 | IdentifierInfo *ClassName, |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 2125 | llvm::SmallVectorImpl<DeclPtrTy> &Decls) { |
Chris Lattner | cc98eac | 2008-12-17 07:13:27 +0000 | [diff] [blame] | 2126 | // Check that ClassName is a valid class |
| 2127 | ObjCInterfaceDecl *Class = getObjCInterfaceDecl(ClassName); |
| 2128 | if (!Class) { |
| 2129 | Diag(DeclStart, diag::err_undef_interface) << ClassName; |
| 2130 | return; |
| 2131 | } |
Fariborz Jahanian | 0468fb9 | 2009-04-21 20:28:41 +0000 | [diff] [blame] | 2132 | if (LangOpts.ObjCNonFragileABI) { |
| 2133 | Diag(DeclStart, diag::err_atdef_nonfragile_interface); |
| 2134 | return; |
| 2135 | } |
| 2136 | |
Chris Lattner | cc98eac | 2008-12-17 07:13:27 +0000 | [diff] [blame] | 2137 | // Collect the instance variables |
Fariborz Jahanian | 4183335 | 2009-06-04 17:08:55 +0000 | [diff] [blame] | 2138 | llvm::SmallVector<FieldDecl*, 32> RecFields; |
| 2139 | Context.CollectObjCIvars(Class, RecFields); |
| 2140 | // For each ivar, create a fresh ObjCAtDefsFieldDecl. |
| 2141 | for (unsigned i = 0; i < RecFields.size(); i++) { |
| 2142 | FieldDecl* ID = RecFields[i]; |
| 2143 | RecordDecl *Record = dyn_cast<RecordDecl>(TagD.getAs<Decl>()); |
| 2144 | Decl *FD = ObjCAtDefsFieldDecl::Create(Context, Record, ID->getLocation(), |
| 2145 | ID->getIdentifier(), ID->getType(), |
| 2146 | ID->getBitWidth()); |
| 2147 | Decls.push_back(Sema::DeclPtrTy::make(FD)); |
| 2148 | } |
Chris Lattner | cc98eac | 2008-12-17 07:13:27 +0000 | [diff] [blame] | 2149 | |
| 2150 | // Introduce all of these fields into the appropriate scope. |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 2151 | for (llvm::SmallVectorImpl<DeclPtrTy>::iterator D = Decls.begin(); |
Chris Lattner | cc98eac | 2008-12-17 07:13:27 +0000 | [diff] [blame] | 2152 | D != Decls.end(); ++D) { |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 2153 | FieldDecl *FD = cast<FieldDecl>(D->getAs<Decl>()); |
Chris Lattner | cc98eac | 2008-12-17 07:13:27 +0000 | [diff] [blame] | 2154 | if (getLangOptions().CPlusPlus) |
| 2155 | PushOnScopeChains(cast<FieldDecl>(FD), S); |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 2156 | else if (RecordDecl *Record = dyn_cast<RecordDecl>(TagD.getAs<Decl>())) |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 2157 | Record->addDecl(Context, FD); |
Chris Lattner | cc98eac | 2008-12-17 07:13:27 +0000 | [diff] [blame] | 2158 | } |
| 2159 | } |
| 2160 | |