blob: ba6c04e514c2d27c9fff9140ce7f3522e205e4e0 [file] [log] [blame]
Michael Gottesman79d8d812013-01-28 01:35:51 +00001//===- ObjCARCOpts.cpp - ObjC ARC Optimization ----------------------------===//
John McCalld935e9c2011-06-15 23:37:01 +00002//
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//===----------------------------------------------------------------------===//
Michael Gottesman97e3df02013-01-14 00:35:14 +00009/// \file
10/// This file defines ObjC ARC optimizations. ARC stands for Automatic
11/// Reference Counting and is a system for managing reference counts for objects
12/// in Objective C.
13///
14/// The optimizations performed include elimination of redundant, partially
15/// redundant, and inconsequential reference count operations, elimination of
Michael Gottesman697d8b92013-02-07 04:12:57 +000016/// redundant weak pointer operations, and numerous minor simplifications.
Michael Gottesman97e3df02013-01-14 00:35:14 +000017///
18/// WARNING: This file knows about certain library functions. It recognizes them
19/// by name, and hardwires knowledge of their semantics.
20///
21/// WARNING: This file knows about how certain Objective-C library functions are
22/// used. Naive LLVM IR transformations which would otherwise be
23/// behavior-preserving may break these assumptions.
24///
John McCalld935e9c2011-06-15 23:37:01 +000025//===----------------------------------------------------------------------===//
26
Michael Gottesman08904e32013-01-28 03:28:38 +000027#define DEBUG_TYPE "objc-arc-opts"
28#include "ObjCARC.h"
Michael Gottesman278266f2013-01-29 04:20:52 +000029#include "DependencyAnalysis.h"
Michael Gottesman294e7da2013-01-28 05:51:54 +000030#include "ObjCARCAliasAnalysis.h"
Michael Gottesman778138e2013-01-29 03:03:03 +000031#include "ProvenanceAnalysis.h"
John McCalld935e9c2011-06-15 23:37:01 +000032#include "llvm/ADT/DenseMap.h"
Michael Gottesmanfa0939f2013-01-28 04:12:07 +000033#include "llvm/ADT/STLExtras.h"
Michael Gottesman778138e2013-01-29 03:03:03 +000034#include "llvm/ADT/SmallPtrSet.h"
Michael Gottesman278266f2013-01-29 04:20:52 +000035#include "llvm/ADT/Statistic.h"
Michael Gottesmancd4de0f2013-03-26 00:42:09 +000036#include "llvm/IR/IRBuilder.h"
Michael Gottesman278266f2013-01-29 04:20:52 +000037#include "llvm/IR/LLVMContext.h"
Michael Gottesman778138e2013-01-29 03:03:03 +000038#include "llvm/Support/CFG.h"
Michael Gottesman13a5f1a2013-01-29 04:51:59 +000039#include "llvm/Support/Debug.h"
Timur Iskhodzhanov5d7ff002013-01-29 09:09:27 +000040#include "llvm/Support/raw_ostream.h"
Michael Gottesmanfa0939f2013-01-28 04:12:07 +000041
John McCalld935e9c2011-06-15 23:37:01 +000042using namespace llvm;
Michael Gottesman08904e32013-01-28 03:28:38 +000043using namespace llvm::objcarc;
John McCalld935e9c2011-06-15 23:37:01 +000044
Michael Gottesman97e3df02013-01-14 00:35:14 +000045/// \defgroup MiscUtils Miscellaneous utilities that are not ARC specific.
46/// @{
John McCalld935e9c2011-06-15 23:37:01 +000047
48namespace {
Michael Gottesman97e3df02013-01-14 00:35:14 +000049 /// \brief An associative container with fast insertion-order (deterministic)
50 /// iteration over its elements. Plus the special blot operation.
John McCalld935e9c2011-06-15 23:37:01 +000051 template<class KeyT, class ValueT>
52 class MapVector {
Michael Gottesman97e3df02013-01-14 00:35:14 +000053 /// Map keys to indices in Vector.
John McCalld935e9c2011-06-15 23:37:01 +000054 typedef DenseMap<KeyT, size_t> MapTy;
55 MapTy Map;
56
John McCalld935e9c2011-06-15 23:37:01 +000057 typedef std::vector<std::pair<KeyT, ValueT> > VectorTy;
Michael Gottesman97e3df02013-01-14 00:35:14 +000058 /// Keys and values.
John McCalld935e9c2011-06-15 23:37:01 +000059 VectorTy Vector;
60
61 public:
62 typedef typename VectorTy::iterator iterator;
63 typedef typename VectorTy::const_iterator const_iterator;
64 iterator begin() { return Vector.begin(); }
65 iterator end() { return Vector.end(); }
66 const_iterator begin() const { return Vector.begin(); }
67 const_iterator end() const { return Vector.end(); }
68
69#ifdef XDEBUG
70 ~MapVector() {
71 assert(Vector.size() >= Map.size()); // May differ due to blotting.
72 for (typename MapTy::const_iterator I = Map.begin(), E = Map.end();
73 I != E; ++I) {
74 assert(I->second < Vector.size());
75 assert(Vector[I->second].first == I->first);
76 }
77 for (typename VectorTy::const_iterator I = Vector.begin(),
78 E = Vector.end(); I != E; ++I)
79 assert(!I->first ||
80 (Map.count(I->first) &&
81 Map[I->first] == size_t(I - Vector.begin())));
82 }
83#endif
84
Dan Gohman55b06742012-03-02 01:13:53 +000085 ValueT &operator[](const KeyT &Arg) {
John McCalld935e9c2011-06-15 23:37:01 +000086 std::pair<typename MapTy::iterator, bool> Pair =
87 Map.insert(std::make_pair(Arg, size_t(0)));
88 if (Pair.second) {
Dan Gohman55b06742012-03-02 01:13:53 +000089 size_t Num = Vector.size();
90 Pair.first->second = Num;
John McCalld935e9c2011-06-15 23:37:01 +000091 Vector.push_back(std::make_pair(Arg, ValueT()));
Dan Gohman55b06742012-03-02 01:13:53 +000092 return Vector[Num].second;
John McCalld935e9c2011-06-15 23:37:01 +000093 }
94 return Vector[Pair.first->second].second;
95 }
96
97 std::pair<iterator, bool>
98 insert(const std::pair<KeyT, ValueT> &InsertPair) {
99 std::pair<typename MapTy::iterator, bool> Pair =
100 Map.insert(std::make_pair(InsertPair.first, size_t(0)));
101 if (Pair.second) {
Dan Gohman55b06742012-03-02 01:13:53 +0000102 size_t Num = Vector.size();
103 Pair.first->second = Num;
John McCalld935e9c2011-06-15 23:37:01 +0000104 Vector.push_back(InsertPair);
Dan Gohman55b06742012-03-02 01:13:53 +0000105 return std::make_pair(Vector.begin() + Num, true);
John McCalld935e9c2011-06-15 23:37:01 +0000106 }
107 return std::make_pair(Vector.begin() + Pair.first->second, false);
108 }
109
Dan Gohman55b06742012-03-02 01:13:53 +0000110 const_iterator find(const KeyT &Key) const {
John McCalld935e9c2011-06-15 23:37:01 +0000111 typename MapTy::const_iterator It = Map.find(Key);
112 if (It == Map.end()) return Vector.end();
113 return Vector.begin() + It->second;
114 }
115
Michael Gottesman97e3df02013-01-14 00:35:14 +0000116 /// This is similar to erase, but instead of removing the element from the
117 /// vector, it just zeros out the key in the vector. This leaves iterators
118 /// intact, but clients must be prepared for zeroed-out keys when iterating.
Dan Gohman55b06742012-03-02 01:13:53 +0000119 void blot(const KeyT &Key) {
John McCalld935e9c2011-06-15 23:37:01 +0000120 typename MapTy::iterator It = Map.find(Key);
121 if (It == Map.end()) return;
122 Vector[It->second].first = KeyT();
123 Map.erase(It);
124 }
125
126 void clear() {
127 Map.clear();
128 Vector.clear();
129 }
130 };
131}
132
Michael Gottesman97e3df02013-01-14 00:35:14 +0000133/// @}
134///
135/// \defgroup ARCUtilities Utility declarations/definitions specific to ARC.
136/// @{
John McCalld935e9c2011-06-15 23:37:01 +0000137
Michael Gottesman97e3df02013-01-14 00:35:14 +0000138/// \brief This is similar to StripPointerCastsAndObjCCalls but it stops as soon
139/// as it finds a value with multiple uses.
John McCalld935e9c2011-06-15 23:37:01 +0000140static const Value *FindSingleUseIdentifiedObject(const Value *Arg) {
141 if (Arg->hasOneUse()) {
142 if (const BitCastInst *BC = dyn_cast<BitCastInst>(Arg))
143 return FindSingleUseIdentifiedObject(BC->getOperand(0));
144 if (const GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(Arg))
145 if (GEP->hasAllZeroIndices())
146 return FindSingleUseIdentifiedObject(GEP->getPointerOperand());
147 if (IsForwarding(GetBasicInstructionClass(Arg)))
148 return FindSingleUseIdentifiedObject(
149 cast<CallInst>(Arg)->getArgOperand(0));
150 if (!IsObjCIdentifiedObject(Arg))
151 return 0;
152 return Arg;
153 }
154
Dan Gohman41375a32012-05-08 23:39:44 +0000155 // If we found an identifiable object but it has multiple uses, but they are
156 // trivial uses, we can still consider this to be a single-use value.
John McCalld935e9c2011-06-15 23:37:01 +0000157 if (IsObjCIdentifiedObject(Arg)) {
158 for (Value::const_use_iterator UI = Arg->use_begin(), UE = Arg->use_end();
159 UI != UE; ++UI) {
160 const User *U = *UI;
161 if (!U->use_empty() || StripPointerCastsAndObjCCalls(U) != Arg)
162 return 0;
163 }
164
165 return Arg;
166 }
167
168 return 0;
169}
170
Michael Gottesman774d2c02013-01-29 21:00:52 +0000171/// \brief Test whether the given retainable object pointer escapes.
Michael Gottesman97e3df02013-01-14 00:35:14 +0000172///
173/// This differs from regular escape analysis in that a use as an
174/// argument to a call is not considered an escape.
175///
Michael Gottesman774d2c02013-01-29 21:00:52 +0000176static bool DoesRetainableObjPtrEscape(const User *Ptr) {
Michael Gottesman774d2c02013-01-29 21:00:52 +0000177 DEBUG(dbgs() << "DoesRetainableObjPtrEscape: Target: " << *Ptr << "\n");
Michael Gottesman1a89fe52013-01-13 07:47:32 +0000178
Dan Gohman728db492012-01-13 00:39:07 +0000179 // Walk the def-use chains.
180 SmallVector<const Value *, 4> Worklist;
Michael Gottesman774d2c02013-01-29 21:00:52 +0000181 Worklist.push_back(Ptr);
182 // If Ptr has any operands add them as well.
Michael Gottesman23cda0c2013-01-29 21:07:53 +0000183 for (User::const_op_iterator I = Ptr->op_begin(), E = Ptr->op_end(); I != E;
184 ++I) {
Michael Gottesman774d2c02013-01-29 21:00:52 +0000185 Worklist.push_back(*I);
186 }
Michael Gottesmanf15c0bb2013-01-13 22:12:06 +0000187
188 // Ensure we do not visit any value twice.
Michael Gottesman774d2c02013-01-29 21:00:52 +0000189 SmallPtrSet<const Value *, 8> VisitedSet;
Michael Gottesmanf15c0bb2013-01-13 22:12:06 +0000190
Dan Gohman728db492012-01-13 00:39:07 +0000191 do {
192 const Value *V = Worklist.pop_back_val();
Michael Gottesman1a89fe52013-01-13 07:47:32 +0000193
Michael Gottesman89279f82013-04-05 18:10:41 +0000194 DEBUG(dbgs() << "Visiting: " << *V << "\n");
Michael Gottesman1a89fe52013-01-13 07:47:32 +0000195
Dan Gohman728db492012-01-13 00:39:07 +0000196 for (Value::const_use_iterator UI = V->use_begin(), UE = V->use_end();
197 UI != UE; ++UI) {
198 const User *UUser = *UI;
Michael Gottesman1a89fe52013-01-13 07:47:32 +0000199
Michael Gottesman89279f82013-04-05 18:10:41 +0000200 DEBUG(dbgs() << "User: " << *UUser << "\n");
Michael Gottesman1a89fe52013-01-13 07:47:32 +0000201
Dan Gohman728db492012-01-13 00:39:07 +0000202 // Special - Use by a call (callee or argument) is not considered
203 // to be an escape.
Dan Gohmane1e352a2012-04-13 18:28:58 +0000204 switch (GetBasicInstructionClass(UUser)) {
205 case IC_StoreWeak:
206 case IC_InitWeak:
207 case IC_StoreStrong:
208 case IC_Autorelease:
Michael Gottesman1a89fe52013-01-13 07:47:32 +0000209 case IC_AutoreleaseRV: {
Michael Gottesman89279f82013-04-05 18:10:41 +0000210 DEBUG(dbgs() << "User copies pointer arguments. Pointer Escapes!\n");
Dan Gohmane1e352a2012-04-13 18:28:58 +0000211 // These special functions make copies of their pointer arguments.
212 return true;
Michael Gottesman1a89fe52013-01-13 07:47:32 +0000213 }
John McCall20182ac2013-03-22 21:38:36 +0000214 case IC_IntrinsicUser:
215 // Use by the use intrinsic is not an escape.
216 continue;
Dan Gohmane1e352a2012-04-13 18:28:58 +0000217 case IC_User:
218 case IC_None:
219 // Use by an instruction which copies the value is an escape if the
220 // result is an escape.
221 if (isa<BitCastInst>(UUser) || isa<GetElementPtrInst>(UUser) ||
222 isa<PHINode>(UUser) || isa<SelectInst>(UUser)) {
Michael Gottesmanf15c0bb2013-01-13 22:12:06 +0000223
Michael Gottesmanf4b77612013-02-23 00:31:32 +0000224 if (VisitedSet.insert(UUser)) {
Michael Gottesman89279f82013-04-05 18:10:41 +0000225 DEBUG(dbgs() << "User copies value. Ptr escapes if result escapes."
226 " Adding to list.\n");
Michael Gottesmanf15c0bb2013-01-13 22:12:06 +0000227 Worklist.push_back(UUser);
228 } else {
Michael Gottesman89279f82013-04-05 18:10:41 +0000229 DEBUG(dbgs() << "Already visited node.\n");
Michael Gottesmanf15c0bb2013-01-13 22:12:06 +0000230 }
Dan Gohmane1e352a2012-04-13 18:28:58 +0000231 continue;
232 }
233 // Use by a load is not an escape.
234 if (isa<LoadInst>(UUser))
235 continue;
236 // Use by a store is not an escape if the use is the address.
237 if (const StoreInst *SI = dyn_cast<StoreInst>(UUser))
238 if (V != SI->getValueOperand())
239 continue;
240 break;
241 default:
242 // Regular calls and other stuff are not considered escapes.
Dan Gohman728db492012-01-13 00:39:07 +0000243 continue;
244 }
Dan Gohmaneb6e0152012-02-13 22:57:02 +0000245 // Otherwise, conservatively assume an escape.
Michael Gottesman89279f82013-04-05 18:10:41 +0000246 DEBUG(dbgs() << "Assuming ptr escapes.\n");
Dan Gohman728db492012-01-13 00:39:07 +0000247 return true;
248 }
249 } while (!Worklist.empty());
250
251 // No escapes found.
Michael Gottesman89279f82013-04-05 18:10:41 +0000252 DEBUG(dbgs() << "Ptr does not escape.\n");
Dan Gohman728db492012-01-13 00:39:07 +0000253 return false;
254}
255
Michael Gottesman97e3df02013-01-14 00:35:14 +0000256/// @}
257///
Michael Gottesman97e3df02013-01-14 00:35:14 +0000258/// \defgroup ARCOpt ARC Optimization.
259/// @{
John McCalld935e9c2011-06-15 23:37:01 +0000260
261// TODO: On code like this:
262//
263// objc_retain(%x)
264// stuff_that_cannot_release()
265// objc_autorelease(%x)
266// stuff_that_cannot_release()
267// objc_retain(%x)
268// stuff_that_cannot_release()
269// objc_autorelease(%x)
270//
271// The second retain and autorelease can be deleted.
272
273// TODO: It should be possible to delete
274// objc_autoreleasePoolPush and objc_autoreleasePoolPop
275// pairs if nothing is actually autoreleased between them. Also, autorelease
276// calls followed by objc_autoreleasePoolPop calls (perhaps in ObjC++ code
277// after inlining) can be turned into plain release calls.
278
279// TODO: Critical-edge splitting. If the optimial insertion point is
280// a critical edge, the current algorithm has to fail, because it doesn't
281// know how to split edges. It should be possible to make the optimizer
282// think in terms of edges, rather than blocks, and then split critical
283// edges on demand.
284
285// TODO: OptimizeSequences could generalized to be Interprocedural.
286
287// TODO: Recognize that a bunch of other objc runtime calls have
288// non-escaping arguments and non-releasing arguments, and may be
289// non-autoreleasing.
290
291// TODO: Sink autorelease calls as far as possible. Unfortunately we
292// usually can't sink them past other calls, which would be the main
293// case where it would be useful.
294
Dan Gohmanb3894012011-08-19 00:26:36 +0000295// TODO: The pointer returned from objc_loadWeakRetained is retained.
296
297// TODO: Delete release+retain pairs (rare).
Dan Gohmanceaac7c2011-06-20 23:20:43 +0000298
John McCalld935e9c2011-06-15 23:37:01 +0000299STATISTIC(NumNoops, "Number of no-op objc calls eliminated");
300STATISTIC(NumPartialNoops, "Number of partially no-op objc calls eliminated");
301STATISTIC(NumAutoreleases,"Number of autoreleases converted to releases");
302STATISTIC(NumRets, "Number of return value forwarding "
303 "retain+autoreleaes eliminated");
304STATISTIC(NumRRs, "Number of retain+release paths eliminated");
305STATISTIC(NumPeeps, "Number of calls peephole-optimized");
306
307namespace {
Michael Gottesman97e3df02013-01-14 00:35:14 +0000308 /// \enum Sequence
309 ///
310 /// \brief A sequence of states that a pointer may go through in which an
311 /// objc_retain and objc_release are actually needed.
John McCalld935e9c2011-06-15 23:37:01 +0000312 enum Sequence {
313 S_None,
Michael Gottesman53fd20b2013-01-29 21:07:51 +0000314 S_Retain, ///< objc_retain(x).
315 S_CanRelease, ///< foo(x) -- x could possibly see a ref count decrement.
316 S_Use, ///< any use of x.
Michael Gottesman386241c2013-01-29 21:39:02 +0000317 S_Stop, ///< like S_Release, but code motion is stopped.
Michael Gottesman53fd20b2013-01-29 21:07:51 +0000318 S_Release, ///< objc_release(x).
Michael Gottesman9bdab2b2013-01-29 21:41:44 +0000319 S_MovableRelease ///< objc_release(x), !clang.imprecise_release.
John McCalld935e9c2011-06-15 23:37:01 +0000320 };
Michael Gottesman53fd20b2013-01-29 21:07:51 +0000321
322 raw_ostream &operator<<(raw_ostream &OS, const Sequence S)
323 LLVM_ATTRIBUTE_UNUSED;
324 raw_ostream &operator<<(raw_ostream &OS, const Sequence S) {
325 switch (S) {
326 case S_None:
327 return OS << "S_None";
328 case S_Retain:
329 return OS << "S_Retain";
330 case S_CanRelease:
331 return OS << "S_CanRelease";
332 case S_Use:
333 return OS << "S_Use";
334 case S_Release:
335 return OS << "S_Release";
336 case S_MovableRelease:
337 return OS << "S_MovableRelease";
338 case S_Stop:
339 return OS << "S_Stop";
340 }
341 llvm_unreachable("Unknown sequence type.");
342 }
John McCalld935e9c2011-06-15 23:37:01 +0000343}
344
345static Sequence MergeSeqs(Sequence A, Sequence B, bool TopDown) {
346 // The easy cases.
347 if (A == B)
348 return A;
349 if (A == S_None || B == S_None)
350 return S_None;
351
John McCalld935e9c2011-06-15 23:37:01 +0000352 if (A > B) std::swap(A, B);
353 if (TopDown) {
354 // Choose the side which is further along in the sequence.
Dan Gohman12130272011-08-12 00:26:31 +0000355 if ((A == S_Retain || A == S_CanRelease) &&
356 (B == S_CanRelease || B == S_Use))
John McCalld935e9c2011-06-15 23:37:01 +0000357 return B;
358 } else {
359 // Choose the side which is further along in the sequence.
360 if ((A == S_Use || A == S_CanRelease) &&
Dan Gohman12130272011-08-12 00:26:31 +0000361 (B == S_Use || B == S_Release || B == S_Stop || B == S_MovableRelease))
John McCalld935e9c2011-06-15 23:37:01 +0000362 return A;
363 // If both sides are releases, choose the more conservative one.
364 if (A == S_Stop && (B == S_Release || B == S_MovableRelease))
365 return A;
366 if (A == S_Release && B == S_MovableRelease)
367 return A;
368 }
369
370 return S_None;
371}
372
373namespace {
Michael Gottesman97e3df02013-01-14 00:35:14 +0000374 /// \brief Unidirectional information about either a
John McCalld935e9c2011-06-15 23:37:01 +0000375 /// retain-decrement-use-release sequence or release-use-decrement-retain
Bob Wilson798a7702013-04-09 22:15:51 +0000376 /// reverse sequence.
John McCalld935e9c2011-06-15 23:37:01 +0000377 struct RRInfo {
Michael Gottesman97e3df02013-01-14 00:35:14 +0000378 /// After an objc_retain, the reference count of the referenced
Dan Gohmanb3894012011-08-19 00:26:36 +0000379 /// object is known to be positive. Similarly, before an objc_release, the
380 /// reference count of the referenced object is known to be positive. If
381 /// there are retain-release pairs in code regions where the retain count
382 /// is known to be positive, they can be eliminated, regardless of any side
383 /// effects between them.
384 ///
385 /// Also, a retain+release pair nested within another retain+release
386 /// pair all on the known same pointer value can be eliminated, regardless
387 /// of any intervening side effects.
388 ///
389 /// KnownSafe is true when either of these conditions is satisfied.
390 bool KnownSafe;
John McCalld935e9c2011-06-15 23:37:01 +0000391
Michael Gottesman97e3df02013-01-14 00:35:14 +0000392 /// True of the objc_release calls are all marked with the "tail" keyword.
John McCalld935e9c2011-06-15 23:37:01 +0000393 bool IsTailCallRelease;
394
Michael Gottesman97e3df02013-01-14 00:35:14 +0000395 /// If the Calls are objc_release calls and they all have a
396 /// clang.imprecise_release tag, this is the metadata tag.
John McCalld935e9c2011-06-15 23:37:01 +0000397 MDNode *ReleaseMetadata;
398
Michael Gottesman97e3df02013-01-14 00:35:14 +0000399 /// For a top-down sequence, the set of objc_retains or
John McCalld935e9c2011-06-15 23:37:01 +0000400 /// objc_retainBlocks. For bottom-up, the set of objc_releases.
401 SmallPtrSet<Instruction *, 2> Calls;
402
Michael Gottesman97e3df02013-01-14 00:35:14 +0000403 /// The set of optimal insert positions for moving calls in the opposite
404 /// sequence.
John McCalld935e9c2011-06-15 23:37:01 +0000405 SmallPtrSet<Instruction *, 2> ReverseInsertPts;
406
407 RRInfo() :
Michael Gottesmanba648592013-03-28 23:08:44 +0000408 KnownSafe(false), IsTailCallRelease(false), ReleaseMetadata(0) {}
John McCalld935e9c2011-06-15 23:37:01 +0000409
410 void clear();
Michael Gottesman79249972013-04-05 23:46:45 +0000411
Michael Gottesman1d8d2572013-04-05 22:54:28 +0000412 bool IsTrackingImpreciseReleases() {
413 return ReleaseMetadata != 0;
414 }
John McCalld935e9c2011-06-15 23:37:01 +0000415 };
416}
417
418void RRInfo::clear() {
Dan Gohmanb3894012011-08-19 00:26:36 +0000419 KnownSafe = false;
John McCalld935e9c2011-06-15 23:37:01 +0000420 IsTailCallRelease = false;
421 ReleaseMetadata = 0;
422 Calls.clear();
423 ReverseInsertPts.clear();
424}
425
426namespace {
Michael Gottesman97e3df02013-01-14 00:35:14 +0000427 /// \brief This class summarizes several per-pointer runtime properties which
428 /// are propogated through the flow graph.
John McCalld935e9c2011-06-15 23:37:01 +0000429 class PtrState {
Michael Gottesman97e3df02013-01-14 00:35:14 +0000430 /// True if the reference count is known to be incremented.
Dan Gohman62079b42012-04-25 00:50:46 +0000431 bool KnownPositiveRefCount;
432
Bob Wilson798a7702013-04-09 22:15:51 +0000433 /// True if we've seen an opportunity for partial RR elimination, such as
Michael Gottesman97e3df02013-01-14 00:35:14 +0000434 /// pushing calls into a CFG triangle or into one side of a CFG diamond.
Dan Gohman62079b42012-04-25 00:50:46 +0000435 bool Partial;
John McCalld935e9c2011-06-15 23:37:01 +0000436
Michael Gottesman97e3df02013-01-14 00:35:14 +0000437 /// The current position in the sequence.
Dan Gohman41375a32012-05-08 23:39:44 +0000438 Sequence Seq : 8;
John McCalld935e9c2011-06-15 23:37:01 +0000439
440 public:
Michael Gottesman97e3df02013-01-14 00:35:14 +0000441 /// Unidirectional information about the current sequence.
442 ///
John McCalld935e9c2011-06-15 23:37:01 +0000443 /// TODO: Encapsulate this better.
444 RRInfo RRI;
445
Dan Gohmandf476e52012-09-04 23:16:20 +0000446 PtrState() : KnownPositiveRefCount(false), Partial(false),
Dan Gohman41375a32012-05-08 23:39:44 +0000447 Seq(S_None) {}
John McCalld935e9c2011-06-15 23:37:01 +0000448
Michael Gottesman415ddd72013-02-05 19:32:18 +0000449 void SetKnownPositiveRefCount() {
Dan Gohman62079b42012-04-25 00:50:46 +0000450 KnownPositiveRefCount = true;
Dan Gohman12130272011-08-12 00:26:31 +0000451 }
452
Michael Gottesman764b1cf2013-03-23 05:46:19 +0000453 void ClearKnownPositiveRefCount() {
Dan Gohman62079b42012-04-25 00:50:46 +0000454 KnownPositiveRefCount = false;
John McCalld935e9c2011-06-15 23:37:01 +0000455 }
456
Michael Gottesman07beea42013-03-23 05:31:01 +0000457 bool HasKnownPositiveRefCount() const {
Dan Gohman62079b42012-04-25 00:50:46 +0000458 return KnownPositiveRefCount;
John McCalld935e9c2011-06-15 23:37:01 +0000459 }
460
Michael Gottesman415ddd72013-02-05 19:32:18 +0000461 void SetSeq(Sequence NewSeq) {
Michael Gottesman89279f82013-04-05 18:10:41 +0000462 DEBUG(dbgs() << "Old: " << Seq << "; New: " << NewSeq << "\n");
Michael Gottesman79249972013-04-05 23:46:45 +0000463 Seq = NewSeq;
John McCalld935e9c2011-06-15 23:37:01 +0000464 }
465
Michael Gottesman415ddd72013-02-05 19:32:18 +0000466 Sequence GetSeq() const {
John McCalld935e9c2011-06-15 23:37:01 +0000467 return Seq;
468 }
469
Michael Gottesman415ddd72013-02-05 19:32:18 +0000470 void ClearSequenceProgress() {
Dan Gohman62079b42012-04-25 00:50:46 +0000471 ResetSequenceProgress(S_None);
472 }
473
Michael Gottesman415ddd72013-02-05 19:32:18 +0000474 void ResetSequenceProgress(Sequence NewSeq) {
Michael Gottesman89279f82013-04-05 18:10:41 +0000475 SetSeq(NewSeq);
Dan Gohman62079b42012-04-25 00:50:46 +0000476 Partial = false;
John McCalld935e9c2011-06-15 23:37:01 +0000477 RRI.clear();
478 }
479
480 void Merge(const PtrState &Other, bool TopDown);
481 };
482}
483
484void
485PtrState::Merge(const PtrState &Other, bool TopDown) {
486 Seq = MergeSeqs(Seq, Other.Seq, TopDown);
Dan Gohman62079b42012-04-25 00:50:46 +0000487 KnownPositiveRefCount = KnownPositiveRefCount && Other.KnownPositiveRefCount;
Michael Gottesman60f6b282013-03-29 05:13:07 +0000488
Dan Gohman1736c142011-10-17 18:48:25 +0000489 // If we're not in a sequence (anymore), drop all associated state.
John McCalld935e9c2011-06-15 23:37:01 +0000490 if (Seq == S_None) {
Dan Gohman62079b42012-04-25 00:50:46 +0000491 Partial = false;
John McCalld935e9c2011-06-15 23:37:01 +0000492 RRI.clear();
Dan Gohman62079b42012-04-25 00:50:46 +0000493 } else if (Partial || Other.Partial) {
Dan Gohman1736c142011-10-17 18:48:25 +0000494 // If we're doing a merge on a path that's previously seen a partial
495 // merge, conservatively drop the sequence, to avoid doing partial
496 // RR elimination. If the branch predicates for the two merge differ,
497 // mixing them is unsafe.
Dan Gohman62079b42012-04-25 00:50:46 +0000498 ClearSequenceProgress();
John McCalld935e9c2011-06-15 23:37:01 +0000499 } else {
500 // Conservatively merge the ReleaseMetadata information.
501 if (RRI.ReleaseMetadata != Other.RRI.ReleaseMetadata)
502 RRI.ReleaseMetadata = 0;
503
Dan Gohmanb3894012011-08-19 00:26:36 +0000504 RRI.KnownSafe = RRI.KnownSafe && Other.RRI.KnownSafe;
Dan Gohman41375a32012-05-08 23:39:44 +0000505 RRI.IsTailCallRelease = RRI.IsTailCallRelease &&
506 Other.RRI.IsTailCallRelease;
John McCalld935e9c2011-06-15 23:37:01 +0000507 RRI.Calls.insert(Other.RRI.Calls.begin(), Other.RRI.Calls.end());
Dan Gohman1736c142011-10-17 18:48:25 +0000508
509 // Merge the insert point sets. If there are any differences,
510 // that makes this a partial merge.
Dan Gohman41375a32012-05-08 23:39:44 +0000511 Partial = RRI.ReverseInsertPts.size() != Other.RRI.ReverseInsertPts.size();
Dan Gohman1736c142011-10-17 18:48:25 +0000512 for (SmallPtrSet<Instruction *, 2>::const_iterator
513 I = Other.RRI.ReverseInsertPts.begin(),
514 E = Other.RRI.ReverseInsertPts.end(); I != E; ++I)
Dan Gohman62079b42012-04-25 00:50:46 +0000515 Partial |= RRI.ReverseInsertPts.insert(*I);
John McCalld935e9c2011-06-15 23:37:01 +0000516 }
517}
518
519namespace {
Michael Gottesman97e3df02013-01-14 00:35:14 +0000520 /// \brief Per-BasicBlock state.
John McCalld935e9c2011-06-15 23:37:01 +0000521 class BBState {
Michael Gottesman97e3df02013-01-14 00:35:14 +0000522 /// The number of unique control paths from the entry which can reach this
523 /// block.
John McCalld935e9c2011-06-15 23:37:01 +0000524 unsigned TopDownPathCount;
525
Michael Gottesman97e3df02013-01-14 00:35:14 +0000526 /// The number of unique control paths to exits from this block.
John McCalld935e9c2011-06-15 23:37:01 +0000527 unsigned BottomUpPathCount;
528
Michael Gottesman97e3df02013-01-14 00:35:14 +0000529 /// A type for PerPtrTopDown and PerPtrBottomUp.
John McCalld935e9c2011-06-15 23:37:01 +0000530 typedef MapVector<const Value *, PtrState> MapTy;
531
Michael Gottesman97e3df02013-01-14 00:35:14 +0000532 /// The top-down traversal uses this to record information known about a
533 /// pointer at the bottom of each block.
John McCalld935e9c2011-06-15 23:37:01 +0000534 MapTy PerPtrTopDown;
535
Michael Gottesman97e3df02013-01-14 00:35:14 +0000536 /// The bottom-up traversal uses this to record information known about a
537 /// pointer at the top of each block.
John McCalld935e9c2011-06-15 23:37:01 +0000538 MapTy PerPtrBottomUp;
539
Michael Gottesman97e3df02013-01-14 00:35:14 +0000540 /// Effective predecessors of the current block ignoring ignorable edges and
541 /// ignored backedges.
Dan Gohmanc24c66f2012-04-24 22:53:18 +0000542 SmallVector<BasicBlock *, 2> Preds;
Michael Gottesman97e3df02013-01-14 00:35:14 +0000543 /// Effective successors of the current block ignoring ignorable edges and
544 /// ignored backedges.
Dan Gohmanc24c66f2012-04-24 22:53:18 +0000545 SmallVector<BasicBlock *, 2> Succs;
546
John McCalld935e9c2011-06-15 23:37:01 +0000547 public:
548 BBState() : TopDownPathCount(0), BottomUpPathCount(0) {}
549
550 typedef MapTy::iterator ptr_iterator;
551 typedef MapTy::const_iterator ptr_const_iterator;
552
553 ptr_iterator top_down_ptr_begin() { return PerPtrTopDown.begin(); }
554 ptr_iterator top_down_ptr_end() { return PerPtrTopDown.end(); }
555 ptr_const_iterator top_down_ptr_begin() const {
556 return PerPtrTopDown.begin();
557 }
558 ptr_const_iterator top_down_ptr_end() const {
559 return PerPtrTopDown.end();
560 }
561
562 ptr_iterator bottom_up_ptr_begin() { return PerPtrBottomUp.begin(); }
563 ptr_iterator bottom_up_ptr_end() { return PerPtrBottomUp.end(); }
564 ptr_const_iterator bottom_up_ptr_begin() const {
565 return PerPtrBottomUp.begin();
566 }
567 ptr_const_iterator bottom_up_ptr_end() const {
568 return PerPtrBottomUp.end();
569 }
570
Michael Gottesman97e3df02013-01-14 00:35:14 +0000571 /// Mark this block as being an entry block, which has one path from the
572 /// entry by definition.
John McCalld935e9c2011-06-15 23:37:01 +0000573 void SetAsEntry() { TopDownPathCount = 1; }
574
Michael Gottesman97e3df02013-01-14 00:35:14 +0000575 /// Mark this block as being an exit block, which has one path to an exit by
576 /// definition.
John McCalld935e9c2011-06-15 23:37:01 +0000577 void SetAsExit() { BottomUpPathCount = 1; }
578
579 PtrState &getPtrTopDownState(const Value *Arg) {
580 return PerPtrTopDown[Arg];
581 }
582
583 PtrState &getPtrBottomUpState(const Value *Arg) {
584 return PerPtrBottomUp[Arg];
585 }
586
587 void clearBottomUpPointers() {
Evan Chenge4df6a22011-08-04 18:40:26 +0000588 PerPtrBottomUp.clear();
John McCalld935e9c2011-06-15 23:37:01 +0000589 }
590
591 void clearTopDownPointers() {
592 PerPtrTopDown.clear();
593 }
594
595 void InitFromPred(const BBState &Other);
596 void InitFromSucc(const BBState &Other);
597 void MergePred(const BBState &Other);
598 void MergeSucc(const BBState &Other);
599
Michael Gottesman97e3df02013-01-14 00:35:14 +0000600 /// Return the number of possible unique paths from an entry to an exit
601 /// which pass through this block. This is only valid after both the
602 /// top-down and bottom-up traversals are complete.
John McCalld935e9c2011-06-15 23:37:01 +0000603 unsigned GetAllPathCount() const {
Dan Gohmanc24c66f2012-04-24 22:53:18 +0000604 assert(TopDownPathCount != 0);
605 assert(BottomUpPathCount != 0);
John McCalld935e9c2011-06-15 23:37:01 +0000606 return TopDownPathCount * BottomUpPathCount;
607 }
Dan Gohman12130272011-08-12 00:26:31 +0000608
Dan Gohmanc24c66f2012-04-24 22:53:18 +0000609 // Specialized CFG utilities.
Dan Gohmandae33492012-04-27 18:56:31 +0000610 typedef SmallVectorImpl<BasicBlock *>::const_iterator edge_iterator;
Dan Gohmanc24c66f2012-04-24 22:53:18 +0000611 edge_iterator pred_begin() { return Preds.begin(); }
612 edge_iterator pred_end() { return Preds.end(); }
613 edge_iterator succ_begin() { return Succs.begin(); }
614 edge_iterator succ_end() { return Succs.end(); }
615
616 void addSucc(BasicBlock *Succ) { Succs.push_back(Succ); }
617 void addPred(BasicBlock *Pred) { Preds.push_back(Pred); }
618
619 bool isExit() const { return Succs.empty(); }
John McCalld935e9c2011-06-15 23:37:01 +0000620 };
621}
622
623void BBState::InitFromPred(const BBState &Other) {
624 PerPtrTopDown = Other.PerPtrTopDown;
625 TopDownPathCount = Other.TopDownPathCount;
626}
627
628void BBState::InitFromSucc(const BBState &Other) {
629 PerPtrBottomUp = Other.PerPtrBottomUp;
630 BottomUpPathCount = Other.BottomUpPathCount;
631}
632
Michael Gottesman97e3df02013-01-14 00:35:14 +0000633/// The top-down traversal uses this to merge information about predecessors to
634/// form the initial state for a new block.
John McCalld935e9c2011-06-15 23:37:01 +0000635void BBState::MergePred(const BBState &Other) {
636 // Other.TopDownPathCount can be 0, in which case it is either dead or a
637 // loop backedge. Loop backedges are special.
638 TopDownPathCount += Other.TopDownPathCount;
639
Michael Gottesman4385edf2013-01-14 01:47:53 +0000640 // Check for overflow. If we have overflow, fall back to conservative
641 // behavior.
Dan Gohman7c84dad2012-09-12 20:45:17 +0000642 if (TopDownPathCount < Other.TopDownPathCount) {
643 clearTopDownPointers();
644 return;
645 }
646
John McCalld935e9c2011-06-15 23:37:01 +0000647 // For each entry in the other set, if our set has an entry with the same key,
648 // merge the entries. Otherwise, copy the entry and merge it with an empty
649 // entry.
650 for (ptr_const_iterator MI = Other.top_down_ptr_begin(),
651 ME = Other.top_down_ptr_end(); MI != ME; ++MI) {
652 std::pair<ptr_iterator, bool> Pair = PerPtrTopDown.insert(*MI);
653 Pair.first->second.Merge(Pair.second ? PtrState() : MI->second,
654 /*TopDown=*/true);
655 }
656
Dan Gohman7e315fc32011-08-11 21:06:32 +0000657 // For each entry in our set, if the other set doesn't have an entry with the
John McCalld935e9c2011-06-15 23:37:01 +0000658 // same key, force it to merge with an empty entry.
659 for (ptr_iterator MI = top_down_ptr_begin(),
660 ME = top_down_ptr_end(); MI != ME; ++MI)
661 if (Other.PerPtrTopDown.find(MI->first) == Other.PerPtrTopDown.end())
662 MI->second.Merge(PtrState(), /*TopDown=*/true);
663}
664
Michael Gottesman97e3df02013-01-14 00:35:14 +0000665/// The bottom-up traversal uses this to merge information about successors to
666/// form the initial state for a new block.
John McCalld935e9c2011-06-15 23:37:01 +0000667void BBState::MergeSucc(const BBState &Other) {
668 // Other.BottomUpPathCount can be 0, in which case it is either dead or a
669 // loop backedge. Loop backedges are special.
670 BottomUpPathCount += Other.BottomUpPathCount;
671
Michael Gottesman4385edf2013-01-14 01:47:53 +0000672 // Check for overflow. If we have overflow, fall back to conservative
673 // behavior.
Dan Gohman7c84dad2012-09-12 20:45:17 +0000674 if (BottomUpPathCount < Other.BottomUpPathCount) {
675 clearBottomUpPointers();
676 return;
677 }
678
John McCalld935e9c2011-06-15 23:37:01 +0000679 // For each entry in the other set, if our set has an entry with the
680 // same key, merge the entries. Otherwise, copy the entry and merge
681 // it with an empty entry.
682 for (ptr_const_iterator MI = Other.bottom_up_ptr_begin(),
683 ME = Other.bottom_up_ptr_end(); MI != ME; ++MI) {
684 std::pair<ptr_iterator, bool> Pair = PerPtrBottomUp.insert(*MI);
685 Pair.first->second.Merge(Pair.second ? PtrState() : MI->second,
686 /*TopDown=*/false);
687 }
688
Dan Gohman7e315fc32011-08-11 21:06:32 +0000689 // For each entry in our set, if the other set doesn't have an entry
John McCalld935e9c2011-06-15 23:37:01 +0000690 // with the same key, force it to merge with an empty entry.
691 for (ptr_iterator MI = bottom_up_ptr_begin(),
692 ME = bottom_up_ptr_end(); MI != ME; ++MI)
693 if (Other.PerPtrBottomUp.find(MI->first) == Other.PerPtrBottomUp.end())
694 MI->second.Merge(PtrState(), /*TopDown=*/false);
695}
696
Michael Gottesman81b1d432013-03-26 00:42:04 +0000697// Only enable ARC Annotations if we are building a debug version of
698// libObjCARCOpts.
699#ifndef NDEBUG
700#define ARC_ANNOTATIONS
701#endif
702
703// Define some macros along the lines of DEBUG and some helper functions to make
704// it cleaner to create annotations in the source code and to no-op when not
705// building in debug mode.
706#ifdef ARC_ANNOTATIONS
707
708#include "llvm/Support/CommandLine.h"
709
710/// Enable/disable ARC sequence annotations.
711static cl::opt<bool>
Michael Gottesman6806b512013-04-17 20:48:03 +0000712EnableARCAnnotations("enable-objc-arc-annotations", cl::init(false),
713 cl::desc("Enable emission of arc data flow analysis "
714 "annotations"));
Michael Gottesmanffef24f2013-04-17 20:48:01 +0000715static cl::opt<bool>
Michael Gottesmanadb921a2013-04-17 21:03:53 +0000716DisableCheckForCFGHazards("disable-objc-arc-checkforcfghazards", cl::init(false),
717 cl::desc("Disable check for cfg hazards when "
718 "annotating"));
Michael Gottesman81b1d432013-03-26 00:42:04 +0000719
720/// This function appends a unique ARCAnnotationProvenanceSourceMDKind id to an
721/// instruction so that we can track backwards when post processing via the llvm
722/// arc annotation processor tool. If the function is an
723static MDString *AppendMDNodeToSourcePtr(unsigned NodeId,
724 Value *Ptr) {
725 MDString *Hash = 0;
726
727 // If pointer is a result of an instruction and it does not have a source
728 // MDNode it, attach a new MDNode onto it. If pointer is a result of
729 // an instruction and does have a source MDNode attached to it, return a
730 // reference to said Node. Otherwise just return 0.
731 if (Instruction *Inst = dyn_cast<Instruction>(Ptr)) {
732 MDNode *Node;
733 if (!(Node = Inst->getMetadata(NodeId))) {
734 // We do not have any node. Generate and attatch the hash MDString to the
735 // instruction.
736
737 // We just use an MDString to ensure that this metadata gets written out
738 // of line at the module level and to provide a very simple format
739 // encoding the information herein. Both of these makes it simpler to
740 // parse the annotations by a simple external program.
741 std::string Str;
742 raw_string_ostream os(Str);
743 os << "(" << Inst->getParent()->getParent()->getName() << ",%"
744 << Inst->getName() << ")";
745
746 Hash = MDString::get(Inst->getContext(), os.str());
747 Inst->setMetadata(NodeId, MDNode::get(Inst->getContext(),Hash));
748 } else {
749 // We have a node. Grab its hash and return it.
750 assert(Node->getNumOperands() == 1 &&
751 "An ARCAnnotationProvenanceSourceMDKind can only have 1 operand.");
752 Hash = cast<MDString>(Node->getOperand(0));
753 }
754 } else if (Argument *Arg = dyn_cast<Argument>(Ptr)) {
755 std::string str;
756 raw_string_ostream os(str);
757 os << "(" << Arg->getParent()->getName() << ",%" << Arg->getName()
758 << ")";
759 Hash = MDString::get(Arg->getContext(), os.str());
760 }
761
762 return Hash;
763}
764
Michael Gottesmancd4de0f2013-03-26 00:42:09 +0000765static std::string SequenceToString(Sequence A) {
766 std::string str;
767 raw_string_ostream os(str);
768 os << A;
769 return os.str();
770}
771
Michael Gottesman81b1d432013-03-26 00:42:04 +0000772/// Helper function to change a Sequence into a String object using our overload
773/// for raw_ostream so we only have printing code in one location.
774static MDString *SequenceToMDString(LLVMContext &Context,
775 Sequence A) {
Michael Gottesmancd4de0f2013-03-26 00:42:09 +0000776 return MDString::get(Context, SequenceToString(A));
Michael Gottesman81b1d432013-03-26 00:42:04 +0000777}
778
779/// A simple function to generate a MDNode which describes the change in state
780/// for Value *Ptr caused by Instruction *Inst.
781static void AppendMDNodeToInstForPtr(unsigned NodeId,
782 Instruction *Inst,
783 Value *Ptr,
784 MDString *PtrSourceMDNodeID,
785 Sequence OldSeq,
786 Sequence NewSeq) {
787 MDNode *Node = 0;
788 Value *tmp[3] = {PtrSourceMDNodeID,
789 SequenceToMDString(Inst->getContext(),
790 OldSeq),
791 SequenceToMDString(Inst->getContext(),
792 NewSeq)};
793 Node = MDNode::get(Inst->getContext(),
794 ArrayRef<Value*>(tmp, 3));
795
796 Inst->setMetadata(NodeId, Node);
797}
798
Michael Gottesmancd4de0f2013-03-26 00:42:09 +0000799/// Add to the beginning of the basic block llvm.ptr.annotations which show the
800/// state of a pointer at the entrance to a basic block.
801static void GenerateARCBBEntranceAnnotation(const char *Name, BasicBlock *BB,
802 Value *Ptr, Sequence Seq) {
803 Module *M = BB->getParent()->getParent();
804 LLVMContext &C = M->getContext();
805 Type *I8X = PointerType::getUnqual(Type::getInt8Ty(C));
806 Type *I8XX = PointerType::getUnqual(I8X);
807 Type *Params[] = {I8XX, I8XX};
808 FunctionType *FTy = FunctionType::get(Type::getVoidTy(C),
809 ArrayRef<Type*>(Params, 2),
810 /*isVarArg=*/false);
811 Constant *Callee = M->getOrInsertFunction(Name, FTy);
Michael Gottesman60f6b282013-03-29 05:13:07 +0000812
813 IRBuilder<> Builder(BB, BB->getFirstInsertionPt());
814
Michael Gottesmancd4de0f2013-03-26 00:42:09 +0000815 Value *PtrName;
816 StringRef Tmp = Ptr->getName();
817 if (0 == (PtrName = M->getGlobalVariable(Tmp, true))) {
818 Value *ActualPtrName = Builder.CreateGlobalStringPtr(Tmp,
819 Tmp + "_STR");
820 PtrName = new GlobalVariable(*M, I8X, true, GlobalVariable::InternalLinkage,
Michael Gottesman60f6b282013-03-29 05:13:07 +0000821 cast<Constant>(ActualPtrName), Tmp);
Michael Gottesmancd4de0f2013-03-26 00:42:09 +0000822 }
823
824 Value *S;
825 std::string SeqStr = SequenceToString(Seq);
826 if (0 == (S = M->getGlobalVariable(SeqStr, true))) {
827 Value *ActualPtrName = Builder.CreateGlobalStringPtr(SeqStr,
828 SeqStr + "_STR");
829 S = new GlobalVariable(*M, I8X, true, GlobalVariable::InternalLinkage,
830 cast<Constant>(ActualPtrName), SeqStr);
831 }
832
833 Builder.CreateCall2(Callee, PtrName, S);
834}
835
836/// Add to the end of the basic block llvm.ptr.annotations which show the state
837/// of the pointer at the bottom of the basic block.
838static void GenerateARCBBTerminatorAnnotation(const char *Name, BasicBlock *BB,
839 Value *Ptr, Sequence Seq) {
840 Module *M = BB->getParent()->getParent();
841 LLVMContext &C = M->getContext();
842 Type *I8X = PointerType::getUnqual(Type::getInt8Ty(C));
843 Type *I8XX = PointerType::getUnqual(I8X);
844 Type *Params[] = {I8XX, I8XX};
845 FunctionType *FTy = FunctionType::get(Type::getVoidTy(C),
846 ArrayRef<Type*>(Params, 2),
847 /*isVarArg=*/false);
848 Constant *Callee = M->getOrInsertFunction(Name, FTy);
Michael Gottesman60f6b282013-03-29 05:13:07 +0000849
850 IRBuilder<> Builder(BB, llvm::prior(BB->end()));
851
Michael Gottesmancd4de0f2013-03-26 00:42:09 +0000852 Value *PtrName;
853 StringRef Tmp = Ptr->getName();
854 if (0 == (PtrName = M->getGlobalVariable(Tmp, true))) {
855 Value *ActualPtrName = Builder.CreateGlobalStringPtr(Tmp,
856 Tmp + "_STR");
857 PtrName = new GlobalVariable(*M, I8X, true, GlobalVariable::InternalLinkage,
Michael Gottesman60f6b282013-03-29 05:13:07 +0000858 cast<Constant>(ActualPtrName), Tmp);
Michael Gottesmancd4de0f2013-03-26 00:42:09 +0000859 }
860
861 Value *S;
862 std::string SeqStr = SequenceToString(Seq);
863 if (0 == (S = M->getGlobalVariable(SeqStr, true))) {
864 Value *ActualPtrName = Builder.CreateGlobalStringPtr(SeqStr,
865 SeqStr + "_STR");
866 S = new GlobalVariable(*M, I8X, true, GlobalVariable::InternalLinkage,
867 cast<Constant>(ActualPtrName), SeqStr);
868 }
Michael Gottesman60f6b282013-03-29 05:13:07 +0000869 Builder.CreateCall2(Callee, PtrName, S);
Michael Gottesmancd4de0f2013-03-26 00:42:09 +0000870}
871
Michael Gottesman81b1d432013-03-26 00:42:04 +0000872/// Adds a source annotation to pointer and a state change annotation to Inst
873/// referencing the source annotation and the old/new state of pointer.
874static void GenerateARCAnnotation(unsigned InstMDId,
875 unsigned PtrMDId,
876 Instruction *Inst,
877 Value *Ptr,
878 Sequence OldSeq,
879 Sequence NewSeq) {
880 if (EnableARCAnnotations) {
881 // First generate the source annotation on our pointer. This will return an
882 // MDString* if Ptr actually comes from an instruction implying we can put
883 // in a source annotation. If AppendMDNodeToSourcePtr returns 0 (i.e. NULL),
884 // then we know that our pointer is from an Argument so we put a reference
885 // to the argument number.
886 //
887 // The point of this is to make it easy for the
888 // llvm-arc-annotation-processor tool to cross reference where the source
889 // pointer is in the LLVM IR since the LLVM IR parser does not submit such
890 // information via debug info for backends to use (since why would anyone
891 // need such a thing from LLVM IR besides in non standard cases
892 // [i.e. this]).
893 MDString *SourcePtrMDNode =
894 AppendMDNodeToSourcePtr(PtrMDId, Ptr);
895 AppendMDNodeToInstForPtr(InstMDId, Inst, Ptr, SourcePtrMDNode, OldSeq,
896 NewSeq);
897 }
898}
899
900// The actual interface for accessing the above functionality is defined via
901// some simple macros which are defined below. We do this so that the user does
902// not need to pass in what metadata id is needed resulting in cleaner code and
903// additionally since it provides an easy way to conditionally no-op all
904// annotation support in a non-debug build.
905
906/// Use this macro to annotate a sequence state change when processing
907/// instructions bottom up,
908#define ANNOTATE_BOTTOMUP(inst, ptr, old, new) \
909 GenerateARCAnnotation(ARCAnnotationBottomUpMDKind, \
910 ARCAnnotationProvenanceSourceMDKind, (inst), \
911 const_cast<Value*>(ptr), (old), (new))
912/// Use this macro to annotate a sequence state change when processing
913/// instructions top down.
914#define ANNOTATE_TOPDOWN(inst, ptr, old, new) \
915 GenerateARCAnnotation(ARCAnnotationTopDownMDKind, \
916 ARCAnnotationProvenanceSourceMDKind, (inst), \
917 const_cast<Value*>(ptr), (old), (new))
918
Michael Gottesman43e7e002013-04-03 22:41:59 +0000919#define ANNOTATE_BB(_states, _bb, _name, _type, _direction) \
920 do { \
Michael Gottesman89279f82013-04-05 18:10:41 +0000921 if (EnableARCAnnotations) { \
922 for(BBState::ptr_const_iterator I = (_states)._direction##_ptr_begin(), \
Michael Gottesman43e7e002013-04-03 22:41:59 +0000923 E = (_states)._direction##_ptr_end(); I != E; ++I) { \
Michael Gottesman89279f82013-04-05 18:10:41 +0000924 Value *Ptr = const_cast<Value*>(I->first); \
925 Sequence Seq = I->second.GetSeq(); \
926 GenerateARCBB ## _type ## Annotation(_name, (_bb), Ptr, Seq); \
927 } \
Michael Gottesman43e7e002013-04-03 22:41:59 +0000928 } \
Michael Gottesman89279f82013-04-05 18:10:41 +0000929 } while (0)
Michael Gottesman43e7e002013-04-03 22:41:59 +0000930
Michael Gottesman89279f82013-04-05 18:10:41 +0000931#define ANNOTATE_BOTTOMUP_BBSTART(_states, _basicblock) \
Michael Gottesman43e7e002013-04-03 22:41:59 +0000932 ANNOTATE_BB(_states, _basicblock, "llvm.arc.annotation.bottomup.bbstart", \
933 Entrance, bottom_up)
Michael Gottesman89279f82013-04-05 18:10:41 +0000934#define ANNOTATE_BOTTOMUP_BBEND(_states, _basicblock) \
935 ANNOTATE_BB(_states, _basicblock, "llvm.arc.annotation.bottomup.bbend", \
Michael Gottesman43e7e002013-04-03 22:41:59 +0000936 Terminator, bottom_up)
Michael Gottesman89279f82013-04-05 18:10:41 +0000937#define ANNOTATE_TOPDOWN_BBSTART(_states, _basicblock) \
938 ANNOTATE_BB(_states, _basicblock, "llvm.arc.annotation.topdown.bbstart", \
Michael Gottesman43e7e002013-04-03 22:41:59 +0000939 Entrance, top_down)
Michael Gottesman89279f82013-04-05 18:10:41 +0000940#define ANNOTATE_TOPDOWN_BBEND(_states, _basicblock) \
941 ANNOTATE_BB(_states, _basicblock, "llvm.arc.annotation.topdown.bbend", \
Michael Gottesman43e7e002013-04-03 22:41:59 +0000942 Terminator, top_down)
943
Michael Gottesman81b1d432013-03-26 00:42:04 +0000944#else // !ARC_ANNOTATION
945// If annotations are off, noop.
946#define ANNOTATE_BOTTOMUP(inst, ptr, old, new)
947#define ANNOTATE_TOPDOWN(inst, ptr, old, new)
Michael Gottesman43e7e002013-04-03 22:41:59 +0000948#define ANNOTATE_BOTTOMUP_BBSTART(states, basicblock)
949#define ANNOTATE_BOTTOMUP_BBEND(states, basicblock)
950#define ANNOTATE_TOPDOWN_BBSTART(states, basicblock)
951#define ANNOTATE_TOPDOWN_BBEND(states, basicblock)
Michael Gottesman81b1d432013-03-26 00:42:04 +0000952#endif // !ARC_ANNOTATION
953
John McCalld935e9c2011-06-15 23:37:01 +0000954namespace {
Michael Gottesman97e3df02013-01-14 00:35:14 +0000955 /// \brief The main ARC optimization pass.
John McCalld935e9c2011-06-15 23:37:01 +0000956 class ObjCARCOpt : public FunctionPass {
957 bool Changed;
958 ProvenanceAnalysis PA;
959
Michael Gottesman97e3df02013-01-14 00:35:14 +0000960 /// A flag indicating whether this optimization pass should run.
Dan Gohmanceaac7c2011-06-20 23:20:43 +0000961 bool Run;
962
Michael Gottesman97e3df02013-01-14 00:35:14 +0000963 /// Declarations for ObjC runtime functions, for use in creating calls to
964 /// them. These are initialized lazily to avoid cluttering up the Module
965 /// with unused declarations.
John McCalld935e9c2011-06-15 23:37:01 +0000966
Michael Gottesman97e3df02013-01-14 00:35:14 +0000967 /// Declaration for ObjC runtime function
968 /// objc_retainAutoreleasedReturnValue.
969 Constant *RetainRVCallee;
970 /// Declaration for ObjC runtime function objc_autoreleaseReturnValue.
971 Constant *AutoreleaseRVCallee;
972 /// Declaration for ObjC runtime function objc_release.
973 Constant *ReleaseCallee;
974 /// Declaration for ObjC runtime function objc_retain.
975 Constant *RetainCallee;
976 /// Declaration for ObjC runtime function objc_retainBlock.
977 Constant *RetainBlockCallee;
978 /// Declaration for ObjC runtime function objc_autorelease.
979 Constant *AutoreleaseCallee;
980
981 /// Flags which determine whether each of the interesting runtine functions
982 /// is in fact used in the current function.
John McCalld935e9c2011-06-15 23:37:01 +0000983 unsigned UsedInThisFunction;
984
Michael Gottesman97e3df02013-01-14 00:35:14 +0000985 /// The Metadata Kind for clang.imprecise_release metadata.
John McCalld935e9c2011-06-15 23:37:01 +0000986 unsigned ImpreciseReleaseMDKind;
987
Michael Gottesman97e3df02013-01-14 00:35:14 +0000988 /// The Metadata Kind for clang.arc.copy_on_escape metadata.
Dan Gohmana7107f92011-10-17 22:53:25 +0000989 unsigned CopyOnEscapeMDKind;
990
Michael Gottesman97e3df02013-01-14 00:35:14 +0000991 /// The Metadata Kind for clang.arc.no_objc_arc_exceptions metadata.
Dan Gohman0155f302012-02-17 18:59:53 +0000992 unsigned NoObjCARCExceptionsMDKind;
993
Michael Gottesman81b1d432013-03-26 00:42:04 +0000994#ifdef ARC_ANNOTATIONS
995 /// The Metadata Kind for llvm.arc.annotation.bottomup metadata.
996 unsigned ARCAnnotationBottomUpMDKind;
997 /// The Metadata Kind for llvm.arc.annotation.topdown metadata.
998 unsigned ARCAnnotationTopDownMDKind;
999 /// The Metadata Kind for llvm.arc.annotation.provenancesource metadata.
1000 unsigned ARCAnnotationProvenanceSourceMDKind;
1001#endif // ARC_ANNOATIONS
1002
John McCalld935e9c2011-06-15 23:37:01 +00001003 Constant *getRetainRVCallee(Module *M);
1004 Constant *getAutoreleaseRVCallee(Module *M);
1005 Constant *getReleaseCallee(Module *M);
1006 Constant *getRetainCallee(Module *M);
Dan Gohman6320f522011-07-22 22:29:21 +00001007 Constant *getRetainBlockCallee(Module *M);
John McCalld935e9c2011-06-15 23:37:01 +00001008 Constant *getAutoreleaseCallee(Module *M);
1009
Dan Gohman728db492012-01-13 00:39:07 +00001010 bool IsRetainBlockOptimizable(const Instruction *Inst);
1011
John McCalld935e9c2011-06-15 23:37:01 +00001012 void OptimizeRetainCall(Function &F, Instruction *Retain);
1013 bool OptimizeRetainRVCall(Function &F, Instruction *RetainRV);
Michael Gottesman556ff612013-01-12 01:25:19 +00001014 void OptimizeAutoreleaseRVCall(Function &F, Instruction *AutoreleaseRV,
1015 InstructionClass &Class);
Michael Gottesman158fdf62013-03-28 20:11:19 +00001016 bool OptimizeRetainBlockCall(Function &F, Instruction *RetainBlock,
1017 InstructionClass &Class);
John McCalld935e9c2011-06-15 23:37:01 +00001018 void OptimizeIndividualCalls(Function &F);
1019
1020 void CheckForCFGHazards(const BasicBlock *BB,
1021 DenseMap<const BasicBlock *, BBState> &BBStates,
1022 BBState &MyStates) const;
Dan Gohman817a7c62012-03-22 18:24:56 +00001023 bool VisitInstructionBottomUp(Instruction *Inst,
Dan Gohman5c70fad2012-03-23 17:47:54 +00001024 BasicBlock *BB,
Dan Gohman817a7c62012-03-22 18:24:56 +00001025 MapVector<Value *, RRInfo> &Retains,
1026 BBState &MyStates);
John McCalld935e9c2011-06-15 23:37:01 +00001027 bool VisitBottomUp(BasicBlock *BB,
1028 DenseMap<const BasicBlock *, BBState> &BBStates,
1029 MapVector<Value *, RRInfo> &Retains);
Dan Gohman817a7c62012-03-22 18:24:56 +00001030 bool VisitInstructionTopDown(Instruction *Inst,
1031 DenseMap<Value *, RRInfo> &Releases,
1032 BBState &MyStates);
John McCalld935e9c2011-06-15 23:37:01 +00001033 bool VisitTopDown(BasicBlock *BB,
1034 DenseMap<const BasicBlock *, BBState> &BBStates,
1035 DenseMap<Value *, RRInfo> &Releases);
1036 bool Visit(Function &F,
1037 DenseMap<const BasicBlock *, BBState> &BBStates,
1038 MapVector<Value *, RRInfo> &Retains,
1039 DenseMap<Value *, RRInfo> &Releases);
1040
1041 void MoveCalls(Value *Arg, RRInfo &RetainsToMove, RRInfo &ReleasesToMove,
1042 MapVector<Value *, RRInfo> &Retains,
1043 DenseMap<Value *, RRInfo> &Releases,
Dan Gohman6320f522011-07-22 22:29:21 +00001044 SmallVectorImpl<Instruction *> &DeadInsts,
1045 Module *M);
John McCalld935e9c2011-06-15 23:37:01 +00001046
Michael Gottesman9de6f962013-01-22 21:49:00 +00001047 bool ConnectTDBUTraversals(DenseMap<const BasicBlock *, BBState> &BBStates,
1048 MapVector<Value *, RRInfo> &Retains,
1049 DenseMap<Value *, RRInfo> &Releases,
1050 Module *M,
1051 SmallVector<Instruction *, 4> &NewRetains,
1052 SmallVector<Instruction *, 4> &NewReleases,
1053 SmallVector<Instruction *, 8> &DeadInsts,
1054 RRInfo &RetainsToMove,
1055 RRInfo &ReleasesToMove,
1056 Value *Arg,
1057 bool KnownSafe,
1058 bool &AnyPairsCompletelyEliminated);
1059
John McCalld935e9c2011-06-15 23:37:01 +00001060 bool PerformCodePlacement(DenseMap<const BasicBlock *, BBState> &BBStates,
1061 MapVector<Value *, RRInfo> &Retains,
Dan Gohman6320f522011-07-22 22:29:21 +00001062 DenseMap<Value *, RRInfo> &Releases,
1063 Module *M);
John McCalld935e9c2011-06-15 23:37:01 +00001064
1065 void OptimizeWeakCalls(Function &F);
1066
1067 bool OptimizeSequences(Function &F);
1068
1069 void OptimizeReturns(Function &F);
1070
1071 virtual void getAnalysisUsage(AnalysisUsage &AU) const;
1072 virtual bool doInitialization(Module &M);
1073 virtual bool runOnFunction(Function &F);
1074 virtual void releaseMemory();
1075
1076 public:
1077 static char ID;
1078 ObjCARCOpt() : FunctionPass(ID) {
1079 initializeObjCARCOptPass(*PassRegistry::getPassRegistry());
1080 }
1081 };
1082}
1083
1084char ObjCARCOpt::ID = 0;
1085INITIALIZE_PASS_BEGIN(ObjCARCOpt,
1086 "objc-arc", "ObjC ARC optimization", false, false)
1087INITIALIZE_PASS_DEPENDENCY(ObjCARCAliasAnalysis)
1088INITIALIZE_PASS_END(ObjCARCOpt,
1089 "objc-arc", "ObjC ARC optimization", false, false)
1090
1091Pass *llvm::createObjCARCOptPass() {
1092 return new ObjCARCOpt();
1093}
1094
1095void ObjCARCOpt::getAnalysisUsage(AnalysisUsage &AU) const {
1096 AU.addRequired<ObjCARCAliasAnalysis>();
1097 AU.addRequired<AliasAnalysis>();
1098 // ARC optimization doesn't currently split critical edges.
1099 AU.setPreservesCFG();
1100}
1101
Dan Gohman728db492012-01-13 00:39:07 +00001102bool ObjCARCOpt::IsRetainBlockOptimizable(const Instruction *Inst) {
1103 // Without the magic metadata tag, we have to assume this might be an
1104 // objc_retainBlock call inserted to convert a block pointer to an id,
1105 // in which case it really is needed.
1106 if (!Inst->getMetadata(CopyOnEscapeMDKind))
1107 return false;
1108
1109 // If the pointer "escapes" (not including being used in a call),
1110 // the copy may be needed.
Michael Gottesman774d2c02013-01-29 21:00:52 +00001111 if (DoesRetainableObjPtrEscape(Inst))
Dan Gohman728db492012-01-13 00:39:07 +00001112 return false;
1113
1114 // Otherwise, it's not needed.
1115 return true;
1116}
1117
John McCalld935e9c2011-06-15 23:37:01 +00001118Constant *ObjCARCOpt::getRetainRVCallee(Module *M) {
1119 if (!RetainRVCallee) {
1120 LLVMContext &C = M->getContext();
Jay Foadb804a2b2011-07-12 14:06:48 +00001121 Type *I8X = PointerType::getUnqual(Type::getInt8Ty(C));
Dan Gohman41375a32012-05-08 23:39:44 +00001122 Type *Params[] = { I8X };
1123 FunctionType *FTy = FunctionType::get(I8X, Params, /*isVarArg=*/false);
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001124 AttributeSet Attribute =
Bill Wendling09175b32013-01-22 21:15:51 +00001125 AttributeSet().addAttribute(M->getContext(), AttributeSet::FunctionIndex,
1126 Attribute::NoUnwind);
John McCalld935e9c2011-06-15 23:37:01 +00001127 RetainRVCallee =
1128 M->getOrInsertFunction("objc_retainAutoreleasedReturnValue", FTy,
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001129 Attribute);
John McCalld935e9c2011-06-15 23:37:01 +00001130 }
1131 return RetainRVCallee;
1132}
1133
1134Constant *ObjCARCOpt::getAutoreleaseRVCallee(Module *M) {
1135 if (!AutoreleaseRVCallee) {
1136 LLVMContext &C = M->getContext();
Jay Foadb804a2b2011-07-12 14:06:48 +00001137 Type *I8X = PointerType::getUnqual(Type::getInt8Ty(C));
Dan Gohman41375a32012-05-08 23:39:44 +00001138 Type *Params[] = { I8X };
1139 FunctionType *FTy = FunctionType::get(I8X, Params, /*isVarArg=*/false);
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001140 AttributeSet Attribute =
Bill Wendling09175b32013-01-22 21:15:51 +00001141 AttributeSet().addAttribute(M->getContext(), AttributeSet::FunctionIndex,
1142 Attribute::NoUnwind);
John McCalld935e9c2011-06-15 23:37:01 +00001143 AutoreleaseRVCallee =
1144 M->getOrInsertFunction("objc_autoreleaseReturnValue", FTy,
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001145 Attribute);
John McCalld935e9c2011-06-15 23:37:01 +00001146 }
1147 return AutoreleaseRVCallee;
1148}
1149
1150Constant *ObjCARCOpt::getReleaseCallee(Module *M) {
1151 if (!ReleaseCallee) {
1152 LLVMContext &C = M->getContext();
Dan Gohman41375a32012-05-08 23:39:44 +00001153 Type *Params[] = { PointerType::getUnqual(Type::getInt8Ty(C)) };
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001154 AttributeSet Attribute =
Bill Wendling09175b32013-01-22 21:15:51 +00001155 AttributeSet().addAttribute(M->getContext(), AttributeSet::FunctionIndex,
1156 Attribute::NoUnwind);
John McCalld935e9c2011-06-15 23:37:01 +00001157 ReleaseCallee =
1158 M->getOrInsertFunction(
1159 "objc_release",
1160 FunctionType::get(Type::getVoidTy(C), Params, /*isVarArg=*/false),
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001161 Attribute);
John McCalld935e9c2011-06-15 23:37:01 +00001162 }
1163 return ReleaseCallee;
1164}
1165
1166Constant *ObjCARCOpt::getRetainCallee(Module *M) {
1167 if (!RetainCallee) {
1168 LLVMContext &C = M->getContext();
Dan Gohman41375a32012-05-08 23:39:44 +00001169 Type *Params[] = { PointerType::getUnqual(Type::getInt8Ty(C)) };
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001170 AttributeSet Attribute =
Bill Wendling09175b32013-01-22 21:15:51 +00001171 AttributeSet().addAttribute(M->getContext(), AttributeSet::FunctionIndex,
1172 Attribute::NoUnwind);
John McCalld935e9c2011-06-15 23:37:01 +00001173 RetainCallee =
1174 M->getOrInsertFunction(
1175 "objc_retain",
1176 FunctionType::get(Params[0], Params, /*isVarArg=*/false),
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001177 Attribute);
John McCalld935e9c2011-06-15 23:37:01 +00001178 }
1179 return RetainCallee;
1180}
1181
Dan Gohman6320f522011-07-22 22:29:21 +00001182Constant *ObjCARCOpt::getRetainBlockCallee(Module *M) {
1183 if (!RetainBlockCallee) {
1184 LLVMContext &C = M->getContext();
Dan Gohman41375a32012-05-08 23:39:44 +00001185 Type *Params[] = { PointerType::getUnqual(Type::getInt8Ty(C)) };
Dan Gohmanfca43c22011-09-14 18:33:34 +00001186 // objc_retainBlock is not nounwind because it calls user copy constructors
1187 // which could theoretically throw.
Dan Gohman6320f522011-07-22 22:29:21 +00001188 RetainBlockCallee =
1189 M->getOrInsertFunction(
1190 "objc_retainBlock",
1191 FunctionType::get(Params[0], Params, /*isVarArg=*/false),
Bill Wendlinge94d8432012-12-07 23:16:57 +00001192 AttributeSet());
Dan Gohman6320f522011-07-22 22:29:21 +00001193 }
1194 return RetainBlockCallee;
1195}
1196
John McCalld935e9c2011-06-15 23:37:01 +00001197Constant *ObjCARCOpt::getAutoreleaseCallee(Module *M) {
1198 if (!AutoreleaseCallee) {
1199 LLVMContext &C = M->getContext();
Dan Gohman41375a32012-05-08 23:39:44 +00001200 Type *Params[] = { PointerType::getUnqual(Type::getInt8Ty(C)) };
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001201 AttributeSet Attribute =
Bill Wendling09175b32013-01-22 21:15:51 +00001202 AttributeSet().addAttribute(M->getContext(), AttributeSet::FunctionIndex,
1203 Attribute::NoUnwind);
John McCalld935e9c2011-06-15 23:37:01 +00001204 AutoreleaseCallee =
1205 M->getOrInsertFunction(
1206 "objc_autorelease",
1207 FunctionType::get(Params[0], Params, /*isVarArg=*/false),
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001208 Attribute);
John McCalld935e9c2011-06-15 23:37:01 +00001209 }
1210 return AutoreleaseCallee;
1211}
1212
Michael Gottesman97e3df02013-01-14 00:35:14 +00001213/// Turn objc_retain into objc_retainAutoreleasedReturnValue if the operand is a
1214/// return value.
John McCalld935e9c2011-06-15 23:37:01 +00001215void
1216ObjCARCOpt::OptimizeRetainCall(Function &F, Instruction *Retain) {
Dan Gohmandae33492012-04-27 18:56:31 +00001217 ImmutableCallSite CS(GetObjCArg(Retain));
1218 const Instruction *Call = CS.getInstruction();
John McCalld935e9c2011-06-15 23:37:01 +00001219 if (!Call) return;
1220 if (Call->getParent() != Retain->getParent()) return;
1221
1222 // Check that the call is next to the retain.
Dan Gohmandae33492012-04-27 18:56:31 +00001223 BasicBlock::const_iterator I = Call;
John McCalld935e9c2011-06-15 23:37:01 +00001224 ++I;
Michael Gottesman65c24812013-03-25 09:27:43 +00001225 while (IsNoopInstruction(I)) ++I;
John McCalld935e9c2011-06-15 23:37:01 +00001226 if (&*I != Retain)
1227 return;
1228
1229 // Turn it to an objc_retainAutoreleasedReturnValue..
1230 Changed = true;
1231 ++NumPeeps;
Michael Gottesman10426b52013-01-07 21:26:07 +00001232
Michael Gottesman89279f82013-04-05 18:10:41 +00001233 DEBUG(dbgs() << "Transforming objc_retain => "
1234 "objc_retainAutoreleasedReturnValue since the operand is a "
1235 "return value.\nOld: "<< *Retain << "\n");
Michael Gottesman10426b52013-01-07 21:26:07 +00001236
John McCalld935e9c2011-06-15 23:37:01 +00001237 cast<CallInst>(Retain)->setCalledFunction(getRetainRVCallee(F.getParent()));
Michael Gottesman1e00ac62013-01-04 21:30:38 +00001238
Michael Gottesman89279f82013-04-05 18:10:41 +00001239 DEBUG(dbgs() << "New: " << *Retain << "\n");
John McCalld935e9c2011-06-15 23:37:01 +00001240}
1241
Michael Gottesman97e3df02013-01-14 00:35:14 +00001242/// Turn objc_retainAutoreleasedReturnValue into objc_retain if the operand is
1243/// not a return value. Or, if it can be paired with an
1244/// objc_autoreleaseReturnValue, delete the pair and return true.
John McCalld935e9c2011-06-15 23:37:01 +00001245bool
1246ObjCARCOpt::OptimizeRetainRVCall(Function &F, Instruction *RetainRV) {
Dan Gohmane3ed2b02012-03-23 18:09:00 +00001247 // Check for the argument being from an immediately preceding call or invoke.
Dan Gohmandae33492012-04-27 18:56:31 +00001248 const Value *Arg = GetObjCArg(RetainRV);
1249 ImmutableCallSite CS(Arg);
1250 if (const Instruction *Call = CS.getInstruction()) {
John McCalld935e9c2011-06-15 23:37:01 +00001251 if (Call->getParent() == RetainRV->getParent()) {
Dan Gohmandae33492012-04-27 18:56:31 +00001252 BasicBlock::const_iterator I = Call;
John McCalld935e9c2011-06-15 23:37:01 +00001253 ++I;
Michael Gottesman65c24812013-03-25 09:27:43 +00001254 while (IsNoopInstruction(I)) ++I;
John McCalld935e9c2011-06-15 23:37:01 +00001255 if (&*I == RetainRV)
1256 return false;
Dan Gohmandae33492012-04-27 18:56:31 +00001257 } else if (const InvokeInst *II = dyn_cast<InvokeInst>(Call)) {
Dan Gohmane3ed2b02012-03-23 18:09:00 +00001258 BasicBlock *RetainRVParent = RetainRV->getParent();
1259 if (II->getNormalDest() == RetainRVParent) {
Dan Gohmandae33492012-04-27 18:56:31 +00001260 BasicBlock::const_iterator I = RetainRVParent->begin();
Michael Gottesman65c24812013-03-25 09:27:43 +00001261 while (IsNoopInstruction(I)) ++I;
Dan Gohmane3ed2b02012-03-23 18:09:00 +00001262 if (&*I == RetainRV)
1263 return false;
1264 }
John McCalld935e9c2011-06-15 23:37:01 +00001265 }
Dan Gohmane3ed2b02012-03-23 18:09:00 +00001266 }
John McCalld935e9c2011-06-15 23:37:01 +00001267
1268 // Check for being preceded by an objc_autoreleaseReturnValue on the same
1269 // pointer. In this case, we can delete the pair.
1270 BasicBlock::iterator I = RetainRV, Begin = RetainRV->getParent()->begin();
1271 if (I != Begin) {
Michael Gottesman65c24812013-03-25 09:27:43 +00001272 do --I; while (I != Begin && IsNoopInstruction(I));
John McCalld935e9c2011-06-15 23:37:01 +00001273 if (GetBasicInstructionClass(I) == IC_AutoreleaseRV &&
1274 GetObjCArg(I) == Arg) {
1275 Changed = true;
1276 ++NumPeeps;
Michael Gottesman10426b52013-01-07 21:26:07 +00001277
Michael Gottesman89279f82013-04-05 18:10:41 +00001278 DEBUG(dbgs() << "Erasing autoreleaseRV,retainRV pair: " << *I << "\n"
1279 << "Erasing " << *RetainRV << "\n");
Michael Gottesman10426b52013-01-07 21:26:07 +00001280
John McCalld935e9c2011-06-15 23:37:01 +00001281 EraseInstruction(I);
1282 EraseInstruction(RetainRV);
1283 return true;
1284 }
1285 }
1286
1287 // Turn it to a plain objc_retain.
1288 Changed = true;
1289 ++NumPeeps;
Michael Gottesman10426b52013-01-07 21:26:07 +00001290
Michael Gottesman89279f82013-04-05 18:10:41 +00001291 DEBUG(dbgs() << "Transforming objc_retainAutoreleasedReturnValue => "
Michael Gottesmandef07bb2013-01-05 17:55:42 +00001292 "objc_retain since the operand is not a return value.\n"
Michael Gottesman89279f82013-04-05 18:10:41 +00001293 "Old = " << *RetainRV << "\n");
Michael Gottesman10426b52013-01-07 21:26:07 +00001294
John McCalld935e9c2011-06-15 23:37:01 +00001295 cast<CallInst>(RetainRV)->setCalledFunction(getRetainCallee(F.getParent()));
Michael Gottesmandef07bb2013-01-05 17:55:42 +00001296
Michael Gottesman89279f82013-04-05 18:10:41 +00001297 DEBUG(dbgs() << "New = " << *RetainRV << "\n");
Michael Gottesmandef07bb2013-01-05 17:55:42 +00001298
John McCalld935e9c2011-06-15 23:37:01 +00001299 return false;
1300}
1301
Michael Gottesman97e3df02013-01-14 00:35:14 +00001302/// Turn objc_autoreleaseReturnValue into objc_autorelease if the result is not
1303/// used as a return value.
John McCalld935e9c2011-06-15 23:37:01 +00001304void
Michael Gottesman556ff612013-01-12 01:25:19 +00001305ObjCARCOpt::OptimizeAutoreleaseRVCall(Function &F, Instruction *AutoreleaseRV,
1306 InstructionClass &Class) {
John McCalld935e9c2011-06-15 23:37:01 +00001307 // Check for a return of the pointer value.
1308 const Value *Ptr = GetObjCArg(AutoreleaseRV);
Dan Gohman10a18d52011-08-12 00:36:31 +00001309 SmallVector<const Value *, 2> Users;
1310 Users.push_back(Ptr);
1311 do {
1312 Ptr = Users.pop_back_val();
1313 for (Value::const_use_iterator UI = Ptr->use_begin(), UE = Ptr->use_end();
1314 UI != UE; ++UI) {
1315 const User *I = *UI;
1316 if (isa<ReturnInst>(I) || GetBasicInstructionClass(I) == IC_RetainRV)
1317 return;
1318 if (isa<BitCastInst>(I))
1319 Users.push_back(I);
1320 }
1321 } while (!Users.empty());
John McCalld935e9c2011-06-15 23:37:01 +00001322
1323 Changed = true;
1324 ++NumPeeps;
Michael Gottesman1bf69082013-01-06 21:07:11 +00001325
Michael Gottesman89279f82013-04-05 18:10:41 +00001326 DEBUG(dbgs() << "Transforming objc_autoreleaseReturnValue => "
Michael Gottesman1bf69082013-01-06 21:07:11 +00001327 "objc_autorelease since its operand is not used as a return "
1328 "value.\n"
Michael Gottesman89279f82013-04-05 18:10:41 +00001329 "Old = " << *AutoreleaseRV << "\n");
Michael Gottesman1bf69082013-01-06 21:07:11 +00001330
Michael Gottesmanc9656fa2013-01-12 01:25:15 +00001331 CallInst *AutoreleaseRVCI = cast<CallInst>(AutoreleaseRV);
1332 AutoreleaseRVCI->
John McCalld935e9c2011-06-15 23:37:01 +00001333 setCalledFunction(getAutoreleaseCallee(F.getParent()));
Michael Gottesmanc9656fa2013-01-12 01:25:15 +00001334 AutoreleaseRVCI->setTailCall(false); // Never tail call objc_autorelease.
Michael Gottesman556ff612013-01-12 01:25:19 +00001335 Class = IC_Autorelease;
Michael Gottesman10426b52013-01-07 21:26:07 +00001336
Michael Gottesman89279f82013-04-05 18:10:41 +00001337 DEBUG(dbgs() << "New: " << *AutoreleaseRV << "\n");
Michael Gottesman10426b52013-01-07 21:26:07 +00001338
John McCalld935e9c2011-06-15 23:37:01 +00001339}
1340
Michael Gottesman158fdf62013-03-28 20:11:19 +00001341// \brief Attempt to strength reduce objc_retainBlock calls to objc_retain
1342// calls.
1343//
1344// Specifically: If an objc_retainBlock call has the copy_on_escape metadata and
1345// does not escape (following the rules of block escaping), strength reduce the
1346// objc_retainBlock to an objc_retain.
1347//
1348// TODO: If an objc_retainBlock call is dominated period by a previous
1349// objc_retainBlock call, strength reduce the objc_retainBlock to an
1350// objc_retain.
1351bool
1352ObjCARCOpt::OptimizeRetainBlockCall(Function &F, Instruction *Inst,
1353 InstructionClass &Class) {
1354 assert(GetBasicInstructionClass(Inst) == Class);
1355 assert(IC_RetainBlock == Class);
Michael Gottesman60f6b282013-03-29 05:13:07 +00001356
Michael Gottesman158fdf62013-03-28 20:11:19 +00001357 // If we can not optimize Inst, return false.
1358 if (!IsRetainBlockOptimizable(Inst))
1359 return false;
Michael Gottesman60f6b282013-03-29 05:13:07 +00001360
Michael Gottesman158fdf62013-03-28 20:11:19 +00001361 CallInst *RetainBlock = cast<CallInst>(Inst);
1362 RetainBlock->setCalledFunction(getRetainCallee(F.getParent()));
1363 // Remove copy_on_escape metadata.
1364 RetainBlock->setMetadata(CopyOnEscapeMDKind, 0);
1365 Class = IC_Retain;
Michael Gottesman60f6b282013-03-29 05:13:07 +00001366
Michael Gottesman158fdf62013-03-28 20:11:19 +00001367 return true;
1368}
1369
Michael Gottesman97e3df02013-01-14 00:35:14 +00001370/// Visit each call, one at a time, and make simplifications without doing any
1371/// additional analysis.
John McCalld935e9c2011-06-15 23:37:01 +00001372void ObjCARCOpt::OptimizeIndividualCalls(Function &F) {
Michael Gottesman89279f82013-04-05 18:10:41 +00001373 DEBUG(dbgs() << "\n== ObjCARCOpt::OptimizeIndividualCalls ==\n");
John McCalld935e9c2011-06-15 23:37:01 +00001374 // Reset all the flags in preparation for recomputing them.
1375 UsedInThisFunction = 0;
1376
1377 // Visit all objc_* calls in F.
1378 for (inst_iterator I = inst_begin(&F), E = inst_end(&F); I != E; ) {
1379 Instruction *Inst = &*I++;
Michael Gottesman3f146e22013-01-01 16:05:48 +00001380
John McCalld935e9c2011-06-15 23:37:01 +00001381 InstructionClass Class = GetBasicInstructionClass(Inst);
1382
Michael Gottesman89279f82013-04-05 18:10:41 +00001383 DEBUG(dbgs() << "Visiting: Class: " << Class << "; " << *Inst << "\n");
Michael Gottesman782e3442013-01-17 18:32:34 +00001384
John McCalld935e9c2011-06-15 23:37:01 +00001385 switch (Class) {
1386 default: break;
1387
1388 // Delete no-op casts. These function calls have special semantics, but
1389 // the semantics are entirely implemented via lowering in the front-end,
1390 // so by the time they reach the optimizer, they are just no-op calls
1391 // which return their argument.
1392 //
1393 // There are gray areas here, as the ability to cast reference-counted
1394 // pointers to raw void* and back allows code to break ARC assumptions,
1395 // however these are currently considered to be unimportant.
1396 case IC_NoopCast:
1397 Changed = true;
1398 ++NumNoops;
Michael Gottesman89279f82013-04-05 18:10:41 +00001399 DEBUG(dbgs() << "Erasing no-op cast: " << *Inst << "\n");
John McCalld935e9c2011-06-15 23:37:01 +00001400 EraseInstruction(Inst);
1401 continue;
1402
1403 // If the pointer-to-weak-pointer is null, it's undefined behavior.
1404 case IC_StoreWeak:
1405 case IC_LoadWeak:
1406 case IC_LoadWeakRetained:
1407 case IC_InitWeak:
1408 case IC_DestroyWeak: {
1409 CallInst *CI = cast<CallInst>(Inst);
Michael Gottesman65c24812013-03-25 09:27:43 +00001410 if (IsNullOrUndef(CI->getArgOperand(0))) {
Dan Gohman670f9372012-04-13 18:57:48 +00001411 Changed = true;
Chris Lattner229907c2011-07-18 04:54:35 +00001412 Type *Ty = CI->getArgOperand(0)->getType();
John McCalld935e9c2011-06-15 23:37:01 +00001413 new StoreInst(UndefValue::get(cast<PointerType>(Ty)->getElementType()),
1414 Constant::getNullValue(Ty),
1415 CI);
Michael Gottesman10426b52013-01-07 21:26:07 +00001416 llvm::Value *NewValue = UndefValue::get(CI->getType());
Michael Gottesman89279f82013-04-05 18:10:41 +00001417 DEBUG(dbgs() << "A null pointer-to-weak-pointer is undefined behavior."
1418 "\nOld = " << *CI << "\nNew = " << *NewValue << "\n");
Michael Gottesmanfec61c02013-01-06 21:54:30 +00001419 CI->replaceAllUsesWith(NewValue);
John McCalld935e9c2011-06-15 23:37:01 +00001420 CI->eraseFromParent();
1421 continue;
1422 }
1423 break;
1424 }
1425 case IC_CopyWeak:
1426 case IC_MoveWeak: {
1427 CallInst *CI = cast<CallInst>(Inst);
Michael Gottesman65c24812013-03-25 09:27:43 +00001428 if (IsNullOrUndef(CI->getArgOperand(0)) ||
1429 IsNullOrUndef(CI->getArgOperand(1))) {
Dan Gohman670f9372012-04-13 18:57:48 +00001430 Changed = true;
Chris Lattner229907c2011-07-18 04:54:35 +00001431 Type *Ty = CI->getArgOperand(0)->getType();
John McCalld935e9c2011-06-15 23:37:01 +00001432 new StoreInst(UndefValue::get(cast<PointerType>(Ty)->getElementType()),
1433 Constant::getNullValue(Ty),
1434 CI);
Michael Gottesmanfec61c02013-01-06 21:54:30 +00001435
1436 llvm::Value *NewValue = UndefValue::get(CI->getType());
Michael Gottesman89279f82013-04-05 18:10:41 +00001437 DEBUG(dbgs() << "A null pointer-to-weak-pointer is undefined behavior."
1438 "\nOld = " << *CI << "\nNew = " << *NewValue << "\n");
Michael Gottesman10426b52013-01-07 21:26:07 +00001439
Michael Gottesmanfec61c02013-01-06 21:54:30 +00001440 CI->replaceAllUsesWith(NewValue);
John McCalld935e9c2011-06-15 23:37:01 +00001441 CI->eraseFromParent();
1442 continue;
1443 }
1444 break;
1445 }
Michael Gottesman158fdf62013-03-28 20:11:19 +00001446 case IC_RetainBlock:
1447 // If we strength reduce an objc_retainBlock to amn objc_retain, continue
1448 // onto the objc_retain peephole optimizations. Otherwise break.
1449 if (!OptimizeRetainBlockCall(F, Inst, Class))
1450 break;
1451 // FALLTHROUGH
John McCalld935e9c2011-06-15 23:37:01 +00001452 case IC_Retain:
1453 OptimizeRetainCall(F, Inst);
1454 break;
1455 case IC_RetainRV:
1456 if (OptimizeRetainRVCall(F, Inst))
1457 continue;
1458 break;
1459 case IC_AutoreleaseRV:
Michael Gottesman556ff612013-01-12 01:25:19 +00001460 OptimizeAutoreleaseRVCall(F, Inst, Class);
John McCalld935e9c2011-06-15 23:37:01 +00001461 break;
1462 }
1463
Michael Gottesmanb8c88362013-04-03 02:57:24 +00001464 // objc_autorelease(x) -> objc_release(x) if x is otherwise unused.
John McCalld935e9c2011-06-15 23:37:01 +00001465 if (IsAutorelease(Class) && Inst->use_empty()) {
1466 CallInst *Call = cast<CallInst>(Inst);
1467 const Value *Arg = Call->getArgOperand(0);
1468 Arg = FindSingleUseIdentifiedObject(Arg);
1469 if (Arg) {
1470 Changed = true;
1471 ++NumAutoreleases;
1472
1473 // Create the declaration lazily.
1474 LLVMContext &C = Inst->getContext();
1475 CallInst *NewCall =
1476 CallInst::Create(getReleaseCallee(F.getParent()),
1477 Call->getArgOperand(0), "", Call);
1478 NewCall->setMetadata(ImpreciseReleaseMDKind,
1479 MDNode::get(C, ArrayRef<Value *>()));
Michael Gottesman10426b52013-01-07 21:26:07 +00001480
Michael Gottesman89279f82013-04-05 18:10:41 +00001481 DEBUG(dbgs() << "Replacing autorelease{,RV}(x) with objc_release(x) "
1482 "since x is otherwise unused.\nOld: " << *Call << "\nNew: "
1483 << *NewCall << "\n");
Michael Gottesman10426b52013-01-07 21:26:07 +00001484
John McCalld935e9c2011-06-15 23:37:01 +00001485 EraseInstruction(Call);
1486 Inst = NewCall;
1487 Class = IC_Release;
1488 }
1489 }
1490
1491 // For functions which can never be passed stack arguments, add
1492 // a tail keyword.
1493 if (IsAlwaysTail(Class)) {
1494 Changed = true;
Michael Gottesman89279f82013-04-05 18:10:41 +00001495 DEBUG(dbgs() << "Adding tail keyword to function since it can never be "
1496 "passed stack args: " << *Inst << "\n");
John McCalld935e9c2011-06-15 23:37:01 +00001497 cast<CallInst>(Inst)->setTailCall();
1498 }
1499
Michael Gottesmanc9656fa2013-01-12 01:25:15 +00001500 // Ensure that functions that can never have a "tail" keyword due to the
1501 // semantics of ARC truly do not do so.
1502 if (IsNeverTail(Class)) {
1503 Changed = true;
Michael Gottesman89279f82013-04-05 18:10:41 +00001504 DEBUG(dbgs() << "Removing tail keyword from function: " << *Inst <<
Michael Gottesmanc9656fa2013-01-12 01:25:15 +00001505 "\n");
1506 cast<CallInst>(Inst)->setTailCall(false);
1507 }
1508
John McCalld935e9c2011-06-15 23:37:01 +00001509 // Set nounwind as needed.
1510 if (IsNoThrow(Class)) {
1511 Changed = true;
Michael Gottesman89279f82013-04-05 18:10:41 +00001512 DEBUG(dbgs() << "Found no throw class. Setting nounwind on: " << *Inst
1513 << "\n");
John McCalld935e9c2011-06-15 23:37:01 +00001514 cast<CallInst>(Inst)->setDoesNotThrow();
1515 }
1516
1517 if (!IsNoopOnNull(Class)) {
1518 UsedInThisFunction |= 1 << Class;
1519 continue;
1520 }
1521
1522 const Value *Arg = GetObjCArg(Inst);
1523
1524 // ARC calls with null are no-ops. Delete them.
Michael Gottesman65c24812013-03-25 09:27:43 +00001525 if (IsNullOrUndef(Arg)) {
John McCalld935e9c2011-06-15 23:37:01 +00001526 Changed = true;
1527 ++NumNoops;
Michael Gottesman89279f82013-04-05 18:10:41 +00001528 DEBUG(dbgs() << "ARC calls with null are no-ops. Erasing: " << *Inst
1529 << "\n");
John McCalld935e9c2011-06-15 23:37:01 +00001530 EraseInstruction(Inst);
1531 continue;
1532 }
1533
1534 // Keep track of which of retain, release, autorelease, and retain_block
1535 // are actually present in this function.
1536 UsedInThisFunction |= 1 << Class;
1537
1538 // If Arg is a PHI, and one or more incoming values to the
1539 // PHI are null, and the call is control-equivalent to the PHI, and there
1540 // are no relevant side effects between the PHI and the call, the call
1541 // could be pushed up to just those paths with non-null incoming values.
1542 // For now, don't bother splitting critical edges for this.
1543 SmallVector<std::pair<Instruction *, const Value *>, 4> Worklist;
1544 Worklist.push_back(std::make_pair(Inst, Arg));
1545 do {
1546 std::pair<Instruction *, const Value *> Pair = Worklist.pop_back_val();
1547 Inst = Pair.first;
1548 Arg = Pair.second;
1549
1550 const PHINode *PN = dyn_cast<PHINode>(Arg);
1551 if (!PN) continue;
1552
1553 // Determine if the PHI has any null operands, or any incoming
1554 // critical edges.
1555 bool HasNull = false;
1556 bool HasCriticalEdges = false;
1557 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
1558 Value *Incoming =
1559 StripPointerCastsAndObjCCalls(PN->getIncomingValue(i));
Michael Gottesman65c24812013-03-25 09:27:43 +00001560 if (IsNullOrUndef(Incoming))
John McCalld935e9c2011-06-15 23:37:01 +00001561 HasNull = true;
1562 else if (cast<TerminatorInst>(PN->getIncomingBlock(i)->back())
1563 .getNumSuccessors() != 1) {
1564 HasCriticalEdges = true;
1565 break;
1566 }
1567 }
1568 // If we have null operands and no critical edges, optimize.
1569 if (!HasCriticalEdges && HasNull) {
1570 SmallPtrSet<Instruction *, 4> DependingInstructions;
1571 SmallPtrSet<const BasicBlock *, 4> Visited;
1572
1573 // Check that there is nothing that cares about the reference
1574 // count between the call and the phi.
Dan Gohman8478d762012-04-13 00:59:57 +00001575 switch (Class) {
1576 case IC_Retain:
1577 case IC_RetainBlock:
1578 // These can always be moved up.
1579 break;
1580 case IC_Release:
Dan Gohman41375a32012-05-08 23:39:44 +00001581 // These can't be moved across things that care about the retain
1582 // count.
Dan Gohman8478d762012-04-13 00:59:57 +00001583 FindDependencies(NeedsPositiveRetainCount, Arg,
1584 Inst->getParent(), Inst,
1585 DependingInstructions, Visited, PA);
1586 break;
1587 case IC_Autorelease:
1588 // These can't be moved across autorelease pool scope boundaries.
1589 FindDependencies(AutoreleasePoolBoundary, Arg,
1590 Inst->getParent(), Inst,
1591 DependingInstructions, Visited, PA);
1592 break;
1593 case IC_RetainRV:
1594 case IC_AutoreleaseRV:
1595 // Don't move these; the RV optimization depends on the autoreleaseRV
1596 // being tail called, and the retainRV being immediately after a call
1597 // (which might still happen if we get lucky with codegen layout, but
1598 // it's not worth taking the chance).
1599 continue;
1600 default:
1601 llvm_unreachable("Invalid dependence flavor");
1602 }
1603
John McCalld935e9c2011-06-15 23:37:01 +00001604 if (DependingInstructions.size() == 1 &&
1605 *DependingInstructions.begin() == PN) {
1606 Changed = true;
1607 ++NumPartialNoops;
1608 // Clone the call into each predecessor that has a non-null value.
1609 CallInst *CInst = cast<CallInst>(Inst);
Chris Lattner229907c2011-07-18 04:54:35 +00001610 Type *ParamTy = CInst->getArgOperand(0)->getType();
John McCalld935e9c2011-06-15 23:37:01 +00001611 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
1612 Value *Incoming =
1613 StripPointerCastsAndObjCCalls(PN->getIncomingValue(i));
Michael Gottesman65c24812013-03-25 09:27:43 +00001614 if (!IsNullOrUndef(Incoming)) {
John McCalld935e9c2011-06-15 23:37:01 +00001615 CallInst *Clone = cast<CallInst>(CInst->clone());
1616 Value *Op = PN->getIncomingValue(i);
1617 Instruction *InsertPos = &PN->getIncomingBlock(i)->back();
1618 if (Op->getType() != ParamTy)
1619 Op = new BitCastInst(Op, ParamTy, "", InsertPos);
1620 Clone->setArgOperand(0, Op);
1621 Clone->insertBefore(InsertPos);
Michael Gottesmanc189a392013-01-09 19:23:24 +00001622
Michael Gottesman89279f82013-04-05 18:10:41 +00001623 DEBUG(dbgs() << "Cloning "
Michael Gottesmanc189a392013-01-09 19:23:24 +00001624 << *CInst << "\n"
Michael Gottesman89279f82013-04-05 18:10:41 +00001625 "And inserting clone at " << *InsertPos << "\n");
John McCalld935e9c2011-06-15 23:37:01 +00001626 Worklist.push_back(std::make_pair(Clone, Incoming));
1627 }
1628 }
1629 // Erase the original call.
Michael Gottesmanc189a392013-01-09 19:23:24 +00001630 DEBUG(dbgs() << "Erasing: " << *CInst << "\n");
John McCalld935e9c2011-06-15 23:37:01 +00001631 EraseInstruction(CInst);
1632 continue;
1633 }
1634 }
1635 } while (!Worklist.empty());
1636 }
1637}
1638
Michael Gottesman97e3df02013-01-14 00:35:14 +00001639/// Check for critical edges, loop boundaries, irreducible control flow, or
1640/// other CFG structures where moving code across the edge would result in it
1641/// being executed more.
John McCalld935e9c2011-06-15 23:37:01 +00001642void
1643ObjCARCOpt::CheckForCFGHazards(const BasicBlock *BB,
1644 DenseMap<const BasicBlock *, BBState> &BBStates,
1645 BBState &MyStates) const {
1646 // If any top-down local-use or possible-dec has a succ which is earlier in
1647 // the sequence, forget it.
Dan Gohman55b06742012-03-02 01:13:53 +00001648 for (BBState::ptr_iterator I = MyStates.top_down_ptr_begin(),
John McCalld935e9c2011-06-15 23:37:01 +00001649 E = MyStates.top_down_ptr_end(); I != E; ++I)
1650 switch (I->second.GetSeq()) {
1651 default: break;
1652 case S_Use: {
1653 const Value *Arg = I->first;
1654 const TerminatorInst *TI = cast<TerminatorInst>(&BB->back());
1655 bool SomeSuccHasSame = false;
1656 bool AllSuccsHaveSame = true;
Dan Gohman55b06742012-03-02 01:13:53 +00001657 PtrState &S = I->second;
Dan Gohman0155f302012-02-17 18:59:53 +00001658 succ_const_iterator SI(TI), SE(TI, false);
1659
Dan Gohman0155f302012-02-17 18:59:53 +00001660 for (; SI != SE; ++SI) {
Dan Gohman362eb692012-03-02 01:26:46 +00001661 Sequence SuccSSeq = S_None;
1662 bool SuccSRRIKnownSafe = false;
Dan Gohman41375a32012-05-08 23:39:44 +00001663 // If VisitBottomUp has pointer information for this successor, take
1664 // what we know about it.
Dan Gohmandae33492012-04-27 18:56:31 +00001665 DenseMap<const BasicBlock *, BBState>::iterator BBI =
1666 BBStates.find(*SI);
1667 assert(BBI != BBStates.end());
1668 const PtrState &SuccS = BBI->second.getPtrBottomUpState(Arg);
1669 SuccSSeq = SuccS.GetSeq();
1670 SuccSRRIKnownSafe = SuccS.RRI.KnownSafe;
Dan Gohman362eb692012-03-02 01:26:46 +00001671 switch (SuccSSeq) {
John McCalld935e9c2011-06-15 23:37:01 +00001672 case S_None:
Dan Gohman12130272011-08-12 00:26:31 +00001673 case S_CanRelease: {
Dan Gohman362eb692012-03-02 01:26:46 +00001674 if (!S.RRI.KnownSafe && !SuccSRRIKnownSafe) {
Dan Gohman12130272011-08-12 00:26:31 +00001675 S.ClearSequenceProgress();
Dan Gohman362eb692012-03-02 01:26:46 +00001676 break;
1677 }
Dan Gohman12130272011-08-12 00:26:31 +00001678 continue;
1679 }
John McCalld935e9c2011-06-15 23:37:01 +00001680 case S_Use:
1681 SomeSuccHasSame = true;
1682 break;
1683 case S_Stop:
1684 case S_Release:
1685 case S_MovableRelease:
Dan Gohman362eb692012-03-02 01:26:46 +00001686 if (!S.RRI.KnownSafe && !SuccSRRIKnownSafe)
Dan Gohman12130272011-08-12 00:26:31 +00001687 AllSuccsHaveSame = false;
John McCalld935e9c2011-06-15 23:37:01 +00001688 break;
1689 case S_Retain:
1690 llvm_unreachable("bottom-up pointer in retain state!");
1691 }
Dan Gohman12130272011-08-12 00:26:31 +00001692 }
John McCalld935e9c2011-06-15 23:37:01 +00001693 // If the state at the other end of any of the successor edges
1694 // matches the current state, require all edges to match. This
1695 // guards against loops in the middle of a sequence.
1696 if (SomeSuccHasSame && !AllSuccsHaveSame)
Dan Gohman12130272011-08-12 00:26:31 +00001697 S.ClearSequenceProgress();
Dan Gohman044437062011-12-12 18:13:53 +00001698 break;
John McCalld935e9c2011-06-15 23:37:01 +00001699 }
1700 case S_CanRelease: {
1701 const Value *Arg = I->first;
1702 const TerminatorInst *TI = cast<TerminatorInst>(&BB->back());
1703 bool SomeSuccHasSame = false;
1704 bool AllSuccsHaveSame = true;
Dan Gohman55b06742012-03-02 01:13:53 +00001705 PtrState &S = I->second;
Dan Gohman0155f302012-02-17 18:59:53 +00001706 succ_const_iterator SI(TI), SE(TI, false);
1707
Dan Gohman0155f302012-02-17 18:59:53 +00001708 for (; SI != SE; ++SI) {
Dan Gohman362eb692012-03-02 01:26:46 +00001709 Sequence SuccSSeq = S_None;
1710 bool SuccSRRIKnownSafe = false;
Dan Gohman41375a32012-05-08 23:39:44 +00001711 // If VisitBottomUp has pointer information for this successor, take
1712 // what we know about it.
Dan Gohmandae33492012-04-27 18:56:31 +00001713 DenseMap<const BasicBlock *, BBState>::iterator BBI =
1714 BBStates.find(*SI);
1715 assert(BBI != BBStates.end());
1716 const PtrState &SuccS = BBI->second.getPtrBottomUpState(Arg);
1717 SuccSSeq = SuccS.GetSeq();
1718 SuccSRRIKnownSafe = SuccS.RRI.KnownSafe;
Dan Gohman362eb692012-03-02 01:26:46 +00001719 switch (SuccSSeq) {
Dan Gohman12130272011-08-12 00:26:31 +00001720 case S_None: {
Dan Gohman362eb692012-03-02 01:26:46 +00001721 if (!S.RRI.KnownSafe && !SuccSRRIKnownSafe) {
Dan Gohman12130272011-08-12 00:26:31 +00001722 S.ClearSequenceProgress();
Dan Gohman362eb692012-03-02 01:26:46 +00001723 break;
1724 }
Dan Gohman12130272011-08-12 00:26:31 +00001725 continue;
1726 }
John McCalld935e9c2011-06-15 23:37:01 +00001727 case S_CanRelease:
1728 SomeSuccHasSame = true;
1729 break;
1730 case S_Stop:
1731 case S_Release:
1732 case S_MovableRelease:
1733 case S_Use:
Dan Gohman362eb692012-03-02 01:26:46 +00001734 if (!S.RRI.KnownSafe && !SuccSRRIKnownSafe)
Dan Gohman12130272011-08-12 00:26:31 +00001735 AllSuccsHaveSame = false;
John McCalld935e9c2011-06-15 23:37:01 +00001736 break;
1737 case S_Retain:
1738 llvm_unreachable("bottom-up pointer in retain state!");
1739 }
Dan Gohman12130272011-08-12 00:26:31 +00001740 }
John McCalld935e9c2011-06-15 23:37:01 +00001741 // If the state at the other end of any of the successor edges
1742 // matches the current state, require all edges to match. This
1743 // guards against loops in the middle of a sequence.
1744 if (SomeSuccHasSame && !AllSuccsHaveSame)
Dan Gohman12130272011-08-12 00:26:31 +00001745 S.ClearSequenceProgress();
Dan Gohman044437062011-12-12 18:13:53 +00001746 break;
John McCalld935e9c2011-06-15 23:37:01 +00001747 }
1748 }
1749}
1750
1751bool
Dan Gohman817a7c62012-03-22 18:24:56 +00001752ObjCARCOpt::VisitInstructionBottomUp(Instruction *Inst,
Dan Gohman5c70fad2012-03-23 17:47:54 +00001753 BasicBlock *BB,
Dan Gohman817a7c62012-03-22 18:24:56 +00001754 MapVector<Value *, RRInfo> &Retains,
1755 BBState &MyStates) {
1756 bool NestingDetected = false;
1757 InstructionClass Class = GetInstructionClass(Inst);
1758 const Value *Arg = 0;
Michael Gottesman79249972013-04-05 23:46:45 +00001759
Michael Gottesman1d8d2572013-04-05 22:54:28 +00001760 DEBUG(dbgs() << "Class: " << Class << "\n");
Michael Gottesman79249972013-04-05 23:46:45 +00001761
Dan Gohman817a7c62012-03-22 18:24:56 +00001762 switch (Class) {
1763 case IC_Release: {
1764 Arg = GetObjCArg(Inst);
1765
1766 PtrState &S = MyStates.getPtrBottomUpState(Arg);
1767
1768 // If we see two releases in a row on the same pointer. If so, make
1769 // a note, and we'll cicle back to revisit it after we've
1770 // hopefully eliminated the second release, which may allow us to
1771 // eliminate the first release too.
1772 // Theoretically we could implement removal of nested retain+release
1773 // pairs by making PtrState hold a stack of states, but this is
1774 // simple and avoids adding overhead for the non-nested case.
Michael Gottesmanaf2113f2013-01-13 07:00:51 +00001775 if (S.GetSeq() == S_Release || S.GetSeq() == S_MovableRelease) {
Michael Gottesman89279f82013-04-05 18:10:41 +00001776 DEBUG(dbgs() << "Found nested releases (i.e. a release pair)\n");
Dan Gohman817a7c62012-03-22 18:24:56 +00001777 NestingDetected = true;
Michael Gottesmanaf2113f2013-01-13 07:00:51 +00001778 }
Dan Gohman817a7c62012-03-22 18:24:56 +00001779
Dan Gohman817a7c62012-03-22 18:24:56 +00001780 MDNode *ReleaseMetadata = Inst->getMetadata(ImpreciseReleaseMDKind);
Michael Gottesman81b1d432013-03-26 00:42:04 +00001781 Sequence NewSeq = ReleaseMetadata ? S_MovableRelease : S_Release;
1782 ANNOTATE_BOTTOMUP(Inst, Arg, S.GetSeq(), NewSeq);
1783 S.ResetSequenceProgress(NewSeq);
Dan Gohman817a7c62012-03-22 18:24:56 +00001784 S.RRI.ReleaseMetadata = ReleaseMetadata;
Michael Gottesman07beea42013-03-23 05:31:01 +00001785 S.RRI.KnownSafe = S.HasKnownPositiveRefCount();
Dan Gohman817a7c62012-03-22 18:24:56 +00001786 S.RRI.IsTailCallRelease = cast<CallInst>(Inst)->isTailCall();
1787 S.RRI.Calls.insert(Inst);
Dan Gohmandf476e52012-09-04 23:16:20 +00001788 S.SetKnownPositiveRefCount();
Dan Gohman817a7c62012-03-22 18:24:56 +00001789 break;
1790 }
1791 case IC_RetainBlock:
Michael Gottesman158fdf62013-03-28 20:11:19 +00001792 // In OptimizeIndividualCalls, we have strength reduced all optimizable
1793 // objc_retainBlocks to objc_retains. Thus at this point any
1794 // objc_retainBlocks that we see are not optimizable.
1795 break;
Dan Gohman817a7c62012-03-22 18:24:56 +00001796 case IC_Retain:
1797 case IC_RetainRV: {
1798 Arg = GetObjCArg(Inst);
1799
1800 PtrState &S = MyStates.getPtrBottomUpState(Arg);
Dan Gohman62079b42012-04-25 00:50:46 +00001801 S.SetKnownPositiveRefCount();
Dan Gohman817a7c62012-03-22 18:24:56 +00001802
Michael Gottesman81b1d432013-03-26 00:42:04 +00001803 Sequence OldSeq = S.GetSeq();
1804 switch (OldSeq) {
Dan Gohman817a7c62012-03-22 18:24:56 +00001805 case S_Stop:
1806 case S_Release:
1807 case S_MovableRelease:
1808 case S_Use:
Michael Gottesman1d8d2572013-04-05 22:54:28 +00001809 // If OldSeq is not S_Use or OldSeq is S_Use and we are tracking an
1810 // imprecise release, clear our reverse insertion points.
1811 if (OldSeq != S_Use || S.RRI.IsTrackingImpreciseReleases())
1812 S.RRI.ReverseInsertPts.clear();
Dan Gohman817a7c62012-03-22 18:24:56 +00001813 // FALL THROUGH
1814 case S_CanRelease:
1815 // Don't do retain+release tracking for IC_RetainRV, because it's
1816 // better to let it remain as the first instruction after a call.
Michael Gottesmanba648592013-03-28 23:08:44 +00001817 if (Class != IC_RetainRV)
Dan Gohman817a7c62012-03-22 18:24:56 +00001818 Retains[Inst] = S.RRI;
Dan Gohman817a7c62012-03-22 18:24:56 +00001819 S.ClearSequenceProgress();
1820 break;
1821 case S_None:
1822 break;
1823 case S_Retain:
1824 llvm_unreachable("bottom-up pointer in retain state!");
1825 }
Michael Gottesman79249972013-04-05 23:46:45 +00001826 ANNOTATE_BOTTOMUP(Inst, Arg, OldSeq, S.GetSeq());
Michael Gottesman31ba23a2013-04-05 22:54:32 +00001827 // A retain moving bottom up can be a use.
1828 break;
Dan Gohman817a7c62012-03-22 18:24:56 +00001829 }
1830 case IC_AutoreleasepoolPop:
1831 // Conservatively, clear MyStates for all known pointers.
1832 MyStates.clearBottomUpPointers();
1833 return NestingDetected;
1834 case IC_AutoreleasepoolPush:
1835 case IC_None:
1836 // These are irrelevant.
1837 return NestingDetected;
1838 default:
1839 break;
1840 }
1841
1842 // Consider any other possible effects of this instruction on each
1843 // pointer being tracked.
1844 for (BBState::ptr_iterator MI = MyStates.bottom_up_ptr_begin(),
1845 ME = MyStates.bottom_up_ptr_end(); MI != ME; ++MI) {
1846 const Value *Ptr = MI->first;
1847 if (Ptr == Arg)
1848 continue; // Handled above.
1849 PtrState &S = MI->second;
1850 Sequence Seq = S.GetSeq();
1851
1852 // Check for possible releases.
1853 if (CanAlterRefCount(Inst, Ptr, PA, Class)) {
Michael Gottesman89279f82013-04-05 18:10:41 +00001854 DEBUG(dbgs() << "CanAlterRefCount: Seq: " << Seq << "; " << *Ptr
1855 << "\n");
Michael Gottesman764b1cf2013-03-23 05:46:19 +00001856 S.ClearKnownPositiveRefCount();
Dan Gohman817a7c62012-03-22 18:24:56 +00001857 switch (Seq) {
1858 case S_Use:
1859 S.SetSeq(S_CanRelease);
Michael Gottesman81b1d432013-03-26 00:42:04 +00001860 ANNOTATE_BOTTOMUP(Inst, Ptr, Seq, S.GetSeq());
Dan Gohman817a7c62012-03-22 18:24:56 +00001861 continue;
1862 case S_CanRelease:
1863 case S_Release:
1864 case S_MovableRelease:
1865 case S_Stop:
1866 case S_None:
1867 break;
1868 case S_Retain:
1869 llvm_unreachable("bottom-up pointer in retain state!");
1870 }
1871 }
1872
1873 // Check for possible direct uses.
1874 switch (Seq) {
1875 case S_Release:
1876 case S_MovableRelease:
1877 if (CanUse(Inst, Ptr, PA, Class)) {
Michael Gottesman89279f82013-04-05 18:10:41 +00001878 DEBUG(dbgs() << "CanUse: Seq: " << Seq << "; " << *Ptr
1879 << "\n");
Dan Gohman817a7c62012-03-22 18:24:56 +00001880 assert(S.RRI.ReverseInsertPts.empty());
Dan Gohman5c70fad2012-03-23 17:47:54 +00001881 // If this is an invoke instruction, we're scanning it as part of
1882 // one of its successor blocks, since we can't insert code after it
1883 // in its own block, and we don't want to split critical edges.
1884 if (isa<InvokeInst>(Inst))
1885 S.RRI.ReverseInsertPts.insert(BB->getFirstInsertionPt());
1886 else
Francois Pichet4b9ab742012-03-24 01:36:37 +00001887 S.RRI.ReverseInsertPts.insert(llvm::next(BasicBlock::iterator(Inst)));
Dan Gohman817a7c62012-03-22 18:24:56 +00001888 S.SetSeq(S_Use);
Michael Gottesman81b1d432013-03-26 00:42:04 +00001889 ANNOTATE_BOTTOMUP(Inst, Ptr, Seq, S_Use);
John McCall20182ac2013-03-22 21:38:36 +00001890 } else if (Seq == S_Release && IsUser(Class)) {
Michael Gottesman89279f82013-04-05 18:10:41 +00001891 DEBUG(dbgs() << "PreciseReleaseUse: Seq: " << Seq << "; " << *Ptr
1892 << "\n");
Dan Gohman817a7c62012-03-22 18:24:56 +00001893 // Non-movable releases depend on any possible objc pointer use.
1894 S.SetSeq(S_Stop);
Michael Gottesman81b1d432013-03-26 00:42:04 +00001895 ANNOTATE_BOTTOMUP(Inst, Ptr, S_Release, S_Stop);
Dan Gohman817a7c62012-03-22 18:24:56 +00001896 assert(S.RRI.ReverseInsertPts.empty());
Dan Gohman5c70fad2012-03-23 17:47:54 +00001897 // As above; handle invoke specially.
1898 if (isa<InvokeInst>(Inst))
1899 S.RRI.ReverseInsertPts.insert(BB->getFirstInsertionPt());
1900 else
Francois Pichet4b9ab742012-03-24 01:36:37 +00001901 S.RRI.ReverseInsertPts.insert(llvm::next(BasicBlock::iterator(Inst)));
Dan Gohman817a7c62012-03-22 18:24:56 +00001902 }
1903 break;
1904 case S_Stop:
Michael Gottesman81b1d432013-03-26 00:42:04 +00001905 if (CanUse(Inst, Ptr, PA, Class)) {
Michael Gottesman89279f82013-04-05 18:10:41 +00001906 DEBUG(dbgs() << "PreciseStopUse: Seq: " << Seq << "; " << *Ptr
1907 << "\n");
Dan Gohman817a7c62012-03-22 18:24:56 +00001908 S.SetSeq(S_Use);
Michael Gottesman81b1d432013-03-26 00:42:04 +00001909 ANNOTATE_BOTTOMUP(Inst, Ptr, Seq, S_Use);
1910 }
Dan Gohman817a7c62012-03-22 18:24:56 +00001911 break;
1912 case S_CanRelease:
1913 case S_Use:
1914 case S_None:
1915 break;
1916 case S_Retain:
1917 llvm_unreachable("bottom-up pointer in retain state!");
1918 }
1919 }
1920
1921 return NestingDetected;
1922}
1923
1924bool
John McCalld935e9c2011-06-15 23:37:01 +00001925ObjCARCOpt::VisitBottomUp(BasicBlock *BB,
1926 DenseMap<const BasicBlock *, BBState> &BBStates,
1927 MapVector<Value *, RRInfo> &Retains) {
Michael Gottesman89279f82013-04-05 18:10:41 +00001928
1929 DEBUG(dbgs() << "\n== ObjCARCOpt::VisitBottomUp ==\n");
Michael Gottesman79249972013-04-05 23:46:45 +00001930
John McCalld935e9c2011-06-15 23:37:01 +00001931 bool NestingDetected = false;
1932 BBState &MyStates = BBStates[BB];
1933
1934 // Merge the states from each successor to compute the initial state
1935 // for the current block.
Dan Gohman10c82ce2012-08-27 18:31:36 +00001936 BBState::edge_iterator SI(MyStates.succ_begin()),
1937 SE(MyStates.succ_end());
1938 if (SI != SE) {
Dan Gohmanc24c66f2012-04-24 22:53:18 +00001939 const BasicBlock *Succ = *SI;
1940 DenseMap<const BasicBlock *, BBState>::iterator I = BBStates.find(Succ);
1941 assert(I != BBStates.end());
1942 MyStates.InitFromSucc(I->second);
1943 ++SI;
1944 for (; SI != SE; ++SI) {
1945 Succ = *SI;
1946 I = BBStates.find(Succ);
1947 assert(I != BBStates.end());
1948 MyStates.MergeSucc(I->second);
1949 }
Michael Gottesman60f6b282013-03-29 05:13:07 +00001950 }
Michael Gottesmancd4de0f2013-03-26 00:42:09 +00001951
Michael Gottesman43e7e002013-04-03 22:41:59 +00001952 // If ARC Annotations are enabled, output the current state of pointers at the
Michael Gottesmanc2d5bf52013-04-03 23:07:45 +00001953 // bottom of the basic block.
Michael Gottesman43e7e002013-04-03 22:41:59 +00001954 ANNOTATE_BOTTOMUP_BBEND(MyStates, BB);
Michael Gottesmanc2d5bf52013-04-03 23:07:45 +00001955
John McCalld935e9c2011-06-15 23:37:01 +00001956 // Visit all the instructions, bottom-up.
1957 for (BasicBlock::iterator I = BB->end(), E = BB->begin(); I != E; --I) {
1958 Instruction *Inst = llvm::prior(I);
Dan Gohman5c70fad2012-03-23 17:47:54 +00001959
1960 // Invoke instructions are visited as part of their successors (below).
1961 if (isa<InvokeInst>(Inst))
1962 continue;
1963
Michael Gottesman89279f82013-04-05 18:10:41 +00001964 DEBUG(dbgs() << "Visiting " << *Inst << "\n");
Michael Gottesmanaf2113f2013-01-13 07:00:51 +00001965
Dan Gohman5c70fad2012-03-23 17:47:54 +00001966 NestingDetected |= VisitInstructionBottomUp(Inst, BB, Retains, MyStates);
1967 }
1968
Dan Gohmandae33492012-04-27 18:56:31 +00001969 // If there's a predecessor with an invoke, visit the invoke as if it were
1970 // part of this block, since we can't insert code after an invoke in its own
1971 // block, and we don't want to split critical edges.
Dan Gohmanc24c66f2012-04-24 22:53:18 +00001972 for (BBState::edge_iterator PI(MyStates.pred_begin()),
1973 PE(MyStates.pred_end()); PI != PE; ++PI) {
Dan Gohman5c70fad2012-03-23 17:47:54 +00001974 BasicBlock *Pred = *PI;
Dan Gohmandae33492012-04-27 18:56:31 +00001975 if (InvokeInst *II = dyn_cast<InvokeInst>(&Pred->back()))
1976 NestingDetected |= VisitInstructionBottomUp(II, BB, Retains, MyStates);
Dan Gohman817a7c62012-03-22 18:24:56 +00001977 }
John McCalld935e9c2011-06-15 23:37:01 +00001978
Michael Gottesman43e7e002013-04-03 22:41:59 +00001979 // If ARC Annotations are enabled, output the current state of pointers at the
1980 // top of the basic block.
1981 ANNOTATE_BOTTOMUP_BBSTART(MyStates, BB);
Michael Gottesmanc2d5bf52013-04-03 23:07:45 +00001982
Dan Gohman817a7c62012-03-22 18:24:56 +00001983 return NestingDetected;
1984}
John McCalld935e9c2011-06-15 23:37:01 +00001985
Dan Gohman817a7c62012-03-22 18:24:56 +00001986bool
1987ObjCARCOpt::VisitInstructionTopDown(Instruction *Inst,
1988 DenseMap<Value *, RRInfo> &Releases,
1989 BBState &MyStates) {
1990 bool NestingDetected = false;
1991 InstructionClass Class = GetInstructionClass(Inst);
1992 const Value *Arg = 0;
John McCalld935e9c2011-06-15 23:37:01 +00001993
Dan Gohman817a7c62012-03-22 18:24:56 +00001994 switch (Class) {
1995 case IC_RetainBlock:
Michael Gottesman158fdf62013-03-28 20:11:19 +00001996 // In OptimizeIndividualCalls, we have strength reduced all optimizable
1997 // objc_retainBlocks to objc_retains. Thus at this point any
1998 // objc_retainBlocks that we see are not optimizable.
1999 break;
Dan Gohman817a7c62012-03-22 18:24:56 +00002000 case IC_Retain:
2001 case IC_RetainRV: {
2002 Arg = GetObjCArg(Inst);
2003
2004 PtrState &S = MyStates.getPtrTopDownState(Arg);
2005
2006 // Don't do retain+release tracking for IC_RetainRV, because it's
2007 // better to let it remain as the first instruction after a call.
2008 if (Class != IC_RetainRV) {
2009 // If we see two retains in a row on the same pointer. If so, make
John McCalld935e9c2011-06-15 23:37:01 +00002010 // a note, and we'll cicle back to revisit it after we've
Dan Gohman817a7c62012-03-22 18:24:56 +00002011 // hopefully eliminated the second retain, which may allow us to
2012 // eliminate the first retain too.
John McCalld935e9c2011-06-15 23:37:01 +00002013 // Theoretically we could implement removal of nested retain+release
2014 // pairs by making PtrState hold a stack of states, but this is
2015 // simple and avoids adding overhead for the non-nested case.
Dan Gohman817a7c62012-03-22 18:24:56 +00002016 if (S.GetSeq() == S_Retain)
John McCalld935e9c2011-06-15 23:37:01 +00002017 NestingDetected = true;
2018
Michael Gottesman81b1d432013-03-26 00:42:04 +00002019 ANNOTATE_TOPDOWN(Inst, Arg, S.GetSeq(), S_Retain);
Dan Gohman62079b42012-04-25 00:50:46 +00002020 S.ResetSequenceProgress(S_Retain);
Michael Gottesman07beea42013-03-23 05:31:01 +00002021 S.RRI.KnownSafe = S.HasKnownPositiveRefCount();
John McCalld935e9c2011-06-15 23:37:01 +00002022 S.RRI.Calls.insert(Inst);
John McCalld935e9c2011-06-15 23:37:01 +00002023 }
John McCalld935e9c2011-06-15 23:37:01 +00002024
Dan Gohmandf476e52012-09-04 23:16:20 +00002025 S.SetKnownPositiveRefCount();
Dan Gohmanf64ff8e2012-07-23 19:27:31 +00002026
2027 // A retain can be a potential use; procede to the generic checking
2028 // code below.
2029 break;
Dan Gohman817a7c62012-03-22 18:24:56 +00002030 }
2031 case IC_Release: {
2032 Arg = GetObjCArg(Inst);
2033
2034 PtrState &S = MyStates.getPtrTopDownState(Arg);
Michael Gottesman764b1cf2013-03-23 05:46:19 +00002035 S.ClearKnownPositiveRefCount();
Michael Gottesman79249972013-04-05 23:46:45 +00002036
Michael Gottesman1d8d2572013-04-05 22:54:28 +00002037 Sequence OldSeq = S.GetSeq();
Michael Gottesman79249972013-04-05 23:46:45 +00002038
Michael Gottesman1d8d2572013-04-05 22:54:28 +00002039 MDNode *ReleaseMetadata = Inst->getMetadata(ImpreciseReleaseMDKind);
Michael Gottesman79249972013-04-05 23:46:45 +00002040
Michael Gottesman1d8d2572013-04-05 22:54:28 +00002041 switch (OldSeq) {
Dan Gohman817a7c62012-03-22 18:24:56 +00002042 case S_Retain:
2043 case S_CanRelease:
Michael Gottesman1d8d2572013-04-05 22:54:28 +00002044 if (OldSeq == S_Retain || ReleaseMetadata != 0)
2045 S.RRI.ReverseInsertPts.clear();
Dan Gohman817a7c62012-03-22 18:24:56 +00002046 // FALL THROUGH
2047 case S_Use:
Michael Gottesman1d8d2572013-04-05 22:54:28 +00002048 S.RRI.ReleaseMetadata = ReleaseMetadata;
Dan Gohman817a7c62012-03-22 18:24:56 +00002049 S.RRI.IsTailCallRelease = cast<CallInst>(Inst)->isTailCall();
2050 Releases[Inst] = S.RRI;
Michael Gottesman81b1d432013-03-26 00:42:04 +00002051 ANNOTATE_TOPDOWN(Inst, Arg, S.GetSeq(), S_None);
Dan Gohman817a7c62012-03-22 18:24:56 +00002052 S.ClearSequenceProgress();
2053 break;
2054 case S_None:
2055 break;
2056 case S_Stop:
2057 case S_Release:
2058 case S_MovableRelease:
2059 llvm_unreachable("top-down pointer in release state!");
2060 }
2061 break;
2062 }
2063 case IC_AutoreleasepoolPop:
2064 // Conservatively, clear MyStates for all known pointers.
2065 MyStates.clearTopDownPointers();
2066 return NestingDetected;
2067 case IC_AutoreleasepoolPush:
2068 case IC_None:
2069 // These are irrelevant.
2070 return NestingDetected;
2071 default:
2072 break;
2073 }
2074
2075 // Consider any other possible effects of this instruction on each
2076 // pointer being tracked.
2077 for (BBState::ptr_iterator MI = MyStates.top_down_ptr_begin(),
2078 ME = MyStates.top_down_ptr_end(); MI != ME; ++MI) {
2079 const Value *Ptr = MI->first;
2080 if (Ptr == Arg)
2081 continue; // Handled above.
2082 PtrState &S = MI->second;
2083 Sequence Seq = S.GetSeq();
2084
2085 // Check for possible releases.
2086 if (CanAlterRefCount(Inst, Ptr, PA, Class)) {
Michael Gottesmanbab49e972013-04-05 18:26:08 +00002087 DEBUG(dbgs() << "CanAlterRefCount: Seq: " << Seq << "; " << *Ptr
Michael Gottesman79249972013-04-05 23:46:45 +00002088 << "\n");
Michael Gottesman764b1cf2013-03-23 05:46:19 +00002089 S.ClearKnownPositiveRefCount();
John McCalld935e9c2011-06-15 23:37:01 +00002090 switch (Seq) {
Dan Gohman817a7c62012-03-22 18:24:56 +00002091 case S_Retain:
2092 S.SetSeq(S_CanRelease);
Michael Gottesman81b1d432013-03-26 00:42:04 +00002093 ANNOTATE_TOPDOWN(Inst, Ptr, Seq, S_CanRelease);
Dan Gohman817a7c62012-03-22 18:24:56 +00002094 assert(S.RRI.ReverseInsertPts.empty());
2095 S.RRI.ReverseInsertPts.insert(Inst);
2096
2097 // One call can't cause a transition from S_Retain to S_CanRelease
2098 // and S_CanRelease to S_Use. If we've made the first transition,
2099 // we're done.
2100 continue;
John McCalld935e9c2011-06-15 23:37:01 +00002101 case S_Use:
Dan Gohman817a7c62012-03-22 18:24:56 +00002102 case S_CanRelease:
John McCalld935e9c2011-06-15 23:37:01 +00002103 case S_None:
2104 break;
Dan Gohman817a7c62012-03-22 18:24:56 +00002105 case S_Stop:
2106 case S_Release:
2107 case S_MovableRelease:
2108 llvm_unreachable("top-down pointer in release state!");
John McCalld935e9c2011-06-15 23:37:01 +00002109 }
2110 }
Dan Gohman817a7c62012-03-22 18:24:56 +00002111
2112 // Check for possible direct uses.
2113 switch (Seq) {
2114 case S_CanRelease:
Michael Gottesman81b1d432013-03-26 00:42:04 +00002115 if (CanUse(Inst, Ptr, PA, Class)) {
Michael Gottesmanbab49e972013-04-05 18:26:08 +00002116 DEBUG(dbgs() << "CanUse: Seq: " << Seq << "; " << *Ptr
2117 << "\n");
Dan Gohman817a7c62012-03-22 18:24:56 +00002118 S.SetSeq(S_Use);
Michael Gottesman81b1d432013-03-26 00:42:04 +00002119 ANNOTATE_TOPDOWN(Inst, Ptr, Seq, S_Use);
2120 }
Dan Gohman817a7c62012-03-22 18:24:56 +00002121 break;
2122 case S_Retain:
2123 case S_Use:
2124 case S_None:
2125 break;
2126 case S_Stop:
2127 case S_Release:
2128 case S_MovableRelease:
2129 llvm_unreachable("top-down pointer in release state!");
2130 }
John McCalld935e9c2011-06-15 23:37:01 +00002131 }
2132
2133 return NestingDetected;
2134}
2135
2136bool
2137ObjCARCOpt::VisitTopDown(BasicBlock *BB,
2138 DenseMap<const BasicBlock *, BBState> &BBStates,
2139 DenseMap<Value *, RRInfo> &Releases) {
Michael Gottesman89279f82013-04-05 18:10:41 +00002140 DEBUG(dbgs() << "\n== ObjCARCOpt::VisitTopDown ==\n");
John McCalld935e9c2011-06-15 23:37:01 +00002141 bool NestingDetected = false;
2142 BBState &MyStates = BBStates[BB];
2143
2144 // Merge the states from each predecessor to compute the initial state
2145 // for the current block.
Dan Gohman10c82ce2012-08-27 18:31:36 +00002146 BBState::edge_iterator PI(MyStates.pred_begin()),
2147 PE(MyStates.pred_end());
2148 if (PI != PE) {
Dan Gohmanc24c66f2012-04-24 22:53:18 +00002149 const BasicBlock *Pred = *PI;
2150 DenseMap<const BasicBlock *, BBState>::iterator I = BBStates.find(Pred);
2151 assert(I != BBStates.end());
2152 MyStates.InitFromPred(I->second);
2153 ++PI;
2154 for (; PI != PE; ++PI) {
2155 Pred = *PI;
2156 I = BBStates.find(Pred);
2157 assert(I != BBStates.end());
2158 MyStates.MergePred(I->second);
2159 }
Dan Gohmanc24c66f2012-04-24 22:53:18 +00002160 }
John McCalld935e9c2011-06-15 23:37:01 +00002161
Michael Gottesman43e7e002013-04-03 22:41:59 +00002162 // If ARC Annotations are enabled, output the current state of pointers at the
2163 // top of the basic block.
2164 ANNOTATE_TOPDOWN_BBSTART(MyStates, BB);
Michael Gottesmanc2d5bf52013-04-03 23:07:45 +00002165
John McCalld935e9c2011-06-15 23:37:01 +00002166 // Visit all the instructions, top-down.
2167 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) {
2168 Instruction *Inst = I;
Michael Gottesmanaf2113f2013-01-13 07:00:51 +00002169
Michael Gottesman89279f82013-04-05 18:10:41 +00002170 DEBUG(dbgs() << "Visiting " << *Inst << "\n");
Michael Gottesmanaf2113f2013-01-13 07:00:51 +00002171
Dan Gohman817a7c62012-03-22 18:24:56 +00002172 NestingDetected |= VisitInstructionTopDown(Inst, Releases, MyStates);
John McCalld935e9c2011-06-15 23:37:01 +00002173 }
Michael Gottesmanc2d5bf52013-04-03 23:07:45 +00002174
Michael Gottesman43e7e002013-04-03 22:41:59 +00002175 // If ARC Annotations are enabled, output the current state of pointers at the
2176 // bottom of the basic block.
2177 ANNOTATE_TOPDOWN_BBEND(MyStates, BB);
Michael Gottesmanc2d5bf52013-04-03 23:07:45 +00002178
Michael Gottesmanffef24f2013-04-17 20:48:01 +00002179#ifdef ARC_ANNOTATIONS
Michael Gottesmanadb921a2013-04-17 21:03:53 +00002180 if (!(EnableARCAnnotations && DisableCheckForCFGHazards))
Michael Gottesmanffef24f2013-04-17 20:48:01 +00002181#endif
John McCalld935e9c2011-06-15 23:37:01 +00002182 CheckForCFGHazards(BB, BBStates, MyStates);
2183 return NestingDetected;
2184}
2185
Dan Gohmana53a12c2011-12-12 19:42:25 +00002186static void
2187ComputePostOrders(Function &F,
2188 SmallVectorImpl<BasicBlock *> &PostOrder,
Dan Gohmanc24c66f2012-04-24 22:53:18 +00002189 SmallVectorImpl<BasicBlock *> &ReverseCFGPostOrder,
2190 unsigned NoObjCARCExceptionsMDKind,
2191 DenseMap<const BasicBlock *, BBState> &BBStates) {
Michael Gottesman97e3df02013-01-14 00:35:14 +00002192 /// The visited set, for doing DFS walks.
Dan Gohmana53a12c2011-12-12 19:42:25 +00002193 SmallPtrSet<BasicBlock *, 16> Visited;
2194
2195 // Do DFS, computing the PostOrder.
2196 SmallPtrSet<BasicBlock *, 16> OnStack;
2197 SmallVector<std::pair<BasicBlock *, succ_iterator>, 16> SuccStack;
Dan Gohmanc24c66f2012-04-24 22:53:18 +00002198
2199 // Functions always have exactly one entry block, and we don't have
2200 // any other block that we treat like an entry block.
Dan Gohmana53a12c2011-12-12 19:42:25 +00002201 BasicBlock *EntryBB = &F.getEntryBlock();
Dan Gohman41375a32012-05-08 23:39:44 +00002202 BBState &MyStates = BBStates[EntryBB];
2203 MyStates.SetAsEntry();
2204 TerminatorInst *EntryTI = cast<TerminatorInst>(&EntryBB->back());
2205 SuccStack.push_back(std::make_pair(EntryBB, succ_iterator(EntryTI)));
Dan Gohmana53a12c2011-12-12 19:42:25 +00002206 Visited.insert(EntryBB);
2207 OnStack.insert(EntryBB);
2208 do {
2209 dfs_next_succ:
Dan Gohmanc24c66f2012-04-24 22:53:18 +00002210 BasicBlock *CurrBB = SuccStack.back().first;
2211 TerminatorInst *TI = cast<TerminatorInst>(&CurrBB->back());
2212 succ_iterator SE(TI, false);
Dan Gohman41375a32012-05-08 23:39:44 +00002213
Dan Gohmanc24c66f2012-04-24 22:53:18 +00002214 while (SuccStack.back().second != SE) {
2215 BasicBlock *SuccBB = *SuccStack.back().second++;
2216 if (Visited.insert(SuccBB)) {
Dan Gohman41375a32012-05-08 23:39:44 +00002217 TerminatorInst *TI = cast<TerminatorInst>(&SuccBB->back());
2218 SuccStack.push_back(std::make_pair(SuccBB, succ_iterator(TI)));
Dan Gohmanc24c66f2012-04-24 22:53:18 +00002219 BBStates[CurrBB].addSucc(SuccBB);
Dan Gohman41375a32012-05-08 23:39:44 +00002220 BBState &SuccStates = BBStates[SuccBB];
2221 SuccStates.addPred(CurrBB);
Dan Gohmanc24c66f2012-04-24 22:53:18 +00002222 OnStack.insert(SuccBB);
Dan Gohmana53a12c2011-12-12 19:42:25 +00002223 goto dfs_next_succ;
2224 }
Dan Gohmanc24c66f2012-04-24 22:53:18 +00002225
2226 if (!OnStack.count(SuccBB)) {
2227 BBStates[CurrBB].addSucc(SuccBB);
2228 BBStates[SuccBB].addPred(CurrBB);
2229 }
Dan Gohmana53a12c2011-12-12 19:42:25 +00002230 }
Dan Gohmanc24c66f2012-04-24 22:53:18 +00002231 OnStack.erase(CurrBB);
2232 PostOrder.push_back(CurrBB);
2233 SuccStack.pop_back();
Dan Gohmana53a12c2011-12-12 19:42:25 +00002234 } while (!SuccStack.empty());
2235
2236 Visited.clear();
2237
Dan Gohmana53a12c2011-12-12 19:42:25 +00002238 // Do reverse-CFG DFS, computing the reverse-CFG PostOrder.
Dan Gohmanc24c66f2012-04-24 22:53:18 +00002239 // Functions may have many exits, and there also blocks which we treat
2240 // as exits due to ignored edges.
2241 SmallVector<std::pair<BasicBlock *, BBState::edge_iterator>, 16> PredStack;
2242 for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I) {
2243 BasicBlock *ExitBB = I;
2244 BBState &MyStates = BBStates[ExitBB];
2245 if (!MyStates.isExit())
2246 continue;
2247
Dan Gohmandae33492012-04-27 18:56:31 +00002248 MyStates.SetAsExit();
Dan Gohmanc24c66f2012-04-24 22:53:18 +00002249
2250 PredStack.push_back(std::make_pair(ExitBB, MyStates.pred_begin()));
Dan Gohmana53a12c2011-12-12 19:42:25 +00002251 Visited.insert(ExitBB);
2252 while (!PredStack.empty()) {
2253 reverse_dfs_next_succ:
Dan Gohmanc24c66f2012-04-24 22:53:18 +00002254 BBState::edge_iterator PE = BBStates[PredStack.back().first].pred_end();
2255 while (PredStack.back().second != PE) {
Dan Gohmana53a12c2011-12-12 19:42:25 +00002256 BasicBlock *BB = *PredStack.back().second++;
Dan Gohmana53a12c2011-12-12 19:42:25 +00002257 if (Visited.insert(BB)) {
Dan Gohmanc24c66f2012-04-24 22:53:18 +00002258 PredStack.push_back(std::make_pair(BB, BBStates[BB].pred_begin()));
Dan Gohmana53a12c2011-12-12 19:42:25 +00002259 goto reverse_dfs_next_succ;
2260 }
2261 }
2262 ReverseCFGPostOrder.push_back(PredStack.pop_back_val().first);
2263 }
2264 }
2265}
2266
Michael Gottesman97e3df02013-01-14 00:35:14 +00002267// Visit the function both top-down and bottom-up.
John McCalld935e9c2011-06-15 23:37:01 +00002268bool
2269ObjCARCOpt::Visit(Function &F,
2270 DenseMap<const BasicBlock *, BBState> &BBStates,
2271 MapVector<Value *, RRInfo> &Retains,
2272 DenseMap<Value *, RRInfo> &Releases) {
Dan Gohmana53a12c2011-12-12 19:42:25 +00002273
2274 // Use reverse-postorder traversals, because we magically know that loops
2275 // will be well behaved, i.e. they won't repeatedly call retain on a single
2276 // pointer without doing a release. We can't use the ReversePostOrderTraversal
2277 // class here because we want the reverse-CFG postorder to consider each
2278 // function exit point, and we want to ignore selected cycle edges.
2279 SmallVector<BasicBlock *, 16> PostOrder;
2280 SmallVector<BasicBlock *, 16> ReverseCFGPostOrder;
Dan Gohmanc24c66f2012-04-24 22:53:18 +00002281 ComputePostOrders(F, PostOrder, ReverseCFGPostOrder,
2282 NoObjCARCExceptionsMDKind,
2283 BBStates);
Dan Gohmana53a12c2011-12-12 19:42:25 +00002284
2285 // Use reverse-postorder on the reverse CFG for bottom-up.
John McCalld935e9c2011-06-15 23:37:01 +00002286 bool BottomUpNestingDetected = false;
Dan Gohmanc57b58c2011-08-18 21:27:42 +00002287 for (SmallVectorImpl<BasicBlock *>::const_reverse_iterator I =
Dan Gohmana53a12c2011-12-12 19:42:25 +00002288 ReverseCFGPostOrder.rbegin(), E = ReverseCFGPostOrder.rend();
2289 I != E; ++I)
2290 BottomUpNestingDetected |= VisitBottomUp(*I, BBStates, Retains);
John McCalld935e9c2011-06-15 23:37:01 +00002291
Dan Gohmana53a12c2011-12-12 19:42:25 +00002292 // Use reverse-postorder for top-down.
John McCalld935e9c2011-06-15 23:37:01 +00002293 bool TopDownNestingDetected = false;
Dan Gohmana53a12c2011-12-12 19:42:25 +00002294 for (SmallVectorImpl<BasicBlock *>::const_reverse_iterator I =
2295 PostOrder.rbegin(), E = PostOrder.rend();
2296 I != E; ++I)
2297 TopDownNestingDetected |= VisitTopDown(*I, BBStates, Releases);
John McCalld935e9c2011-06-15 23:37:01 +00002298
2299 return TopDownNestingDetected && BottomUpNestingDetected;
2300}
2301
Michael Gottesman97e3df02013-01-14 00:35:14 +00002302/// Move the calls in RetainsToMove and ReleasesToMove.
John McCalld935e9c2011-06-15 23:37:01 +00002303void ObjCARCOpt::MoveCalls(Value *Arg,
2304 RRInfo &RetainsToMove,
2305 RRInfo &ReleasesToMove,
2306 MapVector<Value *, RRInfo> &Retains,
2307 DenseMap<Value *, RRInfo> &Releases,
Dan Gohman6320f522011-07-22 22:29:21 +00002308 SmallVectorImpl<Instruction *> &DeadInsts,
Michael Gottesman79249972013-04-05 23:46:45 +00002309 Module *M) {
Chris Lattner229907c2011-07-18 04:54:35 +00002310 Type *ArgTy = Arg->getType();
Dan Gohman6320f522011-07-22 22:29:21 +00002311 Type *ParamTy = PointerType::getUnqual(Type::getInt8Ty(ArgTy->getContext()));
Michael Gottesman79249972013-04-05 23:46:45 +00002312
Michael Gottesman89279f82013-04-05 18:10:41 +00002313 DEBUG(dbgs() << "== ObjCARCOpt::MoveCalls ==\n");
Michael Gottesman79249972013-04-05 23:46:45 +00002314
John McCalld935e9c2011-06-15 23:37:01 +00002315 // Insert the new retain and release calls.
2316 for (SmallPtrSet<Instruction *, 2>::const_iterator
2317 PI = ReleasesToMove.ReverseInsertPts.begin(),
2318 PE = ReleasesToMove.ReverseInsertPts.end(); PI != PE; ++PI) {
2319 Instruction *InsertPt = *PI;
2320 Value *MyArg = ArgTy == ParamTy ? Arg :
2321 new BitCastInst(Arg, ParamTy, "", InsertPt);
2322 CallInst *Call =
Michael Gottesmanba648592013-03-28 23:08:44 +00002323 CallInst::Create(getRetainCallee(M), MyArg, "", InsertPt);
John McCalld935e9c2011-06-15 23:37:01 +00002324 Call->setDoesNotThrow();
Michael Gottesmanba648592013-03-28 23:08:44 +00002325 Call->setTailCall();
Michael Gottesman60f6b282013-03-29 05:13:07 +00002326
Michael Gottesman89279f82013-04-05 18:10:41 +00002327 DEBUG(dbgs() << "Inserting new Release: " << *Call << "\n"
2328 "At insertion point: " << *InsertPt << "\n");
John McCalld935e9c2011-06-15 23:37:01 +00002329 }
2330 for (SmallPtrSet<Instruction *, 2>::const_iterator
2331 PI = RetainsToMove.ReverseInsertPts.begin(),
2332 PE = RetainsToMove.ReverseInsertPts.end(); PI != PE; ++PI) {
Dan Gohman5c70fad2012-03-23 17:47:54 +00002333 Instruction *InsertPt = *PI;
2334 Value *MyArg = ArgTy == ParamTy ? Arg :
2335 new BitCastInst(Arg, ParamTy, "", InsertPt);
2336 CallInst *Call = CallInst::Create(getReleaseCallee(M), MyArg,
2337 "", InsertPt);
2338 // Attach a clang.imprecise_release metadata tag, if appropriate.
2339 if (MDNode *M = ReleasesToMove.ReleaseMetadata)
2340 Call->setMetadata(ImpreciseReleaseMDKind, M);
2341 Call->setDoesNotThrow();
2342 if (ReleasesToMove.IsTailCallRelease)
2343 Call->setTailCall();
Michael Gottesmanc189a392013-01-09 19:23:24 +00002344
Michael Gottesman89279f82013-04-05 18:10:41 +00002345 DEBUG(dbgs() << "Inserting new Release: " << *Call << "\n"
2346 "At insertion point: " << *InsertPt << "\n");
John McCalld935e9c2011-06-15 23:37:01 +00002347 }
2348
2349 // Delete the original retain and release calls.
2350 for (SmallPtrSet<Instruction *, 2>::const_iterator
2351 AI = RetainsToMove.Calls.begin(),
2352 AE = RetainsToMove.Calls.end(); AI != AE; ++AI) {
2353 Instruction *OrigRetain = *AI;
2354 Retains.blot(OrigRetain);
2355 DeadInsts.push_back(OrigRetain);
Michael Gottesman89279f82013-04-05 18:10:41 +00002356 DEBUG(dbgs() << "Deleting retain: " << *OrigRetain << "\n");
John McCalld935e9c2011-06-15 23:37:01 +00002357 }
2358 for (SmallPtrSet<Instruction *, 2>::const_iterator
2359 AI = ReleasesToMove.Calls.begin(),
2360 AE = ReleasesToMove.Calls.end(); AI != AE; ++AI) {
2361 Instruction *OrigRelease = *AI;
2362 Releases.erase(OrigRelease);
2363 DeadInsts.push_back(OrigRelease);
Michael Gottesman89279f82013-04-05 18:10:41 +00002364 DEBUG(dbgs() << "Deleting release: " << *OrigRelease << "\n");
John McCalld935e9c2011-06-15 23:37:01 +00002365 }
Michael Gottesman79249972013-04-05 23:46:45 +00002366
John McCalld935e9c2011-06-15 23:37:01 +00002367}
2368
Michael Gottesman9de6f962013-01-22 21:49:00 +00002369bool
2370ObjCARCOpt::ConnectTDBUTraversals(DenseMap<const BasicBlock *, BBState>
2371 &BBStates,
2372 MapVector<Value *, RRInfo> &Retains,
2373 DenseMap<Value *, RRInfo> &Releases,
2374 Module *M,
2375 SmallVector<Instruction *, 4> &NewRetains,
2376 SmallVector<Instruction *, 4> &NewReleases,
2377 SmallVector<Instruction *, 8> &DeadInsts,
2378 RRInfo &RetainsToMove,
2379 RRInfo &ReleasesToMove,
2380 Value *Arg,
2381 bool KnownSafe,
2382 bool &AnyPairsCompletelyEliminated) {
2383 // If a pair happens in a region where it is known that the reference count
2384 // is already incremented, we can similarly ignore possible decrements.
2385 bool KnownSafeTD = true, KnownSafeBU = true;
2386
2387 // Connect the dots between the top-down-collected RetainsToMove and
2388 // bottom-up-collected ReleasesToMove to form sets of related calls.
2389 // This is an iterative process so that we connect multiple releases
2390 // to multiple retains if needed.
2391 unsigned OldDelta = 0;
2392 unsigned NewDelta = 0;
2393 unsigned OldCount = 0;
2394 unsigned NewCount = 0;
2395 bool FirstRelease = true;
Michael Gottesman9de6f962013-01-22 21:49:00 +00002396 for (;;) {
2397 for (SmallVectorImpl<Instruction *>::const_iterator
2398 NI = NewRetains.begin(), NE = NewRetains.end(); NI != NE; ++NI) {
2399 Instruction *NewRetain = *NI;
2400 MapVector<Value *, RRInfo>::const_iterator It = Retains.find(NewRetain);
2401 assert(It != Retains.end());
2402 const RRInfo &NewRetainRRI = It->second;
2403 KnownSafeTD &= NewRetainRRI.KnownSafe;
2404 for (SmallPtrSet<Instruction *, 2>::const_iterator
2405 LI = NewRetainRRI.Calls.begin(),
2406 LE = NewRetainRRI.Calls.end(); LI != LE; ++LI) {
2407 Instruction *NewRetainRelease = *LI;
2408 DenseMap<Value *, RRInfo>::const_iterator Jt =
2409 Releases.find(NewRetainRelease);
2410 if (Jt == Releases.end())
2411 return false;
2412 const RRInfo &NewRetainReleaseRRI = Jt->second;
2413 assert(NewRetainReleaseRRI.Calls.count(NewRetain));
2414 if (ReleasesToMove.Calls.insert(NewRetainRelease)) {
2415 OldDelta -=
2416 BBStates[NewRetainRelease->getParent()].GetAllPathCount();
2417
2418 // Merge the ReleaseMetadata and IsTailCallRelease values.
2419 if (FirstRelease) {
2420 ReleasesToMove.ReleaseMetadata =
2421 NewRetainReleaseRRI.ReleaseMetadata;
2422 ReleasesToMove.IsTailCallRelease =
2423 NewRetainReleaseRRI.IsTailCallRelease;
2424 FirstRelease = false;
2425 } else {
2426 if (ReleasesToMove.ReleaseMetadata !=
2427 NewRetainReleaseRRI.ReleaseMetadata)
2428 ReleasesToMove.ReleaseMetadata = 0;
2429 if (ReleasesToMove.IsTailCallRelease !=
2430 NewRetainReleaseRRI.IsTailCallRelease)
2431 ReleasesToMove.IsTailCallRelease = false;
2432 }
2433
2434 // Collect the optimal insertion points.
2435 if (!KnownSafe)
2436 for (SmallPtrSet<Instruction *, 2>::const_iterator
2437 RI = NewRetainReleaseRRI.ReverseInsertPts.begin(),
2438 RE = NewRetainReleaseRRI.ReverseInsertPts.end();
2439 RI != RE; ++RI) {
2440 Instruction *RIP = *RI;
2441 if (ReleasesToMove.ReverseInsertPts.insert(RIP))
2442 NewDelta -= BBStates[RIP->getParent()].GetAllPathCount();
2443 }
2444 NewReleases.push_back(NewRetainRelease);
2445 }
2446 }
2447 }
2448 NewRetains.clear();
2449 if (NewReleases.empty()) break;
2450
2451 // Back the other way.
2452 for (SmallVectorImpl<Instruction *>::const_iterator
2453 NI = NewReleases.begin(), NE = NewReleases.end(); NI != NE; ++NI) {
2454 Instruction *NewRelease = *NI;
2455 DenseMap<Value *, RRInfo>::const_iterator It =
2456 Releases.find(NewRelease);
2457 assert(It != Releases.end());
2458 const RRInfo &NewReleaseRRI = It->second;
2459 KnownSafeBU &= NewReleaseRRI.KnownSafe;
2460 for (SmallPtrSet<Instruction *, 2>::const_iterator
2461 LI = NewReleaseRRI.Calls.begin(),
2462 LE = NewReleaseRRI.Calls.end(); LI != LE; ++LI) {
2463 Instruction *NewReleaseRetain = *LI;
2464 MapVector<Value *, RRInfo>::const_iterator Jt =
2465 Retains.find(NewReleaseRetain);
2466 if (Jt == Retains.end())
2467 return false;
2468 const RRInfo &NewReleaseRetainRRI = Jt->second;
2469 assert(NewReleaseRetainRRI.Calls.count(NewRelease));
2470 if (RetainsToMove.Calls.insert(NewReleaseRetain)) {
2471 unsigned PathCount =
2472 BBStates[NewReleaseRetain->getParent()].GetAllPathCount();
2473 OldDelta += PathCount;
2474 OldCount += PathCount;
2475
Michael Gottesman9de6f962013-01-22 21:49:00 +00002476 // Collect the optimal insertion points.
2477 if (!KnownSafe)
2478 for (SmallPtrSet<Instruction *, 2>::const_iterator
2479 RI = NewReleaseRetainRRI.ReverseInsertPts.begin(),
2480 RE = NewReleaseRetainRRI.ReverseInsertPts.end();
2481 RI != RE; ++RI) {
2482 Instruction *RIP = *RI;
2483 if (RetainsToMove.ReverseInsertPts.insert(RIP)) {
2484 PathCount = BBStates[RIP->getParent()].GetAllPathCount();
2485 NewDelta += PathCount;
2486 NewCount += PathCount;
2487 }
2488 }
2489 NewRetains.push_back(NewReleaseRetain);
2490 }
2491 }
2492 }
2493 NewReleases.clear();
2494 if (NewRetains.empty()) break;
2495 }
2496
2497 // If the pointer is known incremented or nested, we can safely delete the
2498 // pair regardless of what's between them.
2499 if (KnownSafeTD || KnownSafeBU) {
2500 RetainsToMove.ReverseInsertPts.clear();
2501 ReleasesToMove.ReverseInsertPts.clear();
2502 NewCount = 0;
2503 } else {
2504 // Determine whether the new insertion points we computed preserve the
2505 // balance of retain and release calls through the program.
2506 // TODO: If the fully aggressive solution isn't valid, try to find a
2507 // less aggressive solution which is.
2508 if (NewDelta != 0)
2509 return false;
2510 }
2511
2512 // Determine whether the original call points are balanced in the retain and
2513 // release calls through the program. If not, conservatively don't touch
2514 // them.
2515 // TODO: It's theoretically possible to do code motion in this case, as
2516 // long as the existing imbalances are maintained.
2517 if (OldDelta != 0)
2518 return false;
2519
2520 Changed = true;
2521 assert(OldCount != 0 && "Unreachable code?");
2522 NumRRs += OldCount - NewCount;
Michael Gottesman9de6f962013-01-22 21:49:00 +00002523 // Set to true if we completely removed any RR pairs.
Michael Gottesman8b5515f2013-01-22 21:53:43 +00002524 AnyPairsCompletelyEliminated = NewCount == 0;
Michael Gottesman9de6f962013-01-22 21:49:00 +00002525
2526 // We can move calls!
2527 return true;
2528}
2529
Michael Gottesman97e3df02013-01-14 00:35:14 +00002530/// Identify pairings between the retains and releases, and delete and/or move
2531/// them.
John McCalld935e9c2011-06-15 23:37:01 +00002532bool
2533ObjCARCOpt::PerformCodePlacement(DenseMap<const BasicBlock *, BBState>
2534 &BBStates,
2535 MapVector<Value *, RRInfo> &Retains,
Dan Gohman6320f522011-07-22 22:29:21 +00002536 DenseMap<Value *, RRInfo> &Releases,
2537 Module *M) {
Michael Gottesman89279f82013-04-05 18:10:41 +00002538 DEBUG(dbgs() << "\n== ObjCARCOpt::PerformCodePlacement ==\n");
2539
John McCalld935e9c2011-06-15 23:37:01 +00002540 bool AnyPairsCompletelyEliminated = false;
2541 RRInfo RetainsToMove;
2542 RRInfo ReleasesToMove;
2543 SmallVector<Instruction *, 4> NewRetains;
2544 SmallVector<Instruction *, 4> NewReleases;
2545 SmallVector<Instruction *, 8> DeadInsts;
2546
Dan Gohman670f9372012-04-13 18:57:48 +00002547 // Visit each retain.
John McCalld935e9c2011-06-15 23:37:01 +00002548 for (MapVector<Value *, RRInfo>::const_iterator I = Retains.begin(),
Dan Gohman2053a5d2011-09-29 22:25:23 +00002549 E = Retains.end(); I != E; ++I) {
2550 Value *V = I->first;
John McCalld935e9c2011-06-15 23:37:01 +00002551 if (!V) continue; // blotted
2552
2553 Instruction *Retain = cast<Instruction>(V);
Michael Gottesmanc189a392013-01-09 19:23:24 +00002554
Michael Gottesman89279f82013-04-05 18:10:41 +00002555 DEBUG(dbgs() << "Visiting: " << *Retain << "\n");
Michael Gottesmanc189a392013-01-09 19:23:24 +00002556
John McCalld935e9c2011-06-15 23:37:01 +00002557 Value *Arg = GetObjCArg(Retain);
2558
Dan Gohman728db492012-01-13 00:39:07 +00002559 // If the object being released is in static or stack storage, we know it's
John McCalld935e9c2011-06-15 23:37:01 +00002560 // not being managed by ObjC reference counting, so we can delete pairs
2561 // regardless of what possible decrements or uses lie between them.
Dan Gohman728db492012-01-13 00:39:07 +00002562 bool KnownSafe = isa<Constant>(Arg) || isa<AllocaInst>(Arg);
Dan Gohman41375a32012-05-08 23:39:44 +00002563
Dan Gohman56e1cef2011-08-22 17:29:11 +00002564 // A constant pointer can't be pointing to an object on the heap. It may
2565 // be reference-counted, but it won't be deleted.
2566 if (const LoadInst *LI = dyn_cast<LoadInst>(Arg))
2567 if (const GlobalVariable *GV =
2568 dyn_cast<GlobalVariable>(
2569 StripPointerCastsAndObjCCalls(LI->getPointerOperand())))
2570 if (GV->isConstant())
2571 KnownSafe = true;
2572
John McCalld935e9c2011-06-15 23:37:01 +00002573 // Connect the dots between the top-down-collected RetainsToMove and
2574 // bottom-up-collected ReleasesToMove to form sets of related calls.
John McCalld935e9c2011-06-15 23:37:01 +00002575 NewRetains.push_back(Retain);
Michael Gottesman9de6f962013-01-22 21:49:00 +00002576 bool PerformMoveCalls =
2577 ConnectTDBUTraversals(BBStates, Retains, Releases, M, NewRetains,
2578 NewReleases, DeadInsts, RetainsToMove,
2579 ReleasesToMove, Arg, KnownSafe,
2580 AnyPairsCompletelyEliminated);
John McCalld935e9c2011-06-15 23:37:01 +00002581
Michael Gottesman81b1d432013-03-26 00:42:04 +00002582#ifdef ARC_ANNOTATIONS
2583 // Do not move calls if ARC annotations are requested. If we were to move
2584 // calls in this case, we would not be able
2585 PerformMoveCalls = PerformMoveCalls && !EnableARCAnnotations;
2586#endif // ARC_ANNOTATIONS
2587
Michael Gottesman9de6f962013-01-22 21:49:00 +00002588 if (PerformMoveCalls) {
2589 // Ok, everything checks out and we're all set. Let's move/delete some
2590 // code!
2591 MoveCalls(Arg, RetainsToMove, ReleasesToMove,
2592 Retains, Releases, DeadInsts, M);
John McCalld935e9c2011-06-15 23:37:01 +00002593 }
2594
Michael Gottesman9de6f962013-01-22 21:49:00 +00002595 // Clean up state for next retain.
John McCalld935e9c2011-06-15 23:37:01 +00002596 NewReleases.clear();
2597 NewRetains.clear();
2598 RetainsToMove.clear();
2599 ReleasesToMove.clear();
2600 }
2601
2602 // Now that we're done moving everything, we can delete the newly dead
2603 // instructions, as we no longer need them as insert points.
2604 while (!DeadInsts.empty())
2605 EraseInstruction(DeadInsts.pop_back_val());
2606
2607 return AnyPairsCompletelyEliminated;
2608}
2609
Michael Gottesman97e3df02013-01-14 00:35:14 +00002610/// Weak pointer optimizations.
John McCalld935e9c2011-06-15 23:37:01 +00002611void ObjCARCOpt::OptimizeWeakCalls(Function &F) {
Michael Gottesman89279f82013-04-05 18:10:41 +00002612 DEBUG(dbgs() << "\n== ObjCARCOpt::OptimizeWeakCalls ==\n");
Michael Gottesman79249972013-04-05 23:46:45 +00002613
John McCalld935e9c2011-06-15 23:37:01 +00002614 // First, do memdep-style RLE and S2L optimizations. We can't use memdep
2615 // itself because it uses AliasAnalysis and we need to do provenance
2616 // queries instead.
2617 for (inst_iterator I = inst_begin(&F), E = inst_end(&F); I != E; ) {
2618 Instruction *Inst = &*I++;
Michael Gottesman3f146e22013-01-01 16:05:48 +00002619
Michael Gottesman89279f82013-04-05 18:10:41 +00002620 DEBUG(dbgs() << "Visiting: " << *Inst << "\n");
Michael Gottesman3f146e22013-01-01 16:05:48 +00002621
John McCalld935e9c2011-06-15 23:37:01 +00002622 InstructionClass Class = GetBasicInstructionClass(Inst);
2623 if (Class != IC_LoadWeak && Class != IC_LoadWeakRetained)
2624 continue;
2625
2626 // Delete objc_loadWeak calls with no users.
2627 if (Class == IC_LoadWeak && Inst->use_empty()) {
2628 Inst->eraseFromParent();
2629 continue;
2630 }
2631
2632 // TODO: For now, just look for an earlier available version of this value
2633 // within the same block. Theoretically, we could do memdep-style non-local
2634 // analysis too, but that would want caching. A better approach would be to
2635 // use the technique that EarlyCSE uses.
2636 inst_iterator Current = llvm::prior(I);
2637 BasicBlock *CurrentBB = Current.getBasicBlockIterator();
2638 for (BasicBlock::iterator B = CurrentBB->begin(),
2639 J = Current.getInstructionIterator();
2640 J != B; --J) {
2641 Instruction *EarlierInst = &*llvm::prior(J);
2642 InstructionClass EarlierClass = GetInstructionClass(EarlierInst);
2643 switch (EarlierClass) {
2644 case IC_LoadWeak:
2645 case IC_LoadWeakRetained: {
2646 // If this is loading from the same pointer, replace this load's value
2647 // with that one.
2648 CallInst *Call = cast<CallInst>(Inst);
2649 CallInst *EarlierCall = cast<CallInst>(EarlierInst);
2650 Value *Arg = Call->getArgOperand(0);
2651 Value *EarlierArg = EarlierCall->getArgOperand(0);
2652 switch (PA.getAA()->alias(Arg, EarlierArg)) {
2653 case AliasAnalysis::MustAlias:
2654 Changed = true;
2655 // If the load has a builtin retain, insert a plain retain for it.
2656 if (Class == IC_LoadWeakRetained) {
2657 CallInst *CI =
2658 CallInst::Create(getRetainCallee(F.getParent()), EarlierCall,
2659 "", Call);
2660 CI->setTailCall();
2661 }
2662 // Zap the fully redundant load.
2663 Call->replaceAllUsesWith(EarlierCall);
2664 Call->eraseFromParent();
2665 goto clobbered;
2666 case AliasAnalysis::MayAlias:
2667 case AliasAnalysis::PartialAlias:
2668 goto clobbered;
2669 case AliasAnalysis::NoAlias:
2670 break;
2671 }
2672 break;
2673 }
2674 case IC_StoreWeak:
2675 case IC_InitWeak: {
2676 // If this is storing to the same pointer and has the same size etc.
2677 // replace this load's value with the stored value.
2678 CallInst *Call = cast<CallInst>(Inst);
2679 CallInst *EarlierCall = cast<CallInst>(EarlierInst);
2680 Value *Arg = Call->getArgOperand(0);
2681 Value *EarlierArg = EarlierCall->getArgOperand(0);
2682 switch (PA.getAA()->alias(Arg, EarlierArg)) {
2683 case AliasAnalysis::MustAlias:
2684 Changed = true;
2685 // If the load has a builtin retain, insert a plain retain for it.
2686 if (Class == IC_LoadWeakRetained) {
2687 CallInst *CI =
2688 CallInst::Create(getRetainCallee(F.getParent()), EarlierCall,
2689 "", Call);
2690 CI->setTailCall();
2691 }
2692 // Zap the fully redundant load.
2693 Call->replaceAllUsesWith(EarlierCall->getArgOperand(1));
2694 Call->eraseFromParent();
2695 goto clobbered;
2696 case AliasAnalysis::MayAlias:
2697 case AliasAnalysis::PartialAlias:
2698 goto clobbered;
2699 case AliasAnalysis::NoAlias:
2700 break;
2701 }
2702 break;
2703 }
2704 case IC_MoveWeak:
2705 case IC_CopyWeak:
2706 // TOOD: Grab the copied value.
2707 goto clobbered;
2708 case IC_AutoreleasepoolPush:
2709 case IC_None:
John McCall20182ac2013-03-22 21:38:36 +00002710 case IC_IntrinsicUser:
John McCalld935e9c2011-06-15 23:37:01 +00002711 case IC_User:
2712 // Weak pointers are only modified through the weak entry points
2713 // (and arbitrary calls, which could call the weak entry points).
2714 break;
2715 default:
2716 // Anything else could modify the weak pointer.
2717 goto clobbered;
2718 }
2719 }
2720 clobbered:;
2721 }
2722
2723 // Then, for each destroyWeak with an alloca operand, check to see if
2724 // the alloca and all its users can be zapped.
2725 for (inst_iterator I = inst_begin(&F), E = inst_end(&F); I != E; ) {
2726 Instruction *Inst = &*I++;
2727 InstructionClass Class = GetBasicInstructionClass(Inst);
2728 if (Class != IC_DestroyWeak)
2729 continue;
2730
2731 CallInst *Call = cast<CallInst>(Inst);
2732 Value *Arg = Call->getArgOperand(0);
2733 if (AllocaInst *Alloca = dyn_cast<AllocaInst>(Arg)) {
2734 for (Value::use_iterator UI = Alloca->use_begin(),
2735 UE = Alloca->use_end(); UI != UE; ++UI) {
Dan Gohmandae33492012-04-27 18:56:31 +00002736 const Instruction *UserInst = cast<Instruction>(*UI);
John McCalld935e9c2011-06-15 23:37:01 +00002737 switch (GetBasicInstructionClass(UserInst)) {
2738 case IC_InitWeak:
2739 case IC_StoreWeak:
2740 case IC_DestroyWeak:
2741 continue;
2742 default:
2743 goto done;
2744 }
2745 }
2746 Changed = true;
2747 for (Value::use_iterator UI = Alloca->use_begin(),
2748 UE = Alloca->use_end(); UI != UE; ) {
2749 CallInst *UserInst = cast<CallInst>(*UI++);
Dan Gohman14862c32012-05-18 22:17:29 +00002750 switch (GetBasicInstructionClass(UserInst)) {
2751 case IC_InitWeak:
2752 case IC_StoreWeak:
2753 // These functions return their second argument.
2754 UserInst->replaceAllUsesWith(UserInst->getArgOperand(1));
2755 break;
2756 case IC_DestroyWeak:
2757 // No return value.
2758 break;
2759 default:
Dan Gohman9c97eea02012-05-21 17:41:28 +00002760 llvm_unreachable("alloca really is used!");
Dan Gohman14862c32012-05-18 22:17:29 +00002761 }
John McCalld935e9c2011-06-15 23:37:01 +00002762 UserInst->eraseFromParent();
2763 }
2764 Alloca->eraseFromParent();
2765 done:;
2766 }
2767 }
2768}
2769
Michael Gottesman97e3df02013-01-14 00:35:14 +00002770/// Identify program paths which execute sequences of retains and releases which
2771/// can be eliminated.
John McCalld935e9c2011-06-15 23:37:01 +00002772bool ObjCARCOpt::OptimizeSequences(Function &F) {
2773 /// Releases, Retains - These are used to store the results of the main flow
2774 /// analysis. These use Value* as the key instead of Instruction* so that the
2775 /// map stays valid when we get around to rewriting code and calls get
2776 /// replaced by arguments.
2777 DenseMap<Value *, RRInfo> Releases;
2778 MapVector<Value *, RRInfo> Retains;
2779
Michael Gottesman97e3df02013-01-14 00:35:14 +00002780 /// This is used during the traversal of the function to track the
John McCalld935e9c2011-06-15 23:37:01 +00002781 /// states for each identified object at each block.
2782 DenseMap<const BasicBlock *, BBState> BBStates;
2783
2784 // Analyze the CFG of the function, and all instructions.
2785 bool NestingDetected = Visit(F, BBStates, Retains, Releases);
2786
2787 // Transform.
Dan Gohman6320f522011-07-22 22:29:21 +00002788 return PerformCodePlacement(BBStates, Retains, Releases, F.getParent()) &&
2789 NestingDetected;
John McCalld935e9c2011-06-15 23:37:01 +00002790}
2791
Michael Gottesmanc2d5bf52013-04-03 23:07:45 +00002792/// Check if there is a dependent call earlier that does not have anything in
2793/// between the Retain and the call that can affect the reference count of their
2794/// shared pointer argument. Note that Retain need not be in BB.
Michael Gottesman54dc7fd2013-04-03 23:04:28 +00002795static bool
2796HasSafePathToPredecessorCall(const Value *Arg, Instruction *Retain,
2797 SmallPtrSet<Instruction *, 4> &DepInsts,
2798 SmallPtrSet<const BasicBlock *, 4> &Visited,
2799 ProvenanceAnalysis &PA) {
2800 FindDependencies(CanChangeRetainCount, Arg, Retain->getParent(), Retain,
2801 DepInsts, Visited, PA);
2802 if (DepInsts.size() != 1)
2803 return false;
Michael Gottesmanc2d5bf52013-04-03 23:07:45 +00002804
Michael Gottesman54dc7fd2013-04-03 23:04:28 +00002805 CallInst *Call =
2806 dyn_cast_or_null<CallInst>(*DepInsts.begin());
Michael Gottesmanc2d5bf52013-04-03 23:07:45 +00002807
Michael Gottesman54dc7fd2013-04-03 23:04:28 +00002808 // Check that the pointer is the return value of the call.
2809 if (!Call || Arg != Call)
2810 return false;
Michael Gottesmanc2d5bf52013-04-03 23:07:45 +00002811
Michael Gottesman54dc7fd2013-04-03 23:04:28 +00002812 // Check that the call is a regular call.
2813 InstructionClass Class = GetBasicInstructionClass(Call);
2814 if (Class != IC_CallOrUser && Class != IC_Call)
2815 return false;
Michael Gottesmanc2d5bf52013-04-03 23:07:45 +00002816
Michael Gottesman54dc7fd2013-04-03 23:04:28 +00002817 return true;
2818}
2819
Michael Gottesman6908db12013-04-03 23:16:05 +00002820/// Find a dependent retain that precedes the given autorelease for which there
2821/// is nothing in between the two instructions that can affect the ref count of
2822/// Arg.
2823static CallInst *
2824FindPredecessorRetainWithSafePath(const Value *Arg, BasicBlock *BB,
2825 Instruction *Autorelease,
2826 SmallPtrSet<Instruction *, 4> &DepInsts,
2827 SmallPtrSet<const BasicBlock *, 4> &Visited,
2828 ProvenanceAnalysis &PA) {
2829 FindDependencies(CanChangeRetainCount, Arg,
2830 BB, Autorelease, DepInsts, Visited, PA);
2831 if (DepInsts.size() != 1)
2832 return 0;
Michael Gottesman79249972013-04-05 23:46:45 +00002833
Michael Gottesman6908db12013-04-03 23:16:05 +00002834 CallInst *Retain =
2835 dyn_cast_or_null<CallInst>(*DepInsts.begin());
Michael Gottesman79249972013-04-05 23:46:45 +00002836
Michael Gottesman6908db12013-04-03 23:16:05 +00002837 // Check that we found a retain with the same argument.
2838 if (!Retain ||
2839 !IsRetain(GetBasicInstructionClass(Retain)) ||
2840 GetObjCArg(Retain) != Arg) {
2841 return 0;
2842 }
Michael Gottesman79249972013-04-05 23:46:45 +00002843
Michael Gottesman6908db12013-04-03 23:16:05 +00002844 return Retain;
2845}
2846
Michael Gottesman21a4ed32013-04-03 23:39:14 +00002847/// Look for an ``autorelease'' instruction dependent on Arg such that there are
2848/// no instructions dependent on Arg that need a positive ref count in between
2849/// the autorelease and the ret.
2850static CallInst *
2851FindPredecessorAutoreleaseWithSafePath(const Value *Arg, BasicBlock *BB,
2852 ReturnInst *Ret,
2853 SmallPtrSet<Instruction *, 4> &DepInsts,
2854 SmallPtrSet<const BasicBlock *, 4> &V,
2855 ProvenanceAnalysis &PA) {
2856 FindDependencies(NeedsPositiveRetainCount, Arg,
2857 BB, Ret, DepInsts, V, PA);
2858 if (DepInsts.size() != 1)
2859 return 0;
Michael Gottesman79249972013-04-05 23:46:45 +00002860
Michael Gottesman21a4ed32013-04-03 23:39:14 +00002861 CallInst *Autorelease =
2862 dyn_cast_or_null<CallInst>(*DepInsts.begin());
2863 if (!Autorelease)
2864 return 0;
2865 InstructionClass AutoreleaseClass = GetBasicInstructionClass(Autorelease);
2866 if (!IsAutorelease(AutoreleaseClass))
2867 return 0;
2868 if (GetObjCArg(Autorelease) != Arg)
2869 return 0;
Michael Gottesman79249972013-04-05 23:46:45 +00002870
Michael Gottesman21a4ed32013-04-03 23:39:14 +00002871 return Autorelease;
2872}
2873
Michael Gottesman97e3df02013-01-14 00:35:14 +00002874/// Look for this pattern:
Dmitri Gribenko5485acd2012-09-14 14:57:36 +00002875/// \code
John McCalld935e9c2011-06-15 23:37:01 +00002876/// %call = call i8* @something(...)
2877/// %2 = call i8* @objc_retain(i8* %call)
2878/// %3 = call i8* @objc_autorelease(i8* %2)
2879/// ret i8* %3
Dmitri Gribenko5485acd2012-09-14 14:57:36 +00002880/// \endcode
John McCalld935e9c2011-06-15 23:37:01 +00002881/// And delete the retain and autorelease.
John McCalld935e9c2011-06-15 23:37:01 +00002882void ObjCARCOpt::OptimizeReturns(Function &F) {
2883 if (!F.getReturnType()->isPointerTy())
2884 return;
Michael Gottesman79249972013-04-05 23:46:45 +00002885
Michael Gottesman89279f82013-04-05 18:10:41 +00002886 DEBUG(dbgs() << "\n== ObjCARCOpt::OptimizeReturns ==\n");
Michael Gottesman79249972013-04-05 23:46:45 +00002887
John McCalld935e9c2011-06-15 23:37:01 +00002888 SmallPtrSet<Instruction *, 4> DependingInstructions;
2889 SmallPtrSet<const BasicBlock *, 4> Visited;
2890 for (Function::iterator FI = F.begin(), FE = F.end(); FI != FE; ++FI) {
2891 BasicBlock *BB = FI;
2892 ReturnInst *Ret = dyn_cast<ReturnInst>(&BB->back());
Michael Gottesman3f146e22013-01-01 16:05:48 +00002893
Michael Gottesman89279f82013-04-05 18:10:41 +00002894 DEBUG(dbgs() << "Visiting: " << *Ret << "\n");
Michael Gottesman3f146e22013-01-01 16:05:48 +00002895
Michael Gottesman21a4ed32013-04-03 23:39:14 +00002896 if (!Ret)
2897 continue;
Michael Gottesman79249972013-04-05 23:46:45 +00002898
John McCalld935e9c2011-06-15 23:37:01 +00002899 const Value *Arg = StripPointerCastsAndObjCCalls(Ret->getOperand(0));
Michael Gottesman79249972013-04-05 23:46:45 +00002900
Michael Gottesman21a4ed32013-04-03 23:39:14 +00002901 // Look for an ``autorelease'' instruction that is a predecssor of Ret and
2902 // dependent on Arg such that there are no instructions dependent on Arg
2903 // that need a positive ref count in between the autorelease and Ret.
2904 CallInst *Autorelease =
2905 FindPredecessorAutoreleaseWithSafePath(Arg, BB, Ret,
2906 DependingInstructions, Visited,
2907 PA);
2908 if (Autorelease) {
John McCalld935e9c2011-06-15 23:37:01 +00002909 DependingInstructions.clear();
2910 Visited.clear();
Michael Gottesman79249972013-04-05 23:46:45 +00002911
Michael Gottesman21a4ed32013-04-03 23:39:14 +00002912 CallInst *Retain =
2913 FindPredecessorRetainWithSafePath(Arg, BB, Autorelease,
2914 DependingInstructions, Visited, PA);
2915 if (Retain) {
John McCalld935e9c2011-06-15 23:37:01 +00002916 DependingInstructions.clear();
2917 Visited.clear();
Michael Gottesman79249972013-04-05 23:46:45 +00002918
Michael Gottesman54dc7fd2013-04-03 23:04:28 +00002919 // Check that there is nothing that can affect the reference count
2920 // between the retain and the call. Note that Retain need not be in BB.
2921 if (HasSafePathToPredecessorCall(Arg, Retain, DependingInstructions,
2922 Visited, PA)) {
John McCalld935e9c2011-06-15 23:37:01 +00002923 // If so, we can zap the retain and autorelease.
2924 Changed = true;
2925 ++NumRets;
Michael Gottesman89279f82013-04-05 18:10:41 +00002926 DEBUG(dbgs() << "Erasing: " << *Retain << "\nErasing: "
Michael Gottesmand61a3b22013-01-07 00:04:56 +00002927 << *Autorelease << "\n");
John McCalld935e9c2011-06-15 23:37:01 +00002928 EraseInstruction(Retain);
2929 EraseInstruction(Autorelease);
2930 }
2931 }
2932 }
Michael Gottesman79249972013-04-05 23:46:45 +00002933
John McCalld935e9c2011-06-15 23:37:01 +00002934 DependingInstructions.clear();
2935 Visited.clear();
2936 }
2937}
2938
2939bool ObjCARCOpt::doInitialization(Module &M) {
2940 if (!EnableARCOpts)
2941 return false;
2942
Dan Gohman670f9372012-04-13 18:57:48 +00002943 // If nothing in the Module uses ARC, don't do anything.
Dan Gohmanceaac7c2011-06-20 23:20:43 +00002944 Run = ModuleHasARC(M);
2945 if (!Run)
2946 return false;
2947
John McCalld935e9c2011-06-15 23:37:01 +00002948 // Identify the imprecise release metadata kind.
2949 ImpreciseReleaseMDKind =
2950 M.getContext().getMDKindID("clang.imprecise_release");
Dan Gohmana7107f92011-10-17 22:53:25 +00002951 CopyOnEscapeMDKind =
2952 M.getContext().getMDKindID("clang.arc.copy_on_escape");
Dan Gohman0155f302012-02-17 18:59:53 +00002953 NoObjCARCExceptionsMDKind =
2954 M.getContext().getMDKindID("clang.arc.no_objc_arc_exceptions");
Michael Gottesman81b1d432013-03-26 00:42:04 +00002955#ifdef ARC_ANNOTATIONS
2956 ARCAnnotationBottomUpMDKind =
2957 M.getContext().getMDKindID("llvm.arc.annotation.bottomup");
2958 ARCAnnotationTopDownMDKind =
2959 M.getContext().getMDKindID("llvm.arc.annotation.topdown");
2960 ARCAnnotationProvenanceSourceMDKind =
2961 M.getContext().getMDKindID("llvm.arc.annotation.provenancesource");
2962#endif // ARC_ANNOTATIONS
John McCalld935e9c2011-06-15 23:37:01 +00002963
John McCalld935e9c2011-06-15 23:37:01 +00002964 // Intuitively, objc_retain and others are nocapture, however in practice
2965 // they are not, because they return their argument value. And objc_release
Dan Gohmandae33492012-04-27 18:56:31 +00002966 // calls finalizers which can have arbitrary side effects.
John McCalld935e9c2011-06-15 23:37:01 +00002967
2968 // These are initialized lazily.
2969 RetainRVCallee = 0;
2970 AutoreleaseRVCallee = 0;
2971 ReleaseCallee = 0;
2972 RetainCallee = 0;
Dan Gohman6320f522011-07-22 22:29:21 +00002973 RetainBlockCallee = 0;
John McCalld935e9c2011-06-15 23:37:01 +00002974 AutoreleaseCallee = 0;
2975
2976 return false;
2977}
2978
2979bool ObjCARCOpt::runOnFunction(Function &F) {
2980 if (!EnableARCOpts)
2981 return false;
2982
Dan Gohmanceaac7c2011-06-20 23:20:43 +00002983 // If nothing in the Module uses ARC, don't do anything.
2984 if (!Run)
2985 return false;
2986
John McCalld935e9c2011-06-15 23:37:01 +00002987 Changed = false;
2988
Michael Gottesman89279f82013-04-05 18:10:41 +00002989 DEBUG(dbgs() << "<<< ObjCARCOpt: Visiting Function: " << F.getName() << " >>>"
2990 "\n");
Michael Gottesmanb24bdef2013-01-12 02:57:16 +00002991
John McCalld935e9c2011-06-15 23:37:01 +00002992 PA.setAA(&getAnalysis<AliasAnalysis>());
2993
2994 // This pass performs several distinct transformations. As a compile-time aid
2995 // when compiling code that isn't ObjC, skip these if the relevant ObjC
2996 // library functions aren't declared.
2997
2998 // Preliminary optimizations. This also computs UsedInThisFunction.
2999 OptimizeIndividualCalls(F);
3000
3001 // Optimizations for weak pointers.
3002 if (UsedInThisFunction & ((1 << IC_LoadWeak) |
3003 (1 << IC_LoadWeakRetained) |
3004 (1 << IC_StoreWeak) |
3005 (1 << IC_InitWeak) |
3006 (1 << IC_CopyWeak) |
3007 (1 << IC_MoveWeak) |
3008 (1 << IC_DestroyWeak)))
3009 OptimizeWeakCalls(F);
3010
3011 // Optimizations for retain+release pairs.
3012 if (UsedInThisFunction & ((1 << IC_Retain) |
3013 (1 << IC_RetainRV) |
3014 (1 << IC_RetainBlock)))
3015 if (UsedInThisFunction & (1 << IC_Release))
3016 // Run OptimizeSequences until it either stops making changes or
3017 // no retain+release pair nesting is detected.
3018 while (OptimizeSequences(F)) {}
3019
3020 // Optimizations if objc_autorelease is used.
Dan Gohman41375a32012-05-08 23:39:44 +00003021 if (UsedInThisFunction & ((1 << IC_Autorelease) |
3022 (1 << IC_AutoreleaseRV)))
John McCalld935e9c2011-06-15 23:37:01 +00003023 OptimizeReturns(F);
3024
Michael Gottesmanb24bdef2013-01-12 02:57:16 +00003025 DEBUG(dbgs() << "\n");
3026
John McCalld935e9c2011-06-15 23:37:01 +00003027 return Changed;
3028}
3029
3030void ObjCARCOpt::releaseMemory() {
3031 PA.clear();
3032}
3033
Michael Gottesman97e3df02013-01-14 00:35:14 +00003034/// @}
3035///