Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 1 | //===--- SemaObjCProperty.cpp - Semantic Analysis for ObjC @property ------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements semantic analysis for Objective C @property and |
| 11 | // @synthesize declarations. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
John McCall | 8302463 | 2010-08-25 22:03:47 +0000 | [diff] [blame] | 15 | #include "clang/Sema/SemaInternal.h" |
Argyrios Kyrtzidis | 846e61a | 2011-11-14 04:52:29 +0000 | [diff] [blame] | 16 | #include "clang/AST/ASTMutationListener.h" |
Chandler Carruth | 3a02247 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 17 | #include "clang/AST/DeclObjC.h" |
| 18 | #include "clang/AST/ExprCXX.h" |
| 19 | #include "clang/AST/ExprObjC.h" |
Fariborz Jahanian | b52d8d2 | 2012-05-21 17:02:43 +0000 | [diff] [blame] | 20 | #include "clang/Basic/SourceManager.h" |
Chandler Carruth | 3a02247 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 21 | #include "clang/Lex/Lexer.h" |
Jordan Rose | a34d04d | 2015-01-16 23:04:31 +0000 | [diff] [blame] | 22 | #include "clang/Lex/Preprocessor.h" |
Chandler Carruth | 3a02247 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 23 | #include "clang/Sema/Initialization.h" |
John McCall | a1e130b | 2010-08-25 07:03:20 +0000 | [diff] [blame] | 24 | #include "llvm/ADT/DenseSet.h" |
Benjamin Kramer | 4903802 | 2012-02-04 13:45:25 +0000 | [diff] [blame] | 25 | #include "llvm/ADT/SmallString.h" |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 26 | |
| 27 | using namespace clang; |
| 28 | |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 29 | //===----------------------------------------------------------------------===// |
| 30 | // Grammar actions. |
| 31 | //===----------------------------------------------------------------------===// |
| 32 | |
John McCall | 4319286 | 2011-09-13 18:31:23 +0000 | [diff] [blame] | 33 | /// getImpliedARCOwnership - Given a set of property attributes and a |
| 34 | /// type, infer an expected lifetime. The type's ownership qualification |
| 35 | /// is not considered. |
| 36 | /// |
| 37 | /// Returns OCL_None if the attributes as stated do not imply an ownership. |
| 38 | /// Never returns OCL_Autoreleasing. |
| 39 | static Qualifiers::ObjCLifetime getImpliedARCOwnership( |
| 40 | ObjCPropertyDecl::PropertyAttributeKind attrs, |
| 41 | QualType type) { |
| 42 | // retain, strong, copy, weak, and unsafe_unretained are only legal |
| 43 | // on properties of retainable pointer type. |
| 44 | if (attrs & (ObjCPropertyDecl::OBJC_PR_retain | |
| 45 | ObjCPropertyDecl::OBJC_PR_strong | |
| 46 | ObjCPropertyDecl::OBJC_PR_copy)) { |
John McCall | d8561f0 | 2012-08-20 23:36:59 +0000 | [diff] [blame] | 47 | return Qualifiers::OCL_Strong; |
John McCall | 4319286 | 2011-09-13 18:31:23 +0000 | [diff] [blame] | 48 | } else if (attrs & ObjCPropertyDecl::OBJC_PR_weak) { |
| 49 | return Qualifiers::OCL_Weak; |
| 50 | } else if (attrs & ObjCPropertyDecl::OBJC_PR_unsafe_unretained) { |
| 51 | return Qualifiers::OCL_ExplicitNone; |
| 52 | } |
| 53 | |
| 54 | // assign can appear on other types, so we have to check the |
| 55 | // property type. |
| 56 | if (attrs & ObjCPropertyDecl::OBJC_PR_assign && |
| 57 | type->isObjCRetainableType()) { |
| 58 | return Qualifiers::OCL_ExplicitNone; |
| 59 | } |
| 60 | |
| 61 | return Qualifiers::OCL_None; |
| 62 | } |
| 63 | |
John McCall | b61e14e | 2015-10-27 04:54:50 +0000 | [diff] [blame] | 64 | /// Check the internal consistency of a property declaration with |
| 65 | /// an explicit ownership qualifier. |
| 66 | static void checkPropertyDeclWithOwnership(Sema &S, |
| 67 | ObjCPropertyDecl *property) { |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 68 | if (property->isInvalidDecl()) return; |
| 69 | |
| 70 | ObjCPropertyDecl::PropertyAttributeKind propertyKind |
| 71 | = property->getPropertyAttributes(); |
| 72 | Qualifiers::ObjCLifetime propertyLifetime |
| 73 | = property->getType().getObjCLifetime(); |
| 74 | |
John McCall | b61e14e | 2015-10-27 04:54:50 +0000 | [diff] [blame] | 75 | assert(propertyLifetime != Qualifiers::OCL_None); |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 76 | |
John McCall | 4319286 | 2011-09-13 18:31:23 +0000 | [diff] [blame] | 77 | Qualifiers::ObjCLifetime expectedLifetime |
| 78 | = getImpliedARCOwnership(propertyKind, property->getType()); |
| 79 | if (!expectedLifetime) { |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 80 | // We have a lifetime qualifier but no dominating property |
John McCall | 4319286 | 2011-09-13 18:31:23 +0000 | [diff] [blame] | 81 | // attribute. That's okay, but restore reasonable invariants by |
| 82 | // setting the property attribute according to the lifetime |
| 83 | // qualifier. |
| 84 | ObjCPropertyDecl::PropertyAttributeKind attr; |
| 85 | if (propertyLifetime == Qualifiers::OCL_Strong) { |
| 86 | attr = ObjCPropertyDecl::OBJC_PR_strong; |
| 87 | } else if (propertyLifetime == Qualifiers::OCL_Weak) { |
| 88 | attr = ObjCPropertyDecl::OBJC_PR_weak; |
| 89 | } else { |
| 90 | assert(propertyLifetime == Qualifiers::OCL_ExplicitNone); |
| 91 | attr = ObjCPropertyDecl::OBJC_PR_unsafe_unretained; |
| 92 | } |
| 93 | property->setPropertyAttributes(attr); |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 94 | return; |
| 95 | } |
| 96 | |
| 97 | if (propertyLifetime == expectedLifetime) return; |
| 98 | |
| 99 | property->setInvalidDecl(); |
| 100 | S.Diag(property->getLocation(), |
Argyrios Kyrtzidis | cff00d9 | 2011-06-24 00:08:59 +0000 | [diff] [blame] | 101 | diag::err_arc_inconsistent_property_ownership) |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 102 | << property->getDeclName() |
John McCall | 4319286 | 2011-09-13 18:31:23 +0000 | [diff] [blame] | 103 | << expectedLifetime |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 104 | << propertyLifetime; |
| 105 | } |
| 106 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 107 | /// Check this Objective-C property against a property declared in the |
Douglas Gregor | b898209 | 2013-01-21 19:42:21 +0000 | [diff] [blame] | 108 | /// given protocol. |
| 109 | static void |
| 110 | CheckPropertyAgainstProtocol(Sema &S, ObjCPropertyDecl *Prop, |
| 111 | ObjCProtocolDecl *Proto, |
Craig Topper | 4dd9b43 | 2014-08-17 23:49:53 +0000 | [diff] [blame] | 112 | llvm::SmallPtrSetImpl<ObjCProtocolDecl *> &Known) { |
Douglas Gregor | b898209 | 2013-01-21 19:42:21 +0000 | [diff] [blame] | 113 | // Have we seen this protocol before? |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 114 | if (!Known.insert(Proto).second) |
Douglas Gregor | b898209 | 2013-01-21 19:42:21 +0000 | [diff] [blame] | 115 | return; |
| 116 | |
| 117 | // Look for a property with the same name. |
| 118 | DeclContext::lookup_result R = Proto->lookup(Prop->getDeclName()); |
| 119 | for (unsigned I = 0, N = R.size(); I != N; ++I) { |
| 120 | if (ObjCPropertyDecl *ProtoProp = dyn_cast<ObjCPropertyDecl>(R[I])) { |
Fariborz Jahanian | b809a0e | 2013-10-04 18:06:08 +0000 | [diff] [blame] | 121 | S.DiagnosePropertyMismatch(Prop, ProtoProp, Proto->getIdentifier(), true); |
Douglas Gregor | b898209 | 2013-01-21 19:42:21 +0000 | [diff] [blame] | 122 | return; |
| 123 | } |
| 124 | } |
| 125 | |
| 126 | // Check this property against any protocols we inherit. |
Aaron Ballman | 0f6e64d | 2014-03-13 22:58:06 +0000 | [diff] [blame] | 127 | for (auto *P : Proto->protocols()) |
| 128 | CheckPropertyAgainstProtocol(S, Prop, P, Known); |
Douglas Gregor | b898209 | 2013-01-21 19:42:21 +0000 | [diff] [blame] | 129 | } |
| 130 | |
John McCall | b61e14e | 2015-10-27 04:54:50 +0000 | [diff] [blame] | 131 | static unsigned deducePropertyOwnershipFromType(Sema &S, QualType T) { |
| 132 | // In GC mode, just look for the __weak qualifier. |
| 133 | if (S.getLangOpts().getGC() != LangOptions::NonGC) { |
| 134 | if (T.isObjCGCWeak()) return ObjCDeclSpec::DQ_PR_weak; |
| 135 | |
| 136 | // In ARC/MRC, look for an explicit ownership qualifier. |
| 137 | // For some reason, this only applies to __weak. |
| 138 | } else if (auto ownership = T.getObjCLifetime()) { |
| 139 | switch (ownership) { |
| 140 | case Qualifiers::OCL_Weak: |
| 141 | return ObjCDeclSpec::DQ_PR_weak; |
| 142 | case Qualifiers::OCL_Strong: |
| 143 | return ObjCDeclSpec::DQ_PR_strong; |
| 144 | case Qualifiers::OCL_ExplicitNone: |
| 145 | return ObjCDeclSpec::DQ_PR_unsafe_unretained; |
| 146 | case Qualifiers::OCL_Autoreleasing: |
| 147 | case Qualifiers::OCL_None: |
| 148 | return 0; |
| 149 | } |
| 150 | llvm_unreachable("bad qualifier"); |
| 151 | } |
| 152 | |
| 153 | return 0; |
| 154 | } |
| 155 | |
Douglas Gregor | 9dd25b7 | 2015-12-10 23:02:09 +0000 | [diff] [blame] | 156 | static const unsigned OwnershipMask = |
| 157 | (ObjCPropertyDecl::OBJC_PR_assign | |
| 158 | ObjCPropertyDecl::OBJC_PR_retain | |
| 159 | ObjCPropertyDecl::OBJC_PR_copy | |
| 160 | ObjCPropertyDecl::OBJC_PR_weak | |
| 161 | ObjCPropertyDecl::OBJC_PR_strong | |
| 162 | ObjCPropertyDecl::OBJC_PR_unsafe_unretained); |
| 163 | |
John McCall | b61e14e | 2015-10-27 04:54:50 +0000 | [diff] [blame] | 164 | static unsigned getOwnershipRule(unsigned attr) { |
Douglas Gregor | 9dd25b7 | 2015-12-10 23:02:09 +0000 | [diff] [blame] | 165 | unsigned result = attr & OwnershipMask; |
| 166 | |
| 167 | // From an ownership perspective, assign and unsafe_unretained are |
| 168 | // identical; make sure one also implies the other. |
| 169 | if (result & (ObjCPropertyDecl::OBJC_PR_assign | |
| 170 | ObjCPropertyDecl::OBJC_PR_unsafe_unretained)) { |
| 171 | result |= ObjCPropertyDecl::OBJC_PR_assign | |
| 172 | ObjCPropertyDecl::OBJC_PR_unsafe_unretained; |
| 173 | } |
| 174 | |
| 175 | return result; |
John McCall | b61e14e | 2015-10-27 04:54:50 +0000 | [diff] [blame] | 176 | } |
| 177 | |
John McCall | 4887165 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 178 | Decl *Sema::ActOnProperty(Scope *S, SourceLocation AtLoc, |
Fariborz Jahanian | 86c2f5c | 2012-02-29 22:18:55 +0000 | [diff] [blame] | 179 | SourceLocation LParenLoc, |
John McCall | 4887165 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 180 | FieldDeclarator &FD, |
| 181 | ObjCDeclSpec &ODS, |
| 182 | Selector GetterSel, |
| 183 | Selector SetterSel, |
Ted Kremenek | cba5849 | 2010-09-23 21:18:05 +0000 | [diff] [blame] | 184 | tok::ObjCKeywordKind MethodImplKind, |
| 185 | DeclContext *lexicalDC) { |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 186 | unsigned Attributes = ODS.getPropertyAttributes(); |
Douglas Gregor | 2a20bd1 | 2015-06-19 18:25:57 +0000 | [diff] [blame] | 187 | FD.D.setObjCWeakProperty((Attributes & ObjCDeclSpec::DQ_PR_weak) != 0); |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 188 | TypeSourceInfo *TSI = GetTypeForDeclarator(FD.D, S); |
| 189 | QualType T = TSI->getType(); |
John McCall | b61e14e | 2015-10-27 04:54:50 +0000 | [diff] [blame] | 190 | if (!getOwnershipRule(Attributes)) { |
| 191 | Attributes |= deducePropertyOwnershipFromType(*this, T); |
| 192 | } |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 193 | bool isReadWrite = ((Attributes & ObjCDeclSpec::DQ_PR_readwrite) || |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 194 | // default is readwrite! |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 195 | !(Attributes & ObjCDeclSpec::DQ_PR_readonly)); |
John McCall | b61e14e | 2015-10-27 04:54:50 +0000 | [diff] [blame] | 196 | |
Douglas Gregor | 90d3442 | 2013-01-21 19:05:22 +0000 | [diff] [blame] | 197 | // Proceed with constructing the ObjCPropertyDecls. |
Fariborz Jahanian | 8d382dc | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 198 | ObjCContainerDecl *ClassDecl = cast<ObjCContainerDecl>(CurContext); |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 199 | ObjCPropertyDecl *Res = nullptr; |
Douglas Gregor | 90d3442 | 2013-01-21 19:05:22 +0000 | [diff] [blame] | 200 | if (ObjCCategoryDecl *CDecl = dyn_cast<ObjCCategoryDecl>(ClassDecl)) { |
Fariborz Jahanian | 5848d33 | 2010-07-13 22:04:56 +0000 | [diff] [blame] | 201 | if (CDecl->IsClassExtension()) { |
Douglas Gregor | 90d3442 | 2013-01-21 19:05:22 +0000 | [diff] [blame] | 202 | Res = HandlePropertyInClassExtension(S, AtLoc, LParenLoc, |
Argyrios Kyrtzidis | 194b28e | 2017-03-16 18:25:40 +0000 | [diff] [blame] | 203 | FD, |
| 204 | GetterSel, ODS.getGetterNameLoc(), |
| 205 | SetterSel, ODS.getSetterNameLoc(), |
| 206 | isReadWrite, Attributes, |
Argyrios Kyrtzidis | b458ffb | 2011-11-06 18:58:12 +0000 | [diff] [blame] | 207 | ODS.getPropertyAttributes(), |
Douglas Gregor | 9dd25b7 | 2015-12-10 23:02:09 +0000 | [diff] [blame] | 208 | T, TSI, MethodImplKind); |
Douglas Gregor | 90d3442 | 2013-01-21 19:05:22 +0000 | [diff] [blame] | 209 | if (!Res) |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 210 | return nullptr; |
Fariborz Jahanian | 5848d33 | 2010-07-13 22:04:56 +0000 | [diff] [blame] | 211 | } |
Douglas Gregor | 90d3442 | 2013-01-21 19:05:22 +0000 | [diff] [blame] | 212 | } |
| 213 | |
| 214 | if (!Res) { |
| 215 | Res = CreatePropertyDecl(S, ClassDecl, AtLoc, LParenLoc, FD, |
Argyrios Kyrtzidis | 194b28e | 2017-03-16 18:25:40 +0000 | [diff] [blame] | 216 | GetterSel, ODS.getGetterNameLoc(), SetterSel, |
| 217 | ODS.getSetterNameLoc(), isReadWrite, Attributes, |
| 218 | ODS.getPropertyAttributes(), T, TSI, |
| 219 | MethodImplKind); |
Douglas Gregor | 90d3442 | 2013-01-21 19:05:22 +0000 | [diff] [blame] | 220 | if (lexicalDC) |
| 221 | Res->setLexicalDeclContext(lexicalDC); |
| 222 | } |
Ted Kremenek | cba5849 | 2010-09-23 21:18:05 +0000 | [diff] [blame] | 223 | |
Fariborz Jahanian | df58603 | 2010-03-30 22:40:11 +0000 | [diff] [blame] | 224 | // Validate the attributes on the @property. |
Douglas Gregor | d4f2afa | 2015-10-09 20:36:17 +0000 | [diff] [blame] | 225 | CheckObjCPropertyAttributes(Res, AtLoc, Attributes, |
Fariborz Jahanian | 876cc65 | 2012-06-20 22:57:42 +0000 | [diff] [blame] | 226 | (isa<ObjCInterfaceDecl>(ClassDecl) || |
| 227 | isa<ObjCProtocolDecl>(ClassDecl))); |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 228 | |
John McCall | b61e14e | 2015-10-27 04:54:50 +0000 | [diff] [blame] | 229 | // Check consistency if the type has explicit ownership qualification. |
| 230 | if (Res->getType().getObjCLifetime()) |
| 231 | checkPropertyDeclWithOwnership(*this, Res); |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 232 | |
Douglas Gregor | b898209 | 2013-01-21 19:42:21 +0000 | [diff] [blame] | 233 | llvm::SmallPtrSet<ObjCProtocolDecl *, 16> KnownProtos; |
Douglas Gregor | 90d3442 | 2013-01-21 19:05:22 +0000 | [diff] [blame] | 234 | if (ObjCInterfaceDecl *IFace = dyn_cast<ObjCInterfaceDecl>(ClassDecl)) { |
Douglas Gregor | b898209 | 2013-01-21 19:42:21 +0000 | [diff] [blame] | 235 | // For a class, compare the property against a property in our superclass. |
| 236 | bool FoundInSuper = false; |
Fariborz Jahanian | 92e3aa2 | 2014-02-15 00:04:36 +0000 | [diff] [blame] | 237 | ObjCInterfaceDecl *CurrentInterfaceDecl = IFace; |
| 238 | while (ObjCInterfaceDecl *Super = CurrentInterfaceDecl->getSuperClass()) { |
Douglas Gregor | 90d3442 | 2013-01-21 19:05:22 +0000 | [diff] [blame] | 239 | DeclContext::lookup_result R = Super->lookup(Res->getDeclName()); |
Douglas Gregor | b898209 | 2013-01-21 19:42:21 +0000 | [diff] [blame] | 240 | for (unsigned I = 0, N = R.size(); I != N; ++I) { |
| 241 | if (ObjCPropertyDecl *SuperProp = dyn_cast<ObjCPropertyDecl>(R[I])) { |
Fariborz Jahanian | b809a0e | 2013-10-04 18:06:08 +0000 | [diff] [blame] | 242 | DiagnosePropertyMismatch(Res, SuperProp, Super->getIdentifier(), false); |
Douglas Gregor | b898209 | 2013-01-21 19:42:21 +0000 | [diff] [blame] | 243 | FoundInSuper = true; |
| 244 | break; |
| 245 | } |
| 246 | } |
Fariborz Jahanian | 92e3aa2 | 2014-02-15 00:04:36 +0000 | [diff] [blame] | 247 | if (FoundInSuper) |
| 248 | break; |
| 249 | else |
| 250 | CurrentInterfaceDecl = Super; |
Douglas Gregor | b898209 | 2013-01-21 19:42:21 +0000 | [diff] [blame] | 251 | } |
| 252 | |
| 253 | if (FoundInSuper) { |
| 254 | // Also compare the property against a property in our protocols. |
Aaron Ballman | a49c506 | 2014-03-13 20:29:09 +0000 | [diff] [blame] | 255 | for (auto *P : CurrentInterfaceDecl->protocols()) { |
| 256 | CheckPropertyAgainstProtocol(*this, Res, P, KnownProtos); |
Douglas Gregor | b898209 | 2013-01-21 19:42:21 +0000 | [diff] [blame] | 257 | } |
| 258 | } else { |
| 259 | // Slower path: look in all protocols we referenced. |
Aaron Ballman | a9f49e3 | 2014-03-13 20:55:22 +0000 | [diff] [blame] | 260 | for (auto *P : IFace->all_referenced_protocols()) { |
| 261 | CheckPropertyAgainstProtocol(*this, Res, P, KnownProtos); |
Douglas Gregor | b898209 | 2013-01-21 19:42:21 +0000 | [diff] [blame] | 262 | } |
| 263 | } |
| 264 | } else if (ObjCCategoryDecl *Cat = dyn_cast<ObjCCategoryDecl>(ClassDecl)) { |
Douglas Gregor | acf4fd3 | 2015-11-03 01:15:46 +0000 | [diff] [blame] | 265 | // We don't check if class extension. Because properties in class extension |
| 266 | // are meant to override some of the attributes and checking has already done |
| 267 | // when property in class extension is constructed. |
| 268 | if (!Cat->IsClassExtension()) |
| 269 | for (auto *P : Cat->protocols()) |
| 270 | CheckPropertyAgainstProtocol(*this, Res, P, KnownProtos); |
Douglas Gregor | b898209 | 2013-01-21 19:42:21 +0000 | [diff] [blame] | 271 | } else { |
| 272 | ObjCProtocolDecl *Proto = cast<ObjCProtocolDecl>(ClassDecl); |
Aaron Ballman | 0f6e64d | 2014-03-13 22:58:06 +0000 | [diff] [blame] | 273 | for (auto *P : Proto->protocols()) |
| 274 | CheckPropertyAgainstProtocol(*this, Res, P, KnownProtos); |
Douglas Gregor | 90d3442 | 2013-01-21 19:05:22 +0000 | [diff] [blame] | 275 | } |
| 276 | |
Dmitri Gribenko | e7bb944 | 2012-07-13 01:06:46 +0000 | [diff] [blame] | 277 | ActOnDocumentableDecl(Res); |
Fariborz Jahanian | df58603 | 2010-03-30 22:40:11 +0000 | [diff] [blame] | 278 | return Res; |
Ted Kremenek | 959e830 | 2010-03-12 02:31:10 +0000 | [diff] [blame] | 279 | } |
Ted Kremenek | 90e2fc2 | 2010-03-12 00:49:00 +0000 | [diff] [blame] | 280 | |
Argyrios Kyrtzidis | b51684d | 2011-10-18 19:49:16 +0000 | [diff] [blame] | 281 | static ObjCPropertyDecl::PropertyAttributeKind |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 282 | makePropertyAttributesAsWritten(unsigned Attributes) { |
Argyrios Kyrtzidis | b51684d | 2011-10-18 19:49:16 +0000 | [diff] [blame] | 283 | unsigned attributesAsWritten = 0; |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 284 | if (Attributes & ObjCDeclSpec::DQ_PR_readonly) |
Argyrios Kyrtzidis | b51684d | 2011-10-18 19:49:16 +0000 | [diff] [blame] | 285 | attributesAsWritten |= ObjCPropertyDecl::OBJC_PR_readonly; |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 286 | if (Attributes & ObjCDeclSpec::DQ_PR_readwrite) |
Argyrios Kyrtzidis | b51684d | 2011-10-18 19:49:16 +0000 | [diff] [blame] | 287 | attributesAsWritten |= ObjCPropertyDecl::OBJC_PR_readwrite; |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 288 | if (Attributes & ObjCDeclSpec::DQ_PR_getter) |
Argyrios Kyrtzidis | b51684d | 2011-10-18 19:49:16 +0000 | [diff] [blame] | 289 | attributesAsWritten |= ObjCPropertyDecl::OBJC_PR_getter; |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 290 | if (Attributes & ObjCDeclSpec::DQ_PR_setter) |
Argyrios Kyrtzidis | b51684d | 2011-10-18 19:49:16 +0000 | [diff] [blame] | 291 | attributesAsWritten |= ObjCPropertyDecl::OBJC_PR_setter; |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 292 | if (Attributes & ObjCDeclSpec::DQ_PR_assign) |
Argyrios Kyrtzidis | b51684d | 2011-10-18 19:49:16 +0000 | [diff] [blame] | 293 | attributesAsWritten |= ObjCPropertyDecl::OBJC_PR_assign; |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 294 | if (Attributes & ObjCDeclSpec::DQ_PR_retain) |
Argyrios Kyrtzidis | b51684d | 2011-10-18 19:49:16 +0000 | [diff] [blame] | 295 | attributesAsWritten |= ObjCPropertyDecl::OBJC_PR_retain; |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 296 | if (Attributes & ObjCDeclSpec::DQ_PR_strong) |
Argyrios Kyrtzidis | b51684d | 2011-10-18 19:49:16 +0000 | [diff] [blame] | 297 | attributesAsWritten |= ObjCPropertyDecl::OBJC_PR_strong; |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 298 | if (Attributes & ObjCDeclSpec::DQ_PR_weak) |
Argyrios Kyrtzidis | b51684d | 2011-10-18 19:49:16 +0000 | [diff] [blame] | 299 | attributesAsWritten |= ObjCPropertyDecl::OBJC_PR_weak; |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 300 | if (Attributes & ObjCDeclSpec::DQ_PR_copy) |
Argyrios Kyrtzidis | b51684d | 2011-10-18 19:49:16 +0000 | [diff] [blame] | 301 | attributesAsWritten |= ObjCPropertyDecl::OBJC_PR_copy; |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 302 | if (Attributes & ObjCDeclSpec::DQ_PR_unsafe_unretained) |
Argyrios Kyrtzidis | b51684d | 2011-10-18 19:49:16 +0000 | [diff] [blame] | 303 | attributesAsWritten |= ObjCPropertyDecl::OBJC_PR_unsafe_unretained; |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 304 | if (Attributes & ObjCDeclSpec::DQ_PR_nonatomic) |
Argyrios Kyrtzidis | b51684d | 2011-10-18 19:49:16 +0000 | [diff] [blame] | 305 | attributesAsWritten |= ObjCPropertyDecl::OBJC_PR_nonatomic; |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 306 | if (Attributes & ObjCDeclSpec::DQ_PR_atomic) |
Argyrios Kyrtzidis | b51684d | 2011-10-18 19:49:16 +0000 | [diff] [blame] | 307 | attributesAsWritten |= ObjCPropertyDecl::OBJC_PR_atomic; |
Manman Ren | 387ff7f | 2016-01-26 18:52:43 +0000 | [diff] [blame] | 308 | if (Attributes & ObjCDeclSpec::DQ_PR_class) |
| 309 | attributesAsWritten |= ObjCPropertyDecl::OBJC_PR_class; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 310 | |
Argyrios Kyrtzidis | b51684d | 2011-10-18 19:49:16 +0000 | [diff] [blame] | 311 | return (ObjCPropertyDecl::PropertyAttributeKind)attributesAsWritten; |
| 312 | } |
| 313 | |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 314 | static bool LocPropertyAttribute( ASTContext &Context, const char *attrName, |
Fariborz Jahanian | b52d8d2 | 2012-05-21 17:02:43 +0000 | [diff] [blame] | 315 | SourceLocation LParenLoc, SourceLocation &Loc) { |
| 316 | if (LParenLoc.isMacroID()) |
| 317 | return false; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 318 | |
Fariborz Jahanian | b52d8d2 | 2012-05-21 17:02:43 +0000 | [diff] [blame] | 319 | SourceManager &SM = Context.getSourceManager(); |
| 320 | std::pair<FileID, unsigned> locInfo = SM.getDecomposedLoc(LParenLoc); |
| 321 | // Try to load the file buffer. |
| 322 | bool invalidTemp = false; |
| 323 | StringRef file = SM.getBufferData(locInfo.first, &invalidTemp); |
| 324 | if (invalidTemp) |
| 325 | return false; |
| 326 | const char *tokenBegin = file.data() + locInfo.second; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 327 | |
Fariborz Jahanian | b52d8d2 | 2012-05-21 17:02:43 +0000 | [diff] [blame] | 328 | // Lex from the start of the given location. |
| 329 | Lexer lexer(SM.getLocForStartOfFile(locInfo.first), |
| 330 | Context.getLangOpts(), |
| 331 | file.begin(), tokenBegin, file.end()); |
| 332 | Token Tok; |
| 333 | do { |
| 334 | lexer.LexFromRawLexer(Tok); |
Alp Toker | 2d57cea | 2014-05-17 04:53:25 +0000 | [diff] [blame] | 335 | if (Tok.is(tok::raw_identifier) && Tok.getRawIdentifier() == attrName) { |
Fariborz Jahanian | b52d8d2 | 2012-05-21 17:02:43 +0000 | [diff] [blame] | 336 | Loc = Tok.getLocation(); |
| 337 | return true; |
| 338 | } |
| 339 | } while (Tok.isNot(tok::r_paren)); |
| 340 | return false; |
Fariborz Jahanian | 199a9b5 | 2012-05-19 18:17:17 +0000 | [diff] [blame] | 341 | } |
| 342 | |
Douglas Gregor | 429183e | 2015-12-09 22:57:32 +0000 | [diff] [blame] | 343 | /// Check for a mismatch in the atomicity of the given properties. |
| 344 | static void checkAtomicPropertyMismatch(Sema &S, |
| 345 | ObjCPropertyDecl *OldProperty, |
Douglas Gregor | 9dd25b7 | 2015-12-10 23:02:09 +0000 | [diff] [blame] | 346 | ObjCPropertyDecl *NewProperty, |
| 347 | bool PropagateAtomicity) { |
Douglas Gregor | 429183e | 2015-12-09 22:57:32 +0000 | [diff] [blame] | 348 | // If the atomicity of both matches, we're done. |
| 349 | bool OldIsAtomic = |
Douglas Gregor | 9dd25b7 | 2015-12-10 23:02:09 +0000 | [diff] [blame] | 350 | (OldProperty->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_nonatomic) |
| 351 | == 0; |
Douglas Gregor | 429183e | 2015-12-09 22:57:32 +0000 | [diff] [blame] | 352 | bool NewIsAtomic = |
Douglas Gregor | 9dd25b7 | 2015-12-10 23:02:09 +0000 | [diff] [blame] | 353 | (NewProperty->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_nonatomic) |
| 354 | == 0; |
Douglas Gregor | 429183e | 2015-12-09 22:57:32 +0000 | [diff] [blame] | 355 | if (OldIsAtomic == NewIsAtomic) return; |
| 356 | |
| 357 | // Determine whether the given property is readonly and implicitly |
| 358 | // atomic. |
| 359 | auto isImplicitlyReadonlyAtomic = [](ObjCPropertyDecl *Property) -> bool { |
| 360 | // Is it readonly? |
| 361 | auto Attrs = Property->getPropertyAttributes(); |
Douglas Gregor | 9dd25b7 | 2015-12-10 23:02:09 +0000 | [diff] [blame] | 362 | if ((Attrs & ObjCPropertyDecl::OBJC_PR_readonly) == 0) return false; |
Douglas Gregor | 429183e | 2015-12-09 22:57:32 +0000 | [diff] [blame] | 363 | |
| 364 | // Is it nonatomic? |
Douglas Gregor | 9dd25b7 | 2015-12-10 23:02:09 +0000 | [diff] [blame] | 365 | if (Attrs & ObjCPropertyDecl::OBJC_PR_nonatomic) return false; |
Douglas Gregor | 429183e | 2015-12-09 22:57:32 +0000 | [diff] [blame] | 366 | |
| 367 | // Was 'atomic' specified directly? |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 368 | if (Property->getPropertyAttributesAsWritten() & |
Douglas Gregor | 9dd25b7 | 2015-12-10 23:02:09 +0000 | [diff] [blame] | 369 | ObjCPropertyDecl::OBJC_PR_atomic) |
Douglas Gregor | 429183e | 2015-12-09 22:57:32 +0000 | [diff] [blame] | 370 | return false; |
| 371 | |
| 372 | return true; |
| 373 | }; |
| 374 | |
Douglas Gregor | 9dd25b7 | 2015-12-10 23:02:09 +0000 | [diff] [blame] | 375 | // If we're allowed to propagate atomicity, and the new property did |
| 376 | // not specify atomicity at all, propagate. |
| 377 | const unsigned AtomicityMask = |
| 378 | (ObjCPropertyDecl::OBJC_PR_atomic | ObjCPropertyDecl::OBJC_PR_nonatomic); |
| 379 | if (PropagateAtomicity && |
| 380 | ((NewProperty->getPropertyAttributesAsWritten() & AtomicityMask) == 0)) { |
| 381 | unsigned Attrs = NewProperty->getPropertyAttributes(); |
| 382 | Attrs = Attrs & ~AtomicityMask; |
| 383 | if (OldIsAtomic) |
| 384 | Attrs |= ObjCPropertyDecl::OBJC_PR_atomic; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 385 | else |
Douglas Gregor | 9dd25b7 | 2015-12-10 23:02:09 +0000 | [diff] [blame] | 386 | Attrs |= ObjCPropertyDecl::OBJC_PR_nonatomic; |
| 387 | |
| 388 | NewProperty->overwritePropertyAttributes(Attrs); |
| 389 | return; |
| 390 | } |
| 391 | |
Douglas Gregor | 429183e | 2015-12-09 22:57:32 +0000 | [diff] [blame] | 392 | // One of the properties is atomic; if it's a readonly property, and |
| 393 | // 'atomic' wasn't explicitly specified, we're okay. |
| 394 | if ((OldIsAtomic && isImplicitlyReadonlyAtomic(OldProperty)) || |
| 395 | (NewIsAtomic && isImplicitlyReadonlyAtomic(NewProperty))) |
| 396 | return; |
| 397 | |
| 398 | // Diagnose the conflict. |
| 399 | const IdentifierInfo *OldContextName; |
| 400 | auto *OldDC = OldProperty->getDeclContext(); |
| 401 | if (auto Category = dyn_cast<ObjCCategoryDecl>(OldDC)) |
| 402 | OldContextName = Category->getClassInterface()->getIdentifier(); |
| 403 | else |
| 404 | OldContextName = cast<ObjCContainerDecl>(OldDC)->getIdentifier(); |
| 405 | |
| 406 | S.Diag(NewProperty->getLocation(), diag::warn_property_attribute) |
| 407 | << NewProperty->getDeclName() << "atomic" |
| 408 | << OldContextName; |
| 409 | S.Diag(OldProperty->getLocation(), diag::note_property_declare); |
| 410 | } |
| 411 | |
Douglas Gregor | 90d3442 | 2013-01-21 19:05:22 +0000 | [diff] [blame] | 412 | ObjCPropertyDecl * |
Fariborz Jahanian | 8d382dc | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 413 | Sema::HandlePropertyInClassExtension(Scope *S, |
Fariborz Jahanian | 86c2f5c | 2012-02-29 22:18:55 +0000 | [diff] [blame] | 414 | SourceLocation AtLoc, |
| 415 | SourceLocation LParenLoc, |
| 416 | FieldDeclarator &FD, |
Argyrios Kyrtzidis | 194b28e | 2017-03-16 18:25:40 +0000 | [diff] [blame] | 417 | Selector GetterSel, |
| 418 | SourceLocation GetterNameLoc, |
| 419 | Selector SetterSel, |
| 420 | SourceLocation SetterNameLoc, |
Ted Kremenek | 959e830 | 2010-03-12 02:31:10 +0000 | [diff] [blame] | 421 | const bool isReadWrite, |
Douglas Gregor | 9dd25b7 | 2015-12-10 23:02:09 +0000 | [diff] [blame] | 422 | unsigned &Attributes, |
Argyrios Kyrtzidis | b458ffb | 2011-11-06 18:58:12 +0000 | [diff] [blame] | 423 | const unsigned AttributesAsWritten, |
Douglas Gregor | 813a066 | 2015-06-19 18:14:38 +0000 | [diff] [blame] | 424 | QualType T, |
| 425 | TypeSourceInfo *TSI, |
Ted Kremenek | 959e830 | 2010-03-12 02:31:10 +0000 | [diff] [blame] | 426 | tok::ObjCKeywordKind MethodImplKind) { |
Fariborz Jahanian | f36734d | 2011-08-22 18:34:22 +0000 | [diff] [blame] | 427 | ObjCCategoryDecl *CDecl = cast<ObjCCategoryDecl>(CurContext); |
Ted Kremenek | 959e830 | 2010-03-12 02:31:10 +0000 | [diff] [blame] | 428 | // Diagnose if this property is already in continuation class. |
Fariborz Jahanian | 8d382dc | 2011-08-22 15:54:49 +0000 | [diff] [blame] | 429 | DeclContext *DC = CurContext; |
Ted Kremenek | 959e830 | 2010-03-12 02:31:10 +0000 | [diff] [blame] | 430 | IdentifierInfo *PropertyId = FD.D.getIdentifier(); |
Fariborz Jahanian | a0a9d85 | 2010-11-10 18:01:36 +0000 | [diff] [blame] | 431 | ObjCInterfaceDecl *CCPrimary = CDecl->getClassInterface(); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 432 | |
Ted Kremenek | 959e830 | 2010-03-12 02:31:10 +0000 | [diff] [blame] | 433 | // We need to look in the @interface to see if the @property was |
| 434 | // already declared. |
Ted Kremenek | 959e830 | 2010-03-12 02:31:10 +0000 | [diff] [blame] | 435 | if (!CCPrimary) { |
| 436 | Diag(CDecl->getLocation(), diag::err_continuation_class); |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 437 | return nullptr; |
Ted Kremenek | 959e830 | 2010-03-12 02:31:10 +0000 | [diff] [blame] | 438 | } |
| 439 | |
Manman Ren | 5b78640 | 2016-01-28 18:49:28 +0000 | [diff] [blame] | 440 | bool isClassProperty = (AttributesAsWritten & ObjCDeclSpec::DQ_PR_class) || |
| 441 | (Attributes & ObjCDeclSpec::DQ_PR_class); |
| 442 | |
Douglas Gregor | acf4fd3 | 2015-11-03 01:15:46 +0000 | [diff] [blame] | 443 | // Find the property in the extended class's primary class or |
| 444 | // extensions. |
Manman Ren | 5b78640 | 2016-01-28 18:49:28 +0000 | [diff] [blame] | 445 | ObjCPropertyDecl *PIDecl = CCPrimary->FindPropertyVisibleInPrimaryClass( |
| 446 | PropertyId, ObjCPropertyDecl::getQueryKind(isClassProperty)); |
Ted Kremenek | 959e830 | 2010-03-12 02:31:10 +0000 | [diff] [blame] | 447 | |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 448 | // If we found a property in an extension, complain. |
Douglas Gregor | acf4fd3 | 2015-11-03 01:15:46 +0000 | [diff] [blame] | 449 | if (PIDecl && isa<ObjCCategoryDecl>(PIDecl->getDeclContext())) { |
| 450 | Diag(AtLoc, diag::err_duplicate_property); |
| 451 | Diag(PIDecl->getLocation(), diag::note_property_declare); |
| 452 | return nullptr; |
| 453 | } |
Ted Kremenek | 959e830 | 2010-03-12 02:31:10 +0000 | [diff] [blame] | 454 | |
Douglas Gregor | 9dd25b7 | 2015-12-10 23:02:09 +0000 | [diff] [blame] | 455 | // Check for consistency with the previous declaration, if there is one. |
| 456 | if (PIDecl) { |
| 457 | // A readonly property declared in the primary class can be refined |
| 458 | // by adding a readwrite property within an extension. |
| 459 | // Anything else is an error. |
| 460 | if (!(PIDecl->isReadOnly() && isReadWrite)) { |
| 461 | // Tailor the diagnostics for the common case where a readwrite |
| 462 | // property is declared both in the @interface and the continuation. |
| 463 | // This is a common error where the user often intended the original |
| 464 | // declaration to be readonly. |
| 465 | unsigned diag = |
| 466 | (Attributes & ObjCDeclSpec::DQ_PR_readwrite) && |
| 467 | (PIDecl->getPropertyAttributesAsWritten() & |
| 468 | ObjCPropertyDecl::OBJC_PR_readwrite) |
| 469 | ? diag::err_use_continuation_class_redeclaration_readwrite |
| 470 | : diag::err_use_continuation_class; |
| 471 | Diag(AtLoc, diag) |
| 472 | << CCPrimary->getDeclName(); |
| 473 | Diag(PIDecl->getLocation(), diag::note_property_declare); |
| 474 | return nullptr; |
| 475 | } |
| 476 | |
| 477 | // Check for consistency of getters. |
| 478 | if (PIDecl->getGetterName() != GetterSel) { |
| 479 | // If the getter was written explicitly, complain. |
| 480 | if (AttributesAsWritten & ObjCDeclSpec::DQ_PR_getter) { |
| 481 | Diag(AtLoc, diag::warn_property_redecl_getter_mismatch) |
| 482 | << PIDecl->getGetterName() << GetterSel; |
| 483 | Diag(PIDecl->getLocation(), diag::note_property_declare); |
| 484 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 485 | |
Douglas Gregor | 9dd25b7 | 2015-12-10 23:02:09 +0000 | [diff] [blame] | 486 | // Always adopt the getter from the original declaration. |
| 487 | GetterSel = PIDecl->getGetterName(); |
| 488 | Attributes |= ObjCDeclSpec::DQ_PR_getter; |
| 489 | } |
| 490 | |
| 491 | // Check consistency of ownership. |
| 492 | unsigned ExistingOwnership |
| 493 | = getOwnershipRule(PIDecl->getPropertyAttributes()); |
| 494 | unsigned NewOwnership = getOwnershipRule(Attributes); |
| 495 | if (ExistingOwnership && NewOwnership != ExistingOwnership) { |
| 496 | // If the ownership was written explicitly, complain. |
| 497 | if (getOwnershipRule(AttributesAsWritten)) { |
| 498 | Diag(AtLoc, diag::warn_property_attr_mismatch); |
| 499 | Diag(PIDecl->getLocation(), diag::note_property_declare); |
| 500 | } |
| 501 | |
| 502 | // Take the ownership from the original property. |
| 503 | Attributes = (Attributes & ~OwnershipMask) | ExistingOwnership; |
| 504 | } |
| 505 | |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 506 | // If the redeclaration is 'weak' but the original property is not, |
Douglas Gregor | 9dd25b7 | 2015-12-10 23:02:09 +0000 | [diff] [blame] | 507 | if ((Attributes & ObjCPropertyDecl::OBJC_PR_weak) && |
| 508 | !(PIDecl->getPropertyAttributesAsWritten() |
| 509 | & ObjCPropertyDecl::OBJC_PR_weak) && |
| 510 | PIDecl->getType()->getAs<ObjCObjectPointerType>() && |
| 511 | PIDecl->getType().getObjCLifetime() == Qualifiers::OCL_None) { |
| 512 | Diag(AtLoc, diag::warn_property_implicitly_mismatched); |
| 513 | Diag(PIDecl->getLocation(), diag::note_property_declare); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 514 | } |
Douglas Gregor | 9dd25b7 | 2015-12-10 23:02:09 +0000 | [diff] [blame] | 515 | } |
| 516 | |
Douglas Gregor | acf4fd3 | 2015-11-03 01:15:46 +0000 | [diff] [blame] | 517 | // Create a new ObjCPropertyDecl with the DeclContext being |
| 518 | // the class extension. |
| 519 | ObjCPropertyDecl *PDecl = CreatePropertyDecl(S, CDecl, AtLoc, LParenLoc, |
Argyrios Kyrtzidis | 194b28e | 2017-03-16 18:25:40 +0000 | [diff] [blame] | 520 | FD, GetterSel, GetterNameLoc, |
| 521 | SetterSel, SetterNameLoc, |
Douglas Gregor | 9dd25b7 | 2015-12-10 23:02:09 +0000 | [diff] [blame] | 522 | isReadWrite, |
Douglas Gregor | acf4fd3 | 2015-11-03 01:15:46 +0000 | [diff] [blame] | 523 | Attributes, AttributesAsWritten, |
| 524 | T, TSI, MethodImplKind, DC); |
| 525 | |
| 526 | // If there was no declaration of a property with the same name in |
| 527 | // the primary class, we're done. |
| 528 | if (!PIDecl) { |
Douglas Gregor | e17765e | 2015-11-03 17:02:34 +0000 | [diff] [blame] | 529 | ProcessPropertyDecl(PDecl); |
Douglas Gregor | acf4fd3 | 2015-11-03 01:15:46 +0000 | [diff] [blame] | 530 | return PDecl; |
Ted Kremenek | 959e830 | 2010-03-12 02:31:10 +0000 | [diff] [blame] | 531 | } |
Douglas Gregor | acf4fd3 | 2015-11-03 01:15:46 +0000 | [diff] [blame] | 532 | |
Fariborz Jahanian | 6a73384 | 2012-02-02 18:54:58 +0000 | [diff] [blame] | 533 | if (!Context.hasSameType(PIDecl->getType(), PDecl->getType())) { |
| 534 | bool IncompatibleObjC = false; |
| 535 | QualType ConvertedType; |
Fariborz Jahanian | 24c2ccc | 2012-02-02 19:34:05 +0000 | [diff] [blame] | 536 | // Relax the strict type matching for property type in continuation class. |
| 537 | // Allow property object type of continuation class to be different as long |
Fariborz Jahanian | 57539cf | 2012-02-02 22:37:48 +0000 | [diff] [blame] | 538 | // as it narrows the object type in its primary class property. Note that |
| 539 | // this conversion is safe only because the wider type is for a 'readonly' |
| 540 | // property in primary class and 'narrowed' type for a 'readwrite' property |
| 541 | // in continuation class. |
Fariborz Jahanian | 576ff12 | 2015-04-08 21:34:04 +0000 | [diff] [blame] | 542 | QualType PrimaryClassPropertyT = Context.getCanonicalType(PIDecl->getType()); |
| 543 | QualType ClassExtPropertyT = Context.getCanonicalType(PDecl->getType()); |
| 544 | if (!isa<ObjCObjectPointerType>(PrimaryClassPropertyT) || |
| 545 | !isa<ObjCObjectPointerType>(ClassExtPropertyT) || |
| 546 | (!isObjCPointerConversion(ClassExtPropertyT, PrimaryClassPropertyT, |
Fariborz Jahanian | 6a73384 | 2012-02-02 18:54:58 +0000 | [diff] [blame] | 547 | ConvertedType, IncompatibleObjC)) |
| 548 | || IncompatibleObjC) { |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 549 | Diag(AtLoc, |
Fariborz Jahanian | 6a73384 | 2012-02-02 18:54:58 +0000 | [diff] [blame] | 550 | diag::err_type_mismatch_continuation_class) << PDecl->getType(); |
| 551 | Diag(PIDecl->getLocation(), diag::note_property_declare); |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 552 | return nullptr; |
Fariborz Jahanian | 6a73384 | 2012-02-02 18:54:58 +0000 | [diff] [blame] | 553 | } |
Fariborz Jahanian | 11ee283 | 2011-09-24 00:56:59 +0000 | [diff] [blame] | 554 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 555 | |
Douglas Gregor | acf4fd3 | 2015-11-03 01:15:46 +0000 | [diff] [blame] | 556 | // Check that atomicity of property in class extension matches the previous |
| 557 | // declaration. |
Douglas Gregor | 9dd25b7 | 2015-12-10 23:02:09 +0000 | [diff] [blame] | 558 | checkAtomicPropertyMismatch(*this, PIDecl, PDecl, true); |
Douglas Gregor | acf4fd3 | 2015-11-03 01:15:46 +0000 | [diff] [blame] | 559 | |
Douglas Gregor | e17765e | 2015-11-03 17:02:34 +0000 | [diff] [blame] | 560 | // Make sure getter/setter are appropriately synthesized. |
| 561 | ProcessPropertyDecl(PDecl); |
Fariborz Jahanian | b14a3b2 | 2012-09-17 20:57:19 +0000 | [diff] [blame] | 562 | return PDecl; |
Ted Kremenek | 959e830 | 2010-03-12 02:31:10 +0000 | [diff] [blame] | 563 | } |
| 564 | |
| 565 | ObjCPropertyDecl *Sema::CreatePropertyDecl(Scope *S, |
| 566 | ObjCContainerDecl *CDecl, |
| 567 | SourceLocation AtLoc, |
Fariborz Jahanian | 86c2f5c | 2012-02-29 22:18:55 +0000 | [diff] [blame] | 568 | SourceLocation LParenLoc, |
Ted Kremenek | 959e830 | 2010-03-12 02:31:10 +0000 | [diff] [blame] | 569 | FieldDeclarator &FD, |
| 570 | Selector GetterSel, |
Argyrios Kyrtzidis | 194b28e | 2017-03-16 18:25:40 +0000 | [diff] [blame] | 571 | SourceLocation GetterNameLoc, |
Ted Kremenek | 959e830 | 2010-03-12 02:31:10 +0000 | [diff] [blame] | 572 | Selector SetterSel, |
Argyrios Kyrtzidis | 194b28e | 2017-03-16 18:25:40 +0000 | [diff] [blame] | 573 | SourceLocation SetterNameLoc, |
Ted Kremenek | 959e830 | 2010-03-12 02:31:10 +0000 | [diff] [blame] | 574 | const bool isReadWrite, |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 575 | const unsigned Attributes, |
Argyrios Kyrtzidis | b458ffb | 2011-11-06 18:58:12 +0000 | [diff] [blame] | 576 | const unsigned AttributesAsWritten, |
Douglas Gregor | 813a066 | 2015-06-19 18:14:38 +0000 | [diff] [blame] | 577 | QualType T, |
John McCall | 339bb66 | 2010-06-04 20:50:08 +0000 | [diff] [blame] | 578 | TypeSourceInfo *TInfo, |
Ted Kremenek | 49be9e0 | 2010-05-18 21:09:07 +0000 | [diff] [blame] | 579 | tok::ObjCKeywordKind MethodImplKind, |
| 580 | DeclContext *lexicalDC){ |
Ted Kremenek | 959e830 | 2010-03-12 02:31:10 +0000 | [diff] [blame] | 581 | IdentifierInfo *PropertyId = FD.D.getIdentifier(); |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 582 | |
Douglas Gregor | 9dd25b7 | 2015-12-10 23:02:09 +0000 | [diff] [blame] | 583 | // Property defaults to 'assign' if it is readwrite, unless this is ARC |
| 584 | // and the type is retainable. |
| 585 | bool isAssign; |
| 586 | if (Attributes & (ObjCDeclSpec::DQ_PR_assign | |
| 587 | ObjCDeclSpec::DQ_PR_unsafe_unretained)) { |
| 588 | isAssign = true; |
| 589 | } else if (getOwnershipRule(Attributes) || !isReadWrite) { |
| 590 | isAssign = false; |
| 591 | } else { |
| 592 | isAssign = (!getLangOpts().ObjCAutoRefCount || |
| 593 | !T->isObjCRetainableType()); |
| 594 | } |
| 595 | |
| 596 | // Issue a warning if property is 'assign' as default and its |
| 597 | // object, which is gc'able conforms to NSCopying protocol |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 598 | if (getLangOpts().getGC() != LangOptions::NonGC && |
Douglas Gregor | 9dd25b7 | 2015-12-10 23:02:09 +0000 | [diff] [blame] | 599 | isAssign && !(Attributes & ObjCDeclSpec::DQ_PR_assign)) { |
John McCall | 8b07ec2 | 2010-05-15 11:32:37 +0000 | [diff] [blame] | 600 | if (const ObjCObjectPointerType *ObjPtrTy = |
| 601 | T->getAs<ObjCObjectPointerType>()) { |
| 602 | ObjCInterfaceDecl *IDecl = ObjPtrTy->getObjectType()->getInterface(); |
| 603 | if (IDecl) |
| 604 | if (ObjCProtocolDecl* PNSCopying = |
| 605 | LookupProtocol(&Context.Idents.get("NSCopying"), AtLoc)) |
| 606 | if (IDecl->ClassImplementsProtocol(PNSCopying, true)) |
| 607 | Diag(AtLoc, diag::warn_implements_nscopying) << PropertyId; |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 608 | } |
Douglas Gregor | 9dd25b7 | 2015-12-10 23:02:09 +0000 | [diff] [blame] | 609 | } |
Eli Friedman | 999af7b | 2013-07-09 01:38:07 +0000 | [diff] [blame] | 610 | |
| 611 | if (T->isObjCObjectType()) { |
Stephen Kelly | 1c301dc | 2018-08-09 21:09:38 +0000 | [diff] [blame] | 612 | SourceLocation StarLoc = TInfo->getTypeLoc().getEndLoc(); |
Alp Toker | b6cc592 | 2014-05-03 03:45:55 +0000 | [diff] [blame] | 613 | StarLoc = getLocForEndOfToken(StarLoc); |
Eli Friedman | 999af7b | 2013-07-09 01:38:07 +0000 | [diff] [blame] | 614 | Diag(FD.D.getIdentifierLoc(), diag::err_statically_allocated_object) |
| 615 | << FixItHint::CreateInsertion(StarLoc, "*"); |
| 616 | T = Context.getObjCObjectPointerType(T); |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 617 | SourceLocation TLoc = TInfo->getTypeLoc().getBeginLoc(); |
Eli Friedman | 999af7b | 2013-07-09 01:38:07 +0000 | [diff] [blame] | 618 | TInfo = Context.getTrivialTypeSourceInfo(T, TLoc); |
| 619 | } |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 620 | |
George Burgess IV | 00f70bd | 2018-03-01 05:43:23 +0000 | [diff] [blame] | 621 | DeclContext *DC = CDecl; |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 622 | ObjCPropertyDecl *PDecl = ObjCPropertyDecl::Create(Context, DC, |
| 623 | FD.D.getIdentifierLoc(), |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 624 | PropertyId, AtLoc, |
Douglas Gregor | 813a066 | 2015-06-19 18:14:38 +0000 | [diff] [blame] | 625 | LParenLoc, T, TInfo); |
Ted Kremenek | 959e830 | 2010-03-12 02:31:10 +0000 | [diff] [blame] | 626 | |
Manman Ren | 5b78640 | 2016-01-28 18:49:28 +0000 | [diff] [blame] | 627 | bool isClassProperty = (AttributesAsWritten & ObjCDeclSpec::DQ_PR_class) || |
| 628 | (Attributes & ObjCDeclSpec::DQ_PR_class); |
| 629 | // Class property and instance property can have the same name. |
| 630 | if (ObjCPropertyDecl *prevDecl = ObjCPropertyDecl::findPropertyDecl( |
| 631 | DC, PropertyId, ObjCPropertyDecl::getQueryKind(isClassProperty))) { |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 632 | Diag(PDecl->getLocation(), diag::err_duplicate_property); |
Ted Kremenek | 679708e | 2010-03-15 18:47:25 +0000 | [diff] [blame] | 633 | Diag(prevDecl->getLocation(), diag::note_property_declare); |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 634 | PDecl->setInvalidDecl(); |
| 635 | } |
Ted Kremenek | 49be9e0 | 2010-05-18 21:09:07 +0000 | [diff] [blame] | 636 | else { |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 637 | DC->addDecl(PDecl); |
Ted Kremenek | 49be9e0 | 2010-05-18 21:09:07 +0000 | [diff] [blame] | 638 | if (lexicalDC) |
| 639 | PDecl->setLexicalDeclContext(lexicalDC); |
| 640 | } |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 641 | |
| 642 | if (T->isArrayType() || T->isFunctionType()) { |
| 643 | Diag(AtLoc, diag::err_property_type) << T; |
| 644 | PDecl->setInvalidDecl(); |
| 645 | } |
| 646 | |
| 647 | ProcessDeclAttributes(S, PDecl, FD.D); |
| 648 | |
| 649 | // Regardless of setter/getter attribute, we save the default getter/setter |
| 650 | // selector names in anticipation of declaration of setter/getter methods. |
Argyrios Kyrtzidis | 194b28e | 2017-03-16 18:25:40 +0000 | [diff] [blame] | 651 | PDecl->setGetterName(GetterSel, GetterNameLoc); |
| 652 | PDecl->setSetterName(SetterSel, SetterNameLoc); |
Argyrios Kyrtzidis | 52bfc2b | 2011-07-12 04:30:16 +0000 | [diff] [blame] | 653 | PDecl->setPropertyAttributesAsWritten( |
Argyrios Kyrtzidis | b458ffb | 2011-11-06 18:58:12 +0000 | [diff] [blame] | 654 | makePropertyAttributesAsWritten(AttributesAsWritten)); |
Argyrios Kyrtzidis | 52bfc2b | 2011-07-12 04:30:16 +0000 | [diff] [blame] | 655 | |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 656 | if (Attributes & ObjCDeclSpec::DQ_PR_readonly) |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 657 | PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_readonly); |
| 658 | |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 659 | if (Attributes & ObjCDeclSpec::DQ_PR_getter) |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 660 | PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_getter); |
| 661 | |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 662 | if (Attributes & ObjCDeclSpec::DQ_PR_setter) |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 663 | PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_setter); |
| 664 | |
| 665 | if (isReadWrite) |
| 666 | PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_readwrite); |
| 667 | |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 668 | if (Attributes & ObjCDeclSpec::DQ_PR_retain) |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 669 | PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_retain); |
| 670 | |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 671 | if (Attributes & ObjCDeclSpec::DQ_PR_strong) |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 672 | PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_strong); |
| 673 | |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 674 | if (Attributes & ObjCDeclSpec::DQ_PR_weak) |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 675 | PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_weak); |
| 676 | |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 677 | if (Attributes & ObjCDeclSpec::DQ_PR_copy) |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 678 | PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_copy); |
| 679 | |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 680 | if (Attributes & ObjCDeclSpec::DQ_PR_unsafe_unretained) |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 681 | PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_unsafe_unretained); |
| 682 | |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 683 | if (isAssign) |
| 684 | PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_assign); |
| 685 | |
John McCall | 4319286 | 2011-09-13 18:31:23 +0000 | [diff] [blame] | 686 | // In the semantic attributes, one of nonatomic or atomic is always set. |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 687 | if (Attributes & ObjCDeclSpec::DQ_PR_nonatomic) |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 688 | PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_nonatomic); |
John McCall | 4319286 | 2011-09-13 18:31:23 +0000 | [diff] [blame] | 689 | else |
Fariborz Jahanian | c3bcde0 | 2011-06-11 00:45:12 +0000 | [diff] [blame] | 690 | PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_atomic); |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 691 | |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 692 | // 'unsafe_unretained' is alias for 'assign'. |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 693 | if (Attributes & ObjCDeclSpec::DQ_PR_unsafe_unretained) |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 694 | PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_assign); |
| 695 | if (isAssign) |
| 696 | PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_unsafe_unretained); |
| 697 | |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 698 | if (MethodImplKind == tok::objc_required) |
| 699 | PDecl->setPropertyImplementation(ObjCPropertyDecl::Required); |
| 700 | else if (MethodImplKind == tok::objc_optional) |
| 701 | PDecl->setPropertyImplementation(ObjCPropertyDecl::Optional); |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 702 | |
Douglas Gregor | 813a066 | 2015-06-19 18:14:38 +0000 | [diff] [blame] | 703 | if (Attributes & ObjCDeclSpec::DQ_PR_nullability) |
| 704 | PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_nullability); |
| 705 | |
Douglas Gregor | 849ebc2 | 2015-06-19 18:14:46 +0000 | [diff] [blame] | 706 | if (Attributes & ObjCDeclSpec::DQ_PR_null_resettable) |
| 707 | PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_null_resettable); |
| 708 | |
Manman Ren | 387ff7f | 2016-01-26 18:52:43 +0000 | [diff] [blame] | 709 | if (Attributes & ObjCDeclSpec::DQ_PR_class) |
| 710 | PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_class); |
| 711 | |
Ted Kremenek | 959e830 | 2010-03-12 02:31:10 +0000 | [diff] [blame] | 712 | return PDecl; |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 713 | } |
| 714 | |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 715 | static void checkARCPropertyImpl(Sema &S, SourceLocation propertyImplLoc, |
| 716 | ObjCPropertyDecl *property, |
| 717 | ObjCIvarDecl *ivar) { |
| 718 | if (property->isInvalidDecl() || ivar->isInvalidDecl()) return; |
| 719 | |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 720 | QualType ivarType = ivar->getType(); |
| 721 | Qualifiers::ObjCLifetime ivarLifetime = ivarType.getObjCLifetime(); |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 722 | |
John McCall | 4319286 | 2011-09-13 18:31:23 +0000 | [diff] [blame] | 723 | // The lifetime implied by the property's attributes. |
| 724 | Qualifiers::ObjCLifetime propertyLifetime = |
| 725 | getImpliedARCOwnership(property->getPropertyAttributes(), |
| 726 | property->getType()); |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 727 | |
John McCall | 4319286 | 2011-09-13 18:31:23 +0000 | [diff] [blame] | 728 | // We're fine if they match. |
| 729 | if (propertyLifetime == ivarLifetime) return; |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 730 | |
John McCall | 460ce58 | 2015-10-22 18:38:17 +0000 | [diff] [blame] | 731 | // None isn't a valid lifetime for an object ivar in ARC, and |
| 732 | // __autoreleasing is never valid; don't diagnose twice. |
| 733 | if ((ivarLifetime == Qualifiers::OCL_None && |
| 734 | S.getLangOpts().ObjCAutoRefCount) || |
John McCall | 4319286 | 2011-09-13 18:31:23 +0000 | [diff] [blame] | 735 | ivarLifetime == Qualifiers::OCL_Autoreleasing) |
| 736 | return; |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 737 | |
John McCall | d8561f0 | 2012-08-20 23:36:59 +0000 | [diff] [blame] | 738 | // If the ivar is private, and it's implicitly __unsafe_unretained |
| 739 | // becaues of its type, then pretend it was actually implicitly |
| 740 | // __strong. This is only sound because we're processing the |
| 741 | // property implementation before parsing any method bodies. |
| 742 | if (ivarLifetime == Qualifiers::OCL_ExplicitNone && |
| 743 | propertyLifetime == Qualifiers::OCL_Strong && |
| 744 | ivar->getAccessControl() == ObjCIvarDecl::Private) { |
| 745 | SplitQualType split = ivarType.split(); |
| 746 | if (split.Quals.hasObjCLifetime()) { |
| 747 | assert(ivarType->isObjCARCImplicitlyUnretainedType()); |
| 748 | split.Quals.setObjCLifetime(Qualifiers::OCL_Strong); |
| 749 | ivarType = S.Context.getQualifiedType(split); |
| 750 | ivar->setType(ivarType); |
| 751 | return; |
| 752 | } |
| 753 | } |
| 754 | |
John McCall | 4319286 | 2011-09-13 18:31:23 +0000 | [diff] [blame] | 755 | switch (propertyLifetime) { |
| 756 | case Qualifiers::OCL_Strong: |
Argyrios Kyrtzidis | f5b993f | 2012-12-12 22:48:25 +0000 | [diff] [blame] | 757 | S.Diag(ivar->getLocation(), diag::err_arc_strong_property_ownership) |
John McCall | 4319286 | 2011-09-13 18:31:23 +0000 | [diff] [blame] | 758 | << property->getDeclName() |
| 759 | << ivar->getDeclName() |
| 760 | << ivarLifetime; |
| 761 | break; |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 762 | |
John McCall | 4319286 | 2011-09-13 18:31:23 +0000 | [diff] [blame] | 763 | case Qualifiers::OCL_Weak: |
Richard Smith | f881267 | 2016-12-02 22:38:31 +0000 | [diff] [blame] | 764 | S.Diag(ivar->getLocation(), diag::err_weak_property) |
John McCall | 4319286 | 2011-09-13 18:31:23 +0000 | [diff] [blame] | 765 | << property->getDeclName() |
| 766 | << ivar->getDeclName(); |
| 767 | break; |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 768 | |
John McCall | 4319286 | 2011-09-13 18:31:23 +0000 | [diff] [blame] | 769 | case Qualifiers::OCL_ExplicitNone: |
Argyrios Kyrtzidis | f5b993f | 2012-12-12 22:48:25 +0000 | [diff] [blame] | 770 | S.Diag(ivar->getLocation(), diag::err_arc_assign_property_ownership) |
John McCall | 4319286 | 2011-09-13 18:31:23 +0000 | [diff] [blame] | 771 | << property->getDeclName() |
| 772 | << ivar->getDeclName() |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 773 | << ((property->getPropertyAttributesAsWritten() |
John McCall | 4319286 | 2011-09-13 18:31:23 +0000 | [diff] [blame] | 774 | & ObjCPropertyDecl::OBJC_PR_assign) != 0); |
| 775 | break; |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 776 | |
John McCall | 4319286 | 2011-09-13 18:31:23 +0000 | [diff] [blame] | 777 | case Qualifiers::OCL_Autoreleasing: |
| 778 | llvm_unreachable("properties cannot be autoreleasing"); |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 779 | |
John McCall | 4319286 | 2011-09-13 18:31:23 +0000 | [diff] [blame] | 780 | case Qualifiers::OCL_None: |
| 781 | // Any other property should be ignored. |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 782 | return; |
| 783 | } |
| 784 | |
| 785 | S.Diag(property->getLocation(), diag::note_property_declare); |
Argyrios Kyrtzidis | f5b993f | 2012-12-12 22:48:25 +0000 | [diff] [blame] | 786 | if (propertyImplLoc.isValid()) |
| 787 | S.Diag(propertyImplLoc, diag::note_property_synthesize); |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 788 | } |
| 789 | |
Fariborz Jahanian | 39ba639 | 2012-01-11 18:26:06 +0000 | [diff] [blame] | 790 | /// setImpliedPropertyAttributeForReadOnlyProperty - |
| 791 | /// This routine evaludates life-time attributes for a 'readonly' |
| 792 | /// property with no known lifetime of its own, using backing |
| 793 | /// 'ivar's attribute, if any. If no backing 'ivar', property's |
| 794 | /// life-time is assumed 'strong'. |
| 795 | static void setImpliedPropertyAttributeForReadOnlyProperty( |
| 796 | ObjCPropertyDecl *property, ObjCIvarDecl *ivar) { |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 797 | Qualifiers::ObjCLifetime propertyLifetime = |
Fariborz Jahanian | 39ba639 | 2012-01-11 18:26:06 +0000 | [diff] [blame] | 798 | getImpliedARCOwnership(property->getPropertyAttributes(), |
| 799 | property->getType()); |
| 800 | if (propertyLifetime != Qualifiers::OCL_None) |
| 801 | return; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 802 | |
Fariborz Jahanian | 39ba639 | 2012-01-11 18:26:06 +0000 | [diff] [blame] | 803 | if (!ivar) { |
| 804 | // if no backing ivar, make property 'strong'. |
| 805 | property->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_strong); |
| 806 | return; |
| 807 | } |
| 808 | // property assumes owenership of backing ivar. |
| 809 | QualType ivarType = ivar->getType(); |
| 810 | Qualifiers::ObjCLifetime ivarLifetime = ivarType.getObjCLifetime(); |
| 811 | if (ivarLifetime == Qualifiers::OCL_Strong) |
| 812 | property->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_strong); |
| 813 | else if (ivarLifetime == Qualifiers::OCL_Weak) |
| 814 | property->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_weak); |
Fariborz Jahanian | 39ba639 | 2012-01-11 18:26:06 +0000 | [diff] [blame] | 815 | } |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 816 | |
Alex Lorenz | 50b2dd3 | 2017-07-13 11:06:22 +0000 | [diff] [blame] | 817 | static bool |
| 818 | isIncompatiblePropertyAttribute(unsigned Attr1, unsigned Attr2, |
| 819 | ObjCPropertyDecl::PropertyAttributeKind Kind) { |
| 820 | return (Attr1 & Kind) != (Attr2 & Kind); |
| 821 | } |
| 822 | |
| 823 | static bool areIncompatiblePropertyAttributes(unsigned Attr1, unsigned Attr2, |
| 824 | unsigned Kinds) { |
| 825 | return ((Attr1 & Kinds) != 0) != ((Attr2 & Kinds) != 0); |
| 826 | } |
| 827 | |
| 828 | /// SelectPropertyForSynthesisFromProtocols - Finds the most appropriate |
| 829 | /// property declaration that should be synthesised in all of the inherited |
| 830 | /// protocols. It also diagnoses properties declared in inherited protocols with |
| 831 | /// mismatched types or attributes, since any of them can be candidate for |
| 832 | /// synthesis. |
| 833 | static ObjCPropertyDecl * |
| 834 | SelectPropertyForSynthesisFromProtocols(Sema &S, SourceLocation AtLoc, |
Benjamin Kramer | bf8d254 | 2013-05-23 15:53:44 +0000 | [diff] [blame] | 835 | ObjCInterfaceDecl *ClassDecl, |
Fariborz Jahanian | 0ebf879 | 2013-05-20 21:20:24 +0000 | [diff] [blame] | 836 | ObjCPropertyDecl *Property) { |
Alex Lorenz | 50b2dd3 | 2017-07-13 11:06:22 +0000 | [diff] [blame] | 837 | assert(isa<ObjCProtocolDecl>(Property->getDeclContext()) && |
| 838 | "Expected a property from a protocol"); |
| 839 | ObjCInterfaceDecl::ProtocolPropertySet ProtocolSet; |
| 840 | ObjCInterfaceDecl::PropertyDeclOrder Properties; |
Aaron Ballman | a9f49e3 | 2014-03-13 20:55:22 +0000 | [diff] [blame] | 841 | for (const auto *PI : ClassDecl->all_referenced_protocols()) { |
| 842 | if (const ObjCProtocolDecl *PDecl = PI->getDefinition()) |
Alex Lorenz | 50b2dd3 | 2017-07-13 11:06:22 +0000 | [diff] [blame] | 843 | PDecl->collectInheritedProtocolProperties(Property, ProtocolSet, |
| 844 | Properties); |
Fariborz Jahanian | 0ebf879 | 2013-05-20 21:20:24 +0000 | [diff] [blame] | 845 | } |
Alex Lorenz | 50b2dd3 | 2017-07-13 11:06:22 +0000 | [diff] [blame] | 846 | if (ObjCInterfaceDecl *SDecl = ClassDecl->getSuperClass()) { |
Fariborz Jahanian | 0ebf879 | 2013-05-20 21:20:24 +0000 | [diff] [blame] | 847 | while (SDecl) { |
Aaron Ballman | a9f49e3 | 2014-03-13 20:55:22 +0000 | [diff] [blame] | 848 | for (const auto *PI : SDecl->all_referenced_protocols()) { |
| 849 | if (const ObjCProtocolDecl *PDecl = PI->getDefinition()) |
Alex Lorenz | 50b2dd3 | 2017-07-13 11:06:22 +0000 | [diff] [blame] | 850 | PDecl->collectInheritedProtocolProperties(Property, ProtocolSet, |
| 851 | Properties); |
Fariborz Jahanian | 0ebf879 | 2013-05-20 21:20:24 +0000 | [diff] [blame] | 852 | } |
| 853 | SDecl = SDecl->getSuperClass(); |
| 854 | } |
Alex Lorenz | 50b2dd3 | 2017-07-13 11:06:22 +0000 | [diff] [blame] | 855 | } |
| 856 | |
| 857 | if (Properties.empty()) |
| 858 | return Property; |
| 859 | |
| 860 | ObjCPropertyDecl *OriginalProperty = Property; |
| 861 | size_t SelectedIndex = 0; |
| 862 | for (const auto &Prop : llvm::enumerate(Properties)) { |
| 863 | // Select the 'readwrite' property if such property exists. |
| 864 | if (Property->isReadOnly() && !Prop.value()->isReadOnly()) { |
| 865 | Property = Prop.value(); |
| 866 | SelectedIndex = Prop.index(); |
| 867 | } |
| 868 | } |
| 869 | if (Property != OriginalProperty) { |
| 870 | // Check that the old property is compatible with the new one. |
| 871 | Properties[SelectedIndex] = OriginalProperty; |
| 872 | } |
| 873 | |
Fariborz Jahanian | 0ebf879 | 2013-05-20 21:20:24 +0000 | [diff] [blame] | 874 | QualType RHSType = S.Context.getCanonicalType(Property->getType()); |
Alex Lorenz | 34d070f | 2017-08-22 10:38:07 +0000 | [diff] [blame] | 875 | unsigned OriginalAttributes = Property->getPropertyAttributesAsWritten(); |
Alex Lorenz | 50b2dd3 | 2017-07-13 11:06:22 +0000 | [diff] [blame] | 876 | enum MismatchKind { |
| 877 | IncompatibleType = 0, |
| 878 | HasNoExpectedAttribute, |
| 879 | HasUnexpectedAttribute, |
| 880 | DifferentGetter, |
| 881 | DifferentSetter |
| 882 | }; |
| 883 | // Represents a property from another protocol that conflicts with the |
| 884 | // selected declaration. |
| 885 | struct MismatchingProperty { |
| 886 | const ObjCPropertyDecl *Prop; |
| 887 | MismatchKind Kind; |
| 888 | StringRef AttributeName; |
| 889 | }; |
| 890 | SmallVector<MismatchingProperty, 4> Mismatches; |
| 891 | for (ObjCPropertyDecl *Prop : Properties) { |
| 892 | // Verify the property attributes. |
Alex Lorenz | 34d070f | 2017-08-22 10:38:07 +0000 | [diff] [blame] | 893 | unsigned Attr = Prop->getPropertyAttributesAsWritten(); |
Alex Lorenz | 50b2dd3 | 2017-07-13 11:06:22 +0000 | [diff] [blame] | 894 | if (Attr != OriginalAttributes) { |
| 895 | auto Diag = [&](bool OriginalHasAttribute, StringRef AttributeName) { |
| 896 | MismatchKind Kind = OriginalHasAttribute ? HasNoExpectedAttribute |
| 897 | : HasUnexpectedAttribute; |
| 898 | Mismatches.push_back({Prop, Kind, AttributeName}); |
| 899 | }; |
Alex Lorenz | 6137255 | 2018-05-02 22:40:19 +0000 | [diff] [blame] | 900 | // The ownership might be incompatible unless the property has no explicit |
| 901 | // ownership. |
| 902 | bool HasOwnership = (Attr & (ObjCPropertyDecl::OBJC_PR_retain | |
| 903 | ObjCPropertyDecl::OBJC_PR_strong | |
| 904 | ObjCPropertyDecl::OBJC_PR_copy | |
| 905 | ObjCPropertyDecl::OBJC_PR_assign | |
| 906 | ObjCPropertyDecl::OBJC_PR_unsafe_unretained | |
| 907 | ObjCPropertyDecl::OBJC_PR_weak)) != 0; |
| 908 | if (HasOwnership && |
| 909 | isIncompatiblePropertyAttribute(OriginalAttributes, Attr, |
Alex Lorenz | 50b2dd3 | 2017-07-13 11:06:22 +0000 | [diff] [blame] | 910 | ObjCPropertyDecl::OBJC_PR_copy)) { |
| 911 | Diag(OriginalAttributes & ObjCPropertyDecl::OBJC_PR_copy, "copy"); |
| 912 | continue; |
| 913 | } |
Alex Lorenz | 6137255 | 2018-05-02 22:40:19 +0000 | [diff] [blame] | 914 | if (HasOwnership && areIncompatiblePropertyAttributes( |
| 915 | OriginalAttributes, Attr, |
| 916 | ObjCPropertyDecl::OBJC_PR_retain | |
| 917 | ObjCPropertyDecl::OBJC_PR_strong)) { |
Alex Lorenz | 50b2dd3 | 2017-07-13 11:06:22 +0000 | [diff] [blame] | 918 | Diag(OriginalAttributes & (ObjCPropertyDecl::OBJC_PR_retain | |
| 919 | ObjCPropertyDecl::OBJC_PR_strong), |
| 920 | "retain (or strong)"); |
| 921 | continue; |
| 922 | } |
| 923 | if (isIncompatiblePropertyAttribute(OriginalAttributes, Attr, |
| 924 | ObjCPropertyDecl::OBJC_PR_atomic)) { |
| 925 | Diag(OriginalAttributes & ObjCPropertyDecl::OBJC_PR_atomic, "atomic"); |
| 926 | continue; |
| 927 | } |
| 928 | } |
| 929 | if (Property->getGetterName() != Prop->getGetterName()) { |
| 930 | Mismatches.push_back({Prop, DifferentGetter, ""}); |
| 931 | continue; |
| 932 | } |
| 933 | if (!Property->isReadOnly() && !Prop->isReadOnly() && |
| 934 | Property->getSetterName() != Prop->getSetterName()) { |
| 935 | Mismatches.push_back({Prop, DifferentSetter, ""}); |
| 936 | continue; |
| 937 | } |
Fariborz Jahanian | 0ebf879 | 2013-05-20 21:20:24 +0000 | [diff] [blame] | 938 | QualType LHSType = S.Context.getCanonicalType(Prop->getType()); |
| 939 | if (!S.Context.propertyTypesAreCompatible(LHSType, RHSType)) { |
| 940 | bool IncompatibleObjC = false; |
| 941 | QualType ConvertedType; |
| 942 | if (!S.isObjCPointerConversion(RHSType, LHSType, ConvertedType, IncompatibleObjC) |
| 943 | || IncompatibleObjC) { |
Alex Lorenz | 50b2dd3 | 2017-07-13 11:06:22 +0000 | [diff] [blame] | 944 | Mismatches.push_back({Prop, IncompatibleType, ""}); |
| 945 | continue; |
Fariborz Jahanian | 0ebf879 | 2013-05-20 21:20:24 +0000 | [diff] [blame] | 946 | } |
| 947 | } |
| 948 | } |
Alex Lorenz | 50b2dd3 | 2017-07-13 11:06:22 +0000 | [diff] [blame] | 949 | |
| 950 | if (Mismatches.empty()) |
| 951 | return Property; |
| 952 | |
| 953 | // Diagnose incompability. |
| 954 | { |
| 955 | bool HasIncompatibleAttributes = false; |
| 956 | for (const auto &Note : Mismatches) |
| 957 | HasIncompatibleAttributes = |
| 958 | Note.Kind != IncompatibleType ? true : HasIncompatibleAttributes; |
| 959 | // Promote the warning to an error if there are incompatible attributes or |
| 960 | // incompatible types together with readwrite/readonly incompatibility. |
| 961 | auto Diag = S.Diag(Property->getLocation(), |
| 962 | Property != OriginalProperty || HasIncompatibleAttributes |
| 963 | ? diag::err_protocol_property_mismatch |
| 964 | : diag::warn_protocol_property_mismatch); |
| 965 | Diag << Mismatches[0].Kind; |
| 966 | switch (Mismatches[0].Kind) { |
| 967 | case IncompatibleType: |
| 968 | Diag << Property->getType(); |
| 969 | break; |
| 970 | case HasNoExpectedAttribute: |
| 971 | case HasUnexpectedAttribute: |
| 972 | Diag << Mismatches[0].AttributeName; |
| 973 | break; |
| 974 | case DifferentGetter: |
| 975 | Diag << Property->getGetterName(); |
| 976 | break; |
| 977 | case DifferentSetter: |
| 978 | Diag << Property->getSetterName(); |
| 979 | break; |
| 980 | } |
| 981 | } |
| 982 | for (const auto &Note : Mismatches) { |
| 983 | auto Diag = |
| 984 | S.Diag(Note.Prop->getLocation(), diag::note_protocol_property_declare) |
| 985 | << Note.Kind; |
| 986 | switch (Note.Kind) { |
| 987 | case IncompatibleType: |
| 988 | Diag << Note.Prop->getType(); |
| 989 | break; |
| 990 | case HasNoExpectedAttribute: |
| 991 | case HasUnexpectedAttribute: |
| 992 | Diag << Note.AttributeName; |
| 993 | break; |
| 994 | case DifferentGetter: |
| 995 | Diag << Note.Prop->getGetterName(); |
| 996 | break; |
| 997 | case DifferentSetter: |
| 998 | Diag << Note.Prop->getSetterName(); |
| 999 | break; |
| 1000 | } |
| 1001 | } |
| 1002 | if (AtLoc.isValid()) |
Fariborz Jahanian | 0ebf879 | 2013-05-20 21:20:24 +0000 | [diff] [blame] | 1003 | S.Diag(AtLoc, diag::note_property_synthesize); |
Alex Lorenz | 50b2dd3 | 2017-07-13 11:06:22 +0000 | [diff] [blame] | 1004 | |
| 1005 | return Property; |
Fariborz Jahanian | 0ebf879 | 2013-05-20 21:20:24 +0000 | [diff] [blame] | 1006 | } |
| 1007 | |
Douglas Gregor | 9dd25b7 | 2015-12-10 23:02:09 +0000 | [diff] [blame] | 1008 | /// Determine whether any storage attributes were written on the property. |
Manman Ren | 5b78640 | 2016-01-28 18:49:28 +0000 | [diff] [blame] | 1009 | static bool hasWrittenStorageAttribute(ObjCPropertyDecl *Prop, |
| 1010 | ObjCPropertyQueryKind QueryKind) { |
Douglas Gregor | 9dd25b7 | 2015-12-10 23:02:09 +0000 | [diff] [blame] | 1011 | if (Prop->getPropertyAttributesAsWritten() & OwnershipMask) return true; |
| 1012 | |
| 1013 | // If this is a readwrite property in a class extension that refines |
| 1014 | // a readonly property in the original class definition, check it as |
| 1015 | // well. |
| 1016 | |
| 1017 | // If it's a readonly property, we're not interested. |
| 1018 | if (Prop->isReadOnly()) return false; |
| 1019 | |
| 1020 | // Is it declared in an extension? |
| 1021 | auto Category = dyn_cast<ObjCCategoryDecl>(Prop->getDeclContext()); |
| 1022 | if (!Category || !Category->IsClassExtension()) return false; |
| 1023 | |
| 1024 | // Find the corresponding property in the primary class definition. |
| 1025 | auto OrigClass = Category->getClassInterface(); |
| 1026 | for (auto Found : OrigClass->lookup(Prop->getDeclName())) { |
| 1027 | if (ObjCPropertyDecl *OrigProp = dyn_cast<ObjCPropertyDecl>(Found)) |
| 1028 | return OrigProp->getPropertyAttributesAsWritten() & OwnershipMask; |
| 1029 | } |
| 1030 | |
Douglas Gregor | 0253543 | 2015-12-18 00:52:31 +0000 | [diff] [blame] | 1031 | // Look through all of the protocols. |
| 1032 | for (const auto *Proto : OrigClass->all_referenced_protocols()) { |
Manman Ren | 5b78640 | 2016-01-28 18:49:28 +0000 | [diff] [blame] | 1033 | if (ObjCPropertyDecl *OrigProp = Proto->FindPropertyDeclaration( |
| 1034 | Prop->getIdentifier(), QueryKind)) |
Douglas Gregor | 0253543 | 2015-12-18 00:52:31 +0000 | [diff] [blame] | 1035 | return OrigProp->getPropertyAttributesAsWritten() & OwnershipMask; |
| 1036 | } |
| 1037 | |
Douglas Gregor | 9dd25b7 | 2015-12-10 23:02:09 +0000 | [diff] [blame] | 1038 | return false; |
| 1039 | } |
| 1040 | |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 1041 | /// ActOnPropertyImplDecl - This routine performs semantic checks and |
| 1042 | /// builds the AST node for a property implementation declaration; declared |
James Dennett | 2a4d13c | 2012-06-15 07:13:21 +0000 | [diff] [blame] | 1043 | /// as \@synthesize or \@dynamic. |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 1044 | /// |
John McCall | 4887165 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 1045 | Decl *Sema::ActOnPropertyImplDecl(Scope *S, |
| 1046 | SourceLocation AtLoc, |
| 1047 | SourceLocation PropertyLoc, |
| 1048 | bool Synthesize, |
John McCall | 4887165 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 1049 | IdentifierInfo *PropertyId, |
Douglas Gregor | b1b71e5 | 2010-11-17 01:03:52 +0000 | [diff] [blame] | 1050 | IdentifierInfo *PropertyIvar, |
Manman Ren | 5b78640 | 2016-01-28 18:49:28 +0000 | [diff] [blame] | 1051 | SourceLocation PropertyIvarLoc, |
| 1052 | ObjCPropertyQueryKind QueryKind) { |
Ted Kremenek | 273c4f5 | 2010-04-05 23:45:09 +0000 | [diff] [blame] | 1053 | ObjCContainerDecl *ClassImpDecl = |
Fariborz Jahanian | a195a51 | 2011-09-19 16:32:32 +0000 | [diff] [blame] | 1054 | dyn_cast<ObjCContainerDecl>(CurContext); |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 1055 | // Make sure we have a context for the property implementation declaration. |
| 1056 | if (!ClassImpDecl) { |
Richard Smith | f881267 | 2016-12-02 22:38:31 +0000 | [diff] [blame] | 1057 | Diag(AtLoc, diag::err_missing_property_context); |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1058 | return nullptr; |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 1059 | } |
Argyrios Kyrtzidis | 3460880 | 2012-02-28 17:50:39 +0000 | [diff] [blame] | 1060 | if (PropertyIvarLoc.isInvalid()) |
| 1061 | PropertyIvarLoc = PropertyLoc; |
Eli Friedman | 169ec35 | 2012-05-01 22:26:06 +0000 | [diff] [blame] | 1062 | SourceLocation PropertyDiagLoc = PropertyLoc; |
| 1063 | if (PropertyDiagLoc.isInvalid()) |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 1064 | PropertyDiagLoc = ClassImpDecl->getBeginLoc(); |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1065 | ObjCPropertyDecl *property = nullptr; |
| 1066 | ObjCInterfaceDecl *IDecl = nullptr; |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 1067 | // Find the class or category class where this property must have |
| 1068 | // a declaration. |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1069 | ObjCImplementationDecl *IC = nullptr; |
| 1070 | ObjCCategoryImplDecl *CatImplClass = nullptr; |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 1071 | if ((IC = dyn_cast<ObjCImplementationDecl>(ClassImpDecl))) { |
| 1072 | IDecl = IC->getClassInterface(); |
| 1073 | // We always synthesize an interface for an implementation |
| 1074 | // without an interface decl. So, IDecl is always non-zero. |
| 1075 | assert(IDecl && |
| 1076 | "ActOnPropertyImplDecl - @implementation without @interface"); |
| 1077 | |
| 1078 | // Look for this property declaration in the @implementation's @interface |
Manman Ren | 5b78640 | 2016-01-28 18:49:28 +0000 | [diff] [blame] | 1079 | property = IDecl->FindPropertyDeclaration(PropertyId, QueryKind); |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 1080 | if (!property) { |
Richard Smith | f881267 | 2016-12-02 22:38:31 +0000 | [diff] [blame] | 1081 | Diag(PropertyLoc, diag::err_bad_property_decl) << IDecl->getDeclName(); |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1082 | return nullptr; |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 1083 | } |
Manman Ren | dfef406 | 2016-01-29 19:16:39 +0000 | [diff] [blame] | 1084 | if (property->isClassProperty() && Synthesize) { |
Richard Smith | f881267 | 2016-12-02 22:38:31 +0000 | [diff] [blame] | 1085 | Diag(PropertyLoc, diag::err_synthesize_on_class_property) << PropertyId; |
Manman Ren | dfef406 | 2016-01-29 19:16:39 +0000 | [diff] [blame] | 1086 | return nullptr; |
| 1087 | } |
Fariborz Jahanian | 382c040 | 2010-12-17 22:28:16 +0000 | [diff] [blame] | 1088 | unsigned PIkind = property->getPropertyAttributesAsWritten(); |
Fariborz Jahanian | c3bcde0 | 2011-06-11 00:45:12 +0000 | [diff] [blame] | 1089 | if ((PIkind & (ObjCPropertyDecl::OBJC_PR_atomic | |
| 1090 | ObjCPropertyDecl::OBJC_PR_nonatomic) ) == 0) { |
Fariborz Jahanian | 382c040 | 2010-12-17 22:28:16 +0000 | [diff] [blame] | 1091 | if (AtLoc.isValid()) |
| 1092 | Diag(AtLoc, diag::warn_implicit_atomic_property); |
| 1093 | else |
| 1094 | Diag(IC->getLocation(), diag::warn_auto_implicit_atomic_property); |
| 1095 | Diag(property->getLocation(), diag::note_property_declare); |
| 1096 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1097 | |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 1098 | if (const ObjCCategoryDecl *CD = |
| 1099 | dyn_cast<ObjCCategoryDecl>(property->getDeclContext())) { |
| 1100 | if (!CD->IsClassExtension()) { |
Richard Smith | f881267 | 2016-12-02 22:38:31 +0000 | [diff] [blame] | 1101 | Diag(PropertyLoc, diag::err_category_property) << CD->getDeclName(); |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 1102 | Diag(property->getLocation(), diag::note_property_declare); |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1103 | return nullptr; |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 1104 | } |
| 1105 | } |
Fariborz Jahanian | 199a9b5 | 2012-05-19 18:17:17 +0000 | [diff] [blame] | 1106 | if (Synthesize&& |
| 1107 | (PIkind & ObjCPropertyDecl::OBJC_PR_readonly) && |
| 1108 | property->hasAttr<IBOutletAttr>() && |
| 1109 | !AtLoc.isValid()) { |
Fariborz Jahanian | f3c171e | 2013-02-08 23:32:30 +0000 | [diff] [blame] | 1110 | bool ReadWriteProperty = false; |
| 1111 | // Search into the class extensions and see if 'readonly property is |
| 1112 | // redeclared 'readwrite', then no warning is to be issued. |
Aaron Ballman | b4a5345 | 2014-03-13 21:57:01 +0000 | [diff] [blame] | 1113 | for (auto *Ext : IDecl->known_extensions()) { |
Fariborz Jahanian | f3c171e | 2013-02-08 23:32:30 +0000 | [diff] [blame] | 1114 | DeclContext::lookup_result R = Ext->lookup(property->getDeclName()); |
| 1115 | if (!R.empty()) |
| 1116 | if (ObjCPropertyDecl *ExtProp = dyn_cast<ObjCPropertyDecl>(R[0])) { |
| 1117 | PIkind = ExtProp->getPropertyAttributesAsWritten(); |
| 1118 | if (PIkind & ObjCPropertyDecl::OBJC_PR_readwrite) { |
| 1119 | ReadWriteProperty = true; |
| 1120 | break; |
| 1121 | } |
| 1122 | } |
| 1123 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1124 | |
Fariborz Jahanian | f3c171e | 2013-02-08 23:32:30 +0000 | [diff] [blame] | 1125 | if (!ReadWriteProperty) { |
Ted Kremenek | 7ee2567 | 2013-02-09 07:13:16 +0000 | [diff] [blame] | 1126 | Diag(property->getLocation(), diag::warn_auto_readonly_iboutlet_property) |
Aaron Ballman | 1fb3955 | 2014-01-03 14:23:03 +0000 | [diff] [blame] | 1127 | << property; |
Fariborz Jahanian | f3c171e | 2013-02-08 23:32:30 +0000 | [diff] [blame] | 1128 | SourceLocation readonlyLoc; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1129 | if (LocPropertyAttribute(Context, "readonly", |
Fariborz Jahanian | f3c171e | 2013-02-08 23:32:30 +0000 | [diff] [blame] | 1130 | property->getLParenLoc(), readonlyLoc)) { |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1131 | SourceLocation endLoc = |
Fariborz Jahanian | f3c171e | 2013-02-08 23:32:30 +0000 | [diff] [blame] | 1132 | readonlyLoc.getLocWithOffset(strlen("readonly")-1); |
| 1133 | SourceRange ReadonlySourceRange(readonlyLoc, endLoc); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1134 | Diag(property->getLocation(), |
Fariborz Jahanian | f3c171e | 2013-02-08 23:32:30 +0000 | [diff] [blame] | 1135 | diag::note_auto_readonly_iboutlet_fixup_suggest) << |
| 1136 | FixItHint::CreateReplacement(ReadonlySourceRange, "readwrite"); |
| 1137 | } |
Fariborz Jahanian | b52d8d2 | 2012-05-21 17:02:43 +0000 | [diff] [blame] | 1138 | } |
Fariborz Jahanian | 199a9b5 | 2012-05-19 18:17:17 +0000 | [diff] [blame] | 1139 | } |
Fariborz Jahanian | 0ebf879 | 2013-05-20 21:20:24 +0000 | [diff] [blame] | 1140 | if (Synthesize && isa<ObjCProtocolDecl>(property->getDeclContext())) |
Alex Lorenz | 50b2dd3 | 2017-07-13 11:06:22 +0000 | [diff] [blame] | 1141 | property = SelectPropertyForSynthesisFromProtocols(*this, AtLoc, IDecl, |
| 1142 | property); |
| 1143 | |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 1144 | } else if ((CatImplClass = dyn_cast<ObjCCategoryImplDecl>(ClassImpDecl))) { |
| 1145 | if (Synthesize) { |
Richard Smith | f881267 | 2016-12-02 22:38:31 +0000 | [diff] [blame] | 1146 | Diag(AtLoc, diag::err_synthesize_category_decl); |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1147 | return nullptr; |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 1148 | } |
| 1149 | IDecl = CatImplClass->getClassInterface(); |
| 1150 | if (!IDecl) { |
Richard Smith | f881267 | 2016-12-02 22:38:31 +0000 | [diff] [blame] | 1151 | Diag(AtLoc, diag::err_missing_property_interface); |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1152 | return nullptr; |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 1153 | } |
| 1154 | ObjCCategoryDecl *Category = |
| 1155 | IDecl->FindCategoryDeclaration(CatImplClass->getIdentifier()); |
| 1156 | |
| 1157 | // If category for this implementation not found, it is an error which |
| 1158 | // has already been reported eralier. |
| 1159 | if (!Category) |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1160 | return nullptr; |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 1161 | // Look for this property declaration in @implementation's category |
Manman Ren | 5b78640 | 2016-01-28 18:49:28 +0000 | [diff] [blame] | 1162 | property = Category->FindPropertyDeclaration(PropertyId, QueryKind); |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 1163 | if (!property) { |
Richard Smith | f881267 | 2016-12-02 22:38:31 +0000 | [diff] [blame] | 1164 | Diag(PropertyLoc, diag::err_bad_category_property_decl) |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 1165 | << Category->getDeclName(); |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1166 | return nullptr; |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 1167 | } |
| 1168 | } else { |
Richard Smith | f881267 | 2016-12-02 22:38:31 +0000 | [diff] [blame] | 1169 | Diag(AtLoc, diag::err_bad_property_context); |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1170 | return nullptr; |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 1171 | } |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1172 | ObjCIvarDecl *Ivar = nullptr; |
Eli Friedman | 169ec35 | 2012-05-01 22:26:06 +0000 | [diff] [blame] | 1173 | bool CompleteTypeErr = false; |
Fariborz Jahanian | 3da7775 | 2012-05-15 18:12:51 +0000 | [diff] [blame] | 1174 | bool compat = true; |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 1175 | // Check that we have a valid, previously declared ivar for @synthesize |
| 1176 | if (Synthesize) { |
| 1177 | // @synthesize |
| 1178 | if (!PropertyIvar) |
| 1179 | PropertyIvar = PropertyId; |
Fariborz Jahanian | 39ba639 | 2012-01-11 18:26:06 +0000 | [diff] [blame] | 1180 | // Check that this is a previously declared 'ivar' in 'IDecl' interface |
| 1181 | ObjCInterfaceDecl *ClassDeclared; |
| 1182 | Ivar = IDecl->lookupInstanceVariable(PropertyIvar, ClassDeclared); |
| 1183 | QualType PropType = property->getType(); |
| 1184 | QualType PropertyIvarType = PropType.getNonReferenceType(); |
Eli Friedman | 169ec35 | 2012-05-01 22:26:06 +0000 | [diff] [blame] | 1185 | |
| 1186 | if (RequireCompleteType(PropertyDiagLoc, PropertyIvarType, |
Douglas Gregor | 7bfb2d0 | 2012-05-04 16:32:21 +0000 | [diff] [blame] | 1187 | diag::err_incomplete_synthesized_property, |
| 1188 | property->getDeclName())) { |
Eli Friedman | 169ec35 | 2012-05-01 22:26:06 +0000 | [diff] [blame] | 1189 | Diag(property->getLocation(), diag::note_property_declare); |
| 1190 | CompleteTypeErr = true; |
| 1191 | } |
| 1192 | |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1193 | if (getLangOpts().ObjCAutoRefCount && |
Fariborz Jahanian | 39ba639 | 2012-01-11 18:26:06 +0000 | [diff] [blame] | 1194 | (property->getPropertyAttributesAsWritten() & |
Fariborz Jahanian | a230dea | 2012-01-11 19:48:08 +0000 | [diff] [blame] | 1195 | ObjCPropertyDecl::OBJC_PR_readonly) && |
| 1196 | PropertyIvarType->isObjCRetainableType()) { |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1197 | setImpliedPropertyAttributeForReadOnlyProperty(property, Ivar); |
Fariborz Jahanian | 39ba639 | 2012-01-11 18:26:06 +0000 | [diff] [blame] | 1198 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1199 | |
| 1200 | ObjCPropertyDecl::PropertyAttributeKind kind |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1201 | = property->getPropertyAttributes(); |
John McCall | 4319286 | 2011-09-13 18:31:23 +0000 | [diff] [blame] | 1202 | |
John McCall | 460ce58 | 2015-10-22 18:38:17 +0000 | [diff] [blame] | 1203 | bool isARCWeak = false; |
| 1204 | if (kind & ObjCPropertyDecl::OBJC_PR_weak) { |
| 1205 | // Add GC __weak to the ivar type if the property is weak. |
| 1206 | if (getLangOpts().getGC() != LangOptions::NonGC) { |
| 1207 | assert(!getLangOpts().ObjCAutoRefCount); |
| 1208 | if (PropertyIvarType.isObjCGCStrong()) { |
| 1209 | Diag(PropertyDiagLoc, diag::err_gc_weak_property_strong_type); |
| 1210 | Diag(property->getLocation(), diag::note_property_declare); |
| 1211 | } else { |
| 1212 | PropertyIvarType = |
| 1213 | Context.getObjCGCQualType(PropertyIvarType, Qualifiers::Weak); |
| 1214 | } |
| 1215 | |
| 1216 | // Otherwise, check whether ARC __weak is enabled and works with |
| 1217 | // the property type. |
John McCall | 4319286 | 2011-09-13 18:31:23 +0000 | [diff] [blame] | 1218 | } else { |
John McCall | 460ce58 | 2015-10-22 18:38:17 +0000 | [diff] [blame] | 1219 | if (!getLangOpts().ObjCWeak) { |
John McCall | b61e14e | 2015-10-27 04:54:50 +0000 | [diff] [blame] | 1220 | // Only complain here when synthesizing an ivar. |
| 1221 | if (!Ivar) { |
| 1222 | Diag(PropertyDiagLoc, |
| 1223 | getLangOpts().ObjCWeakRuntime |
| 1224 | ? diag::err_synthesizing_arc_weak_property_disabled |
| 1225 | : diag::err_synthesizing_arc_weak_property_no_runtime); |
| 1226 | Diag(property->getLocation(), diag::note_property_declare); |
John McCall | 460ce58 | 2015-10-22 18:38:17 +0000 | [diff] [blame] | 1227 | } |
John McCall | b61e14e | 2015-10-27 04:54:50 +0000 | [diff] [blame] | 1228 | CompleteTypeErr = true; // suppress later diagnostics about the ivar |
John McCall | 460ce58 | 2015-10-22 18:38:17 +0000 | [diff] [blame] | 1229 | } else { |
| 1230 | isARCWeak = true; |
| 1231 | if (const ObjCObjectPointerType *ObjT = |
| 1232 | PropertyIvarType->getAs<ObjCObjectPointerType>()) { |
| 1233 | const ObjCInterfaceDecl *ObjI = ObjT->getInterfaceDecl(); |
| 1234 | if (ObjI && ObjI->isArcWeakrefUnavailable()) { |
| 1235 | Diag(property->getLocation(), |
| 1236 | diag::err_arc_weak_unavailable_property) |
| 1237 | << PropertyIvarType; |
| 1238 | Diag(ClassImpDecl->getLocation(), diag::note_implemented_by_class) |
| 1239 | << ClassImpDecl->getName(); |
| 1240 | } |
| 1241 | } |
| 1242 | } |
Fariborz Jahanian | eebdb67 | 2011-09-07 16:24:21 +0000 | [diff] [blame] | 1243 | } |
Fariborz Jahanian | eebdb67 | 2011-09-07 16:24:21 +0000 | [diff] [blame] | 1244 | } |
John McCall | 460ce58 | 2015-10-22 18:38:17 +0000 | [diff] [blame] | 1245 | |
Fariborz Jahanian | edc2971 | 2012-06-20 17:18:31 +0000 | [diff] [blame] | 1246 | if (AtLoc.isInvalid()) { |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1247 | // Check when default synthesizing a property that there is |
Fariborz Jahanian | edc2971 | 2012-06-20 17:18:31 +0000 | [diff] [blame] | 1248 | // an ivar matching property name and issue warning; since this |
| 1249 | // is the most common case of not using an ivar used for backing |
| 1250 | // property in non-default synthesis case. |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1251 | ObjCInterfaceDecl *ClassDeclared=nullptr; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1252 | ObjCIvarDecl *originalIvar = |
| 1253 | IDecl->lookupInstanceVariable(property->getIdentifier(), |
Fariborz Jahanian | edc2971 | 2012-06-20 17:18:31 +0000 | [diff] [blame] | 1254 | ClassDeclared); |
| 1255 | if (originalIvar) { |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1256 | Diag(PropertyDiagLoc, |
Fariborz Jahanian | edc2971 | 2012-06-20 17:18:31 +0000 | [diff] [blame] | 1257 | diag::warn_autosynthesis_property_ivar_match) |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1258 | << PropertyId << (Ivar == nullptr) << PropertyIvar |
Fariborz Jahanian | 1db30fc | 2012-06-29 18:43:30 +0000 | [diff] [blame] | 1259 | << originalIvar->getIdentifier(); |
Fariborz Jahanian | edc2971 | 2012-06-20 17:18:31 +0000 | [diff] [blame] | 1260 | Diag(property->getLocation(), diag::note_property_declare); |
| 1261 | Diag(originalIvar->getLocation(), diag::note_ivar_decl); |
Fariborz Jahanian | 63d4020 | 2012-06-19 22:51:22 +0000 | [diff] [blame] | 1262 | } |
Fariborz Jahanian | edc2971 | 2012-06-20 17:18:31 +0000 | [diff] [blame] | 1263 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1264 | |
Fariborz Jahanian | edc2971 | 2012-06-20 17:18:31 +0000 | [diff] [blame] | 1265 | if (!Ivar) { |
John McCall | 4319286 | 2011-09-13 18:31:23 +0000 | [diff] [blame] | 1266 | // In ARC, give the ivar a lifetime qualifier based on the |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1267 | // property attributes. |
John McCall | 460ce58 | 2015-10-22 18:38:17 +0000 | [diff] [blame] | 1268 | if ((getLangOpts().ObjCAutoRefCount || isARCWeak) && |
John McCall | 4319286 | 2011-09-13 18:31:23 +0000 | [diff] [blame] | 1269 | !PropertyIvarType.getObjCLifetime() && |
| 1270 | PropertyIvarType->isObjCRetainableType()) { |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1271 | |
John McCall | 4319286 | 2011-09-13 18:31:23 +0000 | [diff] [blame] | 1272 | // It's an error if we have to do this and the user didn't |
| 1273 | // explicitly write an ownership attribute on the property. |
Manman Ren | 5b78640 | 2016-01-28 18:49:28 +0000 | [diff] [blame] | 1274 | if (!hasWrittenStorageAttribute(property, QueryKind) && |
John McCall | 4319286 | 2011-09-13 18:31:23 +0000 | [diff] [blame] | 1275 | !(kind & ObjCPropertyDecl::OBJC_PR_strong)) { |
Eli Friedman | 169ec35 | 2012-05-01 22:26:06 +0000 | [diff] [blame] | 1276 | Diag(PropertyDiagLoc, |
Argyrios Kyrtzidis | e3be979 | 2011-07-26 21:48:26 +0000 | [diff] [blame] | 1277 | diag::err_arc_objc_property_default_assign_on_object); |
| 1278 | Diag(property->getLocation(), diag::note_property_declare); |
John McCall | 4319286 | 2011-09-13 18:31:23 +0000 | [diff] [blame] | 1279 | } else { |
| 1280 | Qualifiers::ObjCLifetime lifetime = |
| 1281 | getImpliedARCOwnership(kind, PropertyIvarType); |
| 1282 | assert(lifetime && "no lifetime for property?"); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1283 | |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1284 | Qualifiers qs; |
John McCall | 4319286 | 2011-09-13 18:31:23 +0000 | [diff] [blame] | 1285 | qs.addObjCLifetime(lifetime); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1286 | PropertyIvarType = Context.getQualifiedType(PropertyIvarType, qs); |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1287 | } |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1288 | } |
| 1289 | |
Abramo Bagnara | dff1930 | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 1290 | Ivar = ObjCIvarDecl::Create(Context, ClassImpDecl, |
Argyrios Kyrtzidis | 3460880 | 2012-02-28 17:50:39 +0000 | [diff] [blame] | 1291 | PropertyIvarLoc,PropertyIvarLoc, PropertyIvar, |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1292 | PropertyIvarType, /*Dinfo=*/nullptr, |
Fariborz Jahanian | 522eb7b | 2010-12-15 23:29:04 +0000 | [diff] [blame] | 1293 | ObjCIvarDecl::Private, |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1294 | (Expr *)nullptr, true); |
Fariborz Jahanian | 873bae7 | 2013-07-05 17:18:11 +0000 | [diff] [blame] | 1295 | if (RequireNonAbstractType(PropertyIvarLoc, |
| 1296 | PropertyIvarType, |
| 1297 | diag::err_abstract_type_in_decl, |
| 1298 | AbstractSynthesizedIvarType)) { |
| 1299 | Diag(property->getLocation(), diag::note_property_declare); |
Richard Smith | 81f5ade | 2016-12-15 02:28:18 +0000 | [diff] [blame] | 1300 | // An abstract type is as bad as an incomplete type. |
| 1301 | CompleteTypeErr = true; |
| 1302 | } |
Volodymyr Sapsai | 30680e9 | 2017-10-23 22:01:41 +0000 | [diff] [blame] | 1303 | if (!CompleteTypeErr) { |
| 1304 | const RecordType *RecordTy = PropertyIvarType->getAs<RecordType>(); |
| 1305 | if (RecordTy && RecordTy->getDecl()->hasFlexibleArrayMember()) { |
| 1306 | Diag(PropertyIvarLoc, diag::err_synthesize_variable_sized_ivar) |
| 1307 | << PropertyIvarType; |
| 1308 | CompleteTypeErr = true; // suppress later diagnostics about the ivar |
| 1309 | } |
| 1310 | } |
Richard Smith | 81f5ade | 2016-12-15 02:28:18 +0000 | [diff] [blame] | 1311 | if (CompleteTypeErr) |
Eli Friedman | 169ec35 | 2012-05-01 22:26:06 +0000 | [diff] [blame] | 1312 | Ivar->setInvalidDecl(); |
Daniel Dunbar | ab5d7ae | 2010-04-02 19:44:54 +0000 | [diff] [blame] | 1313 | ClassImpDecl->addDecl(Ivar); |
Richard Smith | 05afe5e | 2012-03-13 03:12:56 +0000 | [diff] [blame] | 1314 | IDecl->makeDeclVisibleInContext(Ivar); |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 1315 | |
John McCall | 5fb5df9 | 2012-06-20 06:18:46 +0000 | [diff] [blame] | 1316 | if (getLangOpts().ObjCRuntime.isFragile()) |
Richard Smith | f881267 | 2016-12-02 22:38:31 +0000 | [diff] [blame] | 1317 | Diag(PropertyDiagLoc, diag::err_missing_property_ivar_decl) |
Eli Friedman | 169ec35 | 2012-05-01 22:26:06 +0000 | [diff] [blame] | 1318 | << PropertyId; |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 1319 | // Note! I deliberately want it to fall thru so, we have a |
| 1320 | // a property implementation and to avoid future warnings. |
John McCall | 5fb5df9 | 2012-06-20 06:18:46 +0000 | [diff] [blame] | 1321 | } else if (getLangOpts().ObjCRuntime.isNonFragile() && |
Douglas Gregor | 0b144e1 | 2011-12-15 00:29:59 +0000 | [diff] [blame] | 1322 | !declaresSameEntity(ClassDeclared, IDecl)) { |
Richard Smith | f881267 | 2016-12-02 22:38:31 +0000 | [diff] [blame] | 1323 | Diag(PropertyDiagLoc, diag::err_ivar_in_superclass_use) |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 1324 | << property->getDeclName() << Ivar->getDeclName() |
| 1325 | << ClassDeclared->getDeclName(); |
| 1326 | Diag(Ivar->getLocation(), diag::note_previous_access_declaration) |
Daniel Dunbar | 56df977 | 2010-08-17 22:39:59 +0000 | [diff] [blame] | 1327 | << Ivar << Ivar->getName(); |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 1328 | // Note! I deliberately want it to fall thru so more errors are caught. |
| 1329 | } |
Anna Zaks | 9802f9f | 2012-09-26 18:55:16 +0000 | [diff] [blame] | 1330 | property->setPropertyIvarDecl(Ivar); |
| 1331 | |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 1332 | QualType IvarType = Context.getCanonicalType(Ivar->getType()); |
| 1333 | |
| 1334 | // Check that type of property and its ivar are type compatible. |
Fariborz Jahanian | 3da7775 | 2012-05-15 18:12:51 +0000 | [diff] [blame] | 1335 | if (!Context.hasSameType(PropertyIvarType, IvarType)) { |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1336 | if (isa<ObjCObjectPointerType>(PropertyIvarType) |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1337 | && isa<ObjCObjectPointerType>(IvarType)) |
Richard Smith | da83703 | 2012-09-14 18:27:01 +0000 | [diff] [blame] | 1338 | compat = |
Fariborz Jahanian | 9f963c2 | 2010-05-18 23:04:17 +0000 | [diff] [blame] | 1339 | Context.canAssignObjCInterfaces( |
Fariborz Jahanian | b24b568 | 2011-03-28 23:47:18 +0000 | [diff] [blame] | 1340 | PropertyIvarType->getAs<ObjCObjectPointerType>(), |
Fariborz Jahanian | 9f963c2 | 2010-05-18 23:04:17 +0000 | [diff] [blame] | 1341 | IvarType->getAs<ObjCObjectPointerType>()); |
Douglas Gregor | c03a108 | 2011-01-28 02:26:04 +0000 | [diff] [blame] | 1342 | else { |
Argyrios Kyrtzidis | 3460880 | 2012-02-28 17:50:39 +0000 | [diff] [blame] | 1343 | compat = (CheckAssignmentConstraints(PropertyIvarLoc, PropertyIvarType, |
| 1344 | IvarType) |
John McCall | 8cb679e | 2010-11-15 09:13:47 +0000 | [diff] [blame] | 1345 | == Compatible); |
Douglas Gregor | c03a108 | 2011-01-28 02:26:04 +0000 | [diff] [blame] | 1346 | } |
Fariborz Jahanian | 9f963c2 | 2010-05-18 23:04:17 +0000 | [diff] [blame] | 1347 | if (!compat) { |
Richard Smith | f881267 | 2016-12-02 22:38:31 +0000 | [diff] [blame] | 1348 | Diag(PropertyDiagLoc, diag::err_property_ivar_type) |
Ted Kremenek | 5921b83 | 2010-03-23 19:02:22 +0000 | [diff] [blame] | 1349 | << property->getDeclName() << PropType |
| 1350 | << Ivar->getDeclName() << IvarType; |
| 1351 | Diag(Ivar->getLocation(), diag::note_ivar_decl); |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 1352 | // Note! I deliberately want it to fall thru so, we have a |
| 1353 | // a property implementation and to avoid future warnings. |
| 1354 | } |
Fariborz Jahanian | 3da7775 | 2012-05-15 18:12:51 +0000 | [diff] [blame] | 1355 | else { |
| 1356 | // FIXME! Rules for properties are somewhat different that those |
| 1357 | // for assignments. Use a new routine to consolidate all cases; |
| 1358 | // specifically for property redeclarations as well as for ivars. |
| 1359 | QualType lhsType =Context.getCanonicalType(PropertyIvarType).getUnqualifiedType(); |
| 1360 | QualType rhsType =Context.getCanonicalType(IvarType).getUnqualifiedType(); |
| 1361 | if (lhsType != rhsType && |
| 1362 | lhsType->isArithmeticType()) { |
Richard Smith | f881267 | 2016-12-02 22:38:31 +0000 | [diff] [blame] | 1363 | Diag(PropertyDiagLoc, diag::err_property_ivar_type) |
Fariborz Jahanian | 3da7775 | 2012-05-15 18:12:51 +0000 | [diff] [blame] | 1364 | << property->getDeclName() << PropType |
| 1365 | << Ivar->getDeclName() << IvarType; |
| 1366 | Diag(Ivar->getLocation(), diag::note_ivar_decl); |
| 1367 | // Fall thru - see previous comment |
| 1368 | } |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 1369 | } |
| 1370 | // __weak is explicit. So it works on Canonical type. |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1371 | if ((PropType.isObjCGCWeak() && !IvarType.isObjCGCWeak() && |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1372 | getLangOpts().getGC() != LangOptions::NonGC)) { |
Richard Smith | f881267 | 2016-12-02 22:38:31 +0000 | [diff] [blame] | 1373 | Diag(PropertyDiagLoc, diag::err_weak_property) |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 1374 | << property->getDeclName() << Ivar->getDeclName(); |
Fariborz Jahanian | eebdb67 | 2011-09-07 16:24:21 +0000 | [diff] [blame] | 1375 | Diag(Ivar->getLocation(), diag::note_ivar_decl); |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 1376 | // Fall thru - see previous comment |
| 1377 | } |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1378 | // Fall thru - see previous comment |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 1379 | if ((property->getType()->isObjCObjectPointerType() || |
| 1380 | PropType.isObjCGCStrong()) && IvarType.isObjCGCWeak() && |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1381 | getLangOpts().getGC() != LangOptions::NonGC) { |
Richard Smith | f881267 | 2016-12-02 22:38:31 +0000 | [diff] [blame] | 1382 | Diag(PropertyDiagLoc, diag::err_strong_property) |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 1383 | << property->getDeclName() << Ivar->getDeclName(); |
| 1384 | // Fall thru - see previous comment |
| 1385 | } |
| 1386 | } |
John McCall | 460ce58 | 2015-10-22 18:38:17 +0000 | [diff] [blame] | 1387 | if (getLangOpts().ObjCAutoRefCount || isARCWeak || |
| 1388 | Ivar->getType().getObjCLifetime()) |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1389 | checkARCPropertyImpl(*this, PropertyLoc, property, Ivar); |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 1390 | } else if (PropertyIvar) |
| 1391 | // @dynamic |
Richard Smith | f881267 | 2016-12-02 22:38:31 +0000 | [diff] [blame] | 1392 | Diag(PropertyDiagLoc, diag::err_dynamic_property_ivar_decl); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1393 | |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 1394 | assert (property && "ActOnPropertyImplDecl - property declaration missing"); |
| 1395 | ObjCPropertyImplDecl *PIDecl = |
| 1396 | ObjCPropertyImplDecl::Create(Context, CurContext, AtLoc, PropertyLoc, |
| 1397 | property, |
| 1398 | (Synthesize ? |
| 1399 | ObjCPropertyImplDecl::Synthesize |
| 1400 | : ObjCPropertyImplDecl::Dynamic), |
Douglas Gregor | b1b71e5 | 2010-11-17 01:03:52 +0000 | [diff] [blame] | 1401 | Ivar, PropertyIvarLoc); |
Eli Friedman | 169ec35 | 2012-05-01 22:26:06 +0000 | [diff] [blame] | 1402 | |
Fariborz Jahanian | 3da7775 | 2012-05-15 18:12:51 +0000 | [diff] [blame] | 1403 | if (CompleteTypeErr || !compat) |
Eli Friedman | 169ec35 | 2012-05-01 22:26:06 +0000 | [diff] [blame] | 1404 | PIDecl->setInvalidDecl(); |
| 1405 | |
Fariborz Jahanian | 25491a2 | 2010-05-05 21:52:17 +0000 | [diff] [blame] | 1406 | if (ObjCMethodDecl *getterMethod = property->getGetterMethodDecl()) { |
| 1407 | getterMethod->createImplicitParams(Context, IDecl); |
Eli Friedman | 169ec35 | 2012-05-01 22:26:06 +0000 | [diff] [blame] | 1408 | if (getLangOpts().CPlusPlus && Synthesize && !CompleteTypeErr && |
Fariborz Jahanian | dddf158 | 2010-10-15 22:42:59 +0000 | [diff] [blame] | 1409 | Ivar->getType()->isRecordType()) { |
Fariborz Jahanian | 25491a2 | 2010-05-05 21:52:17 +0000 | [diff] [blame] | 1410 | // For Objective-C++, need to synthesize the AST for the IVAR object to be |
| 1411 | // returned by the getter as it must conform to C++'s copy-return rules. |
| 1412 | // FIXME. Eventually we want to do this for Objective-C as well. |
Eli Friedman | eaf3414 | 2012-10-18 20:14:08 +0000 | [diff] [blame] | 1413 | SynthesizedFunctionScope Scope(*this, getterMethod); |
Fariborz Jahanian | 25491a2 | 2010-05-05 21:52:17 +0000 | [diff] [blame] | 1414 | ImplicitParamDecl *SelfDecl = getterMethod->getSelfDecl(); |
Bruno Ricci | 5fc4db7 | 2018-12-21 14:10:18 +0000 | [diff] [blame^] | 1415 | DeclRefExpr *SelfExpr = new (Context) |
| 1416 | DeclRefExpr(Context, SelfDecl, false, SelfDecl->getType(), VK_LValue, |
| 1417 | PropertyDiagLoc); |
Eli Friedman | eaf3414 | 2012-10-18 20:14:08 +0000 | [diff] [blame] | 1418 | MarkDeclRefReferenced(SelfExpr); |
Jordan Rose | 31c05a1 | 2014-01-14 17:29:00 +0000 | [diff] [blame] | 1419 | Expr *LoadSelfExpr = |
| 1420 | ImplicitCastExpr::Create(Context, SelfDecl->getType(), |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1421 | CK_LValueToRValue, SelfExpr, nullptr, |
| 1422 | VK_RValue); |
Fariborz Jahanian | 25491a2 | 2010-05-05 21:52:17 +0000 | [diff] [blame] | 1423 | Expr *IvarRefExpr = |
Douglas Gregor | e83b956 | 2015-07-07 03:57:53 +0000 | [diff] [blame] | 1424 | new (Context) ObjCIvarRefExpr(Ivar, |
| 1425 | Ivar->getUsageType(SelfDecl->getType()), |
| 1426 | PropertyDiagLoc, |
Fariborz Jahanian | f12ff4df | 2013-04-02 18:57:54 +0000 | [diff] [blame] | 1427 | Ivar->getLocation(), |
Jordan Rose | 31c05a1 | 2014-01-14 17:29:00 +0000 | [diff] [blame] | 1428 | LoadSelfExpr, true, true); |
Alp Toker | 314cc81 | 2014-01-25 16:55:45 +0000 | [diff] [blame] | 1429 | ExprResult Res = PerformCopyInitialization( |
| 1430 | InitializedEntity::InitializeResult(PropertyDiagLoc, |
| 1431 | getterMethod->getReturnType(), |
| 1432 | /*NRVO=*/false), |
Nikola Smiljanic | 03ff259 | 2014-05-29 14:05:12 +0000 | [diff] [blame] | 1433 | PropertyDiagLoc, IvarRefExpr); |
Fariborz Jahanian | 25491a2 | 2010-05-05 21:52:17 +0000 | [diff] [blame] | 1434 | if (!Res.isInvalid()) { |
Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 1435 | Expr *ResExpr = Res.getAs<Expr>(); |
Fariborz Jahanian | 25491a2 | 2010-05-05 21:52:17 +0000 | [diff] [blame] | 1436 | if (ResExpr) |
John McCall | 5d41378 | 2010-12-06 08:20:24 +0000 | [diff] [blame] | 1437 | ResExpr = MaybeCreateExprWithCleanups(ResExpr); |
Fariborz Jahanian | 25491a2 | 2010-05-05 21:52:17 +0000 | [diff] [blame] | 1438 | PIDecl->setGetterCXXConstructor(ResExpr); |
| 1439 | } |
| 1440 | } |
Fariborz Jahanian | f4105f5 | 2011-06-25 00:17:46 +0000 | [diff] [blame] | 1441 | if (property->hasAttr<NSReturnsNotRetainedAttr>() && |
| 1442 | !getterMethod->hasAttr<NSReturnsNotRetainedAttr>()) { |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1443 | Diag(getterMethod->getLocation(), |
Fariborz Jahanian | f4105f5 | 2011-06-25 00:17:46 +0000 | [diff] [blame] | 1444 | diag::warn_property_getter_owning_mismatch); |
| 1445 | Diag(property->getLocation(), diag::note_property_declare); |
| 1446 | } |
Fariborz Jahanian | 39d1c42 | 2013-05-16 19:08:44 +0000 | [diff] [blame] | 1447 | if (getLangOpts().ObjCAutoRefCount && Synthesize) |
| 1448 | switch (getterMethod->getMethodFamily()) { |
| 1449 | case OMF_retain: |
| 1450 | case OMF_retainCount: |
| 1451 | case OMF_release: |
| 1452 | case OMF_autorelease: |
| 1453 | Diag(getterMethod->getLocation(), diag::err_arc_illegal_method_def) |
| 1454 | << 1 << getterMethod->getSelector(); |
| 1455 | break; |
| 1456 | default: |
| 1457 | break; |
| 1458 | } |
Fariborz Jahanian | 25491a2 | 2010-05-05 21:52:17 +0000 | [diff] [blame] | 1459 | } |
| 1460 | if (ObjCMethodDecl *setterMethod = property->getSetterMethodDecl()) { |
| 1461 | setterMethod->createImplicitParams(Context, IDecl); |
Eli Friedman | 169ec35 | 2012-05-01 22:26:06 +0000 | [diff] [blame] | 1462 | if (getLangOpts().CPlusPlus && Synthesize && !CompleteTypeErr && |
| 1463 | Ivar->getType()->isRecordType()) { |
Fariborz Jahanian | 25491a2 | 2010-05-05 21:52:17 +0000 | [diff] [blame] | 1464 | // FIXME. Eventually we want to do this for Objective-C as well. |
Eli Friedman | eaf3414 | 2012-10-18 20:14:08 +0000 | [diff] [blame] | 1465 | SynthesizedFunctionScope Scope(*this, setterMethod); |
Fariborz Jahanian | 25491a2 | 2010-05-05 21:52:17 +0000 | [diff] [blame] | 1466 | ImplicitParamDecl *SelfDecl = setterMethod->getSelfDecl(); |
Bruno Ricci | 5fc4db7 | 2018-12-21 14:10:18 +0000 | [diff] [blame^] | 1467 | DeclRefExpr *SelfExpr = new (Context) |
| 1468 | DeclRefExpr(Context, SelfDecl, false, SelfDecl->getType(), VK_LValue, |
| 1469 | PropertyDiagLoc); |
Eli Friedman | eaf3414 | 2012-10-18 20:14:08 +0000 | [diff] [blame] | 1470 | MarkDeclRefReferenced(SelfExpr); |
Jordan Rose | 31c05a1 | 2014-01-14 17:29:00 +0000 | [diff] [blame] | 1471 | Expr *LoadSelfExpr = |
| 1472 | ImplicitCastExpr::Create(Context, SelfDecl->getType(), |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1473 | CK_LValueToRValue, SelfExpr, nullptr, |
| 1474 | VK_RValue); |
Fariborz Jahanian | 25491a2 | 2010-05-05 21:52:17 +0000 | [diff] [blame] | 1475 | Expr *lhs = |
Douglas Gregor | e83b956 | 2015-07-07 03:57:53 +0000 | [diff] [blame] | 1476 | new (Context) ObjCIvarRefExpr(Ivar, |
| 1477 | Ivar->getUsageType(SelfDecl->getType()), |
| 1478 | PropertyDiagLoc, |
Fariborz Jahanian | f12ff4df | 2013-04-02 18:57:54 +0000 | [diff] [blame] | 1479 | Ivar->getLocation(), |
Jordan Rose | 31c05a1 | 2014-01-14 17:29:00 +0000 | [diff] [blame] | 1480 | LoadSelfExpr, true, true); |
Fariborz Jahanian | 25491a2 | 2010-05-05 21:52:17 +0000 | [diff] [blame] | 1481 | ObjCMethodDecl::param_iterator P = setterMethod->param_begin(); |
| 1482 | ParmVarDecl *Param = (*P); |
John McCall | 526ab47 | 2011-10-25 17:37:35 +0000 | [diff] [blame] | 1483 | QualType T = Param->getType().getNonReferenceType(); |
Bruno Ricci | 5fc4db7 | 2018-12-21 14:10:18 +0000 | [diff] [blame^] | 1484 | DeclRefExpr *rhs = new (Context) |
| 1485 | DeclRefExpr(Context, Param, false, T, VK_LValue, PropertyDiagLoc); |
Eli Friedman | eaf3414 | 2012-10-18 20:14:08 +0000 | [diff] [blame] | 1486 | MarkDeclRefReferenced(rhs); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1487 | ExprResult Res = BuildBinOp(S, PropertyDiagLoc, |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 1488 | BO_Assign, lhs, rhs); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1489 | if (property->getPropertyAttributes() & |
Fariborz Jahanian | 565ed7a | 2011-10-06 18:38:18 +0000 | [diff] [blame] | 1490 | ObjCPropertyDecl::OBJC_PR_atomic) { |
Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 1491 | Expr *callExpr = Res.getAs<Expr>(); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1492 | if (const CXXOperatorCallExpr *CXXCE = |
Fariborz Jahanian | 13d3f86 | 2011-10-07 21:08:14 +0000 | [diff] [blame] | 1493 | dyn_cast_or_null<CXXOperatorCallExpr>(callExpr)) |
| 1494 | if (const FunctionDecl *FuncDecl = CXXCE->getDirectCallee()) |
Fariborz Jahanian | 565ed7a | 2011-10-06 18:38:18 +0000 | [diff] [blame] | 1495 | if (!FuncDecl->isTrivial()) |
Fariborz Jahanian | a08a747 | 2012-01-10 00:37:01 +0000 | [diff] [blame] | 1496 | if (property->getType()->isReferenceType()) { |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1497 | Diag(PropertyDiagLoc, |
Fariborz Jahanian | a08a747 | 2012-01-10 00:37:01 +0000 | [diff] [blame] | 1498 | diag::err_atomic_property_nontrivial_assign_op) |
Fariborz Jahanian | 565ed7a | 2011-10-06 18:38:18 +0000 | [diff] [blame] | 1499 | << property->getType(); |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 1500 | Diag(FuncDecl->getBeginLoc(), diag::note_callee_decl) |
| 1501 | << FuncDecl; |
Fariborz Jahanian | a08a747 | 2012-01-10 00:37:01 +0000 | [diff] [blame] | 1502 | } |
Fariborz Jahanian | 565ed7a | 2011-10-06 18:38:18 +0000 | [diff] [blame] | 1503 | } |
Nikola Smiljanic | 01a7598 | 2014-05-29 10:55:11 +0000 | [diff] [blame] | 1504 | PIDecl->setSetterCXXAssignment(Res.getAs<Expr>()); |
Fariborz Jahanian | 25491a2 | 2010-05-05 21:52:17 +0000 | [diff] [blame] | 1505 | } |
| 1506 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1507 | |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 1508 | if (IC) { |
| 1509 | if (Synthesize) |
| 1510 | if (ObjCPropertyImplDecl *PPIDecl = |
| 1511 | IC->FindPropertyImplIvarDecl(PropertyIvar)) { |
Richard Smith | f881267 | 2016-12-02 22:38:31 +0000 | [diff] [blame] | 1512 | Diag(PropertyLoc, diag::err_duplicate_ivar_use) |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 1513 | << PropertyId << PPIDecl->getPropertyDecl()->getIdentifier() |
| 1514 | << PropertyIvar; |
| 1515 | Diag(PPIDecl->getLocation(), diag::note_previous_use); |
| 1516 | } |
| 1517 | |
| 1518 | if (ObjCPropertyImplDecl *PPIDecl |
Manman Ren | 5b78640 | 2016-01-28 18:49:28 +0000 | [diff] [blame] | 1519 | = IC->FindPropertyImplDecl(PropertyId, QueryKind)) { |
Richard Smith | f881267 | 2016-12-02 22:38:31 +0000 | [diff] [blame] | 1520 | Diag(PropertyLoc, diag::err_property_implemented) << PropertyId; |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 1521 | Diag(PPIDecl->getLocation(), diag::note_previous_declaration); |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1522 | return nullptr; |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 1523 | } |
| 1524 | IC->addPropertyImplementation(PIDecl); |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1525 | if (getLangOpts().ObjCDefaultSynthProperties && |
John McCall | 5fb5df9 | 2012-06-20 06:18:46 +0000 | [diff] [blame] | 1526 | getLangOpts().ObjCRuntime.isNonFragile() && |
Ted Kremenek | 0c2c90b | 2012-01-05 22:47:47 +0000 | [diff] [blame] | 1527 | !IDecl->isObjCRequiresPropertyDefs()) { |
Fariborz Jahanian | 1872298 | 2010-07-17 00:59:30 +0000 | [diff] [blame] | 1528 | // Diagnose if an ivar was lazily synthesdized due to a previous |
| 1529 | // use and if 1) property is @dynamic or 2) property is synthesized |
Fariborz Jahanian | 76b3537 | 2010-08-24 18:48:05 +0000 | [diff] [blame] | 1530 | // but it requires an ivar of different name. |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1531 | ObjCInterfaceDecl *ClassDeclared=nullptr; |
| 1532 | ObjCIvarDecl *Ivar = nullptr; |
Fariborz Jahanian | 1872298 | 2010-07-17 00:59:30 +0000 | [diff] [blame] | 1533 | if (!Synthesize) |
| 1534 | Ivar = IDecl->lookupInstanceVariable(PropertyId, ClassDeclared); |
| 1535 | else { |
| 1536 | if (PropertyIvar && PropertyIvar != PropertyId) |
| 1537 | Ivar = IDecl->lookupInstanceVariable(PropertyId, ClassDeclared); |
| 1538 | } |
Fariborz Jahanian | 76b3537 | 2010-08-24 18:48:05 +0000 | [diff] [blame] | 1539 | // Issue diagnostics only if Ivar belongs to current class. |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1540 | if (Ivar && Ivar->getSynthesize() && |
Douglas Gregor | 0b144e1 | 2011-12-15 00:29:59 +0000 | [diff] [blame] | 1541 | declaresSameEntity(IC->getClassInterface(), ClassDeclared)) { |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1542 | Diag(Ivar->getLocation(), diag::err_undeclared_var_use) |
Fariborz Jahanian | 1872298 | 2010-07-17 00:59:30 +0000 | [diff] [blame] | 1543 | << PropertyId; |
| 1544 | Ivar->setInvalidDecl(); |
| 1545 | } |
| 1546 | } |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 1547 | } else { |
| 1548 | if (Synthesize) |
| 1549 | if (ObjCPropertyImplDecl *PPIDecl = |
| 1550 | CatImplClass->FindPropertyImplIvarDecl(PropertyIvar)) { |
Richard Smith | f881267 | 2016-12-02 22:38:31 +0000 | [diff] [blame] | 1551 | Diag(PropertyDiagLoc, diag::err_duplicate_ivar_use) |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 1552 | << PropertyId << PPIDecl->getPropertyDecl()->getIdentifier() |
| 1553 | << PropertyIvar; |
| 1554 | Diag(PPIDecl->getLocation(), diag::note_previous_use); |
| 1555 | } |
| 1556 | |
| 1557 | if (ObjCPropertyImplDecl *PPIDecl = |
Manman Ren | 5b78640 | 2016-01-28 18:49:28 +0000 | [diff] [blame] | 1558 | CatImplClass->FindPropertyImplDecl(PropertyId, QueryKind)) { |
Richard Smith | f881267 | 2016-12-02 22:38:31 +0000 | [diff] [blame] | 1559 | Diag(PropertyDiagLoc, diag::err_property_implemented) << PropertyId; |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 1560 | Diag(PPIDecl->getLocation(), diag::note_previous_declaration); |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1561 | return nullptr; |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 1562 | } |
| 1563 | CatImplClass->addPropertyImplementation(PIDecl); |
| 1564 | } |
| 1565 | |
John McCall | 4887165 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 1566 | return PIDecl; |
Ted Kremenek | ac597f3 | 2010-03-12 00:46:40 +0000 | [diff] [blame] | 1567 | } |
| 1568 | |
| 1569 | //===----------------------------------------------------------------------===// |
| 1570 | // Helper methods. |
| 1571 | //===----------------------------------------------------------------------===// |
| 1572 | |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 1573 | /// DiagnosePropertyMismatch - Compares two properties for their |
| 1574 | /// attributes and types and warns on a variety of inconsistencies. |
| 1575 | /// |
| 1576 | void |
| 1577 | Sema::DiagnosePropertyMismatch(ObjCPropertyDecl *Property, |
| 1578 | ObjCPropertyDecl *SuperProperty, |
Fariborz Jahanian | b809a0e | 2013-10-04 18:06:08 +0000 | [diff] [blame] | 1579 | const IdentifierInfo *inheritedName, |
| 1580 | bool OverridingProtocolProperty) { |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 1581 | ObjCPropertyDecl::PropertyAttributeKind CAttr = |
Fariborz Jahanian | b809a0e | 2013-10-04 18:06:08 +0000 | [diff] [blame] | 1582 | Property->getPropertyAttributes(); |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 1583 | ObjCPropertyDecl::PropertyAttributeKind SAttr = |
Fariborz Jahanian | b809a0e | 2013-10-04 18:06:08 +0000 | [diff] [blame] | 1584 | SuperProperty->getPropertyAttributes(); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1585 | |
Fariborz Jahanian | b809a0e | 2013-10-04 18:06:08 +0000 | [diff] [blame] | 1586 | // We allow readonly properties without an explicit ownership |
| 1587 | // (assign/unsafe_unretained/weak/retain/strong/copy) in super class |
| 1588 | // to be overridden by a property with any explicit ownership in the subclass. |
| 1589 | if (!OverridingProtocolProperty && |
| 1590 | !getOwnershipRule(SAttr) && getOwnershipRule(CAttr)) |
| 1591 | ; |
| 1592 | else { |
| 1593 | if ((CAttr & ObjCPropertyDecl::OBJC_PR_readonly) |
| 1594 | && (SAttr & ObjCPropertyDecl::OBJC_PR_readwrite)) |
| 1595 | Diag(Property->getLocation(), diag::warn_readonly_property) |
| 1596 | << Property->getDeclName() << inheritedName; |
| 1597 | if ((CAttr & ObjCPropertyDecl::OBJC_PR_copy) |
| 1598 | != (SAttr & ObjCPropertyDecl::OBJC_PR_copy)) |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1599 | Diag(Property->getLocation(), diag::warn_property_attribute) |
Fariborz Jahanian | b809a0e | 2013-10-04 18:06:08 +0000 | [diff] [blame] | 1600 | << Property->getDeclName() << "copy" << inheritedName; |
| 1601 | else if (!(SAttr & ObjCPropertyDecl::OBJC_PR_readonly)){ |
| 1602 | unsigned CAttrRetain = |
| 1603 | (CAttr & |
| 1604 | (ObjCPropertyDecl::OBJC_PR_retain | ObjCPropertyDecl::OBJC_PR_strong)); |
| 1605 | unsigned SAttrRetain = |
| 1606 | (SAttr & |
| 1607 | (ObjCPropertyDecl::OBJC_PR_retain | ObjCPropertyDecl::OBJC_PR_strong)); |
| 1608 | bool CStrong = (CAttrRetain != 0); |
| 1609 | bool SStrong = (SAttrRetain != 0); |
| 1610 | if (CStrong != SStrong) |
| 1611 | Diag(Property->getLocation(), diag::warn_property_attribute) |
| 1612 | << Property->getDeclName() << "retain (or strong)" << inheritedName; |
| 1613 | } |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1614 | } |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 1615 | |
Douglas Gregor | 429183e | 2015-12-09 22:57:32 +0000 | [diff] [blame] | 1616 | // Check for nonatomic; note that nonatomic is effectively |
| 1617 | // meaningless for readonly properties, so don't diagnose if the |
| 1618 | // atomic property is 'readonly'. |
Douglas Gregor | 9dd25b7 | 2015-12-10 23:02:09 +0000 | [diff] [blame] | 1619 | checkAtomicPropertyMismatch(*this, SuperProperty, Property, false); |
Alex Lorenz | 05a63ee | 2017-10-06 19:24:26 +0000 | [diff] [blame] | 1620 | // Readonly properties from protocols can be implemented as "readwrite" |
| 1621 | // with a custom setter name. |
| 1622 | if (Property->getSetterName() != SuperProperty->getSetterName() && |
| 1623 | !(SuperProperty->isReadOnly() && |
| 1624 | isa<ObjCProtocolDecl>(SuperProperty->getDeclContext()))) { |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 1625 | Diag(Property->getLocation(), diag::warn_property_attribute) |
| 1626 | << Property->getDeclName() << "setter" << inheritedName; |
Fariborz Jahanian | 234c00d | 2013-02-10 00:16:04 +0000 | [diff] [blame] | 1627 | Diag(SuperProperty->getLocation(), diag::note_property_declare); |
| 1628 | } |
| 1629 | if (Property->getGetterName() != SuperProperty->getGetterName()) { |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 1630 | Diag(Property->getLocation(), diag::warn_property_attribute) |
| 1631 | << Property->getDeclName() << "getter" << inheritedName; |
Fariborz Jahanian | 234c00d | 2013-02-10 00:16:04 +0000 | [diff] [blame] | 1632 | Diag(SuperProperty->getLocation(), diag::note_property_declare); |
| 1633 | } |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 1634 | |
| 1635 | QualType LHSType = |
| 1636 | Context.getCanonicalType(SuperProperty->getType()); |
| 1637 | QualType RHSType = |
| 1638 | Context.getCanonicalType(Property->getType()); |
| 1639 | |
Fariborz Jahanian | c0f6af2 | 2011-07-12 22:05:16 +0000 | [diff] [blame] | 1640 | if (!Context.propertyTypesAreCompatible(LHSType, RHSType)) { |
Fariborz Jahanian | 17585e7 | 2011-07-13 17:55:01 +0000 | [diff] [blame] | 1641 | // Do cases not handled in above. |
| 1642 | // FIXME. For future support of covariant property types, revisit this. |
| 1643 | bool IncompatibleObjC = false; |
| 1644 | QualType ConvertedType; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1645 | if (!isObjCPointerConversion(RHSType, LHSType, |
Fariborz Jahanian | 17585e7 | 2011-07-13 17:55:01 +0000 | [diff] [blame] | 1646 | ConvertedType, IncompatibleObjC) || |
Fariborz Jahanian | fa643c8 | 2011-10-12 00:00:57 +0000 | [diff] [blame] | 1647 | IncompatibleObjC) { |
Fariborz Jahanian | 17585e7 | 2011-07-13 17:55:01 +0000 | [diff] [blame] | 1648 | Diag(Property->getLocation(), diag::warn_property_types_are_incompatible) |
| 1649 | << Property->getType() << SuperProperty->getType() << inheritedName; |
Fariborz Jahanian | fa643c8 | 2011-10-12 00:00:57 +0000 | [diff] [blame] | 1650 | Diag(SuperProperty->getLocation(), diag::note_property_declare); |
| 1651 | } |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 1652 | } |
| 1653 | } |
| 1654 | |
| 1655 | bool Sema::DiagnosePropertyAccessorMismatch(ObjCPropertyDecl *property, |
| 1656 | ObjCMethodDecl *GetterMethod, |
| 1657 | SourceLocation Loc) { |
Fariborz Jahanian | 0ebc0fa | 2012-05-15 22:37:04 +0000 | [diff] [blame] | 1658 | if (!GetterMethod) |
| 1659 | return false; |
Alp Toker | 314cc81 | 2014-01-25 16:55:45 +0000 | [diff] [blame] | 1660 | QualType GetterType = GetterMethod->getReturnType().getNonReferenceType(); |
Akira Hatanaka | de6f25f | 2016-05-26 00:37:30 +0000 | [diff] [blame] | 1661 | QualType PropertyRValueType = |
| 1662 | property->getType().getNonReferenceType().getAtomicUnqualifiedType(); |
| 1663 | bool compat = Context.hasSameType(PropertyRValueType, GetterType); |
Fariborz Jahanian | 0ebc0fa | 2012-05-15 22:37:04 +0000 | [diff] [blame] | 1664 | if (!compat) { |
Douglas Gregor | 1cbb289 | 2015-12-08 22:45:17 +0000 | [diff] [blame] | 1665 | const ObjCObjectPointerType *propertyObjCPtr = nullptr; |
| 1666 | const ObjCObjectPointerType *getterObjCPtr = nullptr; |
Akira Hatanaka | de6f25f | 2016-05-26 00:37:30 +0000 | [diff] [blame] | 1667 | if ((propertyObjCPtr = |
| 1668 | PropertyRValueType->getAs<ObjCObjectPointerType>()) && |
Douglas Gregor | 1cbb289 | 2015-12-08 22:45:17 +0000 | [diff] [blame] | 1669 | (getterObjCPtr = GetterType->getAs<ObjCObjectPointerType>())) |
| 1670 | compat = Context.canAssignObjCInterfaces(getterObjCPtr, propertyObjCPtr); |
Akira Hatanaka | de6f25f | 2016-05-26 00:37:30 +0000 | [diff] [blame] | 1671 | else if (CheckAssignmentConstraints(Loc, GetterType, PropertyRValueType) |
Fariborz Jahanian | 0ebc0fa | 2012-05-15 22:37:04 +0000 | [diff] [blame] | 1672 | != Compatible) { |
Richard Smith | f881267 | 2016-12-02 22:38:31 +0000 | [diff] [blame] | 1673 | Diag(Loc, diag::err_property_accessor_type) |
Akira Hatanaka | de6f25f | 2016-05-26 00:37:30 +0000 | [diff] [blame] | 1674 | << property->getDeclName() << PropertyRValueType |
Fariborz Jahanian | 0ebc0fa | 2012-05-15 22:37:04 +0000 | [diff] [blame] | 1675 | << GetterMethod->getSelector() << GetterType; |
| 1676 | Diag(GetterMethod->getLocation(), diag::note_declared_at); |
| 1677 | return true; |
| 1678 | } else { |
| 1679 | compat = true; |
Akira Hatanaka | de6f25f | 2016-05-26 00:37:30 +0000 | [diff] [blame] | 1680 | QualType lhsType = Context.getCanonicalType(PropertyRValueType); |
Fariborz Jahanian | 0ebc0fa | 2012-05-15 22:37:04 +0000 | [diff] [blame] | 1681 | QualType rhsType =Context.getCanonicalType(GetterType).getUnqualifiedType(); |
| 1682 | if (lhsType != rhsType && lhsType->isArithmeticType()) |
| 1683 | compat = false; |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 1684 | } |
| 1685 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1686 | |
Fariborz Jahanian | 0ebc0fa | 2012-05-15 22:37:04 +0000 | [diff] [blame] | 1687 | if (!compat) { |
| 1688 | Diag(Loc, diag::warn_accessor_property_type_mismatch) |
| 1689 | << property->getDeclName() |
| 1690 | << GetterMethod->getSelector(); |
| 1691 | Diag(GetterMethod->getLocation(), diag::note_declared_at); |
| 1692 | return true; |
| 1693 | } |
| 1694 | |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 1695 | return false; |
| 1696 | } |
| 1697 | |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 1698 | /// CollectImmediateProperties - This routine collects all properties in |
Douglas Gregor | a669ab9 | 2013-01-21 18:35:55 +0000 | [diff] [blame] | 1699 | /// the class and its conforming protocols; but not those in its super class. |
Manman Ren | 16a7d63 | 2016-04-12 23:01:55 +0000 | [diff] [blame] | 1700 | static void |
| 1701 | CollectImmediateProperties(ObjCContainerDecl *CDecl, |
| 1702 | ObjCContainerDecl::PropertyMap &PropMap, |
| 1703 | ObjCContainerDecl::PropertyMap &SuperPropMap, |
| 1704 | bool CollectClassPropsOnly = false, |
| 1705 | bool IncludeProtocols = true) { |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 1706 | if (ObjCInterfaceDecl *IDecl = dyn_cast<ObjCInterfaceDecl>(CDecl)) { |
Manman Ren | 16a7d63 | 2016-04-12 23:01:55 +0000 | [diff] [blame] | 1707 | for (auto *Prop : IDecl->properties()) { |
| 1708 | if (CollectClassPropsOnly && !Prop->isClassProperty()) |
| 1709 | continue; |
Manman Ren | 494ee5b | 2016-01-28 23:36:05 +0000 | [diff] [blame] | 1710 | PropMap[std::make_pair(Prop->getIdentifier(), Prop->isClassProperty())] = |
| 1711 | Prop; |
Manman Ren | 16a7d63 | 2016-04-12 23:01:55 +0000 | [diff] [blame] | 1712 | } |
Douglas Gregor | acf4fd3 | 2015-11-03 01:15:46 +0000 | [diff] [blame] | 1713 | |
| 1714 | // Collect the properties from visible extensions. |
| 1715 | for (auto *Ext : IDecl->visible_extensions()) |
Manman Ren | 16a7d63 | 2016-04-12 23:01:55 +0000 | [diff] [blame] | 1716 | CollectImmediateProperties(Ext, PropMap, SuperPropMap, |
| 1717 | CollectClassPropsOnly, IncludeProtocols); |
Douglas Gregor | acf4fd3 | 2015-11-03 01:15:46 +0000 | [diff] [blame] | 1718 | |
Ted Kremenek | 204c3c5 | 2014-02-22 00:02:03 +0000 | [diff] [blame] | 1719 | if (IncludeProtocols) { |
| 1720 | // Scan through class's protocols. |
Aaron Ballman | a9f49e3 | 2014-03-13 20:55:22 +0000 | [diff] [blame] | 1721 | for (auto *PI : IDecl->all_referenced_protocols()) |
Manman Ren | 16a7d63 | 2016-04-12 23:01:55 +0000 | [diff] [blame] | 1722 | CollectImmediateProperties(PI, PropMap, SuperPropMap, |
| 1723 | CollectClassPropsOnly); |
Ted Kremenek | 204c3c5 | 2014-02-22 00:02:03 +0000 | [diff] [blame] | 1724 | } |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 1725 | } |
| 1726 | if (ObjCCategoryDecl *CATDecl = dyn_cast<ObjCCategoryDecl>(CDecl)) { |
Manman Ren | 16a7d63 | 2016-04-12 23:01:55 +0000 | [diff] [blame] | 1727 | for (auto *Prop : CATDecl->properties()) { |
| 1728 | if (CollectClassPropsOnly && !Prop->isClassProperty()) |
| 1729 | continue; |
Manman Ren | 494ee5b | 2016-01-28 23:36:05 +0000 | [diff] [blame] | 1730 | PropMap[std::make_pair(Prop->getIdentifier(), Prop->isClassProperty())] = |
| 1731 | Prop; |
Manman Ren | 16a7d63 | 2016-04-12 23:01:55 +0000 | [diff] [blame] | 1732 | } |
Ted Kremenek | 204c3c5 | 2014-02-22 00:02:03 +0000 | [diff] [blame] | 1733 | if (IncludeProtocols) { |
| 1734 | // Scan through class's protocols. |
Aaron Ballman | 19a4176 | 2014-03-14 12:55:57 +0000 | [diff] [blame] | 1735 | for (auto *PI : CATDecl->protocols()) |
Manman Ren | 16a7d63 | 2016-04-12 23:01:55 +0000 | [diff] [blame] | 1736 | CollectImmediateProperties(PI, PropMap, SuperPropMap, |
| 1737 | CollectClassPropsOnly); |
Ted Kremenek | 204c3c5 | 2014-02-22 00:02:03 +0000 | [diff] [blame] | 1738 | } |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 1739 | } |
| 1740 | else if (ObjCProtocolDecl *PDecl = dyn_cast<ObjCProtocolDecl>(CDecl)) { |
Manman Ren | 494ee5b | 2016-01-28 23:36:05 +0000 | [diff] [blame] | 1741 | for (auto *Prop : PDecl->properties()) { |
Manman Ren | 16a7d63 | 2016-04-12 23:01:55 +0000 | [diff] [blame] | 1742 | if (CollectClassPropsOnly && !Prop->isClassProperty()) |
| 1743 | continue; |
Manman Ren | 494ee5b | 2016-01-28 23:36:05 +0000 | [diff] [blame] | 1744 | ObjCPropertyDecl *PropertyFromSuper = |
| 1745 | SuperPropMap[std::make_pair(Prop->getIdentifier(), |
| 1746 | Prop->isClassProperty())]; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1747 | // Exclude property for protocols which conform to class's super-class, |
Fariborz Jahanian | 66f9a65 | 2010-06-29 18:12:32 +0000 | [diff] [blame] | 1748 | // as super-class has to implement the property. |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1749 | if (!PropertyFromSuper || |
Fariborz Jahanian | 698bd31 | 2011-09-27 00:23:52 +0000 | [diff] [blame] | 1750 | PropertyFromSuper->getIdentifier() != Prop->getIdentifier()) { |
Manman Ren | 494ee5b | 2016-01-28 23:36:05 +0000 | [diff] [blame] | 1751 | ObjCPropertyDecl *&PropEntry = |
| 1752 | PropMap[std::make_pair(Prop->getIdentifier(), |
| 1753 | Prop->isClassProperty())]; |
Fariborz Jahanian | 66f9a65 | 2010-06-29 18:12:32 +0000 | [diff] [blame] | 1754 | if (!PropEntry) |
| 1755 | PropEntry = Prop; |
| 1756 | } |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 1757 | } |
Manman Ren | 16a7d63 | 2016-04-12 23:01:55 +0000 | [diff] [blame] | 1758 | // Scan through protocol's protocols. |
Aaron Ballman | 0f6e64d | 2014-03-13 22:58:06 +0000 | [diff] [blame] | 1759 | for (auto *PI : PDecl->protocols()) |
Manman Ren | 16a7d63 | 2016-04-12 23:01:55 +0000 | [diff] [blame] | 1760 | CollectImmediateProperties(PI, PropMap, SuperPropMap, |
| 1761 | CollectClassPropsOnly); |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 1762 | } |
| 1763 | } |
| 1764 | |
Fariborz Jahanian | bdb1b0d | 2010-05-14 18:35:57 +0000 | [diff] [blame] | 1765 | /// CollectSuperClassPropertyImplementations - This routine collects list of |
| 1766 | /// properties to be implemented in super class(s) and also coming from their |
| 1767 | /// conforming protocols. |
| 1768 | static void CollectSuperClassPropertyImplementations(ObjCInterfaceDecl *CDecl, |
Anna Zaks | 408f7d0 | 2012-10-31 01:18:22 +0000 | [diff] [blame] | 1769 | ObjCInterfaceDecl::PropertyMap &PropMap) { |
Fariborz Jahanian | bdb1b0d | 2010-05-14 18:35:57 +0000 | [diff] [blame] | 1770 | if (ObjCInterfaceDecl *SDecl = CDecl->getSuperClass()) { |
Fariborz Jahanian | aedaaa4 | 2013-02-14 22:33:34 +0000 | [diff] [blame] | 1771 | ObjCInterfaceDecl::PropertyDeclOrder PO; |
Fariborz Jahanian | bdb1b0d | 2010-05-14 18:35:57 +0000 | [diff] [blame] | 1772 | while (SDecl) { |
Fariborz Jahanian | aedaaa4 | 2013-02-14 22:33:34 +0000 | [diff] [blame] | 1773 | SDecl->collectPropertiesToImplement(PropMap, PO); |
Fariborz Jahanian | bdb1b0d | 2010-05-14 18:35:57 +0000 | [diff] [blame] | 1774 | SDecl = SDecl->getSuperClass(); |
| 1775 | } |
| 1776 | } |
| 1777 | } |
| 1778 | |
Fariborz Jahanian | a934a02 | 2013-02-14 19:07:19 +0000 | [diff] [blame] | 1779 | /// IvarBacksCurrentMethodAccessor - This routine returns 'true' if 'IV' is |
| 1780 | /// an ivar synthesized for 'Method' and 'Method' is a property accessor |
| 1781 | /// declared in class 'IFace'. |
| 1782 | bool |
| 1783 | Sema::IvarBacksCurrentMethodAccessor(ObjCInterfaceDecl *IFace, |
| 1784 | ObjCMethodDecl *Method, ObjCIvarDecl *IV) { |
| 1785 | if (!IV->getSynthesize()) |
| 1786 | return false; |
| 1787 | ObjCMethodDecl *IMD = IFace->lookupMethod(Method->getSelector(), |
| 1788 | Method->isInstanceMethod()); |
| 1789 | if (!IMD || !IMD->isPropertyAccessor()) |
| 1790 | return false; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1791 | |
Fariborz Jahanian | a934a02 | 2013-02-14 19:07:19 +0000 | [diff] [blame] | 1792 | // look up a property declaration whose one of its accessors is implemented |
| 1793 | // by this method. |
Manman Ren | a7a8b1f | 2016-01-26 18:05:23 +0000 | [diff] [blame] | 1794 | for (const auto *Property : IFace->instance_properties()) { |
Aaron Ballman | dc4bea4 | 2014-03-13 18:47:37 +0000 | [diff] [blame] | 1795 | if ((Property->getGetterName() == IMD->getSelector() || |
| 1796 | Property->getSetterName() == IMD->getSelector()) && |
| 1797 | (Property->getPropertyIvarDecl() == IV)) |
Fariborz Jahanian | a934a02 | 2013-02-14 19:07:19 +0000 | [diff] [blame] | 1798 | return true; |
| 1799 | } |
Douglas Gregor | acf4fd3 | 2015-11-03 01:15:46 +0000 | [diff] [blame] | 1800 | // Also look up property declaration in class extension whose one of its |
| 1801 | // accessors is implemented by this method. |
| 1802 | for (const auto *Ext : IFace->known_extensions()) |
Manman Ren | a7a8b1f | 2016-01-26 18:05:23 +0000 | [diff] [blame] | 1803 | for (const auto *Property : Ext->instance_properties()) |
Douglas Gregor | acf4fd3 | 2015-11-03 01:15:46 +0000 | [diff] [blame] | 1804 | if ((Property->getGetterName() == IMD->getSelector() || |
| 1805 | Property->getSetterName() == IMD->getSelector()) && |
| 1806 | (Property->getPropertyIvarDecl() == IV)) |
| 1807 | return true; |
Fariborz Jahanian | a934a02 | 2013-02-14 19:07:19 +0000 | [diff] [blame] | 1808 | return false; |
| 1809 | } |
| 1810 | |
Fariborz Jahanian | 6766f8d | 2014-03-05 23:44:00 +0000 | [diff] [blame] | 1811 | static bool SuperClassImplementsProperty(ObjCInterfaceDecl *IDecl, |
| 1812 | ObjCPropertyDecl *Prop) { |
| 1813 | bool SuperClassImplementsGetter = false; |
| 1814 | bool SuperClassImplementsSetter = false; |
| 1815 | if (Prop->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_readonly) |
| 1816 | SuperClassImplementsSetter = true; |
Bob Wilson | 3ca7904 | 2014-03-11 17:17:16 +0000 | [diff] [blame] | 1817 | |
Fariborz Jahanian | 6766f8d | 2014-03-05 23:44:00 +0000 | [diff] [blame] | 1818 | while (IDecl->getSuperClass()) { |
| 1819 | ObjCInterfaceDecl *SDecl = IDecl->getSuperClass(); |
| 1820 | if (!SuperClassImplementsGetter && SDecl->getInstanceMethod(Prop->getGetterName())) |
| 1821 | SuperClassImplementsGetter = true; |
Bob Wilson | 3ca7904 | 2014-03-11 17:17:16 +0000 | [diff] [blame] | 1822 | |
Fariborz Jahanian | 6766f8d | 2014-03-05 23:44:00 +0000 | [diff] [blame] | 1823 | if (!SuperClassImplementsSetter && SDecl->getInstanceMethod(Prop->getSetterName())) |
| 1824 | SuperClassImplementsSetter = true; |
| 1825 | if (SuperClassImplementsGetter && SuperClassImplementsSetter) |
| 1826 | return true; |
| 1827 | IDecl = IDecl->getSuperClass(); |
| 1828 | } |
| 1829 | return false; |
| 1830 | } |
Fariborz Jahanian | a934a02 | 2013-02-14 19:07:19 +0000 | [diff] [blame] | 1831 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 1832 | /// Default synthesizes all properties which must be synthesized |
James Dennett | 2a4d13c | 2012-06-15 07:13:21 +0000 | [diff] [blame] | 1833 | /// in class's \@implementation. |
Alex Lorenz | 6c9af50 | 2017-07-03 10:12:24 +0000 | [diff] [blame] | 1834 | void Sema::DefaultSynthesizeProperties(Scope *S, ObjCImplDecl *IMPDecl, |
| 1835 | ObjCInterfaceDecl *IDecl, |
| 1836 | SourceLocation AtEnd) { |
Anna Zaks | 673d76b | 2012-10-18 19:17:53 +0000 | [diff] [blame] | 1837 | ObjCInterfaceDecl::PropertyMap PropMap; |
Fariborz Jahanian | aedaaa4 | 2013-02-14 22:33:34 +0000 | [diff] [blame] | 1838 | ObjCInterfaceDecl::PropertyDeclOrder PropertyOrder; |
| 1839 | IDecl->collectPropertiesToImplement(PropMap, PropertyOrder); |
Fariborz Jahanian | bdb1b0d | 2010-05-14 18:35:57 +0000 | [diff] [blame] | 1840 | if (PropMap.empty()) |
| 1841 | return; |
Anna Zaks | 673d76b | 2012-10-18 19:17:53 +0000 | [diff] [blame] | 1842 | ObjCInterfaceDecl::PropertyMap SuperPropMap; |
Fariborz Jahanian | bdb1b0d | 2010-05-14 18:35:57 +0000 | [diff] [blame] | 1843 | CollectSuperClassPropertyImplementations(IDecl, SuperPropMap); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1844 | |
Fariborz Jahanian | aedaaa4 | 2013-02-14 22:33:34 +0000 | [diff] [blame] | 1845 | for (unsigned i = 0, e = PropertyOrder.size(); i != e; i++) { |
| 1846 | ObjCPropertyDecl *Prop = PropertyOrder[i]; |
Fariborz Jahanian | bbc126e | 2013-06-07 20:26:51 +0000 | [diff] [blame] | 1847 | // Is there a matching property synthesize/dynamic? |
| 1848 | if (Prop->isInvalidDecl() || |
Manman Ren | 494ee5b | 2016-01-28 23:36:05 +0000 | [diff] [blame] | 1849 | Prop->isClassProperty() || |
Fariborz Jahanian | bbc126e | 2013-06-07 20:26:51 +0000 | [diff] [blame] | 1850 | Prop->getPropertyImplementation() == ObjCPropertyDecl::Optional) |
| 1851 | continue; |
| 1852 | // Property may have been synthesized by user. |
Manman Ren | 5b78640 | 2016-01-28 18:49:28 +0000 | [diff] [blame] | 1853 | if (IMPDecl->FindPropertyImplDecl( |
| 1854 | Prop->getIdentifier(), Prop->getQueryKind())) |
Fariborz Jahanian | bbc126e | 2013-06-07 20:26:51 +0000 | [diff] [blame] | 1855 | continue; |
| 1856 | if (IMPDecl->getInstanceMethod(Prop->getGetterName())) { |
| 1857 | if (Prop->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_readonly) |
| 1858 | continue; |
| 1859 | if (IMPDecl->getInstanceMethod(Prop->getSetterName())) |
| 1860 | continue; |
| 1861 | } |
Fariborz Jahanian | 4614524 | 2013-06-07 18:32:55 +0000 | [diff] [blame] | 1862 | if (ObjCPropertyImplDecl *PID = |
| 1863 | IMPDecl->FindPropertyImplIvarDecl(Prop->getIdentifier())) { |
Fariborz Jahanian | 6c9ee7b | 2014-07-26 20:52:26 +0000 | [diff] [blame] | 1864 | Diag(Prop->getLocation(), diag::warn_no_autosynthesis_shared_ivar_property) |
| 1865 | << Prop->getIdentifier(); |
Yaron Keren | 8b56366 | 2015-10-03 10:46:20 +0000 | [diff] [blame] | 1866 | if (PID->getLocation().isValid()) |
Fariborz Jahanian | 6c9ee7b | 2014-07-26 20:52:26 +0000 | [diff] [blame] | 1867 | Diag(PID->getLocation(), diag::note_property_synthesize); |
Fariborz Jahanian | 4614524 | 2013-06-07 18:32:55 +0000 | [diff] [blame] | 1868 | continue; |
| 1869 | } |
Manman Ren | 494ee5b | 2016-01-28 23:36:05 +0000 | [diff] [blame] | 1870 | ObjCPropertyDecl *PropInSuperClass = |
| 1871 | SuperPropMap[std::make_pair(Prop->getIdentifier(), |
| 1872 | Prop->isClassProperty())]; |
Ted Kremenek | 6d69ac8 | 2013-12-12 23:40:14 +0000 | [diff] [blame] | 1873 | if (ObjCProtocolDecl *Proto = |
| 1874 | dyn_cast<ObjCProtocolDecl>(Prop->getDeclContext())) { |
Fariborz Jahanian | 9e49b6a | 2011-12-15 01:03:18 +0000 | [diff] [blame] | 1875 | // We won't auto-synthesize properties declared in protocols. |
Fariborz Jahanian | 6766f8d | 2014-03-05 23:44:00 +0000 | [diff] [blame] | 1876 | // Suppress the warning if class's superclass implements property's |
| 1877 | // getter and implements property's setter (if readwrite property). |
Fariborz Jahanian | 3b23008 | 2014-08-29 20:29:31 +0000 | [diff] [blame] | 1878 | // Or, if property is going to be implemented in its super class. |
| 1879 | if (!SuperClassImplementsProperty(IDecl, Prop) && !PropInSuperClass) { |
Fariborz Jahanian | 6766f8d | 2014-03-05 23:44:00 +0000 | [diff] [blame] | 1880 | Diag(IMPDecl->getLocation(), |
| 1881 | diag::warn_auto_synthesizing_protocol_property) |
| 1882 | << Prop << Proto; |
| 1883 | Diag(Prop->getLocation(), diag::note_property_declare); |
Alex Lorenz | 6c9af50 | 2017-07-03 10:12:24 +0000 | [diff] [blame] | 1884 | std::string FixIt = |
| 1885 | (Twine("@synthesize ") + Prop->getName() + ";\n\n").str(); |
| 1886 | Diag(AtEnd, diag::note_add_synthesize_directive) |
| 1887 | << FixItHint::CreateInsertion(AtEnd, FixIt); |
Fariborz Jahanian | 6766f8d | 2014-03-05 23:44:00 +0000 | [diff] [blame] | 1888 | } |
Fariborz Jahanian | 9e49b6a | 2011-12-15 01:03:18 +0000 | [diff] [blame] | 1889 | continue; |
| 1890 | } |
Fariborz Jahanian | c9b7715 | 2014-08-29 18:31:16 +0000 | [diff] [blame] | 1891 | // If property to be implemented in the super class, ignore. |
Fariborz Jahanian | 3b23008 | 2014-08-29 20:29:31 +0000 | [diff] [blame] | 1892 | if (PropInSuperClass) { |
Fariborz Jahanian | c9b7715 | 2014-08-29 18:31:16 +0000 | [diff] [blame] | 1893 | if ((Prop->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_readwrite) && |
| 1894 | (PropInSuperClass->getPropertyAttributes() & |
| 1895 | ObjCPropertyDecl::OBJC_PR_readonly) && |
| 1896 | !IMPDecl->getInstanceMethod(Prop->getSetterName()) && |
| 1897 | !IDecl->HasUserDeclaredSetterMethod(Prop)) { |
| 1898 | Diag(Prop->getLocation(), diag::warn_no_autosynthesis_property) |
| 1899 | << Prop->getIdentifier(); |
| 1900 | Diag(PropInSuperClass->getLocation(), diag::note_property_declare); |
| 1901 | } |
| 1902 | else { |
| 1903 | Diag(Prop->getLocation(), diag::warn_autosynthesis_property_in_superclass) |
| 1904 | << Prop->getIdentifier(); |
Fariborz Jahanian | c985a7f | 2014-10-10 22:08:23 +0000 | [diff] [blame] | 1905 | Diag(PropInSuperClass->getLocation(), diag::note_property_declare); |
Fariborz Jahanian | c9b7715 | 2014-08-29 18:31:16 +0000 | [diff] [blame] | 1906 | Diag(IMPDecl->getLocation(), diag::note_while_in_implementation); |
| 1907 | } |
| 1908 | continue; |
| 1909 | } |
Ted Kremenek | 74a9f98 | 2010-09-24 01:23:01 +0000 | [diff] [blame] | 1910 | // We use invalid SourceLocations for the synthesized ivars since they |
| 1911 | // aren't really synthesized at a particular location; they just exist. |
| 1912 | // Saying that they are located at the @implementation isn't really going |
| 1913 | // to help users. |
Fariborz Jahanian | d5f34f9 | 2012-05-03 16:43:30 +0000 | [diff] [blame] | 1914 | ObjCPropertyImplDecl *PIDecl = dyn_cast_or_null<ObjCPropertyImplDecl>( |
| 1915 | ActOnPropertyImplDecl(S, SourceLocation(), SourceLocation(), |
| 1916 | true, |
| 1917 | /* property = */ Prop->getIdentifier(), |
Anna Zaks | 454477c | 2012-09-27 19:45:11 +0000 | [diff] [blame] | 1918 | /* ivar = */ Prop->getDefaultSynthIvarName(Context), |
Manman Ren | 5b78640 | 2016-01-28 18:49:28 +0000 | [diff] [blame] | 1919 | Prop->getLocation(), Prop->getQueryKind())); |
Alex Lorenz | 1e23dd6 | 2017-08-15 12:40:01 +0000 | [diff] [blame] | 1920 | if (PIDecl && !Prop->isUnavailable()) { |
Fariborz Jahanian | d5f34f9 | 2012-05-03 16:43:30 +0000 | [diff] [blame] | 1921 | Diag(Prop->getLocation(), diag::warn_missing_explicit_synthesis); |
Fariborz Jahanian | d6886e7 | 2012-05-08 18:03:39 +0000 | [diff] [blame] | 1922 | Diag(IMPDecl->getLocation(), diag::note_while_in_implementation); |
Fariborz Jahanian | d5f34f9 | 2012-05-03 16:43:30 +0000 | [diff] [blame] | 1923 | } |
Ted Kremenek | 74a9f98 | 2010-09-24 01:23:01 +0000 | [diff] [blame] | 1924 | } |
Fariborz Jahanian | bdb1b0d | 2010-05-14 18:35:57 +0000 | [diff] [blame] | 1925 | } |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 1926 | |
Alex Lorenz | 6c9af50 | 2017-07-03 10:12:24 +0000 | [diff] [blame] | 1927 | void Sema::DefaultSynthesizeProperties(Scope *S, Decl *D, |
| 1928 | SourceLocation AtEnd) { |
John McCall | 5fb5df9 | 2012-06-20 06:18:46 +0000 | [diff] [blame] | 1929 | if (!LangOpts.ObjCDefaultSynthProperties || LangOpts.ObjCRuntime.isFragile()) |
Fariborz Jahanian | 97d744b | 2011-08-31 22:24:06 +0000 | [diff] [blame] | 1930 | return; |
| 1931 | ObjCImplementationDecl *IC=dyn_cast_or_null<ObjCImplementationDecl>(D); |
| 1932 | if (!IC) |
| 1933 | return; |
| 1934 | if (ObjCInterfaceDecl* IDecl = IC->getClassInterface()) |
Ted Kremenek | 0c2c90b | 2012-01-05 22:47:47 +0000 | [diff] [blame] | 1935 | if (!IDecl->isObjCRequiresPropertyDefs()) |
Alex Lorenz | 6c9af50 | 2017-07-03 10:12:24 +0000 | [diff] [blame] | 1936 | DefaultSynthesizeProperties(S, IC, IDecl, AtEnd); |
Fariborz Jahanian | 97d744b | 2011-08-31 22:24:06 +0000 | [diff] [blame] | 1937 | } |
| 1938 | |
Manman Ren | 08ce734 | 2016-05-18 18:12:34 +0000 | [diff] [blame] | 1939 | static void DiagnoseUnimplementedAccessor( |
| 1940 | Sema &S, ObjCInterfaceDecl *PrimaryClass, Selector Method, |
| 1941 | ObjCImplDecl *IMPDecl, ObjCContainerDecl *CDecl, ObjCCategoryDecl *C, |
| 1942 | ObjCPropertyDecl *Prop, |
| 1943 | llvm::SmallPtrSet<const ObjCMethodDecl *, 8> &SMap) { |
| 1944 | // Check to see if we have a corresponding selector in SMap and with the |
| 1945 | // right method type. |
| 1946 | auto I = std::find_if(SMap.begin(), SMap.end(), |
| 1947 | [&](const ObjCMethodDecl *x) { |
| 1948 | return x->getSelector() == Method && |
| 1949 | x->isClassMethod() == Prop->isClassProperty(); |
| 1950 | }); |
Ted Kremenek | 7e81295 | 2014-02-21 19:41:30 +0000 | [diff] [blame] | 1951 | // When reporting on missing property setter/getter implementation in |
| 1952 | // categories, do not report when they are declared in primary class, |
| 1953 | // class's protocol, or one of it super classes. This is because, |
| 1954 | // the class is going to implement them. |
Manman Ren | 08ce734 | 2016-05-18 18:12:34 +0000 | [diff] [blame] | 1955 | if (I == SMap.end() && |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1956 | (PrimaryClass == nullptr || |
Manman Ren | d36f7d5 | 2016-01-27 20:10:32 +0000 | [diff] [blame] | 1957 | !PrimaryClass->lookupPropertyAccessor(Method, C, |
| 1958 | Prop->isClassProperty()))) { |
Manman Ren | 16a7d63 | 2016-04-12 23:01:55 +0000 | [diff] [blame] | 1959 | unsigned diag = |
| 1960 | isa<ObjCCategoryDecl>(CDecl) |
| 1961 | ? (Prop->isClassProperty() |
| 1962 | ? diag::warn_impl_required_in_category_for_class_property |
| 1963 | : diag::warn_setter_getter_impl_required_in_category) |
| 1964 | : (Prop->isClassProperty() |
| 1965 | ? diag::warn_impl_required_for_class_property |
| 1966 | : diag::warn_setter_getter_impl_required); |
| 1967 | S.Diag(IMPDecl->getLocation(), diag) << Prop->getDeclName() << Method; |
| 1968 | S.Diag(Prop->getLocation(), diag::note_property_declare); |
| 1969 | if (S.LangOpts.ObjCDefaultSynthProperties && |
| 1970 | S.LangOpts.ObjCRuntime.isNonFragile()) |
| 1971 | if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(CDecl)) |
| 1972 | if (const ObjCInterfaceDecl *RID = ID->isObjCRequiresPropertyDefs()) |
| 1973 | S.Diag(RID->getLocation(), diag::note_suppressed_class_declare); |
| 1974 | } |
Ted Kremenek | 7e81295 | 2014-02-21 19:41:30 +0000 | [diff] [blame] | 1975 | } |
| 1976 | |
Fariborz Jahanian | 25491a2 | 2010-05-05 21:52:17 +0000 | [diff] [blame] | 1977 | void Sema::DiagnoseUnimplementedProperties(Scope *S, ObjCImplDecl* IMPDecl, |
Ted Kremenek | 348e88c | 2014-02-21 19:41:34 +0000 | [diff] [blame] | 1978 | ObjCContainerDecl *CDecl, |
| 1979 | bool SynthesizeProperties) { |
Anna Zaks | 673d76b | 2012-10-18 19:17:53 +0000 | [diff] [blame] | 1980 | ObjCContainerDecl::PropertyMap PropMap; |
Ted Kremenek | 3888202 | 2014-02-21 19:41:39 +0000 | [diff] [blame] | 1981 | ObjCInterfaceDecl *IDecl = dyn_cast<ObjCInterfaceDecl>(CDecl); |
| 1982 | |
Manman Ren | 16a7d63 | 2016-04-12 23:01:55 +0000 | [diff] [blame] | 1983 | // Since we don't synthesize class properties, we should emit diagnose even |
| 1984 | // if SynthesizeProperties is true. |
| 1985 | ObjCContainerDecl::PropertyMap NoNeedToImplPropMap; |
| 1986 | // Gather properties which need not be implemented in this class |
| 1987 | // or category. |
| 1988 | if (!IDecl) |
| 1989 | if (ObjCCategoryDecl *C = dyn_cast<ObjCCategoryDecl>(CDecl)) { |
| 1990 | // For categories, no need to implement properties declared in |
| 1991 | // its primary class (and its super classes) if property is |
| 1992 | // declared in one of those containers. |
| 1993 | if ((IDecl = C->getClassInterface())) { |
| 1994 | ObjCInterfaceDecl::PropertyDeclOrder PO; |
| 1995 | IDecl->collectPropertiesToImplement(NoNeedToImplPropMap, PO); |
Ted Kremenek | 348e88c | 2014-02-21 19:41:34 +0000 | [diff] [blame] | 1996 | } |
Manman Ren | 16a7d63 | 2016-04-12 23:01:55 +0000 | [diff] [blame] | 1997 | } |
| 1998 | if (IDecl) |
| 1999 | CollectSuperClassPropertyImplementations(IDecl, NoNeedToImplPropMap); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2000 | |
Manman Ren | 16a7d63 | 2016-04-12 23:01:55 +0000 | [diff] [blame] | 2001 | // When SynthesizeProperties is true, we only check class properties. |
| 2002 | CollectImmediateProperties(CDecl, PropMap, NoNeedToImplPropMap, |
| 2003 | SynthesizeProperties/*CollectClassPropsOnly*/); |
Ted Kremenek | 348e88c | 2014-02-21 19:41:34 +0000 | [diff] [blame] | 2004 | |
Ted Kremenek | 3888202 | 2014-02-21 19:41:39 +0000 | [diff] [blame] | 2005 | // Scan the @interface to see if any of the protocols it adopts |
| 2006 | // require an explicit implementation, via attribute |
| 2007 | // 'objc_protocol_requires_explicit_implementation'. |
Ted Kremenek | 204c3c5 | 2014-02-22 00:02:03 +0000 | [diff] [blame] | 2008 | if (IDecl) { |
Ahmed Charles | b898432 | 2014-03-07 20:03:18 +0000 | [diff] [blame] | 2009 | std::unique_ptr<ObjCContainerDecl::PropertyMap> LazyMap; |
Ted Kremenek | 204c3c5 | 2014-02-22 00:02:03 +0000 | [diff] [blame] | 2010 | |
Aaron Ballman | a9f49e3 | 2014-03-13 20:55:22 +0000 | [diff] [blame] | 2011 | for (auto *PDecl : IDecl->all_referenced_protocols()) { |
Ted Kremenek | 3888202 | 2014-02-21 19:41:39 +0000 | [diff] [blame] | 2012 | if (!PDecl->hasAttr<ObjCExplicitProtocolImplAttr>()) |
| 2013 | continue; |
Ted Kremenek | 204c3c5 | 2014-02-22 00:02:03 +0000 | [diff] [blame] | 2014 | // Lazily construct a set of all the properties in the @interface |
| 2015 | // of the class, without looking at the superclass. We cannot |
| 2016 | // use the call to CollectImmediateProperties() above as that |
Eric Christopher | c9e2a68 | 2014-05-20 17:10:39 +0000 | [diff] [blame] | 2017 | // utilizes information from the super class's properties as well |
Ted Kremenek | 204c3c5 | 2014-02-22 00:02:03 +0000 | [diff] [blame] | 2018 | // as scans the adopted protocols. This work only triggers for protocols |
| 2019 | // with the attribute, which is very rare, and only occurs when |
| 2020 | // analyzing the @implementation. |
| 2021 | if (!LazyMap) { |
| 2022 | ObjCContainerDecl::PropertyMap NoNeedToImplPropMap; |
| 2023 | LazyMap.reset(new ObjCContainerDecl::PropertyMap()); |
| 2024 | CollectImmediateProperties(CDecl, *LazyMap, NoNeedToImplPropMap, |
Manman Ren | 16a7d63 | 2016-04-12 23:01:55 +0000 | [diff] [blame] | 2025 | /* CollectClassPropsOnly */ false, |
Ted Kremenek | 204c3c5 | 2014-02-22 00:02:03 +0000 | [diff] [blame] | 2026 | /* IncludeProtocols */ false); |
| 2027 | } |
Ted Kremenek | 3888202 | 2014-02-21 19:41:39 +0000 | [diff] [blame] | 2028 | // Add the properties of 'PDecl' to the list of properties that |
| 2029 | // need to be implemented. |
Manman Ren | 494ee5b | 2016-01-28 23:36:05 +0000 | [diff] [blame] | 2030 | for (auto *PropDecl : PDecl->properties()) { |
| 2031 | if ((*LazyMap)[std::make_pair(PropDecl->getIdentifier(), |
| 2032 | PropDecl->isClassProperty())]) |
Ted Kremenek | 204c3c5 | 2014-02-22 00:02:03 +0000 | [diff] [blame] | 2033 | continue; |
Manman Ren | 494ee5b | 2016-01-28 23:36:05 +0000 | [diff] [blame] | 2034 | PropMap[std::make_pair(PropDecl->getIdentifier(), |
| 2035 | PropDecl->isClassProperty())] = PropDecl; |
Ted Kremenek | 3888202 | 2014-02-21 19:41:39 +0000 | [diff] [blame] | 2036 | } |
| 2037 | } |
Ted Kremenek | 204c3c5 | 2014-02-22 00:02:03 +0000 | [diff] [blame] | 2038 | } |
Ted Kremenek | 3888202 | 2014-02-21 19:41:39 +0000 | [diff] [blame] | 2039 | |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 2040 | if (PropMap.empty()) |
| 2041 | return; |
| 2042 | |
| 2043 | llvm::DenseSet<ObjCPropertyDecl *> PropImplMap; |
Aaron Ballman | d85eff4 | 2014-03-14 15:02:45 +0000 | [diff] [blame] | 2044 | for (const auto *I : IMPDecl->property_impls()) |
David Blaikie | 2d7c57e | 2012-04-30 02:36:29 +0000 | [diff] [blame] | 2045 | PropImplMap.insert(I->getPropertyDecl()); |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 2046 | |
Manman Ren | 08ce734 | 2016-05-18 18:12:34 +0000 | [diff] [blame] | 2047 | llvm::SmallPtrSet<const ObjCMethodDecl *, 8> InsMap; |
Fariborz Jahanian | eb3f100 | 2013-04-24 17:06:38 +0000 | [diff] [blame] | 2048 | // Collect property accessors implemented in current implementation. |
Manman Ren | 494ee5b | 2016-01-28 23:36:05 +0000 | [diff] [blame] | 2049 | for (const auto *I : IMPDecl->methods()) |
Manman Ren | 08ce734 | 2016-05-18 18:12:34 +0000 | [diff] [blame] | 2050 | InsMap.insert(I); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2051 | |
Fariborz Jahanian | eb3f100 | 2013-04-24 17:06:38 +0000 | [diff] [blame] | 2052 | ObjCCategoryDecl *C = dyn_cast<ObjCCategoryDecl>(CDecl); |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 2053 | ObjCInterfaceDecl *PrimaryClass = nullptr; |
Fariborz Jahanian | eb3f100 | 2013-04-24 17:06:38 +0000 | [diff] [blame] | 2054 | if (C && !C->IsClassExtension()) |
| 2055 | if ((PrimaryClass = C->getClassInterface())) |
| 2056 | // Report unimplemented properties in the category as well. |
| 2057 | if (ObjCImplDecl *IMP = PrimaryClass->getImplementation()) { |
| 2058 | // When reporting on missing setter/getters, do not report when |
| 2059 | // setter/getter is implemented in category's primary class |
| 2060 | // implementation. |
Manman Ren | 494ee5b | 2016-01-28 23:36:05 +0000 | [diff] [blame] | 2061 | for (const auto *I : IMP->methods()) |
Manman Ren | 08ce734 | 2016-05-18 18:12:34 +0000 | [diff] [blame] | 2062 | InsMap.insert(I); |
Fariborz Jahanian | eb3f100 | 2013-04-24 17:06:38 +0000 | [diff] [blame] | 2063 | } |
| 2064 | |
Anna Zaks | 673d76b | 2012-10-18 19:17:53 +0000 | [diff] [blame] | 2065 | for (ObjCContainerDecl::PropertyMap::iterator |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 2066 | P = PropMap.begin(), E = PropMap.end(); P != E; ++P) { |
| 2067 | ObjCPropertyDecl *Prop = P->second; |
Manman Ren | 16a7d63 | 2016-04-12 23:01:55 +0000 | [diff] [blame] | 2068 | // Is there a matching property synthesize/dynamic? |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 2069 | if (Prop->isInvalidDecl() || |
| 2070 | Prop->getPropertyImplementation() == ObjCPropertyDecl::Optional || |
Douglas Gregor | c4c1fb3 | 2013-01-08 18:16:18 +0000 | [diff] [blame] | 2071 | PropImplMap.count(Prop) || |
| 2072 | Prop->getAvailability() == AR_Unavailable) |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 2073 | continue; |
Ted Kremenek | 7e81295 | 2014-02-21 19:41:30 +0000 | [diff] [blame] | 2074 | |
| 2075 | // Diagnose unimplemented getters and setters. |
| 2076 | DiagnoseUnimplementedAccessor(*this, |
| 2077 | PrimaryClass, Prop->getGetterName(), IMPDecl, CDecl, C, Prop, InsMap); |
| 2078 | if (!Prop->isReadOnly()) |
| 2079 | DiagnoseUnimplementedAccessor(*this, |
| 2080 | PrimaryClass, Prop->getSetterName(), |
| 2081 | IMPDecl, CDecl, C, Prop, InsMap); |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 2082 | } |
| 2083 | } |
| 2084 | |
Douglas Gregor | aea7afd | 2015-06-24 22:02:08 +0000 | [diff] [blame] | 2085 | void Sema::diagnoseNullResettableSynthesizedSetters(const ObjCImplDecl *impDecl) { |
Douglas Gregor | 849ebc2 | 2015-06-19 18:14:46 +0000 | [diff] [blame] | 2086 | for (const auto *propertyImpl : impDecl->property_impls()) { |
| 2087 | const auto *property = propertyImpl->getPropertyDecl(); |
| 2088 | |
| 2089 | // Warn about null_resettable properties with synthesized setters, |
| 2090 | // because the setter won't properly handle nil. |
| 2091 | if (propertyImpl->getPropertyImplementation() |
| 2092 | == ObjCPropertyImplDecl::Synthesize && |
| 2093 | (property->getPropertyAttributes() & |
| 2094 | ObjCPropertyDecl::OBJC_PR_null_resettable) && |
| 2095 | property->getGetterMethodDecl() && |
| 2096 | property->getSetterMethodDecl()) { |
| 2097 | auto *getterMethod = property->getGetterMethodDecl(); |
| 2098 | auto *setterMethod = property->getSetterMethodDecl(); |
| 2099 | if (!impDecl->getInstanceMethod(setterMethod->getSelector()) && |
| 2100 | !impDecl->getInstanceMethod(getterMethod->getSelector())) { |
| 2101 | SourceLocation loc = propertyImpl->getLocation(); |
| 2102 | if (loc.isInvalid()) |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 2103 | loc = impDecl->getBeginLoc(); |
Douglas Gregor | 849ebc2 | 2015-06-19 18:14:46 +0000 | [diff] [blame] | 2104 | |
| 2105 | Diag(loc, diag::warn_null_resettable_setter) |
| 2106 | << setterMethod->getSelector() << property->getDeclName(); |
| 2107 | } |
| 2108 | } |
| 2109 | } |
| 2110 | } |
| 2111 | |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 2112 | void |
| 2113 | Sema::AtomicPropertySetterGetterRules (ObjCImplDecl* IMPDecl, |
Douglas Gregor | acf4fd3 | 2015-11-03 01:15:46 +0000 | [diff] [blame] | 2114 | ObjCInterfaceDecl* IDecl) { |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 2115 | // Rules apply in non-GC mode only |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2116 | if (getLangOpts().getGC() != LangOptions::NonGC) |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 2117 | return; |
Douglas Gregor | acf4fd3 | 2015-11-03 01:15:46 +0000 | [diff] [blame] | 2118 | ObjCContainerDecl::PropertyMap PM; |
Manman Ren | 494ee5b | 2016-01-28 23:36:05 +0000 | [diff] [blame] | 2119 | for (auto *Prop : IDecl->properties()) |
| 2120 | PM[std::make_pair(Prop->getIdentifier(), Prop->isClassProperty())] = Prop; |
Douglas Gregor | acf4fd3 | 2015-11-03 01:15:46 +0000 | [diff] [blame] | 2121 | for (const auto *Ext : IDecl->known_extensions()) |
Manman Ren | 494ee5b | 2016-01-28 23:36:05 +0000 | [diff] [blame] | 2122 | for (auto *Prop : Ext->properties()) |
| 2123 | PM[std::make_pair(Prop->getIdentifier(), Prop->isClassProperty())] = Prop; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2124 | |
Manman Ren | efe1bac | 2016-01-27 20:00:32 +0000 | [diff] [blame] | 2125 | for (ObjCContainerDecl::PropertyMap::iterator I = PM.begin(), E = PM.end(); |
| 2126 | I != E; ++I) { |
Douglas Gregor | acf4fd3 | 2015-11-03 01:15:46 +0000 | [diff] [blame] | 2127 | const ObjCPropertyDecl *Property = I->second; |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 2128 | ObjCMethodDecl *GetterMethod = nullptr; |
| 2129 | ObjCMethodDecl *SetterMethod = nullptr; |
Argyrios Kyrtzidis | dd88dbf | 2011-01-31 21:34:11 +0000 | [diff] [blame] | 2130 | bool LookedUpGetterSetter = false; |
| 2131 | |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 2132 | unsigned Attributes = Property->getPropertyAttributes(); |
John McCall | 4319286 | 2011-09-13 18:31:23 +0000 | [diff] [blame] | 2133 | unsigned AttributesAsWritten = Property->getPropertyAttributesAsWritten(); |
Argyrios Kyrtzidis | dd88dbf | 2011-01-31 21:34:11 +0000 | [diff] [blame] | 2134 | |
John McCall | 4319286 | 2011-09-13 18:31:23 +0000 | [diff] [blame] | 2135 | if (!(AttributesAsWritten & ObjCPropertyDecl::OBJC_PR_atomic) && |
| 2136 | !(AttributesAsWritten & ObjCPropertyDecl::OBJC_PR_nonatomic)) { |
Manman Ren | d36f7d5 | 2016-01-27 20:10:32 +0000 | [diff] [blame] | 2137 | GetterMethod = Property->isClassProperty() ? |
| 2138 | IMPDecl->getClassMethod(Property->getGetterName()) : |
| 2139 | IMPDecl->getInstanceMethod(Property->getGetterName()); |
| 2140 | SetterMethod = Property->isClassProperty() ? |
| 2141 | IMPDecl->getClassMethod(Property->getSetterName()) : |
| 2142 | IMPDecl->getInstanceMethod(Property->getSetterName()); |
Argyrios Kyrtzidis | dd88dbf | 2011-01-31 21:34:11 +0000 | [diff] [blame] | 2143 | LookedUpGetterSetter = true; |
| 2144 | if (GetterMethod) { |
| 2145 | Diag(GetterMethod->getLocation(), |
| 2146 | diag::warn_default_atomic_custom_getter_setter) |
Argyrios Kyrtzidis | b5b5a59 | 2011-01-31 23:20:03 +0000 | [diff] [blame] | 2147 | << Property->getIdentifier() << 0; |
Argyrios Kyrtzidis | dd88dbf | 2011-01-31 21:34:11 +0000 | [diff] [blame] | 2148 | Diag(Property->getLocation(), diag::note_property_declare); |
| 2149 | } |
| 2150 | if (SetterMethod) { |
| 2151 | Diag(SetterMethod->getLocation(), |
| 2152 | diag::warn_default_atomic_custom_getter_setter) |
Argyrios Kyrtzidis | b5b5a59 | 2011-01-31 23:20:03 +0000 | [diff] [blame] | 2153 | << Property->getIdentifier() << 1; |
Argyrios Kyrtzidis | dd88dbf | 2011-01-31 21:34:11 +0000 | [diff] [blame] | 2154 | Diag(Property->getLocation(), diag::note_property_declare); |
| 2155 | } |
| 2156 | } |
| 2157 | |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 2158 | // We only care about readwrite atomic property. |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 2159 | if ((Attributes & ObjCPropertyDecl::OBJC_PR_nonatomic) || |
| 2160 | !(Attributes & ObjCPropertyDecl::OBJC_PR_readwrite)) |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 2161 | continue; |
Manman Ren | 5b78640 | 2016-01-28 18:49:28 +0000 | [diff] [blame] | 2162 | if (const ObjCPropertyImplDecl *PIDecl = IMPDecl->FindPropertyImplDecl( |
| 2163 | Property->getIdentifier(), Property->getQueryKind())) { |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 2164 | if (PIDecl->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic) |
| 2165 | continue; |
Argyrios Kyrtzidis | dd88dbf | 2011-01-31 21:34:11 +0000 | [diff] [blame] | 2166 | if (!LookedUpGetterSetter) { |
Manman Ren | d36f7d5 | 2016-01-27 20:10:32 +0000 | [diff] [blame] | 2167 | GetterMethod = Property->isClassProperty() ? |
| 2168 | IMPDecl->getClassMethod(Property->getGetterName()) : |
| 2169 | IMPDecl->getInstanceMethod(Property->getGetterName()); |
| 2170 | SetterMethod = Property->isClassProperty() ? |
| 2171 | IMPDecl->getClassMethod(Property->getSetterName()) : |
| 2172 | IMPDecl->getInstanceMethod(Property->getSetterName()); |
Argyrios Kyrtzidis | dd88dbf | 2011-01-31 21:34:11 +0000 | [diff] [blame] | 2173 | } |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 2174 | if ((GetterMethod && !SetterMethod) || (!GetterMethod && SetterMethod)) { |
| 2175 | SourceLocation MethodLoc = |
| 2176 | (GetterMethod ? GetterMethod->getLocation() |
| 2177 | : SetterMethod->getLocation()); |
| 2178 | Diag(MethodLoc, diag::warn_atomic_property_rule) |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 2179 | << Property->getIdentifier() << (GetterMethod != nullptr) |
| 2180 | << (SetterMethod != nullptr); |
Fariborz Jahanian | 86c2f5c | 2012-02-29 22:18:55 +0000 | [diff] [blame] | 2181 | // fixit stuff. |
Douglas Gregor | acf4fd3 | 2015-11-03 01:15:46 +0000 | [diff] [blame] | 2182 | if (Property->getLParenLoc().isValid() && |
| 2183 | !(AttributesAsWritten & ObjCPropertyDecl::OBJC_PR_atomic)) { |
Fariborz Jahanian | 86c2f5c | 2012-02-29 22:18:55 +0000 | [diff] [blame] | 2184 | // @property () ... case. |
Douglas Gregor | acf4fd3 | 2015-11-03 01:15:46 +0000 | [diff] [blame] | 2185 | SourceLocation AfterLParen = |
| 2186 | getLocForEndOfToken(Property->getLParenLoc()); |
| 2187 | StringRef NonatomicStr = AttributesAsWritten? "nonatomic, " |
| 2188 | : "nonatomic"; |
| 2189 | Diag(Property->getLocation(), |
| 2190 | diag::note_atomic_property_fixup_suggest) |
| 2191 | << FixItHint::CreateInsertion(AfterLParen, NonatomicStr); |
| 2192 | } else if (Property->getLParenLoc().isInvalid()) { |
| 2193 | //@property id etc. |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2194 | SourceLocation startLoc = |
Douglas Gregor | acf4fd3 | 2015-11-03 01:15:46 +0000 | [diff] [blame] | 2195 | Property->getTypeSourceInfo()->getTypeLoc().getBeginLoc(); |
| 2196 | Diag(Property->getLocation(), |
| 2197 | diag::note_atomic_property_fixup_suggest) |
| 2198 | << FixItHint::CreateInsertion(startLoc, "(nonatomic) "); |
Fariborz Jahanian | 86c2f5c | 2012-02-29 22:18:55 +0000 | [diff] [blame] | 2199 | } |
| 2200 | else |
| 2201 | Diag(MethodLoc, diag::note_atomic_property_fixup_suggest); |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 2202 | Diag(Property->getLocation(), diag::note_property_declare); |
| 2203 | } |
| 2204 | } |
| 2205 | } |
| 2206 | } |
| 2207 | |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2208 | void Sema::DiagnoseOwningPropertyGetterSynthesis(const ObjCImplementationDecl *D) { |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2209 | if (getLangOpts().getGC() == LangOptions::GCOnly) |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2210 | return; |
| 2211 | |
Aaron Ballman | d85eff4 | 2014-03-14 15:02:45 +0000 | [diff] [blame] | 2212 | for (const auto *PID : D->property_impls()) { |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2213 | const ObjCPropertyDecl *PD = PID->getPropertyDecl(); |
Fariborz Jahanian | f4105f5 | 2011-06-25 00:17:46 +0000 | [diff] [blame] | 2214 | if (PD && !PD->hasAttr<NSReturnsNotRetainedAttr>() && |
Manman Ren | d36f7d5 | 2016-01-27 20:10:32 +0000 | [diff] [blame] | 2215 | !PD->isClassProperty() && |
Fariborz Jahanian | f4105f5 | 2011-06-25 00:17:46 +0000 | [diff] [blame] | 2216 | !D->getInstanceMethod(PD->getGetterName())) { |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2217 | ObjCMethodDecl *method = PD->getGetterMethodDecl(); |
| 2218 | if (!method) |
| 2219 | continue; |
| 2220 | ObjCMethodFamily family = method->getMethodFamily(); |
| 2221 | if (family == OMF_alloc || family == OMF_copy || |
| 2222 | family == OMF_mutableCopy || family == OMF_new) { |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2223 | if (getLangOpts().ObjCAutoRefCount) |
Fariborz Jahanian | 65b1377 | 2014-01-10 00:53:48 +0000 | [diff] [blame] | 2224 | Diag(PD->getLocation(), diag::err_cocoa_naming_owned_rule); |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2225 | else |
Fariborz Jahanian | 65b1377 | 2014-01-10 00:53:48 +0000 | [diff] [blame] | 2226 | Diag(PD->getLocation(), diag::warn_cocoa_naming_owned_rule); |
Jordan Rose | a34d04d | 2015-01-16 23:04:31 +0000 | [diff] [blame] | 2227 | |
| 2228 | // Look for a getter explicitly declared alongside the property. |
| 2229 | // If we find one, use its location for the note. |
| 2230 | SourceLocation noteLoc = PD->getLocation(); |
| 2231 | SourceLocation fixItLoc; |
| 2232 | for (auto *getterRedecl : method->redecls()) { |
| 2233 | if (getterRedecl->isImplicit()) |
| 2234 | continue; |
| 2235 | if (getterRedecl->getDeclContext() != PD->getDeclContext()) |
| 2236 | continue; |
| 2237 | noteLoc = getterRedecl->getLocation(); |
Stephen Kelly | 1c301dc | 2018-08-09 21:09:38 +0000 | [diff] [blame] | 2238 | fixItLoc = getterRedecl->getEndLoc(); |
Jordan Rose | a34d04d | 2015-01-16 23:04:31 +0000 | [diff] [blame] | 2239 | } |
| 2240 | |
| 2241 | Preprocessor &PP = getPreprocessor(); |
| 2242 | TokenValue tokens[] = { |
| 2243 | tok::kw___attribute, tok::l_paren, tok::l_paren, |
| 2244 | PP.getIdentifierInfo("objc_method_family"), tok::l_paren, |
| 2245 | PP.getIdentifierInfo("none"), tok::r_paren, |
| 2246 | tok::r_paren, tok::r_paren |
| 2247 | }; |
| 2248 | StringRef spelling = "__attribute__((objc_method_family(none)))"; |
| 2249 | StringRef macroName = PP.getLastMacroWithSpelling(noteLoc, tokens); |
| 2250 | if (!macroName.empty()) |
| 2251 | spelling = macroName; |
| 2252 | |
| 2253 | auto noteDiag = Diag(noteLoc, diag::note_cocoa_naming_declare_family) |
| 2254 | << method->getDeclName() << spelling; |
| 2255 | if (fixItLoc.isValid()) { |
| 2256 | SmallString<64> fixItText(" "); |
| 2257 | fixItText += spelling; |
| 2258 | noteDiag << FixItHint::CreateInsertion(fixItLoc, fixItText); |
| 2259 | } |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2260 | } |
| 2261 | } |
| 2262 | } |
| 2263 | } |
| 2264 | |
Argyrios Kyrtzidis | db5ce0f | 2013-12-03 21:11:54 +0000 | [diff] [blame] | 2265 | void Sema::DiagnoseMissingDesignatedInitOverrides( |
Fariborz Jahanian | 20cfff3 | 2015-03-11 16:59:48 +0000 | [diff] [blame] | 2266 | const ObjCImplementationDecl *ImplD, |
| 2267 | const ObjCInterfaceDecl *IFD) { |
| 2268 | assert(IFD->hasDesignatedInitializers()); |
Argyrios Kyrtzidis | db5ce0f | 2013-12-03 21:11:54 +0000 | [diff] [blame] | 2269 | const ObjCInterfaceDecl *SuperD = IFD->getSuperClass(); |
| 2270 | if (!SuperD) |
| 2271 | return; |
| 2272 | |
| 2273 | SelectorSet InitSelSet; |
Aaron Ballman | f26acce | 2014-03-13 19:50:17 +0000 | [diff] [blame] | 2274 | for (const auto *I : ImplD->instance_methods()) |
| 2275 | if (I->getMethodFamily() == OMF_init) |
| 2276 | InitSelSet.insert(I->getSelector()); |
Argyrios Kyrtzidis | db5ce0f | 2013-12-03 21:11:54 +0000 | [diff] [blame] | 2277 | |
| 2278 | SmallVector<const ObjCMethodDecl *, 8> DesignatedInits; |
| 2279 | SuperD->getDesignatedInitializers(DesignatedInits); |
| 2280 | for (SmallVector<const ObjCMethodDecl *, 8>::iterator |
| 2281 | I = DesignatedInits.begin(), E = DesignatedInits.end(); I != E; ++I) { |
| 2282 | const ObjCMethodDecl *MD = *I; |
| 2283 | if (!InitSelSet.count(MD->getSelector())) { |
Argyrios Kyrtzidis | c0d4b00f | 2015-07-30 19:06:04 +0000 | [diff] [blame] | 2284 | bool Ignore = false; |
| 2285 | if (auto *IMD = IFD->getInstanceMethod(MD->getSelector())) { |
| 2286 | Ignore = IMD->isUnavailable(); |
| 2287 | } |
| 2288 | if (!Ignore) { |
| 2289 | Diag(ImplD->getLocation(), |
| 2290 | diag::warn_objc_implementation_missing_designated_init_override) |
| 2291 | << MD->getSelector(); |
| 2292 | Diag(MD->getLocation(), diag::note_objc_designated_init_marked_here); |
| 2293 | } |
Argyrios Kyrtzidis | db5ce0f | 2013-12-03 21:11:54 +0000 | [diff] [blame] | 2294 | } |
| 2295 | } |
| 2296 | } |
| 2297 | |
John McCall | ad31b5f | 2010-11-10 07:01:40 +0000 | [diff] [blame] | 2298 | /// AddPropertyAttrs - Propagates attributes from a property to the |
| 2299 | /// implicitly-declared getter or setter for that property. |
| 2300 | static void AddPropertyAttrs(Sema &S, ObjCMethodDecl *PropertyMethod, |
| 2301 | ObjCPropertyDecl *Property) { |
| 2302 | // Should we just clone all attributes over? |
Aaron Ballman | b97112e | 2014-03-08 22:19:01 +0000 | [diff] [blame] | 2303 | for (const auto *A : Property->attrs()) { |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2304 | if (isa<DeprecatedAttr>(A) || |
| 2305 | isa<UnavailableAttr>(A) || |
Aaron Ballman | b97112e | 2014-03-08 22:19:01 +0000 | [diff] [blame] | 2306 | isa<AvailabilityAttr>(A)) |
| 2307 | PropertyMethod->addAttr(A->clone(S.Context)); |
Douglas Gregor | 20b2ebd | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 2308 | } |
John McCall | ad31b5f | 2010-11-10 07:01:40 +0000 | [diff] [blame] | 2309 | } |
| 2310 | |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 2311 | /// ProcessPropertyDecl - Make sure that any user-defined setter/getter methods |
| 2312 | /// have the property type and issue diagnostics if they don't. |
| 2313 | /// Also synthesize a getter/setter method if none exist (and update the |
Douglas Gregor | e17765e | 2015-11-03 17:02:34 +0000 | [diff] [blame] | 2314 | /// appropriate lookup tables. |
| 2315 | void Sema::ProcessPropertyDecl(ObjCPropertyDecl *property) { |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 2316 | ObjCMethodDecl *GetterMethod, *SetterMethod; |
Douglas Gregor | e17765e | 2015-11-03 17:02:34 +0000 | [diff] [blame] | 2317 | ObjCContainerDecl *CD = cast<ObjCContainerDecl>(property->getDeclContext()); |
Fariborz Jahanian | 0c1c311 | 2014-05-27 18:26:09 +0000 | [diff] [blame] | 2318 | if (CD->isInvalidDecl()) |
| 2319 | return; |
| 2320 | |
Manman Ren | d36f7d5 | 2016-01-27 20:10:32 +0000 | [diff] [blame] | 2321 | bool IsClassProperty = property->isClassProperty(); |
| 2322 | GetterMethod = IsClassProperty ? |
| 2323 | CD->getClassMethod(property->getGetterName()) : |
| 2324 | CD->getInstanceMethod(property->getGetterName()); |
| 2325 | |
Douglas Gregor | acf4fd3 | 2015-11-03 01:15:46 +0000 | [diff] [blame] | 2326 | // if setter or getter is not found in class extension, it might be |
| 2327 | // in the primary class. |
| 2328 | if (!GetterMethod) |
| 2329 | if (const ObjCCategoryDecl *CatDecl = dyn_cast<ObjCCategoryDecl>(CD)) |
| 2330 | if (CatDecl->IsClassExtension()) |
Manman Ren | d36f7d5 | 2016-01-27 20:10:32 +0000 | [diff] [blame] | 2331 | GetterMethod = IsClassProperty ? CatDecl->getClassInterface()-> |
| 2332 | getClassMethod(property->getGetterName()) : |
| 2333 | CatDecl->getClassInterface()-> |
Douglas Gregor | acf4fd3 | 2015-11-03 01:15:46 +0000 | [diff] [blame] | 2334 | getInstanceMethod(property->getGetterName()); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2335 | |
Manman Ren | d36f7d5 | 2016-01-27 20:10:32 +0000 | [diff] [blame] | 2336 | SetterMethod = IsClassProperty ? |
| 2337 | CD->getClassMethod(property->getSetterName()) : |
| 2338 | CD->getInstanceMethod(property->getSetterName()); |
Douglas Gregor | acf4fd3 | 2015-11-03 01:15:46 +0000 | [diff] [blame] | 2339 | if (!SetterMethod) |
| 2340 | if (const ObjCCategoryDecl *CatDecl = dyn_cast<ObjCCategoryDecl>(CD)) |
| 2341 | if (CatDecl->IsClassExtension()) |
Manman Ren | d36f7d5 | 2016-01-27 20:10:32 +0000 | [diff] [blame] | 2342 | SetterMethod = IsClassProperty ? CatDecl->getClassInterface()-> |
| 2343 | getClassMethod(property->getSetterName()) : |
| 2344 | CatDecl->getClassInterface()-> |
Douglas Gregor | acf4fd3 | 2015-11-03 01:15:46 +0000 | [diff] [blame] | 2345 | getInstanceMethod(property->getSetterName()); |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 2346 | DiagnosePropertyAccessorMismatch(property, GetterMethod, |
| 2347 | property->getLocation()); |
| 2348 | |
Alex Lorenz | 535571a | 2017-03-30 13:33:51 +0000 | [diff] [blame] | 2349 | if (!property->isReadOnly() && SetterMethod) { |
| 2350 | if (Context.getCanonicalType(SetterMethod->getReturnType()) != |
| 2351 | Context.VoidTy) |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 2352 | Diag(SetterMethod->getLocation(), diag::err_setter_type_void); |
| 2353 | if (SetterMethod->param_size() != 1 || |
Fariborz Jahanian | 0ee58d6 | 2011-09-26 22:59:09 +0000 | [diff] [blame] | 2354 | !Context.hasSameUnqualifiedType( |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2355 | (*SetterMethod->param_begin())->getType().getNonReferenceType(), |
Fariborz Jahanian | 7c386f8 | 2011-10-15 17:36:49 +0000 | [diff] [blame] | 2356 | property->getType().getNonReferenceType())) { |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 2357 | Diag(property->getLocation(), |
| 2358 | diag::warn_accessor_property_type_mismatch) |
| 2359 | << property->getDeclName() |
| 2360 | << SetterMethod->getSelector(); |
| 2361 | Diag(SetterMethod->getLocation(), diag::note_declared_at); |
| 2362 | } |
| 2363 | } |
| 2364 | |
| 2365 | // Synthesize getter/setter methods if none exist. |
| 2366 | // Find the default getter and if one not found, add one. |
| 2367 | // FIXME: The synthesized property we set here is misleading. We almost always |
| 2368 | // synthesize these methods unless the user explicitly provided prototypes |
| 2369 | // (which is odd, but allowed). Sema should be typechecking that the |
| 2370 | // declarations jive in that situation (which it is not currently). |
| 2371 | if (!GetterMethod) { |
Manman Ren | d36f7d5 | 2016-01-27 20:10:32 +0000 | [diff] [blame] | 2372 | // No instance/class method of same name as property getter name was found. |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 2373 | // Declare a getter method and add it to the list of methods |
| 2374 | // for this class. |
Douglas Gregor | acf4fd3 | 2015-11-03 01:15:46 +0000 | [diff] [blame] | 2375 | SourceLocation Loc = property->getLocation(); |
Ted Kremenek | 2f07563 | 2010-09-21 20:52:59 +0000 | [diff] [blame] | 2376 | |
Akira Hatanaka | de6f25f | 2016-05-26 00:37:30 +0000 | [diff] [blame] | 2377 | // The getter returns the declared property type with all qualifiers |
| 2378 | // removed. |
| 2379 | QualType resultTy = property->getType().getAtomicUnqualifiedType(); |
| 2380 | |
Douglas Gregor | 849ebc2 | 2015-06-19 18:14:46 +0000 | [diff] [blame] | 2381 | // If the property is null_resettable, the getter returns nonnull. |
Douglas Gregor | 849ebc2 | 2015-06-19 18:14:46 +0000 | [diff] [blame] | 2382 | if (property->getPropertyAttributes() & |
| 2383 | ObjCPropertyDecl::OBJC_PR_null_resettable) { |
| 2384 | QualType modifiedTy = resultTy; |
Douglas Gregor | aea7afd | 2015-06-24 22:02:08 +0000 | [diff] [blame] | 2385 | if (auto nullability = AttributedType::stripOuterNullability(modifiedTy)) { |
Douglas Gregor | 849ebc2 | 2015-06-19 18:14:46 +0000 | [diff] [blame] | 2386 | if (*nullability == NullabilityKind::Unspecified) |
Richard Smith | e43e2b3 | 2018-08-20 21:47:29 +0000 | [diff] [blame] | 2387 | resultTy = Context.getAttributedType(attr::TypeNonNull, |
Douglas Gregor | 849ebc2 | 2015-06-19 18:14:46 +0000 | [diff] [blame] | 2388 | modifiedTy, modifiedTy); |
| 2389 | } |
| 2390 | } |
| 2391 | |
Ted Kremenek | 2f07563 | 2010-09-21 20:52:59 +0000 | [diff] [blame] | 2392 | GetterMethod = ObjCMethodDecl::Create(Context, Loc, Loc, |
| 2393 | property->getGetterName(), |
Douglas Gregor | 849ebc2 | 2015-06-19 18:14:46 +0000 | [diff] [blame] | 2394 | resultTy, nullptr, CD, |
Manman Ren | d36f7d5 | 2016-01-27 20:10:32 +0000 | [diff] [blame] | 2395 | !IsClassProperty, /*isVariadic=*/false, |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 2396 | /*isPropertyAccessor=*/true, |
Argyrios Kyrtzidis | 004df6e | 2011-08-17 19:25:08 +0000 | [diff] [blame] | 2397 | /*isImplicitlyDeclared=*/true, /*isDefined=*/false, |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 2398 | (property->getPropertyImplementation() == |
| 2399 | ObjCPropertyDecl::Optional) ? |
| 2400 | ObjCMethodDecl::Optional : |
| 2401 | ObjCMethodDecl::Required); |
| 2402 | CD->addDecl(GetterMethod); |
John McCall | ad31b5f | 2010-11-10 07:01:40 +0000 | [diff] [blame] | 2403 | |
| 2404 | AddPropertyAttrs(*this, GetterMethod, property); |
| 2405 | |
Fariborz Jahanian | f4105f5 | 2011-06-25 00:17:46 +0000 | [diff] [blame] | 2406 | if (property->hasAttr<NSReturnsNotRetainedAttr>()) |
Aaron Ballman | 36a5350 | 2014-01-16 13:03:14 +0000 | [diff] [blame] | 2407 | GetterMethod->addAttr(NSReturnsNotRetainedAttr::CreateImplicit(Context, |
| 2408 | Loc)); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2409 | |
Fariborz Jahanian | 8a5e947 | 2013-09-19 16:37:20 +0000 | [diff] [blame] | 2410 | if (property->hasAttr<ObjCReturnsInnerPointerAttr>()) |
| 2411 | GetterMethod->addAttr( |
Aaron Ballman | 36a5350 | 2014-01-16 13:03:14 +0000 | [diff] [blame] | 2412 | ObjCReturnsInnerPointerAttr::CreateImplicit(Context, Loc)); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2413 | |
Fariborz Jahanian | cb8c7da | 2013-12-18 23:09:57 +0000 | [diff] [blame] | 2414 | if (const SectionAttr *SA = property->getAttr<SectionAttr>()) |
Warren Hunt | c3b1896 | 2014-04-08 22:30:47 +0000 | [diff] [blame] | 2415 | GetterMethod->addAttr( |
| 2416 | SectionAttr::CreateImplicit(Context, SectionAttr::GNU_section, |
| 2417 | SA->getName(), Loc)); |
John McCall | e48f389 | 2013-04-04 01:38:37 +0000 | [diff] [blame] | 2418 | |
| 2419 | if (getLangOpts().ObjCAutoRefCount) |
| 2420 | CheckARCMethodDecl(GetterMethod); |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 2421 | } else |
| 2422 | // A user declared getter will be synthesize when @synthesize of |
| 2423 | // the property with the same name is seen in the @implementation |
Jordan Rose | d01e83a | 2012-10-10 16:42:25 +0000 | [diff] [blame] | 2424 | GetterMethod->setPropertyAccessor(true); |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 2425 | property->setGetterMethodDecl(GetterMethod); |
| 2426 | |
| 2427 | // Skip setter if property is read-only. |
| 2428 | if (!property->isReadOnly()) { |
| 2429 | // Find the default setter and if one not found, add one. |
| 2430 | if (!SetterMethod) { |
Manman Ren | d36f7d5 | 2016-01-27 20:10:32 +0000 | [diff] [blame] | 2431 | // No instance/class method of same name as property setter name was |
| 2432 | // found. |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 2433 | // Declare a setter method and add it to the list of methods |
| 2434 | // for this class. |
Douglas Gregor | acf4fd3 | 2015-11-03 01:15:46 +0000 | [diff] [blame] | 2435 | SourceLocation Loc = property->getLocation(); |
Ted Kremenek | e3a7d1b | 2010-09-21 18:28:43 +0000 | [diff] [blame] | 2436 | |
| 2437 | SetterMethod = |
Argyrios Kyrtzidis | b8c3aaf | 2011-10-03 06:37:04 +0000 | [diff] [blame] | 2438 | ObjCMethodDecl::Create(Context, Loc, Loc, |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 2439 | property->getSetterName(), Context.VoidTy, |
Manman Ren | d36f7d5 | 2016-01-27 20:10:32 +0000 | [diff] [blame] | 2440 | nullptr, CD, !IsClassProperty, |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 2441 | /*isVariadic=*/false, |
Jordan Rose | d01e83a | 2012-10-10 16:42:25 +0000 | [diff] [blame] | 2442 | /*isPropertyAccessor=*/true, |
Argyrios Kyrtzidis | 004df6e | 2011-08-17 19:25:08 +0000 | [diff] [blame] | 2443 | /*isImplicitlyDeclared=*/true, |
| 2444 | /*isDefined=*/false, |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 2445 | (property->getPropertyImplementation() == |
| 2446 | ObjCPropertyDecl::Optional) ? |
Ted Kremenek | e3a7d1b | 2010-09-21 18:28:43 +0000 | [diff] [blame] | 2447 | ObjCMethodDecl::Optional : |
| 2448 | ObjCMethodDecl::Required); |
| 2449 | |
Akira Hatanaka | de6f25f | 2016-05-26 00:37:30 +0000 | [diff] [blame] | 2450 | // Remove all qualifiers from the setter's parameter type. |
| 2451 | QualType paramTy = |
| 2452 | property->getType().getUnqualifiedType().getAtomicUnqualifiedType(); |
| 2453 | |
Douglas Gregor | 849ebc2 | 2015-06-19 18:14:46 +0000 | [diff] [blame] | 2454 | // If the property is null_resettable, the setter accepts a |
| 2455 | // nullable value. |
Douglas Gregor | 849ebc2 | 2015-06-19 18:14:46 +0000 | [diff] [blame] | 2456 | if (property->getPropertyAttributes() & |
| 2457 | ObjCPropertyDecl::OBJC_PR_null_resettable) { |
| 2458 | QualType modifiedTy = paramTy; |
| 2459 | if (auto nullability = AttributedType::stripOuterNullability(modifiedTy)){ |
| 2460 | if (*nullability == NullabilityKind::Unspecified) |
Richard Smith | e43e2b3 | 2018-08-20 21:47:29 +0000 | [diff] [blame] | 2461 | paramTy = Context.getAttributedType(attr::TypeNullable, |
Douglas Gregor | 849ebc2 | 2015-06-19 18:14:46 +0000 | [diff] [blame] | 2462 | modifiedTy, modifiedTy); |
| 2463 | } |
| 2464 | } |
| 2465 | |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 2466 | // Invent the arguments for the setter. We don't bother making a |
| 2467 | // nice name for the argument. |
Abramo Bagnara | dff1930 | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 2468 | ParmVarDecl *Argument = ParmVarDecl::Create(Context, SetterMethod, |
| 2469 | Loc, Loc, |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 2470 | property->getIdentifier(), |
Douglas Gregor | 849ebc2 | 2015-06-19 18:14:46 +0000 | [diff] [blame] | 2471 | paramTy, |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 2472 | /*TInfo=*/nullptr, |
John McCall | 8e7d656 | 2010-08-26 03:08:43 +0000 | [diff] [blame] | 2473 | SC_None, |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 2474 | nullptr); |
Dmitri Gribenko | 44ebbd5 | 2013-05-05 00:41:58 +0000 | [diff] [blame] | 2475 | SetterMethod->setMethodParams(Context, Argument, None); |
John McCall | ad31b5f | 2010-11-10 07:01:40 +0000 | [diff] [blame] | 2476 | |
| 2477 | AddPropertyAttrs(*this, SetterMethod, property); |
| 2478 | |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 2479 | CD->addDecl(SetterMethod); |
Fariborz Jahanian | cb8c7da | 2013-12-18 23:09:57 +0000 | [diff] [blame] | 2480 | if (const SectionAttr *SA = property->getAttr<SectionAttr>()) |
Warren Hunt | c3b1896 | 2014-04-08 22:30:47 +0000 | [diff] [blame] | 2481 | SetterMethod->addAttr( |
| 2482 | SectionAttr::CreateImplicit(Context, SectionAttr::GNU_section, |
| 2483 | SA->getName(), Loc)); |
John McCall | e48f389 | 2013-04-04 01:38:37 +0000 | [diff] [blame] | 2484 | // It's possible for the user to have set a very odd custom |
| 2485 | // setter selector that causes it to have a method family. |
| 2486 | if (getLangOpts().ObjCAutoRefCount) |
| 2487 | CheckARCMethodDecl(SetterMethod); |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 2488 | } else |
| 2489 | // A user declared setter will be synthesize when @synthesize of |
| 2490 | // the property with the same name is seen in the @implementation |
Jordan Rose | d01e83a | 2012-10-10 16:42:25 +0000 | [diff] [blame] | 2491 | SetterMethod->setPropertyAccessor(true); |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 2492 | property->setSetterMethodDecl(SetterMethod); |
| 2493 | } |
| 2494 | // Add any synthesized methods to the global pool. This allows us to |
| 2495 | // handle the following, which is supported by GCC (and part of the design). |
| 2496 | // |
| 2497 | // @interface Foo |
| 2498 | // @property double bar; |
| 2499 | // @end |
| 2500 | // |
| 2501 | // void thisIsUnfortunate() { |
| 2502 | // id foo; |
| 2503 | // double bar = [foo bar]; |
| 2504 | // } |
| 2505 | // |
Manman Ren | d36f7d5 | 2016-01-27 20:10:32 +0000 | [diff] [blame] | 2506 | if (!IsClassProperty) { |
| 2507 | if (GetterMethod) |
| 2508 | AddInstanceMethodToGlobalPool(GetterMethod); |
| 2509 | if (SetterMethod) |
| 2510 | AddInstanceMethodToGlobalPool(SetterMethod); |
Manman Ren | 15325f8 | 2016-03-23 21:39:31 +0000 | [diff] [blame] | 2511 | } else { |
| 2512 | if (GetterMethod) |
| 2513 | AddFactoryMethodToGlobalPool(GetterMethod); |
| 2514 | if (SetterMethod) |
| 2515 | AddFactoryMethodToGlobalPool(SetterMethod); |
Manman Ren | d36f7d5 | 2016-01-27 20:10:32 +0000 | [diff] [blame] | 2516 | } |
Argyrios Kyrtzidis | 08f96a9 | 2012-05-09 16:12:57 +0000 | [diff] [blame] | 2517 | |
| 2518 | ObjCInterfaceDecl *CurrentClass = dyn_cast<ObjCInterfaceDecl>(CD); |
| 2519 | if (!CurrentClass) { |
| 2520 | if (ObjCCategoryDecl *Cat = dyn_cast<ObjCCategoryDecl>(CD)) |
| 2521 | CurrentClass = Cat->getClassInterface(); |
| 2522 | else if (ObjCImplDecl *Impl = dyn_cast<ObjCImplDecl>(CD)) |
| 2523 | CurrentClass = Impl->getClassInterface(); |
| 2524 | } |
| 2525 | if (GetterMethod) |
| 2526 | CheckObjCMethodOverrides(GetterMethod, CurrentClass, Sema::RTC_Unknown); |
| 2527 | if (SetterMethod) |
| 2528 | CheckObjCMethodOverrides(SetterMethod, CurrentClass, Sema::RTC_Unknown); |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 2529 | } |
| 2530 | |
John McCall | 4887165 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 2531 | void Sema::CheckObjCPropertyAttributes(Decl *PDecl, |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 2532 | SourceLocation Loc, |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 2533 | unsigned &Attributes, |
Fariborz Jahanian | 876cc65 | 2012-06-20 22:57:42 +0000 | [diff] [blame] | 2534 | bool propertyInPrimaryClass) { |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 2535 | // FIXME: Improve the reported location. |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2536 | if (!PDecl || PDecl->isInvalidDecl()) |
Ted Kremenek | b535782 | 2010-04-05 22:39:42 +0000 | [diff] [blame] | 2537 | return; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2538 | |
Fariborz Jahanian | 88ff20e | 2013-10-07 17:20:02 +0000 | [diff] [blame] | 2539 | if ((Attributes & ObjCDeclSpec::DQ_PR_readonly) && |
| 2540 | (Attributes & ObjCDeclSpec::DQ_PR_readwrite)) |
| 2541 | Diag(Loc, diag::err_objc_property_attr_mutually_exclusive) |
| 2542 | << "readonly" << "readwrite"; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2543 | |
Fariborz Jahanian | 88ff20e | 2013-10-07 17:20:02 +0000 | [diff] [blame] | 2544 | ObjCPropertyDecl *PropertyDecl = cast<ObjCPropertyDecl>(PDecl); |
| 2545 | QualType PropertyTy = PropertyDecl->getType(); |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 2546 | |
| 2547 | // Check for copy or retain on non-object types. |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 2548 | if ((Attributes & (ObjCDeclSpec::DQ_PR_weak | ObjCDeclSpec::DQ_PR_copy | |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2549 | ObjCDeclSpec::DQ_PR_retain | ObjCDeclSpec::DQ_PR_strong)) && |
| 2550 | !PropertyTy->isObjCRetainableType() && |
Aaron Ballman | 9ead124 | 2013-12-19 02:39:40 +0000 | [diff] [blame] | 2551 | !PropertyDecl->hasAttr<ObjCNSObjectAttr>()) { |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 2552 | Diag(Loc, diag::err_objc_property_requires_object) |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 2553 | << (Attributes & ObjCDeclSpec::DQ_PR_weak ? "weak" : |
| 2554 | Attributes & ObjCDeclSpec::DQ_PR_copy ? "copy" : "retain (or strong)"); |
| 2555 | Attributes &= ~(ObjCDeclSpec::DQ_PR_weak | ObjCDeclSpec::DQ_PR_copy | |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2556 | ObjCDeclSpec::DQ_PR_retain | ObjCDeclSpec::DQ_PR_strong); |
John McCall | 2499237 | 2012-02-21 21:48:05 +0000 | [diff] [blame] | 2557 | PropertyDecl->setInvalidDecl(); |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 2558 | } |
| 2559 | |
John McCall | 52a503d | 2018-09-05 19:02:00 +0000 | [diff] [blame] | 2560 | // Check for assign on object types. |
| 2561 | if ((Attributes & ObjCDeclSpec::DQ_PR_assign) && |
| 2562 | !(Attributes & ObjCDeclSpec::DQ_PR_unsafe_unretained) && |
| 2563 | PropertyTy->isObjCRetainableType() && |
| 2564 | !PropertyTy->isObjCARCImplicitlyUnretainedType()) { |
| 2565 | Diag(Loc, diag::warn_objc_property_assign_on_object); |
| 2566 | } |
| 2567 | |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 2568 | // Check for more than one of { assign, copy, retain }. |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 2569 | if (Attributes & ObjCDeclSpec::DQ_PR_assign) { |
| 2570 | if (Attributes & ObjCDeclSpec::DQ_PR_copy) { |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 2571 | Diag(Loc, diag::err_objc_property_attr_mutually_exclusive) |
| 2572 | << "assign" << "copy"; |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 2573 | Attributes &= ~ObjCDeclSpec::DQ_PR_copy; |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 2574 | } |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 2575 | if (Attributes & ObjCDeclSpec::DQ_PR_retain) { |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 2576 | Diag(Loc, diag::err_objc_property_attr_mutually_exclusive) |
| 2577 | << "assign" << "retain"; |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 2578 | Attributes &= ~ObjCDeclSpec::DQ_PR_retain; |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 2579 | } |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 2580 | if (Attributes & ObjCDeclSpec::DQ_PR_strong) { |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2581 | Diag(Loc, diag::err_objc_property_attr_mutually_exclusive) |
| 2582 | << "assign" << "strong"; |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 2583 | Attributes &= ~ObjCDeclSpec::DQ_PR_strong; |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2584 | } |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2585 | if (getLangOpts().ObjCAutoRefCount && |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 2586 | (Attributes & ObjCDeclSpec::DQ_PR_weak)) { |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2587 | Diag(Loc, diag::err_objc_property_attr_mutually_exclusive) |
| 2588 | << "assign" << "weak"; |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 2589 | Attributes &= ~ObjCDeclSpec::DQ_PR_weak; |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2590 | } |
Aaron Ballman | 9ead124 | 2013-12-19 02:39:40 +0000 | [diff] [blame] | 2591 | if (PropertyDecl->hasAttr<IBOutletCollectionAttr>()) |
Fariborz Jahanian | f030d16 | 2013-06-25 17:34:50 +0000 | [diff] [blame] | 2592 | Diag(Loc, diag::warn_iboutletcollection_property_assign); |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 2593 | } else if (Attributes & ObjCDeclSpec::DQ_PR_unsafe_unretained) { |
| 2594 | if (Attributes & ObjCDeclSpec::DQ_PR_copy) { |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2595 | Diag(Loc, diag::err_objc_property_attr_mutually_exclusive) |
| 2596 | << "unsafe_unretained" << "copy"; |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 2597 | Attributes &= ~ObjCDeclSpec::DQ_PR_copy; |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2598 | } |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 2599 | if (Attributes & ObjCDeclSpec::DQ_PR_retain) { |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2600 | Diag(Loc, diag::err_objc_property_attr_mutually_exclusive) |
| 2601 | << "unsafe_unretained" << "retain"; |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 2602 | Attributes &= ~ObjCDeclSpec::DQ_PR_retain; |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2603 | } |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 2604 | if (Attributes & ObjCDeclSpec::DQ_PR_strong) { |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2605 | Diag(Loc, diag::err_objc_property_attr_mutually_exclusive) |
| 2606 | << "unsafe_unretained" << "strong"; |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 2607 | Attributes &= ~ObjCDeclSpec::DQ_PR_strong; |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2608 | } |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2609 | if (getLangOpts().ObjCAutoRefCount && |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 2610 | (Attributes & ObjCDeclSpec::DQ_PR_weak)) { |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2611 | Diag(Loc, diag::err_objc_property_attr_mutually_exclusive) |
| 2612 | << "unsafe_unretained" << "weak"; |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 2613 | Attributes &= ~ObjCDeclSpec::DQ_PR_weak; |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2614 | } |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 2615 | } else if (Attributes & ObjCDeclSpec::DQ_PR_copy) { |
| 2616 | if (Attributes & ObjCDeclSpec::DQ_PR_retain) { |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 2617 | Diag(Loc, diag::err_objc_property_attr_mutually_exclusive) |
| 2618 | << "copy" << "retain"; |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 2619 | Attributes &= ~ObjCDeclSpec::DQ_PR_retain; |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 2620 | } |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 2621 | if (Attributes & ObjCDeclSpec::DQ_PR_strong) { |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2622 | Diag(Loc, diag::err_objc_property_attr_mutually_exclusive) |
| 2623 | << "copy" << "strong"; |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 2624 | Attributes &= ~ObjCDeclSpec::DQ_PR_strong; |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2625 | } |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 2626 | if (Attributes & ObjCDeclSpec::DQ_PR_weak) { |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2627 | Diag(Loc, diag::err_objc_property_attr_mutually_exclusive) |
| 2628 | << "copy" << "weak"; |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 2629 | Attributes &= ~ObjCDeclSpec::DQ_PR_weak; |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2630 | } |
| 2631 | } |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 2632 | else if ((Attributes & ObjCDeclSpec::DQ_PR_retain) && |
| 2633 | (Attributes & ObjCDeclSpec::DQ_PR_weak)) { |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2634 | Diag(Loc, diag::err_objc_property_attr_mutually_exclusive) |
| 2635 | << "retain" << "weak"; |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 2636 | Attributes &= ~ObjCDeclSpec::DQ_PR_retain; |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2637 | } |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 2638 | else if ((Attributes & ObjCDeclSpec::DQ_PR_strong) && |
| 2639 | (Attributes & ObjCDeclSpec::DQ_PR_weak)) { |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2640 | Diag(Loc, diag::err_objc_property_attr_mutually_exclusive) |
| 2641 | << "strong" << "weak"; |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 2642 | Attributes &= ~ObjCDeclSpec::DQ_PR_weak; |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 2643 | } |
| 2644 | |
Douglas Gregor | 2a20bd1 | 2015-06-19 18:25:57 +0000 | [diff] [blame] | 2645 | if (Attributes & ObjCDeclSpec::DQ_PR_weak) { |
Douglas Gregor | 813a066 | 2015-06-19 18:14:38 +0000 | [diff] [blame] | 2646 | // 'weak' and 'nonnull' are mutually exclusive. |
| 2647 | if (auto nullability = PropertyTy->getNullability(Context)) { |
| 2648 | if (*nullability == NullabilityKind::NonNull) |
| 2649 | Diag(Loc, diag::err_objc_property_attr_mutually_exclusive) |
| 2650 | << "nonnull" << "weak"; |
Douglas Gregor | 813a066 | 2015-06-19 18:14:38 +0000 | [diff] [blame] | 2651 | } |
| 2652 | } |
| 2653 | |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 2654 | if ((Attributes & ObjCDeclSpec::DQ_PR_atomic) && |
| 2655 | (Attributes & ObjCDeclSpec::DQ_PR_nonatomic)) { |
Fariborz Jahanian | 55b4e5c | 2011-10-10 21:53:24 +0000 | [diff] [blame] | 2656 | Diag(Loc, diag::err_objc_property_attr_mutually_exclusive) |
| 2657 | << "atomic" << "nonatomic"; |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 2658 | Attributes &= ~ObjCDeclSpec::DQ_PR_atomic; |
Fariborz Jahanian | 55b4e5c | 2011-10-10 21:53:24 +0000 | [diff] [blame] | 2659 | } |
| 2660 | |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 2661 | // Warn if user supplied no assignment attribute, property is |
| 2662 | // readwrite, and this is an object type. |
John McCall | b61e14e | 2015-10-27 04:54:50 +0000 | [diff] [blame] | 2663 | if (!getOwnershipRule(Attributes) && PropertyTy->isObjCRetainableType()) { |
| 2664 | if (Attributes & ObjCDeclSpec::DQ_PR_readonly) { |
| 2665 | // do nothing |
| 2666 | } else if (getLangOpts().ObjCAutoRefCount) { |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2667 | // With arc, @property definitions should default to strong when |
John McCall | b61e14e | 2015-10-27 04:54:50 +0000 | [diff] [blame] | 2668 | // not specified. |
| 2669 | PropertyDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_strong); |
| 2670 | } else if (PropertyTy->isObjCObjectPointerType()) { |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2671 | bool isAnyClassTy = |
| 2672 | (PropertyTy->isObjCClassType() || |
Fariborz Jahanian | 1fc1c6c | 2012-01-04 00:31:53 +0000 | [diff] [blame] | 2673 | PropertyTy->isObjCQualifiedClassType()); |
| 2674 | // In non-gc, non-arc mode, 'Class' is treated as a 'void *' no need to |
| 2675 | // issue any warning. |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2676 | if (isAnyClassTy && getLangOpts().getGC() == LangOptions::NonGC) |
Fariborz Jahanian | 1fc1c6c | 2012-01-04 00:31:53 +0000 | [diff] [blame] | 2677 | ; |
Fariborz Jahanian | cfb00a4 | 2012-09-17 23:57:35 +0000 | [diff] [blame] | 2678 | else if (propertyInPrimaryClass) { |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2679 | // Don't issue warning on property with no life time in class |
Fariborz Jahanian | cfb00a4 | 2012-09-17 23:57:35 +0000 | [diff] [blame] | 2680 | // extension as it is inherited from property in primary class. |
Fariborz Jahanian | 7e47de3 | 2011-08-19 19:28:44 +0000 | [diff] [blame] | 2681 | // Skip this warning in gc-only mode. |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2682 | if (getLangOpts().getGC() != LangOptions::GCOnly) |
Fariborz Jahanian | 7e47de3 | 2011-08-19 19:28:44 +0000 | [diff] [blame] | 2683 | Diag(Loc, diag::warn_objc_property_no_assignment_attribute); |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 2684 | |
Fariborz Jahanian | 7e47de3 | 2011-08-19 19:28:44 +0000 | [diff] [blame] | 2685 | // If non-gc code warn that this is likely inappropriate. |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2686 | if (getLangOpts().getGC() == LangOptions::NonGC) |
Fariborz Jahanian | 7e47de3 | 2011-08-19 19:28:44 +0000 | [diff] [blame] | 2687 | Diag(Loc, diag::warn_objc_property_default_assign_on_object); |
Fariborz Jahanian | 1fc1c6c | 2012-01-04 00:31:53 +0000 | [diff] [blame] | 2688 | } |
John McCall | b61e14e | 2015-10-27 04:54:50 +0000 | [diff] [blame] | 2689 | } |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 2690 | |
| 2691 | // FIXME: Implement warning dependent on NSCopying being |
| 2692 | // implemented. See also: |
| 2693 | // <rdar://5168496&4855821&5607453&5096644&4947311&5698469&4947014&5168496> |
| 2694 | // (please trim this list while you are at it). |
| 2695 | } |
| 2696 | |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 2697 | if (!(Attributes & ObjCDeclSpec::DQ_PR_copy) |
| 2698 | &&!(Attributes & ObjCDeclSpec::DQ_PR_readonly) |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2699 | && getLangOpts().getGC() == LangOptions::GCOnly |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 2700 | && PropertyTy->isBlockPointerType()) |
| 2701 | Diag(Loc, diag::warn_objc_property_copy_missing_on_block); |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 2702 | else if ((Attributes & ObjCDeclSpec::DQ_PR_retain) && |
| 2703 | !(Attributes & ObjCDeclSpec::DQ_PR_readonly) && |
| 2704 | !(Attributes & ObjCDeclSpec::DQ_PR_strong) && |
Fariborz Jahanian | 1723e17 | 2011-09-14 18:03:46 +0000 | [diff] [blame] | 2705 | PropertyTy->isBlockPointerType()) |
| 2706 | Diag(Loc, diag::warn_objc_property_retain_of_block); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2707 | |
Bill Wendling | 4442605 | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 2708 | if ((Attributes & ObjCDeclSpec::DQ_PR_readonly) && |
| 2709 | (Attributes & ObjCDeclSpec::DQ_PR_setter)) |
Fariborz Jahanian | 3018b95 | 2011-11-01 23:02:16 +0000 | [diff] [blame] | 2710 | Diag(Loc, diag::warn_objc_readonly_property_has_setter); |
Ted Kremenek | 7a7a080 | 2010-03-12 00:38:38 +0000 | [diff] [blame] | 2711 | } |