blob: 48c0ca9cefe5128504dd1e39e027772e550a6f20 [file] [log] [blame]
Argyrios Kyrtzidis7196d062011-06-21 20:20:39 +00001//===--- TransBlockObjCVariable.cpp - Tranformations to ARC mode ----------===//
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// rewriteBlockObjCVariable:
11//
12// Adding __block to an obj-c variable could be either because the the variable
13// is used for output storage or the user wanted to break a retain cycle.
14// This transformation checks whether a reference of the variable for the block
15// is actually needed (it is assigned to or its address is taken) or not.
16// If the reference is not needed it will assume __block was added to break a
17// cycle so it will remove '__block' and add __weak/__unsafe_unretained.
18// e.g
19//
20// __block Foo *x;
21// bar(^ { [x cake]; });
22// ---->
23// __weak Foo *x;
24// bar(^ { [x cake]; });
25//
26//===----------------------------------------------------------------------===//
27
28#include "Transforms.h"
29#include "Internals.h"
30#include "clang/Basic/SourceManager.h"
31
32using namespace clang;
33using namespace arcmt;
34using namespace trans;
Argyrios Kyrtzidis7196d062011-06-21 20:20:39 +000035
36namespace {
37
38class RootBlockObjCVarRewriter :
39 public RecursiveASTVisitor<RootBlockObjCVarRewriter> {
40 MigrationPass &Pass;
41 llvm::DenseSet<VarDecl *> CheckedVars;
42
43 class BlockVarChecker : public RecursiveASTVisitor<BlockVarChecker> {
44 VarDecl *Var;
45
46 typedef RecursiveASTVisitor<BlockVarChecker> base;
47 public:
48 BlockVarChecker(VarDecl *var) : Var(var) { }
49
50 bool TraverseImplicitCastExpr(ImplicitCastExpr *castE) {
51 if (BlockDeclRefExpr *
52 ref = dyn_cast<BlockDeclRefExpr>(castE->getSubExpr())) {
53 if (ref->getDecl() == Var) {
54 if (castE->getCastKind() == CK_LValueToRValue)
55 return true; // Using the value of the variable.
56 if (castE->getCastKind() == CK_NoOp && castE->isLValue() &&
57 Var->getASTContext().getLangOptions().CPlusPlus)
58 return true; // Binding to const C++ reference.
59 }
60 }
61
62 return base::TraverseImplicitCastExpr(castE);
63 }
64
65 bool VisitBlockDeclRefExpr(BlockDeclRefExpr *E) {
66 if (E->getDecl() == Var)
67 return false; // The reference of the variable, and not just its value,
68 // is needed.
69 return true;
70 }
71 };
72
73public:
74 RootBlockObjCVarRewriter(MigrationPass &pass) : Pass(pass) { }
75
76 bool VisitBlockDecl(BlockDecl *block) {
Chris Lattner5f9e2722011-07-23 10:55:15 +000077 SmallVector<VarDecl *, 4> BlockVars;
Argyrios Kyrtzidis7196d062011-06-21 20:20:39 +000078
79 for (BlockDecl::capture_iterator
80 I = block->capture_begin(), E = block->capture_end(); I != E; ++I) {
81 VarDecl *var = I->getVariable();
82 if (I->isByRef() &&
83 !isAlreadyChecked(var) &&
84 var->getType()->isObjCObjectPointerType() &&
85 isImplicitStrong(var->getType())) {
86 BlockVars.push_back(var);
87 }
88 }
89
90 for (unsigned i = 0, e = BlockVars.size(); i != e; ++i) {
91 VarDecl *var = BlockVars[i];
92 CheckedVars.insert(var);
93
94 BlockVarChecker checker(var);
95 bool onlyValueOfVarIsNeeded = checker.TraverseStmt(block->getBody());
96 if (onlyValueOfVarIsNeeded) {
97 BlocksAttr *attr = var->getAttr<BlocksAttr>();
98 if(!attr)
99 continue;
Argyrios Kyrtzidis86625b52011-07-12 22:05:17 +0000100 bool useWeak = canApplyWeak(Pass.Ctx, var->getType());
Argyrios Kyrtzidis7196d062011-06-21 20:20:39 +0000101 SourceManager &SM = Pass.Ctx.getSourceManager();
102 Transaction Trans(Pass.TA);
Chandler Carruth40278532011-07-25 16:49:02 +0000103 Pass.TA.replaceText(SM.getExpansionLoc(attr->getLocation()),
Argyrios Kyrtzidis7196d062011-06-21 20:20:39 +0000104 "__block",
Argyrios Kyrtzidis86625b52011-07-12 22:05:17 +0000105 useWeak ? "__weak" : "__unsafe_unretained");
Argyrios Kyrtzidis7196d062011-06-21 20:20:39 +0000106 }
107
108 }
109
110 return true;
111 }
112
113private:
114 bool isAlreadyChecked(VarDecl *VD) {
115 return CheckedVars.count(VD);
116 }
117
118 bool isImplicitStrong(QualType ty) {
119 if (isa<AttributedType>(ty.getTypePtr()))
120 return false;
121 return ty.getLocalQualifiers().getObjCLifetime() == Qualifiers::OCL_Strong;
122 }
123};
124
125class BlockObjCVarRewriter : public RecursiveASTVisitor<BlockObjCVarRewriter> {
126 MigrationPass &Pass;
127
128public:
129 BlockObjCVarRewriter(MigrationPass &pass) : Pass(pass) { }
130
131 bool TraverseBlockDecl(BlockDecl *block) {
132 RootBlockObjCVarRewriter(Pass).TraverseDecl(block);
133 return true;
134 }
135};
136
137} // anonymous namespace
138
139void trans::rewriteBlockObjCVariable(MigrationPass &pass) {
140 BlockObjCVarRewriter trans(pass);
141 trans.TraverseDecl(pass.Ctx.getTranslationUnitDecl());
142}