]> granicus.if.org Git - clang/commitdiff
objective-c: Any use of @synthesize or @dynamic lexically after a method (or C functi...
authorFariborz Jahanian <fjahanian@apple.com>
Fri, 22 Jul 2011 01:06:53 +0000 (01:06 +0000)
committerFariborz Jahanian <fjahanian@apple.com>
Fri, 22 Jul 2011 01:06:53 +0000 (01:06 +0000)
will be rejected with a compilation error in ARC mode, and a compiler warning otherwise.
This may cause breakage in non-arc (and arc) tests which don't expect warning/error. Feel free
to fix the tests, or reverse the patch, if I am unavailable. // rdar://9818354 - WIP

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@135740 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Basic/DiagnosticSemaKinds.td
lib/Sema/SemaObjCProperty.cpp
test/ARCMT/remove-dealloc-zerouts.m
test/ARCMT/remove-dealloc-zerouts.m.result
test/SemaObjC/arc.m
test/SemaObjC/atomoic-property-synnthesis-rules.m
test/SemaObjC/conflict-nonfragile-abi2.m
test/SemaObjC/default-synthesize.m
test/SemaObjC/property-ns-returns-not-retained-attr.m
test/SemaObjC/provisional-ivar-lookup.m
test/SemaObjC/synth-provisional-ivars.m

index 0987494ea38ea9dff7c1399febafb29c3ffa59b8..ec02e464151f1d83d2a4179f6eef2aaf1a41e6ba 100644 (file)
@@ -464,6 +464,10 @@ def err_continuation_class : Error<"continuation class has no primary class">;
 def err_property_type : Error<"property cannot have array or function type %0">;
 def error_missing_property_context : Error<
   "missing context for property implementation declaration">;
+def error_property_after_method_impl : Error<
+  "property implementation declaration after method or function definition">;
+def warn_property_after_method_impl : Warning<
+  "property implementation declaration after method or function definition">;
 def error_bad_property_decl : Error<
   "property implementation must have its declaration in interface %0">;
 def error_category_property : Error<
index d826ea8d84a41ef90ac62517f51b154c5ad36964..53de50c16cfadaf9736a11ea295e7f5c7c5729d2 100644 (file)
@@ -555,6 +555,14 @@ Decl *Sema::ActOnPropertyImplDecl(Scope *S,
         return 0;
       }
     }
+    if ((IC->meth_begin() != IC->meth_end()) && AtLoc.isValid()) {
+      if (getLangOptions().ObjCAutoRefCount)
+        Diag(AtLoc, diag::error_property_after_method_impl);
+      else
+        Diag(AtLoc, diag::warn_property_after_method_impl);
+      ObjCMethodDecl *method = *(IC->meth_begin());
+      Diag(method->getLocation(), diag::note_method_declared_at);
+    }
   } else if ((CatImplClass = dyn_cast<ObjCCategoryImplDecl>(ClassImpDecl))) {
     if (Synthesize) {
       Diag(AtLoc, diag::error_synthesize_category_decl);
index 3ba85f1edcab4cf3d88f9cb005e6fef196ae3670..40e99206ffe117b64eb643d36ddd7218297e824e 100644 (file)
 @end
 
 @implementation Bar
+@synthesize a;
 - (void) dealloc {
   [self setA:0];  // This is user-defined setter overriding synthesize, don't touch it.
   self.a.x = 0;  // every dealloc must zero out its own ivar. This patter is not recognized.
 }
-@synthesize a;
 - (void) setA:(Foo*) val { }
 - (id) a {return 0;}
 @end
index dc6ffd311490dfa0cafe65be81714331fbfa3cfa..0487fdcd2e4d0c191d623317d54fe20b7a12f57b 100644 (file)
 @end
 
 @implementation Bar
+@synthesize a;
 - (void) dealloc {
   [self setA:0];  // This is user-defined setter overriding synthesize, don't touch it.
   self.a.x = 0;  // every dealloc must zero out its own ivar. This patter is not recognized.
 }
-@synthesize a;
 - (void) setA:(Foo*) val { }
 - (id) a {return 0;}
 @end
index 3d190e5c53a011e6c169489dac2dba2a2e6571fd..669a92798d47d7984b07539aeeb8ab7b22f5776a 100644 (file)
@@ -598,9 +598,9 @@ int Test33(id someid) {
 @synthesize newName;
 
 @synthesize newName1;
-- (id) newName1 { return 0; }
+- (id) newName1 { return 0; } // expected-note {{method declared here}}
 
-@synthesize newName2;
+@synthesize newName2; // expected-error {{property implementation declaration after method or function definition}}
 @end
 
 void test35(void) {
index af790e3159ada6fa39db3739c9765259105b29ed..80c693d12f31010aa49004fa46c738da16a3ca97 100644 (file)
@@ -1,4 +1,5 @@
 // RUN: %clang_cc1  -fsyntax-only -verify %s
+// XFAIL: *
 
 /*
   Conditions for warning:
index 5d6b2810fc10505999637a12f59d12a11fb0bb47..a5051304ebcf57c9467164a2266c85f98d855b6b 100644 (file)
@@ -15,8 +15,13 @@ int glob;
 // rdar://9027673
 // Warning on future name lookup rule is removed.
 @implementation I
-- (int) Meth { return glob; } // no warning
 @synthesize glob;
+@dynamic p;
+@dynamic le;
+@dynamic l;
+@dynamic ls;
+@dynamic r;
+- (int) Meth { return glob; } // no warning
 // rdar://8248681
 - (int) Meth1: (int) p {
   extern int le;
@@ -26,11 +31,6 @@ int glob;
   p = le + ls + r;
   return l;
 }
-@dynamic p;
-@dynamic le;
-@dynamic l;
-@dynamic ls;
-@dynamic r;
 @end
 
 
index 33e3bd6f346458a3295052c4dd413ac1cc354d48..0f9b96aeaeaf087cdfa5e7390c7266ceb95d4658 100644 (file)
 @end
 
 @implementation D
-- (int) Meth { return self.PROP; }
 @synthesize PROP=IVAR;
+- (int) Meth { return self.PROP; }
 @end
 
index 187c93f3d3af81d9e2b8f6d3df21895fbf948491..4968f268ddfafd432df0934cbff88f535f0cd129 100644 (file)
@@ -15,7 +15,7 @@
 @synthesize newName;
 
 @synthesize newName1;
+@synthesize newName2;
 - (id) newName1 { return 0; }
 
-@synthesize newName2;
 @end
index 04d6a41930955448628d497841f273369f732b0a..df9092bf1eae32c0ceb651f593330d1d69d1d8b3 100644 (file)
@@ -15,7 +15,7 @@
 @synthesize foo = _foo;
 @synthesize foo1;
 
-- (void)setFoo:(int)value {
+- (void)setFoo:(int)value { // expected-note 3 {{method declared here}}
     _foo = foo; // expected-error {{use of undeclared identifier 'foo'}}
 }
 
     _foo = foo3;       // OK
 }
 
-@synthesize foo2 = _foo2;
-@synthesize foo3;
+@synthesize foo2 = _foo2; // expected-warning {{property implementation declaration after method or function definition}}
+@synthesize foo3; // expected-warning {{property implementation declaration after method or function definition}}
 
-@synthesize PROP=PROP;
+@synthesize PROP=PROP; // expected-warning {{property implementation declaration after method or function definition}}
 - (void)setPROP:(int)value {
     PROP = PROP;        // OK
 }
index e8179aaa00ddbfb1e9d6d9a7871036fe65a6b2a7..1d44a0bfd2bebaf5d34dd02a33d01d5691125261 100644 (file)
@@ -18,22 +18,23 @@ int bar;
 @end
 
 @implementation I
-- (int) Meth { return PROP; } // expected-note 2{{'PROP' declared here}}
+- (int) Meth { return PROP; } // expected-note 2{{'PROP' declared here}} \
+                              // expected-note 5{{method declared here}}
 
-@dynamic PROP1;
+@dynamic PROP1; // expected-warning {{property implementation declaration after method or function definition}}
 - (int) Meth1 { return PROP1; }  // expected-error {{use of undeclared identifier 'PROP1'}}
 
 - (int) Meth2 { return PROP2; }  // expected-error {{use of undeclared identifier 'PROP2'}}
-@dynamic PROP2;
+@dynamic PROP2; // expected-warning {{property implementation declaration after method or function definition}}
 
 - (int) Meth3 { return PROP3; }  // expected-error {{use of undeclared identifier 'PROP3'}}
-@synthesize PROP3=IVAR;
+@synthesize PROP3=IVAR; // expected-warning {{property implementation declaration after method or function definition}}
 
 - (int) Meth4 { return PROP4; }
-@synthesize PROP4=PROP4;
+@synthesize PROP4=PROP4; // expected-warning {{property implementation declaration after method or function definition}}
 
 - (int) Meth5 { return bar; }  // expected-error {{use of undeclared identifier 'bar'}}
-@synthesize bar = _bar;
+@synthesize bar = _bar; // expected-warning {{property implementation declaration after method or function definition}}
 
 - (int) Meth6 { return bar1; }