blob: e301c62dd2c0ba577f902320d3ea598cbab47c79 [file] [log] [blame]
Ted Kremenek7a7a0802010-03-12 00:38:38 +00001//===--- SemaObjCProperty.cpp - Semantic Analysis for ObjC @property ------===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Ted Kremenek7a7a0802010-03-12 00:38:38 +00006//
7//===----------------------------------------------------------------------===//
8//
9// This file implements semantic analysis for Objective C @property and
10// @synthesize declarations.
11//
12//===----------------------------------------------------------------------===//
13
John McCall83024632010-08-25 22:03:47 +000014#include "clang/Sema/SemaInternal.h"
Argyrios Kyrtzidis846e61a2011-11-14 04:52:29 +000015#include "clang/AST/ASTMutationListener.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000016#include "clang/AST/DeclObjC.h"
17#include "clang/AST/ExprCXX.h"
18#include "clang/AST/ExprObjC.h"
Fariborz Jahanianb52d8d22012-05-21 17:02:43 +000019#include "clang/Basic/SourceManager.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000020#include "clang/Lex/Lexer.h"
Jordan Rosea34d04d2015-01-16 23:04:31 +000021#include "clang/Lex/Preprocessor.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000022#include "clang/Sema/Initialization.h"
John McCalla1e130b2010-08-25 07:03:20 +000023#include "llvm/ADT/DenseSet.h"
Benjamin Kramer49038022012-02-04 13:45:25 +000024#include "llvm/ADT/SmallString.h"
Ted Kremenek7a7a0802010-03-12 00:38:38 +000025
26using namespace clang;
27
Ted Kremenekac597f32010-03-12 00:46:40 +000028//===----------------------------------------------------------------------===//
29// Grammar actions.
30//===----------------------------------------------------------------------===//
31
John McCall43192862011-09-13 18:31:23 +000032/// getImpliedARCOwnership - Given a set of property attributes and a
33/// type, infer an expected lifetime. The type's ownership qualification
34/// is not considered.
35///
36/// Returns OCL_None if the attributes as stated do not imply an ownership.
37/// Never returns OCL_Autoreleasing.
Puyan Lotfi9721fbf2020-04-23 02:20:56 -040038static Qualifiers::ObjCLifetime
39getImpliedARCOwnership(ObjCPropertyAttribute::Kind attrs, QualType type) {
John McCall43192862011-09-13 18:31:23 +000040 // retain, strong, copy, weak, and unsafe_unretained are only legal
41 // on properties of retainable pointer type.
Puyan Lotfi9721fbf2020-04-23 02:20:56 -040042 if (attrs &
43 (ObjCPropertyAttribute::kind_retain | ObjCPropertyAttribute::kind_strong |
44 ObjCPropertyAttribute::kind_copy)) {
John McCalld8561f02012-08-20 23:36:59 +000045 return Qualifiers::OCL_Strong;
Puyan Lotfi9721fbf2020-04-23 02:20:56 -040046 } else if (attrs & ObjCPropertyAttribute::kind_weak) {
John McCall43192862011-09-13 18:31:23 +000047 return Qualifiers::OCL_Weak;
Puyan Lotfi9721fbf2020-04-23 02:20:56 -040048 } else if (attrs & ObjCPropertyAttribute::kind_unsafe_unretained) {
John McCall43192862011-09-13 18:31:23 +000049 return Qualifiers::OCL_ExplicitNone;
50 }
51
52 // assign can appear on other types, so we have to check the
53 // property type.
Puyan Lotfi9721fbf2020-04-23 02:20:56 -040054 if (attrs & ObjCPropertyAttribute::kind_assign &&
John McCall43192862011-09-13 18:31:23 +000055 type->isObjCRetainableType()) {
56 return Qualifiers::OCL_ExplicitNone;
57 }
58
59 return Qualifiers::OCL_None;
60}
61
John McCallb61e14e2015-10-27 04:54:50 +000062/// Check the internal consistency of a property declaration with
63/// an explicit ownership qualifier.
64static void checkPropertyDeclWithOwnership(Sema &S,
65 ObjCPropertyDecl *property) {
John McCall31168b02011-06-15 23:02:42 +000066 if (property->isInvalidDecl()) return;
67
Puyan Lotfi9721fbf2020-04-23 02:20:56 -040068 ObjCPropertyAttribute::Kind propertyKind = property->getPropertyAttributes();
John McCall31168b02011-06-15 23:02:42 +000069 Qualifiers::ObjCLifetime propertyLifetime
70 = property->getType().getObjCLifetime();
71
John McCallb61e14e2015-10-27 04:54:50 +000072 assert(propertyLifetime != Qualifiers::OCL_None);
John McCall31168b02011-06-15 23:02:42 +000073
John McCall43192862011-09-13 18:31:23 +000074 Qualifiers::ObjCLifetime expectedLifetime
75 = getImpliedARCOwnership(propertyKind, property->getType());
76 if (!expectedLifetime) {
John McCall31168b02011-06-15 23:02:42 +000077 // We have a lifetime qualifier but no dominating property
John McCall43192862011-09-13 18:31:23 +000078 // attribute. That's okay, but restore reasonable invariants by
79 // setting the property attribute according to the lifetime
80 // qualifier.
Puyan Lotfi9721fbf2020-04-23 02:20:56 -040081 ObjCPropertyAttribute::Kind attr;
John McCall43192862011-09-13 18:31:23 +000082 if (propertyLifetime == Qualifiers::OCL_Strong) {
Puyan Lotfi9721fbf2020-04-23 02:20:56 -040083 attr = ObjCPropertyAttribute::kind_strong;
John McCall43192862011-09-13 18:31:23 +000084 } else if (propertyLifetime == Qualifiers::OCL_Weak) {
Puyan Lotfi9721fbf2020-04-23 02:20:56 -040085 attr = ObjCPropertyAttribute::kind_weak;
John McCall43192862011-09-13 18:31:23 +000086 } else {
87 assert(propertyLifetime == Qualifiers::OCL_ExplicitNone);
Puyan Lotfi9721fbf2020-04-23 02:20:56 -040088 attr = ObjCPropertyAttribute::kind_unsafe_unretained;
John McCall43192862011-09-13 18:31:23 +000089 }
90 property->setPropertyAttributes(attr);
John McCall31168b02011-06-15 23:02:42 +000091 return;
92 }
93
94 if (propertyLifetime == expectedLifetime) return;
95
96 property->setInvalidDecl();
97 S.Diag(property->getLocation(),
Argyrios Kyrtzidiscff00d92011-06-24 00:08:59 +000098 diag::err_arc_inconsistent_property_ownership)
John McCall31168b02011-06-15 23:02:42 +000099 << property->getDeclName()
John McCall43192862011-09-13 18:31:23 +0000100 << expectedLifetime
John McCall31168b02011-06-15 23:02:42 +0000101 << propertyLifetime;
102}
103
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000104/// Check this Objective-C property against a property declared in the
Douglas Gregorb8982092013-01-21 19:42:21 +0000105/// given protocol.
106static void
107CheckPropertyAgainstProtocol(Sema &S, ObjCPropertyDecl *Prop,
108 ObjCProtocolDecl *Proto,
Craig Topper4dd9b432014-08-17 23:49:53 +0000109 llvm::SmallPtrSetImpl<ObjCProtocolDecl *> &Known) {
Douglas Gregorb8982092013-01-21 19:42:21 +0000110 // Have we seen this protocol before?
David Blaikie82e95a32014-11-19 07:49:47 +0000111 if (!Known.insert(Proto).second)
Douglas Gregorb8982092013-01-21 19:42:21 +0000112 return;
113
114 // Look for a property with the same name.
115 DeclContext::lookup_result R = Proto->lookup(Prop->getDeclName());
116 for (unsigned I = 0, N = R.size(); I != N; ++I) {
117 if (ObjCPropertyDecl *ProtoProp = dyn_cast<ObjCPropertyDecl>(R[I])) {
Fariborz Jahanianb809a0e2013-10-04 18:06:08 +0000118 S.DiagnosePropertyMismatch(Prop, ProtoProp, Proto->getIdentifier(), true);
Douglas Gregorb8982092013-01-21 19:42:21 +0000119 return;
120 }
121 }
122
123 // Check this property against any protocols we inherit.
Aaron Ballman0f6e64d2014-03-13 22:58:06 +0000124 for (auto *P : Proto->protocols())
125 CheckPropertyAgainstProtocol(S, Prop, P, Known);
Douglas Gregorb8982092013-01-21 19:42:21 +0000126}
127
John McCallb61e14e2015-10-27 04:54:50 +0000128static unsigned deducePropertyOwnershipFromType(Sema &S, QualType T) {
129 // In GC mode, just look for the __weak qualifier.
130 if (S.getLangOpts().getGC() != LangOptions::NonGC) {
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400131 if (T.isObjCGCWeak())
132 return ObjCPropertyAttribute::kind_weak;
John McCallb61e14e2015-10-27 04:54:50 +0000133
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400134 // In ARC/MRC, look for an explicit ownership qualifier.
135 // For some reason, this only applies to __weak.
John McCallb61e14e2015-10-27 04:54:50 +0000136 } else if (auto ownership = T.getObjCLifetime()) {
137 switch (ownership) {
138 case Qualifiers::OCL_Weak:
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400139 return ObjCPropertyAttribute::kind_weak;
John McCallb61e14e2015-10-27 04:54:50 +0000140 case Qualifiers::OCL_Strong:
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400141 return ObjCPropertyAttribute::kind_strong;
John McCallb61e14e2015-10-27 04:54:50 +0000142 case Qualifiers::OCL_ExplicitNone:
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400143 return ObjCPropertyAttribute::kind_unsafe_unretained;
John McCallb61e14e2015-10-27 04:54:50 +0000144 case Qualifiers::OCL_Autoreleasing:
145 case Qualifiers::OCL_None:
146 return 0;
147 }
148 llvm_unreachable("bad qualifier");
149 }
150
151 return 0;
152}
153
Douglas Gregor9dd25b72015-12-10 23:02:09 +0000154static const unsigned OwnershipMask =
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400155 (ObjCPropertyAttribute::kind_assign | ObjCPropertyAttribute::kind_retain |
156 ObjCPropertyAttribute::kind_copy | ObjCPropertyAttribute::kind_weak |
157 ObjCPropertyAttribute::kind_strong |
158 ObjCPropertyAttribute::kind_unsafe_unretained);
Douglas Gregor9dd25b72015-12-10 23:02:09 +0000159
John McCallb61e14e2015-10-27 04:54:50 +0000160static unsigned getOwnershipRule(unsigned attr) {
Douglas Gregor9dd25b72015-12-10 23:02:09 +0000161 unsigned result = attr & OwnershipMask;
162
163 // From an ownership perspective, assign and unsafe_unretained are
164 // identical; make sure one also implies the other.
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400165 if (result & (ObjCPropertyAttribute::kind_assign |
166 ObjCPropertyAttribute::kind_unsafe_unretained)) {
167 result |= ObjCPropertyAttribute::kind_assign |
168 ObjCPropertyAttribute::kind_unsafe_unretained;
Douglas Gregor9dd25b72015-12-10 23:02:09 +0000169 }
170
171 return result;
John McCallb61e14e2015-10-27 04:54:50 +0000172}
173
John McCall48871652010-08-21 09:40:31 +0000174Decl *Sema::ActOnProperty(Scope *S, SourceLocation AtLoc,
Fariborz Jahanian86c2f5c2012-02-29 22:18:55 +0000175 SourceLocation LParenLoc,
John McCall48871652010-08-21 09:40:31 +0000176 FieldDeclarator &FD,
177 ObjCDeclSpec &ODS,
178 Selector GetterSel,
179 Selector SetterSel,
Ted Kremenekcba58492010-09-23 21:18:05 +0000180 tok::ObjCKeywordKind MethodImplKind,
181 DeclContext *lexicalDC) {
Bill Wendling44426052012-12-20 19:22:21 +0000182 unsigned Attributes = ODS.getPropertyAttributes();
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400183 FD.D.setObjCWeakProperty((Attributes & ObjCPropertyAttribute::kind_weak) !=
184 0);
John McCall31168b02011-06-15 23:02:42 +0000185 TypeSourceInfo *TSI = GetTypeForDeclarator(FD.D, S);
186 QualType T = TSI->getType();
John McCallb61e14e2015-10-27 04:54:50 +0000187 if (!getOwnershipRule(Attributes)) {
188 Attributes |= deducePropertyOwnershipFromType(*this, T);
189 }
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400190 bool isReadWrite = ((Attributes & ObjCPropertyAttribute::kind_readwrite) ||
Ted Kremenekac597f32010-03-12 00:46:40 +0000191 // default is readwrite!
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400192 !(Attributes & ObjCPropertyAttribute::kind_readonly));
John McCallb61e14e2015-10-27 04:54:50 +0000193
Douglas Gregor90d34422013-01-21 19:05:22 +0000194 // Proceed with constructing the ObjCPropertyDecls.
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +0000195 ObjCContainerDecl *ClassDecl = cast<ObjCContainerDecl>(CurContext);
Craig Topperc3ec1492014-05-26 06:22:03 +0000196 ObjCPropertyDecl *Res = nullptr;
Douglas Gregor90d34422013-01-21 19:05:22 +0000197 if (ObjCCategoryDecl *CDecl = dyn_cast<ObjCCategoryDecl>(ClassDecl)) {
Fariborz Jahanian5848d332010-07-13 22:04:56 +0000198 if (CDecl->IsClassExtension()) {
Douglas Gregor90d34422013-01-21 19:05:22 +0000199 Res = HandlePropertyInClassExtension(S, AtLoc, LParenLoc,
Argyrios Kyrtzidis194b28e2017-03-16 18:25:40 +0000200 FD,
201 GetterSel, ODS.getGetterNameLoc(),
202 SetterSel, ODS.getSetterNameLoc(),
203 isReadWrite, Attributes,
Argyrios Kyrtzidisb458ffb2011-11-06 18:58:12 +0000204 ODS.getPropertyAttributes(),
Douglas Gregor9dd25b72015-12-10 23:02:09 +0000205 T, TSI, MethodImplKind);
Douglas Gregor90d34422013-01-21 19:05:22 +0000206 if (!Res)
Craig Topperc3ec1492014-05-26 06:22:03 +0000207 return nullptr;
Fariborz Jahanian5848d332010-07-13 22:04:56 +0000208 }
Douglas Gregor90d34422013-01-21 19:05:22 +0000209 }
210
211 if (!Res) {
212 Res = CreatePropertyDecl(S, ClassDecl, AtLoc, LParenLoc, FD,
Argyrios Kyrtzidis194b28e2017-03-16 18:25:40 +0000213 GetterSel, ODS.getGetterNameLoc(), SetterSel,
214 ODS.getSetterNameLoc(), isReadWrite, Attributes,
215 ODS.getPropertyAttributes(), T, TSI,
216 MethodImplKind);
Douglas Gregor90d34422013-01-21 19:05:22 +0000217 if (lexicalDC)
218 Res->setLexicalDeclContext(lexicalDC);
219 }
Ted Kremenekcba58492010-09-23 21:18:05 +0000220
Fariborz Jahaniandf586032010-03-30 22:40:11 +0000221 // Validate the attributes on the @property.
Douglas Gregord4f2afa2015-10-09 20:36:17 +0000222 CheckObjCPropertyAttributes(Res, AtLoc, Attributes,
Fariborz Jahanian876cc652012-06-20 22:57:42 +0000223 (isa<ObjCInterfaceDecl>(ClassDecl) ||
224 isa<ObjCProtocolDecl>(ClassDecl)));
John McCall31168b02011-06-15 23:02:42 +0000225
John McCallb61e14e2015-10-27 04:54:50 +0000226 // Check consistency if the type has explicit ownership qualification.
227 if (Res->getType().getObjCLifetime())
228 checkPropertyDeclWithOwnership(*this, Res);
John McCall31168b02011-06-15 23:02:42 +0000229
Douglas Gregorb8982092013-01-21 19:42:21 +0000230 llvm::SmallPtrSet<ObjCProtocolDecl *, 16> KnownProtos;
Douglas Gregor90d34422013-01-21 19:05:22 +0000231 if (ObjCInterfaceDecl *IFace = dyn_cast<ObjCInterfaceDecl>(ClassDecl)) {
Douglas Gregorb8982092013-01-21 19:42:21 +0000232 // For a class, compare the property against a property in our superclass.
233 bool FoundInSuper = false;
Fariborz Jahanian92e3aa22014-02-15 00:04:36 +0000234 ObjCInterfaceDecl *CurrentInterfaceDecl = IFace;
235 while (ObjCInterfaceDecl *Super = CurrentInterfaceDecl->getSuperClass()) {
Douglas Gregor90d34422013-01-21 19:05:22 +0000236 DeclContext::lookup_result R = Super->lookup(Res->getDeclName());
Douglas Gregorb8982092013-01-21 19:42:21 +0000237 for (unsigned I = 0, N = R.size(); I != N; ++I) {
238 if (ObjCPropertyDecl *SuperProp = dyn_cast<ObjCPropertyDecl>(R[I])) {
Fariborz Jahanianb809a0e2013-10-04 18:06:08 +0000239 DiagnosePropertyMismatch(Res, SuperProp, Super->getIdentifier(), false);
Douglas Gregorb8982092013-01-21 19:42:21 +0000240 FoundInSuper = true;
241 break;
242 }
243 }
Fariborz Jahanian92e3aa22014-02-15 00:04:36 +0000244 if (FoundInSuper)
245 break;
246 else
247 CurrentInterfaceDecl = Super;
Douglas Gregorb8982092013-01-21 19:42:21 +0000248 }
249
250 if (FoundInSuper) {
251 // Also compare the property against a property in our protocols.
Aaron Ballmana49c5062014-03-13 20:29:09 +0000252 for (auto *P : CurrentInterfaceDecl->protocols()) {
253 CheckPropertyAgainstProtocol(*this, Res, P, KnownProtos);
Douglas Gregorb8982092013-01-21 19:42:21 +0000254 }
255 } else {
256 // Slower path: look in all protocols we referenced.
Aaron Ballmana9f49e32014-03-13 20:55:22 +0000257 for (auto *P : IFace->all_referenced_protocols()) {
258 CheckPropertyAgainstProtocol(*this, Res, P, KnownProtos);
Douglas Gregorb8982092013-01-21 19:42:21 +0000259 }
260 }
261 } else if (ObjCCategoryDecl *Cat = dyn_cast<ObjCCategoryDecl>(ClassDecl)) {
Douglas Gregoracf4fd32015-11-03 01:15:46 +0000262 // We don't check if class extension. Because properties in class extension
263 // are meant to override some of the attributes and checking has already done
264 // when property in class extension is constructed.
265 if (!Cat->IsClassExtension())
266 for (auto *P : Cat->protocols())
267 CheckPropertyAgainstProtocol(*this, Res, P, KnownProtos);
Douglas Gregorb8982092013-01-21 19:42:21 +0000268 } else {
269 ObjCProtocolDecl *Proto = cast<ObjCProtocolDecl>(ClassDecl);
Aaron Ballman0f6e64d2014-03-13 22:58:06 +0000270 for (auto *P : Proto->protocols())
271 CheckPropertyAgainstProtocol(*this, Res, P, KnownProtos);
Douglas Gregor90d34422013-01-21 19:05:22 +0000272 }
273
Dmitri Gribenkoe7bb9442012-07-13 01:06:46 +0000274 ActOnDocumentableDecl(Res);
Fariborz Jahaniandf586032010-03-30 22:40:11 +0000275 return Res;
Ted Kremenek959e8302010-03-12 02:31:10 +0000276}
Ted Kremenek90e2fc22010-03-12 00:49:00 +0000277
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400278static ObjCPropertyAttribute::Kind
Bill Wendling44426052012-12-20 19:22:21 +0000279makePropertyAttributesAsWritten(unsigned Attributes) {
Argyrios Kyrtzidisb51684d2011-10-18 19:49:16 +0000280 unsigned attributesAsWritten = 0;
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400281 if (Attributes & ObjCPropertyAttribute::kind_readonly)
282 attributesAsWritten |= ObjCPropertyAttribute::kind_readonly;
283 if (Attributes & ObjCPropertyAttribute::kind_readwrite)
284 attributesAsWritten |= ObjCPropertyAttribute::kind_readwrite;
285 if (Attributes & ObjCPropertyAttribute::kind_getter)
286 attributesAsWritten |= ObjCPropertyAttribute::kind_getter;
287 if (Attributes & ObjCPropertyAttribute::kind_setter)
288 attributesAsWritten |= ObjCPropertyAttribute::kind_setter;
289 if (Attributes & ObjCPropertyAttribute::kind_assign)
290 attributesAsWritten |= ObjCPropertyAttribute::kind_assign;
291 if (Attributes & ObjCPropertyAttribute::kind_retain)
292 attributesAsWritten |= ObjCPropertyAttribute::kind_retain;
293 if (Attributes & ObjCPropertyAttribute::kind_strong)
294 attributesAsWritten |= ObjCPropertyAttribute::kind_strong;
295 if (Attributes & ObjCPropertyAttribute::kind_weak)
296 attributesAsWritten |= ObjCPropertyAttribute::kind_weak;
297 if (Attributes & ObjCPropertyAttribute::kind_copy)
298 attributesAsWritten |= ObjCPropertyAttribute::kind_copy;
299 if (Attributes & ObjCPropertyAttribute::kind_unsafe_unretained)
300 attributesAsWritten |= ObjCPropertyAttribute::kind_unsafe_unretained;
301 if (Attributes & ObjCPropertyAttribute::kind_nonatomic)
302 attributesAsWritten |= ObjCPropertyAttribute::kind_nonatomic;
303 if (Attributes & ObjCPropertyAttribute::kind_atomic)
304 attributesAsWritten |= ObjCPropertyAttribute::kind_atomic;
305 if (Attributes & ObjCPropertyAttribute::kind_class)
306 attributesAsWritten |= ObjCPropertyAttribute::kind_class;
307 if (Attributes & ObjCPropertyAttribute::kind_direct)
308 attributesAsWritten |= ObjCPropertyAttribute::kind_direct;
Fangrui Song6907ce22018-07-30 19:24:48 +0000309
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400310 return (ObjCPropertyAttribute::Kind)attributesAsWritten;
Argyrios Kyrtzidisb51684d2011-10-18 19:49:16 +0000311}
312
Fangrui Song6907ce22018-07-30 19:24:48 +0000313static bool LocPropertyAttribute( ASTContext &Context, const char *attrName,
Fariborz Jahanianb52d8d22012-05-21 17:02:43 +0000314 SourceLocation LParenLoc, SourceLocation &Loc) {
315 if (LParenLoc.isMacroID())
316 return false;
Fangrui Song6907ce22018-07-30 19:24:48 +0000317
Fariborz Jahanianb52d8d22012-05-21 17:02:43 +0000318 SourceManager &SM = Context.getSourceManager();
319 std::pair<FileID, unsigned> locInfo = SM.getDecomposedLoc(LParenLoc);
320 // Try to load the file buffer.
321 bool invalidTemp = false;
322 StringRef file = SM.getBufferData(locInfo.first, &invalidTemp);
323 if (invalidTemp)
324 return false;
325 const char *tokenBegin = file.data() + locInfo.second;
Fangrui Song6907ce22018-07-30 19:24:48 +0000326
Fariborz Jahanianb52d8d22012-05-21 17:02:43 +0000327 // Lex from the start of the given location.
328 Lexer lexer(SM.getLocForStartOfFile(locInfo.first),
329 Context.getLangOpts(),
330 file.begin(), tokenBegin, file.end());
331 Token Tok;
332 do {
333 lexer.LexFromRawLexer(Tok);
Alp Toker2d57cea2014-05-17 04:53:25 +0000334 if (Tok.is(tok::raw_identifier) && Tok.getRawIdentifier() == attrName) {
Fariborz Jahanianb52d8d22012-05-21 17:02:43 +0000335 Loc = Tok.getLocation();
336 return true;
337 }
338 } while (Tok.isNot(tok::r_paren));
339 return false;
Fariborz Jahanian199a9b52012-05-19 18:17:17 +0000340}
341
Douglas Gregor429183e2015-12-09 22:57:32 +0000342/// Check for a mismatch in the atomicity of the given properties.
343static void checkAtomicPropertyMismatch(Sema &S,
344 ObjCPropertyDecl *OldProperty,
Douglas Gregor9dd25b72015-12-10 23:02:09 +0000345 ObjCPropertyDecl *NewProperty,
346 bool PropagateAtomicity) {
Douglas Gregor429183e2015-12-09 22:57:32 +0000347 // If the atomicity of both matches, we're done.
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400348 bool OldIsAtomic = (OldProperty->getPropertyAttributes() &
349 ObjCPropertyAttribute::kind_nonatomic) == 0;
350 bool NewIsAtomic = (NewProperty->getPropertyAttributes() &
351 ObjCPropertyAttribute::kind_nonatomic) == 0;
Douglas Gregor429183e2015-12-09 22:57:32 +0000352 if (OldIsAtomic == NewIsAtomic) return;
353
354 // Determine whether the given property is readonly and implicitly
355 // atomic.
356 auto isImplicitlyReadonlyAtomic = [](ObjCPropertyDecl *Property) -> bool {
357 // Is it readonly?
358 auto Attrs = Property->getPropertyAttributes();
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400359 if ((Attrs & ObjCPropertyAttribute::kind_readonly) == 0)
360 return false;
Douglas Gregor429183e2015-12-09 22:57:32 +0000361
362 // Is it nonatomic?
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400363 if (Attrs & ObjCPropertyAttribute::kind_nonatomic)
364 return false;
Douglas Gregor429183e2015-12-09 22:57:32 +0000365
366 // Was 'atomic' specified directly?
Fangrui Song6907ce22018-07-30 19:24:48 +0000367 if (Property->getPropertyAttributesAsWritten() &
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400368 ObjCPropertyAttribute::kind_atomic)
Douglas Gregor429183e2015-12-09 22:57:32 +0000369 return false;
370
371 return true;
372 };
373
Douglas Gregor9dd25b72015-12-10 23:02:09 +0000374 // If we're allowed to propagate atomicity, and the new property did
375 // not specify atomicity at all, propagate.
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400376 const unsigned AtomicityMask = (ObjCPropertyAttribute::kind_atomic |
377 ObjCPropertyAttribute::kind_nonatomic);
Douglas Gregor9dd25b72015-12-10 23:02:09 +0000378 if (PropagateAtomicity &&
379 ((NewProperty->getPropertyAttributesAsWritten() & AtomicityMask) == 0)) {
380 unsigned Attrs = NewProperty->getPropertyAttributes();
381 Attrs = Attrs & ~AtomicityMask;
382 if (OldIsAtomic)
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400383 Attrs |= ObjCPropertyAttribute::kind_atomic;
Fangrui Song6907ce22018-07-30 19:24:48 +0000384 else
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400385 Attrs |= ObjCPropertyAttribute::kind_nonatomic;
Douglas Gregor9dd25b72015-12-10 23:02:09 +0000386
387 NewProperty->overwritePropertyAttributes(Attrs);
388 return;
389 }
390
Douglas Gregor429183e2015-12-09 22:57:32 +0000391 // One of the properties is atomic; if it's a readonly property, and
392 // 'atomic' wasn't explicitly specified, we're okay.
393 if ((OldIsAtomic && isImplicitlyReadonlyAtomic(OldProperty)) ||
394 (NewIsAtomic && isImplicitlyReadonlyAtomic(NewProperty)))
395 return;
396
397 // Diagnose the conflict.
398 const IdentifierInfo *OldContextName;
399 auto *OldDC = OldProperty->getDeclContext();
400 if (auto Category = dyn_cast<ObjCCategoryDecl>(OldDC))
401 OldContextName = Category->getClassInterface()->getIdentifier();
402 else
403 OldContextName = cast<ObjCContainerDecl>(OldDC)->getIdentifier();
404
405 S.Diag(NewProperty->getLocation(), diag::warn_property_attribute)
406 << NewProperty->getDeclName() << "atomic"
407 << OldContextName;
408 S.Diag(OldProperty->getLocation(), diag::note_property_declare);
409}
410
Douglas Gregor90d34422013-01-21 19:05:22 +0000411ObjCPropertyDecl *
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +0000412Sema::HandlePropertyInClassExtension(Scope *S,
Fariborz Jahanian86c2f5c2012-02-29 22:18:55 +0000413 SourceLocation AtLoc,
414 SourceLocation LParenLoc,
415 FieldDeclarator &FD,
Argyrios Kyrtzidis194b28e2017-03-16 18:25:40 +0000416 Selector GetterSel,
417 SourceLocation GetterNameLoc,
418 Selector SetterSel,
419 SourceLocation SetterNameLoc,
Ted Kremenek959e8302010-03-12 02:31:10 +0000420 const bool isReadWrite,
Douglas Gregor9dd25b72015-12-10 23:02:09 +0000421 unsigned &Attributes,
Argyrios Kyrtzidisb458ffb2011-11-06 18:58:12 +0000422 const unsigned AttributesAsWritten,
Douglas Gregor813a0662015-06-19 18:14:38 +0000423 QualType T,
424 TypeSourceInfo *TSI,
Ted Kremenek959e8302010-03-12 02:31:10 +0000425 tok::ObjCKeywordKind MethodImplKind) {
Fariborz Jahanianf36734d2011-08-22 18:34:22 +0000426 ObjCCategoryDecl *CDecl = cast<ObjCCategoryDecl>(CurContext);
Ted Kremenek959e8302010-03-12 02:31:10 +0000427 // Diagnose if this property is already in continuation class.
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +0000428 DeclContext *DC = CurContext;
Ted Kremenek959e8302010-03-12 02:31:10 +0000429 IdentifierInfo *PropertyId = FD.D.getIdentifier();
Fariborz Jahaniana0a9d852010-11-10 18:01:36 +0000430 ObjCInterfaceDecl *CCPrimary = CDecl->getClassInterface();
Fangrui Song6907ce22018-07-30 19:24:48 +0000431
Ted Kremenek959e8302010-03-12 02:31:10 +0000432 // We need to look in the @interface to see if the @property was
433 // already declared.
Ted Kremenek959e8302010-03-12 02:31:10 +0000434 if (!CCPrimary) {
435 Diag(CDecl->getLocation(), diag::err_continuation_class);
Craig Topperc3ec1492014-05-26 06:22:03 +0000436 return nullptr;
Ted Kremenek959e8302010-03-12 02:31:10 +0000437 }
438
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400439 bool isClassProperty =
440 (AttributesAsWritten & ObjCPropertyAttribute::kind_class) ||
441 (Attributes & ObjCPropertyAttribute::kind_class);
Manman Ren5b786402016-01-28 18:49:28 +0000442
Douglas Gregoracf4fd32015-11-03 01:15:46 +0000443 // Find the property in the extended class's primary class or
444 // extensions.
Manman Ren5b786402016-01-28 18:49:28 +0000445 ObjCPropertyDecl *PIDecl = CCPrimary->FindPropertyVisibleInPrimaryClass(
446 PropertyId, ObjCPropertyDecl::getQueryKind(isClassProperty));
Ted Kremenek959e8302010-03-12 02:31:10 +0000447
Fangrui Song6907ce22018-07-30 19:24:48 +0000448 // If we found a property in an extension, complain.
Douglas Gregoracf4fd32015-11-03 01:15:46 +0000449 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 Kremenek959e8302010-03-12 02:31:10 +0000454
Douglas Gregor9dd25b72015-12-10 23:02:09 +0000455 // 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 =
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400466 (Attributes & ObjCPropertyAttribute::kind_readwrite) &&
467 (PIDecl->getPropertyAttributesAsWritten() &
468 ObjCPropertyAttribute::kind_readwrite)
469 ? diag::err_use_continuation_class_redeclaration_readwrite
470 : diag::err_use_continuation_class;
Douglas Gregor9dd25b72015-12-10 23:02:09 +0000471 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.
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400480 if (AttributesAsWritten & ObjCPropertyAttribute::kind_getter) {
481 Diag(AtLoc, diag::warn_property_redecl_getter_mismatch)
482 << PIDecl->getGetterName() << GetterSel;
483 Diag(PIDecl->getLocation(), diag::note_property_declare);
484 }
Fangrui Song6907ce22018-07-30 19:24:48 +0000485
Douglas Gregor9dd25b72015-12-10 23:02:09 +0000486 // Always adopt the getter from the original declaration.
487 GetterSel = PIDecl->getGetterName();
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400488 Attributes |= ObjCPropertyAttribute::kind_getter;
Douglas Gregor9dd25b72015-12-10 23:02:09 +0000489 }
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 Song6907ce22018-07-30 19:24:48 +0000506 // If the redeclaration is 'weak' but the original property is not,
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400507 if ((Attributes & ObjCPropertyAttribute::kind_weak) &&
508 !(PIDecl->getPropertyAttributesAsWritten() &
509 ObjCPropertyAttribute::kind_weak) &&
Douglas Gregor9dd25b72015-12-10 23:02:09 +0000510 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 Song6907ce22018-07-30 19:24:48 +0000514 }
Douglas Gregor9dd25b72015-12-10 23:02:09 +0000515 }
516
Douglas Gregoracf4fd32015-11-03 01:15:46 +0000517 // Create a new ObjCPropertyDecl with the DeclContext being
518 // the class extension.
519 ObjCPropertyDecl *PDecl = CreatePropertyDecl(S, CDecl, AtLoc, LParenLoc,
Argyrios Kyrtzidis194b28e2017-03-16 18:25:40 +0000520 FD, GetterSel, GetterNameLoc,
521 SetterSel, SetterNameLoc,
Douglas Gregor9dd25b72015-12-10 23:02:09 +0000522 isReadWrite,
Douglas Gregoracf4fd32015-11-03 01:15:46 +0000523 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 Gregore17765e2015-11-03 17:02:34 +0000529 ProcessPropertyDecl(PDecl);
Douglas Gregoracf4fd32015-11-03 01:15:46 +0000530 return PDecl;
Ted Kremenek959e8302010-03-12 02:31:10 +0000531 }
Douglas Gregoracf4fd32015-11-03 01:15:46 +0000532
Fariborz Jahanian6a733842012-02-02 18:54:58 +0000533 if (!Context.hasSameType(PIDecl->getType(), PDecl->getType())) {
534 bool IncompatibleObjC = false;
535 QualType ConvertedType;
Fariborz Jahanian24c2ccc2012-02-02 19:34:05 +0000536 // 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 Jahanian57539cf2012-02-02 22:37:48 +0000538 // 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 Jahanian576ff122015-04-08 21:34:04 +0000542 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 Jahanian6a733842012-02-02 18:54:58 +0000547 ConvertedType, IncompatibleObjC))
548 || IncompatibleObjC) {
Fangrui Song6907ce22018-07-30 19:24:48 +0000549 Diag(AtLoc,
Fariborz Jahanian6a733842012-02-02 18:54:58 +0000550 diag::err_type_mismatch_continuation_class) << PDecl->getType();
551 Diag(PIDecl->getLocation(), diag::note_property_declare);
Craig Topperc3ec1492014-05-26 06:22:03 +0000552 return nullptr;
Fariborz Jahanian6a733842012-02-02 18:54:58 +0000553 }
Fariborz Jahanian11ee2832011-09-24 00:56:59 +0000554 }
Fangrui Song6907ce22018-07-30 19:24:48 +0000555
Douglas Gregoracf4fd32015-11-03 01:15:46 +0000556 // Check that atomicity of property in class extension matches the previous
557 // declaration.
Douglas Gregor9dd25b72015-12-10 23:02:09 +0000558 checkAtomicPropertyMismatch(*this, PIDecl, PDecl, true);
Douglas Gregoracf4fd32015-11-03 01:15:46 +0000559
Douglas Gregore17765e2015-11-03 17:02:34 +0000560 // Make sure getter/setter are appropriately synthesized.
561 ProcessPropertyDecl(PDecl);
Fariborz Jahanianb14a3b22012-09-17 20:57:19 +0000562 return PDecl;
Ted Kremenek959e8302010-03-12 02:31:10 +0000563}
564
565ObjCPropertyDecl *Sema::CreatePropertyDecl(Scope *S,
566 ObjCContainerDecl *CDecl,
567 SourceLocation AtLoc,
Fariborz Jahanian86c2f5c2012-02-29 22:18:55 +0000568 SourceLocation LParenLoc,
Ted Kremenek959e8302010-03-12 02:31:10 +0000569 FieldDeclarator &FD,
570 Selector GetterSel,
Argyrios Kyrtzidis194b28e2017-03-16 18:25:40 +0000571 SourceLocation GetterNameLoc,
Ted Kremenek959e8302010-03-12 02:31:10 +0000572 Selector SetterSel,
Argyrios Kyrtzidis194b28e2017-03-16 18:25:40 +0000573 SourceLocation SetterNameLoc,
Ted Kremenek959e8302010-03-12 02:31:10 +0000574 const bool isReadWrite,
Bill Wendling44426052012-12-20 19:22:21 +0000575 const unsigned Attributes,
Argyrios Kyrtzidisb458ffb2011-11-06 18:58:12 +0000576 const unsigned AttributesAsWritten,
Douglas Gregor813a0662015-06-19 18:14:38 +0000577 QualType T,
John McCall339bb662010-06-04 20:50:08 +0000578 TypeSourceInfo *TInfo,
Ted Kremenek49be9e02010-05-18 21:09:07 +0000579 tok::ObjCKeywordKind MethodImplKind,
580 DeclContext *lexicalDC){
Ted Kremenek959e8302010-03-12 02:31:10 +0000581 IdentifierInfo *PropertyId = FD.D.getIdentifier();
Ted Kremenekac597f32010-03-12 00:46:40 +0000582
Douglas Gregor9dd25b72015-12-10 23:02:09 +0000583 // Property defaults to 'assign' if it is readwrite, unless this is ARC
584 // and the type is retainable.
585 bool isAssign;
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400586 if (Attributes & (ObjCPropertyAttribute::kind_assign |
587 ObjCPropertyAttribute::kind_unsafe_unretained)) {
Douglas Gregor9dd25b72015-12-10 23:02:09 +0000588 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
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400598 if (getLangOpts().getGC() != LangOptions::NonGC && isAssign &&
599 !(Attributes & ObjCPropertyAttribute::kind_assign)) {
John McCall8b07ec22010-05-15 11:32:37 +0000600 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 Kremenekac597f32010-03-12 00:46:40 +0000608 }
Douglas Gregor9dd25b72015-12-10 23:02:09 +0000609 }
Eli Friedman999af7b2013-07-09 01:38:07 +0000610
611 if (T->isObjCObjectType()) {
Stephen Kelly1c301dc2018-08-09 21:09:38 +0000612 SourceLocation StarLoc = TInfo->getTypeLoc().getEndLoc();
Alp Tokerb6cc5922014-05-03 03:45:55 +0000613 StarLoc = getLocForEndOfToken(StarLoc);
Eli Friedman999af7b2013-07-09 01:38:07 +0000614 Diag(FD.D.getIdentifierLoc(), diag::err_statically_allocated_object)
615 << FixItHint::CreateInsertion(StarLoc, "*");
616 T = Context.getObjCObjectPointerType(T);
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000617 SourceLocation TLoc = TInfo->getTypeLoc().getBeginLoc();
Eli Friedman999af7b2013-07-09 01:38:07 +0000618 TInfo = Context.getTrivialTypeSourceInfo(T, TLoc);
619 }
Ted Kremenekac597f32010-03-12 00:46:40 +0000620
George Burgess IV00f70bd2018-03-01 05:43:23 +0000621 DeclContext *DC = CDecl;
Ted Kremenekac597f32010-03-12 00:46:40 +0000622 ObjCPropertyDecl *PDecl = ObjCPropertyDecl::Create(Context, DC,
623 FD.D.getIdentifierLoc(),
Fangrui Song6907ce22018-07-30 19:24:48 +0000624 PropertyId, AtLoc,
Douglas Gregor813a0662015-06-19 18:14:38 +0000625 LParenLoc, T, TInfo);
Ted Kremenek959e8302010-03-12 02:31:10 +0000626
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400627 bool isClassProperty =
628 (AttributesAsWritten & ObjCPropertyAttribute::kind_class) ||
629 (Attributes & ObjCPropertyAttribute::kind_class);
Manman Ren5b786402016-01-28 18:49:28 +0000630 // Class property and instance property can have the same name.
631 if (ObjCPropertyDecl *prevDecl = ObjCPropertyDecl::findPropertyDecl(
632 DC, PropertyId, ObjCPropertyDecl::getQueryKind(isClassProperty))) {
Ted Kremenekac597f32010-03-12 00:46:40 +0000633 Diag(PDecl->getLocation(), diag::err_duplicate_property);
Ted Kremenek679708e2010-03-15 18:47:25 +0000634 Diag(prevDecl->getLocation(), diag::note_property_declare);
Ted Kremenekac597f32010-03-12 00:46:40 +0000635 PDecl->setInvalidDecl();
636 }
Ted Kremenek49be9e02010-05-18 21:09:07 +0000637 else {
Ted Kremenekac597f32010-03-12 00:46:40 +0000638 DC->addDecl(PDecl);
Ted Kremenek49be9e02010-05-18 21:09:07 +0000639 if (lexicalDC)
640 PDecl->setLexicalDeclContext(lexicalDC);
641 }
Ted Kremenekac597f32010-03-12 00:46:40 +0000642
643 if (T->isArrayType() || T->isFunctionType()) {
644 Diag(AtLoc, diag::err_property_type) << T;
645 PDecl->setInvalidDecl();
646 }
647
648 ProcessDeclAttributes(S, PDecl, FD.D);
649
650 // Regardless of setter/getter attribute, we save the default getter/setter
651 // selector names in anticipation of declaration of setter/getter methods.
Argyrios Kyrtzidis194b28e2017-03-16 18:25:40 +0000652 PDecl->setGetterName(GetterSel, GetterNameLoc);
653 PDecl->setSetterName(SetterSel, SetterNameLoc);
Argyrios Kyrtzidis52bfc2b2011-07-12 04:30:16 +0000654 PDecl->setPropertyAttributesAsWritten(
Argyrios Kyrtzidisb458ffb2011-11-06 18:58:12 +0000655 makePropertyAttributesAsWritten(AttributesAsWritten));
Argyrios Kyrtzidis52bfc2b2011-07-12 04:30:16 +0000656
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400657 if (Attributes & ObjCPropertyAttribute::kind_readonly)
658 PDecl->setPropertyAttributes(ObjCPropertyAttribute::kind_readonly);
Ted Kremenekac597f32010-03-12 00:46:40 +0000659
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400660 if (Attributes & ObjCPropertyAttribute::kind_getter)
661 PDecl->setPropertyAttributes(ObjCPropertyAttribute::kind_getter);
Ted Kremenekac597f32010-03-12 00:46:40 +0000662
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400663 if (Attributes & ObjCPropertyAttribute::kind_setter)
664 PDecl->setPropertyAttributes(ObjCPropertyAttribute::kind_setter);
Ted Kremenekac597f32010-03-12 00:46:40 +0000665
666 if (isReadWrite)
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400667 PDecl->setPropertyAttributes(ObjCPropertyAttribute::kind_readwrite);
Ted Kremenekac597f32010-03-12 00:46:40 +0000668
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400669 if (Attributes & ObjCPropertyAttribute::kind_retain)
670 PDecl->setPropertyAttributes(ObjCPropertyAttribute::kind_retain);
Ted Kremenekac597f32010-03-12 00:46:40 +0000671
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400672 if (Attributes & ObjCPropertyAttribute::kind_strong)
673 PDecl->setPropertyAttributes(ObjCPropertyAttribute::kind_strong);
John McCall31168b02011-06-15 23:02:42 +0000674
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400675 if (Attributes & ObjCPropertyAttribute::kind_weak)
676 PDecl->setPropertyAttributes(ObjCPropertyAttribute::kind_weak);
John McCall31168b02011-06-15 23:02:42 +0000677
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400678 if (Attributes & ObjCPropertyAttribute::kind_copy)
679 PDecl->setPropertyAttributes(ObjCPropertyAttribute::kind_copy);
Ted Kremenekac597f32010-03-12 00:46:40 +0000680
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400681 if (Attributes & ObjCPropertyAttribute::kind_unsafe_unretained)
682 PDecl->setPropertyAttributes(ObjCPropertyAttribute::kind_unsafe_unretained);
John McCall31168b02011-06-15 23:02:42 +0000683
Ted Kremenekac597f32010-03-12 00:46:40 +0000684 if (isAssign)
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400685 PDecl->setPropertyAttributes(ObjCPropertyAttribute::kind_assign);
Ted Kremenekac597f32010-03-12 00:46:40 +0000686
John McCall43192862011-09-13 18:31:23 +0000687 // In the semantic attributes, one of nonatomic or atomic is always set.
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400688 if (Attributes & ObjCPropertyAttribute::kind_nonatomic)
689 PDecl->setPropertyAttributes(ObjCPropertyAttribute::kind_nonatomic);
John McCall43192862011-09-13 18:31:23 +0000690 else
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400691 PDecl->setPropertyAttributes(ObjCPropertyAttribute::kind_atomic);
Ted Kremenekac597f32010-03-12 00:46:40 +0000692
John McCall31168b02011-06-15 23:02:42 +0000693 // 'unsafe_unretained' is alias for 'assign'.
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400694 if (Attributes & ObjCPropertyAttribute::kind_unsafe_unretained)
695 PDecl->setPropertyAttributes(ObjCPropertyAttribute::kind_assign);
John McCall31168b02011-06-15 23:02:42 +0000696 if (isAssign)
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400697 PDecl->setPropertyAttributes(ObjCPropertyAttribute::kind_unsafe_unretained);
John McCall31168b02011-06-15 23:02:42 +0000698
Ted Kremenekac597f32010-03-12 00:46:40 +0000699 if (MethodImplKind == tok::objc_required)
700 PDecl->setPropertyImplementation(ObjCPropertyDecl::Required);
701 else if (MethodImplKind == tok::objc_optional)
702 PDecl->setPropertyImplementation(ObjCPropertyDecl::Optional);
Ted Kremenekac597f32010-03-12 00:46:40 +0000703
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400704 if (Attributes & ObjCPropertyAttribute::kind_nullability)
705 PDecl->setPropertyAttributes(ObjCPropertyAttribute::kind_nullability);
Douglas Gregor813a0662015-06-19 18:14:38 +0000706
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400707 if (Attributes & ObjCPropertyAttribute::kind_null_resettable)
708 PDecl->setPropertyAttributes(ObjCPropertyAttribute::kind_null_resettable);
Douglas Gregor849ebc22015-06-19 18:14:46 +0000709
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400710 if (Attributes & ObjCPropertyAttribute::kind_class)
711 PDecl->setPropertyAttributes(ObjCPropertyAttribute::kind_class);
Manman Ren387ff7f2016-01-26 18:52:43 +0000712
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400713 if ((Attributes & ObjCPropertyAttribute::kind_direct) ||
Pierre Habouzitd4e1ba32019-11-07 23:14:58 -0800714 CDecl->hasAttr<ObjCDirectMembersAttr>()) {
715 if (isa<ObjCProtocolDecl>(CDecl)) {
716 Diag(PDecl->getLocation(), diag::err_objc_direct_on_protocol) << true;
717 } else if (getLangOpts().ObjCRuntime.allowsDirectDispatch()) {
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400718 PDecl->setPropertyAttributes(ObjCPropertyAttribute::kind_direct);
Pierre Habouzitd4e1ba32019-11-07 23:14:58 -0800719 } else {
720 Diag(PDecl->getLocation(), diag::warn_objc_direct_property_ignored)
721 << PDecl->getDeclName();
722 }
723 }
724
Ted Kremenek959e8302010-03-12 02:31:10 +0000725 return PDecl;
Ted Kremenekac597f32010-03-12 00:46:40 +0000726}
727
John McCall31168b02011-06-15 23:02:42 +0000728static void checkARCPropertyImpl(Sema &S, SourceLocation propertyImplLoc,
729 ObjCPropertyDecl *property,
730 ObjCIvarDecl *ivar) {
731 if (property->isInvalidDecl() || ivar->isInvalidDecl()) return;
732
John McCall31168b02011-06-15 23:02:42 +0000733 QualType ivarType = ivar->getType();
734 Qualifiers::ObjCLifetime ivarLifetime = ivarType.getObjCLifetime();
John McCall31168b02011-06-15 23:02:42 +0000735
John McCall43192862011-09-13 18:31:23 +0000736 // The lifetime implied by the property's attributes.
737 Qualifiers::ObjCLifetime propertyLifetime =
738 getImpliedARCOwnership(property->getPropertyAttributes(),
739 property->getType());
John McCall31168b02011-06-15 23:02:42 +0000740
John McCall43192862011-09-13 18:31:23 +0000741 // We're fine if they match.
742 if (propertyLifetime == ivarLifetime) return;
John McCall31168b02011-06-15 23:02:42 +0000743
John McCall460ce582015-10-22 18:38:17 +0000744 // None isn't a valid lifetime for an object ivar in ARC, and
745 // __autoreleasing is never valid; don't diagnose twice.
746 if ((ivarLifetime == Qualifiers::OCL_None &&
747 S.getLangOpts().ObjCAutoRefCount) ||
John McCall43192862011-09-13 18:31:23 +0000748 ivarLifetime == Qualifiers::OCL_Autoreleasing)
749 return;
John McCall31168b02011-06-15 23:02:42 +0000750
John McCalld8561f02012-08-20 23:36:59 +0000751 // If the ivar is private, and it's implicitly __unsafe_unretained
Nico Weber138a8152019-08-21 15:52:44 +0000752 // because of its type, then pretend it was actually implicitly
John McCalld8561f02012-08-20 23:36:59 +0000753 // __strong. This is only sound because we're processing the
754 // property implementation before parsing any method bodies.
755 if (ivarLifetime == Qualifiers::OCL_ExplicitNone &&
756 propertyLifetime == Qualifiers::OCL_Strong &&
757 ivar->getAccessControl() == ObjCIvarDecl::Private) {
758 SplitQualType split = ivarType.split();
759 if (split.Quals.hasObjCLifetime()) {
760 assert(ivarType->isObjCARCImplicitlyUnretainedType());
761 split.Quals.setObjCLifetime(Qualifiers::OCL_Strong);
762 ivarType = S.Context.getQualifiedType(split);
763 ivar->setType(ivarType);
764 return;
765 }
766 }
767
John McCall43192862011-09-13 18:31:23 +0000768 switch (propertyLifetime) {
769 case Qualifiers::OCL_Strong:
Argyrios Kyrtzidisf5b993f2012-12-12 22:48:25 +0000770 S.Diag(ivar->getLocation(), diag::err_arc_strong_property_ownership)
John McCall43192862011-09-13 18:31:23 +0000771 << property->getDeclName()
772 << ivar->getDeclName()
773 << ivarLifetime;
774 break;
John McCall31168b02011-06-15 23:02:42 +0000775
John McCall43192862011-09-13 18:31:23 +0000776 case Qualifiers::OCL_Weak:
Richard Smithf8812672016-12-02 22:38:31 +0000777 S.Diag(ivar->getLocation(), diag::err_weak_property)
John McCall43192862011-09-13 18:31:23 +0000778 << property->getDeclName()
779 << ivar->getDeclName();
780 break;
John McCall31168b02011-06-15 23:02:42 +0000781
John McCall43192862011-09-13 18:31:23 +0000782 case Qualifiers::OCL_ExplicitNone:
Argyrios Kyrtzidisf5b993f2012-12-12 22:48:25 +0000783 S.Diag(ivar->getLocation(), diag::err_arc_assign_property_ownership)
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400784 << property->getDeclName() << ivar->getDeclName()
785 << ((property->getPropertyAttributesAsWritten() &
786 ObjCPropertyAttribute::kind_assign) != 0);
John McCall43192862011-09-13 18:31:23 +0000787 break;
John McCall31168b02011-06-15 23:02:42 +0000788
John McCall43192862011-09-13 18:31:23 +0000789 case Qualifiers::OCL_Autoreleasing:
790 llvm_unreachable("properties cannot be autoreleasing");
John McCall31168b02011-06-15 23:02:42 +0000791
John McCall43192862011-09-13 18:31:23 +0000792 case Qualifiers::OCL_None:
793 // Any other property should be ignored.
John McCall31168b02011-06-15 23:02:42 +0000794 return;
795 }
796
797 S.Diag(property->getLocation(), diag::note_property_declare);
Argyrios Kyrtzidisf5b993f2012-12-12 22:48:25 +0000798 if (propertyImplLoc.isValid())
799 S.Diag(propertyImplLoc, diag::note_property_synthesize);
John McCall31168b02011-06-15 23:02:42 +0000800}
801
Fariborz Jahanian39ba6392012-01-11 18:26:06 +0000802/// setImpliedPropertyAttributeForReadOnlyProperty -
803/// This routine evaludates life-time attributes for a 'readonly'
804/// property with no known lifetime of its own, using backing
805/// 'ivar's attribute, if any. If no backing 'ivar', property's
806/// life-time is assumed 'strong'.
807static void setImpliedPropertyAttributeForReadOnlyProperty(
808 ObjCPropertyDecl *property, ObjCIvarDecl *ivar) {
Fangrui Song6907ce22018-07-30 19:24:48 +0000809 Qualifiers::ObjCLifetime propertyLifetime =
Fariborz Jahanian39ba6392012-01-11 18:26:06 +0000810 getImpliedARCOwnership(property->getPropertyAttributes(),
811 property->getType());
812 if (propertyLifetime != Qualifiers::OCL_None)
813 return;
Fangrui Song6907ce22018-07-30 19:24:48 +0000814
Fariborz Jahanian39ba6392012-01-11 18:26:06 +0000815 if (!ivar) {
816 // if no backing ivar, make property 'strong'.
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400817 property->setPropertyAttributes(ObjCPropertyAttribute::kind_strong);
Fariborz Jahanian39ba6392012-01-11 18:26:06 +0000818 return;
819 }
820 // property assumes owenership of backing ivar.
821 QualType ivarType = ivar->getType();
822 Qualifiers::ObjCLifetime ivarLifetime = ivarType.getObjCLifetime();
823 if (ivarLifetime == Qualifiers::OCL_Strong)
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400824 property->setPropertyAttributes(ObjCPropertyAttribute::kind_strong);
Fariborz Jahanian39ba6392012-01-11 18:26:06 +0000825 else if (ivarLifetime == Qualifiers::OCL_Weak)
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400826 property->setPropertyAttributes(ObjCPropertyAttribute::kind_weak);
Fariborz Jahanian39ba6392012-01-11 18:26:06 +0000827}
Ted Kremenekac597f32010-03-12 00:46:40 +0000828
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400829static bool isIncompatiblePropertyAttribute(unsigned Attr1, unsigned Attr2,
830 ObjCPropertyAttribute::Kind Kind) {
Alex Lorenz50b2dd32017-07-13 11:06:22 +0000831 return (Attr1 & Kind) != (Attr2 & Kind);
832}
833
834static bool areIncompatiblePropertyAttributes(unsigned Attr1, unsigned Attr2,
835 unsigned Kinds) {
836 return ((Attr1 & Kinds) != 0) != ((Attr2 & Kinds) != 0);
837}
838
839/// SelectPropertyForSynthesisFromProtocols - Finds the most appropriate
840/// property declaration that should be synthesised in all of the inherited
841/// protocols. It also diagnoses properties declared in inherited protocols with
842/// mismatched types or attributes, since any of them can be candidate for
843/// synthesis.
844static ObjCPropertyDecl *
845SelectPropertyForSynthesisFromProtocols(Sema &S, SourceLocation AtLoc,
Benjamin Kramerbf8d2542013-05-23 15:53:44 +0000846 ObjCInterfaceDecl *ClassDecl,
Fariborz Jahanian0ebf8792013-05-20 21:20:24 +0000847 ObjCPropertyDecl *Property) {
Alex Lorenz50b2dd32017-07-13 11:06:22 +0000848 assert(isa<ObjCProtocolDecl>(Property->getDeclContext()) &&
849 "Expected a property from a protocol");
850 ObjCInterfaceDecl::ProtocolPropertySet ProtocolSet;
851 ObjCInterfaceDecl::PropertyDeclOrder Properties;
Aaron Ballmana9f49e32014-03-13 20:55:22 +0000852 for (const auto *PI : ClassDecl->all_referenced_protocols()) {
853 if (const ObjCProtocolDecl *PDecl = PI->getDefinition())
Alex Lorenz50b2dd32017-07-13 11:06:22 +0000854 PDecl->collectInheritedProtocolProperties(Property, ProtocolSet,
855 Properties);
Fariborz Jahanian0ebf8792013-05-20 21:20:24 +0000856 }
Alex Lorenz50b2dd32017-07-13 11:06:22 +0000857 if (ObjCInterfaceDecl *SDecl = ClassDecl->getSuperClass()) {
Fariborz Jahanian0ebf8792013-05-20 21:20:24 +0000858 while (SDecl) {
Aaron Ballmana9f49e32014-03-13 20:55:22 +0000859 for (const auto *PI : SDecl->all_referenced_protocols()) {
860 if (const ObjCProtocolDecl *PDecl = PI->getDefinition())
Alex Lorenz50b2dd32017-07-13 11:06:22 +0000861 PDecl->collectInheritedProtocolProperties(Property, ProtocolSet,
862 Properties);
Fariborz Jahanian0ebf8792013-05-20 21:20:24 +0000863 }
864 SDecl = SDecl->getSuperClass();
865 }
Alex Lorenz50b2dd32017-07-13 11:06:22 +0000866 }
867
868 if (Properties.empty())
869 return Property;
870
871 ObjCPropertyDecl *OriginalProperty = Property;
872 size_t SelectedIndex = 0;
873 for (const auto &Prop : llvm::enumerate(Properties)) {
874 // Select the 'readwrite' property if such property exists.
875 if (Property->isReadOnly() && !Prop.value()->isReadOnly()) {
876 Property = Prop.value();
877 SelectedIndex = Prop.index();
878 }
879 }
880 if (Property != OriginalProperty) {
881 // Check that the old property is compatible with the new one.
882 Properties[SelectedIndex] = OriginalProperty;
883 }
884
Fariborz Jahanian0ebf8792013-05-20 21:20:24 +0000885 QualType RHSType = S.Context.getCanonicalType(Property->getType());
Alex Lorenz34d070f2017-08-22 10:38:07 +0000886 unsigned OriginalAttributes = Property->getPropertyAttributesAsWritten();
Alex Lorenz50b2dd32017-07-13 11:06:22 +0000887 enum MismatchKind {
888 IncompatibleType = 0,
889 HasNoExpectedAttribute,
890 HasUnexpectedAttribute,
891 DifferentGetter,
892 DifferentSetter
893 };
894 // Represents a property from another protocol that conflicts with the
895 // selected declaration.
896 struct MismatchingProperty {
897 const ObjCPropertyDecl *Prop;
898 MismatchKind Kind;
899 StringRef AttributeName;
900 };
901 SmallVector<MismatchingProperty, 4> Mismatches;
902 for (ObjCPropertyDecl *Prop : Properties) {
903 // Verify the property attributes.
Alex Lorenz34d070f2017-08-22 10:38:07 +0000904 unsigned Attr = Prop->getPropertyAttributesAsWritten();
Alex Lorenz50b2dd32017-07-13 11:06:22 +0000905 if (Attr != OriginalAttributes) {
906 auto Diag = [&](bool OriginalHasAttribute, StringRef AttributeName) {
907 MismatchKind Kind = OriginalHasAttribute ? HasNoExpectedAttribute
908 : HasUnexpectedAttribute;
909 Mismatches.push_back({Prop, Kind, AttributeName});
910 };
Alex Lorenz61372552018-05-02 22:40:19 +0000911 // The ownership might be incompatible unless the property has no explicit
912 // ownership.
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400913 bool HasOwnership =
914 (Attr & (ObjCPropertyAttribute::kind_retain |
915 ObjCPropertyAttribute::kind_strong |
916 ObjCPropertyAttribute::kind_copy |
917 ObjCPropertyAttribute::kind_assign |
918 ObjCPropertyAttribute::kind_unsafe_unretained |
919 ObjCPropertyAttribute::kind_weak)) != 0;
Alex Lorenz61372552018-05-02 22:40:19 +0000920 if (HasOwnership &&
921 isIncompatiblePropertyAttribute(OriginalAttributes, Attr,
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400922 ObjCPropertyAttribute::kind_copy)) {
923 Diag(OriginalAttributes & ObjCPropertyAttribute::kind_copy, "copy");
Alex Lorenz50b2dd32017-07-13 11:06:22 +0000924 continue;
925 }
Alex Lorenz61372552018-05-02 22:40:19 +0000926 if (HasOwnership && areIncompatiblePropertyAttributes(
927 OriginalAttributes, Attr,
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400928 ObjCPropertyAttribute::kind_retain |
929 ObjCPropertyAttribute::kind_strong)) {
930 Diag(OriginalAttributes & (ObjCPropertyAttribute::kind_retain |
931 ObjCPropertyAttribute::kind_strong),
Alex Lorenz50b2dd32017-07-13 11:06:22 +0000932 "retain (or strong)");
933 continue;
934 }
935 if (isIncompatiblePropertyAttribute(OriginalAttributes, Attr,
Puyan Lotfi9721fbf2020-04-23 02:20:56 -0400936 ObjCPropertyAttribute::kind_atomic)) {
937 Diag(OriginalAttributes & ObjCPropertyAttribute::kind_atomic, "atomic");
Alex Lorenz50b2dd32017-07-13 11:06:22 +0000938 continue;
939 }
940 }
941 if (Property->getGetterName() != Prop->getGetterName()) {
942 Mismatches.push_back({Prop, DifferentGetter, ""});
943 continue;
944 }
945 if (!Property->isReadOnly() && !Prop->isReadOnly() &&
946 Property->getSetterName() != Prop->getSetterName()) {
947 Mismatches.push_back({Prop, DifferentSetter, ""});
948 continue;
949 }
Fariborz Jahanian0ebf8792013-05-20 21:20:24 +0000950 QualType LHSType = S.Context.getCanonicalType(Prop->getType());
951 if (!S.Context.propertyTypesAreCompatible(LHSType, RHSType)) {
952 bool IncompatibleObjC = false;
953 QualType ConvertedType;
954 if (!S.isObjCPointerConversion(RHSType, LHSType, ConvertedType, IncompatibleObjC)
955 || IncompatibleObjC) {
Alex Lorenz50b2dd32017-07-13 11:06:22 +0000956 Mismatches.push_back({Prop, IncompatibleType, ""});
957 continue;
Fariborz Jahanian0ebf8792013-05-20 21:20:24 +0000958 }
959 }
960 }
Alex Lorenz50b2dd32017-07-13 11:06:22 +0000961
962 if (Mismatches.empty())
963 return Property;
964
965 // Diagnose incompability.
966 {
967 bool HasIncompatibleAttributes = false;
968 for (const auto &Note : Mismatches)
969 HasIncompatibleAttributes =
970 Note.Kind != IncompatibleType ? true : HasIncompatibleAttributes;
971 // Promote the warning to an error if there are incompatible attributes or
972 // incompatible types together with readwrite/readonly incompatibility.
973 auto Diag = S.Diag(Property->getLocation(),
974 Property != OriginalProperty || HasIncompatibleAttributes
975 ? diag::err_protocol_property_mismatch
976 : diag::warn_protocol_property_mismatch);
977 Diag << Mismatches[0].Kind;
978 switch (Mismatches[0].Kind) {
979 case IncompatibleType:
980 Diag << Property->getType();
981 break;
982 case HasNoExpectedAttribute:
983 case HasUnexpectedAttribute:
984 Diag << Mismatches[0].AttributeName;
985 break;
986 case DifferentGetter:
987 Diag << Property->getGetterName();
988 break;
989 case DifferentSetter:
990 Diag << Property->getSetterName();
991 break;
992 }
993 }
994 for (const auto &Note : Mismatches) {
995 auto Diag =
996 S.Diag(Note.Prop->getLocation(), diag::note_protocol_property_declare)
997 << Note.Kind;
998 switch (Note.Kind) {
999 case IncompatibleType:
1000 Diag << Note.Prop->getType();
1001 break;
1002 case HasNoExpectedAttribute:
1003 case HasUnexpectedAttribute:
1004 Diag << Note.AttributeName;
1005 break;
1006 case DifferentGetter:
1007 Diag << Note.Prop->getGetterName();
1008 break;
1009 case DifferentSetter:
1010 Diag << Note.Prop->getSetterName();
1011 break;
1012 }
1013 }
1014 if (AtLoc.isValid())
Fariborz Jahanian0ebf8792013-05-20 21:20:24 +00001015 S.Diag(AtLoc, diag::note_property_synthesize);
Alex Lorenz50b2dd32017-07-13 11:06:22 +00001016
1017 return Property;
Fariborz Jahanian0ebf8792013-05-20 21:20:24 +00001018}
1019
Douglas Gregor9dd25b72015-12-10 23:02:09 +00001020/// Determine whether any storage attributes were written on the property.
Manman Ren5b786402016-01-28 18:49:28 +00001021static bool hasWrittenStorageAttribute(ObjCPropertyDecl *Prop,
1022 ObjCPropertyQueryKind QueryKind) {
Douglas Gregor9dd25b72015-12-10 23:02:09 +00001023 if (Prop->getPropertyAttributesAsWritten() & OwnershipMask) return true;
1024
1025 // If this is a readwrite property in a class extension that refines
1026 // a readonly property in the original class definition, check it as
1027 // well.
1028
1029 // If it's a readonly property, we're not interested.
1030 if (Prop->isReadOnly()) return false;
1031
1032 // Is it declared in an extension?
1033 auto Category = dyn_cast<ObjCCategoryDecl>(Prop->getDeclContext());
1034 if (!Category || !Category->IsClassExtension()) return false;
1035
1036 // Find the corresponding property in the primary class definition.
1037 auto OrigClass = Category->getClassInterface();
1038 for (auto Found : OrigClass->lookup(Prop->getDeclName())) {
1039 if (ObjCPropertyDecl *OrigProp = dyn_cast<ObjCPropertyDecl>(Found))
1040 return OrigProp->getPropertyAttributesAsWritten() & OwnershipMask;
1041 }
1042
Douglas Gregor02535432015-12-18 00:52:31 +00001043 // Look through all of the protocols.
1044 for (const auto *Proto : OrigClass->all_referenced_protocols()) {
Manman Ren5b786402016-01-28 18:49:28 +00001045 if (ObjCPropertyDecl *OrigProp = Proto->FindPropertyDeclaration(
1046 Prop->getIdentifier(), QueryKind))
Douglas Gregor02535432015-12-18 00:52:31 +00001047 return OrigProp->getPropertyAttributesAsWritten() & OwnershipMask;
1048 }
1049
Douglas Gregor9dd25b72015-12-10 23:02:09 +00001050 return false;
1051}
1052
Adrian Prantl2073dd22019-11-04 14:28:14 -08001053/// Create a synthesized property accessor stub inside the \@implementation.
1054static ObjCMethodDecl *
1055RedeclarePropertyAccessor(ASTContext &Context, ObjCImplementationDecl *Impl,
1056 ObjCMethodDecl *AccessorDecl, SourceLocation AtLoc,
1057 SourceLocation PropertyLoc) {
1058 ObjCMethodDecl *Decl = AccessorDecl;
1059 ObjCMethodDecl *ImplDecl = ObjCMethodDecl::Create(
Adrian Prantla1a9aa12019-12-05 11:25:46 -08001060 Context, AtLoc.isValid() ? AtLoc : Decl->getBeginLoc(),
1061 PropertyLoc.isValid() ? PropertyLoc : Decl->getEndLoc(),
1062 Decl->getSelector(), Decl->getReturnType(),
Adrian Prantl2073dd22019-11-04 14:28:14 -08001063 Decl->getReturnTypeSourceInfo(), Impl, Decl->isInstanceMethod(),
Adrian Prantla1a9aa12019-12-05 11:25:46 -08001064 Decl->isVariadic(), Decl->isPropertyAccessor(),
1065 /* isSynthesized*/ true, Decl->isImplicit(), Decl->isDefined(),
1066 Decl->getImplementationControl(), Decl->hasRelatedResultType());
Adrian Prantl2073dd22019-11-04 14:28:14 -08001067 ImplDecl->getMethodFamily();
1068 if (Decl->hasAttrs())
1069 ImplDecl->setAttrs(Decl->getAttrs());
1070 ImplDecl->setSelfDecl(Decl->getSelfDecl());
1071 ImplDecl->setCmdDecl(Decl->getCmdDecl());
1072 SmallVector<SourceLocation, 1> SelLocs;
1073 Decl->getSelectorLocs(SelLocs);
1074 ImplDecl->setMethodParams(Context, Decl->parameters(), SelLocs);
1075 ImplDecl->setLexicalDeclContext(Impl);
1076 ImplDecl->setDefined(false);
1077 return ImplDecl;
1078}
1079
Ted Kremenekac597f32010-03-12 00:46:40 +00001080/// ActOnPropertyImplDecl - This routine performs semantic checks and
1081/// builds the AST node for a property implementation declaration; declared
James Dennett2a4d13c2012-06-15 07:13:21 +00001082/// as \@synthesize or \@dynamic.
Ted Kremenekac597f32010-03-12 00:46:40 +00001083///
John McCall48871652010-08-21 09:40:31 +00001084Decl *Sema::ActOnPropertyImplDecl(Scope *S,
1085 SourceLocation AtLoc,
1086 SourceLocation PropertyLoc,
1087 bool Synthesize,
John McCall48871652010-08-21 09:40:31 +00001088 IdentifierInfo *PropertyId,
Douglas Gregorb1b71e52010-11-17 01:03:52 +00001089 IdentifierInfo *PropertyIvar,
Manman Ren5b786402016-01-28 18:49:28 +00001090 SourceLocation PropertyIvarLoc,
1091 ObjCPropertyQueryKind QueryKind) {
Ted Kremenek273c4f52010-04-05 23:45:09 +00001092 ObjCContainerDecl *ClassImpDecl =
Fariborz Jahaniana195a512011-09-19 16:32:32 +00001093 dyn_cast<ObjCContainerDecl>(CurContext);
Ted Kremenekac597f32010-03-12 00:46:40 +00001094 // Make sure we have a context for the property implementation declaration.
1095 if (!ClassImpDecl) {
Richard Smithf8812672016-12-02 22:38:31 +00001096 Diag(AtLoc, diag::err_missing_property_context);
Craig Topperc3ec1492014-05-26 06:22:03 +00001097 return nullptr;
Ted Kremenekac597f32010-03-12 00:46:40 +00001098 }
Argyrios Kyrtzidis34608802012-02-28 17:50:39 +00001099 if (PropertyIvarLoc.isInvalid())
1100 PropertyIvarLoc = PropertyLoc;
Eli Friedman169ec352012-05-01 22:26:06 +00001101 SourceLocation PropertyDiagLoc = PropertyLoc;
1102 if (PropertyDiagLoc.isInvalid())
Stephen Kellyf2ceec42018-08-09 21:08:08 +00001103 PropertyDiagLoc = ClassImpDecl->getBeginLoc();
Craig Topperc3ec1492014-05-26 06:22:03 +00001104 ObjCPropertyDecl *property = nullptr;
1105 ObjCInterfaceDecl *IDecl = nullptr;
Ted Kremenekac597f32010-03-12 00:46:40 +00001106 // Find the class or category class where this property must have
1107 // a declaration.
Craig Topperc3ec1492014-05-26 06:22:03 +00001108 ObjCImplementationDecl *IC = nullptr;
1109 ObjCCategoryImplDecl *CatImplClass = nullptr;
Ted Kremenekac597f32010-03-12 00:46:40 +00001110 if ((IC = dyn_cast<ObjCImplementationDecl>(ClassImpDecl))) {
1111 IDecl = IC->getClassInterface();
1112 // We always synthesize an interface for an implementation
1113 // without an interface decl. So, IDecl is always non-zero.
1114 assert(IDecl &&
1115 "ActOnPropertyImplDecl - @implementation without @interface");
1116
1117 // Look for this property declaration in the @implementation's @interface
Manman Ren5b786402016-01-28 18:49:28 +00001118 property = IDecl->FindPropertyDeclaration(PropertyId, QueryKind);
Ted Kremenekac597f32010-03-12 00:46:40 +00001119 if (!property) {
Richard Smithf8812672016-12-02 22:38:31 +00001120 Diag(PropertyLoc, diag::err_bad_property_decl) << IDecl->getDeclName();
Craig Topperc3ec1492014-05-26 06:22:03 +00001121 return nullptr;
Ted Kremenekac597f32010-03-12 00:46:40 +00001122 }
Manman Rendfef4062016-01-29 19:16:39 +00001123 if (property->isClassProperty() && Synthesize) {
Richard Smithf8812672016-12-02 22:38:31 +00001124 Diag(PropertyLoc, diag::err_synthesize_on_class_property) << PropertyId;
Manman Rendfef4062016-01-29 19:16:39 +00001125 return nullptr;
1126 }
Fariborz Jahanian382c0402010-12-17 22:28:16 +00001127 unsigned PIkind = property->getPropertyAttributesAsWritten();
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04001128 if ((PIkind & (ObjCPropertyAttribute::kind_atomic |
1129 ObjCPropertyAttribute::kind_nonatomic)) == 0) {
Fariborz Jahanian382c0402010-12-17 22:28:16 +00001130 if (AtLoc.isValid())
1131 Diag(AtLoc, diag::warn_implicit_atomic_property);
1132 else
1133 Diag(IC->getLocation(), diag::warn_auto_implicit_atomic_property);
1134 Diag(property->getLocation(), diag::note_property_declare);
1135 }
Fangrui Song6907ce22018-07-30 19:24:48 +00001136
Ted Kremenekac597f32010-03-12 00:46:40 +00001137 if (const ObjCCategoryDecl *CD =
1138 dyn_cast<ObjCCategoryDecl>(property->getDeclContext())) {
1139 if (!CD->IsClassExtension()) {
Richard Smithf8812672016-12-02 22:38:31 +00001140 Diag(PropertyLoc, diag::err_category_property) << CD->getDeclName();
Ted Kremenekac597f32010-03-12 00:46:40 +00001141 Diag(property->getLocation(), diag::note_property_declare);
Craig Topperc3ec1492014-05-26 06:22:03 +00001142 return nullptr;
Ted Kremenekac597f32010-03-12 00:46:40 +00001143 }
1144 }
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04001145 if (Synthesize && (PIkind & ObjCPropertyAttribute::kind_readonly) &&
1146 property->hasAttr<IBOutletAttr>() && !AtLoc.isValid()) {
Fariborz Jahanianf3c171e2013-02-08 23:32:30 +00001147 bool ReadWriteProperty = false;
1148 // Search into the class extensions and see if 'readonly property is
1149 // redeclared 'readwrite', then no warning is to be issued.
Aaron Ballmanb4a53452014-03-13 21:57:01 +00001150 for (auto *Ext : IDecl->known_extensions()) {
Fariborz Jahanianf3c171e2013-02-08 23:32:30 +00001151 DeclContext::lookup_result R = Ext->lookup(property->getDeclName());
1152 if (!R.empty())
1153 if (ObjCPropertyDecl *ExtProp = dyn_cast<ObjCPropertyDecl>(R[0])) {
1154 PIkind = ExtProp->getPropertyAttributesAsWritten();
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04001155 if (PIkind & ObjCPropertyAttribute::kind_readwrite) {
Fariborz Jahanianf3c171e2013-02-08 23:32:30 +00001156 ReadWriteProperty = true;
1157 break;
1158 }
1159 }
1160 }
Fangrui Song6907ce22018-07-30 19:24:48 +00001161
Fariborz Jahanianf3c171e2013-02-08 23:32:30 +00001162 if (!ReadWriteProperty) {
Ted Kremenek7ee25672013-02-09 07:13:16 +00001163 Diag(property->getLocation(), diag::warn_auto_readonly_iboutlet_property)
Aaron Ballman1fb39552014-01-03 14:23:03 +00001164 << property;
Fariborz Jahanianf3c171e2013-02-08 23:32:30 +00001165 SourceLocation readonlyLoc;
Fangrui Song6907ce22018-07-30 19:24:48 +00001166 if (LocPropertyAttribute(Context, "readonly",
Fariborz Jahanianf3c171e2013-02-08 23:32:30 +00001167 property->getLParenLoc(), readonlyLoc)) {
Fangrui Song6907ce22018-07-30 19:24:48 +00001168 SourceLocation endLoc =
Fariborz Jahanianf3c171e2013-02-08 23:32:30 +00001169 readonlyLoc.getLocWithOffset(strlen("readonly")-1);
1170 SourceRange ReadonlySourceRange(readonlyLoc, endLoc);
Fangrui Song6907ce22018-07-30 19:24:48 +00001171 Diag(property->getLocation(),
Fariborz Jahanianf3c171e2013-02-08 23:32:30 +00001172 diag::note_auto_readonly_iboutlet_fixup_suggest) <<
1173 FixItHint::CreateReplacement(ReadonlySourceRange, "readwrite");
1174 }
Fariborz Jahanianb52d8d22012-05-21 17:02:43 +00001175 }
Fariborz Jahanian199a9b52012-05-19 18:17:17 +00001176 }
Fariborz Jahanian0ebf8792013-05-20 21:20:24 +00001177 if (Synthesize && isa<ObjCProtocolDecl>(property->getDeclContext()))
Alex Lorenz50b2dd32017-07-13 11:06:22 +00001178 property = SelectPropertyForSynthesisFromProtocols(*this, AtLoc, IDecl,
1179 property);
1180
Ted Kremenekac597f32010-03-12 00:46:40 +00001181 } else if ((CatImplClass = dyn_cast<ObjCCategoryImplDecl>(ClassImpDecl))) {
1182 if (Synthesize) {
Richard Smithf8812672016-12-02 22:38:31 +00001183 Diag(AtLoc, diag::err_synthesize_category_decl);
Craig Topperc3ec1492014-05-26 06:22:03 +00001184 return nullptr;
Ted Kremenekac597f32010-03-12 00:46:40 +00001185 }
1186 IDecl = CatImplClass->getClassInterface();
1187 if (!IDecl) {
Richard Smithf8812672016-12-02 22:38:31 +00001188 Diag(AtLoc, diag::err_missing_property_interface);
Craig Topperc3ec1492014-05-26 06:22:03 +00001189 return nullptr;
Ted Kremenekac597f32010-03-12 00:46:40 +00001190 }
1191 ObjCCategoryDecl *Category =
1192 IDecl->FindCategoryDeclaration(CatImplClass->getIdentifier());
1193
1194 // If category for this implementation not found, it is an error which
1195 // has already been reported eralier.
1196 if (!Category)
Craig Topperc3ec1492014-05-26 06:22:03 +00001197 return nullptr;
Ted Kremenekac597f32010-03-12 00:46:40 +00001198 // Look for this property declaration in @implementation's category
Manman Ren5b786402016-01-28 18:49:28 +00001199 property = Category->FindPropertyDeclaration(PropertyId, QueryKind);
Ted Kremenekac597f32010-03-12 00:46:40 +00001200 if (!property) {
Richard Smithf8812672016-12-02 22:38:31 +00001201 Diag(PropertyLoc, diag::err_bad_category_property_decl)
Ted Kremenekac597f32010-03-12 00:46:40 +00001202 << Category->getDeclName();
Craig Topperc3ec1492014-05-26 06:22:03 +00001203 return nullptr;
Ted Kremenekac597f32010-03-12 00:46:40 +00001204 }
1205 } else {
Richard Smithf8812672016-12-02 22:38:31 +00001206 Diag(AtLoc, diag::err_bad_property_context);
Craig Topperc3ec1492014-05-26 06:22:03 +00001207 return nullptr;
Ted Kremenekac597f32010-03-12 00:46:40 +00001208 }
Craig Topperc3ec1492014-05-26 06:22:03 +00001209 ObjCIvarDecl *Ivar = nullptr;
Eli Friedman169ec352012-05-01 22:26:06 +00001210 bool CompleteTypeErr = false;
Fariborz Jahanian3da77752012-05-15 18:12:51 +00001211 bool compat = true;
Ted Kremenekac597f32010-03-12 00:46:40 +00001212 // Check that we have a valid, previously declared ivar for @synthesize
1213 if (Synthesize) {
1214 // @synthesize
1215 if (!PropertyIvar)
1216 PropertyIvar = PropertyId;
Fariborz Jahanian39ba6392012-01-11 18:26:06 +00001217 // Check that this is a previously declared 'ivar' in 'IDecl' interface
1218 ObjCInterfaceDecl *ClassDeclared;
1219 Ivar = IDecl->lookupInstanceVariable(PropertyIvar, ClassDeclared);
1220 QualType PropType = property->getType();
1221 QualType PropertyIvarType = PropType.getNonReferenceType();
Eli Friedman169ec352012-05-01 22:26:06 +00001222
1223 if (RequireCompleteType(PropertyDiagLoc, PropertyIvarType,
Douglas Gregor7bfb2d02012-05-04 16:32:21 +00001224 diag::err_incomplete_synthesized_property,
1225 property->getDeclName())) {
Eli Friedman169ec352012-05-01 22:26:06 +00001226 Diag(property->getLocation(), diag::note_property_declare);
1227 CompleteTypeErr = true;
1228 }
1229
David Blaikiebbafb8a2012-03-11 07:00:24 +00001230 if (getLangOpts().ObjCAutoRefCount &&
Fariborz Jahanian39ba6392012-01-11 18:26:06 +00001231 (property->getPropertyAttributesAsWritten() &
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04001232 ObjCPropertyAttribute::kind_readonly) &&
Fariborz Jahaniana230dea2012-01-11 19:48:08 +00001233 PropertyIvarType->isObjCRetainableType()) {
Fangrui Song6907ce22018-07-30 19:24:48 +00001234 setImpliedPropertyAttributeForReadOnlyProperty(property, Ivar);
Fariborz Jahanian39ba6392012-01-11 18:26:06 +00001235 }
Fangrui Song6907ce22018-07-30 19:24:48 +00001236
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04001237 ObjCPropertyAttribute::Kind kind = property->getPropertyAttributes();
John McCall43192862011-09-13 18:31:23 +00001238
John McCall460ce582015-10-22 18:38:17 +00001239 bool isARCWeak = false;
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04001240 if (kind & ObjCPropertyAttribute::kind_weak) {
John McCall460ce582015-10-22 18:38:17 +00001241 // Add GC __weak to the ivar type if the property is weak.
1242 if (getLangOpts().getGC() != LangOptions::NonGC) {
1243 assert(!getLangOpts().ObjCAutoRefCount);
1244 if (PropertyIvarType.isObjCGCStrong()) {
1245 Diag(PropertyDiagLoc, diag::err_gc_weak_property_strong_type);
1246 Diag(property->getLocation(), diag::note_property_declare);
1247 } else {
1248 PropertyIvarType =
1249 Context.getObjCGCQualType(PropertyIvarType, Qualifiers::Weak);
1250 }
1251
1252 // Otherwise, check whether ARC __weak is enabled and works with
1253 // the property type.
John McCall43192862011-09-13 18:31:23 +00001254 } else {
John McCall460ce582015-10-22 18:38:17 +00001255 if (!getLangOpts().ObjCWeak) {
John McCallb61e14e2015-10-27 04:54:50 +00001256 // Only complain here when synthesizing an ivar.
1257 if (!Ivar) {
1258 Diag(PropertyDiagLoc,
1259 getLangOpts().ObjCWeakRuntime
1260 ? diag::err_synthesizing_arc_weak_property_disabled
1261 : diag::err_synthesizing_arc_weak_property_no_runtime);
1262 Diag(property->getLocation(), diag::note_property_declare);
John McCall460ce582015-10-22 18:38:17 +00001263 }
John McCallb61e14e2015-10-27 04:54:50 +00001264 CompleteTypeErr = true; // suppress later diagnostics about the ivar
John McCall460ce582015-10-22 18:38:17 +00001265 } else {
1266 isARCWeak = true;
1267 if (const ObjCObjectPointerType *ObjT =
1268 PropertyIvarType->getAs<ObjCObjectPointerType>()) {
1269 const ObjCInterfaceDecl *ObjI = ObjT->getInterfaceDecl();
1270 if (ObjI && ObjI->isArcWeakrefUnavailable()) {
1271 Diag(property->getLocation(),
1272 diag::err_arc_weak_unavailable_property)
1273 << PropertyIvarType;
1274 Diag(ClassImpDecl->getLocation(), diag::note_implemented_by_class)
1275 << ClassImpDecl->getName();
1276 }
1277 }
1278 }
Fariborz Jahanianeebdb672011-09-07 16:24:21 +00001279 }
Fariborz Jahanianeebdb672011-09-07 16:24:21 +00001280 }
John McCall460ce582015-10-22 18:38:17 +00001281
Fariborz Jahanianedc29712012-06-20 17:18:31 +00001282 if (AtLoc.isInvalid()) {
Fangrui Song6907ce22018-07-30 19:24:48 +00001283 // Check when default synthesizing a property that there is
Fariborz Jahanianedc29712012-06-20 17:18:31 +00001284 // an ivar matching property name and issue warning; since this
1285 // is the most common case of not using an ivar used for backing
1286 // property in non-default synthesis case.
Craig Topperc3ec1492014-05-26 06:22:03 +00001287 ObjCInterfaceDecl *ClassDeclared=nullptr;
Fangrui Song6907ce22018-07-30 19:24:48 +00001288 ObjCIvarDecl *originalIvar =
1289 IDecl->lookupInstanceVariable(property->getIdentifier(),
Fariborz Jahanianedc29712012-06-20 17:18:31 +00001290 ClassDeclared);
1291 if (originalIvar) {
Fangrui Song6907ce22018-07-30 19:24:48 +00001292 Diag(PropertyDiagLoc,
Fariborz Jahanianedc29712012-06-20 17:18:31 +00001293 diag::warn_autosynthesis_property_ivar_match)
Craig Topperc3ec1492014-05-26 06:22:03 +00001294 << PropertyId << (Ivar == nullptr) << PropertyIvar
Fariborz Jahanian1db30fc2012-06-29 18:43:30 +00001295 << originalIvar->getIdentifier();
Fariborz Jahanianedc29712012-06-20 17:18:31 +00001296 Diag(property->getLocation(), diag::note_property_declare);
1297 Diag(originalIvar->getLocation(), diag::note_ivar_decl);
Fariborz Jahanian63d40202012-06-19 22:51:22 +00001298 }
Fariborz Jahanianedc29712012-06-20 17:18:31 +00001299 }
Fangrui Song6907ce22018-07-30 19:24:48 +00001300
Fariborz Jahanianedc29712012-06-20 17:18:31 +00001301 if (!Ivar) {
John McCall43192862011-09-13 18:31:23 +00001302 // In ARC, give the ivar a lifetime qualifier based on the
John McCall31168b02011-06-15 23:02:42 +00001303 // property attributes.
John McCall460ce582015-10-22 18:38:17 +00001304 if ((getLangOpts().ObjCAutoRefCount || isARCWeak) &&
John McCall43192862011-09-13 18:31:23 +00001305 !PropertyIvarType.getObjCLifetime() &&
1306 PropertyIvarType->isObjCRetainableType()) {
John McCall31168b02011-06-15 23:02:42 +00001307
John McCall43192862011-09-13 18:31:23 +00001308 // It's an error if we have to do this and the user didn't
1309 // explicitly write an ownership attribute on the property.
Manman Ren5b786402016-01-28 18:49:28 +00001310 if (!hasWrittenStorageAttribute(property, QueryKind) &&
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04001311 !(kind & ObjCPropertyAttribute::kind_strong)) {
Eli Friedman169ec352012-05-01 22:26:06 +00001312 Diag(PropertyDiagLoc,
Argyrios Kyrtzidise3be9792011-07-26 21:48:26 +00001313 diag::err_arc_objc_property_default_assign_on_object);
1314 Diag(property->getLocation(), diag::note_property_declare);
John McCall43192862011-09-13 18:31:23 +00001315 } else {
1316 Qualifiers::ObjCLifetime lifetime =
1317 getImpliedARCOwnership(kind, PropertyIvarType);
1318 assert(lifetime && "no lifetime for property?");
Fangrui Song6907ce22018-07-30 19:24:48 +00001319
John McCall31168b02011-06-15 23:02:42 +00001320 Qualifiers qs;
John McCall43192862011-09-13 18:31:23 +00001321 qs.addObjCLifetime(lifetime);
Fangrui Song6907ce22018-07-30 19:24:48 +00001322 PropertyIvarType = Context.getQualifiedType(PropertyIvarType, qs);
John McCall31168b02011-06-15 23:02:42 +00001323 }
John McCall31168b02011-06-15 23:02:42 +00001324 }
1325
Abramo Bagnaradff19302011-03-08 08:55:46 +00001326 Ivar = ObjCIvarDecl::Create(Context, ClassImpDecl,
Argyrios Kyrtzidis34608802012-02-28 17:50:39 +00001327 PropertyIvarLoc,PropertyIvarLoc, PropertyIvar,
Rui Ueyama49a3ad22019-07-16 04:46:31 +00001328 PropertyIvarType, /*TInfo=*/nullptr,
Fariborz Jahanian522eb7b2010-12-15 23:29:04 +00001329 ObjCIvarDecl::Private,
Craig Topperc3ec1492014-05-26 06:22:03 +00001330 (Expr *)nullptr, true);
Fariborz Jahanian873bae72013-07-05 17:18:11 +00001331 if (RequireNonAbstractType(PropertyIvarLoc,
1332 PropertyIvarType,
1333 diag::err_abstract_type_in_decl,
1334 AbstractSynthesizedIvarType)) {
1335 Diag(property->getLocation(), diag::note_property_declare);
Richard Smith81f5ade2016-12-15 02:28:18 +00001336 // An abstract type is as bad as an incomplete type.
1337 CompleteTypeErr = true;
1338 }
Volodymyr Sapsai30680e92017-10-23 22:01:41 +00001339 if (!CompleteTypeErr) {
1340 const RecordType *RecordTy = PropertyIvarType->getAs<RecordType>();
1341 if (RecordTy && RecordTy->getDecl()->hasFlexibleArrayMember()) {
1342 Diag(PropertyIvarLoc, diag::err_synthesize_variable_sized_ivar)
1343 << PropertyIvarType;
1344 CompleteTypeErr = true; // suppress later diagnostics about the ivar
1345 }
1346 }
Richard Smith81f5ade2016-12-15 02:28:18 +00001347 if (CompleteTypeErr)
Eli Friedman169ec352012-05-01 22:26:06 +00001348 Ivar->setInvalidDecl();
Daniel Dunbarab5d7ae2010-04-02 19:44:54 +00001349 ClassImpDecl->addDecl(Ivar);
Richard Smith05afe5e2012-03-13 03:12:56 +00001350 IDecl->makeDeclVisibleInContext(Ivar);
Ted Kremenekac597f32010-03-12 00:46:40 +00001351
John McCall5fb5df92012-06-20 06:18:46 +00001352 if (getLangOpts().ObjCRuntime.isFragile())
Richard Smithf8812672016-12-02 22:38:31 +00001353 Diag(PropertyDiagLoc, diag::err_missing_property_ivar_decl)
Eli Friedman169ec352012-05-01 22:26:06 +00001354 << PropertyId;
Ted Kremenekac597f32010-03-12 00:46:40 +00001355 // Note! I deliberately want it to fall thru so, we have a
1356 // a property implementation and to avoid future warnings.
John McCall5fb5df92012-06-20 06:18:46 +00001357 } else if (getLangOpts().ObjCRuntime.isNonFragile() &&
Douglas Gregor0b144e12011-12-15 00:29:59 +00001358 !declaresSameEntity(ClassDeclared, IDecl)) {
Richard Smithf8812672016-12-02 22:38:31 +00001359 Diag(PropertyDiagLoc, diag::err_ivar_in_superclass_use)
Ted Kremenekac597f32010-03-12 00:46:40 +00001360 << property->getDeclName() << Ivar->getDeclName()
1361 << ClassDeclared->getDeclName();
1362 Diag(Ivar->getLocation(), diag::note_previous_access_declaration)
Daniel Dunbar56df9772010-08-17 22:39:59 +00001363 << Ivar << Ivar->getName();
Ted Kremenekac597f32010-03-12 00:46:40 +00001364 // Note! I deliberately want it to fall thru so more errors are caught.
1365 }
Anna Zaks9802f9f2012-09-26 18:55:16 +00001366 property->setPropertyIvarDecl(Ivar);
1367
Ted Kremenekac597f32010-03-12 00:46:40 +00001368 QualType IvarType = Context.getCanonicalType(Ivar->getType());
1369
1370 // Check that type of property and its ivar are type compatible.
Fariborz Jahanian3da77752012-05-15 18:12:51 +00001371 if (!Context.hasSameType(PropertyIvarType, IvarType)) {
Fangrui Song6907ce22018-07-30 19:24:48 +00001372 if (isa<ObjCObjectPointerType>(PropertyIvarType)
John McCall31168b02011-06-15 23:02:42 +00001373 && isa<ObjCObjectPointerType>(IvarType))
Richard Smithda837032012-09-14 18:27:01 +00001374 compat =
Fariborz Jahanian9f963c22010-05-18 23:04:17 +00001375 Context.canAssignObjCInterfaces(
Fariborz Jahanianb24b5682011-03-28 23:47:18 +00001376 PropertyIvarType->getAs<ObjCObjectPointerType>(),
Fariborz Jahanian9f963c22010-05-18 23:04:17 +00001377 IvarType->getAs<ObjCObjectPointerType>());
Douglas Gregorc03a1082011-01-28 02:26:04 +00001378 else {
Argyrios Kyrtzidis34608802012-02-28 17:50:39 +00001379 compat = (CheckAssignmentConstraints(PropertyIvarLoc, PropertyIvarType,
1380 IvarType)
John McCall8cb679e2010-11-15 09:13:47 +00001381 == Compatible);
Douglas Gregorc03a1082011-01-28 02:26:04 +00001382 }
Fariborz Jahanian9f963c22010-05-18 23:04:17 +00001383 if (!compat) {
Richard Smithf8812672016-12-02 22:38:31 +00001384 Diag(PropertyDiagLoc, diag::err_property_ivar_type)
Ted Kremenek5921b832010-03-23 19:02:22 +00001385 << property->getDeclName() << PropType
1386 << Ivar->getDeclName() << IvarType;
1387 Diag(Ivar->getLocation(), diag::note_ivar_decl);
Ted Kremenekac597f32010-03-12 00:46:40 +00001388 // Note! I deliberately want it to fall thru so, we have a
1389 // a property implementation and to avoid future warnings.
1390 }
Fariborz Jahanian3da77752012-05-15 18:12:51 +00001391 else {
1392 // FIXME! Rules for properties are somewhat different that those
1393 // for assignments. Use a new routine to consolidate all cases;
1394 // specifically for property redeclarations as well as for ivars.
1395 QualType lhsType =Context.getCanonicalType(PropertyIvarType).getUnqualifiedType();
1396 QualType rhsType =Context.getCanonicalType(IvarType).getUnqualifiedType();
1397 if (lhsType != rhsType &&
1398 lhsType->isArithmeticType()) {
Richard Smithf8812672016-12-02 22:38:31 +00001399 Diag(PropertyDiagLoc, diag::err_property_ivar_type)
Fariborz Jahanian3da77752012-05-15 18:12:51 +00001400 << property->getDeclName() << PropType
1401 << Ivar->getDeclName() << IvarType;
1402 Diag(Ivar->getLocation(), diag::note_ivar_decl);
1403 // Fall thru - see previous comment
1404 }
Ted Kremenekac597f32010-03-12 00:46:40 +00001405 }
1406 // __weak is explicit. So it works on Canonical type.
John McCall31168b02011-06-15 23:02:42 +00001407 if ((PropType.isObjCGCWeak() && !IvarType.isObjCGCWeak() &&
David Blaikiebbafb8a2012-03-11 07:00:24 +00001408 getLangOpts().getGC() != LangOptions::NonGC)) {
Richard Smithf8812672016-12-02 22:38:31 +00001409 Diag(PropertyDiagLoc, diag::err_weak_property)
Ted Kremenekac597f32010-03-12 00:46:40 +00001410 << property->getDeclName() << Ivar->getDeclName();
Fariborz Jahanianeebdb672011-09-07 16:24:21 +00001411 Diag(Ivar->getLocation(), diag::note_ivar_decl);
Ted Kremenekac597f32010-03-12 00:46:40 +00001412 // Fall thru - see previous comment
1413 }
John McCall31168b02011-06-15 23:02:42 +00001414 // Fall thru - see previous comment
Ted Kremenekac597f32010-03-12 00:46:40 +00001415 if ((property->getType()->isObjCObjectPointerType() ||
1416 PropType.isObjCGCStrong()) && IvarType.isObjCGCWeak() &&
David Blaikiebbafb8a2012-03-11 07:00:24 +00001417 getLangOpts().getGC() != LangOptions::NonGC) {
Richard Smithf8812672016-12-02 22:38:31 +00001418 Diag(PropertyDiagLoc, diag::err_strong_property)
Ted Kremenekac597f32010-03-12 00:46:40 +00001419 << property->getDeclName() << Ivar->getDeclName();
1420 // Fall thru - see previous comment
1421 }
1422 }
John McCall460ce582015-10-22 18:38:17 +00001423 if (getLangOpts().ObjCAutoRefCount || isARCWeak ||
1424 Ivar->getType().getObjCLifetime())
John McCall31168b02011-06-15 23:02:42 +00001425 checkARCPropertyImpl(*this, PropertyLoc, property, Ivar);
Ted Kremenekac597f32010-03-12 00:46:40 +00001426 } else if (PropertyIvar)
1427 // @dynamic
Richard Smithf8812672016-12-02 22:38:31 +00001428 Diag(PropertyDiagLoc, diag::err_dynamic_property_ivar_decl);
Fangrui Song6907ce22018-07-30 19:24:48 +00001429
Ted Kremenekac597f32010-03-12 00:46:40 +00001430 assert (property && "ActOnPropertyImplDecl - property declaration missing");
1431 ObjCPropertyImplDecl *PIDecl =
1432 ObjCPropertyImplDecl::Create(Context, CurContext, AtLoc, PropertyLoc,
1433 property,
1434 (Synthesize ?
1435 ObjCPropertyImplDecl::Synthesize
1436 : ObjCPropertyImplDecl::Dynamic),
Douglas Gregorb1b71e52010-11-17 01:03:52 +00001437 Ivar, PropertyIvarLoc);
Eli Friedman169ec352012-05-01 22:26:06 +00001438
Fariborz Jahanian3da77752012-05-15 18:12:51 +00001439 if (CompleteTypeErr || !compat)
Eli Friedman169ec352012-05-01 22:26:06 +00001440 PIDecl->setInvalidDecl();
1441
Fariborz Jahanian25491a22010-05-05 21:52:17 +00001442 if (ObjCMethodDecl *getterMethod = property->getGetterMethodDecl()) {
1443 getterMethod->createImplicitParams(Context, IDecl);
Adrian Prantl2073dd22019-11-04 14:28:14 -08001444
1445 // Redeclare the getter within the implementation as DeclContext.
1446 if (Synthesize) {
1447 // If the method hasn't been overridden, create a synthesized implementation.
1448 ObjCMethodDecl *OMD = ClassImpDecl->getMethod(
1449 getterMethod->getSelector(), getterMethod->isInstanceMethod());
1450 if (!OMD)
1451 OMD = RedeclarePropertyAccessor(Context, IC, getterMethod, AtLoc,
1452 PropertyLoc);
1453 PIDecl->setGetterMethodDecl(OMD);
1454 }
Jim Lin466f8842020-02-18 10:48:38 +08001455
Eli Friedman169ec352012-05-01 22:26:06 +00001456 if (getLangOpts().CPlusPlus && Synthesize && !CompleteTypeErr &&
Fariborz Jahaniandddf1582010-10-15 22:42:59 +00001457 Ivar->getType()->isRecordType()) {
Fariborz Jahanian25491a22010-05-05 21:52:17 +00001458 // For Objective-C++, need to synthesize the AST for the IVAR object to be
1459 // returned by the getter as it must conform to C++'s copy-return rules.
1460 // FIXME. Eventually we want to do this for Objective-C as well.
Eli Friedmaneaf34142012-10-18 20:14:08 +00001461 SynthesizedFunctionScope Scope(*this, getterMethod);
Fariborz Jahanian25491a22010-05-05 21:52:17 +00001462 ImplicitParamDecl *SelfDecl = getterMethod->getSelfDecl();
Bruno Ricci5fc4db72018-12-21 14:10:18 +00001463 DeclRefExpr *SelfExpr = new (Context)
1464 DeclRefExpr(Context, SelfDecl, false, SelfDecl->getType(), VK_LValue,
1465 PropertyDiagLoc);
Eli Friedmaneaf34142012-10-18 20:14:08 +00001466 MarkDeclRefReferenced(SelfExpr);
Jordan Rose31c05a12014-01-14 17:29:00 +00001467 Expr *LoadSelfExpr =
1468 ImplicitCastExpr::Create(Context, SelfDecl->getType(),
Craig Topperc3ec1492014-05-26 06:22:03 +00001469 CK_LValueToRValue, SelfExpr, nullptr,
1470 VK_RValue);
Fariborz Jahanian25491a22010-05-05 21:52:17 +00001471 Expr *IvarRefExpr =
Douglas Gregore83b9562015-07-07 03:57:53 +00001472 new (Context) ObjCIvarRefExpr(Ivar,
1473 Ivar->getUsageType(SelfDecl->getType()),
1474 PropertyDiagLoc,
Fariborz Jahanianf12ff4df2013-04-02 18:57:54 +00001475 Ivar->getLocation(),
Jordan Rose31c05a12014-01-14 17:29:00 +00001476 LoadSelfExpr, true, true);
Alp Toker314cc812014-01-25 16:55:45 +00001477 ExprResult Res = PerformCopyInitialization(
1478 InitializedEntity::InitializeResult(PropertyDiagLoc,
1479 getterMethod->getReturnType(),
1480 /*NRVO=*/false),
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00001481 PropertyDiagLoc, IvarRefExpr);
Fariborz Jahanian25491a22010-05-05 21:52:17 +00001482 if (!Res.isInvalid()) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001483 Expr *ResExpr = Res.getAs<Expr>();
Fariborz Jahanian25491a22010-05-05 21:52:17 +00001484 if (ResExpr)
John McCall5d413782010-12-06 08:20:24 +00001485 ResExpr = MaybeCreateExprWithCleanups(ResExpr);
Fariborz Jahanian25491a22010-05-05 21:52:17 +00001486 PIDecl->setGetterCXXConstructor(ResExpr);
1487 }
1488 }
Fariborz Jahanianf4105f52011-06-25 00:17:46 +00001489 if (property->hasAttr<NSReturnsNotRetainedAttr>() &&
1490 !getterMethod->hasAttr<NSReturnsNotRetainedAttr>()) {
Fangrui Song6907ce22018-07-30 19:24:48 +00001491 Diag(getterMethod->getLocation(),
Fariborz Jahanianf4105f52011-06-25 00:17:46 +00001492 diag::warn_property_getter_owning_mismatch);
1493 Diag(property->getLocation(), diag::note_property_declare);
1494 }
Fariborz Jahanian39d1c422013-05-16 19:08:44 +00001495 if (getLangOpts().ObjCAutoRefCount && Synthesize)
1496 switch (getterMethod->getMethodFamily()) {
1497 case OMF_retain:
1498 case OMF_retainCount:
1499 case OMF_release:
1500 case OMF_autorelease:
1501 Diag(getterMethod->getLocation(), diag::err_arc_illegal_method_def)
1502 << 1 << getterMethod->getSelector();
1503 break;
1504 default:
1505 break;
1506 }
Fariborz Jahanian25491a22010-05-05 21:52:17 +00001507 }
Adrian Prantl2073dd22019-11-04 14:28:14 -08001508
Fariborz Jahanian25491a22010-05-05 21:52:17 +00001509 if (ObjCMethodDecl *setterMethod = property->getSetterMethodDecl()) {
1510 setterMethod->createImplicitParams(Context, IDecl);
Adrian Prantl2073dd22019-11-04 14:28:14 -08001511
1512 // Redeclare the setter within the implementation as DeclContext.
1513 if (Synthesize) {
1514 ObjCMethodDecl *OMD = ClassImpDecl->getMethod(
1515 setterMethod->getSelector(), setterMethod->isInstanceMethod());
1516 if (!OMD)
1517 OMD = RedeclarePropertyAccessor(Context, IC, setterMethod,
1518 AtLoc, PropertyLoc);
1519 PIDecl->setSetterMethodDecl(OMD);
1520 }
1521
Eli Friedman169ec352012-05-01 22:26:06 +00001522 if (getLangOpts().CPlusPlus && Synthesize && !CompleteTypeErr &&
1523 Ivar->getType()->isRecordType()) {
Fariborz Jahanian25491a22010-05-05 21:52:17 +00001524 // FIXME. Eventually we want to do this for Objective-C as well.
Eli Friedmaneaf34142012-10-18 20:14:08 +00001525 SynthesizedFunctionScope Scope(*this, setterMethod);
Fariborz Jahanian25491a22010-05-05 21:52:17 +00001526 ImplicitParamDecl *SelfDecl = setterMethod->getSelfDecl();
Bruno Ricci5fc4db72018-12-21 14:10:18 +00001527 DeclRefExpr *SelfExpr = new (Context)
1528 DeclRefExpr(Context, SelfDecl, false, SelfDecl->getType(), VK_LValue,
1529 PropertyDiagLoc);
Eli Friedmaneaf34142012-10-18 20:14:08 +00001530 MarkDeclRefReferenced(SelfExpr);
Jordan Rose31c05a12014-01-14 17:29:00 +00001531 Expr *LoadSelfExpr =
1532 ImplicitCastExpr::Create(Context, SelfDecl->getType(),
Craig Topperc3ec1492014-05-26 06:22:03 +00001533 CK_LValueToRValue, SelfExpr, nullptr,
1534 VK_RValue);
Fariborz Jahanian25491a22010-05-05 21:52:17 +00001535 Expr *lhs =
Douglas Gregore83b9562015-07-07 03:57:53 +00001536 new (Context) ObjCIvarRefExpr(Ivar,
1537 Ivar->getUsageType(SelfDecl->getType()),
1538 PropertyDiagLoc,
Fariborz Jahanianf12ff4df2013-04-02 18:57:54 +00001539 Ivar->getLocation(),
Jordan Rose31c05a12014-01-14 17:29:00 +00001540 LoadSelfExpr, true, true);
Fariborz Jahanian25491a22010-05-05 21:52:17 +00001541 ObjCMethodDecl::param_iterator P = setterMethod->param_begin();
1542 ParmVarDecl *Param = (*P);
John McCall526ab472011-10-25 17:37:35 +00001543 QualType T = Param->getType().getNonReferenceType();
Bruno Ricci5fc4db72018-12-21 14:10:18 +00001544 DeclRefExpr *rhs = new (Context)
1545 DeclRefExpr(Context, Param, false, T, VK_LValue, PropertyDiagLoc);
Eli Friedmaneaf34142012-10-18 20:14:08 +00001546 MarkDeclRefReferenced(rhs);
Fangrui Song6907ce22018-07-30 19:24:48 +00001547 ExprResult Res = BuildBinOp(S, PropertyDiagLoc,
John McCalle3027922010-08-25 11:45:40 +00001548 BO_Assign, lhs, rhs);
Fangrui Song6907ce22018-07-30 19:24:48 +00001549 if (property->getPropertyAttributes() &
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04001550 ObjCPropertyAttribute::kind_atomic) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001551 Expr *callExpr = Res.getAs<Expr>();
Fangrui Song6907ce22018-07-30 19:24:48 +00001552 if (const CXXOperatorCallExpr *CXXCE =
Fariborz Jahanian13d3f862011-10-07 21:08:14 +00001553 dyn_cast_or_null<CXXOperatorCallExpr>(callExpr))
1554 if (const FunctionDecl *FuncDecl = CXXCE->getDirectCallee())
Fariborz Jahanian565ed7a2011-10-06 18:38:18 +00001555 if (!FuncDecl->isTrivial())
Fariborz Jahaniana08a7472012-01-10 00:37:01 +00001556 if (property->getType()->isReferenceType()) {
Fangrui Song6907ce22018-07-30 19:24:48 +00001557 Diag(PropertyDiagLoc,
Fariborz Jahaniana08a7472012-01-10 00:37:01 +00001558 diag::err_atomic_property_nontrivial_assign_op)
Fariborz Jahanian565ed7a2011-10-06 18:38:18 +00001559 << property->getType();
Stephen Kellyf2ceec42018-08-09 21:08:08 +00001560 Diag(FuncDecl->getBeginLoc(), diag::note_callee_decl)
1561 << FuncDecl;
Fariborz Jahaniana08a7472012-01-10 00:37:01 +00001562 }
Fariborz Jahanian565ed7a2011-10-06 18:38:18 +00001563 }
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001564 PIDecl->setSetterCXXAssignment(Res.getAs<Expr>());
Fariborz Jahanian25491a22010-05-05 21:52:17 +00001565 }
1566 }
Fangrui Song6907ce22018-07-30 19:24:48 +00001567
Ted Kremenekac597f32010-03-12 00:46:40 +00001568 if (IC) {
1569 if (Synthesize)
1570 if (ObjCPropertyImplDecl *PPIDecl =
1571 IC->FindPropertyImplIvarDecl(PropertyIvar)) {
Richard Smithf8812672016-12-02 22:38:31 +00001572 Diag(PropertyLoc, diag::err_duplicate_ivar_use)
Ted Kremenekac597f32010-03-12 00:46:40 +00001573 << PropertyId << PPIDecl->getPropertyDecl()->getIdentifier()
1574 << PropertyIvar;
1575 Diag(PPIDecl->getLocation(), diag::note_previous_use);
1576 }
1577
1578 if (ObjCPropertyImplDecl *PPIDecl
Manman Ren5b786402016-01-28 18:49:28 +00001579 = IC->FindPropertyImplDecl(PropertyId, QueryKind)) {
Richard Smithf8812672016-12-02 22:38:31 +00001580 Diag(PropertyLoc, diag::err_property_implemented) << PropertyId;
Ted Kremenekac597f32010-03-12 00:46:40 +00001581 Diag(PPIDecl->getLocation(), diag::note_previous_declaration);
Craig Topperc3ec1492014-05-26 06:22:03 +00001582 return nullptr;
Ted Kremenekac597f32010-03-12 00:46:40 +00001583 }
1584 IC->addPropertyImplementation(PIDecl);
David Blaikiebbafb8a2012-03-11 07:00:24 +00001585 if (getLangOpts().ObjCDefaultSynthProperties &&
John McCall5fb5df92012-06-20 06:18:46 +00001586 getLangOpts().ObjCRuntime.isNonFragile() &&
Ted Kremenek0c2c90b2012-01-05 22:47:47 +00001587 !IDecl->isObjCRequiresPropertyDefs()) {
Fariborz Jahanian18722982010-07-17 00:59:30 +00001588 // Diagnose if an ivar was lazily synthesdized due to a previous
1589 // use and if 1) property is @dynamic or 2) property is synthesized
Fariborz Jahanian76b35372010-08-24 18:48:05 +00001590 // but it requires an ivar of different name.
Craig Topperc3ec1492014-05-26 06:22:03 +00001591 ObjCInterfaceDecl *ClassDeclared=nullptr;
1592 ObjCIvarDecl *Ivar = nullptr;
Fariborz Jahanian18722982010-07-17 00:59:30 +00001593 if (!Synthesize)
1594 Ivar = IDecl->lookupInstanceVariable(PropertyId, ClassDeclared);
1595 else {
1596 if (PropertyIvar && PropertyIvar != PropertyId)
1597 Ivar = IDecl->lookupInstanceVariable(PropertyId, ClassDeclared);
1598 }
Fariborz Jahanian76b35372010-08-24 18:48:05 +00001599 // Issue diagnostics only if Ivar belongs to current class.
Fangrui Song6907ce22018-07-30 19:24:48 +00001600 if (Ivar && Ivar->getSynthesize() &&
Douglas Gregor0b144e12011-12-15 00:29:59 +00001601 declaresSameEntity(IC->getClassInterface(), ClassDeclared)) {
Fangrui Song6907ce22018-07-30 19:24:48 +00001602 Diag(Ivar->getLocation(), diag::err_undeclared_var_use)
Fariborz Jahanian18722982010-07-17 00:59:30 +00001603 << PropertyId;
1604 Ivar->setInvalidDecl();
1605 }
1606 }
Ted Kremenekac597f32010-03-12 00:46:40 +00001607 } else {
1608 if (Synthesize)
1609 if (ObjCPropertyImplDecl *PPIDecl =
1610 CatImplClass->FindPropertyImplIvarDecl(PropertyIvar)) {
Richard Smithf8812672016-12-02 22:38:31 +00001611 Diag(PropertyDiagLoc, diag::err_duplicate_ivar_use)
Ted Kremenekac597f32010-03-12 00:46:40 +00001612 << PropertyId << PPIDecl->getPropertyDecl()->getIdentifier()
1613 << PropertyIvar;
1614 Diag(PPIDecl->getLocation(), diag::note_previous_use);
1615 }
1616
1617 if (ObjCPropertyImplDecl *PPIDecl =
Manman Ren5b786402016-01-28 18:49:28 +00001618 CatImplClass->FindPropertyImplDecl(PropertyId, QueryKind)) {
Richard Smithf8812672016-12-02 22:38:31 +00001619 Diag(PropertyDiagLoc, diag::err_property_implemented) << PropertyId;
Ted Kremenekac597f32010-03-12 00:46:40 +00001620 Diag(PPIDecl->getLocation(), diag::note_previous_declaration);
Craig Topperc3ec1492014-05-26 06:22:03 +00001621 return nullptr;
Ted Kremenekac597f32010-03-12 00:46:40 +00001622 }
1623 CatImplClass->addPropertyImplementation(PIDecl);
1624 }
1625
Pierre Habouzit3adcc782020-01-30 16:48:11 -08001626 if (PIDecl->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic &&
1627 PIDecl->getPropertyDecl() &&
1628 PIDecl->getPropertyDecl()->isDirectProperty()) {
1629 Diag(PropertyLoc, diag::err_objc_direct_dynamic_property);
1630 Diag(PIDecl->getPropertyDecl()->getLocation(),
1631 diag::note_previous_declaration);
1632 return nullptr;
1633 }
1634
John McCall48871652010-08-21 09:40:31 +00001635 return PIDecl;
Ted Kremenekac597f32010-03-12 00:46:40 +00001636}
1637
1638//===----------------------------------------------------------------------===//
1639// Helper methods.
1640//===----------------------------------------------------------------------===//
1641
Ted Kremenek7a7a0802010-03-12 00:38:38 +00001642/// DiagnosePropertyMismatch - Compares two properties for their
1643/// attributes and types and warns on a variety of inconsistencies.
1644///
1645void
1646Sema::DiagnosePropertyMismatch(ObjCPropertyDecl *Property,
1647 ObjCPropertyDecl *SuperProperty,
Fariborz Jahanianb809a0e2013-10-04 18:06:08 +00001648 const IdentifierInfo *inheritedName,
1649 bool OverridingProtocolProperty) {
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04001650 ObjCPropertyAttribute::Kind CAttr = Property->getPropertyAttributes();
1651 ObjCPropertyAttribute::Kind SAttr = SuperProperty->getPropertyAttributes();
Fangrui Song6907ce22018-07-30 19:24:48 +00001652
Fariborz Jahanianb809a0e2013-10-04 18:06:08 +00001653 // We allow readonly properties without an explicit ownership
1654 // (assign/unsafe_unretained/weak/retain/strong/copy) in super class
1655 // to be overridden by a property with any explicit ownership in the subclass.
1656 if (!OverridingProtocolProperty &&
1657 !getOwnershipRule(SAttr) && getOwnershipRule(CAttr))
1658 ;
1659 else {
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04001660 if ((CAttr & ObjCPropertyAttribute::kind_readonly) &&
1661 (SAttr & ObjCPropertyAttribute::kind_readwrite))
Fariborz Jahanianb809a0e2013-10-04 18:06:08 +00001662 Diag(Property->getLocation(), diag::warn_readonly_property)
1663 << Property->getDeclName() << inheritedName;
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04001664 if ((CAttr & ObjCPropertyAttribute::kind_copy) !=
1665 (SAttr & ObjCPropertyAttribute::kind_copy))
John McCall31168b02011-06-15 23:02:42 +00001666 Diag(Property->getLocation(), diag::warn_property_attribute)
Fariborz Jahanianb809a0e2013-10-04 18:06:08 +00001667 << Property->getDeclName() << "copy" << inheritedName;
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04001668 else if (!(SAttr & ObjCPropertyAttribute::kind_readonly)) {
1669 unsigned CAttrRetain = (CAttr & (ObjCPropertyAttribute::kind_retain |
1670 ObjCPropertyAttribute::kind_strong));
1671 unsigned SAttrRetain = (SAttr & (ObjCPropertyAttribute::kind_retain |
1672 ObjCPropertyAttribute::kind_strong));
Fariborz Jahanianb809a0e2013-10-04 18:06:08 +00001673 bool CStrong = (CAttrRetain != 0);
1674 bool SStrong = (SAttrRetain != 0);
1675 if (CStrong != SStrong)
1676 Diag(Property->getLocation(), diag::warn_property_attribute)
1677 << Property->getDeclName() << "retain (or strong)" << inheritedName;
1678 }
John McCall31168b02011-06-15 23:02:42 +00001679 }
Ted Kremenek7a7a0802010-03-12 00:38:38 +00001680
Douglas Gregor429183e2015-12-09 22:57:32 +00001681 // Check for nonatomic; note that nonatomic is effectively
1682 // meaningless for readonly properties, so don't diagnose if the
1683 // atomic property is 'readonly'.
Douglas Gregor9dd25b72015-12-10 23:02:09 +00001684 checkAtomicPropertyMismatch(*this, SuperProperty, Property, false);
Alex Lorenz05a63ee2017-10-06 19:24:26 +00001685 // Readonly properties from protocols can be implemented as "readwrite"
1686 // with a custom setter name.
1687 if (Property->getSetterName() != SuperProperty->getSetterName() &&
1688 !(SuperProperty->isReadOnly() &&
1689 isa<ObjCProtocolDecl>(SuperProperty->getDeclContext()))) {
Ted Kremenek7a7a0802010-03-12 00:38:38 +00001690 Diag(Property->getLocation(), diag::warn_property_attribute)
1691 << Property->getDeclName() << "setter" << inheritedName;
Fariborz Jahanian234c00d2013-02-10 00:16:04 +00001692 Diag(SuperProperty->getLocation(), diag::note_property_declare);
1693 }
1694 if (Property->getGetterName() != SuperProperty->getGetterName()) {
Ted Kremenek7a7a0802010-03-12 00:38:38 +00001695 Diag(Property->getLocation(), diag::warn_property_attribute)
1696 << Property->getDeclName() << "getter" << inheritedName;
Fariborz Jahanian234c00d2013-02-10 00:16:04 +00001697 Diag(SuperProperty->getLocation(), diag::note_property_declare);
1698 }
Ted Kremenek7a7a0802010-03-12 00:38:38 +00001699
1700 QualType LHSType =
1701 Context.getCanonicalType(SuperProperty->getType());
1702 QualType RHSType =
1703 Context.getCanonicalType(Property->getType());
1704
Fariborz Jahanianc0f6af22011-07-12 22:05:16 +00001705 if (!Context.propertyTypesAreCompatible(LHSType, RHSType)) {
Fariborz Jahanian17585e72011-07-13 17:55:01 +00001706 // Do cases not handled in above.
1707 // FIXME. For future support of covariant property types, revisit this.
1708 bool IncompatibleObjC = false;
1709 QualType ConvertedType;
Fangrui Song6907ce22018-07-30 19:24:48 +00001710 if (!isObjCPointerConversion(RHSType, LHSType,
Fariborz Jahanian17585e72011-07-13 17:55:01 +00001711 ConvertedType, IncompatibleObjC) ||
Fariborz Jahanianfa643c82011-10-12 00:00:57 +00001712 IncompatibleObjC) {
Fariborz Jahanian17585e72011-07-13 17:55:01 +00001713 Diag(Property->getLocation(), diag::warn_property_types_are_incompatible)
1714 << Property->getType() << SuperProperty->getType() << inheritedName;
Fariborz Jahanianfa643c82011-10-12 00:00:57 +00001715 Diag(SuperProperty->getLocation(), diag::note_property_declare);
1716 }
Ted Kremenek7a7a0802010-03-12 00:38:38 +00001717 }
1718}
1719
1720bool Sema::DiagnosePropertyAccessorMismatch(ObjCPropertyDecl *property,
1721 ObjCMethodDecl *GetterMethod,
1722 SourceLocation Loc) {
Fariborz Jahanian0ebc0fa2012-05-15 22:37:04 +00001723 if (!GetterMethod)
1724 return false;
Alp Toker314cc812014-01-25 16:55:45 +00001725 QualType GetterType = GetterMethod->getReturnType().getNonReferenceType();
Akira Hatanakade6f25f2016-05-26 00:37:30 +00001726 QualType PropertyRValueType =
1727 property->getType().getNonReferenceType().getAtomicUnqualifiedType();
1728 bool compat = Context.hasSameType(PropertyRValueType, GetterType);
Fariborz Jahanian0ebc0fa2012-05-15 22:37:04 +00001729 if (!compat) {
Douglas Gregor1cbb2892015-12-08 22:45:17 +00001730 const ObjCObjectPointerType *propertyObjCPtr = nullptr;
1731 const ObjCObjectPointerType *getterObjCPtr = nullptr;
Akira Hatanakade6f25f2016-05-26 00:37:30 +00001732 if ((propertyObjCPtr =
1733 PropertyRValueType->getAs<ObjCObjectPointerType>()) &&
Douglas Gregor1cbb2892015-12-08 22:45:17 +00001734 (getterObjCPtr = GetterType->getAs<ObjCObjectPointerType>()))
1735 compat = Context.canAssignObjCInterfaces(getterObjCPtr, propertyObjCPtr);
Akira Hatanakade6f25f2016-05-26 00:37:30 +00001736 else if (CheckAssignmentConstraints(Loc, GetterType, PropertyRValueType)
Fariborz Jahanian0ebc0fa2012-05-15 22:37:04 +00001737 != Compatible) {
Richard Smithf8812672016-12-02 22:38:31 +00001738 Diag(Loc, diag::err_property_accessor_type)
Akira Hatanakade6f25f2016-05-26 00:37:30 +00001739 << property->getDeclName() << PropertyRValueType
Fariborz Jahanian0ebc0fa2012-05-15 22:37:04 +00001740 << GetterMethod->getSelector() << GetterType;
1741 Diag(GetterMethod->getLocation(), diag::note_declared_at);
1742 return true;
1743 } else {
1744 compat = true;
Akira Hatanakade6f25f2016-05-26 00:37:30 +00001745 QualType lhsType = Context.getCanonicalType(PropertyRValueType);
Fariborz Jahanian0ebc0fa2012-05-15 22:37:04 +00001746 QualType rhsType =Context.getCanonicalType(GetterType).getUnqualifiedType();
1747 if (lhsType != rhsType && lhsType->isArithmeticType())
1748 compat = false;
Ted Kremenek7a7a0802010-03-12 00:38:38 +00001749 }
1750 }
Fangrui Song6907ce22018-07-30 19:24:48 +00001751
Fariborz Jahanian0ebc0fa2012-05-15 22:37:04 +00001752 if (!compat) {
1753 Diag(Loc, diag::warn_accessor_property_type_mismatch)
1754 << property->getDeclName()
1755 << GetterMethod->getSelector();
1756 Diag(GetterMethod->getLocation(), diag::note_declared_at);
1757 return true;
1758 }
1759
Ted Kremenek7a7a0802010-03-12 00:38:38 +00001760 return false;
1761}
1762
Ted Kremenek7a7a0802010-03-12 00:38:38 +00001763/// CollectImmediateProperties - This routine collects all properties in
Douglas Gregora669ab92013-01-21 18:35:55 +00001764/// the class and its conforming protocols; but not those in its super class.
Manman Ren16a7d632016-04-12 23:01:55 +00001765static void
1766CollectImmediateProperties(ObjCContainerDecl *CDecl,
1767 ObjCContainerDecl::PropertyMap &PropMap,
1768 ObjCContainerDecl::PropertyMap &SuperPropMap,
1769 bool CollectClassPropsOnly = false,
1770 bool IncludeProtocols = true) {
Ted Kremenek7a7a0802010-03-12 00:38:38 +00001771 if (ObjCInterfaceDecl *IDecl = dyn_cast<ObjCInterfaceDecl>(CDecl)) {
Manman Ren16a7d632016-04-12 23:01:55 +00001772 for (auto *Prop : IDecl->properties()) {
1773 if (CollectClassPropsOnly && !Prop->isClassProperty())
1774 continue;
Manman Ren494ee5b2016-01-28 23:36:05 +00001775 PropMap[std::make_pair(Prop->getIdentifier(), Prop->isClassProperty())] =
1776 Prop;
Manman Ren16a7d632016-04-12 23:01:55 +00001777 }
Douglas Gregoracf4fd32015-11-03 01:15:46 +00001778
1779 // Collect the properties from visible extensions.
1780 for (auto *Ext : IDecl->visible_extensions())
Manman Ren16a7d632016-04-12 23:01:55 +00001781 CollectImmediateProperties(Ext, PropMap, SuperPropMap,
1782 CollectClassPropsOnly, IncludeProtocols);
Douglas Gregoracf4fd32015-11-03 01:15:46 +00001783
Ted Kremenek204c3c52014-02-22 00:02:03 +00001784 if (IncludeProtocols) {
1785 // Scan through class's protocols.
Aaron Ballmana9f49e32014-03-13 20:55:22 +00001786 for (auto *PI : IDecl->all_referenced_protocols())
Manman Ren16a7d632016-04-12 23:01:55 +00001787 CollectImmediateProperties(PI, PropMap, SuperPropMap,
1788 CollectClassPropsOnly);
Ted Kremenek204c3c52014-02-22 00:02:03 +00001789 }
Ted Kremenek7a7a0802010-03-12 00:38:38 +00001790 }
1791 if (ObjCCategoryDecl *CATDecl = dyn_cast<ObjCCategoryDecl>(CDecl)) {
Manman Ren16a7d632016-04-12 23:01:55 +00001792 for (auto *Prop : CATDecl->properties()) {
1793 if (CollectClassPropsOnly && !Prop->isClassProperty())
1794 continue;
Manman Ren494ee5b2016-01-28 23:36:05 +00001795 PropMap[std::make_pair(Prop->getIdentifier(), Prop->isClassProperty())] =
1796 Prop;
Manman Ren16a7d632016-04-12 23:01:55 +00001797 }
Ted Kremenek204c3c52014-02-22 00:02:03 +00001798 if (IncludeProtocols) {
1799 // Scan through class's protocols.
Aaron Ballman19a41762014-03-14 12:55:57 +00001800 for (auto *PI : CATDecl->protocols())
Manman Ren16a7d632016-04-12 23:01:55 +00001801 CollectImmediateProperties(PI, PropMap, SuperPropMap,
1802 CollectClassPropsOnly);
Ted Kremenek204c3c52014-02-22 00:02:03 +00001803 }
Ted Kremenek7a7a0802010-03-12 00:38:38 +00001804 }
1805 else if (ObjCProtocolDecl *PDecl = dyn_cast<ObjCProtocolDecl>(CDecl)) {
Manman Ren494ee5b2016-01-28 23:36:05 +00001806 for (auto *Prop : PDecl->properties()) {
Manman Ren16a7d632016-04-12 23:01:55 +00001807 if (CollectClassPropsOnly && !Prop->isClassProperty())
1808 continue;
Manman Ren494ee5b2016-01-28 23:36:05 +00001809 ObjCPropertyDecl *PropertyFromSuper =
1810 SuperPropMap[std::make_pair(Prop->getIdentifier(),
1811 Prop->isClassProperty())];
Fangrui Song6907ce22018-07-30 19:24:48 +00001812 // Exclude property for protocols which conform to class's super-class,
Fariborz Jahanian66f9a652010-06-29 18:12:32 +00001813 // as super-class has to implement the property.
Fangrui Song6907ce22018-07-30 19:24:48 +00001814 if (!PropertyFromSuper ||
Fariborz Jahanian698bd312011-09-27 00:23:52 +00001815 PropertyFromSuper->getIdentifier() != Prop->getIdentifier()) {
Manman Ren494ee5b2016-01-28 23:36:05 +00001816 ObjCPropertyDecl *&PropEntry =
1817 PropMap[std::make_pair(Prop->getIdentifier(),
1818 Prop->isClassProperty())];
Fariborz Jahanian66f9a652010-06-29 18:12:32 +00001819 if (!PropEntry)
1820 PropEntry = Prop;
1821 }
Ted Kremenek7a7a0802010-03-12 00:38:38 +00001822 }
Manman Ren16a7d632016-04-12 23:01:55 +00001823 // Scan through protocol's protocols.
Aaron Ballman0f6e64d2014-03-13 22:58:06 +00001824 for (auto *PI : PDecl->protocols())
Manman Ren16a7d632016-04-12 23:01:55 +00001825 CollectImmediateProperties(PI, PropMap, SuperPropMap,
1826 CollectClassPropsOnly);
Ted Kremenek7a7a0802010-03-12 00:38:38 +00001827 }
1828}
1829
Fariborz Jahanianbdb1b0d2010-05-14 18:35:57 +00001830/// CollectSuperClassPropertyImplementations - This routine collects list of
1831/// properties to be implemented in super class(s) and also coming from their
1832/// conforming protocols.
1833static void CollectSuperClassPropertyImplementations(ObjCInterfaceDecl *CDecl,
Anna Zaks408f7d02012-10-31 01:18:22 +00001834 ObjCInterfaceDecl::PropertyMap &PropMap) {
Fariborz Jahanianbdb1b0d2010-05-14 18:35:57 +00001835 if (ObjCInterfaceDecl *SDecl = CDecl->getSuperClass()) {
Fariborz Jahanianaedaaa42013-02-14 22:33:34 +00001836 ObjCInterfaceDecl::PropertyDeclOrder PO;
Fariborz Jahanianbdb1b0d2010-05-14 18:35:57 +00001837 while (SDecl) {
Fariborz Jahanianaedaaa42013-02-14 22:33:34 +00001838 SDecl->collectPropertiesToImplement(PropMap, PO);
Fariborz Jahanianbdb1b0d2010-05-14 18:35:57 +00001839 SDecl = SDecl->getSuperClass();
1840 }
1841 }
1842}
1843
Fariborz Jahaniana934a022013-02-14 19:07:19 +00001844/// IvarBacksCurrentMethodAccessor - This routine returns 'true' if 'IV' is
1845/// an ivar synthesized for 'Method' and 'Method' is a property accessor
1846/// declared in class 'IFace'.
1847bool
1848Sema::IvarBacksCurrentMethodAccessor(ObjCInterfaceDecl *IFace,
1849 ObjCMethodDecl *Method, ObjCIvarDecl *IV) {
1850 if (!IV->getSynthesize())
1851 return false;
1852 ObjCMethodDecl *IMD = IFace->lookupMethod(Method->getSelector(),
1853 Method->isInstanceMethod());
1854 if (!IMD || !IMD->isPropertyAccessor())
1855 return false;
Fangrui Song6907ce22018-07-30 19:24:48 +00001856
Fariborz Jahaniana934a022013-02-14 19:07:19 +00001857 // look up a property declaration whose one of its accessors is implemented
1858 // by this method.
Manman Rena7a8b1f2016-01-26 18:05:23 +00001859 for (const auto *Property : IFace->instance_properties()) {
Aaron Ballmandc4bea42014-03-13 18:47:37 +00001860 if ((Property->getGetterName() == IMD->getSelector() ||
1861 Property->getSetterName() == IMD->getSelector()) &&
1862 (Property->getPropertyIvarDecl() == IV))
Fariborz Jahaniana934a022013-02-14 19:07:19 +00001863 return true;
1864 }
Douglas Gregoracf4fd32015-11-03 01:15:46 +00001865 // Also look up property declaration in class extension whose one of its
1866 // accessors is implemented by this method.
1867 for (const auto *Ext : IFace->known_extensions())
Manman Rena7a8b1f2016-01-26 18:05:23 +00001868 for (const auto *Property : Ext->instance_properties())
Douglas Gregoracf4fd32015-11-03 01:15:46 +00001869 if ((Property->getGetterName() == IMD->getSelector() ||
1870 Property->getSetterName() == IMD->getSelector()) &&
1871 (Property->getPropertyIvarDecl() == IV))
1872 return true;
Fariborz Jahaniana934a022013-02-14 19:07:19 +00001873 return false;
1874}
1875
Fariborz Jahanian6766f8d2014-03-05 23:44:00 +00001876static bool SuperClassImplementsProperty(ObjCInterfaceDecl *IDecl,
1877 ObjCPropertyDecl *Prop) {
1878 bool SuperClassImplementsGetter = false;
1879 bool SuperClassImplementsSetter = false;
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04001880 if (Prop->getPropertyAttributes() & ObjCPropertyAttribute::kind_readonly)
Fariborz Jahanian6766f8d2014-03-05 23:44:00 +00001881 SuperClassImplementsSetter = true;
Bob Wilson3ca79042014-03-11 17:17:16 +00001882
Fariborz Jahanian6766f8d2014-03-05 23:44:00 +00001883 while (IDecl->getSuperClass()) {
1884 ObjCInterfaceDecl *SDecl = IDecl->getSuperClass();
1885 if (!SuperClassImplementsGetter && SDecl->getInstanceMethod(Prop->getGetterName()))
1886 SuperClassImplementsGetter = true;
Bob Wilson3ca79042014-03-11 17:17:16 +00001887
Fariborz Jahanian6766f8d2014-03-05 23:44:00 +00001888 if (!SuperClassImplementsSetter && SDecl->getInstanceMethod(Prop->getSetterName()))
1889 SuperClassImplementsSetter = true;
1890 if (SuperClassImplementsGetter && SuperClassImplementsSetter)
1891 return true;
1892 IDecl = IDecl->getSuperClass();
1893 }
1894 return false;
1895}
Fariborz Jahaniana934a022013-02-14 19:07:19 +00001896
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00001897/// Default synthesizes all properties which must be synthesized
James Dennett2a4d13c2012-06-15 07:13:21 +00001898/// in class's \@implementation.
Alex Lorenz6c9af502017-07-03 10:12:24 +00001899void Sema::DefaultSynthesizeProperties(Scope *S, ObjCImplDecl *IMPDecl,
1900 ObjCInterfaceDecl *IDecl,
1901 SourceLocation AtEnd) {
Anna Zaks673d76b2012-10-18 19:17:53 +00001902 ObjCInterfaceDecl::PropertyMap PropMap;
Fariborz Jahanianaedaaa42013-02-14 22:33:34 +00001903 ObjCInterfaceDecl::PropertyDeclOrder PropertyOrder;
1904 IDecl->collectPropertiesToImplement(PropMap, PropertyOrder);
Fariborz Jahanianbdb1b0d2010-05-14 18:35:57 +00001905 if (PropMap.empty())
1906 return;
Anna Zaks673d76b2012-10-18 19:17:53 +00001907 ObjCInterfaceDecl::PropertyMap SuperPropMap;
Fariborz Jahanianbdb1b0d2010-05-14 18:35:57 +00001908 CollectSuperClassPropertyImplementations(IDecl, SuperPropMap);
Fangrui Song6907ce22018-07-30 19:24:48 +00001909
Fariborz Jahanianaedaaa42013-02-14 22:33:34 +00001910 for (unsigned i = 0, e = PropertyOrder.size(); i != e; i++) {
1911 ObjCPropertyDecl *Prop = PropertyOrder[i];
Fariborz Jahanianbbc126e2013-06-07 20:26:51 +00001912 // Is there a matching property synthesize/dynamic?
1913 if (Prop->isInvalidDecl() ||
Manman Ren494ee5b2016-01-28 23:36:05 +00001914 Prop->isClassProperty() ||
Fariborz Jahanianbbc126e2013-06-07 20:26:51 +00001915 Prop->getPropertyImplementation() == ObjCPropertyDecl::Optional)
1916 continue;
1917 // Property may have been synthesized by user.
Manman Ren5b786402016-01-28 18:49:28 +00001918 if (IMPDecl->FindPropertyImplDecl(
1919 Prop->getIdentifier(), Prop->getQueryKind()))
Fariborz Jahanianbbc126e2013-06-07 20:26:51 +00001920 continue;
Adrian Prantl2073dd22019-11-04 14:28:14 -08001921 ObjCMethodDecl *ImpMethod = IMPDecl->getInstanceMethod(Prop->getGetterName());
1922 if (ImpMethod && !ImpMethod->getBody()) {
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04001923 if (Prop->getPropertyAttributes() & ObjCPropertyAttribute::kind_readonly)
Fariborz Jahanianbbc126e2013-06-07 20:26:51 +00001924 continue;
Adrian Prantl2073dd22019-11-04 14:28:14 -08001925 ImpMethod = IMPDecl->getInstanceMethod(Prop->getSetterName());
1926 if (ImpMethod && !ImpMethod->getBody())
Fariborz Jahanianbbc126e2013-06-07 20:26:51 +00001927 continue;
1928 }
Fariborz Jahanian46145242013-06-07 18:32:55 +00001929 if (ObjCPropertyImplDecl *PID =
1930 IMPDecl->FindPropertyImplIvarDecl(Prop->getIdentifier())) {
Fariborz Jahanian6c9ee7b2014-07-26 20:52:26 +00001931 Diag(Prop->getLocation(), diag::warn_no_autosynthesis_shared_ivar_property)
1932 << Prop->getIdentifier();
Yaron Keren8b563662015-10-03 10:46:20 +00001933 if (PID->getLocation().isValid())
Fariborz Jahanian6c9ee7b2014-07-26 20:52:26 +00001934 Diag(PID->getLocation(), diag::note_property_synthesize);
Fariborz Jahanian46145242013-06-07 18:32:55 +00001935 continue;
1936 }
Manman Ren494ee5b2016-01-28 23:36:05 +00001937 ObjCPropertyDecl *PropInSuperClass =
1938 SuperPropMap[std::make_pair(Prop->getIdentifier(),
1939 Prop->isClassProperty())];
Ted Kremenek6d69ac82013-12-12 23:40:14 +00001940 if (ObjCProtocolDecl *Proto =
1941 dyn_cast<ObjCProtocolDecl>(Prop->getDeclContext())) {
Fariborz Jahanian9e49b6a2011-12-15 01:03:18 +00001942 // We won't auto-synthesize properties declared in protocols.
Fariborz Jahanian6766f8d2014-03-05 23:44:00 +00001943 // Suppress the warning if class's superclass implements property's
1944 // getter and implements property's setter (if readwrite property).
Fariborz Jahanian3b230082014-08-29 20:29:31 +00001945 // Or, if property is going to be implemented in its super class.
1946 if (!SuperClassImplementsProperty(IDecl, Prop) && !PropInSuperClass) {
Fariborz Jahanian6766f8d2014-03-05 23:44:00 +00001947 Diag(IMPDecl->getLocation(),
1948 diag::warn_auto_synthesizing_protocol_property)
1949 << Prop << Proto;
1950 Diag(Prop->getLocation(), diag::note_property_declare);
Alex Lorenz6c9af502017-07-03 10:12:24 +00001951 std::string FixIt =
1952 (Twine("@synthesize ") + Prop->getName() + ";\n\n").str();
1953 Diag(AtEnd, diag::note_add_synthesize_directive)
1954 << FixItHint::CreateInsertion(AtEnd, FixIt);
Fariborz Jahanian6766f8d2014-03-05 23:44:00 +00001955 }
Fariborz Jahanian9e49b6a2011-12-15 01:03:18 +00001956 continue;
1957 }
Fariborz Jahanianc9b77152014-08-29 18:31:16 +00001958 // If property to be implemented in the super class, ignore.
Fariborz Jahanian3b230082014-08-29 20:29:31 +00001959 if (PropInSuperClass) {
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04001960 if ((Prop->getPropertyAttributes() &
1961 ObjCPropertyAttribute::kind_readwrite) &&
Fariborz Jahanianc9b77152014-08-29 18:31:16 +00001962 (PropInSuperClass->getPropertyAttributes() &
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04001963 ObjCPropertyAttribute::kind_readonly) &&
Fariborz Jahanianc9b77152014-08-29 18:31:16 +00001964 !IMPDecl->getInstanceMethod(Prop->getSetterName()) &&
1965 !IDecl->HasUserDeclaredSetterMethod(Prop)) {
1966 Diag(Prop->getLocation(), diag::warn_no_autosynthesis_property)
1967 << Prop->getIdentifier();
1968 Diag(PropInSuperClass->getLocation(), diag::note_property_declare);
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04001969 } else {
Fariborz Jahanianc9b77152014-08-29 18:31:16 +00001970 Diag(Prop->getLocation(), diag::warn_autosynthesis_property_in_superclass)
1971 << Prop->getIdentifier();
Fariborz Jahanianc985a7f2014-10-10 22:08:23 +00001972 Diag(PropInSuperClass->getLocation(), diag::note_property_declare);
Fariborz Jahanianc9b77152014-08-29 18:31:16 +00001973 Diag(IMPDecl->getLocation(), diag::note_while_in_implementation);
1974 }
1975 continue;
1976 }
Ted Kremenek74a9f982010-09-24 01:23:01 +00001977 // We use invalid SourceLocations for the synthesized ivars since they
1978 // aren't really synthesized at a particular location; they just exist.
1979 // Saying that they are located at the @implementation isn't really going
1980 // to help users.
Fariborz Jahaniand5f34f92012-05-03 16:43:30 +00001981 ObjCPropertyImplDecl *PIDecl = dyn_cast_or_null<ObjCPropertyImplDecl>(
1982 ActOnPropertyImplDecl(S, SourceLocation(), SourceLocation(),
1983 true,
1984 /* property = */ Prop->getIdentifier(),
Anna Zaks454477c2012-09-27 19:45:11 +00001985 /* ivar = */ Prop->getDefaultSynthIvarName(Context),
Manman Ren5b786402016-01-28 18:49:28 +00001986 Prop->getLocation(), Prop->getQueryKind()));
Alex Lorenz1e23dd62017-08-15 12:40:01 +00001987 if (PIDecl && !Prop->isUnavailable()) {
Fariborz Jahaniand5f34f92012-05-03 16:43:30 +00001988 Diag(Prop->getLocation(), diag::warn_missing_explicit_synthesis);
Fariborz Jahaniand6886e72012-05-08 18:03:39 +00001989 Diag(IMPDecl->getLocation(), diag::note_while_in_implementation);
Fariborz Jahaniand5f34f92012-05-03 16:43:30 +00001990 }
Ted Kremenek74a9f982010-09-24 01:23:01 +00001991 }
Fariborz Jahanianbdb1b0d2010-05-14 18:35:57 +00001992}
Ted Kremenek7a7a0802010-03-12 00:38:38 +00001993
Alex Lorenz6c9af502017-07-03 10:12:24 +00001994void Sema::DefaultSynthesizeProperties(Scope *S, Decl *D,
1995 SourceLocation AtEnd) {
John McCall5fb5df92012-06-20 06:18:46 +00001996 if (!LangOpts.ObjCDefaultSynthProperties || LangOpts.ObjCRuntime.isFragile())
Fariborz Jahanian97d744b2011-08-31 22:24:06 +00001997 return;
1998 ObjCImplementationDecl *IC=dyn_cast_or_null<ObjCImplementationDecl>(D);
1999 if (!IC)
2000 return;
2001 if (ObjCInterfaceDecl* IDecl = IC->getClassInterface())
Ted Kremenek0c2c90b2012-01-05 22:47:47 +00002002 if (!IDecl->isObjCRequiresPropertyDefs())
Alex Lorenz6c9af502017-07-03 10:12:24 +00002003 DefaultSynthesizeProperties(S, IC, IDecl, AtEnd);
Fariborz Jahanian97d744b2011-08-31 22:24:06 +00002004}
2005
Manman Ren08ce7342016-05-18 18:12:34 +00002006static void DiagnoseUnimplementedAccessor(
2007 Sema &S, ObjCInterfaceDecl *PrimaryClass, Selector Method,
2008 ObjCImplDecl *IMPDecl, ObjCContainerDecl *CDecl, ObjCCategoryDecl *C,
2009 ObjCPropertyDecl *Prop,
2010 llvm::SmallPtrSet<const ObjCMethodDecl *, 8> &SMap) {
2011 // Check to see if we have a corresponding selector in SMap and with the
2012 // right method type.
Fangrui Song75e74e02019-03-31 08:48:19 +00002013 auto I = llvm::find_if(SMap, [&](const ObjCMethodDecl *x) {
2014 return x->getSelector() == Method &&
2015 x->isClassMethod() == Prop->isClassProperty();
2016 });
Ted Kremenek7e812952014-02-21 19:41:30 +00002017 // When reporting on missing property setter/getter implementation in
2018 // categories, do not report when they are declared in primary class,
2019 // class's protocol, or one of it super classes. This is because,
2020 // the class is going to implement them.
Manman Ren08ce7342016-05-18 18:12:34 +00002021 if (I == SMap.end() &&
Craig Topperc3ec1492014-05-26 06:22:03 +00002022 (PrimaryClass == nullptr ||
Manman Rend36f7d52016-01-27 20:10:32 +00002023 !PrimaryClass->lookupPropertyAccessor(Method, C,
2024 Prop->isClassProperty()))) {
Manman Ren16a7d632016-04-12 23:01:55 +00002025 unsigned diag =
2026 isa<ObjCCategoryDecl>(CDecl)
2027 ? (Prop->isClassProperty()
2028 ? diag::warn_impl_required_in_category_for_class_property
2029 : diag::warn_setter_getter_impl_required_in_category)
2030 : (Prop->isClassProperty()
2031 ? diag::warn_impl_required_for_class_property
2032 : diag::warn_setter_getter_impl_required);
2033 S.Diag(IMPDecl->getLocation(), diag) << Prop->getDeclName() << Method;
2034 S.Diag(Prop->getLocation(), diag::note_property_declare);
2035 if (S.LangOpts.ObjCDefaultSynthProperties &&
2036 S.LangOpts.ObjCRuntime.isNonFragile())
2037 if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(CDecl))
2038 if (const ObjCInterfaceDecl *RID = ID->isObjCRequiresPropertyDefs())
2039 S.Diag(RID->getLocation(), diag::note_suppressed_class_declare);
2040 }
Ted Kremenek7e812952014-02-21 19:41:30 +00002041}
2042
Fariborz Jahanian25491a22010-05-05 21:52:17 +00002043void Sema::DiagnoseUnimplementedProperties(Scope *S, ObjCImplDecl* IMPDecl,
Ted Kremenek348e88c2014-02-21 19:41:34 +00002044 ObjCContainerDecl *CDecl,
2045 bool SynthesizeProperties) {
Anna Zaks673d76b2012-10-18 19:17:53 +00002046 ObjCContainerDecl::PropertyMap PropMap;
Ted Kremenek38882022014-02-21 19:41:39 +00002047 ObjCInterfaceDecl *IDecl = dyn_cast<ObjCInterfaceDecl>(CDecl);
2048
Manman Ren16a7d632016-04-12 23:01:55 +00002049 // Since we don't synthesize class properties, we should emit diagnose even
2050 // if SynthesizeProperties is true.
2051 ObjCContainerDecl::PropertyMap NoNeedToImplPropMap;
2052 // Gather properties which need not be implemented in this class
2053 // or category.
2054 if (!IDecl)
2055 if (ObjCCategoryDecl *C = dyn_cast<ObjCCategoryDecl>(CDecl)) {
2056 // For categories, no need to implement properties declared in
2057 // its primary class (and its super classes) if property is
2058 // declared in one of those containers.
2059 if ((IDecl = C->getClassInterface())) {
2060 ObjCInterfaceDecl::PropertyDeclOrder PO;
2061 IDecl->collectPropertiesToImplement(NoNeedToImplPropMap, PO);
Ted Kremenek348e88c2014-02-21 19:41:34 +00002062 }
Manman Ren16a7d632016-04-12 23:01:55 +00002063 }
2064 if (IDecl)
2065 CollectSuperClassPropertyImplementations(IDecl, NoNeedToImplPropMap);
Fangrui Song6907ce22018-07-30 19:24:48 +00002066
Manman Ren16a7d632016-04-12 23:01:55 +00002067 // When SynthesizeProperties is true, we only check class properties.
2068 CollectImmediateProperties(CDecl, PropMap, NoNeedToImplPropMap,
2069 SynthesizeProperties/*CollectClassPropsOnly*/);
Ted Kremenek348e88c2014-02-21 19:41:34 +00002070
Ted Kremenek38882022014-02-21 19:41:39 +00002071 // Scan the @interface to see if any of the protocols it adopts
2072 // require an explicit implementation, via attribute
2073 // 'objc_protocol_requires_explicit_implementation'.
Ted Kremenek204c3c52014-02-22 00:02:03 +00002074 if (IDecl) {
Ahmed Charlesb8984322014-03-07 20:03:18 +00002075 std::unique_ptr<ObjCContainerDecl::PropertyMap> LazyMap;
Ted Kremenek204c3c52014-02-22 00:02:03 +00002076
Aaron Ballmana9f49e32014-03-13 20:55:22 +00002077 for (auto *PDecl : IDecl->all_referenced_protocols()) {
Ted Kremenek38882022014-02-21 19:41:39 +00002078 if (!PDecl->hasAttr<ObjCExplicitProtocolImplAttr>())
2079 continue;
Ted Kremenek204c3c52014-02-22 00:02:03 +00002080 // Lazily construct a set of all the properties in the @interface
2081 // of the class, without looking at the superclass. We cannot
2082 // use the call to CollectImmediateProperties() above as that
Eric Christopherc9e2a682014-05-20 17:10:39 +00002083 // utilizes information from the super class's properties as well
Ted Kremenek204c3c52014-02-22 00:02:03 +00002084 // as scans the adopted protocols. This work only triggers for protocols
2085 // with the attribute, which is very rare, and only occurs when
2086 // analyzing the @implementation.
2087 if (!LazyMap) {
2088 ObjCContainerDecl::PropertyMap NoNeedToImplPropMap;
2089 LazyMap.reset(new ObjCContainerDecl::PropertyMap());
2090 CollectImmediateProperties(CDecl, *LazyMap, NoNeedToImplPropMap,
Manman Ren16a7d632016-04-12 23:01:55 +00002091 /* CollectClassPropsOnly */ false,
Ted Kremenek204c3c52014-02-22 00:02:03 +00002092 /* IncludeProtocols */ false);
2093 }
Ted Kremenek38882022014-02-21 19:41:39 +00002094 // Add the properties of 'PDecl' to the list of properties that
2095 // need to be implemented.
Manman Ren494ee5b2016-01-28 23:36:05 +00002096 for (auto *PropDecl : PDecl->properties()) {
2097 if ((*LazyMap)[std::make_pair(PropDecl->getIdentifier(),
2098 PropDecl->isClassProperty())])
Ted Kremenek204c3c52014-02-22 00:02:03 +00002099 continue;
Manman Ren494ee5b2016-01-28 23:36:05 +00002100 PropMap[std::make_pair(PropDecl->getIdentifier(),
2101 PropDecl->isClassProperty())] = PropDecl;
Ted Kremenek38882022014-02-21 19:41:39 +00002102 }
2103 }
Ted Kremenek204c3c52014-02-22 00:02:03 +00002104 }
Ted Kremenek38882022014-02-21 19:41:39 +00002105
Ted Kremenek7a7a0802010-03-12 00:38:38 +00002106 if (PropMap.empty())
2107 return;
2108
2109 llvm::DenseSet<ObjCPropertyDecl *> PropImplMap;
Aaron Ballmand85eff42014-03-14 15:02:45 +00002110 for (const auto *I : IMPDecl->property_impls())
David Blaikie2d7c57e2012-04-30 02:36:29 +00002111 PropImplMap.insert(I->getPropertyDecl());
Ted Kremenek7a7a0802010-03-12 00:38:38 +00002112
Manman Ren08ce7342016-05-18 18:12:34 +00002113 llvm::SmallPtrSet<const ObjCMethodDecl *, 8> InsMap;
Fariborz Jahanianeb3f1002013-04-24 17:06:38 +00002114 // Collect property accessors implemented in current implementation.
Manman Ren494ee5b2016-01-28 23:36:05 +00002115 for (const auto *I : IMPDecl->methods())
Manman Ren08ce7342016-05-18 18:12:34 +00002116 InsMap.insert(I);
Fangrui Song6907ce22018-07-30 19:24:48 +00002117
Fariborz Jahanianeb3f1002013-04-24 17:06:38 +00002118 ObjCCategoryDecl *C = dyn_cast<ObjCCategoryDecl>(CDecl);
Craig Topperc3ec1492014-05-26 06:22:03 +00002119 ObjCInterfaceDecl *PrimaryClass = nullptr;
Fariborz Jahanianeb3f1002013-04-24 17:06:38 +00002120 if (C && !C->IsClassExtension())
2121 if ((PrimaryClass = C->getClassInterface()))
2122 // Report unimplemented properties in the category as well.
2123 if (ObjCImplDecl *IMP = PrimaryClass->getImplementation()) {
2124 // When reporting on missing setter/getters, do not report when
2125 // setter/getter is implemented in category's primary class
2126 // implementation.
Manman Ren494ee5b2016-01-28 23:36:05 +00002127 for (const auto *I : IMP->methods())
Manman Ren08ce7342016-05-18 18:12:34 +00002128 InsMap.insert(I);
Fariborz Jahanianeb3f1002013-04-24 17:06:38 +00002129 }
2130
Anna Zaks673d76b2012-10-18 19:17:53 +00002131 for (ObjCContainerDecl::PropertyMap::iterator
Ted Kremenek7a7a0802010-03-12 00:38:38 +00002132 P = PropMap.begin(), E = PropMap.end(); P != E; ++P) {
2133 ObjCPropertyDecl *Prop = P->second;
Manman Ren16a7d632016-04-12 23:01:55 +00002134 // Is there a matching property synthesize/dynamic?
Ted Kremenek7a7a0802010-03-12 00:38:38 +00002135 if (Prop->isInvalidDecl() ||
2136 Prop->getPropertyImplementation() == ObjCPropertyDecl::Optional ||
Douglas Gregorc4c1fb32013-01-08 18:16:18 +00002137 PropImplMap.count(Prop) ||
2138 Prop->getAvailability() == AR_Unavailable)
Ted Kremenek7a7a0802010-03-12 00:38:38 +00002139 continue;
Ted Kremenek7e812952014-02-21 19:41:30 +00002140
2141 // Diagnose unimplemented getters and setters.
2142 DiagnoseUnimplementedAccessor(*this,
2143 PrimaryClass, Prop->getGetterName(), IMPDecl, CDecl, C, Prop, InsMap);
2144 if (!Prop->isReadOnly())
2145 DiagnoseUnimplementedAccessor(*this,
2146 PrimaryClass, Prop->getSetterName(),
2147 IMPDecl, CDecl, C, Prop, InsMap);
Ted Kremenek7a7a0802010-03-12 00:38:38 +00002148 }
2149}
2150
Douglas Gregoraea7afd2015-06-24 22:02:08 +00002151void Sema::diagnoseNullResettableSynthesizedSetters(const ObjCImplDecl *impDecl) {
Douglas Gregor849ebc22015-06-19 18:14:46 +00002152 for (const auto *propertyImpl : impDecl->property_impls()) {
2153 const auto *property = propertyImpl->getPropertyDecl();
Douglas Gregor849ebc22015-06-19 18:14:46 +00002154 // Warn about null_resettable properties with synthesized setters,
2155 // because the setter won't properly handle nil.
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04002156 if (propertyImpl->getPropertyImplementation() ==
2157 ObjCPropertyImplDecl::Synthesize &&
Douglas Gregor849ebc22015-06-19 18:14:46 +00002158 (property->getPropertyAttributes() &
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04002159 ObjCPropertyAttribute::kind_null_resettable) &&
2160 property->getGetterMethodDecl() && property->getSetterMethodDecl()) {
Adrian Prantl2073dd22019-11-04 14:28:14 -08002161 auto *getterImpl = propertyImpl->getGetterMethodDecl();
2162 auto *setterImpl = propertyImpl->getSetterMethodDecl();
2163 if ((!getterImpl || getterImpl->isSynthesizedAccessorStub()) &&
2164 (!setterImpl || setterImpl->isSynthesizedAccessorStub())) {
Douglas Gregor849ebc22015-06-19 18:14:46 +00002165 SourceLocation loc = propertyImpl->getLocation();
2166 if (loc.isInvalid())
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002167 loc = impDecl->getBeginLoc();
Douglas Gregor849ebc22015-06-19 18:14:46 +00002168
2169 Diag(loc, diag::warn_null_resettable_setter)
Adrian Prantl2073dd22019-11-04 14:28:14 -08002170 << setterImpl->getSelector() << property->getDeclName();
Douglas Gregor849ebc22015-06-19 18:14:46 +00002171 }
2172 }
2173 }
2174}
2175
Ted Kremenek7a7a0802010-03-12 00:38:38 +00002176void
2177Sema::AtomicPropertySetterGetterRules (ObjCImplDecl* IMPDecl,
Douglas Gregoracf4fd32015-11-03 01:15:46 +00002178 ObjCInterfaceDecl* IDecl) {
Ted Kremenek7a7a0802010-03-12 00:38:38 +00002179 // Rules apply in non-GC mode only
David Blaikiebbafb8a2012-03-11 07:00:24 +00002180 if (getLangOpts().getGC() != LangOptions::NonGC)
Ted Kremenek7a7a0802010-03-12 00:38:38 +00002181 return;
Douglas Gregoracf4fd32015-11-03 01:15:46 +00002182 ObjCContainerDecl::PropertyMap PM;
Manman Ren494ee5b2016-01-28 23:36:05 +00002183 for (auto *Prop : IDecl->properties())
2184 PM[std::make_pair(Prop->getIdentifier(), Prop->isClassProperty())] = Prop;
Douglas Gregoracf4fd32015-11-03 01:15:46 +00002185 for (const auto *Ext : IDecl->known_extensions())
Manman Ren494ee5b2016-01-28 23:36:05 +00002186 for (auto *Prop : Ext->properties())
2187 PM[std::make_pair(Prop->getIdentifier(), Prop->isClassProperty())] = Prop;
Fangrui Song6907ce22018-07-30 19:24:48 +00002188
Manman Renefe1bac2016-01-27 20:00:32 +00002189 for (ObjCContainerDecl::PropertyMap::iterator I = PM.begin(), E = PM.end();
2190 I != E; ++I) {
Douglas Gregoracf4fd32015-11-03 01:15:46 +00002191 const ObjCPropertyDecl *Property = I->second;
Craig Topperc3ec1492014-05-26 06:22:03 +00002192 ObjCMethodDecl *GetterMethod = nullptr;
2193 ObjCMethodDecl *SetterMethod = nullptr;
Argyrios Kyrtzidisdd88dbf2011-01-31 21:34:11 +00002194
Bill Wendling44426052012-12-20 19:22:21 +00002195 unsigned Attributes = Property->getPropertyAttributes();
John McCall43192862011-09-13 18:31:23 +00002196 unsigned AttributesAsWritten = Property->getPropertyAttributesAsWritten();
Argyrios Kyrtzidisdd88dbf2011-01-31 21:34:11 +00002197
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04002198 if (!(AttributesAsWritten & ObjCPropertyAttribute::kind_atomic) &&
2199 !(AttributesAsWritten & ObjCPropertyAttribute::kind_nonatomic)) {
Manman Rend36f7d52016-01-27 20:10:32 +00002200 GetterMethod = Property->isClassProperty() ?
2201 IMPDecl->getClassMethod(Property->getGetterName()) :
2202 IMPDecl->getInstanceMethod(Property->getGetterName());
2203 SetterMethod = Property->isClassProperty() ?
2204 IMPDecl->getClassMethod(Property->getSetterName()) :
2205 IMPDecl->getInstanceMethod(Property->getSetterName());
Adrian Prantl2073dd22019-11-04 14:28:14 -08002206 if (GetterMethod && GetterMethod->isSynthesizedAccessorStub())
2207 GetterMethod = nullptr;
2208 if (SetterMethod && SetterMethod->isSynthesizedAccessorStub())
2209 SetterMethod = nullptr;
Argyrios Kyrtzidisdd88dbf2011-01-31 21:34:11 +00002210 if (GetterMethod) {
2211 Diag(GetterMethod->getLocation(),
2212 diag::warn_default_atomic_custom_getter_setter)
Argyrios Kyrtzidisb5b5a592011-01-31 23:20:03 +00002213 << Property->getIdentifier() << 0;
Argyrios Kyrtzidisdd88dbf2011-01-31 21:34:11 +00002214 Diag(Property->getLocation(), diag::note_property_declare);
2215 }
2216 if (SetterMethod) {
2217 Diag(SetterMethod->getLocation(),
2218 diag::warn_default_atomic_custom_getter_setter)
Argyrios Kyrtzidisb5b5a592011-01-31 23:20:03 +00002219 << Property->getIdentifier() << 1;
Argyrios Kyrtzidisdd88dbf2011-01-31 21:34:11 +00002220 Diag(Property->getLocation(), diag::note_property_declare);
2221 }
2222 }
2223
Ted Kremenek7a7a0802010-03-12 00:38:38 +00002224 // We only care about readwrite atomic property.
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04002225 if ((Attributes & ObjCPropertyAttribute::kind_nonatomic) ||
2226 !(Attributes & ObjCPropertyAttribute::kind_readwrite))
Ted Kremenek7a7a0802010-03-12 00:38:38 +00002227 continue;
Manman Ren5b786402016-01-28 18:49:28 +00002228 if (const ObjCPropertyImplDecl *PIDecl = IMPDecl->FindPropertyImplDecl(
2229 Property->getIdentifier(), Property->getQueryKind())) {
Ted Kremenek7a7a0802010-03-12 00:38:38 +00002230 if (PIDecl->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic)
2231 continue;
Adrian Prantl2073dd22019-11-04 14:28:14 -08002232 GetterMethod = PIDecl->getGetterMethodDecl();
2233 SetterMethod = PIDecl->getSetterMethodDecl();
2234 if (GetterMethod && GetterMethod->isSynthesizedAccessorStub())
2235 GetterMethod = nullptr;
2236 if (SetterMethod && SetterMethod->isSynthesizedAccessorStub())
2237 SetterMethod = nullptr;
2238 if ((bool)GetterMethod ^ (bool)SetterMethod) {
Ted Kremenek7a7a0802010-03-12 00:38:38 +00002239 SourceLocation MethodLoc =
2240 (GetterMethod ? GetterMethod->getLocation()
2241 : SetterMethod->getLocation());
2242 Diag(MethodLoc, diag::warn_atomic_property_rule)
Craig Topperc3ec1492014-05-26 06:22:03 +00002243 << Property->getIdentifier() << (GetterMethod != nullptr)
2244 << (SetterMethod != nullptr);
Fariborz Jahanian86c2f5c2012-02-29 22:18:55 +00002245 // fixit stuff.
Douglas Gregoracf4fd32015-11-03 01:15:46 +00002246 if (Property->getLParenLoc().isValid() &&
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04002247 !(AttributesAsWritten & ObjCPropertyAttribute::kind_atomic)) {
Fariborz Jahanian86c2f5c2012-02-29 22:18:55 +00002248 // @property () ... case.
Douglas Gregoracf4fd32015-11-03 01:15:46 +00002249 SourceLocation AfterLParen =
2250 getLocForEndOfToken(Property->getLParenLoc());
2251 StringRef NonatomicStr = AttributesAsWritten? "nonatomic, "
2252 : "nonatomic";
2253 Diag(Property->getLocation(),
2254 diag::note_atomic_property_fixup_suggest)
2255 << FixItHint::CreateInsertion(AfterLParen, NonatomicStr);
2256 } else if (Property->getLParenLoc().isInvalid()) {
2257 //@property id etc.
Fangrui Song6907ce22018-07-30 19:24:48 +00002258 SourceLocation startLoc =
Douglas Gregoracf4fd32015-11-03 01:15:46 +00002259 Property->getTypeSourceInfo()->getTypeLoc().getBeginLoc();
2260 Diag(Property->getLocation(),
2261 diag::note_atomic_property_fixup_suggest)
2262 << FixItHint::CreateInsertion(startLoc, "(nonatomic) ");
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04002263 } else
Fariborz Jahanian86c2f5c2012-02-29 22:18:55 +00002264 Diag(MethodLoc, diag::note_atomic_property_fixup_suggest);
Ted Kremenek7a7a0802010-03-12 00:38:38 +00002265 Diag(Property->getLocation(), diag::note_property_declare);
2266 }
2267 }
2268 }
2269}
2270
John McCall31168b02011-06-15 23:02:42 +00002271void Sema::DiagnoseOwningPropertyGetterSynthesis(const ObjCImplementationDecl *D) {
David Blaikiebbafb8a2012-03-11 07:00:24 +00002272 if (getLangOpts().getGC() == LangOptions::GCOnly)
John McCall31168b02011-06-15 23:02:42 +00002273 return;
2274
Aaron Ballmand85eff42014-03-14 15:02:45 +00002275 for (const auto *PID : D->property_impls()) {
John McCall31168b02011-06-15 23:02:42 +00002276 const ObjCPropertyDecl *PD = PID->getPropertyDecl();
Fariborz Jahanianf4105f52011-06-25 00:17:46 +00002277 if (PD && !PD->hasAttr<NSReturnsNotRetainedAttr>() &&
Adrian Prantl2073dd22019-11-04 14:28:14 -08002278 !PD->isClassProperty()) {
2279 ObjCMethodDecl *IM = PID->getGetterMethodDecl();
2280 if (IM && !IM->isSynthesizedAccessorStub())
2281 continue;
John McCall31168b02011-06-15 23:02:42 +00002282 ObjCMethodDecl *method = PD->getGetterMethodDecl();
2283 if (!method)
2284 continue;
2285 ObjCMethodFamily family = method->getMethodFamily();
2286 if (family == OMF_alloc || family == OMF_copy ||
2287 family == OMF_mutableCopy || family == OMF_new) {
David Blaikiebbafb8a2012-03-11 07:00:24 +00002288 if (getLangOpts().ObjCAutoRefCount)
Fariborz Jahanian65b13772014-01-10 00:53:48 +00002289 Diag(PD->getLocation(), diag::err_cocoa_naming_owned_rule);
John McCall31168b02011-06-15 23:02:42 +00002290 else
Fariborz Jahanian65b13772014-01-10 00:53:48 +00002291 Diag(PD->getLocation(), diag::warn_cocoa_naming_owned_rule);
Jordan Rosea34d04d2015-01-16 23:04:31 +00002292
2293 // Look for a getter explicitly declared alongside the property.
2294 // If we find one, use its location for the note.
2295 SourceLocation noteLoc = PD->getLocation();
2296 SourceLocation fixItLoc;
2297 for (auto *getterRedecl : method->redecls()) {
2298 if (getterRedecl->isImplicit())
2299 continue;
2300 if (getterRedecl->getDeclContext() != PD->getDeclContext())
2301 continue;
2302 noteLoc = getterRedecl->getLocation();
Stephen Kelly1c301dc2018-08-09 21:09:38 +00002303 fixItLoc = getterRedecl->getEndLoc();
Jordan Rosea34d04d2015-01-16 23:04:31 +00002304 }
2305
2306 Preprocessor &PP = getPreprocessor();
2307 TokenValue tokens[] = {
2308 tok::kw___attribute, tok::l_paren, tok::l_paren,
2309 PP.getIdentifierInfo("objc_method_family"), tok::l_paren,
2310 PP.getIdentifierInfo("none"), tok::r_paren,
2311 tok::r_paren, tok::r_paren
2312 };
2313 StringRef spelling = "__attribute__((objc_method_family(none)))";
2314 StringRef macroName = PP.getLastMacroWithSpelling(noteLoc, tokens);
2315 if (!macroName.empty())
2316 spelling = macroName;
2317
2318 auto noteDiag = Diag(noteLoc, diag::note_cocoa_naming_declare_family)
2319 << method->getDeclName() << spelling;
2320 if (fixItLoc.isValid()) {
2321 SmallString<64> fixItText(" ");
2322 fixItText += spelling;
2323 noteDiag << FixItHint::CreateInsertion(fixItLoc, fixItText);
2324 }
John McCall31168b02011-06-15 23:02:42 +00002325 }
2326 }
2327 }
2328}
2329
Argyrios Kyrtzidisdb5ce0f2013-12-03 21:11:54 +00002330void Sema::DiagnoseMissingDesignatedInitOverrides(
Fariborz Jahanian20cfff32015-03-11 16:59:48 +00002331 const ObjCImplementationDecl *ImplD,
2332 const ObjCInterfaceDecl *IFD) {
2333 assert(IFD->hasDesignatedInitializers());
Argyrios Kyrtzidisdb5ce0f2013-12-03 21:11:54 +00002334 const ObjCInterfaceDecl *SuperD = IFD->getSuperClass();
2335 if (!SuperD)
2336 return;
2337
2338 SelectorSet InitSelSet;
Aaron Ballmanf26acce2014-03-13 19:50:17 +00002339 for (const auto *I : ImplD->instance_methods())
2340 if (I->getMethodFamily() == OMF_init)
2341 InitSelSet.insert(I->getSelector());
Argyrios Kyrtzidisdb5ce0f2013-12-03 21:11:54 +00002342
2343 SmallVector<const ObjCMethodDecl *, 8> DesignatedInits;
2344 SuperD->getDesignatedInitializers(DesignatedInits);
2345 for (SmallVector<const ObjCMethodDecl *, 8>::iterator
2346 I = DesignatedInits.begin(), E = DesignatedInits.end(); I != E; ++I) {
2347 const ObjCMethodDecl *MD = *I;
2348 if (!InitSelSet.count(MD->getSelector())) {
Akira Hatanaka78be8b62019-03-01 06:43:20 +00002349 // Don't emit a diagnostic if the overriding method in the subclass is
2350 // marked as unavailable.
Argyrios Kyrtzidisc0d4b00f2015-07-30 19:06:04 +00002351 bool Ignore = false;
2352 if (auto *IMD = IFD->getInstanceMethod(MD->getSelector())) {
2353 Ignore = IMD->isUnavailable();
Akira Hatanaka78be8b62019-03-01 06:43:20 +00002354 } else {
2355 // Check the methods declared in the class extensions too.
2356 for (auto *Ext : IFD->visible_extensions())
2357 if (auto *IMD = Ext->getInstanceMethod(MD->getSelector())) {
2358 Ignore = IMD->isUnavailable();
2359 break;
2360 }
Argyrios Kyrtzidisc0d4b00f2015-07-30 19:06:04 +00002361 }
2362 if (!Ignore) {
2363 Diag(ImplD->getLocation(),
2364 diag::warn_objc_implementation_missing_designated_init_override)
2365 << MD->getSelector();
2366 Diag(MD->getLocation(), diag::note_objc_designated_init_marked_here);
2367 }
Argyrios Kyrtzidisdb5ce0f2013-12-03 21:11:54 +00002368 }
2369 }
2370}
2371
John McCallad31b5f2010-11-10 07:01:40 +00002372/// AddPropertyAttrs - Propagates attributes from a property to the
2373/// implicitly-declared getter or setter for that property.
2374static void AddPropertyAttrs(Sema &S, ObjCMethodDecl *PropertyMethod,
2375 ObjCPropertyDecl *Property) {
2376 // Should we just clone all attributes over?
Aaron Ballmanb97112e2014-03-08 22:19:01 +00002377 for (const auto *A : Property->attrs()) {
Fangrui Song6907ce22018-07-30 19:24:48 +00002378 if (isa<DeprecatedAttr>(A) ||
2379 isa<UnavailableAttr>(A) ||
Aaron Ballmanb97112e2014-03-08 22:19:01 +00002380 isa<AvailabilityAttr>(A))
2381 PropertyMethod->addAttr(A->clone(S.Context));
Douglas Gregor20b2ebd2011-03-23 00:50:03 +00002382 }
John McCallad31b5f2010-11-10 07:01:40 +00002383}
2384
Ted Kremenek7a7a0802010-03-12 00:38:38 +00002385/// ProcessPropertyDecl - Make sure that any user-defined setter/getter methods
2386/// have the property type and issue diagnostics if they don't.
2387/// Also synthesize a getter/setter method if none exist (and update the
Douglas Gregore17765e2015-11-03 17:02:34 +00002388/// appropriate lookup tables.
2389void Sema::ProcessPropertyDecl(ObjCPropertyDecl *property) {
Ted Kremenek7a7a0802010-03-12 00:38:38 +00002390 ObjCMethodDecl *GetterMethod, *SetterMethod;
Douglas Gregore17765e2015-11-03 17:02:34 +00002391 ObjCContainerDecl *CD = cast<ObjCContainerDecl>(property->getDeclContext());
Fariborz Jahanian0c1c3112014-05-27 18:26:09 +00002392 if (CD->isInvalidDecl())
2393 return;
2394
Manman Rend36f7d52016-01-27 20:10:32 +00002395 bool IsClassProperty = property->isClassProperty();
2396 GetterMethod = IsClassProperty ?
2397 CD->getClassMethod(property->getGetterName()) :
2398 CD->getInstanceMethod(property->getGetterName());
2399
Douglas Gregoracf4fd32015-11-03 01:15:46 +00002400 // if setter or getter is not found in class extension, it might be
2401 // in the primary class.
2402 if (!GetterMethod)
2403 if (const ObjCCategoryDecl *CatDecl = dyn_cast<ObjCCategoryDecl>(CD))
2404 if (CatDecl->IsClassExtension())
Manman Rend36f7d52016-01-27 20:10:32 +00002405 GetterMethod = IsClassProperty ? CatDecl->getClassInterface()->
2406 getClassMethod(property->getGetterName()) :
2407 CatDecl->getClassInterface()->
Douglas Gregoracf4fd32015-11-03 01:15:46 +00002408 getInstanceMethod(property->getGetterName());
Fangrui Song6907ce22018-07-30 19:24:48 +00002409
Manman Rend36f7d52016-01-27 20:10:32 +00002410 SetterMethod = IsClassProperty ?
2411 CD->getClassMethod(property->getSetterName()) :
2412 CD->getInstanceMethod(property->getSetterName());
Douglas Gregoracf4fd32015-11-03 01:15:46 +00002413 if (!SetterMethod)
2414 if (const ObjCCategoryDecl *CatDecl = dyn_cast<ObjCCategoryDecl>(CD))
2415 if (CatDecl->IsClassExtension())
Manman Rend36f7d52016-01-27 20:10:32 +00002416 SetterMethod = IsClassProperty ? CatDecl->getClassInterface()->
2417 getClassMethod(property->getSetterName()) :
2418 CatDecl->getClassInterface()->
Douglas Gregoracf4fd32015-11-03 01:15:46 +00002419 getInstanceMethod(property->getSetterName());
Ted Kremenek7a7a0802010-03-12 00:38:38 +00002420 DiagnosePropertyAccessorMismatch(property, GetterMethod,
2421 property->getLocation());
2422
Pierre Habouzit3adcc782020-01-30 16:48:11 -08002423 // synthesizing accessors must not result in a direct method that is not
2424 // monomorphic
2425 if (!GetterMethod) {
2426 if (const ObjCCategoryDecl *CatDecl = dyn_cast<ObjCCategoryDecl>(CD)) {
2427 auto *ExistingGetter = CatDecl->getClassInterface()->lookupMethod(
2428 property->getGetterName(), !IsClassProperty, true, false, CatDecl);
2429 if (ExistingGetter) {
2430 if (ExistingGetter->isDirectMethod() || property->isDirectProperty()) {
2431 Diag(property->getLocation(), diag::err_objc_direct_duplicate_decl)
2432 << property->isDirectProperty() << 1 /* property */
2433 << ExistingGetter->isDirectMethod()
2434 << ExistingGetter->getDeclName();
2435 Diag(ExistingGetter->getLocation(), diag::note_previous_declaration);
2436 }
2437 }
2438 }
2439 }
2440
2441 if (!property->isReadOnly() && !SetterMethod) {
2442 if (const ObjCCategoryDecl *CatDecl = dyn_cast<ObjCCategoryDecl>(CD)) {
2443 auto *ExistingSetter = CatDecl->getClassInterface()->lookupMethod(
2444 property->getSetterName(), !IsClassProperty, true, false, CatDecl);
2445 if (ExistingSetter) {
2446 if (ExistingSetter->isDirectMethod() || property->isDirectProperty()) {
2447 Diag(property->getLocation(), diag::err_objc_direct_duplicate_decl)
2448 << property->isDirectProperty() << 1 /* property */
2449 << ExistingSetter->isDirectMethod()
2450 << ExistingSetter->getDeclName();
2451 Diag(ExistingSetter->getLocation(), diag::note_previous_declaration);
2452 }
2453 }
2454 }
2455 }
2456
Alex Lorenz535571a2017-03-30 13:33:51 +00002457 if (!property->isReadOnly() && SetterMethod) {
2458 if (Context.getCanonicalType(SetterMethod->getReturnType()) !=
2459 Context.VoidTy)
Ted Kremenek7a7a0802010-03-12 00:38:38 +00002460 Diag(SetterMethod->getLocation(), diag::err_setter_type_void);
2461 if (SetterMethod->param_size() != 1 ||
Fariborz Jahanian0ee58d62011-09-26 22:59:09 +00002462 !Context.hasSameUnqualifiedType(
Fangrui Song6907ce22018-07-30 19:24:48 +00002463 (*SetterMethod->param_begin())->getType().getNonReferenceType(),
Fariborz Jahanian7c386f82011-10-15 17:36:49 +00002464 property->getType().getNonReferenceType())) {
Ted Kremenek7a7a0802010-03-12 00:38:38 +00002465 Diag(property->getLocation(),
2466 diag::warn_accessor_property_type_mismatch)
2467 << property->getDeclName()
2468 << SetterMethod->getSelector();
2469 Diag(SetterMethod->getLocation(), diag::note_declared_at);
2470 }
2471 }
2472
2473 // Synthesize getter/setter methods if none exist.
2474 // Find the default getter and if one not found, add one.
2475 // FIXME: The synthesized property we set here is misleading. We almost always
2476 // synthesize these methods unless the user explicitly provided prototypes
2477 // (which is odd, but allowed). Sema should be typechecking that the
2478 // declarations jive in that situation (which it is not currently).
2479 if (!GetterMethod) {
Manman Rend36f7d52016-01-27 20:10:32 +00002480 // No instance/class method of same name as property getter name was found.
Ted Kremenek7a7a0802010-03-12 00:38:38 +00002481 // Declare a getter method and add it to the list of methods
2482 // for this class.
Douglas Gregoracf4fd32015-11-03 01:15:46 +00002483 SourceLocation Loc = property->getLocation();
Ted Kremenek2f075632010-09-21 20:52:59 +00002484
Akira Hatanakade6f25f2016-05-26 00:37:30 +00002485 // The getter returns the declared property type with all qualifiers
2486 // removed.
2487 QualType resultTy = property->getType().getAtomicUnqualifiedType();
2488
Douglas Gregor849ebc22015-06-19 18:14:46 +00002489 // If the property is null_resettable, the getter returns nonnull.
Douglas Gregor849ebc22015-06-19 18:14:46 +00002490 if (property->getPropertyAttributes() &
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04002491 ObjCPropertyAttribute::kind_null_resettable) {
Douglas Gregor849ebc22015-06-19 18:14:46 +00002492 QualType modifiedTy = resultTy;
Douglas Gregoraea7afd2015-06-24 22:02:08 +00002493 if (auto nullability = AttributedType::stripOuterNullability(modifiedTy)) {
Douglas Gregor849ebc22015-06-19 18:14:46 +00002494 if (*nullability == NullabilityKind::Unspecified)
Richard Smithe43e2b32018-08-20 21:47:29 +00002495 resultTy = Context.getAttributedType(attr::TypeNonNull,
Douglas Gregor849ebc22015-06-19 18:14:46 +00002496 modifiedTy, modifiedTy);
2497 }
2498 }
2499
Adrian Prantl2073dd22019-11-04 14:28:14 -08002500 GetterMethod = ObjCMethodDecl::Create(
2501 Context, Loc, Loc, property->getGetterName(), resultTy, nullptr, CD,
2502 !IsClassProperty, /*isVariadic=*/false,
2503 /*isPropertyAccessor=*/true, /*isSynthesizedAccessorStub=*/false,
2504 /*isImplicitlyDeclared=*/true, /*isDefined=*/false,
2505 (property->getPropertyImplementation() == ObjCPropertyDecl::Optional)
2506 ? ObjCMethodDecl::Optional
2507 : ObjCMethodDecl::Required);
Ted Kremenek7a7a0802010-03-12 00:38:38 +00002508 CD->addDecl(GetterMethod);
John McCallad31b5f2010-11-10 07:01:40 +00002509
2510 AddPropertyAttrs(*this, GetterMethod, property);
2511
Pierre Habouzitd4e1ba32019-11-07 23:14:58 -08002512 if (property->isDirectProperty())
2513 GetterMethod->addAttr(ObjCDirectAttr::CreateImplicit(Context, Loc));
2514
Fariborz Jahanianf4105f52011-06-25 00:17:46 +00002515 if (property->hasAttr<NSReturnsNotRetainedAttr>())
Aaron Ballman36a53502014-01-16 13:03:14 +00002516 GetterMethod->addAttr(NSReturnsNotRetainedAttr::CreateImplicit(Context,
2517 Loc));
Fangrui Song6907ce22018-07-30 19:24:48 +00002518
Fariborz Jahanian8a5e9472013-09-19 16:37:20 +00002519 if (property->hasAttr<ObjCReturnsInnerPointerAttr>())
2520 GetterMethod->addAttr(
Aaron Ballman36a53502014-01-16 13:03:14 +00002521 ObjCReturnsInnerPointerAttr::CreateImplicit(Context, Loc));
Fangrui Song6907ce22018-07-30 19:24:48 +00002522
Fariborz Jahaniancb8c7da2013-12-18 23:09:57 +00002523 if (const SectionAttr *SA = property->getAttr<SectionAttr>())
Erich Keane6a24e802019-09-13 17:39:31 +00002524 GetterMethod->addAttr(SectionAttr::CreateImplicit(
2525 Context, SA->getName(), Loc, AttributeCommonInfo::AS_GNU,
2526 SectionAttr::GNU_section));
John McCalle48f3892013-04-04 01:38:37 +00002527
2528 if (getLangOpts().ObjCAutoRefCount)
2529 CheckARCMethodDecl(GetterMethod);
Ted Kremenek7a7a0802010-03-12 00:38:38 +00002530 } else
2531 // A user declared getter will be synthesize when @synthesize of
2532 // the property with the same name is seen in the @implementation
Jordan Rosed01e83a2012-10-10 16:42:25 +00002533 GetterMethod->setPropertyAccessor(true);
Pierre Habouzit1646bb82019-12-09 14:27:57 -08002534
2535 GetterMethod->createImplicitParams(Context,
2536 GetterMethod->getClassInterface());
Ted Kremenek7a7a0802010-03-12 00:38:38 +00002537 property->setGetterMethodDecl(GetterMethod);
2538
2539 // Skip setter if property is read-only.
2540 if (!property->isReadOnly()) {
2541 // Find the default setter and if one not found, add one.
2542 if (!SetterMethod) {
Manman Rend36f7d52016-01-27 20:10:32 +00002543 // No instance/class method of same name as property setter name was
2544 // found.
Ted Kremenek7a7a0802010-03-12 00:38:38 +00002545 // Declare a setter method and add it to the list of methods
2546 // for this class.
Douglas Gregoracf4fd32015-11-03 01:15:46 +00002547 SourceLocation Loc = property->getLocation();
Ted Kremeneke3a7d1b2010-09-21 18:28:43 +00002548
2549 SetterMethod =
Argyrios Kyrtzidisb8c3aaf2011-10-03 06:37:04 +00002550 ObjCMethodDecl::Create(Context, Loc, Loc,
Craig Topperc3ec1492014-05-26 06:22:03 +00002551 property->getSetterName(), Context.VoidTy,
Manman Rend36f7d52016-01-27 20:10:32 +00002552 nullptr, CD, !IsClassProperty,
Craig Topperc3ec1492014-05-26 06:22:03 +00002553 /*isVariadic=*/false,
Jordan Rosed01e83a2012-10-10 16:42:25 +00002554 /*isPropertyAccessor=*/true,
Adrian Prantl2073dd22019-11-04 14:28:14 -08002555 /*isSynthesizedAccessorStub=*/false,
Argyrios Kyrtzidis004df6e2011-08-17 19:25:08 +00002556 /*isImplicitlyDeclared=*/true,
2557 /*isDefined=*/false,
Ted Kremenek7a7a0802010-03-12 00:38:38 +00002558 (property->getPropertyImplementation() ==
2559 ObjCPropertyDecl::Optional) ?
Ted Kremeneke3a7d1b2010-09-21 18:28:43 +00002560 ObjCMethodDecl::Optional :
2561 ObjCMethodDecl::Required);
2562
Akira Hatanakade6f25f2016-05-26 00:37:30 +00002563 // Remove all qualifiers from the setter's parameter type.
2564 QualType paramTy =
2565 property->getType().getUnqualifiedType().getAtomicUnqualifiedType();
2566
Douglas Gregor849ebc22015-06-19 18:14:46 +00002567 // If the property is null_resettable, the setter accepts a
2568 // nullable value.
Douglas Gregor849ebc22015-06-19 18:14:46 +00002569 if (property->getPropertyAttributes() &
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04002570 ObjCPropertyAttribute::kind_null_resettable) {
Douglas Gregor849ebc22015-06-19 18:14:46 +00002571 QualType modifiedTy = paramTy;
2572 if (auto nullability = AttributedType::stripOuterNullability(modifiedTy)){
2573 if (*nullability == NullabilityKind::Unspecified)
Richard Smithe43e2b32018-08-20 21:47:29 +00002574 paramTy = Context.getAttributedType(attr::TypeNullable,
Douglas Gregor849ebc22015-06-19 18:14:46 +00002575 modifiedTy, modifiedTy);
2576 }
2577 }
2578
Ted Kremenek7a7a0802010-03-12 00:38:38 +00002579 // Invent the arguments for the setter. We don't bother making a
2580 // nice name for the argument.
Abramo Bagnaradff19302011-03-08 08:55:46 +00002581 ParmVarDecl *Argument = ParmVarDecl::Create(Context, SetterMethod,
2582 Loc, Loc,
Ted Kremenek7a7a0802010-03-12 00:38:38 +00002583 property->getIdentifier(),
Douglas Gregor849ebc22015-06-19 18:14:46 +00002584 paramTy,
Craig Topperc3ec1492014-05-26 06:22:03 +00002585 /*TInfo=*/nullptr,
John McCall8e7d6562010-08-26 03:08:43 +00002586 SC_None,
Craig Topperc3ec1492014-05-26 06:22:03 +00002587 nullptr);
Dmitri Gribenko44ebbd52013-05-05 00:41:58 +00002588 SetterMethod->setMethodParams(Context, Argument, None);
John McCallad31b5f2010-11-10 07:01:40 +00002589
2590 AddPropertyAttrs(*this, SetterMethod, property);
2591
Pierre Habouzitd4e1ba32019-11-07 23:14:58 -08002592 if (property->isDirectProperty())
2593 SetterMethod->addAttr(ObjCDirectAttr::CreateImplicit(Context, Loc));
2594
Ted Kremenek7a7a0802010-03-12 00:38:38 +00002595 CD->addDecl(SetterMethod);
Fariborz Jahaniancb8c7da2013-12-18 23:09:57 +00002596 if (const SectionAttr *SA = property->getAttr<SectionAttr>())
Erich Keane6a24e802019-09-13 17:39:31 +00002597 SetterMethod->addAttr(SectionAttr::CreateImplicit(
2598 Context, SA->getName(), Loc, AttributeCommonInfo::AS_GNU,
2599 SectionAttr::GNU_section));
John McCalle48f3892013-04-04 01:38:37 +00002600 // It's possible for the user to have set a very odd custom
2601 // setter selector that causes it to have a method family.
2602 if (getLangOpts().ObjCAutoRefCount)
2603 CheckARCMethodDecl(SetterMethod);
Ted Kremenek7a7a0802010-03-12 00:38:38 +00002604 } else
2605 // A user declared setter will be synthesize when @synthesize of
2606 // the property with the same name is seen in the @implementation
Jordan Rosed01e83a2012-10-10 16:42:25 +00002607 SetterMethod->setPropertyAccessor(true);
Pierre Habouzit1646bb82019-12-09 14:27:57 -08002608
2609 SetterMethod->createImplicitParams(Context,
2610 SetterMethod->getClassInterface());
Ted Kremenek7a7a0802010-03-12 00:38:38 +00002611 property->setSetterMethodDecl(SetterMethod);
2612 }
2613 // Add any synthesized methods to the global pool. This allows us to
2614 // handle the following, which is supported by GCC (and part of the design).
2615 //
2616 // @interface Foo
2617 // @property double bar;
2618 // @end
2619 //
2620 // void thisIsUnfortunate() {
2621 // id foo;
2622 // double bar = [foo bar];
2623 // }
2624 //
Manman Rend36f7d52016-01-27 20:10:32 +00002625 if (!IsClassProperty) {
2626 if (GetterMethod)
2627 AddInstanceMethodToGlobalPool(GetterMethod);
2628 if (SetterMethod)
2629 AddInstanceMethodToGlobalPool(SetterMethod);
Manman Ren15325f82016-03-23 21:39:31 +00002630 } else {
2631 if (GetterMethod)
2632 AddFactoryMethodToGlobalPool(GetterMethod);
2633 if (SetterMethod)
2634 AddFactoryMethodToGlobalPool(SetterMethod);
Manman Rend36f7d52016-01-27 20:10:32 +00002635 }
Argyrios Kyrtzidis08f96a92012-05-09 16:12:57 +00002636
2637 ObjCInterfaceDecl *CurrentClass = dyn_cast<ObjCInterfaceDecl>(CD);
2638 if (!CurrentClass) {
2639 if (ObjCCategoryDecl *Cat = dyn_cast<ObjCCategoryDecl>(CD))
2640 CurrentClass = Cat->getClassInterface();
2641 else if (ObjCImplDecl *Impl = dyn_cast<ObjCImplDecl>(CD))
2642 CurrentClass = Impl->getClassInterface();
2643 }
2644 if (GetterMethod)
2645 CheckObjCMethodOverrides(GetterMethod, CurrentClass, Sema::RTC_Unknown);
2646 if (SetterMethod)
2647 CheckObjCMethodOverrides(SetterMethod, CurrentClass, Sema::RTC_Unknown);
Ted Kremenek7a7a0802010-03-12 00:38:38 +00002648}
2649
John McCall48871652010-08-21 09:40:31 +00002650void Sema::CheckObjCPropertyAttributes(Decl *PDecl,
Ted Kremenek7a7a0802010-03-12 00:38:38 +00002651 SourceLocation Loc,
Bill Wendling44426052012-12-20 19:22:21 +00002652 unsigned &Attributes,
Fariborz Jahanian876cc652012-06-20 22:57:42 +00002653 bool propertyInPrimaryClass) {
Ted Kremenek7a7a0802010-03-12 00:38:38 +00002654 // FIXME: Improve the reported location.
John McCall31168b02011-06-15 23:02:42 +00002655 if (!PDecl || PDecl->isInvalidDecl())
Ted Kremenekb5357822010-04-05 22:39:42 +00002656 return;
Fangrui Song6907ce22018-07-30 19:24:48 +00002657
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04002658 if ((Attributes & ObjCPropertyAttribute::kind_readonly) &&
2659 (Attributes & ObjCPropertyAttribute::kind_readwrite))
Fariborz Jahanian88ff20e2013-10-07 17:20:02 +00002660 Diag(Loc, diag::err_objc_property_attr_mutually_exclusive)
2661 << "readonly" << "readwrite";
Fangrui Song6907ce22018-07-30 19:24:48 +00002662
Fariborz Jahanian88ff20e2013-10-07 17:20:02 +00002663 ObjCPropertyDecl *PropertyDecl = cast<ObjCPropertyDecl>(PDecl);
2664 QualType PropertyTy = PropertyDecl->getType();
Ted Kremenek7a7a0802010-03-12 00:38:38 +00002665
2666 // Check for copy or retain on non-object types.
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04002667 if ((Attributes &
2668 (ObjCPropertyAttribute::kind_weak | ObjCPropertyAttribute::kind_copy |
2669 ObjCPropertyAttribute::kind_retain |
2670 ObjCPropertyAttribute::kind_strong)) &&
John McCall31168b02011-06-15 23:02:42 +00002671 !PropertyTy->isObjCRetainableType() &&
Aaron Ballman9ead1242013-12-19 02:39:40 +00002672 !PropertyDecl->hasAttr<ObjCNSObjectAttr>()) {
Ted Kremenek7a7a0802010-03-12 00:38:38 +00002673 Diag(Loc, diag::err_objc_property_requires_object)
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04002674 << (Attributes & ObjCPropertyAttribute::kind_weak
2675 ? "weak"
2676 : Attributes & ObjCPropertyAttribute::kind_copy
2677 ? "copy"
2678 : "retain (or strong)");
2679 Attributes &=
2680 ~(ObjCPropertyAttribute::kind_weak | ObjCPropertyAttribute::kind_copy |
2681 ObjCPropertyAttribute::kind_retain |
2682 ObjCPropertyAttribute::kind_strong);
John McCall24992372012-02-21 21:48:05 +00002683 PropertyDecl->setInvalidDecl();
Ted Kremenek7a7a0802010-03-12 00:38:38 +00002684 }
2685
John McCall52a503d2018-09-05 19:02:00 +00002686 // Check for assign on object types.
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04002687 if ((Attributes & ObjCPropertyAttribute::kind_assign) &&
2688 !(Attributes & ObjCPropertyAttribute::kind_unsafe_unretained) &&
John McCall52a503d2018-09-05 19:02:00 +00002689 PropertyTy->isObjCRetainableType() &&
2690 !PropertyTy->isObjCARCImplicitlyUnretainedType()) {
2691 Diag(Loc, diag::warn_objc_property_assign_on_object);
2692 }
2693
Ted Kremenek7a7a0802010-03-12 00:38:38 +00002694 // Check for more than one of { assign, copy, retain }.
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04002695 if (Attributes & ObjCPropertyAttribute::kind_assign) {
2696 if (Attributes & ObjCPropertyAttribute::kind_copy) {
Ted Kremenek7a7a0802010-03-12 00:38:38 +00002697 Diag(Loc, diag::err_objc_property_attr_mutually_exclusive)
2698 << "assign" << "copy";
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04002699 Attributes &= ~ObjCPropertyAttribute::kind_copy;
Ted Kremenek7a7a0802010-03-12 00:38:38 +00002700 }
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04002701 if (Attributes & ObjCPropertyAttribute::kind_retain) {
Ted Kremenek7a7a0802010-03-12 00:38:38 +00002702 Diag(Loc, diag::err_objc_property_attr_mutually_exclusive)
2703 << "assign" << "retain";
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04002704 Attributes &= ~ObjCPropertyAttribute::kind_retain;
Ted Kremenek7a7a0802010-03-12 00:38:38 +00002705 }
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04002706 if (Attributes & ObjCPropertyAttribute::kind_strong) {
John McCall31168b02011-06-15 23:02:42 +00002707 Diag(Loc, diag::err_objc_property_attr_mutually_exclusive)
2708 << "assign" << "strong";
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04002709 Attributes &= ~ObjCPropertyAttribute::kind_strong;
John McCall31168b02011-06-15 23:02:42 +00002710 }
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04002711 if (getLangOpts().ObjCAutoRefCount &&
2712 (Attributes & ObjCPropertyAttribute::kind_weak)) {
John McCall31168b02011-06-15 23:02:42 +00002713 Diag(Loc, diag::err_objc_property_attr_mutually_exclusive)
2714 << "assign" << "weak";
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04002715 Attributes &= ~ObjCPropertyAttribute::kind_weak;
John McCall31168b02011-06-15 23:02:42 +00002716 }
Aaron Ballman9ead1242013-12-19 02:39:40 +00002717 if (PropertyDecl->hasAttr<IBOutletCollectionAttr>())
Fariborz Jahanianf030d162013-06-25 17:34:50 +00002718 Diag(Loc, diag::warn_iboutletcollection_property_assign);
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04002719 } else if (Attributes & ObjCPropertyAttribute::kind_unsafe_unretained) {
2720 if (Attributes & ObjCPropertyAttribute::kind_copy) {
John McCall31168b02011-06-15 23:02:42 +00002721 Diag(Loc, diag::err_objc_property_attr_mutually_exclusive)
2722 << "unsafe_unretained" << "copy";
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04002723 Attributes &= ~ObjCPropertyAttribute::kind_copy;
John McCall31168b02011-06-15 23:02:42 +00002724 }
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04002725 if (Attributes & ObjCPropertyAttribute::kind_retain) {
John McCall31168b02011-06-15 23:02:42 +00002726 Diag(Loc, diag::err_objc_property_attr_mutually_exclusive)
2727 << "unsafe_unretained" << "retain";
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04002728 Attributes &= ~ObjCPropertyAttribute::kind_retain;
John McCall31168b02011-06-15 23:02:42 +00002729 }
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04002730 if (Attributes & ObjCPropertyAttribute::kind_strong) {
John McCall31168b02011-06-15 23:02:42 +00002731 Diag(Loc, diag::err_objc_property_attr_mutually_exclusive)
2732 << "unsafe_unretained" << "strong";
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04002733 Attributes &= ~ObjCPropertyAttribute::kind_strong;
John McCall31168b02011-06-15 23:02:42 +00002734 }
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04002735 if (getLangOpts().ObjCAutoRefCount &&
2736 (Attributes & ObjCPropertyAttribute::kind_weak)) {
John McCall31168b02011-06-15 23:02:42 +00002737 Diag(Loc, diag::err_objc_property_attr_mutually_exclusive)
2738 << "unsafe_unretained" << "weak";
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04002739 Attributes &= ~ObjCPropertyAttribute::kind_weak;
John McCall31168b02011-06-15 23:02:42 +00002740 }
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04002741 } else if (Attributes & ObjCPropertyAttribute::kind_copy) {
2742 if (Attributes & ObjCPropertyAttribute::kind_retain) {
Ted Kremenek7a7a0802010-03-12 00:38:38 +00002743 Diag(Loc, diag::err_objc_property_attr_mutually_exclusive)
2744 << "copy" << "retain";
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04002745 Attributes &= ~ObjCPropertyAttribute::kind_retain;
Ted Kremenek7a7a0802010-03-12 00:38:38 +00002746 }
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04002747 if (Attributes & ObjCPropertyAttribute::kind_strong) {
John McCall31168b02011-06-15 23:02:42 +00002748 Diag(Loc, diag::err_objc_property_attr_mutually_exclusive)
2749 << "copy" << "strong";
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04002750 Attributes &= ~ObjCPropertyAttribute::kind_strong;
John McCall31168b02011-06-15 23:02:42 +00002751 }
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04002752 if (Attributes & ObjCPropertyAttribute::kind_weak) {
John McCall31168b02011-06-15 23:02:42 +00002753 Diag(Loc, diag::err_objc_property_attr_mutually_exclusive)
2754 << "copy" << "weak";
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04002755 Attributes &= ~ObjCPropertyAttribute::kind_weak;
John McCall31168b02011-06-15 23:02:42 +00002756 }
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04002757 } else if ((Attributes & ObjCPropertyAttribute::kind_retain) &&
2758 (Attributes & ObjCPropertyAttribute::kind_weak)) {
2759 Diag(Loc, diag::err_objc_property_attr_mutually_exclusive) << "retain"
2760 << "weak";
2761 Attributes &= ~ObjCPropertyAttribute::kind_retain;
2762 } else if ((Attributes & ObjCPropertyAttribute::kind_strong) &&
2763 (Attributes & ObjCPropertyAttribute::kind_weak)) {
2764 Diag(Loc, diag::err_objc_property_attr_mutually_exclusive) << "strong"
2765 << "weak";
2766 Attributes &= ~ObjCPropertyAttribute::kind_weak;
Ted Kremenek7a7a0802010-03-12 00:38:38 +00002767 }
2768
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04002769 if (Attributes & ObjCPropertyAttribute::kind_weak) {
Douglas Gregor813a0662015-06-19 18:14:38 +00002770 // 'weak' and 'nonnull' are mutually exclusive.
2771 if (auto nullability = PropertyTy->getNullability(Context)) {
2772 if (*nullability == NullabilityKind::NonNull)
2773 Diag(Loc, diag::err_objc_property_attr_mutually_exclusive)
2774 << "nonnull" << "weak";
Douglas Gregor813a0662015-06-19 18:14:38 +00002775 }
2776 }
2777
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04002778 if ((Attributes & ObjCPropertyAttribute::kind_atomic) &&
2779 (Attributes & ObjCPropertyAttribute::kind_nonatomic)) {
2780 Diag(Loc, diag::err_objc_property_attr_mutually_exclusive) << "atomic"
2781 << "nonatomic";
2782 Attributes &= ~ObjCPropertyAttribute::kind_atomic;
Fariborz Jahanian55b4e5c2011-10-10 21:53:24 +00002783 }
2784
Ted Kremenek7a7a0802010-03-12 00:38:38 +00002785 // Warn if user supplied no assignment attribute, property is
2786 // readwrite, and this is an object type.
John McCallb61e14e2015-10-27 04:54:50 +00002787 if (!getOwnershipRule(Attributes) && PropertyTy->isObjCRetainableType()) {
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04002788 if (Attributes & ObjCPropertyAttribute::kind_readonly) {
John McCallb61e14e2015-10-27 04:54:50 +00002789 // do nothing
2790 } else if (getLangOpts().ObjCAutoRefCount) {
Fangrui Song6907ce22018-07-30 19:24:48 +00002791 // With arc, @property definitions should default to strong when
John McCallb61e14e2015-10-27 04:54:50 +00002792 // not specified.
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04002793 PropertyDecl->setPropertyAttributes(ObjCPropertyAttribute::kind_strong);
John McCallb61e14e2015-10-27 04:54:50 +00002794 } else if (PropertyTy->isObjCObjectPointerType()) {
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04002795 bool isAnyClassTy = (PropertyTy->isObjCClassType() ||
2796 PropertyTy->isObjCQualifiedClassType());
2797 // In non-gc, non-arc mode, 'Class' is treated as a 'void *' no need to
2798 // issue any warning.
2799 if (isAnyClassTy && getLangOpts().getGC() == LangOptions::NonGC)
2800 ;
2801 else if (propertyInPrimaryClass) {
2802 // Don't issue warning on property with no life time in class
2803 // extension as it is inherited from property in primary class.
2804 // Skip this warning in gc-only mode.
2805 if (getLangOpts().getGC() != LangOptions::GCOnly)
2806 Diag(Loc, diag::warn_objc_property_no_assignment_attribute);
Ted Kremenek7a7a0802010-03-12 00:38:38 +00002807
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04002808 // If non-gc code warn that this is likely inappropriate.
2809 if (getLangOpts().getGC() == LangOptions::NonGC)
2810 Diag(Loc, diag::warn_objc_property_default_assign_on_object);
2811 }
John McCallb61e14e2015-10-27 04:54:50 +00002812 }
Ted Kremenek7a7a0802010-03-12 00:38:38 +00002813
2814 // FIXME: Implement warning dependent on NSCopying being
2815 // implemented. See also:
2816 // <rdar://5168496&4855821&5607453&5096644&4947311&5698469&4947014&5168496>
2817 // (please trim this list while you are at it).
2818 }
2819
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04002820 if (!(Attributes & ObjCPropertyAttribute::kind_copy) &&
2821 !(Attributes & ObjCPropertyAttribute::kind_readonly) &&
2822 getLangOpts().getGC() == LangOptions::GCOnly &&
2823 PropertyTy->isBlockPointerType())
Ted Kremenek7a7a0802010-03-12 00:38:38 +00002824 Diag(Loc, diag::warn_objc_property_copy_missing_on_block);
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04002825 else if ((Attributes & ObjCPropertyAttribute::kind_retain) &&
2826 !(Attributes & ObjCPropertyAttribute::kind_readonly) &&
2827 !(Attributes & ObjCPropertyAttribute::kind_strong) &&
Fariborz Jahanian1723e172011-09-14 18:03:46 +00002828 PropertyTy->isBlockPointerType())
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04002829 Diag(Loc, diag::warn_objc_property_retain_of_block);
Fangrui Song6907ce22018-07-30 19:24:48 +00002830
Puyan Lotfi9721fbf2020-04-23 02:20:56 -04002831 if ((Attributes & ObjCPropertyAttribute::kind_readonly) &&
2832 (Attributes & ObjCPropertyAttribute::kind_setter))
Fariborz Jahanian3018b952011-11-01 23:02:16 +00002833 Diag(Loc, diag::warn_objc_readonly_property_has_setter);
Ted Kremenek7a7a0802010-03-12 00:38:38 +00002834}