blob: d944380ef85adfec51dd43aeb2d89dc64610cd18 [file] [log] [blame]
Ted Kremenek9d64c152010-03-12 00:38:38 +00001//===--- SemaObjCProperty.cpp - Semantic Analysis for ObjC @property ------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements semantic analysis for Objective C @property and
11// @synthesize declarations.
12//
13//===----------------------------------------------------------------------===//
14
John McCall2d887082010-08-25 22:03:47 +000015#include "clang/Sema/SemaInternal.h"
Douglas Gregore737f502010-08-12 20:07:10 +000016#include "clang/Sema/Initialization.h"
John McCall7cd088e2010-08-24 07:21:54 +000017#include "clang/AST/DeclObjC.h"
Fariborz Jahanian17cb3262010-05-05 21:52:17 +000018#include "clang/AST/ExprObjC.h"
Fariborz Jahanian57e264e2011-10-06 18:38:18 +000019#include "clang/AST/ExprCXX.h"
Argyrios Kyrtzidisc80553e2011-11-14 04:52:29 +000020#include "clang/AST/ASTMutationListener.h"
Fariborz Jahanianedcc27f2012-05-21 17:02:43 +000021#include "clang/Lex/Lexer.h"
22#include "clang/Basic/SourceManager.h"
John McCall50df6ae2010-08-25 07:03:20 +000023#include "llvm/ADT/DenseSet.h"
Benjamin Kramer8fe83e12012-02-04 13:45:25 +000024#include "llvm/ADT/SmallString.h"
Ted Kremenek9d64c152010-03-12 00:38:38 +000025
26using namespace clang;
27
Ted Kremenek28685ab2010-03-12 00:46:40 +000028//===----------------------------------------------------------------------===//
29// Grammar actions.
30//===----------------------------------------------------------------------===//
31
John McCall265941b2011-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.
38static Qualifiers::ObjCLifetime getImpliedARCOwnership(
39 ObjCPropertyDecl::PropertyAttributeKind attrs,
40 QualType type) {
41 // retain, strong, copy, weak, and unsafe_unretained are only legal
42 // on properties of retainable pointer type.
43 if (attrs & (ObjCPropertyDecl::OBJC_PR_retain |
44 ObjCPropertyDecl::OBJC_PR_strong |
45 ObjCPropertyDecl::OBJC_PR_copy)) {
Fariborz Jahanian5fa065b2011-10-13 23:45:45 +000046 return type->getObjCARCImplicitLifetime();
John McCall265941b2011-09-13 18:31:23 +000047 } else if (attrs & ObjCPropertyDecl::OBJC_PR_weak) {
48 return Qualifiers::OCL_Weak;
49 } else if (attrs & ObjCPropertyDecl::OBJC_PR_unsafe_unretained) {
50 return Qualifiers::OCL_ExplicitNone;
51 }
52
53 // assign can appear on other types, so we have to check the
54 // property type.
55 if (attrs & ObjCPropertyDecl::OBJC_PR_assign &&
56 type->isObjCRetainableType()) {
57 return Qualifiers::OCL_ExplicitNone;
58 }
59
60 return Qualifiers::OCL_None;
61}
62
John McCallf85e1932011-06-15 23:02:42 +000063/// Check the internal consistency of a property declaration.
64static void checkARCPropertyDecl(Sema &S, ObjCPropertyDecl *property) {
65 if (property->isInvalidDecl()) return;
66
67 ObjCPropertyDecl::PropertyAttributeKind propertyKind
68 = property->getPropertyAttributes();
69 Qualifiers::ObjCLifetime propertyLifetime
70 = property->getType().getObjCLifetime();
71
72 // Nothing to do if we don't have a lifetime.
73 if (propertyLifetime == Qualifiers::OCL_None) return;
74
John McCall265941b2011-09-13 18:31:23 +000075 Qualifiers::ObjCLifetime expectedLifetime
76 = getImpliedARCOwnership(propertyKind, property->getType());
77 if (!expectedLifetime) {
John McCallf85e1932011-06-15 23:02:42 +000078 // We have a lifetime qualifier but no dominating property
John McCall265941b2011-09-13 18:31:23 +000079 // attribute. That's okay, but restore reasonable invariants by
80 // setting the property attribute according to the lifetime
81 // qualifier.
82 ObjCPropertyDecl::PropertyAttributeKind attr;
83 if (propertyLifetime == Qualifiers::OCL_Strong) {
84 attr = ObjCPropertyDecl::OBJC_PR_strong;
85 } else if (propertyLifetime == Qualifiers::OCL_Weak) {
86 attr = ObjCPropertyDecl::OBJC_PR_weak;
87 } else {
88 assert(propertyLifetime == Qualifiers::OCL_ExplicitNone);
89 attr = ObjCPropertyDecl::OBJC_PR_unsafe_unretained;
90 }
91 property->setPropertyAttributes(attr);
John McCallf85e1932011-06-15 23:02:42 +000092 return;
93 }
94
95 if (propertyLifetime == expectedLifetime) return;
96
97 property->setInvalidDecl();
98 S.Diag(property->getLocation(),
Argyrios Kyrtzidisb8b03132011-06-24 00:08:59 +000099 diag::err_arc_inconsistent_property_ownership)
John McCallf85e1932011-06-15 23:02:42 +0000100 << property->getDeclName()
John McCall265941b2011-09-13 18:31:23 +0000101 << expectedLifetime
John McCallf85e1932011-06-15 23:02:42 +0000102 << propertyLifetime;
103}
104
John McCalld226f652010-08-21 09:40:31 +0000105Decl *Sema::ActOnProperty(Scope *S, SourceLocation AtLoc,
Fariborz Jahanian77bfb8b2012-02-29 22:18:55 +0000106 SourceLocation LParenLoc,
John McCalld226f652010-08-21 09:40:31 +0000107 FieldDeclarator &FD,
108 ObjCDeclSpec &ODS,
109 Selector GetterSel,
110 Selector SetterSel,
John McCalld226f652010-08-21 09:40:31 +0000111 bool *isOverridingProperty,
Ted Kremenek4a2e9ea2010-09-23 21:18:05 +0000112 tok::ObjCKeywordKind MethodImplKind,
113 DeclContext *lexicalDC) {
Ted Kremenek28685ab2010-03-12 00:46:40 +0000114 unsigned Attributes = ODS.getPropertyAttributes();
John McCallf85e1932011-06-15 23:02:42 +0000115 TypeSourceInfo *TSI = GetTypeForDeclarator(FD.D, S);
116 QualType T = TSI->getType();
David Blaikie4e4d0842012-03-11 07:00:24 +0000117 if ((getLangOpts().getGC() != LangOptions::NonGC &&
John McCallf85e1932011-06-15 23:02:42 +0000118 T.isObjCGCWeak()) ||
David Blaikie4e4d0842012-03-11 07:00:24 +0000119 (getLangOpts().ObjCAutoRefCount &&
John McCallf85e1932011-06-15 23:02:42 +0000120 T.getObjCLifetime() == Qualifiers::OCL_Weak))
121 Attributes |= ObjCDeclSpec::DQ_PR_weak;
122
Ted Kremenek28685ab2010-03-12 00:46:40 +0000123 bool isReadWrite = ((Attributes & ObjCDeclSpec::DQ_PR_readwrite) ||
124 // default is readwrite!
125 !(Attributes & ObjCDeclSpec::DQ_PR_readonly));
126 // property is defaulted to 'assign' if it is readwrite and is
127 // not retain or copy
128 bool isAssign = ((Attributes & ObjCDeclSpec::DQ_PR_assign) ||
129 (isReadWrite &&
130 !(Attributes & ObjCDeclSpec::DQ_PR_retain) &&
John McCallf85e1932011-06-15 23:02:42 +0000131 !(Attributes & ObjCDeclSpec::DQ_PR_strong) &&
132 !(Attributes & ObjCDeclSpec::DQ_PR_copy) &&
133 !(Attributes & ObjCDeclSpec::DQ_PR_unsafe_unretained) &&
134 !(Attributes & ObjCDeclSpec::DQ_PR_weak)));
Fariborz Jahanian14086762011-03-28 23:47:18 +0000135
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000136 // Proceed with constructing the ObjCPropertDecls.
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000137 ObjCContainerDecl *ClassDecl = cast<ObjCContainerDecl>(CurContext);
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000138
Ted Kremenek28685ab2010-03-12 00:46:40 +0000139 if (ObjCCategoryDecl *CDecl = dyn_cast<ObjCCategoryDecl>(ClassDecl))
Fariborz Jahanianae415dc2010-07-13 22:04:56 +0000140 if (CDecl->IsClassExtension()) {
Fariborz Jahanian77bfb8b2012-02-29 22:18:55 +0000141 Decl *Res = HandlePropertyInClassExtension(S, AtLoc, LParenLoc,
Fariborz Jahanianae415dc2010-07-13 22:04:56 +0000142 FD, GetterSel, SetterSel,
143 isAssign, isReadWrite,
144 Attributes,
Argyrios Kyrtzidisdbbdec92011-11-06 18:58:12 +0000145 ODS.getPropertyAttributes(),
Fariborz Jahanianae415dc2010-07-13 22:04:56 +0000146 isOverridingProperty, TSI,
147 MethodImplKind);
John McCallf85e1932011-06-15 23:02:42 +0000148 if (Res) {
Fariborz Jahanianae415dc2010-07-13 22:04:56 +0000149 CheckObjCPropertyAttributes(Res, AtLoc, Attributes);
David Blaikie4e4d0842012-03-11 07:00:24 +0000150 if (getLangOpts().ObjCAutoRefCount)
John McCallf85e1932011-06-15 23:02:42 +0000151 checkARCPropertyDecl(*this, cast<ObjCPropertyDecl>(Res));
152 }
Fariborz Jahanianae415dc2010-07-13 22:04:56 +0000153 return Res;
154 }
155
Fariborz Jahanian77bfb8b2012-02-29 22:18:55 +0000156 ObjCPropertyDecl *Res = CreatePropertyDecl(S, ClassDecl, AtLoc, LParenLoc, FD,
John McCallf85e1932011-06-15 23:02:42 +0000157 GetterSel, SetterSel,
158 isAssign, isReadWrite,
Argyrios Kyrtzidisdbbdec92011-11-06 18:58:12 +0000159 Attributes,
160 ODS.getPropertyAttributes(),
161 TSI, MethodImplKind);
Ted Kremenek4a2e9ea2010-09-23 21:18:05 +0000162 if (lexicalDC)
163 Res->setLexicalDeclContext(lexicalDC);
164
Fariborz Jahanian842f07b2010-03-30 22:40:11 +0000165 // Validate the attributes on the @property.
166 CheckObjCPropertyAttributes(Res, AtLoc, Attributes);
John McCallf85e1932011-06-15 23:02:42 +0000167
David Blaikie4e4d0842012-03-11 07:00:24 +0000168 if (getLangOpts().ObjCAutoRefCount)
John McCallf85e1932011-06-15 23:02:42 +0000169 checkARCPropertyDecl(*this, Res);
170
Fariborz Jahanian842f07b2010-03-30 22:40:11 +0000171 return Res;
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000172}
Ted Kremenek2d2f9362010-03-12 00:49:00 +0000173
Argyrios Kyrtzidisb98ffde2011-10-18 19:49:16 +0000174static ObjCPropertyDecl::PropertyAttributeKind
175makePropertyAttributesAsWritten(unsigned Attributes) {
176 unsigned attributesAsWritten = 0;
177 if (Attributes & ObjCDeclSpec::DQ_PR_readonly)
178 attributesAsWritten |= ObjCPropertyDecl::OBJC_PR_readonly;
179 if (Attributes & ObjCDeclSpec::DQ_PR_readwrite)
180 attributesAsWritten |= ObjCPropertyDecl::OBJC_PR_readwrite;
181 if (Attributes & ObjCDeclSpec::DQ_PR_getter)
182 attributesAsWritten |= ObjCPropertyDecl::OBJC_PR_getter;
183 if (Attributes & ObjCDeclSpec::DQ_PR_setter)
184 attributesAsWritten |= ObjCPropertyDecl::OBJC_PR_setter;
185 if (Attributes & ObjCDeclSpec::DQ_PR_assign)
186 attributesAsWritten |= ObjCPropertyDecl::OBJC_PR_assign;
187 if (Attributes & ObjCDeclSpec::DQ_PR_retain)
188 attributesAsWritten |= ObjCPropertyDecl::OBJC_PR_retain;
189 if (Attributes & ObjCDeclSpec::DQ_PR_strong)
190 attributesAsWritten |= ObjCPropertyDecl::OBJC_PR_strong;
191 if (Attributes & ObjCDeclSpec::DQ_PR_weak)
192 attributesAsWritten |= ObjCPropertyDecl::OBJC_PR_weak;
193 if (Attributes & ObjCDeclSpec::DQ_PR_copy)
194 attributesAsWritten |= ObjCPropertyDecl::OBJC_PR_copy;
195 if (Attributes & ObjCDeclSpec::DQ_PR_unsafe_unretained)
196 attributesAsWritten |= ObjCPropertyDecl::OBJC_PR_unsafe_unretained;
197 if (Attributes & ObjCDeclSpec::DQ_PR_nonatomic)
198 attributesAsWritten |= ObjCPropertyDecl::OBJC_PR_nonatomic;
199 if (Attributes & ObjCDeclSpec::DQ_PR_atomic)
200 attributesAsWritten |= ObjCPropertyDecl::OBJC_PR_atomic;
201
202 return (ObjCPropertyDecl::PropertyAttributeKind)attributesAsWritten;
203}
204
Fariborz Jahanianedcc27f2012-05-21 17:02:43 +0000205static bool LocPropertyAttribute(const Sema &sema,
206 ASTContext &Context, const char *attrName,
207 SourceLocation LParenLoc, SourceLocation &Loc) {
208 if (LParenLoc.isMacroID())
209 return false;
210
211 SourceManager &SM = Context.getSourceManager();
212 std::pair<FileID, unsigned> locInfo = SM.getDecomposedLoc(LParenLoc);
213 // Try to load the file buffer.
214 bool invalidTemp = false;
215 StringRef file = SM.getBufferData(locInfo.first, &invalidTemp);
216 if (invalidTemp)
217 return false;
218 const char *tokenBegin = file.data() + locInfo.second;
219
220 // Lex from the start of the given location.
221 Lexer lexer(SM.getLocForStartOfFile(locInfo.first),
222 Context.getLangOpts(),
223 file.begin(), tokenBegin, file.end());
224 Token Tok;
225 do {
226 lexer.LexFromRawLexer(Tok);
227 if (Tok.is(tok::raw_identifier) &&
228 StringRef(Tok.getRawIdentifierData(), Tok.getLength()) == attrName) {
229 Loc = Tok.getLocation();
230 return true;
231 }
232 } while (Tok.isNot(tok::r_paren));
233 return false;
234
Fariborz Jahanian2b309fb2012-05-19 18:17:17 +0000235}
236
John McCalld226f652010-08-21 09:40:31 +0000237Decl *
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000238Sema::HandlePropertyInClassExtension(Scope *S,
Fariborz Jahanian77bfb8b2012-02-29 22:18:55 +0000239 SourceLocation AtLoc,
240 SourceLocation LParenLoc,
241 FieldDeclarator &FD,
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000242 Selector GetterSel, Selector SetterSel,
243 const bool isAssign,
244 const bool isReadWrite,
245 const unsigned Attributes,
Argyrios Kyrtzidisdbbdec92011-11-06 18:58:12 +0000246 const unsigned AttributesAsWritten,
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000247 bool *isOverridingProperty,
John McCall83a230c2010-06-04 20:50:08 +0000248 TypeSourceInfo *T,
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000249 tok::ObjCKeywordKind MethodImplKind) {
Fariborz Jahanian58a76492011-08-22 18:34:22 +0000250 ObjCCategoryDecl *CDecl = cast<ObjCCategoryDecl>(CurContext);
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000251 // Diagnose if this property is already in continuation class.
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000252 DeclContext *DC = CurContext;
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000253 IdentifierInfo *PropertyId = FD.D.getIdentifier();
Fariborz Jahanian2a289142010-11-10 18:01:36 +0000254 ObjCInterfaceDecl *CCPrimary = CDecl->getClassInterface();
255
256 if (CCPrimary)
257 // Check for duplicate declaration of this property in current and
258 // other class extensions.
259 for (const ObjCCategoryDecl *ClsExtDecl =
260 CCPrimary->getFirstClassExtension();
261 ClsExtDecl; ClsExtDecl = ClsExtDecl->getNextClassExtension()) {
262 if (ObjCPropertyDecl *prevDecl =
263 ObjCPropertyDecl::findPropertyDecl(ClsExtDecl, PropertyId)) {
264 Diag(AtLoc, diag::err_duplicate_property);
265 Diag(prevDecl->getLocation(), diag::note_property_declare);
266 return 0;
267 }
268 }
269
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000270 // Create a new ObjCPropertyDecl with the DeclContext being
271 // the class extension.
Fariborz Jahanian88f5e9b2010-12-10 23:36:33 +0000272 // FIXME. We should really be using CreatePropertyDecl for this.
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000273 ObjCPropertyDecl *PDecl =
274 ObjCPropertyDecl::Create(Context, DC, FD.D.getIdentifierLoc(),
Fariborz Jahanian77bfb8b2012-02-29 22:18:55 +0000275 PropertyId, AtLoc, LParenLoc, T);
Argyrios Kyrtzidisb98ffde2011-10-18 19:49:16 +0000276 PDecl->setPropertyAttributesAsWritten(
Argyrios Kyrtzidisdbbdec92011-11-06 18:58:12 +0000277 makePropertyAttributesAsWritten(AttributesAsWritten));
Fariborz Jahanian22f757b2010-03-22 23:25:52 +0000278 if (Attributes & ObjCDeclSpec::DQ_PR_readonly)
279 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_readonly);
280 if (Attributes & ObjCDeclSpec::DQ_PR_readwrite)
281 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_readwrite);
Fariborz Jahanian88f5e9b2010-12-10 23:36:33 +0000282 // Set setter/getter selector name. Needed later.
283 PDecl->setGetterName(GetterSel);
284 PDecl->setSetterName(SetterSel);
Douglas Gregor91ae6b42011-07-15 15:30:21 +0000285 ProcessDeclAttributes(S, PDecl, FD.D);
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000286 DC->addDecl(PDecl);
287
288 // We need to look in the @interface to see if the @property was
289 // already declared.
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000290 if (!CCPrimary) {
291 Diag(CDecl->getLocation(), diag::err_continuation_class);
292 *isOverridingProperty = true;
John McCalld226f652010-08-21 09:40:31 +0000293 return 0;
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000294 }
295
296 // Find the property in continuation class's primary class only.
297 ObjCPropertyDecl *PIDecl =
298 CCPrimary->FindPropertyVisibleInPrimaryClass(PropertyId);
299
300 if (!PIDecl) {
301 // No matching property found in the primary class. Just fall thru
302 // and add property to continuation class's primary class.
Argyrios Kyrtzidisd7c15a62012-02-28 17:50:28 +0000303 ObjCPropertyDecl *PrimaryPDecl =
Fariborz Jahanian77bfb8b2012-02-29 22:18:55 +0000304 CreatePropertyDecl(S, CCPrimary, AtLoc, LParenLoc,
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000305 FD, GetterSel, SetterSel, isAssign, isReadWrite,
Argyrios Kyrtzidisdbbdec92011-11-06 18:58:12 +0000306 Attributes,AttributesAsWritten, T, MethodImplKind, DC);
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000307
308 // A case of continuation class adding a new property in the class. This
309 // is not what it was meant for. However, gcc supports it and so should we.
310 // Make sure setter/getters are declared here.
Argyrios Kyrtzidisd7c15a62012-02-28 17:50:28 +0000311 ProcessPropertyDecl(PrimaryPDecl, CCPrimary, /* redeclaredProperty = */ 0,
Ted Kremeneka054fb42010-09-21 20:52:59 +0000312 /* lexicalDC = */ CDecl);
Argyrios Kyrtzidisd7c15a62012-02-28 17:50:28 +0000313 PDecl->setGetterMethodDecl(PrimaryPDecl->getGetterMethodDecl());
314 PDecl->setSetterMethodDecl(PrimaryPDecl->getSetterMethodDecl());
Argyrios Kyrtzidisc80553e2011-11-14 04:52:29 +0000315 if (ASTMutationListener *L = Context.getASTMutationListener())
Argyrios Kyrtzidisd7c15a62012-02-28 17:50:28 +0000316 L->AddedObjCPropertyInClassExtension(PrimaryPDecl, /*OrigProp=*/0, CDecl);
317 return PrimaryPDecl;
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000318 }
Fariborz Jahaniane2351832012-02-02 18:54:58 +0000319 if (!Context.hasSameType(PIDecl->getType(), PDecl->getType())) {
320 bool IncompatibleObjC = false;
321 QualType ConvertedType;
Fariborz Jahanianff2a0ec2012-02-02 19:34:05 +0000322 // Relax the strict type matching for property type in continuation class.
323 // Allow property object type of continuation class to be different as long
Fariborz Jahanianad7eff22012-02-02 22:37:48 +0000324 // as it narrows the object type in its primary class property. Note that
325 // this conversion is safe only because the wider type is for a 'readonly'
326 // property in primary class and 'narrowed' type for a 'readwrite' property
327 // in continuation class.
Fariborz Jahaniane2351832012-02-02 18:54:58 +0000328 if (!isa<ObjCObjectPointerType>(PIDecl->getType()) ||
329 !isa<ObjCObjectPointerType>(PDecl->getType()) ||
330 (!isObjCPointerConversion(PDecl->getType(), PIDecl->getType(),
331 ConvertedType, IncompatibleObjC))
332 || IncompatibleObjC) {
333 Diag(AtLoc,
334 diag::err_type_mismatch_continuation_class) << PDecl->getType();
335 Diag(PIDecl->getLocation(), diag::note_property_declare);
336 }
Fariborz Jahaniana4b984d2011-09-24 00:56:59 +0000337 }
338
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000339 // The property 'PIDecl's readonly attribute will be over-ridden
340 // with continuation class's readwrite property attribute!
Fariborz Jahanian80aa1cd2010-06-22 23:20:40 +0000341 unsigned PIkind = PIDecl->getPropertyAttributesAsWritten();
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000342 if (isReadWrite && (PIkind & ObjCPropertyDecl::OBJC_PR_readonly)) {
343 unsigned retainCopyNonatomic =
344 (ObjCPropertyDecl::OBJC_PR_retain |
John McCallf85e1932011-06-15 23:02:42 +0000345 ObjCPropertyDecl::OBJC_PR_strong |
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000346 ObjCPropertyDecl::OBJC_PR_copy |
347 ObjCPropertyDecl::OBJC_PR_nonatomic);
348 if ((Attributes & retainCopyNonatomic) !=
349 (PIkind & retainCopyNonatomic)) {
350 Diag(AtLoc, diag::warn_property_attr_mismatch);
351 Diag(PIDecl->getLocation(), diag::note_property_declare);
Ted Kremenek28685ab2010-03-12 00:46:40 +0000352 }
Ted Kremenek9944c762010-03-18 01:22:36 +0000353 DeclContext *DC = cast<DeclContext>(CCPrimary);
354 if (!ObjCPropertyDecl::findPropertyDecl(DC,
355 PIDecl->getDeclName().getAsIdentifierInfo())) {
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000356 // Protocol is not in the primary class. Must build one for it.
357 ObjCDeclSpec ProtocolPropertyODS;
358 // FIXME. Assuming that ObjCDeclSpec::ObjCPropertyAttributeKind
359 // and ObjCPropertyDecl::PropertyAttributeKind have identical
360 // values. Should consolidate both into one enum type.
361 ProtocolPropertyODS.
362 setPropertyAttributes((ObjCDeclSpec::ObjCPropertyAttributeKind)
363 PIkind);
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000364 // Must re-establish the context from class extension to primary
365 // class context.
Fariborz Jahanian79394182011-08-22 20:15:24 +0000366 ContextRAII SavedContext(*this, CCPrimary);
367
John McCalld226f652010-08-21 09:40:31 +0000368 Decl *ProtocolPtrTy =
Fariborz Jahanian77bfb8b2012-02-29 22:18:55 +0000369 ActOnProperty(S, AtLoc, LParenLoc, FD, ProtocolPropertyODS,
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000370 PIDecl->getGetterName(),
371 PIDecl->getSetterName(),
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000372 isOverridingProperty,
Ted Kremenek4a2e9ea2010-09-23 21:18:05 +0000373 MethodImplKind,
374 /* lexicalDC = */ CDecl);
John McCalld226f652010-08-21 09:40:31 +0000375 PIDecl = cast<ObjCPropertyDecl>(ProtocolPtrTy);
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000376 }
377 PIDecl->makeitReadWriteAttribute();
378 if (Attributes & ObjCDeclSpec::DQ_PR_retain)
379 PIDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_retain);
John McCallf85e1932011-06-15 23:02:42 +0000380 if (Attributes & ObjCDeclSpec::DQ_PR_strong)
381 PIDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_strong);
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000382 if (Attributes & ObjCDeclSpec::DQ_PR_copy)
383 PIDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_copy);
384 PIDecl->setSetterName(SetterSel);
385 } else {
Ted Kremenek788f4892010-10-21 18:49:42 +0000386 // Tailor the diagnostics for the common case where a readwrite
387 // property is declared both in the @interface and the continuation.
388 // This is a common error where the user often intended the original
389 // declaration to be readonly.
390 unsigned diag =
391 (Attributes & ObjCDeclSpec::DQ_PR_readwrite) &&
392 (PIkind & ObjCPropertyDecl::OBJC_PR_readwrite)
393 ? diag::err_use_continuation_class_redeclaration_readwrite
394 : diag::err_use_continuation_class;
395 Diag(AtLoc, diag)
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000396 << CCPrimary->getDeclName();
397 Diag(PIDecl->getLocation(), diag::note_property_declare);
398 }
399 *isOverridingProperty = true;
400 // Make sure setter decl is synthesized, and added to primary class's list.
Ted Kremenek8254aa62010-09-21 18:28:43 +0000401 ProcessPropertyDecl(PIDecl, CCPrimary, PDecl, CDecl);
Argyrios Kyrtzidisd7c15a62012-02-28 17:50:28 +0000402 PDecl->setGetterMethodDecl(PIDecl->getGetterMethodDecl());
403 PDecl->setSetterMethodDecl(PIDecl->getSetterMethodDecl());
Argyrios Kyrtzidisc80553e2011-11-14 04:52:29 +0000404 if (ASTMutationListener *L = Context.getASTMutationListener())
405 L->AddedObjCPropertyInClassExtension(PDecl, PIDecl, CDecl);
John McCalld226f652010-08-21 09:40:31 +0000406 return 0;
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000407}
408
409ObjCPropertyDecl *Sema::CreatePropertyDecl(Scope *S,
410 ObjCContainerDecl *CDecl,
411 SourceLocation AtLoc,
Fariborz Jahanian77bfb8b2012-02-29 22:18:55 +0000412 SourceLocation LParenLoc,
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000413 FieldDeclarator &FD,
414 Selector GetterSel,
415 Selector SetterSel,
416 const bool isAssign,
417 const bool isReadWrite,
418 const unsigned Attributes,
Argyrios Kyrtzidisdbbdec92011-11-06 18:58:12 +0000419 const unsigned AttributesAsWritten,
John McCall83a230c2010-06-04 20:50:08 +0000420 TypeSourceInfo *TInfo,
Ted Kremenek23173d72010-05-18 21:09:07 +0000421 tok::ObjCKeywordKind MethodImplKind,
422 DeclContext *lexicalDC){
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000423 IdentifierInfo *PropertyId = FD.D.getIdentifier();
John McCall83a230c2010-06-04 20:50:08 +0000424 QualType T = TInfo->getType();
Ted Kremenek28685ab2010-03-12 00:46:40 +0000425
426 // Issue a warning if property is 'assign' as default and its object, which is
427 // gc'able conforms to NSCopying protocol
David Blaikie4e4d0842012-03-11 07:00:24 +0000428 if (getLangOpts().getGC() != LangOptions::NonGC &&
Ted Kremenek28685ab2010-03-12 00:46:40 +0000429 isAssign && !(Attributes & ObjCDeclSpec::DQ_PR_assign))
John McCallc12c5bb2010-05-15 11:32:37 +0000430 if (const ObjCObjectPointerType *ObjPtrTy =
431 T->getAs<ObjCObjectPointerType>()) {
432 ObjCInterfaceDecl *IDecl = ObjPtrTy->getObjectType()->getInterface();
433 if (IDecl)
434 if (ObjCProtocolDecl* PNSCopying =
435 LookupProtocol(&Context.Idents.get("NSCopying"), AtLoc))
436 if (IDecl->ClassImplementsProtocol(PNSCopying, true))
437 Diag(AtLoc, diag::warn_implements_nscopying) << PropertyId;
Ted Kremenek28685ab2010-03-12 00:46:40 +0000438 }
John McCallc12c5bb2010-05-15 11:32:37 +0000439 if (T->isObjCObjectType())
Ted Kremenek28685ab2010-03-12 00:46:40 +0000440 Diag(FD.D.getIdentifierLoc(), diag::err_statically_allocated_object);
441
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000442 DeclContext *DC = cast<DeclContext>(CDecl);
Ted Kremenek28685ab2010-03-12 00:46:40 +0000443 ObjCPropertyDecl *PDecl = ObjCPropertyDecl::Create(Context, DC,
444 FD.D.getIdentifierLoc(),
Fariborz Jahanian77bfb8b2012-02-29 22:18:55 +0000445 PropertyId, AtLoc, LParenLoc, TInfo);
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000446
Ted Kremenek9f550ff2010-03-15 20:11:46 +0000447 if (ObjCPropertyDecl *prevDecl =
448 ObjCPropertyDecl::findPropertyDecl(DC, PropertyId)) {
Ted Kremenek28685ab2010-03-12 00:46:40 +0000449 Diag(PDecl->getLocation(), diag::err_duplicate_property);
Ted Kremenek894ae6a2010-03-15 18:47:25 +0000450 Diag(prevDecl->getLocation(), diag::note_property_declare);
Ted Kremenek28685ab2010-03-12 00:46:40 +0000451 PDecl->setInvalidDecl();
452 }
Ted Kremenek23173d72010-05-18 21:09:07 +0000453 else {
Ted Kremenek28685ab2010-03-12 00:46:40 +0000454 DC->addDecl(PDecl);
Ted Kremenek23173d72010-05-18 21:09:07 +0000455 if (lexicalDC)
456 PDecl->setLexicalDeclContext(lexicalDC);
457 }
Ted Kremenek28685ab2010-03-12 00:46:40 +0000458
459 if (T->isArrayType() || T->isFunctionType()) {
460 Diag(AtLoc, diag::err_property_type) << T;
461 PDecl->setInvalidDecl();
462 }
463
464 ProcessDeclAttributes(S, PDecl, FD.D);
465
466 // Regardless of setter/getter attribute, we save the default getter/setter
467 // selector names in anticipation of declaration of setter/getter methods.
468 PDecl->setGetterName(GetterSel);
469 PDecl->setSetterName(SetterSel);
Argyrios Kyrtzidis0a68dc72011-07-12 04:30:16 +0000470 PDecl->setPropertyAttributesAsWritten(
Argyrios Kyrtzidisdbbdec92011-11-06 18:58:12 +0000471 makePropertyAttributesAsWritten(AttributesAsWritten));
Argyrios Kyrtzidis0a68dc72011-07-12 04:30:16 +0000472
Ted Kremenek28685ab2010-03-12 00:46:40 +0000473 if (Attributes & ObjCDeclSpec::DQ_PR_readonly)
474 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_readonly);
475
476 if (Attributes & ObjCDeclSpec::DQ_PR_getter)
477 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_getter);
478
479 if (Attributes & ObjCDeclSpec::DQ_PR_setter)
480 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_setter);
481
482 if (isReadWrite)
483 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_readwrite);
484
485 if (Attributes & ObjCDeclSpec::DQ_PR_retain)
486 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_retain);
487
John McCallf85e1932011-06-15 23:02:42 +0000488 if (Attributes & ObjCDeclSpec::DQ_PR_strong)
489 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_strong);
490
491 if (Attributes & ObjCDeclSpec::DQ_PR_weak)
492 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_weak);
493
Ted Kremenek28685ab2010-03-12 00:46:40 +0000494 if (Attributes & ObjCDeclSpec::DQ_PR_copy)
495 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_copy);
496
John McCallf85e1932011-06-15 23:02:42 +0000497 if (Attributes & ObjCDeclSpec::DQ_PR_unsafe_unretained)
498 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_unsafe_unretained);
499
Ted Kremenek28685ab2010-03-12 00:46:40 +0000500 if (isAssign)
501 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_assign);
502
John McCall265941b2011-09-13 18:31:23 +0000503 // In the semantic attributes, one of nonatomic or atomic is always set.
Ted Kremenek28685ab2010-03-12 00:46:40 +0000504 if (Attributes & ObjCDeclSpec::DQ_PR_nonatomic)
505 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_nonatomic);
John McCall265941b2011-09-13 18:31:23 +0000506 else
Fariborz Jahanian45937ae2011-06-11 00:45:12 +0000507 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_atomic);
Ted Kremenek28685ab2010-03-12 00:46:40 +0000508
John McCallf85e1932011-06-15 23:02:42 +0000509 // 'unsafe_unretained' is alias for 'assign'.
510 if (Attributes & ObjCDeclSpec::DQ_PR_unsafe_unretained)
511 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_assign);
512 if (isAssign)
513 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_unsafe_unretained);
514
Ted Kremenek28685ab2010-03-12 00:46:40 +0000515 if (MethodImplKind == tok::objc_required)
516 PDecl->setPropertyImplementation(ObjCPropertyDecl::Required);
517 else if (MethodImplKind == tok::objc_optional)
518 PDecl->setPropertyImplementation(ObjCPropertyDecl::Optional);
Ted Kremenek28685ab2010-03-12 00:46:40 +0000519
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000520 return PDecl;
Ted Kremenek28685ab2010-03-12 00:46:40 +0000521}
522
John McCallf85e1932011-06-15 23:02:42 +0000523static void checkARCPropertyImpl(Sema &S, SourceLocation propertyImplLoc,
524 ObjCPropertyDecl *property,
525 ObjCIvarDecl *ivar) {
526 if (property->isInvalidDecl() || ivar->isInvalidDecl()) return;
527
John McCallf85e1932011-06-15 23:02:42 +0000528 QualType ivarType = ivar->getType();
529 Qualifiers::ObjCLifetime ivarLifetime = ivarType.getObjCLifetime();
John McCallf85e1932011-06-15 23:02:42 +0000530
John McCall265941b2011-09-13 18:31:23 +0000531 // The lifetime implied by the property's attributes.
532 Qualifiers::ObjCLifetime propertyLifetime =
533 getImpliedARCOwnership(property->getPropertyAttributes(),
534 property->getType());
John McCallf85e1932011-06-15 23:02:42 +0000535
John McCall265941b2011-09-13 18:31:23 +0000536 // We're fine if they match.
537 if (propertyLifetime == ivarLifetime) return;
John McCallf85e1932011-06-15 23:02:42 +0000538
John McCall265941b2011-09-13 18:31:23 +0000539 // These aren't valid lifetimes for object ivars; don't diagnose twice.
540 if (ivarLifetime == Qualifiers::OCL_None ||
541 ivarLifetime == Qualifiers::OCL_Autoreleasing)
542 return;
John McCallf85e1932011-06-15 23:02:42 +0000543
John McCall265941b2011-09-13 18:31:23 +0000544 switch (propertyLifetime) {
545 case Qualifiers::OCL_Strong:
546 S.Diag(propertyImplLoc, diag::err_arc_strong_property_ownership)
547 << property->getDeclName()
548 << ivar->getDeclName()
549 << ivarLifetime;
550 break;
John McCallf85e1932011-06-15 23:02:42 +0000551
John McCall265941b2011-09-13 18:31:23 +0000552 case Qualifiers::OCL_Weak:
553 S.Diag(propertyImplLoc, diag::error_weak_property)
554 << property->getDeclName()
555 << ivar->getDeclName();
556 break;
John McCallf85e1932011-06-15 23:02:42 +0000557
John McCall265941b2011-09-13 18:31:23 +0000558 case Qualifiers::OCL_ExplicitNone:
559 S.Diag(propertyImplLoc, diag::err_arc_assign_property_ownership)
560 << property->getDeclName()
561 << ivar->getDeclName()
562 << ((property->getPropertyAttributesAsWritten()
563 & ObjCPropertyDecl::OBJC_PR_assign) != 0);
564 break;
John McCallf85e1932011-06-15 23:02:42 +0000565
John McCall265941b2011-09-13 18:31:23 +0000566 case Qualifiers::OCL_Autoreleasing:
567 llvm_unreachable("properties cannot be autoreleasing");
John McCallf85e1932011-06-15 23:02:42 +0000568
John McCall265941b2011-09-13 18:31:23 +0000569 case Qualifiers::OCL_None:
570 // Any other property should be ignored.
John McCallf85e1932011-06-15 23:02:42 +0000571 return;
572 }
573
574 S.Diag(property->getLocation(), diag::note_property_declare);
575}
576
Fariborz Jahanian015f6082012-01-11 18:26:06 +0000577/// setImpliedPropertyAttributeForReadOnlyProperty -
578/// This routine evaludates life-time attributes for a 'readonly'
579/// property with no known lifetime of its own, using backing
580/// 'ivar's attribute, if any. If no backing 'ivar', property's
581/// life-time is assumed 'strong'.
582static void setImpliedPropertyAttributeForReadOnlyProperty(
583 ObjCPropertyDecl *property, ObjCIvarDecl *ivar) {
584 Qualifiers::ObjCLifetime propertyLifetime =
585 getImpliedARCOwnership(property->getPropertyAttributes(),
586 property->getType());
587 if (propertyLifetime != Qualifiers::OCL_None)
588 return;
589
590 if (!ivar) {
591 // if no backing ivar, make property 'strong'.
592 property->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_strong);
593 return;
594 }
595 // property assumes owenership of backing ivar.
596 QualType ivarType = ivar->getType();
597 Qualifiers::ObjCLifetime ivarLifetime = ivarType.getObjCLifetime();
598 if (ivarLifetime == Qualifiers::OCL_Strong)
599 property->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_strong);
600 else if (ivarLifetime == Qualifiers::OCL_Weak)
601 property->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_weak);
602 return;
603}
Ted Kremenek28685ab2010-03-12 00:46:40 +0000604
605/// ActOnPropertyImplDecl - This routine performs semantic checks and
606/// builds the AST node for a property implementation declaration; declared
607/// as @synthesize or @dynamic.
608///
John McCalld226f652010-08-21 09:40:31 +0000609Decl *Sema::ActOnPropertyImplDecl(Scope *S,
610 SourceLocation AtLoc,
611 SourceLocation PropertyLoc,
612 bool Synthesize,
John McCalld226f652010-08-21 09:40:31 +0000613 IdentifierInfo *PropertyId,
Douglas Gregora4ffd852010-11-17 01:03:52 +0000614 IdentifierInfo *PropertyIvar,
615 SourceLocation PropertyIvarLoc) {
Ted Kremeneke9686572010-04-05 23:45:09 +0000616 ObjCContainerDecl *ClassImpDecl =
Fariborz Jahanian84e0ccf2011-09-19 16:32:32 +0000617 dyn_cast<ObjCContainerDecl>(CurContext);
Ted Kremenek28685ab2010-03-12 00:46:40 +0000618 // Make sure we have a context for the property implementation declaration.
619 if (!ClassImpDecl) {
620 Diag(AtLoc, diag::error_missing_property_context);
John McCalld226f652010-08-21 09:40:31 +0000621 return 0;
Ted Kremenek28685ab2010-03-12 00:46:40 +0000622 }
Argyrios Kyrtzidisf9112422012-02-28 17:50:39 +0000623 if (PropertyIvarLoc.isInvalid())
624 PropertyIvarLoc = PropertyLoc;
Eli Friedmane4c043d2012-05-01 22:26:06 +0000625 SourceLocation PropertyDiagLoc = PropertyLoc;
626 if (PropertyDiagLoc.isInvalid())
627 PropertyDiagLoc = ClassImpDecl->getLocStart();
Ted Kremenek28685ab2010-03-12 00:46:40 +0000628 ObjCPropertyDecl *property = 0;
629 ObjCInterfaceDecl* IDecl = 0;
630 // Find the class or category class where this property must have
631 // a declaration.
632 ObjCImplementationDecl *IC = 0;
633 ObjCCategoryImplDecl* CatImplClass = 0;
634 if ((IC = dyn_cast<ObjCImplementationDecl>(ClassImpDecl))) {
635 IDecl = IC->getClassInterface();
636 // We always synthesize an interface for an implementation
637 // without an interface decl. So, IDecl is always non-zero.
638 assert(IDecl &&
639 "ActOnPropertyImplDecl - @implementation without @interface");
640
641 // Look for this property declaration in the @implementation's @interface
642 property = IDecl->FindPropertyDeclaration(PropertyId);
643 if (!property) {
644 Diag(PropertyLoc, diag::error_bad_property_decl) << IDecl->getDeclName();
John McCalld226f652010-08-21 09:40:31 +0000645 return 0;
Ted Kremenek28685ab2010-03-12 00:46:40 +0000646 }
Fariborz Jahaniandd4430e2010-12-17 22:28:16 +0000647 unsigned PIkind = property->getPropertyAttributesAsWritten();
Fariborz Jahanian45937ae2011-06-11 00:45:12 +0000648 if ((PIkind & (ObjCPropertyDecl::OBJC_PR_atomic |
649 ObjCPropertyDecl::OBJC_PR_nonatomic) ) == 0) {
Fariborz Jahaniandd4430e2010-12-17 22:28:16 +0000650 if (AtLoc.isValid())
651 Diag(AtLoc, diag::warn_implicit_atomic_property);
652 else
653 Diag(IC->getLocation(), diag::warn_auto_implicit_atomic_property);
654 Diag(property->getLocation(), diag::note_property_declare);
655 }
656
Ted Kremenek28685ab2010-03-12 00:46:40 +0000657 if (const ObjCCategoryDecl *CD =
658 dyn_cast<ObjCCategoryDecl>(property->getDeclContext())) {
659 if (!CD->IsClassExtension()) {
660 Diag(PropertyLoc, diag::error_category_property) << CD->getDeclName();
661 Diag(property->getLocation(), diag::note_property_declare);
John McCalld226f652010-08-21 09:40:31 +0000662 return 0;
Ted Kremenek28685ab2010-03-12 00:46:40 +0000663 }
664 }
Fariborz Jahanian2b309fb2012-05-19 18:17:17 +0000665
666 if (Synthesize&&
667 (PIkind & ObjCPropertyDecl::OBJC_PR_readonly) &&
668 property->hasAttr<IBOutletAttr>() &&
669 !AtLoc.isValid()) {
670 unsigned rwPIKind = (PIkind | ObjCPropertyDecl::OBJC_PR_readwrite);
671 rwPIKind &= (~ObjCPropertyDecl::OBJC_PR_readonly);
672 Diag(IC->getLocation(), diag::warn_auto_readonly_iboutlet_property);
673 Diag(property->getLocation(), diag::note_property_declare);
Fariborz Jahanianedcc27f2012-05-21 17:02:43 +0000674 SourceLocation readonlyLoc;
675 if (LocPropertyAttribute(*this, Context, "readonly",
676 property->getLParenLoc(), readonlyLoc)) {
677 SourceLocation endLoc =
678 readonlyLoc.getLocWithOffset(strlen("readonly")-1);
679 SourceRange ReadonlySourceRange(readonlyLoc, endLoc);
680 Diag(property->getLocation(),
681 diag::note_auto_readonly_iboutlet_fixup_suggest) <<
682 FixItHint::CreateReplacement(ReadonlySourceRange, "readwrite");
683 }
Fariborz Jahanian2b309fb2012-05-19 18:17:17 +0000684 }
685
Ted Kremenek28685ab2010-03-12 00:46:40 +0000686 } else if ((CatImplClass = dyn_cast<ObjCCategoryImplDecl>(ClassImpDecl))) {
687 if (Synthesize) {
688 Diag(AtLoc, diag::error_synthesize_category_decl);
John McCalld226f652010-08-21 09:40:31 +0000689 return 0;
Ted Kremenek28685ab2010-03-12 00:46:40 +0000690 }
691 IDecl = CatImplClass->getClassInterface();
692 if (!IDecl) {
693 Diag(AtLoc, diag::error_missing_property_interface);
John McCalld226f652010-08-21 09:40:31 +0000694 return 0;
Ted Kremenek28685ab2010-03-12 00:46:40 +0000695 }
696 ObjCCategoryDecl *Category =
697 IDecl->FindCategoryDeclaration(CatImplClass->getIdentifier());
698
699 // If category for this implementation not found, it is an error which
700 // has already been reported eralier.
701 if (!Category)
John McCalld226f652010-08-21 09:40:31 +0000702 return 0;
Ted Kremenek28685ab2010-03-12 00:46:40 +0000703 // Look for this property declaration in @implementation's category
704 property = Category->FindPropertyDeclaration(PropertyId);
705 if (!property) {
706 Diag(PropertyLoc, diag::error_bad_category_property_decl)
707 << Category->getDeclName();
John McCalld226f652010-08-21 09:40:31 +0000708 return 0;
Ted Kremenek28685ab2010-03-12 00:46:40 +0000709 }
710 } else {
711 Diag(AtLoc, diag::error_bad_property_context);
John McCalld226f652010-08-21 09:40:31 +0000712 return 0;
Ted Kremenek28685ab2010-03-12 00:46:40 +0000713 }
714 ObjCIvarDecl *Ivar = 0;
Eli Friedmane4c043d2012-05-01 22:26:06 +0000715 bool CompleteTypeErr = false;
Fariborz Jahanian74414712012-05-15 18:12:51 +0000716 bool compat = true;
Ted Kremenek28685ab2010-03-12 00:46:40 +0000717 // Check that we have a valid, previously declared ivar for @synthesize
718 if (Synthesize) {
719 // @synthesize
720 if (!PropertyIvar)
721 PropertyIvar = PropertyId;
Fariborz Jahanian015f6082012-01-11 18:26:06 +0000722 // Check that this is a previously declared 'ivar' in 'IDecl' interface
723 ObjCInterfaceDecl *ClassDeclared;
724 Ivar = IDecl->lookupInstanceVariable(PropertyIvar, ClassDeclared);
725 QualType PropType = property->getType();
726 QualType PropertyIvarType = PropType.getNonReferenceType();
Eli Friedmane4c043d2012-05-01 22:26:06 +0000727
728 if (RequireCompleteType(PropertyDiagLoc, PropertyIvarType,
Douglas Gregord10099e2012-05-04 16:32:21 +0000729 diag::err_incomplete_synthesized_property,
730 property->getDeclName())) {
Eli Friedmane4c043d2012-05-01 22:26:06 +0000731 Diag(property->getLocation(), diag::note_property_declare);
732 CompleteTypeErr = true;
733 }
734
David Blaikie4e4d0842012-03-11 07:00:24 +0000735 if (getLangOpts().ObjCAutoRefCount &&
Fariborz Jahanian015f6082012-01-11 18:26:06 +0000736 (property->getPropertyAttributesAsWritten() &
Fariborz Jahanian3efd3482012-01-11 19:48:08 +0000737 ObjCPropertyDecl::OBJC_PR_readonly) &&
738 PropertyIvarType->isObjCRetainableType()) {
Fariborz Jahanian015f6082012-01-11 18:26:06 +0000739 setImpliedPropertyAttributeForReadOnlyProperty(property, Ivar);
740 }
741
John McCallf85e1932011-06-15 23:02:42 +0000742 ObjCPropertyDecl::PropertyAttributeKind kind
743 = property->getPropertyAttributes();
John McCall265941b2011-09-13 18:31:23 +0000744
745 // Add GC __weak to the ivar type if the property is weak.
746 if ((kind & ObjCPropertyDecl::OBJC_PR_weak) &&
David Blaikie4e4d0842012-03-11 07:00:24 +0000747 getLangOpts().getGC() != LangOptions::NonGC) {
748 assert(!getLangOpts().ObjCAutoRefCount);
John McCall265941b2011-09-13 18:31:23 +0000749 if (PropertyIvarType.isObjCGCStrong()) {
Eli Friedmane4c043d2012-05-01 22:26:06 +0000750 Diag(PropertyDiagLoc, diag::err_gc_weak_property_strong_type);
John McCall265941b2011-09-13 18:31:23 +0000751 Diag(property->getLocation(), diag::note_property_declare);
752 } else {
753 PropertyIvarType =
754 Context.getObjCGCQualType(PropertyIvarType, Qualifiers::Weak);
Fariborz Jahanianedc08822011-09-07 16:24:21 +0000755 }
Fariborz Jahanianedc08822011-09-07 16:24:21 +0000756 }
John McCall265941b2011-09-13 18:31:23 +0000757
Ted Kremenek28685ab2010-03-12 00:46:40 +0000758 if (!Ivar) {
John McCall265941b2011-09-13 18:31:23 +0000759 // In ARC, give the ivar a lifetime qualifier based on the
John McCallf85e1932011-06-15 23:02:42 +0000760 // property attributes.
David Blaikie4e4d0842012-03-11 07:00:24 +0000761 if (getLangOpts().ObjCAutoRefCount &&
John McCall265941b2011-09-13 18:31:23 +0000762 !PropertyIvarType.getObjCLifetime() &&
763 PropertyIvarType->isObjCRetainableType()) {
John McCallf85e1932011-06-15 23:02:42 +0000764
John McCall265941b2011-09-13 18:31:23 +0000765 // It's an error if we have to do this and the user didn't
766 // explicitly write an ownership attribute on the property.
Argyrios Kyrtzidis473506b2011-07-26 21:48:26 +0000767 if (!property->hasWrittenStorageAttribute() &&
John McCall265941b2011-09-13 18:31:23 +0000768 !(kind & ObjCPropertyDecl::OBJC_PR_strong)) {
Eli Friedmane4c043d2012-05-01 22:26:06 +0000769 Diag(PropertyDiagLoc,
Argyrios Kyrtzidis473506b2011-07-26 21:48:26 +0000770 diag::err_arc_objc_property_default_assign_on_object);
771 Diag(property->getLocation(), diag::note_property_declare);
John McCall265941b2011-09-13 18:31:23 +0000772 } else {
773 Qualifiers::ObjCLifetime lifetime =
774 getImpliedARCOwnership(kind, PropertyIvarType);
775 assert(lifetime && "no lifetime for property?");
Fariborz Jahanian6dce88d2011-12-09 19:55:11 +0000776 if (lifetime == Qualifiers::OCL_Weak) {
777 bool err = false;
778 if (const ObjCObjectPointerType *ObjT =
779 PropertyIvarType->getAs<ObjCObjectPointerType>())
780 if (ObjT->getInterfaceDecl()->isArcWeakrefUnavailable()) {
Eli Friedmane4c043d2012-05-01 22:26:06 +0000781 Diag(PropertyDiagLoc, diag::err_arc_weak_unavailable_property);
Fariborz Jahanian6dce88d2011-12-09 19:55:11 +0000782 Diag(property->getLocation(), diag::note_property_declare);
783 err = true;
784 }
David Blaikie4e4d0842012-03-11 07:00:24 +0000785 if (!err && !getLangOpts().ObjCRuntimeHasWeak) {
Eli Friedmane4c043d2012-05-01 22:26:06 +0000786 Diag(PropertyDiagLoc, diag::err_arc_weak_no_runtime);
Fariborz Jahanian6dce88d2011-12-09 19:55:11 +0000787 Diag(property->getLocation(), diag::note_property_declare);
788 }
John McCallf85e1932011-06-15 23:02:42 +0000789 }
Fariborz Jahanian6dce88d2011-12-09 19:55:11 +0000790
John McCallf85e1932011-06-15 23:02:42 +0000791 Qualifiers qs;
John McCall265941b2011-09-13 18:31:23 +0000792 qs.addObjCLifetime(lifetime);
John McCallf85e1932011-06-15 23:02:42 +0000793 PropertyIvarType = Context.getQualifiedType(PropertyIvarType, qs);
794 }
John McCallf85e1932011-06-15 23:02:42 +0000795 }
796
797 if (kind & ObjCPropertyDecl::OBJC_PR_weak &&
David Blaikie4e4d0842012-03-11 07:00:24 +0000798 !getLangOpts().ObjCAutoRefCount &&
799 getLangOpts().getGC() == LangOptions::NonGC) {
Eli Friedmane4c043d2012-05-01 22:26:06 +0000800 Diag(PropertyDiagLoc, diag::error_synthesize_weak_non_arc_or_gc);
John McCallf85e1932011-06-15 23:02:42 +0000801 Diag(property->getLocation(), diag::note_property_declare);
802 }
803
Abramo Bagnaraff676cb2011-03-08 08:55:46 +0000804 Ivar = ObjCIvarDecl::Create(Context, ClassImpDecl,
Argyrios Kyrtzidisf9112422012-02-28 17:50:39 +0000805 PropertyIvarLoc,PropertyIvarLoc, PropertyIvar,
Fariborz Jahanian14086762011-03-28 23:47:18 +0000806 PropertyIvarType, /*Dinfo=*/0,
Fariborz Jahanian75049662010-12-15 23:29:04 +0000807 ObjCIvarDecl::Private,
Fariborz Jahanianad51e742010-07-17 00:59:30 +0000808 (Expr *)0, true);
Eli Friedmane4c043d2012-05-01 22:26:06 +0000809 if (CompleteTypeErr)
810 Ivar->setInvalidDecl();
Daniel Dunbar29fa69a2010-04-02 19:44:54 +0000811 ClassImpDecl->addDecl(Ivar);
Richard Smith1b7f9cb2012-03-13 03:12:56 +0000812 IDecl->makeDeclVisibleInContext(Ivar);
Ted Kremenek28685ab2010-03-12 00:46:40 +0000813 property->setPropertyIvarDecl(Ivar);
814
David Blaikie4e4d0842012-03-11 07:00:24 +0000815 if (!getLangOpts().ObjCNonFragileABI)
Eli Friedmane4c043d2012-05-01 22:26:06 +0000816 Diag(PropertyDiagLoc, diag::error_missing_property_ivar_decl)
817 << PropertyId;
Ted Kremenek28685ab2010-03-12 00:46:40 +0000818 // Note! I deliberately want it to fall thru so, we have a
819 // a property implementation and to avoid future warnings.
David Blaikie4e4d0842012-03-11 07:00:24 +0000820 } else if (getLangOpts().ObjCNonFragileABI &&
Douglas Gregor60ef3082011-12-15 00:29:59 +0000821 !declaresSameEntity(ClassDeclared, IDecl)) {
Eli Friedmane4c043d2012-05-01 22:26:06 +0000822 Diag(PropertyDiagLoc, diag::error_ivar_in_superclass_use)
Ted Kremenek28685ab2010-03-12 00:46:40 +0000823 << property->getDeclName() << Ivar->getDeclName()
824 << ClassDeclared->getDeclName();
825 Diag(Ivar->getLocation(), diag::note_previous_access_declaration)
Daniel Dunbar4087f272010-08-17 22:39:59 +0000826 << Ivar << Ivar->getName();
Ted Kremenek28685ab2010-03-12 00:46:40 +0000827 // Note! I deliberately want it to fall thru so more errors are caught.
828 }
829 QualType IvarType = Context.getCanonicalType(Ivar->getType());
830
831 // Check that type of property and its ivar are type compatible.
Fariborz Jahanian74414712012-05-15 18:12:51 +0000832 if (!Context.hasSameType(PropertyIvarType, IvarType)) {
833 compat = false;
Fariborz Jahanian14086762011-03-28 23:47:18 +0000834 if (isa<ObjCObjectPointerType>(PropertyIvarType)
John McCallf85e1932011-06-15 23:02:42 +0000835 && isa<ObjCObjectPointerType>(IvarType))
Fariborz Jahanian62ac5d02010-05-18 23:04:17 +0000836 compat =
837 Context.canAssignObjCInterfaces(
Fariborz Jahanian14086762011-03-28 23:47:18 +0000838 PropertyIvarType->getAs<ObjCObjectPointerType>(),
Fariborz Jahanian62ac5d02010-05-18 23:04:17 +0000839 IvarType->getAs<ObjCObjectPointerType>());
Douglas Gregorb608b982011-01-28 02:26:04 +0000840 else {
Argyrios Kyrtzidisf9112422012-02-28 17:50:39 +0000841 compat = (CheckAssignmentConstraints(PropertyIvarLoc, PropertyIvarType,
842 IvarType)
John McCalldaa8e4e2010-11-15 09:13:47 +0000843 == Compatible);
Douglas Gregorb608b982011-01-28 02:26:04 +0000844 }
Fariborz Jahanian62ac5d02010-05-18 23:04:17 +0000845 if (!compat) {
Eli Friedmane4c043d2012-05-01 22:26:06 +0000846 Diag(PropertyDiagLoc, diag::error_property_ivar_type)
Ted Kremenekf921a482010-03-23 19:02:22 +0000847 << property->getDeclName() << PropType
848 << Ivar->getDeclName() << IvarType;
849 Diag(Ivar->getLocation(), diag::note_ivar_decl);
Ted Kremenek28685ab2010-03-12 00:46:40 +0000850 // Note! I deliberately want it to fall thru so, we have a
851 // a property implementation and to avoid future warnings.
852 }
Fariborz Jahanian74414712012-05-15 18:12:51 +0000853 else {
854 // FIXME! Rules for properties are somewhat different that those
855 // for assignments. Use a new routine to consolidate all cases;
856 // specifically for property redeclarations as well as for ivars.
857 QualType lhsType =Context.getCanonicalType(PropertyIvarType).getUnqualifiedType();
858 QualType rhsType =Context.getCanonicalType(IvarType).getUnqualifiedType();
859 if (lhsType != rhsType &&
860 lhsType->isArithmeticType()) {
861 Diag(PropertyDiagLoc, diag::error_property_ivar_type)
862 << property->getDeclName() << PropType
863 << Ivar->getDeclName() << IvarType;
864 Diag(Ivar->getLocation(), diag::note_ivar_decl);
865 // Fall thru - see previous comment
866 }
Ted Kremenek28685ab2010-03-12 00:46:40 +0000867 }
868 // __weak is explicit. So it works on Canonical type.
John McCallf85e1932011-06-15 23:02:42 +0000869 if ((PropType.isObjCGCWeak() && !IvarType.isObjCGCWeak() &&
David Blaikie4e4d0842012-03-11 07:00:24 +0000870 getLangOpts().getGC() != LangOptions::NonGC)) {
Eli Friedmane4c043d2012-05-01 22:26:06 +0000871 Diag(PropertyDiagLoc, diag::error_weak_property)
Ted Kremenek28685ab2010-03-12 00:46:40 +0000872 << property->getDeclName() << Ivar->getDeclName();
Fariborz Jahanianedc08822011-09-07 16:24:21 +0000873 Diag(Ivar->getLocation(), diag::note_ivar_decl);
Ted Kremenek28685ab2010-03-12 00:46:40 +0000874 // Fall thru - see previous comment
875 }
John McCallf85e1932011-06-15 23:02:42 +0000876 // Fall thru - see previous comment
Ted Kremenek28685ab2010-03-12 00:46:40 +0000877 if ((property->getType()->isObjCObjectPointerType() ||
878 PropType.isObjCGCStrong()) && IvarType.isObjCGCWeak() &&
David Blaikie4e4d0842012-03-11 07:00:24 +0000879 getLangOpts().getGC() != LangOptions::NonGC) {
Eli Friedmane4c043d2012-05-01 22:26:06 +0000880 Diag(PropertyDiagLoc, diag::error_strong_property)
Ted Kremenek28685ab2010-03-12 00:46:40 +0000881 << property->getDeclName() << Ivar->getDeclName();
882 // Fall thru - see previous comment
883 }
884 }
David Blaikie4e4d0842012-03-11 07:00:24 +0000885 if (getLangOpts().ObjCAutoRefCount)
John McCallf85e1932011-06-15 23:02:42 +0000886 checkARCPropertyImpl(*this, PropertyLoc, property, Ivar);
Ted Kremenek28685ab2010-03-12 00:46:40 +0000887 } else if (PropertyIvar)
888 // @dynamic
Eli Friedmane4c043d2012-05-01 22:26:06 +0000889 Diag(PropertyDiagLoc, diag::error_dynamic_property_ivar_decl);
John McCallf85e1932011-06-15 23:02:42 +0000890
Ted Kremenek28685ab2010-03-12 00:46:40 +0000891 assert (property && "ActOnPropertyImplDecl - property declaration missing");
892 ObjCPropertyImplDecl *PIDecl =
893 ObjCPropertyImplDecl::Create(Context, CurContext, AtLoc, PropertyLoc,
894 property,
895 (Synthesize ?
896 ObjCPropertyImplDecl::Synthesize
897 : ObjCPropertyImplDecl::Dynamic),
Douglas Gregora4ffd852010-11-17 01:03:52 +0000898 Ivar, PropertyIvarLoc);
Eli Friedmane4c043d2012-05-01 22:26:06 +0000899
Fariborz Jahanian74414712012-05-15 18:12:51 +0000900 if (CompleteTypeErr || !compat)
Eli Friedmane4c043d2012-05-01 22:26:06 +0000901 PIDecl->setInvalidDecl();
902
Fariborz Jahanian17cb3262010-05-05 21:52:17 +0000903 if (ObjCMethodDecl *getterMethod = property->getGetterMethodDecl()) {
904 getterMethod->createImplicitParams(Context, IDecl);
Eli Friedmane4c043d2012-05-01 22:26:06 +0000905 if (getLangOpts().CPlusPlus && Synthesize && !CompleteTypeErr &&
Fariborz Jahanian0313f442010-10-15 22:42:59 +0000906 Ivar->getType()->isRecordType()) {
Fariborz Jahanian17cb3262010-05-05 21:52:17 +0000907 // For Objective-C++, need to synthesize the AST for the IVAR object to be
908 // returned by the getter as it must conform to C++'s copy-return rules.
909 // FIXME. Eventually we want to do this for Objective-C as well.
910 ImplicitParamDecl *SelfDecl = getterMethod->getSelfDecl();
911 DeclRefExpr *SelfExpr =
John McCallf4b88a42012-03-10 09:33:50 +0000912 new (Context) DeclRefExpr(SelfDecl, false, SelfDecl->getType(),
John McCallf89e55a2010-11-18 06:31:45 +0000913 VK_RValue, SourceLocation());
Fariborz Jahanian17cb3262010-05-05 21:52:17 +0000914 Expr *IvarRefExpr =
915 new (Context) ObjCIvarRefExpr(Ivar, Ivar->getType(), AtLoc,
916 SelfExpr, true, true);
John McCall60d7b3a2010-08-24 06:29:42 +0000917 ExprResult Res =
Fariborz Jahanian17cb3262010-05-05 21:52:17 +0000918 PerformCopyInitialization(InitializedEntity::InitializeResult(
Douglas Gregor3c9034c2010-05-15 00:13:29 +0000919 SourceLocation(),
920 getterMethod->getResultType(),
921 /*NRVO=*/false),
Fariborz Jahanian17cb3262010-05-05 21:52:17 +0000922 SourceLocation(),
923 Owned(IvarRefExpr));
924 if (!Res.isInvalid()) {
925 Expr *ResExpr = Res.takeAs<Expr>();
926 if (ResExpr)
John McCall4765fa02010-12-06 08:20:24 +0000927 ResExpr = MaybeCreateExprWithCleanups(ResExpr);
Fariborz Jahanian17cb3262010-05-05 21:52:17 +0000928 PIDecl->setGetterCXXConstructor(ResExpr);
929 }
930 }
Fariborz Jahanian831fb962011-06-25 00:17:46 +0000931 if (property->hasAttr<NSReturnsNotRetainedAttr>() &&
932 !getterMethod->hasAttr<NSReturnsNotRetainedAttr>()) {
933 Diag(getterMethod->getLocation(),
934 diag::warn_property_getter_owning_mismatch);
935 Diag(property->getLocation(), diag::note_property_declare);
936 }
Fariborz Jahanian17cb3262010-05-05 21:52:17 +0000937 }
938 if (ObjCMethodDecl *setterMethod = property->getSetterMethodDecl()) {
939 setterMethod->createImplicitParams(Context, IDecl);
Eli Friedmane4c043d2012-05-01 22:26:06 +0000940 if (getLangOpts().CPlusPlus && Synthesize && !CompleteTypeErr &&
941 Ivar->getType()->isRecordType()) {
Fariborz Jahanian17cb3262010-05-05 21:52:17 +0000942 // FIXME. Eventually we want to do this for Objective-C as well.
943 ImplicitParamDecl *SelfDecl = setterMethod->getSelfDecl();
944 DeclRefExpr *SelfExpr =
John McCallf4b88a42012-03-10 09:33:50 +0000945 new (Context) DeclRefExpr(SelfDecl, false, SelfDecl->getType(),
John McCallf89e55a2010-11-18 06:31:45 +0000946 VK_RValue, SourceLocation());
Fariborz Jahanian17cb3262010-05-05 21:52:17 +0000947 Expr *lhs =
948 new (Context) ObjCIvarRefExpr(Ivar, Ivar->getType(), AtLoc,
949 SelfExpr, true, true);
950 ObjCMethodDecl::param_iterator P = setterMethod->param_begin();
951 ParmVarDecl *Param = (*P);
John McCall3c3b7f92011-10-25 17:37:35 +0000952 QualType T = Param->getType().getNonReferenceType();
John McCallf4b88a42012-03-10 09:33:50 +0000953 Expr *rhs = new (Context) DeclRefExpr(Param, false, T,
John McCallf89e55a2010-11-18 06:31:45 +0000954 VK_LValue, SourceLocation());
Fariborz Jahanianfa432392010-10-14 21:30:10 +0000955 ExprResult Res = BuildBinOp(S, lhs->getLocEnd(),
John McCall2de56d12010-08-25 11:45:40 +0000956 BO_Assign, lhs, rhs);
Fariborz Jahanian57e264e2011-10-06 18:38:18 +0000957 if (property->getPropertyAttributes() &
958 ObjCPropertyDecl::OBJC_PR_atomic) {
959 Expr *callExpr = Res.takeAs<Expr>();
960 if (const CXXOperatorCallExpr *CXXCE =
Fariborz Jahanian13bf6332011-10-07 21:08:14 +0000961 dyn_cast_or_null<CXXOperatorCallExpr>(callExpr))
962 if (const FunctionDecl *FuncDecl = CXXCE->getDirectCallee())
Fariborz Jahanian57e264e2011-10-06 18:38:18 +0000963 if (!FuncDecl->isTrivial())
Fariborz Jahanian20abee62012-01-10 00:37:01 +0000964 if (property->getType()->isReferenceType()) {
965 Diag(PropertyLoc,
966 diag::err_atomic_property_nontrivial_assign_op)
Fariborz Jahanian57e264e2011-10-06 18:38:18 +0000967 << property->getType();
Fariborz Jahanian20abee62012-01-10 00:37:01 +0000968 Diag(FuncDecl->getLocStart(),
969 diag::note_callee_decl) << FuncDecl;
970 }
Fariborz Jahanian57e264e2011-10-06 18:38:18 +0000971 }
Fariborz Jahanian17cb3262010-05-05 21:52:17 +0000972 PIDecl->setSetterCXXAssignment(Res.takeAs<Expr>());
973 }
974 }
975
Ted Kremenek28685ab2010-03-12 00:46:40 +0000976 if (IC) {
977 if (Synthesize)
978 if (ObjCPropertyImplDecl *PPIDecl =
979 IC->FindPropertyImplIvarDecl(PropertyIvar)) {
980 Diag(PropertyLoc, diag::error_duplicate_ivar_use)
981 << PropertyId << PPIDecl->getPropertyDecl()->getIdentifier()
982 << PropertyIvar;
983 Diag(PPIDecl->getLocation(), diag::note_previous_use);
984 }
985
986 if (ObjCPropertyImplDecl *PPIDecl
987 = IC->FindPropertyImplDecl(PropertyId)) {
988 Diag(PropertyLoc, diag::error_property_implemented) << PropertyId;
989 Diag(PPIDecl->getLocation(), diag::note_previous_declaration);
John McCalld226f652010-08-21 09:40:31 +0000990 return 0;
Ted Kremenek28685ab2010-03-12 00:46:40 +0000991 }
992 IC->addPropertyImplementation(PIDecl);
David Blaikie4e4d0842012-03-11 07:00:24 +0000993 if (getLangOpts().ObjCDefaultSynthProperties &&
994 getLangOpts().ObjCNonFragileABI2 &&
Ted Kremenek71207fc2012-01-05 22:47:47 +0000995 !IDecl->isObjCRequiresPropertyDefs()) {
Fariborz Jahanianad51e742010-07-17 00:59:30 +0000996 // Diagnose if an ivar was lazily synthesdized due to a previous
997 // use and if 1) property is @dynamic or 2) property is synthesized
Fariborz Jahaniancdaa6a82010-08-24 18:48:05 +0000998 // but it requires an ivar of different name.
Fariborz Jahanian411c25c2011-01-20 23:34:25 +0000999 ObjCInterfaceDecl *ClassDeclared=0;
Fariborz Jahanianad51e742010-07-17 00:59:30 +00001000 ObjCIvarDecl *Ivar = 0;
1001 if (!Synthesize)
1002 Ivar = IDecl->lookupInstanceVariable(PropertyId, ClassDeclared);
1003 else {
1004 if (PropertyIvar && PropertyIvar != PropertyId)
1005 Ivar = IDecl->lookupInstanceVariable(PropertyId, ClassDeclared);
1006 }
Fariborz Jahaniancdaa6a82010-08-24 18:48:05 +00001007 // Issue diagnostics only if Ivar belongs to current class.
1008 if (Ivar && Ivar->getSynthesize() &&
Douglas Gregor60ef3082011-12-15 00:29:59 +00001009 declaresSameEntity(IC->getClassInterface(), ClassDeclared)) {
Fariborz Jahanianad51e742010-07-17 00:59:30 +00001010 Diag(Ivar->getLocation(), diag::err_undeclared_var_use)
1011 << PropertyId;
1012 Ivar->setInvalidDecl();
1013 }
1014 }
Ted Kremenek28685ab2010-03-12 00:46:40 +00001015 } else {
1016 if (Synthesize)
1017 if (ObjCPropertyImplDecl *PPIDecl =
1018 CatImplClass->FindPropertyImplIvarDecl(PropertyIvar)) {
Eli Friedmane4c043d2012-05-01 22:26:06 +00001019 Diag(PropertyDiagLoc, diag::error_duplicate_ivar_use)
Ted Kremenek28685ab2010-03-12 00:46:40 +00001020 << PropertyId << PPIDecl->getPropertyDecl()->getIdentifier()
1021 << PropertyIvar;
1022 Diag(PPIDecl->getLocation(), diag::note_previous_use);
1023 }
1024
1025 if (ObjCPropertyImplDecl *PPIDecl =
1026 CatImplClass->FindPropertyImplDecl(PropertyId)) {
Eli Friedmane4c043d2012-05-01 22:26:06 +00001027 Diag(PropertyDiagLoc, diag::error_property_implemented) << PropertyId;
Ted Kremenek28685ab2010-03-12 00:46:40 +00001028 Diag(PPIDecl->getLocation(), diag::note_previous_declaration);
John McCalld226f652010-08-21 09:40:31 +00001029 return 0;
Ted Kremenek28685ab2010-03-12 00:46:40 +00001030 }
1031 CatImplClass->addPropertyImplementation(PIDecl);
1032 }
1033
John McCalld226f652010-08-21 09:40:31 +00001034 return PIDecl;
Ted Kremenek28685ab2010-03-12 00:46:40 +00001035}
1036
1037//===----------------------------------------------------------------------===//
1038// Helper methods.
1039//===----------------------------------------------------------------------===//
1040
Ted Kremenek9d64c152010-03-12 00:38:38 +00001041/// DiagnosePropertyMismatch - Compares two properties for their
1042/// attributes and types and warns on a variety of inconsistencies.
1043///
1044void
1045Sema::DiagnosePropertyMismatch(ObjCPropertyDecl *Property,
1046 ObjCPropertyDecl *SuperProperty,
1047 const IdentifierInfo *inheritedName) {
1048 ObjCPropertyDecl::PropertyAttributeKind CAttr =
1049 Property->getPropertyAttributes();
1050 ObjCPropertyDecl::PropertyAttributeKind SAttr =
1051 SuperProperty->getPropertyAttributes();
1052 if ((CAttr & ObjCPropertyDecl::OBJC_PR_readonly)
1053 && (SAttr & ObjCPropertyDecl::OBJC_PR_readwrite))
1054 Diag(Property->getLocation(), diag::warn_readonly_property)
1055 << Property->getDeclName() << inheritedName;
1056 if ((CAttr & ObjCPropertyDecl::OBJC_PR_copy)
1057 != (SAttr & ObjCPropertyDecl::OBJC_PR_copy))
1058 Diag(Property->getLocation(), diag::warn_property_attribute)
1059 << Property->getDeclName() << "copy" << inheritedName;
Fariborz Jahanian1b46d8d2011-10-08 17:45:33 +00001060 else if (!(SAttr & ObjCPropertyDecl::OBJC_PR_readonly)){
John McCallf85e1932011-06-15 23:02:42 +00001061 unsigned CAttrRetain =
1062 (CAttr &
1063 (ObjCPropertyDecl::OBJC_PR_retain | ObjCPropertyDecl::OBJC_PR_strong));
1064 unsigned SAttrRetain =
1065 (SAttr &
1066 (ObjCPropertyDecl::OBJC_PR_retain | ObjCPropertyDecl::OBJC_PR_strong));
1067 bool CStrong = (CAttrRetain != 0);
1068 bool SStrong = (SAttrRetain != 0);
1069 if (CStrong != SStrong)
1070 Diag(Property->getLocation(), diag::warn_property_attribute)
1071 << Property->getDeclName() << "retain (or strong)" << inheritedName;
1072 }
Ted Kremenek9d64c152010-03-12 00:38:38 +00001073
1074 if ((CAttr & ObjCPropertyDecl::OBJC_PR_nonatomic)
1075 != (SAttr & ObjCPropertyDecl::OBJC_PR_nonatomic))
1076 Diag(Property->getLocation(), diag::warn_property_attribute)
1077 << Property->getDeclName() << "atomic" << inheritedName;
1078 if (Property->getSetterName() != SuperProperty->getSetterName())
1079 Diag(Property->getLocation(), diag::warn_property_attribute)
1080 << Property->getDeclName() << "setter" << inheritedName;
1081 if (Property->getGetterName() != SuperProperty->getGetterName())
1082 Diag(Property->getLocation(), diag::warn_property_attribute)
1083 << Property->getDeclName() << "getter" << inheritedName;
1084
1085 QualType LHSType =
1086 Context.getCanonicalType(SuperProperty->getType());
1087 QualType RHSType =
1088 Context.getCanonicalType(Property->getType());
1089
Fariborz Jahanianc286f382011-07-12 22:05:16 +00001090 if (!Context.propertyTypesAreCompatible(LHSType, RHSType)) {
Fariborz Jahanian8beb6a22011-07-13 17:55:01 +00001091 // Do cases not handled in above.
1092 // FIXME. For future support of covariant property types, revisit this.
1093 bool IncompatibleObjC = false;
1094 QualType ConvertedType;
1095 if (!isObjCPointerConversion(RHSType, LHSType,
1096 ConvertedType, IncompatibleObjC) ||
Fariborz Jahanian13546a82011-10-12 00:00:57 +00001097 IncompatibleObjC) {
Fariborz Jahanian8beb6a22011-07-13 17:55:01 +00001098 Diag(Property->getLocation(), diag::warn_property_types_are_incompatible)
1099 << Property->getType() << SuperProperty->getType() << inheritedName;
Fariborz Jahanian13546a82011-10-12 00:00:57 +00001100 Diag(SuperProperty->getLocation(), diag::note_property_declare);
1101 }
Ted Kremenek9d64c152010-03-12 00:38:38 +00001102 }
1103}
1104
1105bool Sema::DiagnosePropertyAccessorMismatch(ObjCPropertyDecl *property,
1106 ObjCMethodDecl *GetterMethod,
1107 SourceLocation Loc) {
Fariborz Jahanian9abf88c2012-05-15 22:37:04 +00001108 if (!GetterMethod)
1109 return false;
1110 QualType GetterType = GetterMethod->getResultType().getNonReferenceType();
1111 QualType PropertyIvarType = property->getType().getNonReferenceType();
1112 bool compat = Context.hasSameType(PropertyIvarType, GetterType);
1113 if (!compat) {
1114 if (isa<ObjCObjectPointerType>(PropertyIvarType) &&
1115 isa<ObjCObjectPointerType>(GetterType))
1116 compat =
1117 Context.canAssignObjCInterfaces(
1118 PropertyIvarType->getAs<ObjCObjectPointerType>(),
1119 GetterType->getAs<ObjCObjectPointerType>());
1120 else if (CheckAssignmentConstraints(Loc, PropertyIvarType, GetterType)
1121 != Compatible) {
1122 Diag(Loc, diag::error_property_accessor_type)
1123 << property->getDeclName() << PropertyIvarType
1124 << GetterMethod->getSelector() << GetterType;
1125 Diag(GetterMethod->getLocation(), diag::note_declared_at);
1126 return true;
1127 } else {
1128 compat = true;
1129 QualType lhsType =Context.getCanonicalType(PropertyIvarType).getUnqualifiedType();
1130 QualType rhsType =Context.getCanonicalType(GetterType).getUnqualifiedType();
1131 if (lhsType != rhsType && lhsType->isArithmeticType())
1132 compat = false;
Ted Kremenek9d64c152010-03-12 00:38:38 +00001133 }
1134 }
Fariborz Jahanian9abf88c2012-05-15 22:37:04 +00001135
1136 if (!compat) {
1137 Diag(Loc, diag::warn_accessor_property_type_mismatch)
1138 << property->getDeclName()
1139 << GetterMethod->getSelector();
1140 Diag(GetterMethod->getLocation(), diag::note_declared_at);
1141 return true;
1142 }
1143
Ted Kremenek9d64c152010-03-12 00:38:38 +00001144 return false;
1145}
1146
1147/// ComparePropertiesInBaseAndSuper - This routine compares property
1148/// declarations in base and its super class, if any, and issues
Chris Lattnerfc8f0e12011-04-15 05:22:18 +00001149/// diagnostics in a variety of inconsistent situations.
Ted Kremenek9d64c152010-03-12 00:38:38 +00001150///
1151void Sema::ComparePropertiesInBaseAndSuper(ObjCInterfaceDecl *IDecl) {
1152 ObjCInterfaceDecl *SDecl = IDecl->getSuperClass();
1153 if (!SDecl)
1154 return;
1155 // FIXME: O(N^2)
1156 for (ObjCInterfaceDecl::prop_iterator S = SDecl->prop_begin(),
1157 E = SDecl->prop_end(); S != E; ++S) {
David Blaikie262bc182012-04-30 02:36:29 +00001158 ObjCPropertyDecl *SuperPDecl = &*S;
Ted Kremenek9d64c152010-03-12 00:38:38 +00001159 // Does property in super class has declaration in current class?
1160 for (ObjCInterfaceDecl::prop_iterator I = IDecl->prop_begin(),
1161 E = IDecl->prop_end(); I != E; ++I) {
David Blaikie262bc182012-04-30 02:36:29 +00001162 ObjCPropertyDecl *PDecl = &*I;
Ted Kremenek9d64c152010-03-12 00:38:38 +00001163 if (SuperPDecl->getIdentifier() == PDecl->getIdentifier())
1164 DiagnosePropertyMismatch(PDecl, SuperPDecl,
1165 SDecl->getIdentifier());
1166 }
1167 }
1168}
1169
1170/// MatchOneProtocolPropertiesInClass - This routine goes thru the list
1171/// of properties declared in a protocol and compares their attribute against
1172/// the same property declared in the class or category.
1173void
1174Sema::MatchOneProtocolPropertiesInClass(Decl *CDecl,
1175 ObjCProtocolDecl *PDecl) {
1176 ObjCInterfaceDecl *IDecl = dyn_cast_or_null<ObjCInterfaceDecl>(CDecl);
1177 if (!IDecl) {
1178 // Category
1179 ObjCCategoryDecl *CatDecl = static_cast<ObjCCategoryDecl*>(CDecl);
1180 assert (CatDecl && "MatchOneProtocolPropertiesInClass");
1181 if (!CatDecl->IsClassExtension())
1182 for (ObjCProtocolDecl::prop_iterator P = PDecl->prop_begin(),
1183 E = PDecl->prop_end(); P != E; ++P) {
David Blaikie262bc182012-04-30 02:36:29 +00001184 ObjCPropertyDecl *Pr = &*P;
Ted Kremenek9d64c152010-03-12 00:38:38 +00001185 ObjCCategoryDecl::prop_iterator CP, CE;
1186 // Is this property already in category's list of properties?
Ted Kremenek2d2f9362010-03-12 00:49:00 +00001187 for (CP = CatDecl->prop_begin(), CE = CatDecl->prop_end(); CP!=CE; ++CP)
David Blaikie262bc182012-04-30 02:36:29 +00001188 if (CP->getIdentifier() == Pr->getIdentifier())
Ted Kremenek9d64c152010-03-12 00:38:38 +00001189 break;
1190 if (CP != CE)
1191 // Property protocol already exist in class. Diagnose any mismatch.
David Blaikie262bc182012-04-30 02:36:29 +00001192 DiagnosePropertyMismatch(&*CP, Pr, PDecl->getIdentifier());
Ted Kremenek9d64c152010-03-12 00:38:38 +00001193 }
1194 return;
1195 }
1196 for (ObjCProtocolDecl::prop_iterator P = PDecl->prop_begin(),
1197 E = PDecl->prop_end(); P != E; ++P) {
David Blaikie262bc182012-04-30 02:36:29 +00001198 ObjCPropertyDecl *Pr = &*P;
Ted Kremenek9d64c152010-03-12 00:38:38 +00001199 ObjCInterfaceDecl::prop_iterator CP, CE;
1200 // Is this property already in class's list of properties?
1201 for (CP = IDecl->prop_begin(), CE = IDecl->prop_end(); CP != CE; ++CP)
David Blaikie262bc182012-04-30 02:36:29 +00001202 if (CP->getIdentifier() == Pr->getIdentifier())
Ted Kremenek9d64c152010-03-12 00:38:38 +00001203 break;
1204 if (CP != CE)
1205 // Property protocol already exist in class. Diagnose any mismatch.
David Blaikie262bc182012-04-30 02:36:29 +00001206 DiagnosePropertyMismatch(&*CP, Pr, PDecl->getIdentifier());
Ted Kremenek9d64c152010-03-12 00:38:38 +00001207 }
1208}
1209
1210/// CompareProperties - This routine compares properties
1211/// declared in 'ClassOrProtocol' objects (which can be a class or an
1212/// inherited protocol with the list of properties for class/category 'CDecl'
1213///
John McCalld226f652010-08-21 09:40:31 +00001214void Sema::CompareProperties(Decl *CDecl, Decl *ClassOrProtocol) {
1215 Decl *ClassDecl = ClassOrProtocol;
Ted Kremenek9d64c152010-03-12 00:38:38 +00001216 ObjCInterfaceDecl *IDecl = dyn_cast_or_null<ObjCInterfaceDecl>(CDecl);
1217
1218 if (!IDecl) {
1219 // Category
1220 ObjCCategoryDecl *CatDecl = static_cast<ObjCCategoryDecl*>(CDecl);
1221 assert (CatDecl && "CompareProperties");
1222 if (ObjCCategoryDecl *MDecl = dyn_cast<ObjCCategoryDecl>(ClassDecl)) {
1223 for (ObjCCategoryDecl::protocol_iterator P = MDecl->protocol_begin(),
1224 E = MDecl->protocol_end(); P != E; ++P)
1225 // Match properties of category with those of protocol (*P)
1226 MatchOneProtocolPropertiesInClass(CatDecl, *P);
1227
1228 // Go thru the list of protocols for this category and recursively match
1229 // their properties with those in the category.
1230 for (ObjCCategoryDecl::protocol_iterator P = CatDecl->protocol_begin(),
1231 E = CatDecl->protocol_end(); P != E; ++P)
John McCalld226f652010-08-21 09:40:31 +00001232 CompareProperties(CatDecl, *P);
Ted Kremenek9d64c152010-03-12 00:38:38 +00001233 } else {
1234 ObjCProtocolDecl *MD = cast<ObjCProtocolDecl>(ClassDecl);
1235 for (ObjCProtocolDecl::protocol_iterator P = MD->protocol_begin(),
1236 E = MD->protocol_end(); P != E; ++P)
1237 MatchOneProtocolPropertiesInClass(CatDecl, *P);
1238 }
1239 return;
1240 }
1241
1242 if (ObjCInterfaceDecl *MDecl = dyn_cast<ObjCInterfaceDecl>(ClassDecl)) {
Ted Kremenek53b94412010-09-01 01:21:15 +00001243 for (ObjCInterfaceDecl::all_protocol_iterator
1244 P = MDecl->all_referenced_protocol_begin(),
1245 E = MDecl->all_referenced_protocol_end(); P != E; ++P)
Ted Kremenek9d64c152010-03-12 00:38:38 +00001246 // Match properties of class IDecl with those of protocol (*P).
1247 MatchOneProtocolPropertiesInClass(IDecl, *P);
1248
1249 // Go thru the list of protocols for this class and recursively match
1250 // their properties with those declared in the class.
Ted Kremenek53b94412010-09-01 01:21:15 +00001251 for (ObjCInterfaceDecl::all_protocol_iterator
1252 P = IDecl->all_referenced_protocol_begin(),
1253 E = IDecl->all_referenced_protocol_end(); P != E; ++P)
John McCalld226f652010-08-21 09:40:31 +00001254 CompareProperties(IDecl, *P);
Ted Kremenek9d64c152010-03-12 00:38:38 +00001255 } else {
1256 ObjCProtocolDecl *MD = cast<ObjCProtocolDecl>(ClassDecl);
1257 for (ObjCProtocolDecl::protocol_iterator P = MD->protocol_begin(),
1258 E = MD->protocol_end(); P != E; ++P)
1259 MatchOneProtocolPropertiesInClass(IDecl, *P);
1260 }
1261}
1262
1263/// isPropertyReadonly - Return true if property is readonly, by searching
1264/// for the property in the class and in its categories and implementations
1265///
1266bool Sema::isPropertyReadonly(ObjCPropertyDecl *PDecl,
1267 ObjCInterfaceDecl *IDecl) {
1268 // by far the most common case.
1269 if (!PDecl->isReadOnly())
1270 return false;
1271 // Even if property is ready only, if interface has a user defined setter,
1272 // it is not considered read only.
1273 if (IDecl->getInstanceMethod(PDecl->getSetterName()))
1274 return false;
1275
1276 // Main class has the property as 'readonly'. Must search
1277 // through the category list to see if the property's
1278 // attribute has been over-ridden to 'readwrite'.
1279 for (ObjCCategoryDecl *Category = IDecl->getCategoryList();
1280 Category; Category = Category->getNextClassCategory()) {
1281 // Even if property is ready only, if a category has a user defined setter,
1282 // it is not considered read only.
1283 if (Category->getInstanceMethod(PDecl->getSetterName()))
1284 return false;
1285 ObjCPropertyDecl *P =
1286 Category->FindPropertyDeclaration(PDecl->getIdentifier());
1287 if (P && !P->isReadOnly())
1288 return false;
1289 }
1290
1291 // Also, check for definition of a setter method in the implementation if
1292 // all else failed.
1293 if (ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(CurContext)) {
1294 if (ObjCImplementationDecl *IMD =
1295 dyn_cast<ObjCImplementationDecl>(OMD->getDeclContext())) {
1296 if (IMD->getInstanceMethod(PDecl->getSetterName()))
1297 return false;
1298 } else if (ObjCCategoryImplDecl *CIMD =
1299 dyn_cast<ObjCCategoryImplDecl>(OMD->getDeclContext())) {
1300 if (CIMD->getInstanceMethod(PDecl->getSetterName()))
1301 return false;
1302 }
1303 }
1304 // Lastly, look through the implementation (if one is in scope).
1305 if (ObjCImplementationDecl *ImpDecl = IDecl->getImplementation())
1306 if (ImpDecl->getInstanceMethod(PDecl->getSetterName()))
1307 return false;
1308 // If all fails, look at the super class.
1309 if (ObjCInterfaceDecl *SIDecl = IDecl->getSuperClass())
1310 return isPropertyReadonly(PDecl, SIDecl);
1311 return true;
1312}
1313
1314/// CollectImmediateProperties - This routine collects all properties in
1315/// the class and its conforming protocols; but not those it its super class.
1316void Sema::CollectImmediateProperties(ObjCContainerDecl *CDecl,
Fariborz Jahaniancfa6a272010-06-29 18:12:32 +00001317 llvm::DenseMap<IdentifierInfo *, ObjCPropertyDecl*>& PropMap,
1318 llvm::DenseMap<IdentifierInfo *, ObjCPropertyDecl*>& SuperPropMap) {
Ted Kremenek9d64c152010-03-12 00:38:38 +00001319 if (ObjCInterfaceDecl *IDecl = dyn_cast<ObjCInterfaceDecl>(CDecl)) {
1320 for (ObjCContainerDecl::prop_iterator P = IDecl->prop_begin(),
1321 E = IDecl->prop_end(); P != E; ++P) {
David Blaikie262bc182012-04-30 02:36:29 +00001322 ObjCPropertyDecl *Prop = &*P;
Ted Kremenek9d64c152010-03-12 00:38:38 +00001323 PropMap[Prop->getIdentifier()] = Prop;
1324 }
1325 // scan through class's protocols.
Ted Kremenek53b94412010-09-01 01:21:15 +00001326 for (ObjCInterfaceDecl::all_protocol_iterator
1327 PI = IDecl->all_referenced_protocol_begin(),
1328 E = IDecl->all_referenced_protocol_end(); PI != E; ++PI)
Fariborz Jahaniancfa6a272010-06-29 18:12:32 +00001329 CollectImmediateProperties((*PI), PropMap, SuperPropMap);
Ted Kremenek9d64c152010-03-12 00:38:38 +00001330 }
1331 if (ObjCCategoryDecl *CATDecl = dyn_cast<ObjCCategoryDecl>(CDecl)) {
1332 if (!CATDecl->IsClassExtension())
1333 for (ObjCContainerDecl::prop_iterator P = CATDecl->prop_begin(),
1334 E = CATDecl->prop_end(); P != E; ++P) {
David Blaikie262bc182012-04-30 02:36:29 +00001335 ObjCPropertyDecl *Prop = &*P;
Ted Kremenek9d64c152010-03-12 00:38:38 +00001336 PropMap[Prop->getIdentifier()] = Prop;
1337 }
1338 // scan through class's protocols.
Ted Kremenek53b94412010-09-01 01:21:15 +00001339 for (ObjCCategoryDecl::protocol_iterator PI = CATDecl->protocol_begin(),
Ted Kremenek9d64c152010-03-12 00:38:38 +00001340 E = CATDecl->protocol_end(); PI != E; ++PI)
Fariborz Jahaniancfa6a272010-06-29 18:12:32 +00001341 CollectImmediateProperties((*PI), PropMap, SuperPropMap);
Ted Kremenek9d64c152010-03-12 00:38:38 +00001342 }
1343 else if (ObjCProtocolDecl *PDecl = dyn_cast<ObjCProtocolDecl>(CDecl)) {
1344 for (ObjCProtocolDecl::prop_iterator P = PDecl->prop_begin(),
1345 E = PDecl->prop_end(); P != E; ++P) {
David Blaikie262bc182012-04-30 02:36:29 +00001346 ObjCPropertyDecl *Prop = &*P;
Fariborz Jahaniancfa6a272010-06-29 18:12:32 +00001347 ObjCPropertyDecl *PropertyFromSuper = SuperPropMap[Prop->getIdentifier()];
1348 // Exclude property for protocols which conform to class's super-class,
1349 // as super-class has to implement the property.
Fariborz Jahaniana929ec72011-09-27 00:23:52 +00001350 if (!PropertyFromSuper ||
1351 PropertyFromSuper->getIdentifier() != Prop->getIdentifier()) {
Fariborz Jahaniancfa6a272010-06-29 18:12:32 +00001352 ObjCPropertyDecl *&PropEntry = PropMap[Prop->getIdentifier()];
1353 if (!PropEntry)
1354 PropEntry = Prop;
1355 }
Ted Kremenek9d64c152010-03-12 00:38:38 +00001356 }
1357 // scan through protocol's protocols.
1358 for (ObjCProtocolDecl::protocol_iterator PI = PDecl->protocol_begin(),
1359 E = PDecl->protocol_end(); PI != E; ++PI)
Fariborz Jahaniancfa6a272010-06-29 18:12:32 +00001360 CollectImmediateProperties((*PI), PropMap, SuperPropMap);
Ted Kremenek9d64c152010-03-12 00:38:38 +00001361 }
1362}
1363
Fariborz Jahanian509d4772010-05-14 18:35:57 +00001364/// CollectClassPropertyImplementations - This routine collects list of
1365/// properties to be implemented in the class. This includes, class's
1366/// and its conforming protocols' properties.
1367static void CollectClassPropertyImplementations(ObjCContainerDecl *CDecl,
1368 llvm::DenseMap<IdentifierInfo *, ObjCPropertyDecl*>& PropMap) {
1369 if (ObjCInterfaceDecl *IDecl = dyn_cast<ObjCInterfaceDecl>(CDecl)) {
1370 for (ObjCContainerDecl::prop_iterator P = IDecl->prop_begin(),
1371 E = IDecl->prop_end(); P != E; ++P) {
David Blaikie262bc182012-04-30 02:36:29 +00001372 ObjCPropertyDecl *Prop = &*P;
Fariborz Jahanian509d4772010-05-14 18:35:57 +00001373 PropMap[Prop->getIdentifier()] = Prop;
1374 }
Ted Kremenek53b94412010-09-01 01:21:15 +00001375 for (ObjCInterfaceDecl::all_protocol_iterator
1376 PI = IDecl->all_referenced_protocol_begin(),
1377 E = IDecl->all_referenced_protocol_end(); PI != E; ++PI)
Fariborz Jahanian509d4772010-05-14 18:35:57 +00001378 CollectClassPropertyImplementations((*PI), PropMap);
1379 }
1380 else if (ObjCProtocolDecl *PDecl = dyn_cast<ObjCProtocolDecl>(CDecl)) {
1381 for (ObjCProtocolDecl::prop_iterator P = PDecl->prop_begin(),
1382 E = PDecl->prop_end(); P != E; ++P) {
David Blaikie262bc182012-04-30 02:36:29 +00001383 ObjCPropertyDecl *Prop = &*P;
Fariborz Jahanianac371502012-02-23 18:21:25 +00001384 if (!PropMap.count(Prop->getIdentifier()))
1385 PropMap[Prop->getIdentifier()] = Prop;
Fariborz Jahanian509d4772010-05-14 18:35:57 +00001386 }
1387 // scan through protocol's protocols.
1388 for (ObjCProtocolDecl::protocol_iterator PI = PDecl->protocol_begin(),
1389 E = PDecl->protocol_end(); PI != E; ++PI)
1390 CollectClassPropertyImplementations((*PI), PropMap);
1391 }
1392}
1393
1394/// CollectSuperClassPropertyImplementations - This routine collects list of
1395/// properties to be implemented in super class(s) and also coming from their
1396/// conforming protocols.
1397static void CollectSuperClassPropertyImplementations(ObjCInterfaceDecl *CDecl,
1398 llvm::DenseMap<IdentifierInfo *, ObjCPropertyDecl*>& PropMap) {
1399 if (ObjCInterfaceDecl *SDecl = CDecl->getSuperClass()) {
1400 while (SDecl) {
1401 CollectClassPropertyImplementations(SDecl, PropMap);
1402 SDecl = SDecl->getSuperClass();
1403 }
1404 }
1405}
1406
Ted Kremenek9d64c152010-03-12 00:38:38 +00001407/// LookupPropertyDecl - Looks up a property in the current class and all
1408/// its protocols.
1409ObjCPropertyDecl *Sema::LookupPropertyDecl(const ObjCContainerDecl *CDecl,
1410 IdentifierInfo *II) {
1411 if (const ObjCInterfaceDecl *IDecl =
1412 dyn_cast<ObjCInterfaceDecl>(CDecl)) {
1413 for (ObjCContainerDecl::prop_iterator P = IDecl->prop_begin(),
1414 E = IDecl->prop_end(); P != E; ++P) {
David Blaikie262bc182012-04-30 02:36:29 +00001415 ObjCPropertyDecl *Prop = &*P;
Ted Kremenek9d64c152010-03-12 00:38:38 +00001416 if (Prop->getIdentifier() == II)
1417 return Prop;
1418 }
1419 // scan through class's protocols.
Ted Kremenek53b94412010-09-01 01:21:15 +00001420 for (ObjCInterfaceDecl::all_protocol_iterator
1421 PI = IDecl->all_referenced_protocol_begin(),
1422 E = IDecl->all_referenced_protocol_end(); PI != E; ++PI) {
Ted Kremenek9d64c152010-03-12 00:38:38 +00001423 ObjCPropertyDecl *Prop = LookupPropertyDecl((*PI), II);
1424 if (Prop)
1425 return Prop;
1426 }
1427 }
1428 else if (const ObjCProtocolDecl *PDecl =
1429 dyn_cast<ObjCProtocolDecl>(CDecl)) {
1430 for (ObjCProtocolDecl::prop_iterator P = PDecl->prop_begin(),
1431 E = PDecl->prop_end(); P != E; ++P) {
David Blaikie262bc182012-04-30 02:36:29 +00001432 ObjCPropertyDecl *Prop = &*P;
Ted Kremenek9d64c152010-03-12 00:38:38 +00001433 if (Prop->getIdentifier() == II)
1434 return Prop;
1435 }
1436 // scan through protocol's protocols.
1437 for (ObjCProtocolDecl::protocol_iterator PI = PDecl->protocol_begin(),
1438 E = PDecl->protocol_end(); PI != E; ++PI) {
1439 ObjCPropertyDecl *Prop = LookupPropertyDecl((*PI), II);
1440 if (Prop)
1441 return Prop;
1442 }
1443 }
1444 return 0;
1445}
1446
Ted Kremenekd2ee8092011-09-27 23:39:40 +00001447static IdentifierInfo * getDefaultSynthIvarName(ObjCPropertyDecl *Prop,
1448 ASTContext &Ctx) {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00001449 SmallString<128> ivarName;
Ted Kremenekd2ee8092011-09-27 23:39:40 +00001450 {
1451 llvm::raw_svector_ostream os(ivarName);
1452 os << '_' << Prop->getIdentifier()->getName();
1453 }
1454 return &Ctx.Idents.get(ivarName.str());
1455}
1456
Fariborz Jahanian509d4772010-05-14 18:35:57 +00001457/// DefaultSynthesizeProperties - This routine default synthesizes all
1458/// properties which must be synthesized in class's @implementation.
Ted Kremenekd2ee8092011-09-27 23:39:40 +00001459void Sema::DefaultSynthesizeProperties(Scope *S, ObjCImplDecl* IMPDecl,
1460 ObjCInterfaceDecl *IDecl) {
Fariborz Jahanian509d4772010-05-14 18:35:57 +00001461
1462 llvm::DenseMap<IdentifierInfo *, ObjCPropertyDecl*> PropMap;
1463 CollectClassPropertyImplementations(IDecl, PropMap);
1464 if (PropMap.empty())
1465 return;
1466 llvm::DenseMap<IdentifierInfo *, ObjCPropertyDecl*> SuperPropMap;
1467 CollectSuperClassPropertyImplementations(IDecl, SuperPropMap);
1468
1469 for (llvm::DenseMap<IdentifierInfo *, ObjCPropertyDecl*>::iterator
1470 P = PropMap.begin(), E = PropMap.end(); P != E; ++P) {
1471 ObjCPropertyDecl *Prop = P->second;
1472 // If property to be implemented in the super class, ignore.
1473 if (SuperPropMap[Prop->getIdentifier()])
1474 continue;
1475 // Is there a matching propery synthesize/dynamic?
1476 if (Prop->isInvalidDecl() ||
1477 Prop->getPropertyImplementation() == ObjCPropertyDecl::Optional ||
1478 IMPDecl->FindPropertyImplIvarDecl(Prop->getIdentifier()))
1479 continue;
Fariborz Jahaniand3635b92010-07-14 18:11:52 +00001480 // Property may have been synthesized by user.
1481 if (IMPDecl->FindPropertyImplDecl(Prop->getIdentifier()))
1482 continue;
Fariborz Jahanian95f1b862010-08-25 00:31:58 +00001483 if (IMPDecl->getInstanceMethod(Prop->getGetterName())) {
1484 if (Prop->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_readonly)
1485 continue;
1486 if (IMPDecl->getInstanceMethod(Prop->getSetterName()))
1487 continue;
1488 }
Fariborz Jahanianf8aba8c2011-12-15 01:03:18 +00001489 if (isa<ObjCProtocolDecl>(Prop->getDeclContext())) {
1490 // We won't auto-synthesize properties declared in protocols.
1491 Diag(IMPDecl->getLocation(),
1492 diag::warn_auto_synthesizing_protocol_property);
1493 Diag(Prop->getLocation(), diag::note_property_declare);
1494 continue;
1495 }
Ted Kremenek2a6af6b2010-09-24 01:23:01 +00001496
1497 // We use invalid SourceLocations for the synthesized ivars since they
1498 // aren't really synthesized at a particular location; they just exist.
1499 // Saying that they are located at the @implementation isn't really going
1500 // to help users.
Fariborz Jahanian975eef62012-05-03 16:43:30 +00001501 ObjCPropertyImplDecl *PIDecl = dyn_cast_or_null<ObjCPropertyImplDecl>(
1502 ActOnPropertyImplDecl(S, SourceLocation(), SourceLocation(),
1503 true,
1504 /* property = */ Prop->getIdentifier(),
1505 /* ivar = */ getDefaultSynthIvarName(Prop, Context),
1506 SourceLocation()));
1507 if (PIDecl) {
1508 Diag(Prop->getLocation(), diag::warn_missing_explicit_synthesis);
Fariborz Jahanian5ea66612012-05-08 18:03:39 +00001509 Diag(IMPDecl->getLocation(), diag::note_while_in_implementation);
Fariborz Jahanian975eef62012-05-03 16:43:30 +00001510 }
Ted Kremenek2a6af6b2010-09-24 01:23:01 +00001511 }
Fariborz Jahanian509d4772010-05-14 18:35:57 +00001512}
Ted Kremenek9d64c152010-03-12 00:38:38 +00001513
Fariborz Jahanian8697d302011-08-31 22:24:06 +00001514void Sema::DefaultSynthesizeProperties(Scope *S, Decl *D) {
1515 if (!LangOpts.ObjCDefaultSynthProperties || !LangOpts.ObjCNonFragileABI2)
1516 return;
1517 ObjCImplementationDecl *IC=dyn_cast_or_null<ObjCImplementationDecl>(D);
1518 if (!IC)
1519 return;
1520 if (ObjCInterfaceDecl* IDecl = IC->getClassInterface())
Ted Kremenek71207fc2012-01-05 22:47:47 +00001521 if (!IDecl->isObjCRequiresPropertyDefs())
Fariborz Jahanianeb4f2c52012-01-03 19:46:00 +00001522 DefaultSynthesizeProperties(S, IC, IDecl);
Fariborz Jahanian8697d302011-08-31 22:24:06 +00001523}
1524
Fariborz Jahanian17cb3262010-05-05 21:52:17 +00001525void Sema::DiagnoseUnimplementedProperties(Scope *S, ObjCImplDecl* IMPDecl,
Ted Kremenek9d64c152010-03-12 00:38:38 +00001526 ObjCContainerDecl *CDecl,
1527 const llvm::DenseSet<Selector>& InsMap) {
Fariborz Jahaniancfa6a272010-06-29 18:12:32 +00001528 llvm::DenseMap<IdentifierInfo *, ObjCPropertyDecl*> SuperPropMap;
1529 if (ObjCInterfaceDecl *IDecl = dyn_cast<ObjCInterfaceDecl>(CDecl))
1530 CollectSuperClassPropertyImplementations(IDecl, SuperPropMap);
1531
Ted Kremenek9d64c152010-03-12 00:38:38 +00001532 llvm::DenseMap<IdentifierInfo *, ObjCPropertyDecl*> PropMap;
Fariborz Jahaniancfa6a272010-06-29 18:12:32 +00001533 CollectImmediateProperties(CDecl, PropMap, SuperPropMap);
Ted Kremenek9d64c152010-03-12 00:38:38 +00001534 if (PropMap.empty())
1535 return;
1536
1537 llvm::DenseSet<ObjCPropertyDecl *> PropImplMap;
1538 for (ObjCImplDecl::propimpl_iterator
1539 I = IMPDecl->propimpl_begin(),
1540 EI = IMPDecl->propimpl_end(); I != EI; ++I)
David Blaikie262bc182012-04-30 02:36:29 +00001541 PropImplMap.insert(I->getPropertyDecl());
Ted Kremenek9d64c152010-03-12 00:38:38 +00001542
1543 for (llvm::DenseMap<IdentifierInfo *, ObjCPropertyDecl*>::iterator
1544 P = PropMap.begin(), E = PropMap.end(); P != E; ++P) {
1545 ObjCPropertyDecl *Prop = P->second;
1546 // Is there a matching propery synthesize/dynamic?
1547 if (Prop->isInvalidDecl() ||
1548 Prop->getPropertyImplementation() == ObjCPropertyDecl::Optional ||
Fariborz Jahanian327126e2011-06-24 20:31:37 +00001549 PropImplMap.count(Prop) || Prop->hasAttr<UnavailableAttr>())
Ted Kremenek9d64c152010-03-12 00:38:38 +00001550 continue;
Ted Kremenek9d64c152010-03-12 00:38:38 +00001551 if (!InsMap.count(Prop->getGetterName())) {
Fariborz Jahanianb8607392011-08-27 21:55:47 +00001552 Diag(IMPDecl->getLocation(),
Ted Kremenek9d64c152010-03-12 00:38:38 +00001553 isa<ObjCCategoryDecl>(CDecl) ?
1554 diag::warn_setter_getter_impl_required_in_category :
1555 diag::warn_setter_getter_impl_required)
1556 << Prop->getDeclName() << Prop->getGetterName();
Fariborz Jahanianb8607392011-08-27 21:55:47 +00001557 Diag(Prop->getLocation(),
1558 diag::note_property_declare);
Fariborz Jahanianda611a72012-01-04 23:16:13 +00001559 if (LangOpts.ObjCDefaultSynthProperties && LangOpts.ObjCNonFragileABI2)
1560 if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(CDecl))
Ted Kremenek71207fc2012-01-05 22:47:47 +00001561 if (const ObjCInterfaceDecl *RID = ID->isObjCRequiresPropertyDefs())
Fariborz Jahanianda611a72012-01-04 23:16:13 +00001562 Diag(RID->getLocation(), diag::note_suppressed_class_declare);
1563
Ted Kremenek9d64c152010-03-12 00:38:38 +00001564 }
1565
1566 if (!Prop->isReadOnly() && !InsMap.count(Prop->getSetterName())) {
Fariborz Jahanianb8607392011-08-27 21:55:47 +00001567 Diag(IMPDecl->getLocation(),
Ted Kremenek9d64c152010-03-12 00:38:38 +00001568 isa<ObjCCategoryDecl>(CDecl) ?
1569 diag::warn_setter_getter_impl_required_in_category :
1570 diag::warn_setter_getter_impl_required)
1571 << Prop->getDeclName() << Prop->getSetterName();
Fariborz Jahanianb8607392011-08-27 21:55:47 +00001572 Diag(Prop->getLocation(),
1573 diag::note_property_declare);
Fariborz Jahanianda611a72012-01-04 23:16:13 +00001574 if (LangOpts.ObjCDefaultSynthProperties && LangOpts.ObjCNonFragileABI2)
1575 if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(CDecl))
Ted Kremenek71207fc2012-01-05 22:47:47 +00001576 if (const ObjCInterfaceDecl *RID = ID->isObjCRequiresPropertyDefs())
Fariborz Jahanianda611a72012-01-04 23:16:13 +00001577 Diag(RID->getLocation(), diag::note_suppressed_class_declare);
Ted Kremenek9d64c152010-03-12 00:38:38 +00001578 }
1579 }
1580}
1581
1582void
1583Sema::AtomicPropertySetterGetterRules (ObjCImplDecl* IMPDecl,
1584 ObjCContainerDecl* IDecl) {
1585 // Rules apply in non-GC mode only
David Blaikie4e4d0842012-03-11 07:00:24 +00001586 if (getLangOpts().getGC() != LangOptions::NonGC)
Ted Kremenek9d64c152010-03-12 00:38:38 +00001587 return;
1588 for (ObjCContainerDecl::prop_iterator I = IDecl->prop_begin(),
1589 E = IDecl->prop_end();
1590 I != E; ++I) {
David Blaikie262bc182012-04-30 02:36:29 +00001591 ObjCPropertyDecl *Property = &*I;
Argyrios Kyrtzidis94659e42011-01-31 21:34:11 +00001592 ObjCMethodDecl *GetterMethod = 0;
1593 ObjCMethodDecl *SetterMethod = 0;
1594 bool LookedUpGetterSetter = false;
1595
Ted Kremenek9d64c152010-03-12 00:38:38 +00001596 unsigned Attributes = Property->getPropertyAttributes();
John McCall265941b2011-09-13 18:31:23 +00001597 unsigned AttributesAsWritten = Property->getPropertyAttributesAsWritten();
Argyrios Kyrtzidis94659e42011-01-31 21:34:11 +00001598
John McCall265941b2011-09-13 18:31:23 +00001599 if (!(AttributesAsWritten & ObjCPropertyDecl::OBJC_PR_atomic) &&
1600 !(AttributesAsWritten & ObjCPropertyDecl::OBJC_PR_nonatomic)) {
Argyrios Kyrtzidis94659e42011-01-31 21:34:11 +00001601 GetterMethod = IMPDecl->getInstanceMethod(Property->getGetterName());
1602 SetterMethod = IMPDecl->getInstanceMethod(Property->getSetterName());
1603 LookedUpGetterSetter = true;
1604 if (GetterMethod) {
1605 Diag(GetterMethod->getLocation(),
1606 diag::warn_default_atomic_custom_getter_setter)
Argyrios Kyrtzidis293a45e2011-01-31 23:20:03 +00001607 << Property->getIdentifier() << 0;
Argyrios Kyrtzidis94659e42011-01-31 21:34:11 +00001608 Diag(Property->getLocation(), diag::note_property_declare);
1609 }
1610 if (SetterMethod) {
1611 Diag(SetterMethod->getLocation(),
1612 diag::warn_default_atomic_custom_getter_setter)
Argyrios Kyrtzidis293a45e2011-01-31 23:20:03 +00001613 << Property->getIdentifier() << 1;
Argyrios Kyrtzidis94659e42011-01-31 21:34:11 +00001614 Diag(Property->getLocation(), diag::note_property_declare);
1615 }
1616 }
1617
Ted Kremenek9d64c152010-03-12 00:38:38 +00001618 // We only care about readwrite atomic property.
1619 if ((Attributes & ObjCPropertyDecl::OBJC_PR_nonatomic) ||
1620 !(Attributes & ObjCPropertyDecl::OBJC_PR_readwrite))
1621 continue;
1622 if (const ObjCPropertyImplDecl *PIDecl
1623 = IMPDecl->FindPropertyImplDecl(Property->getIdentifier())) {
1624 if (PIDecl->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic)
1625 continue;
Argyrios Kyrtzidis94659e42011-01-31 21:34:11 +00001626 if (!LookedUpGetterSetter) {
1627 GetterMethod = IMPDecl->getInstanceMethod(Property->getGetterName());
1628 SetterMethod = IMPDecl->getInstanceMethod(Property->getSetterName());
1629 LookedUpGetterSetter = true;
1630 }
Ted Kremenek9d64c152010-03-12 00:38:38 +00001631 if ((GetterMethod && !SetterMethod) || (!GetterMethod && SetterMethod)) {
1632 SourceLocation MethodLoc =
1633 (GetterMethod ? GetterMethod->getLocation()
1634 : SetterMethod->getLocation());
1635 Diag(MethodLoc, diag::warn_atomic_property_rule)
Fariborz Jahanian7d65f692011-10-06 23:47:58 +00001636 << Property->getIdentifier() << (GetterMethod != 0)
1637 << (SetterMethod != 0);
Fariborz Jahanian77bfb8b2012-02-29 22:18:55 +00001638 // fixit stuff.
1639 if (!AttributesAsWritten) {
1640 if (Property->getLParenLoc().isValid()) {
1641 // @property () ... case.
1642 SourceRange PropSourceRange(Property->getAtLoc(),
1643 Property->getLParenLoc());
1644 Diag(Property->getLocation(), diag::note_atomic_property_fixup_suggest) <<
1645 FixItHint::CreateReplacement(PropSourceRange, "@property (nonatomic");
1646 }
1647 else {
1648 //@property id etc.
1649 SourceLocation endLoc =
1650 Property->getTypeSourceInfo()->getTypeLoc().getBeginLoc();
1651 endLoc = endLoc.getLocWithOffset(-1);
1652 SourceRange PropSourceRange(Property->getAtLoc(), endLoc);
1653 Diag(Property->getLocation(), diag::note_atomic_property_fixup_suggest) <<
1654 FixItHint::CreateReplacement(PropSourceRange, "@property (nonatomic) ");
1655 }
1656 }
1657 else if (!(AttributesAsWritten & ObjCPropertyDecl::OBJC_PR_atomic)) {
1658 // @property () ... case.
1659 SourceLocation endLoc = Property->getLParenLoc();
1660 SourceRange PropSourceRange(Property->getAtLoc(), endLoc);
1661 Diag(Property->getLocation(), diag::note_atomic_property_fixup_suggest) <<
1662 FixItHint::CreateReplacement(PropSourceRange, "@property (nonatomic, ");
1663 }
1664 else
1665 Diag(MethodLoc, diag::note_atomic_property_fixup_suggest);
Ted Kremenek9d64c152010-03-12 00:38:38 +00001666 Diag(Property->getLocation(), diag::note_property_declare);
1667 }
1668 }
1669 }
1670}
1671
John McCallf85e1932011-06-15 23:02:42 +00001672void Sema::DiagnoseOwningPropertyGetterSynthesis(const ObjCImplementationDecl *D) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001673 if (getLangOpts().getGC() == LangOptions::GCOnly)
John McCallf85e1932011-06-15 23:02:42 +00001674 return;
1675
1676 for (ObjCImplementationDecl::propimpl_iterator
1677 i = D->propimpl_begin(), e = D->propimpl_end(); i != e; ++i) {
David Blaikie262bc182012-04-30 02:36:29 +00001678 ObjCPropertyImplDecl *PID = &*i;
John McCallf85e1932011-06-15 23:02:42 +00001679 if (PID->getPropertyImplementation() != ObjCPropertyImplDecl::Synthesize)
1680 continue;
1681
1682 const ObjCPropertyDecl *PD = PID->getPropertyDecl();
Fariborz Jahanian831fb962011-06-25 00:17:46 +00001683 if (PD && !PD->hasAttr<NSReturnsNotRetainedAttr>() &&
1684 !D->getInstanceMethod(PD->getGetterName())) {
John McCallf85e1932011-06-15 23:02:42 +00001685 ObjCMethodDecl *method = PD->getGetterMethodDecl();
1686 if (!method)
1687 continue;
1688 ObjCMethodFamily family = method->getMethodFamily();
1689 if (family == OMF_alloc || family == OMF_copy ||
1690 family == OMF_mutableCopy || family == OMF_new) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001691 if (getLangOpts().ObjCAutoRefCount)
John McCallf85e1932011-06-15 23:02:42 +00001692 Diag(PID->getLocation(), diag::err_ownin_getter_rule);
1693 else
Ted Kremenek920c9c12011-10-12 18:03:37 +00001694 Diag(PID->getLocation(), diag::warn_owning_getter_rule);
John McCallf85e1932011-06-15 23:02:42 +00001695 Diag(PD->getLocation(), diag::note_property_declare);
1696 }
1697 }
1698 }
1699}
1700
John McCall5de74d12010-11-10 07:01:40 +00001701/// AddPropertyAttrs - Propagates attributes from a property to the
1702/// implicitly-declared getter or setter for that property.
1703static void AddPropertyAttrs(Sema &S, ObjCMethodDecl *PropertyMethod,
1704 ObjCPropertyDecl *Property) {
1705 // Should we just clone all attributes over?
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001706 for (Decl::attr_iterator A = Property->attr_begin(),
1707 AEnd = Property->attr_end();
1708 A != AEnd; ++A) {
1709 if (isa<DeprecatedAttr>(*A) ||
1710 isa<UnavailableAttr>(*A) ||
1711 isa<AvailabilityAttr>(*A))
1712 PropertyMethod->addAttr((*A)->clone(S.Context));
1713 }
John McCall5de74d12010-11-10 07:01:40 +00001714}
1715
Ted Kremenek9d64c152010-03-12 00:38:38 +00001716/// ProcessPropertyDecl - Make sure that any user-defined setter/getter methods
1717/// have the property type and issue diagnostics if they don't.
1718/// Also synthesize a getter/setter method if none exist (and update the
1719/// appropriate lookup tables. FIXME: Should reconsider if adding synthesized
1720/// methods is the "right" thing to do.
1721void Sema::ProcessPropertyDecl(ObjCPropertyDecl *property,
Ted Kremenek8254aa62010-09-21 18:28:43 +00001722 ObjCContainerDecl *CD,
1723 ObjCPropertyDecl *redeclaredProperty,
1724 ObjCContainerDecl *lexicalDC) {
1725
Ted Kremenek9d64c152010-03-12 00:38:38 +00001726 ObjCMethodDecl *GetterMethod, *SetterMethod;
1727
1728 GetterMethod = CD->getInstanceMethod(property->getGetterName());
1729 SetterMethod = CD->getInstanceMethod(property->getSetterName());
1730 DiagnosePropertyAccessorMismatch(property, GetterMethod,
1731 property->getLocation());
1732
1733 if (SetterMethod) {
1734 ObjCPropertyDecl::PropertyAttributeKind CAttr =
1735 property->getPropertyAttributes();
1736 if ((!(CAttr & ObjCPropertyDecl::OBJC_PR_readonly)) &&
1737 Context.getCanonicalType(SetterMethod->getResultType()) !=
1738 Context.VoidTy)
1739 Diag(SetterMethod->getLocation(), diag::err_setter_type_void);
1740 if (SetterMethod->param_size() != 1 ||
Fariborz Jahanian2aac0c92011-09-26 22:59:09 +00001741 !Context.hasSameUnqualifiedType(
Fariborz Jahanianbb13c322011-10-15 17:36:49 +00001742 (*SetterMethod->param_begin())->getType().getNonReferenceType(),
1743 property->getType().getNonReferenceType())) {
Ted Kremenek9d64c152010-03-12 00:38:38 +00001744 Diag(property->getLocation(),
1745 diag::warn_accessor_property_type_mismatch)
1746 << property->getDeclName()
1747 << SetterMethod->getSelector();
1748 Diag(SetterMethod->getLocation(), diag::note_declared_at);
1749 }
1750 }
1751
1752 // Synthesize getter/setter methods if none exist.
1753 // Find the default getter and if one not found, add one.
1754 // FIXME: The synthesized property we set here is misleading. We almost always
1755 // synthesize these methods unless the user explicitly provided prototypes
1756 // (which is odd, but allowed). Sema should be typechecking that the
1757 // declarations jive in that situation (which it is not currently).
1758 if (!GetterMethod) {
1759 // No instance method of same name as property getter name was found.
1760 // Declare a getter method and add it to the list of methods
1761 // for this class.
Ted Kremeneka054fb42010-09-21 20:52:59 +00001762 SourceLocation Loc = redeclaredProperty ?
1763 redeclaredProperty->getLocation() :
1764 property->getLocation();
1765
1766 GetterMethod = ObjCMethodDecl::Create(Context, Loc, Loc,
1767 property->getGetterName(),
Argyrios Kyrtzidis75cf3e82011-08-17 19:25:08 +00001768 property->getType(), 0, CD, /*isInstance=*/true,
1769 /*isVariadic=*/false, /*isSynthesized=*/true,
1770 /*isImplicitlyDeclared=*/true, /*isDefined=*/false,
Ted Kremenek9d64c152010-03-12 00:38:38 +00001771 (property->getPropertyImplementation() ==
1772 ObjCPropertyDecl::Optional) ?
1773 ObjCMethodDecl::Optional :
1774 ObjCMethodDecl::Required);
1775 CD->addDecl(GetterMethod);
John McCall5de74d12010-11-10 07:01:40 +00001776
1777 AddPropertyAttrs(*this, GetterMethod, property);
1778
Ted Kremenek23173d72010-05-18 21:09:07 +00001779 // FIXME: Eventually this shouldn't be needed, as the lexical context
1780 // and the real context should be the same.
Ted Kremeneka054fb42010-09-21 20:52:59 +00001781 if (lexicalDC)
Ted Kremenek23173d72010-05-18 21:09:07 +00001782 GetterMethod->setLexicalDeclContext(lexicalDC);
Fariborz Jahanian831fb962011-06-25 00:17:46 +00001783 if (property->hasAttr<NSReturnsNotRetainedAttr>())
1784 GetterMethod->addAttr(
1785 ::new (Context) NSReturnsNotRetainedAttr(Loc, Context));
Ted Kremenek9d64c152010-03-12 00:38:38 +00001786 } else
1787 // A user declared getter will be synthesize when @synthesize of
1788 // the property with the same name is seen in the @implementation
1789 GetterMethod->setSynthesized(true);
1790 property->setGetterMethodDecl(GetterMethod);
1791
1792 // Skip setter if property is read-only.
1793 if (!property->isReadOnly()) {
1794 // Find the default setter and if one not found, add one.
1795 if (!SetterMethod) {
1796 // No instance method of same name as property setter name was found.
1797 // Declare a setter method and add it to the list of methods
1798 // for this class.
Ted Kremenek8254aa62010-09-21 18:28:43 +00001799 SourceLocation Loc = redeclaredProperty ?
1800 redeclaredProperty->getLocation() :
1801 property->getLocation();
1802
1803 SetterMethod =
Argyrios Kyrtzidis491306a2011-10-03 06:37:04 +00001804 ObjCMethodDecl::Create(Context, Loc, Loc,
Ted Kremenek8254aa62010-09-21 18:28:43 +00001805 property->getSetterName(), Context.VoidTy, 0,
Argyrios Kyrtzidis75cf3e82011-08-17 19:25:08 +00001806 CD, /*isInstance=*/true, /*isVariadic=*/false,
1807 /*isSynthesized=*/true,
1808 /*isImplicitlyDeclared=*/true,
1809 /*isDefined=*/false,
Ted Kremenek9d64c152010-03-12 00:38:38 +00001810 (property->getPropertyImplementation() ==
1811 ObjCPropertyDecl::Optional) ?
Ted Kremenek8254aa62010-09-21 18:28:43 +00001812 ObjCMethodDecl::Optional :
1813 ObjCMethodDecl::Required);
1814
Ted Kremenek9d64c152010-03-12 00:38:38 +00001815 // Invent the arguments for the setter. We don't bother making a
1816 // nice name for the argument.
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001817 ParmVarDecl *Argument = ParmVarDecl::Create(Context, SetterMethod,
1818 Loc, Loc,
Ted Kremenek9d64c152010-03-12 00:38:38 +00001819 property->getIdentifier(),
John McCallf85e1932011-06-15 23:02:42 +00001820 property->getType().getUnqualifiedType(),
Ted Kremenek9d64c152010-03-12 00:38:38 +00001821 /*TInfo=*/0,
John McCalld931b082010-08-26 03:08:43 +00001822 SC_None,
1823 SC_None,
Ted Kremenek9d64c152010-03-12 00:38:38 +00001824 0);
Argyrios Kyrtzidis491306a2011-10-03 06:37:04 +00001825 SetterMethod->setMethodParams(Context, Argument,
1826 ArrayRef<SourceLocation>());
John McCall5de74d12010-11-10 07:01:40 +00001827
1828 AddPropertyAttrs(*this, SetterMethod, property);
1829
Ted Kremenek9d64c152010-03-12 00:38:38 +00001830 CD->addDecl(SetterMethod);
Ted Kremenek23173d72010-05-18 21:09:07 +00001831 // FIXME: Eventually this shouldn't be needed, as the lexical context
1832 // and the real context should be the same.
Ted Kremenek8254aa62010-09-21 18:28:43 +00001833 if (lexicalDC)
Ted Kremenek23173d72010-05-18 21:09:07 +00001834 SetterMethod->setLexicalDeclContext(lexicalDC);
Ted Kremenek9d64c152010-03-12 00:38:38 +00001835 } else
1836 // A user declared setter will be synthesize when @synthesize of
1837 // the property with the same name is seen in the @implementation
1838 SetterMethod->setSynthesized(true);
1839 property->setSetterMethodDecl(SetterMethod);
1840 }
1841 // Add any synthesized methods to the global pool. This allows us to
1842 // handle the following, which is supported by GCC (and part of the design).
1843 //
1844 // @interface Foo
1845 // @property double bar;
1846 // @end
1847 //
1848 // void thisIsUnfortunate() {
1849 // id foo;
1850 // double bar = [foo bar];
1851 // }
1852 //
1853 if (GetterMethod)
1854 AddInstanceMethodToGlobalPool(GetterMethod);
1855 if (SetterMethod)
1856 AddInstanceMethodToGlobalPool(SetterMethod);
Argyrios Kyrtzidise15db6f2012-05-09 16:12:57 +00001857
1858 ObjCInterfaceDecl *CurrentClass = dyn_cast<ObjCInterfaceDecl>(CD);
1859 if (!CurrentClass) {
1860 if (ObjCCategoryDecl *Cat = dyn_cast<ObjCCategoryDecl>(CD))
1861 CurrentClass = Cat->getClassInterface();
1862 else if (ObjCImplDecl *Impl = dyn_cast<ObjCImplDecl>(CD))
1863 CurrentClass = Impl->getClassInterface();
1864 }
1865 if (GetterMethod)
1866 CheckObjCMethodOverrides(GetterMethod, CurrentClass, Sema::RTC_Unknown);
1867 if (SetterMethod)
1868 CheckObjCMethodOverrides(SetterMethod, CurrentClass, Sema::RTC_Unknown);
Ted Kremenek9d64c152010-03-12 00:38:38 +00001869}
1870
John McCalld226f652010-08-21 09:40:31 +00001871void Sema::CheckObjCPropertyAttributes(Decl *PDecl,
Ted Kremenek9d64c152010-03-12 00:38:38 +00001872 SourceLocation Loc,
1873 unsigned &Attributes) {
1874 // FIXME: Improve the reported location.
John McCallf85e1932011-06-15 23:02:42 +00001875 if (!PDecl || PDecl->isInvalidDecl())
Ted Kremenek5fcd52a2010-04-05 22:39:42 +00001876 return;
1877
1878 ObjCPropertyDecl *PropertyDecl = cast<ObjCPropertyDecl>(PDecl);
Fariborz Jahanian842f07b2010-03-30 22:40:11 +00001879 QualType PropertyTy = PropertyDecl->getType();
Ted Kremenek9d64c152010-03-12 00:38:38 +00001880
David Blaikie4e4d0842012-03-11 07:00:24 +00001881 if (getLangOpts().ObjCAutoRefCount &&
Fariborz Jahanian015f6082012-01-11 18:26:06 +00001882 (Attributes & ObjCDeclSpec::DQ_PR_readonly) &&
1883 PropertyTy->isObjCRetainableType()) {
1884 // 'readonly' property with no obvious lifetime.
1885 // its life time will be determined by its backing ivar.
1886 unsigned rel = (ObjCDeclSpec::DQ_PR_unsafe_unretained |
1887 ObjCDeclSpec::DQ_PR_copy |
1888 ObjCDeclSpec::DQ_PR_retain |
1889 ObjCDeclSpec::DQ_PR_strong |
1890 ObjCDeclSpec::DQ_PR_weak |
1891 ObjCDeclSpec::DQ_PR_assign);
1892 if ((Attributes & rel) == 0)
1893 return;
1894 }
1895
Ted Kremenek9d64c152010-03-12 00:38:38 +00001896 // readonly and readwrite/assign/retain/copy conflict.
1897 if ((Attributes & ObjCDeclSpec::DQ_PR_readonly) &&
1898 (Attributes & (ObjCDeclSpec::DQ_PR_readwrite |
1899 ObjCDeclSpec::DQ_PR_assign |
John McCallf85e1932011-06-15 23:02:42 +00001900 ObjCDeclSpec::DQ_PR_unsafe_unretained |
Ted Kremenek9d64c152010-03-12 00:38:38 +00001901 ObjCDeclSpec::DQ_PR_copy |
John McCallf85e1932011-06-15 23:02:42 +00001902 ObjCDeclSpec::DQ_PR_retain |
1903 ObjCDeclSpec::DQ_PR_strong))) {
Ted Kremenek9d64c152010-03-12 00:38:38 +00001904 const char * which = (Attributes & ObjCDeclSpec::DQ_PR_readwrite) ?
1905 "readwrite" :
1906 (Attributes & ObjCDeclSpec::DQ_PR_assign) ?
1907 "assign" :
John McCallf85e1932011-06-15 23:02:42 +00001908 (Attributes & ObjCDeclSpec::DQ_PR_unsafe_unretained) ?
1909 "unsafe_unretained" :
Ted Kremenek9d64c152010-03-12 00:38:38 +00001910 (Attributes & ObjCDeclSpec::DQ_PR_copy) ?
1911 "copy" : "retain";
1912
1913 Diag(Loc, (Attributes & (ObjCDeclSpec::DQ_PR_readwrite)) ?
1914 diag::err_objc_property_attr_mutually_exclusive :
1915 diag::warn_objc_property_attr_mutually_exclusive)
1916 << "readonly" << which;
1917 }
1918
1919 // Check for copy or retain on non-object types.
John McCallf85e1932011-06-15 23:02:42 +00001920 if ((Attributes & (ObjCDeclSpec::DQ_PR_weak | ObjCDeclSpec::DQ_PR_copy |
1921 ObjCDeclSpec::DQ_PR_retain | ObjCDeclSpec::DQ_PR_strong)) &&
1922 !PropertyTy->isObjCRetainableType() &&
Fariborz Jahanian842f07b2010-03-30 22:40:11 +00001923 !PropertyDecl->getAttr<ObjCNSObjectAttr>()) {
Ted Kremenek9d64c152010-03-12 00:38:38 +00001924 Diag(Loc, diag::err_objc_property_requires_object)
John McCallf85e1932011-06-15 23:02:42 +00001925 << (Attributes & ObjCDeclSpec::DQ_PR_weak ? "weak" :
1926 Attributes & ObjCDeclSpec::DQ_PR_copy ? "copy" : "retain (or strong)");
1927 Attributes &= ~(ObjCDeclSpec::DQ_PR_weak | ObjCDeclSpec::DQ_PR_copy |
1928 ObjCDeclSpec::DQ_PR_retain | ObjCDeclSpec::DQ_PR_strong);
John McCall977ea782012-02-21 21:48:05 +00001929 PropertyDecl->setInvalidDecl();
Ted Kremenek9d64c152010-03-12 00:38:38 +00001930 }
1931
1932 // Check for more than one of { assign, copy, retain }.
1933 if (Attributes & ObjCDeclSpec::DQ_PR_assign) {
1934 if (Attributes & ObjCDeclSpec::DQ_PR_copy) {
1935 Diag(Loc, diag::err_objc_property_attr_mutually_exclusive)
1936 << "assign" << "copy";
1937 Attributes &= ~ObjCDeclSpec::DQ_PR_copy;
1938 }
1939 if (Attributes & ObjCDeclSpec::DQ_PR_retain) {
1940 Diag(Loc, diag::err_objc_property_attr_mutually_exclusive)
1941 << "assign" << "retain";
1942 Attributes &= ~ObjCDeclSpec::DQ_PR_retain;
1943 }
John McCallf85e1932011-06-15 23:02:42 +00001944 if (Attributes & ObjCDeclSpec::DQ_PR_strong) {
1945 Diag(Loc, diag::err_objc_property_attr_mutually_exclusive)
1946 << "assign" << "strong";
1947 Attributes &= ~ObjCDeclSpec::DQ_PR_strong;
1948 }
David Blaikie4e4d0842012-03-11 07:00:24 +00001949 if (getLangOpts().ObjCAutoRefCount &&
John McCallf85e1932011-06-15 23:02:42 +00001950 (Attributes & ObjCDeclSpec::DQ_PR_weak)) {
1951 Diag(Loc, diag::err_objc_property_attr_mutually_exclusive)
1952 << "assign" << "weak";
1953 Attributes &= ~ObjCDeclSpec::DQ_PR_weak;
1954 }
1955 } else if (Attributes & ObjCDeclSpec::DQ_PR_unsafe_unretained) {
1956 if (Attributes & ObjCDeclSpec::DQ_PR_copy) {
1957 Diag(Loc, diag::err_objc_property_attr_mutually_exclusive)
1958 << "unsafe_unretained" << "copy";
1959 Attributes &= ~ObjCDeclSpec::DQ_PR_copy;
1960 }
1961 if (Attributes & ObjCDeclSpec::DQ_PR_retain) {
1962 Diag(Loc, diag::err_objc_property_attr_mutually_exclusive)
1963 << "unsafe_unretained" << "retain";
1964 Attributes &= ~ObjCDeclSpec::DQ_PR_retain;
1965 }
1966 if (Attributes & ObjCDeclSpec::DQ_PR_strong) {
1967 Diag(Loc, diag::err_objc_property_attr_mutually_exclusive)
1968 << "unsafe_unretained" << "strong";
1969 Attributes &= ~ObjCDeclSpec::DQ_PR_strong;
1970 }
David Blaikie4e4d0842012-03-11 07:00:24 +00001971 if (getLangOpts().ObjCAutoRefCount &&
John McCallf85e1932011-06-15 23:02:42 +00001972 (Attributes & ObjCDeclSpec::DQ_PR_weak)) {
1973 Diag(Loc, diag::err_objc_property_attr_mutually_exclusive)
1974 << "unsafe_unretained" << "weak";
1975 Attributes &= ~ObjCDeclSpec::DQ_PR_weak;
1976 }
Ted Kremenek9d64c152010-03-12 00:38:38 +00001977 } else if (Attributes & ObjCDeclSpec::DQ_PR_copy) {
1978 if (Attributes & ObjCDeclSpec::DQ_PR_retain) {
1979 Diag(Loc, diag::err_objc_property_attr_mutually_exclusive)
1980 << "copy" << "retain";
1981 Attributes &= ~ObjCDeclSpec::DQ_PR_retain;
1982 }
John McCallf85e1932011-06-15 23:02:42 +00001983 if (Attributes & ObjCDeclSpec::DQ_PR_strong) {
1984 Diag(Loc, diag::err_objc_property_attr_mutually_exclusive)
1985 << "copy" << "strong";
1986 Attributes &= ~ObjCDeclSpec::DQ_PR_strong;
1987 }
1988 if (Attributes & ObjCDeclSpec::DQ_PR_weak) {
1989 Diag(Loc, diag::err_objc_property_attr_mutually_exclusive)
1990 << "copy" << "weak";
1991 Attributes &= ~ObjCDeclSpec::DQ_PR_weak;
1992 }
1993 }
1994 else if ((Attributes & ObjCDeclSpec::DQ_PR_retain) &&
1995 (Attributes & ObjCDeclSpec::DQ_PR_weak)) {
1996 Diag(Loc, diag::err_objc_property_attr_mutually_exclusive)
1997 << "retain" << "weak";
Fariborz Jahanian528a4992011-09-14 18:03:46 +00001998 Attributes &= ~ObjCDeclSpec::DQ_PR_retain;
John McCallf85e1932011-06-15 23:02:42 +00001999 }
2000 else if ((Attributes & ObjCDeclSpec::DQ_PR_strong) &&
2001 (Attributes & ObjCDeclSpec::DQ_PR_weak)) {
2002 Diag(Loc, diag::err_objc_property_attr_mutually_exclusive)
2003 << "strong" << "weak";
2004 Attributes &= ~ObjCDeclSpec::DQ_PR_weak;
Ted Kremenek9d64c152010-03-12 00:38:38 +00002005 }
2006
Fariborz Jahanian9d1bbea2011-10-10 21:53:24 +00002007 if ((Attributes & ObjCDeclSpec::DQ_PR_atomic) &&
2008 (Attributes & ObjCDeclSpec::DQ_PR_nonatomic)) {
2009 Diag(Loc, diag::err_objc_property_attr_mutually_exclusive)
2010 << "atomic" << "nonatomic";
2011 Attributes &= ~ObjCDeclSpec::DQ_PR_atomic;
2012 }
2013
Ted Kremenek9d64c152010-03-12 00:38:38 +00002014 // Warn if user supplied no assignment attribute, property is
2015 // readwrite, and this is an object type.
2016 if (!(Attributes & (ObjCDeclSpec::DQ_PR_assign | ObjCDeclSpec::DQ_PR_copy |
John McCallf85e1932011-06-15 23:02:42 +00002017 ObjCDeclSpec::DQ_PR_unsafe_unretained |
2018 ObjCDeclSpec::DQ_PR_retain | ObjCDeclSpec::DQ_PR_strong |
2019 ObjCDeclSpec::DQ_PR_weak)) &&
Ted Kremenek9d64c152010-03-12 00:38:38 +00002020 PropertyTy->isObjCObjectPointerType()) {
David Blaikie4e4d0842012-03-11 07:00:24 +00002021 if (getLangOpts().ObjCAutoRefCount)
Fariborz Jahanianbc03aea2011-08-19 19:28:44 +00002022 // With arc, @property definitions should default to (strong) when
Fariborz Jahanianf21a92d2011-11-08 20:58:53 +00002023 // not specified; including when property is 'readonly'.
Fariborz Jahanianbc03aea2011-08-19 19:28:44 +00002024 PropertyDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_strong);
Fariborz Jahanianf21a92d2011-11-08 20:58:53 +00002025 else if (!(Attributes & ObjCDeclSpec::DQ_PR_readonly)) {
Fariborz Jahanian9f37cd12012-01-04 00:31:53 +00002026 bool isAnyClassTy =
2027 (PropertyTy->isObjCClassType() ||
2028 PropertyTy->isObjCQualifiedClassType());
2029 // In non-gc, non-arc mode, 'Class' is treated as a 'void *' no need to
2030 // issue any warning.
David Blaikie4e4d0842012-03-11 07:00:24 +00002031 if (isAnyClassTy && getLangOpts().getGC() == LangOptions::NonGC)
Fariborz Jahanian9f37cd12012-01-04 00:31:53 +00002032 ;
2033 else {
Fariborz Jahanianbc03aea2011-08-19 19:28:44 +00002034 // Skip this warning in gc-only mode.
David Blaikie4e4d0842012-03-11 07:00:24 +00002035 if (getLangOpts().getGC() != LangOptions::GCOnly)
Fariborz Jahanianbc03aea2011-08-19 19:28:44 +00002036 Diag(Loc, diag::warn_objc_property_no_assignment_attribute);
Ted Kremenek9d64c152010-03-12 00:38:38 +00002037
Fariborz Jahanianbc03aea2011-08-19 19:28:44 +00002038 // If non-gc code warn that this is likely inappropriate.
David Blaikie4e4d0842012-03-11 07:00:24 +00002039 if (getLangOpts().getGC() == LangOptions::NonGC)
Fariborz Jahanianbc03aea2011-08-19 19:28:44 +00002040 Diag(Loc, diag::warn_objc_property_default_assign_on_object);
Fariborz Jahanian9f37cd12012-01-04 00:31:53 +00002041 }
Fariborz Jahanianbc03aea2011-08-19 19:28:44 +00002042 }
Ted Kremenek9d64c152010-03-12 00:38:38 +00002043
2044 // FIXME: Implement warning dependent on NSCopying being
2045 // implemented. See also:
2046 // <rdar://5168496&4855821&5607453&5096644&4947311&5698469&4947014&5168496>
2047 // (please trim this list while you are at it).
2048 }
2049
2050 if (!(Attributes & ObjCDeclSpec::DQ_PR_copy)
Fariborz Jahanian2b77cb82011-01-05 23:00:04 +00002051 &&!(Attributes & ObjCDeclSpec::DQ_PR_readonly)
David Blaikie4e4d0842012-03-11 07:00:24 +00002052 && getLangOpts().getGC() == LangOptions::GCOnly
Ted Kremenek9d64c152010-03-12 00:38:38 +00002053 && PropertyTy->isBlockPointerType())
2054 Diag(Loc, diag::warn_objc_property_copy_missing_on_block);
David Blaikie4e4d0842012-03-11 07:00:24 +00002055 else if (getLangOpts().ObjCAutoRefCount &&
Fariborz Jahanian528a4992011-09-14 18:03:46 +00002056 (Attributes & ObjCDeclSpec::DQ_PR_retain) &&
2057 !(Attributes & ObjCDeclSpec::DQ_PR_readonly) &&
2058 !(Attributes & ObjCDeclSpec::DQ_PR_strong) &&
2059 PropertyTy->isBlockPointerType())
2060 Diag(Loc, diag::warn_objc_property_retain_of_block);
Fariborz Jahanian48a98c72011-11-01 23:02:16 +00002061
2062 if ((Attributes & ObjCDeclSpec::DQ_PR_readonly) &&
2063 (Attributes & ObjCDeclSpec::DQ_PR_setter))
2064 Diag(Loc, diag::warn_objc_readonly_property_has_setter);
2065
Ted Kremenek9d64c152010-03-12 00:38:38 +00002066}