blob: 46f64561af5798574693f70067df3e47b443ad86 [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"
John McCall50df6ae2010-08-25 07:03:20 +000019#include "llvm/ADT/DenseSet.h"
Ted Kremenek9d64c152010-03-12 00:38:38 +000020
21using namespace clang;
22
Ted Kremenek28685ab2010-03-12 00:46:40 +000023//===----------------------------------------------------------------------===//
24// Grammar actions.
25//===----------------------------------------------------------------------===//
26
John McCallf85e1932011-06-15 23:02:42 +000027/// Check the internal consistency of a property declaration.
28static void checkARCPropertyDecl(Sema &S, ObjCPropertyDecl *property) {
29 if (property->isInvalidDecl()) return;
30
31 ObjCPropertyDecl::PropertyAttributeKind propertyKind
32 = property->getPropertyAttributes();
33 Qualifiers::ObjCLifetime propertyLifetime
34 = property->getType().getObjCLifetime();
35
36 // Nothing to do if we don't have a lifetime.
37 if (propertyLifetime == Qualifiers::OCL_None) return;
38
39 Qualifiers::ObjCLifetime expectedLifetime;
40 unsigned selector;
41
42 // Strong properties should have either strong or no lifetime.
43 if (propertyKind & (ObjCPropertyDecl::OBJC_PR_retain |
44 ObjCPropertyDecl::OBJC_PR_strong |
45 ObjCPropertyDecl::OBJC_PR_copy)) {
46 expectedLifetime = Qualifiers::OCL_Strong;
47 selector = 0;
48 } else if (propertyKind & ObjCPropertyDecl::OBJC_PR_weak) {
49 expectedLifetime = Qualifiers::OCL_Weak;
50 selector = 1;
51 } else if (propertyKind & (ObjCPropertyDecl::OBJC_PR_assign |
52 ObjCPropertyDecl::OBJC_PR_unsafe_unretained) &&
53 property->getType()->isObjCRetainableType()) {
54 expectedLifetime = Qualifiers::OCL_ExplicitNone;
55 selector = 2;
56 } else {
57 // We have a lifetime qualifier but no dominating property
58 // attribute. That's okay.
59 return;
60 }
61
62 if (propertyLifetime == expectedLifetime) return;
63
64 property->setInvalidDecl();
65 S.Diag(property->getLocation(),
Argyrios Kyrtzidisb8b03132011-06-24 00:08:59 +000066 diag::err_arc_inconsistent_property_ownership)
John McCallf85e1932011-06-15 23:02:42 +000067 << property->getDeclName()
68 << selector
69 << propertyLifetime;
70}
71
John McCalld226f652010-08-21 09:40:31 +000072Decl *Sema::ActOnProperty(Scope *S, SourceLocation AtLoc,
73 FieldDeclarator &FD,
74 ObjCDeclSpec &ODS,
75 Selector GetterSel,
76 Selector SetterSel,
John McCalld226f652010-08-21 09:40:31 +000077 bool *isOverridingProperty,
Ted Kremenek4a2e9ea2010-09-23 21:18:05 +000078 tok::ObjCKeywordKind MethodImplKind,
79 DeclContext *lexicalDC) {
Ted Kremenek28685ab2010-03-12 00:46:40 +000080 unsigned Attributes = ODS.getPropertyAttributes();
John McCallf85e1932011-06-15 23:02:42 +000081 TypeSourceInfo *TSI = GetTypeForDeclarator(FD.D, S);
82 QualType T = TSI->getType();
83 if ((getLangOptions().getGCMode() != LangOptions::NonGC &&
84 T.isObjCGCWeak()) ||
85 (getLangOptions().ObjCAutoRefCount &&
86 T.getObjCLifetime() == Qualifiers::OCL_Weak))
87 Attributes |= ObjCDeclSpec::DQ_PR_weak;
88
Ted Kremenek28685ab2010-03-12 00:46:40 +000089 bool isReadWrite = ((Attributes & ObjCDeclSpec::DQ_PR_readwrite) ||
90 // default is readwrite!
91 !(Attributes & ObjCDeclSpec::DQ_PR_readonly));
92 // property is defaulted to 'assign' if it is readwrite and is
93 // not retain or copy
94 bool isAssign = ((Attributes & ObjCDeclSpec::DQ_PR_assign) ||
95 (isReadWrite &&
96 !(Attributes & ObjCDeclSpec::DQ_PR_retain) &&
John McCallf85e1932011-06-15 23:02:42 +000097 !(Attributes & ObjCDeclSpec::DQ_PR_strong) &&
98 !(Attributes & ObjCDeclSpec::DQ_PR_copy) &&
99 !(Attributes & ObjCDeclSpec::DQ_PR_unsafe_unretained) &&
100 !(Attributes & ObjCDeclSpec::DQ_PR_weak)));
Fariborz Jahanian14086762011-03-28 23:47:18 +0000101
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000102 // Proceed with constructing the ObjCPropertDecls.
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000103 ObjCContainerDecl *ClassDecl = cast<ObjCContainerDecl>(CurContext);
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000104
Ted Kremenek28685ab2010-03-12 00:46:40 +0000105 if (ObjCCategoryDecl *CDecl = dyn_cast<ObjCCategoryDecl>(ClassDecl))
Fariborz Jahanianae415dc2010-07-13 22:04:56 +0000106 if (CDecl->IsClassExtension()) {
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000107 Decl *Res = HandlePropertyInClassExtension(S, AtLoc,
Fariborz Jahanianae415dc2010-07-13 22:04:56 +0000108 FD, GetterSel, SetterSel,
109 isAssign, isReadWrite,
110 Attributes,
111 isOverridingProperty, TSI,
112 MethodImplKind);
John McCallf85e1932011-06-15 23:02:42 +0000113 if (Res) {
Fariborz Jahanianae415dc2010-07-13 22:04:56 +0000114 CheckObjCPropertyAttributes(Res, AtLoc, Attributes);
John McCallf85e1932011-06-15 23:02:42 +0000115 if (getLangOptions().ObjCAutoRefCount)
116 checkARCPropertyDecl(*this, cast<ObjCPropertyDecl>(Res));
117 }
Fariborz Jahanianae415dc2010-07-13 22:04:56 +0000118 return Res;
119 }
120
John McCallf85e1932011-06-15 23:02:42 +0000121 ObjCPropertyDecl *Res = CreatePropertyDecl(S, ClassDecl, AtLoc, FD,
122 GetterSel, SetterSel,
123 isAssign, isReadWrite,
124 Attributes, TSI, MethodImplKind);
Ted Kremenek4a2e9ea2010-09-23 21:18:05 +0000125 if (lexicalDC)
126 Res->setLexicalDeclContext(lexicalDC);
127
Fariborz Jahanian842f07b2010-03-30 22:40:11 +0000128 // Validate the attributes on the @property.
129 CheckObjCPropertyAttributes(Res, AtLoc, Attributes);
John McCallf85e1932011-06-15 23:02:42 +0000130
131 if (getLangOptions().ObjCAutoRefCount)
132 checkARCPropertyDecl(*this, Res);
133
Fariborz Jahanian842f07b2010-03-30 22:40:11 +0000134 return Res;
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000135}
Ted Kremenek2d2f9362010-03-12 00:49:00 +0000136
John McCalld226f652010-08-21 09:40:31 +0000137Decl *
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000138Sema::HandlePropertyInClassExtension(Scope *S,
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000139 SourceLocation AtLoc, FieldDeclarator &FD,
140 Selector GetterSel, Selector SetterSel,
141 const bool isAssign,
142 const bool isReadWrite,
143 const unsigned Attributes,
144 bool *isOverridingProperty,
John McCall83a230c2010-06-04 20:50:08 +0000145 TypeSourceInfo *T,
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000146 tok::ObjCKeywordKind MethodImplKind) {
Fariborz Jahanian58a76492011-08-22 18:34:22 +0000147 ObjCCategoryDecl *CDecl = cast<ObjCCategoryDecl>(CurContext);
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000148 // Diagnose if this property is already in continuation class.
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000149 DeclContext *DC = CurContext;
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000150 IdentifierInfo *PropertyId = FD.D.getIdentifier();
Fariborz Jahanian2a289142010-11-10 18:01:36 +0000151 ObjCInterfaceDecl *CCPrimary = CDecl->getClassInterface();
152
153 if (CCPrimary)
154 // Check for duplicate declaration of this property in current and
155 // other class extensions.
156 for (const ObjCCategoryDecl *ClsExtDecl =
157 CCPrimary->getFirstClassExtension();
158 ClsExtDecl; ClsExtDecl = ClsExtDecl->getNextClassExtension()) {
159 if (ObjCPropertyDecl *prevDecl =
160 ObjCPropertyDecl::findPropertyDecl(ClsExtDecl, PropertyId)) {
161 Diag(AtLoc, diag::err_duplicate_property);
162 Diag(prevDecl->getLocation(), diag::note_property_declare);
163 return 0;
164 }
165 }
166
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000167 // Create a new ObjCPropertyDecl with the DeclContext being
168 // the class extension.
Fariborz Jahanian88f5e9b2010-12-10 23:36:33 +0000169 // FIXME. We should really be using CreatePropertyDecl for this.
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000170 ObjCPropertyDecl *PDecl =
171 ObjCPropertyDecl::Create(Context, DC, FD.D.getIdentifierLoc(),
172 PropertyId, AtLoc, T);
Fariborz Jahanian22f757b2010-03-22 23:25:52 +0000173 if (Attributes & ObjCDeclSpec::DQ_PR_readonly)
174 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_readonly);
175 if (Attributes & ObjCDeclSpec::DQ_PR_readwrite)
176 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_readwrite);
Fariborz Jahanian88f5e9b2010-12-10 23:36:33 +0000177 // Set setter/getter selector name. Needed later.
178 PDecl->setGetterName(GetterSel);
179 PDecl->setSetterName(SetterSel);
Douglas Gregor91ae6b42011-07-15 15:30:21 +0000180 ProcessDeclAttributes(S, PDecl, FD.D);
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000181 DC->addDecl(PDecl);
182
183 // We need to look in the @interface to see if the @property was
184 // already declared.
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000185 if (!CCPrimary) {
186 Diag(CDecl->getLocation(), diag::err_continuation_class);
187 *isOverridingProperty = true;
John McCalld226f652010-08-21 09:40:31 +0000188 return 0;
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000189 }
190
191 // Find the property in continuation class's primary class only.
192 ObjCPropertyDecl *PIDecl =
193 CCPrimary->FindPropertyVisibleInPrimaryClass(PropertyId);
194
195 if (!PIDecl) {
196 // No matching property found in the primary class. Just fall thru
197 // and add property to continuation class's primary class.
198 ObjCPropertyDecl *PDecl =
199 CreatePropertyDecl(S, CCPrimary, AtLoc,
200 FD, GetterSel, SetterSel, isAssign, isReadWrite,
Ted Kremenek23173d72010-05-18 21:09:07 +0000201 Attributes, T, MethodImplKind, DC);
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000202
203 // A case of continuation class adding a new property in the class. This
204 // is not what it was meant for. However, gcc supports it and so should we.
205 // Make sure setter/getters are declared here.
Ted Kremeneka054fb42010-09-21 20:52:59 +0000206 ProcessPropertyDecl(PDecl, CCPrimary, /* redeclaredProperty = */ 0,
207 /* lexicalDC = */ CDecl);
John McCalld226f652010-08-21 09:40:31 +0000208 return PDecl;
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000209 }
210
211 // The property 'PIDecl's readonly attribute will be over-ridden
212 // with continuation class's readwrite property attribute!
Fariborz Jahanian80aa1cd2010-06-22 23:20:40 +0000213 unsigned PIkind = PIDecl->getPropertyAttributesAsWritten();
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000214 if (isReadWrite && (PIkind & ObjCPropertyDecl::OBJC_PR_readonly)) {
215 unsigned retainCopyNonatomic =
216 (ObjCPropertyDecl::OBJC_PR_retain |
John McCallf85e1932011-06-15 23:02:42 +0000217 ObjCPropertyDecl::OBJC_PR_strong |
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000218 ObjCPropertyDecl::OBJC_PR_copy |
219 ObjCPropertyDecl::OBJC_PR_nonatomic);
220 if ((Attributes & retainCopyNonatomic) !=
221 (PIkind & retainCopyNonatomic)) {
222 Diag(AtLoc, diag::warn_property_attr_mismatch);
223 Diag(PIDecl->getLocation(), diag::note_property_declare);
Ted Kremenek28685ab2010-03-12 00:46:40 +0000224 }
Ted Kremenek9944c762010-03-18 01:22:36 +0000225 DeclContext *DC = cast<DeclContext>(CCPrimary);
226 if (!ObjCPropertyDecl::findPropertyDecl(DC,
227 PIDecl->getDeclName().getAsIdentifierInfo())) {
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000228 // Protocol is not in the primary class. Must build one for it.
229 ObjCDeclSpec ProtocolPropertyODS;
230 // FIXME. Assuming that ObjCDeclSpec::ObjCPropertyAttributeKind
231 // and ObjCPropertyDecl::PropertyAttributeKind have identical
232 // values. Should consolidate both into one enum type.
233 ProtocolPropertyODS.
234 setPropertyAttributes((ObjCDeclSpec::ObjCPropertyAttributeKind)
235 PIkind);
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000236 // Must re-establish the context from class extension to primary
237 // class context.
Fariborz Jahanian79394182011-08-22 20:15:24 +0000238 ContextRAII SavedContext(*this, CCPrimary);
239
John McCalld226f652010-08-21 09:40:31 +0000240 Decl *ProtocolPtrTy =
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000241 ActOnProperty(S, AtLoc, FD, ProtocolPropertyODS,
242 PIDecl->getGetterName(),
243 PIDecl->getSetterName(),
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000244 isOverridingProperty,
Ted Kremenek4a2e9ea2010-09-23 21:18:05 +0000245 MethodImplKind,
246 /* lexicalDC = */ CDecl);
John McCalld226f652010-08-21 09:40:31 +0000247 PIDecl = cast<ObjCPropertyDecl>(ProtocolPtrTy);
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000248 }
249 PIDecl->makeitReadWriteAttribute();
250 if (Attributes & ObjCDeclSpec::DQ_PR_retain)
251 PIDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_retain);
John McCallf85e1932011-06-15 23:02:42 +0000252 if (Attributes & ObjCDeclSpec::DQ_PR_strong)
253 PIDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_strong);
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000254 if (Attributes & ObjCDeclSpec::DQ_PR_copy)
255 PIDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_copy);
256 PIDecl->setSetterName(SetterSel);
257 } else {
Ted Kremenek788f4892010-10-21 18:49:42 +0000258 // Tailor the diagnostics for the common case where a readwrite
259 // property is declared both in the @interface and the continuation.
260 // This is a common error where the user often intended the original
261 // declaration to be readonly.
262 unsigned diag =
263 (Attributes & ObjCDeclSpec::DQ_PR_readwrite) &&
264 (PIkind & ObjCPropertyDecl::OBJC_PR_readwrite)
265 ? diag::err_use_continuation_class_redeclaration_readwrite
266 : diag::err_use_continuation_class;
267 Diag(AtLoc, diag)
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000268 << CCPrimary->getDeclName();
269 Diag(PIDecl->getLocation(), diag::note_property_declare);
270 }
271 *isOverridingProperty = true;
272 // Make sure setter decl is synthesized, and added to primary class's list.
Ted Kremenek8254aa62010-09-21 18:28:43 +0000273 ProcessPropertyDecl(PIDecl, CCPrimary, PDecl, CDecl);
John McCalld226f652010-08-21 09:40:31 +0000274 return 0;
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000275}
276
277ObjCPropertyDecl *Sema::CreatePropertyDecl(Scope *S,
278 ObjCContainerDecl *CDecl,
279 SourceLocation AtLoc,
280 FieldDeclarator &FD,
281 Selector GetterSel,
282 Selector SetterSel,
283 const bool isAssign,
284 const bool isReadWrite,
285 const unsigned Attributes,
John McCall83a230c2010-06-04 20:50:08 +0000286 TypeSourceInfo *TInfo,
Ted Kremenek23173d72010-05-18 21:09:07 +0000287 tok::ObjCKeywordKind MethodImplKind,
288 DeclContext *lexicalDC){
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000289 IdentifierInfo *PropertyId = FD.D.getIdentifier();
John McCall83a230c2010-06-04 20:50:08 +0000290 QualType T = TInfo->getType();
Ted Kremenek28685ab2010-03-12 00:46:40 +0000291
292 // Issue a warning if property is 'assign' as default and its object, which is
293 // gc'able conforms to NSCopying protocol
294 if (getLangOptions().getGCMode() != LangOptions::NonGC &&
295 isAssign && !(Attributes & ObjCDeclSpec::DQ_PR_assign))
John McCallc12c5bb2010-05-15 11:32:37 +0000296 if (const ObjCObjectPointerType *ObjPtrTy =
297 T->getAs<ObjCObjectPointerType>()) {
298 ObjCInterfaceDecl *IDecl = ObjPtrTy->getObjectType()->getInterface();
299 if (IDecl)
300 if (ObjCProtocolDecl* PNSCopying =
301 LookupProtocol(&Context.Idents.get("NSCopying"), AtLoc))
302 if (IDecl->ClassImplementsProtocol(PNSCopying, true))
303 Diag(AtLoc, diag::warn_implements_nscopying) << PropertyId;
Ted Kremenek28685ab2010-03-12 00:46:40 +0000304 }
John McCallc12c5bb2010-05-15 11:32:37 +0000305 if (T->isObjCObjectType())
Ted Kremenek28685ab2010-03-12 00:46:40 +0000306 Diag(FD.D.getIdentifierLoc(), diag::err_statically_allocated_object);
307
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000308 DeclContext *DC = cast<DeclContext>(CDecl);
Ted Kremenek28685ab2010-03-12 00:46:40 +0000309 ObjCPropertyDecl *PDecl = ObjCPropertyDecl::Create(Context, DC,
310 FD.D.getIdentifierLoc(),
John McCall83a230c2010-06-04 20:50:08 +0000311 PropertyId, AtLoc, TInfo);
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000312
Ted Kremenek9f550ff2010-03-15 20:11:46 +0000313 if (ObjCPropertyDecl *prevDecl =
314 ObjCPropertyDecl::findPropertyDecl(DC, PropertyId)) {
Ted Kremenek28685ab2010-03-12 00:46:40 +0000315 Diag(PDecl->getLocation(), diag::err_duplicate_property);
Ted Kremenek894ae6a2010-03-15 18:47:25 +0000316 Diag(prevDecl->getLocation(), diag::note_property_declare);
Ted Kremenek28685ab2010-03-12 00:46:40 +0000317 PDecl->setInvalidDecl();
318 }
Ted Kremenek23173d72010-05-18 21:09:07 +0000319 else {
Ted Kremenek28685ab2010-03-12 00:46:40 +0000320 DC->addDecl(PDecl);
Ted Kremenek23173d72010-05-18 21:09:07 +0000321 if (lexicalDC)
322 PDecl->setLexicalDeclContext(lexicalDC);
323 }
Ted Kremenek28685ab2010-03-12 00:46:40 +0000324
325 if (T->isArrayType() || T->isFunctionType()) {
326 Diag(AtLoc, diag::err_property_type) << T;
327 PDecl->setInvalidDecl();
328 }
329
330 ProcessDeclAttributes(S, PDecl, FD.D);
331
332 // Regardless of setter/getter attribute, we save the default getter/setter
333 // selector names in anticipation of declaration of setter/getter methods.
334 PDecl->setGetterName(GetterSel);
335 PDecl->setSetterName(SetterSel);
336
Argyrios Kyrtzidis0a68dc72011-07-12 04:30:16 +0000337 unsigned attributesAsWritten = 0;
338 if (Attributes & ObjCDeclSpec::DQ_PR_readonly)
339 attributesAsWritten |= ObjCPropertyDecl::OBJC_PR_readonly;
340 if (Attributes & ObjCDeclSpec::DQ_PR_readwrite)
341 attributesAsWritten |= ObjCPropertyDecl::OBJC_PR_readwrite;
342 if (Attributes & ObjCDeclSpec::DQ_PR_getter)
343 attributesAsWritten |= ObjCPropertyDecl::OBJC_PR_getter;
344 if (Attributes & ObjCDeclSpec::DQ_PR_setter)
345 attributesAsWritten |= ObjCPropertyDecl::OBJC_PR_setter;
346 if (Attributes & ObjCDeclSpec::DQ_PR_assign)
347 attributesAsWritten |= ObjCPropertyDecl::OBJC_PR_assign;
348 if (Attributes & ObjCDeclSpec::DQ_PR_retain)
349 attributesAsWritten |= ObjCPropertyDecl::OBJC_PR_retain;
350 if (Attributes & ObjCDeclSpec::DQ_PR_strong)
351 attributesAsWritten |= ObjCPropertyDecl::OBJC_PR_strong;
352 if (Attributes & ObjCDeclSpec::DQ_PR_weak)
353 attributesAsWritten |= ObjCPropertyDecl::OBJC_PR_weak;
354 if (Attributes & ObjCDeclSpec::DQ_PR_copy)
355 attributesAsWritten |= ObjCPropertyDecl::OBJC_PR_copy;
356 if (Attributes & ObjCDeclSpec::DQ_PR_unsafe_unretained)
357 attributesAsWritten |= ObjCPropertyDecl::OBJC_PR_unsafe_unretained;
358 if (Attributes & ObjCDeclSpec::DQ_PR_nonatomic)
359 attributesAsWritten |= ObjCPropertyDecl::OBJC_PR_nonatomic;
360 if (Attributes & ObjCDeclSpec::DQ_PR_atomic)
361 attributesAsWritten |= ObjCPropertyDecl::OBJC_PR_atomic;
362
363 PDecl->setPropertyAttributesAsWritten(
364 (ObjCPropertyDecl::PropertyAttributeKind)attributesAsWritten);
365
Ted Kremenek28685ab2010-03-12 00:46:40 +0000366 if (Attributes & ObjCDeclSpec::DQ_PR_readonly)
367 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_readonly);
368
369 if (Attributes & ObjCDeclSpec::DQ_PR_getter)
370 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_getter);
371
372 if (Attributes & ObjCDeclSpec::DQ_PR_setter)
373 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_setter);
374
375 if (isReadWrite)
376 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_readwrite);
377
378 if (Attributes & ObjCDeclSpec::DQ_PR_retain)
379 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_retain);
380
John McCallf85e1932011-06-15 23:02:42 +0000381 if (Attributes & ObjCDeclSpec::DQ_PR_strong)
382 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_strong);
383
384 if (Attributes & ObjCDeclSpec::DQ_PR_weak)
385 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_weak);
386
Ted Kremenek28685ab2010-03-12 00:46:40 +0000387 if (Attributes & ObjCDeclSpec::DQ_PR_copy)
388 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_copy);
389
John McCallf85e1932011-06-15 23:02:42 +0000390 if (Attributes & ObjCDeclSpec::DQ_PR_unsafe_unretained)
391 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_unsafe_unretained);
392
Ted Kremenek28685ab2010-03-12 00:46:40 +0000393 if (isAssign)
394 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_assign);
395
396 if (Attributes & ObjCDeclSpec::DQ_PR_nonatomic)
397 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_nonatomic);
Fariborz Jahanian45937ae2011-06-11 00:45:12 +0000398 else if (Attributes & ObjCDeclSpec::DQ_PR_atomic)
399 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_atomic);
Ted Kremenek28685ab2010-03-12 00:46:40 +0000400
John McCallf85e1932011-06-15 23:02:42 +0000401 // 'unsafe_unretained' is alias for 'assign'.
402 if (Attributes & ObjCDeclSpec::DQ_PR_unsafe_unretained)
403 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_assign);
404 if (isAssign)
405 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_unsafe_unretained);
406
Ted Kremenek28685ab2010-03-12 00:46:40 +0000407 if (MethodImplKind == tok::objc_required)
408 PDecl->setPropertyImplementation(ObjCPropertyDecl::Required);
409 else if (MethodImplKind == tok::objc_optional)
410 PDecl->setPropertyImplementation(ObjCPropertyDecl::Optional);
Ted Kremenek28685ab2010-03-12 00:46:40 +0000411
Ted Kremeneke3d67bc2010-03-12 02:31:10 +0000412 return PDecl;
Ted Kremenek28685ab2010-03-12 00:46:40 +0000413}
414
John McCallf85e1932011-06-15 23:02:42 +0000415static void checkARCPropertyImpl(Sema &S, SourceLocation propertyImplLoc,
416 ObjCPropertyDecl *property,
417 ObjCIvarDecl *ivar) {
418 if (property->isInvalidDecl() || ivar->isInvalidDecl()) return;
419
420 QualType propertyType = property->getType();
421 Qualifiers::ObjCLifetime propertyLifetime = propertyType.getObjCLifetime();
422 ObjCPropertyDecl::PropertyAttributeKind propertyKind
423 = property->getPropertyAttributes();
424
425 QualType ivarType = ivar->getType();
426 Qualifiers::ObjCLifetime ivarLifetime = ivarType.getObjCLifetime();
427
428 // Case 1: strong properties.
429 if (propertyLifetime == Qualifiers::OCL_Strong ||
430 (propertyKind & (ObjCPropertyDecl::OBJC_PR_retain |
431 ObjCPropertyDecl::OBJC_PR_strong |
432 ObjCPropertyDecl::OBJC_PR_copy))) {
433 switch (ivarLifetime) {
434 case Qualifiers::OCL_Strong:
435 // Okay.
436 return;
437
438 case Qualifiers::OCL_None:
439 case Qualifiers::OCL_Autoreleasing:
440 // These aren't valid lifetimes for object ivars; don't diagnose twice.
441 return;
442
443 case Qualifiers::OCL_ExplicitNone:
444 case Qualifiers::OCL_Weak:
Argyrios Kyrtzidisb8b03132011-06-24 00:08:59 +0000445 S.Diag(propertyImplLoc, diag::err_arc_strong_property_ownership)
John McCallf85e1932011-06-15 23:02:42 +0000446 << property->getDeclName()
447 << ivar->getDeclName()
448 << ivarLifetime;
449 break;
450 }
451
452 // Case 2: weak properties.
453 } else if (propertyLifetime == Qualifiers::OCL_Weak ||
454 (propertyKind & ObjCPropertyDecl::OBJC_PR_weak)) {
455 switch (ivarLifetime) {
456 case Qualifiers::OCL_Weak:
457 // Okay.
458 return;
459
460 case Qualifiers::OCL_None:
461 case Qualifiers::OCL_Autoreleasing:
462 // These aren't valid lifetimes for object ivars; don't diagnose twice.
463 return;
464
465 case Qualifiers::OCL_ExplicitNone:
466 case Qualifiers::OCL_Strong:
467 S.Diag(propertyImplLoc, diag::error_weak_property)
468 << property->getDeclName()
469 << ivar->getDeclName();
470 break;
471 }
472
473 // Case 3: assign properties.
474 } else if ((propertyKind & ObjCPropertyDecl::OBJC_PR_assign) &&
475 propertyType->isObjCRetainableType()) {
476 switch (ivarLifetime) {
477 case Qualifiers::OCL_ExplicitNone:
478 // Okay.
479 return;
480
481 case Qualifiers::OCL_None:
482 case Qualifiers::OCL_Autoreleasing:
483 // These aren't valid lifetimes for object ivars; don't diagnose twice.
484 return;
485
486 case Qualifiers::OCL_Weak:
487 case Qualifiers::OCL_Strong:
Argyrios Kyrtzidisb8b03132011-06-24 00:08:59 +0000488 S.Diag(propertyImplLoc, diag::err_arc_assign_property_ownership)
John McCallf85e1932011-06-15 23:02:42 +0000489 << property->getDeclName()
490 << ivar->getDeclName();
491 break;
492 }
493
494 // Any other property should be ignored.
495 } else {
496 return;
497 }
498
499 S.Diag(property->getLocation(), diag::note_property_declare);
500}
501
Ted Kremenek28685ab2010-03-12 00:46:40 +0000502
503/// ActOnPropertyImplDecl - This routine performs semantic checks and
504/// builds the AST node for a property implementation declaration; declared
505/// as @synthesize or @dynamic.
506///
John McCalld226f652010-08-21 09:40:31 +0000507Decl *Sema::ActOnPropertyImplDecl(Scope *S,
508 SourceLocation AtLoc,
509 SourceLocation PropertyLoc,
510 bool Synthesize,
John McCalld226f652010-08-21 09:40:31 +0000511 IdentifierInfo *PropertyId,
Douglas Gregora4ffd852010-11-17 01:03:52 +0000512 IdentifierInfo *PropertyIvar,
513 SourceLocation PropertyIvarLoc) {
Ted Kremeneke9686572010-04-05 23:45:09 +0000514 ObjCContainerDecl *ClassImpDecl =
Fariborz Jahaniana28948f2011-08-22 15:54:49 +0000515 cast_or_null<ObjCContainerDecl>(CurContext);
Ted Kremenek28685ab2010-03-12 00:46:40 +0000516 // Make sure we have a context for the property implementation declaration.
517 if (!ClassImpDecl) {
518 Diag(AtLoc, diag::error_missing_property_context);
John McCalld226f652010-08-21 09:40:31 +0000519 return 0;
Ted Kremenek28685ab2010-03-12 00:46:40 +0000520 }
521 ObjCPropertyDecl *property = 0;
522 ObjCInterfaceDecl* IDecl = 0;
523 // Find the class or category class where this property must have
524 // a declaration.
525 ObjCImplementationDecl *IC = 0;
526 ObjCCategoryImplDecl* CatImplClass = 0;
527 if ((IC = dyn_cast<ObjCImplementationDecl>(ClassImpDecl))) {
528 IDecl = IC->getClassInterface();
529 // We always synthesize an interface for an implementation
530 // without an interface decl. So, IDecl is always non-zero.
531 assert(IDecl &&
532 "ActOnPropertyImplDecl - @implementation without @interface");
533
534 // Look for this property declaration in the @implementation's @interface
535 property = IDecl->FindPropertyDeclaration(PropertyId);
536 if (!property) {
537 Diag(PropertyLoc, diag::error_bad_property_decl) << IDecl->getDeclName();
John McCalld226f652010-08-21 09:40:31 +0000538 return 0;
Ted Kremenek28685ab2010-03-12 00:46:40 +0000539 }
Fariborz Jahaniandd4430e2010-12-17 22:28:16 +0000540 unsigned PIkind = property->getPropertyAttributesAsWritten();
Fariborz Jahanian45937ae2011-06-11 00:45:12 +0000541 if ((PIkind & (ObjCPropertyDecl::OBJC_PR_atomic |
542 ObjCPropertyDecl::OBJC_PR_nonatomic) ) == 0) {
Fariborz Jahaniandd4430e2010-12-17 22:28:16 +0000543 if (AtLoc.isValid())
544 Diag(AtLoc, diag::warn_implicit_atomic_property);
545 else
546 Diag(IC->getLocation(), diag::warn_auto_implicit_atomic_property);
547 Diag(property->getLocation(), diag::note_property_declare);
548 }
549
Ted Kremenek28685ab2010-03-12 00:46:40 +0000550 if (const ObjCCategoryDecl *CD =
551 dyn_cast<ObjCCategoryDecl>(property->getDeclContext())) {
552 if (!CD->IsClassExtension()) {
553 Diag(PropertyLoc, diag::error_category_property) << CD->getDeclName();
554 Diag(property->getLocation(), diag::note_property_declare);
John McCalld226f652010-08-21 09:40:31 +0000555 return 0;
Ted Kremenek28685ab2010-03-12 00:46:40 +0000556 }
557 }
558 } else if ((CatImplClass = dyn_cast<ObjCCategoryImplDecl>(ClassImpDecl))) {
559 if (Synthesize) {
560 Diag(AtLoc, diag::error_synthesize_category_decl);
John McCalld226f652010-08-21 09:40:31 +0000561 return 0;
Ted Kremenek28685ab2010-03-12 00:46:40 +0000562 }
563 IDecl = CatImplClass->getClassInterface();
564 if (!IDecl) {
565 Diag(AtLoc, diag::error_missing_property_interface);
John McCalld226f652010-08-21 09:40:31 +0000566 return 0;
Ted Kremenek28685ab2010-03-12 00:46:40 +0000567 }
568 ObjCCategoryDecl *Category =
569 IDecl->FindCategoryDeclaration(CatImplClass->getIdentifier());
570
571 // If category for this implementation not found, it is an error which
572 // has already been reported eralier.
573 if (!Category)
John McCalld226f652010-08-21 09:40:31 +0000574 return 0;
Ted Kremenek28685ab2010-03-12 00:46:40 +0000575 // Look for this property declaration in @implementation's category
576 property = Category->FindPropertyDeclaration(PropertyId);
577 if (!property) {
578 Diag(PropertyLoc, diag::error_bad_category_property_decl)
579 << Category->getDeclName();
John McCalld226f652010-08-21 09:40:31 +0000580 return 0;
Ted Kremenek28685ab2010-03-12 00:46:40 +0000581 }
582 } else {
583 Diag(AtLoc, diag::error_bad_property_context);
John McCalld226f652010-08-21 09:40:31 +0000584 return 0;
Ted Kremenek28685ab2010-03-12 00:46:40 +0000585 }
586 ObjCIvarDecl *Ivar = 0;
587 // Check that we have a valid, previously declared ivar for @synthesize
588 if (Synthesize) {
589 // @synthesize
590 if (!PropertyIvar)
591 PropertyIvar = PropertyId;
John McCallf85e1932011-06-15 23:02:42 +0000592 ObjCPropertyDecl::PropertyAttributeKind kind
593 = property->getPropertyAttributes();
Ted Kremenek28685ab2010-03-12 00:46:40 +0000594 QualType PropType = Context.getCanonicalType(property->getType());
Fariborz Jahanian14086762011-03-28 23:47:18 +0000595 QualType PropertyIvarType = PropType;
596 if (PropType->isReferenceType())
597 PropertyIvarType = cast<ReferenceType>(PropType)->getPointeeType();
Ted Kremenek28685ab2010-03-12 00:46:40 +0000598 // Check that this is a previously declared 'ivar' in 'IDecl' interface
599 ObjCInterfaceDecl *ClassDeclared;
600 Ivar = IDecl->lookupInstanceVariable(PropertyIvar, ClassDeclared);
601 if (!Ivar) {
John McCallf85e1932011-06-15 23:02:42 +0000602 // In ARC, give the ivar a lifetime qualifier based on its
603 // property attributes.
604 if (getLangOptions().ObjCAutoRefCount &&
605 !PropertyIvarType.getObjCLifetime()) {
606
Argyrios Kyrtzidis473506b2011-07-26 21:48:26 +0000607 if (!property->hasWrittenStorageAttribute() &&
Fariborz Jahanianbc03aea2011-08-19 19:28:44 +0000608 property->getType()->isObjCRetainableType() &&
609 !(kind & ObjCPropertyDecl::OBJC_PR_strong) ) {
Argyrios Kyrtzidis473506b2011-07-26 21:48:26 +0000610 Diag(PropertyLoc,
611 diag::err_arc_objc_property_default_assign_on_object);
612 Diag(property->getLocation(), diag::note_property_declare);
613 }
614
John McCallf85e1932011-06-15 23:02:42 +0000615 // retain/copy have retaining lifetime.
616 if (kind & (ObjCPropertyDecl::OBJC_PR_retain |
617 ObjCPropertyDecl::OBJC_PR_strong |
618 ObjCPropertyDecl::OBJC_PR_copy)) {
619 Qualifiers qs;
620 qs.addObjCLifetime(Qualifiers::OCL_Strong);
621 PropertyIvarType = Context.getQualifiedType(PropertyIvarType, qs);
622 }
623 else if (kind & ObjCPropertyDecl::OBJC_PR_weak) {
John McCall9f084a32011-07-06 00:26:06 +0000624 if (!getLangOptions().ObjCRuntimeHasWeak) {
John McCallf85e1932011-06-15 23:02:42 +0000625 Diag(PropertyLoc, diag::err_arc_weak_no_runtime);
626 Diag(property->getLocation(), diag::note_property_declare);
627 }
628 Qualifiers qs;
629 qs.addObjCLifetime(Qualifiers::OCL_Weak);
630 PropertyIvarType = Context.getQualifiedType(PropertyIvarType, qs);
631 }
632 else if (kind & ObjCPropertyDecl::OBJC_PR_assign &&
633 PropertyIvarType->isObjCRetainableType()) {
634 // assume that an 'assign' property synthesizes __unsafe_unretained
635 // ivar
636 Qualifiers qs;
637 qs.addObjCLifetime(Qualifiers::OCL_ExplicitNone);
638 PropertyIvarType = Context.getQualifiedType(PropertyIvarType, qs);
639 }
640 }
641
642 if (kind & ObjCPropertyDecl::OBJC_PR_weak &&
643 !getLangOptions().ObjCAutoRefCount &&
644 getLangOptions().getGCMode() == LangOptions::NonGC) {
645 Diag(PropertyLoc, diag::error_synthesize_weak_non_arc_or_gc);
646 Diag(property->getLocation(), diag::note_property_declare);
647 }
648
Abramo Bagnaraff676cb2011-03-08 08:55:46 +0000649 Ivar = ObjCIvarDecl::Create(Context, ClassImpDecl,
650 PropertyLoc, PropertyLoc, PropertyIvar,
Fariborz Jahanian14086762011-03-28 23:47:18 +0000651 PropertyIvarType, /*Dinfo=*/0,
Fariborz Jahanian75049662010-12-15 23:29:04 +0000652 ObjCIvarDecl::Private,
Fariborz Jahanianad51e742010-07-17 00:59:30 +0000653 (Expr *)0, true);
Daniel Dunbar29fa69a2010-04-02 19:44:54 +0000654 ClassImpDecl->addDecl(Ivar);
Ted Kremenek28685ab2010-03-12 00:46:40 +0000655 IDecl->makeDeclVisibleInContext(Ivar, false);
656 property->setPropertyIvarDecl(Ivar);
657
658 if (!getLangOptions().ObjCNonFragileABI)
659 Diag(PropertyLoc, diag::error_missing_property_ivar_decl) << PropertyId;
660 // Note! I deliberately want it to fall thru so, we have a
661 // a property implementation and to avoid future warnings.
662 } else if (getLangOptions().ObjCNonFragileABI &&
663 ClassDeclared != IDecl) {
664 Diag(PropertyLoc, diag::error_ivar_in_superclass_use)
665 << property->getDeclName() << Ivar->getDeclName()
666 << ClassDeclared->getDeclName();
667 Diag(Ivar->getLocation(), diag::note_previous_access_declaration)
Daniel Dunbar4087f272010-08-17 22:39:59 +0000668 << Ivar << Ivar->getName();
Ted Kremenek28685ab2010-03-12 00:46:40 +0000669 // Note! I deliberately want it to fall thru so more errors are caught.
670 }
671 QualType IvarType = Context.getCanonicalType(Ivar->getType());
672
673 // Check that type of property and its ivar are type compatible.
Fariborz Jahanian14086762011-03-28 23:47:18 +0000674 if (PropertyIvarType != IvarType) {
Fariborz Jahanian62ac5d02010-05-18 23:04:17 +0000675 bool compat = false;
Fariborz Jahanian14086762011-03-28 23:47:18 +0000676 if (isa<ObjCObjectPointerType>(PropertyIvarType)
John McCallf85e1932011-06-15 23:02:42 +0000677 && isa<ObjCObjectPointerType>(IvarType))
Fariborz Jahanian62ac5d02010-05-18 23:04:17 +0000678 compat =
679 Context.canAssignObjCInterfaces(
Fariborz Jahanian14086762011-03-28 23:47:18 +0000680 PropertyIvarType->getAs<ObjCObjectPointerType>(),
Fariborz Jahanian62ac5d02010-05-18 23:04:17 +0000681 IvarType->getAs<ObjCObjectPointerType>());
Douglas Gregorb608b982011-01-28 02:26:04 +0000682 else {
683 SourceLocation Loc = PropertyIvarLoc;
684 if (Loc.isInvalid())
685 Loc = PropertyLoc;
Fariborz Jahanian14086762011-03-28 23:47:18 +0000686 compat = (CheckAssignmentConstraints(Loc, PropertyIvarType, IvarType)
John McCalldaa8e4e2010-11-15 09:13:47 +0000687 == Compatible);
Douglas Gregorb608b982011-01-28 02:26:04 +0000688 }
Fariborz Jahanian62ac5d02010-05-18 23:04:17 +0000689 if (!compat) {
Ted Kremenek28685ab2010-03-12 00:46:40 +0000690 Diag(PropertyLoc, diag::error_property_ivar_type)
Ted Kremenekf921a482010-03-23 19:02:22 +0000691 << property->getDeclName() << PropType
692 << Ivar->getDeclName() << IvarType;
693 Diag(Ivar->getLocation(), diag::note_ivar_decl);
Ted Kremenek28685ab2010-03-12 00:46:40 +0000694 // Note! I deliberately want it to fall thru so, we have a
695 // a property implementation and to avoid future warnings.
696 }
697
698 // FIXME! Rules for properties are somewhat different that those
699 // for assignments. Use a new routine to consolidate all cases;
700 // specifically for property redeclarations as well as for ivars.
Fariborz Jahanian14086762011-03-28 23:47:18 +0000701 QualType lhsType =Context.getCanonicalType(PropertyIvarType).getUnqualifiedType();
Ted Kremenek28685ab2010-03-12 00:46:40 +0000702 QualType rhsType =Context.getCanonicalType(IvarType).getUnqualifiedType();
703 if (lhsType != rhsType &&
704 lhsType->isArithmeticType()) {
705 Diag(PropertyLoc, diag::error_property_ivar_type)
Ted Kremenekf921a482010-03-23 19:02:22 +0000706 << property->getDeclName() << PropType
707 << Ivar->getDeclName() << IvarType;
708 Diag(Ivar->getLocation(), diag::note_ivar_decl);
Ted Kremenek28685ab2010-03-12 00:46:40 +0000709 // Fall thru - see previous comment
710 }
711 // __weak is explicit. So it works on Canonical type.
John McCallf85e1932011-06-15 23:02:42 +0000712 if ((PropType.isObjCGCWeak() && !IvarType.isObjCGCWeak() &&
713 getLangOptions().getGCMode() != LangOptions::NonGC)) {
Ted Kremenek28685ab2010-03-12 00:46:40 +0000714 Diag(PropertyLoc, diag::error_weak_property)
715 << property->getDeclName() << Ivar->getDeclName();
716 // Fall thru - see previous comment
717 }
John McCallf85e1932011-06-15 23:02:42 +0000718 // Fall thru - see previous comment
Ted Kremenek28685ab2010-03-12 00:46:40 +0000719 if ((property->getType()->isObjCObjectPointerType() ||
720 PropType.isObjCGCStrong()) && IvarType.isObjCGCWeak() &&
721 getLangOptions().getGCMode() != LangOptions::NonGC) {
722 Diag(PropertyLoc, diag::error_strong_property)
723 << property->getDeclName() << Ivar->getDeclName();
724 // Fall thru - see previous comment
725 }
726 }
John McCallf85e1932011-06-15 23:02:42 +0000727 if (getLangOptions().ObjCAutoRefCount)
728 checkARCPropertyImpl(*this, PropertyLoc, property, Ivar);
Ted Kremenek28685ab2010-03-12 00:46:40 +0000729 } else if (PropertyIvar)
730 // @dynamic
731 Diag(PropertyLoc, diag::error_dynamic_property_ivar_decl);
John McCallf85e1932011-06-15 23:02:42 +0000732
Ted Kremenek28685ab2010-03-12 00:46:40 +0000733 assert (property && "ActOnPropertyImplDecl - property declaration missing");
734 ObjCPropertyImplDecl *PIDecl =
735 ObjCPropertyImplDecl::Create(Context, CurContext, AtLoc, PropertyLoc,
736 property,
737 (Synthesize ?
738 ObjCPropertyImplDecl::Synthesize
739 : ObjCPropertyImplDecl::Dynamic),
Douglas Gregora4ffd852010-11-17 01:03:52 +0000740 Ivar, PropertyIvarLoc);
Fariborz Jahanian17cb3262010-05-05 21:52:17 +0000741 if (ObjCMethodDecl *getterMethod = property->getGetterMethodDecl()) {
742 getterMethod->createImplicitParams(Context, IDecl);
Fariborz Jahanian0313f442010-10-15 22:42:59 +0000743 if (getLangOptions().CPlusPlus && Synthesize &&
744 Ivar->getType()->isRecordType()) {
Fariborz Jahanian17cb3262010-05-05 21:52:17 +0000745 // For Objective-C++, need to synthesize the AST for the IVAR object to be
746 // returned by the getter as it must conform to C++'s copy-return rules.
747 // FIXME. Eventually we want to do this for Objective-C as well.
748 ImplicitParamDecl *SelfDecl = getterMethod->getSelfDecl();
749 DeclRefExpr *SelfExpr =
John McCallf89e55a2010-11-18 06:31:45 +0000750 new (Context) DeclRefExpr(SelfDecl, SelfDecl->getType(),
751 VK_RValue, SourceLocation());
Fariborz Jahanian17cb3262010-05-05 21:52:17 +0000752 Expr *IvarRefExpr =
753 new (Context) ObjCIvarRefExpr(Ivar, Ivar->getType(), AtLoc,
754 SelfExpr, true, true);
John McCall60d7b3a2010-08-24 06:29:42 +0000755 ExprResult Res =
Fariborz Jahanian17cb3262010-05-05 21:52:17 +0000756 PerformCopyInitialization(InitializedEntity::InitializeResult(
Douglas Gregor3c9034c2010-05-15 00:13:29 +0000757 SourceLocation(),
758 getterMethod->getResultType(),
759 /*NRVO=*/false),
Fariborz Jahanian17cb3262010-05-05 21:52:17 +0000760 SourceLocation(),
761 Owned(IvarRefExpr));
762 if (!Res.isInvalid()) {
763 Expr *ResExpr = Res.takeAs<Expr>();
764 if (ResExpr)
John McCall4765fa02010-12-06 08:20:24 +0000765 ResExpr = MaybeCreateExprWithCleanups(ResExpr);
Fariborz Jahanian17cb3262010-05-05 21:52:17 +0000766 PIDecl->setGetterCXXConstructor(ResExpr);
767 }
768 }
Fariborz Jahanian831fb962011-06-25 00:17:46 +0000769 if (property->hasAttr<NSReturnsNotRetainedAttr>() &&
770 !getterMethod->hasAttr<NSReturnsNotRetainedAttr>()) {
771 Diag(getterMethod->getLocation(),
772 diag::warn_property_getter_owning_mismatch);
773 Diag(property->getLocation(), diag::note_property_declare);
774 }
Fariborz Jahanian17cb3262010-05-05 21:52:17 +0000775 }
776 if (ObjCMethodDecl *setterMethod = property->getSetterMethodDecl()) {
777 setterMethod->createImplicitParams(Context, IDecl);
Fariborz Jahanian0313f442010-10-15 22:42:59 +0000778 if (getLangOptions().CPlusPlus && Synthesize
779 && Ivar->getType()->isRecordType()) {
Fariborz Jahanian17cb3262010-05-05 21:52:17 +0000780 // FIXME. Eventually we want to do this for Objective-C as well.
781 ImplicitParamDecl *SelfDecl = setterMethod->getSelfDecl();
782 DeclRefExpr *SelfExpr =
John McCallf89e55a2010-11-18 06:31:45 +0000783 new (Context) DeclRefExpr(SelfDecl, SelfDecl->getType(),
784 VK_RValue, SourceLocation());
Fariborz Jahanian17cb3262010-05-05 21:52:17 +0000785 Expr *lhs =
786 new (Context) ObjCIvarRefExpr(Ivar, Ivar->getType(), AtLoc,
787 SelfExpr, true, true);
788 ObjCMethodDecl::param_iterator P = setterMethod->param_begin();
789 ParmVarDecl *Param = (*P);
Fariborz Jahanian14086762011-03-28 23:47:18 +0000790 QualType T = Param->getType();
791 if (T->isReferenceType())
Fariborz Jahanian61750f22011-03-30 16:59:30 +0000792 T = T->getAs<ReferenceType>()->getPointeeType();
Fariborz Jahanian14086762011-03-28 23:47:18 +0000793 Expr *rhs = new (Context) DeclRefExpr(Param, T,
John McCallf89e55a2010-11-18 06:31:45 +0000794 VK_LValue, SourceLocation());
Fariborz Jahanianfa432392010-10-14 21:30:10 +0000795 ExprResult Res = BuildBinOp(S, lhs->getLocEnd(),
John McCall2de56d12010-08-25 11:45:40 +0000796 BO_Assign, lhs, rhs);
Fariborz Jahanian17cb3262010-05-05 21:52:17 +0000797 PIDecl->setSetterCXXAssignment(Res.takeAs<Expr>());
798 }
799 }
800
Ted Kremenek28685ab2010-03-12 00:46:40 +0000801 if (IC) {
802 if (Synthesize)
803 if (ObjCPropertyImplDecl *PPIDecl =
804 IC->FindPropertyImplIvarDecl(PropertyIvar)) {
805 Diag(PropertyLoc, diag::error_duplicate_ivar_use)
806 << PropertyId << PPIDecl->getPropertyDecl()->getIdentifier()
807 << PropertyIvar;
808 Diag(PPIDecl->getLocation(), diag::note_previous_use);
809 }
810
811 if (ObjCPropertyImplDecl *PPIDecl
812 = IC->FindPropertyImplDecl(PropertyId)) {
813 Diag(PropertyLoc, diag::error_property_implemented) << PropertyId;
814 Diag(PPIDecl->getLocation(), diag::note_previous_declaration);
John McCalld226f652010-08-21 09:40:31 +0000815 return 0;
Ted Kremenek28685ab2010-03-12 00:46:40 +0000816 }
817 IC->addPropertyImplementation(PIDecl);
Fariborz Jahaniane776f882011-01-03 18:08:02 +0000818 if (getLangOptions().ObjCDefaultSynthProperties &&
819 getLangOptions().ObjCNonFragileABI2) {
Fariborz Jahanianad51e742010-07-17 00:59:30 +0000820 // Diagnose if an ivar was lazily synthesdized due to a previous
821 // use and if 1) property is @dynamic or 2) property is synthesized
Fariborz Jahaniancdaa6a82010-08-24 18:48:05 +0000822 // but it requires an ivar of different name.
Fariborz Jahanian411c25c2011-01-20 23:34:25 +0000823 ObjCInterfaceDecl *ClassDeclared=0;
Fariborz Jahanianad51e742010-07-17 00:59:30 +0000824 ObjCIvarDecl *Ivar = 0;
825 if (!Synthesize)
826 Ivar = IDecl->lookupInstanceVariable(PropertyId, ClassDeclared);
827 else {
828 if (PropertyIvar && PropertyIvar != PropertyId)
829 Ivar = IDecl->lookupInstanceVariable(PropertyId, ClassDeclared);
830 }
Fariborz Jahaniancdaa6a82010-08-24 18:48:05 +0000831 // Issue diagnostics only if Ivar belongs to current class.
832 if (Ivar && Ivar->getSynthesize() &&
833 IC->getClassInterface() == ClassDeclared) {
Fariborz Jahanianad51e742010-07-17 00:59:30 +0000834 Diag(Ivar->getLocation(), diag::err_undeclared_var_use)
835 << PropertyId;
836 Ivar->setInvalidDecl();
837 }
838 }
Ted Kremenek28685ab2010-03-12 00:46:40 +0000839 } else {
840 if (Synthesize)
841 if (ObjCPropertyImplDecl *PPIDecl =
842 CatImplClass->FindPropertyImplIvarDecl(PropertyIvar)) {
843 Diag(PropertyLoc, diag::error_duplicate_ivar_use)
844 << PropertyId << PPIDecl->getPropertyDecl()->getIdentifier()
845 << PropertyIvar;
846 Diag(PPIDecl->getLocation(), diag::note_previous_use);
847 }
848
849 if (ObjCPropertyImplDecl *PPIDecl =
850 CatImplClass->FindPropertyImplDecl(PropertyId)) {
851 Diag(PropertyLoc, diag::error_property_implemented) << PropertyId;
852 Diag(PPIDecl->getLocation(), diag::note_previous_declaration);
John McCalld226f652010-08-21 09:40:31 +0000853 return 0;
Ted Kremenek28685ab2010-03-12 00:46:40 +0000854 }
855 CatImplClass->addPropertyImplementation(PIDecl);
856 }
857
John McCalld226f652010-08-21 09:40:31 +0000858 return PIDecl;
Ted Kremenek28685ab2010-03-12 00:46:40 +0000859}
860
861//===----------------------------------------------------------------------===//
862// Helper methods.
863//===----------------------------------------------------------------------===//
864
Ted Kremenek9d64c152010-03-12 00:38:38 +0000865/// DiagnosePropertyMismatch - Compares two properties for their
866/// attributes and types and warns on a variety of inconsistencies.
867///
868void
869Sema::DiagnosePropertyMismatch(ObjCPropertyDecl *Property,
870 ObjCPropertyDecl *SuperProperty,
871 const IdentifierInfo *inheritedName) {
872 ObjCPropertyDecl::PropertyAttributeKind CAttr =
873 Property->getPropertyAttributes();
874 ObjCPropertyDecl::PropertyAttributeKind SAttr =
875 SuperProperty->getPropertyAttributes();
876 if ((CAttr & ObjCPropertyDecl::OBJC_PR_readonly)
877 && (SAttr & ObjCPropertyDecl::OBJC_PR_readwrite))
878 Diag(Property->getLocation(), diag::warn_readonly_property)
879 << Property->getDeclName() << inheritedName;
880 if ((CAttr & ObjCPropertyDecl::OBJC_PR_copy)
881 != (SAttr & ObjCPropertyDecl::OBJC_PR_copy))
882 Diag(Property->getLocation(), diag::warn_property_attribute)
883 << Property->getDeclName() << "copy" << inheritedName;
John McCallf85e1932011-06-15 23:02:42 +0000884 else {
885 unsigned CAttrRetain =
886 (CAttr &
887 (ObjCPropertyDecl::OBJC_PR_retain | ObjCPropertyDecl::OBJC_PR_strong));
888 unsigned SAttrRetain =
889 (SAttr &
890 (ObjCPropertyDecl::OBJC_PR_retain | ObjCPropertyDecl::OBJC_PR_strong));
891 bool CStrong = (CAttrRetain != 0);
892 bool SStrong = (SAttrRetain != 0);
893 if (CStrong != SStrong)
894 Diag(Property->getLocation(), diag::warn_property_attribute)
895 << Property->getDeclName() << "retain (or strong)" << inheritedName;
896 }
Ted Kremenek9d64c152010-03-12 00:38:38 +0000897
898 if ((CAttr & ObjCPropertyDecl::OBJC_PR_nonatomic)
899 != (SAttr & ObjCPropertyDecl::OBJC_PR_nonatomic))
900 Diag(Property->getLocation(), diag::warn_property_attribute)
901 << Property->getDeclName() << "atomic" << inheritedName;
902 if (Property->getSetterName() != SuperProperty->getSetterName())
903 Diag(Property->getLocation(), diag::warn_property_attribute)
904 << Property->getDeclName() << "setter" << inheritedName;
905 if (Property->getGetterName() != SuperProperty->getGetterName())
906 Diag(Property->getLocation(), diag::warn_property_attribute)
907 << Property->getDeclName() << "getter" << inheritedName;
908
909 QualType LHSType =
910 Context.getCanonicalType(SuperProperty->getType());
911 QualType RHSType =
912 Context.getCanonicalType(Property->getType());
913
Fariborz Jahanianc286f382011-07-12 22:05:16 +0000914 if (!Context.propertyTypesAreCompatible(LHSType, RHSType)) {
Fariborz Jahanian8beb6a22011-07-13 17:55:01 +0000915 // Do cases not handled in above.
916 // FIXME. For future support of covariant property types, revisit this.
917 bool IncompatibleObjC = false;
918 QualType ConvertedType;
919 if (!isObjCPointerConversion(RHSType, LHSType,
920 ConvertedType, IncompatibleObjC) ||
921 IncompatibleObjC)
922 Diag(Property->getLocation(), diag::warn_property_types_are_incompatible)
923 << Property->getType() << SuperProperty->getType() << inheritedName;
Ted Kremenek9d64c152010-03-12 00:38:38 +0000924 }
925}
926
927bool Sema::DiagnosePropertyAccessorMismatch(ObjCPropertyDecl *property,
928 ObjCMethodDecl *GetterMethod,
929 SourceLocation Loc) {
930 if (GetterMethod &&
931 GetterMethod->getResultType() != property->getType()) {
932 AssignConvertType result = Incompatible;
John McCall1c23e912010-11-16 02:32:08 +0000933 if (property->getType()->isObjCObjectPointerType())
Douglas Gregorb608b982011-01-28 02:26:04 +0000934 result = CheckAssignmentConstraints(Loc, GetterMethod->getResultType(),
John McCall1c23e912010-11-16 02:32:08 +0000935 property->getType());
Ted Kremenek9d64c152010-03-12 00:38:38 +0000936 if (result != Compatible) {
937 Diag(Loc, diag::warn_accessor_property_type_mismatch)
938 << property->getDeclName()
939 << GetterMethod->getSelector();
940 Diag(GetterMethod->getLocation(), diag::note_declared_at);
941 return true;
942 }
943 }
944 return false;
945}
946
947/// ComparePropertiesInBaseAndSuper - This routine compares property
948/// declarations in base and its super class, if any, and issues
Chris Lattnerfc8f0e12011-04-15 05:22:18 +0000949/// diagnostics in a variety of inconsistent situations.
Ted Kremenek9d64c152010-03-12 00:38:38 +0000950///
951void Sema::ComparePropertiesInBaseAndSuper(ObjCInterfaceDecl *IDecl) {
952 ObjCInterfaceDecl *SDecl = IDecl->getSuperClass();
953 if (!SDecl)
954 return;
955 // FIXME: O(N^2)
956 for (ObjCInterfaceDecl::prop_iterator S = SDecl->prop_begin(),
957 E = SDecl->prop_end(); S != E; ++S) {
958 ObjCPropertyDecl *SuperPDecl = (*S);
959 // Does property in super class has declaration in current class?
960 for (ObjCInterfaceDecl::prop_iterator I = IDecl->prop_begin(),
961 E = IDecl->prop_end(); I != E; ++I) {
962 ObjCPropertyDecl *PDecl = (*I);
963 if (SuperPDecl->getIdentifier() == PDecl->getIdentifier())
964 DiagnosePropertyMismatch(PDecl, SuperPDecl,
965 SDecl->getIdentifier());
966 }
967 }
968}
969
970/// MatchOneProtocolPropertiesInClass - This routine goes thru the list
971/// of properties declared in a protocol and compares their attribute against
972/// the same property declared in the class or category.
973void
974Sema::MatchOneProtocolPropertiesInClass(Decl *CDecl,
975 ObjCProtocolDecl *PDecl) {
976 ObjCInterfaceDecl *IDecl = dyn_cast_or_null<ObjCInterfaceDecl>(CDecl);
977 if (!IDecl) {
978 // Category
979 ObjCCategoryDecl *CatDecl = static_cast<ObjCCategoryDecl*>(CDecl);
980 assert (CatDecl && "MatchOneProtocolPropertiesInClass");
981 if (!CatDecl->IsClassExtension())
982 for (ObjCProtocolDecl::prop_iterator P = PDecl->prop_begin(),
983 E = PDecl->prop_end(); P != E; ++P) {
984 ObjCPropertyDecl *Pr = (*P);
985 ObjCCategoryDecl::prop_iterator CP, CE;
986 // Is this property already in category's list of properties?
Ted Kremenek2d2f9362010-03-12 00:49:00 +0000987 for (CP = CatDecl->prop_begin(), CE = CatDecl->prop_end(); CP!=CE; ++CP)
Ted Kremenek9d64c152010-03-12 00:38:38 +0000988 if ((*CP)->getIdentifier() == Pr->getIdentifier())
989 break;
990 if (CP != CE)
991 // Property protocol already exist in class. Diagnose any mismatch.
992 DiagnosePropertyMismatch((*CP), Pr, PDecl->getIdentifier());
993 }
994 return;
995 }
996 for (ObjCProtocolDecl::prop_iterator P = PDecl->prop_begin(),
997 E = PDecl->prop_end(); P != E; ++P) {
998 ObjCPropertyDecl *Pr = (*P);
999 ObjCInterfaceDecl::prop_iterator CP, CE;
1000 // Is this property already in class's list of properties?
1001 for (CP = IDecl->prop_begin(), CE = IDecl->prop_end(); CP != CE; ++CP)
1002 if ((*CP)->getIdentifier() == Pr->getIdentifier())
1003 break;
1004 if (CP != CE)
1005 // Property protocol already exist in class. Diagnose any mismatch.
1006 DiagnosePropertyMismatch((*CP), Pr, PDecl->getIdentifier());
1007 }
1008}
1009
1010/// CompareProperties - This routine compares properties
1011/// declared in 'ClassOrProtocol' objects (which can be a class or an
1012/// inherited protocol with the list of properties for class/category 'CDecl'
1013///
John McCalld226f652010-08-21 09:40:31 +00001014void Sema::CompareProperties(Decl *CDecl, Decl *ClassOrProtocol) {
1015 Decl *ClassDecl = ClassOrProtocol;
Ted Kremenek9d64c152010-03-12 00:38:38 +00001016 ObjCInterfaceDecl *IDecl = dyn_cast_or_null<ObjCInterfaceDecl>(CDecl);
1017
1018 if (!IDecl) {
1019 // Category
1020 ObjCCategoryDecl *CatDecl = static_cast<ObjCCategoryDecl*>(CDecl);
1021 assert (CatDecl && "CompareProperties");
1022 if (ObjCCategoryDecl *MDecl = dyn_cast<ObjCCategoryDecl>(ClassDecl)) {
1023 for (ObjCCategoryDecl::protocol_iterator P = MDecl->protocol_begin(),
1024 E = MDecl->protocol_end(); P != E; ++P)
1025 // Match properties of category with those of protocol (*P)
1026 MatchOneProtocolPropertiesInClass(CatDecl, *P);
1027
1028 // Go thru the list of protocols for this category and recursively match
1029 // their properties with those in the category.
1030 for (ObjCCategoryDecl::protocol_iterator P = CatDecl->protocol_begin(),
1031 E = CatDecl->protocol_end(); P != E; ++P)
John McCalld226f652010-08-21 09:40:31 +00001032 CompareProperties(CatDecl, *P);
Ted Kremenek9d64c152010-03-12 00:38:38 +00001033 } else {
1034 ObjCProtocolDecl *MD = cast<ObjCProtocolDecl>(ClassDecl);
1035 for (ObjCProtocolDecl::protocol_iterator P = MD->protocol_begin(),
1036 E = MD->protocol_end(); P != E; ++P)
1037 MatchOneProtocolPropertiesInClass(CatDecl, *P);
1038 }
1039 return;
1040 }
1041
1042 if (ObjCInterfaceDecl *MDecl = dyn_cast<ObjCInterfaceDecl>(ClassDecl)) {
Ted Kremenek53b94412010-09-01 01:21:15 +00001043 for (ObjCInterfaceDecl::all_protocol_iterator
1044 P = MDecl->all_referenced_protocol_begin(),
1045 E = MDecl->all_referenced_protocol_end(); P != E; ++P)
Ted Kremenek9d64c152010-03-12 00:38:38 +00001046 // Match properties of class IDecl with those of protocol (*P).
1047 MatchOneProtocolPropertiesInClass(IDecl, *P);
1048
1049 // Go thru the list of protocols for this class and recursively match
1050 // their properties with those declared in the class.
Ted Kremenek53b94412010-09-01 01:21:15 +00001051 for (ObjCInterfaceDecl::all_protocol_iterator
1052 P = IDecl->all_referenced_protocol_begin(),
1053 E = IDecl->all_referenced_protocol_end(); P != E; ++P)
John McCalld226f652010-08-21 09:40:31 +00001054 CompareProperties(IDecl, *P);
Ted Kremenek9d64c152010-03-12 00:38:38 +00001055 } else {
1056 ObjCProtocolDecl *MD = cast<ObjCProtocolDecl>(ClassDecl);
1057 for (ObjCProtocolDecl::protocol_iterator P = MD->protocol_begin(),
1058 E = MD->protocol_end(); P != E; ++P)
1059 MatchOneProtocolPropertiesInClass(IDecl, *P);
1060 }
1061}
1062
1063/// isPropertyReadonly - Return true if property is readonly, by searching
1064/// for the property in the class and in its categories and implementations
1065///
1066bool Sema::isPropertyReadonly(ObjCPropertyDecl *PDecl,
1067 ObjCInterfaceDecl *IDecl) {
1068 // by far the most common case.
1069 if (!PDecl->isReadOnly())
1070 return false;
1071 // Even if property is ready only, if interface has a user defined setter,
1072 // it is not considered read only.
1073 if (IDecl->getInstanceMethod(PDecl->getSetterName()))
1074 return false;
1075
1076 // Main class has the property as 'readonly'. Must search
1077 // through the category list to see if the property's
1078 // attribute has been over-ridden to 'readwrite'.
1079 for (ObjCCategoryDecl *Category = IDecl->getCategoryList();
1080 Category; Category = Category->getNextClassCategory()) {
1081 // Even if property is ready only, if a category has a user defined setter,
1082 // it is not considered read only.
1083 if (Category->getInstanceMethod(PDecl->getSetterName()))
1084 return false;
1085 ObjCPropertyDecl *P =
1086 Category->FindPropertyDeclaration(PDecl->getIdentifier());
1087 if (P && !P->isReadOnly())
1088 return false;
1089 }
1090
1091 // Also, check for definition of a setter method in the implementation if
1092 // all else failed.
1093 if (ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(CurContext)) {
1094 if (ObjCImplementationDecl *IMD =
1095 dyn_cast<ObjCImplementationDecl>(OMD->getDeclContext())) {
1096 if (IMD->getInstanceMethod(PDecl->getSetterName()))
1097 return false;
1098 } else if (ObjCCategoryImplDecl *CIMD =
1099 dyn_cast<ObjCCategoryImplDecl>(OMD->getDeclContext())) {
1100 if (CIMD->getInstanceMethod(PDecl->getSetterName()))
1101 return false;
1102 }
1103 }
1104 // Lastly, look through the implementation (if one is in scope).
1105 if (ObjCImplementationDecl *ImpDecl = IDecl->getImplementation())
1106 if (ImpDecl->getInstanceMethod(PDecl->getSetterName()))
1107 return false;
1108 // If all fails, look at the super class.
1109 if (ObjCInterfaceDecl *SIDecl = IDecl->getSuperClass())
1110 return isPropertyReadonly(PDecl, SIDecl);
1111 return true;
1112}
1113
1114/// CollectImmediateProperties - This routine collects all properties in
1115/// the class and its conforming protocols; but not those it its super class.
1116void Sema::CollectImmediateProperties(ObjCContainerDecl *CDecl,
Fariborz Jahaniancfa6a272010-06-29 18:12:32 +00001117 llvm::DenseMap<IdentifierInfo *, ObjCPropertyDecl*>& PropMap,
1118 llvm::DenseMap<IdentifierInfo *, ObjCPropertyDecl*>& SuperPropMap) {
Ted Kremenek9d64c152010-03-12 00:38:38 +00001119 if (ObjCInterfaceDecl *IDecl = dyn_cast<ObjCInterfaceDecl>(CDecl)) {
1120 for (ObjCContainerDecl::prop_iterator P = IDecl->prop_begin(),
1121 E = IDecl->prop_end(); P != E; ++P) {
1122 ObjCPropertyDecl *Prop = (*P);
1123 PropMap[Prop->getIdentifier()] = Prop;
1124 }
1125 // scan through class's protocols.
Ted Kremenek53b94412010-09-01 01:21:15 +00001126 for (ObjCInterfaceDecl::all_protocol_iterator
1127 PI = IDecl->all_referenced_protocol_begin(),
1128 E = IDecl->all_referenced_protocol_end(); PI != E; ++PI)
Fariborz Jahaniancfa6a272010-06-29 18:12:32 +00001129 CollectImmediateProperties((*PI), PropMap, SuperPropMap);
Ted Kremenek9d64c152010-03-12 00:38:38 +00001130 }
1131 if (ObjCCategoryDecl *CATDecl = dyn_cast<ObjCCategoryDecl>(CDecl)) {
1132 if (!CATDecl->IsClassExtension())
1133 for (ObjCContainerDecl::prop_iterator P = CATDecl->prop_begin(),
1134 E = CATDecl->prop_end(); P != E; ++P) {
1135 ObjCPropertyDecl *Prop = (*P);
1136 PropMap[Prop->getIdentifier()] = Prop;
1137 }
1138 // scan through class's protocols.
Ted Kremenek53b94412010-09-01 01:21:15 +00001139 for (ObjCCategoryDecl::protocol_iterator PI = CATDecl->protocol_begin(),
Ted Kremenek9d64c152010-03-12 00:38:38 +00001140 E = CATDecl->protocol_end(); PI != E; ++PI)
Fariborz Jahaniancfa6a272010-06-29 18:12:32 +00001141 CollectImmediateProperties((*PI), PropMap, SuperPropMap);
Ted Kremenek9d64c152010-03-12 00:38:38 +00001142 }
1143 else if (ObjCProtocolDecl *PDecl = dyn_cast<ObjCProtocolDecl>(CDecl)) {
1144 for (ObjCProtocolDecl::prop_iterator P = PDecl->prop_begin(),
1145 E = PDecl->prop_end(); P != E; ++P) {
1146 ObjCPropertyDecl *Prop = (*P);
Fariborz Jahaniancfa6a272010-06-29 18:12:32 +00001147 ObjCPropertyDecl *PropertyFromSuper = SuperPropMap[Prop->getIdentifier()];
1148 // Exclude property for protocols which conform to class's super-class,
1149 // as super-class has to implement the property.
1150 if (!PropertyFromSuper || PropertyFromSuper != Prop) {
1151 ObjCPropertyDecl *&PropEntry = PropMap[Prop->getIdentifier()];
1152 if (!PropEntry)
1153 PropEntry = Prop;
1154 }
Ted Kremenek9d64c152010-03-12 00:38:38 +00001155 }
1156 // scan through protocol's protocols.
1157 for (ObjCProtocolDecl::protocol_iterator PI = PDecl->protocol_begin(),
1158 E = PDecl->protocol_end(); PI != E; ++PI)
Fariborz Jahaniancfa6a272010-06-29 18:12:32 +00001159 CollectImmediateProperties((*PI), PropMap, SuperPropMap);
Ted Kremenek9d64c152010-03-12 00:38:38 +00001160 }
1161}
1162
Fariborz Jahanian509d4772010-05-14 18:35:57 +00001163/// CollectClassPropertyImplementations - This routine collects list of
1164/// properties to be implemented in the class. This includes, class's
1165/// and its conforming protocols' properties.
1166static void CollectClassPropertyImplementations(ObjCContainerDecl *CDecl,
1167 llvm::DenseMap<IdentifierInfo *, ObjCPropertyDecl*>& PropMap) {
1168 if (ObjCInterfaceDecl *IDecl = dyn_cast<ObjCInterfaceDecl>(CDecl)) {
1169 for (ObjCContainerDecl::prop_iterator P = IDecl->prop_begin(),
1170 E = IDecl->prop_end(); P != E; ++P) {
1171 ObjCPropertyDecl *Prop = (*P);
1172 PropMap[Prop->getIdentifier()] = Prop;
1173 }
Ted Kremenek53b94412010-09-01 01:21:15 +00001174 for (ObjCInterfaceDecl::all_protocol_iterator
1175 PI = IDecl->all_referenced_protocol_begin(),
1176 E = IDecl->all_referenced_protocol_end(); PI != E; ++PI)
Fariborz Jahanian509d4772010-05-14 18:35:57 +00001177 CollectClassPropertyImplementations((*PI), PropMap);
1178 }
1179 else if (ObjCProtocolDecl *PDecl = dyn_cast<ObjCProtocolDecl>(CDecl)) {
1180 for (ObjCProtocolDecl::prop_iterator P = PDecl->prop_begin(),
1181 E = PDecl->prop_end(); P != E; ++P) {
1182 ObjCPropertyDecl *Prop = (*P);
1183 PropMap[Prop->getIdentifier()] = Prop;
1184 }
1185 // scan through protocol's protocols.
1186 for (ObjCProtocolDecl::protocol_iterator PI = PDecl->protocol_begin(),
1187 E = PDecl->protocol_end(); PI != E; ++PI)
1188 CollectClassPropertyImplementations((*PI), PropMap);
1189 }
1190}
1191
1192/// CollectSuperClassPropertyImplementations - This routine collects list of
1193/// properties to be implemented in super class(s) and also coming from their
1194/// conforming protocols.
1195static void CollectSuperClassPropertyImplementations(ObjCInterfaceDecl *CDecl,
1196 llvm::DenseMap<IdentifierInfo *, ObjCPropertyDecl*>& PropMap) {
1197 if (ObjCInterfaceDecl *SDecl = CDecl->getSuperClass()) {
1198 while (SDecl) {
1199 CollectClassPropertyImplementations(SDecl, PropMap);
1200 SDecl = SDecl->getSuperClass();
1201 }
1202 }
1203}
1204
Ted Kremenek9d64c152010-03-12 00:38:38 +00001205/// LookupPropertyDecl - Looks up a property in the current class and all
1206/// its protocols.
1207ObjCPropertyDecl *Sema::LookupPropertyDecl(const ObjCContainerDecl *CDecl,
1208 IdentifierInfo *II) {
1209 if (const ObjCInterfaceDecl *IDecl =
1210 dyn_cast<ObjCInterfaceDecl>(CDecl)) {
1211 for (ObjCContainerDecl::prop_iterator P = IDecl->prop_begin(),
1212 E = IDecl->prop_end(); P != E; ++P) {
1213 ObjCPropertyDecl *Prop = (*P);
1214 if (Prop->getIdentifier() == II)
1215 return Prop;
1216 }
1217 // scan through class's protocols.
Ted Kremenek53b94412010-09-01 01:21:15 +00001218 for (ObjCInterfaceDecl::all_protocol_iterator
1219 PI = IDecl->all_referenced_protocol_begin(),
1220 E = IDecl->all_referenced_protocol_end(); PI != E; ++PI) {
Ted Kremenek9d64c152010-03-12 00:38:38 +00001221 ObjCPropertyDecl *Prop = LookupPropertyDecl((*PI), II);
1222 if (Prop)
1223 return Prop;
1224 }
1225 }
1226 else if (const ObjCProtocolDecl *PDecl =
1227 dyn_cast<ObjCProtocolDecl>(CDecl)) {
1228 for (ObjCProtocolDecl::prop_iterator P = PDecl->prop_begin(),
1229 E = PDecl->prop_end(); P != E; ++P) {
1230 ObjCPropertyDecl *Prop = (*P);
1231 if (Prop->getIdentifier() == II)
1232 return Prop;
1233 }
1234 // scan through protocol's protocols.
1235 for (ObjCProtocolDecl::protocol_iterator PI = PDecl->protocol_begin(),
1236 E = PDecl->protocol_end(); PI != E; ++PI) {
1237 ObjCPropertyDecl *Prop = LookupPropertyDecl((*PI), II);
1238 if (Prop)
1239 return Prop;
1240 }
1241 }
1242 return 0;
1243}
1244
Fariborz Jahanian509d4772010-05-14 18:35:57 +00001245/// DefaultSynthesizeProperties - This routine default synthesizes all
1246/// properties which must be synthesized in class's @implementation.
1247void Sema::DefaultSynthesizeProperties (Scope *S, ObjCImplDecl* IMPDecl,
1248 ObjCInterfaceDecl *IDecl) {
1249
1250 llvm::DenseMap<IdentifierInfo *, ObjCPropertyDecl*> PropMap;
1251 CollectClassPropertyImplementations(IDecl, PropMap);
1252 if (PropMap.empty())
1253 return;
1254 llvm::DenseMap<IdentifierInfo *, ObjCPropertyDecl*> SuperPropMap;
1255 CollectSuperClassPropertyImplementations(IDecl, SuperPropMap);
1256
1257 for (llvm::DenseMap<IdentifierInfo *, ObjCPropertyDecl*>::iterator
1258 P = PropMap.begin(), E = PropMap.end(); P != E; ++P) {
1259 ObjCPropertyDecl *Prop = P->second;
1260 // If property to be implemented in the super class, ignore.
1261 if (SuperPropMap[Prop->getIdentifier()])
1262 continue;
1263 // Is there a matching propery synthesize/dynamic?
1264 if (Prop->isInvalidDecl() ||
1265 Prop->getPropertyImplementation() == ObjCPropertyDecl::Optional ||
1266 IMPDecl->FindPropertyImplIvarDecl(Prop->getIdentifier()))
1267 continue;
Fariborz Jahaniand3635b92010-07-14 18:11:52 +00001268 // Property may have been synthesized by user.
1269 if (IMPDecl->FindPropertyImplDecl(Prop->getIdentifier()))
1270 continue;
Fariborz Jahanian95f1b862010-08-25 00:31:58 +00001271 if (IMPDecl->getInstanceMethod(Prop->getGetterName())) {
1272 if (Prop->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_readonly)
1273 continue;
1274 if (IMPDecl->getInstanceMethod(Prop->getSetterName()))
1275 continue;
1276 }
Fariborz Jahaniand3635b92010-07-14 18:11:52 +00001277
Ted Kremenek2a6af6b2010-09-24 01:23:01 +00001278
1279 // We use invalid SourceLocations for the synthesized ivars since they
1280 // aren't really synthesized at a particular location; they just exist.
1281 // Saying that they are located at the @implementation isn't really going
1282 // to help users.
1283 ActOnPropertyImplDecl(S, SourceLocation(), SourceLocation(),
Fariborz Jahaniana28948f2011-08-22 15:54:49 +00001284 true,
Douglas Gregora4ffd852010-11-17 01:03:52 +00001285 Prop->getIdentifier(), Prop->getIdentifier(),
1286 SourceLocation());
Ted Kremenek2a6af6b2010-09-24 01:23:01 +00001287 }
Fariborz Jahanian509d4772010-05-14 18:35:57 +00001288}
Ted Kremenek9d64c152010-03-12 00:38:38 +00001289
Fariborz Jahanian17cb3262010-05-05 21:52:17 +00001290void Sema::DiagnoseUnimplementedProperties(Scope *S, ObjCImplDecl* IMPDecl,
Ted Kremenek9d64c152010-03-12 00:38:38 +00001291 ObjCContainerDecl *CDecl,
1292 const llvm::DenseSet<Selector>& InsMap) {
Fariborz Jahaniancfa6a272010-06-29 18:12:32 +00001293 llvm::DenseMap<IdentifierInfo *, ObjCPropertyDecl*> SuperPropMap;
1294 if (ObjCInterfaceDecl *IDecl = dyn_cast<ObjCInterfaceDecl>(CDecl))
1295 CollectSuperClassPropertyImplementations(IDecl, SuperPropMap);
1296
Ted Kremenek9d64c152010-03-12 00:38:38 +00001297 llvm::DenseMap<IdentifierInfo *, ObjCPropertyDecl*> PropMap;
Fariborz Jahaniancfa6a272010-06-29 18:12:32 +00001298 CollectImmediateProperties(CDecl, PropMap, SuperPropMap);
Ted Kremenek9d64c152010-03-12 00:38:38 +00001299 if (PropMap.empty())
1300 return;
1301
1302 llvm::DenseSet<ObjCPropertyDecl *> PropImplMap;
1303 for (ObjCImplDecl::propimpl_iterator
1304 I = IMPDecl->propimpl_begin(),
1305 EI = IMPDecl->propimpl_end(); I != EI; ++I)
1306 PropImplMap.insert((*I)->getPropertyDecl());
1307
1308 for (llvm::DenseMap<IdentifierInfo *, ObjCPropertyDecl*>::iterator
1309 P = PropMap.begin(), E = PropMap.end(); P != E; ++P) {
1310 ObjCPropertyDecl *Prop = P->second;
1311 // Is there a matching propery synthesize/dynamic?
1312 if (Prop->isInvalidDecl() ||
1313 Prop->getPropertyImplementation() == ObjCPropertyDecl::Optional ||
Fariborz Jahanian327126e2011-06-24 20:31:37 +00001314 PropImplMap.count(Prop) || Prop->hasAttr<UnavailableAttr>())
Ted Kremenek9d64c152010-03-12 00:38:38 +00001315 continue;
Ted Kremenek9d64c152010-03-12 00:38:38 +00001316 if (!InsMap.count(Prop->getGetterName())) {
1317 Diag(Prop->getLocation(),
1318 isa<ObjCCategoryDecl>(CDecl) ?
1319 diag::warn_setter_getter_impl_required_in_category :
1320 diag::warn_setter_getter_impl_required)
1321 << Prop->getDeclName() << Prop->getGetterName();
1322 Diag(IMPDecl->getLocation(),
1323 diag::note_property_impl_required);
1324 }
1325
1326 if (!Prop->isReadOnly() && !InsMap.count(Prop->getSetterName())) {
1327 Diag(Prop->getLocation(),
1328 isa<ObjCCategoryDecl>(CDecl) ?
1329 diag::warn_setter_getter_impl_required_in_category :
1330 diag::warn_setter_getter_impl_required)
1331 << Prop->getDeclName() << Prop->getSetterName();
1332 Diag(IMPDecl->getLocation(),
1333 diag::note_property_impl_required);
1334 }
1335 }
1336}
1337
1338void
1339Sema::AtomicPropertySetterGetterRules (ObjCImplDecl* IMPDecl,
1340 ObjCContainerDecl* IDecl) {
1341 // Rules apply in non-GC mode only
1342 if (getLangOptions().getGCMode() != LangOptions::NonGC)
1343 return;
1344 for (ObjCContainerDecl::prop_iterator I = IDecl->prop_begin(),
1345 E = IDecl->prop_end();
1346 I != E; ++I) {
1347 ObjCPropertyDecl *Property = (*I);
Argyrios Kyrtzidis94659e42011-01-31 21:34:11 +00001348 ObjCMethodDecl *GetterMethod = 0;
1349 ObjCMethodDecl *SetterMethod = 0;
1350 bool LookedUpGetterSetter = false;
1351
Ted Kremenek9d64c152010-03-12 00:38:38 +00001352 unsigned Attributes = Property->getPropertyAttributes();
Argyrios Kyrtzidis94659e42011-01-31 21:34:11 +00001353 unsigned AttributesAsWrittern = Property->getPropertyAttributesAsWritten();
1354
Fariborz Jahanian45937ae2011-06-11 00:45:12 +00001355 if (!(AttributesAsWrittern & ObjCPropertyDecl::OBJC_PR_atomic) &&
1356 !(AttributesAsWrittern & ObjCPropertyDecl::OBJC_PR_nonatomic)) {
Argyrios Kyrtzidis94659e42011-01-31 21:34:11 +00001357 GetterMethod = IMPDecl->getInstanceMethod(Property->getGetterName());
1358 SetterMethod = IMPDecl->getInstanceMethod(Property->getSetterName());
1359 LookedUpGetterSetter = true;
1360 if (GetterMethod) {
1361 Diag(GetterMethod->getLocation(),
1362 diag::warn_default_atomic_custom_getter_setter)
Argyrios Kyrtzidis293a45e2011-01-31 23:20:03 +00001363 << Property->getIdentifier() << 0;
Argyrios Kyrtzidis94659e42011-01-31 21:34:11 +00001364 Diag(Property->getLocation(), diag::note_property_declare);
1365 }
1366 if (SetterMethod) {
1367 Diag(SetterMethod->getLocation(),
1368 diag::warn_default_atomic_custom_getter_setter)
Argyrios Kyrtzidis293a45e2011-01-31 23:20:03 +00001369 << Property->getIdentifier() << 1;
Argyrios Kyrtzidis94659e42011-01-31 21:34:11 +00001370 Diag(Property->getLocation(), diag::note_property_declare);
1371 }
1372 }
1373
Ted Kremenek9d64c152010-03-12 00:38:38 +00001374 // We only care about readwrite atomic property.
1375 if ((Attributes & ObjCPropertyDecl::OBJC_PR_nonatomic) ||
1376 !(Attributes & ObjCPropertyDecl::OBJC_PR_readwrite))
1377 continue;
1378 if (const ObjCPropertyImplDecl *PIDecl
1379 = IMPDecl->FindPropertyImplDecl(Property->getIdentifier())) {
1380 if (PIDecl->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic)
1381 continue;
Argyrios Kyrtzidis94659e42011-01-31 21:34:11 +00001382 if (!LookedUpGetterSetter) {
1383 GetterMethod = IMPDecl->getInstanceMethod(Property->getGetterName());
1384 SetterMethod = IMPDecl->getInstanceMethod(Property->getSetterName());
1385 LookedUpGetterSetter = true;
1386 }
Ted Kremenek9d64c152010-03-12 00:38:38 +00001387 if ((GetterMethod && !SetterMethod) || (!GetterMethod && SetterMethod)) {
1388 SourceLocation MethodLoc =
1389 (GetterMethod ? GetterMethod->getLocation()
1390 : SetterMethod->getLocation());
1391 Diag(MethodLoc, diag::warn_atomic_property_rule)
1392 << Property->getIdentifier();
1393 Diag(Property->getLocation(), diag::note_property_declare);
1394 }
1395 }
1396 }
1397}
1398
John McCallf85e1932011-06-15 23:02:42 +00001399void Sema::DiagnoseOwningPropertyGetterSynthesis(const ObjCImplementationDecl *D) {
1400 if (getLangOptions().getGCMode() == LangOptions::GCOnly)
1401 return;
1402
1403 for (ObjCImplementationDecl::propimpl_iterator
1404 i = D->propimpl_begin(), e = D->propimpl_end(); i != e; ++i) {
1405 ObjCPropertyImplDecl *PID = *i;
1406 if (PID->getPropertyImplementation() != ObjCPropertyImplDecl::Synthesize)
1407 continue;
1408
1409 const ObjCPropertyDecl *PD = PID->getPropertyDecl();
Fariborz Jahanian831fb962011-06-25 00:17:46 +00001410 if (PD && !PD->hasAttr<NSReturnsNotRetainedAttr>() &&
1411 !D->getInstanceMethod(PD->getGetterName())) {
John McCallf85e1932011-06-15 23:02:42 +00001412 ObjCMethodDecl *method = PD->getGetterMethodDecl();
1413 if (!method)
1414 continue;
1415 ObjCMethodFamily family = method->getMethodFamily();
1416 if (family == OMF_alloc || family == OMF_copy ||
1417 family == OMF_mutableCopy || family == OMF_new) {
1418 if (getLangOptions().ObjCAutoRefCount)
1419 Diag(PID->getLocation(), diag::err_ownin_getter_rule);
1420 else
1421 Diag(PID->getLocation(), diag::warn_ownin_getter_rule);
1422 Diag(PD->getLocation(), diag::note_property_declare);
1423 }
1424 }
1425 }
1426}
1427
John McCall5de74d12010-11-10 07:01:40 +00001428/// AddPropertyAttrs - Propagates attributes from a property to the
1429/// implicitly-declared getter or setter for that property.
1430static void AddPropertyAttrs(Sema &S, ObjCMethodDecl *PropertyMethod,
1431 ObjCPropertyDecl *Property) {
1432 // Should we just clone all attributes over?
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001433 for (Decl::attr_iterator A = Property->attr_begin(),
1434 AEnd = Property->attr_end();
1435 A != AEnd; ++A) {
1436 if (isa<DeprecatedAttr>(*A) ||
1437 isa<UnavailableAttr>(*A) ||
1438 isa<AvailabilityAttr>(*A))
1439 PropertyMethod->addAttr((*A)->clone(S.Context));
1440 }
John McCall5de74d12010-11-10 07:01:40 +00001441}
1442
Ted Kremenek9d64c152010-03-12 00:38:38 +00001443/// ProcessPropertyDecl - Make sure that any user-defined setter/getter methods
1444/// have the property type and issue diagnostics if they don't.
1445/// Also synthesize a getter/setter method if none exist (and update the
1446/// appropriate lookup tables. FIXME: Should reconsider if adding synthesized
1447/// methods is the "right" thing to do.
1448void Sema::ProcessPropertyDecl(ObjCPropertyDecl *property,
Ted Kremenek8254aa62010-09-21 18:28:43 +00001449 ObjCContainerDecl *CD,
1450 ObjCPropertyDecl *redeclaredProperty,
1451 ObjCContainerDecl *lexicalDC) {
1452
Ted Kremenek9d64c152010-03-12 00:38:38 +00001453 ObjCMethodDecl *GetterMethod, *SetterMethod;
1454
1455 GetterMethod = CD->getInstanceMethod(property->getGetterName());
1456 SetterMethod = CD->getInstanceMethod(property->getSetterName());
1457 DiagnosePropertyAccessorMismatch(property, GetterMethod,
1458 property->getLocation());
1459
1460 if (SetterMethod) {
1461 ObjCPropertyDecl::PropertyAttributeKind CAttr =
1462 property->getPropertyAttributes();
1463 if ((!(CAttr & ObjCPropertyDecl::OBJC_PR_readonly)) &&
1464 Context.getCanonicalType(SetterMethod->getResultType()) !=
1465 Context.VoidTy)
1466 Diag(SetterMethod->getLocation(), diag::err_setter_type_void);
1467 if (SetterMethod->param_size() != 1 ||
1468 ((*SetterMethod->param_begin())->getType() != property->getType())) {
1469 Diag(property->getLocation(),
1470 diag::warn_accessor_property_type_mismatch)
1471 << property->getDeclName()
1472 << SetterMethod->getSelector();
1473 Diag(SetterMethod->getLocation(), diag::note_declared_at);
1474 }
1475 }
1476
1477 // Synthesize getter/setter methods if none exist.
1478 // Find the default getter and if one not found, add one.
1479 // FIXME: The synthesized property we set here is misleading. We almost always
1480 // synthesize these methods unless the user explicitly provided prototypes
1481 // (which is odd, but allowed). Sema should be typechecking that the
1482 // declarations jive in that situation (which it is not currently).
1483 if (!GetterMethod) {
1484 // No instance method of same name as property getter name was found.
1485 // Declare a getter method and add it to the list of methods
1486 // for this class.
Ted Kremeneka054fb42010-09-21 20:52:59 +00001487 SourceLocation Loc = redeclaredProperty ?
1488 redeclaredProperty->getLocation() :
1489 property->getLocation();
1490
1491 GetterMethod = ObjCMethodDecl::Create(Context, Loc, Loc,
1492 property->getGetterName(),
Argyrios Kyrtzidis75cf3e82011-08-17 19:25:08 +00001493 property->getType(), 0, CD, /*isInstance=*/true,
1494 /*isVariadic=*/false, /*isSynthesized=*/true,
1495 /*isImplicitlyDeclared=*/true, /*isDefined=*/false,
Ted Kremenek9d64c152010-03-12 00:38:38 +00001496 (property->getPropertyImplementation() ==
1497 ObjCPropertyDecl::Optional) ?
1498 ObjCMethodDecl::Optional :
1499 ObjCMethodDecl::Required);
1500 CD->addDecl(GetterMethod);
John McCall5de74d12010-11-10 07:01:40 +00001501
1502 AddPropertyAttrs(*this, GetterMethod, property);
1503
Ted Kremenek23173d72010-05-18 21:09:07 +00001504 // FIXME: Eventually this shouldn't be needed, as the lexical context
1505 // and the real context should be the same.
Ted Kremeneka054fb42010-09-21 20:52:59 +00001506 if (lexicalDC)
Ted Kremenek23173d72010-05-18 21:09:07 +00001507 GetterMethod->setLexicalDeclContext(lexicalDC);
Fariborz Jahanian831fb962011-06-25 00:17:46 +00001508 if (property->hasAttr<NSReturnsNotRetainedAttr>())
1509 GetterMethod->addAttr(
1510 ::new (Context) NSReturnsNotRetainedAttr(Loc, Context));
Ted Kremenek9d64c152010-03-12 00:38:38 +00001511 } else
1512 // A user declared getter will be synthesize when @synthesize of
1513 // the property with the same name is seen in the @implementation
1514 GetterMethod->setSynthesized(true);
1515 property->setGetterMethodDecl(GetterMethod);
1516
1517 // Skip setter if property is read-only.
1518 if (!property->isReadOnly()) {
1519 // Find the default setter and if one not found, add one.
1520 if (!SetterMethod) {
1521 // No instance method of same name as property setter name was found.
1522 // Declare a setter method and add it to the list of methods
1523 // for this class.
Ted Kremenek8254aa62010-09-21 18:28:43 +00001524 SourceLocation Loc = redeclaredProperty ?
1525 redeclaredProperty->getLocation() :
1526 property->getLocation();
1527
1528 SetterMethod =
1529 ObjCMethodDecl::Create(Context, Loc, Loc,
1530 property->getSetterName(), Context.VoidTy, 0,
Argyrios Kyrtzidis75cf3e82011-08-17 19:25:08 +00001531 CD, /*isInstance=*/true, /*isVariadic=*/false,
1532 /*isSynthesized=*/true,
1533 /*isImplicitlyDeclared=*/true,
1534 /*isDefined=*/false,
Ted Kremenek9d64c152010-03-12 00:38:38 +00001535 (property->getPropertyImplementation() ==
1536 ObjCPropertyDecl::Optional) ?
Ted Kremenek8254aa62010-09-21 18:28:43 +00001537 ObjCMethodDecl::Optional :
1538 ObjCMethodDecl::Required);
1539
Ted Kremenek9d64c152010-03-12 00:38:38 +00001540 // Invent the arguments for the setter. We don't bother making a
1541 // nice name for the argument.
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001542 ParmVarDecl *Argument = ParmVarDecl::Create(Context, SetterMethod,
1543 Loc, Loc,
Ted Kremenek9d64c152010-03-12 00:38:38 +00001544 property->getIdentifier(),
John McCallf85e1932011-06-15 23:02:42 +00001545 property->getType().getUnqualifiedType(),
Ted Kremenek9d64c152010-03-12 00:38:38 +00001546 /*TInfo=*/0,
John McCalld931b082010-08-26 03:08:43 +00001547 SC_None,
1548 SC_None,
Ted Kremenek9d64c152010-03-12 00:38:38 +00001549 0);
Fariborz Jahanian4ecb25f2010-04-09 15:40:42 +00001550 SetterMethod->setMethodParams(Context, &Argument, 1, 1);
John McCall5de74d12010-11-10 07:01:40 +00001551
1552 AddPropertyAttrs(*this, SetterMethod, property);
1553
Ted Kremenek9d64c152010-03-12 00:38:38 +00001554 CD->addDecl(SetterMethod);
Ted Kremenek23173d72010-05-18 21:09:07 +00001555 // FIXME: Eventually this shouldn't be needed, as the lexical context
1556 // and the real context should be the same.
Ted Kremenek8254aa62010-09-21 18:28:43 +00001557 if (lexicalDC)
Ted Kremenek23173d72010-05-18 21:09:07 +00001558 SetterMethod->setLexicalDeclContext(lexicalDC);
Ted Kremenek9d64c152010-03-12 00:38:38 +00001559 } else
1560 // A user declared setter will be synthesize when @synthesize of
1561 // the property with the same name is seen in the @implementation
1562 SetterMethod->setSynthesized(true);
1563 property->setSetterMethodDecl(SetterMethod);
1564 }
1565 // Add any synthesized methods to the global pool. This allows us to
1566 // handle the following, which is supported by GCC (and part of the design).
1567 //
1568 // @interface Foo
1569 // @property double bar;
1570 // @end
1571 //
1572 // void thisIsUnfortunate() {
1573 // id foo;
1574 // double bar = [foo bar];
1575 // }
1576 //
1577 if (GetterMethod)
1578 AddInstanceMethodToGlobalPool(GetterMethod);
1579 if (SetterMethod)
1580 AddInstanceMethodToGlobalPool(SetterMethod);
1581}
1582
John McCalld226f652010-08-21 09:40:31 +00001583void Sema::CheckObjCPropertyAttributes(Decl *PDecl,
Ted Kremenek9d64c152010-03-12 00:38:38 +00001584 SourceLocation Loc,
1585 unsigned &Attributes) {
1586 // FIXME: Improve the reported location.
John McCallf85e1932011-06-15 23:02:42 +00001587 if (!PDecl || PDecl->isInvalidDecl())
Ted Kremenek5fcd52a2010-04-05 22:39:42 +00001588 return;
1589
1590 ObjCPropertyDecl *PropertyDecl = cast<ObjCPropertyDecl>(PDecl);
Fariborz Jahanian842f07b2010-03-30 22:40:11 +00001591 QualType PropertyTy = PropertyDecl->getType();
Ted Kremenek9d64c152010-03-12 00:38:38 +00001592
1593 // readonly and readwrite/assign/retain/copy conflict.
1594 if ((Attributes & ObjCDeclSpec::DQ_PR_readonly) &&
1595 (Attributes & (ObjCDeclSpec::DQ_PR_readwrite |
1596 ObjCDeclSpec::DQ_PR_assign |
John McCallf85e1932011-06-15 23:02:42 +00001597 ObjCDeclSpec::DQ_PR_unsafe_unretained |
Ted Kremenek9d64c152010-03-12 00:38:38 +00001598 ObjCDeclSpec::DQ_PR_copy |
John McCallf85e1932011-06-15 23:02:42 +00001599 ObjCDeclSpec::DQ_PR_retain |
1600 ObjCDeclSpec::DQ_PR_strong))) {
Ted Kremenek9d64c152010-03-12 00:38:38 +00001601 const char * which = (Attributes & ObjCDeclSpec::DQ_PR_readwrite) ?
1602 "readwrite" :
1603 (Attributes & ObjCDeclSpec::DQ_PR_assign) ?
1604 "assign" :
John McCallf85e1932011-06-15 23:02:42 +00001605 (Attributes & ObjCDeclSpec::DQ_PR_unsafe_unretained) ?
1606 "unsafe_unretained" :
Ted Kremenek9d64c152010-03-12 00:38:38 +00001607 (Attributes & ObjCDeclSpec::DQ_PR_copy) ?
1608 "copy" : "retain";
1609
1610 Diag(Loc, (Attributes & (ObjCDeclSpec::DQ_PR_readwrite)) ?
1611 diag::err_objc_property_attr_mutually_exclusive :
1612 diag::warn_objc_property_attr_mutually_exclusive)
1613 << "readonly" << which;
1614 }
1615
1616 // Check for copy or retain on non-object types.
John McCallf85e1932011-06-15 23:02:42 +00001617 if ((Attributes & (ObjCDeclSpec::DQ_PR_weak | ObjCDeclSpec::DQ_PR_copy |
1618 ObjCDeclSpec::DQ_PR_retain | ObjCDeclSpec::DQ_PR_strong)) &&
1619 !PropertyTy->isObjCRetainableType() &&
Fariborz Jahanian842f07b2010-03-30 22:40:11 +00001620 !PropertyDecl->getAttr<ObjCNSObjectAttr>()) {
Ted Kremenek9d64c152010-03-12 00:38:38 +00001621 Diag(Loc, diag::err_objc_property_requires_object)
John McCallf85e1932011-06-15 23:02:42 +00001622 << (Attributes & ObjCDeclSpec::DQ_PR_weak ? "weak" :
1623 Attributes & ObjCDeclSpec::DQ_PR_copy ? "copy" : "retain (or strong)");
1624 Attributes &= ~(ObjCDeclSpec::DQ_PR_weak | ObjCDeclSpec::DQ_PR_copy |
1625 ObjCDeclSpec::DQ_PR_retain | ObjCDeclSpec::DQ_PR_strong);
Ted Kremenek9d64c152010-03-12 00:38:38 +00001626 }
1627
1628 // Check for more than one of { assign, copy, retain }.
1629 if (Attributes & ObjCDeclSpec::DQ_PR_assign) {
1630 if (Attributes & ObjCDeclSpec::DQ_PR_copy) {
1631 Diag(Loc, diag::err_objc_property_attr_mutually_exclusive)
1632 << "assign" << "copy";
1633 Attributes &= ~ObjCDeclSpec::DQ_PR_copy;
1634 }
1635 if (Attributes & ObjCDeclSpec::DQ_PR_retain) {
1636 Diag(Loc, diag::err_objc_property_attr_mutually_exclusive)
1637 << "assign" << "retain";
1638 Attributes &= ~ObjCDeclSpec::DQ_PR_retain;
1639 }
John McCallf85e1932011-06-15 23:02:42 +00001640 if (Attributes & ObjCDeclSpec::DQ_PR_strong) {
1641 Diag(Loc, diag::err_objc_property_attr_mutually_exclusive)
1642 << "assign" << "strong";
1643 Attributes &= ~ObjCDeclSpec::DQ_PR_strong;
1644 }
1645 if (getLangOptions().ObjCAutoRefCount &&
1646 (Attributes & ObjCDeclSpec::DQ_PR_weak)) {
1647 Diag(Loc, diag::err_objc_property_attr_mutually_exclusive)
1648 << "assign" << "weak";
1649 Attributes &= ~ObjCDeclSpec::DQ_PR_weak;
1650 }
1651 } else if (Attributes & ObjCDeclSpec::DQ_PR_unsafe_unretained) {
1652 if (Attributes & ObjCDeclSpec::DQ_PR_copy) {
1653 Diag(Loc, diag::err_objc_property_attr_mutually_exclusive)
1654 << "unsafe_unretained" << "copy";
1655 Attributes &= ~ObjCDeclSpec::DQ_PR_copy;
1656 }
1657 if (Attributes & ObjCDeclSpec::DQ_PR_retain) {
1658 Diag(Loc, diag::err_objc_property_attr_mutually_exclusive)
1659 << "unsafe_unretained" << "retain";
1660 Attributes &= ~ObjCDeclSpec::DQ_PR_retain;
1661 }
1662 if (Attributes & ObjCDeclSpec::DQ_PR_strong) {
1663 Diag(Loc, diag::err_objc_property_attr_mutually_exclusive)
1664 << "unsafe_unretained" << "strong";
1665 Attributes &= ~ObjCDeclSpec::DQ_PR_strong;
1666 }
1667 if (getLangOptions().ObjCAutoRefCount &&
1668 (Attributes & ObjCDeclSpec::DQ_PR_weak)) {
1669 Diag(Loc, diag::err_objc_property_attr_mutually_exclusive)
1670 << "unsafe_unretained" << "weak";
1671 Attributes &= ~ObjCDeclSpec::DQ_PR_weak;
1672 }
Ted Kremenek9d64c152010-03-12 00:38:38 +00001673 } else if (Attributes & ObjCDeclSpec::DQ_PR_copy) {
1674 if (Attributes & ObjCDeclSpec::DQ_PR_retain) {
1675 Diag(Loc, diag::err_objc_property_attr_mutually_exclusive)
1676 << "copy" << "retain";
1677 Attributes &= ~ObjCDeclSpec::DQ_PR_retain;
1678 }
John McCallf85e1932011-06-15 23:02:42 +00001679 if (Attributes & ObjCDeclSpec::DQ_PR_strong) {
1680 Diag(Loc, diag::err_objc_property_attr_mutually_exclusive)
1681 << "copy" << "strong";
1682 Attributes &= ~ObjCDeclSpec::DQ_PR_strong;
1683 }
1684 if (Attributes & ObjCDeclSpec::DQ_PR_weak) {
1685 Diag(Loc, diag::err_objc_property_attr_mutually_exclusive)
1686 << "copy" << "weak";
1687 Attributes &= ~ObjCDeclSpec::DQ_PR_weak;
1688 }
1689 }
1690 else if ((Attributes & ObjCDeclSpec::DQ_PR_retain) &&
1691 (Attributes & ObjCDeclSpec::DQ_PR_weak)) {
1692 Diag(Loc, diag::err_objc_property_attr_mutually_exclusive)
1693 << "retain" << "weak";
1694 Attributes &= ~ObjCDeclSpec::DQ_PR_weak;
1695 }
1696 else if ((Attributes & ObjCDeclSpec::DQ_PR_strong) &&
1697 (Attributes & ObjCDeclSpec::DQ_PR_weak)) {
1698 Diag(Loc, diag::err_objc_property_attr_mutually_exclusive)
1699 << "strong" << "weak";
1700 Attributes &= ~ObjCDeclSpec::DQ_PR_weak;
Ted Kremenek9d64c152010-03-12 00:38:38 +00001701 }
1702
1703 // Warn if user supplied no assignment attribute, property is
1704 // readwrite, and this is an object type.
1705 if (!(Attributes & (ObjCDeclSpec::DQ_PR_assign | ObjCDeclSpec::DQ_PR_copy |
John McCallf85e1932011-06-15 23:02:42 +00001706 ObjCDeclSpec::DQ_PR_unsafe_unretained |
1707 ObjCDeclSpec::DQ_PR_retain | ObjCDeclSpec::DQ_PR_strong |
1708 ObjCDeclSpec::DQ_PR_weak)) &&
Ted Kremenek9d64c152010-03-12 00:38:38 +00001709 !(Attributes & ObjCDeclSpec::DQ_PR_readonly) &&
1710 PropertyTy->isObjCObjectPointerType()) {
Fariborz Jahanianbc03aea2011-08-19 19:28:44 +00001711 if (getLangOptions().ObjCAutoRefCount)
1712 // With arc, @property definitions should default to (strong) when
1713 // not specified
1714 PropertyDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_strong);
1715 else {
1716 // Skip this warning in gc-only mode.
1717 if (getLangOptions().getGCMode() != LangOptions::GCOnly)
1718 Diag(Loc, diag::warn_objc_property_no_assignment_attribute);
Ted Kremenek9d64c152010-03-12 00:38:38 +00001719
Fariborz Jahanianbc03aea2011-08-19 19:28:44 +00001720 // If non-gc code warn that this is likely inappropriate.
1721 if (getLangOptions().getGCMode() == LangOptions::NonGC)
1722 Diag(Loc, diag::warn_objc_property_default_assign_on_object);
1723 }
Ted Kremenek9d64c152010-03-12 00:38:38 +00001724
1725 // FIXME: Implement warning dependent on NSCopying being
1726 // implemented. See also:
1727 // <rdar://5168496&4855821&5607453&5096644&4947311&5698469&4947014&5168496>
1728 // (please trim this list while you are at it).
1729 }
1730
1731 if (!(Attributes & ObjCDeclSpec::DQ_PR_copy)
Fariborz Jahanian2b77cb82011-01-05 23:00:04 +00001732 &&!(Attributes & ObjCDeclSpec::DQ_PR_readonly)
Ted Kremenek9d64c152010-03-12 00:38:38 +00001733 && getLangOptions().getGCMode() == LangOptions::GCOnly
1734 && PropertyTy->isBlockPointerType())
1735 Diag(Loc, diag::warn_objc_property_copy_missing_on_block);
1736}