aboutsummaryrefslogtreecommitdiff
path: root/lib/Sema/SemaDeclObjC.cpp
diff options
context:
space:
mode:
authorFariborz Jahanian <fjahanian@apple.com>2012-08-30 23:56:02 +0000
committerFariborz Jahanian <fjahanian@apple.com>2012-08-30 23:56:02 +0000
commit918546c584c91ee917c919c967d7d73cecd295dc (patch)
treee031ca13ef343b151b0c7a5fa481f088a8ccabb4 /lib/Sema/SemaDeclObjC.cpp
parentfbcb3f11fc90e9f00e6074e9b118b8dc11ca604c (diff)
objective-C ARC: under -Wexplicit-ownership-type diagnose those
method parameter types which are reference to an objective-C pointer to object with no explicit ownership. // rdar://10907090 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@162959 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaDeclObjC.cpp')
-rw-r--r--lib/Sema/SemaDeclObjC.cpp26
1 files changed, 26 insertions, 0 deletions
diff --git a/lib/Sema/SemaDeclObjC.cpp b/lib/Sema/SemaDeclObjC.cpp
index 457cb1b975..f4d63faaaf 100644
--- a/lib/Sema/SemaDeclObjC.cpp
+++ b/lib/Sema/SemaDeclObjC.cpp
@@ -282,6 +282,26 @@ void Sema::AddAnyMethodToGlobalPool(Decl *D) {
AddFactoryMethodToGlobalPool(MDecl, true);
}
+/// StrongPointerToObjCPointer - returns true when pointer to ObjC pointer
+/// is __strong, or when it is any other type. It returns false when
+/// pointer to ObjC pointer is not __strong.
+static bool
+StrongPointerToObjCPointer(Sema &S, ParmVarDecl *Param) {
+ QualType T = Param->getType();
+ if (!T->isObjCIndirectLifetimeType())
+ return true;
+ if (!T->isPointerType() && !T->isReferenceType())
+ return true;
+ T = T->isPointerType()
+ ? T->getAs<PointerType>()->getPointeeType()
+ : T->getAs<ReferenceType>()->getPointeeType();
+ if (T->isObjCLifetimeType()) {
+ Qualifiers::ObjCLifetime lifetime = T.getObjCLifetime();
+ return lifetime == Qualifiers::OCL_Strong;
+ }
+ return true;
+}
+
/// ActOnStartOfObjCMethodDef - This routine sets up parameters; invisible
/// and user declared, in the method definition's AST.
void Sema::ActOnStartOfObjCMethodDef(Scope *FnBodyScope, Decl *D) {
@@ -313,6 +333,12 @@ void Sema::ActOnStartOfObjCMethodDef(Scope *FnBodyScope, Decl *D) {
RequireCompleteType(Param->getLocation(), Param->getType(),
diag::err_typecheck_decl_incomplete_type))
Param->setInvalidDecl();
+ if (!Param->isInvalidDecl() &&
+ getLangOpts().ObjCAutoRefCount &&
+ !StrongPointerToObjCPointer(*this, Param))
+ Diag(Param->getLocation(), diag::warn_arc_strong_pointer_objc_pointer) <<
+ Param->getType();
+
if ((*PI)->getIdentifier())
PushOnScopeChains(*PI, FnBodyScope);
}