From 53f867ac45ab2bd572d44dc96e476d8f398b2be0 Mon Sep 17 00:00:00 2001 From: Fariborz Jahanian Date: Thu, 26 Jun 2014 21:22:16 +0000 Subject: [PATCH] Objective-C ARC. Provide diagnostic and fix-it when casting a retainable object to a objc_bridge_related CF type with the suggestion of applying the method specified in the bridging attribute to the object. // rdar://15932435 llvm-svn: 211807 --- clang/include/clang/Sema/Sema.h | 2 ++ clang/lib/Sema/SemaExpr.cpp | 4 ++- clang/lib/Sema/SemaExprObjC.cpp | 23 +++++++++++++++ clang/test/FixIt/fixit-objc-bridge-related.m | 43 ++++++++++++++++++++++++++++ 4 files changed, 71 insertions(+), 1 deletion(-) create mode 100644 clang/test/FixIt/fixit-objc-bridge-related.m diff --git a/clang/include/clang/Sema/Sema.h b/clang/include/clang/Sema/Sema.h index 700bda0..e87a3e6 100644 --- a/clang/include/clang/Sema/Sema.h +++ b/clang/include/clang/Sema/Sema.h @@ -7025,6 +7025,8 @@ public: void CheckTollFreeBridgeCast(QualType castType, Expr *castExpr); + void CheckObjCBridgeRelatedCast(QualType castType, Expr *castExpr); + bool CheckTollFreeBridgeStaticCast(QualType castType, Expr *castExpr, CastKind &Kind); diff --git a/clang/lib/Sema/SemaExpr.cpp b/clang/lib/Sema/SemaExpr.cpp index 8153dff..2f1d1a61 100644 --- a/clang/lib/Sema/SemaExpr.cpp +++ b/clang/lib/Sema/SemaExpr.cpp @@ -5274,7 +5274,9 @@ Sema::ActOnCastExpr(Scope *S, SourceLocation LParenLoc, Diag(LParenLoc, diag::warn_old_style_cast) << CastExpr->getSourceRange(); CheckTollFreeBridgeCast(castType, CastExpr); - + + CheckObjCBridgeRelatedCast(castType, CastExpr); + return BuildCStyleCastExpr(LParenLoc, castTInfo, RParenLoc, CastExpr); } diff --git a/clang/lib/Sema/SemaExprObjC.cpp b/clang/lib/Sema/SemaExprObjC.cpp index 299dd5d..0cae6bf 100644 --- a/clang/lib/Sema/SemaExprObjC.cpp +++ b/clang/lib/Sema/SemaExprObjC.cpp @@ -3460,6 +3460,29 @@ void Sema::CheckTollFreeBridgeCast(QualType castType, Expr *castExpr) { } } +void Sema::CheckObjCBridgeRelatedCast(QualType castType, Expr *castExpr) { + QualType SrcType = castExpr->getType(); + if (ObjCPropertyRefExpr *PRE = dyn_cast(castExpr)) { + if (PRE->isExplicitProperty()) { + if (ObjCPropertyDecl *PDecl = PRE->getExplicitProperty()) + SrcType = PDecl->getType(); + } + else if (PRE->isImplicitProperty()) { + if (ObjCMethodDecl *Getter = PRE->getImplicitPropertyGetter()) + SrcType = Getter->getReturnType(); + + } + } + + ARCConversionTypeClass srcExprACTC = classifyTypeForARCConversion(SrcType); + ARCConversionTypeClass castExprACTC = classifyTypeForARCConversion(castType); + if (srcExprACTC != ACTC_retainable || castExprACTC != ACTC_coreFoundation) + return; + CheckObjCBridgeRelatedConversions(castExpr->getLocStart(), + castType, SrcType, castExpr); + return; +} + bool Sema::CheckTollFreeBridgeStaticCast(QualType castType, Expr *castExpr, CastKind &Kind) { if (!getLangOpts().ObjC1) diff --git a/clang/test/FixIt/fixit-objc-bridge-related.m b/clang/test/FixIt/fixit-objc-bridge-related.m new file mode 100644 index 0000000..36ccbca --- /dev/null +++ b/clang/test/FixIt/fixit-objc-bridge-related.m @@ -0,0 +1,43 @@ +// RUN: not %clang_cc1 -triple x86_64-apple-darwin10 -fdiagnostics-parseable-fixits -x objective-c -fobjc-arc %s 2>&1 | FileCheck %s +// RUN: not %clang_cc1 -triple x86_64-apple-darwin10 -fdiagnostics-parseable-fixits -x objective-c++ -fobjc-arc %s 2>&1 | FileCheck %s +// rdar://15932435 + +typedef struct __attribute__((objc_bridge_related(UIColor,colorWithCGColor:,CGColor))) CGColor *CGColorRef; + +@interface UIColor ++ (UIColor *)colorWithCGColor:(CGColorRef)cgColor; +- (CGColorRef)CGColor; +@end + +@interface UIButton +@property(nonatomic,retain) UIColor *tintColor; +@end + +void test(UIButton *myButton) { + CGColorRef cgColor = (CGColorRef)myButton.tintColor; + cgColor = myButton.tintColor; + + cgColor = (CGColorRef)[myButton.tintColor CGColor]; + + cgColor = (CGColorRef)[myButton tintColor]; +} + +// CHECK: {17:36-17:36}:"[" +// CHECK: {17:54-17:54}:" CGColor]" + +// CHECK :{18:13-18:13}:"[" +// CHECK: {18:31-18:31}:" CGColor]" + +// CHECK :{22:25-22:25}:"[" +// CHECK :{22:45-22:45}:" CGColor]" + +@interface ImplicitPropertyTest +- (UIColor *)tintColor; +@end + +void test1(ImplicitPropertyTest *myImplicitPropertyTest) { + CGColorRef cgColor = (CGColorRef)[myImplicitPropertyTest tintColor]; +} + +// CHECK :{39:36-39:36}:"[" +// CHECK :{39:70-39:70}:" CGColor]" -- 2.7.4